diff --git a/.github/README.md b/.github/README.md index ec88c111d..299a0a111 100644 --- a/.github/README.md +++ b/.github/README.md @@ -68,6 +68,7 @@ Want to help translate? Please read [this](../kubejs/README_IF_TRANSLATING.md) i - [GregTech Community Pack Modern](https://www.curseforge.com/minecraft/modpacks/gregtech-community-pack-modern) for most of their quest text. - [Better End](https://www.curseforge.com/minecraft/mc-mods/betterend) for some assets. - Uni for Mars' dunes terrain generation. +- Flare from the [Cosmic Frontiers](https://www.curseforge.com/minecraft/modpacks/cosmic-frontiers) team for some icon set textures. [TerraFirmaCraft]: https://www.curseforge.com/minecraft/mc-mods/terrafirmacraft diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 66636e4ad..1f8183581 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: steps: - name: πŸ“¦ Checkout - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.1 with: fetch-depth: 0 @@ -156,7 +156,7 @@ jobs: continue-on-error: true - name: πŸ” Check if tag exists - uses: mukunku/tag-exists-action@v1.6.0 + uses: mukunku/tag-exists-action@v1.7.0 id: check_tag with: tag: ${{ steps.changelog.outputs.version }} @@ -194,7 +194,7 @@ jobs: - name: πŸ“„ Format diff id: format_diff if: ${{ steps.read_diff.outputs.diff != '' }} - uses: roamingowl/template-output-with-eta@v2.1.0 + uses: roamingowl/template-output-with-eta@v2.2.0 with: template: | ```markdown @@ -229,7 +229,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.1 with: fetch-depth: 0 @@ -313,7 +313,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.1 - name: πŸ”„ Replace strings shell: bash @@ -327,27 +327,31 @@ jobs: sed -i -e "s/DEV/${VERSION}/g" pakku.json + sed -i -e "s/DEV/${VERSION}/g" .github/docker/docker-compose.yml sed -i -e "s/DEV/${VERSION}/g" config/mod-director/modpack.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/DEV/${VERSION}/g" .pakku/server-overrides/server.properties + + sed -i -e "s/LOADER_VERSION/${LOADER_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/multimc-overrides/mmc-pack.json 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/multimc-overrides/mmc-pack.json sed -i -e "s/MINECRAFT_VERSION/${MINECRAFT_VERSION}/g" .pakku/server-overrides/forge-auto-install.txt - - name: πŸ“ Cache pakku - uses: actions/cache@v4.3.0 + - name: πŸ“ Cache Pakku + uses: actions/cache@v5.0.1 id: cache with: path: build/.cache key: pakku-cache-${{ hashFiles('pakku-lock.json') }} restore-keys: pakku-cache- - - name: πŸ“¦ Export modpack + - 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 @@ -356,64 +360,93 @@ jobs: mkdir -p .pakku/multimc-overrides/flame mkdir -p .pakku/multimc-overrides/mods - - name: πŸ“ Preparing the artifact curseforge + - name: πŸ“ Preparing the artifact CurseForge run: | cd ./build/curseforge/ mv *.zip $(basename -s .zip *.zip)-curseforge.zip - name: πŸš€ Upload artifact CurseForge - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v6.0.0 with: name: ${{ needs.info.outputs.project_full_name }}-curseforge path: ./build/curseforge/${{ needs.info.outputs.project_full_name }}-curseforge.zip if-no-files-found: error - - name: πŸ“ Preparing the artifact modrinth + - name: πŸ“ Preparing the artifact Modrinth run: | cd ./build/modrinth/ mv *.mrpack $(basename -s .mrpack *.mrpack)-modrinth.mrpack - - name: πŸš€ Upload artifact modrinth - uses: actions/upload-artifact@v4.6.2 + - name: πŸš€ Upload artifact Modrinth + uses: actions/upload-artifact@v6.0.0 with: name: ${{ needs.info.outputs.project_full_name }}-modrinth path: ./build/modrinth/${{ needs.info.outputs.project_full_name }}-modrinth.mrpack if-no-files-found: warn - - name: πŸ“ Preparing the artifact multimc + - name: πŸ“ Preparing the artifact MultiMC run: | mkdir -p .pakku/multimc-overrides/flame mkdir -p .pakku/multimc-overrides/mods mv -vf .pakku/multimc-overrides ./build/multimc - cp -vf ./build/.cache/curseforge/manifest.json ./build/multimc/flame/manifest.json + # Delete mods with export: false from ./mods directory + echo "Checking for mods with export: false..." + if [ -f "./pakku.json" ]; then + # Extract mod slugs with export: false and delete corresponding jar files + for mod in $(jq -r 'to_entries[] | select(.value.export == false) | .key' ./pakku.json); do + echo "Looking for mod: $mod" + find ./mods -name "${mod}*.jar" -type f -delete 2>/dev/null && echo "Deleted $mod jar files" || echo "No $mod jar files found" + done + else + echo "pakku.json not found, skipping export:false mod removal" + fi + cp -rf ./build/.cache/curseforge/overrides ./build/multimc/.minecraft + + cp -vf ./build/.cache/curseforge/manifest.json ./build/multimc/flame/manifest.json + cp -vf ./config/fancymenu/assets/icons/icon128x128.png ./build/multimc/.minecraft/icon.png + cp -rf ./mods ./build/multimc/.minecraft/ 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 + - name: πŸš€ Upload artifact MultiMC + uses: actions/upload-artifact@v6.0.0 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 + - name: πŸ“ Preparing the artifact Server run: | cd ./build/serverpack/ mv *.zip $(basename -s .zip *.zip)-serverpack.zip - - name: πŸš€ Upload artifact server - uses: actions/upload-artifact@v4.6.2 + - name: πŸš€ Upload artifact Server + uses: actions/upload-artifact@v6.0.0 with: name: ${{ needs.info.outputs.project_full_name }}-serverpack path: ./build/serverpack/${{ needs.info.outputs.project_full_name }}-serverpack.zip if-no-files-found: error + - name: πŸ“ Preparing the artifact Docker + run: | + mv -vf .pakku/docker-overrides ./build/docker + + cd ./build/docker/ + mv docker-compose.yml "${{ needs.info.outputs.project_full_name }}-docker.yml" + + - name: πŸš€ Upload Docker Artifact + uses: actions/upload-artifact@v6.0.0 + with: + name: ${{ needs.info.outputs.project_full_name }}-docker + path: ./build/docker/${{ needs.info.outputs.project_full_name }}-docker.yml + if-no-files-found: error + release-github: name: πŸš€ Release to GitHub needs: [info, build-project] @@ -424,10 +457,10 @@ jobs: steps: - name: πŸ“¦ Checkout - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.1 - name: πŸ“¦ Download artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v7.0.0 with: merge-multiple: true @@ -447,12 +480,15 @@ jobs: if [ ! -f ${{ needs.info.outputs.project_full_name }}-multimc.zip ]; then echo '::error::No value found for artifact `multimc.zip`.' && exit 1 fi + if [ ! -f ${{ needs.info.outputs.project_full_name }}-docker.yml ]; then + echo '::error::No value found for artifact `docker.yml`.' && exit 1 + fi echo "βœ”οΈ All artifacts found" - name: πŸ“„ Format diff id: format_diff if: ${{ needs.info.outputs.diff != '' }} - uses: roamingowl/template-output-with-eta@v2.1.0 + uses: roamingowl/template-output-with-eta@v2.2.0 with: template: | ```markdown @@ -461,7 +497,7 @@ jobs: - name: πŸš€ Create release id: release - uses: softprops/action-gh-release@v2.4.1 + uses: softprops/action-gh-release@v2.5.0 with: name: ${{ needs.info.outputs.project_version }} tag_name: ${{ needs.info.outputs.project_version }} @@ -474,6 +510,7 @@ jobs: ${{ needs.info.outputs.project_full_name }}-modrinth.mrpack ${{ needs.info.outputs.project_full_name }}-serverpack.zip ${{ needs.info.outputs.project_full_name }}-multimc.zip + ${{ needs.info.outputs.project_full_name }}-docker.yml prerelease: ${{ needs.info.outputs.release_type != 'release' }} generate_release_notes: true token: ${{ secrets.GITHUB_TOKEN }} @@ -495,7 +532,7 @@ jobs: fi - name: πŸ“¦ Download artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v7.0.0 with: merge-multiple: true @@ -545,7 +582,7 @@ jobs: fi - name: πŸ“¦ Download artifact - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v7.0.0 with: merge-multiple: true diff --git a/.gitignore b/.gitignore index 39829e766..88e1777d3 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,10 @@ build/ !.pakku/**/* !pakku.jar +# Docker +/.github/docker/data +/.github/docker/backups + # Configs config/jei/world/ config/gregtech/terminal/ @@ -61,8 +65,11 @@ defaultconfigs/ftbranks/players.snbt !bansoukou/**.zip -/.bobby/ -/.mixin.out/ +/.bobby +/.mixin.out +/tacz/tacz_default_gun +/tacz_backup +/moonlight-global-datapacks /classOut /backups /profileImage @@ -90,6 +97,10 @@ defaultconfigs/ftbranks/players.snbt /chiselsandbits /gtceu/prospection_cache /data +/ESM +/schematics +/scripts +/gtceu # Client data bansoukou @@ -114,6 +125,8 @@ optionsshaders.txt OpenComputersMod-* hei_bookmarks.ini icon.png +EffekseerNativeForJava.dll +libEffekseerNativeForJava.so # Server data # .pakku/server-overrides/libraries @@ -123,7 +136,3 @@ icon.png # .pakku/server-overrides/scripts # .pakku/server-overrides/mods # .pakku/server-overrides/user_jvm_args.txt - -/tacz/tacz_default_gun -EffekseerNativeForJava.dll -libEffekseerNativeForJava.so diff --git a/.pakku/docker-overrides/docker-compose.yml b/.pakku/docker-overrides/docker-compose.yml new file mode 100644 index 000000000..23e50b657 --- /dev/null +++ b/.pakku/docker-overrides/docker-compose.yml @@ -0,0 +1,30 @@ +services: + minecraft: + image: itzg/minecraft-server:latest + container_name: terrafirmagreg-modern + tty: true + stdin_open: true + ports: + - "25565:25565" + environment: + EULA: "true" + ENABLE_RCON: "false" + GUI: "false" + MEMORY: 8G + + TYPE: CUSTOM + CUSTOM_SERVER: ./minecraft_server.jar + SKIP_GENERIC_PACK_UPDATE_CHECK: "true" + OVERRIDE_SERVER_PROPERTIES: "false" + + + GENERIC_PACKS: TerraFirmaGreg-Modern-DEV-serverpack + GENERIC_PACKS_SUFFIX: .zip + GENERIC_PACKS_PREFIX: https://github.com/TerraFirmaGreg-Team/Modpack-Modern/releases/download/DEV/ + + volumes: + - ./data:/data + - ./backups:/backups + +volumes: + minecraft-data: diff --git a/.pakku/multimc-overrides/icon.png b/.pakku/multimc-overrides/icon.png deleted file mode 100644 index 7181ee2ba..000000000 Binary files a/.pakku/multimc-overrides/icon.png and /dev/null differ diff --git a/.pakku/server-overrides/config/ftbbackups2.json b/.pakku/server-overrides/config/ftbbackups2.json new file mode 100644 index 000000000..c83ca4361 --- /dev/null +++ b/.pakku/server-overrides/config/ftbbackups2.json @@ -0,0 +1,73 @@ +{ + // Allow the creation of backups automatically + "enabled": true, + // Permission level to use the /backup command + "command_permission_level": 3, + // Only send backup status to server ops + "notify_op_only": true, + // Don't send backup status at all + "do_not_notify": true, + /* Backup retention mode. Valid Modes: MAX_BACKUPS, TIERED + Note: TIERED mode is an experimental feature, Use at your own risk. + */ + "retention_mode": "MAX_BACKUPS", + // Applies to retention_mode:MAX_BACKUPS, Sets the maximum number of backups to keep + "max_backups": 3, + // Applies to retention_mode:TIERED, The latest x number of backups will be retained + "keep_latest": 3, + // Applies to retention_mode:TIERED, Sets number of hourly backups to keep + "keep_hourly": 1, + // Applies to retention_mode:TIERED, Sets number of daily backups to keep + "keep_daily": 1, + // Applies to retention_mode:TIERED, Sets number of weekly backups to keep + "keep_weekly": 1, + // Applies to retention_mode:TIERED, Sets number of monthly backups to keep + "keep_monthly": 1, + /* This is done with an implementation of cron from the Quartz java library. + More info here + (http://www.cronmaker.com) + */ + "backup_cron": "0 15 10 * * ? *", + // 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 + "only_if_players_been_online": true, + // Additional directories to include in backup + "additional_directories": [], + /* Additional files and directories to include in backup. + Can specify a file name, path relative to server directory or wildcard file path + Examples: (All file paths are relative to server root) + fileName.txt Any/all file named "fileName.txt" + folder/file.txt Exact file path + folder/ Everything in this folder + path/starts/with* Any files who's path starts with + *path/ends/with.txt Any files who's path ends with + *path/contains* Any files who's path contains + */ + "additional_files": [], + // Display file size in backup message + "display_file_size": false, + // backup location + "backup_location": ".", + // Specify the backup format. Valid options are ZIP and DIRECTORY + "backup_format": "ZIP", + // Minimum free disk space in MB. If a backup's creation would leave less than this amount of disk space remaining, the backup will be aborted. + "minimum_free_space": 51200, + // If the previous backup failed due to lack of space, the oldest backup will be deleted to free space. + "free_space_if_needed": true, + /* Specify files or folders to be excluded. + Can specify a file name, path relative to server directory or wildcard file path + Examples: (All file paths are relative to server root) + fileName.txt Any/all file named "fileName.txt" + folder/file.txt Exact file path + folder/ Everything in this folder + path/starts/with* Any files who's path starts with + *path/ends/with.txt Any files who's path ends with + *path/contains* Any files who's path contains + */ + "excluded": [ + "DistantHorizons.sqlite" + ], + // The dimension used when creating backup preview image, specify "all" to enable automatic detection of primary dimension (can be very slow) + "preview_dimension": "minecraft:overworld" +} \ No newline at end of file diff --git a/.pakku/server-overrides/defaultconfigs/ftbranks/ranks.snbt b/.pakku/server-overrides/defaultconfigs/ftbranks/ranks.snbt index c0a1287db..71004f076 100644 --- a/.pakku/server-overrides/defaultconfigs/ftbranks/ranks.snbt +++ b/.pakku/server-overrides/defaultconfigs/ftbranks/ranks.snbt @@ -7,8 +7,41 @@ ftbchunks.max_claimed: 50 ftbchunks.max_force_loaded: 6 ftbchunks.chunk_load_offline: false + + command.enderchest: false + command.ldlib: false + command.compass_server: false + command.chunky: false + command.catnip: false + command.bookshelf: false + command.aptweaks: false + command.afc: false + command.advancement: false + command.bossbar: false + command.clone: false + command.cucumber: false + command.gamemode: false + command.give: false + command.guideme: false + command.kubejs: false + command.kubejs_tfc: false + command.letmedespawn: false + command.locate: false + command.lode: false + command.octolib: false + command.worldborder: false + command.whitelist: false + command.uteamcore: false + command.tpx: false + command.tp_offline: false + command.tpa: false + command.tpaccept: false + command.tpahere: false + command.tpdeny: false + command.tpx: false + command.trashcan: true - command.enderchest: false + } vip: { name: "VIP" @@ -18,13 +51,6 @@ ftbchunks.max_force_loaded: 8 ftbchunks.chunk_load_offline: true } - moderator_girl: { - name: "Moderator" - power: 51 - ftbranks.name_format: "&d{name}" - ftbchunks.max_claimed: 200 - ftbchunks.max_force_loaded: 8 - } moderator: { name: "Moderator" power: 51 diff --git a/.pakku/server-overrides/server.properties b/.pakku/server-overrides/server.properties index 918e3e5f0..ee7804237 100644 --- a/.pakku/server-overrides/server.properties +++ b/.pakku/server-overrides/server.properties @@ -29,7 +29,7 @@ max-chained-neighbor-updates=1000000 max-players=64 max-tick-time=600000 max-world-size=29999984 -motd=[TerraFirmaGreg-Modern] +motd=[TerraFirmaGreg-Modern] Server DEV network-compression-threshold=256 online-mode=true op-permission-level=4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e5d18724..d615ecd43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,346 @@ # Changelog -## [Unreleased] +## Unreleased ### Changes ### Bug fixes +### Translation updates + +## [0.11.16] - 05-01-2026 +### Changes +- Added new steam multiblocks for the alloy smelter, compressor, forge hammer, and thermal centrifuge @Pyritie +- Reduced the Y level that ad astra considers "space" so rocket launches are faster @Pyritie +- Reduced the amount of loot vases in the newer illages, and reduced how much loot you get from them @Pyritie +- Illages and the smaller mud brick ruins are now a little rarer, and the stone brick ruins are a little more common @Pyritie +- Magnesium Diboride now only requires an MV chem bath to cool, but the MV chem bath now also requires a little plastic to craft (#2575) @Pyritie +- Added an implosion compressor recipe for glowstone dust to glowstone blocks (#2581) @Xaligal +- Ad astra and Create Deco lamps are now half as expensive to craft (#2581) @Xaligal +- Added alloy blast smelter recipes for black bronze and bismuth bronze (#2581) @Xaligal +- The alloy blast smelter recipe for glowstone has been adjusted (#2581) @Xaligal +- Renamed Thorium (the non-isotope one) to Thorianite to better indicate that it's only an ore @Pyritie +- Added a way to get wax and latex in the steam age for those of you starting on mars @Pyritie +- Changed the Rover's step height from 1 block to 1.2 blocks (about 4 extra 'pixels') @Pyritie +- Fixed/improved behaviour of GregTech solar things on non-overworld dimensions, so rain in the overworld doesn't stop the solar array from working on the moon, and mars sandstorms affect solar things as well (#2140) @Pyritie +- Added missing recipes for some Steam 'n' Rails items, and changed the smokestacks to use cast iron instead of black steel (#2610) @thederpysockdude123 +- Added missing recipes for new Hypertube redstone things (#2615) @Xtrial-01 +- Recolored diamond GregTech things to match the color of the vanilla diamond item @Pyritie +- Buffed the HP of the Illager Beast @Pyritie +- Added a thermochemically treated hardwood dust -> soaked unrefined paper recipe to the helve hammer (#2621) @Pyritie +- Added Ad Astra's decorative blocks to Domum Ornamentum's whitelist (#2627) @thederpysockdude123 +#### Hazard changes +- Added a new medical condition, Irradiated, caused by the Radioactive hazard which all radioactive things (including naquadria and neutronium) now have instead of Carcinogenic. It has the same symptoms/side effects as carcinogenic. +- Paracetamol now cures carcinogenic, and Rad-Away cures both carcinogenic and irradiated. This is because you encounter carcinogenic hazards much sooner than radioactive ones, so the only cure for radioactive being way in HV didn't make much sense. In order to change the effects of these pills, we had to make new items, so any existing ones won't have these changes, sorry. +- Weakly Poisonous is no longer permanent and heals over time like other conditions. +### Bug fixes +- Fixed missing crafting table recipes for greate gearboxes (#2577) @Pyritie +- Fixed crashing when attaching shafts to a steam engine (#2578, #2579) @Electrolyte220 +- Fixed wrong small cogwheel rotation rendering @Electrolyte220 +- Fixed citric acid food processor recipe producing nothing (#2588) @Pyritie +- Fixed not being able to use pickled eggs in sandwiches (#2551) @Pyritie +- Fixed how much aluminium silicate you get from mica, pollucite, and spodumene to more accurately reflect how much aluminium they have @Pyritie +- Fixed being able to put liquid metals into the new molds that didn't have a recipe @Pyritie +- Added some grain nutrition to oatmeal (#2469) @Pyritie +- Fixed hot-protection chestplates not fully protecting against GT hot ingots (#2598) @Pyritie +- Fixed hermetic sandstone's appearance so it looks similar to TFC's raw sandstone @Pyritie +- Fixed some issues with the food autostacking changes in a previous version (#2580) @Mqrius +- Fixed a crash with meal ingredient stacking on servers @Mqrius +- Fixed some translation inconsistencies in the field guide (#2606, #2607) @jmecn @Petr211071 +- Fixed incorrect fluid tooltips for the silica glass bottle and iron flask (#2608) @JeanRdSz @Pyritie +- Removed some dough mixing bowl recipes that tried to output more than 5 ingredients because that's the mixing bowl's maximum (#2612) @Pyritie +- Fixed missing heat definition for soybeans (#2603) @Pyritie +- Fixed crafting bacon removing all the other food traits @Pyritie +- Fixed lamps costing 4x as much glass when crafted in an assembler as opposed to elsewhere (#2613) @Inceitious +- Fixed some inconsistent ladder recipes (#2616) @Pyritie +### Translation updates +- Chinese (simplified) @jmecn +- Russian @Petr211071 @AlexUnder + +## [0.11.15] - 31-12-2025 +### Bug fixes +- Fixed Greate stress levels (#2564) @Pyritie +- Fixed crash when looking at steam engines while holding a shaft (#2565) + +## [0.11.14] - 31-12-2025 +### Changes +- Change energy acceptor to use a machine hull instead of a converter. (#2553) @thederpysockdude123 +- Update ExtendedAE package name in InvTweaks exclusions. (#2556) @FakeDomi +- Pickled eggs can now be used in sandwiches (#2551) @Pyritie +- Changed small gear mold capacity from 288 to 144mb (#2544) @JeanRdSz +- Create Depots now count as forge insulation, so a basin can output directly onto one @Pyritie +### Mod updates +- New [Greate changelog](https://github.com/GreateBeyondTheHorizon/Greate/releases/tag/0.0.59) +- New [Firmalife changelog](https://github.com/eerussianguy/firmalife/releases/tag/v2.1.25) +### Bug fixes +- Fixed issue where the arc furnace was generating annealed copper nuggets out of nothing @BlueBoat29 +- Fixed recipe conflict between Rimmed Blunt Bullet and 45-70 Bullet (#2545) @BlueBoat29 +- Fixed cake recipes returning nothing in a food processor (#2558) @Pyritie +- Fixed a crash when generating chunks sometimes @Satherov +### Translation updates +- Chinese (simplified) @jmecn +- Chinese (traditional) @CrazyO9 +- Russian @Petr211071 + +## [0.11.13] - 28-12-2025 +### Breaking Changes +- The LCR recipe for BTX fuel now requires circuit 24, to fix a recipe conflict (#2515) @TomPlop +- Loose stones now compress into cobblestone (without any mortar) and vice versa. So if you're currently using gravel to store your loose stones, uncraft them before updating. (#809) @Pyritie +### Changes +- Added casting molds for small gears, nuggets, and rods (#2470) @glitchplaysgames714 +- Added some new illages to the hot and dry, and cold and dry climates of the world! @MVG31 +- Added some mossy cobblestone to the beneath @Pyritie +- Hardened non-TFC rocks are now craftable (#2447) @glitchplaysgames714 +- Magma blocks are now hot to hold @Pyritie +- Added a recipe to craft old gregtech facades into ones with a new texture @Pyritie +- Fluid sources of alcohol and milks are no longer placeable, so you can't drink from them infinitely any more @bigtho80 +- Added TFC scraping knives (#2494) @glitchplaysgames714 +- Changed the ambient sounds in the Beneath, added some to the moon and mars @Pyritie +- Tweaked the ambient sounds in the overworld @Pyritie +- Apatite, Tricalcium phosphate, rock salt, potassium sulfate, and ammonium chloride dusts now count as crop fertiliser (#2501) @Xtrial-01 +- Added quern recipes for gems into dust @Pyritie +- Added recipes for smoke bombs, pet treats, and disguise kits, and added swapper pearls to the loot tables of various endermen @Pyritie +- Added a little saltpeter to cassiterite veins @Pyritie +- Removed the cleanroom requirement for level emitters since they were also craftable in a crafting grid (#2529) @Jeuvke +- Overhauled photographic film development @Pyritie +- Lowered the temperature of gas fuels and their related gases/fluids @Pyritie +- Added drink effects to wines, ethanol, and methanol @Pyritie +### Bug fixes +- Fix for food stacking everywhere! @Mqrius +- Fixed the grappling hook crashing and sending you to the void if you use it while travelling between dimensions (#2514) @Mqrius +- Fixed some curving press tool head recipes being cheaper than intended (#2478) @Pyritie +- Fixed some bastion chests being empty @Pyritie +- Fixed overlapping durability numbers on the curio HUD (#2484) @glitchplaysgames714 +- Fixed a potential crash involving the refrigerator @Redeix +- Fixed the evaporation tower requiring an input hatch even for recipes that don't have a fluid input @glitchplaysgames714 +- Fixed loot tables for ore indicator buds @Pyritie +- Fixed the new gas fuels being usable on other planets (#2515) @TomPlop +- Fixed hot ingots melting packed ice into water sources @Mqrius +- Fixed inconsistent recipes for metal bars, now they all use the anvil or stonecutter. Also added recycling for them all @Pyritie +- Various quest fixes and improvements @thederpysockdude123 +- Added a missing dependency that fixes the rnr roads' crazy acceleration @Pyritie +- Fixed not being able to use aged alcohols to make vinegar (#2519) @Pyritie +- Fix some forge fuels not having the right tag to actually be used as forge fuels @Pyritie +### Translation updates +- Chinese (simplified) @jmecn +- Ukranian @MetEnBouldry +- Spanish @NikoNeko17 +- Turkish @MVG31 + +## [0.11.12] - 19-12-2025 +### Changes +- Brick Wooden Form can now be used to make unfired clay and fire clay bricks at the same rate as knapping (#2461) @Pyritie +### Bug fixes +- Fixed missing blocks of coke @Pyritie +- Fixed some missing boiler recipes like charcoal blocks (#2463) @applenper +- Fixed vulcanized latex to raw rubber vacuumizer recipe being the wrong way around (#2464) @Mqrius +- Fixed a crash when loading a chunk that had an old blaze burner with a straw @Pyritie +- Fixed incorrect coil tooltips on the nuclear fuel factory and liquefaction tower @Pyritie +- Fixed new rose quartz lens not being in the pink lens tag @Pyritie +### Translation updates +- Chinese (simplified) @jmecn + +## [0.11.11] - 18-12-2025 +### Breaking Changes +- Rose Quartz moved namespaces, so you'll have to convert all your old rose quartz items into the new ones. You'll need to explore new chunks to find new geodes with the correct ore blocks. +- The previous silicone rubber styrene butadiene rubber belts have been changed to a different item, so please break and recycle them before updating if you're using any. +- Cleaning meal bag foil packs is now done in the chem bath instead of the ore washer. @Pyritie +- Turning honey into sugar is now done in the extractor instead of the centrifuge. @Pyritie +- Syngas crafting in the Vacuum Chamber will now output into the chamber itself instead of the Basin, so it won't get mixed up with the creosote (#2378) @Pyritie +- Cleaned up the EMI pages for small and large boilers so they aren't flooded with furniture and other things. If you were using something "non-standard" to fuel your boilers, check if they're still valid. (#2421, #2415) @thederpysockdude123 @applenper +- Clay dust is no longer electrolyzable, but now you can get infinite clay blocks from a rock breaker @Pyritie +### Changes +- Added BTX fuel, a new EV-tier gas fuel to replace nitrobenzene. (#2416) @TomPlop +- Primitive illagers will no longer endlessly respawn. Instead, now they only spawn as "structures", so once you kill them they will never return. @Pyritie +#### Hot or Not +- Added "too cold to handle" and "too light to handle" for cold things and lighter-than-air things. Uses the same mechanic as tongs. Lighter-than-air things can also be negated with something Very Heavy in your inventory, and all effects (including "too hot to handle") are negated by super tanks/chests and cells, but *not* drums or buckets. Check the `#tfg:hot_protection_equipment`, `#tfg:cold_protection_equipment`, and `#tfg:floating_protection_equipment` tags for equipment that makes you immune to these effects. The equipment also protects against pipes! @Pyritie +- GregTech hot ingots are also now properly included in the "too hot to handle" system so the same protection applies @Pyritie +- Added machine recipes for crafting tongs @Pyritie +- All baby animals and more "medium" size animals can now be picked up (#2398) @Pyritie +#### Medical Hazards +- Added visual debuff effects for all medical conditions, so you're immediately notified when carrying something hazardous instead of wondering why you have Hunger II. They don't do anything by themselves, they're just a much more visible way of checking your conditions. @Pyritie +- Early `#tfg:medicines` can now also cure medical conditions! Did you think they wouldn't come with side effects? @Pyritie +- The medicines have also been rebalanced, so some of the stronger ones come with a downside, while the weaker ones have a stronger cure effect. +- The medical condition effect that previously instantly killed you (which did not spawn a corpse) now gives you Wither III instead. @Pyritie +#### Other +- Added two more early game mechanical belts, and rubber+ belts are also now more expensive. @Pyritie @Epicificator +- Doubled the durability of all space suits @Pyritie +- Added a way to convert between vinegar and acetic acid (#2386) @Epicificator +- Added a renderer to the electric greenhouse, so now you can visually see your crops grow! @RubenVerg +- Added some distant horizons config options, for those who want to use it (#2406) @Mqrius +- More animals now drop animal fat (#2367) @Pyritie +- Nerfed how much biomass and plant balls are produced from certain vanilla plants (#2361) @Pyritie +- Added some more ruined structures with a small bit of loot. +- Added some resource packs for TFC, disabled by default +- Lenses are now allowed on tool racks (#2434) @thederpysockdude123 +- The Active Transformer multiblock is now craftable at EV, with a new texture and casings. (#2424) @BlueBoat29 +- Renamed AE2 Sky Stone to Suevite @Pyritie +- Removed the shapeless crafting recipe for colored concrete powder, added an instant barrel recipe to turn it into solid concrete @Pyritie +- GregTech mining machines now replace mined ores with the correct type of cobble, instead of rhyolite or vanilla cobble @Pyritie +### Bug fixes +- Fixed aged sake, vodka, and whiskey losing their buff effects, but for real this time @Pyritie +- Fixed fries and cheese curds not being able to be put on burgers. @Redeix +- Fixed sliced brinza missing the proper cheese tags. @Redeix +- Fixed pyroxenite and keratophyre bricks crafting 1 instead of 4 (#2373) @Pyritie +- Fixed some issues with quest text and items (#2384, #2386, #2435) @Mqrius @thederpysockdude123 +- Fixed some tag issues with foods (#2405) @thederpysockdude123 +- Fixed treated wooden planks from being excluded in the Domum Ornamentum and Facade whitelists (#2404) @thederpysockdude123 +- Fixed a recipe conflict for boiled and fried eggs (#2407) @Mqrius +- Fixed a recipe conflict blocking the crafting of silicone rubber (#2387) @Mqrius +- Fixed the backpack and QuarkTech helmet auto-feeding from feeding you while you're downed @Mqrius +- Fixed drills taking way more damage when mining than intended (#2419, #2428) @Mqrius +- Fixed Ostrum Casing not having a recipe (#2363) @FlightingFalcon +- Fixed warped trees not growing on normal mars dirt @Pyritie +- Fixed missing block names for some of the variations of non-earth stones @Pyritie +- Fixed being able to turn bismuth and black bronze drums into regular bronze drums (#2436) @Jeuvke +- Fixed a recipe conflict with stone plates (#2433) @Pyritie +- Fixed concrete pouring consuming your fluid container if you use anything other than a bucket to pour @Mqrius +- Fixed large amounts of TPS lag when pouring huge areas of concrete at once @Therighthon +### Translation updates +- Chinese (simplified) @jmecn +- Japanese @sakura-gondra +- Russian @Petr211071 + +## [0.11.10] - 9-12-2025 +### Breaking Changes +- Butyraldehyde in a chemical reactor now uses circuit 5 instead of 1 to avoid a conflict with Methanol @Pyritie +### Other Changes +- Added recipes for create's shadow and radiant casings (#2256) @Ujhik +- Some small quest and field guide additions and fixes (#2348, #2356) @Pyritie @jmecn +- Adjusted the spawn weights of primitive illagers @Pyritie +### Bug fixes +- Fixed a crash on boot on some linux systems (#2347, #2355) @Redeix @mgsmyrk +- Fixed missing recipes for many fluid and item pipes (#2359) @Pyritie +- Fixed missing cleanroom tags for the ad astra 3x3 doors, so now you can *actually* use them in a cleanroom @Pyritie +- Fixed aged sake, vodka, and whiskey losing their buff effects @Pyritie +- Fixed some inconsistencies with loose rocks into bricks (#2353) @Pyritie +- Fixed a tag issue with some purified ores and Create's crushed ore tag (#2339) @Pyritie +### Translation updates +- Chinese (simplified) @jmecn +- Japanese @sakura-gondra + +## [0.11.9] - 7-12-2025 +### Breaking Changes +#### Beginning of the Power Update +- Syngas is now available as a ULV/LV gas fuel - can be crafted from Charcoal and Creosote in a Brewery or Vacuum Chamber. +- The Coal Liquefaction Tower is a new multiblock (craftable at MV) that you can use to make Reformate Gas. It has the same coildiscounts as the Cracker, and can be boosted with hydrogen. +- Reformate Gas is the new gas Fuel starting at MV, with better yields and recipe loops at HV. +- Many quests were updated to explain these changes. +#### Update on Fission +- The Nuclear Steam Turbine has now a baseline power production of 8192 EU/t. What this means is that you now need half as many turbines as before. +- Thorium Fuel Rods got a boost of 50% steam production, so early Mars should be a bit easier. +- Heat Exchanger can now run Radioactive Steam without Ammonium Formate. If you crave for power and don’t mind losing some materials for the Nano Circuit, this is a good deal +- Massive change for steam yield. You now produce 160x more steam, but its yield is 160x less good (so nothing changes power-wise, but now you have to deal with pipe throughput) +#### Other +- All dynamo hatches on Large Turbines now void power when they are full. Be sure to control your turbines with some redstone when your batteries are full! +- The tungsten processing line has been updated to now properly loop and balance all of its intermediates. The actual processes haven't changed, just the numbers, so you shouldn't have to change your setup much. It now also outputs a little extra oxygen instead of sodium (#2267) @SpicyNoodle5 @TomPlop +- Removed black/red/blue arc furnace dust to ingot recipes, but changed the EBF recipes to MV (#2306) @applenper @Pyritie +### Mod updates +- Added TFC Gurman, which adds even more food and drink +- Primitive Creatures has fixed its spawning of Huntmasters +- New GregTech updates, both [7.3.0](https://github.com/GregTechCEu/GregTech-Modern/releases/tag/v7.3.0-1.20.1) and [7.4.0](https://github.com/GregTechCEu/GregTech-Modern/releases/tag/v7.4.0-1.20.1). TL;DR: + - You can use screwdrivers on drums again + - Diluted hydrochloric acid distillation circuits have been swapped, so now it's consistent with diluted sulfuric acid + - Large rebalancing of small and large boiler fuel. Generally speaking, small boilers are worse while large ones are better, and solid fuels are now better and liquids are worse, but if you're putting all your coke oven output into a large bronze boiler, your rates should be mostly the same as before. Blaze burner liquid fuels have been adjusted to these new values as well. +### Other Changes +- Many TACZ balance changes, found [here](https://github.com/TerraFirmaGreg-Team/Modpack-Modern/blob/dev/tacz/TACZ_CHANGELOG.md) @BlueBoat29 +- Add shapeless recipes for ae2 p2p clearing (#2234) @SpicyNoodle5 +- Added assembler, smelting and heating recipes for firmalife ovens (#2220) @SpicyNoodle5 +- Raised player-burning fluid threshold from 370K to 1300K @Redeix +- Added partial unification to the gtceu Wax material @Redeix +- Mars endermen can no longer pick up the wrong kind of warped/crimson sapling, and the correct kind has been added to their loot tables (#2240) +- Cleanrooms now allow 9 door "blocks", so you can use a 3x3 Ad Astra door (#2074) @ko-lja +- Added recycling for astikor carts (#2227) @Pyritie +- Moved Soph Backpack pickup to ULV, adv pickup to MV and magnet to MV @CrashAndSideburns +- Oilsands dust can now be centrifuged in the mechanical centrifuge @Pyritie +- All oils (both the petrochem kind and the cooking kind) can now be used to fuel small boilers as well @Pyritie +- Reduced the cost of the ME Ingredient Buffer @Pyritie +- Renamed Blubber to Animal Fat and added it to the drop tables of more animals (pigs drop a fair bit, orcas drop a ton). You can extract it into Tallow and now also use it for biodiesel! @applenper @Pyritie +- Glass bottles and ceramic jugs can now hold the same fluids as wooden barrels, buckets, etc @Pyritie +- Added fluid/item capacity tooltips to many fluid/item containers @Pyritie +- Spring water is now drinkable (it also heats you up a little) @Pyritie +- The reinforced hang glider has been buffed, is now craftable as soon as you get aluminium, and is also much cheaper to repair (#2314) @jeuvke +- You can now also use bismuth bronze and black bronze crates in recipes that previously required a normal bronze crate (#2328) @jeuvke +- Freeze dried food no longer has any hydration (#2325) @mqrius +- Added a mechanical crafting recipe for the Paving Cart @Pyritie +### Bug fixes +- Fixed the horse crank not working at all @Pyritie +- Fixed brown gravy recipe @Redeix +- Fixed instant mac recipe requiring less cardboard than it gives back @Redeix +- Fixed Ad Astra moon cheese nutrition values being inconsistent @Redeix +- Fixed some quest typos @Pyritie @mqrius +- Fixed duplicate bed dyeing recipe (#2229) @Pyritie +- Fixed Basic Hermetic Casing missing a mineable tag and loot table (#2221) @Pyritie +- Fixed some inconsistencies with gravel to sand recipe tiers (#2292) @Pyritie +- Fixed the thorium-based glowing ink recipe (#2294) @Pyritie +- Fixes crafting table output amount for salsa compared to the food processor (#2295) @Pyritie +- Added missing food processor recipe for cocoa butter @Pyritie +- Fixed recipe conflict with Epichlorohydrin and Sodium Hypochlorite (#2287) @Pyritie +- Fixed summoned pet endermen not being able to survive in space or other planets @Pyritie +- Fixed some recipe imbalances with trimethyl borate and related recipes @Pyritie +- Fixed not being able to feed meat to the Cruncher (#2305) @Pyritie +- Hopefully fixed rockets without a pilot getting stuck and not exploding? (#2137) @Pyritie +- Fixed some missing blocks from the GT facade whitelist (#2299) @MoltonMontro +- Changed the texture of the ME Stocking Input Bus + Hatch to match the hull used to craft them @Pyritie +- Fixed warped/crimson trees only growing on mars mycelium and not mars dirt @Pyritie +- Fixed a few missing crafting recipes for bricks in the assembler (#2333) @Pyritie +- Fixed a recycling dupe with the maintenace hatch (#2321) @Pyritie +### Translation updates +- Chinese (simplified) @jmecn +- Japanese @sakura-gondra +- Russian @Petr211071 + +## [0.11.8] - 19-11-2025 +### Changes +- Added a paving cart for automating RNR roads. (#2144) @Redeix +- Non-TFC armors now have TFC resistances (#2157) @theMegaTech +- Regular Blue Steel Boots now also count towards the lavaproof diving set (#2155) @theMegaTech +- Added more field guide links to the stone age quest chapter (#2147) @FlightingFalcon +- Added an AE2-linked TACZ ammo box @BlueBoat29 +- Buffed hiking boots durability by 250%, also changed horseshoe durability and stats to match @Pyritie +- Added more automatable mud brick recipes, ensured all dirt types are renewable (#2169) @Pyritie +- Added a sky stone block duping recipe to the rock breaker (#2159) @Pyritie +- Improved the tag for cleanroom doors @Pyritie +- The food oven and refrigerator now emit heat (for TFC ambiental) @Pyritie +- Dioxygen Difluoride is now cryogenic and acidic @Pyritie +- Added tfc torches and lamps to Not Enough Animations' config, so now you hold them properly @Coopmore +- Barrel Staves (for Kegs) now just use bronze screws instead of wrought iron plates @Pyritie +- Added GTMolDraw with custom TFG compat @BlueBoat29 (special thanks to Maddie for her help) +- Saplings and fruit bushes can now enter the seed pouch. (#2202) @Redeix +- Mars sandstorms are now sandier @Pyritie +- Added an alternative recipe for item frames using cloth @Pyritie +- Added a little more silver to surface bismuth veins, moved apatite veins closer to the surface and with deeper indicators, increased deep sapphire veins' max Y level and added a rock type, and also added a rock type to deep magnetite's veins (all overworld only) @Pyritie +- Buffed the amount of roof tiles from clay knapping (#2178) @Pyritie +- Added sugar cookies, toasts, jams, pickled eggs, and butter to the meal bag tag, removed banana splits (#2129) @Pyritie +- Added lots of new food items including fries, burgers, oatmeal, mac and cheese, poutine, and more! @Redeix +- Added processed spices for firmalife spice crops (except cinnamon). @Redeix +- Reduced base food oven recipe time from 300 to 200 ticks @Redeix +- Made Nitrocellulose less annoying to craft @BlueBoat29 +- Added tags to platinum group ores @Mqrius +- Moved the Flintlock from Steel --> Wrought Iron @BlueBoat29 +- Added better tooltips for custom machines @Xtrial-01 +### Bug fixes +- Fixed TFC bug where paths and roads can collapse on themselves when creating a staircase shape. (#2144) @Redeix +- Fixed the HV aqueous accumulator water recipe so the amount of water can actually fit in the HV machine @Pyritie +- Fixed not being able to make brown universal compost with a mortar if the item is both green and brown (#2091) @Pyritie +- Fixed soup made in the food processor not returning bowls when eaten (#2053) @Pyritie +- Fixed missing helve hammer recipe for silver plates (#2183) @Pyritie +- Fixed some typos in gun/attachment names and descriptions @Jeuvke +- Fixed ocean moai spawning underwater sometimes πŸ—Ώ @Pyritie +- Added missing recipes for the Advanced and Electronic Gyroscope @Pyritie +- Fixed several quest typos and errors (#2151, #2176, #2177) @Pyritie +- Fixed not being able to put Seed Oil in a Mixing Bowl (#2203) @slavek +- Added missing items to the smooth stone slabs tag, cleaned up armor stand recipes (#2197) @Pyritie +- Fixed milk curd recipes in food processor outputting rotten curds. (#2209) @Redeix +- Fixed missing nixtamal food processor recipes. @Redeix +- Fixed missing lang string from loading screen. @Redeix +- Fixed some mismatched lang strings between ja_jp and en_us @BlueBoat29 @jmecn +- Fixed Railgun Ammo size @TomPlop +- Fixed bread and cheese ignoring being rotten @theMegaTech +### Translation updates +- Russian @DI-GitH + @nineex + @alexart2006 +- Brazilian Portuguese @Redeix +- Chinese (simplified) @jmecn +- Ukranian @MetEnBouldry +- Japanese @sakura-gondra +- Turkish @MVG31 ## [0.11.7] - 30-10-2025 ### Changes diff --git a/config/DistantHorizons.toml b/config/DistantHorizons.toml new file mode 100644 index 000000000..a6f048e16 --- /dev/null +++ b/config/DistantHorizons.toml @@ -0,0 +1,818 @@ +_version = 3 + +[client] + # + # Should Distant Horizon's config button appear in Minecraft's options screen next to the fov slider? + showDhOptionsButtonInMinecraftUi = true + + [client.advanced] + + [client.advanced.graphics] + + [client.advanced.graphics.quality] + # + # The radius of the mod's render distance. (measured in chunks) + lodChunkRenderDistanceRadius = 256 + # + # This indicates how quickly LODs decrease in quality the further away they are. + # Higher settings will render higher quality fake chunks farther away, + # but will increase memory and GPU usage. + horizontalQuality = "MEDIUM" + # + # What is the maximum detail LODs should be drawn at? + # Higher settings will increase memory and GPU usage. + # + # CHUNK: render 1 LOD for each Chunk. + # HALF_CHUNK: render 4 LODs for each Chunk. + # FOUR_BLOCKS: render 16 LODs for each Chunk. + # TWO_BLOCKS: render 64 LODs for each Chunk. + # BLOCK: render 256 LODs for each Chunk (width of one block). + # + # Lowest Quality: CHUNK + # Highest Quality: BLOCK + maxHorizontalResolution = "BLOCK" + # + # This indicates how well LODs will represent + # overhangs, caves, floating islands, etc. + # Higher options will make the world more accurate, butwill increase memory and GPU usage. + # + # Lowest Quality: HEIGHT_MAP + # Highest Quality: EXTREME + verticalQuality = "MEDIUM" + # + # How should LOD transparency be handled. + # + # COMPLETE: LODs will render transparent. + # FAKE: LODs will be opaque, but shaded to match the blocks underneath. + # DISABLED: LODs will be opaque. + transparency = "COMPLETE" + # + # What blocks shouldn't be rendered as LODs? + # + # NONE: Represent all blocks in the LODs + # NON_COLLIDING: Only represent solid blocks in the LODs (tall grass, torches, etc. won't count for a LOD's height) + blocksToIgnore = "NON_COLLIDING" + # + # Should the blocks underneath avoided blocks gain the color of the avoided block? + # + # True: a red flower will tint the grass below it red. + # False: skipped blocks will not change color of surface below them. + tintWithAvoidedBlocks = true + # + # What the value should vanilla Minecraft's texture LodBias be? + # If set to 0 the mod wont overwrite vanilla's default (which so happens to also be 0) + lodBias = "0.0" + # + # How should LODs be shaded? + # + # AUTO: Uses the same side shading as vanilla Minecraft blocks. + # ENABLED: Simulates Minecraft's block shading for LODs. + # Can be used to force LOD shading when using some shaders. + # DISABLED: All LOD sides will be rendered with the same brightness. + lodShading = "AUTO" + # + # How should the sides and bottom of grass block LODs render? + # + # AS_GRASS: all sides of dirt LOD's render using the top (green) color. + # FADE_TO_DIRT: sides fade from grass to dirt. + # AS_DIRT: sides render entirely as dirt. + grassSideRendering = "FADE_TO_DIRT" + # + # If true LODs will fade away as you get closer to them. + # If false LODs will cut off abruptly at a set distance from the camera. + # This setting is affected by the vanilla overdraw prevention config. + ditherDhFade = true + # + # How should vanilla Minecraft fade into Distant Horizons LODs? + # + # NONE: Fastest, there will be a pronounced border between DH and MC rendering. + # SINGLE_PASS: Fades after MC's transparent pass, opaque blocks underwater won't be faded. + # DOUBLE_PASS: Slowest, fades after both MC's opaque and transparent passes, provides the smoothest transition. + vanillaFadeMode = "DOUBLE_PASS" + # + # How bright LOD colors are. + # + # 0 = black + # 1 = normal + # 2 = near white + brightnessMultiplier = "1.0" + # + # How saturated LOD colors are. + # + # 0 = black and white + # 1 = normal + # 2 = very saturated + saturationMultiplier = "1.0" + # + # This is the same as vanilla Biome Blending settings for Lod area. + # Note that anything other than '0' will greatly effect Lod building time. + # + # '0' equals to Vanilla Biome Blending of '1x1' or 'OFF', + # '1' equals to Vanilla Biome Blending of '3x3', + # '2' equals to Vanilla Biome Blending of '5x5'... + lodBiomeBlending = 3 + + [client.advanced.graphics.ssao] + # + # Enable Screen Space Ambient Occlusion + enableSsao = true + # + # Determines how many points in space are sampled for the occlusion test. + # Higher numbers will improve quality and reduce banding, but will increase GPU load. + sampleCount = 6 + # + # Determines the radius Screen Space Ambient Occlusion is applied, measured in blocks. + radius = "4.0" + # + # Determines how dark the Screen Space Ambient Occlusion effect will be. + strength = "0.2" + # + # Increasing the value can reduce banding at the cost of reducing the strength of the effect. + bias = "0.02" + # + # Determines how dark the occlusion shadows can be. + # 0 = totally black at the corners + # 1 = no shadow + minLight = "0.25" + # + # The radius, measured in pixels, that blurring is calculated for the SSAO. + # Higher numbers will reduce banding at the cost of GPU performance. + blurRadius = 2 + + [client.advanced.graphics.genericRendering] + # + # If true non terrain objects will be rendered in DH's terrain. + # This includes beacon beams and clouds. + enableGenericRendering = true + # + # If true LOD beacon beams will be rendered. + enableBeaconRendering = true + # + # Sets the maximum height at which beacons will render.This will only affect new beacons coming into LOD render distance.Beacons currently visible in LOD chunks will not be affected. + beaconRenderHeight = 6000 + # + # If true LOD clouds will be rendered. + enableCloudRendering = true + # + # Can be disabled to use much slower but more compatible direct rendering. + # Disabling this can be used to fix some crashes on Mac. + enableInstancedRendering = true + + [client.advanced.graphics.fog] + # + # Determines if fog is drawn on DH LODs. + enableDhFog = true + # + # What color should fog use? + # + # USE_WORLD_FOG_COLOR: Use the world's fog color. + # USE_SKY_COLOR: Use the sky's color. + colorMode = "USE_WORLD_FOG_COLOR" + # + # Should Minecraft's fog render? + # Note: Other mods may conflict with this setting. + enableVanillaFog = false + # + # At what distance should the far fog start? + # + # 0.0: Fog starts at the player's position. + # 1.0: Fog starts at the closest edge of the vanilla render distance. + # 1.414: Fog starts at the corner of the vanilla render distance. + farFogStart = "0.4" + # + # Where should the far fog end? + # + # 0.0: Fog ends at player's position. + # 1.0: Fog ends at the closest edge of the vanilla render distance. + # 1.414: Fog ends at the corner of the vanilla render distance. + farFogEnd = "1.0" + # + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + farFogMin = "0.0" + # + # What is the maximum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + farFogMax = "1.0" + # + # How should the fog thickness should be calculated? + # + # LINEAR: Linear based on distance (will ignore 'density') + # EXPONENTIAL: 1/(e^(distance*density)) + # EXPONENTIAL_SQUARED: 1/(e^((distance*density)^2) + farFogFalloff = "EXPONENTIAL_SQUARED" + # + # Used in conjunction with the Fog Falloff. + farFogDensity = "2.5" + + [client.advanced.graphics.fog.heightFog] + # + # How should height effect the fog thickness? + # Note: height fog is combined with the other fog settings. + # + # SPHERICAL: Fog is calculated based on camera distance. + # CYLINDRICAL: Ignore height, fog is calculated based on horizontal distance. + # + # MAX: max(heightFog, farFog) + # ADDITION: heightFog + farFog + # MULTIPLY: heightFog * farFog + # INVERSE_MULTIPLY: 1 - (1-heightFog) * (1-farFog) + # LIMITED_ADDITION: farFog + max(farFog, heightFog) + # MULTIPLY_ADDITION: farFog + farFog * heightFog + # INVERSE_MULTIPLY_ADDITION: farFog + 1 - (1-heightFog) * (1-farFog) + # AVERAGE: farFog*0.5 + heightFog*0.5 + heightFogMixMode = "SPHERICAL" + # + # Where should the height fog start? + # + # ABOVE_CAMERA: Height fog starts at the camera and goes towards the sky + # BELOW_CAMERA: Height fog starts at the camera and goes towards the void + # ABOVE_AND_BELOW_CAMERA: Height fog starts from the camera to goes towards both the sky and void + # ABOVE_SET_HEIGHT: Height fog starts from a set height and goes towards the sky + # BELOW_SET_HEIGHT: Height fog starts from a set height and goes towards the void + # ABOVE_AND_BELOW_SET_HEIGHT: Height fog starts from a set height and goes towards both the sky and void + heightFogDirection = "BELOW_SET_HEIGHT" + # + # If the height fog is calculated around a set height, what is that height position? + heightFogBaseHeight = "80.0" + # + # Should the start of the height fog be offset? + # + # 0.0: Fog start with no offset. + # 1.0: Fog start with offset of the entire world's height. (Includes depth) + heightFogStart = "0.0" + # + # Should the end of the height fog be offset? + # + # 0.0: Fog end with no offset. + # 1.0: Fog end with offset of the entire world's height. (Include depth) + heightFogEnd = "0.6" + # + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + heightFogMin = "0.0" + # + # What is the maximum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + heightFogMax = "1.0" + # + # How should the height fog thickness should be calculated? + # + # LINEAR: Linear based on height (will ignore 'density') + # EXPONENTIAL: 1/(e^(height*density)) + # EXPONENTIAL_SQUARED: 1/(e^((height*density)^2) + heightFogFalloff = "EXPONENTIAL_SQUARED" + # + # What is the height fog's density? + heightFogDensity = "20.0" + + [client.advanced.graphics.noiseTexture] + # + # Should a noise texture be applied to LODs? + # + # This is done to simulate textures and make the LODs appear more detailed. + enableNoiseTexture = true + # + # How many steps of noise should be applied to LODs? + noiseSteps = 4 + # + # How intense should the noise should be? + noiseIntensity = "5.0" + # + # Defines how far should the noise texture render before it fades away. (in blocks) + # Set to 0 to disable noise from fading away + noiseDropoff = 1024 + + [client.advanced.graphics.culling] + # + # Determines how far from the camera Distant Horizons will start rendering. + # Measured as a percentage of the vanilla render distance. + # + # 0 = auto, overdraw will change based on the vanilla render distance. + # + # Higher values will prevent LODs from rendering behind vanilla blocks at a higher distance, + # but may cause holes in the world. + # Holes are most likely to appear when flying through unloaded terrain. + # + # Increasing the vanilla render distance increases the effectiveness of this setting. + overdrawPrevention = "0.0" + # + # If enabled caves won't be rendered. + # + # Note: for some world types this can cause + # overhangs or walls for floating objects. + # Tweaking the caveCullingHeight, can resolve some + # of those issues. + enableCaveCulling = true + # + # At what Y value should cave culling start? + # Lower this value if you get walls for areas with 0 light. + caveCullingHeight = 60 + # + # If false all beacons near the camera won't be drawn to prevent vanilla overdraw. + # If true all beacons will be rendered. + # + # Generally this should be left as true. It's main purpose is for debugging + # beacon updating/rendering. + disableBeaconDistanceCulling = true + # + # If true LODs outside the player's camera + # aren't drawn, increasing GPU performance. + # + # If false all LODs are drawn, even those behind + # the player's camera, decreasing GPU performance. + # + # Disable this if you see LODs disappearing at the corners of your vision. + disableFrustumCulling = false + # + # Identical to the other frustum culling option + # only used when a shader mod is present using the DH API + # and the shadow pass is being rendered. + # + # Disable this if shadows render incorrectly. + disableShadowPassFrustumCulling = false + # + # A comma separated list of block resource locations that won't be rendered by DH. + # Air is always included in this list. + # Requires a restart to change. + ignoredRenderBlockCsv = "minecraft:barrier,minecraft:structure_void,minecraft:light,minecraft:tripwire,minecraft:brown_mushroom" + # + # A comma separated list of block resource locations that shouldn't be rendered + # if they are in a 0 sky light underground area. + # Air is always included in this list. + # Requires a restart to change. + ignoredRenderCaveBlockCsv = "minecraft:glow_lichen,minecraft:rail,minecraft:water,minecraft:lava,minecraft:bubble_column,minecraft:cave_vines_plant,minecraft:vine,minecraft:cave_vines,minecraft:short_grass,minecraft:tall_grass,minecraft:small_dripleaf,minecraft:big_dripleaf,minecraft:big_dripleaf_stem,minecraft:sculk_vein" + + [client.advanced.graphics.experimental] + # + # This is the earth size ratio when applying the curvature shader effect. + # Note: Enabling this feature may cause rendering bugs. + # + # 0 = flat/disabled + # 1 = 1 to 1 (6,371,000 blocks) + # 100 = 1 to 100 (63,710 blocks) + # 10000 = 1 to 10000 (637.1 blocks) + # + # Note: Due to current limitations, the min value is 50 + # and the max value is 5000. Any values outside this range + # will be set to 0 (disabled). + earthCurveRatio = 0 + + [client.advanced.multiplayer] + # + # How should multiplayer save folders should be named? + # + # NAME_ONLY: Example: "Minecraft Server" + # IP_ONLY: Example: "192.168.1.40" + # NAME_IP: Example: "Minecraft Server IP 192.168.1.40" + # NAME_IP_PORT: Example: "Minecraft Server IP 192.168.1.40:25565"NAME_IP_PORT_MC_VERSION: Example: "Minecraft Server IP 192.168.1.40:25565 GameVersion 1.16.5" + serverFolderNameMode = "NAME_ONLY" + + [client.advanced.autoUpdater] + # + # Automatically check for updates on game launch? + enableAutoUpdater = true + # + # Should Distant Horizons silently, automatically download and install new versions? + # This setting is force disabled on dedicated servers for stability reasons. + enableSilentUpdates = false + # + # If DH should use the nightly (provided by Gitlab), or stable (provided by Modrinth) build. + # If [AUTO] is selected DH will update to new stable releases if the current jar is a stable jar + # and will update to new nightly builds if the current jar is a nightly jar (IE the version number ends in '-dev'). + updateBranch = "AUTO" + + [client.advanced.debugging] + # + # What renderer is active? + # + # DEFAULT: Default lod renderer + # DEBUG: Debug testing renderer + # DISABLED: Disable rendering + rendererMode = "DEFAULT" + # + # Should specialized colors/rendering modes be used? + # + # OFF: LODs will be drawn with their normal colors. + # SHOW_DETAIL: LODs' color will be based on their detail level. + # SHOW_BLOCK_MATERIAL: LODs' color will be based on their material. + # SHOW_OVERLAPPING_QUADS: LODs will be drawn with total white, but overlapping quads will be drawn with red. + debugRendering = "OFF" + # + # If enabled this will disable (most) vanilla Minecraft rendering. + # + # NOTE: Do not report any issues when this mode is on! + # This setting is only for fun and debugging. + # Mod compatibility is not guaranteed. + lodOnlyMode = false + # + # If enabled the LODs will render as wireframe. + renderWireframe = false + # + # If true the F8 key can be used to cycle through the different debug modes. + # and the F6 key can be used to enable and disable LOD rendering. + enableDebugKeybindings = false + # + # Stops vertex colors from being passed. + # Useful for debugging shaders + enableWhiteWorld = false + # + # If true overlapping quads will be rendered as bright red for easy identification. + # If false the quads will be rendered normally. + showOverlappingQuadErrors = false + # + # If true OpenGL Buffer garbage collection will be logged + # this also includes the number of live buffers. + logBufferGarbageCollection = false + + [client.advanced.debugging.debugWireframe] + # + # If enabled, various wireframes for debugging internal functions will be drawn. + # + # NOTE: There WILL be performance hit! + # Additionally, only stuff that's loaded after you enable this + # will render their debug wireframes. + enableRendering = false + # + # Render queued world gen tasks? + showWorldGenQueue = false + # + # Render queued network sync on load tasks? + showNetworkSyncOnLoadQueue = false + # + # Render LOD section status? + showRenderSectionStatus = false + # + # A white box will be drawn when an LOD starts rendering + # and a purple box when an LOD stops rendering. + # + # This can be used to debug Quad Tree holes. + showRenderSectionToggling = false + # + # Render Quad Tree Rendering status? + showQuadTreeRenderStatus = false + # + # Render full data update/lock status? + showFullDataUpdateStatus = false + + [client.advanced.debugging.openGl] + # + # Defines how OpenGL errors are handled. + # Requires rebooting Minecraft to change. + # Will catch OpenGL errors thrown by other mods. + overrideVanillaGLLogger = true + # + # If true each Open GL error will only be logged once. + # Enabling this may cause some error logs to be missed. + # Does nothing if overrideVanillaGLLogger is set to false. + # + # Generally this can be kept as 'true' to prevent log spam. + # However, Please set this to 'false' if a developer needs your log to debug a GL issue. + onlyLogGlErrorsOnce = true + # + # Defines how OpenGL errors are handled. + # May incorrectly catch OpenGL errors thrown by other mods. + # + # IGNORE: Do nothing. + # LOG: write an error to the log. + # LOG_THROW: write to the log and throw an exception. + # Warning: this should only be enabled when debugging the LOD renderer + # as it may break Minecraft's renderer when an exception is thrown. + glErrorHandlingMode = "IGNORE" + # + # Massively reduces FPS. + # Should only be used if mysterious EXCEPTION_ACCESS_VIOLATION crashes are happening in DH's rendering code for troubleshooting. + validateBufferIdsBeforeRendering = false + + [client.advanced.debugging.f3Screen] + # + # Shows the player's LOD position. + showPlayerPos = true + # + # Defines what internal detail level the player position will be shown as. + # Internal detail level means: 6 = 1x1 block, 7 = 2x2 blocks, etc. + playerPosSectionDetailLevel = 6 + # + # Shows info about each thread pool. + showThreadPools = true + # + # Shows the combined memory use and array counts for all DH pooled objects. + showCombinedObjectPools = false + # + # Shows the memory use and array counts for each DH object pool. + showSeparatedObjectPools = false + # + # Shows how many chunks are queud for processing and the max count that can be queued. + showQueuedChunkUpdateCount = true + # + # Shows what levels are loaded and world gen/rendering info about those levels. + showLevelStatus = true + + [client.advanced.debugging.exampleConfigScreen] + boolTest = false + byteTest = "8" + intTest = 69420 + doubleTest = "420.69" + shortTest = "69" + longTest = "42069" + floatTest = "0.42069" + stringTest = "Test input box" + listTest = ["option 1", "option 2", "option 3"] + mapTest = "{}" + linkableTest = 420 + +[common] + + [common.worldGenerator] + # + # Should Distant Horizons slowly generate LODs + # outside the vanilla render distance? + # Depending on the generator mode, this will import existing chunks + # and/or generating missing chunks. + enableDistantGeneration = true + # + # How detailed should LODs be generated outside the vanilla render distance? + # + # PRE_EXISTING_ONLY + # Only create LOD data for already generated chunks. + # + # + # SURFACE + # Generate the world surface, + # this does NOT include trees, + # or structures. + # + # FEATURES + # Generate everything except structures. + # WARNING: This may cause world generator bugs or instability when paired with certain world generator mods. + # + # INTERNAL_SERVER + # Ask the local server to generate/load each chunk. + # This is the most compatible and will generate structures correctly, + # but may cause server/simulation lag. + # Note: unlike other modes this option DOES save generated chunks to + # Minecraft's region files. + distantGeneratorMode = "INTERNAL_SERVER" + # + # How should distant generator progress be displayed? + # + # OVERLAY: may be the same as CHAT for some Minecraft versions + # CHAT + # LOG + # DISABLED + showGenerationProgress = "DISABLED" + # + # How often should the distant generator progress be displayed? + generationProgressDisplayIntervalInSeconds = 2 + # + # For how many seconds should instructions for disabling the distant generator progress be displayed? + # Setting this to 0 hides the instructional message so the world gen progress is shown immediately when it starts. + generationProgressDisableMessageDisplayTimeInSeconds = 20 + # + # When logging generation progress also include the rate at which chunks + # are being generated. + # This can be useful for troubleshooting performance. + generationProgressIncludeChunksPerSecond = true + + [common.lodBuilding] + # + # Enabling this will drastically increase chunk processing time + # and you may need to increase your CPU load to handle it. + # + # Normally DH will attempt to skip creating LODs for chunks it's already seen + # and that haven't changed. + # + # However sometimes that logic incorrectly prevents LODs from being updated. + # Disabling this check may fix issues where LODs aren't updated after + # blocks have been changed. + disableUnchangedChunkCheck = false + # + # What algorithm should be used to compress new LOD data? + # This setting will only affect new or updated LOD data, + # any data already generated when this setting is changed will be + # unaffected until it needs to be re-written to the database. + # + # UNCOMPRESSED + # Should only be used for testing, is worse in every way vs [LZ4]. + # Expected Compression Ratio: 1.0 + # Estimated average DTO read speed: 6.09 milliseconds + # Estimated average DTO write speed: 6.01 milliseconds + # + # LZ4 + # A good option if you're CPU limited and have plenty of hard drive space. + # Expected Compression Ratio: 0.4513 + # Estimated average DTO read speed: 3.25 ms + # Estimated average DTO write speed: 5.99 ms + # + # Z_STD + # A good option if you're CPU limited and have plenty of hard drive space. + # Expected Compression Ratio: 0.2606 + # Estimated average DTO read speed: 9.31 ms + # Estimated average DTO write speed: 15.13 ms + # + # LZMA2 + # Slow but very good compression. + # Expected Compression Ratio: 0.2 + # Estimated average DTO read speed: 13.29 ms + # Estimated average DTO write speed: 70.95 ms + dataCompression = "Z_STD" + # + # How should block data be compressed when creating LOD data? + # This setting will only affect new or updated LOD data, + # any data already generated when this setting is changed will be + # unaffected until it is modified or re-loaded. + # + # MERGE_SAME_BLOCKS + # Every block/biome change is recorded in the database. + # This is what DH 2.0 and 2.0.1 all used by default and will store a lot of data. + # Expected Compression Ratio: 1.0 + # + # VISUALLY_EQUAL + # Only visible block/biome changes are recorded in the database. + # Hidden blocks (IE ores) are ignored. + # Expected Compression Ratio: 0.7 + worldCompression = "VISUALLY_EQUAL" + # + # True: Recalculate chunk height maps before chunks can be used by DH. + # This can fix problems with worlds created by World Painter or + # other external tools where the heightmap format may be incorrect. + # False: Assume any height maps handled by Minecraft are correct. + # + # Fastest: False + # Most Compatible: True + recalculateChunkHeightmaps = false + # + # If true LOD generation for pre-existing chunks will attempt to pull the lighting data + # saved in Minecraft's Region files. + # If false DH will pull in chunks without lighting and re-light them. + # + # Setting this to true will result in faster LOD generation + # for already generated worlds, but is broken by most lighting mods. + # + # Set this to false if LODs are black. + pullLightingForPregeneratedChunks = false + # + # When DH pulls in pre-existing chunks it will attempt to + # run any missing world generation steps; for example: + # if a chunk has the status SURFACE, DH will skip BIOMES + # and SURFACE, but will run FEATURES. + # + # However if for some reason the chunks are malformed + # or there's some other issue that causes the status + # to be incorrect that can either cause world gen + # lock-ups and/or crashes. + # If either of those happen try setting this to True. + assumePreExistingChunksAreFinished = false + + [common.lodBuilding.experimental] + # + # When active DH will attempt to fill missing LOD data + # with any data that is present in the tree, preventing holes when moving + # when a N-sized generator (or server) is active. + # + # This is only used when N-sized world generation is available + # and/or when on a server where [generateOnlyInHighestDetail] is false. + # + # Experimental: + # Enabling this option will increase CPU and harddrive use + # and may cause rendering bugs. + upsampleLowerDetailLodsToFillHoles = false + + [common.multiThreading] + # + # How many threads should be used by Distant Horizons? + numberOfThreads = 8 + # + # A value between 1.0 and 0.0 that represents the percentage + # of time each thread can run before going idle. + # + # This can be used to reduce CPU usage if the thread count + # is already set to 1 for the given option, or more finely + # tune CPU performance. + threadRunTimeRatio = "1.0" + + [common.logging] + # + # If enabled, the mod will log information about the world generation process. + # This can be useful for debugging. + logWorldGenEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE" + # + # If enabled, the mod will log performance about the world generation process. + # This can be useful for debugging. + logWorldGenPerformance = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE" + # + # If enabled, the mod will log information about the world generation process. + # This can be useful for debugging. + logWorldGenLoadEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE" + # + # If enabled, the mod will log information about the renderer buffer process. + # This can be useful for debugging. + logRendererBufferEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE" + # + # If enabled, the mod will log information about the renderer OpenGL process. + # This can be useful for debugging. + logRendererGLEvent = "LOG_ERROR_TO_CHAT_AND_INFO_TO_FILE" + # + # If enabled, the mod will log information about network operations. + # This can be useful for debugging. + logNetworkEvent = "LOG_ERROR_TO_CHAT_AND_WARNING_TO_FILE" + + [common.logging.warning] + # + # If enabled, a chat message will be displayed if Java doesn't have enough + # memory allocated to run DH well. + showLowMemoryWarningOnStartup = true + # + # If enabled, a chat message will be displayed if DH detects + # that any pooled objects have been garbage collected. + showPoolInsufficientMemoryWarning = true + # + # If enabled, a chat message will be displayed if vanilla MC's + # render distance is higher than the recommended amount. + showHighVanillaRenderDistanceWarning = true + # + # If enabled, a chat message will be displayed when a replay is started + # giving some basic information about how DH will function. + showReplayWarningOnStartup = true + # + # If enabled, a chat message will be displayed when DH has too many chunks + # queued for updating. + showUpdateQueueOverloadedChatWarning = false + # + # If enabled, a chat message will be displayed when a potentially problematic + # mod is installed alongside DH. + showModCompatibilityWarningsOnStartup = true + +[server] + # + # Makes the server send level keys for each world. + # Disable this if you use alternative ways to send level keys. + sendLevelKeys = true + # + # Prefix of the level keys sent to the clients. + # If the mod is running behind a proxy, each backend should use a unique value. + # If this value is empty, level key will be based on the server's seed hash. + levelKeyPrefix = "" + # + # How many LOD generation requests per second should a client send? + # Also limits the number of client requests allowed to stay in the server's queue. + generationRequestRateLimit = 20 + # + # Defines the distance allowed to generate around the player. + maxGenerationRequestDistance = 4096 + # + # Defines the X-coordinate of the central point for generation boundaries, in blocks. + generationBoundsX = 0 + # + # Defines the Z-coordinate of the central point for generation boundaries, in blocks. + generationBoundsZ = 0 + # + # Defines the radius around the central point within which generation is allowed, in blocks. + # If this value is set to 0, generation bounds are disabled. + generationBoundsRadius = 0 + # + # If true, clients will receive real-time LOD updates for chunks outside the client's render distance. + enableRealTimeUpdates = true + # + # Defines the distance the player will receive updates around. + realTimeUpdateDistanceRadiusInChunks = 256 + # + # If true, clients will receive updated LODs when joining or loading new LODs. + synchronizeOnLoad = true + # + # How many LOD sync requests per second should a client send? + # Also limits the amount of player's requests allowed to stay in the server's queue. + syncOnLoadRateLimit = 50 + # + # Defines the distance allowed to be synchronized around the player. + # Should be the same or larger than maxGenerationRequestDistance in most cases. + maxSyncOnLoadRequestDistance = 4096 + # + # Maximum per-player speed for uploading LODs to the clients, in KB/s. + # Value of 0 disables the limit. + playerBandwidthLimit = 500 + # + # Maximum global speed for uploading LODs to the clients, in KB/s. + # Value of 0 disables the limit. + globalBandwidthLimit = 0 + # + # Enables adaptive transfer speed based on client performance. + # If true, DH will automatically adjust transfer rate to minimize connection lag. + # If false, transfer speed will remain fixed. + enableAdaptiveTransferSpeed = false + + [server.experimental] + # + # When enabled on the client, this allows loading lower detail levels as needed to speed up terrain generation. + # This must also be enabled on the server; otherwise, it will have no effect. + # For better performance when switching LOD detail levels, enabling [upsampleLowerDetailLodsToFillHoles] is recommended. + enableNSizedGeneration = false + diff --git a/config/InventoryHUD/curios.json b/config/InventoryHUD/curios.json index ca2f9ff64..eb0aca1d4 100644 --- a/config/InventoryHUD/curios.json +++ b/config/InventoryHUD/curios.json @@ -1,6 +1,6 @@ { "clothes_hat": { - "x": 20, + "x": 30, "y": 98, "enabled": true, "halign": "LEFT", @@ -63,7 +63,7 @@ "valign": "BOTTOM" }, "clothes_torso": { - "x": 20, + "x": 30, "y": 80, "enabled": true, "halign": "LEFT", @@ -98,14 +98,14 @@ "valign": "TOP" }, "clothes_pants": { - "x": 20, + "x": 30, "y": 62, "enabled": true, "halign": "LEFT", "valign": "BOTTOM" }, "clothes_socks": { - "x": 20, + "x": 30, "y": 44, "enabled": true, "halign": "LEFT", diff --git a/config/ad_astra.jsonc b/config/ad_astra.jsonc index 05dfe308f..f255b90f0 100644 --- a/config/ad_astra.jsonc +++ b/config/ad_astra.jsonc @@ -14,9 +14,9 @@ * The y level where rockets should leave the dimension and enter space. * Type: Integer */ - "atmosphereLeave": 600, + "atmosphereLeave": 400, // A comma-separated list of planet IDs that should be hidden from the planets screen. e.g. minecraft:overworld,ad_astra:moon,ad_astra:mars,ad_astra:venus,ad_astra:mercury,ad_astra:glacio - "disabledPlanets": "ad_astra:glacio", + "disabledPlanets": "", // Disables oxygen damage. "disableOxygen": false, // Disables temperature damage. diff --git a/config/adaptive_performance_tweaks/spawn/CustomSpawn.toml b/config/adaptive_performance_tweaks/spawn/CustomSpawn.toml index 58831562f..6bea8dfdb 100644 --- a/config/adaptive_performance_tweaks/spawn/CustomSpawn.toml +++ b/config/adaptive_performance_tweaks/spawn/CustomSpawn.toml @@ -1,8 +1,8 @@ #Adaptive Performance Tweaks: Spawn ["Custom Spawn Config"] - Enabled = false - Id = "_config" + Enabled = true + Id = "TFG" #Range: 1 ~ 64 MaxPassiveMobsPerPlayer = 4 #Range: 1 ~ 512 @@ -12,19 +12,19 @@ #List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..] PassiveMobsList = [] #Range: 1 ~ 64 - MaxNeutralMobsPerPlayer = 4 + MaxNeutralMobsPerPlayer = 16 #Range: 1 ~ 512 - MaxNeutralMobsPerWorld = 16 + MaxNeutralMobsPerWorld = 32 #Range: 1 ~ 1024 MaxNeutralMobsPerServer = 320 #List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..] - NeutralMobsList = [] + NeutralMobsList = ["arthropocolypse:prairie_grasshopper", "arthropocolypse:field_cricket", "arthropocolypse:ice_crawler", "arthropocolypse:worker_ant", "arthropocolypse:soldier_ant", "arthropocolypse:stag_beetle", "arthropocolypse:stag_beetle_larva", "arthropocolypse:wharf_roach", "arthropocolypse:platerodrilus", "arthropocolypse:mealworm_beetle", "arthropocolypse:mealworm"] #Range: 1 ~ 64 - MaxHostileMobsPerPlayer = 4 + MaxHostileMobsPerPlayer = 8 #Range: 1 ~ 512 - MaxHostileMobsPerWorld = 16 + MaxHostileMobsPerWorld = 32 #Range: 1 ~ 1024 MaxHostileMobsPerServer = 320 #List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..] - HostileMobsList = [] + HostileMobsList = ["arthropocolypse:millipede_head", "minecraft:blaze", "minecraft:magma_cube", "primitive_creatures:golem_2", "ad_astra:sulfur_creeper", "species:cliff_hanger"] diff --git a/config/ae2/client.json b/config/ae2/client.json index 5def997ef..76072eb77 100644 --- a/config/ae2/client.json +++ b/config/ae2/client.json @@ -5,6 +5,8 @@ "enableFacadesInJEI": true, "enableFacadeRecipesInJEI_comment": "Show facade recipes in JEI for supported blocks", "enableFacadeRecipesInJEI": true, + "exposeInventoryToEmi_comment": "Expose the full network inventory to EMI, which might cause performance problems.", + "exposeInventoryToEmi": false, "enableEffects": true, "useTerminalUseLargeFont": false, "useColoredCraftingStatus": true, @@ -16,10 +18,33 @@ "showPlacementPreview": true, "notifyForFinishedCraftingJobs_comment": "Show toast when long-running crafting jobs finish.", "notifyForFinishedCraftingJobs": true, + "fancyPatternTooltips_comment": "Show fancy tooltips for encoded patterns.", + "fancyPatternTooltips": true, "clearGridOnClose_comment": "Automatically clear the crafting/encoding grid when closing the terminal", "clearGridOnClose": false, "terminalMargin_comment": "The vertical margin to apply when sizing terminals. Used to make room for centered item mod search bars", - "terminalMargin": 25 + "terminalMargin": 25, + "autoPauseTerminal_comment": "Pause the terminal exactly like when pressing shift, except done automatically", + "autoPauseTerminal": false + }, + "widgetNumbers": { + "_comment": "Number button values in the level emitter config panel and the craft order amount picker", + "widgetNumberBase1_comment": "Value of the first button when not pressing shift or ctrl", + "widgetNumberBase1": 1, + "widgetNumberBase2_comment": "Value of the second button when not pressing shift or ctrl", + "widgetNumberBase2": 10, + "widgetNumberBase3_comment": "Value of the third button when not pressing shift or ctrl", + "widgetNumberBase3": 100, + "widgetNumberBase4_comment": "Value of the fourth button when not pressing shift or ctrl", + "widgetNumberBase4": 1000, + "widgetNumberAlt1_comment": "Value of the first button when pressing shift or ctrl", + "widgetNumberAlt1": 1, + "widgetNumberAlt2_comment": "Value of the second button when pressing shift or ctrl", + "widgetNumberAlt2": 16, + "widgetNumberAlt3_comment": "Value of the third button when pressing shift or ctrl", + "widgetNumberAlt3": 32, + "widgetNumberAlt4_comment": "Value of the fourth button when pressing shift or ctrl", + "widgetNumberAlt4": 64 }, "terminals": { "terminalStyle": "small", diff --git a/config/ae2/common.json b/config/ae2/common.json index 2c91128bd..2e4bb8227 100644 --- a/config/ae2/common.json +++ b/config/ae2/common.json @@ -7,6 +7,8 @@ "tinyTntBlockDamage": true, "channels_comment": "Changes the channel capacity that cables provide in AE2.", "channels": "default", + "controllerLength_comment": "Maximum length for AE controllers", + "controllerLength": 11, "spatialAnchorEnableRandomTicks_comment": "Whether Spatial Anchors should force random chunk ticks and entity spawning.", "spatialAnchorEnableRandomTicks": true }, diff --git a/config/alltheleaks.json b/config/alltheleaks.json index dcf6e81ce..9f532945e 100644 --- a/config/alltheleaks.json +++ b/config/alltheleaks.json @@ -1,5 +1,10 @@ { "preventSearchIgnoredItems": false, "ingredientDedupe": false, - "resourceLocationDedupe": false + "resourceLocationDedupe": false, + "debugItemStackModifications": false, + "logIntervalInMinutes": 10, + "showSummaryOnDebugScreen": true, + "memoryUsageWarningPercentage": 90, + "debugThreadsStuck": false } \ No newline at end of file diff --git a/config/ambientsounds-client.json b/config/ambientsounds-client.json index 875f15855..eedba20d7 100644 --- a/config/ambientsounds-client.json +++ b/config/ambientsounds-client.json @@ -8,6 +8,9 @@ }, "dimensions": { "abyssalcraft": 1, + "ad_astra_mars": 1, + "ad_astra_mercury": 1, + "ad_astra_venus": 1, "betweenlands": 1, "cave": 1, "end": 1, @@ -17,14 +20,21 @@ "nether": 1, "surface": 1, "twilightforest": 1, - "void": 1, - "ad_astra": 1 + "void": 1 }, "regions": { "abyssalcraft_dark": { "overall": 1, "suspense.suspense": 1 }, + "ad_astra_mars_wind": { + "overall": 1, + "wind.light-wind": 1 + }, + "ad_astra_mercury_unknown": { + "overall": 1, + "suspense.suspense": 1 + }, "end_unknown": { "overall": 1, "suspense.suspense": 1 @@ -49,7 +59,8 @@ "overall": 1, "beach": 1, "seagull": 1, - "seagull-long": 1 + "seagull-long": 1, + "ocean": 1 }, "cave_ambience": { "overall": 1, @@ -86,11 +97,17 @@ }, "forest_cold": { "overall": 1, - "crow": 1 + "bird-ambience": 1, + "crow": 1, + "owl": 1, + "wolf": 1, + "long-wolf": 1 }, "forest": { "overall": 1, - "bird-ambience": 1, + "bird-warm": 1, + "cricket": 1, + "cricket-warm-night": 1, "owl": 1 }, "forest_roofed": { @@ -115,6 +132,10 @@ "bird-ambience-jungle": 1, "bird-ambience-jungle-night": 1 }, + "lake": { + "overall": 1, + "ocean": 1 + }, "mesa": { "overall": 1, "wind-mesa": 1 @@ -157,6 +178,10 @@ "overall": 1, "wind.light-wind": 1 }, + "snow": { + "overall": 1, + "wind.light-wind": 1 + }, "space": { "overall": 1 }, @@ -182,7 +207,10 @@ }, "taiga": { "overall": 1, - "bird-ambience-huge": 1 + "bird-ambience-huge": 1, + "crow": 1, + "wolf": 1, + "long-wolf": 1 }, "underwater": { "overall": 1, @@ -193,6 +221,15 @@ "overall": 1, "underworld": 1 }, + "venus": { + "overall": 1, + "cricket": 1, + "cricket-night": 0.7, + "cicadas": 1, + "cicadas-desert": 1, + "cicadas-night": 0.7, + "cricket-warm-night": 0.7 + }, "warden": { "overall": 1, "warden": 1 @@ -202,9 +239,9 @@ "animal": { "animal": 1, "bird": { - "bird": 1, - "bird_day": 1, - "bird_night": 1 + "bird": 0.5, + "bird_day": 0.5, + "bird_night": 0.5 }, "cicadas": 1, "cricket": { @@ -215,7 +252,7 @@ }, "cave": 1, "weather": 1, - "wind": 1 + "wind": 0.65 }, "fade-volume": 0.005, "fade-pitch": 0.005, diff --git a/config/applied_ammo_box-common.toml b/config/applied_ammo_box-common.toml new file mode 100644 index 000000000..a7fb3dd30 --- /dev/null +++ b/config/applied_ammo_box-common.toml @@ -0,0 +1,11 @@ + +[power] + #Energy consumed per round of ammo retrieved from an ammo box, default: 1000.0 + #Range: 0.0 ~ 1.7976931348623157E308 + AmmoBoxUsePowerPerAmmo = 1000.0 + +[jei] + #Modify the recipe content displayed in JEI, Normally, there is no need to disable this + #When creating custom modpacks, disable this if fake recipes remain after deleting the default crafting recipes + JeiRecipeDisplayCorrection = true + diff --git a/config/arthropocolypse.toml b/config/arthropocolypse.toml new file mode 100644 index 000000000..cbca1c9f8 --- /dev/null +++ b/config/arthropocolypse.toml @@ -0,0 +1,78 @@ + +[spawning] + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Millipede Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Millipede Spawn Chance" = 1.0 + #Max World Y Level to spawning + #Range: -64 ~ 128 + "Millipede Spawn Height" = 200 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Field Cricket Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Field Cricket Spawn Chance" = 1.0 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Prairie Grasshopper Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Prairie Grasshopper Spawn Chance" = 1.0 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Worker Ant Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Worker Ant Spawn Chance" = 1.0 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Soldier Ant Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Soldier Ant Spawn Chance" = 1.0 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Ice Crawler Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Ice Crawler Spawn Chance" = 1.0 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Wharf Roach Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Wharf Roach Spawn Chance" = 1.0 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Stag Beetle Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Stag Beetle Spawn Chance" = 1.0 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Stag Beetle Larva Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Stag Beetle Larva Spawn Chance" = 1.0 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Mealworm Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Mealworm Spawn Chance" = 1.0 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Mealworm Beetle Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Mealworm Beetle Spawn Chance" = 1.0 + #Spawn Weight, 0 to disable spawn + #Range: 0 ~ 1000 + "Platerodrilus Spawn Weight" = 100 + #Random Chance to spawning + #Range: 0.0 ~ 1.0 + "Platerodrilus Spawn Chance" = 1.0 + diff --git a/config/attributefix.json b/config/attributefix.json index 770c5f0c0..226d7129b 100644 --- a/config/attributefix.json +++ b/config/attributefix.json @@ -1,16 +1,5 @@ { "attributes": { - "tacz:tacz.bullet_resistance": { - "enabled": false, - "min": { - "default": 0, - "value": 0 - }, - "max": { - "default": 1, - "value": 1 - } - }, "forge:step_height_addition": { "enabled": false, "min": { @@ -33,17 +22,6 @@ "value": 2048 } }, - "minecraft:generic.flying_speed": { - "enabled": true, - "min": { - "default": 0, - "value": 0 - }, - "max": { - "default": 1024, - "value": 1024 - } - }, "forge:nametag_distance": { "enabled": false, "min": { @@ -55,17 +33,6 @@ "value": 64 } }, - "minecraft:generic.movement_speed": { - "enabled": true, - "min": { - "default": 0, - "value": 0 - }, - "max": { - "default": 1024, - "value": 1024 - } - }, "forge:entity_gravity": { "enabled": false, "min": { @@ -88,17 +55,6 @@ "value": 1024 } }, - "minecraft:generic.max_health": { - "enabled": true, - "min": { - "default": 1, - "value": 1 - }, - "max": { - "default": 1024, - "value": 1000000 - } - }, "minecraft:generic.attack_speed": { "enabled": true, "min": { @@ -121,6 +77,17 @@ "value": 1000000 } }, + "lodestone:magic_proficiency": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 2048, + "value": 2048 + } + }, "minecolonies:mc_mob_damage": { "enabled": false, "min": { @@ -143,6 +110,83 @@ "value": 1024 } }, + "minecraft:generic.armor": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 30, + "value": 1000000 + } + }, + "forge:entity_reach": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "tacz:tacz.bullet_resistance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1, + "value": 1 + } + }, + "sns:extra_fall_distance": { + "enabled": false, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 64, + "value": 64 + } + }, + "minecraft:generic.flying_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "minecraft:generic.movement_speed": { + "enabled": true, + "min": { + "default": 0, + "value": 0 + }, + "max": { + "default": 1024, + "value": 1024 + } + }, + "minecraft:generic.max_health": { + "enabled": true, + "min": { + "default": 1, + "value": 1 + }, + "max": { + "default": 1024, + "value": 1000000 + } + }, "minecraft:zombie.spawn_reinforcements": { "enabled": true, "min": { @@ -176,15 +220,15 @@ "value": 1000000 } }, - "minecraft:generic.armor": { - "enabled": true, + "lodestone:magic_resistance": { + "enabled": false, "min": { - "default": 0, - "value": 0 + "default": 1, + "value": 1 }, "max": { - "default": 30, - "value": 1000000 + "default": 2048, + "value": 2048 } }, "forge:swim_speed": { @@ -220,15 +264,15 @@ "value": 1000000 } }, - "forge:entity_reach": { + "lodestone:magic_damage": { "enabled": false, "min": { "default": 0, "value": 0 }, "max": { - "default": 1024, - "value": 1024 + "default": 2048, + "value": 2048 } } } diff --git a/config/blockrunner-client.toml b/config/blockrunner-client.toml new file mode 100644 index 000000000..cb8a96d4d --- /dev/null +++ b/config/blockrunner-client.toml @@ -0,0 +1,5 @@ +#Prevent running on blocks with higher speeds from changing the field of view. +disable_field_of_view_changes = true +#Add a tooltip to blocks that have an altered block speed with the multiplier. +block_speed_multiplier_tooltip = true + diff --git a/config/blockrunner.json b/config/blockrunner.json new file mode 100644 index 000000000..0f8a78d4c --- /dev/null +++ b/config/blockrunner.json @@ -0,0 +1,11 @@ +{ + "schema_version": "2", + "minecraft:dirt_path": 1.35, + "#blockrunner:slow_blocks": 0.65, + "#blockrunner:very_slow_blocks": 0.45, + "#blockrunner:quick_blocks": 1.35, + "#blockrunner:very_quick_blocks": 1.55, + "#blockrunner:slightly_slow_blocks": 0.85, + "#blockrunner:slightly_quick_blocks": 1.15, + "#minecraft:stone_bricks": 1.15 +} \ No newline at end of file diff --git a/config/carryon-common.toml b/config/carryon-common.toml index b46d9a87d..bcd253142 100644 --- a/config/carryon-common.toml +++ b/config/carryon-common.toml @@ -30,7 +30,7 @@ #Larger Entities slow down the player more heavyEntities = true #Allow babies to be carried even when adult mob is blacklisted (or not whitelisted) - allowBabies = false + allowBabies = true #Use Whitelist instead of Blacklist for Blocks useWhitelistBlocks = true #Use Whitelist instead of Blacklist for Entities @@ -57,7 +57,7 @@ [whitelist] #Whitelist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config #Entities that CAN be picked up (useWhitelistEntities must be true) - allowedEntities = ["minecraft:axolotl", "tfc:turkey", "tfc:isopod", "tfc:lobster", "tfc:frog", "tfc:penguin", "tfc:turtle", "tfc:horseshoe_crab", "tfc:crayfish", "tfc:grouse", "tfc:pheasant", "tfc:peafowl", "tfc:rat", "tfc:chicken", "tfc:duck", "tfc:quail", "tfc:rabbit", "tfg:moon_rabbit", "species:birt", "species:stackatick", "species:springling", "tfg:glacian_ram"] + allowedEntities = ["minecraft:axolotl", "tfc:turkey", "tfc:isopod", "tfc:lobster", "tfc:frog", "tfc:penguin", "tfc:turtle", "tfc:horseshoe_crab", "tfc:crayfish", "tfc:grouse", "tfc:pheasant", "tfc:peafowl", "tfc:rat", "tfc:chicken", "tfc:duck", "tfc:quail", "tfc:rabbit", "tfc:sheep", "tfc:wolf", "tfc:dog", "tfc:pig", "tfc:goat", "tfc:alpaca", "tfg:wraptor", "tfg:surfer", "tfg:moon_rabbit", "species:limpet", "species:birt", "species:stackatick", "species:springling", "tfg:glacian_ram", "wan_ancient_beasts:crusher", "wan_ancient_beasts:glider", "wan_ancient_beasts:soarer", "wan_ancient_beasts:surfer", "primitive_creatures:viloger_10"] #Blocks that CAN be picked up (useWhitelistBlocks must be true) allowedBlocks = ["framedblocks:framed_chest", "tfc:wood/chest/*", "tfc:wood/trapped_chest/*", "afc:wood/chest/*", "afc:wood/trapped_chest/*", "#forge:chests/wooden"] #Entities that CAN have other entities stacked on top of them (useWhitelistStacking must be true) diff --git a/config/chat_heads.json5 b/config/chat_heads.json5 index e1d42f383..01b112a23 100644 --- a/config/chat_heads.json5 +++ b/config/chat_heads.json5 @@ -4,5 +4,6 @@ "senderDetection": "UUID_AND_HEURISTIC", "smartHeuristics": true, "handleSystemMessages": true, + "drawShadow": true, "nameAliases": { } } \ No newline at end of file diff --git a/config/clienttweaks-common.toml b/config/clienttweaks-common.toml index 48651a458..00cf2b62a 100644 --- a/config/clienttweaks-common.toml +++ b/config/clienttweaks-common.toml @@ -56,4 +56,6 @@ fireworkItems = ["minecraft:firework_rocket"] #Blocks that should be protected in the prevent accidental mining tweak. fragileBlocks = ["minecraft:large_amethyst_bud", "minecraft:medium_amethyst_bud", "minecraft:small_amethyst_bud", "minecraft:budding_amethyst"] + #Items that count as food for the offhand-torch and -use tweak options. + foodItems = ["supplementaries:lunch_basket"] diff --git a/config/colorwheel-client.toml b/config/colorwheel-client.toml new file mode 100644 index 000000000..0fbcfceb7 --- /dev/null +++ b/config/colorwheel-client.toml @@ -0,0 +1,7 @@ +#Should display a message when an incompatible shaderpack is used. +alertIncompatiblePack = true +#Should display a message when a broken shaderpack is used. +alertBrokenPack = true +#Should fallback mode be used for non supported shaderpacks. +enableFallbackMode = false + diff --git a/config/crash_assistant/config.toml b/config/crash_assistant/config.toml new file mode 100644 index 000000000..b9e28590b --- /dev/null +++ b/config/crash_assistant/config.toml @@ -0,0 +1,253 @@ + +#General settings of Crash Assistant mod. +[general] + #Link which will be opened in browser on request_help_button pressed. + #If equals CHANGE_ME, will open Forge/NeoForge/Fabric/Quilt discord link. Names of communities/channels also will be used not from config, but according to this link. + #Must start with 'https://' or 'www.' + help_link = "https://github.com/TerraFirmaGreg-Team/Modpack-Modern/issues" + #Anyways log will be uploaded to mclo.gs, but with this option you can wrap link to gnomebot.dev for better formatting. + #If help_link equals 'CHANGE_ME', this value will be ignored and gnomebot.dev used. + #Supported values: mclo.gs / gnomebot.dev + upload_to = "mclo.gs" + #Show gui on minecraft crashed on modloading and FML error screen displayed. + show_on_fml_error_screen = true + #Close old CrashAssistantApp if it's still running when starting a new instance of Minecraft, to avoid confusing player with window from old crash. + kill_old_app = true + #If options.txt doesn't exist, the default language will be used. + default_lang = "en_us" + #By default, crash assistant will get the value for the current language from the overrides folder, then from the jar. + #By changing this option, it will first try to get it from the current overrides, then (if no override exists for this language) + #from the override for the language specified here, and only then from the jar language. + #Use "NONE" to disable this feature. Or language key, like "en_us" to enable it. + priority_lang_for_overrides = "NONE" + #By changing this value you can disable creating "crash_assistant_localization_overrides" folder and placing "README.md" file there. + generate_localization_overrides_folder_with_readme = true + #By default our process is scanning for terminated processes(they can appear with delay) and after finish of scan enabling upload buttons. + #This option can prevent this and enable individual upload buttons immediately after crash. + #However can confuse users and make them clicking individual upload buttons instead of Upload All Button. + prevent_upload_buttons_delay = false + #Before uploading the first log, requires the user to accept the privacy policy. + #Disabling this option may be illegal in some countries if you are modpack creator. Disable at your own risk. + enable_privacy_policy_acceptance = true + #Unfortunately mclogs censoring ip-like versions as has no way to determine if it's version or IP. + #This will prevent this by replacing dot's in them to dot-like symbol. + #Anti censoring only versions, IP's are kept censored. + enable_mclogs_anti_ip_like_version_censorer = true + #Prevents creating "crash_assistant" folder in the logs folder. + #So this option prevents our app logging at all. + #HIGHLY UNRECOMMENDED to disable! Contains many useful info. + prevent_generating_crash_assistant_app_logs = false + #Generates "logs/stderr_stream.log" with stderr stream. + #Since many launchers are not saving this info, which is extremely helpful for debugging some crashes. + #As only where crash reason is present. Keeps original stream untouched, just logs it to a file. + generate_own_launcher_log = true + #Here you can change priority for logs. + #For example if you want crash report to be shown earlier than latest.log in the available logs list. + #Supported values: https://github.com/KostromDan/Crash-Assistant/blob/1.19-1.20.1/app/src/main/java/dev/kostromdan/mods/crash_assistant/app/logs_analyser/LogType.java + #Usage: ["CRASH_REPORT", "LOG"] + logs_priority_overrides = [] + #List of blacklisted log files (checked with startswith()). This files won't show in GUI logs list. + blacklisted_logs = [] + +#A simplified GUI that hides the logs list until the user opts into Expert Mode. +[simple_mode] + #If enabled, the GUI starts in simple mode with logs hidden and a single "Show Logs (Expert Mode)" button. + #Disabled by default. + enabled = false + #If true, modpack creators always see the Expert Mode with logs visible, even if simple mode is enabled. + prevent_for_modpack_creators = true + #If true, hides the mod list changes section while simple mode is active. + hide_modlist_section = false + +#Here you can change text of lang placeHolders. +#Also you can change any text in lang files. +#You don't need to modify jar. You can change it in config/crash_assistant/lang. For more info read README.md file located where. +[text] + #$CONFIG.text.support_name$ in lang files will be replaced with this value. + #For example this placeHolder used in: "Request help in the $CONFIG.text.support_name$" + support_name = "TerraFirmaGreg-Github" + #$CONFIG.text.support_place$ in lang files will be replaced with this value. + support_place = "the text boxes after pressing the green New Issue button" + #$CONFIG.text.modpack_name$ in lang files will be replaced with this value. + #For example this placeHolder used in: "Oops, $CONFIG.text.modpack_name$ crashed!" + #Supports Better Compatibility Checker integration. You can use $BCC.modpackName$, $BCC.modpackVersion$, etc and it will be replaced with value from BCC config. + modpack_name = "TerraFirmaGreg-Modern" + +#Settings of message generated by Upload all button +[generated_message] + #Add ### prefix before filename. + #This can prevent too small, hard to hit on mobile links. + h3_prefix = true + #Replaces "\n" separator between logs to " | " to make message vertically smaller. + one_line_logs = true + #Adds line in log list about this Intel processor can be corrupted. + intel_corrupted_notification = true + #If the modpack is created for a non-English-speaking audience, сhange this to the language the modpack is designed for. + #This lang will be used only for generating message by "Upload all..." button.Do not modify this value if there's a chance that the generated message will be sent to English-speaking communities. + generated_msg_lang = "en_us" + #This text will be under "$CONFIG.text.modpack_name$ crashed!" in generated message by Upload all button. + #You can include: + # * some form, which users should fill out. + # * additional information like Minecraft version, etc. + text_under_crashed = "" + #With this option you can notify user about something related with posting generated message. + #For example if they need to fill some option from "text_under_crashed", etc. + #Supports html formatting, placeholders. + #Leave empty to prevent showing this warning message. + warning_after_upload_all_button_press = "" + #Puts problematic frame from hs_err to message. + put_problematic_frame_to_message = true + #Puts analysis result(names of crash reasons) to message, instead of just count. + put_analysis_result_to_message = true + #Color modified mods count/analysis in msg with ANSI. + #Can be needed to be disabled if issues are reported to something not supporting ANSI codeblocks, like GitHub. + color_message = false + +#Settings of links copied by Upload and copy link buttons +[copied_links] + #With this option, you can customize how single links from individual upload buttons are copied, there + #log of small size was uploaded to a single link. + #For example, leave just $LINK$ to copy just link. + single_link = "$LOG_NAME$$FILE_NAME$: $LINK$" + #With this option, you can customize how links from individual upload buttons are copied, there + #log was split to the 2 parts (head and tail, due to too large size for single upload), but user only decided to copy only one of them (not message with both). + single_link_split = "$LOG_NAME$$FILE_NAME$($HEAD_OR_TAIL$): $LINK$ $TOO_BIG_REASONS$" + #With this option, you can customize how links from individual upload buttons are copied, there + #log was split to the 2 parts (head and tail, due to too large size for single upload), but user decided to copy message with both. + both_links_split = "$LOG_NAME$[$FILE_NAME$ $MSG_LANG.gui.split_log_dialog_head$](<$LINK_FIRST_LINES$>) / [$MSG_LANG.gui.split_log_dialog_tail$](<$LINK_LAST_LINES$>) $TOO_BIG_REASONS$" + #If enabled, disables the head/tail selection dialog for split logs on individual uploads and always copies message with both links. + skip_split_dialog = false + +#Settings of modlist feature. +#Adds in generated msg block about which mods modpack user added/removed/updated. +#Also you can see diff by running '/crash_assistant modlist diff' command. +[modpack_modlist] + #Enable feature. + enabled = true + #nicknames of players, who considered as modpack creator. + #Only this players can overwrite modlist.json + #If this feature is enabled and this array is empty, will be appended with nickname of current player. + #----------------------------------------------------------------------------------------------------- + #Warning! This is not displayed anywhere, it's just tech param used for modlist feature to work correctly. + #Here must be actual nicknames of people who work with the modpack and publishing releases! + #----------------------------------------------------------------------------------------------------- + modpack_creators = ["Pyritie", "Exception", "Xikaro", "Redeix", "Nebby", "GameStar", "TomTomTom"] + #If enabled, modlist.json will be overwritten on every launch(first tick of TitleScreen), + #then game is launched by modpack creator. + #So you won't forget to save it before publishing. + #If you want to save manually: disable this and use '/crash_assistant modlist save' command. + auto_update = true + #If enabled, will add resourcepacks to modlist.json + #After filename where will be ' (resourcepack)' suffix. + add_resourcepacks = false + #If enabled, will add modloader jar name to modlist, to easily track if user changed version of modloader. + add_modloader_jar_name = true + #If enabled, will add generated modlist.txt, with names of all mods / modids / mixin configs / jarjar mods info to logs. + add_modlist_txt_as_log = true + +#Settings of too many changes warning feature. +#Notifies end users of the modpack and saying they made too many changes to the modpack. +#Not displayed to the modpack creators. +[too_many_changes_warning] + #Set to the positive integer to enable feature. Set to negative integer to disable. + #How many changes end user should make for warning to be displayed. + count = -1 + #With this option, you can select the formulation of this warning, currently supported: + # - NOTIFY: Just saying to the end user that what they made many changes and adding random mods or clicking + #the "Update All" button is not a good idea without proper testing. It is expected to crash. + # - DROP_SUPPORT: Saying what you are not providing support for that amount of changes, suggesting the end user to + #re-install modpack or they are on their own with that amount of changes. + formulation_type = "NOTIFY" + +#Settings of analysis feature. +#Analysing logs for most common reasons of crashes and displaying recommendations with fixes. +[analysis] + #Enable feature. + enabled = true + #Here you can disable some Analysis by class names. + #List of them can be found here: dev.kostromdan.mods.crash_assistant.app.logs_analyser.crash_reasons + #For example "Create6Addons" + blacklisted_reasons = [] + +#Settings of analysis tools feature. +#Here you can enable or disable showing some analysis tools for end user. +[analysis_tools] + #Enable feature. + enabled = true + #Here you can disable some Analysis tools by class names. + #List of them can be found here: dev.kostromdan.mods.crash_assistant.app.gui.analysis + #For example "MCreatorModDetectorGUI" + blacklisted_tools = [] + +#Settings of '/crash_assistant crash' command feature. +[crash_command] + #Enable feature. + enabled = true + #To ensure the user really wants to crash the game, the command needs to be run again within this amount of seconds. + #Set to <= 0 to disable the confirmation. + seconds = 10 + +#Settings of notifying about intel corrupted processors. +[intel_corrupted] + #Enable feature. + enabled = true + +[greeting] + #You don't need to touch this option. + #On first world join of modpack creator if set to false shows greeting, then self enables. + shown_greeting = true + +#You can customise GUI with this options. +[gui_customisation] + #Will hide Upload All Button from GUI. + disable_upload_all_button = false + #Append comment text with notice about sending screenshot of this gui tells nothing to modpack creators. + show_dont_send_screenshot_of_gui_notice = true + #Animate border to request user attention even more. + screenshot_of_gui_notice_animated_border = true + #You can make Upload All Button bigger/smaller to request user attention. + #Default Swing font size is 12, Default for this button in crash assistant is 16. + #Not recommended to set it more than 16, as it will affect the increase of GUI size because all text won't fit. + upload_all_button_font_size = 16 + #Same as upload_all_button_font_size, but for Request Help button. + request_help_button_font_size = 16 + #Same as upload_all_button_font_size, but for the Simple Mode toggle button. + simple_mode_button_font_size = 16 + #You can change Upload All Button color to request user attention. + #format is "R_G_B", range is 0-255, for example "255_0_0" is red color. Use "default" to use default swing color. + #Default for this button is "0_178_0" (dark green color). + upload_all_button_foreground_color = "0_178_0" + #Same as upload_all_button_foreground_color, but for Request Help button. + #Default for this button is "0_0_178" (dark blue color). + request_help_button_foreground_color = "0_0_178" + #Same as upload_all_button_foreground_color, but for the Simple Mode toggle button. + simple_mode_button_foreground_color = "0_0_178" + #Same as upload_all_button_font_size, but for Auto-Fix button (in integrated GPU warning). + auto_fix_button_font_size = 16 + #Same as upload_all_button_foreground_color, but for Auto-Fix button (in integrated GPU warning). + #Default for this button is "0_178_0" (dark green color). + auto_fix_button_foreground_color = "0_178_0" + #Path to a modpack logo to display in the top of the GUI. + #Path is relative to the Minecraft instance folder. Leave empty to disable. + modpack_logo_path = "kubejs/assets/tfg/textures/gui/tfg_logo_icon_outline_white_sr_456p.gif" + #If true, the logo will be larger, Replacing a some of `don't send screenshot` notice. + #If false, it will be smaller and logo will be end right where the `don't send screenshot` notice starts. + #You should try both, but most likely: + #- If you have some long text in the discord description, you will love the small one. + #- If the text is short, you will love the large one. + modpack_logo_large_mode = false + #Limit modpack logo height. Default is -1, which means it's calculated automatically. + #By default, this should not be needed. But if you have heavily customized GUI or using + #a rectangle logo instead of square, you may want to decrease its size, so this option could be needed in such case. + limit_modpack_logo_height = -1 + #This option would be needed only if you limited modpack logo height. + #Otherwise, the logo will consume all available horizontal space. + #If true, the logo will be centered. If false, it will be aligned to the top. + modpack_logo_aligned_center = true + +#Checks crash_assistant compatibility with other incompatible mods. +#Highly unrecommended to disable! +[compatibility] + #Enable feature. + enabled = true + diff --git a/config/crash_assistant/crash_assistant_localization_overrides/README.md b/config/crash_assistant/crash_assistant_localization_overrides/README.md new file mode 100644 index 000000000..96429541b --- /dev/null +++ b/config/crash_assistant/crash_assistant_localization_overrides/README.md @@ -0,0 +1,56 @@ +# Localizing and Customizing Crash Assistant + +Hello, localizers and modpack creators! + +This guide explains how to contribute new translations to the mod and how to customize the text for your own modpack. + +## Contributing New Translations + +We welcome contributions for new languages or improvements to existing ones! + +To contribute, please create a **Pull Request** on our official GitHub repository with your new or modified language +files. + +* **GitHub Repository:** + [https://github.com/KostromDan/Crash-Assistant/](https://github.com/KostromDan/Crash-Assistant/) +* **Language File Location:** The source files are located at + `common_config/src/main/resources/crash_assistant_localization` in the repository. + +--- + +## Customizing Text for Your Modpack + +If you want to change any text in the mod for your modpack, please **do not edit the JAR file directly**. Instead, use +the built-in override system. + +### How to Override Text + +1. Navigate to the `config/crash_assistant/crash_assistant_localization_overrides/` directory in your Minecraft + instance. +2. Create a JSON file named after the language you want to modify (e.g., `en_us.json`, `ru_ru.json`, etc.). +3. Inside this file, you only need to add the keys and values for the text you wish to change. Any key you define here + will take precedence over the default text packed inside the mod. + +This method is perfect for tweaking a few lines of text or even adding a completely new, unsupported language to your +modpack. + +### Priority Language Overrides + +You can use the `general.priority_lang_for_overrides` config option to specify a primary language for your custom text. + +* **How it works:** If you set this option to `"en_us"`, any custom text you place in the `en_us.json` override file + will be used as the default for **all other languages**, unless a specific override for that key exists in their + respective language files (e.g., in `de_de.json`). This is useful for ensuring your custom messages appear + consistently for all users, regardless of their selected language. + +### Configuration Options + +* You can prevent the `crash_assistant_localization_overrides` folder and this README file from being generated by + setting `general.generate_localization_overrides_folder_with_readme` to `false`. + +### ⚠️ Important Warning + +Standard Minecraft localization methods, such as **resource packs** or scripting mods like **KubeJS**, +**will not work**. Crash Assistant uses its own internal system to load language files to ensure it can display +messages correctly, even when the main game has crashed or hasn't fully loaded. +Please use the override folder as described above. \ No newline at end of file diff --git a/config/crash_assistant/modlist.json b/config/crash_assistant/modlist.json new file mode 100644 index 000000000..fd6a18dda --- /dev/null +++ b/config/crash_assistant/modlist.json @@ -0,0 +1,1678 @@ +{ + "fmlloader-1.20.1-47.4.13.jar (modloader)": { + "jarName": "fmlloader-1.20.1-47.4.13.jar (modloader)", + "modId": "forge", + "version": "fmlloader-1.20.1-47.4.13.jar" + }, + "[1.20.1-Forge] Additional Placements-2.3.1.jar": { + "jarName": "[1.20.1-Forge] Additional Placements-2.3.1.jar", + "modId": "additionalplacements", + "version": "2.3.1", + "curseForgeHash": 1876772441, + "modrinthHash": "536363d54e2902c7e5ba2d2901f4c9b30a96e4c5" + }, + "aaa_particles-1.20.1-1.4.11-forge.jar": { + "jarName": "aaa_particles-1.20.1-1.4.11-forge.jar", + "modId": "aaa_particles", + "version": "1.20.1-1.4.11", + "curseForgeHash": 1328063205, + "modrinthHash": "e046caeff220722933cb82097a62412d902f6002" + }, + "ad_astra-forge-1.20.1-1.15.20.jar": { + "jarName": "ad_astra-forge-1.20.1-1.15.20.jar", + "modId": "ad_astra", + "version": "1.15.20", + "curseForgeHash": 2713479490, + "modrinthHash": "537ac3e358a97efd7b03648a9bfd7b11f1ae7ff7" + }, + "adaptive_performance_tweaks_core_1.20.1-11.5.0.jar": { + "jarName": "adaptive_performance_tweaks_core_1.20.1-11.5.0.jar", + "modId": "adaptive_performance_tweaks_core", + "version": "11.5.0", + "curseForgeHash": 3101410022, + "modrinthHash": "eec168ef1210e1056f6aad6a3a9d7904f414bbdc" + }, + "adaptive_performance_tweaks_gamerules_1.20.1-11.5.0.jar": { + "jarName": "adaptive_performance_tweaks_gamerules_1.20.1-11.5.0.jar", + "modId": "adaptive_performance_tweaks_gamerules", + "version": "11.5.0", + "curseForgeHash": 3534179762, + "modrinthHash": "b29644ff148456224014597833fd4894e683ab95" + }, + "adaptive_performance_tweaks_items_1.20.1-11.5.0.jar": { + "jarName": "adaptive_performance_tweaks_items_1.20.1-11.5.0.jar", + "modId": "adaptive_performance_tweaks_items", + "version": "11.5.0", + "curseForgeHash": 1976151804, + "modrinthHash": "e70242b4b8fe82b6a5af786fe1e02f06bd354e50" + }, + "adaptive_performance_tweaks_player_1.20.1-11.5.0.jar": { + "jarName": "adaptive_performance_tweaks_player_1.20.1-11.5.0.jar", + "modId": "adaptive_performance_tweaks_player", + "version": "11.5.0", + "curseForgeHash": 191550392, + "modrinthHash": "1d571233979de03bd0a07d805f13e98abc7e5c31" + }, + "AdvancedPeripherals-1.20.1-0.7.46r.jar": { + "jarName": "AdvancedPeripherals-1.20.1-0.7.46r.jar", + "modId": "advancedperipherals", + "version": "0.7.46r", + "curseForgeHash": 3542595224, + "modrinthHash": "c9118e3bf16fae2c025a9a6398204e7ee84b3521" + }, + "ae2insertexportcard-1.20.1-1.3.0.jar": { + "jarName": "ae2insertexportcard-1.20.1-1.3.0.jar", + "modId": "ae2insertexportcard", + "version": "1.20.1-1.3.0", + "curseForgeHash": 2505693449, + "modrinthHash": "df8cbd8e49e001696a3d3e2c8352c3bb310e8c6f" + }, + "AE2NetworkAnalyzer-1.20-1.0.6-forge.jar": { + "jarName": "AE2NetworkAnalyzer-1.20-1.0.6-forge.jar", + "modId": "ae2netanalyser", + "version": "1.20-1.0.6-forge", + "curseForgeHash": 134614876, + "modrinthHash": "7616ab6cf999f1844edc87433f60dfe45d829ce8" + }, + "ae2wtlib-15.3.3-forge.jar": { + "jarName": "ae2wtlib-15.3.3-forge.jar", + "modId": "ae2wtlib", + "version": "15.3.3-forge", + "curseForgeHash": 3724438651, + "modrinthHash": "1a546af04844677542b6914191783c7de15364fc" + }, + "afc-1.0.20-1.20.1.jar": { + "jarName": "afc-1.0.20-1.20.1.jar", + "modId": "afc", + "version": "1.0.20-1.20.1", + "curseForgeHash": 3251600714, + "modrinthHash": "0a06e8bc356c10941324657d74bf2dd2a082c892" + }, + "ags_modernmarkings-0.4.4-1.20.1.jar": { + "jarName": "ags_modernmarkings-0.4.4-1.20.1.jar", + "modId": "ags_modernmarkings", + "version": "0.4.4-1.20.1", + "curseForgeHash": 3755807132, + "modrinthHash": "8102920535de97d06c4c7b05a39f44dd237a13f3" + }, + "AI-Improvements-1.20-0.5.2.jar": { + "jarName": "AI-Improvements-1.20-0.5.2.jar", + "modId": "aiimprovements", + "version": "0.5.2", + "curseForgeHash": 2983526960, + "modrinthHash": "11ad483d1fd1f7ebd84b4940b1dc0926b3e9daa8" + }, + "alekiNiftyShips-FORGE-1.20.1-1.0.14.jar": { + "jarName": "alekiNiftyShips-FORGE-1.20.1-1.0.14.jar", + "modId": "alekiships", + "version": "1.0.14", + "curseForgeHash": 370185248, + "modrinthHash": "c42aaab43cd524c45c4065996cc06b9b48c5682a" + }, + "alltheleaks-1.1.1+1.20.1-forge.jar": { + "jarName": "alltheleaks-1.1.1+1.20.1-forge.jar", + "modId": "alltheleaks", + "version": "1.1.1+1.20.1-forge", + "curseForgeHash": 1225915087, + "modrinthHash": "3c43c2e76093dc7ef5ad6e456d20da9674c653aa" + }, + "almanac-1.20.x-forge-1.0.2.jar": { + "jarName": "almanac-1.20.x-forge-1.0.2.jar", + "modId": "almanac", + "version": "1.0.2", + "curseForgeHash": 409215932, + "modrinthHash": "f0b711df59cd589b088e536ca4134c5e6e73fd58" + }, + "AmbientSounds_FORGE_v6.3.1_mc1.20.1.jar": { + "jarName": "AmbientSounds_FORGE_v6.3.1_mc1.20.1.jar", + "modId": "ambientsounds", + "version": "6.3.1", + "curseForgeHash": 1168047345, + "modrinthHash": "b6c676fbe4e586de6c266190943c069a0a49104d" + }, + "applied_ammo_box-1.0.0.jar": { + "jarName": "applied_ammo_box-1.0.0.jar", + "modId": "applied_ammo_box", + "version": "1.0.0", + "curseForgeHash": 719209453, + "modrinthHash": "3fc67723dc70b544b57ab0d0a34e2be991d285f9" + }, + "architectury-9.2.14-forge.jar": { + "jarName": "architectury-9.2.14-forge.jar", + "modId": "architectury", + "version": "9.2.14", + "curseForgeHash": 98480002, + "modrinthHash": "a52918a500ff421180a1cbd1a0cabee712134ec4" + }, + "astikorcarts-1.20.1-1.1.8.jar": { + "jarName": "astikorcarts-1.20.1-1.1.8.jar", + "modId": "astikorcarts", + "version": "1.1.8", + "curseForgeHash": 3288389065, + "modrinthHash": "49a8ac1c23282fe86420f0b4527e522421f2f692" + }, + "AttributeFix-Forge-1.20.1-21.0.4.jar": { + "jarName": "AttributeFix-Forge-1.20.1-21.0.4.jar", + "modId": "attributefix", + "version": "21.0.4", + "curseForgeHash": 381211649, + "modrinthHash": "6eb69343eb21d38f95d1b1d00e6bc777bdb336fa" + }, + "baguettelib-1.20.1-Forge-1.1.5.jar": { + "jarName": "baguettelib-1.20.1-Forge-1.1.5.jar", + "modId": "baguettelib", + "version": "1.1.5", + "curseForgeHash": 734602455, + "modrinthHash": "7aaab6216e7fc72e1606b1e35f1f56a18f01153f" + }, + "balm-forge-1.20.1-7.3.37-all.jar": { + "jarName": "balm-forge-1.20.1-7.3.37-all.jar", + "modId": "balm", + "version": "7.3.37", + "curseForgeHash": 3384992026, + "modrinthHash": "bb7af11fd4bc2e76fce98f90c752279ae381b934" + }, + "barrels_2012-2.1.jar": { + "jarName": "barrels_2012-2.1.jar", + "modId": "barrels_2012", + "version": "2.1", + "curseForgeHash": 1796431356, + "modrinthHash": "98ef976a9b356dce459fdd249ff19ad14fd375dd" + }, + "beneath-1.20.1-1.0.6.jar": { + "jarName": "beneath-1.20.1-1.0.6.jar", + "modId": "beneath", + "version": "1.0.6", + "curseForgeHash": 4114027705, + "modrinthHash": "fc9208fa33d9f6868ab123dc0a73049fe3805201" + }, + "betterp2p-1.5.0-forge.jar": { + "jarName": "betterp2p-1.5.0-forge.jar", + "modId": "betterp2p", + "version": "1.5.0", + "curseForgeHash": 263356958, + "modrinthHash": "528ccd37ba0dad755e875601bb3326bdeb0f3d4a" + }, + "BetterPingDisplay-1.20.1-1.1.jar": { + "jarName": "BetterPingDisplay-1.20.1-1.1.jar", + "modId": "betterpingdisplay", + "version": "1.1", + "curseForgeHash": 2297727680, + "modrinthHash": "6347a5bff9405c59ec7d428e5e24115f5b17a90b" + }, + "BlockRunner-v8.0.4-1.20.1-Forge.jar": { + "jarName": "BlockRunner-v8.0.4-1.20.1-Forge.jar", + "modId": "blockrunner", + "version": "8.0.4", + "curseForgeHash": 1808343910, + "modrinthHash": "71fc6fe4b99dc495528edbb0be12b126eab64b6f" + }, + "blur-forge-3.1.1.jar": { + "jarName": "blur-forge-3.1.1.jar", + "modId": "blur", + "version": "3.1.1", + "curseForgeHash": 1712179068, + "modrinthHash": "562f34155f3849463449aeb1ab54cc7064e4bc86" + }, + "Bookshelf-Forge-1.20.1-20.2.13.jar": { + "jarName": "Bookshelf-Forge-1.20.1-20.2.13.jar", + "modId": "bookshelf", + "version": "20.2.13", + "curseForgeHash": 2325681367, + "modrinthHash": "c53d9eb5ce9e8ef0f2ea9b11e478d84ce958c3e5" + }, + "botarium-forge-1.20.1-2.3.4.jar": { + "jarName": "botarium-forge-1.20.1-2.3.4.jar", + "modId": "botarium", + "version": "2.3.4", + "curseForgeHash": 752547332, + "modrinthHash": "a6928cb03b7c5f81900d3d3c8e8c8f6a89a51a5b" + }, + "buildinggadgets2-1.0.8.jar": { + "jarName": "buildinggadgets2-1.0.8.jar", + "modId": "buildinggadgets2", + "version": "1.0.8", + "curseForgeHash": 71960834, + "modrinthHash": "d06a806e8ca84a9e96a69c32da4b43226a51e0c9" + }, + "carpeted-1.20-1.4.jar": { + "jarName": "carpeted-1.20-1.4.jar", + "modId": "carpeted", + "version": "1.20-1.4", + "curseForgeHash": 1311864805, + "modrinthHash": "0a34572db968e103bb783c854943548e475f6ea7" + }, + "carryon-forge-1.20.1-2.1.2.7.jar": { + "jarName": "carryon-forge-1.20.1-2.1.2.7.jar", + "modId": "carryon", + "version": "2.1.2.7", + "curseForgeHash": 1899432453, + "modrinthHash": "9999714ca3dd2f2401f0396ca44f3b27c3784c4f" + }, + "cc-tweaked-1.20.1-forge-1.116.1.jar": { + "jarName": "cc-tweaked-1.20.1-forge-1.116.1.jar", + "modId": "computercraft", + "version": "1.116.1", + "curseForgeHash": 3415124440, + "modrinthHash": "117f78ad17ef779220b4bc028b130824034ec045" + }, + "chalk-1.20.1-1.6.7.jar": { + "jarName": "chalk-1.20.1-1.6.7.jar", + "modId": "chalk", + "version": "1.6.7", + "curseForgeHash": 2339474770, + "modrinthHash": "42f34947910ca428497fac0bf2566a45959a51a5" + }, + "chat_heads-0.14.2-forge-1.20.jar": { + "jarName": "chat_heads-0.14.2-forge-1.20.jar", + "modId": "chat_heads", + "version": "0.14.2", + "curseForgeHash": 1586719138, + "modrinthHash": "0410ab9636c69324e3671012af64c7743f6d6079" + }, + "cherishedworlds-forge-6.1.7+1.20.1.jar": { + "jarName": "cherishedworlds-forge-6.1.7+1.20.1.jar", + "modId": "cherishedworlds", + "version": "6.1.7+1.20.1", + "curseForgeHash": 2374033839, + "modrinthHash": "d3eb588c64691c9da83460e3b2e783401d337a34" + }, + "Chunky-1.3.146.jar": { + "jarName": "Chunky-1.3.146.jar", + "modId": "chunky", + "version": "1.3.146", + "curseForgeHash": 4160167965, + "modrinthHash": "0b782d12b4ac3b03a94c28f32e9b2d5587d1dd50" + }, + "cleanswing-1.20-1.8.jar": { + "jarName": "cleanswing-1.20-1.8.jar", + "modId": "cleanswing", + "version": "1.8", + "curseForgeHash": 2191402716, + "modrinthHash": "c128e24c47ab4a389b3868ff6913ee0631f254e8" + }, + "clienttweaks-forge-1.20.1-11.1.6.jar": { + "jarName": "clienttweaks-forge-1.20.1-11.1.6.jar", + "modId": "clienttweaks", + "version": "11.1.6", + "curseForgeHash": 3133195468, + "modrinthHash": "94f11a58c3b971ea95971f297b7866ca27b73270" + }, + "cloth-config-11.1.136-forge.jar": { + "jarName": "cloth-config-11.1.136-forge.jar", + "modId": "cloth_config", + "version": "11.1.136", + "curseForgeHash": 635589968, + "modrinthHash": "c65d07748acc57ceb45d53b3964368b84f34d54f" + }, + "colorwheel-forge-1.1.2+mc1.20.1.jar": { + "jarName": "colorwheel-forge-1.1.2+mc1.20.1.jar", + "modId": "colorwheel", + "version": "1.1.2+mc1.20.1", + "curseForgeHash": 4284935425, + "modrinthHash": "08089e16b24756e0ef1e50967dcf2286b20f5923" + }, + "colorwheel_patcher-forge-1.0.4+mc1.20.1.jar": { + "jarName": "colorwheel_patcher-forge-1.0.4+mc1.20.1.jar", + "modId": "colorwheel_patcher", + "version": "1.0.4+mc1.20.1", + "curseForgeHash": 2060817090, + "modrinthHash": "a8ae8241362d7de40fd8909f942c3b1362779bd6" + }, + "comforts-forge-6.4.0+1.20.1.jar": { + "jarName": "comforts-forge-6.4.0+1.20.1.jar", + "modId": "comforts", + "version": "6.4.0+1.20.1", + "curseForgeHash": 940613798, + "modrinthHash": "e7b9fe89566bb1ee013e33745f22f309f679536e" + }, + "constructionwand-1.20.1-2.11.jar": { + "jarName": "constructionwand-1.20.1-2.11.jar", + "modId": "constructionwand", + "version": "1.20.1-2.11", + "curseForgeHash": 1817683668, + "modrinthHash": "80bd5223cd8984dc1038cb9f2d1cb6b97f31998a" + }, + "Controlling-forge-1.20.1-12.0.2.jar": { + "jarName": "Controlling-forge-1.20.1-12.0.2.jar", + "modId": "controlling", + "version": "12.0.2", + "curseForgeHash": 2144346557, + "modrinthHash": "f6d3cdd3ec68c5590cf5b2e89c38dbf031824bfd" + }, + "corpse-forge-1.20.1-1.0.23.jar": { + "jarName": "corpse-forge-1.20.1-1.0.23.jar", + "modId": "corpse", + "version": "1.20.1-1.0.23", + "curseForgeHash": 4064165869, + "modrinthHash": "78a776f057588a84a86c57dbe376b9b26f69f2c4" + }, + "corpsecurioscompat-1.20.1-Forge-3.1.3.jar": { + "jarName": "corpsecurioscompat-1.20.1-Forge-3.1.3.jar", + "modId": "corpsecurioscompat", + "version": "3.1.3", + "curseForgeHash": 314314029, + "modrinthHash": "3b36538ca8c6cc16982788c8e058cb726357a90c" + }, + "cosmeticarmorreworked-1.20.1-v1a.jar": { + "jarName": "cosmeticarmorreworked-1.20.1-v1a.jar", + "modId": "cosmeticarmorreworked", + "version": "1.20.1-v1a", + "curseForgeHash": 3614955629, + "modrinthHash": "afd9fa3fe95e8c086e8d439df403ed1e5ea5cbea" + }, + "craftingtweaks-forge-1.20.1-18.2.6.jar": { + "jarName": "craftingtweaks-forge-1.20.1-18.2.6.jar", + "modId": "craftingtweaks", + "version": "18.2.6", + "curseForgeHash": 791328458, + "modrinthHash": "f2091c7b171f1104bb22434d5b4a01ad678cdaf9" + }, + "CraftPresence-2.7.0+1.20.1-forge.jar": { + "jarName": "CraftPresence-2.7.0+1.20.1-forge.jar", + "modId": "craftpresence", + "version": "2.7.0", + "curseForgeHash": 2978888175, + "modrinthHash": "e37dbe8efb670d3a9e079e095d59410658c7e3e9" + }, + "CrashAssistant-forge-1.19-1.20.1-1.10.28.jar": { + "jarName": "CrashAssistant-forge-1.19-1.20.1-1.10.28.jar", + "modId": "crash_assistant", + "version": "1.10.28", + "curseForgeHash": 2399972476, + "modrinthHash": "ff33e66ea1d828f0a5de39cf31d765e75d0a3859" + }, + "crashexploitfixer-forge-1.1.0+1.20.1.jar": { + "jarName": "crashexploitfixer-forge-1.1.0+1.20.1.jar", + "modId": "crashexploitfixer", + "version": "1.1.0", + "curseForgeHash": 4230663044, + "modrinthHash": "5dec3209e6dbb6c4fa06fb544e797608a1d58014" + }, + "create-1.20.1-6.0.8.jar": { + "jarName": "create-1.20.1-6.0.8.jar", + "modId": "create", + "version": "6.0.8", + "curseForgeHash": 2156032012, + "modrinthHash": "b13d912b9247a38d66d11598c121442585a1c1e9" + }, + "create_connected-1.1.10-mc1.20.1-all.jar": { + "jarName": "create_connected-1.1.10-mc1.20.1-all.jar", + "modId": "create_connected", + "version": "1.1.10-mc1.20.1", + "curseForgeHash": 198954090, + "modrinthHash": "eea1d04aee638689a99acf66457327b13a4b3f96" + }, + "create_factory_logistics-1.20.1-1.4.7.jar": { + "jarName": "create_factory_logistics-1.20.1-1.4.7.jar", + "modId": "create_factory_logistics", + "version": "1.4.7", + "curseForgeHash": 561746208, + "modrinthHash": "bf67707d1645197f27cd9a4abea13159fa0fef1e" + }, + "create_hypertube-0.3.0-FORGE.jar": { + "jarName": "create_hypertube-0.3.0-FORGE.jar", + "modId": "create_hypertube", + "version": "0.3.0", + "curseForgeHash": 302353697, + "modrinthHash": "476ae93802024b766badb15e538e0cf65a2e3fbd" + }, + "createaddition-1.20.1-1.3.3.jar": { + "jarName": "createaddition-1.20.1-1.3.3.jar", + "modId": "createaddition", + "version": "1.20.1-1.3.3", + "curseForgeHash": 3687173912, + "modrinthHash": "c7d464c451fdc2979bc29a67d7eec2a30858af12" + }, + "createdeco-2.0.3-1.20.1-forge.jar": { + "jarName": "createdeco-2.0.3-1.20.1-forge.jar", + "modId": "createdeco", + "version": "2.0.3-1.20.1-forge", + "curseForgeHash": 1368200461, + "modrinthHash": "54c8ad5686b846310bca9e69982a455e668dede3" + }, + "createhorsepower-1.20.1-1.1.0.jar": { + "jarName": "createhorsepower-1.20.1-1.1.0.jar", + "modId": "createhorsepower", + "version": "1.20.1-1.1.0", + "curseForgeHash": 2256443811, + "modrinthHash": "b4a5802ec8e5c1eef4fe69b9ca973eb7fe02ace9" + }, + "createliquidfuel-2.1.1-1.20.1.jar": { + "jarName": "createliquidfuel-2.1.1-1.20.1.jar", + "modId": "createliquidfuel", + "version": "2.1.1-1.20.1", + "curseForgeHash": 1069225375, + "modrinthHash": "d216cf52735f8e4d3594943139599f6b0b20b8cf" + }, + "createpickywheels-forge-1.20.1-6.0.6-2.jar": { + "jarName": "createpickywheels-forge-1.20.1-6.0.6-2.jar", + "modId": "createpickywheels", + "version": "1.20.1-6.0.6-2", + "curseForgeHash": 2218118416, + "modrinthHash": "698050b3f98b8fd9390b810741cf0eb08fee25ed" + }, + "CreativeCore_FORGE_v2.12.32_mc1.20.1.jar": { + "jarName": "CreativeCore_FORGE_v2.12.32_mc1.20.1.jar", + "modId": "creativecore", + "version": "2.12.32", + "curseForgeHash": 4224935666, + "modrinthHash": "d49e8c29748677d0a530432f1c1bda4e9865da00" + }, + "Cucumber-1.20.1-7.0.16.jar": { + "jarName": "Cucumber-1.20.1-7.0.16.jar", + "modId": "cucumber", + "version": "7.0.16", + "curseForgeHash": 1548502984, + "modrinthHash": "88a9ec30e4acb5c80a3ae060ad70b79e945293c6" + }, + "curios-forge-5.14.1+1.20.1.jar": { + "jarName": "curios-forge-5.14.1+1.20.1.jar", + "modId": "curios", + "version": "5.14.1+1.20.1", + "curseForgeHash": 1288931317, + "modrinthHash": "452175b95ad3db6ff58bb8968f6bf7a9d1e0f480" + }, + "deafission-1.20.1-0.15.4.jar": { + "jarName": "deafission-1.20.1-0.15.4.jar", + "modId": "deafission", + "version": "1.20.1-0.15.4", + "curseForgeHash": 494193854, + "modrinthHash": "5b814421715f3f15606a4b2ecc23816432c6911c" + }, + "decay_2012-1.20.1-2.0.1.jar": { + "jarName": "decay_2012-1.20.1-2.0.1.jar", + "modId": "decay_2012", + "version": "2.0.1", + "curseForgeHash": 1396324362, + "modrinthHash": "c9290eefa38a51fca425af0d45dfcd46fe050483" + }, + "defaultoptions-forge-1.20.1-18.0.4.jar": { + "jarName": "defaultoptions-forge-1.20.1-18.0.4.jar", + "modId": "defaultoptions", + "version": "18.0.4", + "curseForgeHash": 3843138404, + "modrinthHash": "37ef64d3ae7fda292c882ee949a0280bf6c7f033" + }, + "diggerhelmet-1.20.1-1.0.0.26.jar": { + "jarName": "diggerhelmet-1.20.1-1.0.0.26.jar", + "modId": "diggerhelmet", + "version": "1.0.0.26", + "curseForgeHash": 518666616, + "modrinthHash": "3fe3d9911069db3c0d816bdbbed01193ba880087" + }, + "do_a_barrel_roll-forge-3.5.6+1.20.1.jar": { + "jarName": "do_a_barrel_roll-forge-3.5.6+1.20.1.jar", + "modId": "do_a_barrel_roll", + "version": "3.5.6+1.20.1", + "curseForgeHash": 4053708632, + "modrinthHash": "08b58bfbdf20660bdc5a0c4a0b088f7d89f40a38" + }, + "domum_ornamentum-1.20.1-1.0.292-snapshot-universal.jar": { + "jarName": "domum_ornamentum-1.20.1-1.0.292-snapshot-universal.jar", + "modId": "domum_ornamentum", + "version": "1.20.1-1.0.292-snapshot", + "curseForgeHash": 2581620858, + "modrinthHash": "1b3b96dda8dd4541afba652c7a975ba439fc1026" + }, + "drippyloadingscreen_forge_3.1.0_MC_1.20.1.jar": { + "jarName": "drippyloadingscreen_forge_3.1.0_MC_1.20.1.jar", + "modId": "drippyloadingscreen", + "version": "3.1.0", + "curseForgeHash": 1511780369, + "modrinthHash": "5c5e9dd39881b9b65dba7d7124690c51430a3ff1" + }, + "dsbg-1.0-1.20.1.jar": { + "jarName": "dsbg-1.0-1.20.1.jar", + "modId": "dsbg", + "version": "1.0-1.20.1", + "curseForgeHash": 4245851046, + "modrinthHash": "349a91654be8df6af5a19b02c7bb47758c09bac4" + }, + "embeddium-0.3.31+mc1.20.1.jar": { + "jarName": "embeddium-0.3.31+mc1.20.1.jar", + "modId": "embeddium", + "version": "0.3.31+mc1.20.1", + "curseForgeHash": 4281946638, + "modrinthHash": "bb2fa8f3e493af16af9160d049f96c614a1faf2f" + }, + "emi-1.1.22+1.20.1+forge.jar": { + "jarName": "emi-1.1.22+1.20.1+forge.jar", + "modId": "emi", + "version": "1.1.22+1.20.1+forge", + "curseForgeHash": 104637065, + "modrinthHash": "d8049d6ec86befcd100a0ff0fc8ebc289f735997" + }, + "endermanoverhaul-forge-1.20.1-1.0.4.jar": { + "jarName": "endermanoverhaul-forge-1.20.1-1.0.4.jar", + "modId": "endermanoverhaul", + "version": "1.0.4", + "curseForgeHash": 3681337800, + "modrinthHash": "636a2b20a5973fcb80016370865cb4251e029b6a" + }, + "EnhancedVisuals_FORGE_v1.8.2_mc1.20.1.jar": { + "jarName": "EnhancedVisuals_FORGE_v1.8.2_mc1.20.1.jar", + "modId": "enhancedvisuals", + "version": "1.8.2", + "curseForgeHash": 484254904, + "modrinthHash": "780caf39421ccfc495d14cb287856ced97c32985" + }, + "entityculling-forge-1.9.5-mc1.20.1.jar": { + "jarName": "entityculling-forge-1.9.5-mc1.20.1.jar", + "modId": "entityculling", + "version": "1.9.5", + "curseForgeHash": 538559316, + "modrinthHash": "524be2ed63e9f131a17393ead67cd3fddc97ca2b" + }, + "etched-3.0.4.jar": { + "jarName": "etched-3.0.4.jar", + "modId": "etched", + "version": "3.0.4", + "curseForgeHash": 1564210994, + "modrinthHash": "4f440ac41309993a46e0ffcb2dd6106d7b92b3e2" + }, + "everycomp-1.20-2.9.13-forge.jar": { + "jarName": "everycomp-1.20-2.9.13-forge.jar", + "modId": "everycomp", + "version": "1.20-2.9.13", + "curseForgeHash": 473863607, + "modrinthHash": "2c78942c7396b1fab9e53e4ee8172f7ce0ba4482" + }, + "exposure-1.20.1-1.7.16-forge.jar": { + "jarName": "exposure-1.20.1-1.7.16-forge.jar", + "modId": "exposure", + "version": "1.7.16", + "curseForgeHash": 652681066, + "modrinthHash": "b1ec92eeafdc97e88e0baacd5d89f4c1f89a4bbc" + }, + "ExtendedAE-1.20-1.4.9-forge.jar": { + "jarName": "ExtendedAE-1.20-1.4.9-forge.jar", + "modId": "expatternprovider", + "version": "1.20-1.4.9-forge", + "curseForgeHash": 2620237685, + "modrinthHash": "55a8c773659036176142242ded460a4b88ee6fb0" + }, + "ExtremeSoundMuffler-3.49.2-forge-1.20.1.jar": { + "jarName": "ExtremeSoundMuffler-3.49.2-forge-1.20.1.jar", + "modId": "extremesoundmuffler", + "version": "3.48", + "curseForgeHash": 382750826, + "modrinthHash": "3b73ae534ff7e4f9c65e78c1f868655a23ab90c7" + }, + "fallingtrees-forge-0.12.7-1.20.jar": { + "jarName": "fallingtrees-forge-0.12.7-1.20.jar", + "modId": "fallingtrees", + "version": "0.12.7", + "curseForgeHash": 818594030, + "modrinthHash": "493724d09ba37fa140c6b360eb267cb5c563a35b" + }, + "fancymenu_forge_3.8.1_MC_1.20.1.jar": { + "jarName": "fancymenu_forge_3.8.1_MC_1.20.1.jar", + "modId": "fancymenu", + "version": "3.8.1", + "curseForgeHash": 3141943045, + "modrinthHash": "1fef1d8ab0dc2dec116bc6d6cb6f789fd33b23b0" + }, + "fast-ip-ping-v1.0.8-mc1.20.4-forge.jar": { + "jarName": "fast-ip-ping-v1.0.8-mc1.20.4-forge.jar", + "modId": "fastipping", + "version": "1.0.8", + "curseForgeHash": 3575355395, + "modrinthHash": "ceeeae222c51ae100e5126c4a5a7a05f4f3f4712" + }, + "FastSuite-1.20.1-5.1.0.jar": { + "jarName": "FastSuite-1.20.1-5.1.0.jar", + "modId": "fastsuite", + "version": "5.1.0", + "curseForgeHash": 2667792324, + "modrinthHash": "3a759dce0ddc91e299027faa800c0ee40ab90de8" + }, + "FastWorkbench-1.20.1-8.0.4.jar": { + "jarName": "FastWorkbench-1.20.1-8.0.4.jar", + "modId": "fastbench", + "version": "8.0.4", + "curseForgeHash": 3125406473, + "modrinthHash": "1a322a85e7c7024b8a0715c12d27b5ed0930d729" + }, + "ferritecore-6.0.1-forge.jar": { + "jarName": "ferritecore-6.0.1-forge.jar", + "modId": "ferritecore", + "version": "6.0.1", + "curseForgeHash": 2683111440, + "modrinthHash": "417fb6ce8f52abf40bd9d0390371790f9576f8ba" + }, + "FirmaCivilization-1.20.1-1.0.9.jar": { + "jarName": "FirmaCivilization-1.20.1-1.0.9.jar", + "modId": "firmaciv", + "version": "1.0.9", + "curseForgeHash": 1567808822, + "modrinthHash": "41e134f5dd02cc5030229c972b474a2e69793233" + }, + "firmacivplus-1.0.1-1.20.1.jar": { + "jarName": "firmacivplus-1.0.1-1.20.1.jar", + "modId": "firmacivplus", + "version": "1.0.1-1.20.1", + "curseForgeHash": 3617977798, + "modrinthHash": "5d21f85a95332dc002cd26ce085934a0d3605e08" + }, + "Firmalife-1.20.1-2.1.26.jar": { + "jarName": "Firmalife-1.20.1-2.1.26.jar", + "modId": "firmalife", + "version": "2.1.26", + "curseForgeHash": 1770069402, + "modrinthHash": "679e75ed6d8180457f0593a1e3f9b0077a1dca9c" + }, + "flickerfix-1.20.1-4.0.1.jar": { + "jarName": "flickerfix-1.20.1-4.0.1.jar", + "modId": "flickerfix", + "version": "4.0.1", + "curseForgeHash": 761957548, + "modrinthHash": "ffcf6207d71ba069a8baf18f6ac4ee8668376490" + }, + "FpsReducer2-forge-1.20.1-2.5.1.jar": { + "jarName": "FpsReducer2-forge-1.20.1-2.5.1.jar", + "modId": "fpsreducer", + "version": "1.20.1-2.5.1", + "curseForgeHash": 4111825473, + "modrinthHash": "4920a2e1d17090007179a568181624847fba0993" + }, + "FramedBlocks-9.4.3.jar": { + "jarName": "FramedBlocks-9.4.3.jar", + "modId": "framedblocks", + "version": "9.4.3", + "curseForgeHash": 380347176, + "modrinthHash": "740c0feaab75455f32df7e137389f77c83fb490c" + }, + "ftb-chunks-forge-2001.3.6.jar": { + "jarName": "ftb-chunks-forge-2001.3.6.jar", + "modId": "ftbchunks", + "version": "2001.3.6", + "curseForgeHash": 3415363214, + "modrinthHash": "7fde7917655a3356cab92f17ad2bca34962c4928" + }, + "ftb-essentials-forge-2001.2.3.jar": { + "jarName": "ftb-essentials-forge-2001.2.3.jar", + "modId": "ftbessentials", + "version": "2001.2.3", + "curseForgeHash": 1973516826, + "modrinthHash": "460ec092156d6b457bd91dc463ac1ee49e22442d" + }, + "ftb-filter-system-forge-20.0.1.jar": { + "jarName": "ftb-filter-system-forge-20.0.1.jar", + "modId": "ftbfiltersystem", + "version": "20.0.1", + "curseForgeHash": 2703039268, + "modrinthHash": "812de9759fe87cb405e14cbb0fe5b72a7ee11f42" + }, + "ftb-library-forge-2001.2.12.jar": { + "jarName": "ftb-library-forge-2001.2.12.jar", + "modId": "ftblibrary", + "version": "2001.2.12", + "curseForgeHash": 3807919150, + "modrinthHash": "7f36ec4af42ad1d69872c58022e93a9d1b9c82b7" + }, + "ftb-quests-forge-2001.4.17.jar": { + "jarName": "ftb-quests-forge-2001.4.17.jar", + "modId": "ftbquests", + "version": "2001.4.17", + "curseForgeHash": 1887235832, + "modrinthHash": "f7e4fec8991ce2b036ed4628e01fb48446a25ec7" + }, + "ftb-ranks-forge-2001.1.7.jar": { + "jarName": "ftb-ranks-forge-2001.1.7.jar", + "modId": "ftbranks", + "version": "2001.1.7", + "curseForgeHash": 1064675696, + "modrinthHash": "1ef101b4c5991cc239d9b56a95500e3b404228f7" + }, + "ftb-teams-forge-2001.3.1.jar": { + "jarName": "ftb-teams-forge-2001.3.1.jar", + "modId": "ftbteams", + "version": "2001.3.1", + "curseForgeHash": 1240744296, + "modrinthHash": "c2af94e0b86631cb75daa8de2377ff72527651ca" + }, + "ftb-xmod-compat-forge-2.1.3.jar": { + "jarName": "ftb-xmod-compat-forge-2.1.3.jar", + "modId": "ftbxmodcompat", + "version": "2.1.3", + "curseForgeHash": 2853914731, + "modrinthHash": "0584f628d2bc6a612d79dee368324357ebae1423" + }, + "ftbbackups2-forge-1.20-1.0.23.jar": { + "jarName": "ftbbackups2-forge-1.20-1.0.23.jar", + "modId": "ftbbackups2", + "version": "1.0.23", + "curseForgeHash": 2646303899, + "modrinthHash": "4b100de40338247a3fbf4d1fd1846257c5338189" + }, + "ftbxaerocompat-forge-1.1.1.jar": { + "jarName": "ftbxaerocompat-forge-1.1.1.jar", + "modId": "ftbxaerocompat", + "version": "1.1.1", + "curseForgeHash": 2050132927, + "modrinthHash": "c36353b31e1e613294609730d3e01bb49e0cf7bd" + }, + "fullstackwatchdog-1.0.1+1.19.2-forge.jar": { + "jarName": "fullstackwatchdog-1.0.1+1.19.2-forge.jar", + "modId": "fullstackwatchdog", + "version": "1.0.1+1.19.2-forge", + "curseForgeHash": 3895274001, + "modrinthHash": "6f1e3a25c4a0258c2592fefb837f95a24eb3bfa0" + }, + "fzzy_config-0.7.4+1.20.1+forge.jar": { + "jarName": "fzzy_config-0.7.4+1.20.1+forge.jar", + "modId": "fzzy_config", + "version": "0.7.4+1.20.1+forge", + "curseForgeHash": 4069840182, + "modrinthHash": "b0213984f7591c3d1ec4ab5eebd87c605728d451" + }, + "geckolib-forge-1.20.1-4.8.2.jar": { + "jarName": "geckolib-forge-1.20.1-4.8.2.jar", + "modId": "geckolib", + "version": "4.8.2", + "curseForgeHash": 1555934041, + "modrinthHash": "395a9f21a36dc8466d67c2af67a904e7013460d1" + }, + "Glodium-1.20-1.5-forge.jar": { + "jarName": "Glodium-1.20-1.5-forge.jar", + "modId": "glodium", + "version": "1.20-1.5-forge", + "curseForgeHash": 3834018600, + "modrinthHash": "c7534db3248adfcf39a6158b423dfc9bfc99a378" + }, + "GoProne-forge-1.20.1-3.1.1.jar": { + "jarName": "GoProne-forge-1.20.1-3.1.1.jar", + "modId": "goprone", + "version": "3.1.1", + "curseForgeHash": 3514657032, + "modrinthHash": "a50de2b05daa2481ca7886e4425b2c66c3946b8c" + }, + "grapplingHookMod-Reforged-1.2.jar": { + "jarName": "grapplingHookMod-Reforged-1.2.jar", + "modId": "grapplemod", + "version": "1.20.1-v13", + "curseForgeHash": 3324262533, + "modrinthHash": "aa53625ab5e145c6aa196645335b062b37ae82da" + }, + "greate-0.0.60.jar": { + "jarName": "greate-0.0.60.jar", + "modId": "greate", + "version": "0.0.60", + "curseForgeHash": 1014860832, + "modrinthHash": "3fc325df338f275847344f553ad81c3e9be0bc80" + }, + "gtceu-1.20.1-7.4.0.jar": { + "jarName": "gtceu-1.20.1-7.4.0.jar", + "modId": "gtceu", + "version": "7.4.0", + "curseForgeHash": 3505279105, + "modrinthHash": "19c638cb4913b0581da1e518771f41965f96932f" + }, + "gtmoldraw-2.0.3.jar": { + "jarName": "gtmoldraw-2.0.3.jar", + "modId": "moldraw", + "version": "2.0.3", + "curseForgeHash": 432163685, + "modrinthHash": "24e461ca4eac2877458e125dc4c9eb678ad3c270" + }, + "guideme-20.1.14.jar": { + "jarName": "guideme-20.1.14.jar", + "modId": "guideme", + "version": "20.1.14", + "curseForgeHash": 768472251, + "modrinthHash": "57d883148f04989128505a1bd8919629440f714f" + }, + "HangGlider-v8.0.1-1.20.1-Forge.jar": { + "jarName": "HangGlider-v8.0.1-1.20.1-Forge.jar", + "modId": "hangglider", + "version": "8.0.1", + "curseForgeHash": 2214578654, + "modrinthHash": "e4a5deeb545db6853ae4d668d0751228e641fc61" + }, + "horsescanswim-1.0.1.jar": { + "jarName": "horsescanswim-1.0.1.jar", + "modId": "horsescanswim", + "version": "1.0.1", + "curseForgeHash": 3166211669, + "modrinthHash": "9fa3a8acef83a37918fc38ca4d05a3211bc95a02" + }, + "ihearttfc-1.20.1-1.0.2.jar": { + "jarName": "ihearttfc-1.20.1-1.0.2.jar", + "modId": "ihearttfc", + "version": "1.0.2", + "curseForgeHash": 726705548, + "modrinthHash": "bc2d8febd3ddb7f5a0da5c840544ad49eb6e8625" + }, + "ImmediatelyFast-Forge-1.5.3+1.20.4.jar": { + "jarName": "ImmediatelyFast-Forge-1.5.3+1.20.4.jar", + "modId": "immediatelyfast", + "version": "1.5.3+1.20.4", + "curseForgeHash": 2056126318, + "modrinthHash": "d4695d013e9da7089e2906db3f56bc5398e478e2" + }, + "immersive_aircraft-1.4.0+1.20.1-forge.jar": { + "jarName": "immersive_aircraft-1.4.0+1.20.1-forge.jar", + "modId": "immersive_aircraft", + "version": "1.4.0+1.20.1", + "curseForgeHash": 506637697, + "modrinthHash": "64e6c792c5208005ee6b099e8fb7d2738873737d" + }, + "immersive_optimization-forge-1.20.1-0.1.0.jar": { + "jarName": "immersive_optimization-forge-1.20.1-0.1.0.jar", + "modId": "immersive_optimization", + "version": "0.1.0", + "curseForgeHash": 4155670972, + "modrinthHash": "58a2e199bf7992edb6ac765e7694be96cb53efde" + }, + "inventoryhud.forge.1.20.1-3.4.26.jar": { + "jarName": "inventoryhud.forge.1.20.1-3.4.26.jar", + "modId": "inventoryhud", + "version": "3.4.26", + "curseForgeHash": 2730214996, + "modrinthHash": "f0adda10a3d6549e6dfdffd41e72270c61c8a302" + }, + "invtweaks-1.20.1-1.1.0.jar": { + "jarName": "invtweaks-1.20.1-1.1.0.jar", + "modId": "invtweaks", + "version": "1.1.0", + "curseForgeHash": 2211584494, + "modrinthHash": "1550d40fd570ae88839382ea888dba9b5c3bd29c" + }, + "ItemPhysicLite_FORGE_v1.6.6_mc1.20.1.jar": { + "jarName": "ItemPhysicLite_FORGE_v1.6.6_mc1.20.1.jar", + "modId": "itemphysiclite", + "version": "1.6.6", + "curseForgeHash": 1934443491, + "modrinthHash": "4fc87af53afb8610e77710b30340783fc6bd0ccf" + }, + "Jade-1.20.1-Forge-11.13.2.jar": { + "jarName": "Jade-1.20.1-Forge-11.13.2.jar", + "modId": "jade", + "version": "11.13.2+forge", + "curseForgeHash": 305733389, + "modrinthHash": "1997e5fe2db3a0575ca79bfe4720019f01fd2b8c" + }, + "JadeAddons-1.20.1-Forge-5.5.0.jar": { + "jarName": "JadeAddons-1.20.1-Forge-5.5.0.jar", + "modId": "jadeaddons", + "version": "5.5.0+forge", + "curseForgeHash": 3691760882, + "modrinthHash": "5e74e87f61cf05c18457f09dfa1cb70332b6b777" + }, + "konkrete_forge_1.8.0_MC_1.20-1.20.1.jar": { + "jarName": "konkrete_forge_1.8.0_MC_1.20-1.20.1.jar", + "modId": "konkrete", + "version": "1.8.0", + "curseForgeHash": 3537653842, + "modrinthHash": "2019d821bed9071daabed43979433a5473ceee49" + }, + "kotlinforforge-4.12.0-all.jar": { + "jarName": "kotlinforforge-4.12.0-all.jar", + "curseForgeHash": 2392977662, + "modrinthHash": "962fdb760409d6d71cbf079235f1ca94e3863a22" + }, + "KryptonReforged-0.2.3.jar": { + "jarName": "KryptonReforged-0.2.3.jar", + "modId": "krypton", + "version": "0.2.3", + "curseForgeHash": 2538339304, + "modrinthHash": "92690482dad46a8c9cf28e4b6b26e49f4dc67095" + }, + "kubejs-create-forge-2001.3.0-build.8.jar": { + "jarName": "kubejs-create-forge-2001.3.0-build.8.jar", + "modId": "kubejs_create", + "version": "2001.3.0-build.8", + "curseForgeHash": 1559520977, + "modrinthHash": "cbeb6643d1cea979a7e01c87cfb08b9210a1c393" + }, + "kubejs-forge-2001.6.5-build.16.jar": { + "jarName": "kubejs-forge-2001.6.5-build.16.jar", + "modId": "kubejs", + "version": "2001.6.5-build.16", + "curseForgeHash": 2938549854, + "modrinthHash": "93fcf0eacc5dc08a4f719eaaed1dc93f0dc80f66" + }, + "kubejs_tfc-1.20.1-1.3.3.jar": { + "jarName": "kubejs_tfc-1.20.1-1.3.3.jar", + "modId": "kubejs_tfc", + "version": "1.3.3", + "curseForgeHash": 546789107, + "modrinthHash": "5561aa3db97bf01d0b02e09164276bba9b8f7fd8" + }, + "letmedespawn-1.20.x-forge-1.5.0.jar": { + "jarName": "letmedespawn-1.20.x-forge-1.5.0.jar", + "modId": "letmedespawn", + "version": "1.5.0", + "curseForgeHash": 3850440114, + "modrinthHash": "878dd35df02e1e17b7eb16113147f964eda8847f" + }, + "lithostitched-forge-1.20.1-1.4.11.jar": { + "jarName": "lithostitched-forge-1.20.1-1.4.11.jar", + "modId": "lithostitched", + "version": "1.4.11", + "curseForgeHash": 940772176, + "modrinthHash": "d1a755de84ee5d8910ff1e65e815473056e93ece" + }, + "lmft-1.0.4+1.20.1-forge.jar": { + "jarName": "lmft-1.0.4+1.20.1-forge.jar", + "modId": "lmft", + "version": "1.0.4+1.20.1", + "curseForgeHash": 1956694745, + "modrinthHash": "e44a12eb51813b16faaab89b8073ec63c746c1b0" + }, + "lodestone-1.20.1-1.6.4.1.jar": { + "jarName": "lodestone-1.20.1-1.6.4.1.jar", + "modId": "lodestone", + "version": "1.20.1-1.6.4.1", + "curseForgeHash": 2035895651, + "modrinthHash": "e6346060ae70cbf103b231d8a1536bcd044c84a8" + }, + "lootjs-forge-1.20.1-2.13.0.jar": { + "jarName": "lootjs-forge-1.20.1-2.13.0.jar", + "modId": "lootjs", + "version": "1.20.1-2.13.0", + "curseForgeHash": 4083554858, + "modrinthHash": "fdf90acf177c19bcbfaa08527f6568bd3e6e622e" + }, + "lootr-forge-1.20-0.7.35.94.jar": { + "jarName": "lootr-forge-1.20-0.7.35.94.jar", + "modId": "lootr", + "version": "0.7.35.94", + "curseForgeHash": 1036440574, + "modrinthHash": "1ec77a7df8adbf3290a296bf25b8f99f37a60020" + }, + "man_of_many_planes-0.2.0+1.20.1-forge.jar": { + "jarName": "man_of_many_planes-0.2.0+1.20.1-forge.jar", + "modId": "man_of_many_planes", + "version": "0.2.0+1.20.1", + "curseForgeHash": 1023939547, + "modrinthHash": "0037367a8af0d55a1b7f4c43dfc94cbdaca281db" + }, + "mcw_tfc_aio-0.2.30-1.20.1.jar": { + "jarName": "mcw_tfc_aio-0.2.30-1.20.1.jar", + "modId": "mcw_tfc_aio", + "version": "0.2.30-1.20.1", + "curseForgeHash": 1304754550, + "modrinthHash": "8a1f70ddd044142d4fa110fcb8dbd419565984a1" + }, + "Measurements-forge-1.20.1-2.0.1.jar": { + "jarName": "Measurements-forge-1.20.1-2.0.1.jar", + "modId": "measurements", + "version": "2.0.1", + "curseForgeHash": 230863047, + "modrinthHash": "8b98cf208b3b21f4996d86fc9c6960b192da77f7" + }, + "megacells-forge-2.4.6-1.20.1.jar": { + "jarName": "megacells-forge-2.4.6-1.20.1.jar", + "modId": "megacells", + "version": "2.4.6-1.20.1", + "curseForgeHash": 361562206, + "modrinthHash": "ed6fd5eb0c782529be03f199d66d9a7c9eb2a518" + }, + "melody_forge_1.0.3_MC_1.20.1-1.20.4.jar": { + "jarName": "melody_forge_1.0.3_MC_1.20.1-1.20.4.jar", + "modId": "melody", + "version": "1.0.2", + "curseForgeHash": 841420877, + "modrinthHash": "e0942d396a70c09038e6c2e5e1da6505178249b8" + }, + "merequester-forge-1.20.1-1.1.5.jar": { + "jarName": "merequester-forge-1.20.1-1.1.5.jar", + "modId": "merequester", + "version": "1.20.1-1.1.5", + "curseForgeHash": 544928077, + "modrinthHash": "24e6611df470afd957eafd16c43890b7214e3da9" + }, + "modernfix-forge-5.25.2+mc1.20.1.jar": { + "jarName": "modernfix-forge-5.25.2+mc1.20.1.jar", + "modId": "modernfix", + "version": "5.25.2+mc1.20.1", + "curseForgeHash": 3074548209, + "modrinthHash": "4069534174e618393f0c14d9dc61ac27a04bb992" + }, + "moonlight-1.20-2.16.19-forge.jar": { + "jarName": "moonlight-1.20-2.16.19-forge.jar", + "modId": "moonlight", + "version": "1.20-2.16.19", + "curseForgeHash": 2861614006, + "modrinthHash": "de55e348bdf3a3ac7520fde157654d615967f9b1" + }, + "morered-1.20.1-4.0.0.4.jar": { + "jarName": "morered-1.20.1-4.0.0.4.jar", + "modId": "morered", + "version": "4.0.0.4", + "curseForgeHash": 1106034845, + "modrinthHash": "1e49a2fca02e1059bf6c94f6292463ed6e4f6122" + }, + "MoreRed-CCT-Compat-1.20.1-1.0.0.jar": { + "jarName": "MoreRed-CCT-Compat-1.20.1-1.0.0.jar", + "modId": "moreredxcctcompat", + "version": "1.20.1-1.0.0", + "curseForgeHash": 2392924645, + "modrinthHash": "ed57300c9b6e335af2a6a386fc2d373b4b5daaf4" + }, + "MouseTweaks-forge-mc1.20.1-2.25.1.jar": { + "jarName": "MouseTweaks-forge-mc1.20.1-2.25.1.jar", + "modId": "mousetweaks", + "version": "2.25.1", + "curseForgeHash": 3001740257, + "modrinthHash": "d751153e722a4e014691c83f39f5b07c6ec5333c" + }, + "MyServerIsCompatible-1.20-1.0.jar": { + "jarName": "MyServerIsCompatible-1.20-1.0.jar", + "modId": "myserveriscompatible", + "version": "1.0", + "curseForgeHash": 274343097, + "modrinthHash": "a53abcabc6c3531667049be249b3fb165aad5468" + }, + "nanhealthfixer-1.20.1-0.0.1.jar": { + "jarName": "nanhealthfixer-1.20.1-0.0.1.jar", + "modId": "nanhealthfixer", + "version": "1.20.1-0.0.1", + "curseForgeHash": 2148475912, + "modrinthHash": "2e36f4c6311230f76459000161d3429be723b19d" + }, + "NoChatReports-FORGE-1.20.1-v2.2.2.jar": { + "jarName": "NoChatReports-FORGE-1.20.1-v2.2.2.jar", + "modId": "nochatreports", + "version": "1.20.1-v2.2.2", + "curseForgeHash": 393521612, + "modrinthHash": "069396e689ae887d065c8d61b7945e685fbcc65b" + }, + "Not Enough Recipe Book-FORGE-0.4.1+1.20.1.jar": { + "jarName": "Not Enough Recipe Book-FORGE-0.4.1+1.20.1.jar", + "modId": "nerb", + "version": "0.4.1", + "curseForgeHash": 1367373369, + "modrinthHash": "c0806369f4257149664904db44efc60bd1785c17" + }, + "notenoughanimations-forge-1.11.1-mc1.20.1.jar": { + "jarName": "notenoughanimations-forge-1.11.1-mc1.20.1.jar", + "modId": "notenoughanimations", + "version": "1.11.1", + "curseForgeHash": 1394524316, + "modrinthHash": "9aa8917d7c0a5311dc495da3c720434de49e0e24" + }, + "OctoLib-FORGE-0.5.0.1+1.20.1.jar": { + "jarName": "OctoLib-FORGE-0.5.0.1+1.20.1.jar", + "modId": "octolib", + "version": "0.5.0.1", + "curseForgeHash": 2265070471, + "modrinthHash": "9eab28baff36942e1c924489e34753df10f40208" + }, + "oculus-mc1.20.1-1.8.0.jar": { + "jarName": "oculus-mc1.20.1-1.8.0.jar", + "modId": "oculus", + "version": "1.8.0", + "curseForgeHash": 516527841, + "modrinthHash": "984f774e71790deaec674c7587bd24e0711871b2" + }, + "packetfixer-3.3.1-1.18-1.20.4-merged.jar": { + "jarName": "packetfixer-3.3.1-1.18-1.20.4-merged.jar", + "modId": "packetfixer", + "version": "3.3.1", + "curseForgeHash": 2235595709, + "modrinthHash": "0bef29023c8cadb2934d78a8b0066b49d4460974" + }, + "pandalib-forge-0.4.2-1.20.jar": { + "jarName": "pandalib-forge-0.4.2-1.20.jar", + "modId": "pandalib", + "version": "0.4.2", + "curseForgeHash": 3233971835, + "modrinthHash": "cc0332d3bbf7824b673abc59e231f1f5aafc6420" + }, + "particle_core-0.2.6+1.20.1+forge.jar": { + "jarName": "particle_core-0.2.6+1.20.1+forge.jar", + "modId": "particle_core", + "version": "0.2.6+1.20.1+forge", + "curseForgeHash": 4189650687, + "modrinthHash": "91f302ab9b85016aeb3a9a0e85b80650a1d2e984" + }, + "particular-1.20.1-Forge-1.2.7.jar": { + "jarName": "particular-1.20.1-Forge-1.2.7.jar", + "modId": "particular", + "version": "1.2.7", + "curseForgeHash": 547177644, + "modrinthHash": "db04a6b14b7fb219701c50907986384bca363298" + }, + "Patchouli-1.20.1-84.1-FORGE.jar": { + "jarName": "Patchouli-1.20.1-84.1-FORGE.jar", + "modId": "patchouli", + "version": "1.20.1-84.1-FORGE", + "curseForgeHash": 3571975239, + "modrinthHash": "e91d2e2f251375d647d592b670ea6f310c2554eb" + }, + "PickUpNotifier-v8.0.0-1.20.1-Forge.jar": { + "jarName": "PickUpNotifier-v8.0.0-1.20.1-Forge.jar", + "modId": "pickupnotifier", + "version": "8.0.0", + "curseForgeHash": 1083059147, + "modrinthHash": "378cc9730d1f11cd4c50add96263baccacdb4942" + }, + "Placebo-1.20.1-8.6.3.jar": { + "jarName": "Placebo-1.20.1-8.6.3.jar", + "modId": "placebo", + "version": "8.6.3", + "curseForgeHash": 3174429337, + "modrinthHash": "e85f53de2e582a79ce25ff1df1e7b5b5fc08440f" + }, + "PlayerRevive_FORGE_v2.0.31_mc1.20.1.jar": { + "jarName": "PlayerRevive_FORGE_v2.0.31_mc1.20.1.jar", + "modId": "playerrevive", + "version": "2.0.31", + "curseForgeHash": 2650963389, + "modrinthHash": "84c039f20b8f048c835c429c2c4a9fd82a5e65f6" + }, + "polylib-forge-2000.0.3-build.143.jar": { + "jarName": "polylib-forge-2000.0.3-build.143.jar", + "modId": "polylib", + "version": "2000.0.3-build.143", + "curseForgeHash": 3158966907, + "modrinthHash": "bf49919adc9e9109196762ff20030f823790e2db" + }, + "primitive_creatures_2.7forge1.20.1.jar": { + "jarName": "primitive_creatures_2.7forge1.20.1.jar", + "modId": "primitive_creatures", + "version": "2.5", + "curseForgeHash": 3260500527, + "modrinthHash": "f2fb38516941ac4193282af35bc2182ca98b17f5" + }, + "probejs-6.0.1-forge.jar": { + "jarName": "probejs-6.0.1-forge.jar", + "modId": "probejs", + "version": "6.0.1", + "curseForgeHash": 1763477494, + "modrinthHash": "5380211b1c2891f454a136545721526b184d8513" + }, + "PuzzlesLib-v8.1.33-1.20.1-Forge.jar": { + "jarName": "PuzzlesLib-v8.1.33-1.20.1-Forge.jar", + "modId": "puzzleslib", + "version": "8.1.33", + "curseForgeHash": 3151848185, + "modrinthHash": "285b7c7616971338ccbe0022c9ea0f8ad3036aaf" + }, + "radium-mc1.20.1-0.12.4+git.26c9d8e.jar": { + "jarName": "radium-mc1.20.1-0.12.4+git.26c9d8e.jar", + "modId": "radium", + "version": "0.12.4+git.26c9d8e", + "curseForgeHash": 1441086174, + "modrinthHash": "f5f5f792473bb7b85ec221f75c5afb3740afb13a" + }, + "resourcefulconfig-forge-1.20.1-2.1.3.jar": { + "jarName": "resourcefulconfig-forge-1.20.1-2.1.3.jar", + "modId": "resourcefulconfig", + "version": "2.1.3", + "curseForgeHash": 2554742015, + "modrinthHash": "597d40920dcc935f963842c817dcc4901862ab14" + }, + "resourcefullib-forge-1.20.1-2.1.29.jar": { + "jarName": "resourcefullib-forge-1.20.1-2.1.29.jar", + "modId": "resourcefullib", + "version": "2.1.29", + "curseForgeHash": 4227743239, + "modrinthHash": "6fc590a7c56a720fec57e290cbb0a106efbb3ffa" + }, + "rhino-forge-2001.2.3-build.10.jar": { + "jarName": "rhino-forge-2001.2.3-build.10.jar", + "modId": "rhino", + "version": "2001.2.3-build.10", + "curseForgeHash": 1432081092, + "modrinthHash": "c83c9b719a6bab33fbd2b3f2f680eb3adbfc1aa1" + }, + "rnr-0.2.2-1.20.1.jar": { + "jarName": "rnr-0.2.2-1.20.1.jar", + "modId": "rnr", + "version": "0.2.2-1.20.1", + "curseForgeHash": 891108730, + "modrinthHash": "ab28d720eb0094bd40c37726199831f4f60b4299" + }, + "Sacks \u0027N Such-1.20.1-1.2.4.jar": { + "jarName": "Sacks \u0027N Such-1.20.1-1.2.4.jar", + "modId": "sns", + "version": "1.2.4", + "curseForgeHash": 3392888044, + "modrinthHash": "9819909ff38f14408e313998d225e986333d52b7" + }, + "sandworm_mod-1.1.1.jar": { + "jarName": "sandworm_mod-1.1.1.jar", + "modId": "sandworm_mod", + "version": "1.1.1", + "curseForgeHash": 2555653342, + "modrinthHash": "c55788dcd8a1d24f4b41f20d40f5b670b163950a" + }, + "saturn-mc1.20.1-0.1.3.jar": { + "jarName": "saturn-mc1.20.1-0.1.3.jar", + "modId": "saturn", + "version": "0.1.3", + "curseForgeHash": 1313951597, + "modrinthHash": "ad93f99d46714c46aaa6a4409aeca506e9fcac99" + }, + "Searchables-forge-1.20.1-1.0.3.jar": { + "jarName": "Searchables-forge-1.20.1-1.0.3.jar", + "modId": "searchables", + "version": "1.0.3", + "curseForgeHash": 3171281796, + "modrinthHash": "ed5a23ec30c90fd06b3f1d8140614028e1fafaee" + }, + "ShoulderSurfing-Forge-1.20.1-4.18.1.jar": { + "jarName": "ShoulderSurfing-Forge-1.20.1-4.18.1.jar", + "modId": "shouldersurfing", + "version": "1.20.1-4.18.1", + "curseForgeHash": 1413955737, + "modrinthHash": "77b9cd4384a622f709ae69decb3ad4e6e44afe38" + }, + "showcaseitem-1.20.1-1.2.jar": { + "jarName": "showcaseitem-1.20.1-1.2.jar", + "modId": "showcaseitem", + "version": "1.20.1-1.2", + "curseForgeHash": 563673003, + "modrinthHash": "282e08fc46b7e4bab61a8651b5fcc1ee1befddd9" + }, + "simplylight-1.20.1-1.4.6-build.50.jar": { + "jarName": "simplylight-1.20.1-1.4.6-build.50.jar", + "modId": "simplylight", + "version": "1.20.1-1.4.6-build.50", + "curseForgeHash": 2677835492, + "modrinthHash": "cfd851ffd2c3b451a96a19207dc6e084c1dfec73" + }, + "simplystacked-1.20-1.0.jar": { + "jarName": "simplystacked-1.20-1.0.jar", + "modId": "simplystacked", + "version": "1.20-1.0", + "curseForgeHash": 1003766549, + "modrinthHash": "c400ff4166daa70df65f7dfa65e2c06c9b5d70c9" + }, + "smoothboot(reloaded)-mc1.20.1-0.0.4.jar": { + "jarName": "smoothboot(reloaded)-mc1.20.1-0.0.4.jar", + "modId": "smoothboot", + "version": "0.0.4", + "curseForgeHash": 2392064616, + "modrinthHash": "3fd79132dba444bd109b5de4ad75dee06a48e130" + }, + "sodiumdynamiclights-forge-1.0.10-1.20.1.jar": { + "jarName": "sodiumdynamiclights-forge-1.0.10-1.20.1.jar", + "modId": "sodiumdynamiclights", + "version": "1.0.9", + "curseForgeHash": 4061843185, + "modrinthHash": "d27524e85bed0f0af83c03be46f9ca3eb02a1be9" + }, + "sodiumextras-forge-1.0.7-1.20.1.jar": { + "jarName": "sodiumextras-forge-1.0.7-1.20.1.jar", + "modId": "sodiumextras", + "version": "1.0.6", + "curseForgeHash": 3493046010, + "modrinthHash": "7603f44bc4750774fbbdc07a3153c391650fcf3d" + }, + "sodiumoptionsapi-forge-1.0.10-1.20.1.jar": { + "jarName": "sodiumoptionsapi-forge-1.0.10-1.20.1.jar", + "modId": "sodiumoptionsapi", + "version": "1.0.10", + "curseForgeHash": 2197810606, + "modrinthHash": "7529fbf938787ed13a251cbf40936f8c29ec4b6c" + }, + "sophisticatedbackpacks-1.20.1-3.24.12.1411.jar": { + "jarName": "sophisticatedbackpacks-1.20.1-3.24.12.1411.jar", + "modId": "sophisticatedbackpacks", + "version": "3.24.12.1411", + "curseForgeHash": 2442024860, + "modrinthHash": "c6624f4719cfa8c15ef87860570a2748afd715da" + }, + "sophisticatedcore-1.20.1-1.2.107.1240.jar": { + "jarName": "sophisticatedcore-1.20.1-1.2.107.1240.jar", + "modId": "sophisticatedcore", + "version": "1.2.107.1240", + "curseForgeHash": 3130924746, + "modrinthHash": "a0a8e69b482e18bc82404c57f868db06d827ffca" + }, + "SoulBinding1.20.1(Forge)vs1.0.2.jar": { + "jarName": "SoulBinding1.20.1(Forge)vs1.0.2.jar", + "modId": "soulbinding", + "version": "1.20.1-1.0.2", + "curseForgeHash": 3826508951, + "modrinthHash": "b794e39c75a28753900dfe81d97137bc1d7b50d7" + }, + "sound-physics-remastered-forge-1.20.1-1.5.1.jar": { + "jarName": "sound-physics-remastered-forge-1.20.1-1.5.1.jar", + "modId": "sound_physics_remastered", + "version": "1.20.1-1.5.1", + "curseForgeHash": 1363428698, + "modrinthHash": "944b4673bcab118f411d050b2cd6b693262bb664" + }, + "species-3.5.jar": { + "jarName": "species-3.5.jar", + "modId": "species", + "version": "3.5", + "curseForgeHash": 4174736090, + "modrinthHash": "b4d924f4faf6eb201db04205b61fa1524a8b0178" + }, + "Steam_Rails-1.6.14-beta+forge-mc1.20.1.jar": { + "jarName": "Steam_Rails-1.6.14-beta+forge-mc1.20.1.jar", + "modId": "railways", + "version": "1.6.14-beta+forge-mc1.20.1", + "curseForgeHash": 2914385349, + "modrinthHash": "90ea1d917bc20a5e4cc50abaa512d2084149dc64" + }, + "supermartijn642configlib-1.1.8-forge-mc1.20.jar": { + "jarName": "supermartijn642configlib-1.1.8-forge-mc1.20.jar", + "modId": "supermartijn642configlib", + "version": "1.1.8", + "curseForgeHash": 3016368264, + "modrinthHash": "f80f9eed728966adcfbcc848633e789645057281" + }, + "supermartijn642corelib-1.1.18-forge-mc1.20.1.jar": { + "jarName": "supermartijn642corelib-1.1.18-forge-mc1.20.1.jar", + "modId": "supermartijn642corelib", + "version": "1.1.18", + "curseForgeHash": 4078642907, + "modrinthHash": "d37e1148b512c67cee704635b4f07d1f9ea8c31c" + }, + "tacz-1.20.1-1.1.7-release.jar": { + "jarName": "tacz-1.20.1-1.1.7-release.jar", + "modId": "tacz", + "version": "1.1.7", + "curseForgeHash": 1186606411, + "modrinthHash": "869decffc818e6ccd7d6d0d734aecfaa265e908b" + }, + "tacz-tweaks-2.11.2-all.jar": { + "jarName": "tacz-tweaks-2.11.2-all.jar", + "modId": "tacztweaks", + "version": "2.11.2", + "curseForgeHash": 2376197194, + "modrinthHash": "889c0885b6388fc7966b956a5df4efbb1c758965" + }, + "taczammoquery-1.20.1-1.0.0.jar": { + "jarName": "taczammoquery-1.20.1-1.0.0.jar", + "modId": "taczammoquery", + "version": "1.20.1-1.0.0", + "curseForgeHash": 1292892332, + "modrinthHash": "e3d20ecf37d57b2ce0541cd0b082355853566296" + }, + "taczjs-forge-1.3.7-mc1.20.1.jar": { + "jarName": "taczjs-forge-1.3.7-mc1.20.1.jar", + "modId": "taczjs", + "version": "1.3.7-mc1.20.1", + "curseForgeHash": 1742901301, + "modrinthHash": "8a97de20e31f7e863a968f82fd90e196f4b3a3b3" + }, + "TerraFirmaCraft-Forge-1.20.1-3.2.19.jar": { + "jarName": "TerraFirmaCraft-Forge-1.20.1-3.2.19.jar", + "modId": "tfc", + "version": "3.2.19", + "curseForgeHash": 837967200, + "modrinthHash": "107d4aec4694c509ea7ea8f3963478ae8002f46e" + }, + "TerraFirmaGreg-Core-Modern-0.8.13.jar": { + "jarName": "TerraFirmaGreg-Core-Modern-0.8.13.jar", + "modId": "tfg", + "version": "0.8.13", + "curseForgeHash": 1252674808, + "modrinthHash": "557984bbe48f571e60426b370d6fa52baa4a1cef" + }, + "tfc_gurman-1.2.0.jar": { + "jarName": "tfc_gurman-1.2.0.jar", + "modId": "tfc_gurman", + "version": "1.1.0", + "curseForgeHash": 3362991748, + "modrinthHash": "4e219504c5ca011c2ea7036d6002d30ce14085c0" + }, + "TFC_punishment_for_death-1.20.1-1.0.0.15.jar": { + "jarName": "TFC_punishment_for_death-1.20.1-1.0.0.15.jar", + "modId": "punishment_for_death", + "version": "1.0.0.15", + "curseForgeHash": 174713763, + "modrinthHash": "7140887272d82f0a28734a4a1ff9e7d0a99ff25f" + }, + "tfc_ruins-1.0.1-forge-1.20.1.jar": { + "jarName": "tfc_ruins-1.0.1-forge-1.20.1.jar", + "modId": "tfc_ruins", + "version": "1.0.1", + "curseForgeHash": 301500460, + "modrinthHash": "a3759bcb6545195e680121c145608eeefc70a18a" + }, + "tfc_support_indicator-1.0.3+mc1.20.1.jar": { + "jarName": "tfc_support_indicator-1.0.3+mc1.20.1.jar", + "modId": "tfc_support_indicator", + "version": "1.0.3+mc1.20.1", + "curseForgeHash": 852302900, + "modrinthHash": "2cc053dc89943471f171d3473af9a0ee50c7a16b" + }, + "tfc_textile-1.0.5.jar": { + "jarName": "tfc_textile-1.0.5.jar", + "modId": "tfc_textile", + "version": "1.0.5", + "curseForgeHash": 2835188940, + "modrinthHash": "0f68aff31c58bcfd12306218766d24022d6e78db" + }, + "TFCAgedAlcohol-1.20.1-2.3.jar": { + "jarName": "TFCAgedAlcohol-1.20.1-2.3.jar", + "modId": "tfcagedalcohol", + "version": "2.3", + "curseForgeHash": 1683797447, + "modrinthHash": "e37031fe92336c8fe3b06c7b232da857f360d938" + }, + "tfcambiental-1.20.1-3.4.0.jar": { + "jarName": "tfcambiental-1.20.1-3.4.0.jar", + "modId": "tfcambiental", + "version": "1.20.1-3.4.0", + "curseForgeHash": 2082222095, + "modrinthHash": "4f506dcf9acd95c274225b6ea3dd7dd5cac996ab" + }, + "TFCAstikorCarts-1.20.1-1.1.8.3.jar": { + "jarName": "TFCAstikorCarts-1.20.1-1.1.8.3.jar", + "modId": "tfcastikorcarts", + "version": "1.1.8.3", + "curseForgeHash": 1729769370, + "modrinthHash": "1a64a638d83e7b33d1f4c589ac0bc3005ffec34f" + }, + "TFCBetterBlastFurnace-1.20.1-1.0.2.jar": { + "jarName": "TFCBetterBlastFurnace-1.20.1-1.0.2.jar", + "modId": "tfcbetterbf", + "version": "1.0.2", + "curseForgeHash": 122027446, + "modrinthHash": "e40bc10f114bce20b9c003a7d42a97834d5a1bcc" + }, + "tfccanes-2.1.2.jar": { + "jarName": "tfccanes-2.1.2.jar", + "modId": "tfccanes", + "version": "2.0.2", + "curseForgeHash": 1947739477, + "modrinthHash": "0c362ed60edfe797f020cc253cade2c732551522" + }, + "tfcchannelcasting-0.2.3-beta.jar": { + "jarName": "tfcchannelcasting-0.2.3-beta.jar", + "modId": "tfcchannelcasting", + "version": "0.2.3-beta", + "curseForgeHash": 3564038568, + "modrinthHash": "346a53a23f069d8f9b16f14ecef3b9ab247d0e49" + }, + "tfcgenviewer-1.20.1-1.5.1.jar": { + "jarName": "tfcgenviewer-1.20.1-1.5.1.jar", + "modId": "tfcgenviewer", + "version": "1.5.1", + "curseForgeHash": 2073154572, + "modrinthHash": "208e780e3f9fc4cbee1de4222d72408162b44a63" + }, + "tfcgroomer-1.20.1-0.2.3.jar": { + "jarName": "tfcgroomer-1.20.1-0.2.3.jar", + "modId": "tfcgroomer", + "version": "1.20.1-0.2.3", + "curseForgeHash": 2456188002, + "modrinthHash": "d528d3f837e7d1e93e1154b007a5493fca034a4c" + }, + "TFCHotOrNot-1.20.1-1.0.13.jar": { + "jarName": "TFCHotOrNot-1.20.1-1.0.13.jar", + "modId": "tfchotornot", + "version": "1.0.13", + "curseForgeHash": 499156272, + "modrinthHash": "383507ce61eaa1fe9368915536de8b3685517728" + }, + "TFCImprovedBadlands-1.20.1-1.0.2.jar": { + "jarName": "TFCImprovedBadlands-1.20.1-1.0.2.jar", + "modId": "tfcimprovedbadlands", + "version": "1.0.2", + "curseForgeHash": 2411075624, + "modrinthHash": "021052fcfdd3b51ec5c0b3e46974ecdfd641a0c8" + }, + "tfclunchbox-1.20.1-1.0.0.26.jar": { + "jarName": "tfclunchbox-1.20.1-1.0.0.26.jar", + "modId": "tfclunchbox", + "version": "1.0.0.26", + "curseForgeHash": 3150756370, + "modrinthHash": "e9ddf2c2ea8a3458c06ef31712543d201a1cb499" + }, + "tfcscraping-1.0.2.jar": { + "jarName": "tfcscraping-1.0.2.jar", + "modId": "tfcscraping", + "version": "1.0.2", + "curseForgeHash": 2333643070, + "modrinthHash": "a28cf46a637287b308058abb678fbf382198f3fe" + }, + "tfcstructuremodc-0.0.4.jar": { + "jarName": "tfcstructuremodc-0.0.4.jar", + "modId": "tfcstructuremodc", + "version": "0.0.1", + "curseForgeHash": 1490669427, + "modrinthHash": "30cdc7fb5e39545feaeb5f09b6fb4ccaf09aec14" + }, + "TFCTumbleweed-1.20.1-1.2.2.jar": { + "jarName": "TFCTumbleweed-1.20.1-1.2.2.jar", + "modId": "tfc_tumbleweed", + "version": "1.2.2", + "curseForgeHash": 3291823365, + "modrinthHash": "0b98dcc97f73d24707c3f4552145787e21d9b29b" + }, + "TFCVesselTooltip-1.20.1-1.1.jar": { + "jarName": "TFCVesselTooltip-1.20.1-1.1.jar", + "modId": "tfcvesseltooltip", + "version": "1.1", + "curseForgeHash": 2467902332, + "modrinthHash": "0ba5058d7a728119121acf09e0badb3c87d2f319" + }, + "TFCWeldButton-1.20.1-1.1.jar": { + "jarName": "TFCWeldButton-1.20.1-1.1.jar", + "modId": "tfcweldbutton", + "version": "1.1", + "curseForgeHash": 214270406, + "modrinthHash": "dda1ccb3f998e85de186c84162bf437f2e800031" + }, + "timeout_fixes-1.20.1-1.0.0.jar": { + "jarName": "timeout_fixes-1.20.1-1.0.0.jar", + "modId": "timeout_fixes", + "version": "1.20.1-1.0.0", + "curseForgeHash": 2965312512, + "modrinthHash": "1748e7fecde151d20eb96d62eecd7579858bb793" + }, + "toofast-1.20-0.4.3.5.jar": { + "jarName": "toofast-1.20-0.4.3.5.jar", + "modId": "toofast", + "version": "0.4.3.5", + "curseForgeHash": 165753123, + "modrinthHash": "a6163b39827b483fb2976c916d99fce6cbf247a9" + }, + "ToolBelt-1.20.1-1.20.02.jar": { + "jarName": "ToolBelt-1.20.1-1.20.02.jar", + "modId": "toolbelt", + "version": "1.20.02", + "curseForgeHash": 3460520715, + "modrinthHash": "3e4e2d2e3ee9486de4c6b64bcf8f25d87d55fc92" + }, + "toomanyrecipeviewers-0.7.0+mc.20.1.jar": { + "jarName": "toomanyrecipeviewers-0.7.0+mc.20.1.jar", + "modId": "toomanyrecipeviewers", + "version": "0.7.0+mc.20.1", + "curseForgeHash": 831210803, + "modrinthHash": "24973cc8530188fef712d34767a27d2f001c50e6" + }, + "tp_shooting-1.20.1-5.1.1+tacz1.1.6-all.jar": { + "jarName": "tp_shooting-1.20.1-5.1.1+tacz1.1.6-all.jar", + "modId": "tp_shooting", + "version": "1.20.1-5.1.1+tacz1.1.6", + "curseForgeHash": 3160316186, + "modrinthHash": "43c627e23f7e72ee011085a94bdc1ba57b86a7ba" + }, + "Tumbleweed-forge-1.20.1-0.5.5.jar": { + "jarName": "Tumbleweed-forge-1.20.1-0.5.5.jar", + "modId": "tumbleweed", + "version": "0.5.5", + "curseForgeHash": 1323601805, + "modrinthHash": "d3c2504eb77c98c6e6af49370a8370440aaded9a" + }, + "u_team_core-forge-1.20.1-5.1.4.382.jar": { + "jarName": "u_team_core-forge-1.20.1-5.1.4.382.jar", + "modId": "uteamcore", + "version": "5.1.4.382", + "curseForgeHash": 1183005945, + "modrinthHash": "45d737d4215c453c35bc8a16aa0c74d1179a0934" + }, + "UniLib-1.2.0+1.20.1-forge.jar": { + "jarName": "UniLib-1.2.0+1.20.1-forge.jar", + "modId": "unilib", + "version": "1.2.0", + "curseForgeHash": 1777031521, + "modrinthHash": "b8348dbe2ac3226613332eaf65d0fdfa6e76d8c3" + }, + "vintage_kubejs-1.20.1-1.0.0rc-2.jar": { + "jarName": "vintage_kubejs-1.20.1-1.0.0rc-2.jar", + "modId": "vintage_kubejs", + "version": "1.20.1-1.0.0rc-2", + "curseForgeHash": 2388627373, + "modrinthHash": "ca49a4163794cc0f94a31a17f6956be11979db53" + }, + "vintageimprovements-1.20.1-0.3.6.0.jar": { + "jarName": "vintageimprovements-1.20.1-0.3.6.0.jar", + "modId": "vintageimprovements", + "version": "1.20.1-0.3.6.0", + "curseForgeHash": 1485580658, + "modrinthHash": "a893480c03a2803b130f79b2124d27345779f531" + }, + "wab-1.20.1-1.3.2.jar": { + "jarName": "wab-1.20.1-1.3.2.jar", + "modId": "wan_ancient_beasts", + "version": "1.3.2", + "curseForgeHash": 2333549546, + "modrinthHash": "7298a59e383d2327e2acc49d8f1b132cedb8860b" + }, + "waterflasks-3.0.10.jar": { + "jarName": "waterflasks-3.0.10.jar", + "modId": "waterflasks", + "version": "3.0.10", + "curseForgeHash": 3195298370, + "modrinthHash": "d9e9fc125bd401601693de6d694bea43c3bf956e" + }, + "Waves-1.20.1-1.6.1.jar": { + "jarName": "Waves-1.20.1-1.6.1.jar", + "modId": "waves", + "version": "1.6.1", + "curseForgeHash": 1245342365, + "modrinthHash": "9704c7049b49ba6f5969ba2a1442490385764d03" + }, + "Xaeros_Minimap_25.2.10_Forge_1.20.jar": { + "jarName": "Xaeros_Minimap_25.2.10_Forge_1.20.jar", + "modId": "xaerominimap", + "version": "25.2.10", + "curseForgeHash": 916576203, + "modrinthHash": "1f23df114da3a8603dbe4781c07e8acf20f6d1ce" + }, + "XaerosWorldMap_1.39.12_Forge_1.20.jar": { + "jarName": "XaerosWorldMap_1.39.12_Forge_1.20.jar", + "modId": "xaeroworldmap", + "version": "1.39.12", + "curseForgeHash": 3696490833, + "modrinthHash": "3c4005a400ba8270738bbe4c573526749ecf2f8f" + }, + "YeetusExperimentus-Forge-2.3.1-build.6+mc1.20.1.jar": { + "jarName": "YeetusExperimentus-Forge-2.3.1-build.6+mc1.20.1.jar", + "modId": "yeetusexperimentus", + "version": "2.3.1-build.6+mc1.20.1", + "curseForgeHash": 1963019301, + "modrinthHash": "6efdaf5d213f779e51aa84631a5f06a306351e75" + }, + "yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar": { + "jarName": "yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar", + "modId": "yet_another_config_lib_v3", + "version": "3.6.6+1.20.1-forge", + "curseForgeHash": 2226879195, + "modrinthHash": "644731e321c53a35a0b3177a3cc6347fe38002f4" + } +} \ No newline at end of file diff --git a/config/crash_assistant/problematic_mods_config.json b/config/crash_assistant/problematic_mods_config.json new file mode 100644 index 000000000..680dd9548 --- /dev/null +++ b/config/crash_assistant/problematic_mods_config.json @@ -0,0 +1,6 @@ +{ + "example_modid": { + "msg": "Custom msg on crash for this mod id. You can use $JAR_NAME$ placeholder, which will be replaced with jar name. You can use HTML here, it will work.", + "should_crash_on_startup": true + } +} \ No newline at end of file diff --git a/config/drippyloadingscreen/options.txt b/config/drippyloadingscreen/options.txt index 65c3a59cf..67ef67835 100644 --- a/config/drippyloadingscreen/options.txt +++ b/config/drippyloadingscreen/options.txt @@ -1,6 +1,49 @@ ##[general] B:early_fade_out_elements = 'true'; -B:fade_out_loading_screen = 'true'; B:allow_universal_layouts = 'false'; -B:wait_for_textures_in_loading = 'true'; \ No newline at end of file +B:fade_out_loading_screen = 'true'; +B:wait_for_textures_in_loading = 'true'; + + +##[early_loading] + +I:early_loading_top_right_watermark_position_offset_y = '0'; +I:early_loading_bottom_left_watermark_position_offset_x = '0'; +I:early_loading_bottom_left_watermark_position_offset_y = '0'; +B:early_loading_hide_logger = 'false'; +I:early_loading_bar_width = '400'; +I:early_loading_bar_position_offset_y = '50'; +I:early_loading_top_right_watermark_height = '100'; +S:early_loading_bottom_right_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_top_right_watermark_position_offset_x = '0'; +S:early_loading_top_left_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_bottom_right_watermark_height = '100'; +I:early_loading_bar_position_offset_x = '0'; +I:early_loading_logo_height = '120'; +I:early_loading_top_right_watermark_width = '100'; +I:early_loading_bottom_right_watermark_position_offset_y = '0'; +I:early_loading_window_height = '-1'; +S:early_loading_bar_progress_texture_path = '/config/fancymenu/assets/some_bar_progress_image.png'; +I:early_loading_bottom_right_watermark_position_offset_x = '0'; +S:early_loading_background_texture_path = '/config/fancymenu/assets/some_image.png'; +B:early_loading_background_preserve_aspect_ratio = 'true'; +I:early_loading_top_left_watermark_width = '100'; +B:early_loading_hide_logo = 'false'; +S:early_loading_bar_background_texture_path = '/config/fancymenu/assets/some_bar_background_image.png'; +S:early_loading_logo_texture_path = '/config/fancymenu/assets/some_image.png'; +S:early_loading_bottom_left_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_top_left_watermark_position_offset_y = '0'; +I:early_loading_top_left_watermark_position_offset_x = '0'; +I:early_loading_logo_width = '480'; +S:early_loading_top_right_watermark_texture_path = '/config/fancymenu/assets/some_image.png'; +I:early_loading_bottom_left_watermark_width = '100'; +I:early_loading_bottom_right_watermark_width = '100'; +I:early_loading_bottom_left_watermark_height = '100'; +I:early_loading_bar_height = '40'; +S:early_loading_window_title = 'Minecraft'; +I:early_loading_top_left_watermark_height = '100'; +I:early_loading_window_width = '-1'; +I:early_loading_logo_position_offset_y = '-50'; +B:early_loading_hide_bar = 'false'; +I:early_loading_logo_position_offset_x = '0'; \ No newline at end of file diff --git a/config/embeddium++.toml b/config/embeddium++.toml index d01a7333d..6eb5e18e5 100644 --- a/config/embeddium++.toml +++ b/config/embeddium++.toml @@ -79,7 +79,7 @@ [embeddiumplus.performance.distanceCulling.tileEntities] #Toggles distance culling for Block Entities #Maybe you use another mod for that :( - enable = true + enable = false #List of all Block Entities to be ignored by distance culling #Uses ResourceLocation to identify it #Example 1: "minecraft:chest" - Ignores chests only diff --git a/config/enhancedvisuals-client.json b/config/enhancedvisuals-client.json index 875cb240f..59e85044a 100644 --- a/config/enhancedvisuals-client.json +++ b/config/enhancedvisuals-client.json @@ -65,7 +65,7 @@ } }, "sand": { - "enabled": true, + "enabled": false, "opacity": 1.0, "duration": { "min": 100, diff --git a/config/everycomp-common.toml b/config/everycomp-common.toml index 073eb95ed..f6d3e07ee 100644 --- a/config/everycomp-common.toml +++ b/config/everycomp-common.toml @@ -12,6 +12,10 @@ generate_dynamic_assets = true #Allow the item_search or searchBar to be visible. tab_item_search = true + #If set to true, then all of the generated items will not be put into the mod's tab. + no_mod_creative_tab = false + #Generate blocktype tags for every block type. This will be applied to all the mods that use the system, not just Every Compat. It's currently off and Can make pack a bit faster. Turn on if you need it. + generate_blocktype_tags = false [general.tooltips] #Enabled tooltips showing which mod an EC item is from diff --git a/config/everycomp-hazardous.toml b/config/everycomp-hazardous.toml index 55a35bf79..c469e4378 100644 --- a/config/everycomp-hazardous.toml +++ b/config/everycomp-hazardous.toml @@ -12,6 +12,8 @@ # # Module - is a Supported Mod, just a modId is sufficient. # EntrySet - is a FurnitureType or DecorativeType that Wood-Good is supporting via the mod. it is either block or item. +# Wood-Mods - Biomes O' Plenty, The Twilight Forest, so on... +# Supported-Mods - The mods that EveryCompat is currently supporting # # NOTE: blacklisting a Module will be applied to Wood-Good, Stone-Zone, Gems-Realm # @@ -38,6 +40,7 @@ # "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 # ] + # NOTE: This excluded one entryset from all WoodTypes/LeavesTypes # blacklist = [] @@ -50,3 +53,21 @@ # blacklist = [] +[block] + #Exclude a specific WoodType/LeavesType block + # This is only applied to Wood-Good. + # EXAMPLE: blacklist = [ + # "chipped/biomesoplenty/checkered_redwood_trapdoor", COMMENT: excluded a checkered_trapdoor from Chipped with Biomes-O'-Plenty's redwood + # "variantvanillablocks/biomesoplenty/fir_chest", COMMENT: excluded a chest from Variant-Vanilla-Blocks with Biomes-O'-Plenty's fir + # ".*/biomesoplenty/fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Supported-Mods with just Biomes-O'-Plenty (Wood-Mods) + # "chipped/.*/fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Wood-Mods with just chipped (Supported-Mod) + # ".*fir_chest", COMMENT: .* is an RegEx, so it exclude fir_chest from any Supported-Mods & Wood-Mods + # ] + # + blacklist = [] + +[other] + #Disable all of Supported Mods on EveryCompat's side. This feature is same as Library-Section which do not have any Wood Modules. + #WARNING: If the config between CLIENT & SERVER are not the same, then you won't able to join a server + include_all_wood_modules = true + diff --git a/config/extremesoundmuffler-client.toml b/config/extremesoundmuffler-client.toml new file mode 100644 index 000000000..bab3a17df --- /dev/null +++ b/config/extremesoundmuffler-client.toml @@ -0,0 +1,45 @@ + +#General settings +[general] + #Blacklisted Sounds - add the name of the sounds to blacklist, separated with comma + forbiddenSounds = ["ui.", "music.", "ambient."] + #Allow the "ALL" sounds list to include the blacklisted sounds? + lawfulAllList = false + #Volume set when pressed the mute button by default + #Range: 0.0 ~ 0.9 + defaultMuteVolume = 0.0 + #Set to true to move the muffle and play buttons to the left side of the GUI + leftButtons = false + #Show tips in the Muffler screen? + showTip = true + #Whether or not use the dark theme + useDarkTheme = false + +#Inventory button settings +[inventory_button] + #Disable the Muffle button in the player inventory? + disableInventoryButton = false + #Coordinates for the Muffler button in the player inventory. + # You can change this in game by holding the RMB over the button and draging it around + #Range: > -2147483648 + invButtonX = 75 + #Coordinates for the Muffler button in the player inventory. + #You can change this in game by holding the RMB over the button and draging it around + #Range: > -2147483648 + invButtonY = 7 + #Disable the Muffle button in the creative player inventory? + disableCreativeInventoryButton = false + #Coordinates for the Muffler button in the creative player inventory. + # You can change this in game by holding the RMB over the button and draging it around + #Range: > -2147483648 + creativeInvButtonX = 2 + #Coordinates for the Muffler button in the creative player inventory. + #You can change this in game by holding the RMB over the button and draging it around + #Range: > -2147483648 + creativeInvButtonY = 2 + +#Anchor settings +[Anchors] + #Disable the Anchors? + disableAnchors = false + diff --git a/config/fallingtrees_common.json b/config/fallingtrees_common.json index 02bba7941..16e175457 100644 --- a/config/fallingtrees_common.json +++ b/config/fallingtrees_common.json @@ -1,124 +1,126 @@ { - "disableCrouchMining": false, - "disableExtraToolDamage": false, - "disableExtraFoodExhaustion": false, - "treeLifetimeLength": 4.0, - "dynamicMiningSpeed": { - "disable": false, - "speedMultiplication": 0.05, - "maxSpeedMultiplication": 16.0 + "disableCrouchMining": false, + "disableExtraToolDamage": false, + "disableExtraFoodExhaustion": false, + "treeLifetimeLength": 4.0, + "dynamicMiningSpeed": { + "disable": false, + "speedMultiplication": 0.05, + "maxSpeedMultiplication": 16.0 + }, + "trees": { + "standardTree": { + "algorithm": { + "maxLeavesRadius": 25, + "maxLogAmount": 512, + "shouldFallOnMaxLogAmount": true, + "shouldIgnorePersistentLeaves": true + }, + "logFilter": { + "whitelistedTags": [ + "minecraft:logs" + ], + "whitelist": [ + "minecraft:mushroom_stem", + "beneath:wood/log/crimson", + "beneath:wood/stripped_log/crimson", + "beneath:wood/wood/crimson", + "beneath:wood/stripped_wood/crimson", + "beneath:wood/log/warped", + "beneath:wood/stripped_log/warped", + "beneath:wood/wood/warped", + "beneath:wood/stripped_wood/warped", + "ad_astra:aeronos_stem", + "ad_astra:strophar_stem" + ], + "blacklist": [] + }, + "leavesFilter": { + "whitelistedTags": [ + "minecraft:leaves" + ], + "whitelist": [ + "minecraft:red_mushroom_block", + "minecraft:brown_mushroom_block", + "minecraft:shroomlight", + "species:alphacene_mushroom_block", + "species:alphacene_mushroom_growth", + "minecraft:nether_wart_block", + "minecraft:warped_wart_block", + "beneath:wood/leaves/crimson", + "beneath:wood/leaves/warped", + "ad_astra:aeronos_cap", + "ad_astra:strophar_cap" + ], + "blacklist": [] + }, + "extraBlockFilter": { + "whitelistedTags": [], + "whitelist": [ + "minecraft:vine", + "minecraft:bee_nest", + "minecraft:cocoa" + ], + "blacklist": [] + }, + "enabled": true, + "onlyFallWithRequiredTool": false, + "allowedToolFilter": { + "whitelistedTags": [ + "minecraft:axes" + ], + "whitelist": [], + "blacklist": [] + } }, - "trees": { - "standardTree": { - "algorithm": { - "maxLeavesRadius": 25, - "maxLogAmount": 512, - "shouldFallOnMaxLogAmount": true, - "shouldIgnorePersistentLeaves": true - }, - "logFilter": { - "whitelistedTags": [ - "minecraft:logs" - ], - "whitelist": [ - "minecraft:mushroom_stem", - "beneath:wood/log/crimson", - "beneath:wood/stripped_log/crimson", - "beneath:wood/wood/crimson", - "beneath:wood/stripped_wood/crimson", - "beneath:wood/log/warped", - "beneath:wood/stripped_log/warped", - "beneath:wood/wood/warped", - "beneath:wood/stripped_wood/warped", - "ad_astra:aeronos_stem", - "ad_astra:strophar_stem" - ], - "blacklist": [] - }, - "leavesFilter": { - "whitelistedTags": [ - "minecraft:leaves" - ], - "whitelist": [ - "minecraft:red_mushroom_block", - "minecraft:brown_mushroom_block", - "minecraft:shroomlight", - "species:alphacene_mushroom_block", - "species:alphacene_mushroom_growth", - "minecraft:nether_wart_block", - "minecraft:warped_wart_block", - "beneath:wood/leaves/crimson", - "beneath:wood/leaves/warped", - "ad_astra:aeronos_cap", - "ad_astra:strophar_cap" - ], - "blacklist": [] - }, - "extraBlockFilter": { - "whitelistedTags": [], - "whitelist": [ - "minecraft:vine", - "minecraft:bee_nest", - "minecraft:cocoa" - ], - "blacklist": [] - }, - "enabled": true, - "onlyFallWithRequiredTool": false, - "allowedToolFilter": { - "whitelistedTags": [ - "minecraft:axes" - ], - "whitelist": [], - "blacklist": [] - } - }, - "verticalTree": { - "filter": { - "whitelistedTags": [], - "whitelist": [ - "minecraft:cactus", - "minecraft:bamboo" - ], - "blacklist": [] - }, - "enabled": true, - "onlyFallWithRequiredTool": false, - "allowedToolFilter": { - "whitelistedTags": [ - "minecraft:axes" - ], - "whitelist": [], - "blacklist": [] - } - }, - "chorusTree": { - "enabled": false, - "onlyFallWithRequiredTool": false, - "allowedToolFilter": { - "whitelistedTags": [], - "whitelist": [], - "blacklist": [] - } - }, - "mushroomTree": { - "stemFilter": { - "whitelistedTags": [], - "whitelist": [], - "blacklist": [] - }, - "capFilter": { - "whitelistedTags": [], - "whitelist": [], - "blacklist": [] - }, - "enabled": true, - "onlyFallWithRequiredTool": false, - "allowedToolFilter": { - "whitelistedTags": [], - "whitelist": [], - "blacklist": [] - } - } + "verticalTree": { + "filter": { + "whitelistedTags": [], + "whitelist": [ + "minecraft:cactus", + "minecraft:bamboo" + ], + "blacklist": [] + }, + "enabled": true, + "onlyFallWithRequiredTool": false, + "allowedToolFilter": { + "whitelistedTags": [ + "minecraft:axes" + ], + "whitelist": [], + "blacklist": [] + } + }, + "chorusTree": { + "enabled": false, + "onlyFallWithRequiredTool": false, + "allowedToolFilter": { + "whitelistedTags": [], + "whitelist": [ + "tfg:charred_log" + ], + "blacklist": [] + } + }, + "mushroomTree": { + "stemFilter": { + "whitelistedTags": [], + "whitelist": [], + "blacklist": [] + }, + "capFilter": { + "whitelistedTags": [], + "whitelist": [], + "blacklist": [] + }, + "enabled": true, + "onlyFallWithRequiredTool": false, + "allowedToolFilter": { + "whitelistedTags": [], + "whitelist": [], + "blacklist": [] + } } + } } \ No newline at end of file diff --git a/config/fancymenu/assets/icons/icon128x128.png b/config/fancymenu/assets/icons/icon128x128.png new file mode 100644 index 000000000..da40effb1 Binary files /dev/null and b/config/fancymenu/assets/icons/icon128x128.png differ diff --git a/config/fancymenu/customization/gui_loading_screen.txt b/config/fancymenu/customization/gui_loading_screen.txt index 9d21a75d8..0350b775c 100644 --- a/config/fancymenu/customization/gui_loading_screen.txt +++ b/config/fancymenu/customization/gui_loading_screen.txt @@ -3,13 +3,13 @@ type = fancymenu_layout layout-meta { identifier = drippy_loading_overlay render_custom_elements_behind_vanilla = false - last_edited_time = 1752899622608 + last_edited_time = 1763246081342 is_enabled = true randommode = false randomgroup = 1 randomonlyfirsttime = false layout_index = 0 - [loading_requirement_container_meta:5a04ea61-16dc-4ce3-b5f1-db096b50a05a-1752899545176] = [groups:][instances:] + [loading_requirement_container_meta:b25d78fb-bad6-4131-9517-ed77003190ca-1763246052248] = [groups:][instances:] } customization { @@ -55,6 +55,7 @@ element { nine_slice_texture_border_x = 5 nine_slice_texture_border_y = 5 image_tint = #FFFFFF + restart_animated_on_menu_load = false element_type = image instance_identifier = 22ec4f96-137c-48d9-ac6b-cb4f58e7a7821699231610566 appearance_delay = no_delay @@ -89,8 +90,8 @@ element { } element { - interactable = true - source = Tip: Read the Field Guide!!! + interactable = false + source = Tip: Read the field guide!!! source_mode = direct shadow = true scale = 1.0 @@ -155,6 +156,140 @@ element { layer_hidden_in_editor = false } +element { + interactable = false + source = RAM: {"placeholder":"usedram"}MB/ {"placeholder":"maxram"}MB + source_mode = direct + shadow = true + scale = 0.8 + base_color = #b5b5b5 + text_border = 2 + line_spacing = 2 + enable_scrolling = false + auto_line_wrapping = true + remove_html_breaks = true + code_block_single_color = #737373FF + code_block_multi_color = #565656FF + headline_line_color = #A9A9A9FF + separation_line_color = #A9A9A9FF + hyperlink_color = #0771FCFF + quote_color = #818181FF + quote_indent = 8.0 + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + bullet_list_indent = 8.0 + bullet_list_spacing = 3.0 + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 + element_type = text_v2 + instance_identifier = 86a4db70-075d-42a2-ba17-fa5d4dbaa06e-1763245386549 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2496 + auto_sizing_base_screen_height = 1419 + sticky_anchor = false + anchor_point = element + anchor_point_element = progress_bar + x = 264 + y = 12 + width = 192 + height = 15 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 613c98a6-70ec-4662-9333-43a7f0ab1e14-1751008054758 + [loading_requirement_container_meta:613c98a6-70ec-4662-9333-43a7f0ab1e14-1751008054758] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false +} + +element { + interactable = false + source = FPS: {"placeholder":"fps"} + source_mode = direct + shadow = true + scale = 0.8 + base_color = #b5b5b5 + text_border = 2 + line_spacing = 2 + enable_scrolling = false + auto_line_wrapping = true + remove_html_breaks = true + code_block_single_color = #737373FF + code_block_multi_color = #565656FF + headline_line_color = #A9A9A9FF + separation_line_color = #A9A9A9FF + hyperlink_color = #0771FCFF + quote_color = #818181FF + quote_indent = 8.0 + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + bullet_list_indent = 8.0 + bullet_list_spacing = 3.0 + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 + element_type = text_v2 + instance_identifier = 212f299f-173f-42b0-be66-3c1cc155a7ed-1763245838831 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2496 + auto_sizing_base_screen_height = 1419 + sticky_anchor = false + anchor_point = element + anchor_point_element = progress_bar + x = 264 + y = 22 + width = 203 + height = 15 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 613c98a6-70ec-4662-9333-43a7f0ab1e14-1751008054758 + [loading_requirement_container_meta:613c98a6-70ec-4662-9333-43a7f0ab1e14-1751008054758] = [groups:][instances:] + enable_parallax = false + parallax_intensity_v2 = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false +} + vanilla_button { button_element_executable_block_identifier = f3a70cd2-ecfc-4b6b-91cf-b88673431f32-1710837053334 [executable_block:f3a70cd2-ecfc-4b6b-91cf-b88673431f32-1710837053334][type:generic] = [executables:] diff --git a/config/fancymenu/customization/gui_main_menu.txt b/config/fancymenu/customization/gui_main_menu.txt index e61fe899b..5c9243b64 100644 --- a/config/fancymenu/customization/gui_main_menu.txt +++ b/config/fancymenu/customization/gui_main_menu.txt @@ -3,13 +3,13 @@ type = fancymenu_layout layout-meta { identifier = title_screen render_custom_elements_behind_vanilla = false - last_edited_time = 1759697550520 + last_edited_time = 1763246321798 is_enabled = true randommode = false randomgroup = 1 randomonlyfirsttime = false layout_index = 0 - [loading_requirement_container_meta:5de75902-4589-4c02-a443-487a6194d339-1759697516765] = [groups:][instances:] + [loading_requirement_container_meta:f89ba56d-3e0b-46b3-bef2-6e7ecabf2ff0-1763246081347] = [groups:][instances:] } customization { diff --git a/config/fancymenu/options.txt b/config/fancymenu/options.txt index 00ba655f9..12de0eee3 100644 --- a/config/fancymenu/options.txt +++ b/config/fancymenu/options.txt @@ -1,8 +1,8 @@ ##[general] +B:force_fullscreen = 'false'; I:default_gui_scale = '-1'; B:play_vanilla_menu_music = 'true'; -B:force_fullscreen = 'false'; ##[customization] @@ -15,19 +15,19 @@ B:advanced_customization_mode = 'false'; ##[loading] 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'; S:game_intro_animation_name = ''; B:game_intro_fade_out = 'true'; +S:custom_game_intro_skip_text = ''; ##[window] +S:custom_window_icon_16 = '/config/fancymenu/assets/icons/icon16x16.png'; B:show_custom_window_icon = 'true'; S:custom_window_icon_macos = '/config/fancymenu/assets/icons/macOS.icns'; S:custom_window_icon_32 = '/config/fancymenu/assets/icons/icon32x32.png'; S:custom_window_title = 'TerraFirmaGreg-Modern'; -S:custom_window_icon_16 = '/config/fancymenu/assets/icons/icon16x16.png'; ##[multiplayer_screen] @@ -45,36 +45,38 @@ B:show_singleplayer_screen_world_icons = 'true'; B:layout_editor_grid_snapping = 'true'; B:anchor_overlay_change_anchor_on_area_hover = 'true'; B:show_layout_editor_grid = 'true'; +S:anchor_overlay_color_base_override = ''; +B:enable_element_rotation_controls = 'true'; +F:anchor_overlay_opacity_normal = '0.5'; +F:anchor_overlay_opacity_busy = '0.7'; +D:anchor_overlay_hover_charging_time_seconds = '2.0'; B:anchor_overlay_change_anchor_on_element_hover = 'true'; S:anchor_overlay_visibility_mode = 'dragging'; B:anchor_overlay_show_all_connection_lines = 'false'; F:layout_editor_grid_snapping_strength = '1.0'; -S:anchor_overlay_color_base_override = ''; I:layout_editor_grid_size = '10'; B:invert_anchor_overlay_color = 'false'; B:enable_buddy = 'true'; S:anchor_overlay_color_border_override = ''; -F:anchor_overlay_opacity_normal = '0.5'; -F:anchor_overlay_opacity_busy = '0.7'; -D:anchor_overlay_hover_charging_time_seconds = '2.0'; +B:enable_element_tilting_controls = 'true'; ##[ui] -I:context_menu_hover_open_speed = '1'; -S:ui_theme = 'dark'; F:ui_scale = '4.0'; B:play_ui_click_sounds = 'true'; B:enable_ui_text_shadow = 'false'; +I:context_menu_hover_open_speed = '1'; +S:ui_theme = 'dark'; ##[debug_overlay] B:debug_overlay_show_basic_screen_category = 'true'; -B:debug_overlay_show_system_category = 'true'; -B:debug_overlay_show_advanced_screen_category = 'true'; B:show_debug_overlay = 'false'; B:debug_overlay_show_resources_category = 'true'; +B:debug_overlay_show_system_category = 'true'; +B:debug_overlay_show_advanced_screen_category = 'true'; ##[tutorial] diff --git a/config/fancymenu/ui_themes/dark.json b/config/fancymenu/ui_themes/dark.json index 9ad7950f4..67b5605f4 100644 --- a/config/fancymenu/ui_themes/dark.json +++ b/config/fancymenu/ui_themes/dark.json @@ -19,9 +19,24 @@ "layout_editor_element_border_color_selected": { "hex": "#03DBFCFF" }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#9E2BFFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#FFB52BFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#91FF2BFF" + }, "layout_editor_element_dragging_not_allowed_color": { "hex": "#E83609C8" }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000080" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, "layout_editor_anchor_point_overlay_color_base": { "hex": "#25B479FF" }, @@ -76,6 +91,72 @@ "list_entry_color_selected_hovered": { "hex": "#323232FF" }, + "actions_entry_background_color_action": { + "hex": "#3A3F44FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#44494EFF" + }, + "actions_entry_background_color_if": { + "hex": "#263F55FF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#2D516EFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#392D4FFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#463A5FFF" + }, + "actions_entry_background_color_else": { + "hex": "#4E3721FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#5F462DFF" + }, + "actions_entry_background_color_while": { + "hex": "#234A42FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#2D5C52FF" + }, + "actions_entry_background_color_folder": { + "hex": "#50303CFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#613E4DFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#3A3B3EFF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#47484CFF" + }, + "actions_chain_indicator_color": { + "hex": "#587096B4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#64B5F6D2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#FFC147DC" + }, + "actions_minimap_background_color": { + "hex": "#181B20C8" + }, + "actions_minimap_border_color": { + "hex": "#5E636CDC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF23" + }, + "actions_minimap_viewport_border_color": { + "hex": "#D2DEFF64" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#78AADCDC" + }, "text_editor_sidebar_color": { "hex": "#313335FF" }, diff --git a/config/fancymenu/ui_themes/light.json b/config/fancymenu/ui_themes/light.json index 4c56d55cf..6971d4415 100644 --- a/config/fancymenu/ui_themes/light.json +++ b/config/fancymenu/ui_themes/light.json @@ -19,9 +19,24 @@ "layout_editor_element_border_color_selected": { "hex": "#03DBFCFF" }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#9E2BFFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#FFB52BFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#91FF2BFF" + }, "layout_editor_element_dragging_not_allowed_color": { "hex": "#E83609C8" }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000080" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, "layout_editor_anchor_point_overlay_color_base": { "hex": "#25B479FF" }, @@ -76,6 +91,72 @@ "list_entry_color_selected_hovered": { "hex": "#AFAFAFFF" }, + "actions_entry_background_color_action": { + "hex": "#E0E0E0FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#CECECEFF" + }, + "actions_entry_background_color_if": { + "hex": "#C9DBEFFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#B8CEE8FF" + }, + "actions_entry_background_color_else_if": { + "hex": "#E9D7F0FF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#D8C6E3FF" + }, + "actions_entry_background_color_else": { + "hex": "#F3E1C7FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#E5D1B6FF" + }, + "actions_entry_background_color_while": { + "hex": "#CCEBE3FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#BCDED4FF" + }, + "actions_entry_background_color_folder": { + "hex": "#F2D5DBFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#E6C7CEFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#E5E5E5FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#D2D2D2FF" + }, + "actions_chain_indicator_color": { + "hex": "#8CAAD296" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#6895D7BE" + }, + "actions_chain_indicator_selected_color": { + "hex": "#DCA236D2" + }, + "actions_minimap_background_color": { + "hex": "#ECECECC8" + }, + "actions_minimap_border_color": { + "hex": "#ACACACDC" + }, + "actions_minimap_viewport_color": { + "hex": "#5050503C" + }, + "actions_minimap_viewport_border_color": { + "hex": "#D2DEFF64" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#78AADCDC" + }, "text_editor_sidebar_color": { "hex": "#A4A4A4FF" }, diff --git a/config/ftbbackups2.json b/config/ftbbackups2.json index fb96a0bd6..bedb47018 100644 --- a/config/ftbbackups2.json +++ b/config/ftbbackups2.json @@ -27,7 +27,7 @@ More info here (http://www.cronmaker.com) */ - "backup_cron": "0 0 0/1 1/1 * ? *", + "backup_cron": "0 15 10 * * ? *", // 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 @@ -52,9 +52,9 @@ // Specify the backup format. Valid options are ZIP and DIRECTORY "backup_format": "ZIP", // Minimum free disk space in MB. If a backup's creation would leave less than this amount of disk space remaining, the backup will be aborted. - "minimum_free_space": 0, + "minimum_free_space": 51200, // If the previous backup failed due to lack of space, the oldest backup will be deleted to free space. - "free_space_if_needed": false, + "free_space_if_needed": true, /* Specify files or folders to be excluded. Can specify a file name, path relative to server directory or wildcard file path Examples: (All file paths are relative to server root) @@ -65,7 +65,7 @@ *path/ends/with.txt Any files who's path ends with *path/contains* Any files who's path contains */ - "excluded": [], + "excluded": ["DistantHorizons.sqlite"], // The dimension used when creating backup preview image, specify "all" to enable automatic detection of primary dimension (can be very slow) "preview_dimension": "minecraft:overworld" -} \ No newline at end of file +} diff --git a/config/ftbquests/quests/chapter_groups.snbt b/config/ftbquests/quests/chapter_groups.snbt index f58f45f15..f794c7967 100644 --- a/config/ftbquests/quests/chapter_groups.snbt +++ b/config/ftbquests/quests/chapter_groups.snbt @@ -2,6 +2,7 @@ chapter_groups: [ { id: "19428C6E7A36D463", title: "{quests.groups.tips}" } { id: "31B01EAD21CA863A", title: "{quests.groups.technological_help}" } + { id: "36FC51ACEF38D994", title: "{quests.groups.space_survival}" } { id: "3C4612A920658A7E", title: "{quests.groups.primitive}" } { id: "44D0F3E5067B5AB8", title: "{quests.groups.voltaic_age}" } { id: "21D975CEBDE06BA9", title: "{quests.groups.space_age}" } diff --git a/config/ftbquests/quests/chapters/applied_energistics_2.snbt b/config/ftbquests/quests/chapters/applied_energistics_2.snbt index abf33fc22..86e58834a 100644 --- a/config/ftbquests/quests/chapters/applied_energistics_2.snbt +++ b/config/ftbquests/quests/chapters/applied_energistics_2.snbt @@ -218,13 +218,6 @@ id: "432E105A84AEA630" type: "checkmark" } - { - dimension: "ad_astra:moon" - disable_toast: true - icon: "tfg:marker/moon" - id: "6A4F5147475443C5" - type: "dimension" - } ] title: "{quests.ae2.fluix_liquid.title}" x: -3.5d @@ -234,6 +227,7 @@ can_repeat: true dependencies: ["0C0B09D66D0CFFBA"] description: ["{quests.ae2.ae_guide.desc}"] + icon: "ae2:guide" id: "6CF08AFB924905F0" rewards: [{ id: "34825A998EA88DB4" @@ -538,13 +532,13 @@ { dependencies: ["6CF08AFB924905F0"] description: ["{quests.ae2.iv.desc}"] + icon: "tfg:iv_universal_circuit" icon_scale: 2.0d id: "0F1104DEEB22EF86" size: 1.0d tasks: [{ - id: "0D58947010553DE2" - item: "tfg:iv_universal_circuit" - type: "item" + id: "6D9B9EAFE680B768" + type: "checkmark" }] title: "{quests.ae2.iv.title}" x: 3.0d @@ -638,13 +632,13 @@ { dependencies: ["6CF08AFB924905F0"] description: ["{quests.ae2.luv.desc}"] + icon: "tfg:luv_universal_circuit" icon_scale: 2.0d id: "1F3621FABA32DC6B" size: 1.0d tasks: [{ - id: "54E60091BA319CB6" - item: "tfg:luv_universal_circuit" - type: "item" + id: "4CE3EF0D1FAC1B6C" + type: "checkmark" }] title: "{quests.ae2.luv.title}" x: 0.5d @@ -705,13 +699,13 @@ { dependencies: ["6CF08AFB924905F0"] description: ["{quests.ae2.hv.desc}"] + icon: "tfg:hv_universal_circuit" icon_scale: 2.0d id: "3C3C21482E31267B" size: 1.0d tasks: [{ - id: "59184C16CD8F51C6" - item: "tfg:hv_universal_circuit" - type: "item" + id: "1D4A01B75676146B" + type: "checkmark" }] title: "{quests.ae2.hv.title}" x: 0.5d @@ -1269,6 +1263,26 @@ x: 5.0d y: -3.5d } + { + dependencies: ["386C54268DA9F2BF"] + description: ["{quests.ae2.universal_circuits.desc}"] + id: "4F3B767032E0282F" + subtitle: "{quests.ae2.universal_circuits.subtitle}" + tasks: [{ + id: "7427AEBF61BFC772" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(tfg:ulv_universal_circuit)item(tfg:lv_universal_circuit)item(tfg:mv_universal_circuit)item(tfg:hv_universal_circuit)item(tfg:ev_universal_circuit)item(tfg:iv_universal_circuit)item(tfg:luv_universal_circuit)item(tfg:zpm_universal_circuit)item(tfg:uv_universal_circuit)item(tfg:uhv_universal_circuit))" + } + } + type: "item" + }] + title: "{quests.ae2.universal_circuits.title}" + x: -2.0d + y: -9.0d + } ] subtitle: ["{quests.ae2.subtitle}"] title: "{quests.ae2}" diff --git a/config/ftbquests/quests/chapters/create_logistics.snbt b/config/ftbquests/quests/chapters/create_logistics.snbt index 0af188592..9d7f8c168 100644 --- a/config/ftbquests/quests/chapters/create_logistics.snbt +++ b/config/ftbquests/quests/chapters/create_logistics.snbt @@ -134,7 +134,7 @@ ] dependency_requirement: "one_completed" description: ["{quests.create_logistics.rose_quartz_lens.desc}"] - icon: "gtceu:rose_quartz_lens" + icon: "greate:rose_quartz_lens" id: "7C4807A247AF36A1" shape: "octagon" size: 2.0d @@ -142,7 +142,7 @@ tasks: [ { id: "0C0BA9D487C3B948" - item: "gtceu:rose_quartz_lens" + item: "greate:rose_quartz_lens" type: "item" } { @@ -182,8 +182,8 @@ optional: true subtitle: "{quests.create_logistics.cold_rose_quartz.subtitle}" tasks: [{ - id: "00680B620AC2F8ED" - item: "gtceu:exquisite_rose_quartz_gem" + id: "60D9FAD7D3290FF5" + item: "greate:exquisite_rose_quartz_gem" type: "item" }] title: "{quests.create_logistics.cold_rose_quartz.title}" @@ -199,7 +199,7 @@ subtitle: "{quests.create_logistics.fabricate_rose_quartz.subtitle}" tasks: [{ id: "57B107DB57726992" - item: "gtceu:rose_quartz_plate" + item: "greate:rose_quartz_plate" type: "item" }] title: "{quests.create_logistics.fabricate_rose_quartz.title}" diff --git a/config/ftbquests/quests/chapters/ev__extreme_voltage.snbt b/config/ftbquests/quests/chapters/ev__extreme_voltage.snbt index 8283eac7a..587b6037c 100644 --- a/config/ftbquests/quests/chapters/ev__extreme_voltage.snbt +++ b/config/ftbquests/quests/chapters/ev__extreme_voltage.snbt @@ -11,7 +11,7 @@ image: "gtceu:textures/gui/overlay/atomic_overlay_2.png" rotation: 0.0d width: 8.0d - x: 8.5d + x: 10.0d y: 7.0d }] order_index: 0 @@ -32,19 +32,19 @@ id: "66960076A74E9B79" linked_quest: "0CA5B715B76E4A5B" shape: "diamond" - x: 14.0d + x: 15.5d y: 2.5d } { id: "6058CD9466BE0852" linked_quest: "00202200344F3456" - x: 11.5d + x: 13.0d y: 4.0d } { id: "49FB3507B0FB3000" linked_quest: "155F421FC2F39C3C" - x: 10.5d + x: 12.0d y: 4.0d } { @@ -52,9 +52,22 @@ linked_quest: "4B1F957EB41A5E9B" shape: "octagon" size: 1.5d - x: 4.5d + x: 5.5d y: 5.5d } + { + id: "7B380A243C2C39FA" + linked_quest: "13F2929C1C303A0B" + x: -1.0d + y: -5.0d + } + { + id: "2151F8AA263F1D6E" + linked_quest: "6ECAD339C91EF194" + shape: "heart" + x: 4.0d + y: -5.5d + } ] quests: [ { @@ -145,12 +158,15 @@ } ] title: "{quests.extreme_voltage.tungsten.title}" - x: 6.0d - y: -4.5d + x: 7.5d + y: -2.0d } { - dependencies: ["4EA8888B12D75BF1"] - dependency_requirement: "all_started" + dependencies: [ + "4EA8888B12D75BF1" + "00004BE1D77EA003" + ] + dependency_requirement: "one_completed" description: ["{quests.extreme_voltage.tunsgten_line_step_1.desc}"] icon: "gtceu:tungstic_acid_dust" id: "04682CD04FE0A56E" @@ -170,26 +186,36 @@ } ] title: "{quests.extreme_voltage.tunsgten_line_step_1.title}" - x: 0.5d - y: -4.5d + x: -2.0d + y: -2.0d } { dependencies: ["4EA8888B12D75BF1"] dependency_requirement: "all_started" - description: [""] + description: [ + "{quests.extreme_voltage.assembler.desc.1}" + "{@pagebreak}" + "{quests.extreme_voltage.assembler.desc.2}" + ] id: "601088B7920140B2" shape: "octagon" size: 2.0d + subtitle: "{quests.extreme_voltage.assembler.subtitle}" tasks: [{ id: "2B895EE3AD917E30" item: "gtceu:ev_assembler" type: "item" }] + title: "{quests.extreme_voltage.assembler.title}" x: -0.75d y: 3.0d } { - dependencies: ["4EA8888B12D75BF1"] + dependencies: [ + "4EA8888B12D75BF1" + "6A451F43F3D7A671" + ] + dependency_requirement: "one_completed" description: [ "{quests.extreme_voltage.distillation_tower.desc.1}" "{@pagebreak}" @@ -278,7 +304,7 @@ type: "item" }] title: "{quests.extreme_voltage.wood_distillation.title}" - x: -6.0d + x: -5.5d y: -2.5d } { @@ -296,7 +322,7 @@ item: "gtceu:alloy_blast_smelter" type: "item" }] - x: 8.5d + x: 10.0d y: 1.5d } { @@ -313,7 +339,7 @@ type: "item" }] title: "{quests.extreme_voltage.ev_mixer.title}" - x: -0.75d + x: 0.0d y: 0.0d } { @@ -411,7 +437,7 @@ } ] title: "{quests.extreme_voltage.gcym_alloys.title}" - x: 4.5d + x: 8.5d y: 1.5d } { @@ -451,14 +477,15 @@ } { dependencies: ["24ECDF70031B39C4"] - description: ["The &6Large Centrifugal Unit&r is a mandatory multiblock for your Fission Line.\\n\\nIt supports up to &52x EV Energy Hatches&r, allowing it to process &1IV-tier&r recipes using the same mechanic as the EBF, so it should feel familiar.\\n\\nThis machine can operate in two modes: &bCentrifuge&r and &6Thermal Centrifuge&r. You can easily switch between them directly in the controller interface.\\n\\nWith this upgrade, you can finally bring your &aore processing&r to a whole new level of speed."] + description: ["{quests.extreme_voltage.large_centrifuge.desc}"] id: "10F870BCEC5D5C74" + subtitle: "{quests.extreme_voltage.large_centrifuge.subtitle}" tasks: [{ id: "78C78EA1B0996FF9" item: "gtceu:large_centrifuge" type: "item" }] - x: 15.5d + x: 17.0d y: 1.5d } { @@ -484,8 +511,8 @@ } ] title: "{quests.extreme_voltage.tungsten_steel.title}" - x: 0.5d - y: -2.0d + x: 0.0d + y: -4.0d } { dependencies: [ @@ -503,7 +530,7 @@ type: "item" }] title: "{quests.extreme_voltage.nuclear_fuel_factory.title}" - x: 6.0d + x: 7.5d y: 7.0d } { @@ -545,7 +572,7 @@ } ] title: "{quests.extreme_voltage.heavy_water.title}" - x: 8.5d + x: 10.0d y: 5.5d } { @@ -570,7 +597,7 @@ } type: "item" }] - x: 7.0d + x: 8.5d y: 7.0d } { @@ -601,7 +628,7 @@ } ] title: "{quests.gregtech_energy.fission_reactor.title}" - x: 8.5d + x: 10.0d y: 7.0d } { @@ -624,7 +651,7 @@ } ] title: "{quests.extreme_voltage.radioactive_waste.title}" - x: 10.0d + x: 11.5d y: 7.0d } { @@ -652,7 +679,7 @@ } type: "item" }] - x: 11.0d + x: 12.5d y: 7.0d } { @@ -673,7 +700,7 @@ } ] title: "{quests.extreme_voltage.uranium_line.title}" - x: 11.0d + x: 12.5d y: 8.0d } { @@ -687,7 +714,7 @@ item: "gtceu:uraninite_dust" type: "item" }] - x: 11.0d + x: 12.5d y: 9.0d } { @@ -720,7 +747,7 @@ } ] title: "{quests.extreme_voltage.uranium_waste.title}" - x: 13.0d + x: 14.5d y: 7.0d } { @@ -747,7 +774,7 @@ type: "item" }] title: "{quests.extreme_voltage.heat_exchanger.title}" - x: 13.0d + x: 14.5d y: 5.5d } { @@ -775,7 +802,7 @@ } ] title: "{quests.extreme_voltage.ammonium_formate.title}" - x: 12.0d + x: 13.5d y: 5.5d } { @@ -798,7 +825,7 @@ } ] title: "{quests.extreme_voltage.formamide.title}" - x: 14.0d + x: 15.5d y: 5.5d } { @@ -831,7 +858,7 @@ } ] title: "{quests.extreme_voltage.nuclear_residue_dust.title}" - x: 15.5d + x: 17.0d y: 5.5d } { @@ -857,7 +884,7 @@ } ] title: "{quests.extreme_voltage.martian_sludge.title}" - x: 15.5d + x: 17.0d y: 3.5d } { @@ -885,7 +912,7 @@ } ] title: "{quests.extreme_voltage.hexafluorosilic_acid.title}" - x: 17.0d + x: 18.5d y: 3.5d } { @@ -902,7 +929,7 @@ item: "tfg:oxidized_nuclear_residue_dust" type: "item" }] - x: 17.0d + x: 18.5d y: 5.5d } { @@ -915,7 +942,7 @@ item: "tfg:refined_nuclear_residue_dust" type: "item" }] - x: 17.0d + x: 18.5d y: 7.0d } { @@ -941,7 +968,7 @@ } type: "item" }] - x: 17.0d + x: 18.5d y: 10.5d } { @@ -964,7 +991,7 @@ } ] title: "{quests.extreme_voltage.radioactive_concoction.title}" - x: 20.0d + x: 21.5d y: 5.5d } { @@ -987,7 +1014,7 @@ } ] title: "{quests.extreme_voltage.tritiated_water.title}" - x: 14.5d + x: 16.0d y: 10.5d } { @@ -1132,7 +1159,7 @@ } ] title: "{quests.extreme_voltage.ostrum_harvester.title}" - x: 13.0d + x: 14.5d y: 2.5d } { @@ -1199,8 +1226,8 @@ item: "gtceu:iv_machine_hull" type: "item" }] - x: 4.5d - y: -2.0d + x: 1.5d + y: -5.5d } { dependencies: ["2C000B45C23752D0"] @@ -1229,7 +1256,7 @@ } ] title: "{quests.extreme_voltage.ev_superconductor.title}" - x: 12.0d + x: 13.5d y: 8.0d } { @@ -1261,14 +1288,24 @@ { dependencies: ["2DEC7AF917AAE4EC"] description: ["{quests.extreme_voltage.gasoline.desc}"] + icon: "gtceu:gasoline_bucket" id: "397546E863E9835E" + optional: true shape: "octagon" size: 1.5d - tasks: [{ - id: "3F040C1D8A8D6676" - item: "gtceu:gasoline_bucket" - type: "item" - }] + tasks: [ + { + id: "3F040C1D8A8D6676" + item: "gtceu:gasoline_bucket" + optional_task: true + type: "item" + } + { + id: "4BE81C925AD3FB91" + title: "{quests.tasktype.checkmark}" + type: "checkmark" + } + ] title: "{quests.extreme_voltage.gasoline.title}" x: -7.0d y: -4.5d @@ -1280,7 +1317,6 @@ ] description: ["{quests.extreme_voltage.pss.desc}"] id: "60433993B715029A" - shape: "heart" subtitle: "{quests.extreme_voltage.pss.subtitle}" tasks: [ { @@ -1422,7 +1458,7 @@ } ] title: "{quests.extreme_voltage.high_pressure_steam.title}" - x: 8.5d + x: 10.0d y: 9.0d } { @@ -1444,7 +1480,7 @@ type: "item" }] title: "{quests.extreme_voltage.me_part.title}" - x: 4.5d + x: 5.5d y: 3.0d } { @@ -1470,7 +1506,7 @@ type: "item" }] title: "{quests.extreme_voltage.building_gadgets.title}" - x: 3.5d + x: 4.5d y: 4.0d } { @@ -1499,12 +1535,13 @@ } ] title: "{quests.ae2.wireless_access.title}" - x: 4.5d + x: 5.5d y: 4.0d } { dependencies: ["601088B7920140B2"] description: ["{quests.extreme_voltage.new_qol.desc}"] + icon: "gtceu:ev_sensor" id: "70ABD1E3FC1CA672" tasks: [{ id: "73ABA113A9069875" @@ -1512,7 +1549,7 @@ type: "checkmark" }] title: "{quests.extreme_voltage.new_qol.title}" - x: 3.5d + x: 4.5d y: 3.0d } { @@ -1558,7 +1595,7 @@ } ] title: "{quests.extreme_voltage.plutonium.title}" - x: 17.0d + x: 18.5d y: 9.0d } { @@ -1570,10 +1607,10 @@ subtitle: "{quests.extreme_voltage.ostrum_linear.subtitle}" tasks: [{ id: "130FE3E2CE8735F8" - item: "gtceu:ostrum_linear_accelerator" + item: "tfg:ostrum_linear_accelerator" type: "item" }] - x: 20.0d + x: 21.5d y: 9.0d } { @@ -1593,7 +1630,7 @@ type: "checkmark" } ] - x: 20.0d + x: 21.5d y: 12.5d } { @@ -1613,7 +1650,7 @@ type: "checkmark" } ] - x: 21.0d + x: 22.5d y: 12.5d } { @@ -1636,7 +1673,7 @@ type: "checkmark" } ] - x: 19.0d + x: 20.5d y: 12.5d } { @@ -1669,7 +1706,7 @@ type: "item" } ] - x: 21.0d + x: 22.5d y: 13.5d } { @@ -1702,7 +1739,7 @@ type: "item" } ] - x: 20.0d + x: 21.5d y: 13.5d } { @@ -1735,13 +1772,14 @@ type: "item" } ] - x: 19.0d + x: 20.5d y: 13.5d } { dependencies: ["3A2E442E4D84C891"] description: ["{quests.extreme_voltage.cracker.desc}"] id: "36B9B5024356C53C" + shape: "octagon" size: 1.5d subtitle: "{quests.extreme_voltage.cracker.subtitle}" tasks: [{ @@ -1822,7 +1860,7 @@ } ] title: "{quests.extreme_voltage.nuclear_turbine.title}" - x: 7.0d + x: 8.5d y: 9.0d } { @@ -1837,7 +1875,7 @@ type: "item" }] title: "{quests.extreme_voltage.refrigerant_pellet.title}" - x: 18.0d + x: 19.5d y: 10.5d } { @@ -1872,7 +1910,7 @@ } ] title: "{quests.extreme_voltage.reactor_components.title}" - x: 10.0d + x: 11.5d y: 5.5d } { @@ -1901,7 +1939,7 @@ dependencies: ["5EC5566546591DEE"] description: ["{quests.extreme_voltage.large_miner.desc}"] id: "3F77D528961D5C5E" - shape: "heart" + shape: "octagon" size: 2.0d subtitle: "{quests.extreme_voltage.large_miner.subtitle}" tasks: [{ @@ -1910,8 +1948,8 @@ type: "item" }] title: "{quests.extreme_voltage.large_miner.title}" - x: 6.0d - y: -6.0d + x: 7.5d + y: -3.5d } { dependencies: ["2979AFD231E5B37B"] @@ -1946,7 +1984,7 @@ type: "item" }] title: "{quests.extreme_voltage.dense_lead.title}" - x: 5.0d + x: 6.5d y: 8.0d } { @@ -1971,7 +2009,7 @@ } ] title: "{quests.extreme_voltage.ostrum_dust.title}" - x: 13.0d + x: 14.5d y: 4.0d } { @@ -1990,7 +2028,7 @@ type: "checkmark" }] title: "Breaking changes in next update" - x: 22.5d + x: 24.0d y: 9.0d } { @@ -2021,8 +2059,8 @@ } ] title: "{quests.extreme_voltage.tunsgten_line_step.title}" - x: 0.5d - y: -5.5d + x: -2.0d + y: -3.0d } { dependencies: ["04682CD04FE0A56E"] @@ -2035,8 +2073,8 @@ type: "item" }] title: "{quests.extreme_voltage.tunsgten_line_step_2.title}" - x: 1.5d - y: -4.5d + x: -1.0d + y: -2.0d } { dependencies: ["3A2E442E4D84C891"] @@ -2102,7 +2140,7 @@ id: "4AD96212525517CD" rewards: [{ id: "1F7C92A8EF2F84A0" - item: "gtceu:rad_away_pill" + item: "tfg:rad_away_pill" type: "item" }] shape: "diamond" @@ -2134,8 +2172,8 @@ type: "item" }] title: "{quests.extreme_voltage.advanced_fluid_rig.title}" - x: 7.5d - y: -4.5d + x: 9.0d + y: -2.0d } { dependencies: ["5CF58F7CBE255585"] @@ -2160,6 +2198,68 @@ x: 2.0d y: 4.5d } + { + dependencies: ["43BBB9074608F9B1"] + description: [ + "{quests.extreme_voltage.btx.desc.1}" + "{@pagebreak}" + "{quests.extreme_voltage.btx.desc.2}" + ] + icon: "tfg:btx_fuel_bucket" + id: "601B05D5F3888C74" + optional: true + shape: "octagon" + size: 1.5d + subtitle: "{quests.extreme_voltage.btx.subtitle}" + tasks: [ + { + id: "1EC8E5CE7DD21191" + item: "tfg:btx_fuel_bucket" + optional_task: true + type: "item" + } + { + id: "2A71DF31AAA0CD3D" + title: "{quests.tasktype.checkmark}" + type: "checkmark" + } + ] + title: "{quests.extreme_voltage.btx.title}" + x: -5.5d + y: -4.5d + } + { + dependencies: ["601B05D5F3888C74"] + description: ["{quests.extreme_voltage.btx_catalyser.desc}"] + id: "3EC1D337D9FC3F1B" + optional: true + subtitle: "{quests.extreme_voltage.btx_catalyser.subtitle}" + tasks: [{ + id: "55930B83D1BA6672" + item: "tfg:catalyser_pt_re_zsm" + type: "item" + }] + title: "{quests.extreme_voltage.btx_catalyser.title}" + x: -4.0d + y: -4.5d + } + { + dependencies: ["3EC1D337D9FC3F1B"] + description: [ + "{quests.extreme_voltage.btx_loop.desc.1}" + "{@pagebreak}" + "{quests.extreme_voltage.btx_loop.desc.2}" + ] + id: "38184C7BA01A9B5B" + optional: true + tasks: [{ + id: "39568ED5E30CDC88" + item: "gtceu:rhenium_dust" + type: "item" + }] + x: -4.0d + y: -5.5d + } ] subtitle: ["{quests.extreme_voltage.subtitle}"] title: "{quests.extreme_voltage}" diff --git a/config/ftbquests/quests/chapters/gregtech_energy.snbt b/config/ftbquests/quests/chapters/gregtech_energy.snbt index 83f559120..a962839dd 100644 --- a/config/ftbquests/quests/chapters/gregtech_energy.snbt +++ b/config/ftbquests/quests/chapters/gregtech_energy.snbt @@ -6,6 +6,64 @@ group: "31B01EAD21CA863A" icon: "gtceu:max_battery" id: "6540429F3CA4DA1B" + images: [ + { + height: 2.0d + image: "ftblibrary:icons/star" + rotation: 0.0d + width: 2.0d + x: 3.0d + y: -5.0d + } + { + height: 2.0d + image: "ftblibrary:icons/star" + rotation: 0.0d + width: 2.0d + x: -3.0d + y: -7.0d + } + { + height: 2.5d + image: "ftblibrary:icons/star" + rotation: 0.0d + width: 2.5d + x: -10.5d + y: -9.5d + } + { + height: 2.5d + image: "ftblibrary:icons/star" + rotation: 0.0d + width: 2.5d + x: 6.0d + y: -7.0d + } + { + height: 2.0d + image: "ftblibrary:icons/star" + rotation: 0.0d + width: 2.0d + x: 5.0d + y: -6.0d + } + { + height: 2.0d + image: "ftblibrary:icons/star" + rotation: 0.0d + width: 2.0d + x: 7.0d + y: -6.0d + } + { + height: 2.25d + image: "ftblibrary:icons/star" + rotation: 0.0d + width: 2.25d + x: 3.0d + y: -7.0d + } + ] order_index: 2 quest_links: [ ] quests: [ @@ -14,7 +72,7 @@ icon: "gtceu:uhv_ultimate_battery" id: "06B2E38F7DCF2678" shape: "gear" - size: 1.0d + size: 3.0d subtitle: "{quests.gregtech_energy.start.subtitle}" tasks: [{ id: "07E1FA6A1BB796D4" @@ -23,13 +81,15 @@ }] title: "{quests.gregtech_energy.start.title}" x: 0.0d - y: -8.5d + y: -9.5d } { dependencies: ["4C620105AAC49381"] description: ["{quests.gregtech_energy.moving.desc}"] icon: "gtceu:luv_field_generator" id: "60FF9249376DF9BD" + shape: "octagon" + size: 1.5d subtitle: "{quests.gregtech_energy.moving.subtitle}" tasks: [{ id: "4C6524EFB1A21E6E" @@ -45,6 +105,8 @@ description: ["{quests.gregtech_energy.storage.desc}"] icon: "gtceu:uv_field_generator" id: "08C160A0E7BBF39D" + shape: "octagon" + size: 1.5d subtitle: "{quests.gregtech_energy.storage.subtitle}" tasks: [{ id: "2E561EE13A2AE934" @@ -64,6 +126,8 @@ description: ["{quests.gregtech_energy.produce_energy.desc}"] icon: "gtceu:lv_field_generator" id: "2CDB9778C7A30044" + shape: "octagon" + size: 1.5d subtitle: "{quests.gregtech_energy.produce_energy.subtitle}" tasks: [{ id: "0772AE56AC1CCBAC" @@ -71,8 +135,8 @@ type: "checkmark" }] title: "{quests.gregtech_energy.produce_energy.title}" - x: -1.0d - y: -8.5d + x: -10.5d + y: -9.5d } { dependencies: ["4C620105AAC49381"] @@ -87,6 +151,8 @@ ] icon: "gtceu:hv_field_generator" id: "2E57B2B963717893" + shape: "octagon" + size: 1.5d subtitle: "{quests.gregtech_energy.spending_energy.subtitle}" tasks: [{ id: "28965A2A91DF08E5" @@ -168,16 +234,20 @@ { dependencies: [ "60FF9249376DF9BD" - "1DB543EFEEB67238" + "05E2F203DA46A5E8" + "3EC8D58DB73CEFE5" ] + dependency_requirement: "one_completed" description: ["{quests.gregtech_energy.transformer.desc}"] - icon: "gtceu:active_transformer" + icon: "tfg:active_power_transformer" id: "6ECAD339C91EF194" + optional: true subtitle: "{quests.gregtech_energy.transformer.subtitle}" tasks: [ { id: "098424C2B55ABA69" item: "gtceu:normal_laser_pipe" + optional_task: true type: "item" } { @@ -194,13 +264,13 @@ } { id: "3402A41D0F9CAD37" - item: "gtceu:active_transformer" + item: "tfg:active_power_transformer" type: "item" } ] title: "{quests.gregtech_energy.transformer.title}" x: 6.0d - y: 3.0d + y: 1.0d } { dependencies: ["08C160A0E7BBF39D"] @@ -292,8 +362,8 @@ type: "item" }] title: "{quests.gregtech_energy.tank.title}" - x: 8.0d - y: -6.0d + x: 10.0d + y: -8.0d } { dependencies: [ @@ -506,7 +576,7 @@ y: 1.0d } { - dependencies: ["4D0ADC66D2CF09B1"] + dependencies: ["2CDB9778C7A30044"] description: [ "{quests.gregtech_energy.lgt_fuel.desc.1}" "{@pagebreak}" @@ -517,32 +587,50 @@ subtitle: "{quests.gregtech_energy.lgt_fuel.subtitle}" tasks: [ { - id: "2A3155363C7C56A7" - item: "gtceu:nitrobenzene_bucket" - optional_task: true - type: "item" - } - { - id: "6D22AF719926DC1C" - item: "gtceu:benzene_bucket" - optional_task: true - type: "item" - } - { - id: "532915D09934F836" + id: "3BC6583DCF48D475" item: "gtceu:methane_bucket" optional_task: true type: "item" } { - id: "75DE64829622C96D" + id: "08E4B7F67EA2769B" + item: "tfg:syngas_bucket" + optional_task: true + type: "item" + } + { + id: "067CB52470E7A72E" + item: "gtceu:refinery_gas_bucket" + optional_task: true + type: "item" + } + { + id: "20F5E6847D132420" + item: "gtceu:lpg_bucket" + optional_task: true + type: "item" + } + { + id: "733F33DC314A646C" + item: "tfg:reformate_gas_bucket" + optional_task: true + type: "item" + } + { + id: "29E24DFADB670971" + item: "tfg:btx_fuel_bucket" + optional_task: true + type: "item" + } + { + id: "3DA67694B1764AE0" title: "{quests.gregtech_energy.lgt_fuel.task}" type: "checkmark" } ] title: "{quests.gregtech_energy.lgt_fuel.title}" - x: -10.0d - y: -3.0d + x: -10.5d + y: -8.0d } { dependencies: ["634EAFA86B3D57A1"] @@ -574,11 +662,11 @@ } ] title: "{quests.gregtech_energy.lpt_fuel.title}" - x: -9.0d + x: -12.0d y: 3.0d } { - dependencies: ["4C620105AAC49381"] + dependencies: ["2CDB9778C7A30044"] description: ["{quests.gregtech_energy.lst_fuel.desc}"] icon: "gtceu:steam_bucket" id: "7D5CA47D0E147922" @@ -604,11 +692,11 @@ } ] title: "{quests.gregtech_energy.lst_fuel.title}" - x: -9.0d - y: -7.0d + x: -12.0d + y: -8.0d } { - dependencies: ["4AC4D681124751EE"] + dependencies: ["2CDB9778C7A30044"] description: [ "{quests.gregtech_energy.lce_fuel.desc.1}" "{@pagebreak}" @@ -656,7 +744,7 @@ ] title: "{quests.gregtech_energy.lce_fuel.title}" x: -9.0d - y: 1.0d + y: -8.0d } { dependencies: ["4C620105AAC49381"] @@ -668,6 +756,8 @@ "{quests.gregtech_energy.lv_generator.desc.3}" "{@pagebreak}" "{quests.gregtech_energy.lv_generator.desc.4}" + "{@pagebreak}" + "{quests.gregtech_energy.lv_generator.desc.5}" ] id: "7F92FDAB9A04C58B" subtitle: "{quests.gregtech_energy.lv_generator.subtitle}" @@ -678,7 +768,7 @@ Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - "ftbfiltersystem:filter": "or(item(gtceu:lv_steam_turbine)item(gtceu:lv_combustion))" + "ftbfiltersystem:filter": "or(item(gtceu:lv_combustion)item(gtceu:lv_steam_turbine)item(gtceu:lv_gas_turbine))" } } title: "{quests.gregtech_energy.lv_generator.task}" @@ -728,7 +818,6 @@ dependencies: [ "109C57B63EE95E35" "5826EC76931359B8" - "7AF726555D721DFC" ] dependency_requirement: "one_completed" description: [ @@ -746,7 +835,7 @@ type: "item" }] x: -6.0d - y: -1.0d + y: -2.0d } { dependencies: ["4D0ADC66D2CF09B1"] @@ -766,45 +855,11 @@ type: "item" }] title: "{quests.gregtech_energy.hv_single_generator.title}" - x: -4.5d + x: -1.5d y: -3.0d } { - dependencies: ["1A0672F4FA88DF74"] - description: ["{quests.gregtech_energy.hv_fuel.desc}"] - id: "42CF00F2C602EF77" - subtitle: "{quests.gregtech_energy.hv_fuel.subtitle}" - tasks: [ - { - id: "50AA063D324C5D25" - item: "gtceu:cetane_boosted_diesel_bucket" - optional_task: true - type: "item" - } - { - id: "60BED708F72701C8" - item: "gtceu:steam_bucket" - optional_task: true - type: "item" - } - { - id: "2C80389B193E48CE" - item: "gtceu:nitrobenzene_bucket" - optional_task: true - type: "item" - } - { - id: "33FC3878BFB14AE1" - title: "{quests.gregtech_energy.hv_fuel.task}" - type: "checkmark" - } - ] - title: "{quests.gregtech_energy.hv_fuel.title}" - x: -11.0d - y: -3.0d - } - { - description: ["TODO"] + dependencies: ["06B2E38F7DCF2678"] disable_toast: true icon: "tfg:lv_universal_circuit" id: "4C620105AAC49381" @@ -821,7 +876,7 @@ y: -7.0d } { - description: ["TODO"] + dependencies: ["4C620105AAC49381"] disable_toast: true icon: "tfg:mv_universal_circuit" id: "0AF286AA540A82E6" @@ -838,7 +893,7 @@ y: -5.0d } { - description: ["TODO"] + dependencies: ["0AF286AA540A82E6"] disable_toast: true icon: "tfg:hv_universal_circuit" id: "4D0ADC66D2CF09B1" @@ -855,7 +910,7 @@ y: -3.0d } { - description: ["TODO"] + dependencies: ["4D0ADC66D2CF09B1"] disable_toast: true icon: "tfg:ev_universal_circuit" id: "7AF726555D721DFC" @@ -872,7 +927,7 @@ y: -1.0d } { - description: ["TODO"] + dependencies: ["7AF726555D721DFC"] disable_toast: true icon: "tfg:iv_universal_circuit" id: "05E2F203DA46A5E8" @@ -889,7 +944,7 @@ y: 1.0d } { - description: ["TODO"] + dependencies: ["05E2F203DA46A5E8"] disable_toast: true icon: "tfg:luv_universal_circuit" id: "1DB543EFEEB67238" @@ -906,6 +961,7 @@ y: 3.0d } { + dependencies: ["1DB543EFEEB67238"] description: ["TODO"] disable_toast: true icon: "tfg:zpm_universal_circuit" @@ -923,6 +979,7 @@ y: 5.0d } { + dependencies: ["39019EF278D09DF7"] description: ["TODO"] disable_toast: true icon: "tfg:uv_universal_circuit" @@ -940,24 +997,46 @@ y: 7.0d } { - dependencies: ["0AF286AA540A82E6"] + dependencies: [ + "0AF286AA540A82E6" + "75DAF94D46BA4164" + ] + description: [ + "{quests.gregtech_energy.reformate_gas.desc.1}" + "{@pagebreak}" + "{quests.gregtech_energy.reformate_gas.desc.2}" + ] id: "3630849A7B0818C8" + subtitle: "{quests.gregtech_energy.reformate_gas.subtitle}" tasks: [{ id: "0CF9D6042C16265A" - item: "gtceu:benzene_bucket" + item: "tfg:reformate_gas_bucket" type: "item" }] - x: -10.0d + title: "{quests.gregtech_energy.reformate_gas.title}" + x: -10.5d y: -5.0d } { - dependencies: ["0AF286AA540A82E6"] + dependencies: [ + "0AF286AA540A82E6" + "0C718329245D9619" + ] + description: [ + "{quests.medium_voltage.mv_diesel.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_diesel.desc.2}" + "{@pagebreak}" + "{quests.medium_voltage.mv_diesel.desc.3}" + ] id: "79AA7691F398A8C7" + subtitle: "{quests.medium_voltage.mv_diesel.subtitle}" tasks: [{ id: "36219BC854303490" item: "gtceu:diesel_bucket" type: "item" }] + title: "{quests.medium_voltage.mv_diesel.title}" x: -9.0d y: -5.0d } @@ -980,6 +1059,7 @@ "{@pagebreak}" "{quests.gregtech_energy.fission_reactor.desc.8}" ] + icon: "deafission:fission_reactor_mk1" id: "4512E5DE7A84F809" subtitle: "{quests.gregtech_energy.fission_reactor.subtitle}" tasks: [ @@ -999,37 +1079,52 @@ y: -1.0d } { - dependencies: ["4C620105AAC49381"] + dependencies: [ + "4C620105AAC49381" + "0C718329245D9619" + ] id: "139C7DF629329753" tasks: [{ id: "7BA9FDD1F45B53F6" item: "gtceu:bio_diesel_bucket" type: "item" }] - x: -10.0d + x: -9.0d y: -7.0d } { - dependencies: ["4D0ADC66D2CF09B1"] + dependencies: [ + "4D0ADC66D2CF09B1" + "0C718329245D9619" + ] + description: ["{quests.high_voltage.cetane_diesel.desc}"] id: "376BFF92714C5012" + subtitle: "{quests.high_voltage.cetane_diesel.subtitle}" tasks: [{ id: "22F9A3ED193CB252" item: "gtceu:cetane_boosted_diesel_bucket" type: "item" }] + title: "{quests.high_voltage.cetane_diesel.title}" x: -9.0d y: -3.0d } { - dependencies: ["7AF726555D721DFC"] + dependencies: [ + "0C718329245D9619" + "05E2F203DA46A5E8" + ] + description: ["{quests.gregtech_energy.high_gasoline.desc}"] id: "7134DB013B34593E" + subtitle: "{quests.gregtech_energy.high_gasoline.subtitle}" tasks: [{ id: "008341509483BB23" item: "gtceu:high_octane_gasoline_bucket" type: "item" }] + title: "{quests.gregtech_energy.high_gasoline.title}" x: -9.0d - y: -1.0d + y: 1.0d } { dependencies: ["7AF726555D721DFC"] @@ -1136,6 +1231,95 @@ x: -3.0d y: -2.0d } + { + dependencies: [ + "05E2F203DA46A5E8" + "0ABD326DC2551CBD" + ] + description: ["{quests.gregtech_energy.smr.desc.1}"] + id: "4659447C85CDC058" + subtitle: "{quests.gregtech_energy.smr.subtitle}" + tasks: [{ + id: "1D02468DD9869C72" + item: "deafission:fission_reactor_smr1" + type: "item" + }] + title: "{quests.gregtech_energy.smr.title}" + x: -7.5d + y: 1.0d + } + { + dependencies: [ + "4C620105AAC49381" + "75DAF94D46BA4164" + ] + description: ["{quests.gregtech_energy.syngas.desc}"] + id: "27FEF27219CDF5AD" + subtitle: "{quests.gregtech_energy.syngas.subtitle}" + tasks: [{ + id: "7BA53E107C8E8917" + item: "tfg:syngas_bucket" + type: "item" + }] + title: "{quests.gregtech_energy.syngas.title}" + x: -10.5d + y: -7.0d + } + { + dependencies: ["4512E5DE7A84F809"] + description: ["{quests.gregtech_energy.fission_rod.desc.1}"] + id: "0ABD326DC2551CBD" + subtitle: "{quests.gregtech_energy.fission_rod.subtitle}" + tasks: [{ + id: "68E3EE04F4931EFE" + item: { + Count: 1 + id: "tfg:tbu_232_rod" + tag: { + Damage: 0 + } + } + type: "item" + }] + title: "{quests.gregtech_energy.fission_rod.title}" + x: -7.5d + y: 0.0d + } + { + dependencies: [ + "3630849A7B0818C8" + "7AF726555D721DFC" + ] + dependency_requirement: "one_completed" + description: ["{quests.gregtech_energy.btx.desc}"] + id: "35E113FF0C1645CC" + subtitle: "{quests.gregtech_energy.btx.subtitle}" + tasks: [{ + id: "2C766A3391285E33" + item: "tfg:btx_fuel_bucket" + type: "item" + }] + title: "{quests.gregtech_energy.btx.title}" + x: -10.5d + y: -1.0d + } + { + dependencies: [ + "0C718329245D9619" + "7AF726555D721DFC" + ] + description: ["{quests.gregtech_energy.gasoline.desc}"] + id: "27E9DAF9F578A3E8" + subtitle: "{quests.gregtech_energy.gasoline.subtitle}" + tasks: [{ + id: "34695995678F09C6" + item: "gtceu:gasoline_bucket" + type: "item" + }] + title: "{quests.gregtech_energy.gasoline.title}" + x: -9.0d + y: -1.0d + } ] subtitle: ["{quests.gregtech_energy.subtitle}"] title: "{quests.gregtech_energy}" diff --git a/config/ftbquests/quests/chapters/hv__high_voltage.snbt b/config/ftbquests/quests/chapters/hv__high_voltage.snbt index 2c623efdf..0343f6712 100644 --- a/config/ftbquests/quests/chapters/hv__high_voltage.snbt +++ b/config/ftbquests/quests/chapters/hv__high_voltage.snbt @@ -33,6 +33,24 @@ x: 13.0d y: -6.0d } + { + id: "4A902B3F8AE331AC" + linked_quest: "5D188F6C46EA9ED0" + x: -6.0d + y: -3.0d + } + { + id: "513464FBE4A87CB7" + linked_quest: "3A2E442E4D84C891" + x: 2.5d + y: -10.0d + } + { + id: "1B29194F9C306CFE" + linked_quest: "36B9B5024356C53C" + x: 3.5d + y: -10.0d + } ] quests: [ { @@ -170,8 +188,6 @@ description: ["{quests.high_voltage.assembler.desc}"] icon: "gtceu:hv_assembler" id: "16B735F9C391D260" - shape: "octagon" - size: 2.0d tasks: [{ id: "1B70E35262CA2CB8" item: "gtceu:hv_assembler" @@ -226,7 +242,7 @@ type: "item" }] title: "{quests.high_voltage.ulv_circuits.title}" - x: -3.0d + x: -3.5d y: 1.5d } { @@ -237,8 +253,6 @@ description: ["{quests.high_voltage.hv_energy_hatch.desc}"] icon: "gtceu:hv_energy_input_hatch" id: "5DBBD9B1F5B01F4E" - shape: "octagon" - size: 1.5d subtitle: "{quests.high_voltage.hv_energy_hatch.subtitle}" tasks: [ { @@ -267,8 +281,6 @@ description: ["{quests.high_voltage.chem_reactor.desc}"] icon: "gtceu:hv_chemical_reactor" id: "390E59F05132FCB8" - shape: "octagon" - size: 2.0d tasks: [{ id: "652CFAE1FA60F3E2" item: "gtceu:hv_chemical_reactor" @@ -423,7 +435,7 @@ icon: "gtceu:hv_circuit_assembler" id: "6B1595678ECB7AC8" shape: "octagon" - size: 3.0d + size: 1.5d subtitle: "{quests.high_voltage.circuit_assembler.subtitle}" tasks: [{ id: "337D8EF42A7BD3A2" @@ -478,15 +490,26 @@ type: "item" } { - count: 40L id: "18AECBFB42064D4E" item: "gtceu:plascrete" type: "item" } { - count: 10L id: "4DA87A845076183A" item: "gtceu:cleanroom_glass" + optional_task: true + type: "item" + } + { + id: "0B8D91BE431AEB56" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:auto_maintenance_hatch)item(gtceu:maintenance_hatch))" + } + } + title: "{quests.high_voltage.cleanroom.task}" type: "item" } ] @@ -535,7 +558,7 @@ } ] title: "{quests.high_voltage.fluorine.title}" - x: 1.0d + x: 1.5d y: 4.5d } { @@ -557,11 +580,13 @@ { id: "54D65A0A939DAD54" item: "gtceu:hydrofluoric_acid_bucket" + optional_task: true type: "item" } { id: "3E6E6F21B34F86B4" item: "gtceu:chloroform_bucket" + optional_task: true type: "item" } ] @@ -577,6 +602,7 @@ optional: true shape: "square" size: 1.0d + subtitle: "{quests.high_voltage.nitrobenzene.subtitle}" tasks: [ { id: "33CF24B0A19D2F25" @@ -591,8 +617,8 @@ } ] title: "{quests.high_voltage.nitrobenzene.title}" - x: -1.0d - y: 9.5d + x: -3.0d + y: 5.0d } { dependencies: ["7CC79617A4965F25"] @@ -606,7 +632,7 @@ icon: "gtceu:large_chemical_reactor" id: "528CE69DA4358B2E" shape: "octagon" - size: 3.0d + size: 2.0d tasks: [ { id: "4738F666E22B212B" @@ -627,7 +653,7 @@ ] title: "{quests.high_voltage.lcr.title}" x: 0.0d - y: 7.0d + y: 6.0d } { description: [ @@ -654,7 +680,7 @@ }] title: "{quests.high_voltage.tnt.title}" x: 3.5d - y: 3.0d + y: 3.5d } { dependencies: [ @@ -719,7 +745,7 @@ type: "item" }] title: "{quests.high_voltage.implosion_compressor.title}" - x: 2.5d + x: 2.0d y: 2.0d } { @@ -751,8 +777,8 @@ } ] title: "{quests.high_voltage.nitric_acid.title}" - x: 0.0d - y: 9.5d + x: -1.5d + y: 6.0d } { dependencies: ["5BACED5AE350EAB1"] @@ -760,7 +786,7 @@ icon: "gtceu:cetane_boosted_diesel_bucket" id: "04F6E968CEEC3D49" optional: true - shape: "square" + shape: "heart" size: 1.0d subtitle: "{quests.high_voltage.cetane_diesel.subtitle}" tasks: [ @@ -777,8 +803,8 @@ } ] title: "{quests.high_voltage.cetane_diesel.title}" - x: 1.0d - y: 9.5d + x: -3.0d + y: 7.0d } { dependencies: ["16B735F9C391D260"] @@ -835,7 +861,6 @@ "{@pagebreak}" "{quests.high_voltage.hv_macerator.desc.2}" ] - icon: "gtceu:hv_macerator" id: "6B7762F672BAE76F" shape: "octagon" size: 1.5d @@ -877,8 +902,8 @@ } ] title: "{quests.high_voltage.ammonia.title}" - x: -3.0d - y: 6.0d + x: -1.5d + y: 4.5d } { dependencies: ["52AD30F04DD5A812"] @@ -886,8 +911,6 @@ description: ["{quests.high_voltage.hv_mixer.desc}"] icon: "gtceu:hv_mixer" id: "05ABC370D7153350" - shape: "octagon" - size: 1.5d subtitle: "{quests.high_voltage.hv_mixer.subtitle}" tasks: [{ id: "6D522B2EF097AA95" @@ -908,7 +931,7 @@ description: ["{quests.high_voltage.blue_alloy.desc}"] icon: "gtceu:blue_alloy_ingot" id: "073F59194B479AA3" - shape: "square" + shape: "diamond" size: 1.0d subtitle: "{quests.high_voltage.blue_alloy.subtitle}" tasks: [{ @@ -918,7 +941,7 @@ }] title: "{quests.high_voltage.blue_alloy.title}" x: 0.0d - y: -10.0d + y: -9.0d } { dependencies: [ @@ -1228,7 +1251,12 @@ "04F6E968CEEC3D49" ] dependency_requirement: "one_completed" - description: ["{ \"text\": \"{quests.high_voltage.linked_quest_energy.desc}\", \"bold\": \"true\", \"clickEvent\": { \"action\": \"change_page\", \"value\": \"2CDB9778C7A30044\" } }"] + description: [ + "{quests.high_voltage.linked_quest_energy.desc}" + "" + "{ \"text\": \"β–Άβ–Άβ–Άβ–Άβ–Άβ–Άβ–Ά\", \"underlined\": \"true\", \"clickEvent\": { \"action\": \"change_page\", \"value\": \"2CDB9778C7A30044\" } }" + ] + icon: "gtceu:ev_vanadium_battery" id: "595C5A01358B9550" subtitle: "{quests.high_voltage.linked_quest_energy.subtitle}" tasks: [{ @@ -1237,8 +1265,8 @@ type: "checkmark" }] title: "{quests.high_voltage.linked_quest_energy.title}" - x: 0.0d - y: 11.0d + x: -4.5d + y: 6.0d } { description: ["{quests.high_voltage.kaolinite_powder.desc}"] @@ -1258,10 +1286,19 @@ { dependencies: ["3FBDC8552F7D8008"] description: ["{quests.high_voltage.gun.desc}"] + icon: { + Count: 1 + id: "tacz:modern_kinetic_gun" + tag: { + GunCurrentAmmoCount: 10 + GunFireMode: "SEMI" + GunId: "create_armorer:sniper_semi_clockwork" + HasBulletInBarrel: 1b + } + } id: "74C6DD5F67B1731F" optional: true shape: "heart" - size: 1.5d subtitle: "{quests.high_voltage.gun.subtitle}" tasks: [ { @@ -1322,7 +1359,7 @@ ] title: "{quests.high_voltage.gun.title}" x: 10.0d - y: -4.5d + y: -4.0d } { dependencies: ["00A2566109144D7F"] @@ -1529,14 +1566,15 @@ type: "item" }] title: "{quests.high_voltage.wand.title}" - x: 13.0d - y: -8.0d + x: 14.5d + y: -7.5d } { dependencies: ["396E85A39FF414CF"] description: ["{quests.high_voltage.hypertubes.desc}"] id: "159A0DAEE55DCAC0" optional: true + shape: "heart" subtitle: "{quests.high_voltage.hypertubes.subtitle}" tasks: [ { @@ -1554,6 +1592,85 @@ x: 11.5d y: -7.5d } + { + dependencies: ["16B735F9C391D260"] + description: [ + "{quests.medium_voltage.mv_long_pipe.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_long_pipe.desc.2}" + ] + icon: "gtceu:long_distance_fluid_pipeline_endpoint" + id: "0015BD8AA5A517D1" + optional: true + shape: "heart" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_long_pipe.subtitle}" + tasks: [ + { + count: 2L + id: "7C8964FAF91C1529" + item: "gtceu:long_distance_fluid_pipeline_endpoint" + type: "item" + } + { + id: "48937E331D0184E7" + item: "gtceu:long_distance_fluid_pipeline" + type: "item" + } + ] + title: "{quests.medium_voltage.mv_long_pipe.title}" + x: 5.0d + y: -7.5d + } + { + dependencies: ["7FA0ACB7F161F378"] + description: ["{quests.high_voltage.titanium_greate.desc}"] + id: "04799A40C5910B3F" + optional: true + shape: "heart" + tasks: [ + { + id: "5B94BB35A8480214" + item: "greate:titanium_cogwheel" + optional_task: true + type: "item" + } + { + id: "0C95EDF964B17ED6" + item: "greate:large_titanium_cogwheel" + type: "item" + } + { + id: "2E602B31550041B9" + item: "greate:titanium_shaft" + optional_task: true + type: "item" + } + ] + title: "{quests.high_voltage.titanium_greate.title}" + x: -6.0d + y: -1.0d + } + { + dependencies: ["36B9B5024356C53C"] + description: [ + "{quests.gregtech_energy.reformate_gas.desc.1}" + "{@pagebreak}" + "{quests.gregtech_energy.reformate_gas.desc.2}" + ] + id: "3E4E63D5B8CB6860" + optional: true + shape: "heart" + subtitle: "{quests.gregtech_energy.reformate_gas.subtitle}" + tasks: [{ + id: "575518211DA29A4E" + item: "tfg:reformate_gas_bucket" + type: "item" + }] + title: "{quests.gregtech_energy.reformate_gas.title}" + x: 5.0d + y: -10.0d + } ] subtitle: ["{quests.high_voltage.subtitle}"] title: "{quests.high_voltage}" diff --git a/config/ftbquests/quests/chapters/iv__insane_voltage.snbt b/config/ftbquests/quests/chapters/iv__insane_voltage.snbt index 35d11c2bc..b8e0d0de8 100644 --- a/config/ftbquests/quests/chapters/iv__insane_voltage.snbt +++ b/config/ftbquests/quests/chapters/iv__insane_voltage.snbt @@ -6,7 +6,13 @@ icon: "tfg:iv_universal_circuit" id: "32EF20533F323E02" order_index: 1 - quest_links: [ ] + quest_links: [{ + id: "0D1F45B8DE565153" + linked_quest: "6ECAD339C91EF194" + size: 0.75d + x: 1.5d + y: 4.875d + }] quests: [ { dependencies: [ @@ -283,7 +289,7 @@ icon: "gtceu:tungstensteel_large_boiler" id: "328CFD483C26EA44" shape: "rsquare" - size: 0.66d + size: 0.75d subtitle: "Good luck fueling this, lmao" tasks: [ { @@ -404,7 +410,7 @@ icon: "gtceu:iv_electric_motor" id: "01AB252C72B565FE" shape: "rsquare" - size: 0.66d + size: 0.75d tasks: [ { id: "382B9759383E1AC3" @@ -444,49 +450,8 @@ ] title: "There is no limit to \"Fun\"" x: 0.375d - y: 6.0d - } - { - dependencies: ["7CC79617A4965F25"] - description: [ - "Better Ore Processing for &6chanced Byproducts&r, only at the cost of this &3Macerator&r! A must have." - "" - "And now, it's finally time for mass ore processing automation." - "" - "The next Quest will kick things off!" - ] - id: "05003665368F5A57" - size: 0.75d - tasks: [{ - id: "4043CFB3C4E0DB90" - item: "gtceu:iv_macerator" - type: "item" - }] - title: "Shredding your Ores with further more Byproducts" - x: 1.5d y: 4.875d } - { - dependencies: ["05003665368F5A57"] - description: [ - "Welcome to the age of automation!" - "" - "Ore Processing is now at your fingertips." - "" - "&6This quest unlocks a definitive tutorial on Ore Processing in the &lTips and Tricks&r&6 tab - check it out to learn more!&r" - ] - icon: "gtceu:refined_almandine_ore" - id: "724FB950CC472BB4" - shape: "circle" - size: 0.66d - tasks: [{ - id: "496C00BA0D8F5445" - type: "checkmark" - }] - title: "Setting up Ore Processing" - x: 1.5d - y: 6.0d - } { dependencies: [ "12B4423F055BFBF5" diff --git a/config/ftbquests/quests/chapters/lv__low_voltage.snbt b/config/ftbquests/quests/chapters/lv__low_voltage.snbt index 7f8c30714..520ed4a20 100644 --- a/config/ftbquests/quests/chapters/lv__low_voltage.snbt +++ b/config/ftbquests/quests/chapters/lv__low_voltage.snbt @@ -5,23 +5,27 @@ group: "44D0F3E5067B5AB8" icon: "tfg:lv_universal_circuit" id: "7D50771C3FE033D7" - images: [{ - height: 2.0d - image: "createdeco:block/palettes/decal/yellow_decal" - rotation: 0.0d - width: 2.0d - x: 8.0d - y: 7.0d - }] order_index: 0 - quest_links: [{ - id: "13EDC87034A162DE" - linked_quest: "2CDB9778C7A30044" - shape: "octagon" - size: 2.0d - x: 4.0d - y: 7.0d - }] + quest_links: [ + { + id: "0EA7766FE6845121" + linked_quest: "0FFBB6177DEB0A23" + x: -8.0d + y: 11.5d + } + { + id: "46612C429BCA8A18" + linked_quest: "6BAC3BE1D4FE0F6B" + x: 7.5d + y: 4.0d + } + { + id: "5E5AD44B50E0B15B" + linked_quest: "31A6A236B6710B95" + x: 7.5d + y: 5.0d + } + ] quests: [ { dependencies: ["2F7617C0C4B330DE"] @@ -36,8 +40,8 @@ type: "item" }] title: "{quests.low_voltage.lv_fluid_regulator.title}" - x: 5.5d - y: -2.0d + x: 6.0d + y: -1.5d } { dependencies: ["38993B4697B0E16C"] @@ -56,8 +60,8 @@ type: "item" }] title: "{quests.low_voltage.lv_robot_arm.title}" - x: 5.5d - y: -4.0d + x: 6.0d + y: -4.5d } { dependencies: ["7EED0084BA59FED1"] @@ -89,7 +93,7 @@ }] title: "{quests.low_voltage.lv_pump.title}" x: 4.5d - y: -2.0d + y: -1.5d } { dependencies: ["7EED0084BA59FED1"] @@ -105,10 +109,10 @@ }] title: "{quests.low_voltage.lv_piston.title}" x: 4.5d - y: -4.0d + y: -4.5d } { - dependencies: ["2CDB9778C7A30044"] + dependencies: ["7FA1525D681C4B4A"] description: [ "{quests.low_voltage.lv_steam_turbine.desc.1}" "{@pagebreak}" @@ -116,6 +120,7 @@ ] id: "6E186F9C57155BFA" optional: true + shape: "hexagon" size: 1.0d subtitle: "{quests.low_voltage.lv_steam_turbine.subtitle}" tasks: [{ @@ -124,11 +129,11 @@ type: "item" }] title: "{quests.low_voltage.lv_steam_turbine.title}" - x: 5.5d - y: 7.0d + x: 7.5d + y: 9.5d } { - dependencies: ["6431381FBE07D6EF"] + dependencies: ["7FA1525D681C4B4A"] description: ["{quests.low_voltage.lv_amp_explanation.desc}"] id: "7B0FF43022F6C2EC" optional: true @@ -142,8 +147,8 @@ type: "item" }] title: "{quests.low_voltage.lv_amp_explanation.title}" - x: 7.0d - y: 2.5d + x: 5.5d + y: 10.5d } { dependencies: ["45B71324028F6E68"] @@ -160,7 +165,7 @@ }] title: "{quests.low_voltage.aluminium_ingot.title}" x: -10.0d - y: 9.75d + y: 11.5d } { dependencies: [ @@ -189,7 +194,7 @@ } ] title: "{quests.low_voltage.lv_battery_preparation.title}" - x: 7.0d + x: 7.5d y: -0.5d } { @@ -205,7 +210,7 @@ "{@pagebreak}" "{quests.low_voltage.cover_behaviour.desc.2}" ] - icon: "gtceu:crafting_table_cover" + icon: "gtceu:storage_cover" id: "1C767009F505A813" shape: "square" size: 1.0d @@ -216,7 +221,7 @@ type: "checkmark" }] title: "{quests.low_voltage.cover_behaviour.title}" - x: 5.5d + x: 6.0d y: -3.0d } { @@ -242,8 +247,8 @@ type: "checkmark" }] title: "{quests.low_voltage.machine_auto_output_behaviour.title}" - x: -4.0d - y: 1.5d + x: -5.0d + y: -0.5d } { dependencies: ["22510C5F2386B453"] @@ -296,8 +301,8 @@ type: "item" }] title: "{quests.low_voltage.lv_bender.title}" - x: -3.0d - y: 2.5d + x: -5.0d + y: 1.5d } { dependencies: ["22510C5F2386B453"] @@ -322,8 +327,8 @@ type: "item" }] title: "{quests.low_voltage.lv_lathe.title}" - x: -3.0d - y: 1.5d + x: -4.0d + y: 1.0d } { dependencies: ["22510C5F2386B453"] @@ -337,11 +342,15 @@ type: "item" }] title: "{quests.low_voltage.lv_polariser.title}" - x: 4.5d - y: 1.5d + x: -1.0d + y: -0.5d } { - dependencies: ["6E186F9C57155BFA"] + dependencies: [ + "6E186F9C57155BFA" + "46FA9DD4755A5548" + ] + dependency_requirement: "one_completed" description: [ "{quests.low_voltage.lbb.desc.1}" "{@pagebreak}" @@ -360,8 +369,8 @@ type: "item" }] title: "{quests.low_voltage.lbb.title}" - x: 6.5d - y: 7.0d + x: 9.0d + y: 9.5d } { dependencies: ["1E9BE8D3F8A602DC"] @@ -382,17 +391,17 @@ }] title: "{quests.low_voltage.lv_superconductor.title}" x: -12.0d - y: 6.5d + y: 7.5d } { - dependencies: ["701BCADAE5CF6CA5"] + dependencies: ["22510C5F2386B453"] description: [ "{quests.low_voltage.lv_chemical_bath.desc.1}" "{@pagebreak}" "{quests.low_voltage.lv_chemical_bath.desc.2}" ] + hide_dependency_lines: true id: "330BDB559A7BAB35" - optional: true size: 1.0d subtitle: "{quests.low_voltage.lv_chemical_bath.subtitle}" tasks: [{ @@ -401,8 +410,8 @@ type: "item" }] title: "{quests.low_voltage.lv_chemical_bath.title}" - x: -5.5d - y: 7.5d + x: -4.0d + y: 13.5d } { dependencies: ["64E1E87B8AF72968"] @@ -428,8 +437,8 @@ type: "checkmark" }] title: "{quests.low_voltage.programmed_circuits.title}" - x: -5.0d - y: 1.5d + x: -6.5d + y: -0.5d } { dependencies: ["22510C5F2386B453"] @@ -443,8 +452,8 @@ type: "item" }] title: "{quests.low_voltage.lv_canner.title}" - x: 4.5d - y: 0.5d + x: 5.0d + y: 1.5d } { dependencies: [ @@ -472,8 +481,8 @@ type: "item" }] title: "{quests.low_voltage.lv_battery.title}" - x: 7.0d - y: 0.5d + x: 7.5d + y: 1.0d } { dependencies: ["3E6DC423FE4A99F7"] @@ -502,8 +511,8 @@ type: "item" }] title: "{quests.low_voltage.lv_battery_buffer_4x.title}" - x: 7.0d - y: 1.5d + x: 7.5d + y: 2.5d } { dependencies: ["1646BF9194100E57"] @@ -511,6 +520,10 @@ "{quests.low_voltage.lv_ebf.desc.1}" "{@pagebreak}" "{quests.low_voltage.lv_ebf.desc.2}" + "{@pagebreak}" + "{image:tfg:textures/quests/ebf_power.png width:256 height:136 align:center}" + "" + "{quests.low_voltage.lv_ebf.desc.3}" ] id: "1E9BE8D3F8A602DC" rewards: [{ @@ -528,11 +541,12 @@ }] title: "{quests.low_voltage.lv_ebf.title}" x: -10.0d - y: 6.5d + y: 7.5d } { dependencies: ["22510C5F2386B453"] description: ["{quests.low_voltage.other_machines.desc}"] + hide_dependency_lines: false icon: "gtceu:crushed_sulfur_ore" id: "701BCADAE5CF6CA5" shape: "circle" @@ -544,8 +558,8 @@ type: "checkmark" }] title: "{quests.low_voltage.other_machines.title}" - x: -4.5d - y: 6.5d + x: 5.5d + y: 4.5d } { description: ["{quests.low_voltage.lv_age_progression.desc}"] @@ -579,8 +593,8 @@ type: "item" }] title: "{quests.low_voltage.lv_fluid_solidifier.title}" - x: -7.5d - y: 4.5d + x: -8.0d + y: 3.5d } { dependencies: [ @@ -588,6 +602,7 @@ "02FDECC931B5E8EF" ] description: ["{quests.low_voltage.lv_ore_prospector.desc}"] + icon: "gtceu:prospector.lv" id: "2E36E5755B2F551C" optional: true shape: "heart" @@ -605,11 +620,14 @@ type: "item" }] title: "{quests.low_voltage.lv_ore_prospector.title}" - x: 8.0d - y: 0.5d + x: 9.0d + y: 1.0d } { - dependencies: ["6042514C8FC54334"] + dependencies: [ + "6042514C8FC54334" + "5B2696206205CB2E" + ] description: ["{quests.low_voltage.cupronickel_coil.desc}"] icon: { Count: 1 @@ -628,8 +646,8 @@ type: "item" }] title: "{quests.low_voltage.cupronickel_coil.title}" - x: -8.5d - y: 6.5d + x: -8.0d + y: 7.5d } { dependencies: ["22510C5F2386B453"] @@ -645,7 +663,7 @@ }] title: "{quests.low_voltage.lv_gas_collector.title}" x: -4.0d - y: 8.5d + y: 9.5d } { dependencies: ["22510C5F2386B453"] @@ -656,8 +674,7 @@ ] icon: "gtceu:lv_chemical_reactor" id: "3D98819A799D2E64" - shape: "octagon" - size: 2.0d + size: 1.0d subtitle: "{quests.low_voltage.lv_chemical_reactor.subtitle}" tasks: [ { @@ -679,8 +696,8 @@ } ] title: "{quests.low_voltage.lv_chemical_reactor.title}" - x: -7.5d - y: 2.5d + x: -6.0d + y: 3.5d } { dependencies: ["10ECB471A77F5136"] @@ -689,20 +706,24 @@ "{@pagebreak}" "{quests.low_voltage.universal_cell.desc.2}" ] - icon: "gtceu:fluid_cell" id: "292938760AB9A12B" - optional: true - shape: "heart" size: 1.0d subtitle: "{quests.low_voltage.universal_cell.subtitle}" tasks: [{ - id: "012C90A73EC79E11" - item: "gtceu:universal_fluid_cell" + id: "4CEC0D86500C2A5B" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:fluid_cell)item(gtceu:universal_fluid_cell)item(gtceu:steel_fluid_cell)item(gtceu:aluminium_fluid_cell)item(gtceu:stainless_steel_fluid_cell)item(gtceu:titanium_fluid_cell)item(gtceu:tungsten_steel_fluid_cell)item(gtceu:glass_vial))" + } + } + title: "{quests.low_voltage.universal_cell.task}" type: "item" }] title: "{quests.low_voltage.universal_cell.title}" - x: -4.0d - y: 2.5d + x: -6.5d + y: 1.5d } { dependencies: ["581CDF545E1EA1FD"] @@ -726,14 +747,14 @@ } ] title: "{quests.low_voltage.mold_rotor.title}" - x: -8.5d - y: 4.5d + x: -9.5d + y: 3.5d } { dependencies: ["5B891BA4897FD73C"] dependency_requirement: "one_completed" description: ["{quests.low_voltage.soldering_alloy.desc}"] - icon: "gtceu:soldering_alloy_ingot" + icon: "gtceu:soldering_alloy_dust" id: "713C8D6A20BF3A0E" shape: "square" size: 1.0d @@ -745,10 +766,10 @@ }] title: "{quests.low_voltage.soldering_alloy.title}" x: 4.0d - y: 10.5d + y: 11.5d } { - dependencies: ["701BCADAE5CF6CA5"] + dependencies: ["22510C5F2386B453"] description: [ "{quests.low_voltage.lv_electroliser.desc.1}" "{@pagebreak}" @@ -756,7 +777,6 @@ "{@pagebreak}" "{quests.low_voltage.lv_electroliser.desc.3}" ] - hide_dependent_lines: true id: "32B08E6F414A00C0" optional: true size: 1.0d @@ -767,8 +787,8 @@ type: "item" }] title: "{quests.low_voltage.lv_electroliser.title}" - x: -5.5d - y: 6.5d + x: -6.0d + y: 7.5d } { dependencies: ["22510C5F2386B453"] @@ -792,8 +812,8 @@ type: "item" }] title: "{quests.low_voltage.lv_cutter.title}" - x: -3.0d - y: -0.5d + x: -2.0d + y: 0.0d } { dependencies: ["22510C5F2386B453"] @@ -805,8 +825,7 @@ "{quests.low_voltage.lv_centrifuge.desc.3}" ] id: "5263F866638D875C" - shape: "octagon" - size: 2.0d + size: 1.0d subtitle: "{quests.low_voltage.lv_centrifuge.subtitle}" tasks: [{ id: "20EDB55B8D5CDAD6" @@ -815,7 +834,7 @@ }] title: "{quests.low_voltage.lv_centrifuge.title}" x: -2.0d - y: 8.5d + y: 9.5d } { dependencies: ["37307A46E70011D3"] @@ -832,8 +851,8 @@ type: "item" }] title: "{quests.low_voltage.lv_sprayer.title}" - x: 5.75d - y: -0.5d + x: 5.0d + y: 0.0d } { dependencies: ["22510C5F2386B453"] @@ -853,7 +872,7 @@ }] title: "{quests.low_voltage.lv_assembler.title}" x: 0.0d - y: 8.5d + y: 9.5d } { dependencies: ["22510C5F2386B453"] @@ -863,8 +882,7 @@ "{quests.low_voltage.lv_extractor.desc.2}" ] id: "5B2696206205CB2E" - shape: "octagon" - size: 2.0d + size: 1.0d subtitle: "{quests.low_voltage.lv_extractor.subtitle}" tasks: [{ id: "5CD363C839475426" @@ -872,8 +890,8 @@ type: "item" }] title: "{quests.low_voltage.lv_extractor.title}" - x: -5.5d - y: 4.5d + x: -6.0d + y: 5.5d } { dependencies: ["0DBC148D92A9F69F"] @@ -893,7 +911,7 @@ }] title: "{quests.low_voltage.lv_circuit_assembler.title}" x: 0.0d - y: 15.5d + y: 16.5d } { dependencies: ["1A77CA35F054F988"] @@ -903,8 +921,7 @@ "{quests.low_voltage.lv_arc_furnace.desc.2}" ] id: "63256ED95F17B242" - shape: "octagon" - size: 2.0d + size: 1.0d subtitle: "{quests.low_voltage.lv_arc_furnace.subtitle}" tasks: [{ id: "2374C06C5E1EFC24" @@ -912,13 +929,14 @@ type: "item" }] title: "{quests.low_voltage.lv_arc_furnace.title}" - x: -4.0d - y: 12.5d + x: -6.0d + y: 11.5d } { dependencies: [ - "15928F50AE80A5CF" "5263F866638D875C" + "32B08E6F414A00C0" + "15928F50AE80A5CF" ] dependency_requirement: "one_completed" description: [ @@ -954,8 +972,8 @@ } ] title: "{quests.low_voltage.lv_oxygen.title}" - x: -4.0d - y: 10.5d + x: -6.0d + y: 9.5d } { dependencies: ["5263F866638D875C"] @@ -986,7 +1004,7 @@ ] title: "{quests.low_voltage.lv_glue.title}" x: -2.0d - y: 10.5d + y: 11.5d } { dependencies: ["5B891BA4897FD73C"] @@ -1002,12 +1020,13 @@ }] title: "{quests.low_voltage.gallium_arsenide.title}" x: 2.0d - y: 10.5d + y: 11.5d } { dependencies: [ - "63CD0236B337EAAD" "0EAC071414AEC07E" + "330BDB559A7BAB35" + "63CD0236B337EAAD" ] description: [ "{quests.low_voltage.t2_circuit_board.desc.1}" @@ -1022,8 +1041,8 @@ item: "gtceu:phenolic_printed_circuit_board" type: "item" }] - x: -0.5d - y: 10.5d + x: -2.0d + y: 13.5d } { dependencies: [ @@ -1040,8 +1059,8 @@ type: "item" }] title: "{quests.low_voltage.lv_diode.title}" - x: 0.5d - y: 10.5d + x: 0.0d + y: 11.5d } { dependencies: [ @@ -1060,7 +1079,7 @@ }] title: "{quests.low_voltage.1_mv_circuit.title}" x: 0.0d - y: 12.5d + y: 13.5d } { dependencies: ["1E9BE8D3F8A602DC"] @@ -1075,7 +1094,7 @@ }] title: "{quests.low_voltage.aluminium_dust.title}" x: -10.0d - y: 8.0d + y: 9.5d } { dependencies: ["1E9BE8D3F8A602DC"] @@ -1147,7 +1166,7 @@ ] title: "{quests.low_voltage.multiblock_tech.title}" x: -10.0d - y: 4.5d + y: 5.5d } { dependencies: ["22510C5F2386B453"] @@ -1178,11 +1197,11 @@ type: "item" }] title: "{quests.low_voltage.lv_rock_crusher.title}" - x: 4.5d - y: 3.5d + x: 4.0d + y: 1.0d } { - dependencies: ["22510C5F2386B453"] + dependencies: ["3E6DC423FE4A99F7"] description: ["{quests.low_voltage.lv_turbo_charge.desc}"] icon: "gtceu:lv_charger_4x" id: "2DB259568F347C0E" @@ -1206,8 +1225,8 @@ type: "item" }] title: "{quests.low_voltage.lv_turbo_charge.title}" - x: 4.5d - y: 2.5d + x: 9.0d + y: -0.5d } { dependencies: ["22510C5F2386B453"] @@ -1234,15 +1253,13 @@ type: "item" }] title: "{quests.low_voltage.lv_fisher.title}" - x: 4.5d - y: -0.5d + x: 3.0d + y: 0.5d } { dependencies: ["22510C5F2386B453"] description: ["{quests.low_voltage.lv_mixer.desc}"] id: "5B891BA4897FD73C" - shape: "octagon" - size: 2.0d subtitle: "{quests.low_voltage.lv_mixer.subtitle}" tasks: [{ id: "337A6B670842F80A" @@ -1261,7 +1278,7 @@ }] title: "{quests.low_voltage.lv_mixer.title}" x: 2.0d - y: 8.5d + y: 9.5d } { dependencies: ["12565AB92A2BF976"] @@ -1272,7 +1289,7 @@ ] id: "22510C5F2386B453" shape: "gear" - size: 2.0d + size: 2.5d subtitle: "{quests.low_voltage.lv_machine_hull.subtitle}" tasks: [{ id: "499CACFF0350B3CA" @@ -1311,8 +1328,8 @@ } ] title: "{quests.low_voltage.lv_nitrogen.title}" - x: -6.0d - y: 10.5d + x: -4.0d + y: 11.5d } { dependencies: ["648BCF486E16CCB2"] @@ -1352,8 +1369,8 @@ } ] title: "{quests.low_voltage.mold_plate.title}" - x: -7.5d - y: 5.5d + x: -9.5d + y: 2.5d } { dependencies: ["3E6DC423FE4A99F7"] @@ -1369,14 +1386,15 @@ } type: "item" }] - x: 8.0d - y: 1.5d + x: 9.0d + y: 2.5d } { - dependencies: ["2CDB9778C7A30044"] + dependencies: ["7FA1525D681C4B4A"] description: ["{quests.steam_age.alternator.desc.1}"] id: "2DC24661CAD557B0" optional: true + shape: "hexagon" subtitle: "{quests.steam_age.alternator.subtitle}" tasks: [ { @@ -1400,8 +1418,8 @@ } ] title: "{quests.steam_age.alternator.title}" - x: 5.5d - y: 6.0d + x: 7.5d + y: 8.0d } { dependencies: ["7567E885B7166603"] @@ -1421,14 +1439,12 @@ }] title: "{quests.low_voltage.mv_hull.title}" x: -10.0d - y: 14.0d + y: 15.0d } { dependencies: ["648BCF486E16CCB2"] description: ["{quests.low_voltage.lv_machine_casing.desc}"] id: "12565AB92A2BF976" - shape: "octagon" - size: 2.0d subtitle: "{quests.low_voltage.lv_machine_casing.subtitle}" tasks: [{ id: "7459A24E5EBE148D" @@ -1460,8 +1476,8 @@ type: "item" }] title: "{quests.low_voltage.lv_greenhouse.title}" - x: 3.0d - y: 12.5d + x: 2.25d + y: 13.5d } { dependencies: ["22510C5F2386B453"] @@ -1484,17 +1500,20 @@ type: "item" }] title: "{quests.low_voltage.lv_aqueous_accumulator.title}" - x: 4.5d - y: 4.5d + x: 2.0d + y: 0.0d } { dependencies: [ - "2CDB9778C7A30044" "522E08B1592136D5" + "36FED1B6CFF7C60A" + "7FA1525D681C4B4A" ] + dependency_requirement: "one_completed" description: ["{quests.low_voltage.lv_combuston_gen.desc}"] id: "170B544373A16112" optional: true + shape: "hexagon" subtitle: "{quests.low_voltage.lv_combuston_gen.subtitle}" tasks: [{ id: "2B36CA88F25D5449" @@ -1502,22 +1521,27 @@ type: "item" }] title: "{quests.low_voltage.lv_combuston_gen.title}" - x: 5.5d - y: 8.0d + x: 7.5d + y: 11.0d } { - dependencies: ["2CDB9778C7A30044"] - description: ["{ \"text\": \"{quests.low_voltage.link_chapter.desc}\", \"underlined\": \"true\", \"clickEvent\": { \"action\": \"change_page\", \"value\": \"2CDB9778C7A30044\" } }"] + dependencies: ["22510C5F2386B453"] + description: [ + "{quests.low_voltage.link_chapter.desc}:" + "{ \"text\": \"β–Άβ–Άβ–Άβ–Άβ–Άβ–Άβ–Ά\", \"underlined\": \"true\", \"clickEvent\": { \"action\": \"change_page\", \"value\": \"06B2E38F7DCF2678\" } }" + ] + icon: "createdeco:decal_electrical" id: "7FA1525D681C4B4A" shape: "none" + size: 2.0d subtitle: "{quests.low_voltage.link_chapter.subtitle}" tasks: [{ id: "346E50625B8B1133" - title: "I read it" + title: "{quests.low_voltage.link_chapter.task}" type: "checkmark" }] title: "{quests.low_voltage.link_chapter.title}" - x: 4.0d + x: 5.5d y: 8.5d } { @@ -1525,6 +1549,7 @@ description: ["{quests.low_voltage.lv_seeds.desc}"] id: "55213ACBF5F5D398" optional: true + shape: "heart" subtitle: "{quests.low_voltage.lv_seeds.subtitle}" tasks: [{ id: "0910468BF66597DE" @@ -1539,14 +1564,15 @@ type: "item" }] title: "{quests.low_voltage.lv_seeds.title}" - x: 7.5d - y: 9.0d + x: 11.0d + y: 11.0d } { dependencies: ["55213ACBF5F5D398"] description: ["{quests.low_voltage.lv_seed_oil.desc}"] id: "1D979CB5862BD480" optional: true + shape: "heart" subtitle: "{quests.low_voltage.lv_seed_oil.subtitle}" tasks: [{ id: "357702717137F483" @@ -1554,14 +1580,15 @@ type: "item" }] title: "{quests.low_voltage.lv_seed_oil.title}" - x: 6.5d - y: 9.0d + x: 10.0d + y: 11.0d } { dependencies: ["1D979CB5862BD480"] description: ["{quests.low_voltage.lv_biodiesel.desc}"] id: "522E08B1592136D5" optional: true + shape: "heart" subtitle: "{quests.low_voltage.lv_biodiesel.subtitle}" tasks: [{ id: "10503AD87AB3886A" @@ -1569,13 +1596,15 @@ type: "item" }] title: "{quests.low_voltage.lv_biodiesel.title}" - x: 5.5d - y: 9.0d + x: 9.0d + y: 11.0d } { - dependencies: ["5B2696206205CB2E"] + dependencies: ["1912758422EEB006"] + dependency_requirement: "one_completed" description: ["{quests.low_voltage.cupronickel_ingot.desc}"] id: "6042514C8FC54334" + shape: "diamond" subtitle: "{quests.low_voltage.cupronickel_ingot.subtitle}" tasks: [{ id: "701DEB748320107C" @@ -1583,9 +1612,169 @@ type: "item" }] title: "{quests.low_voltage.cupronickel_ingot.title}" - x: -7.5d + x: -8.0d + y: 9.5d + } + { + dependencies: ["7567E885B7166603"] + description: ["{quests.low_voltage.aluminium_greate.desc}"] + id: "1354904154948913" + optional: true + shape: "heart" + subtitle: "{quests.low_voltage.aluminium_greate.subtitle}" + tasks: [ + { + id: "1483488F0E301BCC" + item: "greate:aluminium_cogwheel" + optional_task: true + type: "item" + } + { + id: "2E64EF18DC263002" + item: "greate:large_aluminium_cogwheel" + type: "item" + } + { + id: "32C96E141753187B" + item: "greate:aluminium_shaft" + optional_task: true + type: "item" + } + ] + title: "{quests.low_voltage.aluminium_greate.title}" + x: -12.0d + y: 11.5d + } + { + dependencies: [ + "5263F866638D875C" + "3D98819A799D2E64" + ] + dependency_requirement: "one_completed" + description: ["{quests.low_voltage.oil.desc}"] + hide_dependency_lines: true + icon: "gtceu:oil_bucket" + id: "2CEE3C0972650C81" + optional: true + shape: "heart" + subtitle: "{quests.low_voltage.oil.subtitle}" + tasks: [{ + id: "338E66338DF533D0" + title: "{quests.tasktype.checkmark}" + type: "checkmark" + }] + title: "{quests.low_voltage.oil.title}" + x: 10.0d + y: 12.0d + } + { + dependencies: [ + "0404FBCC34011053" + "7FA1525D681C4B4A" + ] + description: ["{quests.low_voltage.lv_gas_turbine.desc}"] + id: "1AD51E2B66EA7F67" + optional: true + shape: "hexagon" + subtitle: "{quests.low_voltage.lv_gas_turbine.subtitle}" + tasks: [{ + id: "295425BB3FED8220" + item: "gtceu:lv_gas_turbine" + type: "item" + }] + title: "{quests.low_voltage.lv_gas_turbine.title}" + x: 7.5d y: 6.5d } + { + dependencies: ["2CEE3C0972650C81"] + dependency_requirement: "one_completed" + description: ["{quests.low_voltage.lv_naphtha_light.desc}"] + icon: "gtceu:naphtha_bucket" + id: "36FED1B6CFF7C60A" + optional: true + shape: "heart" + subtitle: "{quests.low_voltage.lv_naphtha_light.subtitle}" + tasks: [ + { + id: "096D9365D8C561AA" + item: "gtceu:naphtha_bucket" + optional_task: true + type: "item" + } + { + id: "34153032225B76BB" + item: "gtceu:light_fuel_bucket" + optional_task: true + type: "item" + } + { + id: "3F575DDDA6C15539" + title: "{quests.tasktype.checkmark}" + type: "checkmark" + } + ] + title: "{quests.low_voltage.lv_naphtha_light.title}" + x: 9.0d + y: 12.0d + } + { + dependencies: ["5F3063C539C9CBBF"] + dependency_requirement: "one_completed" + description: ["{quests.low_voltage.lv_gas_syngas.desc}"] + id: "0404FBCC34011053" + optional: true + shape: "heart" + subtitle: "{quests.low_voltage.lv_gas_syngas.subtitle}" + tasks: [{ + id: "2733E2B8129C0806" + item: "tfg:syngas_bucket" + type: "item" + }] + title: "{quests.low_voltage.lv_gas_syngas.title}" + x: 9.0d + y: 6.5d + } + { + dependencies: [ + "581CDF545E1EA1FD" + "5B2696206205CB2E" + ] + dependency_requirement: "one_completed" + description: ["{quests.low_voltage.glowstone.desc}"] + id: "45CEDBD3A2092C71" + subtitle: "{quests.low_voltage.glowstone.subtitle}" + tasks: [{ + id: "19C401FA4D964FA1" + item: "minecraft:glowstone" + type: "item" + }] + title: "{quests.low_voltage.glowstone.title}" + x: -8.0d + y: 5.5d + } + { + dependencies: ["22510C5F2386B453"] + description: [ + "{quests.low_voltage.lost.desc.1}" + "{@pagebreak}" + "{quests.low_voltage.lost.desc.2}" + "{@pagebreak}" + "{quests.low_voltage.lost.desc.3}" + ] + icon: "gtceu:lv_sensor" + id: "7906B0DB8DE8038F" + shape: "circle" + subtitle: "{quests.low_voltage.lost.subtitle}" + tasks: [{ + id: "079BC5815364308D" + title: "{quests.low_voltage.lost.task}" + type: "checkmark" + }] + title: "{quests.low_voltage.lost.title}" + x: 1.5d + y: 5.0d + } ] subtitle: ["{quests.low_voltage.subtitle}"] title: "{quests.low_voltage}" diff --git a/config/ftbquests/quests/chapters/mars.snbt b/config/ftbquests/quests/chapters/mars.snbt new file mode 100644 index 000000000..48f971db3 --- /dev/null +++ b/config/ftbquests/quests/chapters/mars.snbt @@ -0,0 +1,584 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "mars" + group: "36FC51ACEF38D994" + icon: "ad_astra:mars_globe" + id: "671B872DCEFCA5DD" + order_index: 1 + quest_links: [ ] + quests: [ + { + description: [ + "{quests.extreme_voltage.mars.desc.1}" + "{@pagebreak}" + "{quests.extreme_voltage.mars.desc.2}" + "{@pagebreak}" + "{quests.extreme_voltage.mars.desc.3}" + ] + id: "1777E6C81C8353D5" + shape: "octagon" + size: 3.0d + subtitle: "{quests.extreme_voltage.mars.subtitle}" + tasks: [{ + dimension: "ad_astra:mars" + icon: "ad_astra:mars_globe" + id: "4A794ADEE7A89594" + title: "{quests.extreme_voltage.mars.task}" + type: "dimension" + }] + title: "{quests.extreme_voltage.mars.title}" + x: 13.5d + y: -8.0d + } + { + dependencies: ["1777E6C81C8353D5"] + dependency_requirement: "one_completed" + description: ["{quests.space_survival.semiheavy_ammoniacal_water.desc}"] + icon: "tfg:semiheavy_ammoniacal_water_bucket" + id: "4259CD4F819806AB" + subtitle: "{quests.space_survival.semiheavy_ammoniacal_water.subtitle}" + tasks: [{ + id: "1221D18D1C6690BD" + item: "tfg:semiheavy_ammoniacal_water_bucket" + type: "item" + }] + title: "{quests.space_survival.semiheavy_ammoniacal_water.title}" + x: 15.0d + y: -6.5d + } + { + dependencies: ["1777E6C81C8353D5"] + description: ["{quests.space_survival.mars_islands.desc}"] + icon: "tfg:grass/rusticus_mycelium" + id: "5AC5AAB9B3758E30" + subtitle: "{quests.space_survival.mars_islands.subtitle}" + tasks: [{ + id: "019AC4216D25FA19" + type: "checkmark" + }] + title: "{quests.space_survival.mars_islands.title}" + x: 13.5d + y: -4.0d + } + { + dependencies: ["1777E6C81C8353D5"] + description: ["{quests.space_survival.mars_desert.desc}"] + id: "70F93982FC045A08" + subtitle: "{quests.space_survival.mars_desert.subtitle}" + tasks: [{ + biome: "tfg:mars/martian_deep_desert" + icon: "minecraft:red_sand" + id: "4935048F5603F79B" + title: "{quests.space_survival.mars_desert.task}" + type: "biome" + }] + title: "{quests.space_survival.mars_desert.title}" + x: 10.0d + y: -8.0d + } + { + dependencies: ["70F93982FC045A08"] + description: ["{quests.space_survival.sandworm.desc}"] + icon: "sandworm_mod:sandworm_tooth" + id: "62A5111836CB4D37" + optional: true + shape: "heart" + subtitle: "{quests.space_survival.sandworm.subtitle}" + tasks: [ + { + id: "028ACAA581D97577" + item: "sandworm_mod:sandworm_tooth" + type: "item" + } + { + id: "5F74F03288BDE713" + item: "sandworm_mod:thumper" + optional_task: true + type: "item" + } + ] + title: "{quests.space_survival.sandworm.title}" + x: 9.0d + y: -8.0d + } + { + dependencies: [ + "70F93982FC045A08" + "2F711C064635EF2D" + ] + dependency_requirement: "one_completed" + description: ["{quests.space_survival.spice.desc}"] + icon: "tfg:spice" + id: "0CA5B715B76E4A5B" + shape: "hexagon" + size: 1.5d + subtitle: "{quests.space_survival.spice.subtitle}" + tasks: [{ + icon: "tfg:spice" + id: "00C333C49F5BBFC2" + observe_type: 0 + timer: 0L + title: "{quests.space_survival.spice.task}" + to_observe: "tfg:spice" + type: "observation" + }] + title: "{quests.space_survival.spice.title}" + x: 10.0d + y: -6.0d + } + { + dependencies: ["1777E6C81C8353D5"] + description: ["{quests.space_survival.mars_poles.desc}"] + icon: "tfg:mars_ice" + id: "3768570EC6535DBB" + subtitle: "{quests.space_survival.mars_poles.subtitle}" + tasks: [{ + id: "677DF79B4DE1D571" + type: "checkmark" + }] + title: "{quests.space_survival.mars_poles.title}" + x: 17.0d + y: -8.0d + } + { + dependencies: ["5AC5AAB9B3758E30"] + description: ["{quests.space_survival.heavy_ammoniacal_water.desc}"] + icon: "tfg:heavy_ammoniacal_water_bucket" + id: "204DDAFEA40C0146" + subtitle: "{quests.space_survival.heavy_ammoniacal_water.subtitle}" + tasks: [{ + id: "33C86463603C272D" + item: "tfg:heavy_ammoniacal_water_bucket" + type: "item" + }] + title: "{quests.space_survival.heavy_ammoniacal_water.title}" + x: 15.0d + y: -4.0d + } + { + dependencies: ["00E2E32B33A65301"] + description: ["{quests.space_survival.glacian_wool.desc}"] + id: "0967CE7F5DFF5CF6" + subtitle: "{quests.space_survival.glacian_wool.subtitle}" + tasks: [{ + count: 7L + id: "2713B99184310ED3" + item: "tfg:glacian_wool" + type: "item" + }] + title: "{quests.space_survival.glacian_wool.title}" + x: 17.0d + y: -6.0d + } + { + dependencies: ["5AC5AAB9B3758E30"] + description: ["{quests.space_survival.soarer.desc}"] + guide_page: "tfc:field_guide tfc:tfg_tips/space_fauna 20" + icon: "wan_ancient_beasts:soarer_egg" + id: "2F711C064635EF2D" + optional: true + shape: "heart" + subtitle: "{quests.space_survival.soarer.subtitle}" + tasks: [{ + icon: "wan_ancient_beasts:soarer_egg" + id: "30A4901728CBF789" + observe_type: 5 + timer: 0L + title: "{quests.space_survival.soarer.task}" + to_observe: "wan_ancient_beasts:soarer" + type: "observation" + }] + title: "{quests.space_survival.soarer.title}" + x: 10.0d + y: -4.0d + } + { + dependencies: ["5AC5AAB9B3758E30"] + description: ["{quests.space_survival.sniffer_or_wraptor.desc}"] + guide_page: "tfc:field_guide tfc:tfg_tips/space_fauna 11" + id: "5F0D553D08A5985C" + subtitle: "{quests.space_survival.sniffer_or_wraptor.subtitle}" + tasks: [ + { + icon: "minecraft:sniffer_egg" + id: "6339BB0940C0BE77" + observe_type: 5 + timer: 0L + title: "{quests.space_survival.sniffer_or_wraptor.task_1}" + to_observe: "tfg:sniffer" + type: "observation" + } + { + icon: "species:wraptor_egg" + id: "76B6F02F4DCFC4A0" + observe_type: 5 + timer: 0L + title: "{quests.space_survival.sniffer_or_wraptor.task_2}" + to_observe: "tfg:wraptor" + type: "observation" + } + ] + title: "{quests.space_survival.sniffer_or_wraptor.title}" + x: 10.0d + y: -2.0d + } + { + dependencies: ["3768570EC6535DBB"] + description: ["{quests.space_survival.glacian_ram.desc}"] + guide_page: "tfc:field_guide tfc:tfg_tips/space_fauna 15" + id: "00E2E32B33A65301" + subtitle: "{quests.space_survival.glacian_ram.subtitle}" + tasks: [{ + icon: "ad_astra:glacian_ram_spawn_egg" + id: "20B88332B3FED126" + observe_type: 5 + timer: 0L + title: "{quests.space_survival.glacian_ram.task}" + to_observe: "tfg:glacian_ram" + type: "observation" + }] + title: "{quests.space_survival.glacian_ram.title}" + x: 17.0d + y: -7.0d + } + { + dependencies: ["5AC5AAB9B3758E30"] + description: ["{quests.space_survival.mars_tapping.desc}"] + id: "155F421FC2F39C3C" + subtitle: "{quests.space_survival.mars_tapping.subtitle}" + tasks: [ + { + icon: "beneath:wood/log/crimson" + id: "5C76478F563CE947" + observe_type: 1 + timer: 0L + to_observe: "#tfc:crimson_logs" + type: "observation" + } + { + icon: "beneath:wood/log/warped" + id: "2D46DA77329E9F66" + observe_type: 1 + timer: 0L + to_observe: "#tfc:warped_logs" + type: "observation" + } + ] + title: "{quests.space_survival.mars_tapping.title}" + x: 15.5d + y: -2.0d + } + { + dependencies: ["5AC5AAB9B3758E30"] + description: ["{quests.space_survival.mars_crops.desc}"] + guide_page: "tfc:field_guide tfc:tfg_tips/space_crops" + id: "52E45601E8575846" + subtitle: "{quests.space_survival.mars_crops.subtitle}" + tasks: [{ + id: "72E35CA3CF29585B" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(betterend:amber_root_seeds)item(betterend:blossom_berry_seeds)item(betterend:cave_pumpkin_plant_seeds)item(betterend:chorus_mushroom_seeds)item(betterend:shadow_berry_seeds)item(betterend:bolux_mushroom_seeds))" + } + } + title: "{quests.space_survival.mars_crops.task}" + type: "item" + }] + title: "{quests.space_survival.mars_crops.title}" + x: 13.5d + y: -1.5d + } + { + dependencies: ["0967CE7F5DFF5CF6"] + description: ["{quests.space_survival.t2_space_suit.desc}"] + id: "6D7ADBBCEF5770B6" + shape: "hexagon" + size: 1.5d + subtitle: "{quests.space_survival.t2_space_suit.subtitle}" + tasks: [ + { + id: "0D11FBA73B54918F" + item: { + Count: 1 + id: "ad_astra:netherite_space_helmet" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "04A7D0429E419846" + item: { + Count: 1 + id: "ad_astra:netherite_space_suit" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "608858DB0AEA4378" + item: { + Count: 1 + id: "ad_astra:netherite_space_pants" + tag: { + Damage: 0 + } + } + type: "item" + } + { + id: "5BC5195C7775137C" + item: { + Count: 1 + id: "ad_astra:netherite_space_boots" + tag: { + Damage: 0 + } + } + type: "item" + } + ] + title: "{quests.space_survival.t2_space_suit.title}" + x: 17.0d + y: 0.5d + } + { + dependencies: ["5F0D553D08A5985C"] + dependency_requirement: "one_completed" + description: ["{quests.space_survival.mineral_rich_wool.desc}"] + id: "75DE44FFAC51DD60" + subtitle: "{quests.space_survival.mineral_rich_wool.subtitle}" + tasks: [{ + id: "4295E3343126DFEF" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfg:mineral_rich_wool)" + } + } + title: "Any #tfg:mineral_rich_wool" + type: "item" + }] + title: "{quests.space_survival.mineral_rich_wool.title}" + x: 10.0d + y: -1.0d + } + { + dependencies: ["75DE44FFAC51DD60"] + description: ["{quests.space_survival.aes_insulation.desc}"] + id: "14710D52AE1732FD" + shape: "hexagon" + size: 1.5d + subtitle: "{quests.space_survival.aes_insulation.subtitle}" + tasks: [{ + id: "44970A2CAF24030A" + item: "tfg:mli_shielding" + type: "item" + }] + title: "{quests.space_survival.aes_insulation.title}" + x: 10.0d + y: 0.5d + } + { + dependencies: [ + "52E45601E8575846" + "5F0D553D08A5985C" + ] + description: ["{quests.space_survival.bulbkin_pie.desc}"] + icon: { + Count: 1 + ForgeCaps: { + "tfc:food": { + creationDate: -2L + foodData: { + dairy: 0.0f + decay: 0.0f + food: 0 + fruit: 0.0f + grain: 0.0f + meat: 0.0f + sat: 0.0f + veg: 0.0f + water: 0.0f + } + ingredients: [ ] + traits: [ ] + } + } + id: "tfg:food/cooked_dino_nugget" + } + id: "1AC201876984D248" + optional: true + shape: "heart" + size: 1.5d + subtitle: "{quests.space_survival.bulbkin_pie.subtitle}" + tasks: [ + { + id: "5F863BCE6DAA30D6" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(betterend:cave_pumpkin_pie))" + } + } + type: "item" + } + { + id: "0B5E81AEEDFE0B7A" + item: { + Count: 1 + ForgeCaps: { + "tfc:food": { + creationDate: -2L + foodData: { + dairy: 0.0f + decay: 0.0f + food: 0 + fruit: 0.0f + grain: 0.0f + meat: 0.0f + sat: 0.0f + veg: 0.0f + water: 0.0f + } + ingredients: [ ] + traits: [ ] + } + } + id: "tfg:food/cooked_dino_nugget" + } + type: "item" + } + ] + title: "{quests.space_survival.bulbkin_pie.title}" + x: 13.5d + y: 0.0d + } + { + dependencies: ["155F421FC2F39C3C"] + description: ["{quests.space_survival.iodine.desc}"] + id: "00202200344F3456" + subtitle: "{quests.space_survival.iodine.subtitle}" + tasks: [{ + id: "0F811696C5BB0AA5" + item: "gtceu:iodine_dust" + type: "item" + }] + title: "{quests.space_survival.iodine.title}" + x: 15.5d + y: -1.0d + } + { + dependencies: ["5AC5AAB9B3758E30"] + description: ["{quests.space_survival.surfer.desc}"] + guide_page: "tfc:field_guide tfc:tfg_tips/space_fauna 17" + id: "43EBECA48E341C47" + optional: true + shape: "heart" + subtitle: "{quests.space_survival.surfer.subtitle}" + tasks: [{ + icon: "wan_ancient_beasts:surfer_egg" + id: "7D1D6851ABB1B5E7" + observe_type: 5 + timer: 0L + title: "{quests.space_survival.surfer.task}" + to_observe: "tfg:surfer" + type: "observation" + }] + title: "{quests.space_survival.surfer.title}" + x: 10.0d + y: -3.0d + } + { + dependencies: ["5F0D553D08A5985C"] + dependency_requirement: "one_completed" + description: ["{quests.space_survival.mars_nest.desc}"] + id: "63F1FC03DC3198AB" + optional: true + shape: "heart" + subtitle: "{quests.space_survival.mars_nest.subtitle}" + tasks: [{ + id: "71BA5426AA25BED0" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(tfg:large_nest_box)item(tfg:large_nest_box_warped))" + } + } + title: "{quests.space_survival.mars_nest.task}" + type: "item" + }] + title: "{quests.space_survival.mars_nest.title}" + x: 9.0d + y: -2.0d + } + { + dependencies: ["6D7ADBBCEF5770B6"] + description: ["{quests.space_survival.venus.desc}"] + id: "5F3B9E4565922E77" + shape: "octagon" + size: 3.0d + subtitle: "{quests.space_survival.venus.subtitle}" + tasks: [{ + dimension: "ad_astra:venus" + icon: "ad_astra:venus_globe" + id: "40A3104927F366FF" + type: "dimension" + }] + title: "{quests.space_survival.venus.title}" + x: 10.5d + y: 4.5d + } + { + dependencies: ["6D7ADBBCEF5770B6"] + description: ["{quests.space_survival.mercury.desc}"] + id: "5F937028722EB4C6" + shape: "octagon" + size: 3.0d + subtitle: "{quests.space_survival.mercury.subtitle}" + tasks: [{ + dimension: "ad_astra:mercury" + icon: "ad_astra:mercury_globe" + id: "7B5C6F856AE2380E" + type: "dimension" + }] + title: "{quests.space_survival.mercury.title}" + x: 16.5d + y: 4.5d + } + { + dependencies: ["1777E6C81C8353D5"] + description: ["{quests.space_survival.mars_shields.desc}"] + id: "6E757133FA00C40D" + optional: true + shape: "heart" + subtitle: "{quests.space_survival.mars_shields.subtitle}" + tasks: [{ + id: "603BD6E2915EB75B" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(species:ricoshield)item(wan_ancient_beasts:reinforced_shield)item(endermanoverhaul:corrupted_shield))" + } + } + title: "{quests.space_survival.mras_shields.task}" + type: "item" + }] + title: "{quests.space_survival.mars_shields.title}" + x: 12.0d + y: -6.5d + } + ] + subtitle: ["{quests.mars.subtitle}"] + title: "{quests.mars}" +} diff --git a/config/ftbquests/quests/chapters/space_survival.snbt b/config/ftbquests/quests/chapters/moon.snbt similarity index 53% rename from config/ftbquests/quests/chapters/space_survival.snbt rename to config/ftbquests/quests/chapters/moon.snbt index 4ffe68f5d..521c0eb83 100644 --- a/config/ftbquests/quests/chapters/space_survival.snbt +++ b/config/ftbquests/quests/chapters/moon.snbt @@ -1,21 +1,10 @@ { default_hide_dependency_lines: false default_quest_shape: "" - filename: "space_survival" - group: "19428C6E7A36D463" - icon: { - Count: 1 - id: "ad_astra:tier_1_rocket" - tag: { - BotariumData: { - StoredFluids: [{ - Amount: 0L - Fluid: "minecraft:empty" - }] - } - } - } - id: "671B872DCEFCA5DD" + filename: "moon" + group: "36FC51ACEF38D994" + icon: "ad_astra:moon_globe" + id: "5AB29618BD995CF0" images: [ { alpha: 150 @@ -115,10 +104,10 @@ y: -8.0d } ] - order_index: 4 + order_index: 0 quest_links: [ { - id: "62E455D8BAA50151" + id: "7372A22303CF751A" linked_quest: "00A2566109144D7F" shape: "octagon" size: 3.0d @@ -126,13 +115,13 @@ y: -3.0d } { - id: "168AECC70E7A9302" + id: "440BBB64384A9ECD" linked_quest: "038B204DAC9C863D" x: -4.0d y: -5.5d } { - id: "652DC031E6BEF58B" + id: "17C857D222995604" linked_quest: "3FBDC8552F7D8008" shape: "none" size: 2.0d @@ -140,25 +129,25 @@ y: -8.0d } { - id: "57EEF4CC674B1C3B" + id: "2A631E133FEB54A9" linked_quest: "6752CC523D38A214" x: -5.5d y: -5.5d } { - id: "52ABE7722ABB3281" + id: "25F53D39F1EEAC02" linked_quest: "0585527D1854628B" x: -1.0d y: 1.0d } { - id: "44E5362EDCDE6A5C" + id: "6032382FF4E3A440" linked_quest: "3AEAB1930F4CC034" x: -1.0d y: 2.0d } { - id: "1EABB6DEF6179357" + id: "1E65B1AC5F11948C" linked_quest: "7CA3A5EFE3D5B688" x: -1.0d y: 3.0d @@ -288,8 +277,14 @@ type: "item" } { - id: "4E8C67A543FEB861" - item: "gtceu:mv_4a_energy_converter" + id: "6EC6D0FB6F9E452C" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_1a_energy_converter)item(gtceu:lv_4a_energy_converter)item(gtceu:mv_1a_energy_converter)item(gtceu:mv_4a_energy_converter)item(gtceu:hv_1a_energy_converter)item(gtceu:lv_8a_energy_converter))" + } + } optional_task: true type: "item" } @@ -715,568 +710,7 @@ x: 3.0d y: -4.0d } - { - description: [ - "{quests.extreme_voltage.mars.desc.1}" - "{@pagebreak}" - "{quests.extreme_voltage.mars.desc.2}" - "{@pagebreak}" - "{quests.extreme_voltage.mars.desc.3}" - ] - id: "1777E6C81C8353D5" - shape: "octagon" - size: 3.0d - subtitle: "{quests.extreme_voltage.mars.subtitle}" - tasks: [{ - dimension: "ad_astra:mars" - icon: "ad_astra:mars_globe" - id: "4A794ADEE7A89594" - title: "{quests.extreme_voltage.mars.task}" - type: "dimension" - }] - title: "{quests.extreme_voltage.mars.title}" - x: 13.5d - y: -8.0d - } - { - dependencies: ["1777E6C81C8353D5"] - dependency_requirement: "one_completed" - description: ["{quests.space_survival.semiheavy_ammoniacal_water.desc}"] - icon: "tfg:semiheavy_ammoniacal_water_bucket" - id: "4259CD4F819806AB" - subtitle: "{quests.space_survival.semiheavy_ammoniacal_water.subtitle}" - tasks: [{ - id: "1221D18D1C6690BD" - item: "tfg:semiheavy_ammoniacal_water_bucket" - type: "item" - }] - title: "{quests.space_survival.semiheavy_ammoniacal_water.title}" - x: 15.0d - y: -6.5d - } - { - dependencies: ["1777E6C81C8353D5"] - description: ["{quests.space_survival.mars_islands.desc}"] - icon: "tfg:grass/rusticus_mycelium" - id: "5AC5AAB9B3758E30" - subtitle: "{quests.space_survival.mars_islands.subtitle}" - tasks: [{ - id: "019AC4216D25FA19" - type: "checkmark" - }] - title: "{quests.space_survival.mars_islands.title}" - x: 13.5d - y: -4.0d - } - { - dependencies: ["1777E6C81C8353D5"] - description: ["{quests.space_survival.mars_desert.desc}"] - id: "70F93982FC045A08" - subtitle: "{quests.space_survival.mars_desert.subtitle}" - tasks: [{ - biome: "tfg:mars/martian_deep_desert" - icon: "minecraft:red_sand" - id: "4935048F5603F79B" - title: "{quests.space_survival.mars_desert.task}" - type: "biome" - }] - title: "{quests.space_survival.mars_desert.title}" - x: 10.0d - y: -8.0d - } - { - dependencies: ["70F93982FC045A08"] - description: ["{quests.space_survival.sandworm.desc}"] - icon: "sandworm_mod:sandworm_tooth" - id: "62A5111836CB4D37" - optional: true - shape: "heart" - subtitle: "{quests.space_survival.sandworm.subtitle}" - tasks: [ - { - id: "028ACAA581D97577" - item: "sandworm_mod:sandworm_tooth" - type: "item" - } - { - id: "5F74F03288BDE713" - item: "sandworm_mod:thumper" - optional_task: true - type: "item" - } - ] - title: "{quests.space_survival.sandworm.title}" - x: 9.0d - y: -8.0d - } - { - dependencies: [ - "70F93982FC045A08" - "2F711C064635EF2D" - ] - dependency_requirement: "one_completed" - description: ["{quests.space_survival.spice.desc}"] - id: "0CA5B715B76E4A5B" - shape: "hexagon" - size: 1.5d - subtitle: "{quests.space_survival.spice.subtitle}" - tasks: [{ - icon: "tfg:spice" - id: "00C333C49F5BBFC2" - observe_type: 0 - timer: 0L - title: "{quests.space_survival.spice.task}" - to_observe: "tfg:spice" - type: "observation" - }] - title: "{quests.space_survival.spice.title}" - x: 10.0d - y: -6.0d - } - { - dependencies: ["1777E6C81C8353D5"] - description: ["{quests.space_survival.mars_poles.desc}"] - icon: "tfg:mars_ice" - id: "3768570EC6535DBB" - subtitle: "{quests.space_survival.mars_poles.subtitle}" - tasks: [{ - id: "677DF79B4DE1D571" - type: "checkmark" - }] - title: "{quests.space_survival.mars_poles.title}" - x: 17.0d - y: -8.0d - } - { - dependencies: ["5AC5AAB9B3758E30"] - description: ["{quests.space_survival.heavy_ammoniacal_water.desc}"] - icon: "tfg:heavy_ammoniacal_water_bucket" - id: "204DDAFEA40C0146" - subtitle: "{quests.space_survival.heavy_ammoniacal_water.subtitle}" - tasks: [{ - id: "33C86463603C272D" - item: "tfg:heavy_ammoniacal_water_bucket" - type: "item" - }] - title: "{quests.space_survival.heavy_ammoniacal_water.title}" - x: 15.0d - y: -4.0d - } - { - dependencies: ["00E2E32B33A65301"] - description: ["{quests.space_survival.glacian_wool.desc}"] - id: "0967CE7F5DFF5CF6" - subtitle: "{quests.space_survival.glacian_wool.subtitle}" - tasks: [{ - count: 7L - id: "2713B99184310ED3" - item: "tfg:glacian_wool" - type: "item" - }] - title: "{quests.space_survival.glacian_wool.title}" - x: 17.0d - y: -6.0d - } - { - dependencies: ["5AC5AAB9B3758E30"] - description: ["{quests.space_survival.soarer.desc}"] - guide_page: "tfc:field_guide tfc:tfg_tips/space_fauna 20" - icon: "wan_ancient_beasts:soarer_egg" - id: "2F711C064635EF2D" - optional: true - shape: "heart" - subtitle: "{quests.space_survival.soarer.subtitle}" - tasks: [{ - icon: "wan_ancient_beasts:soarer_egg" - id: "30A4901728CBF789" - observe_type: 5 - timer: 0L - title: "{quests.space_survival.soarer.task}" - to_observe: "wan_ancient_beasts:soarer" - type: "observation" - }] - title: "{quests.space_survival.soarer.title}" - x: 10.0d - y: -4.0d - } - { - dependencies: ["5AC5AAB9B3758E30"] - description: ["{quests.space_survival.sniffer_or_wraptor.desc}"] - guide_page: "tfc:field_guide tfc:tfg_tips/space_fauna 11" - id: "5F0D553D08A5985C" - subtitle: "{quests.space_survival.sniffer_or_wraptor.subtitle}" - tasks: [ - { - icon: "minecraft:sniffer_egg" - id: "6339BB0940C0BE77" - observe_type: 5 - timer: 0L - title: "{quests.space_survival.sniffer_or_wraptor.task_1}" - to_observe: "tfg:sniffer" - type: "observation" - } - { - icon: "species:wraptor_egg" - id: "76B6F02F4DCFC4A0" - observe_type: 5 - timer: 0L - title: "{quests.space_survival.sniffer_or_wraptor.task_2}" - to_observe: "tfg:wraptor" - type: "observation" - } - ] - title: "{quests.space_survival.sniffer_or_wraptor.title}" - x: 10.0d - y: -2.0d - } - { - dependencies: ["3768570EC6535DBB"] - description: ["{quests.space_survival.glacian_ram.desc}"] - guide_page: "tfc:field_guide tfc:tfg_tips/space_fauna 15" - id: "00E2E32B33A65301" - subtitle: "{quests.space_survival.glacian_ram.subtitle}" - tasks: [{ - icon: "ad_astra:glacian_ram_spawn_egg" - id: "20B88332B3FED126" - observe_type: 5 - timer: 0L - title: "{quests.space_survival.glacian_ram.task}" - to_observe: "tfg:glacian_ram" - type: "observation" - }] - title: "{quests.space_survival.glacian_ram.title}" - x: 17.0d - y: -7.0d - } - { - dependencies: ["5AC5AAB9B3758E30"] - description: ["{quests.space_survival.mars_tapping.desc}"] - id: "155F421FC2F39C3C" - subtitle: "{quests.space_survival.mars_tapping.subtitle}" - tasks: [ - { - icon: "beneath:wood/log/crimson" - id: "5C76478F563CE947" - observe_type: 1 - timer: 0L - to_observe: "#tfc:crimson_logs" - type: "observation" - } - { - icon: "beneath:wood/log/warped" - id: "2D46DA77329E9F66" - observe_type: 1 - timer: 0L - to_observe: "#tfc:warped_logs" - type: "observation" - } - ] - title: "{quests.space_survival.mars_tapping.title}" - x: 15.5d - y: -2.0d - } - { - dependencies: ["5AC5AAB9B3758E30"] - description: ["{quests.space_survival.mars_crops.desc}"] - guide_page: "tfc:field_guide tfc:tfg_tips/space_crops" - id: "52E45601E8575846" - subtitle: "{quests.space_survival.mars_crops.subtitle}" - tasks: [{ - id: "72E35CA3CF29585B" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(betterend:amber_root_seeds)item(betterend:blossom_berry_seeds)item(betterend:cave_pumpkin_plant_seeds)item(betterend:chorus_mushroom_seeds)item(betterend:shadow_berry_seeds)item(betterend:bolux_mushroom_seeds))" - } - } - title: "{quests.space_survival.mars_crops.task}" - type: "item" - }] - title: "{quests.space_survival.mars_crops.title}" - x: 13.5d - y: -1.5d - } - { - dependencies: ["0967CE7F5DFF5CF6"] - description: ["{quests.space_survival.t2_space_suit.desc}"] - id: "6D7ADBBCEF5770B6" - shape: "hexagon" - size: 1.5d - subtitle: "{quests.space_survival.t2_space_suit.subtitle}" - tasks: [ - { - id: "0D11FBA73B54918F" - item: { - Count: 1 - id: "ad_astra:netherite_space_helmet" - tag: { - Damage: 0 - } - } - type: "item" - } - { - id: "04A7D0429E419846" - item: { - Count: 1 - id: "ad_astra:netherite_space_suit" - tag: { - Damage: 0 - } - } - type: "item" - } - { - id: "608858DB0AEA4378" - item: { - Count: 1 - id: "ad_astra:netherite_space_pants" - tag: { - Damage: 0 - } - } - type: "item" - } - { - id: "5BC5195C7775137C" - item: { - Count: 1 - id: "ad_astra:netherite_space_boots" - tag: { - Damage: 0 - } - } - type: "item" - } - ] - title: "{quests.space_survival.t2_space_suit.title}" - x: 17.0d - y: 0.5d - } - { - dependencies: ["5F0D553D08A5985C"] - dependency_requirement: "one_completed" - description: ["{quests.space_survival.mineral_rich_wool.desc}"] - id: "75DE44FFAC51DD60" - subtitle: "{quests.space_survival.mineral_rich_wool.subtitle}" - tasks: [{ - id: "4295E3343126DFEF" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfg:mineral_rich_wool)" - } - } - title: "Any #tfg:mineral_rich_wool" - type: "item" - }] - title: "{quests.space_survival.mineral_rich_wool.title}" - x: 10.0d - y: -1.0d - } - { - dependencies: ["75DE44FFAC51DD60"] - description: ["{quests.space_survival.aes_insulation.desc}"] - id: "14710D52AE1732FD" - shape: "hexagon" - size: 1.5d - subtitle: "{quests.space_survival.aes_insulation.subtitle}" - tasks: [{ - id: "44970A2CAF24030A" - item: "tfg:mli_shielding" - type: "item" - }] - title: "{quests.space_survival.aes_insulation.title}" - x: 10.0d - y: 0.5d - } - { - dependencies: [ - "52E45601E8575846" - "5F0D553D08A5985C" - ] - description: ["{quests.space_survival.bulbkin_pie.desc}"] - icon: { - Count: 1 - ForgeCaps: { - "tfc:food": { - creationDate: -9223372036854775808L - traits: [ ] - } - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } - } - id: "betterend:cave_pumpkin_pie" - } - id: "1AC201876984D248" - optional: true - shape: "heart" - size: 1.5d - subtitle: "{quests.space_survival.bulbkin_pie.subtitle}" - tasks: [ - { - id: "5F863BCE6DAA30D6" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(betterend:cave_pumpkin_pie))" - } - } - type: "item" - } - { - id: "0B5E81AEEDFE0B7A" - item: { - Count: 1 - ForgeCaps: { - "tfc:food": { - creationDate: -2L - foodData: { - dairy: 0.0f - decay: 0.0f - food: 0 - fruit: 0.0f - grain: 0.0f - meat: 0.0f - sat: 0.0f - veg: 0.0f - water: 0.0f - } - ingredients: [ ] - traits: [ ] - } - } - id: "tfg:food/cooked_dino_nugget" - } - type: "item" - } - ] - title: "{quests.space_survival.bulbkin_pie.title}" - x: 13.5d - y: 0.0d - } - { - dependencies: ["155F421FC2F39C3C"] - description: ["{quests.space_survival.iodine.desc}"] - id: "00202200344F3456" - subtitle: "{quests.space_survival.iodine.subtitle}" - tasks: [{ - id: "0F811696C5BB0AA5" - item: "gtceu:iodine_dust" - type: "item" - }] - title: "{quests.space_survival.iodine.title}" - x: 15.5d - y: -1.0d - } - { - dependencies: ["5AC5AAB9B3758E30"] - description: ["{quests.space_survival.surfer.desc}"] - guide_page: "tfc:field_guide tfc:tfg_tips/space_fauna 17" - id: "43EBECA48E341C47" - optional: true - shape: "heart" - subtitle: "{quests.space_survival.surfer.subtitle}" - tasks: [{ - icon: "wan_ancient_beasts:surfer_egg" - id: "7D1D6851ABB1B5E7" - observe_type: 5 - timer: 0L - title: "{quests.space_survival.surfer.task}" - to_observe: "tfg:surfer" - type: "observation" - }] - title: "{quests.space_survival.surfer.title}" - x: 10.0d - y: -3.0d - } - { - dependencies: ["5F0D553D08A5985C"] - dependency_requirement: "one_completed" - description: ["{quests.space_survival.mars_nest.desc}"] - id: "63F1FC03DC3198AB" - optional: true - shape: "heart" - subtitle: "{quests.space_survival.mars_nest.subtitle}" - tasks: [{ - id: "71BA5426AA25BED0" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(tfg:large_nest_box)item(tfg:large_nest_box_warped))" - } - } - title: "{quests.space_survival.mars_nest.task}" - type: "item" - }] - title: "{quests.space_survival.mars_nest.title}" - x: 9.0d - y: -2.0d - } - { - dependencies: ["6D7ADBBCEF5770B6"] - description: ["{quests.space_survival.venus.desc}"] - id: "5F3B9E4565922E77" - shape: "octagon" - size: 3.0d - subtitle: "{quests.space_survival.venus.subtitle}" - tasks: [{ - dimension: "ad_astra:venus" - icon: "ad_astra:venus_globe" - id: "40A3104927F366FF" - type: "dimension" - }] - title: "{quests.space_survival.venus.title}" - x: 10.5d - y: 4.5d - } - { - dependencies: ["6D7ADBBCEF5770B6"] - description: ["{quests.space_survival.mercury.desc}"] - id: "5F937028722EB4C6" - shape: "octagon" - size: 3.0d - subtitle: "{quests.space_survival.mercury.subtitle}" - tasks: [{ - dimension: "ad_astra:mercury" - icon: "ad_astra:mercury_globe" - id: "7B5C6F856AE2380E" - type: "dimension" - }] - title: "{quests.space_survival.mercury.title}" - x: 18.0d - y: 4.5d - } - { - dependencies: ["1777E6C81C8353D5"] - description: ["{quests.space_survival.mars_shields.desc}"] - id: "6E757133FA00C40D" - optional: true - shape: "heart" - subtitle: "{quests.space_survival.mars_shields.subtitle}" - tasks: [{ - id: "603BD6E2915EB75B" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(species:ricoshield)item(wan_ancient_beasts:reinforced_shield)item(endermanoverhaul:corrupted_shield))" - } - } - title: "{quests.space_survival.mras_shields.task}" - type: "item" - }] - title: "{quests.space_survival.mars_shields.title}" - x: 12.0d - y: -6.5d - } ] - subtitle: ["{quests.space_survival.subtitle}"] - title: "{quests.space_survival}" + subtitle: ["{quests.moon.subtitle}"] + title: "{quests.moon}" } diff --git a/config/ftbquests/quests/chapters/mv__medium_voltage.snbt b/config/ftbquests/quests/chapters/mv__medium_voltage.snbt index a8718d681..19b934cac 100644 --- a/config/ftbquests/quests/chapters/mv__medium_voltage.snbt +++ b/config/ftbquests/quests/chapters/mv__medium_voltage.snbt @@ -6,7 +6,12 @@ icon: "tfg:mv_universal_circuit" id: "43E779CEEB25D55B" order_index: 1 - quest_links: [ ] + quest_links: [{ + id: "4EEC4E3BE1B3D3B1" + linked_quest: "222295CD03AF00DC" + x: -1.5d + y: -6.0d + }] quests: [ { dependencies: ["22E462070F8B027A"] @@ -31,7 +36,7 @@ type: "item" }] title: "{quests.medium_voltage.pyrolyse.title}" - x: -2.5d + x: -1.0d y: -0.5d } { @@ -39,6 +44,7 @@ "53DC6E32C41C94C3" "1A29EFBCEA017F99" ] + dependency_requirement: "one_completed" description: [ "{quests.medium_voltage.mv_biomass.desc.1}" "{@pagebreak}" @@ -57,11 +63,12 @@ type: "item" }] title: "{quests.medium_voltage.mv_biomass.title}" - x: -5.5d + x: -4.0d y: -0.5d } { dependencies: ["22E462070F8B027A"] + dependency_requirement: "one_completed" description: [ "{quests.medium_voltage.mv_brewery.desc.1}" "{@pagebreak}" @@ -74,27 +81,19 @@ shape: "square" size: 1.0d subtitle: "{quests.medium_voltage.mv_brewery.subtitle}" - tasks: [ - { - id: "1CB0F32E8293B5D7" - item: "gtceu:lubricant_bucket" - optional_task: true - type: "item" - } - { - id: "29393DEB346EC4D2" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(gtceu:lv_brewery)item(gtceu:mv_brewery))" - } + tasks: [{ + id: "29393DEB346EC4D2" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_brewery)item(gtceu:mv_brewery))" } - type: "item" } - ] + type: "item" + }] title: "{quests.medium_voltage.mv_brewery.title}" - x: -5.5d + x: -4.0d y: -2.0d } { @@ -153,7 +152,7 @@ } ] title: "{quests.medium_voltage.mv_ethanol.title}" - x: -8.0d + x: -7.5d y: -0.5d } { @@ -196,7 +195,7 @@ } ] title: "{quests.medium_voltage.mv_naphtha.title}" - x: -7.5d + x: -7.0d y: 2.5d } { @@ -231,7 +230,7 @@ } ] title: "{quests.medium_voltage.mv_fuel_cracking.title}" - x: -8.5d + x: -8.0d y: 2.5d } { @@ -267,8 +266,8 @@ type: "item" }] title: "{quests.medium_voltage.mv_energy.title}" - x: 7.0d - y: -1.0d + x: 6.0d + y: -2.0d } { dependencies: ["2AD44111B9B39C90"] @@ -288,7 +287,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_stainless.title}" - x: 1.5d + x: 1.0d y: 7.5d } { @@ -319,8 +318,7 @@ description: ["{quests.medium_voltage.mv_component.desc}"] icon: "gtceu:mv_electric_motor" id: "1BE0349B8F3890D3" - shape: "octagon" - size: 1.5d + size: 1.0d subtitle: "{quests.medium_voltage.mv_component_.subtitle}" tasks: [ { @@ -380,7 +378,7 @@ }] title: "{quests.medium_voltage.electrolyzer.title}" x: -1.5d - y: -3.5d + y: -4.0d } { dependencies: ["22E462070F8B027A"] @@ -403,15 +401,15 @@ Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - "ftbfiltersystem:filter": "or(item(gtceu:lp_steam_miner)item(gtceu:hp_steam_miner)item(gtceu:lv_miner)item(gtceu:mv_miner)item(gtceu:hv_miner))" + "ftbfiltersystem:filter": "or(item(gtceu:hp_steam_miner)item(gtceu:lv_miner)item(gtceu:mv_miner)item(gtceu:hv_miner))" } } title: "{quests.medium_voltage.mv_miner.task}" type: "item" }] title: "{quests.medium_voltage.mv_miner.title}" - x: 0.5d - y: 3.0d + x: 4.5d + y: -4.0d } { dependencies: ["4A92AFD2532EED26"] @@ -427,7 +425,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_steel_alloy.title}" - x: 7.0d + x: 8.0d y: 1.0d } { @@ -447,10 +445,11 @@ "ftbfiltersystem:filter": "or(item(gtceu:mv_cutter)item(greate:aluminium_mechanical_saw))" } } + title: "{quests.medium_voltage.mv_cutter.task}" type: "item" }] title: "{quests.medium_voltage.mv_cutter.title}" - x: 7.0d + x: 8.0d y: 4.0d } { @@ -470,7 +469,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_laser_engraver.title}" - x: 7.0d + x: 8.0d y: 8.0d } { @@ -491,7 +490,7 @@ }] title: "{quests.medium_voltage.mv_energy_hatch.title}" x: 3.0d - y: 10.0d + y: 9.0d } { dependencies: ["22E462070F8B027A"] @@ -530,7 +529,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_kanthal_coil.title}" - x: 1.5d + x: 1.0d y: 10.0d } { @@ -581,7 +580,7 @@ } ] title: "{quests.medium_voltage.mv_ram.title}" - x: 8.5d + x: 8.0d y: 10.0d } { @@ -647,7 +646,7 @@ } ] title: "{quests.medium_voltage.mv_silicon_boule.title}" - x: 9.0d + x: 10.0d y: 8.0d } { @@ -664,7 +663,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_circuit_assembler.title}" - x: 1.0d + x: 0.0d y: 14.0d } { @@ -701,7 +700,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_best_lv.title}" - x: -1.0d + x: -3.0d y: 12.0d } { @@ -721,7 +720,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_best_mv.title}" - x: -1.0d + x: -3.0d y: 14.0d } { @@ -738,7 +737,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_second_hv.title}" - x: -1.0d + x: -3.0d y: 16.5d } { @@ -755,8 +754,8 @@ type: "item" }] title: "{quests.medium_voltage.mv_inductor.title}" - x: -5.0d - y: 16.5d + x: -10.5d + y: 12.0d } { dependencies: ["6BB98D128822730E"] @@ -767,32 +766,21 @@ size: 3.0d subtitle: "{quests.medium_voltage.mv_polyethylene.subtitle}" tasks: [{ - id: "15E5F008339B8964" - item: "gtceu:polyethylene_plate" + id: "1605293EDC9EAFCB" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(nbt(fuzzy:{fluid:{FluidName:\"gtceu:polyethylene\"}})nbt(fuzzy:{Fluid:{FluidName:\"gtceu:polyethylene\"}})item(gtceu:polyethylene_bucket))" + } + } + title: "{material.gtceu.polyethylene}" type: "item" }] title: "{quests.medium_voltage.mv_polyethylene.title}" x: -10.0d y: 10.0d } - { - dependencies: ["10FB27DD3C7BEC2F"] - description: ["{quests.medium_voltage.mv_tank.desc}"] - icon: "gtceu:lv_super_tank" - id: "6C53B01A05FFF1DC" - optional: true - shape: "heart" - size: 2.0d - subtitle: "{quests.medium_voltage.mv_tank.subtitle}" - tasks: [{ - id: "47EA273D728C158F" - item: "gtceu:lv_super_tank" - type: "item" - }] - title: "{quests.medium_voltage.mv_tank.title}" - x: -14.0d - y: 10.0d - } { dependencies: ["10FB27DD3C7BEC2F"] description: ["{quests.medium_voltage.mv_pvc.desc}"] @@ -802,13 +790,20 @@ size: 1.0d subtitle: "{quests.medium_voltage.mv_pvc.subtitle}" tasks: [{ - id: "72696AD2B77F805B" - item: "gtceu:polyvinyl_chloride_plate" + id: "1EDAC09CA0F55A2B" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(nbt(fuzzy:{fluid:{FluidName:\"gtceu:polyvinyl_chloride\"}})nbt(fuzzy:{Fluid:{FluidName:\"gtceu:polyvinyl_chloride\"}})item(gtceu:polyvinyl_chloride_bucket))" + } + } + title: "{material.gtceu.polyvinyl_chloride}" type: "item" }] title: "{quests.medium_voltage.mv_pvc.title}" - x: -5.0d - y: 11.0d + x: -9.5d + y: 12.0d } { dependencies: [ @@ -834,7 +829,7 @@ } ] title: "{quests.medium_voltage.mv_boards.title}" - x: -5.0d + x: -7.0d y: 12.0d } { @@ -876,7 +871,7 @@ } ] title: "{quests.medium_voltage.mv_sodium_iron.title}" - x: -5.0d + x: -7.0d y: 14.0d } { @@ -941,7 +936,7 @@ ] title: "{quests.medium_voltage.mv_hydrochloric.title}" x: -10.0d - y: -2.5d + y: -3.0d } { dependencies: [ @@ -966,7 +961,7 @@ }] title: "{quests.medium_voltage.mv_aciditic.title}" x: -10.0d - y: -1.5d + y: -1.75d } { dependencies: ["6F898B934BB79016"] @@ -989,8 +984,8 @@ type: "item" }] title: "{quests.medium_voltage.mv_batteries.title}" - x: 9.5d - y: -1.0d + x: 10.0d + y: -2.0d } { dependencies: ["22E462070F8B027A"] @@ -1007,7 +1002,7 @@ }] title: "{quests.medium_voltage.mv_extruder.title}" x: 3.0d - y: -3.5d + y: -4.0d } { dependencies: ["75F38905DEA60F15"] @@ -1037,6 +1032,9 @@ "{quests.medium_voltage.mv_fluid_rig.desc.3}" "{@pagebreak}" "{quests.medium_voltage.mv_fluid_rig.desc.4}" + "{@pagebreak}" + "{quests.medium_voltage.mv_fluid_rig.desc.5}" + "{image:tfg:textures/quests/prospector_gui.png width:200 height:120 align:center}" ] icon: "gtceu:mv_fluid_drilling_rig" id: "05ADBAE5B6F38956" @@ -1050,7 +1048,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_fluid_rig.title}" - x: -2.5d + x: -1.0d y: 2.5d } { @@ -1066,7 +1064,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_oilsands.title}" - x: -2.5d + x: -1.0d y: 1.0d } { @@ -1104,7 +1102,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_distillery.title}" - x: -5.5d + x: -4.0d y: 1.0d } { @@ -1117,7 +1115,6 @@ icon: "gtceu:natural_gas_bucket" id: "227D89550BB9BD55" optional: true - shape: "square" size: 1.0d subtitle: "{quests.medium_voltage.mv_lpg.subtitle}" tasks: [ @@ -1146,7 +1143,7 @@ } ] title: "{quests.medium_voltage.mv_lpg.title}" - x: -2.5d + x: -1.0d y: 4.0d } { @@ -1155,6 +1152,8 @@ "{quests.medium_voltage.mv_benzene.desc.1}" "{@pagebreak}" "{quests.medium_voltage.mv_benzene.desc.2}" + "{@pagebreak}" + "{quests.medium_voltage.mv_benzene.desc.3}" ] icon: "gtceu:benzene_bucket" id: "00E1A728E6F6D6A0" @@ -1168,8 +1167,8 @@ type: "item" }] title: "{quests.medium_voltage.mv_benzene.title}" - x: -5.0d - y: 2.5d + x: -3.0d + y: 3.0d } { dependencies: ["6A304E453D74C57C"] @@ -1194,31 +1193,8 @@ } ] title: "{quests.medium_voltage.mv_light_fuel.title}" - x: -6.0d - y: 2.5d - } - { - dependencies: ["61972B16805FC9EE"] - description: [ - "{quests.medium_voltage.mv_diesel.desc.1}" - "{@pagebreak}" - "{quests.medium_voltage.mv_diesel.desc.2}" - "{@pagebreak}" - "{quests.medium_voltage.mv_diesel.desc.3}" - ] - icon: "gtceu:diesel_bucket" - id: "45769156F4253C86" - optional: true - size: 1.0d - subtitle: "{quests.medium_voltage.mv_diesel.subtitle}" - tasks: [{ - id: "10BAA54947D975AF" - item: "gtceu:diesel_bucket" - type: "item" - }] - title: "{quests.medium_voltage.mv_diesel.title}" - x: -6.0d - y: 3.5d + x: -5.0d + y: 3.0d } { dependency_requirement: "one_started" @@ -1235,14 +1211,14 @@ Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - "ftbfiltersystem:filter": "or(item(gtceu:aluminium_quadruple_fluid_pipe)item(gtceu:blue_steel_quadruple_fluid_pipe)item(gtceu:steel_quadruple_fluid_pipe))" + "ftbfiltersystem:filter": "or(item_tag(forge:quadruple_fluid_pipes)item_tag(forge:nonuple_fluid_pipes))" } } title: "Multiple Channel Potin Pipes, please" type: "item" }] title: "{quests.medium_voltage.mv_mutli_channel.title}" - x: -8.0d + x: -7.5d y: 1.0d } { @@ -1273,7 +1249,7 @@ } ] title: "{quests.medium_voltage.mv_ic.title}" - x: 7.0d + x: 6.0d y: 10.0d } { @@ -1304,38 +1280,8 @@ } ] title: "{quests.medium_voltage.mv_ulpic.title}" - x: 5.5d - y: 10.0d - } - { - dependencies: ["45449ECE4F8128E7"] - description: [ - "{quests.medium_voltage.mv_long_pipe.desc.1}" - "{@pagebreak}" - "{quests.medium_voltage.mv_long_pipe.desc.2}" - ] - icon: "gtceu:long_distance_fluid_pipeline_endpoint" - id: "5480AF2EDEDB6A36" - optional: true - shape: "heart" - size: 1.0d - subtitle: "{quests.medium_voltage.mv_long_pipe.subtitle}" - tasks: [ - { - count: 2L - id: "6D77664884690FB4" - item: "gtceu:long_distance_fluid_pipeline_endpoint" - type: "item" - } - { - id: "01F1E774C67ED4AF" - item: "gtceu:long_distance_fluid_pipeline" - type: "item" - } - ] - title: "{quests.medium_voltage.mv_long_pipe.title}" - x: -10.0d - y: -6.5d + x: 6.0d + y: 8.0d } { dependencies: ["45769156F4253C86"] @@ -1356,8 +1302,8 @@ type: "item" }] title: "{quests.medium_voltage.mv_jetpack.title}" - x: -6.0d - y: 4.5d + x: -5.0d + y: 5.0d } { dependencies: ["75F38905DEA60F15"] @@ -1408,7 +1354,7 @@ } ] title: "{quests.medium_voltage.mv_electronic_components.title}" - x: 0.5d + x: -0.5d y: 10.0d } { @@ -1436,8 +1382,8 @@ } ] title: "{quests.medium_voltage.mv_chlorine.title}" - x: -9.5d - y: -3.5d + x: -9.0d + y: -4.0d } { dependencies: ["45449ECE4F8128E7"] @@ -1459,14 +1405,15 @@ } ] title: "{quests.medium_voltage.mv_hydrogen.title}" - x: -10.5d - y: -3.5d + x: -11.0d + y: -4.0d } { dependency_requirement: "one_started" description: ["{quests.medium_voltage.mv_seawater.desc}"] id: "45449ECE4F8128E7" optional: true + shape: "diamond" subtitle: "{quests.medium_voltage.mv_seawater.subtitle}" tasks: [{ id: "77395198DC98E3A5" @@ -1475,7 +1422,7 @@ }] title: "{quests.medium_voltage.mv_seawater.title}" x: -10.0d - y: -5.0d + y: -5.5d } { dependencies: ["583D0CC4FAA4FC98"] @@ -1496,7 +1443,7 @@ }] title: "{quests.medium_voltage.mv_battery.title}" x: 8.5d - y: -1.0d + y: -2.0d } { dependencies: [ @@ -1569,15 +1516,13 @@ } ] title: "{quests.medium_voltage.mv_kanthal_ingot.title}" - x: 1.5d - y: 9.0d + x: 1.0d + y: 11.0d } { dependencies: ["22E462070F8B027A"] description: ["{quests.medium_voltage.mv_chemical_reactor.desc}"] id: "79E8DC4D9B5F6B97" - shape: "octagon" - size: 2.0d subtitle: "{quests.medium_voltage.mv_chemical_reactor.subtitle}" tasks: [{ id: "04A6D4858DA3CE94" @@ -1585,8 +1530,8 @@ type: "item" }] title: "{quests.medium_voltage.mv_chemical_reactor.title}" - x: 7.0d - y: -3.5d + x: 1.5d + y: -4.0d } { description: [ @@ -1602,7 +1547,7 @@ type: "item" }] title: "{quests.medium_voltage.mv_silicon.title}" - x: 9.0d + x: 10.0d y: 6.0d } { @@ -1614,6 +1559,7 @@ description: ["{quests.medium_voltage.lsb.desc}"] icon: "gtceu:steel_large_boiler" id: "730D7C10DEED3117" + optional: true shape: "heart" size: 1.5d subtitle: "{quests.medium_voltage.lsb.subtitle}" @@ -1623,7 +1569,7 @@ type: "item" }] title: "{quests.medium_voltage.lsb.title}" - x: 1.28d + x: 0.0d y: 16.5d } { @@ -1650,8 +1596,8 @@ } ] title: "{quests.medium_voltage.mv_cpu.title}" - x: 5.0d - y: 8.0d + x: 10.0d + y: 10.0d } { dependencies: ["5D9D01EF219A31C5"] @@ -1665,9 +1611,95 @@ type: "item" }] title: "{quests.medium_voltage.mv_bio_diesel.title}" - x: -8.0d + x: -7.5d y: -2.0d } + { + dependencies: ["16A6AE5C770DB83A"] + description: ["{quests.medium_voltage.stainless_greate.desc}"] + id: "6602AE559D49CE65" + optional: true + shape: "heart" + subtitle: "{quests.medium_voltage.stainless_greate.subtitle}" + tasks: [ + { + id: "53919EE5BCCA618A" + item: "greate:stainless_steel_cogwheel" + optional_task: true + type: "item" + } + { + id: "2C8FD46F69EA05B0" + item: "greate:large_stainless_steel_cogwheel" + type: "item" + } + { + id: "6DF7F28AABF6785F" + item: "greate:stainless_steel_shaft" + optional_task: true + type: "item" + } + ] + title: "{quests.medium_voltage.stainless_greate.title}" + x: 0.0d + y: 6.5d + } + { + dependencies: ["54A255C1C6E33165"] + description: ["{quests.medium_voltage.reformate_gas.desc}"] + id: "10292F9B1DD743EB" + optional: true + subtitle: "{quests.medium_voltage.reformate_gas.subtitle}" + tasks: [{ + id: "717ABF30F29D12CD" + item: "tfg:reformate_gas_bucket" + type: "item" + }] + title: "{quests.medium_voltage.reformate_gas.title}" + x: -3.0d + y: 5.0d + } + { + dependencies: ["00E1A728E6F6D6A0"] + description: [ + "{quests.medium_voltage.coal_tower.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.coal_tower.desc.2}" + ] + id: "54A255C1C6E33165" + optional: true + subtitle: "{quests.medium_voltage.coal_tower.subtitle}" + tasks: [{ + id: "348CD63DC537BB9A" + item: "gtceu:coal_liquefaction_tower" + type: "item" + }] + x: -3.0d + y: 4.0d + } + { + dependencies: ["61972B16805FC9EE"] + description: [ + "{quests.medium_voltage.mv_diesel.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_diesel.desc.2}" + "{@pagebreak}" + "{quests.medium_voltage.mv_diesel.desc.3}" + ] + icon: "gtceu:diesel_bucket" + id: "45769156F4253C86" + optional: true + size: 1.0d + subtitle: "{quests.medium_voltage.mv_diesel.subtitle}" + tasks: [{ + id: "10BAA54947D975AF" + item: "gtceu:diesel_bucket" + type: "item" + }] + title: "{quests.medium_voltage.mv_diesel.title}" + x: -5.0d + y: 4.0d + } ] subtitle: ["{quests.medium_voltage.subtitle}"] title: "{quests.medium_voltage}" diff --git a/config/ftbquests/quests/chapters/ore_processing.snbt b/config/ftbquests/quests/chapters/ore_processing.snbt index 5a65dc750..b5b4c3520 100644 --- a/config/ftbquests/quests/chapters/ore_processing.snbt +++ b/config/ftbquests/quests/chapters/ore_processing.snbt @@ -19,7 +19,7 @@ image: "ftblibrary:icons/star" rotation: 0.0d width: 2.0d - x: -0.5d + x: -2.5d y: -6.5d } { @@ -178,8 +178,6 @@ { id: "138C7D4A61E2A77D" linked_quest: "6B10099F3F0931B9" - shape: "none" - size: 1.5d x: 9.0d y: -15.0d } @@ -204,7 +202,13 @@ { id: "50BB4A87A144C6CD" linked_quest: "2814C6FA71B07C95" - x: 12.0d + x: 12.5d + y: -0.5d + } + { + id: "6F65BC54BA5491ED" + linked_quest: "04682CD04FE0A56E" + x: 11.5d y: -0.5d } ] @@ -465,86 +469,13 @@ id: "1F185450C1FF7379" item: { Count: 1 - ForgeCaps: { - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfg:platinum_ore_group)" } - id: "gtceu:purified_chalcocite_ore" - } - optional_task: true - type: "item" - } - { - disable_toast: true - id: "6140EA15476B4A16" - item: { - Count: 1 - ForgeCaps: { - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } - } - id: "gtceu:purified_chalcopyrite_ore" - } - optional_task: true - type: "item" - } - { - disable_toast: true - id: "6F239C59DC002095" - item: { - Count: 1 - ForgeCaps: { - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } - } - id: "gtceu:purified_bornite_ore" - } - optional_task: true - type: "item" - } - { - disable_toast: true - id: "29D38459E25A0D3E" - item: { - Count: 1 - ForgeCaps: { - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } - } - id: "gtceu:purified_pentlandite_ore" - } - optional_task: true - type: "item" - } - { - disable_toast: true - id: "22DF4DB3FF6976EA" - item: "gtceu:purified_cooperite_ore" - optional_task: true - type: "item" - } - { - disable_toast: true - id: "1A8C5E755FE82C59" - item: { - Count: 1 - ForgeCaps: { - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } - } - id: "gtceu:purified_tetrahedrite_ore" } optional_task: true + title: "Any #tfg:platinum_ore_group" type: "item" } ] @@ -553,10 +484,15 @@ y: -0.5d } { - dependencies: ["0F0525A70047EEB2"] + dependencies: [ + "0F0525A70047EEB2" + "701BCADAE5CF6CA5" + ] + dependency_requirement: "one_completed" description: ["{quests.ore_proc.thermal_centrifuge.desc}"] icon: "gtceu:lv_thermal_centrifuge" id: "6BAC3BE1D4FE0F6B" + optional: true subtitle: "{quests.ore_proc.thermal_centrifuge.subtitle}" tasks: [{ disable_toast: true @@ -565,7 +501,7 @@ Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - "ftbfiltersystem:filter": "or(item(gtceu:lv_thermal_centrifuge)item(gtceu:mv_thermal_centrifuge)item(gtceu:hv_thermal_centrifuge)item(gtceu:ev_thermal_centrifuge)item(gtceu:iv_thermal_centrifuge)item(gtceu:luv_thermal_centrifuge)item(gtceu:zpm_thermal_centrifuge)item(gtceu:uv_thermal_centrifuge))" + "ftbfiltersystem:filter": "or(item(gtceu:lv_thermal_centrifuge)item(gtceu:mv_thermal_centrifuge)item(gtceu:hv_thermal_centrifuge)item(gtceu:ev_thermal_centrifuge)item(gtceu:iv_thermal_centrifuge)item(gtceu:luv_thermal_centrifuge)item(gtceu:zpm_thermal_centrifuge)item(gtceu:uv_thermal_centrifuge)item(tfg:steam_thermal_centrifuge))" } } title: "{quests.ore_proc.thermal_centrifuge.task}" @@ -576,10 +512,15 @@ y: -6.5d } { - dependencies: ["0F0525A70047EEB2"] + dependencies: [ + "0F0525A70047EEB2" + "701BCADAE5CF6CA5" + ] + dependency_requirement: "one_completed" description: ["{quests.ore_proc.sifter.desc}"] icon: "gtceu:lv_sifter" id: "31A6A236B6710B95" + optional: true subtitle: "{quests.ore_proc.sifter.subtitle}" tasks: [{ disable_toast: true @@ -588,7 +529,7 @@ Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - "ftbfiltersystem:filter": "or(item(gtceu:lv_sifter)item(gtceu:mv_sifter)item(gtceu:hv_sifter)item(gtceu:ev_sifter)item(gtceu:iv_sifter)item(gtceu:luv_sifter)item(gtceu:zpm_sifter)item(gtceu:uv_sifter))" + "ftbfiltersystem:filter": "or(item(vintageimprovements:vibrating_table)item(gtceu:lv_sifter)item(gtceu:mv_sifter)item(gtceu:hv_sifter)item(gtceu:ev_sifter)item(gtceu:iv_sifter)item(gtceu:luv_sifter)item(gtceu:zpm_sifter)item(gtceu:uv_sifter))" } } title: "{quests.ore_proc.sifter.task}" @@ -947,15 +888,13 @@ { dependencies: ["186CFAA5A444ECB3"] description: ["{quests.stone_age.clean_dust.desc}"] + icon: "minecraft:water_bucket" id: "6B10099F3F0931B9" - shape: "none" - size: 1.5d + size: 1.0d subtitle: "{quests.stone_age.clean_dust.subtitle}" tasks: [{ - amount: 1000L - fluid: "minecraft:water" - id: "0944FE2841D789D8" - type: "fluid" + id: "62EF9D1895CA3811" + type: "checkmark" }] title: "{quests.stone_age.clean_dust.title}" x: 6.0d diff --git a/config/ftbquests/quests/chapters/progression.snbt b/config/ftbquests/quests/chapters/progression.snbt index d9b96e2a6..f8f21e818 100644 --- a/config/ftbquests/quests/chapters/progression.snbt +++ b/config/ftbquests/quests/chapters/progression.snbt @@ -12,7 +12,7 @@ } } id: "28EBC0FF82EFD94B" - order_index: 5 + order_index: 4 quest_links: [ { id: "77A0335E38D755CA" diff --git a/config/ftbquests/quests/chapters/questsmetallurgy.snbt b/config/ftbquests/quests/chapters/questsmetallurgy.snbt index 21a852cfc..132a73332 100644 --- a/config/ftbquests/quests/chapters/questsmetallurgy.snbt +++ b/config/ftbquests/quests/chapters/questsmetallurgy.snbt @@ -44,15 +44,22 @@ id: "227B6C88FFE99435" linked_quest: "4EBABACAB444244D" shape: "heart" - x: 16.5d + x: 17.0d y: -24.5d } { id: "19CF6D922179DFF9" linked_quest: "11C45DBB20ED7647" + shape: "heart" x: 9.0d y: -34.0d } + { + id: "3249AB9EB552BB77" + linked_quest: "4B79026C8D2DACC4" + x: 18.5d + y: -28.0d + } ] quests: [ { @@ -115,6 +122,7 @@ { dependencies: ["5996A3A0D475B8A6"] description: ["{quests.metal_age.steel_anvil.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/steel" id: "04DE7C58F20B535A" shape: "octagon" size: 2.0d @@ -198,6 +206,7 @@ "7B2068B200631D5C" ] description: ["{quests.metal_age.bloomery.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/bloomery" id: "0A92F5C4BB6AF972" size: 2.0d subtitle: "{quests.metal_age.bloomery.subtitle}" @@ -278,9 +287,9 @@ } { description: ["{quests.metal_age.bellows.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/bellows" hide_dependency_lines: true id: "021D3DEEB15A3D17" - shape: "rsquare" subtitle: "{quests.metal_age.bellows.subtitle}" tasks: [{ id: "588EB07E980386F9" @@ -386,6 +395,7 @@ { dependencies: ["2C76EE197C14B0DC"] description: ["{quests.metal_age.crucible.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/crucible" icon: "tfc:crucible" id: "12CB3B9ADC586521" shape: "octagon" @@ -478,6 +488,7 @@ dependencies: ["2C76EE197C14B0DC"] dependency_requirement: "one_completed" description: ["{quests.metal_age.fire_bricks.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/blast_furnace_insulation" icon: "tfc:fire_bricks" id: "7CD2922D9F6FA6C5" shape: "octagon" @@ -658,7 +669,7 @@ type: "item" }] title: "{quests.metal_age.red_steel_flask.title}" - x: 16.5d + x: 17.0d y: -27.5d } { @@ -1197,6 +1208,8 @@ dependencies: ["3C173357029AB649"] description: ["{quests.metal_age.copper_diving.desc}"] id: "70FE6706B43FC5FC" + optional: true + shape: "heart" subtitle: "{quests.metal_age.copper_diving.subtitle}" tasks: [ { @@ -1263,6 +1276,27 @@ x: 17.0d y: -29.5d } + { + dependencies: ["56CA2EB7812529C5"] + description: ["{quests.metal_age.temperature_protection.desc}"] + id: "310D96268266D787" + subtitle: "{quests.metal_age.temperature_protection.subtitle}" + tasks: [{ + id: "334F07058A050458" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(tfc:metal/boots/red_steel)item(sns:red_steel_toe_hiking_boots)item(tfc:metal/chestplate/red_steel)item(tfc:metal/boots/blue_steel)item(sns:blue_steel_toe_hiking_boots)item(minecraft:netherite_boots)item(create:netherite_diving_boots)item(tfc:metal/chestplate/blue_steel)item(create:netherite_backtank))" + } + } + title: "{quests.metal_age.temperature_protection.task}" + type: "item" + }] + title: "{quests.metal_age.temperature_protection.title}" + x: 18.5d + y: -24.0d + } ] subtitle: ["{quests.metal_age.subtitle}"] title: "{quests.metal_age}" diff --git a/config/ftbquests/quests/chapters/questssteam_age.snbt b/config/ftbquests/quests/chapters/questssteam_age.snbt index b205356d3..c83057919 100644 --- a/config/ftbquests/quests/chapters/questssteam_age.snbt +++ b/config/ftbquests/quests/chapters/questssteam_age.snbt @@ -1,1671 +1,1950 @@ -{ - default_hide_dependency_lines: false - default_quest_shape: "" - filename: "questssteam_age" - group: "3C4612A920658A7E" - icon: { - Count: 1 - ForgeCaps: { - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } - } - id: "gtceu:steel_gear" - } - id: "784A885090386609" - order_index: 2 - quest_links: [ - { - id: "39027CF4DC307D33" - linked_quest: "5E186CD5E83BFDF0" - x: -29.0d - y: 2.0d - } - { - id: "0CE64B9914191C56" - linked_quest: "6FFD4990FF07078A" - shape: "diamond" - x: -11.5d - y: 9.5d - } - { - id: "23A27702FF816291" - linked_quest: "6903C72A254A7B08" - x: -14.5d - y: 6.0d - } - { - id: "1F1E7097C015BE33" - linked_quest: "48A8E3210B2BAE1C" - shape: "octagon" - size: 2.0d - x: -29.0d - y: 0.0d - } - { - id: "7C03FE015586C652" - linked_quest: "55213ACBF5F5D398" - x: -14.5d - y: 13.0d - } - ] - quests: [ - { - dependencies: [ - "7B045998769930F0" - "55FDF06AC0C01D0B" - ] - description: ["{quests.steam_age.basic_millstone.desc}"] - id: "48C1E980F7D64317" - size: 1.5d - subtitle: "{quests.steam_age.basic_millstone.subtitle}" - tasks: [{ - id: "486DE7D228F3589B" - item: "greate:andesite_alloy_millstone" - type: "item" - }] - title: "{quests.steam_age.basic_millstone.title}" - x: -19.5d - y: 0.0d - } - { - dependencies: ["6F1BC99BE641B671"] - description: [ - "{quests.steam_age.horse_crank.desc.1}" - "{@pagebreak}" - "{quests.steam_age.horse_crank.desc.2}" - ] - id: "1059288C22CB56BB" - subtitle: "{quests.steam_age.horse_crank.subtitle}" - tasks: [{ - id: "1F3EE2CB3B8875EC" - item: "createhorsepower:horse_crank" - type: "item" - }] - title: "{quests.steam_age.horse_crank.title}" - x: -23.5d - y: -2.0d - } - { - dependencies: ["7B045998769930F0"] - description: ["{quests.steam_age.helve_hammer.desc}"] - id: "611EB6284CA7119C" - size: 1.0d - subtitle: "{quests.steam_age.helve_hammer.subtitle}" - tasks: [{ - id: "340B4B4665295100" - item: "vintageimprovements:helve_hammer" - type: "item" - }] - title: "{quests.steam_age.helve_hammer.title}" - x: -19.5d - y: -4.0d - } - { - dependencies: ["6F1BC99BE641B671"] - description: ["{quests.steam_age.basic_greate.desc}"] - id: "7B045998769930F0" - subtitle: "{quests.steam_age.basic_greate.subtitle}" - tasks: [ - { - id: "53E8B404D5233367" - item: "greate:andesite_alloy_cogwheel" - optional_task: true - type: "item" - } - { - id: "54B5DC1982F4D816" - item: "greate:large_andesite_alloy_cogwheel" - type: "item" - } - { - id: "59AD69460AE89682" - item: "greate:andesite_alloy_shaft" - optional_task: true - type: "item" - } - ] - title: "{quests.steam_age.basic_greate.title}" - x: -19.5d - y: -2.0d - } - { - dependencies: ["0D0D461AE3A3F7BF"] - description: ["{quests.steam_age.water_wheel.desc}"] - id: "61DDB00751D1E7CB" - subtitle: "{quests.steam_age.water_wheel.subtitle}" - tasks: [{ - id: "1D82D22878EE6D21" - item: "create:water_wheel" - type: "item" - }] - title: "{quests.steam_age.water_wheel.title}" - x: -14.5d - y: 0.0d - } - { - dependencies: ["0D0D461AE3A3F7BF"] - description: ["{quests.steam_age.windmill.desc}"] - id: "617E0AFB7BA3D7A8" - subtitle: "{quests.steam_age.windmill.subtitle}" - tasks: [ - { - id: "26EA0D8EDFCF3727" - item: "create:windmill_bearing" - type: "item" - } - { - count: 8L - id: "3095A44065C9F130" - item: "create:white_sail" - type: "item" - } - ] - title: "{quests.steam_age.windmill.title}" - x: -14.5d - y: -4.0d - } - { - dependencies: ["6E8CEE02CB5B678B"] - description: ["{quests.steam_age.metal_casing.desc}"] - id: "7F14D2A34F480ACA" - size: 1.5d - subtitle: "{quests.steam_age.metal_casing.subtitle}" - tasks: [{ - id: "1554B18D816C3549" - item: "create:andesite_casing" - type: "item" - }] - title: "{quests.steam_age.metal_casing.title}" - x: -9.5d - y: -2.0d - } - { - dependencies: [ - "09D913288896A67A" - "05A39719B66B8F76" - ] - description: ["{quests.steam_age.steel_encased_fan.desc}"] - id: "616E28977F3216D9" - subtitle: "{quests.steam_age.steel_encased_fan.subtitle}" - tasks: [{ - id: "32279C21D7553637" - item: { Count: 32, id: "greate:steel_encased_fan" } - type: "item" - }] - title: "{quests.steam_age.steel_encased_fan.title}" - x: -5.5d - y: 4.0d - } - { - dependencies: ["09D913288896A67A"] - description: [ - "{quests.steam_age.steel_pump.desc.1}" - "{@pagebreak}" - "{quests.steam_age.steel_pump.desc.2}" - "{@pagebreak}" - "{quests.steam_age.steel_pump.desc.3}" - ] - id: "51CBF7378FFAD514" - subtitle: "{quests.steam_age.steel_pump.subtitle}" - tasks: [{ - id: "1E7DD1C4FCCFD937" - item: "greate:steel_mechanical_pump" - type: "item" - }] - title: "{quests.steam_age.steel_pump.title}" - x: -3.5d - y: 2.0d - } - { - dependencies: ["209958FE2EEA5D72"] - description: [ - "{quests.steam_age.boilers.desc.1}" - "{@pagebreak}" - "{quests.steam_age.boilers.desc.2}" - ] - id: "46FA9DD4755A5548" - size: 1.5d - subtitle: "{quests.steam_age.boilers.subtitle}" - tasks: [{ - id: "07FFA9C76EE39D36" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(gtceu:hp_steam_solid_boiler)item(gtceu:hp_steam_liquid_boiler)item(gtceu:hp_steam_solar_boiler))" - } - } - title: "{quests.steam_age.boilers.tasks}" - type: "item" - }] - title: "{quests.steam_age.boilers.title}" - x: -19.5d - y: 7.5d - } - { - dependencies: ["32046292AA5B0E30"] - description: ["{quests.steam_age.steam_engine.desc}"] - id: "183D47F04CAEBFA7" - size: 1.5d - subtitle: "{quests.steam_age.steam_engine.subtitle}" - tasks: [ - { - id: "704B7094BE2FB3E1" - item: "create:steam_engine" - optional_task: true - type: "item" - } - { - id: "4655500474F4236C" - item: "create:blaze_burner" - type: "item" - } - ] - title: "{quests.steam_age.steam_engine.title}" - x: -5.5d - y: -2.0d - } - { - dependencies: ["7F14D2A34F480ACA"] - description: ["{quests.steam_age.mechanical_saw.desc}"] - id: "069825FBCFB0FB9C" - rewards: [{ - id: "64CA1397D201AF37" - item: "create:filter" - type: "item" - }] - subtitle: "{quests.steam_age.mechanical_saw.subtitle}" - tasks: [{ - id: "5005121E0361DBD2" - item: "greate:andesite_alloy_mechanical_saw" - type: "item" - }] - title: "{quests.steam_age.mechanical_saw.title}" - x: -9.5d - y: 0.0d - } - { - dependencies: ["7F14D2A34F480ACA"] - description: ["{quests.steam_age.mechanical_harvester.desc}"] - id: "76871B4CEEEC70B8" - subtitle: "{quests.steam_age.mechanical_harvester.subtitle}" - tasks: [{ - id: "34092F5FBDFB9761" - item: "create:mechanical_harvester" - type: "item" - }] - title: "{quests.steam_age.mechanical_harvester.title}" - x: -9.5d - y: -4.0d - } - { - dependencies: ["6E8CEE02CB5B678B"] - description: ["{quests.steam_age.chute.desc}"] - id: "05CC8C5E63CD1DB8" - subtitle: "{quests.steam_age.chute.subtitle}" - tasks: [ - { - id: "7CB1E90EAF7861FB" - item: "create:chute" - type: "item" - } - { - id: "66E04B6A41557709" - item: "create:andesite_funnel" - optional_task: true - type: "item" - } - { - id: "6E500B14003B937D" - item: "minecraft:hopper" - optional_task: true - type: "item" - } - ] - title: "{quests.steam_age.chute.title}" - x: -12.0d - y: 0.0d - } - { - dependencies: ["51CBF7378FFAD514"] - description: [ - "{quests.steam_age.mold_table.desc.1}" - "{@pagebreak}" - "{quests.steam_age.mold_table.desc.2}" - ] - id: "66DBF1C68493A406" - subtitle: "{quests.steam_age.mold_table.subtitle}" - tasks: [{ - id: "7258D0D474B6F26E" - item: "tfcchannelcasting:mold_table" - type: "item" - }] - title: "{quests.steam_age.mold_table.title}" - x: -3.5d - y: 4.0d - } - { - dependencies: ["32046292AA5B0E30"] - dependency_requirement: "one_completed" - description: ["{quests.steam_age.steel_greate.desc}"] - id: "09D913288896A67A" - size: 1.5d - subtitle: "{quests.steam_age.steel_greate.subtitle}" - tasks: [ - { - id: "23DE370285589CB4" - item: "greate:steel_shaft" - type: "item" - } - { - id: "4FDD99090C920E21" - item: "greate:steel_cogwheel" - type: "item" - } - { - id: "5569D0030FB45C5D" - item: "greate:large_steel_cogwheel" - type: "item" - } - ] - title: "{quests.steam_age.steel_greate.title}" - x: -5.5d - y: 2.0d - } - { - dependencies: [ - "09D913288896A67A" - "05A39719B66B8F76" - ] - description: ["{quests.steam_age.steel_millstone.desc}"] - hide_dependent_lines: true - id: "5E4FC017E09ACF44" - subtitle: "{quests.steam_age.steel_millstone.subtitle}" - tasks: [{ - id: "3E3D4CD3283461DE" - item: "greate:steel_millstone" - type: "item" - }] - title: "{quests.steam_age.steel_millstone.title}" - x: -7.5d - y: 2.0d - } - { - dependencies: [ - "5917B0D4708BF534" - "6100B3C732E379AA" - ] - description: ["{quests.steam_age.crushing_wheel.desc}"] - id: "4F3D0D746D26B59F" - optional: true - subtitle: "{quests.steam_age.crushing_wheel.subtitle}" - tasks: [{ - count: 2L - id: "7EDCBC04DAEA477C" - item: "greate:steel_crushing_wheel" - type: "item" - }] - title: "{quests.steam_age.crushing_wheel.title}" - x: -21.5d - y: 10.5d - } - { - dependencies: ["7DB7AB5349218605"] - description: ["{quests.steam_age.treated_planks.desc}"] - id: "246D2C5989E3E907" - subtitle: "{quests.steam_age.treated_planks.subtitle}" - tasks: [ - { - id: "7CF3C09E3907B1C0" - item: "gtceu:treated_wood_planks" - type: "item" - } - { - id: "72112F5EC062766C" - item: "gtceu:treated_wood_dust" - type: "item" - } - { - id: "0D95727196D033B5" - item: "gtceu:treated_wood_plate" - type: "item" - } - ] - title: "{quests.steam_age.treated_planks.title}" - x: -19.5d - y: 10.5d - } - { - dependencies: [ - "233B414B4F189140" - "781C6AD30194CB45" - "3E175E20C91F168B" - ] - description: ["{quests.steam_age.electron_tube.desc}"] - id: "033E74BC588E7EAD" - shape: "octagon" - size: 2.0d - subtitle: "{quests.steam_age.electron_tube.subtitle}" - tasks: [{ - id: "471CCF5193150865" - item: "create:electron_tube" - type: "item" - }] - title: "{quests.steam_age.electron_tube.title}" - x: -19.5d - y: 14.5d - } - { - dependencies: ["2C35D4E01AEC02AA"] - dependency_requirement: "one_completed" - description: [ - "{quests.steam_age.miner.desc.1}" - "{@pagebreak}" - "{quests.steam_age.miner.desc.2}" - ] - id: "65066C9D630B7FFA" - optional: true - subtitle: "{quests.steam_age.miner.subtitle}" - tasks: [ - { - id: "068F7BD3AA0EF8E7" - item: "gtceu:hp_steam_miner" - type: "item" - } - { - id: "5ADC94CEBC196702" - item: "create:mechanical_drill" - type: "item" - } - ] - title: "{quests.steam_age.miner.title}" - x: -7.0d - y: 14.0d - } - { - dependencies: [ - "22E604DB7E7E87FB" - "09E12A399EE0A628" - "1912758422EEB006" - ] - dependency_requirement: "one_completed" - description: ["{quests.steam_age.glass_tube.desc}"] - id: "233B414B4F189140" - subtitle: "{quests.steam_age.glass_tube.subtitle}" - tasks: [{ - id: "004AF02E40B60ECF" - item: "gtceu:glass_tube" - type: "item" - }] - title: "{quests.steam_age.glass_tube.title}" - x: -25.0d - y: 14.5d - } - { - dependencies: ["033E74BC588E7EAD"] - description: ["{quests.steam_age.deployers.desc}"] - icon: "create:deployer" - id: "6AA07588374B59AB" - subtitle: "{quests.steam_age.deployers.subtitle}" - tasks: [ - { - id: "717CF950E5000569" - item: "create:deployer" - type: "item" - } - { - id: "38F9301A818347F7" - item: "create:depot" - optional_task: true - type: "item" - } - ] - title: "{quests.steam_age.deployers.title}" - x: -16.5d - y: 12.0d - } - { - dependencies: ["1912758422EEB006"] - description: ["{quests.steam_age.molding.desc}"] - icon: "gtceu:ball_casting_mold" - id: "09E12A399EE0A628" - optional: true - shape: "heart" - size: 1.0d - subtitle: "{quests.steam_age.molding.subtitle}" - tasks: [ - { - id: "02A8B23277FFD95E" - item: "gtceu:plate_casting_mold" - type: "item" - } - { - id: "57B2773550AA7D37" - item: "gtceu:ball_casting_mold" - type: "item" - } - ] - title: "{quests.steam_age.molding.title}" - x: -25.0d - y: 9.5d - } - { - dependencies: ["033E74BC588E7EAD"] - description: ["{quests.steam_age.mech_crafter.desc}"] - id: "5917B0D4708BF534" - optional: true - subtitle: "{quests.steam_age.mech_crafter.subtitle}" - tasks: [{ - id: "084E6F06E79A3B0F" - item: "create:mechanical_crafter" - type: "item" - }] - title: "{quests.steam_age.mech_crafter.title}" - x: -20.5d - y: 12.0d - } - { - dependencies: ["46FA9DD4755A5548"] - description: ["{quests.steam_age.steam_bloomery.desc}"] - icon: "gtceu:steam_bloomery" - id: "0805CCABC8E7F6CF" - size: 1.5d - subtitle: "{quests.steam_age.steam_bloomery.subtitle}" - tasks: [ - { - id: "72D748120CACABE2" - item: "gtceu:steam_bloomery" - type: "item" - } - { - count: 3L - id: "019C4D427A06DF0E" - item: { Count: 3, id: "gtceu:bronze_firebox_casing" } - type: "item" - } - { - id: "402700D6CCD2BEF1" - item: "gtceu:steam_input_hatch" - type: "item" - } - { - id: "7B99996072C53AD9" - item: "gtceu:steam_input_bus" - type: "item" - } - { - id: "6E4B41FDD286E184" - item: "gtceu:steam_output_bus" - type: "item" - } - ] - title: "{quests.steam_age.steam_bloomery.title}" - x: -22.5d - y: 4.0d - } - { - dependencies: ["05CC8C5E63CD1DB8"] - description: [ - "{quests.steam_age.item_pipes.desc.1}" - "{@pagebreak}" - "{quests.steam_age.item_pipes.desc.2}" - "{@pagebreak}" - "{quests.steam_age.item_pipes.desc.3}" - "{@pagebreak}" - "{quests.steam_age.item_pipes.desc.4}" - ] - icon: "gtceu:tin_small_item_pipe" - id: "08672B3000450F14" - size: 1.0d - subtitle: "{quests.steam_age.item_pipes.subtitle}" - tasks: [{ - id: "3122D989BAB787F4" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - display: { - Name: "{\"text\":\"Any item pipe\"}" - } - "ftbfiltersystem:filter": "or(item_tag(forge:small_item_pipes)item_tag(forge:normal_item_pipes)item_tag(forge:large_item_pipes)item_tag(forge:huge_item_pipes))" - } - } - title: "Any Item Pipes" - type: "item" - }] - title: "{quests.steam_age.item_pipes.title}" - x: -12.0d - y: 2.0d - } - { - dependencies: [ - "6FFD4990FF07078A" - "05BE9FE74E4F1AE9" - ] - description: ["{quests.steam_age.circuit_boards.desc}"] - icon: "gtceu:resin_printed_circuit_board" - id: "43D0B4F2ACB9931B" - shape: "square" - size: 1.0d - subtitle: "{quests.steam_age.circuit_boards.subtitle}" - tasks: [{ - id: "2B8B038789480789" - item: "gtceu:resin_printed_circuit_board" - type: "item" - }] - title: "{quests.steam_age.circuit_boards.title}" - x: -11.5d - y: 8.5d - } - { - dependencies: ["46FA9DD4755A5548"] - description: ["{quests.steam_age.compressor.desc}"] - id: "7DB7AB5349218605" - size: 1.0d - subtitle: "{quests.steam_age.compressor.subtitle}" - tasks: [{ - id: "422B0536DAAF3DD4" - item: "gtceu:hp_steam_compressor" - type: "item" - }] - title: "{quests.steam_age.compressor.title}" - x: -19.5d - y: 9.5d - } - { - dependencies: ["46FA9DD4755A5548"] - description: ["{quests.steam_age.alloy_smelter.desc}"] - id: "1912758422EEB006" - shape: "square" - size: 1.0d - subtitle: "{quests.steam_age.alloy_smelter.subtitle}" - tasks: [{ - id: "47ABB2F2EB140120" - item: "gtceu:hp_steam_alloy_smelter" - type: "item" - }] - title: "{quests.steam_age.alloy_smelter.title}" - x: -22.5d - y: 9.5d - } - { - dependencies: [ - "46FA9DD4755A5548" - "6100B3C732E379AA" - ] - description: ["{quests.steam_age.forge_hammer.desc}"] - id: "59F7F7A8C76DE31C" - shape: "square" - size: 1.0d - subtitle: "{quests.steam_age.forge_hammer.subtitle}" - tasks: [{ - id: "18FFF2B9BC20C28B" - item: "gtceu:hp_steam_forge_hammer" - type: "item" - }] - title: "{quests.steam_age.forge_hammer.title}" - x: -22.5d - y: 8.0d - } - { - dependencies: [ - "5F3063C539C9CBBF" - "05BE9FE74E4F1AE9" - ] - description: ["{quests.steam_age.vacuum_tubes.desc}"] - id: "2C35D4E01AEC02AA" - shape: "octagon" - size: 2.0d - subtitle: "{quests.steam_age.vacuum_tubes.subtitle}" - tasks: [{ - id: "71433924A1ACEDA1" - item: "gtceu:vacuum_tube" - type: "item" - }] - title: "{quests.steam_age.vacuum_tubes.title}" - x: -10.0d - y: 12.0d - } - { - dependencies: ["7DB7AB5349218605"] - description: ["{quests.steam_age.wood_plank.desc}"] - id: "3E175E20C91F168B" - subtitle: "{quests.steam_age.wood_plank.subtitle}" - tasks: [{ - id: "339B48BCF11A29E0" - item: "gtceu:wood_plate" - type: "item" - }] - title: "{quests.steam_age.wood_plank.title}" - x: -16.5d - y: 9.5d - } - { - dependencies: ["46FA9DD4755A5548"] - description: ["{quests.steam_age.extractor.desc}"] - id: "1DF4DBE41BB0B6FD" - optional: true - shape: "heart" - size: 1.0d - subtitle: "{quests.steam_age.extractor.subtitle}" - tasks: [{ - id: "5C84856667925F76" - item: "gtceu:hp_steam_extractor" - type: "item" - }] - title: "{quests.steam_age.extractor.title}" - x: -16.5d - y: 7.5d - } - { - dependencies: [ - "6FFD4990FF07078A" - "16CF5A9012EF4B27" - ] - dependency_requirement: "one_completed" - description: ["{quests.steam_age.resistors.desc}"] - id: "69BDD31A69062B6C" - shape: "square" - size: 1.0d - subtitle: "{quests.steam_age.resistors.subtitle}" - tasks: [{ - id: "4E6D1A59F2BAE607" - item: "gtceu:resistor" - type: "item" - }] - title: "{quests.steam_age.resistors.title}" - x: -7.0d - y: 9.5d - } - { - dependencies: ["2C35D4E01AEC02AA"] - description: ["{quests.steam_age.coiling_machine.desc}"] - id: "072F6E48A1C5ECE9" - optional: true - subtitle: "{quests.steam_age.coiling_machine.subtitle}" - tasks: [{ - id: "07B7D41ACDCD1DEA" - item: "vintageimprovements:spring_coiling_machine" - type: "item" - }] - title: "{quests.steam_age.coiling_machine.title}" - x: -12.0d - y: 15.0d - } - { - dependencies: ["2C35D4E01AEC02AA"] - description: ["{quests.steam_age.steel_mixer.desc}"] - id: "49896161B31DB7B4" - optional: true - size: 1.25d - subtitle: "{quests.steam_age.steel_mixer.subtitle}" - tasks: [{ - id: "42F060A386ADF999" - item: "greate:steel_mechanical_mixer" - type: "item" - }] - title: "{quests.steam_age.steel_mixer.title}" - x: -7.0d - y: 12.5d - } - { - dependencies: ["2C35D4E01AEC02AA"] - description: ["{quests.steam_age.lathe.desc}"] - id: "6A92E8396DE40577" - optional: true - subtitle: "{quests.steam_age.lathe.subtitle}" - tasks: [{ - id: "23961EE69549B16E" - item: "vintageimprovements:belt_grinder" - type: "item" - }] - title: "{quests.steam_age.lathe.title}" - x: -8.0d - y: 15.0d - } - { - dependencies: [ - "5917B0D4708BF534" - "6100B3C732E379AA" - "246D2C5989E3E907" - ] - description: ["{quests.steam_age.centrifuge.desc}"] - id: "19A1D52A7F550478" - optional: true - subtitle: "{quests.steam_age.centrifuge.subtitle}" - tasks: [{ - id: "69668479444FF064" - item: "vintageimprovements:centrifuge" - type: "item" - }] - title: "{quests.steam_age.centrifuge.title}" - x: -20.5d - y: 10.5d - } - { - dependencies: [ - "2C35D4E01AEC02AA" - "6100B3C732E379AA" - ] - description: ["{quests.steam_age.vibrating_table.desc}"] - id: "1E8CC993E0251828" - optional: true - subtitle: "{quests.steam_age.vibrating_table.subtitle}" - tasks: [{ - id: "3035C0B44A0E1854" - item: "vintageimprovements:vibrating_table" - type: "item" - }] - title: "{quests.steam_age.vibrating_table.title}" - x: -10.0d - y: 15.0d - } - { - dependencies: ["2C35D4E01AEC02AA"] - description: [ - "{quests.steam_age.rolling_mill.desc.1}" - "{@pagebreak}" - "{quests.steam_age.rolling_mill.desc.2}" - ] - id: "4C22BE513927247B" - optional: true - size: 1.25d - subtitle: "{quests.steam_age.rolling_mill.subtitle}" - tasks: [{ - id: "621AA4E967D54305" - item: "createaddition:rolling_mill" - type: "item" - }] - title: "{quests.steam_age.rolling_mill.title}" - x: -7.0d - y: 11.0d - } - { - dependencies: ["2C35D4E01AEC02AA"] - description: ["{quests.steam_age.steel_saw.desc}"] - id: "0078B9234C554C6E" - optional: true - subtitle: "{quests.steam_age.steel_saw.subtitle}" - tasks: [{ - id: "40E3951B8862B9A4" - item: "greate:steel_mechanical_saw" - type: "item" - }] - title: "{quests.steam_age.steel_saw.title}" - x: -9.0d - y: 15.0d - } - { - dependencies: ["2C35D4E01AEC02AA"] - description: ["{quests.steam_age.curving_press.desc}"] - id: "6ABACC7B9967851D" - optional: true - subtitle: "{quests.steam_age.curving_press.subtitle}" - tasks: [{ - id: "2AE28D5C5FC74A56" - item: "vintageimprovements:curving_press" - type: "item" - }] - title: "{quests.steam_age.curving_press.title}" - x: -11.0d - y: 15.0d - } - { - dependencies: [ - "46FA9DD4755A5548" - "6100B3C732E379AA" - ] - description: ["{quests.steam_age.steam_furnace.desc}"] - id: "799288FB7A4DCA11" - subtitle: "{quests.steam_age.steam_furnace.subtitle}" - tasks: [{ - id: "3F510CDD8E437540" - item: "gtceu:hp_steam_furnace" - type: "item" - }] - title: "{quests.steam_age.steam_furnace.title}" - x: -16.5d - y: 5.5d - } - { - dependencies: ["799288FB7A4DCA11"] - description: [ - "{quests.steam_age.steam_oven.desc.1}" - "{@pagebreak}" - "{quests.steam_age.steam_oven.desc.2}" - ] - icon: "gtceu:steam_oven" - id: "3E6DE0B94490FCEC" - optional: true - shape: "heart" - size: 1.0d - subtitle: "{quests.steam_age.steam_oven.subtitle}" - tasks: [ - { - id: "1675EA4117A36C72" - item: "gtceu:steam_oven" - type: "item" - } - { - id: "4EE63FDD07EC0467" - item: "gtceu:steam_input_hatch" - type: "item" - } - { - id: "0C9D5C87DEC212D2" - item: "gtceu:steam_input_bus" - type: "item" - } - { - id: "60828361A38F4E1E" - item: "gtceu:steam_output_bus" - type: "item" - } - { - count: 8L - id: "10EC49FF899232F6" - item: "gtceu:steam_machine_casing" - type: "item" - } - { - count: 8L - id: "27DDD13BE482E8A3" - item: "gtceu:bronze_firebox_casing" - type: "item" - } - ] - title: "{quests.steam_age.steam_oven.title}" - x: -16.5d - y: 4.0d - } - { - dependencies: ["46FA9DD4755A5548"] - description: ["{quests.steam_age.rock_crusher.desc}"] - id: "2491CB5921B66446" - optional: true - subtitle: "{quests.steam_age.rock_crusher.subtitle}" - tasks: [{ - id: "5CA302572EF6D4E1" - item: "gtceu:hp_steam_rock_crusher" - type: "item" - }] - title: "{quests.steam_age.rock_crusher.title}" - x: -22.5d - y: 7.0d - } - { - dependencies: [ - "1912758422EEB006" - "12CB3B9ADC586521" - ] - dependency_requirement: "one_completed" - description: ["{quests.steam_age.red_alloy.desc}"] - icon: { - Count: 1 - ForgeCaps: { - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } - } - id: "gtceu:red_alloy_ingot" - } - id: "781C6AD30194CB45" - shape: "square" - size: 1.0d - subtitle: "{quests.steam_age.red_alloy.subtitle}" - tasks: [ - { - id: "4D1E98E699F1E724" - item: "gtceu:red_alloy_ingot" - type: "item" - } - { - id: "41331A38F9664605" - item: "gtceu:red_alloy_single_wire" - type: "item" - } - ] - title: "{quests.steam_age.red_alloy.title}" - x: -22.5d - y: 12.0d - } - { - dependencies: ["51CBF7378FFAD514"] - description: [ - "{quests.steam_age.fluid_pipes.desc.1}" - "{@pagebreak}" - "{quests.steam_age.fluid_pipes.desc.2}" - ] - icon: "gtceu:bronze_normal_fluid_pipe" - id: "0109231F33296868" - size: 1.0d - subtitle: "{quests.steam_age.fluid_pipes.subtitle}" - tasks: [ - { - id: "59512A7A04D517E6" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(gtceu:bronze_tiny_fluid_pipe)item(gtceu:bronze_quadruple_fluid_pipe)item(gtceu:bronze_nonuple_fluid_pipe)item(gtceu:bronze_huge_fluid_pipe)item(gtceu:bronze_large_fluid_pipe)item(gtceu:bronze_normal_fluid_pipe)item(gtceu:bronze_small_fluid_pipe))" - } - } - title: "Any Bronze Pipe" - type: "item" - } - { - id: "143EA7ABC19B6AFC" - item: "gtceu:wood_normal_fluid_pipe" - optional_task: true - type: "item" - } - ] - title: "{quests.steam_age.fluid_pipes.title}" - x: -3.5d - y: 0.0d - } - { - dependencies: ["51CBF7378FFAD514"] - description: [ - "{quests.steam_age.fluid_drums.desc.1}" - "{@pagebreak}" - "{quests.steam_age.fluid_drums.desc.2}" - ] - icon: "gtceu:bronze_drum" - id: "499D24AFADC25AA9" - size: 1.0d - subtitle: "{quests.steam_age.fluid_drums.subtitle}" - tasks: [{ - id: "73A31AC2888A851E" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(gtceu:bronze_drum)item(gtceu:steel_drum)item(gtceu:aluminium_drum)item(gtceu:stainless_steel_drum)item(gtceu:gold_drum)item(gtceu:titanium_drum)item(gtceu:tungsten_steel_drum))" - } - } - type: "item" - }] - title: "{quests.steam_age.fluid_drums.title}" - x: -1.5d - y: 2.0d - } - { - dependencies: ["49896161B31DB7B4"] - description: [ - "{quests.steam_age.potin.desc.1}" - "{@pagebreak}" - "{quests.steam_age.potin.desc.2}" - ] - icon: "gtceu:potin_normal_fluid_pipe" - id: "6B6FEF3DC6299CD9" - optional: true - shape: "heart" - size: 1.0d - subtitle: "{quests.steam_age.potin.subtitle}" - tasks: [{ - id: "3FC7579C544460B1" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(gtceu:potin_tiny_fluid_pipe)item(gtceu:potin_small_fluid_pipe)item(gtceu:potin_normal_fluid_pipe)item(gtceu:potin_large_fluid_pipe)item(gtceu:potin_huge_fluid_pipe)item(gtceu:potin_huge_fluid_pipe)item(gtceu:potin_quadruple_fluid_pipe)item(gtceu:potin_nonuple_fluid_pipe))" - } - } - title: "Any Potin Pipe" - type: "item" - }] - title: "{quests.steam_age.potin.title}" - x: -5.5d - y: 12.5d - } - { - dependencies: ["6F1BC99BE641B671"] - description: ["{quests.steam_age.create_tools.desc}"] - id: "2F81902C6B1D4902" - subtitle: "{quests.steam_age.create_tools.subtitle}" - tasks: [ - { - id: "12C909F6EB4BB615" - item: "create:goggles" - optional_task: true - type: "item" - } - { - id: "7721793B4C0AFD2C" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(gtceu:copper_wrench)item(gtceu:bronze_wrench)item(gtceu:black_bronze_wrench)item(gtceu:bismuth_bronze_wrench)item(gtceu:wrought_iron_wrench)item(gtceu:steel_wrench)item(gtceu:cobalt_brass_wrench))" - } - } - type: "item" - } - ] - title: "{quests.steam_age.create_tools.title}" - x: -21.5d - y: -4.0d - } - { - dependencies: ["6AA07588374B59AB"] - description: ["{quests.steam_age.trains.desc}"] - hide_dependency_lines: false - id: "02854A3E8A5D5043" - optional: true - shape: "heart" - subtitle: "{quests.steam_age.trains.subtitle}" - tasks: [ - { - id: "7D63DDE72E9AC188" - item: "create:track_station" - type: "item" - } - { - id: "48F6ED366BE64A71" - item: "create:railway_casing" - type: "item" - } - { - id: "1BC698B7C0124CA0" - item: "create:controls" - type: "item" - } - ] - title: "{quests.steam_age.trains.title}" - x: -16.5d - y: 13.0d - } - { - dependencies: ["6AA07588374B59AB"] - description: ["{quests.steam_age.vacuum_chamber.desc}"] - id: "5F3063C539C9CBBF" - subtitle: "{quests.steam_age.vacuum_chamber.subtitle}" - tasks: [{ - id: "5BAA167FA59D5C32" - item: "vintageimprovements:vacuum_chamber" - type: "item" - }] - title: "{quests.steam_age.vacuum_chamber.title}" - x: -14.5d - y: 12.0d - } - { - description: ["{quests.metal_age.black_steel_goodies.desc}"] - id: "209958FE2EEA5D72" - shape: "gear" - size: 3.0d - subtitle: "{quests.metal_age.black_steel_goodies.subtitle}" - tasks: [{ - id: "066CDB0C97CF74EF" - item: { - Count: 1 - ForgeCaps: { - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } - } - id: "tfc:metal/anvil/black_steel" - } - type: "item" - }] - title: "{quests.metal_age.black_steel_goodies.title}" - x: -19.5d - y: 3.0d - } - { - dependencies: ["1059288C22CB56BB"] - dependency_requirement: "one_completed" - description: ["{quests.steam_age.poor_paths.desc}"] - id: "6356072A435EFE81" - optional: true - shape: "diamond" - subtitle: "{quests.steam_age.poor_paths.subtitle}" - tasks: [ - { - disable_toast: true - id: "4F3DE27E5A72D7BD" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfc:dirt)" - } - } - optional_task: true - title: "Any #tfc:dirt" - type: "item" - } - { - disable_toast: true - id: "2A6A80CC908180C5" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfc:grass)" - } - } - optional_task: true - title: "Any #tfc:grass" - type: "item" - } - { - id: "63E8E70536A0E327" - type: "checkmark" - } - ] - title: "{quests.steam_age.poor_paths.title}" - x: -25.0d - y: -3.5d - } - { - dependencies: ["1059288C22CB56BB"] - dependency_requirement: "one_completed" - description: ["{quests.steam_age.normal_paths.desc}"] - id: "494E81202B0F36A7" - optional: true - shape: "diamond" - subtitle: "{quests.steam_age.normal_paths.subtitle}" - tasks: [ - { - id: "0E4FF871FD6313B1" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfc:paths)" - } - } - optional_task: true - title: "Any #tfc:paths" - type: "item" - } - { - disable_toast: true - id: "5F38585D28010C6C" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfc:rock/gravel)" - } - } - optional_task: true - title: "Any #tfc:rock/gravel" - type: "item" - } - { - id: "2ED43D8943143635" - item: "rnr:hoggin" - optional_task: true - type: "item" - } - { - id: "4CBEBCFBCB80C624" - type: "checkmark" - } - ] - title: "{quests.steam_age.normal_paths.title}" - x: -25.5d - y: -2.0d - } - { - dependencies: ["1059288C22CB56BB"] - description: ["{quests.steam_age.good_paths.desc}"] - id: "52A82511A64B0A5B" - optional: true - shape: "diamond" - subtitle: "{quests.steam_age.good_paths.subtitle}" - tasks: [ - { - id: "17BE9908916FD48D" - item: "rnr:rock/sett_road/granite" - optional_task: true - type: "item" - } - { - id: "276FE934DBA46B50" - item: "rnr:rock/cobbled_road/granite" - optional_task: true - type: "item" - } - { - id: "3ED818D7E317850A" - item: "rnr:rock/flagstones/granite" - optional_task: true - type: "item" - } - { - id: "781B70D87BB8051D" - item: "rnr:pink_sandstone_flagstones" - optional_task: true - type: "item" - } - { - id: "3A58D37BC4DA80A9" - item: "rnr:rock/gravel_road/granite" - optional_task: true - type: "item" - } - { - id: "11F7E8FFE4575FF8" - item: "rnr:rock/macadam_road/granite" - optional_task: true - type: "item" - } - { - id: "5782F5692D6AF00A" - type: "checkmark" - } - ] - title: "{quests.steam_age.good_paths.title}" - x: -25.0d - y: -0.5d - } - { - dependencies: [ - "69BDD31A69062B6C" - "43D0B4F2ACB9931B" - "6903C72A254A7B08" - "2C35D4E01AEC02AA" - ] - description: ["{quests.steam_age.lv_circuit.desc}"] - icon: "gtceu:basic_electronic_circuit" - id: "3D8174C64DDC268B" - shape: "gear" - size: 3.0d - subtitle: "{quests.steam_age.lv_circuit.subtitle}" - tasks: [{ - id: "59CF003A962651B0" - item: "gtceu:basic_electronic_circuit" - type: "item" - }] - title: "{quests.steam_age.lv_circuit.title}" - x: -10.0d - y: 6.0d - } - { - description: ["{quests.steam_age.paper.desc}"] - disable_toast: true - id: "16CF5A9012EF4B27" - shape: "diamond" - subtitle: "{quests.steam_age.paper.subtitle}" - tasks: [{ - id: "1567AABEC83A6346" - item: "minecraft:paper" - type: "item" - }] - title: "{quests.steam_age.paper.title}" - x: -5.5d - y: 9.5d - } - { - description: ["{quests.metal_age.bronze_goodies.desc}"] - disable_toast: true - id: "6F1BC99BE641B671" - shape: "octagon" - size: 2.0d - subtitle: "{quests.metal_age.bronze_goodies.subtitle}" - tasks: [{ - id: "5B891E7A5DB66813" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfc:bronze_anvils)" - } - } - title: "Any #tfc:bronze_anvils" - type: "item" - }] - title: "{quests.metal_age.bronze_goodies.title}" - x: -21.5d - y: -2.0d - } - { - description: ["{quests.metal_age.wrought_iron_goodies.desc}"] - id: "6E8CEE02CB5B678B" - shape: "octagon" - size: 2.0d - subtitle: "{quests.metal_age.wrought_iron_goodies.subtitle}" - tasks: [{ - id: "14980AA2D20804BA" - item: { - Count: 1 - ForgeCaps: { - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } - } - id: "tfc:metal/anvil/wrought_iron" - } - type: "item" - }] - title: "{quests.metal_age.wrought_iron_goodies.title}" - x: -12.0d - y: -2.0d - } - { - description: ["{quests.metal_age.steel_goodies.desc}"] - id: "32046292AA5B0E30" - shape: "octagon" - size: 2.0d - subtitle: "{quests.metal_age.steel_goodies.subtitle}" - tasks: [{ - id: "6D4629A2C1063653" - item: { - Count: 1 - ForgeCaps: { - "tfc:item_heat": { - heat: 0.0f - ticks: 0L - } - } - id: "tfc:metal/anvil/steel" - } - type: "item" - }] - title: "{quests.metal_age.steel_goodies.title}" - x: -5.5d - y: 0.0d - } - { - dependencies: [ - "46FA9DD4755A5548" - "6100B3C732E379AA" - ] - description: ["{quests.steam_age.steam_macerator.desc}"] - id: "6CF7DCC996BACBFA" - optional: true - subtitle: "{quests.steam_age.steam_macerator.subtitle}" - tasks: [{ - id: "19146D7510558652" - item: "gtceu:hp_steam_macerator" - type: "item" - }] - title: "{quests.steam_age.steam_macerator.title}" - x: -22.5d - y: 6.0d - } - { - dependencies: [ - "6CF7DCC996BACBFA" - "5E4FC017E09ACF44" - ] - dependency_requirement: "one_completed" - description: ["{quests.steam_age.steam_grinder.desc}"] - id: "0CC370A6FC56935B" - optional: true - shape: "heart" - subtitle: "{quests.steam_age.steam_grinder.subtitle}" - tasks: [{ - id: "1CD61C4F273665DE" - item: "gtceu:steam_grinder" - type: "item" - }] - title: "{quests.steam_age.steam_grinder.title}" - x: -25.0d - y: 6.0d - } - { - dependencies: ["32046292AA5B0E30"] - description: ["{quests.steam_age.rotation_speed_controller.desc}"] - id: "414835BADD34513F" - optional: true - subtitle: "{quests.steam_age.rotation_speed_controller.subtitle}" - tasks: [{ - id: "74770DF964D26059" - item: "create:rotation_speed_controller" - type: "item" - }] - title: "{quests.steam_age.rotation_speed_controller.title}" - x: -7.5d - y: 0.0d - } - { - dependencies: [ - "6FFD4990FF07078A" - "3E175E20C91F168B" - ] - description: ["{quests.steam_age.resin_boards.desc}"] - id: "05BE9FE74E4F1AE9" - subtitle: "{quests.steam_age.resin_boards.subtitle}" - tasks: [{ - id: "1367C83F3529D5EA" - item: "gtceu:resin_circuit_board" - type: "item" - }] - title: "{quests.steam_age.resin_boards.title}" - x: -13.5d - y: 9.5d - } - { - dependencies: ["6E8CEE02CB5B678B"] - description: [ - "{quests.metal_age.coke_oven.desc.1}" - "{@pagebreak}" - "{quests.metal_age.coke_oven.desc.2}" - "{@pagebreak}" - "" - "{image:tfg:textures/quests/auto_coke.png width:100 height:100 align:center}" - ] - id: "0D0D461AE3A3F7BF" - size: 1.5d - subtitle: "{quests.metal_age.coke_oven.subtitle}" - tasks: [ - { - id: "1D22CEA76A676434" - item: "gtceu:coke_oven" - type: "item" - } - { - id: "7C2595BA70CBB39E" - item: "gtceu:coke_oven_bricks" - type: "item" - } - { - id: "11981B2183C67CE0" - item: "gtceu:coke_oven_hatch" - type: "item" - } - ] - title: "{quests.metal_age.coke_oven.title}" - x: -14.5d - y: -2.0d - } - { - dependencies: ["033E74BC588E7EAD"] - description: ["{quests.steam_age.packager.desc}"] - icon: "create:package_frogport" - id: "509E85016A2B199C" - shape: "gear" - size: 2.0d - subtitle: "{quests.steam_age.packager.subtitle}" - tasks: [{ - id: "4319E4113F8EBB13" - type: "checkmark" - }] - title: "{quests.steam_age.packager.title}" - x: -19.5d - y: 17.0d - } - { - dependencies: [ - "7B045998769930F0" - "55FDF06AC0C01D0B" - ] - description: ["{quests.steam_age.basic_mech_press.desc}"] - id: "14710C5B4981CECC" - optional: true - shape: "heart" - subtitle: "{quests.steam_age.basic_mech_press.subtitle}" - tasks: [{ - id: "2F89D6D6745465DC" - item: "greate:andesite_alloy_mechanical_press" - type: "item" - }] - title: "{quests.steam_age.basic_mech_press.title}" - x: -17.5d - y: -2.0d - } - { - dependencies: [ - "09D913288896A67A" - "05A39719B66B8F76" - ] - description: [ - "{quests.steam_age.steel_mech_press.desc.1}" - "{@pagebreak}" - "{quests.steam_age.steel_mech_press.desc.2}" - ] - id: "0D39D83AA5F9D543" - optional: true - shape: "heart" - subtitle: "{quests.steam_age.steel_mech_press.subtitle}" - tasks: [{ - id: "32E30B6AC780CAF1" - item: "greate:steel_mechanical_press" - type: "item" - }] - title: "{quests.steam_age.steel_mech_press.title}" - x: -7.5d - y: 4.0d - } - { - dependencies: ["183D47F04CAEBFA7"] - description: ["{quests.steam_age.fuel_sources.desc}"] - icon: "createdeco:decal_fire" - id: "753A53733C6DFA04" - subtitle: "{quests.steam_age.fuel_sources.subtitle}" - tasks: [{ - id: "38A3F9A1D2F11EE3" - type: "checkmark" - }] - title: "{quests.steam_age.fuel_sources.title}" - x: -7.5d - y: -2.0d - } - { - dependencies: ["32046292AA5B0E30"] - description: ["{quests.steam_age.large_water_wheel.desc}"] - id: "56A068A5488CB273" - subtitle: "{quests.steam_age.large_water_wheel.subtitle}" - tasks: [{ - id: "5772AD3BB700FD84" - item: "create:large_water_wheel" - type: "item" - }] - title: "{quests.steam_age.large_water_wheel.title}" - x: -3.5d - y: -2.0d - } - ] - subtitle: ["{quests.steam_age.subtitle}"] - title: "{quests.steam_age}" -} +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "questssteam_age" + group: "3C4612A920658A7E" + icon: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:steel_gear" + } + id: "784A885090386609" + order_index: 2 + quest_links: [ + { + id: "39027CF4DC307D33" + linked_quest: "5E186CD5E83BFDF0" + x: -28.5d + y: 2.0d + } + { + id: "0CE64B9914191C56" + linked_quest: "6FFD4990FF07078A" + shape: "diamond" + x: -9.5d + y: 11.5d + } + { + id: "23A27702FF816291" + linked_quest: "6903C72A254A7B08" + x: -12.5d + y: 8.0d + } + { + id: "1F1E7097C015BE33" + linked_quest: "48A8E3210B2BAE1C" + shape: "octagon" + size: 2.0d + x: -28.5d + y: 0.0d + } + { + id: "7C03FE015586C652" + linked_quest: "55213ACBF5F5D398" + shape: "heart" + x: -12.0d + y: 16.0d + } + { + id: "65E0B13E245D2E5F" + linked_quest: "379F434116632A89" + x: -26.0d + y: 1.0d + } + { + id: "68F5E521F2DB0A86" + linked_quest: "0404FBCC34011053" + shape: "heart" + x: -13.0d + y: 16.0d + } + { + id: "38ECA3FEC2B6A6A6" + linked_quest: "533F32CCAD9D5B51" + shape: "heart" + x: -18.5d + y: 12.5d + } + { + id: "61DCD50394B7FF0E" + linked_quest: "33263404ED38C6D2" + shape: "heart" + x: -22.5d + y: 4.0d + } + ] + quests: [ + { + dependencies: [ + "7B045998769930F0" + "55FDF06AC0C01D0B" + ] + description: ["{quests.steam_age.basic_millstone.desc}"] + id: "48C1E980F7D64317" + size: 1.0d + subtitle: "{quests.steam_age.basic_millstone.subtitle}" + tasks: [{ + id: "486DE7D228F3589B" + item: "greate:andesite_alloy_millstone" + type: "item" + }] + title: "{quests.steam_age.basic_millstone.title}" + x: -20.5d + y: 0.0d + } + { + dependencies: ["6F1BC99BE641B671"] + description: [ + "{quests.steam_age.horse_crank.desc.1}" + "{@pagebreak}" + "{quests.steam_age.horse_crank.desc.2}" + ] + id: "1059288C22CB56BB" + subtitle: "{quests.steam_age.horse_crank.subtitle}" + tasks: [{ + id: "1F3EE2CB3B8875EC" + item: "createhorsepower:horse_crank" + type: "item" + }] + title: "{quests.steam_age.horse_crank.title}" + x: -24.5d + y: -2.0d + } + { + dependencies: ["7B045998769930F0"] + description: [ + "{quests.steam_age.helve_hammer.desc.1}" + "{@pagebreak}" + "{quests.steam_age.helve_hammer.desc.2}" + ] + id: "611EB6284CA7119C" + size: 1.0d + subtitle: "{quests.steam_age.helve_hammer.subtitle}" + tasks: [{ + id: "340B4B4665295100" + item: "vintageimprovements:helve_hammer" + type: "item" + }] + title: "{quests.steam_age.helve_hammer.title}" + x: -20.5d + y: -4.0d + } + { + dependencies: ["6F1BC99BE641B671"] + description: ["{quests.steam_age.basic_greate.desc}"] + id: "7B045998769930F0" + subtitle: "{quests.steam_age.basic_greate.subtitle}" + tasks: [ + { + id: "53E8B404D5233367" + item: "greate:andesite_alloy_cogwheel" + optional_task: true + type: "item" + } + { + id: "54B5DC1982F4D816" + item: "greate:large_andesite_alloy_cogwheel" + type: "item" + } + { + id: "59AD69460AE89682" + item: "greate:andesite_alloy_shaft" + optional_task: true + type: "item" + } + ] + title: "{quests.steam_age.basic_greate.title}" + x: -20.5d + y: -2.0d + } + { + dependencies: ["0D0D461AE3A3F7BF"] + description: ["{quests.steam_age.water_wheel.desc}"] + id: "61DDB00751D1E7CB" + subtitle: "{quests.steam_age.water_wheel.subtitle}" + tasks: [{ + id: "1D82D22878EE6D21" + item: "create:water_wheel" + type: "item" + }] + title: "{quests.steam_age.water_wheel.title}" + x: -14.5d + y: 0.0d + } + { + dependencies: ["0D0D461AE3A3F7BF"] + description: ["{quests.steam_age.windmill.desc}"] + id: "617E0AFB7BA3D7A8" + subtitle: "{quests.steam_age.windmill.subtitle}" + tasks: [ + { + id: "26EA0D8EDFCF3727" + item: "create:windmill_bearing" + type: "item" + } + { + count: 8L + id: "3095A44065C9F130" + item: "create:white_sail" + type: "item" + } + ] + title: "{quests.steam_age.windmill.title}" + x: -14.5d + y: -4.0d + } + { + dependencies: ["6E8CEE02CB5B678B"] + description: ["{quests.steam_age.metal_casing.desc}"] + id: "7F14D2A34F480ACA" + size: 1.5d + subtitle: "{quests.steam_age.metal_casing.subtitle}" + tasks: [{ + id: "1554B18D816C3549" + item: "create:andesite_casing" + type: "item" + }] + title: "{quests.steam_age.metal_casing.title}" + x: -9.5d + y: -2.0d + } + { + dependencies: [ + "09D913288896A67A" + "05A39719B66B8F76" + ] + description: ["{quests.steam_age.steel_encased_fan.desc}"] + id: "616E28977F3216D9" + subtitle: "{quests.steam_age.steel_encased_fan.subtitle}" + tasks: [{ + id: "32279C21D7553637" + item: { Count: 32, id: "greate:steel_encased_fan" } + type: "item" + }] + title: "{quests.steam_age.steel_encased_fan.title}" + x: -5.5d + y: 4.0d + } + { + dependencies: ["09D913288896A67A"] + description: [ + "{quests.steam_age.steel_pump.desc.1}" + "{@pagebreak}" + "{quests.steam_age.steel_pump.desc.2}" + "{@pagebreak}" + "{quests.steam_age.steel_pump.desc.3}" + ] + id: "51CBF7378FFAD514" + subtitle: "{quests.steam_age.steel_pump.subtitle}" + tasks: [{ + id: "1E7DD1C4FCCFD937" + item: "greate:steel_mechanical_pump" + type: "item" + }] + title: "{quests.steam_age.steel_pump.title}" + x: -3.5d + y: 2.0d + } + { + dependencies: ["209958FE2EEA5D72"] + description: [ + "{quests.steam_age.boilers.desc.1}" + "{@pagebreak}" + "{quests.steam_age.boilers.desc.2}" + ] + id: "46FA9DD4755A5548" + shape: "octagon" + size: 2.0d + subtitle: "{quests.steam_age.boilers.subtitle}" + tasks: [{ + id: "07FFA9C76EE39D36" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:hp_steam_solid_boiler)item(gtceu:hp_steam_liquid_boiler)item(gtceu:hp_steam_solar_boiler))" + } + } + title: "{quests.steam_age.boilers.tasks}" + type: "item" + }] + title: "{quests.steam_age.boilers.title}" + x: -19.5d + y: 6.75d + } + { + dependencies: ["32046292AA5B0E30"] + description: ["{quests.steam_age.steam_engine.desc}"] + id: "183D47F04CAEBFA7" + size: 1.5d + subtitle: "{quests.steam_age.steam_engine.subtitle}" + tasks: [ + { + id: "704B7094BE2FB3E1" + item: "create:steam_engine" + optional_task: true + type: "item" + } + { + id: "4655500474F4236C" + item: "create:blaze_burner" + type: "item" + } + ] + title: "{quests.steam_age.steam_engine.title}" + x: -5.5d + y: -2.0d + } + { + dependencies: ["7F14D2A34F480ACA"] + description: ["{quests.steam_age.mechanical_saw.desc}"] + id: "069825FBCFB0FB9C" + rewards: [{ + id: "64CA1397D201AF37" + item: "create:filter" + type: "item" + }] + subtitle: "{quests.steam_age.mechanical_saw.subtitle}" + tasks: [{ + id: "5005121E0361DBD2" + item: "greate:andesite_alloy_mechanical_saw" + type: "item" + }] + title: "{quests.steam_age.mechanical_saw.title}" + x: -9.5d + y: 0.0d + } + { + dependencies: ["7F14D2A34F480ACA"] + description: ["{quests.steam_age.mechanical_harvester.desc}"] + id: "76871B4CEEEC70B8" + subtitle: "{quests.steam_age.mechanical_harvester.subtitle}" + tasks: [{ + id: "34092F5FBDFB9761" + item: "create:mechanical_harvester" + type: "item" + }] + title: "{quests.steam_age.mechanical_harvester.title}" + x: -9.5d + y: -4.0d + } + { + dependencies: ["6E8CEE02CB5B678B"] + description: ["{quests.steam_age.chute.desc}"] + id: "05CC8C5E63CD1DB8" + subtitle: "{quests.steam_age.chute.subtitle}" + tasks: [ + { + id: "7CB1E90EAF7861FB" + item: "create:chute" + type: "item" + } + { + id: "66E04B6A41557709" + item: "create:andesite_funnel" + optional_task: true + type: "item" + } + { + id: "6E500B14003B937D" + item: "minecraft:hopper" + optional_task: true + type: "item" + } + ] + title: "{quests.steam_age.chute.title}" + x: -12.0d + y: 0.0d + } + { + dependencies: ["51CBF7378FFAD514"] + description: [ + "{quests.steam_age.mold_table.desc.1}" + "{@pagebreak}" + "{quests.steam_age.mold_table.desc.2}" + ] + id: "66DBF1C68493A406" + subtitle: "{quests.steam_age.mold_table.subtitle}" + tasks: [{ + id: "7258D0D474B6F26E" + item: "tfcchannelcasting:mold_table" + type: "item" + }] + title: "{quests.steam_age.mold_table.title}" + x: -3.5d + y: 4.0d + } + { + dependencies: ["32046292AA5B0E30"] + dependency_requirement: "one_completed" + description: ["{quests.steam_age.steel_greate.desc}"] + id: "09D913288896A67A" + size: 1.5d + subtitle: "{quests.steam_age.steel_greate.subtitle}" + tasks: [ + { + id: "23DE370285589CB4" + item: "greate:steel_shaft" + optional_task: true + type: "item" + } + { + id: "4FDD99090C920E21" + item: "greate:steel_cogwheel" + optional_task: true + type: "item" + } + { + id: "5569D0030FB45C5D" + item: "greate:large_steel_cogwheel" + type: "item" + } + ] + title: "{quests.steam_age.steel_greate.title}" + x: -5.5d + y: 2.0d + } + { + dependencies: [ + "09D913288896A67A" + "05A39719B66B8F76" + ] + description: ["{quests.steam_age.steel_millstone.desc}"] + hide_dependent_lines: true + id: "5E4FC017E09ACF44" + subtitle: "{quests.steam_age.steel_millstone.subtitle}" + tasks: [{ + id: "3E3D4CD3283461DE" + item: "greate:steel_millstone" + type: "item" + }] + title: "{quests.steam_age.steel_millstone.title}" + x: -7.5d + y: 2.0d + } + { + dependencies: [ + "5917B0D4708BF534" + "6100B3C732E379AA" + ] + description: ["{quests.steam_age.crushing_wheel.desc}"] + id: "4F3D0D746D26B59F" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.crushing_wheel.subtitle}" + tasks: [{ + count: 2L + id: "7EDCBC04DAEA477C" + item: "greate:steel_crushing_wheel" + type: "item" + }] + title: "{quests.steam_age.crushing_wheel.title}" + x: -20.5d + y: 12.5d + } + { + dependencies: ["7DB7AB5349218605"] + description: ["{quests.steam_age.treated_planks.desc}"] + id: "246D2C5989E3E907" + subtitle: "{quests.steam_age.treated_planks.subtitle}" + tasks: [ + { + id: "7CF3C09E3907B1C0" + item: "gtceu:treated_wood_planks" + type: "item" + } + { + id: "72112F5EC062766C" + item: "gtceu:treated_wood_dust" + type: "item" + } + { + id: "0D95727196D033B5" + item: "gtceu:treated_wood_plate" + type: "item" + } + { + id: "1497E51C6C204557" + item: "gtceu:treated_wood_normal_fluid_pipe" + optional_task: true + type: "item" + } + ] + title: "{quests.steam_age.treated_planks.title}" + x: -19.5d + y: 10.5d + } + { + dependencies: [ + "233B414B4F189140" + "781C6AD30194CB45" + "3E175E20C91F168B" + ] + description: ["{quests.steam_age.electron_tube.desc}"] + id: "033E74BC588E7EAD" + shape: "octagon" + size: 2.0d + subtitle: "{quests.steam_age.electron_tube.subtitle}" + tasks: [{ + id: "471CCF5193150865" + item: "create:electron_tube" + type: "item" + }] + title: "{quests.steam_age.electron_tube.title}" + x: -19.5d + y: 15.0d + } + { + dependencies: ["2C35D4E01AEC02AA"] + dependency_requirement: "one_completed" + description: [ + "{quests.steam_age.miner.desc.1}" + "{@pagebreak}" + "{quests.steam_age.miner.desc.2}" + ] + id: "65066C9D630B7FFA" + optional: true + subtitle: "{quests.steam_age.miner.subtitle}" + tasks: [ + { + id: "068F7BD3AA0EF8E7" + item: "gtceu:hp_steam_miner" + type: "item" + } + { + id: "5ADC94CEBC196702" + item: "create:mechanical_drill" + type: "item" + } + ] + title: "{quests.steam_age.miner.title}" + x: -10.0d + y: 17.0d + } + { + dependencies: [ + "22E604DB7E7E87FB" + "09E12A399EE0A628" + ] + dependency_requirement: "one_completed" + description: ["{quests.steam_age.glass_tube.desc}"] + id: "233B414B4F189140" + subtitle: "{quests.steam_age.glass_tube.subtitle}" + tasks: [{ + id: "004AF02E40B60ECF" + item: "gtceu:glass_tube" + type: "item" + }] + title: "{quests.steam_age.glass_tube.title}" + x: -23.5d + y: 15.0d + } + { + dependencies: ["033E74BC588E7EAD"] + description: ["{quests.steam_age.deployers.desc}"] + icon: "create:deployer" + id: "6AA07588374B59AB" + subtitle: "{quests.steam_age.deployers.subtitle}" + tasks: [ + { + id: "717CF950E5000569" + item: "create:deployer" + type: "item" + } + { + id: "38F9301A818347F7" + item: "create:depot" + optional_task: true + type: "item" + } + ] + title: "{quests.steam_age.deployers.title}" + x: -15.5d + y: 15.0d + } + { + dependencies: ["1912758422EEB006"] + description: ["{quests.steam_age.molding.desc}"] + icon: "gtceu:ball_casting_mold" + id: "09E12A399EE0A628" + size: 1.0d + subtitle: "{quests.steam_age.molding.subtitle}" + tasks: [ + { + id: "02A8B23277FFD95E" + item: "gtceu:plate_casting_mold" + type: "item" + } + { + id: "57B2773550AA7D37" + item: "gtceu:ball_casting_mold" + type: "item" + } + ] + title: "{quests.steam_age.molding.title}" + x: -23.5d + y: 12.5d + } + { + dependencies: ["033E74BC588E7EAD"] + description: ["{quests.steam_age.mech_crafter.desc}"] + id: "5917B0D4708BF534" + optional: true + subtitle: "{quests.steam_age.mech_crafter.subtitle}" + tasks: [{ + id: "084E6F06E79A3B0F" + item: "create:mechanical_crafter" + type: "item" + }] + title: "{quests.steam_age.mech_crafter.title}" + x: -19.5d + y: 12.5d + } + { + dependencies: ["46FA9DD4755A5548"] + description: ["{quests.steam_age.steam_bloomery.desc}"] + icon: "tfg:steam_bloomery" + id: "0805CCABC8E7F6CF" + optional: true + shape: "heart" + size: 1.0d + subtitle: "{quests.steam_age.steam_bloomery.subtitle}" + tasks: [ + { + id: "72D748120CACABE2" + item: "tfg:steam_bloomery" + type: "item" + } + { + count: 3L + id: "019C4D427A06DF0E" + item: { Count: 3, id: "gtceu:bronze_firebox_casing" } + type: "item" + } + { + id: "402700D6CCD2BEF1" + item: "gtceu:steam_input_hatch" + type: "item" + } + { + id: "7B99996072C53AD9" + item: "gtceu:steam_input_bus" + type: "item" + } + { + id: "6E4B41FDD286E184" + item: "gtceu:steam_output_bus" + type: "item" + } + ] + title: "{quests.steam_age.steam_bloomery.title}" + x: -16.5d + y: 5.5d + } + { + dependencies: ["05CC8C5E63CD1DB8"] + description: [ + "{quests.steam_age.item_pipes.desc.1}" + "{@pagebreak}" + "{quests.steam_age.item_pipes.desc.2}" + "{@pagebreak}" + "{quests.steam_age.item_pipes.desc.3}" + "{@pagebreak}" + "{quests.steam_age.item_pipes.desc.4}" + ] + icon: "gtceu:tin_small_item_pipe" + id: "08672B3000450F14" + size: 1.0d + subtitle: "{quests.steam_age.item_pipes.subtitle}" + tasks: [{ + id: "3122D989BAB787F4" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + display: { + Name: "{\"text\":\"Any item pipe\"}" + } + "ftbfiltersystem:filter": "or(item_tag(forge:small_item_pipes)item_tag(forge:normal_item_pipes)item_tag(forge:large_item_pipes)item_tag(forge:huge_item_pipes))" + } + } + title: "Any Item Pipes" + type: "item" + }] + title: "{quests.steam_age.item_pipes.title}" + x: -12.0d + y: 2.0d + } + { + dependencies: [ + "6FFD4990FF07078A" + "05BE9FE74E4F1AE9" + ] + description: ["{quests.steam_age.circuit_boards.desc}"] + icon: "gtceu:resin_printed_circuit_board" + id: "43D0B4F2ACB9931B" + shape: "square" + size: 1.0d + subtitle: "{quests.steam_age.circuit_boards.subtitle}" + tasks: [{ + id: "2B8B038789480789" + item: "gtceu:resin_printed_circuit_board" + type: "item" + }] + title: "{quests.steam_age.circuit_boards.title}" + x: -9.5d + y: 10.5d + } + { + dependencies: ["46FA9DD4755A5548"] + description: ["{quests.steam_age.compressor.desc}"] + id: "7DB7AB5349218605" + size: 1.0d + subtitle: "{quests.steam_age.compressor.subtitle}" + tasks: [{ + id: "422B0536DAAF3DD4" + item: "gtceu:hp_steam_compressor" + type: "item" + }] + title: "{quests.steam_age.compressor.title}" + x: -16.5d + y: 8.5d + } + { + dependencies: ["46FA9DD4755A5548"] + description: ["{quests.steam_age.alloy_smelter.desc}"] + id: "1912758422EEB006" + shape: "square" + size: 1.0d + subtitle: "{quests.steam_age.alloy_smelter.subtitle}" + tasks: [{ + id: "47ABB2F2EB140120" + item: "gtceu:hp_steam_alloy_smelter" + type: "item" + }] + title: "{quests.steam_age.alloy_smelter.title}" + x: -22.5d + y: 8.5d + } + { + dependencies: [ + "46FA9DD4755A5548" + "6100B3C732E379AA" + ] + description: ["{quests.steam_age.forge_hammer.desc}"] + id: "59F7F7A8C76DE31C" + shape: "square" + size: 1.0d + subtitle: "{quests.steam_age.forge_hammer.subtitle}" + tasks: [{ + id: "18FFF2B9BC20C28B" + item: "gtceu:hp_steam_forge_hammer" + type: "item" + }] + title: "{quests.steam_age.forge_hammer.title}" + x: -22.5d + y: 6.5d + } + { + dependencies: [ + "5F3063C539C9CBBF" + "05BE9FE74E4F1AE9" + ] + description: ["{quests.steam_age.vacuum_tubes.desc}"] + id: "2C35D4E01AEC02AA" + shape: "octagon" + size: 2.0d + subtitle: "{quests.steam_age.vacuum_tubes.subtitle}" + tasks: [{ + id: "71433924A1ACEDA1" + item: "gtceu:vacuum_tube" + type: "item" + }] + title: "{quests.steam_age.vacuum_tubes.title}" + x: -8.0d + y: 14.0d + } + { + dependencies: ["7DB7AB5349218605"] + description: ["{quests.steam_age.wood_plank.desc}"] + id: "3E175E20C91F168B" + subtitle: "{quests.steam_age.wood_plank.subtitle}" + tasks: [{ + id: "339B48BCF11A29E0" + item: "gtceu:wood_plate" + type: "item" + }] + title: "{quests.steam_age.wood_plank.title}" + x: -16.5d + y: 11.5d + } + { + dependencies: ["46FA9DD4755A5548"] + description: ["{quests.steam_age.extractor.desc}"] + id: "1DF4DBE41BB0B6FD" + optional: true + shape: "heart" + size: 1.0d + subtitle: "{quests.steam_age.extractor.subtitle}" + tasks: [{ + id: "5C84856667925F76" + item: "gtceu:hp_steam_extractor" + type: "item" + }] + title: "{quests.steam_age.extractor.title}" + x: -16.5d + y: 6.5d + } + { + dependencies: [ + "6FFD4990FF07078A" + "16CF5A9012EF4B27" + ] + dependency_requirement: "one_completed" + description: ["{quests.steam_age.resistors.desc}"] + id: "69BDD31A69062B6C" + shape: "square" + size: 1.0d + subtitle: "{quests.steam_age.resistors.subtitle}" + tasks: [{ + id: "4E6D1A59F2BAE607" + item: "gtceu:resistor" + type: "item" + }] + title: "{quests.steam_age.resistors.title}" + x: -5.0d + y: 11.5d + } + { + dependencies: ["2C35D4E01AEC02AA"] + description: ["{quests.steam_age.coiling_machine.desc}"] + id: "072F6E48A1C5ECE9" + optional: true + size: 1.25d + subtitle: "{quests.steam_age.coiling_machine.subtitle}" + tasks: [{ + id: "07B7D41ACDCD1DEA" + item: "vintageimprovements:spring_coiling_machine" + type: "item" + }] + title: "{quests.steam_age.coiling_machine.title}" + x: -5.0d + y: 16.0d + } + { + dependencies: ["2C35D4E01AEC02AA"] + description: ["{quests.steam_age.steel_mixer.desc}"] + id: "49896161B31DB7B4" + optional: true + size: 1.25d + subtitle: "{quests.steam_age.steel_mixer.subtitle}" + tasks: [{ + id: "42F060A386ADF999" + item: "greate:steel_mechanical_mixer" + type: "item" + }] + title: "{quests.steam_age.steel_mixer.title}" + x: -5.0d + y: 14.5d + } + { + dependencies: ["2C35D4E01AEC02AA"] + description: ["{quests.steam_age.lathe.desc}"] + id: "6A92E8396DE40577" + optional: true + subtitle: "{quests.steam_age.lathe.subtitle}" + tasks: [{ + id: "23961EE69549B16E" + item: "vintageimprovements:belt_grinder" + type: "item" + }] + title: "{quests.steam_age.lathe.title}" + x: -6.0d + y: 17.0d + } + { + dependencies: [ + "5917B0D4708BF534" + "6100B3C732E379AA" + "246D2C5989E3E907" + ] + description: ["{quests.steam_age.centrifuge.desc}"] + id: "19A1D52A7F550478" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.centrifuge.subtitle}" + tasks: [{ + id: "69668479444FF064" + item: "vintageimprovements:centrifuge" + type: "item" + }] + title: "{quests.steam_age.centrifuge.title}" + x: -19.5d + y: 11.5d + } + { + dependencies: [ + "2C35D4E01AEC02AA" + "6100B3C732E379AA" + ] + description: ["{quests.steam_age.vibrating_table.desc}"] + id: "1E8CC993E0251828" + optional: true + subtitle: "{quests.steam_age.vibrating_table.subtitle}" + tasks: [{ + id: "3035C0B44A0E1854" + item: "vintageimprovements:vibrating_table" + type: "item" + }] + title: "{quests.steam_age.vibrating_table.title}" + x: -8.0d + y: 17.0d + } + { + dependencies: ["2C35D4E01AEC02AA"] + description: [ + "{quests.steam_age.rolling_mill.desc.1}" + "{@pagebreak}" + "{quests.steam_age.rolling_mill.desc.2}" + ] + id: "4C22BE513927247B" + optional: true + size: 1.25d + subtitle: "{quests.steam_age.rolling_mill.subtitle}" + tasks: [{ + id: "621AA4E967D54305" + item: "createaddition:rolling_mill" + type: "item" + }] + title: "{quests.steam_age.rolling_mill.title}" + x: -5.0d + y: 13.0d + } + { + dependencies: ["2C35D4E01AEC02AA"] + description: ["{quests.steam_age.steel_saw.desc}"] + id: "0078B9234C554C6E" + optional: true + subtitle: "{quests.steam_age.steel_saw.subtitle}" + tasks: [{ + id: "40E3951B8862B9A4" + item: "greate:steel_mechanical_saw" + type: "item" + }] + title: "{quests.steam_age.steel_saw.title}" + x: -7.0d + y: 17.0d + } + { + dependencies: ["2C35D4E01AEC02AA"] + description: ["{quests.steam_age.curving_press.desc}"] + id: "6ABACC7B9967851D" + optional: true + subtitle: "{quests.steam_age.curving_press.subtitle}" + tasks: [{ + id: "2AE28D5C5FC74A56" + item: "vintageimprovements:curving_press" + type: "item" + }] + title: "{quests.steam_age.curving_press.title}" + x: -9.0d + y: 17.0d + } + { + dependencies: [ + "46FA9DD4755A5548" + "6100B3C732E379AA" + ] + description: ["{quests.steam_age.steam_furnace.desc}"] + id: "799288FB7A4DCA11" + subtitle: "{quests.steam_age.steam_furnace.subtitle}" + tasks: [{ + id: "3F510CDD8E437540" + item: "gtceu:hp_steam_furnace" + type: "item" + }] + title: "{quests.steam_age.steam_furnace.title}" + x: -22.5d + y: 5.5d + } + { + dependencies: ["799288FB7A4DCA11"] + description: [ + "{quests.steam_age.steam_oven.desc.1}" + "{@pagebreak}" + "{quests.steam_age.steam_oven.desc.2}" + ] + icon: "gtceu:steam_oven" + id: "3E6DE0B94490FCEC" + optional: true + shape: "heart" + size: 1.0d + subtitle: "{quests.steam_age.steam_oven.subtitle}" + tasks: [ + { + id: "1675EA4117A36C72" + item: "gtceu:steam_oven" + type: "item" + } + { + id: "4EE63FDD07EC0467" + item: "gtceu:steam_input_hatch" + type: "item" + } + { + id: "0C9D5C87DEC212D2" + item: "gtceu:steam_input_bus" + type: "item" + } + { + id: "60828361A38F4E1E" + item: "gtceu:steam_output_bus" + type: "item" + } + { + count: 8L + id: "10EC49FF899232F6" + item: "gtceu:steam_machine_casing" + type: "item" + } + { + count: 8L + id: "27DDD13BE482E8A3" + item: "gtceu:bronze_firebox_casing" + type: "item" + } + ] + title: "{quests.steam_age.steam_oven.title}" + x: -24.5d + y: 5.5d + } + { + dependencies: ["46FA9DD4755A5548"] + description: ["{quests.steam_age.rock_crusher.desc}"] + id: "2491CB5921B66446" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.rock_crusher.subtitle}" + tasks: [{ + id: "5CA302572EF6D4E1" + item: "gtceu:hp_steam_rock_crusher" + type: "item" + }] + title: "{quests.steam_age.rock_crusher.title}" + x: -16.5d + y: 7.5d + } + { + dependencies: [ + "1912758422EEB006" + "12CB3B9ADC586521" + ] + dependency_requirement: "one_completed" + description: ["{quests.steam_age.red_alloy.desc}"] + icon: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:red_alloy_ingot" + } + id: "781C6AD30194CB45" + shape: "square" + size: 1.0d + subtitle: "{quests.steam_age.red_alloy.subtitle}" + tasks: [ + { + id: "4D1E98E699F1E724" + item: "gtceu:red_alloy_ingot" + type: "item" + } + { + id: "41331A38F9664605" + item: "gtceu:red_alloy_single_wire" + type: "item" + } + ] + title: "{quests.steam_age.red_alloy.title}" + x: -22.5d + y: 12.5d + } + { + dependencies: ["51CBF7378FFAD514"] + description: [ + "{quests.steam_age.fluid_pipes.desc.1}" + "{@pagebreak}" + "{quests.steam_age.fluid_pipes.desc.2}" + ] + icon: "gtceu:bronze_normal_fluid_pipe" + id: "0109231F33296868" + size: 1.0d + subtitle: "{quests.steam_age.fluid_pipes.subtitle}" + tasks: [ + { + id: "59512A7A04D517E6" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:bronze_tiny_fluid_pipe)item(gtceu:bronze_quadruple_fluid_pipe)item(gtceu:bronze_nonuple_fluid_pipe)item(gtceu:bronze_huge_fluid_pipe)item(gtceu:bronze_large_fluid_pipe)item(gtceu:bronze_normal_fluid_pipe)item(gtceu:bronze_small_fluid_pipe))" + } + } + title: "Any Bronze Pipe" + type: "item" + } + { + id: "143EA7ABC19B6AFC" + item: "gtceu:wood_normal_fluid_pipe" + optional_task: true + type: "item" + } + ] + title: "{quests.steam_age.fluid_pipes.title}" + x: -3.5d + y: 0.0d + } + { + dependencies: ["51CBF7378FFAD514"] + description: [ + "{quests.steam_age.fluid_drums.desc.1}" + "{@pagebreak}" + "{quests.steam_age.fluid_drums.desc.2}" + ] + icon: "gtceu:bronze_drum" + id: "499D24AFADC25AA9" + size: 1.0d + subtitle: "{quests.steam_age.fluid_drums.subtitle}" + tasks: [{ + id: "73A31AC2888A851E" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:bronze_drum)item(gtceu:steel_drum)item(gtceu:aluminium_drum)item(gtceu:stainless_steel_drum)item(gtceu:gold_drum)item(gtceu:titanium_drum)item(gtceu:tungsten_steel_drum))" + } + } + type: "item" + }] + title: "{quests.steam_age.fluid_drums.title}" + x: -1.5d + y: 2.0d + } + { + dependencies: ["49896161B31DB7B4"] + description: [ + "{quests.steam_age.potin.desc.1}" + "{@pagebreak}" + "{quests.steam_age.potin.desc.2}" + ] + icon: "gtceu:potin_normal_fluid_pipe" + id: "6B6FEF3DC6299CD9" + optional: true + shape: "heart" + size: 1.0d + subtitle: "{quests.steam_age.potin.subtitle}" + tasks: [{ + id: "3FC7579C544460B1" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:potin_tiny_fluid_pipe)item(gtceu:potin_small_fluid_pipe)item(gtceu:potin_normal_fluid_pipe)item(gtceu:potin_large_fluid_pipe)item(gtceu:potin_huge_fluid_pipe)item(gtceu:potin_huge_fluid_pipe)item(gtceu:potin_quadruple_fluid_pipe)item(gtceu:potin_nonuple_fluid_pipe))" + } + } + title: "Any Potin Pipe" + type: "item" + }] + title: "{quests.steam_age.potin.title}" + x: -3.5d + y: 14.5d + } + { + dependencies: ["6F1BC99BE641B671"] + description: ["{quests.steam_age.create_tools.desc}"] + id: "2F81902C6B1D4902" + subtitle: "{quests.steam_age.create_tools.subtitle}" + tasks: [ + { + id: "12C909F6EB4BB615" + item: "create:goggles" + optional_task: true + type: "item" + } + { + id: "7721793B4C0AFD2C" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:copper_wrench)item(gtceu:bronze_wrench)item(gtceu:black_bronze_wrench)item(gtceu:bismuth_bronze_wrench)item(gtceu:wrought_iron_wrench)item(gtceu:steel_wrench)item(gtceu:cobalt_brass_wrench))" + } + } + type: "item" + } + ] + title: "{quests.steam_age.create_tools.title}" + x: -22.5d + y: -4.0d + } + { + dependencies: ["6AA07588374B59AB"] + description: ["{quests.steam_age.trains.desc}"] + hide_dependency_lines: false + id: "02854A3E8A5D5043" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.trains.subtitle}" + tasks: [ + { + id: "7D63DDE72E9AC188" + item: "create:track_station" + type: "item" + } + { + id: "48F6ED366BE64A71" + item: "create:railway_casing" + type: "item" + } + { + id: "1BC698B7C0124CA0" + item: "create:controls" + type: "item" + } + ] + title: "{quests.steam_age.trains.title}" + x: -15.5d + y: 16.0d + } + { + dependencies: ["6AA07588374B59AB"] + description: ["{quests.steam_age.vacuum_chamber.desc}"] + id: "5F3063C539C9CBBF" + subtitle: "{quests.steam_age.vacuum_chamber.subtitle}" + tasks: [{ + id: "5BAA167FA59D5C32" + item: "vintageimprovements:vacuum_chamber" + type: "item" + }] + title: "{quests.steam_age.vacuum_chamber.title}" + x: -12.5d + y: 15.0d + } + { + description: ["{quests.metal_age.black_steel_goodies.desc}"] + id: "209958FE2EEA5D72" + shape: "gear" + size: 3.0d + subtitle: "{quests.metal_age.black_steel_goodies.subtitle}" + tasks: [{ + id: "066CDB0C97CF74EF" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "tfc:metal/anvil/black_steel" + } + type: "item" + }] + title: "{quests.metal_age.black_steel_goodies.title}" + x: -19.5d + y: 3.0d + } + { + dependencies: ["1059288C22CB56BB"] + dependency_requirement: "one_completed" + description: ["{quests.steam_age.poor_paths.desc}"] + icon: "tfc:dirt/loam" + id: "6356072A435EFE81" + optional: true + shape: "diamond" + subtitle: "{quests.steam_age.poor_paths.subtitle}" + tasks: [ + { + disable_toast: true + id: "4F3DE27E5A72D7BD" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfc:dirt)" + } + } + optional_task: true + title: "Any #tfc:dirt" + type: "item" + } + { + disable_toast: true + id: "2A6A80CC908180C5" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfc:grass)" + } + } + optional_task: true + title: "Any #tfc:grass" + type: "item" + } + { + id: "63E8E70536A0E327" + type: "checkmark" + } + ] + title: "{quests.steam_age.poor_paths.title}" + x: -26.0d + y: -3.5d + } + { + dependencies: ["1059288C22CB56BB"] + dependency_requirement: "one_completed" + description: ["{quests.steam_age.normal_paths.desc}"] + icon: "tfc:grass_path/silty_loam" + id: "494E81202B0F36A7" + optional: true + shape: "diamond" + subtitle: "{quests.steam_age.normal_paths.subtitle}" + tasks: [ + { + id: "0E4FF871FD6313B1" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfc:paths)" + } + } + optional_task: true + title: "Any #tfc:paths" + type: "item" + } + { + disable_toast: true + id: "5F38585D28010C6C" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfc:rock/gravel)" + } + } + optional_task: true + title: "Any #tfc:rock/gravel" + type: "item" + } + { + id: "2ED43D8943143635" + item: "rnr:hoggin" + optional_task: true + type: "item" + } + { + id: "4CBEBCFBCB80C624" + type: "checkmark" + } + ] + title: "{quests.steam_age.normal_paths.title}" + x: -26.5d + y: -2.0d + } + { + dependencies: [ + "1059288C22CB56BB" + "379F434116632A89" + ] + dependency_requirement: "one_completed" + description: ["{quests.steam_age.good_paths.desc}"] + icon: "rnr:rock/sett_road/granite" + id: "52A82511A64B0A5B" + optional: true + shape: "diamond" + subtitle: "{quests.steam_age.good_paths.subtitle}" + tasks: [ + { + id: "17BE9908916FD48D" + item: "rnr:rock/sett_road/granite" + optional_task: true + type: "item" + } + { + id: "276FE934DBA46B50" + item: "rnr:rock/cobbled_road/granite" + optional_task: true + type: "item" + } + { + id: "3ED818D7E317850A" + item: "rnr:rock/flagstones/granite" + optional_task: true + type: "item" + } + { + id: "781B70D87BB8051D" + item: "rnr:pink_sandstone_flagstones" + optional_task: true + type: "item" + } + { + id: "3A58D37BC4DA80A9" + item: "rnr:rock/gravel_road/granite" + optional_task: true + type: "item" + } + { + id: "11F7E8FFE4575FF8" + item: "rnr:rock/macadam_road/granite" + optional_task: true + type: "item" + } + { + id: "5782F5692D6AF00A" + type: "checkmark" + } + ] + title: "{quests.steam_age.good_paths.title}" + x: -26.0d + y: -0.5d + } + { + dependencies: [ + "69BDD31A69062B6C" + "43D0B4F2ACB9931B" + "6903C72A254A7B08" + "2C35D4E01AEC02AA" + ] + description: ["{quests.steam_age.lv_circuit.desc}"] + icon: "gtceu:basic_electronic_circuit" + id: "3D8174C64DDC268B" + shape: "gear" + size: 3.0d + subtitle: "{quests.steam_age.lv_circuit.subtitle}" + tasks: [{ + id: "59CF003A962651B0" + item: "gtceu:basic_electronic_circuit" + type: "item" + }] + title: "{quests.steam_age.lv_circuit.title}" + x: -8.0d + y: 8.0d + } + { + description: ["{quests.steam_age.paper.desc}"] + disable_toast: true + id: "16CF5A9012EF4B27" + shape: "diamond" + subtitle: "{quests.steam_age.paper.subtitle}" + tasks: [{ + id: "1567AABEC83A6346" + item: "minecraft:paper" + type: "item" + }] + title: "{quests.steam_age.paper.title}" + x: -3.5d + y: 11.5d + } + { + description: ["{quests.metal_age.bronze_goodies.desc}"] + disable_toast: true + id: "6F1BC99BE641B671" + shape: "octagon" + size: 2.0d + subtitle: "{quests.metal_age.bronze_goodies.subtitle}" + tasks: [{ + id: "5B891E7A5DB66813" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfc:bronze_anvils)" + } + } + title: "Any #tfc:bronze_anvils" + type: "item" + }] + title: "{quests.metal_age.bronze_goodies.title}" + x: -22.5d + y: -2.0d + } + { + description: ["{quests.metal_age.wrought_iron_goodies.desc}"] + id: "6E8CEE02CB5B678B" + shape: "octagon" + size: 2.0d + subtitle: "{quests.metal_age.wrought_iron_goodies.subtitle}" + tasks: [{ + id: "14980AA2D20804BA" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "tfc:metal/anvil/wrought_iron" + } + type: "item" + }] + title: "{quests.metal_age.wrought_iron_goodies.title}" + x: -12.0d + y: -2.0d + } + { + description: ["{quests.metal_age.steel_goodies.desc}"] + id: "32046292AA5B0E30" + shape: "octagon" + size: 2.0d + subtitle: "{quests.metal_age.steel_goodies.subtitle}" + tasks: [{ + id: "6D4629A2C1063653" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "tfc:metal/anvil/steel" + } + type: "item" + }] + title: "{quests.metal_age.steel_goodies.title}" + x: -5.5d + y: 0.0d + } + { + dependencies: [ + "46FA9DD4755A5548" + "6100B3C732E379AA" + ] + description: ["{quests.steam_age.steam_macerator.desc}"] + id: "6CF7DCC996BACBFA" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.steam_macerator.subtitle}" + tasks: [{ + id: "19146D7510558652" + item: "gtceu:hp_steam_macerator" + type: "item" + }] + title: "{quests.steam_age.steam_macerator.title}" + x: -22.5d + y: 7.5d + } + { + dependencies: [ + "6CF7DCC996BACBFA" + "5E4FC017E09ACF44" + ] + dependency_requirement: "one_completed" + description: ["{quests.steam_age.steam_grinder.desc}"] + icon: "gtceu:steam_grinder" + id: "0CC370A6FC56935B" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.steam_grinder.subtitle}" + tasks: [ + { + id: "1CD61C4F273665DE" + item: "gtceu:steam_grinder" + type: "item" + } + { + count: 22L + id: "71D6716A2B985592" + item: { Count: 22, id: "gtceu:steam_machine_casing" } + type: "item" + } + { + id: "26D9013B4161E463" + item: "gtceu:steam_input_hatch" + type: "item" + } + { + id: "7D354B529103D126" + item: "gtceu:steam_input_bus" + type: "item" + } + { + id: "63B935735E346133" + item: "gtceu:steam_output_bus" + type: "item" + } + ] + title: "{quests.steam_age.steam_grinder.title}" + x: -24.5d + y: 7.5d + } + { + dependencies: ["32046292AA5B0E30"] + description: ["{quests.steam_age.rotation_speed_controller.desc}"] + id: "414835BADD34513F" + optional: true + subtitle: "{quests.steam_age.rotation_speed_controller.subtitle}" + tasks: [{ + id: "74770DF964D26059" + item: "create:rotation_speed_controller" + type: "item" + }] + title: "{quests.steam_age.rotation_speed_controller.title}" + x: -7.5d + y: 0.0d + } + { + dependencies: [ + "6FFD4990FF07078A" + "3E175E20C91F168B" + ] + description: ["{quests.steam_age.resin_boards.desc}"] + id: "05BE9FE74E4F1AE9" + subtitle: "{quests.steam_age.resin_boards.subtitle}" + tasks: [{ + id: "1367C83F3529D5EA" + item: "gtceu:resin_circuit_board" + type: "item" + }] + title: "{quests.steam_age.resin_boards.title}" + x: -11.5d + y: 11.5d + } + { + dependencies: ["6E8CEE02CB5B678B"] + description: [ + "{quests.metal_age.coke_oven.desc.1}" + "{@pagebreak}" + "{quests.metal_age.coke_oven.desc.2}" + "{@pagebreak}" + "" + "{image:tfg:textures/quests/auto_coke.png width:100 height:100 align:center}" + ] + id: "0D0D461AE3A3F7BF" + size: 1.5d + subtitle: "{quests.metal_age.coke_oven.subtitle}" + tasks: [ + { + id: "1D22CEA76A676434" + item: "gtceu:coke_oven" + type: "item" + } + { + id: "7C2595BA70CBB39E" + item: "gtceu:coke_oven_bricks" + type: "item" + } + { + id: "11981B2183C67CE0" + item: "gtceu:coke_oven_hatch" + type: "item" + } + ] + title: "{quests.metal_age.coke_oven.title}" + x: -14.5d + y: -2.0d + } + { + dependencies: ["033E74BC588E7EAD"] + description: ["{quests.steam_age.packager.desc}"] + icon: "create:package_frogport" + id: "509E85016A2B199C" + shape: "gear" + size: 2.0d + subtitle: "{quests.steam_age.packager.subtitle}" + tasks: [{ + id: "4319E4113F8EBB13" + type: "checkmark" + }] + title: "{quests.steam_age.packager.title}" + x: -19.5d + y: 17.5d + } + { + dependencies: [ + "7B045998769930F0" + "55FDF06AC0C01D0B" + ] + description: ["{quests.steam_age.basic_mech_press.desc}"] + id: "14710C5B4981CECC" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.basic_mech_press.subtitle}" + tasks: [{ + id: "2F89D6D6745465DC" + item: "greate:andesite_alloy_mechanical_press" + type: "item" + }] + title: "{quests.steam_age.basic_mech_press.title}" + x: -18.5d + y: -2.0d + } + { + dependencies: [ + "09D913288896A67A" + "05A39719B66B8F76" + ] + description: [ + "{quests.steam_age.steel_mech_press.desc.1}" + "{@pagebreak}" + "{quests.steam_age.steel_mech_press.desc.2}" + ] + id: "0D39D83AA5F9D543" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.steel_mech_press.subtitle}" + tasks: [{ + id: "32E30B6AC780CAF1" + item: "greate:steel_mechanical_press" + type: "item" + }] + title: "{quests.steam_age.steel_mech_press.title}" + x: -7.5d + y: 4.0d + } + { + dependencies: ["183D47F04CAEBFA7"] + description: ["{quests.steam_age.fuel_sources.desc}"] + icon: "createdeco:decal_fire" + id: "753A53733C6DFA04" + shape: "circle" + subtitle: "{quests.steam_age.fuel_sources.subtitle}" + tasks: [{ + id: "38A3F9A1D2F11EE3" + type: "checkmark" + }] + title: "{quests.steam_age.fuel_sources.title}" + x: -7.5d + y: -2.0d + } + { + dependencies: ["32046292AA5B0E30"] + description: ["{quests.steam_age.large_water_wheel.desc}"] + id: "56A068A5488CB273" + subtitle: "{quests.steam_age.large_water_wheel.subtitle}" + tasks: [{ + id: "5772AD3BB700FD84" + item: "create:large_water_wheel" + type: "item" + }] + title: "{quests.steam_age.large_water_wheel.title}" + x: -3.5d + y: -2.0d + } + { + dependencies: ["2C35D4E01AEC02AA"] + description: ["{quests.steam_age.supers.desc}"] + icon: "gtceu:ulv_super_chest" + id: "671405A9F3A8DFDB" + subtitle: "{quests.steam_age.supers.subtitle}" + tasks: [{ + id: "5F5A6967B674C05A" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:ulv_super_chest)item(gtceu:lv_super_chest)item(gtceu:mv_super_chest)item(gtceu:hv_super_chest)item(gtceu:ev_super_chest)item(gtceu:iv_quantum_chest)item(gtceu:luv_quantum_chest)item(gtceu:zpm_quantum_chest)item(gtceu:uv_quantum_chest)item(gtceu:uhv_quantum_chest)item(gtceu:ulv_super_tank)item(gtceu:lv_super_tank)item(gtceu:mv_super_tank)item(gtceu:hv_super_tank)item(gtceu:ev_super_tank)item(gtceu:iv_quantum_tank)item(gtceu:luv_quantum_tank)item(gtceu:zpm_quantum_tank)item(gtceu:uv_quantum_tank)item(gtceu:uhv_quantum_tank))" + } + } + title: "{quests.steam_age.supers.task}" + type: "item" + }] + title: "{quests.steam_age.supers.title}" + x: -10.5d + y: 13.5d + } + { + dependencies: ["0D0D461AE3A3F7BF"] + description: ["{quests.steam_age.multiblock_tank.desc}"] + icon: "gtceu:wooden_multiblock_tank" + id: "636B13A7B9755F2A" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.multiblock_tank.subtitle}" + tasks: [ + { + id: "0522DC5B9C4560B3" + item: "gtceu:wooden_multiblock_tank" + type: "item" + } + { + count: 24L + id: "6AE2B07A7FEA130F" + item: { Count: 24, id: "gtceu:wood_wall" } + type: "item" + } + { + id: "1580633542EB6DFB" + item: "gtceu:wooden_tank_valve" + type: "item" + } + ] + title: "{quests.steam_age.multiblock_tank.title}" + x: -16.5d + y: -2.0d + } + { + dependencies: ["59F7F7A8C76DE31C"] + description: ["{quests.steam_age.steam_presser.desc}"] + icon: "tfg:steam_presser" + id: "65B6E2DACCF9159C" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.steam_presser.subtitle}" + tasks: [ + { + id: "0AEC3F770A6166A4" + item: "tfg:steam_presser" + type: "item" + } + { + id: "5CC7BDBF599B405A" + item: "gtceu:steam_input_hatch" + type: "item" + } + { + id: "4998CA4B8DDF6E02" + item: "gtceu:steam_input_bus" + type: "item" + } + { + id: "31A69C679FC6F99A" + item: "gtceu:steam_output_bus" + type: "item" + } + { + count: 12L + id: "709D4C32D2F43ABD" + item: "gtceu:steam_machine_casing" + type: "item" + } + { + count: 4L + id: "559F1DA9AF2EC5C3" + item: { Count: 4, id: "gtceu:steel_machine_casing" } + type: "item" + } + { + count: 8L + id: "769C82179FD4F75B" + item: { Count: 8, id: "create:metal_girder" } + type: "item" + } + ] + title: "{quests.steam_age.steam_presser.title}" + x: -24.5d + y: 6.5d + } + { + dependencies: ["1912758422EEB006"] + description: ["{quests.steam_age.steam_fuser.desc}"] + icon: "tfg:steam_fuser" + id: "49F5B708E8F59ABF" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.steam_fuser.subtitle}" + tasks: [ + { + id: "29EB9A9D81750312" + item: "tfg:steam_fuser" + type: "item" + } + { + id: "5496E814C911D5C1" + item: "gtceu:steam_input_hatch" + type: "item" + } + { + id: "40181C28B6560C94" + item: "gtceu:steam_output_bus" + type: "item" + } + { + id: "249376D261C69933" + item: "gtceu:steam_input_bus" + type: "item" + } + { + count: 8L + id: "790DDB716EAE9769" + item: { Count: 8, id: "gtceu:steam_machine_casing" } + type: "item" + } + { + count: 8L + id: "266BA05C0A212C6C" + item: { Count: 8, id: "gtceu:bronze_firebox_casing" } + type: "item" + } + ] + title: "{quests.steam_age.steam_fuser.title}" + x: -24.5d + y: 8.5d + } + { + dependencies: ["7DB7AB5349218605"] + description: ["{quests.steam_age.steam_squasher.desc}"] + icon: "tfg:steam_squasher" + id: "60399CB594078DE2" + optional: true + shape: "heart" + subtitle: "{quests.steam_age.steam_squasher.subtitle}" + tasks: [ + { + id: "74B02BED5D414B4C" + item: "tfg:steam_squasher" + type: "item" + } + { + id: "3BBEAD3334C1E3D0" + item: "gtceu:steam_input_hatch" + type: "item" + } + { + id: "6D8C5AA895D6DC15" + item: "gtceu:steam_output_bus" + type: "item" + } + { + id: "0D2DC79ED3C74B1F" + item: "gtceu:steam_input_bus" + type: "item" + } + { + count: 7L + id: "4BDAA78AC3C92713" + item: "gtceu:steam_machine_casing" + type: "item" + } + { + count: 3L + id: "4DFE7CD587BFFAB9" + item: { Count: 3, id: "gtceu:bronze_machine_casing" } + type: "item" + } + { + count: 6L + id: "7C5983298F614109" + item: { Count: 6, id: "gtceu:steel_frame" } + type: "item" + } + ] + title: "{quests.steam_age.steam_squasher.title}" + x: -14.5d + y: 8.5d + } + ] + subtitle: ["{quests.steam_age.subtitle}"] + title: "{quests.steam_age}" +} diff --git a/config/ftbquests/quests/chapters/questsstoneage.snbt b/config/ftbquests/quests/chapters/questsstoneage.snbt index 18dd7123d..b429838d3 100644 --- a/config/ftbquests/quests/chapters/questsstoneage.snbt +++ b/config/ftbquests/quests/chapters/questsstoneage.snbt @@ -8,15 +8,7 @@ images: [ { height: 1.0d - image: "tfc:item/grass_block_top" - rotation: 0.0d - width: 1.0d - x: -3.0d - y: 10.5d - } - { - height: 1.0d - image: "minecraft:block/blue_ice" + image: "ad_astra:textures/gui/sprites/snowflake.png" rotation: 0.0d width: 1.0d x: -6.0d @@ -24,42 +16,40 @@ } { height: 1.0d - image: "minecraft:block/lava_still" + image: "ad_astra:textures/gui/sprites/fire.png" rotation: 0.0d width: 1.0d x: 0.0d y: 10.5d } + { + height: 1.0d + image: "tfc:textures/gui/book/icons/thermometer.png" + rotation: 0.0d + width: 1.0d + x: -3.0d + y: 10.5d + } ] order_index: 0 - quest_links: [ - { - id: "409385C6F6640BEA" - linked_quest: "427814F6E9386772" - shape: "gear" - size: 4.0d - x: 0.0d - y: 0.0d - } - { - disable_toast: true - id: "40D0029A2097C68F" - linked_quest: "3D7B0F3134C30364" - shape: "octagon" - size: 3.0d - x: 4.5d - y: 0.0d - } - ] + quest_links: [{ + id: "409385C6F6640BEA" + linked_quest: "427814F6E9386772" + shape: "gear" + size: 4.0d + x: 4.0d + y: 0.0d + }] quests: [ { - dependencies: ["3D7B0F3134C30364"] + dependencies: ["427814F6E9386772"] description: [ "{quests.stone_age.find_rock.desc}" "{@pagebreak}" "" "{image:tfc:textures/gui/book/gui/rock_knapping.png width:100 height:100 align:center fit:true}" ] + guide_page: "tfc:field_guide tfc:getting_started/introduction" id: "78E3BF0BEB48635B" size: 1.0d subtitle: "{quests.stone_age.find_rock.subtitle}" @@ -81,10 +71,11 @@ y: 0.0d } { - dependencies: ["3D7B0F3134C30364"] + dependencies: ["427814F6E9386772"] description: ["{quests.stone_age.find_potable_water.desc}"] icon: "createdeco:decal_fluid" id: "1D40CAE675C4BB91" + shape: "circle" size: 1.0d subtitle: "{quests.stone_age.find_potable_water.subtitle}" tasks: [{ @@ -95,7 +86,7 @@ type: "gamestage" }] title: "{quests.stone_age.find_potable_water.title}" - x: 4.5d + x: 4.0d y: 6.0d } { @@ -433,7 +424,7 @@ type: "item" }] title: "{quests.stone_age.water_jug.title}" - x: 7.0d + x: 6.5d y: 6.0d } { @@ -456,6 +447,7 @@ "" "{image:tfc:textures/gui/book/tutorial/pit_kiln_5.png width:100 height:100 align:center}" ] + guide_page: "tfc:field_guide tfc:getting_started/pit_kiln" id: "3630ED3B85753BB2" size: 2.0d subtitle: "{quests.stone_age.pit_kiln.subtitle}" @@ -493,6 +485,7 @@ "1D40CAE675C4BB91" ] description: ["{quests.stone_age.leather_flask.desc}"] + guide_page: "tfc:field_guide tfc:waterflasks/bladders" id: "62BD1E75FD629161" subtitle: "{quests.stone_age.leather_flask.subtitle}" tasks: [{ @@ -507,7 +500,7 @@ type: "item" }] title: "{quests.stone_age.leather_flask.title}" - x: 1.5d + x: 1.0d y: 6.0d } { @@ -516,6 +509,7 @@ "174DA15847665CF8" ] description: ["{quests.stone_age.iron_flask.desc}"] + guide_page: "tfc:field_guide tfc:waterflasks/recipes" id: "11C45DBB20ED7647" optional: true shape: "heart" @@ -538,14 +532,16 @@ type: "item" }] title: "{quests.stone_age.iron_flask.title}" - x: 2.5d + x: 2.0d y: 8.0d } { dependencies: ["3D7B0F3134C30364"] description: ["{quests.stone_age.find_clay.desc}"] + guide_page: "tfc:field_guide tfc:getting_started/pottery" hide_dependency_lines: true id: "021921B4D2044B3B" + shape: "diamond" subtitle: "{quests.stone_age.find_clay.subtitle}" tasks: [ { @@ -574,6 +570,7 @@ { dependencies: ["021921B4D2044B3B"] description: ["{quests.stone_age.clay.desc}"] + guide_page: "tfc:field_guide tfc:getting_started/pottery 3" id: "3687ACAD307EE7EF" subtitle: "{quests.stone_age.clay.subtitle}" tasks: [{ @@ -594,9 +591,9 @@ "{@pagebreak}" "{quests.stone_age.native_ores.desc.2}" ] + guide_page: "tfc:field_guide tfc:getting_started/finding_ores" hide_dependency_lines: true id: "669F84C6A2A64145" - shape: "diamond" subtitle: "{quests.stone_age.native_ores.subtitle}" tasks: [{ id: "0B70FD35D2C27E4C" @@ -625,6 +622,7 @@ "{quests.stone_age.firepit.desc.2}" "{image:tfg:textures/quests/firepit.png width:100 height:100 align:center}" ] + guide_page: "tfc:field_guide tfc:getting_started/firepit" icon: "tfc:pot" id: "5301A38F7EA81140" subtitle: "{quests.stone_age.firepit.subtitle}" @@ -682,6 +680,7 @@ ] dependency_requirement: "one_completed" description: ["{quests.stone_age.weld_copper_ingots.desc}"] + guide_page: "tfc:field_guide tfc:getting_started/primitive_anvils 6" id: "45A09AD0043FF92B" subtitle: "{quests.stone_age.weld_copper_ingots.subtitle}" tasks: [{ @@ -699,6 +698,7 @@ dependencies: ["5E186CD5E83BFDF0"] dependency_requirement: "one_completed" description: ["{quests.stone_age.flux.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/flux" icon: { Count: 1 ForgeCaps: { @@ -757,6 +757,7 @@ { dependencies: ["193F214E9F154980"] description: ["{quests.stone_age.rock_anvil.desc}"] + guide_page: "tfc:field_guide tfc:getting_started/primitive_anvils 3" id: "706A1824B1487385" subtitle: "{quests.stone_age.rock_anvil.subtitle}" tasks: [ @@ -852,6 +853,7 @@ { dependencies: ["78E3BF0BEB48635B"] description: ["{quests.stone_age.rock_knapping.desc}"] + guide_page: "tfc:field_guide tfc:getting_started/introduction 2" id: "4333D5794A37CF2D" subtitle: "{quests.stone_age.rock_knapping.subtitle}" tasks: [ @@ -1210,6 +1212,7 @@ { dependencies: ["193F214E9F154980"] description: ["{quests.stone_age.create_forge.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/charcoal_forge" id: "4D1CD95482EE2CDD" size: 2.0d subtitle: "{quests.stone_age.create_forge.subtitle}" @@ -1231,6 +1234,7 @@ "{quests.stone_age.get_raw_rock.desc}" "{image:tfg:textures/quests/raw_rock.png width:100 height:100 align:center}" ] + guide_page: "tfc:field_guide tfc:getting_started/primitive_anvils 5" hide_dependency_lines: false id: "193F214E9F154980" size: 1.5d @@ -1286,6 +1290,7 @@ "{@pagebreak}" "{quests.stone_age.mining_prep.desc.2}" ] + guide_page: "tfc:field_guide tfc:tfg_ores/ore_basics" icon: { Count: 1 ForgeCaps: { @@ -1302,6 +1307,7 @@ TorchPlacing: 1b } GT.Tool: { + DefaultEnchantments: [ ] HarvestLevel: 2 MaxDamage: 791 ToolSpeed: 6.0f @@ -1372,7 +1378,7 @@ guide_page: "tfc:field_guide tfc:mechanics/support_beams" icon: "createdeco:decal_warning" id: "618090A6D0D3B2F1" - shape: "diamond" + shape: "circle" size: 1.0d subtitle: "{quests.stone_age.hazards.subtitle}" tasks: [{ @@ -1385,7 +1391,7 @@ y: 10.5d } { - dependencies: ["3D7B0F3134C30364"] + dependencies: ["427814F6E9386772"] description: ["{quests.stone_age.foods.desc}"] id: "0FB8FD84B13F10C6" subtitle: "{quests.stone_age.foods.subtitle}" @@ -1402,7 +1408,7 @@ type: "item" }] title: "{quests.stone_age.foods.title}" - x: 4.5d + x: 4.0d y: -5.0d } { @@ -1478,8 +1484,10 @@ { dependencies: ["0FB8FD84B13F10C6"] description: ["{quests.stone_age.nutrition.desc}"] + guide_page: "tfc:field_guide tfc:getting_started/food_and_water 5" icon: "minecraft:apple" id: "749B3C8698D34E91" + shape: "circle" size: 1.5d subtitle: "{quests.stone_age.nutrition.subtitle}" tasks: [{ @@ -1487,7 +1495,7 @@ type: "checkmark" }] title: "{quests.stone_age.nutrition.title}" - x: 3.0d + x: 2.5d y: -5.0d } { @@ -1613,6 +1621,7 @@ { dependencies: ["4C444814F1C7B600"] description: ["{quests.stone_age.barrels.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/barrels" id: "3E8833E7CE591E6F" subtitle: "{quests.stone_age.barrels.subtitle}" tasks: [{ @@ -1634,6 +1643,7 @@ { dependencies: ["3E8833E7CE591E6F"] description: ["{quests.stone_age.leather.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/leather_making" id: "560B17BFBE8D477D" subtitle: "{quests.stone_age.leather.subtitle}" tasks: [{ @@ -1649,12 +1659,13 @@ type: "item" }] title: "{quests.stone_age.leather.title}" - x: 1.5d + x: 1.0d y: 13.5d } { dependencies: ["1D40CAE675C4BB91"] description: ["{quests.stone_age.hydration.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/hydration" icon: { Count: 1 id: "minecraft:potion" @@ -1671,28 +1682,37 @@ type: "checkmark" }] title: "{quests.stone_age.hydration.title}" - x: 6.0d + x: 5.5d y: 4.5d } { - dependencies: ["3D7B0F3134C30364"] + dependencies: ["427814F6E9386772"] description: ["{quests.stone_age.temperature.desc}"] icon: "minecraft:sunflower" id: "38839D3E049215CE" + shape: "circle" subtitle: "{quests.stone_age.temperature.subtitle}" tasks: [{ id: "5EF087A092F21202" type: "checkmark" }] title: "{quests.stone_age.temperature.title}" - x: 1.0d + x: 0.5d y: 3.0d } { dependencies: ["38839D3E049215CE"] description: ["{quests.stone_age.insulation.desc}"] + icon: { + Count: 1 + id: "tfcambiental:straw_hat" + tag: { + Damage: 0 + } + } id: "4521BB8892B386AF" - size: 2.0d + shape: "circle" + size: 1.5d subtitle: "{quests.stone_age.insulation.subtitle}" tasks: [{ id: "139FA72AB6F06E57" @@ -1706,6 +1726,7 @@ { dependencies: ["560B17BFBE8D477D"] description: ["{quests.stone_age.leather_armor.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/armor" id: "04E900CFE39D6A6C" optional: true subtitle: "{quests.stone_age.leather_armor.subtitle}" @@ -1802,6 +1823,7 @@ { dependencies: ["1D40CAE675C4BB91"] description: ["{quests.stone_age.glass_bottles.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/glassworking" id: "4F7B5C34B7CD27F2" subtitle: "{quests.stone_age.glass_bottles.subtitle}" tasks: [{ @@ -1817,7 +1839,7 @@ type: "item" }] title: "{quests.stone_age.glass_bottles.title}" - x: 6.5d + x: 6.0d y: 8.0d } { @@ -1831,7 +1853,7 @@ type: "checkmark" }] title: "{quests.stone_age.water_bucket.title}" - x: 4.5d + x: 4.0d y: 9.0d } { @@ -2267,6 +2289,43 @@ x: -1.0d y: 8.0d } + { + dependencies: ["669F84C6A2A64145"] + description: [ + "{quests.stone_age.medical_conditions.desc.1}" + "{@pagebreak}" + "{quests.stone_age.medical_conditions.desc.2}" + ] + icon: "createdeco:decal_skull" + id: "00117AD40FACB89D" + rewards: [ + { + id: "260BA8E2AB90DDF7" + item: "tfg:poison_pill" + type: "item" + } + { + id: "6402410E15263863" + item: "tfg:regeneration_pill" + type: "item" + } + { + id: "2135759D738A8AA1" + item: "tfg:antipoison_tablet" + type: "item" + } + ] + shape: "circle" + subtitle: "{quests.stone_age.medical_conditions.subtitle}" + tasks: [{ + id: "400064E41CACA499" + title: "{quests.stone_age.medical_conditions.task}" + type: "checkmark" + }] + title: "{quests.stone_age.medical_conditions.title}" + x: 14.0d + y: 7.0d + } ] subtitle: ["{quests.stone_age.subtitle}"] title: "{quests.stone_age}" diff --git a/config/ftbquests/quests/chapters/queststfc_tips.snbt b/config/ftbquests/quests/chapters/queststfc_tips.snbt index 843a2eb36..1062a46a6 100644 --- a/config/ftbquests/quests/chapters/queststfc_tips.snbt +++ b/config/ftbquests/quests/chapters/queststfc_tips.snbt @@ -52,6 +52,7 @@ dependencies: ["173F6FA60A5B280B"] description: ["{quests.tfg_tips.arborfirmacraft.desc}"] disable_toast: true + guide_page: "tfc:field_guide tfc:arborfirmacraft/tapping_index" icon: "afc:wood/sapling/weeping_maple" id: "1469936B5DE3AC28" shape: "octagon" @@ -72,7 +73,8 @@ dependencies: ["173F6FA60A5B280B"] description: ["{quests.tfg_tips.beneath.desc}"] disable_toast: true - icon: "minecraft:netherrack" + guide_page: "tfc:field_guide tfc:beneath/beneath" + icon: "minecraft:deepslate" id: "4AA0EBFBA5D8788C" shape: "octagon" size: 2.0d @@ -120,6 +122,7 @@ { dependencies: ["1469936B5DE3AC28"] description: ["{quests.tfg_tips.treetap.desc}"] + guide_page: "tfc:field_guide tfc:arborfirmacraft/tree_tapping" id: "128483FFDC8277A0" subtitle: "{quests.tfg_tips.treetap.subtitle}" tasks: [{ @@ -173,6 +176,7 @@ { dependencies: ["128483FFDC8277A0"] description: ["{quests.tfg_tips.find_latex_tree.desc}"] + guide_page: "tfc:field_guide tfc:arborfirmacraft/making_rubber" id: "4891E995D3EC2BD1" subtitle: "{quests.tfg_tips.find_latex_tree.subtitle}" tasks: [{ @@ -194,6 +198,7 @@ { dependencies: ["128483FFDC8277A0"] description: ["{quests.tfg_tips.find_syrup_tree.desc}"] + guide_page: "tfc:field_guide tfc:arborfirmacraft/making_syrups" id: "308BB7D9D210C8DA" subtitle: "{quests.tfg_tips.find_syrup_tree.subtitle}" tasks: [{ @@ -254,6 +259,7 @@ { dependencies: ["2EFB241490502DB3"] description: ["{quests.tfg_tips.beekeeping.desc}"] + guide_page: "tfc:field_guide tfc:firmalife/beekeeping" icon: "firmalife:beeswax" id: "1071B804483BB882" subtitle: "{quests.tfg_tips.beekeeping.subtitle}" @@ -409,6 +415,7 @@ ] dependency_requirement: "one_completed" description: ["{quests.tfg_tips.cellar.desc}"] + guide_page: "tfc:field_guide tfc:firmalife/cellar" id: "3D1FF501DE2E56FE" size: 1.5d subtitle: "{quests.tfg_tips.cellar.subtitle}" @@ -439,6 +446,7 @@ { dependencies: ["3D1FF501DE2E56FE"] description: ["{quests.tfg_tips.cellar_blocks.desc}"] + guide_page: "tfc:field_guide tfc:firmalife/food_shelves" id: "32CD6D2EADA0DCA3" subtitle: "{quests.tfg_tips.cellar_blocks.subtitle}" tasks: [{ @@ -460,6 +468,7 @@ { dependencies: ["2EFB241490502DB3"] description: ["{quests.tfg_tips.oven.desc}"] + guide_page: "tfc:field_guide tfc:firmalife/ovens" id: "029264BCA5477837" subtitle: "{quests.tfg_tips.oven.subtitle}" tasks: [ @@ -513,6 +522,7 @@ { dependencies: ["029264BCA5477837"] description: ["{quests.tfg_tips.oven_appliances.desc}"] + guide_page: "tfc:field_guide tfc:firmalife/oven_appliances" id: "73D5ED4099F99A47" subtitle: "{quests.tfg_tips.oven_appliances.subtitle}" tasks: [ @@ -585,6 +595,7 @@ { dependencies: ["73D5ED4099F99A47"] description: ["{quests.tfg_tips.jam.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/jarring" id: "5D373432F0C22C93" subtitle: "{quests.tfg_tips.jam.subtitle}" tasks: [ @@ -613,6 +624,7 @@ { dependencies: ["2EFB241490502DB3"] description: ["{quests.tfg_tips.preservation.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/decay" icon: "minecraft:clock" id: "4047EE998BC4CD03" subtitle: "{quests.tfg_tips.preservation.subtitle}" @@ -937,6 +949,7 @@ { dependencies: ["52D944ADA884EFEF"] description: ["{quests.tfg_tips.dry_fruit.desc}"] + guide_page: "tfc:field_guide tfc:firmalife/drying" id: "4417A395801DC4E5" subtitle: "{quests.tfg_tips.dry_fruit.subtitle}" tasks: [ @@ -1028,6 +1041,7 @@ ] dependency_requirement: "one_completed" description: ["{quests.tfg_tips.smoke_meat.desc}"] + guide_page: "tfc:field_guide tfc:firmalife/smoking" id: "1FC019B45383695E" subtitle: "{quests.tfg_tips.smoke_meat.subtitle}" tasks: [ @@ -1090,6 +1104,7 @@ "ftbfiltersystem:filter": "or(custom(HasPreservation/tfc:wood_grilled)custom(HasPreservation/firmaciv:oven_baked))" } } + optional_task: true title: "{quests.tfg_tips.cook_meat.task.1}" type: "item" } @@ -1102,9 +1117,15 @@ "ftbfiltersystem:filter": "or(item(tfc:wrought_iron_grill)item(firmalife:cured_oven_top))" } } + optional_task: true title: "{quests.tfg_tips.cook_meat.task.2}" type: "item" } + { + id: "3277299EE8419365" + title: "{quests.tasktype.checkmark}" + type: "checkmark" + } ] title: "{quests.tfg_tips.cook_meat.title}" x: 5.0d @@ -1113,6 +1134,7 @@ { dependencies: ["3C7F170E065B60E1"] description: ["{quests.tfg_tips.create_cheese.desc}"] + guide_page: "tfc:field_guide tfc:firmalife/cheese" id: "0FCB88A64D3FBF0F" subtitle: "{quests.tfg_tips.create_cheese.subtitle}" tasks: [{ @@ -1193,6 +1215,7 @@ { dependencies: ["2EFB241490502DB3"] description: ["{quests.tfg_tips.greenhouse.desc}"] + guide_page: "tfc:field_guide tfc:firmalife/greenhouse" icon: "firmalife:large_planter" id: "07FBA022050DA24A" subtitle: "{quests.tfg_tips.greenhouse.subtitle}" @@ -1223,6 +1246,7 @@ "{@pagebreak}" "{quests.tfg_tips.charcoal_pile.desc.4}" ] + guide_page: "tfc:field_guide tfc:mechanics/charcoal_pit" id: "7B2068B200631D5C" subtitle: "{quests.tfg_tips.charcoal_pile.subtitle}" tasks: [ @@ -1249,6 +1273,7 @@ { dependencies: ["150B7C5CD152E1BA"] description: ["{quests.tfg_tips.thatch_bed.desc}"] + guide_page: "tfc:field_guide tfc:getting_started/a_place_to_sleep" id: "4D11F11CE0E9F379" subtitle: "{quests.tfg_tips.thatch_bed.subtitle}" tasks: [ @@ -1312,6 +1337,7 @@ ] dependency_requirement: "one_completed" description: ["{quests.tfg_tips.loom.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/weaving" id: "1766C916084261AA" subtitle: "{quests.tfg_tips.loom.subtitle}" tasks: [{ @@ -1389,6 +1415,7 @@ { dependencies: ["1766C916084261AA"] description: ["{quests.tfg_tips.unrefined_paper.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/papermaking" id: "4CD3F04793CE47A2" subtitle: "{quests.tfg_tips.unrefined_paper.subtitle}" tasks: [{ @@ -1406,6 +1433,7 @@ "{quests.tfg_tips.panning.desc}" "{image:tfg:textures/quests/ore_deposit.png width:100 height:100 align:center}" ] + guide_page: "tfc:field_guide tfc:mechanics/panning" id: "082310DF9BEA92CE" subtitle: "{quests.tfg_tips.panning.subtitle}" tasks: [ @@ -1437,6 +1465,7 @@ "{quests.tfg_tips.sluice.desc}" "{image:tfg:textures/quests/sluice.png width:100 height:100 align:center}" ] + guide_page: "tfc:field_guide tfc:mechanics/sluices" id: "5261ECBE3438B05E" subtitle: "{quests.tfg_tips.sluice.subtitle}" tasks: [{ @@ -1458,6 +1487,7 @@ { dependencies: ["79FA776C414AE8E5"] description: ["{quests.tfg_tips.candles.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/lighting" id: "368E3C94EEDC11BB" subtitle: "{quests.tfg_tips.candles.subtitle}" tasks: [{ @@ -1720,6 +1750,7 @@ { dependencies: ["4A8910950F638BB5"] description: ["{quests.tfg_tips.beneath_temp_management.desc}"] + guide_page: "tfc:field_guide tfc:beneath/cooling" id: "39C21134FD02F94B" subtitle: "{quests.tfg_tips.beneath_temp_management.subtitle}" tasks: [ @@ -1798,6 +1829,7 @@ { dependencies: ["4A8910950F638BB5"] description: ["{quests.tfg_tips.beneath_clothes.desc}"] + guide_page: "tfc:field_guide tfc:beneath/cooling" icon: { Count: 1 id: "tfcambiental:silk_shirt" @@ -1819,6 +1851,7 @@ { dependencies: ["4A8910950F638BB5"] description: ["{quests.tfg_tips.juicer.desc}"] + guide_page: "tfc:field_guide tfc:beneath:water" id: "3D845616A2F7083F" subtitle: "{quests.tfg_tips.juicer.subtitle}" tasks: [{ @@ -1847,12 +1880,13 @@ { dependencies: ["5E2E37673AD87A4B"] description: ["{quests.tfg_tips.reach_the_beneath.desc}"] + guide_page: "tfc:field_guide tfc:beneath:biomes" id: "70DA01DFDAE54224" size: 2.0d subtitle: "{quests.tfg_tips.reach_the_beneath.subtitle}" tasks: [{ dimension: "minecraft:the_nether" - icon: "minecraft:netherrack" + icon: "minecraft:gilded_blackstone" id: "253320A57FAE6D0A" title: "{quests.tfg_tips.reach_the_beneath.task}" type: "dimension" @@ -1864,6 +1898,7 @@ { dependencies: ["70DA01DFDAE54224"] description: ["{quests.tfg_tips.piglin_bartering.desc}"] + guide_page: "tfc:field_guide tfc:beneath/piglins" id: "3D5C898F953FECFC" subtitle: "{quests.tfg_tips.piglin_bartering.subtitle}" tasks: [{ @@ -2080,6 +2115,7 @@ { dependencies: ["07FBA022050DA24A"] description: ["{quests.tfg_tips.greenhouse_automation.desc}"] + guide_page: "tfc:field_guide tfc:firmalife/planters" id: "30DD0DDF86C96926" optional: true shape: "gear" diff --git a/config/ftbquests/quests/chapters/queststfg.snbt b/config/ftbquests/quests/chapters/queststfg.snbt index 03040b111..7de9b687a 100644 --- a/config/ftbquests/quests/chapters/queststfg.snbt +++ b/config/ftbquests/quests/chapters/queststfg.snbt @@ -5,6 +5,14 @@ group: "19428C6E7A36D463" icon: "tfg:terra_firma_greg" id: "5DD2C08324B24805" + images: [{ + height: 2.0d + image: "tfg:textures/gui/tfg_logo_title_4181x688_with_shadow.png" + rotation: 0.0d + width: 12.15406976744186d + x: 0.0d + y: -3.0d + }] order_index: 0 quest_links: [ ] quests: [ @@ -59,7 +67,7 @@ subtitle: "{quests.tfg.capture_territory.subtitle}" tasks: [{ id: "5EB438DED5A994C4" - title: "{quests.tasktypes.checkmark}" + title: "{quests.tasktype.checkmark}" type: "checkmark" }] title: "{quests.tfg.capture_territory.title}" @@ -119,6 +127,7 @@ } } id: "590CE4F4FA385701" + optional: true rewards: [ { id: "58D1E7EFD006D7F7" @@ -146,6 +155,29 @@ x: 0.0d y: 4.5d } + { + dependencies: ["0B42D4AE2AC67F93"] + description: ["{quests.tfg.chunk_limit.desc}"] + icon: { + Count: 1 + ForgeCaps: { + "tfc:food": { + creationDate: 99999999999L + traits: [ ] + } + } + id: "tfc:food/cherry" + } + id: "12BCC8F968904105" + tasks: [{ + id: "6A9ABF4B83F7FC3E" + title: "{quests.tasktype.checkmark}" + type: "checkmark" + }] + title: "{quests.tfg.chunk_limit.title}" + x: -2.5d + y: 3.5d + } ] subtitle: ["{quests.tfg.subtitle}"] title: "{quests.tfg}" diff --git a/config/ftbquests/quests/chapters/tips__tools.snbt b/config/ftbquests/quests/chapters/tips__tools.snbt index adaa96260..9f57ea394 100644 --- a/config/ftbquests/quests/chapters/tips__tools.snbt +++ b/config/ftbquests/quests/chapters/tips__tools.snbt @@ -5,15 +5,6 @@ group: "19428C6E7A36D463" icon: "create:white_toolbox" id: "254D02A31AA8EB49" - images: [{ - color: 16762887 - height: 2.0d - image: "ftbquests:block/barrier_open" - rotation: 0.0d - width: 2.0d - x: -10.5d - y: 2.0d - }] order_index: 3 quest_links: [ { @@ -36,6 +27,14 @@ x: 2.5d y: 3.5d } + { + id: "1BD87B2814DE73B7" + linked_quest: "533F32CCAD9D5B51" + shape: "heart" + size: 1.2d + x: -1.5d + y: -6.0d + } ] quests: [ { @@ -76,7 +75,7 @@ { dependencies: [ "125563A12EE5C296" - "5792DDAA82895E67" + "56CA2EB7812529C5" ] description: ["{quests.tfg_tips.red_steel_backpack.desc}"] id: "4B79026C8D2DACC4" @@ -549,33 +548,28 @@ y: 2.0357142857142847d } { - dependencies: ["74AE7DB845B88CF3"] + dependencies: [ + "74AE7DB845B88CF3" + "0EFEE489906256AA" + ] + dependency_requirement: "one_completed" description: [ - "In this quest, we'll bestow upon you &5cursed wisdom&r... the ability to easily automate the Electrolyzer." - "" - "The &9Smart Item Filter&r is a filter that recognises Recipe Maps. When placed on the side of a machine, you can set it to \"&3Electrolyzer&r\" to allow insertion of electrolyzable items specifically. You heard that right - no need to filter manually!" - "" - "Oh, and it only gets &abetter&r. If you combine this bad boy with a &aRobot Arm&r, it'll only supply the &6exact amount&r of items required for a successful recipe to the machine." + "{quests.tfg_tips.smart_item_filter.desc.1}" "{@pagebreak}" - "Place the &aRobot Arm&r on your Electrolyzer, open its GUI, then place the &9Smart Filter&r inside. Ensure that the Smart Filter is set to Electrolyzer." - "" - "Next, configure it to &d&lImport&r and &d&lSupply Exact&r. Finally, attach any inventory &7(a chest will do)&r onto the side where you placed the &aRobot Arm&r. Ta-dah! You've figured out how to handle &6all&r Electrolyzer recipes!" - "" - "What about the output of the &3Electrolyzer&r? You may want to route the Fluids to several Tanks - or even &3Super Tanks&r if you've gotten that far. We highly recommend that you avoid any methods involving voiding Fluids.&7.&8. except for Water for obvious reasons." + "{quests.tfg_tips.smart_item_filter.desc.2}" "{@pagebreak}" - "&9Note:&r The Robot Arm has to facilitate the item transfer for its filtering functionality to work! Inserting directly into the machine &7(for instance, pushing with a Hopper!)&r will ignore the Robot Arm's &dSupply Exact&r setting." + "{quests.tfg_tips.smart_item_filter.desc.3}" ] icon: "gtceu:item_smart_filter" id: "222295CD03AF00DC" shape: "square" size: 1.0d - subtitle: "Knock, knock - who's that? It's MENSA!" + subtitle: "{quests.tfg_tips.smart_item_filter.subtitle}" tasks: [{ id: "11EC9A6D9E2C4B7E" item: "gtceu:item_smart_filter" type: "item" }] - title: "200IQ" x: 10.0d y: 8.0d } @@ -613,18 +607,12 @@ } { dependencies: ["02FDECC931B5E8EF"] - description: [ - "In theory, Crates are flat upgrades to Chests. A single block space that stores more items - what more could you ask for?" - "" - "Unfortunately, there's a small downside - Crates do not support item movement shortcuts well. We plan on fixing this in the long-term." - "" - "Where they shine however is the fact that they &6accept Covers&r, making them perfect candidates for buffers in automation." - ] + description: ["{quests.tfg_tips.crates.desc}"] icon: "gtceu:bronze_crate" id: "6702D52922D85C0D" shape: "square" size: 1.0d - subtitle: "Earlygame buffering" + subtitle: "{quests.tfg_tips.crates.subtitle}" tasks: [{ id: "2F8D9ACDF8EB5B8D" item: { @@ -636,38 +624,37 @@ } type: "item" }] - title: "GregTech Storage" + title: "{quests.tfg_tips.crates.title}" x: 7.0d y: 6.0d } { dependencies: ["6702D52922D85C0D"] - description: ["With that tape you wil be able to move around the crate. The main advantage? You can put anything in a crate, weight won't be an issue here."] + description: ["{quests.tfg_tips.tape.desc}"] icon: "gtceu:basic_tape" id: "36B64597F76625ED" shape: "square" size: 1.0d - subtitle: "Moving stuff around" + subtitle: "{quests.tfg_tips.tape.subtitle}" tasks: [{ id: "1257FC299E957859" item: "gtceu:basic_tape" type: "item" }] - title: "Tape for Crate" + title: "{quests.tfg_tips.tape.title}" x: 7.0d y: 7.0d } { dependencies: ["02FDECC931B5E8EF"] - description: ["With &5GregTech&r, you get access to various &6filters&r that help you ease into &aautomation&r. All of them are compatible with different &dCovers&r, which you'll learn more about during the &7LV&r Chapter.\\n\\nHere, we're introducing two more specific filters that you might find &bhandy&r in certain situations.\\n\\nTo use a filter, simply apply it as a &dCover&r on any &5GT Machine&r or &6pipe&r."] + description: ["{quests.tfg_tips.gt_filters.desc}"] icon: "gtceu:item_filter" id: "74AE7DB845B88CF3" - subtitle: "filters" tasks: [{ id: "268110D7B7999A7B" - title: "Filters" type: "checkmark" }] + title: "{quests.tfg_tips.gt_filters.title}" x: 9.0d y: 8.5d } @@ -682,8 +669,8 @@ type: "item" }] title: "{quests.tfg_tips.nano_saber.title}" - x: 12.5d - y: 10.0d + x: 11.5d + y: 11.0d } { dependencies: ["2D2CB8104E40E808"] @@ -702,12 +689,12 @@ type: "item" }] title: "{quests.tfg_tips.magnets.title}" - x: 12.5d + x: 11.5d y: 12.0d } { dependencies: ["57FE828BAA8F6276"] - description: ["The &6Face Mask&r will protect you from &cinhaling dangerous dust&r. It’s quite &aeasy to craft&r and should prevent issues when working with &5arsenic&r."] + description: ["{quests.tfg_tips.face_mask.desc}"] id: "361AC06D62D9BCCF" tasks: [{ id: "7AC3F8AF754C76E2" @@ -720,105 +707,73 @@ } type: "item" }] - x: 9.5d - y: 15.0d - } - { - dependencies: ["7516BF9C12015DF3"] - id: "103025F1C35CF578" - tasks: [{ - id: "05DA89E5871EE93D" - item: { - Count: 1 - id: "gtceu:nanomuscle_helmet" - tag: { } - } - type: "item" - }] - x: 4.5d - y: 13.0d + x: 8.5d + y: 14.0d } { dependencies: ["7516BF9C12015DF3"] id: "38FF003C9349C0F2" - tasks: [{ - id: "78123F2C1E8B08F5" - item: "gtceu:nanomuscle_chestplate" - type: "item" - }] - x: 4.5d - y: 14.0d - } - { - dependencies: ["7516BF9C12015DF3"] - id: "4497F39E06A14406" - tasks: [{ - id: "430BB68AD2F334C3" - item: "gtceu:nanomuscle_leggings" - type: "item" - }] - x: 4.5d - y: 15.0d - } - { - dependencies: ["7516BF9C12015DF3"] - id: "61E1244FF797F11F" - tasks: [{ - id: "1C5E79A87E343C64" - item: "gtceu:nanomuscle_boots" - type: "item" - }] - x: 4.5d - y: 16.0d - } - { - dependencies: ["7516BF9C12015DF3"] - id: "20565B5D56786A6E" - tasks: [{ - id: "51DBD71B96BB2673" - item: { - Count: 1 - id: "gtceu:quarktech_helmet" - tag: { } + tasks: [ + { + id: "7C3E295B35639EC9" + item: { + Count: 1 + id: "gtceu:nanomuscle_helmet" + tag: { } + } + type: "item" } - type: "item" - }] - x: 6.5d - y: 13.0d + { + id: "5A6F7D3FBD64E383" + item: "gtceu:nanomuscle_chestplate" + type: "item" + } + { + id: "71FC38DE4929E578" + item: "gtceu:nanomuscle_leggings" + type: "item" + } + { + id: "275CF158B69FF055" + item: "gtceu:nanomuscle_boots" + type: "item" + } + ] + x: 5.0d + y: 14.0d } { dependencies: ["7516BF9C12015DF3"] id: "4D5B75F5270CCBD3" - tasks: [{ - id: "6624FAF8B9BBD4CA" - item: "gtceu:quarktech_chestplate" - type: "item" - }] - x: 6.5d + tasks: [ + { + id: "4DFF8E5F32E7AFC3" + item: { + Count: 1 + id: "gtceu:quarktech_helmet" + tag: { } + } + type: "item" + } + { + id: "3AA49E7CEA246A9B" + item: "gtceu:quarktech_chestplate" + type: "item" + } + { + id: "573F87C0CFC826DA" + item: "gtceu:quarktech_leggings" + type: "item" + } + { + id: "0452DFF0948B9B3E" + item: "gtceu:quarktech_boots" + type: "item" + } + ] + x: 6.0d y: 14.0d } - { - dependencies: ["7516BF9C12015DF3"] - id: "31CE775295A1BBF1" - tasks: [{ - id: "6EAB7217D35DDF42" - item: "gtceu:quarktech_leggings" - type: "item" - }] - x: 6.5d - y: 15.0d - } - { - dependencies: ["7516BF9C12015DF3"] - id: "2613FA0502BB5F12" - tasks: [{ - id: "6A740FDB1D788187" - item: "gtceu:quarktech_boots" - type: "item" - }] - x: 6.5d - y: 16.0d - } { dependencies: ["4D5B75F5270CCBD3"] id: "035B0FDD90E51C0C" @@ -831,32 +786,16 @@ } type: "item" }] - x: 7.5d - y: 14.0d - } - { - dependencies: ["2D2CB8104E40E808"] - description: ["{quests.tfg_tips.gt_tools.desc}"] - id: "2CA86664C6E0C888" - subtitle: "{quests.tfg_tips.gt_tools.subtitle}" - tasks: [{ - id: "153D23778A26C74F" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(gtceu:lv_power_unit)item(gtceu:mv_power_unit)item(gtceu:hv_power_unit)item(gtceu:ev_power_unit)item(gtceu:iv_power_unit))" - } - } - type: "item" - }] - title: "{quests.tfg_tips.gt_tools.title}" - x: 12.5d - y: 11.0d + x: 6.0d + y: 15.0d } { dependencies: ["02FDECC931B5E8EF"] - description: ["As with any good tech mod, &5GregTech&r comes with a wide variety of &6tools&r you can use. To operate them, you'll need to &acharge them with energy&r β€” and there are several ways to do that: place the tool in a &6Battery Buffer&r, in an &denergy slot&r of a machine, or even better, use a &eTurbo Charger&r.\\n\\nJust remember: you can only charge an item using a power source of &7equal&r or &ahigher tier&r. &cLower-tier sources&r won’t work on higher-tier tools β€” but don’t worry, &cnothing should explode&r. Probably."] + description: [ + "{quests.tfg_tips.gt_power_tools.desc.1}" + "{@pagebreak}" + "{quests.tfg_tips.gt_power_tools.desc.2}" + ] icon: { Count: 1 id: "gtceu:iv_copper_drill" @@ -884,6 +823,7 @@ } } id: "2D2CB8104E40E808" + subtitle: "{quests.tfg_tips.gt_power_tools.subtitle}" tasks: [ { id: "5DA224C235E227E3" @@ -897,12 +837,13 @@ type: "item" } ] - x: 11.5d - y: 11.0d + title: "{quests.tfg_tips.gt_power_tools.title}" + x: 10.5d + y: 11.5d } { dependencies: ["02FDECC931B5E8EF"] - description: ["With &5GregTech&r comes its own line of armor. Sure, it was cool to wear &7metal plates&r, but now that you're an &bindustrial maniac&r, maybe it's time to check out some &atechnological armor&r.\\n\\n&5GregTech&r provides two models. The first one becomes available around &6HV&r and offers better protection than anything you've worn before. It's equipped with &estrong insulation&r to withstand Earth's harsh climate, and it may even be upgraded with a &dJetpack&r.\\n\\nThe second model won't be available until much later β€” around &1IV&r and &dLuV&r. This one will allow you to &9breathe in space&r using &3oxygen&r."] + description: ["{quests.tfg_tips.armor.desc}"] icon: "gtceu:advanced_integrated_circuit" id: "7516BF9C12015DF3" tasks: [{ @@ -910,25 +851,28 @@ title: "Armor" type: "checkmark" }] + title: "{quests.tfg_tips.armor.title}" x: 5.5d y: 13.0d } { dependencies: ["02FDECC931B5E8EF"] - description: ["With the new version of &5Gregtech&r, a &chazard system&r has been introduced. By holding &dShift&r while hovering over &cHazardous Materials&r, you can see how they might affect you.\\n\\nWe strongly advise using proper &6protective equipment&r to keep your &corgans intact&r."] - icon: "gtceu:generic_hazard_sign_block" + description: ["{quests.tfg_tips.hazard_materials.desc}"] + icon: "createdeco:decal_skull" id: "57FE828BAA8F6276" + subtitle: "{quests.tfg_tips.hazard_materials.subtitle}" tasks: [{ id: "2BB4EAF68B305732" title: "Hazard" type: "checkmark" }] + title: "{quests.tfg_tips.hazard_materials.title}" x: 9.5d y: 14.0d } { dependencies: ["57FE828BAA8F6276"] - description: ["The &6Gloves&r will obviously protect you from &cskin contact hazards&r. You have two ways to make them: a &7longer and more involved path&r through &2TerrafirmaCraft&r, or a much &aeasier method&r using the &6High Pressure Steam Alloy Smelter&r."] + description: ["{quests.tfg_tips.rubber_gloves.desc}"] id: "3DB4AD491EF28CBE" tasks: [{ id: "32F0E30B11FE80E4" @@ -946,7 +890,7 @@ } { dependencies: ["57FE828BAA8F6276"] - description: ["The &6Hazardous Materials Suit&r is the best way to protect yourself from &cany kind of harm&r. You’ll be able to craft it once you reach &bMV&r, and &ayou should definitely take the time to do so&r."] + description: ["{quests.tfg_tips.hazmat.desc}"] id: "784A0743B257EAEB" tasks: [ { @@ -994,26 +938,18 @@ type: "item" } ] - x: 10.5d + title: "{quests.tfg_tips.hazmat.title}" + x: 9.5d y: 15.0d } { dependencies: ["02FDECC931B5E8EF"] - description: [ - "&3Long-Distance Fluid Pipes&r can be used to send fluids across great distances. Place one endpoint at each end, and connect them with pipeline blocks." - "" - "These pipes instantly transfer from the input side to the output side." - "" - "They also have a minimum distance between pipe endpoints, so you can't use these for short-range operations." - "{@pagebreak}" - "These pipes have a reputation of being &4buggy&r to set up. If they don't seem to work at first, try rotating the endpoints with a &eWrench&r." - ] + description: ["{quests.tfg_tips.long_distance_fluids.desc}"] icon: "gtceu:long_distance_fluid_pipeline_endpoint" id: "0B1AA0D4CEBD06A8" - optional: true shape: "square" size: 1.0d - subtitle: "Wondering how to move that oil around?" + subtitle: "{quests.tfg_tips.long_distance_fluids.subtitle}" tasks: [ { count: 2L @@ -1027,24 +963,18 @@ type: "item" } ] - title: "Long-Distance Pipeline" + title: "{quests.tfg_tips.long_distance_fluids.title}" x: 6.0d y: 6.0d } { dependencies: ["02FDECC931B5E8EF"] - description: [ - "&3Long-Distance Item Pipes&r can be used to send items across great distances. Place one endpoint at each end, and connect them with pipeline blocks." - "" - "These pipes instantly transfer from the input side to the output side." - "" - "They also have a minimum distance between pipe endpoints, so you can't use these for short-range operations." - ] + description: ["{quests.tfg_tips.long_distance_items.desc}"] icon: "gtceu:long_distance_item_pipeline_endpoint" id: "22B0E30FF38145E7" shape: "square" size: 1.0d - subtitle: "Wondering how to move those ores around?" + subtitle: "{quests.tfg_tips.long_distance_items.subtitle}" tasks: [ { count: 2L @@ -1058,7 +988,7 @@ type: "item" } ] - title: "Long-Distance Items" + title: "{quests.tfg_tips.long_distance_items.title}" x: 5.0d y: 6.0d } @@ -1084,8 +1014,9 @@ } { dependencies: ["02FDECC931B5E8EF"] - description: ["You may have realized that most &eMultiblocks&r require a &6Maintenance Hatch&r. Until &6HV&r, where you can get an &aAutomatic Maintenance Hatch&r, you can use this item to fix the hatch without needing to use all of your maintenance tools.\\n\\nIt can be really useful if you don't want to invest in an &aAuto Maintenance Hatch&r yet, or if you're simply &cnot there yet&r."] + description: ["{quests.tfg_tips.duct_tape.desc}"] id: "179E89C50E900DC0" + subtitle: "{quests.tfg_tips.duct_tape.subtitle}" tasks: [{ id: "7D2E6F5F843864DE" item: "gtceu:duct_tape" @@ -1098,18 +1029,14 @@ dependencies: ["02FDECC931B5E8EF"] dependency_requirement: "one_completed" description: [ - "The &aPortable Scanner&r, or &aTricorder&r, is GTCEu's debug tool." - "" - "Using it will show you a block's details, the details of the energy network, its current status and contents, and its impact on performance." - "" - "It'll also display a percentage of fluid remaining in the fluid vein for the &3Fluid Rigs&r." + "{quests.tfg_tips.portable_scanner.desc.1}" "{@pagebreak}" - "&l&3Lore:&r&o This little useful device comes from GregTech 5. It was extremely useful in the early days, because very little information (basically nothing) was given by GUIs or WAILA." + "{quests.tfg_tips.portable_scanner.desc.2}" ] id: "58D40A430654C997" shape: "square" size: 1.0d - subtitle: "For the nosiest GregTech players" + subtitle: "{quests.tfg_tips.portable_scanner.subtitle}" tasks: [{ id: "1E2E112D32893B8D" item: "gtceu:portable_scanner" @@ -1121,8 +1048,9 @@ } { dependencies: ["02FDECC931B5E8EF"] - description: ["When you try to &aparallelize your setup&r with more machines, it can be a &cbother&r to set all the &einputs&r and &eoutputs&r for each one. Yeah, we're thinking of you, &dSuper Chests&r and &dTanks&r.\\n\\nIf you ever find yourself needing this &blittle tool&r, &adon't hesitate to use it&r."] + description: ["{quests.tfg_tips.memory_card.desc}"] id: "7D5E9CFBE5990DFF" + subtitle: "{quests.tfg_tips.memory_card.subtitle}" tasks: [{ id: "39E0696844506874" item: "gtceu:machine_memory_card" @@ -1133,8 +1061,9 @@ } { dependencies: ["02FDECC931B5E8EF"] - description: ["&bThe Terminal&r has one main purpose, and &awe highly encourage you to craft it&r.\\n\\nBuilding all these &eMultiblocks&r can be a bit &cintimidating&r, right? Well, here's a tip: use &dShift + Right-Click&r on any &6Multiblock Controller&r to &aautomatically assemble the entire structure&r!\\n\\nYou might need to &emove around some buses and hatches&r to suit your setup, but overall, this feature will save you a &alot of time&r."] + description: ["{quests.tfg_tips.terminal.desc}"] id: "2F6C9A987865B966" + subtitle: "{quests.tfg_tips.terminal.subtitle}" tasks: [{ id: "6A86F6C3566828BF" item: "gtceu:terminal" @@ -1155,13 +1084,14 @@ } type: "item" }] - x: 3.5d - y: 14.0d + x: 5.0d + y: 15.0d } { dependencies: ["037CDA933FBE2CBE"] description: ["{quests.tfg_tips.olive_oil.desc}"] id: "13FC17F88DFEB8A8" + optional: true size: 1.5d subtitle: "{quests.tfg_tips.olive_oil.subtitle}" tasks: [{ @@ -1183,6 +1113,7 @@ { dependencies: ["2D959136A5FC5F46"] description: ["{quests.tfg_tips.lamps.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/lamps" id: "037CDA933FBE2CBE" subtitle: "{quests.tfg_tips.lamps.subtitle}" tasks: [ @@ -1223,9 +1154,13 @@ y: 12.0d } { - dependencies: ["037CDA933FBE2CBE"] + dependencies: [ + "037CDA933FBE2CBE" + "5B2696206205CB2E" + ] description: ["{quests.tfg_tips.glowstone_lamp.desc}"] id: "61F58B402F1AE40B" + optional: true shape: "heart" size: 2.0d subtitle: "{quests.tfg_tips.glowstone_lamp.subtitle}" @@ -1248,6 +1183,7 @@ dependencies: ["037CDA933FBE2CBE"] description: ["{quests.tfg_tips.tallow.desc}"] id: "54E6994D5CC693A7" + optional: true size: 1.15d subtitle: "{quests.tfg_tips.tallow.subtitle}" tasks: [{ @@ -1270,6 +1206,7 @@ dependencies: ["037CDA933FBE2CBE"] description: ["{quests.tfg_tips.creosote.desc}"] id: "72C1E430FF6D2DD8" + optional: true size: 1.0d subtitle: "{quests.tfg_tips.creosote.subtitle}" tasks: [{ @@ -1296,6 +1233,7 @@ description: ["{quests.tfg_tips.lava_lamp.desc}"] icon: "minecraft:lava_bucket" id: "4EBABACAB444244D" + optional: true shape: "square" size: 1.75d subtitle: "{quests.tfg_tips.lava_lamp.subtitle}" @@ -1327,6 +1265,7 @@ { dependencies: ["2D959136A5FC5F46"] description: ["{quests.tfg_tips.glass_blocks.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/glassworking_applications" id: "382FC8824F311665" subtitle: "{quests.tfg_tips.glass_blocks.subtitle}" tasks: [ @@ -1383,6 +1322,7 @@ { dependencies: ["150B7C5CD152E1BA"] description: ["{quests.tfg_tips.glassblowing.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/glassworking" icon: { Count: 1 ForgeCaps: { @@ -1439,6 +1379,7 @@ { dependencies: ["150B7C5CD152E1BA"] description: ["{quests.tfg_tips.trowel.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/trowel" id: "26DFC32AD5DED4E9" subtitle: "{quests.tfg_tips.trowel.subtitle}" tasks: [{ @@ -1454,11 +1395,12 @@ }] title: "{quests.tfg_tips.trowel.title}" x: -6.5d - y: 8.5d + y: 9.0d } { dependencies: ["150B7C5CD152E1BA"] description: ["{quests.tfg_tips.fishing_net.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/fishing_nets" id: "2A57C41D681E4611" subtitle: "{quests.tfg_tips.fishing_net.subtitle}" tasks: [{ @@ -1474,8 +1416,8 @@ type: "item" }] title: "{quests.tfg_tips.fishing_net.title}" - x: -3.0d - y: 7.0d + x: -2.5d + y: 7.5d } { dependencies: ["150B7C5CD152E1BA"] @@ -1496,7 +1438,7 @@ }] title: "{quests.tfg_tips.cane.title}" x: -2.5d - y: 8.5d + y: 9.0d } { dependencies: ["72B3EA6588E18CCC"] @@ -1511,7 +1453,7 @@ type: "item" }] title: "{quests.tfg_tips.blank_disc.title}" - x: -3.5d + x: -6.0d y: -3.5d } { @@ -1532,7 +1474,7 @@ type: "item" }] title: "{quests.tfg_tips.dye_discs.title}" - x: -2.5d + x: -5.0d y: -5.0d } { @@ -1551,7 +1493,7 @@ type: "item" }] title: "{quests.tfg_tips.amogus.title}" - x: -3.5d + x: -6.0d y: -5.0d } { @@ -1571,7 +1513,7 @@ type: "item" }] title: "{quests.tfg_tips.special_discs.title}" - x: -4.5d + x: -7.0d y: -5.0d } { @@ -1683,7 +1625,7 @@ } ] title: "{quests.tfg_tips.disc_collector.title}" - x: -3.5d + x: -6.0d y: -6.5d } { @@ -1716,7 +1658,7 @@ } ] title: "{quests.tfg_tips.label_album.title}" - x: -5.5d + x: -8.0d y: -3.5d } { @@ -1737,7 +1679,7 @@ } ] title: "{quests.tfg_tips.etching_disc.title}" - x: -7.0d + x: -9.5d y: -3.5d } { @@ -1758,7 +1700,7 @@ type: "item" }] title: "{quests.tfg_tips.disc_players.title}" - x: -8.0d + x: -10.5d y: -2.5d } { @@ -1772,7 +1714,7 @@ type: "item" }] title: "{quests.tfg_tips.radio.title}" - x: -4.5d + x: -7.0d y: -2.0d } { @@ -1804,7 +1746,7 @@ type: "item" }] title: "{quests.tfg_tips.DIGGY_DIGGY_HOLE.title}" - x: -8.0d + x: -10.5d y: -4.5d } { @@ -1820,7 +1762,7 @@ type: "item" }] title: "{quests.tfg_tips.camera.title}" - x: 4.0d + x: 6.0d y: -3.5d } { @@ -1841,7 +1783,7 @@ type: "item" }] title: "{quests.tfg_tips.film_rolls.title}" - x: 6.0d + x: 8.0d y: -4.5d } { @@ -1872,7 +1814,7 @@ } ] title: "{quests.tfg_tips.developing_film.title}" - x: 7.5d + x: 9.5d y: -4.5d } { @@ -1889,7 +1831,7 @@ type: "checkmark" }] title: "{quests.tfg_tips.selfie.title}" - x: 6.0d + x: 8.0d y: -3.0d } { @@ -1903,7 +1845,7 @@ type: "item" }] title: "{quests.tfg_tips.photo.title}" - x: 9.0d + x: 11.0d y: -4.5d } { @@ -1917,7 +1859,7 @@ type: "item" }] title: "{quests.tfg_tips.photo_album.title}" - x: 10.0d + x: 12.0d y: -3.5d } { @@ -1931,7 +1873,7 @@ type: "item" }] title: "{quests.tfg_tips.photo_frame.title}" - x: 10.0d + x: 12.0d y: -5.5d } { @@ -1940,19 +1882,19 @@ id: "15AD11C9C5249AAF" subtitle: "{quests.tfg_tips.camera_attachments.subtitle}" tasks: [{ - id: "79F9084E031CFAF3" + id: "4DD87BA6E5997784" item: { Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - "ftbfiltersystem:filter": "or(item(minecraft:redstone_lamp)item(minecraft:spyglass))" + "ftbfiltersystem:filter": "or(item(minecraft:spyglass)item_tag(exposure:flashes))" } } title: "{quests.tfg_tips.camera_attachments.task}" type: "item" }] title: "{quests.tfg_tips.camera_attachments.title}" - x: 3.0d + x: 5.0d y: -5.5d } { @@ -1973,7 +1915,7 @@ type: "item" }] title: "{quests.tfg_tips.filters.title}" - x: 4.5d + x: 6.5d y: -5.5d } { @@ -1993,7 +1935,7 @@ type: "item" }] title: "{quests.tfg_tips.interplanar_projector.title}" - x: 4.5d + x: 6.5d y: -7.0d } { @@ -2054,23 +1996,6 @@ x: -8.0d y: 2.0d } - { - dependencies: ["7A200766AAC1EE19"] - description: ["{quests.tfg_tips.grapple_repair.desc}"] - icon: "createdeco:decal_warning" - id: "1F93C858F1D02F7C" - shape: "none" - size: 2.0d - subtitle: "{quests.tfg_tips.grapple_repair.subtitle}" - tasks: [{ - id: "1269BD886B07619D" - title: "{quests.tasktype.checkmark}" - type: "checkmark" - }] - title: "{quests.tfg_tips.grapple_repair.title}" - x: -10.5d - y: 2.0d - } { dependencies: ["6C64C20FF5DF972A"] description: ["{quests.tfg_tips.grapple_length.desc}"] @@ -2121,7 +2046,7 @@ y: 0.0d } { - dependencies: ["1F93C858F1D02F7C"] + dependencies: ["7A200766AAC1EE19"] description: [ "{quests.tfg_tips.grapple_upgrades.desc.1}" "{@pagebreak}" @@ -2338,8 +2263,8 @@ type: "item" }] title: "{quests.tfg_tips.digger_helmet.title}" - x: -6.0d - y: 7.0d + x: -6.5d + y: 7.5d } { dependencies: ["72B3EA6588E18CCC"] @@ -2439,6 +2364,7 @@ dependencies: ["037CDA933FBE2CBE"] description: ["{quests.tfg_tips.tools_tips.seed_oil.desc}"] id: "30B9137740247627" + optional: true size: 1.25d subtitle: "{quests.tfg_tips.tools_tips.seed_oil.subtitle}" tasks: [{ @@ -2461,6 +2387,7 @@ dependencies: ["037CDA933FBE2CBE"] description: ["{quests.tfg_tips.tools_tips.soybean_oil.desc}"] id: "6C0A087006DF8679" + optional: true size: 1.25d subtitle: "{quests.tfg_tips.tools_tips.soybean_oil.subtitle}" tasks: [{ @@ -2504,6 +2431,7 @@ { dependencies: ["150B7C5CD152E1BA"] description: ["{quests.tfg_tips.tools_tips.harvest_basket.desc}"] + guide_page: "tfc:field_guide tfc:mechanics/harvest_baskets" id: "5B0A9757F1EF1B9E" subtitle: "{quests.tfg_tips.tools_tips.harvest_basket.subtitle}" tasks: [{ @@ -2575,11 +2503,12 @@ ] title: "{quests.tfg_tips.self_defense.title}" x: -2.5d - y: 0.5d + y: 1.0d } { dependencies: ["7FA5B6354A49C396"] description: ["{quests.tfg_tips.first_sacks.desc}"] + guide_page: "tfc:field_guide tfc:sns/leather_sack" id: "509C064AA92FD78F" subtitle: "{quests.tfg_tips.first_sacks.subtitle}" tasks: [ @@ -2623,6 +2552,7 @@ { dependencies: ["7178843BCD50A012"] description: ["{quests.tfg_tips.frame_pack.desc}"] + guide_page: "tfc:field_guide tfc:sns/frame_pack" id: "5443F4F5AE53B91A" shape: "octagon" size: 2.0d @@ -2649,6 +2579,7 @@ { dependencies: ["509C064AA92FD78F"] description: ["{quests.tfg_tips.special_sacks.desc}"] + guide_page: "tfc:field_guide tfc:sns/ore_sack" id: "21C58B2541BFA2EE" shape: "heart" subtitle: "{quests.tfg_tips.special_sacks.subtitle}" @@ -2715,6 +2646,7 @@ { dependencies: ["7FA5B6354A49C396"] description: ["{quests.tfg_tips.straw_basket.desc}"] + guide_page: "tfc:field_guide tfc:sns/straw_basket" id: "67F40A90844EC0FC" subtitle: "{quests.tfg_tips.straw_basket.subtitle}" tasks: [{ @@ -2739,6 +2671,7 @@ { dependencies: ["150B7C5CD152E1BA"] description: ["{quests.tfg_tips.hiking.desc}"] + guide_page: "tfc:field_guide tfc:sns/hiking_boots" icon: { Count: 1 id: "sns:hiking_boots" @@ -2776,7 +2709,183 @@ }] title: "{quests.tfg_tips.lightning_rod.title}" x: 2.5d - y: 0.5d + y: 1.0d + } + { + dependencies: ["72B3EA6588E18CCC"] + description: ["{quests.tfg_tips.tools_tips.mattocks.desc}"] + guide_page: "tfc:field_guide tfc:roadsandroofs/making_a_road 0" + icon: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "rnr:metal/mattock/red_steel" + tag: { + Damage: 0 + } + } + id: "379F434116632A89" + shape: "octagon" + size: 2.0d + subtitle: "{quests.tfg_tips.tools_tips.mattocks.subtitle}" + tasks: [ + { + id: "7F1DF0B2C51609B9" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "item_tag(rnr:mattocks)" + } + } + title: "{quests.tfg_tips.tools_tips.mattocks.task0}" + type: "item" + } + { + disable_toast: true + id: "2BF805FFBA137197" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "item_tag(rnr:road_materials)" + } + } + optional_task: true + title: "{quests.tfg_tips.tools_tips.mattocks.task1}" + type: "item" + } + ] + title: "{quests.tfg_tips.tools_tips.mattocks.title}" + x: 0.0d + y: -5.0d + } + { + dependencies: ["379F434116632A89"] + guide_page: "tfc:field_guide tfc:roadsandroofs/making_a_road" + id: "15277C12EEB517E1" + shape: "diamond" + subtitle: "{quests.tfg_tips.tools_tips.base_course.subtitle}" + tasks: [{ + icon: "rnr:base_course" + id: "0F2DA5DD3F25DE7E" + observe_type: 0 + timer: 0L + title: "{quests.tfg_tips.tools_tips.base_course.task}" + to_observe: "rnr:base_course" + type: "observation" + }] + title: "{quests.tfg_tips.tools_tips.base_course.title}" + x: 0.0d + y: -7.0d + } + { + dependencies: ["15277C12EEB517E1"] + description: ["{quests.tfg_tips.tools_tips.concrete_roads.desc}"] + disable_toast: true + guide_page: "tfc:field_guide tfc:roadsandroofs/concrete_roads 0" + id: "191DB28DC6FF4538" + subtitle: "{quests.tfg_tips.tools_tips.concrete_roads.subtitle}" + tasks: [{ + id: "0C8FBA664C0CE240" + item: "rnr:bucket/concrete" + type: "item" + }] + title: "{quests.tfg_tips.tools_tips.concrete_roads.title}" + x: 1.0d + y: -8.5d + } + { + dependencies: ["15277C12EEB517E1"] + description: ["{quests.tfg_tips.tools_tips.brick_roads.desc}"] + disable_toast: true + guide_page: "tfc:field_guide tfc:roadsandroofs/stone_roads 0" + id: "345EB58B7064BF4A" + subtitle: "{quests.tfg_tips.tools_tips.brick_roads.subtitle}" + tasks: [{ + id: "191AA0F89E28E686" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item_tag(rnr:brick_road_items)item_tag(rnr:cobble_road_items)item_tag(rnr:flagstone_road_items))" + } + } + title: "{quests.tfg_tips.tools_tips.brick_roads.task}" + type: "item" + }] + title: "{quests.tfg_tips.tools_tips.brick_roads.title}" + x: 0.0d + y: -8.5d + } + { + dependencies: ["15277C12EEB517E1"] + description: ["{quests.tfg_tips.tools_tips.gravel_roads.desc}"] + disable_toast: true + guide_page: "tfc:field_guide tfc:roadsandroofs/gravel_roads" + id: "7E46F50FEBEE9003" + subtitle: "{quests.tfg_tips.tools_tips.gravel_roads.subtitle}" + tasks: [{ + id: "5F5F20DAE5CB99CC" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item_tag(rnr:gravel_road_items)item(rnr:hoggin_mix))" + } + } + title: "{quests.tfg_tips.tools_tips.gravel_roads.task}" + type: "item" + }] + title: "{quests.tfg_tips.tools_tips.gravel_roads.title}" + x: -1.0d + y: -8.5d + } + { + dependencies: ["150B7C5CD152E1BA"] + description: ["{quests.tfg_tips.feeding_troughs.desc}"] + id: "343A712E8869482A" + subtitle: "{quests.tfg_tips.feeding_troughs.subtitle}" + tasks: [{ + id: "3F76A6864626C87F" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(tfcgroomer:copper_grooming_station)item(tfcgroomer:bronze_grooming_station)item(tfcgroomer:bismuth_bronze_grooming_station)item(tfcgroomer:black_bronze_grooming_station)item(tfcgroomer:wrought_iron_grooming_station)item(tfcgroomer:steel_grooming_station)item(tfcgroomer:black_steel_grooming_station)item(tfcgroomer:blue_steel_grooming_station)item(tfcgroomer:red_steel_grooming_station))" + } + } + title: "{quests.tfg_tips.feeding_troughs.task}" + type: "item" + }] + title: "{quests.tfg_tips.feeding_troughs.title}" + x: -5.5d + y: 6.5d + } + { + dependencies: ["150B7C5CD152E1BA"] + description: ["{quests.tfg_tips.scraping_knives.desc}"] + id: "2301E2248A3560C8" + subtitle: "{quests.tfg_tips.scraping_knives.subtitle}" + tasks: [{ + id: "193C47D8A2AD2265" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item_tag(tfcscraping:scraping_knives))" + } + } + title: "{quests.tfg_tips.scraping_knives.task}" + type: "item" + }] + title: "{quests.tfg_tips.scraping_knives.title}" + x: -3.5d + y: 6.5d } ] subtitle: ["{quests.tfg_tips.tools_tips.subtitle}"] diff --git a/config/ftbquests/quests/chapters/tips__transportation.snbt b/config/ftbquests/quests/chapters/tips__transportation.snbt index 32be7693c..0d8a1a5f3 100644 --- a/config/ftbquests/quests/chapters/tips__transportation.snbt +++ b/config/ftbquests/quests/chapters/tips__transportation.snbt @@ -402,6 +402,36 @@ x: 19.5d y: 0.0d } + { + alpha: 100 + color: 2401566 + height: 2.35d + image: "tfc:block/grass_top" + rotation: 0.0d + width: 2.35d + x: 8.5d + y: -3.5d + } + { + alpha: 100 + color: 2401566 + height: 2.35d + image: "tfc:block/grass_top" + rotation: 0.0d + width: 2.35d + x: 6.5d + y: -3.5d + } + { + alpha: 100 + color: 2401566 + height: 2.35d + image: "tfc:block/grass_top" + rotation: 0.0d + width: 2.35d + x: 4.5d + y: -3.5d + } ] order_index: 2 quest_links: [{ @@ -513,6 +543,7 @@ dependencies: ["2B84F34BFA37C828"] dependency_requirement: "one_completed" description: ["{quests.tfg_tips.canoe_materials.desc}"] + guide_page: "tfc:field_guide tfc:firmaciv/canoe" id: "32C854110D49A77D" subtitle: "{quests.tfg_tips.canoe_materials.subtitle}" tasks: [ @@ -573,6 +604,7 @@ { dependencies: ["2B84F34BFA37C828"] description: ["{quests.tfg_tips.kayak_materials.desc}"] + guide_page: "tfc:field_guide tfc:firmaciv/kayak" id: "03696C9BBC53AB26" subtitle: "{quests.tfg_tips.kayak_materials.subtitle}" tasks: [ @@ -619,6 +651,7 @@ "2B84F34BFA37C828" ] description: ["{quests.tfg_tips.rowboat_materials.desc}"] + guide_page: "tfc:field_guide tfc:firmaciv/rowboat" id: "3DF4F4848B231980" subtitle: "{quests.tfg_tips.rowboat_materials.subtitle}" tasks: [ @@ -692,6 +725,7 @@ dependencies: ["2B84F34BFA37C828"] dependency_requirement: "one_completed" description: ["{quests.tfg_tips.sloop_under_construction_materials.desc}"] + guide_page: "tfc:field_guide tfc:firmaciv/sloop" id: "2746958D3D4A0885" subtitle: "{quests.tfg_tips.sloop_under_construction_materials.subtitle}" tasks: [ @@ -814,6 +848,7 @@ { dependencies: ["78358ED2C6F6FCFD"] description: ["{quests.tfg_tips.warfare.desc}"] + guide_page: "tfc:field_guide tfc:firmaciv/cannon" id: "66FDACC7E7F9180C" subtitle: "{quests.tfg_tips.warfare.subtitle}" tasks: [ @@ -860,6 +895,7 @@ { dependencies: ["60497014785301EB"] description: ["{quests.tfg_tips.firmaciv.desc}"] + guide_page: "tfc:field_guide tfc:firmaciv/watercraft" icon: { Count: 1 ForgeCaps: { @@ -886,6 +922,7 @@ { dependencies: ["2B84F34BFA37C828"] description: ["{quests.tfg_tips.firmaciv_info.desc}"] + guide_page: "tfc:field_guide tfc:firmaciv/navigation" id: "5EDE435F876349CD" optional: true shape: "heart" @@ -1049,7 +1086,7 @@ type: "item" }] title: "{quests.tfg_tips.plow.title}" - x: 8.5d + x: 7.5d y: -1.5d } { @@ -1094,7 +1131,6 @@ { dependencies: ["7EE13BE102F323F3"] description: ["{quests.tfg_tips.reinforced_glider.desc}"] - hide_until_deps_complete: true id: "472D1C507490CC8A" optional: true shape: "heart" @@ -1431,21 +1467,9 @@ y: -2.0d } { - dependencies: ["05528D09F7EE6E33"] + dependencies: ["1594C2564FC7982D"] 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 - } - } + guide_page: "tfc:field_guide tfc:sns/horseshoes" id: "40566F6665A095C6" subtitle: "{quests.tfg_tips.horseshoes.subtitle}" tasks: [{ @@ -1461,11 +1485,12 @@ type: "item" }] title: "{quests.tfg_tips.horseshoes.title}" - x: 7.5d - y: -1.5d + x: 6.5196428571428555d + y: -2.6803571428571473d } { description: ["{quests.tfg_tips.hiking_boots.desc}"] + guide_page: "tfc:field_guide tfc:sns/safety_toe_hiking_boots" id: "598CA763D195C84E" subtitle: "{quests.tfg_tips.hiking_boots.subtitle}" tasks: [{ @@ -1484,6 +1509,25 @@ x: 8.5d y: 0.5d } + { + dependencies: [ + "05528D09F7EE6E33" + "5917B0D4708BF534" + ] + dependency_requirement: "one_completed" + description: ["{quests.tfg_tips.transportation_tips.rnr_plow.desc}"] + guide_page: "tfc:field_guide tfc:roadsandroofs/paving_cart 0" + id: "533F32CCAD9D5B51" + subtitle: "{quests.tfg_tips.transportation_tips.rnr_plow.subtitle}" + tasks: [{ + id: "44773CB0898D2375" + item: "tfg:rnr_plow" + type: "item" + }] + title: "{quests.tfg_tips.transportation_tips.rnr_plow.title}" + x: 8.5d + y: -1.5d + } ] subtitle: ["{quests.tfg_tips.transportation_tips.subtitle}"] title: "{quests.tfg_tips.transportation_tips.title}" diff --git a/config/ftbquests/quests/data.snbt b/config/ftbquests/quests/data.snbt index fa4943b41..dfec4b189 100644 --- a/config/ftbquests/quests/data.snbt +++ b/config/ftbquests/quests/data.snbt @@ -10,6 +10,7 @@ drop_loot_crates: false emergency_items_cooldown: 300 grid_scale: 0.5d + hide_excluded_quests: false icon: "tfg:terra_firma_greg" lock_message: "e" loot_crate_no_drop: { diff --git a/config/greate-recipes.yaml b/config/greate-recipes.yaml index 26c8e0850..352b7b5fd 100644 --- a/config/greate-recipes.yaml +++ b/config/greate-recipes.yaml @@ -5,6 +5,10 @@ enableGTWireCoatingRecipes: true # Enable/Disable harder recipes for various Create blocks & items. enableHardCreateRecipes: false +# Should certain Create items that have a GTCEu counterpart be used in recipes? +# If false, GTCEu items will be used instead. +useCreateItemsInRecipes: false + # Recipe types that should not be copied to Greate machines. Ex. 'gtceu:macerator' for macerator recipes ignoredRecipeTypes: - gtceu:ore_washer diff --git a/config/gtceu.yaml b/config/gtceu.yaml index 9a896aede..08f62e909 100644 --- a/config/gtceu.yaml +++ b/config/gtceu.yaml @@ -89,15 +89,35 @@ recipes: # Default: false enchantedTools: false + # Whether to enable macerator decomposition recycling + # Default: true + enableMaceratorRecycling: true + + # Percentage yield of macerator decomposition recycling outputs, 1.0 means 100% + # Default: 1.0f + maceratorRecyclingYield: 1.0 + + # Whether to enable arc furnace decomposition recycling + # Default: true + enableArcRecycling: true + + # Percentage yield of arc furnace decomposition recycling outputs, 1.0 means 100% + # Default: 1.0f + arcRecyclingYield: 1.0 + + # Whether to enable extractor decomposition recycling + # Default: true + enableExtractorRecycling: true + + # Percentage yield of extractor decomposition recycling outputs, 1.0 means 100% + # Default: 1.0f + extractorRecyclingYield: 1.0 + worldgen: # Rubber Tree spawn chance (decimal % per chunk) # Default: 0.5 rubberTreeSpawnChance: 0.0 - # Should all Stone Types drop unique Ore Item Blocks? - # Default: false (meaning only Stone, Netherrack, and Endstone) - allUniqueStoneTypes: true - # Should Sand-like ores fall? # This includes gravel, sand, and red sand ores. # Default: false (no falling ores) @@ -199,6 +219,10 @@ machines: # Default: false cleanMultiblocks: false + # Whether the miner should attempt to replace the block mined with a cobbled version of the ore + # Default: true + replaceWithCobbleVersion: true + # Block to replace mined ores with in the miner and multiblock miner. # Default: minecraft:cobblestone replaceMinedBlocksWith: tfc:rock/hardened/rhyolite @@ -211,9 +235,10 @@ machines: # Default: true enableMaintenance: true - # Time in ticks between when Multiblocks can require Maintenance. By default, 48 hours. - # Default: 3456000 - maintenanceTime: 3456000 + # How often to check for maintenance, rolling a 1/6000 chance every X ticks (before secondary effects like Configurable Maintenance Hatch). + # In default settings, this equates to a 5% chance every hour of a machine running. + # Default: 1000 (ticks) + maintenanceCheckRate: 1000 # Whether to enable World Accelerators, which accelerate ticks for surrounding Tile Entities, Crops, etc. # Default: true @@ -288,6 +313,9 @@ machines: # Default: 8 steamMultiParallelAmount: 8 + # Whether the Drums can input fluids from the output side (bottom). + allowDrumsInputFluidsFromOutputSide: false + # Small Steam Boiler Options smallBoilers: # The amount of steam a Steam Solid Boiler produces per second at max temperature. @@ -415,6 +443,10 @@ client: # Default: true renderFluids: true + # Render growing plants in multiblocks that support them? + # Default: true + renderGrowingPlants: true + # Whether or not to color tiered machine highlights in the tier color # Default: true coloredTieredMachineOutline: true @@ -423,6 +455,13 @@ client: # Default: true coloredWireOutline: true + tankItemFluidPreview: + # Set true to render the including fluid icons to GT Drums + drum: false + + # Set true to render the including fluid icons to Super (Quantum) Tanks + quantumTank: false + # Config options for Tools and Armor tools: # Random chance for electric tools to take actual damage @@ -470,7 +509,7 @@ tools: voltageTierQuarkTech: 5 # Advanced QuarkTech Suit Chestplate Voltage Tier. - # Default: 5 (LuV) + # Default: 6 (LuV) voltageTierAdvQuarkTech: 6 # Electric Impeller Jetpack Voltage Tier. @@ -606,6 +645,10 @@ compat: # Default: false showDimensionTier: false + # Whether Create compatibility will be available. + # Default: true + createCompat: true + dev: # Debug general events? (will print recipe conficts etc. to server's debug.log) # Default: false diff --git a/config/ihearttfc-client.toml b/config/ihearttfc-client.toml new file mode 100644 index 000000000..8d328eea6 --- /dev/null +++ b/config/ihearttfc-client.toml @@ -0,0 +1,13 @@ +#Renders partial hearts when your health total is not evenly divisible into heart values. +renderPartialHearts = true +#Uses 5x5 hearts instead of the vanilla 9x9, with a value of 25 each instead of 100. Will show a more precise total health value when partial hearts are turned off. +useSmallHearts = false +#Uses empty droplets for the thirst bar instead of puddles. +useEmptyDroplets = false +#Display saturation on the hunger bar like the popular mod "Appleskin". +displayAppleskinLikeSaturation = true +#Use pictographic half-eaten food for food icons instead of just cutting the full food image in half. +useHalfEatenFood = true +#Use the space that is normally taken up by the experience bar to show the current temperature. Overrides the TFC experience bar config. +showTemperatureInsteadOfExperience = true + diff --git a/config/immersive_aircraft.json b/config/immersive_aircraft.json index 67ff523d1..e6ba1c420 100644 --- a/config/immersive_aircraft.json +++ b/config/immersive_aircraft.json @@ -1,75 +1,75 @@ { - "enableDropsForNonPlayer": true, - "enableCrashExplosion": true, - "enableCrashBlockDestruction": false, - "enableCrashFire": false, - "crashExplosionRadius": 2.0, - "crashDamage": 2.0, - "preventKillThroughCrash": true, - "healthBarRow": 0, - "damagePerHealthPoint": 30, - "separateCamera": true, - "useThirdPersonByDefault": true, - "enableTrails": true, - "renderDistance": 192.0, - "fuelConsumption": 1.0, - "windClearWeather": 1.0, - "windRainWeather": 3.0, - "windThunderWeather": 3.0, - "repairSpeed": 0.025, - "repairExhaustion": 0.5, - "collisionDamage": true, - "collisionDamageMultiplier": 40.0, - "burnFuelInCreative": false, - "acceptVanillaFuel": true, - "useCustomKeybindSystem": true, - "showHotbarEngineGauge": true, - "weaponsAreDestructive": false, - "dropAircraft": true, - "dropInventory": true, - "dropUpgrades": false, - "regenerateHealthEveryNTicks": 0, - "requireShiftForRepair": false, - "bombBayEntity": { - "minecraft:egg": "tfc:chicken" - }, - "rotaryCannonDamage": 5.0, - "heavyCrossBowVelocity": 3.0, - "fuelList": { - "minecraft:blaze_powder": 1200, - "gtceu:coke_gem": 1200, - "beneath:cursecoal": 1200 - }, - "validDimensions": { - "minecraft:the_end": true, - "minecraft:the_nether": true, - "minecraft:overworld": true, - "ad_astra:earth_orbit": false, - "ad_astra:moon": false, - "ad_astra:moon_orbit": false, - "ad_astra:mars": false, - "ad_astra:mars_orbit": false, - "ad_astra:venus": true, - "ad_astra:venus_orbit": false, - "ad_astra:mercury": false, - "ad_astra:mercury_orbit": false, - "ad_astra:glacio": false, - "ad_astra:glacio_orbit": false - }, - "gunpowderAmmunition": { - "minecraft:gunpowder": 100 - }, - "arrowAmmunition": { - "minecraft:arrow": 100, - "minecraft:spectral_arrow": 100, - "minecraft:tipped_arrow": 100 - }, - "bombBayAmmunition": { - "minecraft:tnt": 100, - "gtceu:powderbarrel": 80, - "gtceu:industrial_tnt": 50, - "gtceu:dynamite": 200 - }, - "version": 1, - "name": "immersive_aircraft" + "enableDropsForNonPlayer": true, + "enableCrashExplosion": true, + "enableCrashBlockDestruction": false, + "enableCrashFire": false, + "crashExplosionRadius": 2.0, + "crashDamage": 2.0, + "preventKillThroughCrash": true, + "healthBarRow": 0, + "damagePerHealthPoint": 30, + "separateCamera": true, + "useThirdPersonByDefault": true, + "enableTrails": true, + "renderDistance": 192.0, + "fuelConsumption": 1.0, + "windClearWeather": 1.0, + "windRainWeather": 3.0, + "windThunderWeather": 3.0, + "repairSpeed": 0.025, + "repairExhaustion": 0.5, + "collisionDamage": true, + "collisionDamageMultiplier": 40.0, + "burnFuelInCreative": false, + "acceptVanillaFuel": true, + "useCustomKeybindSystem": true, + "showHotbarEngineGauge": true, + "weaponsAreDestructive": false, + "dropAircraft": true, + "dropInventory": true, + "dropUpgrades": false, + "regenerateHealthEveryNTicks": 0, + "requireShiftForRepair": false, + "bombBayEntity": { + "minecraft:egg": "tfc:chicken" + }, + "rotaryCannonDamage": 5.0, + "heavyCrossBowVelocity": 3.0, + "fuelList": { + "minecraft:blaze_powder": 1200, + "gtceu:coke_gem": 1200, + "beneath:cursecoal": 1200 + }, + "validDimensions": { + "minecraft:the_end": true, + "minecraft:the_nether": true, + "minecraft:overworld": true, + "ad_astra:earth_orbit": false, + "ad_astra:moon": false, + "ad_astra:moon_orbit": false, + "ad_astra:mars": false, + "ad_astra:mars_orbit": false, + "ad_astra:venus": true, + "ad_astra:venus_orbit": false, + "ad_astra:mercury": false, + "ad_astra:mercury_orbit": false, + "ad_astra:glacio": false, + "ad_astra:glacio_orbit": false + }, + "gunpowderAmmunition": { + "minecraft:gunpowder": 100 + }, + "arrowAmmunition": { + "minecraft:arrow": 100, + "minecraft:spectral_arrow": 100, + "minecraft:tipped_arrow": 100 + }, + "bombBayAmmunition": { + "minecraft:tnt": 100, + "gtceu:powderbarrel": 80, + "gtceu:industrial_tnt": 50, + "gtceu:dynamite": 200 + }, + "version": 1, + "name": "immersive_aircraft" } \ No newline at end of file diff --git a/config/immersive_optimization.json b/config/immersive_optimization.json index 8f8728a8c..4597219e1 100644 --- a/config/immersive_optimization.json +++ b/config/immersive_optimization.json @@ -1,43 +1,43 @@ { - "_documentation": "https://github.com/Luke100000/ImmersiveOptimization/wiki", - "enableEntities": true, - "enableBlockEntities": true, - "enableDistanceCulling": true, - "enableTrackingCulling": true, - "enableViewportCulling": true, - "minDistance": 6, - "blocksPerLevel": 64, - "blocksPerLevelDistanceCulled": 10, - "blocksPerLevelTrackingCulled": 10, - "blocksPerLevelViewportCulled": 20, - "maxLevel": 20, - "blocksPerLevelBlockEntities": 32, - "entityTickBudget": 30.0, - "stressedThreshold": 45, - "dimensions": { - "minecraft:overworld": true, - "minecraft:the_nether": true, - "minecraft:the_end": true, - "ad_astra:earth_orbit": true, - "ad_astra:moon": true, - "ad_astra:moon_orbit": true, - "ad_astra:mars": true, - "ad_astra:mars_orbit": true, - "ad_astra:venus": true, - "ad_astra:venus_orbit": true, - "ad_astra:mercury": true, - "ad_astra:mercury_orbit": true, - "ad_astra:glacio": true, - "ad_astra:glacio_orbit": true - }, - "entities": { - "fromanotherworld:starship": false, - "minecraft:player": false, - "minecraft:arrow": false, - "create": false, - "minecraft:ender_dragon": false, - "sandworm_mod": false - }, - "version": 2, - "name": "immersive_optimization" + "_documentation": "https://github.com/Luke100000/ImmersiveOptimization/wiki", + "enableEntities": true, + "enableBlockEntities": true, + "enableDistanceCulling": true, + "enableTrackingCulling": true, + "enableViewportCulling": true, + "minDistance": 6, + "blocksPerLevel": 64, + "blocksPerLevelDistanceCulled": 10, + "blocksPerLevelTrackingCulled": 10, + "blocksPerLevelViewportCulled": 20, + "maxLevel": 20, + "blocksPerLevelBlockEntities": 32, + "stressedThreshold": 45, + "minDecreaseFactor": 0.25, + "dimensions": { + "minecraft:overworld": true, + "minecraft:the_nether": true, + "minecraft:the_end": true, + "ad_astra:earth_orbit": true, + "ad_astra:moon": true, + "ad_astra:moon_orbit": true, + "ad_astra:mars": true, + "ad_astra:mars_orbit": true, + "ad_astra:venus": true, + "ad_astra:venus_orbit": true, + "ad_astra:mercury": true, + "ad_astra:mercury_orbit": true, + "ad_astra:glacio": true, + "ad_astra:glacio_orbit": true + }, + "entities": { + "fromanotherworld:starship": false, + "minecraft:player": false, + "minecraft:arrow": false, + "create": false, + "minecraft:ender_dragon": false, + "sandworm_mod": false + }, + "version": 2, + "name": "immersive_optimization" } \ No newline at end of file diff --git a/config/invtweaks-client.toml b/config/invtweaks-client.toml index 4f81d5e47..8bbc4332b 100644 --- a/config/invtweaks-client.toml +++ b/config/invtweaks-client.toml @@ -90,7 +90,7 @@ sortRange = "" [[sorting.containerOverrides]] - containerClass = "com.github.glodblock.epp.client.gui.*" + containerClass = "com.glodblock.github.extendedae.client.gui.*" sortRange = "" [[sorting.containerOverrides]] diff --git a/config/jade/plugins.json b/config/jade/plugins.json index a11eac63b..e440742bb 100644 --- a/config/jade/plugins.json +++ b/config/jade/plugins.json @@ -54,9 +54,6 @@ "painting": true, "chiseled_bookshelf": true }, - "greate": { - "belt_icon": true - }, "jadeaddons.create": { "filter": true, "backtank_capacity": true, @@ -90,7 +87,8 @@ "stained_color": true, "hazard_cleaner_provider": true, "cable_info": true, - "parallel_info": true + "parallel_info": true, + "data_bank": true }, "jade": { "coordinates.rel": false, @@ -155,6 +153,7 @@ "sapling": true, "rabbit": true, "composter": true, + "surfer": true, "decaying": true, "wall_torch": true, "windmill": true, @@ -193,9 +192,14 @@ "candle": true, "jack_o_lantern": true, "firepit": true, + "soarer": true, "wet_concrete": true, "ingot_pile": true }, + "deafission": { + "reactor": true, + "battery": true + }, "firmaciv": { "tfc_chest": true, "barrel": true diff --git a/config/jade/sort-order.json b/config/jade/sort-order.json index 7676c82ec..7956abee5 100644 --- a/config/jade/sort-order.json +++ b/config/jade/sort-order.json @@ -28,6 +28,8 @@ "create:goggles": null, "create:hide_boiler_tanks": null, "create:placard": null, + "deafission:battery": null, + "deafission:reactor": null, "expatternprovider:jade_chamber": null, "expatternprovider:jade_wireless": null, "expatternprovider:tile_data": null, @@ -69,6 +71,7 @@ "gtceu:controllable_provider": null, "gtceu:custom_fluid_storage": null, "gtceu:custom_item_storage": null, + "gtceu:data_bank": null, "gtceu:electric_container_provider": null, "gtceu:energy_converter_provider": null, "gtceu:exhaust_vent_info": null, @@ -193,7 +196,9 @@ "tfc:rabbit": null, "tfc:sapling": null, "tfc:sheet_pile": null, + "tfc:soarer": null, "tfc:squid": null, + "tfc:surfer": null, "tfc:torch": null, "tfc:wall_torch": null, "tfc:water_wheel": null, diff --git a/config/lithium.properties b/config/lithium.properties index aa0f88dd2..0b00dc625 100644 --- a/config/lithium.properties +++ b/config/lithium.properties @@ -7,4 +7,5 @@ # By default, this file will be empty except for this notice. mixin.world.player_chunk_tick=false -mixin.entity.collisions=false \ No newline at end of file +mixin.entity.collisions=false +mixin.ai.poi=false diff --git a/config/lithostitched.json b/config/lithostitched.json new file mode 100644 index 000000000..65a3b5519 --- /dev/null +++ b/config/lithostitched.json @@ -0,0 +1,8 @@ +{ + // If disabled, some mod compat features will be turned off to prioritize parity with vanilla seeds. + // The following features will break if disabled: + // - Custom wood type shipwrecks + // - Structure optimizations + "breaks_seed_parity": true, + "log_debug_messages": false +} \ No newline at end of file diff --git a/config/lootr-common.toml b/config/lootr-common.toml index 7fc827ea7..5ed06f7af 100644 --- a/config/lootr-common.toml +++ b/config/lootr-common.toml @@ -84,4 +84,6 @@ refresh_structures = [] refresh_all = false #if true, all block entities will be checked before being added to the ticker for an eligible loot table. enable this if a huge quantity of containers are clogging the conversion system; note that aggressive mode may prevent certain chests from properly converted even though eligible aggressive_mode = false +#allows players to open Lootr containers within spawn protection areas +bypass_spawn_protection = true diff --git a/config/modernfix-mixins.properties b/config/modernfix-mixins.properties index 0a656c7f5..f516e79ff 100644 --- a/config/modernfix-mixins.properties +++ b/config/modernfix-mixins.properties @@ -50,6 +50,7 @@ # mixin.feature.spark_profile_launch=false # (default) # mixin.feature.spark_profile_world_join=false # (default) # mixin.feature.stalled_chunk_load_detection=false # (default) +# mixin.feature.suppress_narrator_stacktrace=true # (default) # mixin.feature.warn_missing_perf_mods=true # (default) # mixin.launch.class_search_cache=true # (default) # mixin.perf.blast_search_trees=true # (default) @@ -62,6 +63,7 @@ # mixin.perf.chunk_meshing=true # (default) # mixin.perf.clear_mixin_classinfo=false # (default) # mixin.perf.compact_bit_storage=true # (default) +# mixin.perf.compact_mojang_registries=true # (default) # mixin.perf.compress_unihex_font=true # (default) # mixin.perf.datapack_reload_exceptions=true # (default) # mixin.perf.dedicated_reload_executor=true # (default) @@ -74,7 +76,6 @@ # mixin.perf.dynamic_resources.ctm=true # (default) # mixin.perf.dynamic_resources.ldlib=true # (default) # mixin.perf.dynamic_resources.supermartijncore=true # (default) -# mixin.perf.dynamic_sounds=true # (default) # mixin.perf.dynamic_structure_manager=true # (default) # mixin.perf.fast_forge_dummies=true # (default) # mixin.perf.fast_registry_validation=true # (default) @@ -97,19 +98,19 @@ # mixin.perf.reduce_blockstate_cache_rebuilds=true # (default) # mixin.perf.remove_biome_temperature_cache=true # (default) # mixin.perf.remove_spawn_chunks=false # (default) +# mixin.perf.resourcefullib_highlight_deduplication=true # (default) # mixin.perf.resourcepacks=true # (default) # mixin.perf.smart_ingredient_sync=true # (default) # mixin.perf.state_definition_construct=true # (default) # mixin.perf.tag_id_caching=true # (default) # mixin.perf.thread_priorities=false # (overridden for mod compat) # mixin.perf.ticking_chunk_alloc=true # (default) -# mixin.perf.worldgen_allocation=false # (default) +# mixin.perf.worldgen_allocation=true # (default) # mixin.safety=true # (default) # # User overrides go here. mixin.bugfix.packet_leak=true mixin.feature.disable_unihex_font=true -mixin.feature.spark_profile_launch=false mixin.perf.clear_mixin_classinfo=true mixin.perf.deduplicate_location=true mixin.perf.dynamic_entity_renderers=true @@ -117,4 +118,3 @@ mixin.perf.dynamic_resources=true mixin.perf.faster_item_rendering=true mixin.perf.remove_spawn_chunks=true mixin.perf.smart_ingredient_sync=false -mixin.perf.worldgen_allocation=true diff --git a/config/moldraw.yaml b/config/moldraw.yaml new file mode 100644 index 000000000..79bfa8716 --- /dev/null +++ b/config/moldraw.yaml @@ -0,0 +1,29 @@ +enabled: true + +onlyShowOnShift: true + +color: + colors: true + + useMaterialColors: false + + defaultColor: §e + + minimumBrightness: 0.1 + +molecule: + showMolecules: true + + moleculeScale: 20 + +alloy: + showAlloys: true + + pieChartRadius: 32 + + recursive: true + + partsByMass: false + +debugMode: false + diff --git a/config/moonlight-common.toml b/config/moonlight-common.toml index 0dbf52d84..eba15ddf6 100644 --- a/config/moonlight-common.toml +++ b/config/moonlight-common.toml @@ -6,4 +6,6 @@ extra_debug = false #Enable this will list each BlockTypes' Children. The List of BlockTypes' children will be also in the same file via EXTRA_DEBUG. NOTE: To enable this, EXTRA_DEBUG must be enabled, too. extra_children_debug = false + #Global datapack folder. A folder where you can store and load datapacks for all your worlds automatically. Set to empty string to disable + global_datapacks_folder = "moonlight-global-datapacks" diff --git a/config/notenoughanimations.json b/config/notenoughanimations.json index e36e1c413..c72f485ae 100644 --- a/config/notenoughanimations.json +++ b/config/notenoughanimations.json @@ -1,50 +1,69 @@ { - "configVersion": 11, - "animationSmoothingSpeed": 0.2, - "holdingItems": [ - "minecraft:clock", - "minecraft:recovery_compass", - "minecraft:soul_lantern", - "minecraft:compass", - "minecraft:torch", - "minecraft:lantern", - "minecraft:soul_torch" - ], - "enableAnimationSmoothing": true, - "enableInWorldMapRendering": true, - "enableOffhandHiding": true, - "enableRotationLocking": true, - "enableLadderAnimation": true, - "ladderAnimationAmplifier": 0.35, - "ladderAnimationArmHeight": 1.7, - "ladderAnimationArmSpeed": 2.0, - "enableRotateToLadder": true, - "enableEatDrinkAnimation": true, - "enableRowBoatAnimation": true, - "enableHorseAnimation": true, - "dontHoldItemsInBed": true, - "freezeArmsInBed": true, - "rotationLock": "NONE", - "showLastUsedSword": false, - "sheathSwords": [ - "minecraft:golden_sword", - "minecraft:iron_sword", - "minecraft:wooden_sword", - "minecraft:stone_sword", - "minecraft:diamond_sword", - "minecraft:netherite_sword" - ], - "enableCrawlingAnimation": true, - "holdUpItemsMode": "CONFIG", - "holdUpItemOffset": 0.0, - "itemSwapAnimation": true, - "tweakElytraAnimation": true, - "petAnimation": true, - "fallingAnimation": false, - "freezingAnimation": true, - "huggingAnimation": false, - "narutoRunning": false, - "enableInWorldBookRendering": false, - "disableLegSmoothing": false, - "bowAnimation": "VANILLA" + "configVersion": 11, + "animationSmoothingSpeed": 0.2, + "holdingItems": [ + "minecraft:clock", + "minecraft:recovery_compass", + "minecraft:soul_lantern", + "minecraft:compass", + "minecraft:torch", + "minecraft:lantern", + "minecraft:soul_torch", + "tfc:torch", + "minecraft:redstone_torch", + "tfc:metal/lamp/bismuth_bronze", + "tfc:metal/lamp/black_bronze", + "tfc:metal/lamp/black_steel", + "tfc:metal/lamp/blue_steel", + "tfc:metal/lamp/bronze", + "tfc:metal/lamp/copper", + "tfc:metal/lamp/red_steel", + "tfc:metal/lamp/steel", + "tfc:metal/lamp/wrought_iron" + ], + "enableAnimationSmoothing": true, + "enableInWorldMapRendering": true, + "enableOffhandHiding": true, + "enableRotationLocking": true, + "enableLadderAnimation": true, + "ladderAnimationAmplifier": 0.35, + "ladderAnimationArmHeight": 1.7, + "ladderAnimationArmSpeed": 2.0, + "enableRotateToLadder": true, + "enableEatDrinkAnimation": true, + "enableRowBoatAnimation": true, + "enableHorseAnimation": true, + "enableHorseLegAnimation": false, + "dontHoldItemsInBed": true, + "freezeArmsInBed": true, + "rotationLock": "NONE", + "limitRotationLockToFP": true, + "showLastUsedSword": false, + "sheathSwords": [ + "minecraft:golden_sword", + "minecraft:iron_sword", + "minecraft:wooden_sword", + "minecraft:stone_sword", + "minecraft:diamond_sword", + "minecraft:netherite_sword" + ], + "enableCrawlingAnimation": true, + "holdUpItemsMode": "CONFIG", + "holdUpTarget": "CAMERA", + "holdUpCameraOffset": 0.1, + "holdUpOnlySelf": false, + "holdUpItemOffset": 0.0, + "itemSwapAnimation": true, + "tweakElytraAnimation": true, + "petAnimation": true, + "fallingAnimation": false, + "freezingAnimation": true, + "huggingAnimation": false, + "narutoRunning": false, + "disableLegSmoothing": false, + "bowAnimation": "VANILLA", + "customBowRotationLock": false, + "clampCrossbowAnimations": false, + "burningAnimation": true, + "hideItemsForTheseBows": [] } \ No newline at end of file diff --git a/config/packetfixer.properties b/config/packetfixer.properties index bf2f88ce1..78648fc50 100644 --- a/config/packetfixer.properties +++ b/config/packetfixer.properties @@ -1,7 +1,7 @@ #Packet Fixer config file. #Default values (minecraft default): nbtMaxSize 2097152, packetSize 1048576, decoderSize 8388608 and varInt21Size 3. #Max values are 2147483647 for packetSize/decoderSize/varInt21 and 9223372036854775807 for nbtMaxSize. -#Sat Jul 19 21:52:19 YEKT 2025 +#Tue Dec 30 17:41:22 YEKT 2025 utfSize=3276700 allSizesUnlimited=true forceUnlimitedNbtEnabled=false diff --git a/config/railways-client.toml b/config/railways-client.toml index 36b4db25d..41aea197a 100644 --- a/config/railways-client.toml +++ b/config/railways-client.toml @@ -64,17 +64,3 @@ #Spawn steam on an interval spawnSteam = false - #. - #Journeymap Settings - [client.journeymap] - #. - #[in Ticks] - #Journeymap train overlay update time - #Range: 1 ~ 600 - updateRate = 1 - #. - #[in Ticks] - #Journeymap train overlay old marker removal check time - #Range: 10 ~ 1200 - removeObsoleteRate = 200 - diff --git a/config/shouldersurfing-client.toml b/config/shouldersurfing-client.toml new file mode 100644 index 000000000..c5d5ec178 --- /dev/null +++ b/config/shouldersurfing-client.toml @@ -0,0 +1,340 @@ + +[camera] + #The distance multiplier on whether or not to hide the player model if the camera gets too close to it. Set to 0 to disable. + #Range: 0.0 ~ 1.7976931348623157E308 + keep_camera_out_of_head_distance_multiplier = 0.75 + #Size of the camera adjustment per step. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + camera_step_size = 0.025 + #The speed multiplier at which the camera transitions between positions. + #Range: 0.05 ~ 1.0 + camera_transition_speed_multiplier = 0.25 + #The angle at which the camera will be centered when looking down. Set to 0 to disable. + #Range: 0.0 ~ 90.0 + center_camera_when_looking_down_angle = 1.0 + #Whether or not to dynamically adjust camera offsets depending on space constraints. + dynamically_adjust_offsets = true + #Whether or not to decouple the camera rotation from the player rotation. + decoupled_camera = true + #Whether or not to orient the camera rotation when the player is teleported. This includes passenger (dis-)mounting and traveling through portals. + orient_camera_on_teleport = true + #Whether or not to apply the FOV override when in shoulder surfing perspective. + fov_override_enabled = false + #The camera FOV when in shoulder surfing perspective. Depends on config option 'fov_override_enabled'. + #Range: 30.0 ~ 110.0 + fov_override = 70.0 + #Whether to apply view bobbing in shoulder surfing perspective. Set to INHERIT to inherit vanilla setting. + #Allowed Values: INHERIT, ON, OFF + view_bobbing_mode = "INHERIT" + + [camera.offset] + #Third person camera x-offset. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + offset_x = -0.75 + #Third person camera y-offset. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + offset_y = 0.0 + #Third person camera z-offset. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + offset_z = 4.0 + + [camera.offset.presets] + #A list of x-offset presets that can be toggled via the 'Toggle X-Offset Presets' keybind. WARNING: Duplicate entries can result in undefined behavior! + presets_offset_x = [] + #A list of y-offset presets that can be toggled via the 'Toggle Y-Offset Presets' keybind. WARNING: Duplicate entries can result in undefined behavior! + presets_offset_y = [] + #A list of z-offset presets that can be toggled via the 'Toggle Z-Offset Presets' keybind. WARNING: Duplicate entries can result in undefined behavior! + presets_offset_z = [] + + [camera.offset.min] + #When x-offset is limited this is the minimum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + min_offset_x = -3.0 + #When y-offset is limited this is the minimum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + min_offset_y = -1.0 + #When z-offset is limited this is the minimum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + min_offset_z = -3.0 + + [camera.offset.max] + #When x-offset is limited this is the maximum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + max_offset_x = 3.0 + #When y-offset is limited this is the maximum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + max_offset_y = 1.5 + #When z-offset is limited this is the maximum amount. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + max_offset_z = 5.0 + + [camera.offset.limits] + #Whether or not x-offset adjustment has limits. + unlimited_offset_x = false + #Whether or not y-offset adjustment has limits. + unlimited_offset_y = false + #Whether or not z-offset adjustment has limits. + unlimited_offset_z = false + + [camera.offset.multiplier] + + [camera.offset.multiplier.passenger] + #x-offset multiplier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_x = 1.0 + #y-offset multiplier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_y = 1.0 + #z-offset multiplier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_z = 1.0 + + [camera.offset.multiplier.sprint] + #x-offset multiplier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_x = 1.0 + #y-offset multiplier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_y = 1.0 + #z-offset multiplier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_z = 1.0 + + [camera.offset.multiplier.aiming] + #x-offset multiplier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_x = 1.0 + #y-offset multiplier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_y = 1.0 + #z-offset multiplier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_z = 1.0 + + [camera.offset.multiplier.fall_flying] + #x-offset multiplier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_x = 1.0 + #y-offset multiplier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_y = 1.0 + #z-offset multiplier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_z = 1.0 + + [camera.offset.multiplier.climbing] + #x-offset multiplier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_x = 0.0 + #y-offset multiplier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_y = 1.0 + #z-offset multiplier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + multiplier_offset_z = 1.0 + + [camera.offset.modifiers] + + [camera.offset.modifiers.passenger] + #x-offset modifier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_x = 0.0 + #y-offset modifier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_y = 0.0 + #z-offset modifier for when the player is a passenger. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_z = 0.0 + + [camera.offset.modifiers.sprint] + #x-offset modifier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_x = 0.0 + #y-offset modifier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_y = 0.0 + #z-offset modifier for when the player is sprinting. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_z = 0.0 + + [camera.offset.modifiers.aiming] + #x-offset modifier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_x = 0.0 + #y-offset modifier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_y = 0.0 + #z-offset modifier for when the player is aiming. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_z = 0.0 + + [camera.offset.modifiers.fall_flying] + #x-offset modifier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_x = 0.0 + #y-offset modifier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_y = 0.0 + #z-offset modifier for when using Elytra. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_z = 0.0 + + [camera.offset.modifiers.climbing] + #x-offset modifier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_x = 0.0 + #y-offset modifier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_y = 0.0 + #z-offset modifier for when the player is climbing. + #Range: -1.7976931348623157E308 ~ 1.7976931348623157E308 + modifier_offset_z = 0.0 + + [camera.camera_drag] + #x-axis multiplier for camera drag. + #Range: 0.0 ~ 5.0 + multiplier_axis_x = 0.0 + #y-axis multiplier for camera drag. + #Range: 0.0 ~ 5.0 + multiplier_axis_y = 0.0 + #z-axis multiplier for camera drag. + #Range: 0.0 ~ 5.0 + multiplier_axis_z = 0.0 + + [camera.camera_sway] + #The maximum x-axis angle in degrees. Set to 0 to disable. + #Range: -30.0 ~ 30.0 + max_angle_axis_x = 0.0 + #The maximum x-axis angle in degrees. Set to 0 to disable. + #Range: -30.0 ~ 30.0 + max_angle_axis_z = 0.0 + #The velocity of the player in blocks per second, where the maximum camera x-axis sway is applied. + #Range: 0.05 ~ 1000.0 + max_velocity_axis_x = 5.0 + #The velocity of the player in blocks per second, where the maximum camera z-axis sway is applied. + #Range: 0.05 ~ 1000.0 + max_velocity_axis_z = 5.0 + +[perspective] + #The default perspective when you load the game. + #Allowed Values: FIRST_PERSON, THIRD_PERSON_BACK, THIRD_PERSON_FRONT, SHOULDER_SURFING + default_perspective = "FIRST_PERSON" + #Whether or not to remember the last perspective used. + remember_last_perspective = true + #Whether or not to replace the default third person perspective. + replace_default_perspective = false + #Whether or not the first person perspective is enabled. + first_person_enabled = true + #Whether or not the third person front perspective is enabled. + third_person_front_enabled = true + #Whether or not the third person back perspective is enabled. + third_person_back_enabled = true + +[player] + #Whether or not to adjust the player model transparency when view is obstructed. Changing this value may require a game restart to take full effect. + adjust_player_transparency = true + #Whether or not to turn the player model transparent when aiming. This config option only applies when adjust player transparency is enabled. + turn_player_transparent_when_aiming = false + #The angle at which the player will no longer be rendered when looking up. Set to 0 to disable. + #Range: 0.0 ~ 90.0 + hide_player_when_looking_up_angle = 0.0 + #Whether the x-rot of the player should follow the camera x-rot. This config option only applies when camera is decoupled. + player_x_rot_follows_camera = false + #Whether the y-rot of the player should follow the camera y-rot. This config option only applies when camera is decoupled. + player_y_rot_follows_camera = false + #The maximum angle to which the player y-rot follows the camera y-rot. This config option only applies when player y-rot follows camera option is enabled. + #Range: 0.0 ~ 180.0 + player_y_rot_follow_angle_limit = 90.0 + + [player.turning] + #Whether to turn the player when using an item. This config option only applies when camera is decoupled. + #Allowed Values: ALWAYS, NEVER, REQUIRES_TARGET + when_using_item = "ALWAYS" + #Whether to turn the player when attacking. This config option only applies when camera is decoupled. + #Allowed Values: ALWAYS, NEVER, REQUIRES_TARGET + when_attacking = "REQUIRES_TARGET" + #Whether to turn the player when interacting with blocks. This config option only applies when camera is decoupled. + #Allowed Values: ALWAYS, NEVER, REQUIRES_TARGET + when_interacting = "ALWAYS" + #Whether to turn the player when picking blocks or entities. This config option only applies when camera is decoupled. + #Allowed Values: ALWAYS, NEVER, REQUIRES_TARGET + when_picking = "ALWAYS" + #The time in ticks the player will remain turned after the interaction has ended. Set to 0 to disable. This config option only applies when camera is decoupled. + #Range: > 0 + turning_lock_time = 4 + +[object_picker] + #The raytrace distance used for the dynamic crosshair. + #Range: 0.0 ~ 1.7976931348623157E308 + custom_raytrace_distance = 400.0 + #Whether or not to use the custom raytrace distance used for the dynamic crosshair. + use_custom_raytrace_distance = true + + [object_picker.pick_origin] + #The origin where the entity pick starts when using the static crosshair. + #Allowed Values: PLAYER, CAMERA + entity_pick_origin = "PLAYER" + #The origin where the block pick starts when using the static crosshair. + #Allowed Values: PLAYER, CAMERA + block_pick_origin = "PLAYER" + + [object_picker.pick_vector] + #The vector direction of the raytrace when picking objects. This config option only applies when using the dynamic crosshair. + #Allowed Values: PLAYER, CAMERA + pick_vector = "CAMERA" + +[crosshair] + #Crosshair type to use for shoulder surfing. + #Allowed Values: ADAPTIVE, DYNAMIC, STATIC, STATIC_WITH_1PP, DYNAMIC_WITH_1PP + crosshair_type = "STATIC" + #Items that when held, trigger the dynamic crosshair in adaptive mode. This config option supports regular expressions. Example: 'minecraft:.*sword' matches 'minecraft:wooden_sword' and 'minecraft:netherite_sword'. + adaptive_crosshair_hold_items = ["minecraft:snowball", "minecraft:egg", "minecraft:experience_bottle", "minecraft:ender_pearl", "minecraft:splash_potion", "minecraft:fishing_rod", "minecraft:lingering_potion"] + #Items that when used, trigger the dynamic crosshair in adaptive mode. This config option supports regular expressions. Example: 'minecraft:.*sword' matches 'minecraft:wooden_sword' and 'minecraft:netherite_sword'. + adaptive_crosshair_use_items = [] + #Item properties of an item, that when held, trigger the dynamic crosshair in adaptive mode. + adaptive_crosshair_hold_item_properties = ["minecraft:charged"] + #Item properties of an item, that when used, trigger the dynamic crosshair in adaptive mode. + adaptive_crosshair_use_item_properties = ["minecraft:pull", "minecraft:throwing"] + + [crosshair.obstruction] + #When the crosshair type is static, shows an additional indicator on obstacles that stand between you and your target. + show_obstruction_indicator = true + #Only show the obstruction indicator when using items that would trigger the adaptive crosshair. + only_when_aiming = true + #Hide the obstruction indicator when it is too close to the main crosshair. Distance measured in scaled pixels. + #Range: > 0 + min_distance_to_crosshair = 8 + #Ignore obstructions that are too far away from the player. Distance measured in blocks. Set to 0 to disable. + #Range: 0.0 ~ 1.7976931348623157E308 + max_distance_to_obstruction = 20.0 + + [crosshair.visibility] + #Crosshair visibility for first person. + #Allowed Values: ALWAYS, NEVER, WHEN_AIMING, WHEN_IN_RANGE, WHEN_AIMING_OR_IN_RANGE + first_person = "ALWAYS" + #Crosshair visibility for third person back. + #Allowed Values: ALWAYS, NEVER, WHEN_AIMING, WHEN_IN_RANGE, WHEN_AIMING_OR_IN_RANGE + third_person_back = "NEVER" + #Crosshair visibility for third person front. + #Allowed Values: ALWAYS, NEVER, WHEN_AIMING, WHEN_IN_RANGE, WHEN_AIMING_OR_IN_RANGE + third_person_front = "NEVER" + #Crosshair visibility for shoulder surfing. + #Allowed Values: ALWAYS, NEVER, WHEN_AIMING, WHEN_IN_RANGE, WHEN_AIMING_OR_IN_RANGE + shoulder_surfing = "ALWAYS" + +[audio] + #Whether to center sounds made by the player. + center_player_sounds = false + +[integrations] + + [integrations.curios] + #Items that when equipped in a curios slot, trigger the dynamic crosshair in adaptive mode. This config option supports regular expressions. The curios slot must be specified before the expression and is separated by an '@' character. Example: 'ring@angelring:.*_ring' matches 'angelring:diamond_ring' and 'angelring:angel_ring' when equipped in the 'ring' slot. + adaptive_crosshair_items = [] + #Item properties of an item, that when equipped in a curios slot, trigger the dynamic crosshair in adaptive mode. Example: 'necklace@charged' + adaptive_crosshair_item_properties = [] + + [integrations.epicfight] + #Whether to allow target lock-on when camera is decoupled. + decoupled_camera_lock_on = false + diff --git a/config/sophisticatedcore-client.toml b/config/sophisticatedcore-client.toml index 7f5845dc7..30cd4d397 100644 --- a/config/sophisticatedcore-client.toml +++ b/config/sophisticatedcore-client.toml @@ -6,4 +6,6 @@ sortButtonsPosition = "TITLE_LINE_RIGHT" #Whether click sound should play when custom buttons are clicked in gui playButtonSound = true + #Whether scrolling in inventory should be handled by Mouse Tweaks mod if it is in the pack + mouseTweaksScrollEnabled = true diff --git a/config/sound_physics_remastered/allowed_sounds.properties b/config/sound_physics_remastered/allowed_sounds.properties deleted file mode 100644 index 6b370c3b7..000000000 --- a/config/sound_physics_remastered/allowed_sounds.properties +++ /dev/null @@ -1,1897 +0,0 @@ -# Allowed sounds -# Set to 'false' to disable sound physics for that sound - -minecraft\:entity.parrot.imitate.vindicator=true -tfc\:block.thin.fall=true -minecraft\:item.bucket.fill=true -gtceu\:chemical=true -minecraft\:entity.sniffer.digging=true -minecraft\:block.lodestone.place=true -minecraft\:music.overworld.bamboo_jungle=true -minecraft\:entity.hoglin.death=true -minecraft\:block.cherry_wood_fence_gate.open=true -minecraft\:entity.parrot.imitate.witch=true -minecraft\:entity.pillager.celebrate=true -minecraft\:block.chiseled_bookshelf.insert.enchanted=true -minecraft\:entity.mule.eat=true -minecraft\:item.trident.thunder=true -minecraft\:block.bamboo_wood_door.open=true -minecraft\:entity.piglin.ambient=true -minecraft\:block.pink_petals.step=true -create_connected\:interlude_music=true -tfc\:block.charcoal.break=true -minecraft\:block.bamboo_wood_pressure_plate.click_on=true -minecraft\:music.overworld.jagged_peaks=true -endermanoverhaul\:ancient_pearl_hit=true -tfc\:entity.lake_trout.ambient=true -minecraft\:block.bamboo_sapling.break=true -minecraft\:block.note_block.banjo=true -minecraft\:entity.llama.step=true -create\:clipboard_check=true -tfc\:item.armor.equip_steel=true -minecraft\:item.flintandsteel.use=true -minecraft\:entity.shulker.open=true -minecraft\:block.note_block.imitate.creeper=true -minecraft\:entity.skeleton_horse.hurt=true -minecraft\:block.powder_snow.break=true -minecraft\:entity.camel.eat=true -tfc\:entity.wildebeest.death=true -minecraft\:entity.mule.death=true -minecraft\:entity.magma_cube.hurt_small=true -tfc\:entity.penguin.ambient=true -minecraft\:block.roots.hit=true -minecraft\:entity.sniffer.step=true -minecraft\:entity.player.attack.crit=true -minecraft\:entity.silverfish.death=true -minecraft\:entity.axolotl.splash=true -minecraft\:block.frogspawn.hatch=true -minecraft\:music.overworld.cherry_grove=true -create\:sanding_short=true -endermanoverhaul\:dark_oak_enderman_ambient=true -minecraft\:entity.camel.saddle=true -minecraft\:block.froglight.hit=true -etched\:ui.etching_table.take_result=true -minecraft\:block.nether_sprouts.place=true -immersive_aircraft\:cannon=true -minecraft\:block.fungus.place=true -minecraft\:block.gilded_blackstone.step=true -minecraft\:entity.piglin.retreat=true -minecraft\:entity.armor_stand.hit=true -minecraft\:ambient.basalt_deltas.loop=true -minecraft\:entity.skeleton_horse.step_water=true -minecraft\:music.menu=true -minecraft\:block.sculk_vein.place=true -create\:whistle_low=true -minecraft\:block.anvil.hit=true -minecraft\:entity.chicken.step=true -minecraft\:entity.cat.beg_for_food=true -minecraft\:block.wood.fall=true -minecraft\:entity.camel.hurt=true -minecraft\:entity.zombie.break_wooden_door=true -create\:mechanical_press_activation_belt_compounded_1=true -minecraft\:entity.goat.screaming.horn_break=true -tfc\:entity.dog.attack=true -minecraft\:entity.sniffer.digging_stop=true -minecraft\:ambient.warped_forest.mood=true -tfc\:entity.boar.death=true -exposure\:item.photograph.rustle=true -minecraft\:block.wood.place=true -minecraft\:block.anvil.land=true -tfc\:entity.peafowl.hurt=true -minecraft\:item.firecharge.use=true -minecraft\:entity.horse.jump=true -minecraft\:block.pointed_dripstone.drip_lava=true -tfc\:entity.bear.sleep=true -tfc\:entity.hyena.death=true -exposure\:item.camera.dial_click=true -endermanoverhaul\:dark_oak_enderman_darkness=true -minecraft\:entity.parrot.imitate.pillager=true -tfc\:entity.hyena.attack=true -minecraft\:entity.ravager.death=true -endermanoverhaul\:plant_enderman_hurt=true -minecraft\:block.grindstone.use=true -minecraft\:entity.firework_rocket.twinkle_far=true -minecraft\:block.powder_snow.place=true -minecraft\:entity.illusioner.prepare_blindness=true -minecraft\:entity.camel.death=true -minecraft\:entity.llama.chest=true -tfc\:entity.turkey.step=true -minecraft\:block.ladder.fall=true -minecraft\:block.candle.step=true -minecraft\:block.coral_block.break=true -minecraft\:block.soul_sand.step=true -tfc\:entity.dog.hurt=true -tfc\:entity.smallmouth_bass.ambient=true -minecraft\:block.cherry_sapling.step=true -minecraft\:entity.evoker.prepare_summon=true -minecraft\:entity.armor_stand.fall=true -minecraft\:block.netherite_block.place=true -minecraft\:entity.turtle.ambient_land=true -minecraft\:block.bamboo_sapling.place=true -minecraft\:entity.piglin.admiring_item=true -minecraft\:block.calcite.fall=true -minecraft\:block.cherry_wood.break=true -minecraft\:entity.enderman.stare=true -tfc\:entity.boar.step=true -minecraft\:entity.generic.big_fall=true -minecraft\:block.cherry_leaves.hit=true -tfc\:entity.cougar.hurt=true -chalk\:item.glow_applied=true -minecraft\:entity.wandering_trader.no=true -minecraft\:block.wool.hit=true -minecraft\:entity.tadpole.flop=true -minecraft\:block.netherrack.place=true -minecraft\:block.ladder.step=true -minecraft\:block.candle.fall=true -tfc\:entity.bear.step=true -minecraft\:block.packed_mud.hit=true -minecraft\:entity.phantom.flap=true -minecraft\:item.hoe.till=true -minecraft\:block.tuff.step=true -minecraft\:block.cherry_sapling.fall=true -minecraft\:block.gilded_blackstone.fall=true -minecraft\:block.wart_block.step=true -minecraft\:entity.turtle.hurt=true -minecraft\:entity.dolphin.play=true -minecraft\:block.note_block.bit=true -minecraft\:block.sculk_sensor.fall=true -minecraft\:entity.villager.celebrate=true -minecraft\:block.lodestone.break=true -astikorcarts\:entity.cart.detach=true -minecraft\:block.basalt.step=true -minecraft\:entity.polar_bear.hurt=true -exposure\:item.photograph_frame.remove_item=true -minecraft\:entity.parrot.imitate.wither=true -gtceu\:jet_engine=true -minecraft\:entity.fox.screech=true -minecraft\:block.sculk_sensor.clicking_stop=true -endermanoverhaul\:soul_pearl_hit=true -minecraft\:entity.vex.death=true -tfc\:entity.tfc_wolf.ambient=true -minecraft\:entity.bee.loop=true -minecraft\:entity.vex.charge=true -minecraft\:block.beehive.work=true -gtceu\:cooling=true -createaddition\:little_zap=true -immersive_aircraft\:propeller_small=true -minecraft\:entity.skeleton_horse.jump_water=true -minecraft\:entity.zombie_villager.death=true -tfc\:item.javelin.hit=true -tfc\:block.thin.place=true -minecraft\:entity.horse.ambient=true -minecraft\:entity.villager.work_armorer=true -minecraft\:block.mud_bricks.fall=true -minecraft\:entity.phantom.death=true -minecraft\:block.tripwire.detach=true -minecraft\:block.deepslate.place=true -tfc\:block.charcoal.place=true -tfc\:entity.jellyfish.hurt=true -minecraft\:entity.ender_dragon.death=true -minecraft\:block.sand.hit=true -minecraft\:entity.leash_knot.place=true -minecraft\:entity.strider.retreat=true -minecraft\:entity.cow.step=true -minecraft\:entity.allay.item_taken=true -minecraft\:block.note_block.imitate.zombie=true -minecraft\:entity.mooshroom.convert=true -minecraft\:entity.warden.death=true -minecraft\:block.sculk_sensor.step=true -tfc\:entity.cougar.ambient=true -minecraft\:item.armor.equip_leather=true -minecraft\:block.bell.resonate=true -minecraft\:entity.mooshroom.milk=true -minecraft\:block.dispenser.fail=true -minecraft\:entity.endermite.death=true -minecraft\:entity.goat.screaming.prepare_ram=true -minecraft\:block.nether_sprouts.break=true -minecraft\:block.respawn_anchor.ambient=true -gtceu\:drill=true -chalk\:ambient.glowing=true -astikorcarts\:entity.cart.place=true -minecraft\:item.crossbow.shoot=true -minecraft\:entity.bee.sting=true -minecraft\:block.deepslate.break=true -immersive_aircraft\:woosh=true -minecraft\:block.chest.open=true -minecraft\:block.netherite_block.break=true -minecraft\:block.note_block.cow_bell=true -minecraft\:block.iron_door.open=true -minecraft\:block.fungus.break=true -gtceu\:motor=true -tfc\:block.thin.break=true -minecraft\:entity.strider.happy=true -gtceu\:turbine=true -tfc\:entity.alpaca.hurt=true -minecraft\:ambient.soul_sand_valley.additions=true -minecraft\:block.slime_block.place=true -tfc\:item.knapping.leather=true -minecraft\:block.sculk_vein.break=true -minecraft\:block.fire.ambient=true -minecraft\:block.wooden_trapdoor.open=true -gtceu\:spray_can=true -minecraft\:entity.ravager.stunned=true -minecraft\:block.nether_wood.fall=true -minecraft\:entity.fox.aggro=true -minecraft\:entity.player.levelup=true -minecraft\:entity.dolphin.hurt=true -exposure\:item.camera.lens_insert=true -minecraft\:entity.glow_item_frame.place=true -minecraft\:entity.player.small_fall=true -tfc\:block.charcoal.fall=true -minecraft\:entity.skeleton.step=true -minecraft\:music_disc.13=true -minecraft\:entity.bee.death=true -minecraft\:entity.parrot.imitate.wither_skeleton=true -endermanoverhaul\:corrupted_pearl_hit=true -minecraft\:music_disc.11=true -minecraft\:block.wart_block.hit=true -minecraft\:block.wet_grass.step=true -minecraft\:entity.pillager.ambient=true -minecraft\:entity.experience_bottle.throw=true -minecraft\:entity.wither_skeleton.ambient=true -minecraft\:item.trident.riptide_3=true -minecraft\:item.trident.riptide_2=true -minecraft\:block.calcite.break=true -minecraft\:block.pointed_dripstone.fall=true -minecraft\:entity.piglin_brute.hurt=true -minecraft\:block.nether_gold_ore.fall=true -minecraft\:entity.fox.eat=true -minecraft\:block.azalea.break=true -minecraft\:entity.armor_stand.place=true -minecraft\:item.trident.riptide_1=true -minecraft\:block.wet_grass.fall=true -minecraft\:block.mud_bricks.step=true -minecraft\:entity.pig.hurt=true -minecraft\:block.bamboo_wood_hanging_sign.fall=true -minecraft\:entity.wolf.pant=true -minecraft\:block.sweet_berry_bush.place=true -minecraft\:entity.parrot.imitate.endermite=true -minecraft\:block.tuff.fall=true -minecraft\:block.ancient_debris.hit=true -gtceu\:mixer=true -minecraft\:block.netherite_block.step=true -minecraft\:entity.frog.death=true -minecraft\:entity.endermite.hurt=true -minecraft\:block.deepslate.hit=true -minecraft\:entity.evoker.prepare_wololo=true -minecraft\:entity.warden.sniff=true -tfc\:entity.gazelle.hurt=true -tfc\:entity.rainbow_trout.flop=true -minecraft\:entity.polar_bear.ambient_baby=true -tfc\:item.armor.equip_black_steel=true -minecraft\:block.sculk.hit=true -minecraft\:block.gravel.place=true -minecraft\:block.deepslate_bricks.break=true -tfc\:block.charcoal.step=true -minecraft\:entity.warden.nearby_closer=true -minecraft\:entity.wolf.shake=true -immersive_aircraft\:propeller=true -minecraft\:entity.firework_rocket.launch=true -minecraft\:block.basalt.break=true -tfc\:entity.rat.step=true -minecraft\:block.hanging_roots.fall=true -minecraft\:block.ender_chest.open=true -minecraft\:entity.piglin.jealous=true -create\:controller_take=true -minecraft\:block.sculk_sensor.hit=true -minecraft\:entity.camel.step_sand=true -tfc\:entity.quail.ambient=true -minecraft\:block.bamboo_wood.break=true -minecraft\:entity.parrot.imitate.ender_dragon=true -minecraft\:block.dispenser.dispense=true -minecraft\:block.sculk.fall=true -minecraft\:block.water.ambient=true -minecraft\:entity.donkey.eat=true -minecraft\:item.bucket.empty_tadpole=true -minecraft\:block.moss_carpet.hit=true -minecraft\:ambient.underwater.enter=true -minecraft\:entity.puffer_fish.hurt=true -minecraft\:entity.piglin.celebrate=true -minecraft\:entity.husk.ambient=true -gtceu\:combustion=true -tfc\:entity.dog.sleep=true -minecraft\:entity.guardian.death=true -minecraft\:entity.stray.step=true -minecraft\:entity.shulker.death=true -minecraft\:entity.camel.dash_ready=true -minecraft\:entity.iron_golem.repair=true -minecraft\:block.large_amethyst_bud.break=true -minecraft\:block.shulker_box.close=true -minecraft\:block.deepslate_bricks.place=true -minecraft\:entity.guardian.flop=true -minecraft\:entity.piglin_brute.ambient=true -minecraft\:entity.chicken.death=true -minecraft\:entity.glow_item_frame.remove_item=true -minecraft\:entity.salmon.hurt=true -minecraft\:entity.spider.death=true -create\:clipboard_erase=true -minecraft\:entity.turtle.shamble_baby=true -create\:mixing=true -create\:confirm=true -minecraft\:ui.button.click=true -tfc\:entity.boar.ambient=true -tfc\:entity.bluegill.hurt=true -minecraft\:entity.generic.death=true -minecraft\:block.bamboo_wood_button.click_off=true -minecraft\:block.sculk_vein.fall=true -minecraft\:entity.hoglin.retreat=true -minecraft\:block.wooden_trapdoor.close=true -minecraft\:block.roots.fall=true -minecraft\:block.shroomlight.hit=true -minecraft\:block.flowering_azalea.break=true -tfc\:entity.tfc_wolf.death=true -minecraft\:block.nether_wood.step=true -tfc\:entity.rooster.cry=true -tfc\:entity.bongo.ambient=true -minecraft\:block.sculk_shrieker.hit=true -endermanoverhaul\:plant_enderman_ambient=true -minecraft\:block.honey_block.fall=true -minecraft\:block.hanging_roots.hit=true -gtceu\:wrench=true -minecraft\:block.moss_carpet.fall=true -minecraft\:item.trident.throw=true -minecraft\:entity.armor_stand.break=true -minecraft\:entity.goat.prepare_ram=true -tfc\:entity.turkey.ambient=true -minecraft\:entity.player.attack.nodamage=true -minecraft\:entity.cow.milk=true -minecraft\:entity.hoglin.ambient=true -minecraft\:entity.llama.ambient=true -minecraft\:block.nylium.fall=true -minecraft\:block.sculk.step=true -minecraft\:entity.strider.step_lava=true -minecraft\:block.sweet_berry_bush.break=true -minecraft\:block.calcite.place=true -minecraft\:entity.snow_golem.ambient=true -tfc\:entity.rainbow_trout.death=true -minecraft\:block.metal.step=true -minecraft\:entity.donkey.angry=true -gtceu\:replicator=true -tfc\:entity.bluegill.ambient=true -minecraft\:ui.toast.in=true -minecraft\:block.wart_block.fall=true -minecraft\:block.slime_block.break=true -minecraft\:entity.enderman.ambient=true -minecraft\:item.crossbow.loading_start=true -minecraft\:entity.shulker.shoot=true -minecraft\:entity.drowned.swim=true -minecraft\:block.wet_grass.break=true -minecraft\:block.note_block.bass=true -tfc\:entity.lion.hurt=true -minecraft\:block.stem.hit=true -minecraft\:entity.parrot.imitate.ghast=true -minecraft\:block.honey_block.step=true -tfc\:entity.bongo.death=true -minecraft\:entity.squid.ambient=true -minecraft\:entity.strider.ambient=true -minecraft\:entity.ghast.ambient=true -exposure\:item.camera.generic_click=true -chalk\:block.mark_removed=true -minecraft\:ambient.underwater.loop=true -tfc\:entity.lake_trout.flop=true -minecraft\:block.respawn_anchor.set_spawn=true -minecraft\:block.wooden_pressure_plate.click_off=true -minecraft\:entity.experience_orb.pickup=true -minecraft\:entity.villager.work_fisherman=true -minecraft\:block.hanging_roots.step=true -minecraft\:entity.skeleton.ambient=true -minecraft\:music.overworld.forest=true -minecraft\:item.trident.return=true -minecraft\:entity.turtle.egg_crack=true -minecraft\:block.gilded_blackstone.break=true -tfc\:entity.pheasant.step=true -minecraft\:entity.magma_cube.jump=true -tfc\:entity.duck.step=true -minecraft\:block.mud.step=true -minecraft\:block.end_portal_frame.fill=true -create\:cranking_compounded_1=true -minecraft\:item.elytra.flying=true -minecraft\:entity.goat.screaming.ram_impact=true -minecraft\:block.lava.ambient=true -minecraft\:entity.rabbit.death=true -fallingtrees\:tree_fall=true -minecraft\:entity.camel.stand=true -minecraft\:block.cake.add_candle=true -minecraft\:block.slime_block.step=true -minecraft\:block.nether_gold_ore.step=true -create\:crushing_3=true -create\:crushing_2=true -minecraft\:entity.spider.ambient=true -create\:crushing_1=true -minecraft\:block.nether_wood_door.close=true -minecraft\:block.bamboo_wood.place=true -exposure\:block.lightroom.print=true -minecraft\:block.fungus.step=true -create\:whistle_train_low=true -minecraft\:entity.horse.breathe=true -tfc\:entity.tiger.death=true -minecraft\:entity.tropical_fish.death=true -minecraft\:block.moss_carpet.step=true -minecraft\:block.note_block.chime=true -minecraft\:entity.cow.death=true -minecraft\:ambient.crimson_forest.mood=true -minecraft\:ambient.underwater.loop.additions=true -minecraft\:block.bamboo_wood_hanging_sign.hit=true -minecraft\:entity.skeleton_horse.ambient_water=true -minecraft\:entity.hostile.death=true -minecraft\:block.chain.hit=true -minecraft\:entity.warden.roar=true -minecraft\:block.flowering_azalea.place=true -tfc\:entity.sabertooth.step=true -minecraft\:block.mud.hit=true -minecraft\:entity.minecart.inside.underwater=true -minecraft\:entity.strider.hurt=true -tfc\:item.armor.equip_bismuth_bronze=true -create\:chiff=true -minecraft\:entity.evoker.prepare_attack=true -minecraft\:block.note_block.imitate.wither_skeleton=true -minecraft\:item.bundle.drop_contents=true -minecraft\:entity.horse.angry=true -minecraft\:entity.zoglin.ambient=true -minecraft\:block.stone.hit=true -exposure\:item.camera.shutter_close=true -minecraft\:block.nylium.step=true -minecraft\:block.soul_sand.fall=true -create\:mechanical_press_activation_belt=true -minecraft\:entity.strider.saddle=true -minecraft\:entity.zombie_horse.hurt=true -endermanoverhaul\:icy_pearl_hit=true -minecraft\:entity.cod.ambient=true -minecraft\:entity.player.hurt_freeze=true -minecraft\:block.enchantment_table.use=true -minecraft\:block.bell.use=true -minecraft\:entity.frog.long_jump=true -minecraft\:entity.hostile.splash=true -minecraft\:block.large_amethyst_bud.place=true -minecraft\:block.weeping_vines.break=true -minecraft\:block.wood.step=true -minecraft\:block.wet_grass.place=true -minecraft\:entity.goat.screaming.hurt=true -minecraft\:item.bucket.fill_tadpole=true -minecraft\:block.bamboo_wood_hanging_sign.step=true -minecraft\:block.note_block.guitar=true -minecraft\:item.bottle.fill_dragonbreath=true -minecraft\:entity.rabbit.hurt=true -minecraft\:entity.wandering_trader.reappeared=true -create\:haunted_bell_convert=true -minecraft\:item.honey_bottle.drink=true -minecraft\:entity.turtle.death=true -minecraft\:entity.pig.saddle=true -minecraft\:entity.parrot.imitate.guardian=true -minecraft\:entity.tadpole.death=true -minecraft\:entity.fox.ambient=true -minecraft\:entity.villager.work_farmer=true -tfc\:item.pan.use=true -minecraft\:block.roots.step=true -minecraft\:block.fungus.hit=true -gtceu\:electrolyzer=true -minecraft\:entity.villager.work_shepherd=true -minecraft\:entity.player.hurt_sweet_berry_bush=true -minecraft\:block.sculk_vein.step=true -minecraft\:block.pointed_dripstone.place=true -minecraft\:block.slime_block.fall=true -minecraft\:block.decorated_pot.place=true -minecraft\:entity.fishing_bobber.retrieve=true -minecraft\:entity.axolotl.idle_water=true -minecraft\:music.overworld.grove=true -minecraft\:block.weeping_vines.place=true -minecraft\:block.note_block.didgeridoo=true -tfc\:entity.penguin.hurt=true -tfc\:entity.tiger.attack=true -minecraft\:entity.wandering_trader.trade=true -create\:whistle_train_manual_low=true -minecraft\:block.nether_ore.hit=true -minecraft\:entity.vex.hurt=true -minecraft\:block.fence_gate.open=true -minecraft\:block.sweet_berry_bush.pick_berries=true -minecraft\:entity.ender_dragon.ambient=true -minecraft\:block.stone.break=true -tfc\:entity.moose.hurt=true -minecraft\:block.sniffer_egg.plop=true -minecraft\:entity.ravager.celebrate=true -minecraft\:block.chain.step=true -minecraft\:block.suspicious_gravel.break=true -minecraft\:block.mud.fall=true -minecraft\:block.lava.pop=true -exposure\:item.camera.film_advance_last=true -exposure\:item.camera.film_advance=true -tfc\:entity.lake_trout.hurt=true -minecraft\:entity.item_frame.break=true -minecraft\:block.amethyst_block.hit=true -minecraft\:block.beacon.ambient=true -create\:saw_activate_wood=true -minecraft\:entity.guardian.hurt_land=true -tfc\:block.wattle.daubed=true -minecraft\:entity.fox.hurt=true -minecraft\:entity.panda.death=true -create\:peculiar_bell_use=true -minecraft\:item.totem.use=true -minecraft\:entity.fishing_bobber.splash=true -minecraft\:music_disc.wait=true -minecraft\:ambient.underwater.loop.additions.ultra_rare=true -gtceu\:arc=true -minecraft\:block.honey_block.slide=true -minecraft\:block.nether_ore.fall=true -minecraft\:entity.skeleton_horse.ambient=true -minecraft\:block.soul_soil.place=true -tfc\:entity.bear.hurt=true -create\:potato_hit=true -tfc\:entity.musk_ox.step=true -minecraft\:block.wooden_button.click_on=true -minecraft\:block.shroomlight.break=true -minecraft\:entity.squid.hurt=true -minecraft\:block.rooted_dirt.hit=true -minecraft\:block.cherry_wood_trapdoor.open=true -minecraft\:block.roots.place=true -minecraft\:block.mud.break=true -minecraft\:entity.arrow.hit_player=true -minecraft\:block.mud.place=true -minecraft\:block.muddy_mangrove_roots.fall=true -minecraft\:entity.illusioner.death=true -minecraft\:entity.shulker.hurt_closed=true -minecraft\:entity.silverfish.hurt=true -minecraft\:item.spyglass.use=true -minecraft\:entity.parrot.imitate.hoglin=true -exposure\:item.camera.flash=true -tfc\:entity.ramming.impact=true -tfc\:entity.moose.attack=true -minecraft\:entity.iron_golem.step=true -minecraft\:block.blastfurnace.fire_crackle=true -minecraft\:block.chain.fall=true -tfc\:entity.rainbow_trout.ambient=true -minecraft\:block.honey_block.hit=true -minecraft\:entity.magma_cube.death_small=true -minecraft\:entity.fox.teleport=true -minecraft\:entity.phantom.hurt=true -minecraft\:block.candle.hit=true -minecraft\:block.portal.travel=true -minecraft\:item.brush.brushing.gravel.complete=true -create\:saw_activate_stone=true -minecraft\:entity.goat.screaming.eat=true -minecraft\:entity.allay.ambient_with_item=true -minecraft\:music_disc.otherside=true -minecraft\:entity.slime.death=true -tfc\:entity.manatee.ambient=true -tfc\:entity.turkey.death=true -minecraft\:entity.skeleton.hurt=true -minecraft\:block.moss_carpet.place=true -minecraft\:block.nether_wood_door.open=true -playerrevive\:death=true -minecraft\:block.big_dripleaf.step=true -minecraft\:block.bamboo.hit=true -tfc\:entity.caribou.death=true -minecraft\:block.bamboo_wood_pressure_plate.click_off=true -minecraft\:item.trident.hit_ground=true -minecraft\:item.brush.brushing.gravel=true -minecraft\:block.portal.ambient=true -minecraft\:block.snow.place=true -minecraft\:entity.stray.hurt=true -minecraft\:music_disc.blocks=true -endermanoverhaul\:summoner_pearl_hit=true -minecraft\:entity.ender_dragon.hurt=true -minecraft\:entity.glow_squid.ambient=true -minecraft\:item.honeycomb.wax_on=true -minecraft\:entity.wither.break_block=true -minecraft\:entity.sniffer.sniffing=true -minecraft\:block.ender_chest.close=true -tfc\:item.armor.equip_wrought_iron=true -minecraft\:entity.witch.ambient=true -immersive_aircraft\:engine_start=true -minecraft\:block.respawn_anchor.deplete=true -minecraft\:block.candle.break=true -minecraft\:block.spore_blossom.break=true -minecraft\:block.amethyst_block.place=true -minecraft\:item.armor.equip_diamond=true -minecraft\:block.nether_wood.place=true -minecraft\:block.pointed_dripstone.drip_water=true -minecraft\:entity.blaze.shoot=true -minecraft\:block.nether_gold_ore.break=true -minecraft\:entity.sheep.shear=true -minecraft\:entity.ender_pearl.throw=true -minecraft\:block.beacon.activate=true -minecraft\:block.tuff.break=true -minecraft\:entity.turtle.egg_hatch=true -immersive_aircraft\:repair=true -minecraft\:block.redstone_torch.burnout=true -minecraft\:intentionally_empty=true -minecraft\:entity.zombified_piglin.angry=true -gtceu\:furnace=true -minecraft\:block.fungus.fall=true -minecraft\:block.moss.step=true -minecraft\:block.dispenser.launch=true -minecraft\:entity.cat.hiss=true -minecraft\:block.nether_wart.break=true -minecraft\:entity.goat.long_jump=true -minecraft\:entity.ravager.roar=true -minecraft\:block.note_block.imitate.ender_dragon=true -create\:sanding_long=true -minecraft\:entity.blaze.hurt=true -firmalife\:item.hollow_shell.blow=true -minecraft\:block.sniffer_egg.crack=true -minecraft\:entity.endermite.ambient=true -minecraft\:block.ancient_debris.step=true -minecraft\:entity.panda.bite=true -minecraft\:entity.parrot.imitate.silverfish=true -create\:slime_added=true -minecraft\:block.polished_deepslate.step=true -minecraft\:block.bamboo_wood.fall=true -minecraft\:entity.wandering_trader.hurt=true -minecraft\:entity.dolphin.ambient_water=true -tfc\:entity.turkey.hurt=true -endermanoverhaul\:tall_enderman_ambient=true -railways\:handcar_cogs=true -cccbridge\:cage_unlock=true -minecraft\:entity.bat.death=true -minecraft\:item.bottle.fill=true -tfc\:entity.moose.ambient=true -minecraft\:entity.piglin.converted_to_zombified=true -minecraft\:entity.arrow.shoot=true -minecraft\:ambient.warped_forest.additions=true -minecraft\:block.nether_ore.step=true -minecraft\:entity.strider.step=true -minecraft\:entity.goat.death=true -minecraft\:entity.panda.aggressive_ambient=true -minecraft\:block.big_dripleaf.hit=true -minecraft\:entity.husk.converted_to_zombie=true -minecraft\:entity.villager.work_cleric=true -minecraft\:block.bubble_column.bubble_pop=true -minecraft\:entity.phantom.swoop=true -minecraft\:entity.piglin_brute.death=true -minecraft\:entity.llama.death=true -minecraft\:entity.piglin.hurt=true -minecraft\:entity.parrot.imitate.phantom=true -minecraft\:music.overworld.lush_caves=true -tfc\:entity.jellyfish.ambient=true -minecraft\:entity.boat.paddle_land=true -minecraft\:entity.frog.tongue=true -minecraft\:music_disc.ward=true -minecraft\:entity.fox.sniff=true -minecraft\:entity.wither_skeleton.hurt=true -minecraft\:block.azalea_leaves.fall=true -minecraft\:entity.wither_skeleton.step=true -minecraft\:entity.drowned.hurt_water=true -gtceu\:wirecutter=true -minecraft\:block.tuff.hit=true -minecraft\:entity.sheep.hurt=true -tfc\:entity.crappie.death=true -minecraft\:block.metal.fall=true -minecraft\:block.netherite_block.fall=true -minecraft\:entity.pig.step=true -minecraft\:entity.villager.yes=true -minecraft\:music.nether.soul_sand_valley=true -minecraft\:entity.ender_dragon.growl=true -minecraft\:entity.vindicator.hurt=true -create\:blaze_munch=true -minecraft\:entity.llama.swag=true -minecraft\:block.small_dripleaf.break=true -create_connected\:elevator_music=true -minecraft\:entity.villager.work_toolsmith=true -minecraft\:item.bucket.fill_fish=true -minecraft\:block.moss_carpet.break=true -minecraft\:block.bamboo_sapling.hit=true -tfc\:entity.moose.death=true -minecraft\:block.nether_wood_hanging_sign.break=true -minecraft\:block.spore_blossom.place=true -minecraft\:entity.enderman.scream=true -minecraft\:block.soul_sand.hit=true -exposure\:item.photograph.break=true -minecraft\:entity.parrot.imitate.warden=true -minecraft\:entity.minecart.riding=true -minecraft\:block.tuff.place=true -minecraft\:block.soul_soil.break=true -minecraft\:entity.illusioner.prepare_mirror=true -minecraft\:entity.elder_guardian.death=true -create\:mechanical_press_activation_compounded_1=true -minecraft\:block.ladder.hit=true -minecraft\:entity.polar_bear.warning=true -minecraft\:block.amethyst_block.break=true -minecraft\:entity.piglin_brute.converted_to_zombified=true -minecraft\:entity.parrot.imitate.magma_cube=true -minecraft\:block.small_dripleaf.place=true -minecraft\:entity.cat.purreow=true -minecraft\:block.beacon.deactivate=true -minecraft\:music_disc.pigstep=true -tfc\:entity.dog.step=true -minecraft\:entity.parrot.imitate.elder_guardian=true -playerrevive\:revived=true -immersive_aircraft\:warship=true -minecraft\:block.conduit.attack.target=true -minecraft\:music.overworld.flower_forest=true -minecraft\:entity.arrow.hit=true -tfc\:entity.quail.hurt=true -minecraft\:item.ink_sac.use=true -minecraft\:entity.witch.death=true -minecraft\:entity.squid.death=true -minecraft\:block.gilded_blackstone.hit=true -tfc\:entity.yak.hurt=true -minecraft\:entity.sheep.ambient=true -minecraft\:block.bone_block.place=true -minecraft\:entity.cow.ambient=true -minecraft\:entity.tropical_fish.flop=true -minecraft\:block.frogspawn.place=true -minecraft\:entity.snow_golem.shear=true -minecraft\:block.azalea_leaves.step=true -minecraft\:entity.panda.ambient=true -minecraft\:block.polished_deepslate.fall=true -minecraft\:item.armor.equip_chain=true -minecraft\:entity.dolphin.ambient=true -minecraft\:entity.parrot.imitate.zombie=true -minecraft\:block.snow.break=true -minecraft\:block.lily_pad.place=true -gtceu\:compressor=true -tfc\:entity.wildebeest.hurt=true -minecraft\:entity.zombie_villager.hurt=true -minecraft\:item.bucket.empty_milk=true -minecraft\:entity.dolphin.eat=true -minecraft\:entity.evoker.hurt=true -tfc\:entity.sabertooth.ambient=true -minecraft\:block.gravel.hit=true -minecraft\:item.bucket.fill_lava=true -minecraft\:entity.magma_cube.squish_small=true -minecraft\:entity.bee.pollinate=true -minecraft\:entity.ocelot.hurt=true -minecraft\:block.sand.place=true -gtceu\:portal_closing=true -minecraft\:entity.generic.small_fall=true -minecraft\:block.chiseled_bookshelf.hit=true -tfc\:entity.deer.step=true -tfc\:entity.wildebeest.attack=true -minecraft\:block.chain.break=true -gtceu\:assembler=true -minecraft\:entity.ravager.hurt=true -minecraft\:block.weeping_vines.fall=true -minecraft\:block.soul_soil.step=true -minecraft\:block.bamboo_wood_hanging_sign.break=true -minecraft\:block.wooden_button.click_off=true -minecraft\:entity.wandering_trader.death=true -minecraft\:entity.warden.dig=true -minecraft\:entity.guardian.attack=true -minecraft\:entity.bee.loop_aggressive=true -minecraft\:block.scaffolding.hit=true -minecraft\:event.raid.horn=true -minecraft\:entity.goat.screaming.death=true -minecraft\:ambient.nether_wastes.mood=true -minecraft\:block.anvil.destroy=true -minecraft\:block.cherry_wood.place=true -minecraft\:block.bamboo_wood_button.click_on=true -minecraft\:block.hanging_roots.break=true -minecraft\:block.netherrack.break=true -minecraft\:block.respawn_anchor.charge=true -tfc\:block.bloomery.crackle=true -minecraft\:block.pink_petals.break=true -minecraft\:entity.piglin.death=true -minecraft\:entity.warden.listening_angry=true -minecraft\:entity.witch.hurt=true -minecraft\:entity.player.breath=true -minecraft\:entity.dolphin.swim=true -minecraft\:entity.stray.death=true -minecraft\:block.deepslate_tiles.step=true -minecraft\:block.wet_grass.hit=true -minecraft\:block.ancient_debris.fall=true -minecraft\:block.note_block.pling=true -minecraft\:entity.ghast.warn=true -minecraft\:entity.warden.heartbeat=true -minecraft\:entity.skeleton_horse.death=true -minecraft\:entity.sniffer.scenting=true -tfc\:entity.pheasant.hurt=true -minecraft\:entity.parrot.imitate.husk=true -minecraft\:block.spore_blossom.hit=true -minecraft\:entity.tadpole.grow_up=true -waterflasks\:item.flaskbreak=true -minecraft\:entity.axolotl.attack=true -minecraft\:entity.polar_bear.step=true -exposure\:item.photograph_frame.break=true -minecraft\:entity.turtle.hurt_baby=true -tfc\:entity.duck.ambient=true -minecraft\:entity.horse.land=true -tfc\:entity.bongo.step=true -minecraft\:entity.parrot.step=true -tfc\:entity.tiger.hurt=true -minecraft\:music.dragon=true -minecraft\:block.big_dripleaf.place=true -minecraft\:block.nether_sprouts.hit=true -gtceu\:centrifuge=true -minecraft\:block.lava.extinguish=true -minecraft\:block.basalt.fall=true -minecraft\:entity.player.big_fall=true -minecraft\:entity.villager.work_librarian=true -minecraft\:block.stone_button.click_off=true -minecraft\:block.dripstone_block.hit=true -minecraft\:entity.slime.hurt=true -minecraft\:block.end_gateway.spawn=true -minecraft\:entity.iron_golem.attack=true -immersive_aircraft\:engine_start_warship=true -tfc\:entity.peafowl.death=true -minecraft\:entity.chicken.egg=true -tfc\:entity.jellyfish.death=true -minecraft\:block.amethyst_cluster.hit=true -minecraft\:entity.zoglin.hurt=true -minecraft\:block.ladder.break=true -minecraft\:block.bubble_column.whirlpool_inside=true -minecraft\:entity.glow_item_frame.break=true -minecraft\:item.crossbow.hit=true -minecraft\:entity.elder_guardian.hurt_land=true -minecraft\:block.end_portal.spawn=true -minecraft\:music_disc.cat=true -minecraft\:music.overworld.snowy_slopes=true -minecraft\:block.bamboo_wood.step=true -minecraft\:entity.generic.burn=true -minecraft\:block.bubble_column.whirlpool_ambient=true -tfc\:block.quern.drag=true -minecraft\:block.composter.empty=true -minecraft\:block.sculk.break=true -tfc\:entity.boar.hurt=true -minecraft\:entity.zombie_villager.converted=true -minecraft\:block.chain.place=true -minecraft\:entity.shulker.teleport=true -tfc\:random.dirt_slide_short=true -minecraft\:entity.sniffer.happy=true -minecraft\:block.bone_block.break=true -minecraft\:item.glow_ink_sac.use=true -tfc\:entity.crappie.flop=true -minecraft\:entity.leash_knot.break=true -minecraft\:entity.zombie_villager.ambient=true -minecraft\:entity.enderman.death=true -minecraft\:block.froglight.break=true -create\:contraption_assemble=true -tfc\:block.anvil.hit=true -minecraft\:ambient.underwater.loop.additions.rare=true -minecraft\:block.calcite.step=true -minecraft\:entity.zoglin.attack=true -minecraft\:block.stone.fall=true -minecraft\:ui.loom.take_result=true -minecraft\:entity.puffer_fish.flop=true -minecraft\:block.big_dripleaf.tilt_down=true -minecraft\:entity.parrot.death=true -tfc\:entity.lion.death=true -minecraft\:block.hanging_roots.place=true -minecraft\:block.amethyst_block.fall=true -minecraft\:block.note_block.xylophone=true -minecraft\:entity.elder_guardian.ambient_land=true -minecraft\:entity.rabbit.ambient=true -tfc\:item.firestarter.use=true -minecraft\:entity.blaze.death=true -patchouli\:book_flip=true -minecraft\:block.beehive.exit=true -minecraft\:entity.vex.ambient=true -minecraft\:block.dripstone_block.break=true -minecraft\:block.coral_block.place=true -tfc\:block.scribing_table.use=true -exposure\:item.camera.button_click=true -createaddition\:tesla_coil=true -minecraft\:block.shroomlight.place=true -minecraft\:entity.guardian.ambient_land=true -minecraft\:block.coral_block.step=true -gtceu\:saw=true -minecraft\:entity.generic.eat=true -minecraft\:item.bucket.fill_milk=true -tfc\:block.barrel.open=true -minecraft\:block.weeping_vines.step=true -tfc\:entity.peafowl.ambient=true -minecraft\:block.moss.fall=true -tfc\:block.charcoal.hit=true -minecraft\:block.cherry_wood.hit=true -guideme\:guide.click=true -minecraft\:entity.axolotl.swim=true -minecraft\:block.slime_block.hit=true -minecraft\:entity.husk.step=true -minecraft\:entity.zombie.death=true -create\:contraption_disassemble=true -create\:wrench_rotate=true -minecraft\:entity.ender_dragon.shoot=true -minecraft\:block.sculk_catalyst.hit=true -minecraft\:entity.zombie.step=true -minecraft\:block.stone.place=true -tfc\:entity.crocodile.attack=true -minecraft\:entity.allay.item_given=true -minecraft\:entity.wolf.howl=true -minecraft\:entity.pig.ambient=true -tfc\:entity.smallmouth_bass.death=true -minecraft\:entity.iron_golem.death=true -tfc\:entity.caribou.hurt=true -minecraft\:block.nether_wood_trapdoor.close=true -minecraft\:entity.item_frame.place=true -minecraft\:music.overworld.jungle=true -minecraft\:block.chiseled_bookshelf.pickup=true -minecraft\:entity.item_frame.remove_item=true -tfc\:entity.rat.ambient=true -minecraft\:entity.warden.ambient=true -tfc\:entity.bluegill.flop=true -minecraft\:block.flowering_azalea.hit=true -minecraft\:block.nether_gold_ore.place=true -minecraft\:entity.iron_golem.damage=true -minecraft\:block.candle.place=true -minecraft\:block.beehive.enter=true -minecraft\:entity.elder_guardian.curse=true -minecraft\:entity.firework_rocket.blast=true -minecraft\:entity.wolf.whine=true -minecraft\:ambient.basalt_deltas.mood=true -gtceu\:boiler=true -minecraft\:block.coral_block.fall=true -minecraft\:block.stone.step=true -minecraft\:block.nether_wood.break=true -minecraft\:block.sculk.place=true -minecraft\:entity.llama.eat=true -tfc\:entity.smallmouth_bass.hurt=true -create\:mechanical_press_activation=true -minecraft\:entity.generic.splash=true -minecraft\:block.sculk_catalyst.place=true -minecraft\:entity.frog.ambient=true -minecraft\:entity.wolf.step=true -minecraft\:entity.slime.squish=true -minecraft\:block.sniffer_egg.hatch=true -minecraft\:block.froglight.place=true -minecraft\:entity.bat.loop=true -minecraft\:item.bucket.empty_fish=true -minecraft\:entity.goat.eat=true -minecraft\:entity.hoglin.step=true -minecraft\:entity.illusioner.hurt=true -minecraft\:entity.slime.death_small=true -minecraft\:entity.zombie.ambient=true -minecraft\:block.sand.break=true -minecraft\:block.amethyst_block.step=true -minecraft\:block.decorated_pot.break=true -minecraft\:entity.goat.hurt=true -minecraft\:entity.generic.extinguish_fire=true -minecraft\:block.metal.hit=true -minecraft\:entity.rabbit.attack=true -minecraft\:block.muddy_mangrove_roots.step=true -tfc\:item.cool=true -minecraft\:block.big_dripleaf.break=true -minecraft\:entity.guardian.ambient=true -minecraft\:block.tripwire.attach=true -exposure\:item.camera.release_button_click=true -tfc\:entity.grouse.death=true -minecraft\:block.suspicious_gravel.place=true -minecraft\:entity.goat.screaming.long_jump=true -minecraft\:block.ladder.place=true -minecraft\:block.dripstone_block.place=true -minecraft\:block.bamboo_wood_hanging_sign.place=true -minecraft\:entity.hostile.swim=true -tfc\:entity.tfc_wolf.hurt=true -minecraft\:block.nether_wood_fence_gate.open=true -minecraft\:entity.tnt.primed=true -minecraft\:block.soul_soil.fall=true -minecraft\:block.big_dripleaf.fall=true -minecraft\:entity.generic.swim=true -minecraft\:block.stone_button.click_on=true -minecraft\:entity.slime.squish_small=true -tfc\:entity.peafowl.step=true -minecraft\:entity.villager.work_cartographer=true -minecraft\:entity.warden.nearby_closest=true -minecraft\:block.fence_gate.close=true -minecraft\:entity.mule.ambient=true -tfc\:block.thin.hit=true -minecraft\:block.beehive.drip=true -minecraft\:block.campfire.crackle=true -minecraft\:block.comparator.click=true -minecraft\:block.metal_pressure_plate.click_off=true -minecraft\:item.armor.equip_iron=true -minecraft\:entity.panda.sneeze=true -minecraft\:entity.dolphin.jump=true -minecraft\:music_disc.relic=true -gtceu\:science=true -minecraft\:block.sculk_catalyst.fall=true -minecraft\:block.ancient_debris.break=true -minecraft\:item.nether_wart.plant=true -minecraft\:entity.fox.spit=true -minecraft\:block.chiseled_bookshelf.break=true -buildinggadgets2\:beep=true -minecraft\:block.cherry_leaves.fall=true -minecraft\:block.azalea_leaves.break=true -minecraft\:entity.hostile.big_fall=true -minecraft\:entity.turtle.death_baby=true -minecraft\:entity.cod.death=true -minecraft\:entity.player.death=true -minecraft\:block.scaffolding.fall=true -minecraft\:block.lantern.fall=true -create\:cranking=true -minecraft\:entity.splash_potion.throw=true -cucumber\:watering_can=true -minecraft\:block.bone_block.step=true -minecraft\:entity.dolphin.splash=true -createaddition\:loud_zap=true -minecraft\:entity.wither.ambient=true -minecraft\:block.wart_block.place=true -minecraft\:entity.creeper.primed=true -minecraft\:entity.horse.eat=true -tfc\:random.rock_slide_short=true -endermanoverhaul\:cave_enderman_ambient=true -minecraft\:block.copper.place=true -minecraft\:entity.elder_guardian.hurt=true -minecraft\:entity.polar_bear.ambient=true -minecraft\:block.nether_wood_button.click_off=true -minecraft\:block.chest.locked=true -tfc\:entity.duck.death=true -minecraft\:entity.frog.step=true -minecraft\:block.small_amethyst_bud.break=true -minecraft\:entity.wolf.ambient=true -minecraft\:block.cherry_wood.fall=true -minecraft\:block.nether_wood_pressure_plate.click_on=true -minecraft\:block.decorated_pot.fall=true -exposure\:item.photograph_frame.add_item=true -minecraft\:block.candle.extinguish=true -minecraft\:weather.rain=false -minecraft\:entity.phantom.ambient=true -minecraft\:entity.cat.death=true -tfc\:entity.rat.hurt=true -minecraft\:block.sand.step=true -minecraft\:entity.goat.screaming.ambient=true -minecraft\:entity.ender_dragon.flap=true -create\:whistle_train=true -tfc\:entity.caribou.ambient=true -create\:funnel_flap=true -minecraft\:block.conduit.deactivate=true -tfc\:block.thatch.fall=true -minecraft\:entity.generic.hurt=true -minecraft\:entity.puffer_fish.death=true -minecraft\:entity.turtle.egg_break=true -minecraft\:entity.elder_guardian.death_land=true -minecraft\:entity.magma_cube.death=true -tfc\:entity.lion.attack=true -minecraft\:item.spyglass.stop_using=true -minecraft\:entity.donkey.ambient=true -minecraft\:ui.loom.select_pattern=true -minecraft\:weather.rain.above=false -tfc\:entity.musk_ox.death=true -tfc\:entity.smallmouth_bass.flop=true -create\:wrench_remove_compounded_1=true -minecraft\:block.wooden_door.open=true -minecraft\:ambient.crimson_forest.loop=true -minecraft\:block.cherry_wood_button.click_on=true -gtceu\:sus=true -gtceu\:macerator=true -minecraft\:block.pumpkin.carve=true -tfc\:block.bellows.blow=true -minecraft\:block.vine.fall=true -minecraft\:block.cherry_wood_trapdoor.close=true -minecraft\:block.decorated_pot.step=true -minecraft\:item.shield.block=true -minecraft\:block.note_block.snare=true -minecraft\:block.copper.break=true -minecraft\:block.grass.break=true -minecraft\:block.metal.place=true -minecraft\:entity.allay.hurt=true -minecraft\:block.vine.hit=true -minecraft\:block.wart_block.break=true -minecraft\:entity.zombie_horse.ambient=true -minecraft\:block.nether_ore.place=true -minecraft\:block.sculk_catalyst.step=true -minecraft\:entity.horse.death=true -minecraft\:entity.parrot.imitate.ravager=true -tfc\:random.rock_slide_long_fake=true -minecraft\:entity.item.break=true -minecraft\:entity.wandering_trader.yes=true -minecraft\:entity.blaze.burn=true -tfc\:block.thatch.step=true -minecraft\:entity.mooshroom.suspicious_milk=true -minecraft\:entity.pig.death=true -minecraft\:entity.zombie.infect=true -tfc\:entity.cougar.sleep=true -minecraft\:block.sand.fall=true -minecraft\:item.bundle.remove_one=true -minecraft\:entity.hoglin.hurt=true -minecraft\:entity.horse.hurt=true -minecraft\:block.polished_deepslate.place=true -minecraft\:entity.creeper.death=true -minecraft\:block.honey_block.break=true -minecraft\:block.sculk_catalyst.break=true -minecraft\:entity.squid.squirt=true -minecraft\:entity.villager.work_leatherworker=true -endermanoverhaul\:cave_enderman_hurt=true -minecraft\:block.stone_pressure_plate.click_on=true -minecraft\:ui.toast.challenge_complete=true -chalk\:item.chalk_box_open=true -minecraft\:entity.guardian.death_land=true -tfc\:item.jug.blow=true -minecraft\:block.pink_petals.place=true -minecraft\:block.cherry_wood_pressure_plate.click_off=true -minecraft\:entity.hoglin.converted_to_zombified=true -minecraft\:block.nether_wood_fence_gate.close=true -minecraft\:music_disc.stal=true -create\:mixing_compounded_1=true -minecraft\:block.sculk_vein.hit=true -tfc\:entity.rat.death=true -minecraft\:entity.firework_rocket.large_blast_far=true -minecraft\:entity.parrot.imitate.zoglin=true -minecraft\:entity.drowned.ambient_water=true -minecraft\:entity.fish.swim=true -minecraft\:entity.sniffer.drop_seed=true -minecraft\:entity.villager.ambient=true -tfc\:entity.crappie.hurt=true -cccbridge\:cage_lock=true -minecraft\:block.lantern.step=true -patchouli\:book_open=true -tfc\:entity.tiger.sleep=true -create\:whistle_high=true -minecraft\:block.note_block.harp=true -minecraft\:entity.parrot.imitate.shulker=true -minecraft\:entity.axolotl.death=true -exposure\:item.camera.lens_remove=true -exposure\:item.camera.viewfinder_open=true -minecraft\:entity.skeleton_horse.gallop_water=true -minecraft\:music_disc.mellohi=true -minecraft\:music.overworld.frozen_peaks=true -minecraft\:entity.drowned.ambient=true -minecraft\:entity.elder_guardian.ambient=true -minecraft\:block.nether_wood_hanging_sign.hit=true -exposure\:item.photograph_frame.place=true -minecraft\:block.rooted_dirt.place=true -tfc\:entity.rainbow_trout.hurt=true -minecraft\:block.vine.step=true -minecraft\:block.azalea_leaves.place=true -exposure\:item.camera.viewfinder_close=true -minecraft\:music.credits=true -minecraft\:entity.zombie.converted_to_drowned=true -minecraft\:block.note_block.flute=true -tfc\:entity.largemouth_bass.hurt=true -minecraft\:entity.zombified_piglin.ambient=true -minecraft\:entity.fox.death=true -minecraft\:block.bone_block.fall=true -minecraft\:item.crossbow.quick_charge_2=true -minecraft\:item.crossbow.quick_charge_1=true -minecraft\:entity.player.splash=true -minecraft\:block.amethyst_block.chime=true -minecraft\:entity.husk.death=true -minecraft\:music_disc.far=true -minecraft\:music.end=true -create\:potato_hit_compounded_1=true -minecraft\:item.bucket.empty_powder_snow=true -minecraft\:item.bucket.fill_powder_snow=true -minecraft\:block.scaffolding.step=true -minecraft\:entity.firework_rocket.large_blast=true -minecraft\:entity.panda.eat=true -minecraft\:item.crossbow.quick_charge_3=true -minecraft\:entity.wither_skeleton.death=true -minecraft\:ambient.cave=true -minecraft\:block.cave_vines.pick_berries=true -minecraft\:entity.spider.step=true -minecraft\:entity.illusioner.mirror_move=true -tfc\:item.fertilizer.use=true -minecraft\:block.pointed_dripstone.drip_lava_into_cauldron=true -create\:steam=true -minecraft\:entity.salmon.ambient=true -minecraft\:entity.slime.hurt_small=true -minecraft\:block.azalea.step=true -minecraft\:entity.wolf.death=true -minecraft\:entity.wandering_trader.disappeared=true -minecraft\:block.pointed_dripstone.land=true -minecraft\:block.small_amethyst_bud.place=true -minecraft\:entity.mule.angry=true -minecraft\:entity.husk.hurt=true -minecraft\:block.snow.hit=true -tfc\:entity.manatee.hurt=true -tfc\:entity.boar.attack=true -minecraft\:block.portal.trigger=true -minecraft\:entity.puffer_fish.sting=true -minecraft\:block.grass.hit=true -minecraft\:block.conduit.ambient=true -minecraft\:block.deepslate_tiles.fall=true -gtceu\:portable_scanner=true -minecraft\:block.stone_pressure_plate.click_off=true -minecraft\:block.bubble_column.upwards_inside=true -minecraft\:block.copper.hit=true -minecraft\:entity.parrot.hurt=true -minecraft\:entity.horse.gallop=true -create\:copper_armor_equip=true -minecraft\:entity.allay.item_thrown=true -minecraft\:entity.zombie_horse.death=true -minecraft\:block.grass.place=true -minecraft\:entity.evoker.ambient=true -tfc\:block.peat.hit=true -minecraft\:entity.zoglin.death=true -minecraft\:entity.parrot.imitate.slime=true -minecraft\:block.bamboo_wood_trapdoor.open=true -exposure\:item.camera.film_removed=true -minecraft\:block.cave_vines.hit=true -minecraft\:block.barrel.close=true -minecraft\:entity.chicken.ambient=true -minecraft\:entity.cat.hurt=true -tfc\:random.rock_smash=true -minecraft\:entity.guardian.hurt=true -minecraft\:entity.hoglin.angry=true -minecraft\:entity.ghast.death=true -minecraft\:music_disc.mall=true -minecraft\:entity.silverfish.step=true -tfc\:entity.duck.hurt=true -tfc\:entity.manatee.death=true -minecraft\:entity.turtle.shamble=true -minecraft\:entity.shulker_bullet.hurt=true -minecraft\:music.game=true -minecraft\:block.nether_ore.break=true -minecraft\:item.bucket.empty=true -minecraft\:block.calcite.hit=true -minecraft\:block.decorated_pot.shatter=true -minecraft\:block.sculk_shrieker.step=true -tfc\:entity.sabertooth.death=true -minecraft\:entity.snowball.throw=true -minecraft\:block.chorus_flower.grow=true -minecraft\:entity.hostile.small_fall=true -minecraft\:block.bubble_column.upwards_ambient=true -tfc\:entity.hyena.hurt=true -minecraft\:entity.hoglin.attack=true -minecraft\:entity.warden.nearby_close=true -minecraft\:block.cave_vines.place=true -minecraft\:block.nylium.hit=true -minecraft\:item.bucket.empty_lava=true -tfc\:entity.caribou.step=true -minecraft\:block.azalea.fall=true -ae2\:guide.click=true -tfc\:item.armor.equip_blue_steel=true -minecraft\:block.nether_wood_hanging_sign.step=true -minecraft\:block.nether_wood_hanging_sign.place=true -minecraft\:entity.player.burp=true -minecraft\:block.cherry_wood_button.click_off=true -create\:schematicannon_launch_block=true -minecraft\:block.bamboo_wood_trapdoor.close=true -minecraft\:entity.item.pickup=true -minecraft\:entity.villager.work_butcher=true -minecraft\:entity.player.attack.knockback=true -exposure\:item.photograph.place=true -minecraft\:block.bamboo.step=true -minecraft\:block.stem.place=true -minecraft\:block.cherry_wood_hanging_sign.step=true -minecraft\:block.amethyst_cluster.break=true -minecraft\:block.glass.place=true -minecraft\:item.armor.equip_elytra=true -minecraft\:entity.cat.stray_ambient=true -minecraft\:block.small_dripleaf.step=true -minecraft\:entity.strider.eat=true -minecraft\:entity.player.hurt_drown=true -gtceu\:fire=true -exposure\:item.camera.lens_ring_click=true -minecraft\:block.growing_plant.crop=true -minecraft\:entity.lingering_potion.throw=true -minecraft\:block.cherry_sapling.hit=true -minecraft\:block.deepslate_bricks.fall=true -minecraft\:entity.zombie.attack_iron_door=true -minecraft\:entity.camel.ambient=true -minecraft\:entity.ghast.shoot=true -minecraft\:music.overworld.stony_peaks=true -minecraft\:block.cherry_leaves.place=true -minecraft\:block.bamboo.fall=true -minecraft\:block.composter.fill_success=true -minecraft\:ambient.nether_wastes.loop=true -minecraft\:entity.turtle.swim=true -minecraft\:music.under_water=true -gtceu\:portal_opening=true -minecraft\:entity.glow_squid.squirt=true -endermanoverhaul\:bubble_pearl_hit=true -minecraft\:music.overworld.meadow=true -minecraft\:entity.player.attack.sweep=true -tfc\:entity.grouse.step=true -minecraft\:block.soul_soil.hit=true -minecraft\:block.tripwire.click_on=true -minecraft\:entity.evoker.death=true -minecraft\:entity.goat.ambient=true -minecraft\:item.dye.use=true -minecraft\:entity.sniffer.hurt=true -minecraft\:block.dripstone_block.fall=true -minecraft\:block.glass.break=true -minecraft\:block.note_block.hat=true -gtceu\:file=true -minecraft\:block.cherry_leaves.break=true -minecraft\:entity.bat.ambient=true -minecraft\:block.flowering_azalea.step=true -minecraft\:item.armor.equip_turtle=true -minecraft\:entity.skeleton_horse.swim=true -minecraft\:block.mangrove_roots.place=true -minecraft\:entity.drowned.hurt=true -minecraft\:entity.player.swim=true -tfc\:item.armor.equip_bronze=true -minecraft\:entity.bat.takeoff=true -minecraft\:entity.parrot.imitate.zombie_villager=true -minecraft\:entity.painting.break=true -tfc\:item.armor.equip_red_steel=true -minecraft\:block.anvil.fall=true -minecraft\:block.hanging_sign.hit=true -alekiships\:music_disc_pirate_crafting=true -minecraft\:entity.warden.angry=true -exposure\:item.camera.filter_remove=true -minecraft\:entity.cow.hurt=true -minecraft\:entity.mooshroom.eat=true -minecraft\:block.chiseled_bookshelf.insert=true -tfc\:entity.largemouth_bass.ambient=true -minecraft\:block.sculk_shrieker.fall=true -minecraft\:block.iron_trapdoor.close=true -minecraft\:block.suspicious_gravel.step=true -minecraft\:entity.parrot.imitate.spider=true -minecraft\:block.sculk_shrieker.shriek=true -minecraft\:block.chest.close=true -minecraft\:entity.dolphin.attack=true -minecraft\:block.frogspawn.break=true -create\:train=true -minecraft\:entity.parrot.eat=true -minecraft\:item.bone_meal.use=true -minecraft\:block.small_dripleaf.fall=true -minecraft\:entity.vindicator.celebrate=true -minecraft\:entity.ocelot.ambient=true -minecraft\:entity.shulker.hurt=true -minecraft\:music.overworld.badlands=true -minecraft\:block.cave_vines.break=true -minecraft\:entity.player.attack.weak=true -gtceu\:plunger=true -minecraft\:entity.firework_rocket.shoot=true -minecraft\:block.deepslate_bricks.step=true -create\:funnel_flap_compounded_1=true -minecraft\:block.cherry_wood_hanging_sign.fall=true -gtceu\:computation=true -minecraft\:entity.lightning_bolt.thunder=false -minecraft\:entity.parrot.ambient=true -tfc\:entity.yak.death=true -minecraft\:block.cherry_wood.step=true -minecraft\:block.stem.break=true -minecraft\:entity.villager.death=true -minecraft\:block.suspicious_gravel.fall=true -minecraft\:block.amethyst_cluster.place=true -exposure\:item.camera.shutter_open=true -minecraft\:entity.villager.trade=true -minecraft\:entity.drowned.death_water=true -minecraft\:entity.cat.purr=true -minecraft\:block.conduit.ambient.short=true -minecraft\:block.piston.contract=true -tfc\:block.wattle.dyed=true -minecraft\:block.sculk_sensor.place=true -tfc\:entity.pheasant.ambient=true -minecraft\:entity.splash_potion.break=true -minecraft\:block.cherry_wood_pressure_plate.click_on=true -minecraft\:entity.item_frame.add_item=true -minecraft\:block.dripstone_block.step=true -minecraft\:entity.zombie_villager.step=true -tfc\:entity.tiger.step=true -minecraft\:block.glass.fall=true -minecraft\:block.lodestone.step=true -tfc\:entity.alpaca.step=true -minecraft\:entity.parrot.imitate.piglin=true -tfc\:entity.wildebeest.step=true -minecraft\:block.fire.extinguish=true -tfc\:entity.gazelle.ambient=true -gtceu\:metal_pipe=true -minecraft\:entity.panda.step=true -minecraft\:entity.player.hurt_on_fire=true -fallingtrees\:tree_impact=true -minecraft\:block.mud_bricks.place=true -tfc\:entity.moose.step=true -minecraft\:entity.tropical_fish.ambient=true -minecraft\:entity.sniffer.death=true -minecraft\:block.packed_mud.break=true -tfc\:item.javelin.hit_ground=true -minecraft\:entity.puffer_fish.blow_out=true -minecraft\:block.nether_wood_hanging_sign.fall=true -minecraft\:entity.parrot.imitate.vex=true -minecraft\:entity.fox.bite=true -minecraft\:ambient.warped_forest.loop=true -minecraft\:block.flowering_azalea.fall=true -minecraft\:block.sculk.spread=true -minecraft\:entity.camel.step=true -minecraft\:block.metal.break=true -create\:whistle_train_manual=true -minecraft\:ambient.crimson_forest.additions=true -minecraft\:block.cherry_wood_fence_gate.close=true -minecraft\:entity.piglin.step=true -minecraft\:entity.fishing_bobber.throw=true -minecraft\:block.packed_mud.fall=true -minecraft\:entity.horse.armor=true -minecraft\:block.amethyst_block.resonate=true -minecraft\:block.hanging_sign.step=true -minecraft\:block.nether_sprouts.step=true -minecraft\:block.nether_gold_ore.hit=true -minecraft\:block.mud_bricks.break=true -minecraft\:entity.painting.place=true -minecraft\:entity.parrot.imitate.drowned=true -gtceu\:chainsaw=true -minecraft\:entity.warden.sonic_charge=true -tfc\:entity.lion.sleep=true -minecraft\:block.chiseled_bookshelf.pickup.enchanted=true -minecraft\:music_disc.strad=true -minecraft\:entity.blaze.ambient=true -minecraft\:block.amethyst_cluster.fall=true -minecraft\:entity.cod.flop=true -minecraft\:entity.zombie_villager.cure=true -minecraft\:entity.dolphin.death=true -minecraft\:entity.warden.step=true -minecraft\:block.anvil.step=true -minecraft\:block.packed_mud.step=true -minecraft\:block.hanging_sign.fall=true -minecraft\:entity.sheep.step=true -minecraft\:entity.parrot.imitate.evoker=true -minecraft\:entity.cat.ambient=true -tfc\:item.ceramic.break=true -minecraft\:block.polished_deepslate.break=true -minecraft\:item.trident.hit=true -minecraft\:entity.magma_cube.hurt=true -minecraft\:block.wooden_pressure_plate.click_on=true -minecraft\:entity.generic.explode=true -minecraft\:block.nether_sprouts.fall=true -create\:depot_plop=true -minecraft\:entity.horse.saddle=true -minecraft\:block.lever.click=true -tfc\:block.wattle.woven=true -tfc\:entity.crocodile.hurt=true -minecraft\:block.roots.break=true -minecraft\:block.nether_wood_pressure_plate.click_off=true -minecraft\:entity.silverfish.ambient=true -create\:fwoomp=true -minecraft\:entity.zombified_piglin.death=true -minecraft\:block.bone_block.hit=true -minecraft\:entity.witch.celebrate=true -minecraft\:block.amethyst_cluster.step=true -tfc\:entity.cougar.death=true -minecraft\:ambient.soul_sand_valley.mood=true -tfc\:entity.alpaca.ambient=true -tfc\:block.large_vessel.close=true -tfc\:entity.bear.attack=true -minecraft\:block.powder_snow.hit=true -minecraft\:block.ancient_debris.place=true -minecraft\:entity.wither.death=true -minecraft\:block.sculk_sensor.break=true -gtceu\:bath=true -minecraft\:entity.ghast.scream=true -minecraft\:block.glass.step=true -minecraft\:block.lodestone.fall=true -minecraft\:block.sculk_catalyst.bloom=true -tfc\:entity.bluegill.death=true -minecraft\:block.cherry_wood_door.close=true -tfc\:entity.lake_trout.death=true -minecraft\:entity.llama.hurt=true -minecraft\:block.mangrove_roots.break=true -minecraft\:ui.stonecutter.select_recipe=true -minecraft\:entity.donkey.death=true -minecraft\:entity.allay.ambient_without_item=true -minecraft\:entity.rabbit.jump=true -astikorcarts\:entity.cart.attach=true -minecraft\:music.nether.basalt_deltas=true -minecraft\:entity.goat.screaming.milk=true -minecraft\:entity.warden.tendril_clicks=true -exposure\:item.camera.shutter_ticking=true -tfc\:block.peat.step=true -minecraft\:block.gravel.step=true -minecraft\:entity.ravager.attack=true -create\:crafter_craft=true -minecraft\:entity.parrot.imitate.blaze=true -minecraft\:entity.sniffer.searching=true -minecraft\:entity.snow_golem.death=true -tfc\:block.tool_rack.place=true -minecraft\:block.pointed_dripstone.hit=true -minecraft\:block.anvil.break=true -minecraft\:music.nether.nether_wastes=true -minecraft\:block.candle.ambient=true -minecraft\:block.nether_bricks.place=true -minecraft\:entity.zombified_piglin.hurt=true -minecraft\:entity.camel.dash=true -minecraft\:block.netherrack.fall=true -minecraft\:entity.ocelot.death=true -create\:worldshaper_place=true -minecraft\:item.shield.break=true -tfc\:block.peat.break=true -minecraft\:entity.player.hurt=true -minecraft\:item.armor.equip_generic=true -minecraft\:block.deepslate_bricks.hit=true -minecraft\:block.lantern.break=true -minecraft\:block.frogspawn.fall=true -tfc\:entity.lion.step=true -minecraft\:entity.turtle.lay_egg=true -create\:schematicannon_finish=true -minecraft\:block.cave_vines.fall=true -minecraft\:entity.wither.shoot=true -create\:train2=true -minecraft\:block.deepslate_tiles.place=true -minecraft\:entity.firework_rocket.twinkle=true -minecraft\:block.spore_blossom.fall=true -create\:train3=true -minecraft\:block.hanging_sign.place=true -minecraft\:block.netherite_block.hit=true -minecraft\:item.chorus_fruit.teleport=true -minecraft\:block.decorated_pot.hit=true -tfc\:entity.pheasant.death=true -minecraft\:block.deepslate.step=true -minecraft\:entity.villager.work_weaponsmith=true -minecraft\:block.chiseled_bookshelf.fall=true -minecraft\:block.gilded_blackstone.place=true -minecraft\:block.medium_amethyst_bud.break=true -minecraft\:entity.salmon.flop=true -gtceu\:cut=true -minecraft\:block.cherry_sapling.place=true -minecraft\:block.mud_bricks.hit=true -minecraft\:block.iron_door.close=true -minecraft\:block.mangrove_roots.fall=true -tfc\:entity.lion.ambient=true -minecraft\:item.armor.equip_gold=true -minecraft\:block.sculk_shrieker.break=true -create\:scroll_value=true -minecraft\:block.soul_sand.break=true -create\:whistle=true -gtceu\:soft_hammer=true -tfc\:entity.wildebeest.ambient=true -minecraft\:entity.generic.drink=true -minecraft\:entity.ghast.hurt=true -minecraft\:block.packed_mud.place=true -minecraft\:item.bucket.fill_axolotl=true -minecraft\:block.azalea_leaves.hit=true -endermanoverhaul\:bubble_pearl_thrown=true -minecraft\:block.cave_vines.step=true -minecraft\:entity.goat.step=true -minecraft\:entity.firework_rocket.blast_far=true -minecraft\:music.nether.crimson_forest=true -tfc\:entity.cougar.attack=true -minecraft\:item.goat_horn.sound.7=false -minecraft\:item.goat_horn.sound.6=false -minecraft\:block.sculk_shrieker.place=true -minecraft\:item.goat_horn.sound.5=false -minecraft\:item.goat_horn.sound.4=false -minecraft\:block.polished_deepslate.hit=true -minecraft\:item.bundle.insert=true -minecraft\:block.nether_bricks.hit=true -minecraft\:block.metal_pressure_plate.click_on=true -tfc\:block.loom.weave=true -tfc\:entity.manatee.flop=true -minecraft\:block.moss.break=true -minecraft\:item.goat_horn.sound.3=false -minecraft\:item.goat_horn.sound.2=false -minecraft\:item.goat_horn.sound.1=false -minecraft\:item.goat_horn.sound.0=false -minecraft\:block.pointed_dripstone.break=true -minecraft\:block.soul_sand.place=true -minecraft\:block.nether_wood_button.click_on=true -tfc\:entity.tfc_wolf.step=true -tfc\:entity.largemouth_bass.death=true -tfc\:entity.crappie.ambient=true -tfc\:item.javelin.throw=true -minecraft\:block.deepslate.fall=true -minecraft\:entity.wandering_trader.drink_milk=true -minecraft\:entity.parrot.imitate.creeper=true -minecraft\:entity.egg.throw=true -minecraft\:entity.magma_cube.squish=true -minecraft\:block.wool.break=true -minecraft\:entity.skeleton.shoot=true -minecraft\:entity.piglin_brute.step=true -gtceu\:screwdriver=true -tfc\:entity.alpaca.death=true -minecraft\:entity.drowned.death=true -minecraft\:block.weeping_vines.hit=true -minecraft\:block.bamboo_wood.hit=true -minecraft\:entity.bee.hurt=true -minecraft\:block.frogspawn.step=true -tfc\:entity.quail.death=true -minecraft\:block.vine.place=true -minecraft\:item.crossbow.loading_end=true -minecraft\:music.overworld.dripstone_caves=true -minecraft\:entity.player.attack.strong=true -tfc\:block.barrel.close=true -minecraft\:block.beehive.shear=true -minecraft\:entity.snow_golem.shoot=true -minecraft\:block.moss.hit=true -minecraft\:entity.panda.pre_sneeze=true -create\:controller_put=true -minecraft\:entity.cat.eat=true -tfc\:entity.jellyfish.flop=true -minecraft\:block.smithing_table.use=true -minecraft\:block.stem.fall=true -minecraft\:block.conduit.activate=true -railways\:conductor_whistle=true -minecraft\:ui.toast.out=true -tfc\:entity.grouse.ambient=true -minecraft\:block.mangrove_roots.step=true -waves\:waves.waves_breaking=true -minecraft\:entity.ender_eye.death=true -minecraft\:block.chorus_flower.death=true -minecraft\:block.deepslate_tiles.break=true -minecraft\:entity.vindicator.ambient=true -minecraft\:entity.frog.hurt=true -minecraft\:entity.puffer_fish.blow_up=true -minecraft\:block.basalt.place=true -minecraft\:block.muddy_mangrove_roots.place=true -minecraft\:music.overworld.sparse_jungle=true -minecraft\:entity.glow_squid.hurt=true -minecraft\:entity.zoglin.step=true -minecraft\:entity.elder_guardian.flop=true -minecraft\:entity.lightning_bolt.impact=true -minecraft\:entity.panda.cant_breed=true -minecraft\:item.book.page_turn=true -minecraft\:block.pink_petals.hit=true -minecraft\:entity.bat.hurt=true -minecraft\:entity.fox.sleep=true -minecraft\:block.medium_amethyst_bud.place=true -minecraft\:music.overworld.old_growth_taiga=true -minecraft\:block.sign.waxed_interact_fail=true -minecraft\:entity.glow_squid.death=true -minecraft\:ui.cartography_table.take_result=true -minecraft\:entity.zombie.attack_wooden_door=true -minecraft\:entity.illusioner.cast_spell=true -minecraft\:entity.salmon.death=true -minecraft\:entity.hostile.hurt=true -minecraft\:block.anvil.place=true -minecraft\:block.brewing_stand.brew=true -minecraft\:block.bamboo.break=true -create\:whistle_train_manual_low_end=true -minecraft\:block.glass.hit=true -minecraft\:block.shroomlight.fall=true -create\:deny=true -tfc\:item.armor.equip_copper=true -minecraft\:item.crop.plant=true -minecraft\:music_disc.chirp=true -tfc\:entity.deer.hurt=true -minecraft\:block.frogspawn.hit=true -minecraft\:entity.chicken.hurt=true -minecraft\:block.furnace.fire_crackle=true -minecraft\:entity.horse.step_wood=true -tfc\:entity.penguin.death=true -minecraft\:block.note_block.bell=true -create\:depot_slide=true -minecraft\:block.nether_wood.hit=true -minecraft\:entity.warden.agitated=true -minecraft\:entity.panda.worried_ambient=true -minecraft\:block.copper.step=true -minecraft\:entity.wolf.hurt=true -minecraft\:entity.enderman.teleport=true -minecraft\:block.lodestone.hit=true -minecraft\:block.gravel.fall=true -minecraft\:block.pointed_dripstone.step=true -minecraft\:entity.skeleton.death=true -minecraft\:block.deepslate_tiles.hit=true -minecraft\:entity.warden.sonic_boom=true -minecraft\:entity.llama.angry=true -minecraft\:entity.glow_item_frame.add_item=true -minecraft\:entity.wither.spawn=true -minecraft\:block.wool.place=true -minecraft\:block.stem.step=true -minecraft\:block.hanging_sign.break=true -minecraft\:block.gravel.break=true -minecraft\:block.vine.break=true -minecraft\:entity.warden.listening=true -minecraft\:block.basalt.hit=true -minecraft\:block.smoker.smoke=true -minecraft\:entity.wolf.growl=true -minecraft\:music_disc.5=true -minecraft\:entity.pillager.death=true -minecraft\:entity.ravager.step=true -create\:wrench_remove=true -minecraft\:item.axe.scrape=true -minecraft\:item.crossbow.loading_middle=true -minecraft\:entity.evoker.celebrate=true -minecraft\:block.copper.fall=true -minecraft\:entity.drowned.shoot=true -minecraft\:block.wood.hit=true -minecraft\:entity.zombie.hurt=true -gtceu\:mortar=true -minecraft\:block.composter.ready=true -tfc\:entity.sabertooth.hurt=true -exposure\:item.camera.interplanar_projector.project=true -minecraft\:entity.frog.eat=true -minecraft\:entity.parrot.imitate.illusioner=true -minecraft\:block.nether_bricks.step=true -tfc\:entity.crocodile.ambient=true -minecraft\:entity.illusioner.ambient=true -minecraft\:ambient.nether_wastes.additions=true -endermanoverhaul\:tall_enderman_death=true -chalk\:item.chalk_box_close=true -minecraft\:entity.camel.sit=true -minecraft\:entity.parrot.fly=true -tfc\:block.peat.fall=true -minecraft\:entity.boat.paddle_water=true -tfc\:entity.tfc_wolf.attack=true -minecraft\:entity.stray.ambient=true -minecraft\:entity.horse.step=true -tfc\:entity.bongo.hurt=true -tfc\:item.armor.equip_black_bronze=true -minecraft\:entity.enderman.hurt=true -minecraft\:item.shovel.flatten=true -minecraft\:item.bottle.empty=true -minecraft\:block.note_block.basedrum=true -minecraft\:block.sculk.charge=true -minecraft\:entity.item_frame.rotate_item=true -minecraft\:item.axe.strip=true -minecraft\:entity.axolotl.idle_air=true -minecraft\:block.netherrack.step=true -tfc\:entity.dog.ambient=true -minecraft\:entity.puffer_fish.ambient=true -createaddition\:electric_motor_buzz=true -minecraft\:entity.panda.hurt=true -minecraft\:block.powder_snow.step=true -tfc\:entity.hyena.sleep=true -tfc\:entity.bear.death=true -minecraft\:entity.shulker.close=true -minecraft\:block.shroomlight.step=true -tfc\:block.peat.place=true -tfc\:entity.tfc_wolf.sleep=true -minecraft\:entity.ender_eye.launch=true -tfc\:block.thatch.break=true -minecraft\:block.bamboo.place=true -tfc\:entity.crocodile.death=true -minecraft\:block.pointed_dripstone.drip_water_into_cauldron=true -tfc\:entity.dog.death=true -minecraft\:block.shulker_box.open=true -minecraft\:block.piston.extend=true -tfc\:entity.gazelle.death=true -minecraft\:entity.slime.attack=true -minecraft\:block.rooted_dirt.break=true -tfc\:entity.tiger.ambient=true -minecraft\:entity.goat.ram_impact=true -tfc\:block.crop.stick_add=true -minecraft\:entity.warden.hurt=true -minecraft\:ui.stonecutter.take_result=true -minecraft\:block.wool.step=true -tfc\:entity.hyena.ambient=true -minecraft\:block.bamboo_wood_fence_gate.open=true -tfc\:random.rock_slide_long=true -tfc\:entity.sabertooth.attack=true -minecraft\:block.cherry_wood_hanging_sign.break=true -minecraft\:entity.creeper.hurt=true -minecraft\:block.note_block.imitate.piglin=true -tfc\:block.thatch.hit=true -minecraft\:item.bucket.empty_axolotl=true -minecraft\:block.tripwire.click_off=true -minecraft\:entity.wandering_trader.ambient=true -minecraft\:block.iron_trapdoor.open=true -minecraft\:music.nether.warped_forest=true -minecraft\:block.suspicious_sand.step=true -minecraft\:entity.piglin_brute.angry=true -minecraft\:block.bamboo_wood_door.close=true -minecraft\:entity.spider.hurt=true -minecraft\:entity.witch.drink=true -endermanoverhaul\:tall_enderman_stare=true -minecraft\:entity.player.splash.high_speed=true -minecraft\:entity.donkey.hurt=true -minecraft\:entity.sniffer.eat=true -minecraft\:entity.snow_golem.hurt=true -minecraft\:block.bamboo_wood_fence_gate.close=true -minecraft\:block.nether_bricks.fall=true -minecraft\:block.beacon.power_select=true -minecraft\:block.suspicious_sand.break=true -minecraft\:block.snow.step=true -minecraft\:block.suspicious_gravel.hit=true -create\:whistle_train_manual_end=true -exposure\:item.photograph_frame.rotate_item=true -minecraft\:block.anvil.use=true -minecraft\:item.goat_horn.play=true -minecraft\:entity.minecart.inside=true -minecraft\:entity.wither.hurt=true -minecraft\:block.nylium.place=true -minecraft\:entity.shulker.ambient=true -tfc\:entity.largemouth_bass.flop=true -tfc\:entity.cougar.step=true -minecraft\:entity.tadpole.hurt=true -minecraft\:block.big_dripleaf.tilt_up=true -gtceu\:forge_hammer=true -minecraft\:block.froglight.step=true -chalk\:item.chalk_box_change=true -endermanoverhaul\:dark_oak_enderman_stare=true -minecraft\:block.suspicious_sand.fall=true -minecraft\:block.sculk_sensor.clicking=true -tfc\:entity.quail.step=true -minecraft\:entity.villager.hurt=true -minecraft\:block.suspicious_sand.place=true -minecraft\:block.coral_block.hit=true -minecraft\:entity.pillager.hurt=true -tfc\:entity.crocodile.sleep=true -create\:cogs=true -minecraft\:entity.cod.hurt=true -minecraft\:entity.parrot.imitate.skeleton=true -minecraft\:entity.piglin.angry=true -minecraft\:entity.zoglin.angry=true -tfc\:entity.musk_ox.hurt=true -minecraft\:entity.glow_item_frame.rotate_item=true -tfc\:entity.sabertooth.sleep=true -minecraft\:block.mangrove_roots.hit=true -minecraft\:block.powder_snow.fall=true -minecraft\:entity.warden.attack_impact=true -minecraft\:block.muddy_mangrove_roots.break=true -minecraft\:block.azalea.place=true -minecraft\:entity.ravager.ambient=true -minecraft\:entity.strider.death=true -minecraft\:ambient.underwater.exit=true -minecraft\:entity.parrot.imitate.stray=true -minecraft\:entity.slime.jump=true -create\:crafter_click_compounded_1=true -minecraft\:item.brush.brushing.sand=true -minecraft\:entity.mule.hurt=true -minecraft\:block.rooted_dirt.step=true -minecraft\:entity.axolotl.hurt=true -minecraft\:entity.villager.no=true -minecraft\:block.azalea.hit=true -tfc\:item.knapping.clay=true -minecraft\:music.overworld.swamp=true -minecraft\:music.creative=true -tfc\:entity.crocodile.step=true -minecraft\:entity.villager.work_fletcher=true -minecraft\:entity.villager.work_mason=true -create\:haunted_bell_use=true -minecraft\:entity.skeleton.converted_to_stray=true -create\:controller_click=true -minecraft\:entity.allay.death=true -minecraft\:block.spore_blossom.step=true -create\:spout=true -minecraft\:music.overworld.desert=true -minecraft\:block.suspicious_sand.hit=true -minecraft\:block.wooden_door.close=true -minecraft\:block.nylium.break=true -tfc\:entity.yak.step=true -minecraft\:item.axe.wax_off=true -minecraft\:entity.evoker.cast_spell=true -minecraft\:particle.soul_escape=true -minecraft\:block.chiseled_bookshelf.step=true -minecraft\:block.froglight.fall=true -minecraft\:block.honey_block.place=true -tfc\:entity.bear.ambient=true -minecraft\:entity.mule.chest=true -minecraft\:block.scaffolding.place=true -tfc\:block.large_vessel.open=true -tfc\:entity.deer.death=true -minecraft\:block.netherrack.hit=true -minecraft\:entity.wandering_trader.drink_potion=true -create\:contraption_assemble_compounded_1=true -minecraft\:block.snow.fall=true -minecraft\:entity.tropical_fish.hurt=true -minecraft\:block.cherry_sapling.break=true -minecraft\:entity.polar_bear.death=true -minecraft\:block.pink_petals.fall=true -minecraft\:block.cherry_wood_hanging_sign.hit=true -tfc\:entity.musk_ox.ambient=true -minecraft\:music.overworld.deep_dark=true -tfc\:block.barrel.drip=true -minecraft\:block.chiseled_bookshelf.place=true -minecraft\:block.cherry_wood_door.open=true -minecraft\:item.lodestone_compass.lock=true -exposure\:item.camera.filter_insert=true -minecraft\:block.note_block.imitate.skeleton=true -tfc\:entity.penguin.step=true -createaddition\:electric_charge=true -minecraft\:block.rooted_dirt.fall=true -minecraft\:block.lantern.hit=true -minecraft\:entity.sniffer.idle=true -tfc\:entity.hyena.step=true -minecraft\:block.grass.fall=true -minecraft\:entity.evoker_fangs.attack=true -minecraft\:entity.witch.throw=true -minecraft\:block.crop.break=true -minecraft\:entity.donkey.chest=true -minecraft\:item.brush.brushing.generic=true -minecraft\:block.cherry_leaves.step=true -minecraft\:block.cherry_wood_hanging_sign.place=true -tfc\:entity.gazelle.step=true -minecraft\:entity.zombie.destroy_egg=true -minecraft\:entity.drowned.step=true -minecraft\:block.muddy_mangrove_roots.hit=true -minecraft\:block.wool.fall=true -minecraft\:entity.endermite.step=true -minecraft\:entity.parrot.imitate.piglin_brute=true -create\:crafter_click=true -minecraft\:entity.shulker_bullet.hit=true -minecraft\:block.note_block.iron_xylophone=true -minecraft\:entity.vindicator.death=true -tfc\:entity.deer.ambient=true -minecraft\:block.nether_bricks.break=true -minecraft\:entity.warden.emerge=true -minecraft\:block.small_dripleaf.hit=true -minecraft\:ambient.soul_sand_valley.loop=true -minecraft\:item.armor.equip_netherite=true -minecraft\:item.brush.brushing.sand.complete=true -minecraft\:block.barrel.open=true -gtceu\:miner=true -tfc\:item.knapping.stone=true -minecraft\:entity.phantom.bite=true -minecraft\:entity.sheep.death=true -minecraft\:block.grass.step=true -minecraft\:entity.dragon_fireball.explode=true -minecraft\:entity.mooshroom.shear=true -minecraft\:entity.goat.horn_break=true -tfc\:block.thatch.place=true -minecraft\:entity.iron_golem.hurt=true -minecraft\:entity.llama.spit=true -minecraft\:ambient.basalt_deltas.additions=true -minecraft\:entity.goat.milk=true -minecraft\:entity.slime.jump_small=true -minecraft\:entity.frog.lay_spawn=true -chalk\:item.chalk_draw=true -tfc\:entity.grouse.hurt=true -tfc\:block.thin.step=true -minecraft\:block.nether_wood_trapdoor.open=true -minecraft\:block.lantern.place=true -minecraft\:block.moss.place=true -minecraft\:block.wood.break=true -minecraft\:enchant.thorns.hit=true -tfc\:entity.yak.ambient=true -minecraft\:block.scaffolding.break=true -minecraft\:block.composter.fill=true -immersive_aircraft\:propeller_tiny=true -minecraft\:item.book.put=true diff --git a/config/sound_physics_remastered/occlusion.properties b/config/sound_physics_remastered/occlusion.properties index b0f3a0daf..53adea71f 100644 --- a/config/sound_physics_remastered/occlusion.properties +++ b/config/sound_physics_remastered/occlusion.properties @@ -9,211 +9,211 @@ # By block ID: # minecraft\:oak_log=1.0 -# Slime Block (Sound Type) -SLIME_BLOCK=1.0 -# Copper (Sound Type) -COPPER=1.0 -# Cherry Sapling (Sound Type) -CHERRY_SAPLING=1.0 -# Roots (Sound Type) -ROOTS=0.0 -# Shroomlight (Sound Type) -SHROOMLIGHT=1.0 -# Froglight (Sound Type) -FROGLIGHT=1.0 -# Rooted Dirt (Sound Type) -ROOTED_DIRT=1.0 -# Nether Gold Ore (Sound Type) -NETHER_GOLD_ORE=1.0 -# Suspicious Gravel (Sound Type) -SUSPICIOUS_GRAVEL=1.0 -# Flowering Azalea (Sound Type) -FLOWERING_AZALEA=1.0 +# Amethyst (Sound Type) +AMETHYST=1.0 +# Amethyst Cluster (Sound Type) +AMETHYST_CLUSTER=1.0 +# Ancient Debris (Sound Type) +ANCIENT_DEBRIS=1.0 # Anvil (Sound Type) ANVIL=1.0 -# Decorated Pot Cracked (Sound Type) -DECORATED_POT_CRACKED=1.0 -# Powder Snow (Sound Type) -POWDER_SNOW=0.1 -# Spore Blossom (Sound Type) -SPORE_BLOSSOM=0.0 -# Soul Soil (Sound Type) -SOUL_SOIL=1.0 -# Wet Grass (Sound Type) -WET_GRASS=0.1 -# Deepslate Bricks (Sound Type) -DEEPSLATE_BRICKS=1.0 +# Azalea (Sound Type) +AZALEA=1.0 +# Azalea Leaves (Sound Type) +AZALEA_LEAVES=1.0 +# Bamboo (Sound Type) +BAMBOO=0.1 +# Bamboo Sapling (Sound Type) +BAMBOO_SAPLING=0.1 +# Bamboo Wood (Sound Type) +BAMBOO_WOOD=1.0 +# Bamboo Wood Hanging Sign (Sound Type) +BAMBOO_WOOD_HANGING_SIGN=1.0 +# Basalt (Sound Type) +BASALT=1.0 +# Big Dripleaf (Sound Type) +BIG_DRIPLEAF=1.0 +# Bone Block (Sound Type) +BONE_BLOCK=1.0 +# Calcite (Sound Type) +CALCITE=1.0 +# Candle (Sound Type) +CANDLE=1.0 +# Cave Vines (Sound Type) +CAVE_VINES=1.0 +# Chain (Sound Type) +CHAIN=0.0 +# Cherry Leaves (Sound Type) +CHERRY_LEAVES=1.0 +# Cherry Sapling (Sound Type) +CHERRY_SAPLING=1.0 +# Cherry Wood (Sound Type) +CHERRY_WOOD=1.0 +# Cherry Wood Hanging Sign (Sound Type) +CHERRY_WOOD_HANGING_SIGN=1.0 +# Chiseled Bookshelf (Sound Type) +CHISELED_BOOKSHELF=1.0 +# Copper (Sound Type) +COPPER=1.0 +# Coral Block (Sound Type) +CORAL_BLOCK=1.0 # Crop (Sound Type) CROP=0.0 # Decorated Pot (Sound Type) DECORATED_POT=1.0 -# Scaffolding (Sound Type) -SCAFFOLDING=0.0 -# Nether Bricks (Sound Type) -NETHER_BRICKS=1.0 -# Vine (Sound Type) -VINE=0.0 -# Medium Amethyst Bud (Sound Type) -MEDIUM_AMETHYST_BUD=0.0 -# Calcite (Sound Type) -CALCITE=1.0 -# Bamboo Wood Hanging Sign (Sound Type) -BAMBOO_WOOD_HANGING_SIGN=1.0 -# Gilded Blackstone (Sound Type) -GILDED_BLACKSTONE=1.0 -# Bamboo Wood (Sound Type) -BAMBOO_WOOD=1.0 -# Ancient Debris (Sound Type) -ANCIENT_DEBRIS=1.0 -# Bone Block (Sound Type) -BONE_BLOCK=1.0 -# Sculk (Sound Type) -SCULK=1.0 -# Wood (Sound Type) -WOOD=1.0 -# Netherite Block (Sound Type) -NETHERITE_BLOCK=1.0 -# Soul Sand (Sound Type) -SOUL_SAND=1.0 -# Sculk Vein (Sound Type) -SCULK_VEIN=1.0 -# Twisting Vines (Sound Type) -TWISTING_VINES=0.0 -# Small Amethyst Bud (Sound Type) -SMALL_AMETHYST_BUD=0.0 -# Basalt (Sound Type) -BASALT=1.0 -# Bamboo Sapling (Sound Type) -BAMBOO_SAPLING=0.1 -# Nether Wart (Sound Type) -NETHER_WART=1.0 -# Nether Wood Hanging Sign (Sound Type) -NETHER_WOOD_HANGING_SIGN=1.0 -# Sand (Sound Type) -SAND=1.0 +# Decorated Pot Cracked (Sound Type) +DECORATED_POT_CRACKED=1.0 +# Deepslate (Sound Type) +DEEPSLATE=1.0 +# Deepslate Bricks (Sound Type) +DEEPSLATE_BRICKS=1.0 # Deepslate Tiles (Sound Type) DEEPSLATE_TILES=1.0 # Dripstone Block (Sound Type) DRIPSTONE_BLOCK=1.0 -# Mud (Sound Type) -MUD=1.0 -# Weeping Vines (Sound Type) -WEEPING_VINES=0.0 -# Wart Block (Sound Type) -WART_BLOCK=1.0 -# Amethyst (Sound Type) -AMETHYST=1.0 -# Hanging Sign (Sound Type) -HANGING_SIGN=1.0 -# Glow Lichen (Sound Type) -GLOW_LICHEN=0.0 -# Large Amethyst Bud (Sound Type) -LARGE_AMETHYST_BUD=0.0 -# Sculk Sensor (Sound Type) -SCULK_SENSOR=1.0 -# Azalea (Sound Type) -AZALEA=1.0 -# Stone (Sound Type) -STONE=1.0 -# Fungus (Sound Type) -FUNGUS=0.0 -# Small Dripleaf (Sound Type) -SMALL_DRIPLEAF=0.0 -# Lantern (Sound Type) -LANTERN=1.0 -# Lodestone (Sound Type) -LODESTONE=1.0 -# Pointed Dripstone (Sound Type) -POINTED_DRIPSTONE=0.0 -# Big Dripleaf (Sound Type) -BIG_DRIPLEAF=1.0 -# Chiseled Bookshelf (Sound Type) -CHISELED_BOOKSHELF=1.0 -# Candle (Sound Type) -CANDLE=1.0 -# Bamboo (Sound Type) -BAMBOO=0.1 -# Nether Ore (Sound Type) -NETHER_ORE=1.0 -# Cave Vines (Sound Type) -CAVE_VINES=1.0 -# Glass (Sound Type) -GLASS=0.1 -# Ladder (Sound Type) -LADDER=0.0 -# Stem (Sound Type) -STEM=1.0 -# Hard Crop (Sound Type) -HARD_CROP=1.0 -# Chain (Sound Type) -CHAIN=0.0 -# Nether Sprouts (Sound Type) -NETHER_SPROUTS=1.0 -# Wool (Sound Type) -WOOL=1.5 -# Moss Carpet (Sound Type) -MOSS_CARPET=0.1 -# Cherry Leaves (Sound Type) -CHERRY_LEAVES=1.0 -# Nylium (Sound Type) -NYLIUM=1.0 -# Packed Mud (Sound Type) -PACKED_MUD=1.0 -# Metal (Sound Type) -METAL=1.0 +# Flowering Azalea (Sound Type) +FLOWERING_AZALEA=1.0 +# Froglight (Sound Type) +FROGLIGHT=1.0 # Frogspawn (Sound Type) FROGSPAWN=1.0 -# Sweet Berry Bush (Sound Type) -SWEET_BERRY_BUSH=0.0 -# Sculk Shrieker (Sound Type) -SCULK_SHRIEKER=1.0 -# Nether Wood (Sound Type) -NETHER_WOOD=1.0 -# Amethyst Cluster (Sound Type) -AMETHYST_CLUSTER=1.0 -# Moss (Sound Type) -MOSS=0.75 -# Sculk Catalyst (Sound Type) -SCULK_CATALYST=1.0 -# Muddy Mangrove Roots (Sound Type) -MUDDY_MANGROVE_ROOTS=1.0 -# Deepslate (Sound Type) -DEEPSLATE=1.0 -# Snow (Sound Type) -SNOW=0.1 -# Coral Block (Sound Type) -CORAL_BLOCK=1.0 -# Hanging Roots (Sound Type) -HANGING_ROOTS=1.0 -# Mangrove Roots (Sound Type) -MANGROVE_ROOTS=1.0 -# Mud Bricks (Sound Type) -MUD_BRICKS=1.0 -# Cherry Wood Hanging Sign (Sound Type) -CHERRY_WOOD_HANGING_SIGN=1.0 -# Polished Deepslate (Sound Type) -POLISHED_DEEPSLATE=1.0 +# Fungus (Sound Type) +FUNGUS=0.0 +# Gilded Blackstone (Sound Type) +GILDED_BLACKSTONE=1.0 +# Glass (Sound Type) +GLASS=0.1 +# Glow Lichen (Sound Type) +GLOW_LICHEN=0.0 # Grass (Sound Type) GRASS=1.0 # Gravel (Sound Type) GRAVEL=1.0 +# Hanging Roots (Sound Type) +HANGING_ROOTS=1.0 +# Hanging Sign (Sound Type) +HANGING_SIGN=1.0 +# Hard Crop (Sound Type) +HARD_CROP=1.0 # Honey Block (Sound Type) HONEY_BLOCK=0.5 -# Azalea Leaves (Sound Type) -AZALEA_LEAVES=1.0 -# Cherry Wood (Sound Type) -CHERRY_WOOD=1.0 -# Tuff (Sound Type) -TUFF=1.0 +# Ladder (Sound Type) +LADDER=0.0 +# Lantern (Sound Type) +LANTERN=1.0 +# Large Amethyst Bud (Sound Type) +LARGE_AMETHYST_BUD=0.0 # Lily Pad (Sound Type) LILY_PAD=0.0 +# Lodestone (Sound Type) +LODESTONE=1.0 +# Mangrove Roots (Sound Type) +MANGROVE_ROOTS=1.0 +# Medium Amethyst Bud (Sound Type) +MEDIUM_AMETHYST_BUD=0.0 +# Metal (Sound Type) +METAL=1.0 +# Moss (Sound Type) +MOSS=0.75 +# Moss Carpet (Sound Type) +MOSS_CARPET=0.1 +# Mud (Sound Type) +MUD=1.0 +# Muddy Mangrove Roots (Sound Type) +MUDDY_MANGROVE_ROOTS=1.0 +# Mud Bricks (Sound Type) +MUD_BRICKS=1.0 +# Netherite Block (Sound Type) +NETHERITE_BLOCK=1.0 # Netherrack (Sound Type) NETHERRACK=1.0 +# Nether Bricks (Sound Type) +NETHER_BRICKS=1.0 +# Nether Gold Ore (Sound Type) +NETHER_GOLD_ORE=1.0 +# Nether Ore (Sound Type) +NETHER_ORE=1.0 +# Nether Sprouts (Sound Type) +NETHER_SPROUTS=1.0 +# Nether Wart (Sound Type) +NETHER_WART=1.0 +# Nether Wood (Sound Type) +NETHER_WOOD=1.0 +# Nether Wood Hanging Sign (Sound Type) +NETHER_WOOD_HANGING_SIGN=1.0 +# Nylium (Sound Type) +NYLIUM=1.0 +# Packed Mud (Sound Type) +PACKED_MUD=1.0 +# Pointed Dripstone (Sound Type) +POINTED_DRIPSTONE=0.0 +# Polished Deepslate (Sound Type) +POLISHED_DEEPSLATE=1.0 +# Powder Snow (Sound Type) +POWDER_SNOW=0.1 +# Rooted Dirt (Sound Type) +ROOTED_DIRT=1.0 +# Roots (Sound Type) +ROOTS=0.0 +# Sand (Sound Type) +SAND=1.0 +# Scaffolding (Sound Type) +SCAFFOLDING=0.0 +# Sculk (Sound Type) +SCULK=1.0 +# Sculk Catalyst (Sound Type) +SCULK_CATALYST=1.0 +# Sculk Sensor (Sound Type) +SCULK_SENSOR=1.0 +# Sculk Shrieker (Sound Type) +SCULK_SHRIEKER=1.0 +# Sculk Vein (Sound Type) +SCULK_VEIN=1.0 +# Shroomlight (Sound Type) +SHROOMLIGHT=1.0 +# Slime Block (Sound Type) +SLIME_BLOCK=1.0 +# Small Amethyst Bud (Sound Type) +SMALL_AMETHYST_BUD=0.0 +# Small Dripleaf (Sound Type) +SMALL_DRIPLEAF=0.0 +# Snow (Sound Type) +SNOW=0.1 +# Soul Sand (Sound Type) +SOUL_SAND=1.0 +# Soul Soil (Sound Type) +SOUL_SOIL=1.0 +# Spore Blossom (Sound Type) +SPORE_BLOSSOM=0.0 +# Stem (Sound Type) +STEM=1.0 +# Stone (Sound Type) +STONE=1.0 +# Suspicious Gravel (Sound Type) +SUSPICIOUS_GRAVEL=1.0 # Suspicious Sand (Sound Type) SUSPICIOUS_SAND=1.0 -# Water (Block) -minecraft\:water=0.25 -# Lava (Block) -minecraft\:lava=0.75 +# Sweet Berry Bush (Sound Type) +SWEET_BERRY_BUSH=0.0 +# Tuff (Sound Type) +TUFF=1.0 +# Twisting Vines (Sound Type) +TWISTING_VINES=0.0 +# Vine (Sound Type) +VINE=0.0 +# Wart Block (Sound Type) +WART_BLOCK=1.0 +# Weeping Vines (Sound Type) +WEEPING_VINES=0.0 +# Wet Grass (Sound Type) +WET_GRASS=0.1 +# Wood (Sound Type) +WOOD=1.0 +# Wool (Sound Type) +WOOL=1.5 # Jukebox (Block) minecraft\:jukebox=0.0 +# Lava (Block) +minecraft\:lava=0.75 +# Water (Block) +minecraft\:water=0.25 diff --git a/config/sound_physics_remastered/reflectivity.properties b/config/sound_physics_remastered/reflectivity.properties index f6471f930..9386f0971 100644 --- a/config/sound_physics_remastered/reflectivity.properties +++ b/config/sound_physics_remastered/reflectivity.properties @@ -9,205 +9,205 @@ # By block ID: # minecraft\:oak_log=1.0 -# Slime Block (Sound Type) -SLIME_BLOCK=0.5 -# Copper (Sound Type) -COPPER=1.25 -# Cherry Sapling (Sound Type) -CHERRY_SAPLING=0.5 -# Roots (Sound Type) -ROOTS=0.5 -# Shroomlight (Sound Type) -SHROOMLIGHT=0.5 -# Froglight (Sound Type) -FROGLIGHT=0.5 -# Rooted Dirt (Sound Type) -ROOTED_DIRT=0.5 -# Nether Gold Ore (Sound Type) -NETHER_GOLD_ORE=1.1 -# Suspicious Gravel (Sound Type) -SUSPICIOUS_GRAVEL=0.5 -# Flowering Azalea (Sound Type) -FLOWERING_AZALEA=0.5 +# Amethyst (Sound Type) +AMETHYST=1.5 +# Amethyst Cluster (Sound Type) +AMETHYST_CLUSTER=0.5 +# Ancient Debris (Sound Type) +ANCIENT_DEBRIS=0.5 # Anvil (Sound Type) ANVIL=0.5 -# Decorated Pot Cracked (Sound Type) -DECORATED_POT_CRACKED=0.5 -# Powder Snow (Sound Type) -POWDER_SNOW=0.5 -# Spore Blossom (Sound Type) -SPORE_BLOSSOM=0.5 -# Soul Soil (Sound Type) -SOUL_SOIL=0.2 -# Wet Grass (Sound Type) -WET_GRASS=0.5 -# Deepslate Bricks (Sound Type) -DEEPSLATE_BRICKS=1.5 +# Azalea (Sound Type) +AZALEA=0.5 +# Azalea Leaves (Sound Type) +AZALEA_LEAVES=0.5 +# Bamboo (Sound Type) +BAMBOO=0.5 +# Bamboo Sapling (Sound Type) +BAMBOO_SAPLING=0.5 +# Bamboo Wood (Sound Type) +BAMBOO_WOOD=0.5 +# Bamboo Wood Hanging Sign (Sound Type) +BAMBOO_WOOD_HANGING_SIGN=0.5 +# Basalt (Sound Type) +BASALT=1.5 +# Big Dripleaf (Sound Type) +BIG_DRIPLEAF=0.5 +# Bone Block (Sound Type) +BONE_BLOCK=1.5 +# Calcite (Sound Type) +CALCITE=1.5 +# Candle (Sound Type) +CANDLE=0.5 +# Cave Vines (Sound Type) +CAVE_VINES=0.5 +# Chain (Sound Type) +CHAIN=0.5 +# Cherry Leaves (Sound Type) +CHERRY_LEAVES=0.5 +# Cherry Sapling (Sound Type) +CHERRY_SAPLING=0.5 +# Cherry Wood (Sound Type) +CHERRY_WOOD=0.5 +# Cherry Wood Hanging Sign (Sound Type) +CHERRY_WOOD_HANGING_SIGN=0.5 +# Chiseled Bookshelf (Sound Type) +CHISELED_BOOKSHELF=0.5 +# Copper (Sound Type) +COPPER=1.25 +# Coral Block (Sound Type) +CORAL_BLOCK=0.2 # Crop (Sound Type) CROP=0.5 # Decorated Pot (Sound Type) DECORATED_POT=0.5 -# Scaffolding (Sound Type) -SCAFFOLDING=0.5 -# Nether Bricks (Sound Type) -NETHER_BRICKS=1.5 -# Vine (Sound Type) -VINE=0.5 -# Medium Amethyst Bud (Sound Type) -MEDIUM_AMETHYST_BUD=0.5 -# Calcite (Sound Type) -CALCITE=1.5 -# Bamboo Wood Hanging Sign (Sound Type) -BAMBOO_WOOD_HANGING_SIGN=0.5 -# Gilded Blackstone (Sound Type) -GILDED_BLACKSTONE=0.5 -# Bamboo Wood (Sound Type) -BAMBOO_WOOD=0.5 -# Ancient Debris (Sound Type) -ANCIENT_DEBRIS=0.5 -# Bone Block (Sound Type) -BONE_BLOCK=1.5 -# Sculk (Sound Type) -SCULK=0.5 -# Wood (Sound Type) -WOOD=0.4 -# Netherite Block (Sound Type) -NETHERITE_BLOCK=1.5 -# Soul Sand (Sound Type) -SOUL_SAND=0.2 -# Sculk Vein (Sound Type) -SCULK_VEIN=0.5 -# Twisting Vines (Sound Type) -TWISTING_VINES=0.5 -# Small Amethyst Bud (Sound Type) -SMALL_AMETHYST_BUD=0.5 -# Basalt (Sound Type) -BASALT=1.5 -# Bamboo Sapling (Sound Type) -BAMBOO_SAPLING=0.5 -# Nether Wart (Sound Type) -NETHER_WART=0.5 -# Nether Wood Hanging Sign (Sound Type) -NETHER_WOOD_HANGING_SIGN=0.5 -# Sand (Sound Type) -SAND=0.2 +# Decorated Pot Cracked (Sound Type) +DECORATED_POT_CRACKED=0.5 +# Deepslate (Sound Type) +DEEPSLATE=1.5 +# Deepslate Bricks (Sound Type) +DEEPSLATE_BRICKS=1.5 # Deepslate Tiles (Sound Type) DEEPSLATE_TILES=1.5 # Dripstone Block (Sound Type) DRIPSTONE_BLOCK=0.5 -# Mud (Sound Type) -MUD=0.5 -# Weeping Vines (Sound Type) -WEEPING_VINES=0.5 -# Wart Block (Sound Type) -WART_BLOCK=0.5 -# Amethyst (Sound Type) -AMETHYST=1.5 -# Hanging Sign (Sound Type) -HANGING_SIGN=0.5 -# Glow Lichen (Sound Type) -GLOW_LICHEN=0.5 -# Large Amethyst Bud (Sound Type) -LARGE_AMETHYST_BUD=0.5 -# Sculk Sensor (Sound Type) -SCULK_SENSOR=0.5 -# Azalea (Sound Type) -AZALEA=0.5 -# Stone (Sound Type) -STONE=1.5 -# Fungus (Sound Type) -FUNGUS=0.5 -# Small Dripleaf (Sound Type) -SMALL_DRIPLEAF=0.5 -# Lantern (Sound Type) -LANTERN=0.5 -# Lodestone (Sound Type) -LODESTONE=0.5 -# Pointed Dripstone (Sound Type) -POINTED_DRIPSTONE=0.5 -# Big Dripleaf (Sound Type) -BIG_DRIPLEAF=0.5 -# Chiseled Bookshelf (Sound Type) -CHISELED_BOOKSHELF=0.5 -# Candle (Sound Type) -CANDLE=0.5 -# Bamboo (Sound Type) -BAMBOO=0.5 -# Nether Ore (Sound Type) -NETHER_ORE=1.1 -# Cave Vines (Sound Type) -CAVE_VINES=0.5 -# Glass (Sound Type) -GLASS=0.75 -# Ladder (Sound Type) -LADDER=0.5 -# Stem (Sound Type) -STEM=0.4 -# Hard Crop (Sound Type) -HARD_CROP=0.5 -# Chain (Sound Type) -CHAIN=0.5 -# Nether Sprouts (Sound Type) -NETHER_SPROUTS=0.5 -# Wool (Sound Type) -WOOL=0.1 -# Moss Carpet (Sound Type) -MOSS_CARPET=0.5 -# Cherry Leaves (Sound Type) -CHERRY_LEAVES=0.5 -# Nylium (Sound Type) -NYLIUM=0.5 -# Packed Mud (Sound Type) -PACKED_MUD=0.5 -# Metal (Sound Type) -METAL=1.25 +# Flowering Azalea (Sound Type) +FLOWERING_AZALEA=0.5 +# Froglight (Sound Type) +FROGLIGHT=0.5 # Frogspawn (Sound Type) FROGSPAWN=0.5 -# Sweet Berry Bush (Sound Type) -SWEET_BERRY_BUSH=0.5 -# Sculk Shrieker (Sound Type) -SCULK_SHRIEKER=0.5 -# Nether Wood (Sound Type) -NETHER_WOOD=0.5 -# Amethyst Cluster (Sound Type) -AMETHYST_CLUSTER=0.5 -# Moss (Sound Type) -MOSS=0.1 -# Sculk Catalyst (Sound Type) -SCULK_CATALYST=0.5 -# Muddy Mangrove Roots (Sound Type) -MUDDY_MANGROVE_ROOTS=0.5 -# Deepslate (Sound Type) -DEEPSLATE=1.5 -# Snow (Sound Type) -SNOW=0.15 -# Coral Block (Sound Type) -CORAL_BLOCK=0.2 -# Hanging Roots (Sound Type) -HANGING_ROOTS=0.5 -# Mangrove Roots (Sound Type) -MANGROVE_ROOTS=0.5 -# Mud Bricks (Sound Type) -MUD_BRICKS=0.5 -# Cherry Wood Hanging Sign (Sound Type) -CHERRY_WOOD_HANGING_SIGN=0.5 -# Polished Deepslate (Sound Type) -POLISHED_DEEPSLATE=1.5 +# Fungus (Sound Type) +FUNGUS=0.5 +# Gilded Blackstone (Sound Type) +GILDED_BLACKSTONE=0.5 +# Glass (Sound Type) +GLASS=0.75 +# Glow Lichen (Sound Type) +GLOW_LICHEN=0.5 # Grass (Sound Type) GRASS=0.3 # Gravel (Sound Type) GRAVEL=0.3 +# Hanging Roots (Sound Type) +HANGING_ROOTS=0.5 +# Hanging Sign (Sound Type) +HANGING_SIGN=0.5 +# Hard Crop (Sound Type) +HARD_CROP=0.5 # Honey Block (Sound Type) HONEY_BLOCK=0.1 -# Azalea Leaves (Sound Type) -AZALEA_LEAVES=0.5 -# Cherry Wood (Sound Type) -CHERRY_WOOD=0.5 -# Tuff (Sound Type) -TUFF=1.5 +# Ladder (Sound Type) +LADDER=0.5 +# Lantern (Sound Type) +LANTERN=0.5 +# Large Amethyst Bud (Sound Type) +LARGE_AMETHYST_BUD=0.5 # Lily Pad (Sound Type) LILY_PAD=0.5 +# Lodestone (Sound Type) +LODESTONE=0.5 +# Mangrove Roots (Sound Type) +MANGROVE_ROOTS=0.5 +# Medium Amethyst Bud (Sound Type) +MEDIUM_AMETHYST_BUD=0.5 +# Metal (Sound Type) +METAL=1.25 +# Moss (Sound Type) +MOSS=0.1 +# Moss Carpet (Sound Type) +MOSS_CARPET=0.5 +# Mud (Sound Type) +MUD=0.5 +# Muddy Mangrove Roots (Sound Type) +MUDDY_MANGROVE_ROOTS=0.5 +# Mud Bricks (Sound Type) +MUD_BRICKS=0.5 +# Netherite Block (Sound Type) +NETHERITE_BLOCK=1.5 # Netherrack (Sound Type) NETHERRACK=1.1 +# Nether Bricks (Sound Type) +NETHER_BRICKS=1.5 +# Nether Gold Ore (Sound Type) +NETHER_GOLD_ORE=1.1 +# Nether Ore (Sound Type) +NETHER_ORE=1.1 +# Nether Sprouts (Sound Type) +NETHER_SPROUTS=0.5 +# Nether Wart (Sound Type) +NETHER_WART=0.5 +# Nether Wood (Sound Type) +NETHER_WOOD=0.5 +# Nether Wood Hanging Sign (Sound Type) +NETHER_WOOD_HANGING_SIGN=0.5 +# Nylium (Sound Type) +NYLIUM=0.5 +# Packed Mud (Sound Type) +PACKED_MUD=0.5 +# Pointed Dripstone (Sound Type) +POINTED_DRIPSTONE=0.5 +# Polished Deepslate (Sound Type) +POLISHED_DEEPSLATE=1.5 +# Powder Snow (Sound Type) +POWDER_SNOW=0.5 +# Rooted Dirt (Sound Type) +ROOTED_DIRT=0.5 +# Roots (Sound Type) +ROOTS=0.5 +# Sand (Sound Type) +SAND=0.2 +# Scaffolding (Sound Type) +SCAFFOLDING=0.5 +# Sculk (Sound Type) +SCULK=0.5 +# Sculk Catalyst (Sound Type) +SCULK_CATALYST=0.5 +# Sculk Sensor (Sound Type) +SCULK_SENSOR=0.5 +# Sculk Shrieker (Sound Type) +SCULK_SHRIEKER=0.5 +# Sculk Vein (Sound Type) +SCULK_VEIN=0.5 +# Shroomlight (Sound Type) +SHROOMLIGHT=0.5 +# Slime Block (Sound Type) +SLIME_BLOCK=0.5 +# Small Amethyst Bud (Sound Type) +SMALL_AMETHYST_BUD=0.5 +# Small Dripleaf (Sound Type) +SMALL_DRIPLEAF=0.5 +# Snow (Sound Type) +SNOW=0.15 +# Soul Sand (Sound Type) +SOUL_SAND=0.2 +# Soul Soil (Sound Type) +SOUL_SOIL=0.2 +# Spore Blossom (Sound Type) +SPORE_BLOSSOM=0.5 +# Stem (Sound Type) +STEM=0.4 +# Stone (Sound Type) +STONE=1.5 +# Suspicious Gravel (Sound Type) +SUSPICIOUS_GRAVEL=0.5 # Suspicious Sand (Sound Type) SUSPICIOUS_SAND=0.5 +# Sweet Berry Bush (Sound Type) +SWEET_BERRY_BUSH=0.5 +# Tuff (Sound Type) +TUFF=1.5 +# Twisting Vines (Sound Type) +TWISTING_VINES=0.5 +# Vine (Sound Type) +VINE=0.5 +# Wart Block (Sound Type) +WART_BLOCK=0.5 +# Weeping Vines (Sound Type) +WEEPING_VINES=0.5 +# Wet Grass (Sound Type) +WET_GRASS=0.5 +# Wood (Sound Type) +WOOD=0.4 +# Wool (Sound Type) +WOOL=0.1 diff --git a/config/sound_physics_remastered/sound_rates.properties b/config/sound_physics_remastered/sound_rates.properties new file mode 100644 index 000000000..9ff573f0d --- /dev/null +++ b/config/sound_physics_remastered/sound_rates.properties @@ -0,0 +1,2303 @@ +# Max sounds per tick. +# Set to '-1' for an unlimited number of sounds per tick processed. +# Set to '0' to disable sound physics for that sound. +# Set to '>=1' to configure the maximum number of sounds per tick processed. +# This can help prevent lag when some mod or mechanism produces hundreds of sounds per tick. + +minecraft\:ambient.basalt_deltas.additions=-1 +minecraft\:ambient.basalt_deltas.loop=-1 +minecraft\:ambient.basalt_deltas.mood=-1 +minecraft\:ambient.cave=-1 +minecraft\:ambient.crimson_forest.additions=-1 +minecraft\:ambient.crimson_forest.loop=-1 +minecraft\:ambient.crimson_forest.mood=-1 +chalk\:ambient.glowing=-1 +tfg\:ambient.lower_nether.additions=-1 +tfg\:ambient.lower_nether.loop=-1 +tfg\:ambient.lower_nether.mood=-1 +tfg\:ambient.mars_desert.additions=-1 +tfg\:ambient.mars_desert.loop=-1 +tfg\:ambient.mars_desert.mood=-1 +tfg\:ambient.mars_land.additions=-1 +tfg\:ambient.mars_land.loop=-1 +tfg\:ambient.mars_land.mood=-1 +tfg\:ambient.moon.additions=-1 +tfg\:ambient.moon.mood=-1 +minecraft\:ambient.nether_wastes.additions=-1 +minecraft\:ambient.nether_wastes.loop=-1 +minecraft\:ambient.nether_wastes.mood=-1 +minecraft\:ambient.soul_sand_valley.additions=-1 +minecraft\:ambient.soul_sand_valley.loop=-1 +minecraft\:ambient.soul_sand_valley.mood=-1 +minecraft\:ambient.underwater.enter=-1 +minecraft\:ambient.underwater.exit=-1 +minecraft\:ambient.underwater.loop=-1 +minecraft\:ambient.underwater.loop.additions=-1 +minecraft\:ambient.underwater.loop.additions.rare=-1 +minecraft\:ambient.underwater.loop.additions.ultra_rare=-1 +tfg\:ambient.upper_nether.additions=-1 +tfg\:ambient.upper_nether.mood=-1 +tfg\:ambient.upper_nether_cave.loop=-1 +tfg\:ambient.upper_nether_lush.loop=-1 +tfg\:ambient.venus_surface.additions=-1 +tfg\:ambient.venus_surface.loop=-1 +tfg\:ambient.venus_surface.mood=-1 +minecraft\:ambient.warped_forest.additions=-1 +minecraft\:ambient.warped_forest.loop=-1 +minecraft\:ambient.warped_forest.mood=-1 +endermanoverhaul\:ancient_pearl_hit=-1 +gtceu\:arc=-1 +gtceu\:assembler=-1 +gtceu\:bath=-1 +buildinggadgets2\:beep=-1 +create\:blaze_munch=-1 +species\:block.alphacene_foliage.break=-1 +species\:block.alphacene_foliage.fall=-1 +species\:block.alphacene_foliage.hit=-1 +species\:block.alphacene_foliage.place=-1 +species\:block.alphacene_foliage.step=-1 +species\:block.alphacene_grass.break=-1 +species\:block.alphacene_grass.fall=-1 +species\:block.alphacene_grass.hit=-1 +species\:block.alphacene_grass.place=-1 +species\:block.alphacene_grass.step=-1 +species\:block.alphacene_moss.break=-1 +species\:block.alphacene_moss.fall=-1 +species\:block.alphacene_moss.hit=-1 +species\:block.alphacene_moss.place=-1 +species\:block.alphacene_moss.step=-1 +minecraft\:block.amethyst_block.break=-1 +minecraft\:block.amethyst_block.chime=-1 +minecraft\:block.amethyst_block.fall=-1 +minecraft\:block.amethyst_block.hit=-1 +minecraft\:block.amethyst_block.place=-1 +minecraft\:block.amethyst_block.resonate=-1 +minecraft\:block.amethyst_block.step=-1 +minecraft\:block.amethyst_cluster.break=-1 +minecraft\:block.amethyst_cluster.fall=-1 +minecraft\:block.amethyst_cluster.hit=-1 +minecraft\:block.amethyst_cluster.place=-1 +minecraft\:block.amethyst_cluster.step=-1 +minecraft\:block.ancient_debris.break=-1 +minecraft\:block.ancient_debris.fall=-1 +minecraft\:block.ancient_debris.hit=-1 +minecraft\:block.ancient_debris.place=-1 +minecraft\:block.ancient_debris.step=-1 +minecraft\:block.anvil.break=-1 +minecraft\:block.anvil.destroy=-1 +minecraft\:block.anvil.fall=-1 +minecraft\:block.anvil.hit=-1 +tfc\:block.anvil.hit=-1 +minecraft\:block.anvil.land=-1 +minecraft\:block.anvil.place=-1 +minecraft\:block.anvil.step=-1 +minecraft\:block.anvil.use=-1 +minecraft\:block.azalea.break=-1 +minecraft\:block.azalea.fall=-1 +minecraft\:block.azalea.hit=-1 +minecraft\:block.azalea.place=-1 +minecraft\:block.azalea.step=-1 +minecraft\:block.azalea_leaves.break=-1 +minecraft\:block.azalea_leaves.fall=-1 +minecraft\:block.azalea_leaves.hit=-1 +minecraft\:block.azalea_leaves.place=-1 +minecraft\:block.azalea_leaves.step=-1 +minecraft\:block.bamboo.break=-1 +minecraft\:block.bamboo.fall=-1 +minecraft\:block.bamboo.hit=-1 +minecraft\:block.bamboo.place=-1 +minecraft\:block.bamboo.step=-1 +minecraft\:block.bamboo_sapling.break=-1 +minecraft\:block.bamboo_sapling.hit=-1 +minecraft\:block.bamboo_sapling.place=-1 +minecraft\:block.bamboo_wood.break=-1 +minecraft\:block.bamboo_wood.fall=-1 +minecraft\:block.bamboo_wood.hit=-1 +minecraft\:block.bamboo_wood.place=-1 +minecraft\:block.bamboo_wood.step=-1 +minecraft\:block.bamboo_wood_button.click_off=-1 +minecraft\:block.bamboo_wood_button.click_on=-1 +minecraft\:block.bamboo_wood_door.close=-1 +minecraft\:block.bamboo_wood_door.open=-1 +minecraft\:block.bamboo_wood_fence_gate.close=-1 +minecraft\:block.bamboo_wood_fence_gate.open=-1 +minecraft\:block.bamboo_wood_hanging_sign.break=-1 +minecraft\:block.bamboo_wood_hanging_sign.fall=-1 +minecraft\:block.bamboo_wood_hanging_sign.hit=-1 +minecraft\:block.bamboo_wood_hanging_sign.place=-1 +minecraft\:block.bamboo_wood_hanging_sign.step=-1 +minecraft\:block.bamboo_wood_pressure_plate.click_off=-1 +minecraft\:block.bamboo_wood_pressure_plate.click_on=-1 +minecraft\:block.bamboo_wood_trapdoor.close=-1 +minecraft\:block.bamboo_wood_trapdoor.open=-1 +minecraft\:block.barrel.close=-1 +tfc\:block.barrel.close=-1 +tfc\:block.barrel.drip=-1 +minecraft\:block.barrel.open=-1 +tfc\:block.barrel.open=-1 +minecraft\:block.basalt.break=-1 +minecraft\:block.basalt.fall=-1 +minecraft\:block.basalt.hit=-1 +minecraft\:block.basalt.place=-1 +minecraft\:block.basalt.step=-1 +minecraft\:block.beacon.activate=-1 +minecraft\:block.beacon.ambient=-1 +minecraft\:block.beacon.deactivate=-1 +minecraft\:block.beacon.power_select=-1 +minecraft\:block.beehive.drip=-1 +minecraft\:block.beehive.enter=-1 +minecraft\:block.beehive.exit=-1 +minecraft\:block.beehive.shear=-1 +minecraft\:block.beehive.work=-1 +minecraft\:block.bell.resonate=-1 +minecraft\:block.bell.use=-1 +tfc\:block.bellows.blow=-1 +minecraft\:block.big_dripleaf.break=-1 +minecraft\:block.big_dripleaf.fall=-1 +minecraft\:block.big_dripleaf.hit=-1 +minecraft\:block.big_dripleaf.place=-1 +minecraft\:block.big_dripleaf.step=-1 +minecraft\:block.big_dripleaf.tilt_down=-1 +minecraft\:block.big_dripleaf.tilt_up=-1 +species\:block.birt_dwelling.collect=-1 +species\:block.birt_dwelling.enter=-1 +species\:block.birt_dwelling.exit=-1 +species\:block.birt_dwelling.work=-1 +species\:block.birtday_cake.blow=-1 +species\:block.birtday_cake.break=-1 +species\:block.birtday_cake.fall=-1 +species\:block.birtday_cake.hit=-1 +species\:block.birtday_cake.place=-1 +species\:block.birtday_cake.step=-1 +minecraft\:block.blastfurnace.fire_crackle=-1 +tfc\:block.bloomery.crackle=-1 +minecraft\:block.bone_block.break=-1 +minecraft\:block.bone_block.fall=-1 +minecraft\:block.bone_block.hit=-1 +minecraft\:block.bone_block.place=-1 +minecraft\:block.bone_block.step=-1 +minecraft\:block.brewing_stand.brew=-1 +minecraft\:block.bubble_column.bubble_pop=-1 +minecraft\:block.bubble_column.upwards_ambient=-1 +minecraft\:block.bubble_column.upwards_inside=-1 +minecraft\:block.bubble_column.whirlpool_ambient=-1 +minecraft\:block.bubble_column.whirlpool_inside=-1 +minecraft\:block.cake.add_candle=-1 +minecraft\:block.calcite.break=-1 +minecraft\:block.calcite.fall=-1 +minecraft\:block.calcite.hit=-1 +minecraft\:block.calcite.place=-1 +minecraft\:block.calcite.step=-1 +minecraft\:block.campfire.crackle=-1 +minecraft\:block.candle.ambient=-1 +minecraft\:block.candle.break=-1 +minecraft\:block.candle.extinguish=-1 +minecraft\:block.candle.fall=-1 +minecraft\:block.candle.hit=-1 +minecraft\:block.candle.place=-1 +minecraft\:block.candle.step=-1 +minecraft\:block.cave_vines.break=-1 +minecraft\:block.cave_vines.fall=-1 +minecraft\:block.cave_vines.hit=-1 +minecraft\:block.cave_vines.pick_berries=-1 +minecraft\:block.cave_vines.place=-1 +minecraft\:block.cave_vines.step=-1 +minecraft\:block.chain.break=-1 +minecraft\:block.chain.fall=-1 +minecraft\:block.chain.hit=-1 +minecraft\:block.chain.place=-1 +minecraft\:block.chain.step=-1 +tfc\:block.charcoal.break=-1 +tfc\:block.charcoal.fall=-1 +tfc\:block.charcoal.hit=-1 +tfc\:block.charcoal.place=-1 +tfc\:block.charcoal.step=-1 +minecraft\:block.cherry_leaves.break=-1 +minecraft\:block.cherry_leaves.fall=-1 +minecraft\:block.cherry_leaves.hit=-1 +minecraft\:block.cherry_leaves.place=-1 +minecraft\:block.cherry_leaves.step=-1 +minecraft\:block.cherry_sapling.break=-1 +minecraft\:block.cherry_sapling.fall=-1 +minecraft\:block.cherry_sapling.hit=-1 +minecraft\:block.cherry_sapling.place=-1 +minecraft\:block.cherry_sapling.step=-1 +minecraft\:block.cherry_wood.break=-1 +minecraft\:block.cherry_wood.fall=-1 +minecraft\:block.cherry_wood.hit=-1 +minecraft\:block.cherry_wood.place=-1 +minecraft\:block.cherry_wood.step=-1 +minecraft\:block.cherry_wood_button.click_off=-1 +minecraft\:block.cherry_wood_button.click_on=-1 +minecraft\:block.cherry_wood_door.close=-1 +minecraft\:block.cherry_wood_door.open=-1 +minecraft\:block.cherry_wood_fence_gate.close=-1 +minecraft\:block.cherry_wood_fence_gate.open=-1 +minecraft\:block.cherry_wood_hanging_sign.break=-1 +minecraft\:block.cherry_wood_hanging_sign.fall=-1 +minecraft\:block.cherry_wood_hanging_sign.hit=-1 +minecraft\:block.cherry_wood_hanging_sign.place=-1 +minecraft\:block.cherry_wood_hanging_sign.step=-1 +minecraft\:block.cherry_wood_pressure_plate.click_off=-1 +minecraft\:block.cherry_wood_pressure_plate.click_on=-1 +minecraft\:block.cherry_wood_trapdoor.close=-1 +minecraft\:block.cherry_wood_trapdoor.open=-1 +minecraft\:block.chest.close=-1 +minecraft\:block.chest.locked=-1 +minecraft\:block.chest.open=-1 +minecraft\:block.chiseled_bookshelf.break=-1 +minecraft\:block.chiseled_bookshelf.fall=-1 +minecraft\:block.chiseled_bookshelf.hit=-1 +minecraft\:block.chiseled_bookshelf.insert=-1 +minecraft\:block.chiseled_bookshelf.insert.enchanted=-1 +minecraft\:block.chiseled_bookshelf.pickup=-1 +minecraft\:block.chiseled_bookshelf.pickup.enchanted=-1 +minecraft\:block.chiseled_bookshelf.place=-1 +minecraft\:block.chiseled_bookshelf.step=-1 +minecraft\:block.chorus_flower.death=-1 +minecraft\:block.chorus_flower.grow=-1 +minecraft\:block.comparator.click=-1 +minecraft\:block.composter.empty=-1 +minecraft\:block.composter.fill=-1 +minecraft\:block.composter.fill_success=-1 +minecraft\:block.composter.ready=-1 +minecraft\:block.conduit.activate=-1 +minecraft\:block.conduit.ambient=-1 +minecraft\:block.conduit.ambient.short=-1 +minecraft\:block.conduit.attack.target=-1 +minecraft\:block.conduit.deactivate=-1 +minecraft\:block.copper.break=-1 +minecraft\:block.copper.fall=-1 +minecraft\:block.copper.hit=-1 +minecraft\:block.copper.place=-1 +minecraft\:block.copper.step=-1 +minecraft\:block.coral_block.break=-1 +minecraft\:block.coral_block.fall=-1 +minecraft\:block.coral_block.hit=-1 +minecraft\:block.coral_block.place=-1 +minecraft\:block.coral_block.step=-1 +species\:block.cranktrap.break=-1 +species\:block.cranktrap.close=-1 +species\:block.cranktrap.fall=-1 +species\:block.cranktrap.hit=-1 +species\:block.cranktrap.open=-1 +species\:block.cranktrap.place=-1 +species\:block.cranktrap.step=-1 +minecraft\:block.crop.break=-1 +tfc\:block.crop.stick_add=-1 +minecraft\:block.decorated_pot.break=-1 +minecraft\:block.decorated_pot.fall=-1 +minecraft\:block.decorated_pot.hit=-1 +minecraft\:block.decorated_pot.place=-1 +minecraft\:block.decorated_pot.shatter=-1 +minecraft\:block.decorated_pot.step=-1 +minecraft\:block.deepslate.break=-1 +minecraft\:block.deepslate.fall=-1 +minecraft\:block.deepslate.hit=-1 +minecraft\:block.deepslate.place=-1 +minecraft\:block.deepslate.step=-1 +minecraft\:block.deepslate_bricks.break=-1 +minecraft\:block.deepslate_bricks.fall=-1 +minecraft\:block.deepslate_bricks.hit=-1 +minecraft\:block.deepslate_bricks.place=-1 +minecraft\:block.deepslate_bricks.step=-1 +minecraft\:block.deepslate_tiles.break=-1 +minecraft\:block.deepslate_tiles.fall=-1 +minecraft\:block.deepslate_tiles.hit=-1 +minecraft\:block.deepslate_tiles.place=-1 +minecraft\:block.deepslate_tiles.step=-1 +minecraft\:block.dispenser.dispense=-1 +minecraft\:block.dispenser.fail=-1 +minecraft\:block.dispenser.launch=-1 +minecraft\:block.dripstone_block.break=-1 +minecraft\:block.dripstone_block.fall=-1 +minecraft\:block.dripstone_block.hit=-1 +minecraft\:block.dripstone_block.place=-1 +minecraft\:block.dripstone_block.step=-1 +wan_ancient_beasts\:block.egg.hatched=-1 +minecraft\:block.enchantment_table.use=-1 +minecraft\:block.end_gateway.spawn=-1 +minecraft\:block.end_portal.spawn=-1 +minecraft\:block.end_portal_frame.fill=-1 +minecraft\:block.ender_chest.close=-1 +minecraft\:block.ender_chest.open=-1 +minecraft\:block.fence_gate.close=-1 +minecraft\:block.fence_gate.open=-1 +minecraft\:block.fire.ambient=-1 +minecraft\:block.fire.extinguish=-1 +minecraft\:block.flowering_azalea.break=-1 +minecraft\:block.flowering_azalea.fall=-1 +minecraft\:block.flowering_azalea.hit=-1 +minecraft\:block.flowering_azalea.place=-1 +minecraft\:block.flowering_azalea.step=-1 +minecraft\:block.froglight.break=-1 +minecraft\:block.froglight.fall=-1 +minecraft\:block.froglight.hit=-1 +minecraft\:block.froglight.place=-1 +minecraft\:block.froglight.step=-1 +minecraft\:block.frogspawn.break=-1 +minecraft\:block.frogspawn.fall=-1 +minecraft\:block.frogspawn.hatch=-1 +minecraft\:block.frogspawn.hit=-1 +minecraft\:block.frogspawn.place=-1 +minecraft\:block.frogspawn.step=-1 +species\:block.frozen_hair.break=-1 +species\:block.frozen_hair.fall=-1 +species\:block.frozen_hair.hit=-1 +species\:block.frozen_hair.place=-1 +species\:block.frozen_hair.step=-1 +species\:block.frozen_meat.break=-1 +species\:block.frozen_meat.fall=-1 +species\:block.frozen_meat.hit=-1 +species\:block.frozen_meat.place=-1 +species\:block.frozen_meat.step=-1 +minecraft\:block.fungus.break=-1 +minecraft\:block.fungus.fall=-1 +minecraft\:block.fungus.hit=-1 +minecraft\:block.fungus.place=-1 +minecraft\:block.fungus.step=-1 +minecraft\:block.furnace.fire_crackle=-1 +minecraft\:block.gilded_blackstone.break=-1 +minecraft\:block.gilded_blackstone.fall=-1 +minecraft\:block.gilded_blackstone.hit=-1 +minecraft\:block.gilded_blackstone.place=-1 +minecraft\:block.gilded_blackstone.step=-1 +minecraft\:block.glass.break=-1 +minecraft\:block.glass.fall=-1 +minecraft\:block.glass.hit=-1 +minecraft\:block.glass.place=-1 +minecraft\:block.glass.step=-1 +minecraft\:block.grass.break=-1 +minecraft\:block.grass.fall=-1 +minecraft\:block.grass.hit=-1 +minecraft\:block.grass.place=-1 +minecraft\:block.grass.step=-1 +minecraft\:block.gravel.break=-1 +minecraft\:block.gravel.fall=-1 +minecraft\:block.gravel.hit=-1 +minecraft\:block.gravel.place=-1 +minecraft\:block.gravel.step=-1 +minecraft\:block.grindstone.use=-1 +minecraft\:block.growing_plant.crop=-1 +minecraft\:block.hanging_roots.break=-1 +minecraft\:block.hanging_roots.fall=-1 +minecraft\:block.hanging_roots.hit=-1 +minecraft\:block.hanging_roots.place=-1 +minecraft\:block.hanging_roots.step=-1 +minecraft\:block.hanging_sign.break=-1 +minecraft\:block.hanging_sign.fall=-1 +minecraft\:block.hanging_sign.hit=-1 +minecraft\:block.hanging_sign.place=-1 +minecraft\:block.hanging_sign.step=-1 +minecraft\:block.honey_block.break=-1 +minecraft\:block.honey_block.fall=-1 +minecraft\:block.honey_block.hit=-1 +minecraft\:block.honey_block.place=-1 +minecraft\:block.honey_block.slide=-1 +minecraft\:block.honey_block.step=-1 +species\:block.hopelight.break=-1 +species\:block.hopelight.place=-1 +minecraft\:block.iron_door.close=-1 +minecraft\:block.iron_door.open=-1 +minecraft\:block.iron_trapdoor.close=-1 +minecraft\:block.iron_trapdoor.open=-1 +minecraft\:block.ladder.break=-1 +minecraft\:block.ladder.fall=-1 +minecraft\:block.ladder.hit=-1 +minecraft\:block.ladder.place=-1 +minecraft\:block.ladder.step=-1 +minecraft\:block.lantern.break=-1 +minecraft\:block.lantern.fall=-1 +minecraft\:block.lantern.hit=-1 +minecraft\:block.lantern.place=-1 +minecraft\:block.lantern.step=-1 +minecraft\:block.large_amethyst_bud.break=-1 +minecraft\:block.large_amethyst_bud.place=-1 +tfc\:block.large_vessel.close=-1 +tfc\:block.large_vessel.open=-1 +minecraft\:block.lava.ambient=-1 +minecraft\:block.lava.extinguish=-1 +minecraft\:block.lava.pop=-1 +minecraft\:block.lever.click=-1 +exposure\:block.lightroom.print=-1 +minecraft\:block.lily_pad.place=-1 +minecraft\:block.lodestone.break=-1 +minecraft\:block.lodestone.fall=-1 +minecraft\:block.lodestone.hit=-1 +minecraft\:block.lodestone.place=-1 +minecraft\:block.lodestone.step=-1 +tfc\:block.loom.weave=-1 +minecraft\:block.mangrove_roots.break=-1 +minecraft\:block.mangrove_roots.fall=-1 +minecraft\:block.mangrove_roots.hit=-1 +minecraft\:block.mangrove_roots.place=-1 +minecraft\:block.mangrove_roots.step=-1 +chalk\:block.mark_removed=-1 +minecraft\:block.medium_amethyst_bud.break=-1 +minecraft\:block.medium_amethyst_bud.place=-1 +minecraft\:block.metal.break=-1 +minecraft\:block.metal.fall=-1 +minecraft\:block.metal.hit=-1 +minecraft\:block.metal.place=-1 +minecraft\:block.metal.step=-1 +minecraft\:block.metal_pressure_plate.click_off=-1 +minecraft\:block.metal_pressure_plate.click_on=-1 +minecraft\:block.moss.break=-1 +minecraft\:block.moss.fall=-1 +minecraft\:block.moss.hit=-1 +minecraft\:block.moss.place=-1 +minecraft\:block.moss.step=-1 +minecraft\:block.moss_carpet.break=-1 +minecraft\:block.moss_carpet.fall=-1 +minecraft\:block.moss_carpet.hit=-1 +minecraft\:block.moss_carpet.place=-1 +minecraft\:block.moss_carpet.step=-1 +minecraft\:block.mud.break=-1 +minecraft\:block.mud.fall=-1 +minecraft\:block.mud.hit=-1 +minecraft\:block.mud.place=-1 +minecraft\:block.mud.step=-1 +minecraft\:block.mud_bricks.break=-1 +minecraft\:block.mud_bricks.fall=-1 +minecraft\:block.mud_bricks.hit=-1 +minecraft\:block.mud_bricks.place=-1 +minecraft\:block.mud_bricks.step=-1 +minecraft\:block.muddy_mangrove_roots.break=-1 +minecraft\:block.muddy_mangrove_roots.fall=-1 +minecraft\:block.muddy_mangrove_roots.hit=-1 +minecraft\:block.muddy_mangrove_roots.place=-1 +minecraft\:block.muddy_mangrove_roots.step=-1 +minecraft\:block.nether_bricks.break=-1 +minecraft\:block.nether_bricks.fall=-1 +minecraft\:block.nether_bricks.hit=-1 +minecraft\:block.nether_bricks.place=-1 +minecraft\:block.nether_bricks.step=-1 +minecraft\:block.nether_gold_ore.break=-1 +minecraft\:block.nether_gold_ore.fall=-1 +minecraft\:block.nether_gold_ore.hit=-1 +minecraft\:block.nether_gold_ore.place=-1 +minecraft\:block.nether_gold_ore.step=-1 +minecraft\:block.nether_ore.break=-1 +minecraft\:block.nether_ore.fall=-1 +minecraft\:block.nether_ore.hit=-1 +minecraft\:block.nether_ore.place=-1 +minecraft\:block.nether_ore.step=-1 +minecraft\:block.nether_sprouts.break=-1 +minecraft\:block.nether_sprouts.fall=-1 +minecraft\:block.nether_sprouts.hit=-1 +minecraft\:block.nether_sprouts.place=-1 +minecraft\:block.nether_sprouts.step=-1 +minecraft\:block.nether_wart.break=-1 +minecraft\:block.nether_wood.break=-1 +minecraft\:block.nether_wood.fall=-1 +minecraft\:block.nether_wood.hit=-1 +minecraft\:block.nether_wood.place=-1 +minecraft\:block.nether_wood.step=-1 +minecraft\:block.nether_wood_button.click_off=-1 +minecraft\:block.nether_wood_button.click_on=-1 +minecraft\:block.nether_wood_door.close=-1 +minecraft\:block.nether_wood_door.open=-1 +minecraft\:block.nether_wood_fence_gate.close=-1 +minecraft\:block.nether_wood_fence_gate.open=-1 +minecraft\:block.nether_wood_hanging_sign.break=-1 +minecraft\:block.nether_wood_hanging_sign.fall=-1 +minecraft\:block.nether_wood_hanging_sign.hit=-1 +minecraft\:block.nether_wood_hanging_sign.place=-1 +minecraft\:block.nether_wood_hanging_sign.step=-1 +minecraft\:block.nether_wood_pressure_plate.click_off=-1 +minecraft\:block.nether_wood_pressure_plate.click_on=-1 +minecraft\:block.nether_wood_trapdoor.close=-1 +minecraft\:block.nether_wood_trapdoor.open=-1 +minecraft\:block.netherite_block.break=-1 +minecraft\:block.netherite_block.fall=-1 +minecraft\:block.netherite_block.hit=-1 +minecraft\:block.netherite_block.place=-1 +minecraft\:block.netherite_block.step=-1 +minecraft\:block.netherrack.break=-1 +minecraft\:block.netherrack.fall=-1 +minecraft\:block.netherrack.hit=-1 +minecraft\:block.netherrack.place=-1 +minecraft\:block.netherrack.step=-1 +minecraft\:block.note_block.banjo=-1 +minecraft\:block.note_block.basedrum=-1 +minecraft\:block.note_block.bass=-1 +minecraft\:block.note_block.bell=-1 +minecraft\:block.note_block.bit=-1 +minecraft\:block.note_block.chime=-1 +minecraft\:block.note_block.cow_bell=-1 +minecraft\:block.note_block.didgeridoo=-1 +minecraft\:block.note_block.flute=-1 +minecraft\:block.note_block.guitar=-1 +minecraft\:block.note_block.harp=-1 +minecraft\:block.note_block.hat=-1 +species\:block.note_block.imitate.bewereager=-1 +minecraft\:block.note_block.imitate.creeper=-1 +minecraft\:block.note_block.imitate.ender_dragon=-1 +species\:block.note_block.imitate.ghoul=-1 +minecraft\:block.note_block.imitate.piglin=-1 +species\:block.note_block.imitate.quake=-1 +minecraft\:block.note_block.imitate.skeleton=-1 +species\:block.note_block.imitate.wicked=-1 +minecraft\:block.note_block.imitate.wither_skeleton=-1 +minecraft\:block.note_block.imitate.zombie=-1 +minecraft\:block.note_block.iron_xylophone=-1 +minecraft\:block.note_block.pling=-1 +species\:block.note_block.quake_synth=-1 +minecraft\:block.note_block.snare=-1 +minecraft\:block.note_block.xylophone=-1 +minecraft\:block.nylium.break=-1 +minecraft\:block.nylium.fall=-1 +minecraft\:block.nylium.hit=-1 +minecraft\:block.nylium.place=-1 +minecraft\:block.nylium.step=-1 +minecraft\:block.packed_mud.break=-1 +minecraft\:block.packed_mud.fall=-1 +minecraft\:block.packed_mud.hit=-1 +minecraft\:block.packed_mud.place=-1 +minecraft\:block.packed_mud.step=-1 +tfc\:block.peat.break=-1 +tfc\:block.peat.fall=-1 +tfc\:block.peat.hit=-1 +tfc\:block.peat.place=-1 +tfc\:block.peat.step=-1 +species\:block.petrified_egg.crack=-1 +species\:block.petrified_egg.hatch=-1 +species\:block.petrified_egg.plop=-1 +minecraft\:block.pink_petals.break=-1 +minecraft\:block.pink_petals.fall=-1 +minecraft\:block.pink_petals.hit=-1 +minecraft\:block.pink_petals.place=-1 +minecraft\:block.pink_petals.step=-1 +minecraft\:block.piston.contract=-1 +minecraft\:block.piston.extend=-1 +minecraft\:block.pointed_dripstone.break=-1 +minecraft\:block.pointed_dripstone.drip_lava=-1 +minecraft\:block.pointed_dripstone.drip_lava_into_cauldron=-1 +minecraft\:block.pointed_dripstone.drip_water=-1 +minecraft\:block.pointed_dripstone.drip_water_into_cauldron=-1 +minecraft\:block.pointed_dripstone.fall=-1 +minecraft\:block.pointed_dripstone.hit=-1 +minecraft\:block.pointed_dripstone.land=-1 +minecraft\:block.pointed_dripstone.place=-1 +minecraft\:block.pointed_dripstone.step=-1 +minecraft\:block.polished_deepslate.break=-1 +minecraft\:block.polished_deepslate.fall=-1 +minecraft\:block.polished_deepslate.hit=-1 +minecraft\:block.polished_deepslate.place=-1 +minecraft\:block.polished_deepslate.step=-1 +minecraft\:block.portal.ambient=-1 +minecraft\:block.portal.travel=-1 +minecraft\:block.portal.trigger=-1 +minecraft\:block.powder_snow.break=-1 +minecraft\:block.powder_snow.fall=-1 +minecraft\:block.powder_snow.hit=-1 +minecraft\:block.powder_snow.place=-1 +minecraft\:block.powder_snow.step=-1 +minecraft\:block.pumpkin.carve=-1 +tfc\:block.quern.drag=-1 +minecraft\:block.redstone_torch.burnout=-1 +minecraft\:block.respawn_anchor.ambient=-1 +minecraft\:block.respawn_anchor.charge=-1 +minecraft\:block.respawn_anchor.deplete=-1 +minecraft\:block.respawn_anchor.set_spawn=-1 +minecraft\:block.rooted_dirt.break=-1 +minecraft\:block.rooted_dirt.fall=-1 +minecraft\:block.rooted_dirt.hit=-1 +minecraft\:block.rooted_dirt.place=-1 +minecraft\:block.rooted_dirt.step=-1 +minecraft\:block.roots.break=-1 +minecraft\:block.roots.fall=-1 +minecraft\:block.roots.hit=-1 +minecraft\:block.roots.place=-1 +minecraft\:block.roots.step=-1 +minecraft\:block.sand.break=-1 +minecraft\:block.sand.fall=-1 +minecraft\:block.sand.hit=-1 +minecraft\:block.sand.place=-1 +minecraft\:block.sand.step=-1 +minecraft\:block.scaffolding.break=-1 +minecraft\:block.scaffolding.fall=-1 +minecraft\:block.scaffolding.hit=-1 +minecraft\:block.scaffolding.place=-1 +minecraft\:block.scaffolding.step=-1 +tfc\:block.scribing_table.use=-1 +minecraft\:block.sculk.break=-1 +minecraft\:block.sculk.charge=-1 +minecraft\:block.sculk.fall=-1 +minecraft\:block.sculk.hit=-1 +minecraft\:block.sculk.place=-1 +minecraft\:block.sculk.spread=-1 +minecraft\:block.sculk.step=-1 +minecraft\:block.sculk_catalyst.bloom=-1 +minecraft\:block.sculk_catalyst.break=-1 +minecraft\:block.sculk_catalyst.fall=-1 +minecraft\:block.sculk_catalyst.hit=-1 +minecraft\:block.sculk_catalyst.place=-1 +minecraft\:block.sculk_catalyst.step=-1 +minecraft\:block.sculk_sensor.break=-1 +minecraft\:block.sculk_sensor.clicking=-1 +minecraft\:block.sculk_sensor.clicking_stop=-1 +minecraft\:block.sculk_sensor.fall=-1 +minecraft\:block.sculk_sensor.hit=-1 +minecraft\:block.sculk_sensor.place=-1 +minecraft\:block.sculk_sensor.step=-1 +minecraft\:block.sculk_shrieker.break=-1 +minecraft\:block.sculk_shrieker.fall=-1 +minecraft\:block.sculk_shrieker.hit=-1 +minecraft\:block.sculk_shrieker.place=-1 +minecraft\:block.sculk_shrieker.shriek=-1 +minecraft\:block.sculk_shrieker.step=-1 +minecraft\:block.sculk_vein.break=-1 +minecraft\:block.sculk_vein.fall=-1 +minecraft\:block.sculk_vein.hit=-1 +minecraft\:block.sculk_vein.place=-1 +minecraft\:block.sculk_vein.step=-1 +minecraft\:block.shroomlight.break=-1 +minecraft\:block.shroomlight.fall=-1 +minecraft\:block.shroomlight.hit=-1 +minecraft\:block.shroomlight.place=-1 +minecraft\:block.shroomlight.step=-1 +minecraft\:block.shulker_box.close=-1 +minecraft\:block.shulker_box.open=-1 +minecraft\:block.sign.waxed_interact_fail=-1 +minecraft\:block.slime_block.break=-1 +minecraft\:block.slime_block.fall=-1 +minecraft\:block.slime_block.hit=-1 +minecraft\:block.slime_block.place=-1 +minecraft\:block.slime_block.step=-1 +minecraft\:block.small_amethyst_bud.break=-1 +minecraft\:block.small_amethyst_bud.place=-1 +minecraft\:block.small_dripleaf.break=-1 +minecraft\:block.small_dripleaf.fall=-1 +minecraft\:block.small_dripleaf.hit=-1 +minecraft\:block.small_dripleaf.place=-1 +minecraft\:block.small_dripleaf.step=-1 +minecraft\:block.smithing_table.use=-1 +minecraft\:block.smoker.smoke=-1 +minecraft\:block.sniffer_egg.crack=-1 +minecraft\:block.sniffer_egg.hatch=-1 +minecraft\:block.sniffer_egg.plop=-1 +minecraft\:block.snow.break=-1 +minecraft\:block.snow.fall=-1 +minecraft\:block.snow.hit=-1 +minecraft\:block.snow.place=-1 +minecraft\:block.snow.step=-1 +minecraft\:block.soul_sand.break=-1 +minecraft\:block.soul_sand.fall=-1 +minecraft\:block.soul_sand.hit=-1 +minecraft\:block.soul_sand.place=-1 +minecraft\:block.soul_sand.step=-1 +minecraft\:block.soul_soil.break=-1 +minecraft\:block.soul_soil.fall=-1 +minecraft\:block.soul_soil.hit=-1 +minecraft\:block.soul_soil.place=-1 +minecraft\:block.soul_soil.step=-1 +species\:block.speclight.break=-1 +species\:block.speclight.fall=-1 +species\:block.speclight.hit=-1 +species\:block.speclight.off=-1 +species\:block.speclight.on=-1 +species\:block.speclight.place=-1 +species\:block.speclight.step=-1 +species\:block.spectralibur.can_be_pulled1=-1 +species\:block.spectralibur.can_be_pulled2=-1 +species\:block.spectralibur.can_be_pulled3=-1 +species\:block.spectralibur.cant_pull=-1 +species\:block.spectralibur.extract=-1 +species\:block.spectralibur.go_in=-1 +species\:block.spectralibur.go_in_fully=-1 +species\:block.spectralibur.pull=-1 +species\:block.spectralibur_pedestal.activate=-1 +species\:block.spectralibur_pedestal.deactivate=-1 +minecraft\:block.spore_blossom.break=-1 +minecraft\:block.spore_blossom.fall=-1 +minecraft\:block.spore_blossom.hit=-1 +minecraft\:block.spore_blossom.place=-1 +minecraft\:block.spore_blossom.step=-1 +species\:block.springling_egg.crack=-1 +species\:block.springling_egg.hatch=-1 +species\:block.springling_egg.plop=-1 +minecraft\:block.stem.break=-1 +minecraft\:block.stem.fall=-1 +minecraft\:block.stem.hit=-1 +minecraft\:block.stem.place=-1 +minecraft\:block.stem.step=-1 +minecraft\:block.stone.break=-1 +minecraft\:block.stone.fall=-1 +minecraft\:block.stone.hit=-1 +minecraft\:block.stone.place=-1 +minecraft\:block.stone.step=-1 +minecraft\:block.stone_button.click_off=-1 +minecraft\:block.stone_button.click_on=-1 +minecraft\:block.stone_pressure_plate.click_off=-1 +minecraft\:block.stone_pressure_plate.click_on=-1 +minecraft\:block.suspicious_gravel.break=-1 +minecraft\:block.suspicious_gravel.fall=-1 +minecraft\:block.suspicious_gravel.hit=-1 +minecraft\:block.suspicious_gravel.place=-1 +minecraft\:block.suspicious_gravel.step=-1 +minecraft\:block.suspicious_sand.break=-1 +minecraft\:block.suspicious_sand.fall=-1 +minecraft\:block.suspicious_sand.hit=-1 +minecraft\:block.suspicious_sand.place=-1 +minecraft\:block.suspicious_sand.step=-1 +minecraft\:block.sweet_berry_bush.break=-1 +minecraft\:block.sweet_berry_bush.pick_berries=-1 +minecraft\:block.sweet_berry_bush.place=-1 +tfc\:block.thatch.break=-1 +tfc\:block.thatch.fall=-1 +tfc\:block.thatch.hit=-1 +tfc\:block.thatch.place=-1 +tfc\:block.thatch.step=-1 +tfc\:block.thin.break=-1 +tfc\:block.thin.fall=-1 +tfc\:block.thin.hit=-1 +tfc\:block.thin.place=-1 +tfc\:block.thin.step=-1 +tfc\:block.tool_rack.place=-1 +minecraft\:block.tripwire.attach=-1 +minecraft\:block.tripwire.click_off=-1 +minecraft\:block.tripwire.click_on=-1 +minecraft\:block.tripwire.detach=-1 +minecraft\:block.tuff.break=-1 +minecraft\:block.tuff.fall=-1 +minecraft\:block.tuff.hit=-1 +minecraft\:block.tuff.place=-1 +minecraft\:block.tuff.step=-1 +minecraft\:block.vine.break=-1 +minecraft\:block.vine.fall=-1 +minecraft\:block.vine.hit=-1 +minecraft\:block.vine.place=-1 +minecraft\:block.vine.step=-1 +minecraft\:block.wart_block.break=-1 +minecraft\:block.wart_block.fall=-1 +minecraft\:block.wart_block.hit=-1 +minecraft\:block.wart_block.place=-1 +minecraft\:block.wart_block.step=-1 +minecraft\:block.water.ambient=-1 +tfc\:block.wattle.daubed=-1 +tfc\:block.wattle.dyed=-1 +tfc\:block.wattle.woven=-1 +minecraft\:block.weeping_vines.break=-1 +minecraft\:block.weeping_vines.fall=-1 +minecraft\:block.weeping_vines.hit=-1 +minecraft\:block.weeping_vines.place=-1 +minecraft\:block.weeping_vines.step=-1 +minecraft\:block.wet_grass.break=-1 +minecraft\:block.wet_grass.fall=-1 +minecraft\:block.wet_grass.hit=-1 +minecraft\:block.wet_grass.place=-1 +minecraft\:block.wet_grass.step=-1 +minecraft\:block.wood.break=-1 +minecraft\:block.wood.fall=-1 +minecraft\:block.wood.hit=-1 +minecraft\:block.wood.place=-1 +minecraft\:block.wood.step=-1 +minecraft\:block.wooden_button.click_off=-1 +minecraft\:block.wooden_button.click_on=-1 +minecraft\:block.wooden_door.close=-1 +minecraft\:block.wooden_door.open=-1 +minecraft\:block.wooden_pressure_plate.click_off=-1 +minecraft\:block.wooden_pressure_plate.click_on=-1 +minecraft\:block.wooden_trapdoor.close=-1 +minecraft\:block.wooden_trapdoor.open=-1 +minecraft\:block.wool.break=-1 +minecraft\:block.wool.fall=-1 +minecraft\:block.wool.hit=-1 +minecraft\:block.wool.place=-1 +minecraft\:block.wool.step=-1 +species\:block.wraptor_egg.break=-1 +species\:block.wraptor_egg.crack=-1 +species\:block.wraptor_egg.hatch=-1 +gtceu\:boiler=-1 +patchouli\:book_flip=-1 +patchouli\:book_open=-1 +endermanoverhaul\:bubble_pearl_hit=-1 +endermanoverhaul\:bubble_pearl_thrown=-1 +cccbridge\:cage_lock=-1 +cccbridge\:cage_unlock=-1 +immersive_aircraft\:cannon=-1 +create\:cardboard_bonk=-1 +endermanoverhaul\:cave_enderman_ambient=-1 +endermanoverhaul\:cave_enderman_hurt=-1 +gtceu\:centrifuge=-1 +gtceu\:chainsaw=-1 +gtceu\:chemical=-1 +create\:chiff=-1 +create\:clipboard_check=-1 +create\:clipboard_erase=-1 +create\:cogs=-1 +gtceu\:combustion=-1 +gtceu\:compressor=-1 +gtceu\:computation=-1 +railways\:conductor_whistle=-1 +create\:confirm=-1 +create\:confirm_2=-1 +create\:contraption_assemble=-1 +create\:contraption_assemble_compounded_1=-1 +create\:contraption_disassemble=-1 +create\:controller_click=-1 +create\:controller_put=-1 +create\:controller_take=-1 +gtceu\:cooling=-1 +create\:copper_armor_equip=-1 +endermanoverhaul\:corrupted_pearl_hit=-1 +create\:crafter_click=-1 +create\:crafter_click_compounded_1=-1 +create\:crafter_craft=-1 +create\:cranking=-1 +create\:cranking_compounded_1=-1 +create\:crushing_1=-1 +create\:crushing_2=-1 +create\:crushing_3=-1 +gtceu\:cut=-1 +endermanoverhaul\:dark_oak_enderman_ambient=-1 +endermanoverhaul\:dark_oak_enderman_darkness=-1 +endermanoverhaul\:dark_oak_enderman_stare=-1 +playerrevive\:death=-1 +create\:deny=-1 +create\:depot_plop=-1 +create\:depot_slide=-1 +create\:desk_bell=-1 +gtceu\:drill=-1 +species\:effect.birtd.applied=-1 +species\:effect.bloodlust.feed=-1 +species\:effect.bloodlust.removed=-1 +species\:effect.gut_feeling.applied=-1 +species\:effect.gut_feeling.roar=-1 +species\:effect.gut_feeling.spawn=-1 +createaddition\:electric_charge=-1 +createaddition\:electric_motor_buzz=-1 +gtceu\:electrolyzer=-1 +create_connected\:elevator_music=-1 +minecraft\:enchant.thorns.hit=-1 +immersive_aircraft\:engine_start=-1 +immersive_aircraft\:engine_start_bamboo_hopper=-1 +immersive_aircraft\:engine_start_warship=-1 +minecraft\:entity.allay.ambient_with_item=-1 +minecraft\:entity.allay.ambient_without_item=-1 +minecraft\:entity.allay.death=-1 +minecraft\:entity.allay.hurt=-1 +minecraft\:entity.allay.item_given=-1 +minecraft\:entity.allay.item_taken=-1 +minecraft\:entity.allay.item_thrown=-1 +tfc\:entity.alpaca.ambient=-1 +tfc\:entity.alpaca.death=-1 +tfc\:entity.alpaca.hurt=-1 +tfc\:entity.alpaca.step=-1 +minecraft\:entity.armor_stand.break=-1 +minecraft\:entity.armor_stand.fall=-1 +minecraft\:entity.armor_stand.hit=-1 +minecraft\:entity.armor_stand.place=-1 +minecraft\:entity.arrow.hit=-1 +minecraft\:entity.arrow.hit_player=-1 +minecraft\:entity.arrow.shoot=-1 +minecraft\:entity.axolotl.attack=-1 +minecraft\:entity.axolotl.death=-1 +minecraft\:entity.axolotl.hurt=-1 +minecraft\:entity.axolotl.idle_air=-1 +minecraft\:entity.axolotl.idle_water=-1 +minecraft\:entity.axolotl.splash=-1 +minecraft\:entity.axolotl.swim=-1 +minecraft\:entity.bat.ambient=-1 +minecraft\:entity.bat.death=-1 +minecraft\:entity.bat.hurt=-1 +minecraft\:entity.bat.loop=-1 +minecraft\:entity.bat.takeoff=-1 +tfc\:entity.bear.ambient=-1 +tfc\:entity.bear.attack=-1 +tfc\:entity.bear.death=-1 +tfc\:entity.bear.hurt=-1 +tfc\:entity.bear.sleep=-1 +tfc\:entity.bear.step=-1 +minecraft\:entity.bee.death=-1 +minecraft\:entity.bee.hurt=-1 +minecraft\:entity.bee.loop=-1 +minecraft\:entity.bee.loop_aggressive=-1 +minecraft\:entity.bee.pollinate=-1 +minecraft\:entity.bee.sting=-1 +species\:entity.bewereager.bite=-1 +species\:entity.bewereager.celebrate=-1 +species\:entity.bewereager.death=-1 +species\:entity.bewereager.howl=-1 +species\:entity.bewereager.howl_strength=-1 +species\:entity.bewereager.hurt=-1 +species\:entity.bewereager.idle=-1 +species\:entity.bewereager.jump=-1 +species\:entity.bewereager.land=-1 +species\:entity.bewereager.shake=-1 +species\:entity.bewereager.slash=-1 +species\:entity.bewereager.speed=-1 +species\:entity.bewereager.split=-1 +species\:entity.bewereager.step=-1 +species\:entity.bewereager.stun=-1 +species\:entity.bewereager.transform=-1 +species\:entity.bewereager.transform_start=-1 +species\:entity.birt.death=-1 +species\:entity.birt.fly=-1 +species\:entity.birt.hurt=-1 +species\:entity.birt.idle=-1 +species\:entity.birt.message=-1 +species\:entity.birt.search=-1 +minecraft\:entity.blaze.ambient=-1 +minecraft\:entity.blaze.burn=-1 +minecraft\:entity.blaze.death=-1 +minecraft\:entity.blaze.hurt=-1 +minecraft\:entity.blaze.shoot=-1 +tfc\:entity.bluegill.ambient=-1 +tfc\:entity.bluegill.death=-1 +tfc\:entity.bluegill.flop=-1 +tfc\:entity.bluegill.hurt=-1 +tfc\:entity.boar.ambient=-1 +tfc\:entity.boar.attack=-1 +tfc\:entity.boar.death=-1 +tfc\:entity.boar.hurt=-1 +tfc\:entity.boar.step=-1 +minecraft\:entity.boat.paddle_land=-1 +minecraft\:entity.boat.paddle_water=-1 +tfc\:entity.bongo.ambient=-1 +tfc\:entity.bongo.death=-1 +tfc\:entity.bongo.hurt=-1 +tfc\:entity.bongo.step=-1 +minecraft\:entity.camel.ambient=-1 +minecraft\:entity.camel.dash=-1 +minecraft\:entity.camel.dash_ready=-1 +minecraft\:entity.camel.death=-1 +minecraft\:entity.camel.eat=-1 +minecraft\:entity.camel.hurt=-1 +minecraft\:entity.camel.saddle=-1 +minecraft\:entity.camel.sit=-1 +minecraft\:entity.camel.stand=-1 +minecraft\:entity.camel.step=-1 +minecraft\:entity.camel.step_sand=-1 +tfc\:entity.caribou.ambient=-1 +tfc\:entity.caribou.death=-1 +tfc\:entity.caribou.hurt=-1 +tfc\:entity.caribou.step=-1 +astikorcarts\:entity.cart.attach=-1 +astikorcarts\:entity.cart.detach=-1 +astikorcarts\:entity.cart.place=-1 +minecraft\:entity.cat.ambient=-1 +minecraft\:entity.cat.beg_for_food=-1 +minecraft\:entity.cat.death=-1 +minecraft\:entity.cat.eat=-1 +minecraft\:entity.cat.hiss=-1 +minecraft\:entity.cat.hurt=-1 +minecraft\:entity.cat.purr=-1 +minecraft\:entity.cat.purreow=-1 +minecraft\:entity.cat.stray_ambient=-1 +minecraft\:entity.chicken.ambient=-1 +minecraft\:entity.chicken.death=-1 +minecraft\:entity.chicken.egg=-1 +minecraft\:entity.chicken.hurt=-1 +minecraft\:entity.chicken.step=-1 +species\:entity.cliff_hanger.attach=-1 +species\:entity.cliff_hanger.attack=-1 +species\:entity.cliff_hanger.death=-1 +species\:entity.cliff_hanger.hurt=-1 +species\:entity.cliff_hanger.idle=-1 +species\:entity.cliff_hanger.idle_pulling=-1 +species\:entity.cliff_hanger.shoot=-1 +species\:entity.cliff_hanger.step=-1 +minecraft\:entity.cod.ambient=-1 +minecraft\:entity.cod.death=-1 +minecraft\:entity.cod.flop=-1 +minecraft\:entity.cod.hurt=-1 +species\:entity.coil.adjust=-1 +species\:entity.coil.link=-1 +species\:entity.coil.place=-1 +species\:entity.coil.remove=-1 +tfc\:entity.cougar.ambient=-1 +tfc\:entity.cougar.attack=-1 +tfc\:entity.cougar.death=-1 +tfc\:entity.cougar.hurt=-1 +tfc\:entity.cougar.sleep=-1 +tfc\:entity.cougar.step=-1 +minecraft\:entity.cow.ambient=-1 +minecraft\:entity.cow.death=-1 +minecraft\:entity.cow.hurt=-1 +minecraft\:entity.cow.milk=-1 +minecraft\:entity.cow.step=-1 +tfc\:entity.crappie.ambient=-1 +tfc\:entity.crappie.death=-1 +tfc\:entity.crappie.flop=-1 +tfc\:entity.crappie.hurt=-1 +minecraft\:entity.creeper.death=-1 +minecraft\:entity.creeper.hurt=-1 +minecraft\:entity.creeper.primed=-1 +tfc\:entity.crocodile.ambient=-1 +tfc\:entity.crocodile.attack=-1 +tfc\:entity.crocodile.death=-1 +tfc\:entity.crocodile.hurt=-1 +tfc\:entity.crocodile.sleep=-1 +tfc\:entity.crocodile.step=-1 +species\:entity.cruncher.death=-1 +species\:entity.cruncher.hurt=-1 +species\:entity.cruncher.idle=-1 +species\:entity.cruncher.roar=-1 +species\:entity.cruncher.spit=-1 +species\:entity.cruncher.step=-1 +species\:entity.cruncher.stomp=-1 +species\:entity.cruncher.stun=-1 +wan_ancient_beasts\:entity.crusher.attack=-1 +wan_ancient_beasts\:entity.crusher.attack_area=-1 +wan_ancient_beasts\:entity.crusher.hurt=-1 +wan_ancient_beasts\:entity.crusher.idle=-1 +species\:entity.deepfish.death=-1 +species\:entity.deepfish.flop=-1 +species\:entity.deepfish.hurt=-1 +species\:entity.deepfish.idle=-1 +tfc\:entity.deer.ambient=-1 +tfc\:entity.deer.death=-1 +tfc\:entity.deer.hurt=-1 +tfc\:entity.deer.step=-1 +species\:entity.deflector_dummy.absorb=-1 +species\:entity.deflector_dummy.attack=-1 +species\:entity.deflector_dummy.break=-1 +species\:entity.deflector_dummy.deflect=-1 +species\:entity.deflector_dummy.hurt=-1 +species\:entity.deflector_dummy.place=-1 +tfc\:entity.dog.ambient=-1 +tfc\:entity.dog.attack=-1 +tfc\:entity.dog.death=-1 +tfc\:entity.dog.hurt=-1 +tfc\:entity.dog.sleep=-1 +tfc\:entity.dog.step=-1 +minecraft\:entity.dolphin.ambient=-1 +minecraft\:entity.dolphin.ambient_water=-1 +minecraft\:entity.dolphin.attack=-1 +minecraft\:entity.dolphin.death=-1 +minecraft\:entity.dolphin.eat=-1 +minecraft\:entity.dolphin.hurt=-1 +minecraft\:entity.dolphin.jump=-1 +minecraft\:entity.dolphin.play=-1 +minecraft\:entity.dolphin.splash=-1 +minecraft\:entity.dolphin.swim=-1 +minecraft\:entity.donkey.ambient=-1 +minecraft\:entity.donkey.angry=-1 +minecraft\:entity.donkey.chest=-1 +minecraft\:entity.donkey.death=-1 +minecraft\:entity.donkey.eat=-1 +minecraft\:entity.donkey.hurt=-1 +minecraft\:entity.dragon_fireball.explode=-1 +minecraft\:entity.drowned.ambient=-1 +minecraft\:entity.drowned.ambient_water=-1 +minecraft\:entity.drowned.death=-1 +minecraft\:entity.drowned.death_water=-1 +minecraft\:entity.drowned.hurt=-1 +minecraft\:entity.drowned.hurt_water=-1 +minecraft\:entity.drowned.shoot=-1 +minecraft\:entity.drowned.step=-1 +minecraft\:entity.drowned.swim=-1 +tfc\:entity.duck.ambient=-1 +tfc\:entity.duck.death=-1 +tfc\:entity.duck.hurt=-1 +tfc\:entity.duck.step=-1 +wan_ancient_beasts\:entity.eater.baby_roar=-1 +wan_ancient_beasts\:entity.eater.bite=-1 +wan_ancient_beasts\:entity.eater.death=-1 +wan_ancient_beasts\:entity.eater.hit=-1 +wan_ancient_beasts\:entity.eater.idle=-1 +wan_ancient_beasts\:entity.eater.roar=-1 +wan_ancient_beasts\:entity.eater.sleep=-1 +wan_ancient_beasts\:entity.eater.step=-1 +minecraft\:entity.egg.throw=-1 +minecraft\:entity.elder_guardian.ambient=-1 +minecraft\:entity.elder_guardian.ambient_land=-1 +minecraft\:entity.elder_guardian.curse=-1 +minecraft\:entity.elder_guardian.death=-1 +minecraft\:entity.elder_guardian.death_land=-1 +minecraft\:entity.elder_guardian.flop=-1 +minecraft\:entity.elder_guardian.hurt=-1 +minecraft\:entity.elder_guardian.hurt_land=-1 +minecraft\:entity.ender_dragon.ambient=-1 +minecraft\:entity.ender_dragon.death=-1 +minecraft\:entity.ender_dragon.flap=-1 +minecraft\:entity.ender_dragon.growl=-1 +minecraft\:entity.ender_dragon.hurt=-1 +minecraft\:entity.ender_dragon.shoot=-1 +minecraft\:entity.ender_eye.death=-1 +minecraft\:entity.ender_eye.launch=-1 +minecraft\:entity.ender_pearl.throw=-1 +minecraft\:entity.enderman.ambient=-1 +minecraft\:entity.enderman.death=-1 +minecraft\:entity.enderman.hurt=-1 +minecraft\:entity.enderman.scream=-1 +minecraft\:entity.enderman.stare=-1 +minecraft\:entity.enderman.teleport=-1 +minecraft\:entity.endermite.ambient=-1 +minecraft\:entity.endermite.death=-1 +minecraft\:entity.endermite.hurt=-1 +minecraft\:entity.endermite.step=-1 +minecraft\:entity.evoker.ambient=-1 +minecraft\:entity.evoker.cast_spell=-1 +minecraft\:entity.evoker.celebrate=-1 +minecraft\:entity.evoker.death=-1 +minecraft\:entity.evoker.hurt=-1 +minecraft\:entity.evoker.prepare_attack=-1 +minecraft\:entity.evoker.prepare_summon=-1 +minecraft\:entity.evoker.prepare_wololo=-1 +minecraft\:entity.evoker_fangs.attack=-1 +minecraft\:entity.experience_bottle.throw=-1 +minecraft\:entity.experience_orb.pickup=-1 +minecraft\:entity.firework_rocket.blast=-1 +minecraft\:entity.firework_rocket.blast_far=-1 +minecraft\:entity.firework_rocket.large_blast=-1 +minecraft\:entity.firework_rocket.large_blast_far=-1 +minecraft\:entity.firework_rocket.launch=-1 +minecraft\:entity.firework_rocket.shoot=-1 +minecraft\:entity.firework_rocket.twinkle=-1 +minecraft\:entity.firework_rocket.twinkle_far=-1 +minecraft\:entity.fish.swim=-1 +minecraft\:entity.fishing_bobber.retrieve=-1 +minecraft\:entity.fishing_bobber.splash=-1 +minecraft\:entity.fishing_bobber.throw=-1 +minecraft\:entity.fox.aggro=-1 +minecraft\:entity.fox.ambient=-1 +minecraft\:entity.fox.bite=-1 +minecraft\:entity.fox.death=-1 +minecraft\:entity.fox.eat=-1 +minecraft\:entity.fox.hurt=-1 +minecraft\:entity.fox.screech=-1 +minecraft\:entity.fox.sleep=-1 +minecraft\:entity.fox.sniff=-1 +minecraft\:entity.fox.spit=-1 +minecraft\:entity.fox.teleport=-1 +minecraft\:entity.frog.ambient=-1 +minecraft\:entity.frog.death=-1 +minecraft\:entity.frog.eat=-1 +minecraft\:entity.frog.hurt=-1 +minecraft\:entity.frog.lay_spawn=-1 +minecraft\:entity.frog.long_jump=-1 +minecraft\:entity.frog.step=-1 +minecraft\:entity.frog.tongue=-1 +tfc\:entity.gazelle.ambient=-1 +tfc\:entity.gazelle.death=-1 +tfc\:entity.gazelle.hurt=-1 +tfc\:entity.gazelle.step=-1 +minecraft\:entity.generic.big_fall=-1 +minecraft\:entity.generic.burn=-1 +minecraft\:entity.generic.death=-1 +minecraft\:entity.generic.drink=-1 +minecraft\:entity.generic.eat=-1 +minecraft\:entity.generic.explode=-1 +minecraft\:entity.generic.extinguish_fire=-1 +minecraft\:entity.generic.hurt=-1 +minecraft\:entity.generic.small_fall=-1 +minecraft\:entity.generic.splash=-1 +minecraft\:entity.generic.swim=-1 +minecraft\:entity.ghast.ambient=-1 +minecraft\:entity.ghast.death=-1 +minecraft\:entity.ghast.hurt=-1 +minecraft\:entity.ghast.scream=-1 +minecraft\:entity.ghast.shoot=-1 +minecraft\:entity.ghast.warn=-1 +species\:entity.ghoul.aggro=-1 +species\:entity.ghoul.angry=-1 +species\:entity.ghoul.attack=-1 +species\:entity.ghoul.confused=-1 +species\:entity.ghoul.death=-1 +species\:entity.ghoul.hurt=-1 +species\:entity.ghoul.idle=-1 +species\:entity.ghoul.infect=-1 +species\:entity.ghoul.searching=-1 +species\:entity.ghoul.step=-1 +wan_ancient_beasts\:entity.glider.death=-1 +wan_ancient_beasts\:entity.glider.flap=-1 +wan_ancient_beasts\:entity.glider.flap_start=-1 +wan_ancient_beasts\:entity.glider.hurt=-1 +wan_ancient_beasts\:entity.glider.idle=-1 +wan_ancient_beasts\:entity.glider.landing=-1 +minecraft\:entity.glow_item_frame.add_item=-1 +minecraft\:entity.glow_item_frame.break=-1 +minecraft\:entity.glow_item_frame.place=-1 +minecraft\:entity.glow_item_frame.remove_item=-1 +minecraft\:entity.glow_item_frame.rotate_item=-1 +minecraft\:entity.glow_squid.ambient=-1 +minecraft\:entity.glow_squid.death=-1 +minecraft\:entity.glow_squid.hurt=-1 +minecraft\:entity.glow_squid.squirt=-1 +minecraft\:entity.goat.ambient=-1 +minecraft\:entity.goat.death=-1 +minecraft\:entity.goat.eat=-1 +minecraft\:entity.goat.horn_break=-1 +minecraft\:entity.goat.hurt=-1 +minecraft\:entity.goat.long_jump=-1 +minecraft\:entity.goat.milk=-1 +minecraft\:entity.goat.prepare_ram=-1 +minecraft\:entity.goat.ram_impact=-1 +minecraft\:entity.goat.screaming.ambient=-1 +minecraft\:entity.goat.screaming.death=-1 +minecraft\:entity.goat.screaming.eat=-1 +minecraft\:entity.goat.screaming.horn_break=-1 +minecraft\:entity.goat.screaming.hurt=-1 +minecraft\:entity.goat.screaming.long_jump=-1 +minecraft\:entity.goat.screaming.milk=-1 +minecraft\:entity.goat.screaming.prepare_ram=-1 +minecraft\:entity.goat.screaming.ram_impact=-1 +minecraft\:entity.goat.step=-1 +species\:entity.goober.death=-1 +species\:entity.goober.eat=-1 +species\:entity.goober.hurt=-1 +species\:entity.goober.idle=-1 +species\:entity.goober.idle_resting=-1 +species\:entity.goober.lay_down=-1 +species\:entity.goober.rear_up=-1 +species\:entity.goober.sneeze=-1 +species\:entity.goober.step=-1 +species\:entity.goober.yawn=-1 +tfc\:entity.grouse.ambient=-1 +tfc\:entity.grouse.death=-1 +tfc\:entity.grouse.hurt=-1 +tfc\:entity.grouse.step=-1 +minecraft\:entity.guardian.ambient=-1 +minecraft\:entity.guardian.ambient_land=-1 +minecraft\:entity.guardian.attack=-1 +minecraft\:entity.guardian.death=-1 +minecraft\:entity.guardian.death_land=-1 +minecraft\:entity.guardian.flop=-1 +minecraft\:entity.guardian.hurt=-1 +minecraft\:entity.guardian.hurt_land=-1 +species\:entity.hanger.pull=-1 +minecraft\:entity.hoglin.ambient=-1 +minecraft\:entity.hoglin.angry=-1 +minecraft\:entity.hoglin.attack=-1 +minecraft\:entity.hoglin.converted_to_zombified=-1 +minecraft\:entity.hoglin.death=-1 +minecraft\:entity.hoglin.hurt=-1 +minecraft\:entity.hoglin.retreat=-1 +minecraft\:entity.hoglin.step=-1 +minecraft\:entity.horse.ambient=-1 +minecraft\:entity.horse.angry=-1 +minecraft\:entity.horse.armor=-1 +minecraft\:entity.horse.breathe=-1 +minecraft\:entity.horse.death=-1 +minecraft\:entity.horse.eat=-1 +minecraft\:entity.horse.gallop=-1 +minecraft\:entity.horse.hurt=-1 +minecraft\:entity.horse.jump=-1 +minecraft\:entity.horse.land=-1 +minecraft\:entity.horse.saddle=-1 +minecraft\:entity.horse.step=-1 +minecraft\:entity.horse.step_wood=-1 +minecraft\:entity.hostile.big_fall=-1 +minecraft\:entity.hostile.death=-1 +minecraft\:entity.hostile.hurt=-1 +minecraft\:entity.hostile.small_fall=-1 +minecraft\:entity.hostile.splash=-1 +minecraft\:entity.hostile.swim=-1 +minecraft\:entity.husk.ambient=-1 +minecraft\:entity.husk.converted_to_zombie=-1 +minecraft\:entity.husk.death=-1 +minecraft\:entity.husk.hurt=-1 +minecraft\:entity.husk.step=-1 +tfc\:entity.hyena.ambient=-1 +tfc\:entity.hyena.attack=-1 +tfc\:entity.hyena.death=-1 +tfc\:entity.hyena.hurt=-1 +tfc\:entity.hyena.sleep=-1 +tfc\:entity.hyena.step=-1 +minecraft\:entity.illusioner.ambient=-1 +minecraft\:entity.illusioner.cast_spell=-1 +minecraft\:entity.illusioner.death=-1 +minecraft\:entity.illusioner.hurt=-1 +minecraft\:entity.illusioner.mirror_move=-1 +minecraft\:entity.illusioner.prepare_blindness=-1 +minecraft\:entity.illusioner.prepare_mirror=-1 +minecraft\:entity.iron_golem.attack=-1 +minecraft\:entity.iron_golem.damage=-1 +minecraft\:entity.iron_golem.death=-1 +minecraft\:entity.iron_golem.hurt=-1 +minecraft\:entity.iron_golem.repair=-1 +minecraft\:entity.iron_golem.step=-1 +minecraft\:entity.item.break=-1 +minecraft\:entity.item.pickup=-1 +minecraft\:entity.item_frame.add_item=-1 +minecraft\:entity.item_frame.break=-1 +minecraft\:entity.item_frame.place=-1 +minecraft\:entity.item_frame.remove_item=-1 +minecraft\:entity.item_frame.rotate_item=-1 +tfc\:entity.jellyfish.ambient=-1 +tfc\:entity.jellyfish.death=-1 +tfc\:entity.jellyfish.flop=-1 +tfc\:entity.jellyfish.hurt=-1 +tfc\:entity.lake_trout.ambient=-1 +tfc\:entity.lake_trout.death=-1 +tfc\:entity.lake_trout.flop=-1 +tfc\:entity.lake_trout.hurt=-1 +tfc\:entity.largemouth_bass.ambient=-1 +tfc\:entity.largemouth_bass.death=-1 +tfc\:entity.largemouth_bass.flop=-1 +tfc\:entity.largemouth_bass.hurt=-1 +species\:entity.leaf_hanger.attack=-1 +species\:entity.leaf_hanger.catch=-1 +species\:entity.leaf_hanger.death=-1 +species\:entity.leaf_hanger.hurt=-1 +species\:entity.leaf_hanger.idle=-1 +species\:entity.leaf_hanger.idle_pulling=-1 +species\:entity.leaf_hanger.shoot=-1 +species\:entity.leaf_hanger.step=-1 +minecraft\:entity.leash_knot.break=-1 +minecraft\:entity.leash_knot.place=-1 +minecraft\:entity.lightning_bolt.impact=-1 +minecraft\:entity.lightning_bolt.thunder=0 +species\:entity.limpet.break=-1 +species\:entity.limpet.death=-1 +species\:entity.limpet.deflect=-1 +species\:entity.limpet.hurt=-1 +species\:entity.limpet.idle=-1 +species\:entity.limpet.step=-1 +minecraft\:entity.lingering_potion.throw=-1 +tfc\:entity.lion.ambient=-1 +tfc\:entity.lion.attack=-1 +tfc\:entity.lion.death=-1 +tfc\:entity.lion.hurt=-1 +tfc\:entity.lion.sleep=-1 +tfc\:entity.lion.step=-1 +minecraft\:entity.llama.ambient=-1 +minecraft\:entity.llama.angry=-1 +minecraft\:entity.llama.chest=-1 +minecraft\:entity.llama.death=-1 +minecraft\:entity.llama.eat=-1 +minecraft\:entity.llama.hurt=-1 +minecraft\:entity.llama.spit=-1 +minecraft\:entity.llama.step=-1 +minecraft\:entity.llama.swag=-1 +minecraft\:entity.magma_cube.death=-1 +minecraft\:entity.magma_cube.death_small=-1 +minecraft\:entity.magma_cube.hurt=-1 +minecraft\:entity.magma_cube.hurt_small=-1 +minecraft\:entity.magma_cube.jump=-1 +minecraft\:entity.magma_cube.squish=-1 +minecraft\:entity.magma_cube.squish_small=-1 +species\:entity.mammutilation.bleed=-1 +species\:entity.mammutilation.cough=-1 +species\:entity.mammutilation.death=-1 +species\:entity.mammutilation.howl=-1 +species\:entity.mammutilation.hurt=-1 +species\:entity.mammutilation.idle=-1 +species\:entity.mammutilation.mammutiful_howl=-1 +species\:entity.mammutilation.mammutiful_idle=-1 +tfc\:entity.manatee.ambient=-1 +tfc\:entity.manatee.death=-1 +tfc\:entity.manatee.flop=-1 +tfc\:entity.manatee.hurt=-1 +minecraft\:entity.minecart.inside=-1 +minecraft\:entity.minecart.inside.underwater=-1 +minecraft\:entity.minecart.riding=-1 +tfc\:entity.moose.ambient=-1 +tfc\:entity.moose.attack=-1 +tfc\:entity.moose.death=-1 +tfc\:entity.moose.hurt=-1 +tfc\:entity.moose.step=-1 +minecraft\:entity.mooshroom.convert=-1 +minecraft\:entity.mooshroom.eat=-1 +minecraft\:entity.mooshroom.milk=-1 +minecraft\:entity.mooshroom.shear=-1 +minecraft\:entity.mooshroom.suspicious_milk=-1 +minecraft\:entity.mule.ambient=-1 +minecraft\:entity.mule.angry=-1 +minecraft\:entity.mule.chest=-1 +minecraft\:entity.mule.death=-1 +minecraft\:entity.mule.eat=-1 +minecraft\:entity.mule.hurt=-1 +tfc\:entity.musk_ox.ambient=-1 +tfc\:entity.musk_ox.death=-1 +tfc\:entity.musk_ox.hurt=-1 +tfc\:entity.musk_ox.step=-1 +minecraft\:entity.ocelot.ambient=-1 +minecraft\:entity.ocelot.death=-1 +minecraft\:entity.ocelot.hurt=-1 +minecraft\:entity.painting.break=-1 +minecraft\:entity.painting.place=-1 +minecraft\:entity.panda.aggressive_ambient=-1 +minecraft\:entity.panda.ambient=-1 +minecraft\:entity.panda.bite=-1 +minecraft\:entity.panda.cant_breed=-1 +minecraft\:entity.panda.death=-1 +minecraft\:entity.panda.eat=-1 +minecraft\:entity.panda.hurt=-1 +minecraft\:entity.panda.pre_sneeze=-1 +minecraft\:entity.panda.sneeze=-1 +minecraft\:entity.panda.step=-1 +minecraft\:entity.panda.worried_ambient=-1 +minecraft\:entity.parrot.ambient=-1 +minecraft\:entity.parrot.death=-1 +minecraft\:entity.parrot.eat=-1 +minecraft\:entity.parrot.fly=-1 +minecraft\:entity.parrot.hurt=-1 +minecraft\:entity.parrot.imitate.blaze=-1 +minecraft\:entity.parrot.imitate.creeper=-1 +minecraft\:entity.parrot.imitate.drowned=-1 +minecraft\:entity.parrot.imitate.elder_guardian=-1 +minecraft\:entity.parrot.imitate.ender_dragon=-1 +minecraft\:entity.parrot.imitate.endermite=-1 +minecraft\:entity.parrot.imitate.evoker=-1 +minecraft\:entity.parrot.imitate.ghast=-1 +minecraft\:entity.parrot.imitate.guardian=-1 +minecraft\:entity.parrot.imitate.hoglin=-1 +minecraft\:entity.parrot.imitate.husk=-1 +minecraft\:entity.parrot.imitate.illusioner=-1 +minecraft\:entity.parrot.imitate.magma_cube=-1 +minecraft\:entity.parrot.imitate.phantom=-1 +minecraft\:entity.parrot.imitate.piglin=-1 +minecraft\:entity.parrot.imitate.piglin_brute=-1 +minecraft\:entity.parrot.imitate.pillager=-1 +minecraft\:entity.parrot.imitate.ravager=-1 +minecraft\:entity.parrot.imitate.shulker=-1 +minecraft\:entity.parrot.imitate.silverfish=-1 +minecraft\:entity.parrot.imitate.skeleton=-1 +minecraft\:entity.parrot.imitate.slime=-1 +minecraft\:entity.parrot.imitate.spider=-1 +minecraft\:entity.parrot.imitate.stray=-1 +minecraft\:entity.parrot.imitate.vex=-1 +minecraft\:entity.parrot.imitate.vindicator=-1 +minecraft\:entity.parrot.imitate.warden=-1 +minecraft\:entity.parrot.imitate.witch=-1 +minecraft\:entity.parrot.imitate.wither=-1 +minecraft\:entity.parrot.imitate.wither_skeleton=-1 +minecraft\:entity.parrot.imitate.zoglin=-1 +minecraft\:entity.parrot.imitate.zombie=-1 +minecraft\:entity.parrot.imitate.zombie_villager=-1 +minecraft\:entity.parrot.step=-1 +tfc\:entity.peafowl.ambient=-1 +tfc\:entity.peafowl.death=-1 +tfc\:entity.peafowl.hurt=-1 +tfc\:entity.peafowl.step=-1 +tfc\:entity.penguin.ambient=-1 +tfc\:entity.penguin.death=-1 +tfc\:entity.penguin.hurt=-1 +tfc\:entity.penguin.step=-1 +minecraft\:entity.phantom.ambient=-1 +minecraft\:entity.phantom.bite=-1 +minecraft\:entity.phantom.death=-1 +minecraft\:entity.phantom.flap=-1 +minecraft\:entity.phantom.hurt=-1 +minecraft\:entity.phantom.swoop=-1 +tfc\:entity.pheasant.ambient=-1 +tfc\:entity.pheasant.death=-1 +tfc\:entity.pheasant.hurt=-1 +tfc\:entity.pheasant.step=-1 +minecraft\:entity.pig.ambient=-1 +minecraft\:entity.pig.death=-1 +minecraft\:entity.pig.hurt=-1 +minecraft\:entity.pig.saddle=-1 +minecraft\:entity.pig.step=-1 +minecraft\:entity.piglin.admiring_item=-1 +minecraft\:entity.piglin.ambient=-1 +minecraft\:entity.piglin.angry=-1 +minecraft\:entity.piglin.celebrate=-1 +minecraft\:entity.piglin.converted_to_zombified=-1 +minecraft\:entity.piglin.death=-1 +minecraft\:entity.piglin.hurt=-1 +minecraft\:entity.piglin.jealous=-1 +minecraft\:entity.piglin.retreat=-1 +minecraft\:entity.piglin.step=-1 +minecraft\:entity.piglin_brute.ambient=-1 +minecraft\:entity.piglin_brute.angry=-1 +minecraft\:entity.piglin_brute.converted_to_zombified=-1 +minecraft\:entity.piglin_brute.death=-1 +minecraft\:entity.piglin_brute.hurt=-1 +minecraft\:entity.piglin_brute.step=-1 +minecraft\:entity.pillager.ambient=-1 +minecraft\:entity.pillager.celebrate=-1 +minecraft\:entity.pillager.death=-1 +minecraft\:entity.pillager.hurt=-1 +minecraft\:entity.player.attack.crit=-1 +minecraft\:entity.player.attack.knockback=-1 +minecraft\:entity.player.attack.nodamage=-1 +minecraft\:entity.player.attack.strong=-1 +minecraft\:entity.player.attack.sweep=-1 +minecraft\:entity.player.attack.weak=-1 +minecraft\:entity.player.big_fall=-1 +minecraft\:entity.player.breath=-1 +minecraft\:entity.player.burp=-1 +minecraft\:entity.player.death=-1 +minecraft\:entity.player.hurt=-1 +minecraft\:entity.player.hurt_drown=-1 +minecraft\:entity.player.hurt_freeze=-1 +minecraft\:entity.player.hurt_on_fire=-1 +minecraft\:entity.player.hurt_sweet_berry_bush=-1 +minecraft\:entity.player.levelup=-1 +minecraft\:entity.player.small_fall=-1 +minecraft\:entity.player.splash=-1 +minecraft\:entity.player.splash.high_speed=-1 +minecraft\:entity.player.swim=-1 +minecraft\:entity.polar_bear.ambient=-1 +minecraft\:entity.polar_bear.ambient_baby=-1 +minecraft\:entity.polar_bear.death=-1 +minecraft\:entity.polar_bear.hurt=-1 +minecraft\:entity.polar_bear.step=-1 +minecraft\:entity.polar_bear.warning=-1 +minecraft\:entity.puffer_fish.ambient=-1 +minecraft\:entity.puffer_fish.blow_out=-1 +minecraft\:entity.puffer_fish.blow_up=-1 +minecraft\:entity.puffer_fish.death=-1 +minecraft\:entity.puffer_fish.flop=-1 +minecraft\:entity.puffer_fish.hurt=-1 +minecraft\:entity.puffer_fish.sting=-1 +tfc\:entity.quail.ambient=-1 +tfc\:entity.quail.death=-1 +tfc\:entity.quail.hurt=-1 +tfc\:entity.quail.step=-1 +species\:entity.quake.absorb=-1 +species\:entity.quake.attack=-1 +species\:entity.quake.charge=-1 +species\:entity.quake.death=-1 +species\:entity.quake.finishes_unscrewing=-1 +species\:entity.quake.hurt=-1 +species\:entity.quake.recharge=-1 +species\:entity.quake.shield=-1 +species\:entity.quake.step=-1 +species\:entity.quake.unscrews=-1 +minecraft\:entity.rabbit.ambient=-1 +minecraft\:entity.rabbit.attack=-1 +minecraft\:entity.rabbit.death=-1 +minecraft\:entity.rabbit.hurt=-1 +minecraft\:entity.rabbit.jump=-1 +tfc\:entity.rainbow_trout.ambient=-1 +tfc\:entity.rainbow_trout.death=-1 +tfc\:entity.rainbow_trout.flop=-1 +tfc\:entity.rainbow_trout.hurt=-1 +tfc\:entity.ramming.impact=-1 +tfc\:entity.rat.ambient=-1 +tfc\:entity.rat.death=-1 +tfc\:entity.rat.hurt=-1 +tfc\:entity.rat.step=-1 +minecraft\:entity.ravager.ambient=-1 +minecraft\:entity.ravager.attack=-1 +minecraft\:entity.ravager.celebrate=-1 +minecraft\:entity.ravager.death=-1 +minecraft\:entity.ravager.hurt=-1 +minecraft\:entity.ravager.roar=-1 +minecraft\:entity.ravager.step=-1 +minecraft\:entity.ravager.stunned=-1 +tfc\:entity.rooster.cry=-1 +tfc\:entity.sabertooth.ambient=-1 +tfc\:entity.sabertooth.attack=-1 +tfc\:entity.sabertooth.death=-1 +tfc\:entity.sabertooth.hurt=-1 +tfc\:entity.sabertooth.sleep=-1 +tfc\:entity.sabertooth.step=-1 +minecraft\:entity.salmon.ambient=-1 +minecraft\:entity.salmon.death=-1 +minecraft\:entity.salmon.flop=-1 +minecraft\:entity.salmon.hurt=-1 +minecraft\:entity.sheep.ambient=-1 +minecraft\:entity.sheep.death=-1 +minecraft\:entity.sheep.hurt=-1 +minecraft\:entity.sheep.shear=-1 +minecraft\:entity.sheep.step=-1 +minecraft\:entity.shulker.ambient=-1 +minecraft\:entity.shulker.close=-1 +minecraft\:entity.shulker.death=-1 +minecraft\:entity.shulker.hurt=-1 +minecraft\:entity.shulker.hurt_closed=-1 +minecraft\:entity.shulker.open=-1 +minecraft\:entity.shulker.shoot=-1 +minecraft\:entity.shulker.teleport=-1 +minecraft\:entity.shulker_bullet.hit=-1 +minecraft\:entity.shulker_bullet.hurt=-1 +minecraft\:entity.silverfish.ambient=-1 +minecraft\:entity.silverfish.death=-1 +minecraft\:entity.silverfish.hurt=-1 +minecraft\:entity.silverfish.step=-1 +minecraft\:entity.skeleton.ambient=-1 +minecraft\:entity.skeleton.converted_to_stray=-1 +minecraft\:entity.skeleton.death=-1 +minecraft\:entity.skeleton.hurt=-1 +minecraft\:entity.skeleton.shoot=-1 +minecraft\:entity.skeleton.step=-1 +minecraft\:entity.skeleton_horse.ambient=-1 +minecraft\:entity.skeleton_horse.ambient_water=-1 +minecraft\:entity.skeleton_horse.death=-1 +minecraft\:entity.skeleton_horse.gallop_water=-1 +minecraft\:entity.skeleton_horse.hurt=-1 +minecraft\:entity.skeleton_horse.jump_water=-1 +minecraft\:entity.skeleton_horse.step_water=-1 +minecraft\:entity.skeleton_horse.swim=-1 +minecraft\:entity.slime.attack=-1 +minecraft\:entity.slime.death=-1 +minecraft\:entity.slime.death_small=-1 +minecraft\:entity.slime.hurt=-1 +minecraft\:entity.slime.hurt_small=-1 +minecraft\:entity.slime.jump=-1 +minecraft\:entity.slime.jump_small=-1 +minecraft\:entity.slime.squish=-1 +minecraft\:entity.slime.squish_small=-1 +tfc\:entity.smallmouth_bass.ambient=-1 +tfc\:entity.smallmouth_bass.death=-1 +tfc\:entity.smallmouth_bass.flop=-1 +tfc\:entity.smallmouth_bass.hurt=-1 +minecraft\:entity.sniffer.death=-1 +minecraft\:entity.sniffer.digging=-1 +minecraft\:entity.sniffer.digging_stop=-1 +minecraft\:entity.sniffer.drop_seed=-1 +minecraft\:entity.sniffer.eat=-1 +minecraft\:entity.sniffer.happy=-1 +minecraft\:entity.sniffer.hurt=-1 +minecraft\:entity.sniffer.idle=-1 +minecraft\:entity.sniffer.scenting=-1 +minecraft\:entity.sniffer.searching=-1 +minecraft\:entity.sniffer.sniffing=-1 +minecraft\:entity.sniffer.step=-1 +minecraft\:entity.snow_golem.ambient=-1 +minecraft\:entity.snow_golem.death=-1 +minecraft\:entity.snow_golem.hurt=-1 +minecraft\:entity.snow_golem.shear=-1 +minecraft\:entity.snow_golem.shoot=-1 +minecraft\:entity.snowball.throw=-1 +wan_ancient_beasts\:entity.soarer.attack=-1 +wan_ancient_beasts\:entity.soarer.flap=-1 +wan_ancient_beasts\:entity.soarer.flap_start=-1 +wan_ancient_beasts\:entity.soarer.glide=-1 +wan_ancient_beasts\:entity.soarer.idle=-1 +wan_ancient_beasts\:entity.soarer.landing=-1 +species\:entity.spectre.attack=-1 +species\:entity.spectre.dash=-1 +species\:entity.spectre.death=-1 +species\:entity.spectre.fly=-1 +species\:entity.spectre.hulking_attack=-1 +species\:entity.spectre.hurt=-1 +species\:entity.spectre.idle=-1 +species\:entity.spectre.jousting_attack=-1 +species\:entity.spectre.spawn=-1 +species\:entity.spectre.spot=-1 +minecraft\:entity.spider.ambient=-1 +minecraft\:entity.spider.death=-1 +minecraft\:entity.spider.hurt=-1 +minecraft\:entity.spider.step=-1 +minecraft\:entity.splash_potion.break=-1 +minecraft\:entity.splash_potion.throw=-1 +species\:entity.springling.death=-1 +species\:entity.springling.eat=-1 +species\:entity.springling.extend=-1 +species\:entity.springling.extend_finish=-1 +species\:entity.springling.hurt=-1 +species\:entity.springling.idle=-1 +species\:entity.springling.step=-1 +minecraft\:entity.squid.ambient=-1 +minecraft\:entity.squid.death=-1 +minecraft\:entity.squid.hurt=-1 +minecraft\:entity.squid.squirt=-1 +species\:entity.stackatick.death=-1 +species\:entity.stackatick.eat=-1 +species\:entity.stackatick.goofy_aah_step=-1 +species\:entity.stackatick.hurt=-1 +species\:entity.stackatick.idle=-1 +species\:entity.stackatick.sit=-1 +species\:entity.stackatick.snoring=-1 +species\:entity.stackatick.stand_up=-1 +species\:entity.stackatick.step=-1 +minecraft\:entity.stray.ambient=-1 +minecraft\:entity.stray.death=-1 +minecraft\:entity.stray.hurt=-1 +minecraft\:entity.stray.step=-1 +minecraft\:entity.strider.ambient=-1 +minecraft\:entity.strider.death=-1 +minecraft\:entity.strider.eat=-1 +minecraft\:entity.strider.happy=-1 +minecraft\:entity.strider.hurt=-1 +minecraft\:entity.strider.retreat=-1 +minecraft\:entity.strider.saddle=-1 +minecraft\:entity.strider.step=-1 +minecraft\:entity.strider.step_lava=-1 +wan_ancient_beasts\:entity.surfer.death=-1 +wan_ancient_beasts\:entity.surfer.death_baby=-1 +wan_ancient_beasts\:entity.surfer.fast_swim=-1 +wan_ancient_beasts\:entity.surfer.fast_swim_baby=-1 +wan_ancient_beasts\:entity.surfer.hurt=-1 +wan_ancient_beasts\:entity.surfer.idle=-1 +wan_ancient_beasts\:entity.surfer.idle_baby=-1 +wan_ancient_beasts\:entity.surfer.idle_to_relax=-1 +wan_ancient_beasts\:entity.surfer.idle_to_relax_baby=-1 +wan_ancient_beasts\:entity.surfer.idle_water=-1 +wan_ancient_beasts\:entity.surfer.idle_water_baby=-1 +wan_ancient_beasts\:entity.surfer.jump_landing=-1 +wan_ancient_beasts\:entity.surfer.jump_landing_baby=-1 +wan_ancient_beasts\:entity.surfer.jump_pose=-1 +wan_ancient_beasts\:entity.surfer.jump_pose_baby=-1 +wan_ancient_beasts\:entity.surfer.jump_start=-1 +wan_ancient_beasts\:entity.surfer.jump_start_baby=-1 +wan_ancient_beasts\:entity.surfer.relax=-1 +wan_ancient_beasts\:entity.surfer.relax_baby=-1 +wan_ancient_beasts\:entity.surfer.relax_to_idle=-1 +wan_ancient_beasts\:entity.surfer.relax_to_idle_baby=-1 +wan_ancient_beasts\:entity.surfer.roar=-1 +wan_ancient_beasts\:entity.surfer.roar_baby=-1 +wan_ancient_beasts\:entity.surfer.run=-1 +wan_ancient_beasts\:entity.surfer.run_baby=-1 +wan_ancient_beasts\:entity.surfer.swim=-1 +wan_ancient_beasts\:entity.surfer.swim_baby=-1 +wan_ancient_beasts\:entity.surfer.walk=-1 +wan_ancient_beasts\:entity.surfer.walk_baby=-1 +minecraft\:entity.tadpole.death=-1 +minecraft\:entity.tadpole.flop=-1 +minecraft\:entity.tadpole.grow_up=-1 +minecraft\:entity.tadpole.hurt=-1 +tfc\:entity.tfc_wolf.ambient=-1 +tfc\:entity.tfc_wolf.attack=-1 +tfc\:entity.tfc_wolf.death=-1 +tfc\:entity.tfc_wolf.hurt=-1 +tfc\:entity.tfc_wolf.sleep=-1 +tfc\:entity.tfc_wolf.step=-1 +tfc\:entity.tiger.ambient=-1 +tfc\:entity.tiger.attack=-1 +tfc\:entity.tiger.death=-1 +tfc\:entity.tiger.hurt=-1 +tfc\:entity.tiger.sleep=-1 +tfc\:entity.tiger.step=-1 +minecraft\:entity.tnt.primed=-1 +species\:entity.treeper.burn=-1 +species\:entity.treeper.death=-1 +species\:entity.treeper.hurt=-1 +species\:entity.treeper.idle=-1 +species\:entity.treeper.idle_planted=-1 +species\:entity.treeper.plant=-1 +species\:entity.treeper.shake_fail=-1 +species\:entity.treeper.shake_success=-1 +species\:entity.treeper.step=-1 +species\:entity.treeper.uproot=-1 +species\:entity.trooper.death=-1 +species\:entity.trooper.hurt=-1 +species\:entity.trooper.leaves=-1 +species\:entity.trooper.plant=-1 +species\:entity.trooper.step=-1 +species\:entity.trooper.uproot=-1 +minecraft\:entity.tropical_fish.ambient=-1 +minecraft\:entity.tropical_fish.death=-1 +minecraft\:entity.tropical_fish.flop=-1 +minecraft\:entity.tropical_fish.hurt=-1 +tfc\:entity.turkey.ambient=-1 +tfc\:entity.turkey.death=-1 +tfc\:entity.turkey.hurt=-1 +tfc\:entity.turkey.step=-1 +minecraft\:entity.turtle.ambient_land=-1 +minecraft\:entity.turtle.death=-1 +minecraft\:entity.turtle.death_baby=-1 +minecraft\:entity.turtle.egg_break=-1 +minecraft\:entity.turtle.egg_crack=-1 +minecraft\:entity.turtle.egg_hatch=-1 +minecraft\:entity.turtle.hurt=-1 +minecraft\:entity.turtle.hurt_baby=-1 +minecraft\:entity.turtle.lay_egg=-1 +minecraft\:entity.turtle.shamble=-1 +minecraft\:entity.turtle.shamble_baby=-1 +minecraft\:entity.turtle.swim=-1 +minecraft\:entity.vex.ambient=-1 +minecraft\:entity.vex.charge=-1 +minecraft\:entity.vex.death=-1 +minecraft\:entity.vex.hurt=-1 +minecraft\:entity.villager.ambient=-1 +minecraft\:entity.villager.celebrate=-1 +minecraft\:entity.villager.death=-1 +minecraft\:entity.villager.hurt=-1 +minecraft\:entity.villager.no=-1 +minecraft\:entity.villager.trade=-1 +minecraft\:entity.villager.work_armorer=-1 +minecraft\:entity.villager.work_butcher=-1 +minecraft\:entity.villager.work_cartographer=-1 +minecraft\:entity.villager.work_cleric=-1 +minecraft\:entity.villager.work_farmer=-1 +minecraft\:entity.villager.work_fisherman=-1 +minecraft\:entity.villager.work_fletcher=-1 +minecraft\:entity.villager.work_leatherworker=-1 +minecraft\:entity.villager.work_librarian=-1 +minecraft\:entity.villager.work_mason=-1 +minecraft\:entity.villager.work_shepherd=-1 +minecraft\:entity.villager.work_toolsmith=-1 +minecraft\:entity.villager.work_weaponsmith=-1 +minecraft\:entity.villager.yes=-1 +minecraft\:entity.vindicator.ambient=-1 +minecraft\:entity.vindicator.celebrate=-1 +minecraft\:entity.vindicator.death=-1 +minecraft\:entity.vindicator.hurt=-1 +wan_ancient_beasts\:entity.walker.death=-1 +wan_ancient_beasts\:entity.walker.hit=-1 +wan_ancient_beasts\:entity.walker.idle=-1 +wan_ancient_beasts\:entity.walker.step=-1 +minecraft\:entity.wandering_trader.ambient=-1 +minecraft\:entity.wandering_trader.death=-1 +minecraft\:entity.wandering_trader.disappeared=-1 +minecraft\:entity.wandering_trader.drink_milk=-1 +minecraft\:entity.wandering_trader.drink_potion=-1 +minecraft\:entity.wandering_trader.hurt=-1 +minecraft\:entity.wandering_trader.no=-1 +minecraft\:entity.wandering_trader.reappeared=-1 +minecraft\:entity.wandering_trader.trade=-1 +minecraft\:entity.wandering_trader.yes=-1 +minecraft\:entity.warden.agitated=-1 +minecraft\:entity.warden.ambient=-1 +minecraft\:entity.warden.angry=-1 +minecraft\:entity.warden.attack_impact=-1 +minecraft\:entity.warden.death=-1 +minecraft\:entity.warden.dig=-1 +minecraft\:entity.warden.emerge=-1 +minecraft\:entity.warden.heartbeat=-1 +minecraft\:entity.warden.hurt=-1 +minecraft\:entity.warden.listening=-1 +minecraft\:entity.warden.listening_angry=-1 +minecraft\:entity.warden.nearby_close=-1 +minecraft\:entity.warden.nearby_closer=-1 +minecraft\:entity.warden.nearby_closest=-1 +minecraft\:entity.warden.roar=-1 +minecraft\:entity.warden.sniff=-1 +minecraft\:entity.warden.sonic_boom=-1 +minecraft\:entity.warden.sonic_charge=-1 +minecraft\:entity.warden.step=-1 +minecraft\:entity.warden.tendril_clicks=-1 +species\:entity.wicked.death=-1 +species\:entity.wicked.haunt=-1 +species\:entity.wicked.hurt=-1 +species\:entity.wicked.idle=-1 +species\:entity.wicked.idle_haunting=-1 +species\:entity.wicked.shoot=-1 +species\:entity.wicked.spot=-1 +species\:entity.wicked.stop_haunting=-1 +tfc\:entity.wildebeest.ambient=-1 +tfc\:entity.wildebeest.attack=-1 +tfc\:entity.wildebeest.death=-1 +tfc\:entity.wildebeest.hurt=-1 +tfc\:entity.wildebeest.step=-1 +minecraft\:entity.witch.ambient=-1 +minecraft\:entity.witch.celebrate=-1 +minecraft\:entity.witch.death=-1 +minecraft\:entity.witch.drink=-1 +minecraft\:entity.witch.hurt=-1 +minecraft\:entity.witch.throw=-1 +minecraft\:entity.wither.ambient=-1 +minecraft\:entity.wither.break_block=-1 +minecraft\:entity.wither.death=-1 +minecraft\:entity.wither.hurt=-1 +minecraft\:entity.wither.shoot=-1 +minecraft\:entity.wither.spawn=-1 +minecraft\:entity.wither_skeleton.ambient=-1 +minecraft\:entity.wither_skeleton.death=-1 +minecraft\:entity.wither_skeleton.hurt=-1 +minecraft\:entity.wither_skeleton.step=-1 +minecraft\:entity.wolf.ambient=-1 +minecraft\:entity.wolf.death=-1 +minecraft\:entity.wolf.growl=-1 +minecraft\:entity.wolf.howl=-1 +minecraft\:entity.wolf.hurt=-1 +minecraft\:entity.wolf.pant=-1 +minecraft\:entity.wolf.shake=-1 +minecraft\:entity.wolf.step=-1 +minecraft\:entity.wolf.whine=-1 +species\:entity.wraptor.aggro=-1 +species\:entity.wraptor.agitated=-1 +species\:entity.wraptor.attack=-1 +species\:entity.wraptor.death=-1 +species\:entity.wraptor.egg=-1 +species\:entity.wraptor.feather_loss=-1 +species\:entity.wraptor.hurt=-1 +species\:entity.wraptor.idle=-1 +species\:entity.wraptor.shear=-1 +species\:entity.wraptor.step=-1 +tfc\:entity.yak.ambient=-1 +tfc\:entity.yak.death=-1 +tfc\:entity.yak.hurt=-1 +tfc\:entity.yak.step=-1 +minecraft\:entity.zoglin.ambient=-1 +minecraft\:entity.zoglin.angry=-1 +minecraft\:entity.zoglin.attack=-1 +minecraft\:entity.zoglin.death=-1 +minecraft\:entity.zoglin.hurt=-1 +minecraft\:entity.zoglin.step=-1 +minecraft\:entity.zombie.ambient=-1 +minecraft\:entity.zombie.attack_iron_door=-1 +minecraft\:entity.zombie.attack_wooden_door=-1 +minecraft\:entity.zombie.break_wooden_door=-1 +minecraft\:entity.zombie.converted_to_drowned=-1 +minecraft\:entity.zombie.death=-1 +minecraft\:entity.zombie.destroy_egg=-1 +minecraft\:entity.zombie.hurt=-1 +minecraft\:entity.zombie.infect=-1 +minecraft\:entity.zombie.step=-1 +minecraft\:entity.zombie_horse.ambient=-1 +minecraft\:entity.zombie_horse.death=-1 +minecraft\:entity.zombie_horse.hurt=-1 +minecraft\:entity.zombie_villager.ambient=-1 +minecraft\:entity.zombie_villager.converted=-1 +minecraft\:entity.zombie_villager.cure=-1 +minecraft\:entity.zombie_villager.death=-1 +minecraft\:entity.zombie_villager.hurt=-1 +minecraft\:entity.zombie_villager.step=-1 +minecraft\:entity.zombified_piglin.ambient=-1 +minecraft\:entity.zombified_piglin.angry=-1 +minecraft\:entity.zombified_piglin.death=-1 +minecraft\:entity.zombified_piglin.hurt=-1 +minecraft\:event.raid.horn=-1 +gtceu\:file=-1 +gtceu\:fire=-1 +deafission\:fission_loop=-1 +gtceu\:forge_hammer=-1 +create\:frogport_catch=-1 +create\:frogport_close=-1 +create\:frogport_deposit=-1 +create\:frogport_open=-1 +create\:funnel_flap=-1 +create\:funnel_flap_compounded_1=-1 +gtceu\:furnace=-1 +create\:fwoomp=-1 +ad_astra\:gravity_normalizer_idle=-1 +ae2\:guide.click=-1 +guideme\:guide.click=-1 +tacz\:gun=-1 +railways\:handcar_cogs=-1 +create\:haunted_bell_convert=-1 +create\:haunted_bell_use=-1 +endermanoverhaul\:icy_pearl_hit=-1 +minecraft\:intentionally_empty=-1 +create_connected\:interlude_music=-1 +tfc\:item.armor.equip_bismuth_bronze=-1 +tfc\:item.armor.equip_black_bronze=-1 +tfc\:item.armor.equip_black_steel=-1 +tfc\:item.armor.equip_blue_steel=-1 +tfc\:item.armor.equip_bronze=-1 +minecraft\:item.armor.equip_chain=-1 +tfc\:item.armor.equip_copper=-1 +minecraft\:item.armor.equip_diamond=-1 +minecraft\:item.armor.equip_elytra=-1 +minecraft\:item.armor.equip_generic=-1 +minecraft\:item.armor.equip_gold=-1 +minecraft\:item.armor.equip_iron=-1 +minecraft\:item.armor.equip_leather=-1 +minecraft\:item.armor.equip_netherite=-1 +tfc\:item.armor.equip_red_steel=-1 +tfc\:item.armor.equip_steel=-1 +minecraft\:item.armor.equip_turtle=-1 +tfc\:item.armor.equip_wrought_iron=-1 +minecraft\:item.axe.scrape=-1 +minecraft\:item.axe.strip=-1 +minecraft\:item.axe.wax_off=-1 +species\:item.birt_egg.hit=-1 +species\:item.birt_egg.throw=-1 +minecraft\:item.bone_meal.use=-1 +minecraft\:item.book.page_turn=-1 +minecraft\:item.book.put=-1 +minecraft\:item.bottle.empty=-1 +minecraft\:item.bottle.fill=-1 +minecraft\:item.bottle.fill_dragonbreath=-1 +minecraft\:item.brush.brushing.generic=-1 +minecraft\:item.brush.brushing.gravel=-1 +minecraft\:item.brush.brushing.gravel.complete=-1 +minecraft\:item.brush.brushing.sand=-1 +minecraft\:item.brush.brushing.sand.complete=-1 +minecraft\:item.bucket.empty=-1 +minecraft\:item.bucket.empty_axolotl=-1 +minecraft\:item.bucket.empty_fish=-1 +minecraft\:item.bucket.empty_lava=-1 +minecraft\:item.bucket.empty_milk=-1 +minecraft\:item.bucket.empty_powder_snow=-1 +minecraft\:item.bucket.empty_tadpole=-1 +minecraft\:item.bucket.fill=-1 +minecraft\:item.bucket.fill_axolotl=-1 +minecraft\:item.bucket.fill_fish=-1 +minecraft\:item.bucket.fill_lava=-1 +minecraft\:item.bucket.fill_milk=-1 +minecraft\:item.bucket.fill_powder_snow=-1 +minecraft\:item.bucket.fill_tadpole=-1 +minecraft\:item.bundle.drop_contents=-1 +minecraft\:item.bundle.insert=-1 +minecraft\:item.bundle.remove_one=-1 +exposure\:item.camera.button_click=-1 +exposure\:item.camera.dial_click=-1 +exposure\:item.camera.film_advance=-1 +exposure\:item.camera.film_advance_last=-1 +exposure\:item.camera.film_removed=-1 +exposure\:item.camera.filter_insert=-1 +exposure\:item.camera.filter_remove=-1 +exposure\:item.camera.flash=-1 +exposure\:item.camera.generic_click=-1 +exposure\:item.camera.interplanar_projector.project=-1 +exposure\:item.camera.lens_insert=-1 +exposure\:item.camera.lens_remove=-1 +exposure\:item.camera.lens_ring_click=-1 +exposure\:item.camera.release_button_click=-1 +exposure\:item.camera.shutter_close=-1 +exposure\:item.camera.shutter_open=-1 +exposure\:item.camera.shutter_ticking=-1 +exposure\:item.camera.viewfinder_close=-1 +exposure\:item.camera.viewfinder_open=-1 +tfc\:item.ceramic.break=-1 +chalk\:item.chalk_box_change=-1 +chalk\:item.chalk_box_close=-1 +chalk\:item.chalk_box_open=-1 +chalk\:item.chalk_draw=-1 +minecraft\:item.chorus_fruit.teleport=-1 +tfc\:item.cool=-1 +species\:item.cracked_wraptor_egg.slurp=-1 +species\:item.crankbow.load_arrow=-1 +species\:item.crankbow.pull=-1 +species\:item.crankbow.quick_pull=-1 +species\:item.crankbow.remove_arrow=-1 +species\:item.crankbow.shoot=-1 +species\:item.crankbow.shoot_spare=-1 +species\:item.crankbow.speed=-1 +species\:item.crankbow.stop=-1 +minecraft\:item.crop.plant=-1 +minecraft\:item.crossbow.hit=-1 +minecraft\:item.crossbow.loading_end=-1 +minecraft\:item.crossbow.loading_middle=-1 +minecraft\:item.crossbow.loading_start=-1 +minecraft\:item.crossbow.quick_charge_1=-1 +minecraft\:item.crossbow.quick_charge_2=-1 +minecraft\:item.crossbow.quick_charge_3=-1 +minecraft\:item.crossbow.shoot=-1 +minecraft\:item.dye.use=-1 +minecraft\:item.elytra.flying=-1 +tfc\:item.fertilizer.use=-1 +minecraft\:item.firecharge.use=-1 +tfc\:item.firestarter.use=-1 +waterflasks\:item.flaskbreak=-1 +minecraft\:item.flintandsteel.use=-1 +chalk\:item.glow_applied=-1 +minecraft\:item.glow_ink_sac.use=-1 +minecraft\:item.goat_horn.play=-1 +minecraft\:item.goat_horn.sound.0=0 +minecraft\:item.goat_horn.sound.1=0 +minecraft\:item.goat_horn.sound.2=0 +minecraft\:item.goat_horn.sound.3=0 +minecraft\:item.goat_horn.sound.4=0 +minecraft\:item.goat_horn.sound.5=0 +minecraft\:item.goat_horn.sound.6=0 +minecraft\:item.goat_horn.sound.7=0 +species\:item.harpoon.anchor=-1 +species\:item.harpoon.pull=-1 +species\:item.harpoon.retrieved=-1 +species\:item.harpoon.start_ziplining=-1 +species\:item.harpoon.thrown=-1 +species\:item.harpoon.ziplining=-1 +minecraft\:item.hoe.till=-1 +firmalife\:item.hollow_shell.blow=-1 +minecraft\:item.honey_bottle.drink=-1 +minecraft\:item.honeycomb.wax_on=-1 +species\:item.ichor_bottle.applied=-1 +minecraft\:item.ink_sac.use=-1 +tfc\:item.javelin.hit=-1 +tfc\:item.javelin.hit_ground=-1 +tfc\:item.javelin.throw=-1 +tfc\:item.jug.blow=-1 +tfc\:item.knapping.clay=-1 +tfc\:item.knapping.leather=-1 +tfc\:item.knapping.stone=-1 +minecraft\:item.lodestone_compass.lock=-1 +species\:item.monster_meal.apply=-1 +minecraft\:item.nether_wart.plant=-1 +tfc\:item.pan.use=-1 +exposure\:item.photograph.break=-1 +exposure\:item.photograph.place=-1 +exposure\:item.photograph.rustle=-1 +exposure\:item.photograph_frame.add_item=-1 +exposure\:item.photograph_frame.break=-1 +exposure\:item.photograph_frame.place=-1 +exposure\:item.photograph_frame.remove_item=-1 +exposure\:item.photograph_frame.rotate_item=-1 +species\:item.ricoshield.absorb=-1 +species\:item.ricoshield.attack=-1 +minecraft\:item.shield.block=-1 +minecraft\:item.shield.break=-1 +minecraft\:item.shovel.flatten=-1 +species\:item.smoke_bomb.charge=-1 +species\:item.smoke_bomb.use=-1 +species\:item.spectralibur.collect_soul=-1 +species\:item.spectralibur.release_spectre=-1 +species\:item.spectralibur.start_charging=-1 +species\:item.spectralibur.use_soul=-1 +minecraft\:item.spyglass.stop_using=-1 +minecraft\:item.spyglass.use=-1 +minecraft\:item.totem.use=-1 +minecraft\:item.trident.hit=-1 +minecraft\:item.trident.hit_ground=-1 +minecraft\:item.trident.return=-1 +minecraft\:item.trident.riptide_1=-1 +minecraft\:item.trident.riptide_2=-1 +minecraft\:item.trident.riptide_3=-1 +minecraft\:item.trident.throw=-1 +minecraft\:item.trident.thunder=-1 +species\:item.wicked_dope.boost=-1 +species\:item.wicked_dope.fail=-1 +species\:item.wicked_mask.equip=-1 +species\:item.wicked_mask.link=-1 +species\:item.wicked_swapper.fail=-1 +species\:item.wicked_swapper.teleport=-1 +species\:item.wicked_swapper.throw=-1 +species\:item.wicked_treat.apply=-1 +species\:item.wicked_wax.eat=-1 +species\:item.youth_potion.baby=-1 +species\:item.youth_potion.stumped=-1 +create\:item_hatch=-1 +create\:item_hatch_compounded_1=-1 +gtceu\:jet_engine=-1 +createaddition\:little_zap=-1 +createaddition\:loud_zap=-1 +gtceu\:macerator=-1 +create\:mechanical_press_activation=-1 +create\:mechanical_press_activation_belt=-1 +create\:mechanical_press_activation_belt_compounded_1=-1 +create\:mechanical_press_activation_compounded_1=-1 +gtceu\:metal_pipe=-1 +gtceu\:miner=-1 +gtceu\:mixer=-1 +create\:mixing=-1 +create\:mixing_compounded_1=-1 +gtceu\:mortar=-1 +gtceu\:motor=-1 +minecraft\:music.creative=-1 +minecraft\:music.credits=-1 +species\:music.disc.dial=-1 +species\:music.disc.lapidarian=-1 +species\:music.disk.spawner=-1 +minecraft\:music.dragon=-1 +minecraft\:music.end=-1 +minecraft\:music.game=-1 +species\:music.happy_birtday=-1 +minecraft\:music.menu=-1 +minecraft\:music.nether.basalt_deltas=-1 +minecraft\:music.nether.crimson_forest=-1 +minecraft\:music.nether.nether_wastes=-1 +minecraft\:music.nether.soul_sand_valley=-1 +minecraft\:music.nether.warped_forest=-1 +minecraft\:music.overworld.badlands=-1 +minecraft\:music.overworld.bamboo_jungle=-1 +minecraft\:music.overworld.cherry_grove=-1 +minecraft\:music.overworld.deep_dark=-1 +minecraft\:music.overworld.desert=-1 +minecraft\:music.overworld.dripstone_caves=-1 +minecraft\:music.overworld.flower_forest=-1 +minecraft\:music.overworld.forest=-1 +minecraft\:music.overworld.frozen_peaks=-1 +minecraft\:music.overworld.grove=-1 +minecraft\:music.overworld.jagged_peaks=-1 +minecraft\:music.overworld.jungle=-1 +minecraft\:music.overworld.lush_caves=-1 +minecraft\:music.overworld.meadow=-1 +minecraft\:music.overworld.old_growth_taiga=-1 +minecraft\:music.overworld.snowy_slopes=-1 +minecraft\:music.overworld.sparse_jungle=-1 +minecraft\:music.overworld.stony_peaks=-1 +minecraft\:music.overworld.swamp=-1 +minecraft\:music.under_water=-1 +minecraft\:music_disc.11=-1 +minecraft\:music_disc.13=-1 +minecraft\:music_disc.5=-1 +minecraft\:music_disc.blocks=-1 +minecraft\:music_disc.cat=-1 +minecraft\:music_disc.chirp=-1 +minecraft\:music_disc.far=-1 +minecraft\:music_disc.mall=-1 +minecraft\:music_disc.mellohi=-1 +minecraft\:music_disc.otherside=-1 +minecraft\:music_disc.pigstep=-1 +minecraft\:music_disc.relic=-1 +minecraft\:music_disc.stal=-1 +minecraft\:music_disc.strad=-1 +minecraft\:music_disc.wait=-1 +minecraft\:music_disc.ward=-1 +alekiships\:music_disc_pirate_crafting=-1 +ad_astra\:oxygen_intake=-1 +ad_astra\:oxygen_outtake=-1 +create\:package_pop=-1 +create\:package_pop_compounded_1=-1 +create\:packager=-1 +minecraft\:particle.soul_escape=-1 +create\:peculiar_bell_use=-1 +endermanoverhaul\:plant_enderman_ambient=-1 +endermanoverhaul\:plant_enderman_hurt=-1 +gtceu\:plunger=-1 +gtceu\:portable_scanner=-1 +gtceu\:portal_closing=-1 +gtceu\:portal_opening=-1 +create\:potato_hit=-1 +create\:potato_hit_compounded_1=-1 +immersive_aircraft\:propeller=-1 +immersive_aircraft\:propeller_bamboo_hopper=-1 +immersive_aircraft\:propeller_small=-1 +immersive_aircraft\:propeller_tiny=-1 +tfc\:random.dirt_slide_short=-1 +tfc\:random.rock_slide_long=-1 +tfc\:random.rock_slide_long_fake=-1 +tfc\:random.rock_slide_short=-1 +tfc\:random.rock_smash=-1 +immersive_aircraft\:repair=-1 +gtceu\:replicator=-1 +playerrevive\:revived=-1 +ad_astra\:rocket=-1 +ad_astra\:rocket_launch=-1 +create\:sanding_long=-1 +create\:sanding_short=-1 +gtceu\:saw=-1 +create\:saw_activate_stone=-1 +create\:saw_activate_wood=-1 +create\:schematicannon_finish=-1 +create\:schematicannon_launch_block=-1 +gtceu\:science=-1 +gtceu\:screwdriver=-1 +create\:scroll_value=-1 +ad_astra\:sliding_door_close=-1 +ad_astra\:sliding_door_open=-1 +create\:slime_added=-1 +gtceu\:soft_hammer=-1 +endermanoverhaul\:soul_pearl_hit=-1 +create\:spout=-1 +gtceu\:spray_can=-1 +create\:steam=-1 +create\:stock_link=-1 +create\:stock_ticker_request=-1 +create\:stock_ticker_trade=-1 +create_hypertube\:suction=-1 +endermanoverhaul\:summoner_pearl_hit=-1 +gtceu\:sus=-1 +endermanoverhaul\:tall_enderman_ambient=-1 +endermanoverhaul\:tall_enderman_death=-1 +endermanoverhaul\:tall_enderman_stare=-1 +tacz\:target_block_hit=-1 +createaddition\:tesla_coil=-1 +sandworm_mod\:thumper=-1 +create\:train=-1 +create\:train2=-1 +create\:train3=-1 +create_hypertube\:traveling=-1 +fallingtrees\:tree_fall=-1 +fallingtrees\:tree_impact=-1 +gtceu\:turbine=-1 +minecraft\:ui.button.click=-1 +minecraft\:ui.cartography_table.take_result=-1 +etched\:ui.etching_table.take_result=-1 +minecraft\:ui.loom.select_pattern=-1 +minecraft\:ui.loom.take_result=-1 +minecraft\:ui.stonecutter.select_recipe=-1 +minecraft\:ui.stonecutter.take_result=-1 +minecraft\:ui.toast.challenge_complete=-1 +minecraft\:ui.toast.in=-1 +minecraft\:ui.toast.out=-1 +immersive_aircraft\:warship=-1 +cucumber\:watering_can=-1 +waves\:waves.waves_breaking=-1 +minecraft\:weather.rain=0 +minecraft\:weather.rain.above=0 +create\:whistle=-1 +create\:whistle_high=-1 +create\:whistle_low=-1 +create\:whistle_train=-1 +create\:whistle_train_low=-1 +create\:whistle_train_manual=-1 +create\:whistle_train_manual_end=-1 +create\:whistle_train_manual_low=-1 +create\:whistle_train_manual_low_end=-1 +gtceu\:wirecutter=-1 +immersive_aircraft\:woosh=-1 +create\:worldshaper_place=-1 +sandworm_mod\:worm_breach=-1 +sandworm_mod\:worm_burrow=-1 +sandworm_mod\:worm_land=-1 +sandworm_mod\:worm_roar=-1 +sandworm_mod\:worm_spawn=-1 +sandworm_mod\:worm_warning_1=-1 +sandworm_mod\:worm_warning_2=-1 +ad_astra\:wrench=-1 +gtceu\:wrench=-1 +create\:wrench_remove=-1 +create\:wrench_remove_compounded_1=-1 +create\:wrench_rotate=-1 diff --git a/config/tfc_gurman-common.toml b/config/tfc_gurman-common.toml new file mode 100644 index 000000000..56eb2e10d --- /dev/null +++ b/config/tfc_gurman-common.toml @@ -0,0 +1,10 @@ +#Whether to log the dirt block on common setup +logDirtBlock = true +#A magic number +#Range: > 0 +magicNumber = 42 +#What you want the introduction message to be for the magic number +magicNumberIntroduction = "The magic number is... " +#A list of items to log on common setup. +items = ["minecraft:iron_ingot"] + diff --git a/config/tfcambiental-client.toml b/config/tfcambiental-client.toml index 21c558cf8..edec1e8a4 100644 --- a/config/tfcambiental-client.toml +++ b/config/tfcambiental-client.toml @@ -1,4 +1,3 @@ -#For all ARGB values, set to 00000000 to disable the feature in that season #How dark should the noise be at most? Set to 0 to disable noise entirely #Range: 0.0 ~ 0.5 noiseDarkness = 0.18 @@ -19,4 +18,10 @@ seasonColorSpring = "3311CAD7" #How much to drip when wet. 0 to turn off #Range: 0 ~ 100 drippiness = 30 +#For all ARGB values, set to 00000000 to disable the feature in that season +#Change temperature display to Fahrenheit. +useFahrenheit = false +#Offset the GUI elements. Useful if you're using a resourcep ack that changes the health or hunger bars +#Range: 0.0 ~ 3.4028234663852886E38 +guiOffset = 8.0 diff --git a/config/tfchotornot-common.toml b/config/tfchotornot-common.toml index fa6a16ee1..44eb98f1c 100644 --- a/config/tfchotornot-common.toml +++ b/config/tfchotornot-common.toml @@ -19,7 +19,7 @@ hotFluidTemperature = 1300 #This sets the temperature when a cold fluid should add effects to the player (in kelvin). #Range: > -2147483648 - coldFluidTemperature = 273 + coldFluidTemperature = 223 #Modifier for how much the offhand item should heat up when holding hot items. Holding multiple hot items will heat your insulating items faster! #Range: 4.9E-324 ~ 1.7976931348623157E308 itemTemperatureModifier = 2.0 diff --git a/config/timeout_fixes-common.toml b/config/timeout_fixes-common.toml new file mode 100644 index 000000000..c2e982118 --- /dev/null +++ b/config/timeout_fixes-common.toml @@ -0,0 +1,6 @@ + +#General mod settings +[general] + #Range: 1 ~ 30000 + timeoutInSeconds = 240 + diff --git a/config/tp_shooting-client.toml b/config/tp_shooting-client.toml new file mode 100644 index 000000000..ad310fdbf --- /dev/null +++ b/config/tp_shooting-client.toml @@ -0,0 +1,14 @@ +#Make fov scale at shoulder surfing view constant, ignoring scopes on current gun +constant_aiming_zoom_scale = true +#FOV scale for constant_aiming_fov_scale +#Range: 0.0 ~ 1.7976931348623157E308 +constant_aiming_zoom_scale_value = 3.125 +#(Locked) ads speed for constant_aiming_fov_scale +#Range: 0.0 ~ 1.7976931348623157E308 +constant_aiming_ads_speed = 1.0 +#This option is broken and has no effect on TaC Zero. +#========================== Original Description ========================== +#If enabled, tapping the aim button will put you in/out of first person view +#This only works while TAC's Config.CLIENT.controls.holdToAim is set to true +dynamic_aim_mode = true + diff --git a/config/transition.json b/config/transition.json new file mode 100644 index 000000000..652c133b8 --- /dev/null +++ b/config/transition.json @@ -0,0 +1,4 @@ +{ + "version": 1, + "userConsentedToSendCrashReports": false +} \ No newline at end of file diff --git a/config/trender.json b/config/trender.json new file mode 100644 index 000000000..f07510e2c --- /dev/null +++ b/config/trender.json @@ -0,0 +1,4 @@ +{ + "version": 1, + "style": "VANILLA_OLD" +} \ No newline at end of file diff --git a/config/waves-common.toml b/config/waves-common.toml index 8bab5484b..4899ee43b 100644 --- a/config/waves-common.toml +++ b/config/waves-common.toml @@ -1,5 +1,3 @@ -#Toggle the spawning of wave entities? This prevents the waves from depositing blocks on the shores. True = enabled. -toggleWaveEntities = true #Toggle whether or not waves should be able to interact (push) with nearby entities? True = enabled. waveEntityInteraction = true #Toggle whether spawning should be equally distributed across distance from the player or have a higher chance to spawn near the player. True = equal distribution. @@ -53,28 +51,20 @@ waveInteractionForceFactor = 1.0 #Range: > 1 waveInteractionUpdateFrequency = 4 -[Debug] +["Debug, Processing and Caching"] #Enable debug? debug = false - #Axis rotation index. - #Range: 0 ~ 5 - axisIndex = 0 - #Axis rotation. - #Range: -360.0 ~ 360.0 - axisRotation = 0.0 - -[Caching] + #Enable parallel processing for performance-critical tasks. + #When enabled, certain operations - such as wave spawning, shore detection, and entity interactions - + #may be executed concurrently across multiple threads. This can significantly improve performance on multi-core systems. + #Recommended for servers with high entity load. + parallelProcessing = true #Toggle whether or not caches should be utilized. For larger servers with lots of activity, the benefit of using caches give diminishing returns. useCaches = true - #How often the caches should be purged. The time is in ticks, so 20 ticks = 1 second. - #Range: > 1 - cacheUpdateFrequency = 12000 - #Cache nearest found shore positions? - cacheNearestShorePos = true - #Cache all found shore positions? - cacheShorePos = false - #Cache if shore positions are surrounded by water? - cacheSurroundedByWater = false - #Cache amount of surrounding blocks that are water? - cacheSurroundingWaterAmount = false + #How often the caches should be updated. The time is in ticks, so 20 ticks = 1 second. Set to 0 to disable cache updates. + #Range: > 0 + cacheUpdateFrequency = 6000 + #How often the caches should be reset. The time is in ticks, so 20 ticks = 1 second. Set to 0 to disable cache updates. + #Range: > 0 + cacheResetFrequency = 24000 diff --git a/config/waves/waves.json b/config/waves/waves.json index 78e7c362d..6064ec4b0 100644 --- a/config/waves/waves.json +++ b/config/waves/waves.json @@ -1,6 +1,6 @@ { "auto_update": true, - "version": "1.5.1", + "version": "1.6.1", "waves": [ { "dimensions": [ diff --git a/defaultconfigs/create-server.toml b/defaultconfigs/create-server.toml index 65b760db3..7d235c600 100644 --- a/defaultconfigs/create-server.toml +++ b/defaultconfigs/create-server.toml @@ -203,6 +203,9 @@ #Whether the players hitbox should be expanded to the size of the contraption hitbox. #[Technical] syncPlayerPickupHitboxWithContraptionHitbox = false + #. + #Whether to prevent block dropping when contraption is placed inside in-world blocks. + noDropWhenContraptionReplaceBlocks = false #. #Configure speed/capacity levels for requirements and indicators. @@ -489,7 +492,7 @@ #. #Maximum length of track that can be placed as one batch or turn. #Range: 16 ~ 128 - maxTrackPlacementLength = 32 + maxTrackPlacementLength = 128 #. #Maximum length of a Train Stations' assembly track. #Range: > 5 diff --git a/defaultconfigs/create_hypertube-server.toml b/defaultconfigs/create_hypertube-server.toml index 0bcd1a986..9fd8ac354 100644 --- a/defaultconfigs/create_hypertube-server.toml +++ b/defaultconfigs/create_hypertube-server.toml @@ -1,8 +1,29 @@ #Change these settings to customize the server-side behavior of the mod. ["Travel Settings"] - #Allow fish to go through the tubes. (experimental) - allowFishTravel = true - #Allow villagers to go through the tubes. - allowVillagerTravel = true + #How to handle entity travel permissions: + #TAG_ONLY - Use only the 'create_hypertube:traveller_entities' tag from datapacks + #WHITELIST - Only entities in the whitelist can travel (ignores tag) + #BLACKLIST - All entities can travel except those in the blacklist + #TAG_WITH_BLACKLIST - Use tag but exclude entities in the blacklist + #Allowed Values: TAG_ONLY, WHITELIST, BLACKLIST, TAG_WITH_BLACKLIST + entityListMode = "BLACKLIST" + #Entities that CAN travel (only used when mode is WHITELIST). + #Use entity registry names like 'minecraft:villager' or 'create:package' + entityWhitelist = ["minecraft:player", "minecraft:villager", "minecraft:wandering_trader", "create:package"] + #Entities that CANNOT travel (used in BLACKLIST and TAG_WITH_BLACKLIST modes). + #Use entity registry names like 'minecraft:creeper' or 'minecraft:wither' + entityBlacklist = ["minecraft:wither", "minecraft:ender_dragon"] + #Multiplier for the speed of the tubes. Default is 1.0, which is normal speed. (THIS IS HIGHLY EXPERIMENTAL) + #Range: 0.5 ~ 99.0 + speedMultiplier = 1.0 + +#Stress Settings +["Stress Settings"] + #Stress impact of the Hyper Entrance block. + #Range: 0.0 ~ 100.0 + entranceStressImpact = 4.0 + #Stress impact of the Hyper Accelerator block. + #Range: 0.0 ~ 100.0 + acceleratorStressImpact = 4.0 diff --git a/defaultconfigs/createhorsepower-server.toml b/defaultconfigs/createhorsepower-server.toml index 84f77de94..99f557598 100644 --- a/defaultconfigs/createhorsepower-server.toml +++ b/defaultconfigs/createhorsepower-server.toml @@ -1,34 +1,34 @@ - -#General Settings -[general] - #Base rpm creatures can spin the horse crank. - #Range: > 1 - creatureRPMRange = 16 - #How much stress small creatures can produce for the horse crank. - #Range: > 1 - smallCreatureStressRange = 8 - #How much stress medium creatures can produce for the horse crank. - #Range: > 1 - mediumCreatureStressRange = 12 - #How much stress large creatures can produce for the horse crank. - #Range: > 1 - largeCreatureStressRange = 16 - -#Path Category -[paths] - #Types of blocks valid as "Poor" quality, - poor_path_block = ["tfc:rooted_dirt/sandy_loam", "tfc:clay/sandy_loam", "tfc:dirt/sandy_loam", "tfc:rooted_dirt/loam", "tfc:clay/loam", "tfc:clay/silt", "tfc:dirt/loam", "tfc:rooted_dirt/silt", "tfc:dirt/silt", "tfc:dirt/silty_loam", "tfc:clay/silty_loam", "tfc:rooted_dirt/silty_loam", "tfc:peat_grass", "tfc:clay_grass/silty_loam", "tfc:grass/silty_loam", "tfc:clay_grass/sandy_loam", "tfc:grass/sandy_loam", "tfc:clay_grass/loam", "tfc:grass/loam", "tfc:clay_grass/silt", "tfc:grass/silt", "tfg:grass/mars_dirt", "tfg:grass/sangnum_mycelium", "tfg:grass/amber_mycelium", "tfg:grass/rusticus_mycelium", "tfg:grass/sangnum_clay_mycelium", "tfg:grass/amber_clay_mycelium", "tfg:grass/rusticus_clay_mycelium", "tfg:grass/sangnum_kaolin_mycelium", "tfg:grass/amber_kaolin_mycelium", "tfg:grass/rusticus_kaolin_mycelium"] - #Types of blocks valid as "Normal" quality, - normal_path_block = ["tfc:rock/gravel/granite", "tfc:rock/gravel/diorite", "tfc:rock/gravel/gabbro", "tfc:rock/gravel/shale", "tfc:rock/gravel/claystone", "tfc:rock/gravel/limestone", "tfc:rock/gravel/conglomerate", "tfc:rock/gravel/dolomite", "tfc:rock/gravel/chert", "tfc:rock/gravel/schist", "tfc:rock/gravel/phyllite", "tfc:rock/gravel/slate", "tfc:rock/gravel/quartzite", "tfc:rock/gravel/dacite", "tfc:rock/gravel/andesite", "tfc:rock/gravel/basalt", "tfc:rock/gravel/rhyolite", "tfc:rock/gravel/chalk", "tfc:rock/gravel/marble", "tfg:rock/gravel_dripstone", "tfg:rock/gravel_deepslate", "tfg:rock/gravel_blackstone", "tfg:rock/gravel_moon", "tfg:rock/gravel_moon_deepslate", "tfg:rock/gravel_glacio", "tfg:rock/gravel_mars", "tfg:rock/gravel_venus", "tfg:rock/gravel_mercury", "tfg:rock/gravel_crackrack", "tfc:grass_path/silt", "tfc:grass_path/loam", "tfc:grass_path/sandy_loam", "tfc:grass_path/silty_loam", "tfg:grass/mars_path", "rnr:hoggin"] - #Types of blocks valid as "Great" quality, - great_path_block = ["rnr:rock/gravel_road/chert", "rnr:rock/gravel_road/chalk", "rnr:rock/gravel_road/rhyolite", "rnr:rock/gravel_road/basalt", "rnr:rock/gravel_road/andesite", "rnr:rock/gravel_road/claystone", "rnr:rock/gravel_road/limestone", "rnr:rock/gravel_road/conglomerate", "rnr:rock/gravel_road/dolomite", "rnr:rock/sett_road/granite", "rnr:rock/sett_road/diorite", "rnr:rock/sett_road/chalk", "rnr:rock/sett_road/rhyolite", "rnr:rock/sett_road/basalt", "rnr:rock/sett_road/quartzite", "rnr:rock/sett_road/dacite", "rnr:rock/sett_road/andesite", "rnr:rock/cobbled_road/chert", "rnr:rock/cobbled_road/dolomite", "rnr:rock/gravel_road/granite", "rnr:rock/gravel_road/marble", "rnr:rock/gravel_road/schist", "rnr:rock/gravel_road/phyllite", "rnr:rock/gravel_road/slate", "rnr:rock/gravel_road/quartzite", "rnr:rock/gravel_road/dacite", "rnr:rock/macadam_road/rhyolite", "rnr:rock/macadam_road/chalk", "rnr:rock/macadam_road/chert", "rnr:rock/macadam_road/dolomite", "rnr:rock/macadam_road/conglomerate", "rnr:rock/macadam_road/limestone", "rnr:rock/macadam_road/gabbro", "rnr:rock/macadam_road/claystone", "rnr:rock/macadam_road/shale", "rnr:rock/macadam_road/gneiss", "rnr:rock/macadam_road/marble", "rnr:rock/macadam_road/schist", "rnr:rock/macadam_road/phyllite", "rnr:rock/macadam_road/slate", "rnr:rock/macadam_road/quartzite", "rnr:rock/macadam_road/dacite", "rnr:rock/macadam_road/andesite", "rnr:rock/macadam_road/basalt", "rnr:rock/gravel_road/diorite", "rnr:rock/gravel_road/gabbro", "rnr:rock/gravel_road/shale", "rnr:rock/macadam_road/diorite", "rnr:rock/macadam_road/granite", "rnr:rock/cobbled_road/conglomerate", "rnr:rock/cobbled_road/limestone", "rnr:rock/cobbled_road/claystone", "rnr:rock/cobbled_road/shale", "rnr:rock/cobbled_road/gabbro", "rnr:rock/cobbled_road/diorite", "rnr:rock/cobbled_road/granite", "rnr:rock/cobbled_road/phyllite", "rnr:rock/cobbled_road/schist", "rnr:rock/cobbled_road/slate", "rnr:rock/cobbled_road/quartzite", "rnr:rock/cobbled_road/dacite", "rnr:rock/cobbled_road/andesite", "rnr:rock/cobbled_road/rhyolite", "rnr:rock/cobbled_road/basalt", "rnr:rock/cobbled_road/chalk", "rnr:rock/cobbled_road/gneiss", "rnr:rock/cobbled_road/marble", "rnr:rock/sett_road/chert", "rnr:rock/sett_road/dolomite", "rnr:rock/sett_road/conglomerate", "rnr:rock/sett_road/limestone", "rnr:rock/sett_road/claystone", "rnr:rock/sett_road/shale", "rnr:rock/sett_road/gabbro", "rnr:rock/flagstones/gneiss", "rnr:rock/flagstones/marble", "rnr:black_sandstone_flagstones", "rnr:brown_sandstone_flagstones", "rnr:green_sandstone_flagstones", "rnr:pink_sandstone_flagstones", "rnr:red_sandstone_flagstones", "rnr:white_sandstone_flagstones", "rnr:yellow_sandstone_flagstones", "rnr:concrete_road_sett", "rnr:brick_road", "rnr:rock/sett_road/marble", "rnr:rock/sett_road/gneiss", "rnr:rock/sett_road/schist", "rnr:rock/sett_road/phyllite", "rnr:rock/sett_road/slate", "rnr:rock/sett_road/quartzite", "rnr:rock/sett_road/dacite", "rnr:rock/flagstones/chert", "rnr:rock/flagstones/dolomite", "rnr:rock/flagstones/conglomerate", "rnr:rock/flagstones/limestone", "rnr:rock/flagstones/claystone", "rnr:rock/flagstones/shale", "rnr:rock/flagstones/gabbro", "rnr:rock/flagstones/diorite", "rnr:rock/flagstones/granite", "rnr:rock/flagstones/schist", "rnr:rock/flagstones/phyllite", "rnr:rock/flagstones/slate", "rnr:rock/flagstones/quartzite", "rnr:rock/flagstones/andesite", "rnr:rock/flagstones/dacite", "rnr:rock/flagstones/basalt", "rnr:rock/flagstones/rhyolite", "rnr:rock/flagstones/chalk"] - -#Creature Category -[workers] - #Valid "Small" creatures - small_creatures = ["tfc:wolf", "tfc:dog", "tfc:pig", "tfc:sheep", "tfc:goat", "tfc:alpaca", "tfg:glacian_ram", "tfg:wraptor", "species:springaling", "tfg:surfer"] - #Valid "Medium" creatures - medium_creatures = ["tfc:cow", "tfc:donkey", "tfc:dolphin", "wan_ancient_beasts:glider", "wan_ancient_beasts:soarer"] - #Valid "Large" creatures - large_creatures = ["tfc:horse", "tfc:mule", "tfc:musk_ox", "tfc:yak", "tfg:sniffer", "wan_ancient_beasts:walker", "species:cruncher"] +#Base rpm creatures can spin the horse crank. +#Range: > 1 +creatureRPMRange = 16 +#How much stress small creatures can produce for the horse crank. +#Range: > 1 +smallCreatureStressRange = 8 +#How much stress medium creatures can produce for the horse crank. +#Range: > 1 +mediumCreatureStressRange = 12 +#How much stress large creatures can produce for the horse crank. +#Range: > 1 +largeCreatureStressRange = 16 +#The multiplier for "Poor" paths +#Range: 0.0 ~ 1.7976931348623157E308 +poorMultiplier = 0.5 +#The multiplier for "Normal" paths +#Range: 0.0 ~ 1.7976931348623157E308 +normalMultiplier = 1.0 +#The multiplier for "Great" paths +#Range: 0.0 ~ 1.7976931348623157E308 +greatMultiplier = 2.0 +#Types of blocks valid as "Poor" quality +poorPathBlock = ["tfc:rooted_dirt/sandy_loam", "tfc:clay/sandy_loam", "tfc:dirt/sandy_loam", "tfc:rooted_dirt/loam", "tfc:clay/loam", "tfc:clay/silt", "tfc:dirt/loam", "tfc:rooted_dirt/silt", "tfc:dirt/silt", "tfc:dirt/silty_loam", "tfc:clay/silty_loam", "tfc:rooted_dirt/silty_loam", "tfc:peat_grass", "tfc:clay_grass/silty_loam", "tfc:grass/silty_loam", "tfc:clay_grass/sandy_loam", "tfc:grass/sandy_loam", "tfc:clay_grass/loam", "tfc:grass/loam", "tfc:clay_grass/silt", "tfc:grass/silt", "tfg:grass/mars_dirt", "tfg:grass/sangnum_mycelium", "tfg:grass/amber_mycelium", "tfg:grass/rusticus_mycelium", "tfg:grass/sangnum_clay_mycelium", "tfg:grass/amber_clay_mycelium", "tfg:grass/rusticus_clay_mycelium", "tfg:grass/sangnum_kaolin_mycelium", "tfg:grass/amber_kaolin_mycelium", "tfg:grass/rusticus_kaolin_mycelium"] +#Types of blocks valid as "Normal" quality +normalPathBlock = ["tfc:rock/gravel/granite", "tfc:rock/gravel/diorite", "tfc:rock/gravel/gabbro", "tfc:rock/gravel/shale", "tfc:rock/gravel/claystone", "tfc:rock/gravel/limestone", "tfc:rock/gravel/conglomerate", "tfc:rock/gravel/dolomite", "tfc:rock/gravel/chert", "tfc:rock/gravel/schist", "tfc:rock/gravel/phyllite", "tfc:rock/gravel/slate", "tfc:rock/gravel/quartzite", "tfc:rock/gravel/dacite", "tfc:rock/gravel/andesite", "tfc:rock/gravel/basalt", "tfc:rock/gravel/rhyolite", "tfc:rock/gravel/chalk", "tfc:rock/gravel/marble", "tfg:rock/gravel_dripstone", "tfg:rock/gravel_deepslate", "tfg:rock/gravel_blackstone", "tfg:rock/gravel_moon", "tfg:rock/gravel_moon_deepslate", "tfg:rock/gravel_glacio", "tfg:rock/gravel_mars", "tfg:rock/gravel_venus", "tfg:rock/gravel_mercury", "tfg:rock/gravel_crackrack", "tfc:grass_path/silt", "tfc:grass_path/loam", "tfc:grass_path/sandy_loam", "tfc:grass_path/silty_loam", "tfg:grass/mars_path", "rnr:hoggin"] +#Types of blocks valid as "Great" quality +greatPathBlock = ["rnr:rock/gravel_road/chert", "rnr:rock/gravel_road/chalk", "rnr:rock/gravel_road/rhyolite", "rnr:rock/gravel_road/basalt", "rnr:rock/gravel_road/andesite", "rnr:rock/gravel_road/claystone", "rnr:rock/gravel_road/limestone", "rnr:rock/gravel_road/conglomerate", "rnr:rock/gravel_road/dolomite", "rnr:rock/sett_road/granite", "rnr:rock/sett_road/diorite", "rnr:rock/sett_road/chalk", "rnr:rock/sett_road/rhyolite", "rnr:rock/sett_road/basalt", "rnr:rock/sett_road/quartzite", "rnr:rock/sett_road/dacite", "rnr:rock/sett_road/andesite", "rnr:rock/cobbled_road/chert", "rnr:rock/cobbled_road/dolomite", "rnr:rock/gravel_road/granite", "rnr:rock/gravel_road/marble", "rnr:rock/gravel_road/schist", "rnr:rock/gravel_road/phyllite", "rnr:rock/gravel_road/slate", "rnr:rock/gravel_road/quartzite", "rnr:rock/gravel_road/dacite", "rnr:rock/macadam_road/rhyolite", "rnr:rock/macadam_road/chalk", "rnr:rock/macadam_road/chert", "rnr:rock/macadam_road/dolomite", "rnr:rock/macadam_road/conglomerate", "rnr:rock/macadam_road/limestone", "rnr:rock/macadam_road/gabbro", "rnr:rock/macadam_road/claystone", "rnr:rock/macadam_road/shale", "rnr:rock/macadam_road/gneiss", "rnr:rock/macadam_road/marble", "rnr:rock/macadam_road/schist", "rnr:rock/macadam_road/phyllite", "rnr:rock/macadam_road/slate", "rnr:rock/macadam_road/quartzite", "rnr:rock/macadam_road/dacite", "rnr:rock/macadam_road/andesite", "rnr:rock/macadam_road/basalt", "rnr:rock/gravel_road/diorite", "rnr:rock/gravel_road/gabbro", "rnr:rock/gravel_road/shale", "rnr:rock/macadam_road/diorite", "rnr:rock/macadam_road/granite", "rnr:rock/cobbled_road/conglomerate", "rnr:rock/cobbled_road/limestone", "rnr:rock/cobbled_road/claystone", "rnr:rock/cobbled_road/shale", "rnr:rock/cobbled_road/gabbro", "rnr:rock/cobbled_road/diorite", "rnr:rock/cobbled_road/granite", "rnr:rock/cobbled_road/phyllite", "rnr:rock/cobbled_road/schist", "rnr:rock/cobbled_road/slate", "rnr:rock/cobbled_road/quartzite", "rnr:rock/cobbled_road/dacite", "rnr:rock/cobbled_road/andesite", "rnr:rock/cobbled_road/rhyolite", "rnr:rock/cobbled_road/basalt", "rnr:rock/cobbled_road/chalk", "rnr:rock/cobbled_road/gneiss", "rnr:rock/cobbled_road/marble", "rnr:rock/sett_road/chert", "rnr:rock/sett_road/dolomite", "rnr:rock/sett_road/conglomerate", "rnr:rock/sett_road/limestone", "rnr:rock/sett_road/claystone", "rnr:rock/sett_road/shale", "rnr:rock/sett_road/gabbro", "rnr:rock/flagstones/gneiss", "rnr:rock/flagstones/marble", "rnr:black_sandstone_flagstones", "rnr:brown_sandstone_flagstones", "rnr:green_sandstone_flagstones", "rnr:pink_sandstone_flagstones", "rnr:red_sandstone_flagstones", "rnr:white_sandstone_flagstones", "rnr:yellow_sandstone_flagstones", "rnr:concrete_road_sett", "rnr:brick_road", "rnr:rock/sett_road/marble", "rnr:rock/sett_road/gneiss", "rnr:rock/sett_road/schist", "rnr:rock/sett_road/phyllite", "rnr:rock/sett_road/slate", "rnr:rock/sett_road/quartzite", "rnr:rock/sett_road/dacite", "rnr:rock/flagstones/chert", "rnr:rock/flagstones/dolomite", "rnr:rock/flagstones/conglomerate", "rnr:rock/flagstones/limestone", "rnr:rock/flagstones/claystone", "rnr:rock/flagstones/shale", "rnr:rock/flagstones/gabbro", "rnr:rock/flagstones/diorite", "rnr:rock/flagstones/granite", "rnr:rock/flagstones/schist", "rnr:rock/flagstones/phyllite", "rnr:rock/flagstones/slate", "rnr:rock/flagstones/quartzite", "rnr:rock/flagstones/andesite", "rnr:rock/flagstones/dacite", "rnr:rock/flagstones/basalt", "rnr:rock/flagstones/rhyolite", "rnr:rock/flagstones/chalk", "greate:steel_shaft", "greate:steel_cogwheel", "greate:large_steel_cogwheel"] +#Valid "Small" creatures +smallCreatures = ["tfc:wolf", "tfc:dog", "tfc:pig", "tfc:sheep", "tfc:goat", "tfc:alpaca", "tfg:glacian_ram", "tfg:wraptor", "tfg:surfer"] +#Valid "Medium" creatures +mediumCreatures = ["tfc:cow", "tfc:donkey", "tfc:dolphin", "wan_ancient_beasts:glider", "wan_ancient_beasts:soarer"] +#Valid "Large" creatures +largeCreatures = ["tfc:horse", "tfc:mule", "tfc:musk_ox", "tfc:yak", "tfg:sniffer", "wan_ancient_beasts:walker", "species:cruncher"] diff --git a/defaultconfigs/ftbranks/README.txt b/defaultconfigs/ftbranks/README.txt index 2a9bc74e0..f21e942e5 100644 --- a/defaultconfigs/ftbranks/README.txt +++ b/defaultconfigs/ftbranks/README.txt @@ -1,6 +1,6 @@ === FTB Ranks === -Last README file update: Thu Oct 23 13:15:38 YEKT 2025 +Last README file update: Tue Dec 16 23:03:36 MSK 2025 Wiki: https://www.notion.so/feedthebeast/FTB-Mod-Documentation-da2e359bad2449459d58d787edda3168 To refresh this file, run /ftbranks refresh_readme @@ -169,6 +169,11 @@ command.aptweaks.kill.entities command.aptweaks.kill.items command.aptweaks.load command.aptweaks.playerPositions +command.atl +command.atl.force_refresh +command.atl.reset_statistics +command.atl.run_explicit_gc +command.atl.thread_dump command.attribute command.attribute.target command.attribute.target.attribute @@ -194,9 +199,6 @@ command.attribute.target.attribute.modifier.value.get command.attribute.target.attribute.modifier.value.get.uuid command.attribute.target.attribute.modifier.value.get.uuid.scale command.back -command.backup -command.backup.command -command.backup.command.name command.balm command.balm.dev command.balm.export @@ -204,6 +206,15 @@ command.balm.export.config command.balm.export.config.mod command.balm.export.icons command.balm.export.icons.filter +command.ban +command.ban-ip +command.ban-ip.target +command.ban-ip.target.reason +command.ban.targets +command.ban.targets.reason +command.banlist +command.banlist.ips +command.banlist.players command.bookshelf command.bookshelf.font command.bookshelf.font.block @@ -569,8 +580,6 @@ command.clone.from.sourceDimension.begin.end.to.targetDimension.destination.repl command.clone.from.sourceDimension.begin.end.to.targetDimension.destination.replace.force command.clone.from.sourceDimension.begin.end.to.targetDimension.destination.replace.move command.clone.from.sourceDimension.begin.end.to.targetDimension.destination.replace.normal -command.closeguiscreen -command.closeguiscreen.target_players command.compass_server command.compass_server.build_scene command.compass_server.build_scene.start @@ -1266,20 +1275,24 @@ command.debug.start command.debug.stop command.defaultgamemode command.defaultgamemode.gamemode -command.defaultoptions -command.defaultoptions.saveAll -command.defaultoptions.saveKeys -command.defaultoptions.saveOptions -command.defaultoptions.saveServers command.delhome command.delhome.name command.delwarp command.delwarp.name +command.deop +command.deop.targets command.difficulty command.difficulty.easy command.difficulty.hard command.difficulty.normal command.difficulty.peaceful +command.discord +command.discord.ignore +command.discord.link +command.discord.migrate +command.discord.rawmsg +command.discord.reload +command.discord.unlink command.effect command.effect.clear command.effect.clear.targets @@ -1543,17 +1556,6 @@ command.firmaciv.navigation.pos command.firmaciv.navigation.pos.type command.fly command.fly.player -command.fmlayout -command.fmlayout.layout_name -command.fmlayout.layout_name.is_layout_enabled -command.fmlayout.layout_name.is_layout_enabled.target_players -command.fmvariable -command.fmvariable.get -command.fmvariable.get.variable_name -command.fmvariable.set -command.fmvariable.set.variable_name -command.fmvariable.set.variable_name.send_chat_feedback -command.fmvariable.set.variable_name.send_chat_feedback.set_to_value command.forceload command.forceload.add command.forceload.add.from @@ -1924,23 +1926,13 @@ command.gtceu.place_vein.vein command.gtceu.place_vein.vein.position command.gtceu.ui_editor command.guideme -command.guideme.exportstructure -command.guideme.exportstructure.origin -command.guideme.exportstructure.origin.sizeX -command.guideme.exportstructure.origin.sizeX.sizeY -command.guideme.exportstructure.origin.sizeX.sizeY.sizeZ command.guideme.give command.guideme.give.targets command.guideme.give.targets.guide -command.guideme.importstructure -command.guideme.importstructure.origin command.guideme.open command.guideme.open.targets command.guideme.open.targets.guide command.guideme.open.targets.guide.page -command.guideme.placeallstructures -command.guideme.placeallstructures.origin -command.guideme.placeallstructures.origin.guide command.hat command.heal command.heal.player @@ -2439,6 +2431,7 @@ command.medical_condition.clear.targets.condition command.medical_condition.query command.medical_condition.query.target command.mfsrc +command.mobcaps command.modernfix command.modernfix.mcfunctions command.modernfix.upgradeStructures @@ -2462,14 +2455,17 @@ command.octolib.config command.octolib.config.reload command.octolib.config.reload.all command.octolib.config.reload.path +command.op +command.op.targets command.open-patchouli-book command.open-patchouli-book.targets command.open-patchouli-book.targets.book command.open-patchouli-book.targets.book.entry command.open-patchouli-book.targets.book.entry.page -command.openguiscreen -command.openguiscreen.screen_identifier -command.openguiscreen.screen_identifier.target_players +command.pardon +command.pardon-ip +command.pardon-ip.target +command.pardon.targets command.particle command.particle.name command.particle.name.pos @@ -2480,6 +2476,9 @@ command.particle.name.pos.delta.speed.count.force command.particle.name.pos.delta.speed.count.force.viewers command.particle.name.pos.delta.speed.count.normal command.particle.name.pos.delta.speed.count.normal.viewers +command.perf +command.perf.start +command.perf.stop command.ping command.ping.target command.place @@ -2575,10 +2574,6 @@ command.ponder.reload command.ponder.scene command.ponder.scene.targets command.ponder.tags -command.publish -command.publish.allowCommands -command.publish.allowCommands.gamemode -command.publish.allowCommands.gamemode.port command.railways command.railways.split_train command.railways.split_train.train_id @@ -2608,6 +2603,10 @@ command.ride.target.dismount command.ride.target.mount command.ride.target.mount.vehicle command.rtp +command.save-all +command.save-all.flush +command.save-off +command.save-on command.say command.say.message command.sbp @@ -2618,6 +2617,36 @@ command.sbp.list command.sbp.list.playerName command.sbp.removeNonPlayer command.sbp.removeNonPlayer.onlyWithEmptyInventory +command.sbp.template +command.sbp.template.create +command.sbp.template.create.templateName +command.sbp.template.create.templateName.override +command.sbp.template.delete +command.sbp.template.delete.templateName +command.sbp.template.dynamic +command.sbp.template.dynamic.addItem +command.sbp.template.dynamic.addItem.templateName +command.sbp.template.dynamic.addItem.templateName.item +command.sbp.template.dynamic.addItem.templateName.item.count +command.sbp.template.dynamic.addItem.templateName.slot +command.sbp.template.dynamic.addItem.templateName.slot.item +command.sbp.template.dynamic.addItem.templateName.slot.item.count +command.sbp.template.dynamic.addUpgrade +command.sbp.template.dynamic.addUpgrade.templateName +command.sbp.template.dynamic.addUpgrade.templateName.item +command.sbp.template.dynamic.begin +command.sbp.template.dynamic.begin.templateName +command.sbp.template.dynamic.begin.templateName.backpackItem +command.sbp.template.dynamic.begin.templateName.baseTemplateName +command.sbp.template.dynamic.end +command.sbp.template.dynamic.end.templateName +command.sbp.template.export +command.sbp.template.export.templateName +command.sbp.template.export.templateName.delete +command.sbp.template.give +command.sbp.template.give.templateName +command.sbp.template.give.templateName.targets +command.sbp.template.list command.schedule command.schedule.clear command.schedule.clear.function @@ -2676,6 +2705,18 @@ command.scoreboard.players.set.targets command.scoreboard.players.set.targets.objective command.scoreboard.players.set.targets.objective.score command.seed +command.servercore +command.servercore.reload +command.servercore.settings +command.servercore.settings.chunk_tick_distance +command.servercore.settings.chunk_tick_distance.value +command.servercore.settings.mobcap_percentage +command.servercore.settings.mobcap_percentage.value +command.servercore.settings.simulation_distance +command.servercore.settings.simulation_distance.value +command.servercore.settings.view_distance +command.servercore.settings.view_distance.value +command.servercore.status command.setblock command.setblock.pos command.setblock.pos.block @@ -2684,6 +2725,8 @@ command.setblock.pos.block.keep command.setblock.pos.block.replace command.sethome command.sethome.name +command.setidletimeout +command.setidletimeout.minutes command.setwarp command.setwarp.name command.setworldspawn @@ -2725,7 +2768,25 @@ command.spreadplayers.center.spreadDistance.maxRange.under command.spreadplayers.center.spreadDistance.maxRange.under.maxHeight command.spreadplayers.center.spreadDistance.maxRange.under.maxHeight.respectTeams command.spreadplayers.center.spreadDistance.maxRange.under.maxHeight.respectTeams.targets +command.statistics +command.statistics.block-entities +command.statistics.block-entities.byPlayer +command.statistics.block-entities.byPlayer.page +command.statistics.block-entities.byType +command.statistics.block-entities.byType.page +command.statistics.block-entities.byType.player +command.statistics.block-entities.byType.player.page +command.statistics.block-entities.page +command.statistics.entities +command.statistics.entities.byPlayer +command.statistics.entities.byPlayer.page +command.statistics.entities.byType +command.statistics.entities.byType.page +command.statistics.entities.byType.player +command.statistics.entities.byType.player.page +command.statistics.entities.page command.stonecutter +command.stop command.stopsound command.stopsound.targets command.stopsound.targets.all @@ -2990,6 +3051,15 @@ command.weather.rain.duration.intensity command.weather.thunder command.weather.thunder.duration command.weather.thunder.duration.intensity +command.whitelist +command.whitelist.add +command.whitelist.add.targets +command.whitelist.list +command.whitelist.off +command.whitelist.on +command.whitelist.reload +command.whitelist.remove +command.whitelist.remove.targets command.worldborder command.worldborder.add command.worldborder.add.distance diff --git a/defaultconfigs/goprone-server.toml b/defaultconfigs/goprone-server.toml new file mode 100644 index 000000000..1220f9fb2 --- /dev/null +++ b/defaultconfigs/goprone-server.toml @@ -0,0 +1,19 @@ + +#Toggles to allow/disable going prone in various circumstances +[allowProne] + #Allow while flying (applies any time the player is off the ground) + flying = true + #Allow while riding another entity + #If this is true, then you cannot go prone while riding any entities in the tag "goprone:blacklisted_entities" but you can when riding any others + #If this is false, then you can go prone while riding any entities in the tag "goprone:whitelisted_entities" but you cannot when riding any others + riding = false + #Allow while climbing (applies any time the player is on a climbable block) + climbing = false + +#Other options not related to when you can go prone +[other] + #Can players jump while prone + isJumpingAllowed = true + #Can players sprint while prone. Also controls whether sprinting is cancelled when going prone + isSprintingAllowed = true + diff --git a/defaultconfigs/greate-server.toml b/defaultconfigs/greate-server.toml index afef19eff..cdf03e0a6 100644 --- a/defaultconfigs/greate-server.toml +++ b/defaultconfigs/greate-server.toml @@ -1,60 +1,11 @@ -#. -#Multiplier used for calculating how many ticks should initially be removed in fan processing recipes, based on how fast the fan is spinning. -#Range: 0.0 ~ 3.4028234663852886E38 -fanSpeedMultiplier = 0.75 #. #Parameters and abilities of Greate's kinetic mechanisms [kinetics] - #. - #. - #Fine tune settings related to belts - [kinetics.belts] - - #. - #. - #Rubber Belt Settings - [kinetics.belts.rubber] - #. - #Maximum length in blocks of rubber mechanical belts - #Range: > 5 - rubberMaxBeltLength = 20 - - #. - #Silicone Rubber Belt Settings - [kinetics.belts.silicone] - #. - #Maximum length in blocks of silicone mechanical belts - #Range: > 5 - siliconeMaxBeltLength = 25 - - #. - #Polyethylene Belt Settings - [kinetics.belts.polyethylene] - #. - #Maximum length in blocks of polyethylene mechanical belts - #Range: > 5 - polyethyleneMaxBeltLength = 30 - - #. - #Polytetrafluoroethylene Belt Settings - [kinetics.belts.polytetrafluoroethylene] - #. - #Maximum length in blocks of polytetrafluoroethylene mechanical belts - #Range: > 5 - polytetrafluoroethyleneMaxBeltLength = 35 - - #. - #Polybenzimidazole Belt Settings - [kinetics.belts.polybenzimidazole] - #. - #Maximum length in blocks of polybenzimidazole mechanical belts - #Range: > 5 - polybenzimidazoleMaxBeltLength = 40 - [kinetics.stressValues] + #. #. #Fine tune the kinetic stats of individual components [kinetics.stressValues.v2] @@ -64,7 +15,6 @@ fanSpeedMultiplier = 0.75 [kinetics.stressValues.v2.impact] [kinetics.stressValues.v2.impact.andesite_alloy] - rubber_belt_andesite_alloy = 0.0 andesite_alloy_shaft = 0.0 andesite_encased_andesite_alloy_shaft = 0.0 brass_encased_andesite_alloy_shaft = 0.0 @@ -82,9 +32,9 @@ fanSpeedMultiplier = 0.75 andesite_alloy_millstone = 0.5 andesite_alloy_mechanical_saw = 0.5 andesite_alloy_mechanical_pump = 0.5 + andesite_alloy_belt = 0.0 [kinetics.stressValues.v2.impact.steel] - rubber_belt_steel = 0.0 steel_shaft = 0.0 andesite_encased_steel_shaft = 0.0 brass_encased_steel_shaft = 0.0 @@ -105,7 +55,6 @@ fanSpeedMultiplier = 0.75 tungsten_steel_gearbox = 0.0 tungsten_steel_crushing_wheel = 3.0 brass_encased_tungsten_steel_shaft = 0.0 - silicone_rubber_belt_stainless_steel = 0.0 andesite_encased_large_tungsten_steel_cogwheel = 0.0 andesite_encased_tungsten_steel_cogwheel = 0.0 stainless_steel_mechanical_saw = 4.0 @@ -127,7 +76,6 @@ fanSpeedMultiplier = 0.75 tungsten_steel_millstone = 3.0 brass_encased_stainless_steel_shaft = 0.0 tungsten_steel_mechanical_press = 6.0 - polyethylene_belt_tungsten_steel = 0.0 tungsten_steel_shaft = 0.0 stainless_steel_mechanical_mixer = 2.0 andesite_encased_stainless_steel_cogwheel = 0.0 @@ -140,7 +88,6 @@ fanSpeedMultiplier = 0.75 tungsten_steel_mechanical_pump = 3.0 [kinetics.stressValues.v2.impact.aluminium] - silicone_rubber_belt_aluminium = 0.0 aluminium_shaft = 0.0 andesite_encased_aluminium_shaft = 0.0 brass_encased_aluminium_shaft = 0.0 @@ -160,7 +107,6 @@ fanSpeedMultiplier = 0.75 aluminium_mechanical_pump = 1.5 [kinetics.stressValues.v2.impact.stainless_steel] - silicone_rubber_belt_stainless_steel = 0.0 stainless_steel_shaft = 0.0 andesite_encased_stainless_steel_shaft = 0.0 brass_encased_stainless_steel_shaft = 0.0 @@ -180,7 +126,6 @@ fanSpeedMultiplier = 0.75 stainless_steel_mechanical_pump = 2.0 [kinetics.stressValues.v2.impact.titanium] - polyethylene_belt_titanium = 0.0 titanium_shaft = 0.0 andesite_encased_titanium_shaft = 0.0 brass_encased_titanium_shaft = 0.0 @@ -200,7 +145,6 @@ fanSpeedMultiplier = 0.75 titanium_mechanical_pump = 2.5 [kinetics.stressValues.v2.impact.tungsten_steel] - polyethylene_belt_tungsten_steel = 0.0 tungsten_steel_shaft = 0.0 andesite_encased_tungsten_steel_shaft = 0.0 brass_encased_tungsten_steel_shaft = 0.0 @@ -220,7 +164,6 @@ fanSpeedMultiplier = 0.75 tungsten_steel_mechanical_pump = 3.0 [kinetics.stressValues.v2.impact.rhodium_plated_palladium] - polytetrafluoroethylene_belt_rhodium_plated_palladium = 0.0 rhodium_plated_palladium_shaft = 0.0 andesite_encased_rhodium_plated_palladium_shaft = 0.0 brass_encased_rhodium_plated_palladium_shaft = 0.0 @@ -240,7 +183,6 @@ fanSpeedMultiplier = 0.75 rhodium_plated_palladium_mechanical_pump = 3.5 [kinetics.stressValues.v2.impact.naquadah_alloy] - polytetrafluoroethylene_belt_naquadah_alloy = 0.0 naquadah_alloy_shaft = 0.0 andesite_encased_naquadah_alloy_shaft = 0.0 brass_encased_naquadah_alloy_shaft = 0.0 @@ -260,7 +202,6 @@ fanSpeedMultiplier = 0.75 naquadah_alloy_mechanical_pump = 4.0 [kinetics.stressValues.v2.impact.darmstadtium] - polybenzimidazole_belt_darmstadtium = 0.0 darmstadtium_shaft = 0.0 andesite_encased_darmstadtium_shaft = 0.0 brass_encased_darmstadtium_shaft = 0.0 @@ -280,7 +221,6 @@ fanSpeedMultiplier = 0.75 darmstadtium_mechanical_pump = 4.5 [kinetics.stressValues.v2.impact.neutronium] - polybenzimidazole_belt_neutronium = 0.0 neutronium_shaft = 0.0 andesite_encased_neutronium_shaft = 0.0 brass_encased_neutronium_shaft = 0.0 @@ -299,91 +239,6 @@ fanSpeedMultiplier = 0.75 neutronium_mechanical_saw = 5.0 neutronium_mechanical_pump = 5.0 - #. - #Fine tune settings related to tiers - [kinetics.stressValues.v2.maxCapacity] - - #. - #. - #Settings related to andesite tier machines - [kinetics.stressValues.v2.maxCapacity.andesite] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - andesiteMaxCapacity = 32 - - #. - #Settings related to steel tier machines - [kinetics.stressValues.v2.maxCapacity.steel] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - steelMaxCapacity = 128 - - #. - #Settings related to aluminium tier machines - [kinetics.stressValues.v2.maxCapacity.aluminium] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - aluminiumMaxCapacity = 512 - - #. - #Settings related to stainless steel tier machines - [kinetics.stressValues.v2.maxCapacity.stainlessSteel] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - stainlessSteelMaxCapacity = 2048 - - #. - #Settings related to titanium tier machines - [kinetics.stressValues.v2.maxCapacity.titanium] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - titaniumMaxCapacity = 8192 - - #. - #Settings related to tungstensteel tier machines - [kinetics.stressValues.v2.maxCapacity.tungstensteel] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - tungstensteelMaxCapacity = 32768 - - #. - #Settings related to palladium tier machines - [kinetics.stressValues.v2.maxCapacity.palladium] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - palladiumMaxCapacity = 131072 - - #. - #Settings related to naquadah tier machines - [kinetics.stressValues.v2.maxCapacity.naquadah] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - naquadahMaxCapacity = 524288 - - #. - #Settings related to darmstadtium tier machines - [kinetics.stressValues.v2.maxCapacity.darmstadtium] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - darmstadtiumMaxCapacity = 2097152 - - #. - #Settings related to neutronium tier machines - [kinetics.stressValues.v2.maxCapacity.neutronium] - #. - #Configure the max stress a kinetic block of this tier can support. - #Range: > -2147483648 - neutroniumMaxCapacity = 8388608 - #. #Fine tune settings related to pumps [kinetics.pumps] diff --git a/defaultconfigs/jumbofurnace-server.toml b/defaultconfigs/jumbofurnace-server.toml new file mode 100644 index 000000000..299c60cd4 --- /dev/null +++ b/defaultconfigs/jumbofurnace-server.toml @@ -0,0 +1,10 @@ + +["Cooking Settings"] + #Cook Time: Time in ticks needed for one cooking cycle + #Range: > 1 + cooktime = 200 + +["Construction Settings"] + #Shearable: Allow jumbo furnaces to be cleanly dismantled with shears + shearable = true + diff --git a/defaultconfigs/prototype_pain-server.toml b/defaultconfigs/prototype_pain-server.toml index 57e47f02c..98b6c8f82 100644 --- a/defaultconfigs/prototype_pain-server.toml +++ b/defaultconfigs/prototype_pain-server.toml @@ -104,5 +104,5 @@ doTempChange = true ["Prototype Pain Server Config".Integrations] - prototype_physics = true + prototype_physics = false diff --git a/defaultconfigs/railways-server.toml b/defaultconfigs/railways-server.toml index 78e74925a..d282598e3 100644 --- a/defaultconfigs/railways-server.toml +++ b/defaultconfigs/railways-server.toml @@ -47,21 +47,6 @@ #Range: 1 ~ 600 whistleRebindRate = 10 -#. -#Journeymap compat settings -[journeymap] - #. - #. - #[in Ticks] - #Outside-of-render-distance train sync time - #Range: 10 ~ 600 - farTrainSyncTicks = 200 - #. - #[in Ticks] - #In-render-distance train sync time - #Range: 1 ~ 600 - nearTrainSyncTicks = 5 - #. #Realism Settings [realism] diff --git a/defaultconfigs/sns-server.toml b/defaultconfigs/sns-server.toml index 669b41362..6c5d15499 100644 --- a/defaultconfigs/sns-server.toml +++ b/defaultconfigs/sns-server.toml @@ -152,7 +152,7 @@ #The amount of 'steps' taken before one point of durability is lost #Steps are defined as being any change in position while grounded between ticks (IE over 1 second 20 'steps' occur) #Range: > 0 - stepsPerDamage = 1000 + stepsPerDamage = 2500 ["Boot config"."Steel Toe Boots"] #The movement speed bonus these boots provide @@ -167,7 +167,7 @@ #The amount of 'steps' taken before one point of durability is lost #Steps are defined as being any change in position while grounded between ticks (IE over 1 second 20 'steps' occur) #Range: > 0 - stepsPerDamage = 1500 + stepsPerDamage = 3750 ["Boot config"."Black Steel Toe Boots"] #The movement speed bonus these boots provide @@ -182,7 +182,7 @@ #The amount of 'steps' taken before one point of durability is lost #Steps are defined as being any change in position while grounded between ticks (IE over 1 second 20 'steps' occur) #Range: > 0 - stepsPerDamage = 2000 + stepsPerDamage = 5000 ["Boot config"."Blue Steel Toe Boots"] #The movement speed bonus these boots provide @@ -197,7 +197,7 @@ #The amount of 'steps' taken before one point of durability is lost #Steps are defined as being any change in position while grounded between ticks (IE over 1 second 20 'steps' occur) #Range: > 0 - stepsPerDamage = 3000 + stepsPerDamage = 7500 ["Boot config"."Red Steel Toe Boots"] #The movement speed bonus these boots provide @@ -212,7 +212,7 @@ #The amount of 'steps' taken before one point of durability is lost #Steps are defined as being any change in position while grounded between ticks (IE over 1 second 20 'steps' occur) #Range: > 0 - stepsPerDamage = 4000 + stepsPerDamage = 10000 ["Horseshoes config"] @@ -229,7 +229,7 @@ #The amount of 'steps' taken before one point of durability is lost #Steps are defined as being any change in position while grounded between ticks (IE over 1 second 20 'steps' occur) #Range: > 0 - stepsPerDamage = 750 + stepsPerDamage = 3750 ["Horseshoes config"."Black Steel Horseshoes"] #The movement speed bonus horseshoes provide @@ -244,12 +244,12 @@ #The amount of 'steps' taken before one point of durability is lost #Steps are defined as being any change in position while grounded between ticks (IE over 1 second 20 'steps' occur) #Range: > 0 - stepsPerDamage = 1000 + stepsPerDamage = 5000 ["Horseshoes config"."Blue Steel Horseshoes"] #The movement speed bonus horseshoes provide #Range: 0.0 ~ 1024.0 - movementSpeed = 0.2 + movementSpeed = 0.25 #The fall distance bonus horseshoes provide #Range: 0.0 ~ 64.0 bonusFallDistance = 5.0 @@ -259,7 +259,7 @@ #The amount of 'steps' taken before one point of durability is lost #Steps are defined as being any change in position while grounded between ticks (IE over 1 second 20 'steps' occur) #Range: > 0 - stepsPerDamage = 1500 + stepsPerDamage = 7500 ["Horseshoes config"."Red Steel Horseshoes"] #The movement speed bonus horseshoes provide @@ -274,7 +274,7 @@ #The amount of 'steps' taken before one point of durability is lost #Steps are defined as being any change in position while grounded between ticks (IE over 1 second 20 'steps' occur) #Range: > 0 - stepsPerDamage = 1500 + stepsPerDamage = 10000 ["Global config"] #Global control for automatic pickup, this will not force enable for every type diff --git a/defaultconfigs/sophisticatedbackpacks-server.toml b/defaultconfigs/sophisticatedbackpacks-server.toml index 5fac59eaa..74707a196 100644 --- a/defaultconfigs/sophisticatedbackpacks-server.toml +++ b/defaultconfigs/sophisticatedbackpacks-server.toml @@ -21,6 +21,8 @@ canBePlacedInContainerItems = false #Maximum number of upgrades of type per backpack in format of "UpgradeRegistryName[or UpgradeGroup]|MaxNumber" maxUpgradesPerStorage = ["furnace_upgrades|1", "stack_upgrades|3", "jukebox_upgrades|1"] + #If true, disallows all blocks from connecting to backpacks + allBlockConnectionsDisallowed = false #Leather Backpack Settings [server.leatherBackpack] @@ -415,6 +417,32 @@ #Chance increase per looting level of mob dropping backpack #Range: 0.0 ~ 0.3 lootingChanceIncreasePerLevel = 0.15 + #Weight of selecting a Leather Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + leatherWeight = 625 + #Weight of selecting a Copper Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + copperWeight = 250 + #Weight of selecting a Iron Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + ironWeight = 125 + #Weight of selecting a Gold Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + goldWeight = 25 + #Weight of selecting a Diamond Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + diamondWeight = 5 + #Weight of selecting a Netherite Backpack when an entity spawns with a backpack + #Range: 0 ~ 9999 + netheriteWeight = 1 + #Minimum tier of backpack mobs are equipped with at mid local difficulty (above 1/3 of max, 0 is leather) + #Range: 0 ~ 6 + minBackpackTierMidDifficulty = 1 + #Minimum tier of backpack mobs are equipped with at high local difficulty (above 2/3 of max, 0 is leather) + #Range: 0 ~ 6 + minBackpackTierHighDifficulty = 2 + #If local difficulty is taken into consideration when determining the difficulty. If local difficulty is high enough then it will use difficulty settings above + localDifficultyEffectsBackpackSpawns = true [server.nerfs] #Determines if too many backpacks in player's inventory cause slowness to the player @@ -427,6 +455,8 @@ slownessLevelsPerAdditionalBackpack = 1.0 #Determines if active upgrades will only work in the backpack that's worn by the player. Active upgrades are for example magnet, pickup, cooking, feeding upgrades. onlyWornBackpackTriggersUpgrades = true + #Effect that is applied to player when they have too many backpacks. Can be any effect including modded ones like overencumbered effect some mods have. + nerfEffect = "minecraft:slowness" #Copper Backpack Settings [server.copperBackpack] diff --git a/defaultconfigs/tfcambiental-server.toml b/defaultconfigs/tfcambiental-server.toml new file mode 100644 index 000000000..d9603f267 --- /dev/null +++ b/defaultconfigs/tfcambiental-server.toml @@ -0,0 +1,19 @@ +#The durability value of Burlap material clothing. +#Range: > 0 +durabilityBurlapClothes = 3000 +#The durability value of Insulated Leather material clothing. +#Range: > 0 +durabilityInsulatedLeatherClothes = 2500 +#The durability value of the Leather Apron clothing. +#Range: > 0 +durabilityLeatherApronClothes = 1000 +#The durability value of Silk material clothing. +#Range: > 0 +durabilitySilkClothes = 3000 +#The durability value of Straw material clothing. +#Range: > 0 +durabilityStrawClothes = 100 +#The durability value of Wool material clothing. +#Range: > 0 +durabilityWoolClothes = 3000 + diff --git a/defaultconfigs/tfg-server.toml b/defaultconfigs/tfg-server.toml index 3c9973a47..88812038f 100644 --- a/defaultconfigs/tfg-server.toml +++ b/defaultconfigs/tfg-server.toml @@ -131,3 +131,11 @@ #Blacklist of entity IDs that cannot be sampled by the DNA syringe. Can be empty. syringeBlacklist = [] +[mars_climate] + #The chance that sand piles will accumulate during a sandstorm. Lower values = faster sand pile accumulation, but also more block updates (aka lag). + #Range: > 1 + sandAccumulateChance = 20 + #The chance that sand piles will decumulate during a sandstoem. Lower values = faster sand dispersal, but also more block updates (aka lag). + #Range: > 1 + sandDecumulateChance = 36 + diff --git a/eslint.config.js b/eslint.config.js index d3d620ab2..3c926d948 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -21,19 +21,43 @@ export default defineConfig([ "no-var": "warn", "prefer-template": "warn", "no-unreachable-loop": "warn", - "no-useless-assignment": "warn", "no-self-compare": "warn", "no-template-curly-in-string": "error", "no-unmodified-loop-condition": "warn", "eqeqeq": "warn", + "no-constant-condition": "warn", + "no-duplicate-case": "error", + "no-empty": "warn", + "no-empty-pattern": "warn", + "no-ex-assign": "error", + "no-fallthrough": "warn", + "no-irregular-whitespace": "error", + "no-loss-of-precision": "error", + "no-unsafe-negation": "error", + "no-useless-catch": "warn", + "no-useless-escape": "warn", + "use-isnan": "error", + "valid-typeof": "error", + "curly": ["warn", "multi-line"], + "default-case-last": "warn", + "no-else-return": "warn", + "no-eval": "error", + "no-implied-eval": "error", + "no-lone-blocks": "warn", + "no-return-assign": "warn", + "no-useless-return": "warn", + "no-with": "error", + "prefer-arrow-callback": "warn", + "no-useless-concat": "warn", + "yoda": ["warn", "never"], + "@stylistic/comma-style": [1, "last"], - "@stylistic/brace-style": [1, "1tbs"], "@stylistic/function-call-spacing": [1, "never"], "@stylistic/no-floating-decimal": "error", "@stylistic/arrow-spacing": [1, { "before": true, "after": true }], - "@stylistic/block-spacing": [1, "always"], "@stylistic/keyword-spacing": [1, { "before": true, "after": true }], - "@stylistic/dot-location": [1, "property"] + "@stylistic/dot-location": [1, "property"], + "@stylistic/comma-dangle": [1, "never"] } }, ]); diff --git a/kubejs/assets/ad_astra/lang/en_us.json b/kubejs/assets/ad_astra/lang/en_us.json index c93236e0b..761d75ef6 100644 --- a/kubejs/assets/ad_astra/lang/en_us.json +++ b/kubejs/assets/ad_astra/lang/en_us.json @@ -1,6 +1,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": "Breathable Air Distributor", + "block.ad_astra.infernal_spire_block": "Infernal Spire", "block.ad_astra.moon_sand": "Lunar Sand", "block.ad_astra.moon_stone": "Raw Anorthosite", "block.ad_astra.moon_cobblestone": "Anorthosite Cobble", @@ -46,8 +47,8 @@ "block.ad_astra.polished_mars_stone": "Polished Argillite", "block.ad_astra.polished_mars_stone_slab": "Polished Argillite Slab", "block.ad_astra.polished_mars_stone_stairs": "Polished Argillite Stairs", - "block.ad_astra.conglomerate": "Martian Conglomerate", - "block.ad_astra.polished_conglomerate": "Polished Martian Conglomerate", + "block.ad_astra.conglomerate": "Mesa Caprock", + "block.ad_astra.polished_conglomerate": "Polished Mesa Caprock", "block.ad_astra.venus_sand": "Trachyte Sand", "block.ad_astra.venus_stone": "Raw Trachyte", "block.ad_astra.venus_cobblestone": "Trachyte Cobble", diff --git a/kubejs/assets/ad_astra/lang/ja_jp.json b/kubejs/assets/ad_astra/lang/ja_jp.json new file mode 100644 index 000000000..154e7095d --- /dev/null +++ b/kubejs/assets/ad_astra/lang/ja_jp.json @@ -0,0 +1,168 @@ +{ + "__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.glacian_log": "グラシをンγεΉΉ", + "block.ad_astra.stripped_glacian_log": "葨ηšγ‚’ε‰₯いだグラシをンγεΉΉ", + "block.ad_astra.glacian_leaves": "グラシをンγγ²γ ", + "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": "Raw 粗青岩", + "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": "η£¨γ‹γ‚ŒγŸιŸΏε²©γιšŽζ΅", + "block.ad_astra.glacio_globe": "Europa Globe", + "entity.ad_astra.corrupted_lunarian": "ζœˆι’γ‚Ύγƒ³γƒ“", + "entity.ad_astra.martian_raptor": "スケルタルラプター", + "entity.ad_astra.tier_1_rocket": "R-ASθ£½γƒ­γ‚±γƒƒγƒˆ", + "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.tier_1_rocket": "R-ASθ£½γƒ­γ‚±γƒƒγƒˆ", + "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": "ムーンチーズ", + "dimension.ad_astra.glacio": "エウロパ", + "dimension.ad_astra.glacio_orbit": "Europa Orbit", + "painting.ad_astra.glacio.title": "エウロパ", + "planet.ad_astra.glacio": "エウロパ", + "planet.ad_astra.glacio_orbit": "Europa Orbit", + "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": "Generates %s FE per tick", + "tooltip.ad_astra.energy_in": "In: %s FE/t", + "tooltip.ad_astra.energy_out": "Out: %s FE/t", + "tooltip.ad_astra.energy_per_tick": "%s FE/t", + "tooltip.ad_astra.energy_transfer_tick": "Transfer: %s FE/t", + "tooltip.ad_astra.energy_use_per_tick": "Uses %s FE per tick", + "tooltip.ad_astra.max_energy_in": "Max In: %s FE/t", + "tooltip.ad_astra.max_energy_out": "Max Out: %s FE/t", + "tooltip.ad_astra.max_generation": "Max: %s FE/t", + "tooltip.ad_astra.max_fluid_in": "Max In: %s mB/t", + "tooltip.ad_astra.max_fluid_out": "Max Out: %s mB/t", + "tooltip.ad_astra.fluid": "%s mB / %s mB %s", + "tooltip.ad_astra.fluid_generation_per_iteration": "Generates %s mB per iteration", + "tooltip.ad_astra.fluid_in": "In: %s mB/t", + "tooltip.ad_astra.fluid_out": "Out: %s mB/t", + "tooltip.ad_astra.fluid_per_tick": "%s mB/t", + "tooltip.ad_astra.fluid_transfer_tick": "Transfer: %s mB/t", + "tooltip.ad_astra.fluid_use_per_iteration": "Uses %s mB per iteration" +} \ No newline at end of file diff --git a/kubejs/assets/ad_astra/lang/ru_ru.json b/kubejs/assets/ad_astra/lang/ru_ru.json index 3edae10ab..70ccf24ed 100644 --- a/kubejs/assets/ad_astra/lang/ru_ru.json +++ b/kubejs/assets/ad_astra/lang/ru_ru.json @@ -24,6 +24,9 @@ "block.ad_astra.moon_deepslate": "Норит", "block.ad_astra.cheese_block": "Π›ΡƒΠ½Π½Ρ‹ΠΉ сыр", "block.ad_astra.moon_cheese_ore": "Π‘Ρ‹Ρ€ (Анортозитовая Ρ€ΡƒΠ΄Π°)", + "block.ad_astra.glacian_log": "Π‘Ρ‚Π΅Π±Π΅Π»ΡŒ гласивника", + "block.ad_astra.stripped_glacian_log": "ΠžΠ±Ρ‚Ρ‘ΡΠ°Π½Π½Ρ‹ΠΉ ΡΡ‚Π΅Π±Π΅Π»ΡŒ гласивника", + "block.ad_astra.glacian_leaves": "Π›Π°ΠΌΠ΅Π»Π»Π° гласивника", "block.ad_astra.mars_sand": "Аргиллитовый пСсок", "block.ad_astra.mars_stone": "Аргиллит", "block.ad_astra.mars_cobblestone": "Аргиллитовый Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", @@ -105,7 +108,9 @@ "block.ad_astra.polished_glacio_stone": "Π“Π»Π°Π΄ΠΊΠΈΠΉ Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚", "block.ad_astra.polished_glacio_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π³Π»Π°Π΄ΠΊΠΎΠ³ΠΎ Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚Π°", "block.ad_astra.polished_glacio_stone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π³Π»Π°Π΄ΠΊΠΎΠ³ΠΎ Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚Π°", + "block.ad_astra.glacio_globe": "Глобус Π•Π²Ρ€ΠΎΠΏΡ‹", "entity.ad_astra.corrupted_lunarian": "Π›ΡƒΠ½Π½Ρ‹ΠΉ Π·ΠΎΠΌΠ±ΠΈ", + "entity.ad_astra.martian_raptor": "Π‘ΠΊΠ΅Π»Π΅Ρ‚ΠΎΠΎΠ±Ρ€Π°Π·Π½Ρ‹ΠΉ Ρ€Π°ΠΏΡ‚ΠΎΡ€", "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", @@ -124,11 +129,72 @@ "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.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": "Π›ΡƒΠ½Π½Ρ‹ΠΉ сыр", + "dimension.ad_astra.glacio": "Π•Π²Ρ€ΠΎΠΏΠ°", + "dimension.ad_astra.glacio_orbit": "ΠžΡ€Π±ΠΈΡ‚Π° Π•Π²Ρ€ΠΎΠΏΡ‹", + "painting.ad_astra.glacio.title": "Π•Π²Ρ€ΠΎΠΏΠ°", + "planet.ad_astra.glacio": "Π•Π²Ρ€ΠΎΠΏΠ°", + "planet.ad_astra.glacio_orbit": "ΠžΡ€Π±ΠΈΡ‚Π° Π•Π²Ρ€ΠΎΠΏΡ‹", + "block.ad_astra.calorite_block": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚ (Π‘Π»ΠΎΠΊ)", + "block.ad_astra.calorite_factory_block": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚ (Π€Π°Π±Ρ€ΠΈΡ‡Π½Ρ‹ΠΉ Π±Π»ΠΎΠΊ)", + "block.ad_astra.calorite_panel": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚ (ПанСль)", + "block.ad_astra.calorite_pillar": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚ (Колонна)", + "block.ad_astra.calorite_plateblock": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚ (Π‘Π»ΠΎΠΊ ΠΏΠ»ΠΈΡ‚)", + "block.ad_astra.calorite_plating": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚ (Листовой Π±Π»ΠΎΠΊ)", + "block.ad_astra.glowing_calorite_pillar": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚ (БвСтящаяся ΠΊΠΎΠ»ΠΎΠ½Π½Π°)", + "block.ad_astra.raw_calorite_block": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚ (Π‘Π»ΠΎΠΊ Ρ€ΡƒΠ΄Ρ‹)", + "block.ad_astra.encased_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": "Π”Π΅Ρˆ (Π‘Π»ΠΎΠΊ)", + "block.ad_astra.desh_factory_block": "Π”Π΅Ρˆ (Π€Π°Π±Ρ€ΠΈΡ‡Π½Ρ‹ΠΉ Π±Π»ΠΎΠΊ)", + "block.ad_astra.desh_panel": "Π”Π΅Ρˆ (ПанСль)", + "block.ad_astra.desh_pillar": "Π”Π΅Ρˆ (Колонна)", + "block.ad_astra.desh_plateblock": "Π”Π΅Ρˆ (Π‘Π»ΠΎΠΊ ΠΏΠ»ΠΈΡ‚)", + "block.ad_astra.desh_plating": "Π”Π΅Ρˆ (Листовой Π±Π»ΠΎΠΊ)", + "block.ad_astra.glowing_desh_pillar": "Π”Π΅Ρˆ (БвСтящаяся ΠΊΠΎΠ»ΠΎΠ½Π½Π°)", + "block.ad_astra.raw_desh_block": "Π”Π΅Ρˆ (Π‘Π»ΠΎΠΊ Ρ€ΡƒΠ΄Ρ‹)", + "block.ad_astra.encased_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": "Π­Ρ‚Ρ€ΠΈΡƒΠΌ (Π‘Π»ΠΎΠΊ)", + "block.ad_astra.etrium_factory_block": "Π­Ρ‚Ρ€ΠΈΡƒΠΌ (Π€Π°Π±Ρ€ΠΈΡ‡Π½Ρ‹ΠΉ Π±Π»ΠΎΠΊ)", + "block.ad_astra.etrium_panel": "Π­Ρ‚Ρ€ΠΈΡƒΠΌ (ПанСль)", + "block.ad_astra.etrium_plateblock": "Π­Ρ‚Ρ€ΠΈΡƒΠΌ (Π‘Π»ΠΎΠΊ ΠΏΠ»ΠΈΡ‚)", + "block.ad_astra.encased_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": "ΠžΡΡ‚Ρ€ΡƒΠΌ (Π‘Π»ΠΎΠΊ)", + "block.ad_astra.ostrum_factory_block": "ΠžΡΡ‚Ρ€ΡƒΠΌ (Π€Π°Π±Ρ€ΠΈΡ‡Π½Ρ‹ΠΉ Π±Π»ΠΎΠΊ)", + "block.ad_astra.ostrum_panel": "ΠžΡΡ‚Ρ€ΡƒΠΌ (ПанСль)", + "block.ad_astra.ostrum_pillar": "ΠžΡΡ‚Ρ€ΡƒΠΌ (Колонна)", + "block.ad_astra.ostrum_plateblock": "ΠžΡΡ‚Ρ€ΡƒΠΌ (Π‘Π»ΠΎΠΊ ΠΏΠ»ΠΈΡ‚)", + "block.ad_astra.ostrum_plating": "ΠžΡΡ‚Ρ€ΡƒΠΌ (Листовой Π±Π»ΠΎΠΊ)", + "block.ad_astra.glowing_ostrum_pillar": "ΠžΡΡ‚Ρ€ΡƒΠΌ (БвСтящаяся ΠΊΠΎΠ»ΠΎΠ½Π½Π°)", + "block.ad_astra.raw_ostrum_block": "ΠžΡΡ‚Ρ€ΡƒΠΌ (Π‘Π»ΠΎΠΊ Ρ€ΡƒΠ΄Ρ‹)", + "block.ad_astra.encased_ostrum_block": "ΠžΡΡ‚Ρ€ΡƒΠΌ (ΠšΠΎΡ€ΠΏΡƒΡ)", + "item.ad_astra.ostrum_ingot": "ΠžΡΡ‚Ρ€ΡƒΠΌ (Π‘Π»ΠΈΡ‚ΠΎΠΊ)", + "item.ad_astra.ostrum_nugget": "ΠžΡΡ‚Ρ€ΡƒΠΌ (Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄ΠΎΠΊ)", + "item.ad_astra.ostrum_plate": "ΠžΡΡ‚Ρ€ΡƒΠΌ (ΠŸΠ»Π°ΡΡ‚ΠΈΠ½Π°)", + "item.ad_astra.raw_ostrum": "Π‘Ρ‹Ρ€ΡŒΠ΅ (ΠžΡΡ‚Ρ€ΡƒΠΌ)", + "block.ad_astra.steel_block": "Π‘Ρ‚Π°Π»ΡŒ (Π‘Π»ΠΎΠΊ)", + "block.ad_astra.steel_factory_block": "Π‘Ρ‚Π°Π»ΡŒ (Π€Π°Π±Ρ€ΠΈΡ‡Π½Ρ‹ΠΉ Π±Π»ΠΎΠΊ)", + "block.ad_astra.steel_panel": "Π‘Ρ‚Π°Π»ΡŒ (ПанСль)", + "block.ad_astra.steel_pillar": "Π‘Ρ‚Π°Π»ΡŒ (Колонна)", + "block.ad_astra.steel_plateblock": "Π‘Ρ‚Π°Π»ΡŒ (Π‘Π»ΠΎΠΊ ΠΏΠ»ΠΈΡ‚)", + "block.ad_astra.steel_plating": "Π‘Ρ‚Π°Π»ΡŒ (Листовой Π±Π»ΠΎΠΊ)", + "block.ad_astra.glowing_steel_pillar": "Π‘Ρ‚Π°Π»ΡŒ (БвСтящаяся ΠΊΠΎΠ»ΠΎΠ½Π½Π°)", + "block.ad_astra.encased_steel_block": "Π‘Ρ‚Π°Π»ΡŒ (ΠšΠΎΡ€ΠΏΡƒΡ)", "tagprefix.moon_stone": "Anorthosite %s Ore", "tagprefix.moon_deepslate": "Norite %s Ore", "tagprefix.mars_stone": "Argillite %s Ore", @@ -154,25 +220,5 @@ "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": "Π‘Ρ‹Ρ€ΡŒΠ΅ (ΠžΡΡ‚Ρ€ΡƒΠΌ)" + "tooltip.ad_astra.fluid_use_per_iteration": "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ %s mB Π·Π° ΠΈΡ‚Π΅Ρ€Π°Ρ†ΠΈΡŽ" } \ 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 74dd9511a..3f1402c1b 100644 --- a/kubejs/assets/ad_astra/lang/uk_ua.json +++ b/kubejs/assets/ad_astra/lang/uk_ua.json @@ -1,6 +1,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.infernal_spire_block": "ПСкСльний шпиль", "block.ad_astra.moon_sand": "ΠœΡ–ΡΡΡ‡Π½ΠΈΠΉ пісок", "block.ad_astra.moon_stone": "НСоброблСний Анортозит", "block.ad_astra.moon_cobblestone": "Анортоцитовий кругляк", @@ -46,8 +47,8 @@ "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.conglomerate": "МСзовий ΠΏΠΎΠΊΡ€ΠΈΠ²", + "block.ad_astra.polished_conglomerate": "ΠŸΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½ΠΈΠΉ ΠΌΠ΅Π·ΠΎΠ²ΠΈΠΉ ΠΏΠΎΠΊΡ€ΠΈΠ²", "block.ad_astra.venus_sand": "Π’Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ пісок", "block.ad_astra.venus_stone": "НСоброблСний Π’Ρ€Π°Ρ…Ρ–Ρ‚", "block.ad_astra.venus_cobblestone": "Π’Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ кругляк", diff --git a/kubejs/assets/ad_astra/lang/zh_cn.json b/kubejs/assets/ad_astra/lang/zh_cn.json index fb18ff2c5..4a3bc05f8 100644 --- a/kubejs/assets/ad_astra/lang/zh_cn.json +++ b/kubejs/assets/ad_astra/lang/zh_cn.json @@ -1,6 +1,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.infernal_spire_block": "η‚Όη‹±ε°–εˆΊ", "block.ad_astra.moon_sand": "ζœˆζ²™", "block.ad_astra.moon_stone": "ε€©η„Άζ–œι•Ώε²©", "block.ad_astra.moon_cobblestone": "ζ–œι•Ώε²©εœ†ηŸ³", @@ -46,8 +47,8 @@ "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.conglomerate": "ι«˜εŽŸη›–ε²©", + "block.ad_astra.polished_conglomerate": "η£¨εˆΆι«˜εŽŸη›–ε²©", "block.ad_astra.venus_sand": "粗青岩沙", "block.ad_astra.venus_stone": "倩焢粗青岩", "block.ad_astra.venus_cobblestone": "η²—ι’ε²©εœ†ηŸ³", diff --git a/kubejs/assets/ad_astra/lang/zh_tw.json b/kubejs/assets/ad_astra/lang/zh_tw.json new file mode 100644 index 000000000..9ed77bfca --- /dev/null +++ b/kubejs/assets/ad_astra/lang/zh_tw.json @@ -0,0 +1,169 @@ +{ + "__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.infernal_spire_block": "η…‰η„ε°–εˆΊ", + "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.glacian_log": "ιœœεŽŸθŒζŸ„", + "block.ad_astra.stripped_glacian_log": "剝ηšιœœεŽŸθŒζŸ„", + "block.ad_astra.glacian_leaves": "ιœœεŽŸθŒθ‘‰", + "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": "ζ‹‹ε…‰ιŸΏε²©ιšŽζ’―", + "block.ad_astra.glacio_globe": "ζ­ηΎ…ε·΄ζ˜Ÿε„€", + "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.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": "ζœˆηƒθ΅·εΈ", + "dimension.ad_astra.glacio": "歐羅巴", + "dimension.ad_astra.glacio_orbit": "ζ­ηΎ…ε·΄θ»Œι“", + "painting.ad_astra.glacio.title": "歐羅巴", + "planet.ad_astra.glacio": "歐羅巴", + "planet.ad_astra.glacio_orbit": "ζ­ηΎ…ε·΄θ»Œι“", + "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", + "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" +} \ No newline at end of file diff --git a/kubejs/assets/additionalplacements/lang/zh_tw.json b/kubejs/assets/additionalplacements/lang/zh_tw.json new file mode 100644 index 000000000..c6000c4d4 --- /dev/null +++ b/kubejs/assets/additionalplacements/lang/zh_tw.json @@ -0,0 +1,32 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "tooltip.additionalplacements.vertical_placement": "ε―εž‚η›΄ζ”Ύη½", + "tooltip.additionalplacements.stair_connections.all_connections": "ε…θ¨±εŒζ™‚ι€²θ‘Œεž‚η›΄θˆ‡ζ°΄εΉ³ι€£ζŽ₯οΌˆδΎζ”Ύη½ζ–Ήε‘οΌ‰", + "tooltip.additionalplacements.stair_connections.no_mixed_connections": "εƒ…ε…θ¨±εž‚η›΄ι€£ζŽ₯οΌˆδΎζ”Ύη½ζ–Ήε‘οΌ‰", + "tooltip.additionalplacements.stair_connections.no_vertical_connections": "δΈε…θ¨±εž‚η›΄ι€£ζŽ₯οΌˆδΎζ”Ύη½ζ–Ήε‘οΌ‰", + "tooltip.additionalplacements.ceiling_placement": "可放η½ζ–Όε€©θŠ±ζΏ", + "msg.additionalplacements.mismatchedtags.0": "[鑍倖放η½] ε΅ζΈ¬εˆ°η”Ÿζˆζ–Ήε‘Šε­˜εœ¨ηΌΊε€±εŠοΌζˆ–ε€šι€˜ηš„ζ¨™η±€γ€‚θ«‹δ½Ώη”¨γ€Œ", + "msg.additionalplacements.mismatchedtags.1": "γ€η”’η”Ÿζ¨™η±€οΌŒη„ΆεΎŒδ½Ώη”¨γ€Œ", + "msg.additionalplacements.mismatchedtags.2": "」重新載ε…₯ζ¨™η±€οΌˆθ‹₯倱敗請重新載ε…₯δΈ–η•ŒοΌ‰γ€‚θ©³η΄°θ³‡θ¨Šθ«‹ζŸ₯ηœ‹ιŠζˆ²θΌΈε‡Ίη΄€ιŒ„οΌŒζˆ–ζ–Όθ¨­εšζͺ”δΈ­εœη”¨ζ­€θ¨Šζ―。", + "msg.additionalplacements.generate.failure.definition": "η”’η”Ÿθ³‡ζ–™εŒ…ζ™‚η™Όη”ŸιŒ―θͺ€οΌšη„‘ζ³•θ€‡θ£½θ³‡ζ–™εŒ…εšηΎ©", + "msg.additionalplacements.generate.failure.tag": "η”’η”Ÿθ³‡ζ–™εŒ…ζ™‚η™Όη”ŸιŒ―θͺ€οΌšη„‘ζ³•ε„²ε­˜ζ¨™η±€ %s", + "msg.additionalplacements.generate.failure.initialization": "η”’η”Ÿθ³‡ζ–™εŒ…ζ™‚η™Όη”ŸιŒ―θͺ€οΌšη„‘ζ³•εˆε§‹εŒ–θ³‡ζ–™εŒ…", + "msg.additionalplacements.generate.success": "ζ¨™η±€εŒ―ε‡ΊεŒζˆ", + "msg.additionalplacements.generate.notfixed": "θ‡ͺ動建立標籀ζœͺθƒ½θ§£ζ±Ίζ¨™η±€δΈδΈ€θ‡΄ηš„ε•ι‘ŒοΌŒιœ€θ¦ζ‰‹ε‹•δΏζ­£γ€‚θ«‹η’ΊδΏε·²ε•Ÿη”¨ζ¨™η±€δΈδΈ€θ‡΄ηš„θ¨˜ιŒ„εŠŸθƒ½δΈ¦ζͺ’ζŸ₯ιŠζˆ²θΌΈε‡Ίη΄€ιŒ„γ€‚ζ­€ζ“δ½œιœ€θ¦ε…·ε‚™θ³‡ζ–™εŒ…ε»Ίη«‹δ»₯εŠζ–°ε’žοΌη§»ι™€ζ–Ήε‘Šζ¨™η±€ηš„η›Έι—œηŸ₯θ­˜γ€‚", + "key.categories.additionalplacements": "鑍倖放η½", + "key.additionalplacements.placement_toggle": "εˆ‡ζ›ζ”Ύη½ι‚θΌ―", + "msg.additionalplacements.placement_enable": "ε·²ε•Ÿη”¨ι‘ε€–ζ”Ύη½ηš„ζ”Ύη½ι‚θΌ―", + "msg.additionalplacements.placement_disable": "ε·²εœη”¨ι‘ε€–ζ”Ύη½ηš„ζ”Ύη½ι‚θΌ―", + "msg.additionalplacements.disconnected": "鑍倖放η½θ¨­εšη™Όη”Ÿθ‘ηͺ", + "msg.additionalplacements.errors.type": "δ»₯δΈ‹η”Ÿζˆι‘žεž‹ζ‹’η΅•δΊ†ι€£ζŽ₯:", + "msg.additionalplacements.errors.client": "η”¨ζˆΆη«―ζ‹’η΅•οΌš", + "msg.additionalplacements.errors.server": "δΌΊζœε™¨η«―ζ‹’η΅•οΌš", + "msg.additionalplacements.stairs.data_not_found": "ζœͺεΎžη”¨ζˆΆη«―ζŽ₯ζ”Άεˆ°ζ¨“ζ’―ι€£ζŽ₯θ¨­εšθ³‡ζ–™", + "msg.additionalplacements.stairs.connections_type_not_found": "ζœͺηŸ₯ηš„ζ¨“ζ’―ι€£ζŽ₯ι‘žεž‹ %s", + "msg.additionalplacements.stairs.mismatched.header": "δ»₯δΈ‹ζ¨“ζ’―ζ–Ήε‘Šδ½Ώη”¨δΊ†ιŒ―θͺ€ηš„ι€£ζŽ₯ι‘žεž‹οΌŒεΏ…ι ˆθ¨­εšη‚ΊοΌš", + "additionalplacements.stairs.connections_type.all_connections": "ε…θ¨±ζ‰€ζœ‰ι€£ζŽ₯", + "additionalplacements.stairs.connections_type.no_mixed_connections": "δΈε…θ¨±ζ··εˆι€£ζŽ₯", + "additionalplacements.stairs.connections_type.no_vertical_connections": "δΈε…θ¨±εž‚η›΄ι€£ζŽ₯", + "msg.additionalplacements.stairs.mismatched.footer": "θ‹₯要連ζŽ₯θ‡³ζ­€δΌΊζœε™¨οΌŒθ«‹δΏζ­£ config/additionalplacements-bootup.toml δΈ­ηš„θ¨­εšι …η›δΈ¦ι‡ζ–°ε•Ÿε‹•ιŠζˆ²γ€‚", + "commands.ap_stairs_state_debug.wrong_block": "%s δΈζ˜―ζœ‰ζ•ˆηš„ζ–Ήε‘ŠοΌŒεΏ…ι ˆζ˜―ε…·ζœ‰ι™„εŠ η‹€ζ…‹ηš„ζ¨“ζ’―ζ–Ήε‘Šγ€‚" +} \ No newline at end of file diff --git a/kubejs/assets/ae2/lang/en_us.json b/kubejs/assets/ae2/lang/en_us.json index 21c8b4547..c8cfd5d83 100644 --- a/kubejs/assets/ae2/lang/en_us.json +++ b/kubejs/assets/ae2/lang/en_us.json @@ -2,5 +2,22 @@ "__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": "Crafting Presses are obtained by breaking a Mysterious Cube. Mysterious Cubes are in the center of meteorites which can be found on the moon.", "gui.advanced_ae.AdvPatternProvider": "", - "gui.expandedae.exp_pattern_provider": "" + "gui.expandedae.exp_pattern_provider": "", + "item.ae2.sky_dust": "Suevite Dust", + "block.ae2.sky_stone_block": "Raw Suevite", + "block.ae2.sky_stone_stairs": "Suevite Stairs", + "block.ae2.sky_stone_wall": "Suevite Wall", + "block.ae2.sky_stone_slab": "Suevite Slab", + "block.ae2.smooth_sky_stone_block": "Smooth Suevite", + "block.ae2.smooth_sky_stone_stairs": "Smooth Suevite Stairs", + "block.ae2.smooth_sky_stone_wall": "Smooth Suevite Wall", + "block.ae2.smooth_sky_stone_slab": "Smooth Suevite Slab", + "block.ae2.sky_stone_brick": "Suevite Bricks", + "block.ae2.sky_stone_brick_stairs": "Suevite Brick Stairs", + "block.ae2.sky_stone_brick_wall": "Suevite Brick Wall", + "block.ae2.sky_stone_brick_slab": "Suevite Brick Slab", + "block.ae2.sky_stone_small_brick": "Suevite Small Bricks", + "block.ae2.sky_stone_small_brick_stairs": "Suevite Small Brick Stairs", + "block.ae2.sky_stone_small_brick_wall": "Suevite Small Brick Wall", + "block.ae2.sky_stone_small_brick_slab": "Suevite Small Brick Slab" } \ No newline at end of file diff --git a/kubejs/assets/ae2/lang/ru_ru.json b/kubejs/assets/ae2/lang/ru_ru.json new file mode 100644 index 000000000..887edcac4 --- /dev/null +++ b/kubejs/assets/ae2/lang/ru_ru.json @@ -0,0 +1,14 @@ +{ + "__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": "Crafting Presses are obtained by breaking a Mysterious Cube. Mysterious Cubes are in the center of meteorites which can be found on the moon.", + "gui.advanced_ae.AdvPatternProvider": "", + "gui.expandedae.exp_pattern_provider": "", + "item.ae2.portable_item_cell_256k": "256К ΠŸΠ΅Ρ€Π΅Π½ΠΎΡΠ½Π°Ρ прСдмСтная ячСйка", + "item.ae2.portable_fluid_cell_256k": "256К ΠŸΠ΅Ρ€Π΅Π½ΠΎΡΠ½Π°Ρ Тидкостная ячСйка", + "item.ae2.cell_component_256k": "256К МЭ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ хранСния", + "item.ae2.item_storage_cell_256k": "256К МЭ прСдмСтная ячСйка хранСния", + "item.ae2.fluid_storage_cell_256k": "256К МЭ Тидкостная ячСйка хранСния", + "block.ae2.256k_crafting_storage": "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ для изготовлСния Π½Π° 256К", + "item.ae2.pattern_box": "ΠšΠΎΡ€ΠΎΠ±ΠΊΠ° для шаблонов", + "block.ae2.controller": "МЭ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€" +} \ No newline at end of file diff --git a/kubejs/assets/ae2/lang/uk_ua.json b/kubejs/assets/ae2/lang/uk_ua.json index 90d62268a..a61c23369 100644 --- a/kubejs/assets/ae2/lang/uk_ua.json +++ b/kubejs/assets/ae2/lang/uk_ua.json @@ -2,5 +2,22 @@ "__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": "" + "gui.expandedae.exp_pattern_provider": "", + "item.ae2.sky_dust": "Пил сувіту", + "block.ae2.sky_stone_block": "НСоброблСний сувіт", + "block.ae2.sky_stone_stairs": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Ρ– сходи", + "block.ae2.sky_stone_wall": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Π° стіна", + "block.ae2.sky_stone_slab": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Π° ΠΏΠ»ΠΈΡ‚Π°", + "block.ae2.smooth_sky_stone_block": "Π“Π»Π°Π΄ΠΊΠΈΠΉ сувіт", + "block.ae2.smooth_sky_stone_stairs": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Ρ– Π³Π»Π°Π΄ΠΊΡ– сходи", + "block.ae2.smooth_sky_stone_wall": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Π° Π³Π»Π°Π΄ΠΊΠ° стіна", + "block.ae2.smooth_sky_stone_slab": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Π° Π³Π»Π°Π΄ΠΊΠ° ΠΏΠ»ΠΈΡ‚Π°", + "block.ae2.sky_stone_brick": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", + "block.ae2.sky_stone_brick_stairs": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Ρ– цСгляні сходи", + "block.ae2.sky_stone_brick_wall": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Π° цСгляна стіна", + "block.ae2.sky_stone_brick_slab": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Π° цСгляна ΠΏΠ»ΠΈΡ‚Π°", + "block.ae2.sky_stone_small_brick": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Ρ– Π΄Ρ€Ρ–Π±Π½Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", + "block.ae2.sky_stone_small_brick_stairs": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Ρ– дрібноцСгляні сходи", + "block.ae2.sky_stone_small_brick_wall": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Π° дрібноцСгляна стіна", + "block.ae2.sky_stone_small_brick_slab": "Π‘ΡƒΠ²Ρ–Ρ‚ΠΎΠ²Π° дрібноцСгляна ΠΏΠ»ΠΈΡ‚Π°" } \ No newline at end of file diff --git a/kubejs/assets/ae2/lang/zh_cn.json b/kubejs/assets/ae2/lang/zh_cn.json index d02af0331..626e45052 100644 --- a/kubejs/assets/ae2/lang/zh_cn.json +++ b/kubejs/assets/ae2/lang/zh_cn.json @@ -2,5 +2,22 @@ "__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": "" + "gui.expandedae.exp_pattern_provider": "", + "item.ae2.sky_dust": "冲击岩粉", + "block.ae2.sky_stone_block": "倩焢冲击岩", + "block.ae2.sky_stone_stairs": "冲击岩ζ₯Όζ’―", + "block.ae2.sky_stone_wall": "冲击岩咙", + "block.ae2.sky_stone_slab": "ε†²ε‡»ε²©ε°ι˜Ά", + "block.ae2.smooth_sky_stone_block": "平滑冲击岩", + "block.ae2.smooth_sky_stone_stairs": "平滑冲击岩ζ₯Όζ’―", + "block.ae2.smooth_sky_stone_wall": "平滑冲击岩咙", + "block.ae2.smooth_sky_stone_slab": "εΉ³ζ»‘ε†²ε‡»ε²©ε°ι˜Ά", + "block.ae2.sky_stone_brick": "冲击岩砖", + "block.ae2.sky_stone_brick_stairs": "冲击岩砖ζ₯Όζ’―", + "block.ae2.sky_stone_brick_wall": "冲击岩砖咙", + "block.ae2.sky_stone_brick_slab": "ε†²ε‡»ε²©η –ε°ι˜Ά", + "block.ae2.sky_stone_small_brick": "ε°εž‹ε†²ε‡»ε²©η –", + "block.ae2.sky_stone_small_brick_stairs": "ε°εž‹ε†²ε‡»ε²©η –ζ₯Όζ’―", + "block.ae2.sky_stone_small_brick_wall": "ε°εž‹ε†²ε‡»ε²©η –ε’™", + "block.ae2.sky_stone_small_brick_slab": "ε°εž‹ε†²ε‡»ε²©η –ε°ι˜Ά" } \ No newline at end of file diff --git a/kubejs/assets/ae2/lang/zh_tw.json b/kubejs/assets/ae2/lang/zh_tw.json new file mode 100644 index 000000000..3af601962 --- /dev/null +++ b/kubejs/assets/ae2/lang/zh_tw.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.", + "gui.ae2.inWorldCraftingPresses": "ε£“ε°ζ¨‘ζΏε―ι€ιŽη ΄ε£žη₯žη§˜ζ–Ήε‘Šε–εΎ—οΌŒθ€Œη₯žη§˜ζ–Ήε‘Šδ½ζ–Όζœˆηƒιš•ηŸ³ηš„ζ ΈεΏƒγ€‚", + "gui.advanced_ae.AdvPatternProvider": "", + "gui.expandedae.exp_pattern_provider": "", + "item.ae2.sky_dust": "ιš•ηŸ³η²‰", + "block.ae2.sky_stone_block": "ε€©η„Άιš•ηŸ³ε²©", + "block.ae2.sky_stone_stairs": "ιš•ηŸ³ε²©ιšŽζ’―", + "block.ae2.sky_stone_wall": "ιš•ηŸ³ε²©η‰†", + "block.ae2.sky_stone_slab": "ιš•ηŸ³ε²©εŠη£š", + "block.ae2.smooth_sky_stone_block": "εΉ³ζ»‘ιš•ηŸ³ε²©", + "block.ae2.smooth_sky_stone_stairs": "εΉ³ζ»‘ιš•ηŸ³ε²©ιšŽζ’―", + "block.ae2.smooth_sky_stone_wall": "εΉ³ζ»‘ιš•ηŸ³ε²©η‰†", + "block.ae2.smooth_sky_stone_slab": "εΉ³ζ»‘ιš•ηŸ³ε²©εŠη£š", + "block.ae2.sky_stone_brick": "ιš•ηŸ³ε²©η£š", + "block.ae2.sky_stone_brick_stairs": "ιš•ηŸ³ε²©η£šιšŽζ’―", + "block.ae2.sky_stone_brick_wall": "ιš•ηŸ³ε²©η£šη‰†", + "block.ae2.sky_stone_brick_slab": "ιš•ηŸ³ε²©η£šεŠη£š", + "block.ae2.sky_stone_small_brick": "ε°εž‹ιš•ηŸ³ε²©η£š", + "block.ae2.sky_stone_small_brick_stairs": "ε°εž‹ιš•ηŸ³ε²©η£šιšŽζ’―", + "block.ae2.sky_stone_small_brick_wall": "ε°εž‹ιš•ηŸ³ε²©η£šη‰†", + "block.ae2.sky_stone_small_brick_slab": "ε°εž‹ιš•ηŸ³ε²©η£šεŠη£š" +} \ No newline at end of file diff --git a/kubejs/assets/ae2insertexportcard/lang/zh_tw.json b/kubejs/assets/ae2insertexportcard/lang/zh_tw.json new file mode 100644 index 000000000..6ecee4182 --- /dev/null +++ b/kubejs/assets/ae2insertexportcard/lang/zh_tw.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.", + "itemGroup.ae2insertexportcard": "AE2 θΌΈε…₯/輸出卑", + "item.ae2insertexportcard.insert_card": "θΌΈε…₯卑", + "item.ae2insertexportcard.export_card": "輸出卑", + "gui.ae2insertexportcard.whitelist": "白名ε–", + "gui.ae2insertexportcard.blacklist": "黑名ε–" +} \ No newline at end of file diff --git a/kubejs/assets/ags_modernmarkings/lang/zh_tw.json b/kubejs/assets/ags_modernmarkings/lang/zh_tw.json new file mode 100644 index 000000000..3f5ca45e4 --- /dev/null +++ b/kubejs/assets/ags_modernmarkings/lang/zh_tw.json @@ -0,0 +1,125 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "item.ags_modernmarkings.chalk": "粉筆", + "block.ags_modernmarkings.floor_marking_nostep": "η¦ζ­’θΈ©θΈεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_white_arrow": "白色η­ι ­εœ°ι’標瀺", + "block.ags_modernmarkings.floor_marking_white_double_arrow": "白色雙η­ι ­εœ°ι’標瀺", + "block.ags_modernmarkings.floor_marking_white_lane": "η™½θ‰²ι€šι“η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_white_square": "η™½θ‰²ζ–Ήζ‘†εœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_yellow_arrow": "黃色η­ι ­εœ°ι’標瀺", + "block.ags_modernmarkings.floor_marking_yellow_sideline": "ι»ƒθ‰²ι‚Šη·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_yellow_square": "ι»ƒθ‰²ζ–Ήζ‘†εœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_yellow_stripes": "ι»ƒθ‰²ζ’η΄‹εœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_black_singleline": "黑色ε–η·šεœ°ι’標瀺", + "block.ags_modernmarkings.floor_marking_blue_singleline": "藍色ε–η·šεœ°ι’標瀺", + "block.ags_modernmarkings.floor_marking_green_singleline": "碠色ε–η·šεœ°ι’標瀺", + "block.ags_modernmarkings.floor_marking_orange_singleline": "ζ©˜θ‰²ε–η·šεœ°ι’標瀺", + "block.ags_modernmarkings.floor_marking_white_singleline": "白色ε–η·šεœ°ι’標瀺", + "block.ags_modernmarkings.floor_marking_yellow_singleline": "黃色ε–η·šεœ°ι’標瀺", + "block.ags_modernmarkings.floor_marking_red_singleline": "紅色ε–η·šεœ°ι’標瀺", + "block.ags_modernmarkings.floor_marking_black_corner": "ι»‘θ‰²θ§’η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_blue_corner": "θ—θ‰²θ§’η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_green_corner": "ηΆ θ‰²θ§’η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_orange_corner": "ζ©˜θ‰²θ§’η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_white_corner": "η™½θ‰²θ§’η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_yellow_corner": "ι»ƒθ‰²θ§’η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_red_corner": "η΄…θ‰²θ§’η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_yellow_hazardline": "ι»ƒθ‰²θ­¦ζˆ’η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_red_hazardline": "η΄…θ‰²θ­¦ζˆ’η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_whiteblack_hazardline": "ι»‘η™½θ­¦ζˆ’η·šεœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_noentry": "禁歒進ε…₯εœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_redx": "紅色 X εœ°ι’ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_danger_red": "紅色危ιšͺ標瀺", + "block.ags_modernmarkings.floor_marking_danger_yellow": "黃色危ιšͺ標瀺", + "block.ags_modernmarkings.floor_marking_white_lane_cross": "η™½θ‰²ι€šι“δΊ€ε‰ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_yellow_lane": "ι»ƒθ‰²ι€šι“ζ¨™η€Ί", + "block.ags_modernmarkings.floor_marking_exit": "出口標瀺", + "block.ags_modernmarkings.wall_marking_number_0": "ζ•Έε­— 0 牆青標瀺", + "block.ags_modernmarkings.wall_marking_number_1": "ζ•Έε­— 1 牆青標瀺", + "block.ags_modernmarkings.wall_marking_number_2": "ζ•Έε­— 2 牆青標瀺", + "block.ags_modernmarkings.wall_marking_number_3": "ζ•Έε­— 3 牆青標瀺", + "block.ags_modernmarkings.wall_marking_number_4": "ζ•Έε­— 4 牆青標瀺", + "block.ags_modernmarkings.wall_marking_number_5": "ζ•Έε­— 5 牆青標瀺", + "block.ags_modernmarkings.wall_marking_number_6": "ζ•Έε­— 6 牆青標瀺", + "block.ags_modernmarkings.wall_marking_number_7": "ζ•Έε­— 7 牆青標瀺", + "block.ags_modernmarkings.wall_marking_number_8": "ζ•Έε­— 8 牆青標瀺", + "block.ags_modernmarkings.wall_marking_number_9": "ζ•Έε­— 9 牆青標瀺", + "block.ags_modernmarkings.wall_marking_number_no": "η·¨θ™Ÿη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_number_numero": "θ™Ÿη’Όη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_number_dash": "ζ©«η·šη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_number_comma": "ι€—θ™Ÿη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_number_period": "ε₯ι»žη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_exclamation_mark": "ι©šε˜†θ™Ÿη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_question_mark": "ε•θ™Ÿη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_arrowleft": "ε·¦η­ι ­η‰†ι’標瀺", + "block.ags_modernmarkings.wall_marking_arrowright": "右η­ι ­η‰†ι’標瀺", + "block.ags_modernmarkings.wall_marking_hazardline_right": "ε³θ½‰θ§’θ­¦ζˆ’η·šη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_hazardline_left": "ε·¦θ½‰θ§’θ­¦ζˆ’η·šη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_warning_danger": "危ιšͺθ­¦ε‘Šη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_exit": "出口牆青標瀺", + "block.ags_modernmarkings.wall_marking_hazard_diamond": "危ιšͺ物θ³ͺ菱归牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_production": "η”Ÿη”’ε€η‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_symbol_radiation": "輻射警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_pinch": "倾傷危ιšͺ警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_frost": "δ½ŽζΊ«θ­¦η€Ίη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_symbol_chemical": "εŒ–ε­Έε“θ­¦η€Ίη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_symbol_electric": "電氣警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_storage": "倉儲區牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_fire": "火災警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_magic": "魔法警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_gears": "ζ©Ÿζ’°ε€η‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_symbol_laser": "雷射警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_fluid": "桁體警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_mob": "η”Ÿη‰©θ­¦η€Ίη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_symbol_yellow_production": "ι»ƒθ‰²η”Ÿη”’ε€η‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_symbol_yellow_radiation": "黃色輻射警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_yellow_pinch": "黃色倾傷危ιšͺ警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_yellow_frost": "ι»ƒθ‰²δ½ŽζΊ«θ­¦η€Ίη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_symbol_yellow_chemical": "ι»ƒθ‰²εŒ–ε­Έε“θ­¦η€Ίη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_symbol_yellow_electric": "黃色電氣警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_yellow_storage": "黃色倉儲區牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_yellow_fire": "黃色火災警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_yellow_magic": "黃色魔法警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_yellow_gears": "ι»ƒθ‰²ζ©Ÿζ’°ε€η‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_symbol_yellow_laser": "黃色雷射警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_yellow_fluid": "黃色桁體警瀺牆青標瀺", + "block.ags_modernmarkings.wall_marking_symbol_yellow_mob": "ι»ƒθ‰²η”Ÿη‰©θ­¦η€Ίη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_symbol_jeo": "JEO η―€η›ζ¨™θͺŒ", + "block.ags_modernmarkings.wall_marking_voltage_steam": "θ’Έζ±½η­‰η΄šη‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_voltage_ulv": "ULV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_lv": "LV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_mv": "MV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_hv": "HV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_ev": "EV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_iv": "IV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_luv": "LuV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_zpm": "ZPM 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_uv": "UV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_uhv": "UHV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_uev": "UEV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_uiv": "UIV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_umv": "UMV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_uxv": "UXV 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_max": "ζœ€ε€§ι›»ε£“η‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_voltage_pert": "ζ―εˆ»η‰†ι’ζ¨™η€Ί", + "block.ags_modernmarkings.wall_marking_voltage_eu": "EU 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_rf": "RF 牆青標瀺", + "block.ags_modernmarkings.wall_marking_voltage_fe": "FE 牆青標瀺", + "creativetab.floor_markings": "εœ°ι’ζ¨™η€Ί", + "creativetab.wall_markings": "牆青標瀺", + "tooltip.ags_modernmarkings.floormarkingbasic": "εœ°ι’ζ¨™η€Ί", + "tooltip.ags_modernmarkings.floormarking_redline": "δΈθ‰―ε“γ€ε»’ζ–™ε€γ€η΄…θ‰²ζ¨™η€Ίε€εŸŸ", + "tooltip.ags_modernmarkings.floormarking_yellowline": "ι€šι“γ€θΌΈι€η·šγ€δ½œζ₯­ε–ε…ƒ", + "tooltip.ags_modernmarkings.floormarking_orangeline": "εΎ…ζͺ’物品放η½ε€", + "tooltip.ags_modernmarkings.floormarking_greenline": "η”Ÿη”’οΌζˆε“ε€", + "tooltip.ags_modernmarkings.floormarking_blueline": "η”Ÿη”’οΌεŽŸζ–™ε€", + "tooltip.ags_modernmarkings.floormarking_whiteline": "ε…Άδ»–ζœͺεˆ†ι‘žι‘θ‰²η‰©ε“", + "tooltip.ags_modernmarkings.floormarking_blackline": "η”Ÿη”’οΌεœ¨θ£½ε“ε€", + "tooltip.ags_modernmarkings.floormarking_yellowhazard": "ε―θƒ½ε­˜εœ¨η‰©η†ζˆ–ε₯康危ε³", + "tooltip.ags_modernmarkings.floormarking_redhazard": "為璺保ε‰ε…¨οΌŒθ«‹δΏζŒθ·ι›’", + "tooltip.ags_modernmarkings.floormarking_whitehazard": "η‚Ίζ“δ½œε‰ε…¨οΌŒθ«‹δΏζŒθ·ι›’", + "tooltip.ags_modernmarkings.wallmarking_basic": "牆青標瀺", + "tooltip.ags_modernmarkings.wallmarking_power": "ι›»εŠ›η›Έι—œη‰†ι’ζ¨™η€Ί", + "tooltip.ags_modernmarkings.wallmarking_jeo": "甒品η½ε…₯!", + "tooltip.ags_modernmarkings.wallmarking_diamond": "NFPA 704 ζ¨™ζΊ–οΌŒη”¨ζ–Όζ¨™η€Ίε±ιšͺ物θ³ͺηš„ι’¨ιšͺη­‰η΄š" +} \ No newline at end of file diff --git a/kubejs/assets/alekiroofs/lang/zh_tw.json b/kubejs/assets/alekiroofs/lang/zh_tw.json new file mode 100644 index 000000000..7412d2724 --- /dev/null +++ b/kubejs/assets/alekiroofs/lang/zh_tw.json @@ -0,0 +1,15 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.alekiroofs.baobab_roofing": "ηŒ΄ιΊ΅εŒ…ζœ¨ε±‹ι ‚", + "block.alekiroofs.crimson_roofing": "η·‹η΄…θŒε±‹ι ‚", + "block.alekiroofs.cypress_roofing": "ζŸζœ¨ε±‹ι ‚", + "block.alekiroofs.eucalyptus_roofing": "ζ‘‰ζœ¨ε±‹ι ‚", + "block.alekiroofs.fig_roofing": "η„‘θŠ±ζžœζœ¨ε±‹ι ‚", + "block.alekiroofs.hevea_roofing": "δΈ‰θ‘‰θ† ζœ¨ε±‹ι ‚", + "block.alekiroofs.ipe_roofing": "ι‡θŸ»ζœ¨ε±‹ι ‚", + "block.alekiroofs.ironwood_roofing": "ι΅ζœ¨ε±‹ι ‚", + "block.alekiroofs.mahogany_roofing": "ζ‘ƒθŠ±εΏƒζœ¨ε±‹ι ‚", + "block.alekiroofs.teak_roofing": "ζŸšζœ¨ε±‹ι ‚", + "block.alekiroofs.tualang_roofing": "ε€§δΉΎε·΄θ±†ζœ¨ε±‹ι ‚", + "block.alekiroofs.warped_roofing": "θ©­η•°θŒε±‹ι ‚" +} \ No newline at end of file diff --git a/kubejs/assets/alekiships/lang/zh_tw.json b/kubejs/assets/alekiships/lang/zh_tw.json new file mode 100644 index 000000000..5eb83121e --- /dev/null +++ b/kubejs/assets/alekiships/lang/zh_tw.json @@ -0,0 +1,123 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "alekiships.advancements.armor_stand_on_boat.description": "εœ¨θˆΉδΈŠζ”Ύη½δΈ€ε€‹ζ²’ζœ‰η”Ÿε‘½ηš„εŒδΌ΄", + "alekiships.advancements.armor_stand_on_boat.title": "威爾ζ£οΌοΌοΌοΌοΌοΌοΌ", + "alekiships.advancements.cannon.description": "合成火砲", + "alekiships.advancements.cannon.title": "砲火來θ₯²", + "alekiships.advancements.dye_ship_black.description": "ε°‡δΈ€θ‰˜ι»‘θ‰²ηš„θˆΉε‘½εη‚Ίγ€ŒBlack Pearlγ€οΌˆι»‘ηη θ™ŸοΌ‰", + "alekiships.advancements.dye_ship_black.title": "δ»–ζ˜―ζˆ‘θ¦‹ιŽζœ€εŽ²ε³ηš„ζ΅·η›œ", + "alekiships.advancements.full_broadside.description": "θˆ·ε΄ι½Šε°„", + "alekiships.advancements.full_broadside.title": "ζ€’ζ΅·ηˆ­ι‹’", + "alekiships.advancements.ride_barrel.description": "δΉ˜θ‘—ζœ¨ζ‘ΆζΌ‚ζ΅", + "alekiships.advancements.ride_barrel.title": "ε­€ζ΅·ζ΅ζ²‰", + "alekiships.advancements.rowboat_completed.description": "ε»Ίι€ εˆ’θ‰‡", + "alekiships.advancements.rowboat_completed.title": "蒙特雷克運河", + "alekiships.advancements.sloop_completed.description": "ε»Ίι€ ε–ζ‘…ηΈ±εΈ†θˆΉ", + "alekiships.advancements.sloop_completed.title": "θ€Άζ–―ε‹’η’Όι ­", + "alekiships.config.server.windAffectsBoatsWithNoAnchor": "ι’¨ζœƒε½±ιŸΏζœͺδΈ‹ιŒ¨ηš„θˆΉιš»", + "alekiships.failed_multiblock_detection": "ζœͺζ‰Ύεˆ°ζœ‰ζ•ˆηš„θˆΉι«”η΅ζ§‹", + "alekiships.jade.compartment_block": "θˆΉθ‰™ %s", + "block.alekiships.cleat": "纜樁", + "block.alekiships.oarlock": "ζ§³εΊ§", + "block.alekiships.watercraft_frame_angled": "ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.watercraft_frame_flat": "εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.acacia": "ι‡‘εˆζ­‘ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.bamboo": "η«Ήθ£½ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.birch": "ζ¨Ίζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.cherry": "ζ«»θŠ±ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.crimson": "η·‹η΄…ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.dark_oak": "ι»‘ζ©‘ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.jungle": "ε’ζž—ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.mangrove": "η΄…ζ¨Ήζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.oak": "ζ©‘ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.spruce": "ζ‰ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.angled.warped": "θ©­η•°ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.acacia": "ι‡‘εˆζ­‘ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.bamboo": "η«Ήθ£½εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.birch": "ζ¨Ίζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.cherry": "ζ«»θŠ±ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.crimson": "η·‹η΄…ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.dark_oak": "ι»‘ζ©‘ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.jungle": "ε’ζž—ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.mangrove": "η΄…ζ¨Ήζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.oak": "ζ©‘ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.spruce": "ζ‰ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.alekiships.wood.watercraft_frame.flat.warped": "θ©­η•°ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "config.jade.plugin_alekiships.block": "θˆΉθ‰™ζ–Ήε‘Š", + "config.jade.plugin_alekiships.brewing_stand": "θˆΉθ‰™ι‡€ι€ ε°", + "config.jade.plugin_alekiships.furnace": "θˆΉθ‰™η†”ηˆ", + "config.jade.plugin_alekiships.jukebox": "θˆΉθ‰™ε”±η‰‡ζ©Ÿ", + "config.jade.plugin_alekiships.note_block": "θˆΉθ‰™ιŸ³η¬¦η›’", + "creativetab.alekiships_tab": "AlekI ηš„η²Ύε·§θˆΉιš»", + "eject_passengers": "ζ’€ε‡ΊδΉ˜ε“‘", + "entity.alekiships.cannon": "火砲", + "entity.alekiships.cannonball": "砲彈", + "entity.alekiships.compartment_barrel": "θˆΉθ‰™ζœ¨ζ‘Ά", + "entity.alekiships.compartment_blast_furnace": "θˆΉθ‰™ι«˜ηˆ", + "entity.alekiships.compartment_block": "θˆΉθ‰™ζ–Ήε‘Š", + "entity.alekiships.compartment_brewing_stand": "θˆΉθ‰™ι‡€ι€ ε°", + "entity.alekiships.compartment_cartography_table": "θˆΉθ‰™θ£½εœ–ε°", + "entity.alekiships.compartment_chest": "θˆΉθ‰™η±ε­", + "entity.alekiships.compartment_crafting_table": "θˆΉθ‰™ε·₯作台", + "entity.alekiships.compartment_empty": "θˆΉθ‰™η©Ίδ½", + "entity.alekiships.compartment_ender_chest": "θˆΉθ‰™η΅‚η•Œη±", + "entity.alekiships.compartment_furnace": "θˆΉθ‰™η†”ηˆ", + "entity.alekiships.compartment_grindstone": "θˆΉθ‰™η ‚θΌͺ", + "entity.alekiships.compartment_jukebox": "θˆΉθ‰™ε”±η‰‡ζ©Ÿ", + "entity.alekiships.compartment_loom": "θˆΉθ‰™η΄‘ηΉ”ζ©Ÿ", + "entity.alekiships.compartment_note_block": "θˆΉθ‰™ιŸ³η¬¦η›’", + "entity.alekiships.compartment_shulker_box": "θˆΉθ‰™η•ŒδΌη›’", + "entity.alekiships.compartment_smithing_table": "θˆΉθ‰™ι›ι€ ε°", + "entity.alekiships.compartment_smoker": "θˆΉθ‰™η…™η‡»ηˆ", + "entity.alekiships.compartment_stonecutter": "θˆΉθ‰™εˆ‡ηŸ³ζ©Ÿ", + "entity.alekiships.rowboat.acacia": "ι‡‘εˆζ­‘ζœ¨εˆ’θ‰‡", + "entity.alekiships.rowboat.bamboo": "η«Ήθ£½εˆ’θ‰‡", + "entity.alekiships.rowboat.birch": "ζ¨Ίζœ¨εˆ’θ‰‡", + "entity.alekiships.rowboat.cherry": "ζ«»θŠ±ζœ¨εˆ’θ‰‡", + "entity.alekiships.rowboat.crimson": "η·‹η΄…ζœ¨εˆ’θ‰‡", + "entity.alekiships.rowboat.dark_oak": "ι»‘ζ©‘ζœ¨εˆ’θ‰‡", + "entity.alekiships.rowboat.jungle": "ε’ζž—ζœ¨εˆ’θ‰‡", + "entity.alekiships.rowboat.mangrove": "η΄…ζ¨Ήζœ¨εˆ’θ‰‡", + "entity.alekiships.rowboat.oak": "ζ©‘ζœ¨εˆ’θ‰‡", + "entity.alekiships.rowboat.spruce": "ζ‰ζœ¨εˆ’θ‰‡", + "entity.alekiships.rowboat.warped": "θ©­η•°ζœ¨εˆ’θ‰‡", + "entity.alekiships.sloop.acacia": "ι‡‘εˆζ­‘ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop.bamboo": "η«Ήθ£½ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop.birch": "樺木ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop.cherry": "櫻花木ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop.crimson": "η·‹η΄…ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop.dark_oak": "ι»‘ζ©‘ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop.jungle": "ε’ζž—ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop.mangrove": "η΄…ζ¨Ήζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop.oak": "橑木ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop.spruce": "ζ‰ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop.warped": "θ©­η•°ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.alekiships.sloop_construction.acacia": "ι‡‘εˆζ­‘ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.sloop_construction.bamboo": "η«Ήθ£½ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.sloop_construction.birch": "樺木ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.sloop_construction.cherry": "櫻花木ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.sloop_construction.crimson": "η·‹η΄…ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.sloop_construction.dark_oak": "ι»‘ζ©‘ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.sloop_construction.jungle": "ε’ζž—ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.sloop_construction.mangrove": "η΄…ζ¨Ήζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.sloop_construction.oak": "橑木ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.sloop_construction.spruce": "ζ‰ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.sloop_construction.warped": "θ©­η•°ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆζ–½ε·₯δΈ­οΌ‰", + "entity.alekiships.vehicle_anchor": "船錨", + "entity.alekiships.vehicle_cleat": "纜樁", + "entity.alekiships.vehicle_collider": "θΌ‰ε…·", + "entity.alekiships.vehicle_construction": "ε»Ίι€ ε–位", + "entity.alekiships.vehicle_mast": "摅杆", + "entity.alekiships.vehicle_part": "θˆΉι«”ι›Άδ»Ά", + "entity.alekiships.vehicle_switch_sail": "θˆΉεΈ†", + "entity.alekiships.vehicle_switch_windlass": "η΅žη›€", + "item.alekiships.anchor": "船錨", + "item.alekiships.cannon": "火砲", + "item.alekiships.cannonball": "砲彈", + "item.alekiships.music_disc_pirate_crafting": "ιŸ³ζ¨‚ε”±η‰‡", + "item.alekiships.music_disc_pirate_crafting.desc": "Captain Thrack - Pirate Crafting", + "item.alekiships.oar": "船槳", + "item.alekiships.rowboat_icon_only": "εˆ’θ‰‡οΌˆεƒ…εœ–η€ΊοΌ‰", + "item.alekiships.sloop_icon_only": "ε–ζ‘…ηΈ±εΈ†θˆΉοΌˆεƒ…εœ–η€ΊοΌ‰", + "press_button": "ζŒ‰δΈ‹" +} \ No newline at end of file diff --git a/kubejs/assets/ambientsounds/basic/blockgroups/grass.json b/kubejs/assets/ambientsounds/basic/blockgroups/grass.json new file mode 100644 index 000000000..cfea52f20 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/blockgroups/grass.json @@ -0,0 +1,6 @@ +[ + "tfc:grass/loam", + "tfc:grass/silty_loam", + "tfc:grass/sandy_loam", + "tfc:grass/silt" +] diff --git a/kubejs/assets/ambientsounds/basic/blockgroups/ice.json b/kubejs/assets/ambientsounds/basic/blockgroups/ice.json new file mode 100644 index 000000000..9e24b58f1 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/blockgroups/ice.json @@ -0,0 +1,8 @@ +[ + "minecraft:ice", + "minecraft:packed_ice", + "minecraft:frosted_ice", + "minecraft:blue_ice", + "tfc:sea_ice", + "tfc:ice_pile" +] diff --git a/kubejs/assets/ambientsounds/basic/blockgroups/log.json b/kubejs/assets/ambientsounds/basic/blockgroups/log.json new file mode 100644 index 000000000..c14e33670 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/blockgroups/log.json @@ -0,0 +1,9 @@ +[ + "tfc:wood/log/oak", + "tfc:wood/log/birch", + "tfc:wood/log/chestnut", + "tfc:wood/log/maple", + "tfc:wood/log/sequoia", + "tfc:wood/log/sycamore", + "afc:wood/log/cypress" +] diff --git a/kubejs/assets/ambientsounds/basic/blockgroups/log_cold.json b/kubejs/assets/ambientsounds/basic/blockgroups/log_cold.json new file mode 100644 index 000000000..8fd6a4951 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/blockgroups/log_cold.json @@ -0,0 +1,7 @@ +[ + "tfc:wood/log/pine", + "tfc:wood/log/douglas_fir", + "tfc:wood/log/ash", + "tfc:wood/log/spruce", + "tfc:wood/log/aspen" +] diff --git a/kubejs/assets/ambientsounds/basic/blockgroups/log_jungle.json b/kubejs/assets/ambientsounds/basic/blockgroups/log_jungle.json new file mode 100644 index 000000000..e614593d6 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/blockgroups/log_jungle.json @@ -0,0 +1,7 @@ +[ + "tfc:wood/log/kapok", + "tfc:wood/log/rosewood", + "afc:wood/log/mahogany", + "afc:wood/log/tualang", + "afc:wood/log/hevea" +] diff --git a/kubejs/assets/ambientsounds/basic/blockgroups/log_warm.json b/kubejs/assets/ambientsounds/basic/blockgroups/log_warm.json new file mode 100644 index 000000000..ac780cad8 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/blockgroups/log_warm.json @@ -0,0 +1,9 @@ +[ + "tfc:wood/log/blackwood", + "tfc:wood/log/acacia", + "tfc:wood/log/palm", + "afc:wood/log/ironwood", + "afc:wood/log/ipe", + "afc:wood/log/baobab", + "afc:wood/log/teak" +] diff --git a/kubejs/assets/ambientsounds/basic/blockgroups/sand.json b/kubejs/assets/ambientsounds/basic/blockgroups/sand.json new file mode 100644 index 000000000..9160f6e45 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/blockgroups/sand.json @@ -0,0 +1,12 @@ +[ + "tfc:sand/white", + "tfc:sand/yellow", + "tfc:sand/red", + "tfc:sand/brown", + "tfc:sand/green", + "tfc:sand/pink", + "tfc:sand/black", + "ad_astra:moon_sand", + "ad_astra:mars_sand", + "ad_astra:venus_sand" +] diff --git a/kubejs/assets/ambientsounds/basic/blockgroups/snow.json b/kubejs/assets/ambientsounds/basic/blockgroups/snow.json new file mode 100644 index 000000000..1009936ff --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/blockgroups/snow.json @@ -0,0 +1,5 @@ +[ + "minecraft:snow", + "minecraft:snow_block", + "tfc:snow_pile" +] diff --git a/kubejs/assets/ambientsounds/basic/blockgroups/water.json b/kubejs/assets/ambientsounds/basic/blockgroups/water.json new file mode 100644 index 000000000..12a7c542f --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/blockgroups/water.json @@ -0,0 +1,6 @@ +[ + "minecraft:water", + "tfc:fluid/river_water", + "tfc:fluid/salt_water", + "tfg:fluid/semiheavy_ammoniacal_water" +] diff --git a/kubejs/assets/ambientsounds/basic/dimensions/ad_astra.json b/kubejs/assets/ambientsounds/basic/dimensions/ad_astra_mars.json similarity index 74% rename from kubejs/assets/ambientsounds/basic/dimensions/ad_astra.json rename to kubejs/assets/ambientsounds/basic/dimensions/ad_astra_mars.json index 026482ab9..f3a996717 100644 --- a/kubejs/assets/ambientsounds/basic/dimensions/ad_astra.json +++ b/kubejs/assets/ambientsounds/basic/dimensions/ad_astra_mars.json @@ -1,12 +1,10 @@ { - "name": "ad_astra", + "name": "ad_astra_mars", "dimension-names": [ - "mars", - "venus", - "glacio" + "mars" ], "biome-selector": { - "always": false + "always": true }, "regions": [ { diff --git a/kubejs/assets/ambientsounds/basic/dimensions/ad_astra_mercury.json b/kubejs/assets/ambientsounds/basic/dimensions/ad_astra_mercury.json new file mode 100644 index 000000000..3a3b9e488 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/dimensions/ad_astra_mercury.json @@ -0,0 +1,20 @@ +{ + "name": "ad_astra_orbit", + "dimension-names": [ + "mercury" + ], + "rain": false, + "storm": false, + "biome-selector": { + "always": false + }, + "regions": [ + { + "name": "unknown", + "volume": 0.3, + "sound-collections": [ + "suspense" + ] + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/dimensions/ad_astra_venus.json b/kubejs/assets/ambientsounds/basic/dimensions/ad_astra_venus.json new file mode 100644 index 000000000..6e0407b3f --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/dimensions/ad_astra_venus.json @@ -0,0 +1,11 @@ +{ + "name": "ad_astra_venus", + "dimension-names": [ + "venus" + ], + "biome-selector": { + "always": true + }, + "regions": [ + ] +} diff --git a/kubejs/assets/ambientsounds/basic/features/snow.json b/kubejs/assets/ambientsounds/basic/features/snow.json new file mode 100644 index 000000000..c9ac77a59 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/features/snow.json @@ -0,0 +1,9 @@ +{ + "name": "snow", + "groups": [ + "snow" + ], + "low-count": 20, + "low-weight": 0.1, + "high-weight": 0.3 +} diff --git a/kubejs/assets/ambientsounds/basic/features/tree_cold.json b/kubejs/assets/ambientsounds/basic/features/tree_cold.json new file mode 100644 index 000000000..f9a8f34f8 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/features/tree_cold.json @@ -0,0 +1,19 @@ +{ + "name": "tree", + "and": [ + { + "groups": [ + "leave" + ], + "low-count": 5, + "high-count": 30 + }, + { + "groups": [ + "log_cold" + ], + "low-count": 3, + "high-count": 10 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/features/tree_jungle.json b/kubejs/assets/ambientsounds/basic/features/tree_jungle.json new file mode 100644 index 000000000..77c96df1d --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/features/tree_jungle.json @@ -0,0 +1,19 @@ +{ + "name": "tree", + "and": [ + { + "groups": [ + "leave" + ], + "low-count": 5, + "high-count": 30 + }, + { + "groups": [ + "log_jungle" + ], + "low-count": 3, + "high-count": 10 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/features/tree_warm.json b/kubejs/assets/ambientsounds/basic/features/tree_warm.json new file mode 100644 index 000000000..cc79fb85b --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/features/tree_warm.json @@ -0,0 +1,19 @@ +{ + "name": "tree", + "and": [ + { + "groups": [ + "leave" + ], + "low-count": 5, + "high-count": 30 + }, + { + "groups": [ + "log_warm" + ], + "low-count": 3, + "high-count": 10 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/beach.json b/kubejs/assets/ambientsounds/basic/regions/beach.json new file mode 100644 index 000000000..a7e31a1c4 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/beach.json @@ -0,0 +1,50 @@ +{ + "name": "beach", + "biomes": [ + "shore", + "tidal_flats" + ], + "sounds": [ + { + "name": "beach", + "files": [ + "ambientsounds:water.beach" + ], + "volume": 0.1 + }, + { + "name": "seagull", + "category": "bird_day", + "files": [ + "ambientsounds:animals.seagull" + ], + "volume": 0.4, + "pause": { + "min": 750, + "max": 1000 + } + }, + { + "name": "seagull-long", + "category": "bird_day", + "files": [ + "ambientsounds:animals.seagull-long" + ], + "length": { + "min": 30, + "max": 600 + }, + "pause": { + "min": 750, + "max": 1000 + } + }, + { + "name": "ocean", + "files": [ + "ambientsounds:water.ocean" + ], + "volume": 0.2 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/forest.cold.json b/kubejs/assets/ambientsounds/basic/regions/forest.cold.json new file mode 100644 index 000000000..9c8a520f9 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/forest.cold.json @@ -0,0 +1,87 @@ +{ + "name": "forest.cold", + "features": [ + "tree" + ], + "bad-regions": [ + "rain" + ], + "regions": [ + "surface" + ], + "temperature": { + "max": 0.5 + }, + "sounds": [ + { + "name": "bird-ambience", + "files": [ + "ambientsounds:animals.bird-ambience1", + "ambientsounds:animals.bird-ambience2", + "ambientsounds:animals.bird-ambience3", + "ambientsounds:animals.bird-ambience4", + "ambientsounds:animals.bird-ambience5", + "ambientsounds:animals.bird-ambience6", + "ambientsounds:animals.bird-ambience7", + "ambientsounds:animals.bird-ambience8", + "ambientsounds:animals.bird-ambience9", + "ambientsounds:animals.bird-ambience10", + "ambientsounds:animals.bird-ambience11" + ], + "length": { + "min": 2000, + "max": 3000 + }, + "transition": 400, + "category": "bird_day" + }, + { + "name": "crow", + "category": "bird", + "files": [ + "ambientsounds:animals.crow" + ], + "pause": { + "min": 800, + "max": 4000 + }, + "day": 1, + "night": 0.2 + }, + { + "name": "owl", + "files": [ + "ambientsounds:animals.owl" + ], + "pause": { + "min": 100, + "max": 500 + }, + "category": "bird_night" + }, + { + "name": "wolf", + "category": "animal", + "files": [ + "ambientsounds:animals.wolf" + ], + "pause": { + "min": 100, + "max": 600 + }, + "day": 0 + }, + { + "name": "long-wolf", + "category": "animal", + "files": [ + "ambientsounds:animals.long-wolf" + ], + "pause": { + "min": 12000, + "max": 72000 + }, + "day": 0 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/forest.json b/kubejs/assets/ambientsounds/basic/regions/forest.json new file mode 100644 index 000000000..1dd45d350 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/forest.json @@ -0,0 +1,82 @@ +{ + "name": "forest", + "features": [ + "tree_warm" + ], + "bad-regions": [ + "taiga", + "forest.roofed", + "jungle", + "rain" + ], + "variants": [ + { + "regions": [ + "surface" + ] + }, + { + "regions": [ + "swamp" + ], + "volume": 0.3 + } + ], + "sounds": [ + { + "name": "bird-warm", + "category": "bird_day", + "files": [ + "ambientsounds:animals.bird-ambience-warm1", + "ambientsounds:animals.bird-ambience-warm2" + ], + "length": { + "min": 2000, + "max": 3000 + }, + "overall-raining": false + }, + { + "name": "cricket", + "category": "cricket_day", + "files": [ + "ambientsounds:animals.cricket", + "ambientsounds:animals.cricket2", + "ambientsounds:animals.cricket3" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.25 + }, + { + "name": "cricket-warm-night", + "category": "cricket_night", + "files": [ + "ambientsounds:animals.cricket-warm-night", + "ambientsounds:animals.cricket-warm-night2" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.3 + }, + { + "name": "owl", + "files": [ + "ambientsounds:animals.owl" + ], + "pause": { + "min": 100, + "max": 500 + }, + "category": "bird_night" + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/grass.json b/kubejs/assets/ambientsounds/basic/regions/grass.json new file mode 100644 index 000000000..c1a2dd336 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/grass.json @@ -0,0 +1,73 @@ +{ + "name": "grass", + "features": [ + "grass" + ], + "bad-regions": [ + "plains", + "savanna", + "swamp", + "ocean", + "jungle", + "rain", + "forest", + "forest.cold", + "taiga", + "snow" + ], + "bad-biomes": [ + "river", + "lake", + "mountain_lake", + "old_mountain_lake", + "oceanic_mountain_lake", + "plateau_lake", + "ocean", + "ocean_reef", + "deep_ocean", + "deep_ocean_trench" + ], + "sounds": [ + { + "name": "cricket", + "category": "cricket_day", + "files": [ + "ambientsounds:animals.cricket", + "ambientsounds:animals.cricket2", + "ambientsounds:animals.cricket3" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.05 + }, + { + "name": "cricket-night", + "category": "cricket_night", + "files": [ + "ambientsounds:animals.cricket-night", + "ambientsounds:animals.cricket-night2", + "ambientsounds:animals.cricket-night3", + "ambientsounds:animals.cricket-night4" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.05 + }, + { + "name": "cicadas-night", + "category": "cicadas", + "files": [ + "ambientsounds:animals.cicadas-night" + ], + "time": "day" + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/highland.json b/kubejs/assets/ambientsounds/basic/regions/highland.json new file mode 100644 index 000000000..552881d6b --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/highland.json @@ -0,0 +1,40 @@ +{ + "name": "highland", + "biomes": [ + "old_mountains", + "old_mountain_lake", + "oceanic_mountains", + "oceanic_mountain_lake", + "martian_mountains", + "rusticus_edge", + "amber_edge", + "sangnum_edge" + ], + "sounds": [ + { + "name": "heavy-wind", + "category": "wind", + "files": [ + "ambientsounds:wind.heavy-wind" + ], + "air": { + "min": 0.6 + }, + "volume": 0.5 + }, + { + "name": "wind-in-leaves", + "category": "wind", + "files": [ + "ambientsounds:wind.wind-in-leaves" + ], + "air": { + "min": 0.6 + }, + "features": [ + "tree" + ], + "volume": 0.5 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/jungle.json b/kubejs/assets/ambientsounds/basic/regions/jungle.json new file mode 100644 index 000000000..249b4a50d --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/jungle.json @@ -0,0 +1,54 @@ +{ + "name": "jungle", + "features": [ + "wood_jungle" + ], + "bad-biomes": [ + "mountain_lake", + "old_mountain_lake", + "oceanic_mountain_lake", + "plateau_lake", + "ocean", + "ocean_reef", + "deep_ocean", + "deep_ocean_trench", + "rain" + ], + "sounds": [ + { + "name": "cricket-jungle", + "category": "cricket_day", + "files": [ + "ambientsounds:animals.cricket-jungle" + ] + }, + { + "name": "cricket-jungle-night", + "category": "cricket_night", + "files": [ + "ambientsounds:animals.cricket-jungle-night" + ] + }, + { + "name": "bird-ambience-jungle", + "category": "bird_day", + "files": [ + "ambientsounds:animals.bird-ambience-jungle", + "ambientsounds:animals.bird-ambience-jungle2" + ] + }, + { + "name": "bird-ambience-jungle-night", + "category": "bird_night", + "files": [ + "ambientsounds:animals.bird-ambience-jungle-night", + "ambientsounds:animals.bird-ambience-jungle-night2" + ], + "length": { + "min": 1500, + "max": 2000 + }, + "transition": 200 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/lake.json b/kubejs/assets/ambientsounds/basic/regions/lake.json new file mode 100644 index 000000000..169fb9015 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/lake.json @@ -0,0 +1,26 @@ +{ + "name": "lake", + "biomes": [ + "river", + "lake", + "mountain_lake", + "old_mountain_lake", + "oceanic_mountain_lake", + "plateau_lake", + "volcanic_mountain_lake", + "volcanic_oceanic_mountain_lake", + "martian_river" + ], + "features": [ + "water" + ], + "sounds": [ + { + "name": "ocean", + "files": [ + "ambientsounds:water.ocean" + ], + "volume": 0.4 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/mesa.json b/kubejs/assets/ambientsounds/basic/regions/mesa.json new file mode 100644 index 000000000..fce8bbf99 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/mesa.json @@ -0,0 +1,24 @@ +{ + "name": "mesa", + "biomes": [ + "mountains", + "mountain_lake", + "volcanic_mountains", + "volcanic_mountain_lake", + "volcanic_oceanic_mountains", + "volcanic_oceanic_mountain_lake", + "martian_deep_desert", + "martian_dunes", + "martian_dune_edge", + "jagged_tablelands" + ], + "sounds": [ + { + "name": "wind-mesa", + "category": "wind", + "files": [ + "ambientsounds:wind.mesa" + ] + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/ocean.json b/kubejs/assets/ambientsounds/basic/regions/ocean.json new file mode 100644 index 000000000..79b49076e --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/ocean.json @@ -0,0 +1,22 @@ +{ + "name": "ocean", + "biomes": [ + "ocean", + "ocean_reef" + ], + "features": [ + "water" + ], + "sound-collections": [ + "wind" + ], + "sounds": [ + { + "name": "ocean", + "files": [ + "ambientsounds:water.ocean" + ], + "volume": 0.1 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/ocean_deep.json b/kubejs/assets/ambientsounds/basic/regions/ocean_deep.json new file mode 100644 index 000000000..1f4083f39 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/ocean_deep.json @@ -0,0 +1,32 @@ +{ + "name": "ocean", + "biomes": [ + "deep_ocean", + "deep_ocean_trench" + ], + "features": [ + "ocean" + ], + "underwater": { + "min": 0.01, + "fade": 4 + }, + "mute": 0.1, + "mute-priority": 10, + "sounds": [ + { + "name": "whale", + "category": "animal", + "pause": { + "min": 100, + "max": 1000 + }, + "features": [ + "ocean" + ], + "files": [ + "ambientsounds:animals.whale" + ] + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/plains.json b/kubejs/assets/ambientsounds/basic/regions/plains.json new file mode 100644 index 000000000..c1ddf9447 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/plains.json @@ -0,0 +1,72 @@ +{ + "name": "plains", + "features": [ + "grass" + ], + "bad-regions": [ + "ocean", + "forest", + "savanna", + "swamp", + "highland", + "nether", + "rain", + "taiga", + "snow" + ], + "biomes": [ + "lake", + "plains", + "highlands", + "hills", + "old_mountains", + "rolling_hills", + "plateau", + "plateau_lake" + ], + "sounds": [ + { + "name": "cricket", + "category": "cricket_day", + "files": [ + "ambientsounds:animals.cricket", + "ambientsounds:animals.cricket2", + "ambientsounds:animals.cricket3" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.3 + }, + { + "name": "cricket-night", + "category": "cricket_night", + "files": [ + "ambientsounds:animals.cricket-night", + "ambientsounds:animals.cricket-night2", + "ambientsounds:animals.cricket-night3", + "ambientsounds:animals.cricket-night4", + "ambientsounds:animals.cricket-night5" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.3 + }, + { + "name": "cicadas-night", + "category": "cicadas", + "files": [ + "ambientsounds:animals.cicadas-night" + ], + "time": "night", + "volume": 0.3 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/savanna.json b/kubejs/assets/ambientsounds/basic/regions/savanna.json new file mode 100644 index 000000000..b876efba6 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/savanna.json @@ -0,0 +1,125 @@ +{ + "name": "savanna", + "bad-regions": [ + "rain", + "snow" + ], + "biomes": [ + "badlands", + "canyons", + "inverted_canyons", + "low_canyons" + ], + "sounds": [ + { + "name": "cricket", + "category": "cricket_day", + "files": [ + "ambientsounds:animals.cricket", + "ambientsounds:animals.cricket2", + "ambientsounds:animals.cricket3" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.25 + }, + { + "name": "cicadas", + "category": "cicadas", + "files": [ + "ambientsounds:animals.cicadas" + ], + "overall-raining": false, + "day": 0.15, + "night": 0.01, + "length": { + "min": 100, + "max": 300 + }, + "pause": { + "min": 100, + "max": 600 + } + }, + { + "name": "cicadas-desert", + "category": "cicadas", + "files": [ + "ambientsounds:animals.cicadas-desert1", + "ambientsounds:animals.cicadas-desert2" + ], + "overall-raining": false, + "special-biomes": { + "temperature": { + "min": 0.8 + } + }, + "day": 1, + "night": 0, + "length": { + "min": 400, + "max": 900 + }, + "pause": { + "min": 500, + "max": 1000 + } + }, + { + "name": "cricket-warm-night", + "category": "cricket_night", + "files": [ + "ambientsounds:animals.cricket-warm-night", + "ambientsounds:animals.cricket-warm-night2" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.3 + }, + { + "name": "wolf", + "category": "animal", + "files": [ + "ambientsounds:animals.wolf" + ], + "pause": { + "min": 100, + "max": 600 + }, + "day": 0 + }, + { + "name": "long-wolf", + "category": "animal", + "files": [ + "ambientsounds:animals.long-wolf" + ], + "pause": { + "min": 12000, + "max": 72000 + }, + "day": 0 + }, + { + "name": "bird-warm", + "category": "bird_day", + "files": [ + "ambientsounds:animals.bird-ambience-warm1", + "ambientsounds:animals.bird-ambience-warm2" + ], + "length": { + "min": 2000, + "max": 3000 + }, + "overall-raining": false + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/snow.json b/kubejs/assets/ambientsounds/basic/regions/snow.json new file mode 100644 index 000000000..30b9df5bf --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/snow.json @@ -0,0 +1,9 @@ +{ + "name": "snow", + "features": [ + "snow" + ], + "sound-collections": [ + "wind" + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/swamp.json b/kubejs/assets/ambientsounds/basic/regions/swamp.json new file mode 100644 index 000000000..02ef2c37e --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/swamp.json @@ -0,0 +1,72 @@ +{ + "name": "swamp", + "bad-regions": [ + "rain", + "snow" + ], + "biomes": [ + "salt_marsh", + "lowlands" + ], + "sounds": [ + { + "name": "cricket-swamp", + "category": "cricket_day", + "files": [ + "ambientsounds:animals.cricket-swamp" + ], + "volume": 0.3, + "overall-raining": false + }, + { + "name": "cricket-warm-night", + "category": "cricket_night", + "files": [ + "ambientsounds:animals.cricket-warm-night", + "ambientsounds:animals.cricket-warm-night2" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.3 + }, + { + "name": "frog", + "category": "animal", + "files": [ + "ambientsounds:animals.frog1", + "ambientsounds:animals.frog2" + ], + "pause": { + "min": 100, + "max": 750 + }, + "day": 0.05, + "night": 0.15 + }, + { + "name": "mouring_dove", + "category": "animal", + "files": [ + "ambientsounds:animals.mouring_dove" + ], + "features": [ + "tree" + ], + "pause": { + "min": 100, + "max": 400 + }, + "time": { + "5": 0, + "6": 1, + "8": 1, + "9": 0 + }, + "volume": 0.14 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/taiga.json b/kubejs/assets/ambientsounds/basic/regions/taiga.json new file mode 100644 index 000000000..d697d9f8d --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/taiga.json @@ -0,0 +1,73 @@ +{ + "name": "taiga", + "features": [ + "tree_cold" + ], + "bad-regions": [ + "rain" + ], + "bad-biomes": [ + "mountain_lake", + "old_mountain_lake", + "oceanic_mountain_lake", + "plateau_lake", + "ocean", + "ocean_reef", + "deep_ocean", + "deep_ocean_trench", + "rain" + ], + "sounds": [ + { + "name": "bird-ambience-huge", + "category": "bird_day", + "files": [ + "ambientsounds:animals.bird-ambience-huge1", + "ambientsounds:animals.bird-ambience-huge2", + "ambientsounds:animals.bird-ambience-huge3" + ], + "length": { + "min": 2000, + "max": 3000 + }, + "transition": 400 + }, + { + "name": "crow", + "category": "bird", + "files": [ + "ambientsounds:animals.crow" + ], + "pause": { + "min": 800, + "max": 4000 + }, + "day": 1, + "night": 0.2 + }, + { + "name": "wolf", + "category": "animal", + "files": [ + "ambientsounds:animals.wolf" + ], + "pause": { + "min": 100, + "max": 600 + }, + "day": 0 + }, + { + "name": "long-wolf", + "category": "animal", + "files": [ + "ambientsounds:animals.long-wolf" + ], + "pause": { + "min": 12000, + "max": 72000 + }, + "day": 0 + } + ] +} diff --git a/kubejs/assets/ambientsounds/basic/regions/venus.json b/kubejs/assets/ambientsounds/basic/regions/venus.json new file mode 100644 index 000000000..6dd4189d8 --- /dev/null +++ b/kubejs/assets/ambientsounds/basic/regions/venus.json @@ -0,0 +1,113 @@ +{ + "name": "venus", + "bad-regions": [ + "rain" + ], + "biomes": [ + "arachnoids", + "stromatolite_beach", + "fractured_pools", + "geysers", + "salt_flats", + "sulfuric_ravine", + "fumaroles", + "jagged_tablelands" + ], + "sounds": [ + { + "name": "cricket", + "category": "cricket_day", + "files": [ + "ambientsounds:animals.cricket", + "ambientsounds:animals.cricket2", + "ambientsounds:animals.cricket3" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.25 + }, + { + "name": "cricket-night", + "category": "cricket_night", + "files": [ + "ambientsounds:animals.cricket-night", + "ambientsounds:animals.cricket-night2", + "ambientsounds:animals.cricket-night3", + "ambientsounds:animals.cricket-night4" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.05 + }, + { + "name": "cicadas", + "category": "cicadas", + "files": [ + "ambientsounds:animals.cicadas" + ], + "overall-raining": false, + "day": 0.15, + "night": 0.01, + "length": { + "min": 100, + "max": 300 + }, + "pause": { + "min": 100, + "max": 600 + } + }, + { + "name": "cicadas-desert", + "category": "cicadas", + "files": [ + "ambientsounds:animals.cicadas-desert1", + "ambientsounds:animals.cicadas-desert2" + ], + "overall-raining": false, + "day": 1, + "night": 0, + "length": { + "min": 400, + "max": 900 + }, + "pause": { + "min": 500, + "max": 1000 + } + }, + { + "name": "cicadas-night", + "category": "cicadas", + "files": [ + "ambientsounds:animals.cicadas-night" + ], + "overall-raining": false, + "day": 0, + "night": 1 + }, + { + "name": "cricket-warm-night", + "category": "cricket_night", + "files": [ + "ambientsounds:animals.cricket-warm-night", + "ambientsounds:animals.cricket-warm-night2" + ], + "overall-raining": false, + "length": { + "min": 1000, + "max": 1500 + }, + "transition": 100, + "volume": 0.3 + } + ] +} diff --git a/kubejs/assets/arthropocolypse/lang/en_us.json b/kubejs/assets/arthropocolypse/lang/en_us.json new file mode 100644 index 000000000..87cc912b7 --- /dev/null +++ b/kubejs/assets/arthropocolypse/lang/en_us.json @@ -0,0 +1,45 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.arthropocolypse.scarab": "Behemoth Mongolarachne Larva", + "entity.arthropocolypse.prairie_grasshopper": "Giant Cimbrophlebia Hopper", + "entity.arthropocolypse.field_cricket": "Glisachaemus Salthopper", + "entity.arthropocolypse.ice_crawler": "Obsidian Paleophaedon Beetle", + "entity.arthropocolypse.behemoth_desert_spider": "Behemoth Mongolarachne Queen", + "entity.arthropocolypse.behemoth_desert_scorpion": "Royal Guard Liassoscorpionides", + "entity.arthropocolypse.worker_ant": "Worker Formicium Ant", + "entity.arthropocolypse.soldier_ant": "Soldier Formicium Ant", + "entity.arthropocolypse.stag_beetle": "Horned Protognathinus Beetle", + "entity.arthropocolypse.stag_beetle_larva": "Horned Protognathinus Beetle Larva", + "entity.arthropocolypse.wharf_roach": "Arostropsis Weevil", + "entity.arthropocolypse.platerodrilus": "Bulwark Platerodrilus Beetle", + "entity.arthropocolypse.mealworm_beetle": "Manobiomorpha Flea Beetle", + "entity.arthropocolypse.mealworm": "Manobiomorpha Flea Beetle Larva", + "entity.arthropocolypse.millipede_head": "Assassin Chilognatha Millipede", + "item.arthropocolypse.scarab": "Behemoth Mongolarachne Larva", + "item.arthropocolypse.field_cricket_egg": "Glisachaemus Salthopper Egg", + "item.arthropocolypse.stag_beetle_egg": "Horned Protognathinus Beetle Egg", + "item.arthropocolypse.stag_beetle_larva": "Horned Protognathinus Beetle Larva", + "item.arthropocolypse.mealworm_egg": "Manobiomorpha Flea Beetle Egg", + "item.arthropocolypse.mealworm": "Manobiomorpha Flea Beetle Larva", + "item.arthropocolypse.ice_crawler_meat": "Raw Obsidian Paleophaedon Beetle", + "item.arthropocolypse.cooked_ice_crawler_meat": "Cooked Obsidian Paleophaedon Beetle", + "item.arthropocolypse.energy_bar": "Bug Snacks", + "item.arthropocolypse.beetle_fragment": "Chitin Fragment", + "item.arthropocolypse.beetle_fragment_block": "Chitin Block", + "item.arthropocolypse.beetle_fragment_block_bricks": "Chitin Bricks", + "item.arthropocolypse.chiseled_beetle_fragment_block": "Chiseled Chitin Block", + "item.arthropocolypse.polished_beetle_fragment_block": "Polished Chitin Block", + "item.arthropocolypse.tiled_beetle_fragment_block": "Tiled Chitin Block", + "item.arthropocolypse.beetle_fragment_block_stairs": "Chitin Block Stairs", + "item.arthropocolypse.beetle_fragment_block_bricks_stairs": "Chitin Bricks Stairs", + "item.arthropocolypse.polished_beetle_fragment_block_stairs": "Polished Chitin Stairs", + "item.arthropocolypse.tiled_beetle_fragment_block_stairs": "Tiled Chitin Stairs", + "item.arthropocolypse.beetle_fragment_block_slab": "Chitin Block Slab", + "item.arthropocolypse.beetle_fragment_block_bricks_slab": "Chitin Bricks Slab", + "item.arthropocolypse.polished_beetle_fragment_block_slab": "Polished Chitin Slab", + "item.arthropocolypse.tiled_beetle_fragment_block_slab": "Tiled Chitin Slab", + "item.arthropocolypse.beetle_fragment_block_wall": "Chitin Block Wall", + "item.arthropocolypse.beetle_fragment_block_bricks_wall": "Chitin Bricks Wall", + "item.arthropocolypse.polished_beetle_fragment_block_wall": "Polished Chitin Wall", + "item.arthropocolypse.tiled_beetle_fragment_block_wall": "Tiled Chitin Wall" +} \ No newline at end of file diff --git a/kubejs/assets/arthropocolypse/lang/zh_cn.json b/kubejs/assets/arthropocolypse/lang/zh_cn.json new file mode 100644 index 000000000..d5aa88677 --- /dev/null +++ b/kubejs/assets/arthropocolypse/lang/zh_cn.json @@ -0,0 +1,45 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.arthropocolypse.scarab": "巨兽蒙叀拉蛛幼虫", + "entity.arthropocolypse.prairie_grasshopper": "ε·¨ηΏ…θΎ›εΈƒθ·³θ™«", + "entity.arthropocolypse.field_cricket": "η›εœ°ζ Όεˆ©ζ²™θŸ€", + "entity.arthropocolypse.ice_crawler": "ι»‘ζ›œε€η•η”²θ™«", + "entity.arthropocolypse.behemoth_desert_spider": "ε·¨ε…½θ’™ε€ζ‹‰θ››εŽ", + "entity.arthropocolypse.behemoth_desert_scorpion": "ηš‡εΆεˆ©ι˜Ώη΄’蝎", + "entity.arthropocolypse.worker_ant": "ε·₯蚁", + "entity.arthropocolypse.soldier_ant": "ε…΅θš", + "entity.arthropocolypse.stag_beetle": "θ§’ι’εŽŸι’šη”²θ™«", + "entity.arthropocolypse.stag_beetle_larva": "θ§’ι’εŽŸι’šη”²θ™«εΉΌθ™«", + "entity.arthropocolypse.wharf_roach": "ι˜Ώη½—ζ–―η‰Ήη½—ζ™θ₯Ώζ–―豑甲", + "entity.arthropocolypse.platerodrilus": "板盾甲虫", + "entity.arthropocolypse.mealworm_beetle": "ηŽ›θ―Ίθ·³η”²θ™«", + "entity.arthropocolypse.mealworm": "ηŽ›θ―Ίθ·³η”²θ™«εΉΌθ™«", + "entity.arthropocolypse.millipede_head": "εˆΊθ’­ι’šε”‡ι©¬ι™†", + "item.arthropocolypse.scarab": "巨兽蒙叀拉蛛幼虫", + "item.arthropocolypse.field_cricket_egg": "η›εœ°ζ Όεˆ©ζ²™θŸ€ε΅", + "item.arthropocolypse.stag_beetle_egg": "θ§’ι’εŽŸι’šη”²θ™«ε΅", + "item.arthropocolypse.stag_beetle_larva": "θ§’ι’εŽŸι’šη”²θ™«εΉΌθ™«", + "item.arthropocolypse.mealworm_egg": "ηŽ›θ―Ίθ·³η”²θ™«ε΅", + "item.arthropocolypse.mealworm": "ηŽ›θ―Ίθ·³η”²θ™«εΉΌθ™«", + "item.arthropocolypse.ice_crawler_meat": "η”Ÿι»‘ζ›œε€η•η”²θ™«θ‚‰", + "item.arthropocolypse.cooked_ice_crawler_meat": "η†Ÿι»‘ζ›œε€η•η”²θ™«θ‚‰", + "item.arthropocolypse.energy_bar": "ζ˜†θ™«ι›Άι£Ÿ", + "item.arthropocolypse.beetle_fragment": "ε‡ δΈθ΄¨η’Žη‰‡", + "item.arthropocolypse.beetle_fragment_block": "几丁质方块", + "item.arthropocolypse.beetle_fragment_block_bricks": "几丁质砖", + "item.arthropocolypse.chiseled_beetle_fragment_block": "雕纹几丁质方块", + "item.arthropocolypse.polished_beetle_fragment_block": "η£¨εˆΆε‡ δΈθ΄¨ζ–Ήε—", + "item.arthropocolypse.tiled_beetle_fragment_block": "瓦片几丁质方块", + "item.arthropocolypse.beetle_fragment_block_stairs": "几丁质方块ζ₯Όζ’―", + "item.arthropocolypse.beetle_fragment_block_bricks_stairs": "几丁质砖ζ₯Όζ’―", + "item.arthropocolypse.polished_beetle_fragment_block_stairs": "η£¨εˆΆε‡ δΈθ΄¨ζ₯Όζ’―", + "item.arthropocolypse.tiled_beetle_fragment_block_stairs": "瓦片几丁质ζ₯Όζ’―", + "item.arthropocolypse.beetle_fragment_block_slab": "ε‡ δΈθ΄¨ζ–Ήε—ε°ι˜Ά", + "item.arthropocolypse.beetle_fragment_block_bricks_slab": "ε‡ δΈθ΄¨η –ε°ι˜Ά", + "item.arthropocolypse.polished_beetle_fragment_block_slab": "η£¨εˆΆε‡ δΈθ΄¨ε°ι˜Ά", + "item.arthropocolypse.tiled_beetle_fragment_block_slab": "η“¦η‰‡ε‡ δΈθ΄¨ε°ι˜Ά", + "item.arthropocolypse.beetle_fragment_block_wall": "几丁质方块咙", + "item.arthropocolypse.beetle_fragment_block_bricks_wall": "几丁质砖咙", + "item.arthropocolypse.polished_beetle_fragment_block_wall": "η£¨εˆΆε‡ δΈθ΄¨ε’™", + "item.arthropocolypse.tiled_beetle_fragment_block_wall": "瓦片几丁质咙" +} \ No newline at end of file diff --git a/kubejs/assets/beneath/lang/en_us.json b/kubejs/assets/beneath/lang/en_us.json index 71b2c93f5..f890d42f0 100644 --- a/kubejs/assets/beneath/lang/en_us.json +++ b/kubejs/assets/beneath/lang/en_us.json @@ -3,11 +3,11 @@ "block.beneath.blackstone_pebble": "Loose Pyroxenite", "block.beneath.blackstone_aqueduct": "Pyroxenite Aqueduct", "block.beneath.loose_blackstone": "Loose Pyroxenite", - "block.beneath.ore.nether_cursecoal": "Anthracite Ore", + "block.beneath.ore.nether_cursecoal": "Migmatite Anthracite Ore", "block.beneath.ore.nether_cursecoal.prospected": "Anthracite", "block.beneath.cursecoal_pile": "Anthracite Pile", - "block.beneath.ore.blackstone_sylvite": "Sylvite Ore", - "block.beneath.crackrack": "Keratophyre", + "block.beneath.ore.blackstone_sylvite": "Pyroxenite Sylvite Ore", + "block.beneath.crackrack": "Raw Keratophyre", "block.beneath.soul_clay": "Muddy Clay", "block.beneath.wood.log.crimson": "Crimson Stem", "block.beneath.wood.stripped_log.crimson": "Stripped Crimson Stem", diff --git a/kubejs/assets/beneath/lang/ja_jp.json b/kubejs/assets/beneath/lang/ja_jp.json new file mode 100644 index 000000000..bd49b8aa8 --- /dev/null +++ b/kubejs/assets/beneath/lang/ja_jp.json @@ -0,0 +1,30 @@ +{ + "__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.log.crimson": "ζ·±η΄…γεΉΉ", + "block.beneath.wood.stripped_log.crimson": "葨ηšγ‚’ε‰₯いだ深紅γεΉΉ", + "block.beneath.wood.wood.crimson": "ζ·±η΄…γθŒη³Έ", + "block.beneath.wood.stripped_wood.crimson": "葨ηšγ‚’ε‰₯いだ深紅γεΉΉ", + "block.beneath.wood.fallen_leaves.crimson": "ζ·±η΄…γγ²γ ", + "block.beneath.wood.leaves.crimson": "ζ·±η΄…γγ²γ ", + "block.beneath.wood.log.warped": "ζ­ͺんだ幹", + "block.beneath.wood.stripped_log.warped": "葨ηšγ‚’ε‰₯いだζ­ͺんだ幹", + "block.beneath.wood.wood.warped": "ζ­ͺγ‚“γ θŒη³Έ", + "block.beneath.wood.stripped_wood.warped": "葨ηšγ‚’ε‰₯いだζ­ͺγ‚“γ θŒη³Έ", + "block.beneath.wood.fallen_leaves.warped": "ζ­ͺんだひだ", + "block.beneath.wood.leaves.warped": "ζ­ͺんだひだ", + "block.beneath.ancient_altar": "輝岩γε°εΊ§", + "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/beneath/lang/ru_ru.json b/kubejs/assets/beneath/lang/ru_ru.json index f5fec52b4..3903bce65 100644 --- a/kubejs/assets/beneath/lang/ru_ru.json +++ b/kubejs/assets/beneath/lang/ru_ru.json @@ -9,51 +9,258 @@ "block.beneath.ore.blackstone_sylvite": "Π‘ΠΈΠ»ΡŒΠ²ΠΈΡ‚ (ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚ΠΎΠ²Π°Ρ Ρ€ΡƒΠ΄Π°)", "block.beneath.crackrack": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€", "block.beneath.soul_clay": "ГрязСвая Π³Π»ΠΈΠ½Π°", + "block.beneath.wood.log.crimson": "Π‘Ρ‚Π΅Π±Π΅Π»ΡŒ багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.stripped_log.crimson": "ΠžΠ±Ρ‚Ρ‘ΡΠ°Π½Π½Ρ‹ΠΉ ΡΡ‚Π΅Π±Π΅Π»ΡŒ багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.wood.crimson": "Багряная Π³ΠΈΡ„Π°", + "block.beneath.wood.stripped_wood.crimson": "ΠžΠ±Ρ‚Ρ‘ΡΠ°Π½Π½Π°Ρ багряная Π³ΠΈΡ„Π°", + "block.beneath.wood.fallen_leaves.crimson": "Опавшая багряная Π»Π°ΠΌΠ΅Π»Π»Π°", + "block.beneath.wood.leaves.crimson": "Багряная Π»Π°ΠΌΠ΅Π»Π»Π°", + "block.beneath.wood.log.warped": "Π‘Ρ‚Π΅Π±Π΅Π»ΡŒ искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.stripped_log.warped": "ΠžΠ±Ρ‚Ρ‘ΡΠ°Π½Π½Ρ‹ΠΉ ΡΡ‚Π΅Π±Π΅Π»ΡŒ искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.wood.warped": "Π˜ΡΠΊΠ°ΠΆΡ‘Π½Π½Π°Ρ Π³ΠΈΡ„Π°", + "block.beneath.wood.stripped_wood.warped": "ΠžΠ±Ρ‚Ρ‘ΡΠ°Π½Π½Π°Ρ искаТённая Π³ΠΈΡ„Π°", + "block.beneath.wood.fallen_leaves.warped": "Опавшая искаТённая Π»Π°ΠΌΠ΅Π»Π»Π°", + "block.beneath.wood.leaves.warped": "Π˜ΡΠΊΠ°ΠΆΡ‘Π½Π½Π°Ρ Π»Π°ΠΌΠ΅Π»Π»Π°", + "block.beneath.ancient_altar": "ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΏΡŒΠ΅Π΄Π΅ΡΡ‚Π°Π»", + "block.beneath.wood.twig.crimson": "Π’Π΅Ρ‚ΠΎΡ‡ΠΊΠ° багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.potted_sapling.crimson": "Π‘Π°ΠΆΠ΅Π½Π΅Ρ† багряного Π΄Π΅Ρ€Π΅Π²Π° Π² Π³ΠΎΡ€ΡˆΠΊΠ΅", + "block.beneath.wood.planks.crimson": "БагряныС доски", + "block.beneath.wood.planks.crimson_tool_rack": "Π‘Ρ‚Π΅Π»Π»Π°ΠΆ для инструмСнтом ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_loom": "Π’ΠΊΠ°Ρ†ΠΊΠΈΠΉ станок ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_bookshelf": "КниТная ΠΏΠΎΠ»ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_workbench": "ВСрстак ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.vertical_support.crimson": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.horizontal_support.crimson": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.chest.crimson": "Π‘ΡƒΠ½Π΄ΡƒΠΊ ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.trapped_chest.crimson": "Π‘ΡƒΠ½Π΄ΡƒΠΊ-Π»ΠΎΠ²ΡƒΡˆΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.sluice.crimson": "Π ΡƒΠ΄ΠΎΠΏΡ€ΠΎΠΌΡ‹Π²ΠΎΡ‡Π½Ρ‹ΠΉ ΠΆΡ‘Π»ΠΎΠ± ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_sign": "Π’Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_wall_sign": "Π’Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.hanging_sign.bismuth_bronze.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ висмутовой Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.wall_hanging_sign.bismuth_bronze.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ висмутовой Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.hanging_sign.black_bronze.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.wall_hanging_sign.black_bronze.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.hanging_sign.bronze.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.wall_hanging_sign.bronze.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.hanging_sign.copper.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΌΠ΅Π΄ΠΈ", + "block.beneath.wood.planks.wall_hanging_sign.copper.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΌΠ΅Π΄ΠΈ", + "block.beneath.wood.planks.hanging_sign.wrought_iron.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°", + "block.beneath.wood.planks.wall_hanging_sign.wrought_iron.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°", + "block.beneath.wood.planks.hanging_sign.steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ стали", + "block.beneath.wood.planks.wall_hanging_sign.steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ стали", + "block.beneath.wood.planks.hanging_sign.black_steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ стали", + "block.beneath.wood.planks.wall_hanging_sign.black_steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ стали", + "block.beneath.wood.planks.hanging_sign.blue_steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ синСй стали", + "block.beneath.wood.planks.wall_hanging_sign.blue_steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ синСй стали", + "block.beneath.wood.planks.hanging_sign.red_steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ красной стали", + "block.beneath.wood.planks.wall_hanging_sign.red_steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ красной стали", + "block.beneath.wood.barrel.crimson": "Π‘ΠΎΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.lectern.crimson": "ΠšΠ°Ρ„Π΅Π΄Ρ€Π° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.scribing_table.crimson": "Π‘Ρ‚ΠΎΠ» писаря ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.sewing_table.crimson": "Π¨Π²Π΅ΠΉΠ½Ρ‹ΠΉ стол ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.jar_shelf.crimson": "Полка для Π±Π°Π½ΠΎΠΊ ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.axle.crimson": "Ось ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.bladed_axle.crimson": "Ось с лопастями ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.encased_axle.crimson": "Закрытая ось ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.clutch.crimson": "Π‘Ρ†Π΅ΠΏΠ»Π΅Π½ΠΈΠ΅ ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.gear_box.crimson": "ΠšΠΎΡ€ΠΎΠ±ΠΊΠ° ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡ ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.windmill.crimson": "ВСтряная ΠΌΠ΅Π»ΡŒΠ½ΠΈΡ†Π° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.water_wheel.crimson": "ВодяноС колСсо ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_door": "Π”Π²Π΅Ρ€ΡŒ ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_trapdoor": "Π›ΡŽΠΊ ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_fence": "Π—Π°Π±ΠΎΡ€ ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_log_fence": "Π—Π°Π±ΠΎΡ€ ΠΈΠ· Π±Ρ€Ρ‘Π²Π΅Π½ багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_fence_gate": "ΠšΠ°Π»ΠΈΡ‚ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_button": "Кнопка ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_pressure_plate": "НаТимная ΠΏΠ»ΠΈΡ‚Π° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.crimson_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.sapling.crimson": "Π‘Π°ΠΆΠ΅Π½Π΅Ρ† багряного Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.twig.warped": "Π’Π΅Ρ‚ΠΎΡ‡ΠΊΠ° искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.potted_sapling.warped": "Π‘Π°ΠΆΠ΅Π½Π΅Ρ† искаТённого Π΄Π΅Ρ€Π΅Π²Π° Π² Π³ΠΎΡ€ΡˆΠΊΠ΅", + "block.beneath.wood.planks.warped": "Доски ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_tool_rack": "Π‘Ρ‚Π΅Π»Π»Π°ΠΆ для инструмСнтом ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_loom": "Π’ΠΊΠ°Ρ†ΠΊΠΈΠΉ станок ΠΈΠ· ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_bookshelf": "КниТная ΠΏΠΎΠ»ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_workbench": "ВСрстак ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.vertical_support.warped": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.horizontal_support.warped": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.chest.warped": "Π‘ΡƒΠ½Π΄ΡƒΠΊ ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.trapped_chest.warped": "Π‘ΡƒΠ½Π΄ΡƒΠΊ-Π»ΠΎΠ²ΡƒΡˆΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.sluice.warped": "Π ΡƒΠ΄ΠΎΠΏΡ€ΠΎΠΌΡ‹Π²ΠΎΡ‡Π½Ρ‹ΠΉ ΠΆΡ‘Π»ΠΎΠ± ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_sign": "Π’Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_wall_sign": "Π’Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.hanging_sign.bismuth_bronze.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ висмутовой Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.wall_hanging_sign.bismuth_bronze.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ висмутовой Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.hanging_sign.black_bronze.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.wall_hanging_sign.black_bronze.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.hanging_sign.bronze.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.wall_hanging_sign.bronze.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "block.beneath.wood.planks.hanging_sign.copper.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΌΠ΅Π΄ΠΈ", + "block.beneath.wood.planks.wall_hanging_sign.copper.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΌΠ΅Π΄ΠΈ", + "block.beneath.wood.planks.hanging_sign.wrought_iron.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°", + "block.beneath.wood.planks.wall_hanging_sign.wrought_iron.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°", + "block.beneath.wood.planks.hanging_sign.steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ стали", + "block.beneath.wood.planks.wall_hanging_sign.steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ стали", + "block.beneath.wood.planks.hanging_sign.black_steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ стали", + "block.beneath.wood.planks.wall_hanging_sign.black_steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ стали", + "block.beneath.wood.planks.hanging_sign.blue_steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ синСй стали", + "block.beneath.wood.planks.wall_hanging_sign.blue_steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ синСй стали", + "block.beneath.wood.planks.hanging_sign.red_steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ красной стали", + "block.beneath.wood.planks.wall_hanging_sign.red_steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ красной стали", + "block.beneath.wood.barrel.warped": "Π‘ΠΎΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.lectern.warped": "ΠšΠ°Ρ„Π΅Π΄Ρ€Π° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.scribing_table.warped": "Π‘Ρ‚ΠΎΠ» писаря ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.sewing_table.warped": "Π¨Π²Π΅ΠΉΠ½Ρ‹ΠΉ стол ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.jar_shelf.warped": "Полка для Π±Π°Π½ΠΎΠΊ ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.axle.warped": "Ось ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.bladed_axle.warped": "Ось с лопастями ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.encased_axle.warped": "Закрытая ось ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.clutch.warped": "Π‘Ρ†Π΅ΠΏΠ»Π΅Π½ΠΈΠ΅ ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.gear_box.warped": "ΠšΠΎΡ€ΠΎΠ±ΠΊΠ° ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡ ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.windmill.warped": "ВСтряная ΠΌΠ΅Π»ΡŒΠ½ΠΈΡ†Π° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.water_wheel.warped": "ВодяноС колСсо ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_door": "Π”Π²Π΅Ρ€ΡŒ ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_trapdoor": "Π›ΡŽΠΊ ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_fence": "Π—Π°Π±ΠΎΡ€ ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_log_fence": "Π—Π°Π±ΠΎΡ€ ΠΈΠ· Π±Ρ€Ρ‘Π²Π΅Π½ искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_fence_gate": "ΠšΠ°Π»ΠΈΡ‚ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_button": "Кнопка ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_pressure_plate": "НаТимная ΠΏΠ»ΠΈΡ‚Π° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.planks.warped_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.wood.sapling.warped": "Π‘Π°ΠΆΠ΅Π½Π΅Ρ† искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "block.beneath.ore.poor_nether_gold": "Π ΡƒΠ΄Π° Π±Π΅Π΄Π½ΠΎΠ³ΠΎ адского самородного Π·ΠΎΠ»ΠΎΡ‚Π°", + "block.beneath.ore.poor_nether_gold.prospected": "АдскоС Π·ΠΎΠ»ΠΎΡ‚ΠΎ", + "block.beneath.ore.normal_nether_gold": "Π ΡƒΠ΄Π° адского самородного Π·ΠΎΠ»ΠΎΡ‚Π°", + "block.beneath.ore.normal_nether_gold.prospected": "АдскоС Π·ΠΎΠ»ΠΎΡ‚ΠΎ", + "block.beneath.ore.rich_nether_gold": "Π ΡƒΠ΄Π° Π±ΠΎΠ³Π°Ρ‚ΠΎΠ³ΠΎ адского самородного Π·ΠΎΠ»ΠΎΡ‚Π°", + "block.beneath.ore.rich_nether_gold.prospected": "АдскоС Π·ΠΎΠ»ΠΎΡ‚ΠΎ", + "block.beneath.ore.nether_pyrite": "Π ΡƒΠ΄Π° адского ΠΏΠΈΡ€ΠΈΡ‚Π°", + "block.beneath.ore.nether_pyrite.prospected": "Адский ΠΏΠΈΡ€ΠΈΡ‚", + "block.beneath.ore.blackstone_sylvite.prospected": "ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ сильвин", + "block.beneath.ore.slimed_netherrack": "Slimed Netherrack Ore", + "block.beneath.ore.slimed_netherrack.prospected": "Slimed Netherrack", + "block.minecraft.nether_quartz_ore.prospected": "НСзСрский ΠΊΠ²Π°Ρ€Ρ†", + "block.beneath.haunted_spike": "ΠŸΡ€ΠΈΠ·Ρ€Π°Ρ‡Π½Ρ‹ΠΉ сталагмит", "block.beneath.glowstone_spike": "Π‘Π²Π΅Ρ‚ΠΎΠΊΠ°ΠΌΠ΅Π½Π½Ρ‹ΠΉ сталагмит", - "block.beneath.sulfur": "ΠšΡƒΡ‡ΠΊΠ° сСры", + "block.beneath.nether_pebble": "Адский камСшСк", + "block.beneath.sulfur": "Π‘Π΅Ρ€Π°", + "block.beneath.crop.crimson_roots": "БагряныС ΠΊΠΎΡ€Π½ΠΈ", + "block.beneath.crop.ghost_pepper": "ΠŸΡ€ΠΈΠ·Ρ€Π°Ρ‡Π½Ρ‹ΠΉ ΠΏΠ΅Ρ€Π΅Ρ†", + "block.beneath.crop.gleamflower": "Π‘Π²Π΅Ρ‚ΠΎΡ†Π²Π΅Ρ‚", + "block.beneath.crop.nether_wart": "Адский нарост", + "block.beneath.crop.warped_roots": "Π˜ΡΠΊΠ°ΠΆΡ‘Π½Π½Ρ‹Π΅ ΠΊΠΎΡ€Π½ΠΈ", + "block.beneath.gleamflower": "Π‘Π²Π΅Ρ‚ΠΎΡ†Π²Π΅Ρ‚", "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": "Накорми мСня Π³Ρ€ΠΈΠ±Π°ΠΌΠΈ!", + "block.beneath.soul_farmland": "Угодья Π΄ΡƒΡˆ", + "block.beneath.mushroom.button": "ΠŸΡƒΠ³ΠΎΠ²ΠΈΡ‡Π½Ρ‹ΠΉ Π³Ρ€ΠΈΠ±", + "block.beneath.mushroom.chantrelle": "Лисичка", + "block.beneath.mushroom.death_cap": "БлСдная ΠΏΠΎΠ³Π°Π½ΠΊΠ°", + "block.beneath.mushroom.destroying_angels": "ΠœΡƒΡ…ΠΎΠΌΠΎΡ€ вСсСнний", + "block.beneath.mushroom.fools_funnel": "Π“ΠΎΠ²ΠΎΡ€ΡƒΡˆΠΊΠ° красноватая", + "block.beneath.mushroom.oyster": "Устричный Π³Ρ€ΠΈΠ±", + "block.beneath.mushroom.parasol": "Π“Ρ€ΠΈΠ±-Π·ΠΎΠ½Ρ‚ΠΈΠΊ", + "block.beneath.mushroom.portobello": "Шампиньон", + "block.beneath.mushroom.shittake": "Π¨ΠΈΠΈΡ‚Π°ΠΊΠ΅", + "block.beneath.mushroom.sulfur_tuft": "Π“ΠΈΡ„ΠΎΠ»ΠΎΠΌΠ° пучковая", + "block.beneath.cobblerack": "ΠšΠΎΠ±Π±Π»Π΅Ρ€Π°ΠΊ ", + "block.beneath.fungal_cobblerack": "Π“Ρ€ΠΈΠ±ΠΊΠΎΠ²Ρ‹ΠΉ ΠšΠΎΠ±Π±Π»Π΅Ρ€Π°ΠΊ", + "block.beneath.warped_thatch": "Π˜ΡΠΊΠ°ΠΆΡ‘Π½Π½Π°Ρ солома", + "block.beneath.crimson_thatch": "Багряная солома", + "block.beneath.hellbricks": "АдскиС ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "entity.beneath.leviathan_fireball": "Leviathan Fireball", + "entity.beneath.blaze_leviathan": "Blaze Leviathan", + "entity.beneath.red_elk": "ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ лось", "item.beneath.cursed_hide": "ЛаванСпроницаСмая ΡˆΠΊΡƒΡ€Π°", "item.beneath.blackstone_brick": "ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΊΠΈΡ€ΠΏΠΈΡ‡", "item.beneath.cursecoal": "Антрацит", "item.beneath.crackrack_rock": "КамСшСк ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€Π°", + "item.beneath.loose_blackstone": "КамСшСк пироксСнита", + "item.beneath.wood.lumber.crimson": "Доска ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "item.beneath.wood.sign.crimson": "Π’Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "item.beneath.wood.chest_minecart.crimson": "Π’Π°Π³ΠΎΠ½Π΅Ρ‚ΠΊΠ° с сундуком ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "item.beneath.wood.support.crimson": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π°", + "item.beneath.wood.hanging_sign.bismuth_bronze.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ висмутовой Π±Ρ€ΠΎΠ½Π·Ρ‹", + "item.beneath.wood.hanging_sign.black_bronze.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "item.beneath.wood.hanging_sign.bronze.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "item.beneath.wood.hanging_sign.copper.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΌΠ΅Π΄ΠΈ", + "item.beneath.wood.hanging_sign.wrought_iron.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°", + "item.beneath.wood.hanging_sign.steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ стали", + "item.beneath.wood.hanging_sign.black_steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ стали", + "item.beneath.wood.hanging_sign.blue_steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ синСй стали", + "item.beneath.wood.hanging_sign.red_steel.crimson": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· багряного Π΄Π΅Ρ€Π΅Π²Π° ΠΈ красной стали", + "item.beneath.wood.lumber.warped": "Доска ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "item.beneath.wood.sign.warped": "Π’Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "item.beneath.wood.chest_minecart.warped": "Π’Π°Π³ΠΎΠ½Π΅Ρ‚ΠΊΠ° с сундуком ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "item.beneath.wood.support.warped": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π°", + "item.beneath.wood.hanging_sign.bismuth_bronze.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ висмутовой Π±Ρ€ΠΎΠ½Π·Ρ‹", + "item.beneath.wood.hanging_sign.black_bronze.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "item.beneath.wood.hanging_sign.bronze.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "item.beneath.wood.hanging_sign.copper.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΌΠ΅Π΄ΠΈ", + "item.beneath.wood.hanging_sign.wrought_iron.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°", + "item.beneath.wood.hanging_sign.steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ стали", + "item.beneath.wood.hanging_sign.black_steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ стали", + "item.beneath.wood.hanging_sign.blue_steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ синСй стали", + "item.beneath.wood.hanging_sign.red_steel.warped": "ПодвСсная Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ° ΠΈΠ· искаТённого Π΄Π΅Ρ€Π΅Π²Π° ΠΈ красной стали", "item.beneath.juicer.filled": "Π‘ΠΎΠΊΠΎΠ²Ρ‹ΠΆΠΈΠΌΠ°Π»ΠΊΠ° (%s)", + "item.beneath.gold_chunk": "Gold Chunk", + "item.beneath.pure_death": "Pure Death", + "item.beneath.pure_decay": "Pure Decay", + "item.beneath.pure_destruction": "Pure Destruction", + "item.beneath.pure_sorrow": "Pure Sorrow", + "item.beneath.pure_flame": "Pure Flame", + "item.beneath.agonizing_fertilizer": "Agonizing Fertilizer", + "item.beneath.crimson_straw": "Багряная солома", + "item.beneath.warped_straw": "Π˜ΡΠΊΠ°ΠΆΡ‘Π½Π½Π°Ρ солома", + "item.beneath.ghost_pepper": "ΠŸΡ€ΠΈΠ·Ρ€Π°Ρ‡Π½Ρ‹ΠΉ ΠΏΠ΅Ρ€Π΅Ρ†", "item.beneath.juicer": "Π‘ΠΎΠΊΠΎΠ²Ρ‹ΠΆΠΈΠΌΠ°Π»ΠΊΠ°", + "item.beneath.raw_slime": "Raw Slime", + "item.beneath.lost_page": "Lost Page", "item.beneath.spawn_egg.red_elk": "Π―ΠΉΡ†ΠΎ ΠΏΡ€ΠΈΠ·Ρ‹Π²Π° красного лося", + "item.beneath.seeds.crimson_roots": "Π‘Π΅ΠΌΠ΅Π½Π° багряных ΠΊΠΎΡ€Π½Π΅ΠΉ", + "item.beneath.seeds.ghost_pepper": "Π‘Π΅ΠΌΠ΅Π½Π° ΠΏΡ€ΠΈΠ·Ρ€Π°Ρ‡Π½ΠΎΠ³ΠΎ ΠΏΠ΅Ρ€Ρ†Π°", "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.seeds.nether_wart": "Π‘Π΅ΠΌΠ΅Π½Π° адского нароста", + "item.beneath.seeds.warped_roots": "Π‘Π΅ΠΌΠ΅Π½Π° искаТённых ΠΊΠΎΡ€Π½Π΅ΠΉ", "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": "ΠŸΡ€ΠΈΠ·Ρ€Π°Ρ‡Π½Ρ‹ΠΉ ΠΏΠ΅Ρ€Π΅Ρ†" + "beneath.creative_tab.beneath": "Π‘Π΅Π·Π΄Π½Π°: ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹", + "beneath.nutrient.decay": "Π Π°Π·Π»ΠΎΠΆΠ΅Π½ΠΈΠ΅: Β§e%s%%", + "beneath.nutrient.death": "Π“ΠΈΠ±Π΅Π»ΡŒ: Β§7%s%%", + "beneath.nutrient.destruction": "ΠšΡ€ΡƒΡˆΠ΅Π½ΠΈΠ΅: Β§6%s%%", + "beneath.nutrient.flame": "Π‘Ρ‚Ρ€Π°ΡΡ‚ΡŒ: Β§c%s%%", + "beneath.nutrient.sorrow": "Π‘ΠΊΠΎΡ€Π±ΡŒ: Β§9%s%%", + "beneath.block_entity.hellforge": "Адская кузня", + "beneath.screen.juicer": "Π‘ΠΎΠΊΠΎΠ²Ρ‹ΠΆΠΈΠΌΠ°Π»ΠΊΠ°", + "beneath.screen.juicer.mushrooms": "Накорми мСня Π³Ρ€ΠΈΠ±Π°ΠΌΠΈ!", + "beneath.screen.lost_page": "ΠŸΠΎΡ‚Π΅Ρ€ΡΠ½Π½Π°Ρ страница", + "beneath.screen.lost_page.cost": "Π¦Π΅Π½Π°", + "beneath.screen.lost_page.reward": "Награда", + "beneath.screen.lost_page.punishment": "ΠšΠ°Ρ€Π°", + "beneath.lost_page.cobble": "Π›ΡŽΠ±ΠΎΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "beneath.punishment": "ВСбя ΠΏΠΎΠΊΠΎΡ€ΠΈΠ»Π° ΠΊΠ°Ρ€Π° ΠΎΡ‚... %s", + "beneath.enum.punishment.none": "Никакой ΠΊΠ°Ρ€Ρ‹!", + "beneath.enum.punishment.levitation": "ЛСвитация!", + "beneath.enum.punishment.drunkenness": "Π”Π΅Π½ΡŒ ΠΏΡŒΡΠ½ΡΡ‚Π²Π°!", + "beneath.enum.punishment.blaze_inferno": "АдскоС пламя!", + "beneath.enum.punishment.infestation": "Π—Π°Ρ€Π°ΠΆΠ΅Π½ΠΈΠ΅ сСрСбряными Ρ€Ρ‹Π±ΠΊΠ°ΠΌΠΈ!", + "beneath.enum.punishment.withering": "Π˜ΡΡΡƒΡˆΠ΅Π½ΠΈΠ΅!", + "beneath.enum.punishment.slime": "Близь!", + "beneath.enum.punishment.unknown": "Β§kНСизвСстно", + "beneath.sacrifice.error": "Ошибка ΠΆΠ΅Ρ€Ρ‚Π²ΠΎΠΏΡ€ΠΈΠ½ΠΎΡˆΠ΅Π½ΠΈΡ: ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ Π½Π΅ Π½Π°ΠΉΠ΄Π΅Π½Ρ‹.", + "death.attack.beneath.sulfur": "%1$s Π΄ΠΎΠ±Ρ‹Π²Π°Π» сСру ΠΆΠ΅Π»Π΅Π·Π½Ρ‹ΠΌ инструмСнтом ΠΈ ΠΏΠΎΠ΄ΠΎΡ€Π²Π°Π» сСбя.", + "death.attack.beneath.sulfur.player": "%1$s Π΄ΠΎΠ±Ρ‹Π²Π°Π» сСру ΠΆΠ΅Π»Π΅Π·Π½Ρ‹ΠΌ инструмСнтом ΠΈ ΠΏΠΎΠ΄ΠΎΡ€Π²Π°Π» сСбя, ΠΏΡ‹Ρ‚Π°ΡΡΡŒ ΡƒΠ±Π΅ΠΆΠ°Ρ‚ΡŒ ΠΎΡ‚ %2$s.", + "tfc.recipe.barrel.tfc.barrel.mortar": "Π‘Ρ‚ΡƒΠΏΠΊΠ°" } \ No newline at end of file diff --git a/kubejs/assets/beneath/lang/ua_ua.json b/kubejs/assets/beneath/lang/ua_ua.json new file mode 100644 index 000000000..b112e4f9e --- /dev/null +++ b/kubejs/assets/beneath/lang/ua_ua.json @@ -0,0 +1,30 @@ +{ + "__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.log.crimson": "Багряний стовбур", + "block.beneath.wood.stripped_log.crimson": "ΠžΠ±Ρ‚Π΅ΡΠ°Π½ΠΈΠΉ багряний стовбур", + "block.beneath.wood.wood.crimson": "Багряні Π³Ρ–Ρ„ΠΈ", + "block.beneath.wood.stripped_wood.crimson": "ΠžΠ±Ρ‚Π΅ΡΠ°Π½Ρ– багряні Π³Ρ–Ρ„ΠΈ", + "block.beneath.wood.fallen_leaves.crimson": "Π—Π°Π½Π΅ΠΏΠ°Π»Π° Ρ‡Π΅Ρ€Π²ΠΎΠ½Π° Π»Π°ΠΌΠ΅Π»Π°", + "block.beneath.wood.leaves.crimson": "Багряна пластинка", + "block.beneath.wood.log.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ стовбур", + "block.beneath.wood.stripped_log.warped": "ΠžΠ±Ρ‚Π΅ΡΠ°Π½ΠΈΠΉ Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ стовбур", + "block.beneath.wood.wood.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Ρ– Π³Ρ–Ρ„ΠΈ", + "block.beneath.wood.stripped_wood.warped": "ΠžΠ±Ρ‚Π΅ΡΠ°Π½Ρ– Ρ…ΠΈΠΌΠ΅Ρ€Π½Ρ– Π³Ρ–Ρ„ΠΈ", + "block.beneath.wood.fallen_leaves.warped": "Π—Π°Π½Π΅ΠΏΠ°Π»Π° Ρ…ΠΈΠΌΠ΅Ρ€Π½Π° Π»Π°ΠΌΠ΅Π»Π°", + "block.beneath.wood.leaves.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° пластинка", + "block.beneath.ancient_altar": "ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ постамСнт", + "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/beneath/lang/uk_ua.json b/kubejs/assets/beneath/lang/uk_ua.json index b112e4f9e..17dbd29c9 100644 --- a/kubejs/assets/beneath/lang/uk_ua.json +++ b/kubejs/assets/beneath/lang/uk_ua.json @@ -1,30 +1,272 @@ { "__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.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.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.log.crimson": "Багряний стовбур", "block.beneath.wood.stripped_log.crimson": "ΠžΠ±Ρ‚Π΅ΡΠ°Π½ΠΈΠΉ багряний стовбур", - "block.beneath.wood.wood.crimson": "Багряні Π³Ρ–Ρ„ΠΈ", - "block.beneath.wood.stripped_wood.crimson": "ΠžΠ±Ρ‚Π΅ΡΠ°Π½Ρ– багряні Π³Ρ–Ρ„ΠΈ", - "block.beneath.wood.fallen_leaves.crimson": "Π—Π°Π½Π΅ΠΏΠ°Π»Π° Ρ‡Π΅Ρ€Π²ΠΎΠ½Π° Π»Π°ΠΌΠ΅Π»Π°", - "block.beneath.wood.leaves.crimson": "Багряна пластинка", + "block.beneath.wood.wood.crimson": "Багряна Π΄Π΅Ρ€Π΅Π²ΠΈΠ½Π°", + "block.beneath.wood.stripped_wood.crimson": "ΠžΠ±Ρ‚Π΅ΡΠ°Π½Π° багряна Π΄Π΅Ρ€Π΅Π²ΠΈΠ½Π°", + "block.beneath.wood.fallen_leaves.crimson": "ОпалС багрянС листя", + "block.beneath.wood.leaves.crimson": "БагрянС листя", "block.beneath.wood.log.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ стовбур", "block.beneath.wood.stripped_log.warped": "ΠžΠ±Ρ‚Π΅ΡΠ°Π½ΠΈΠΉ Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ стовбур", - "block.beneath.wood.wood.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Ρ– Π³Ρ–Ρ„ΠΈ", - "block.beneath.wood.stripped_wood.warped": "ΠžΠ±Ρ‚Π΅ΡΠ°Π½Ρ– Ρ…ΠΈΠΌΠ΅Ρ€Π½Ρ– Π³Ρ–Ρ„ΠΈ", - "block.beneath.wood.fallen_leaves.warped": "Π—Π°Π½Π΅ΠΏΠ°Π»Π° Ρ…ΠΈΠΌΠ΅Ρ€Π½Π° Π»Π°ΠΌΠ΅Π»Π°", - "block.beneath.wood.leaves.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° пластинка", - "block.beneath.ancient_altar": "ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ постамСнт", - "item.beneath.cursed_hide": "Лавостійка Π¨ΠΊΡ–Ρ€Π°", - "item.beneath.blackstone_brick": "Π¦Π΅Π³Π»Π° Π· ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚Ρƒ", - "item.beneath.cursecoal": "Антрацит", - "item.beneath.crackrack_rock": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„Ρ–Ρ€Π½Π° Π“Ρ–Ρ€ΡΡŒΠΊΠ° ΠŸΠΎΡ€ΠΎΠ΄Π°", - "item.beneath.loose_blackstone": "Розсипний ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚" + "block.beneath.wood.wood.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° Π΄Π΅Ρ€Π΅Π²ΠΈΠ½Π°", + "block.beneath.wood.stripped_wood.warped": "ΠžΠ±Ρ‚Π΅ΡΠ°Π½Π° Ρ…ΠΈΠΌΠ΅Ρ€Π½Π° Π΄Π΅Ρ€Π΅Π²ΠΈΠ½Π°", + "block.beneath.wood.fallen_leaves.warped": "ОпалС Ρ…ΠΈΠΌΠ΅Ρ€Π½Π΅ листя", + "block.beneath.wood.leaves.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π΅ листя", + "block.beneath.ancient_altar": "Π‘Ρ‚Π°Ρ€ΠΎΠ΄Π°Π²Π½Ρ–ΠΉ Π²Ρ–Π²Ρ‚Π°Ρ€", + "item.beneath.cursed_hide": "ΠŸΡ€ΠΎΠΊΠ»ΡΡ‚Π° ΡˆΠΊΡƒΡ€Π°", + "item.beneath.blackstone_brick": "Π§ΠΎΡ€Π½ΠΎΠΊΠ°ΠΌ'яна Ρ†Π΅Π³Π»ΠΈΠ½Π°", + "item.beneath.cursecoal": "ΠŸΡ€ΠΎΠΊΠ»ΡΡ‚Π΅ вугілля", + "item.beneath.crackrack_rock": "БкСльна Ρ‚Ρ€Ρ–Ρ‰ΠΈΠ½Π°", + "item.beneath.loose_blackstone": "Розсипний ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚", + "item.beneath.wood.lumber.crimson": "Π”Π΅Ρ€Π΅Π²ΠΈΠ½Π° багрянця", + "item.beneath.wood.sign.crimson": "Багряна Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ°", + "item.beneath.wood.boat.crimson": "Багряний Ρ‡ΠΎΠ²Π΅Π½", + "block.beneath.wood.twig.crimson": "Багряна Π³Ρ–Π»ΠΎΡ‡ΠΊΠ°", + "item.beneath.wood.chest_minecart.crimson": "Π’Π°Π³ΠΎΠ½Π΅Ρ‚ΠΊΠ° Π·Ρ– ΡΠΊΡ€ΠΈΠ½Π΅ΡŽ Π· багрянця", + "block.beneath.wood.potted_sapling.crimson": "Багряний ΡΠ°Π΄ΠΆΠ°Π½Π΅Ρ†ΡŒ Ρƒ Π³ΠΎΡ€Ρ‰ΠΈΠΊΡƒ", + "block.beneath.wood.planks.crimson": "Багряні ΠΏΠΈΠ»ΠΎΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ", + "block.beneath.wood.planks.crimson_tool_rack": "Багряна стійка для інструмСнтів", + "block.beneath.wood.planks.crimson_loom": "Багряний Ρ‚ΠΊΠ°Ρ†ΡŒΠΊΠΈΠΉ вСрстат", + "block.beneath.wood.planks.crimson_bookshelf": "Багряна ΠΊΠ½ΠΈΠΆΠΊΠΎΠ²Π° полиця", + "block.beneath.wood.planks.crimson_workbench": "Багряний вСрстак", + "block.beneath.wood.vertical_support.crimson": "Багряна ΠΎΠΏΠΎΡ€Π°", + "block.beneath.wood.horizontal_support.crimson": "Багряна ΠΎΠΏΠΎΡ€Π°", + "item.beneath.wood.support.crimson": "Багряна ΠΎΠΏΠΎΡ€Π°", + "block.beneath.wood.chest.crimson": "Багряна скриня", + "block.beneath.wood.trapped_chest.crimson": "Π‘Π°Π³Ρ€ΠΎΠ²Π° скриня-пастка", + "block.beneath.wood.sluice.crimson": "Багряний ΠΆΠΎΠ»ΠΎΠ±", + "block.beneath.wood.planks.crimson_sign": "Багряна Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ°", + "block.beneath.wood.planks.crimson_wall_sign": "Багряна Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ°", + "block.beneath.wood.planks.hanging_sign.bismuth_bronze.crimson": "Багряна вивіска Ρ–Π· бісмутової Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.wall_hanging_sign.bismuth_bronze.crimson": "Багряна настінна вивіска Ρ–Π· бісмутової Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.hanging_sign.black_bronze.crimson": "Багряна вивіска Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.wall_hanging_sign.black_bronze.crimson": "Багряна настінна вивіска Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.hanging_sign.bronze.crimson": "Багряна вивіска Ρ–Π· Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.wall_hanging_sign.bronze.crimson": "Багряна настінна вивіска Ρ–Π· Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.hanging_sign.copper.crimson": "Багряна вивіска Ρ–Π· ΠΌΡ–Π΄Ρ–", + "block.beneath.wood.planks.wall_hanging_sign.copper.crimson": "Багряна настінна вивіска Ρ–Π· ΠΌΡ–Π΄Ρ–", + "block.beneath.wood.planks.hanging_sign.wrought_iron.crimson": "Багряна вивіска Ρ–Π· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π°", + "block.beneath.wood.planks.wall_hanging_sign.wrought_iron.crimson": "Багряна настінна вивіска Ρ–Π· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π°", + "block.beneath.wood.planks.hanging_sign.steel.crimson": "Багряна вивіска Ρ–Π· сталі", + "block.beneath.wood.planks.wall_hanging_sign.steel.crimson": "Багряна настінна вивіска Ρ–Π· сталі", + "block.beneath.wood.planks.hanging_sign.black_steel.crimson": "Багряна вивіска Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі", + "block.beneath.wood.planks.wall_hanging_sign.black_steel.crimson": "Багряна настінна вивіска Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі", + "block.beneath.wood.planks.hanging_sign.blue_steel.crimson": "Багряна вивіска Ρ–Π· ΡΠΈΠ½ΡŒΠΎΡ— сталі", + "block.beneath.wood.planks.wall_hanging_sign.blue_steel.crimson": "Багряна настінна вивіска Ρ–Π· ΡΠΈΠ½ΡŒΠΎΡ— сталі", + "block.beneath.wood.planks.hanging_sign.red_steel.crimson": "Багряна вивіска Ρ–Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі", + "block.beneath.wood.planks.wall_hanging_sign.red_steel.crimson": "Багряна настінна вивіска Ρ–Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі", + "item.beneath.wood.hanging_sign.bismuth_bronze.crimson": "Багряна вивіска Ρ–Π· бісмутової Π±Ρ€ΠΎΠ½Π·ΠΈ", + "item.beneath.wood.hanging_sign.black_bronze.crimson": "Багряна вивіска Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— Π±Ρ€ΠΎΠ½Π·ΠΈ", + "item.beneath.wood.hanging_sign.bronze.crimson": "Багряна вивіска Ρ–Π· Π±Ρ€ΠΎΠ½Π·ΠΈ", + "item.beneath.wood.hanging_sign.copper.crimson": "Багряна вивіска Ρ–Π· ΠΌΡ–Π΄Ρ–", + "item.beneath.wood.hanging_sign.wrought_iron.crimson": "Багряна вивіска Ρ–Π· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π°", + "item.beneath.wood.hanging_sign.steel.crimson": "Багряна вивіска Ρ–Π· сталі", + "item.beneath.wood.hanging_sign.black_steel.crimson": "Багряна вивіска Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі", + "item.beneath.wood.hanging_sign.blue_steel.crimson": "Багряна вивіска Ρ–Π· ΡΠΈΠ½ΡŒΠΎΡ— сталі", + "item.beneath.wood.hanging_sign.red_steel.crimson": "Багряна вивіска Ρ–Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі", + "block.beneath.wood.barrel.crimson": "Багряна Π΄Ρ–ΠΆΠΊΠ°", + "block.beneath.wood.lectern.crimson": "Багряна ΠΊΠ°Ρ‚Π΅Π΄Ρ€Π°", + "block.beneath.wood.scribing_table.crimson": "Багряний писальний стіл", + "block.beneath.wood.sewing_table.crimson": "Багряний швСйний стіл", + "block.beneath.wood.jar_shelf.crimson": "Багряна полиця для Π±Π°Π½ΠΎΠΊ", + "block.beneath.wood.axle.crimson": "Багряна Π²Ρ–ΡΡŒ", + "block.beneath.wood.bladed_axle.crimson": "Багряна Π»ΠΎΠΏΠ°Ρ‚Π΅Π²Π° Π²Ρ–ΡΡŒ", + "block.beneath.wood.encased_axle.crimson": "Багряна Π·Π°ΠΊΡ€ΠΈΡ‚Π° Π²Ρ–ΡΡŒ", + "block.beneath.wood.clutch.crimson": "Багряна ΠΌΡƒΡ„Ρ‚Π°", + "block.beneath.wood.gear_box.crimson": "Багряний Ρ€Π΅Π΄ΡƒΠΊΡ‚ΠΎΡ€", + "block.beneath.wood.windmill.crimson": "Багряний вітряк", + "block.beneath.wood.water_wheel.crimson": "БагрянС водянС колСсо", + "block.beneath.wood.planks.crimson_door": "Багряні Π΄Π²Π΅Ρ€Ρ–", + "block.beneath.wood.planks.crimson_trapdoor": "Багряний люк", + "block.beneath.wood.planks.crimson_fence": "Багряний ΠΏΠ°Ρ€ΠΊΠ°Π½", + "block.beneath.wood.planks.crimson_log_fence": "Багряний ΠΏΠ°Ρ€ΠΊΠ°Π½ Ρ–Π· ΠΊΠΎΠ»ΠΎΠ΄", + "block.beneath.wood.planks.crimson_fence_gate": "Багряна Ρ…Π²Ρ–Ρ€Ρ‚ΠΊΠ°", + "block.beneath.wood.planks.crimson_button": "Багряна ΠΊΠ½ΠΎΠΏΠΊΠ°", + "block.beneath.wood.planks.crimson_pressure_plate": "Багряна натискна ΠΏΠ»ΠΈΡ‚Π°", + "block.beneath.wood.planks.crimson_slab": "Багряна ΠΏΠ»ΠΈΡ‚Π°", + "block.beneath.wood.planks.crimson_stairs": "Багряні сходи", + "block.beneath.wood.sapling.crimson": "Багряний ΡΠ°Π΄ΠΆΠ°Π½Π΅Ρ†ΡŒ", + "item.beneath.wood.lumber.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Ρ– дошки", + "item.beneath.wood.sign.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ°", + "item.beneath.wood.boat.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Ρ‡ΠΎΠ²Π΅Π½", + "block.beneath.wood.twig.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° Π³Ρ–Π»ΠΎΡ‡ΠΊΠ°", + "item.beneath.wood.chest_minecart.warped": "Π’Π°Π³ΠΎΠ½Π΅Ρ‚ΠΊΠ° Π·Ρ– ΡΠΊΡ€ΠΈΠ½Π΅ΡŽ Π· Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΎΡ— Π΄Π΅Ρ€Π΅Π²ΠΈΠ½ΠΈ", + "block.beneath.wood.potted_sapling.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ ΡΠ°Π΄ΠΆΠ°Π½Π΅Ρ†ΡŒ Ρƒ Π³ΠΎΡ€Ρ‰ΠΈΠΊΡƒ", + "block.beneath.wood.planks.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Ρ– ΠΏΠΈΠ»ΠΎΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ", + "block.beneath.wood.planks.warped_tool_rack": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° стійка для інструмСнтів", + "block.beneath.wood.planks.warped_loom": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Ρ‚ΠΊΠ°Ρ†ΡŒΠΊΠΈΠΉ вСрстат", + "block.beneath.wood.planks.warped_bookshelf": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° ΠΊΠ½ΠΈΠΆΠ½Π° полиця", + "block.beneath.wood.planks.warped_workbench": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ вСрстак", + "block.beneath.wood.vertical_support.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° ΠΎΠΏΠΎΡ€Π°", + "block.beneath.wood.horizontal_support.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° ΠΎΠΏΠΎΡ€Π°", + "item.beneath.wood.support.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° ΠΎΠΏΠΎΡ€Π°", + "block.beneath.wood.chest.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° скриня", + "block.beneath.wood.trapped_chest.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° скриня-пастка", + "block.beneath.wood.sluice.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ ΠΆΠΎΠ»ΠΎΠ±", + "block.beneath.wood.planks.warped_sign": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ°", + "block.beneath.wood.planks.warped_wall_sign": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° настінна Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠ°", + "block.beneath.wood.planks.hanging_sign.bismuth_bronze.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· бісмутової Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.wall_hanging_sign.bismuth_bronze.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ настінний Π·Π½Π°ΠΊ Ρ–Π· бісмутової Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.hanging_sign.black_bronze.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.wall_hanging_sign.black_bronze.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ настінний Π·Π½Π°ΠΊ Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.hanging_sign.bronze.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.wall_hanging_sign.bronze.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ настінний Π·Π½Π°ΠΊ Ρ–Π· Π±Ρ€ΠΎΠ½Π·ΠΈ", + "block.beneath.wood.planks.hanging_sign.copper.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· ΠΌΡ–Π΄Ρ–", + "block.beneath.wood.planks.wall_hanging_sign.copper.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ настінний Π·Π½Π°ΠΊ Ρ–Π· ΠΌΡ–Π΄Ρ–", + "block.beneath.wood.planks.hanging_sign.wrought_iron.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π°", + "block.beneath.wood.planks.wall_hanging_sign.wrought_iron.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ настінний Π·Π½Π°ΠΊ Ρ–Π· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π°", + "block.beneath.wood.planks.hanging_sign.steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· сталі", + "block.beneath.wood.planks.wall_hanging_sign.steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ настінний Π·Π½Π°ΠΊ Ρ–Π· сталі", + "block.beneath.wood.planks.hanging_sign.black_steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі", + "block.beneath.wood.planks.wall_hanging_sign.black_steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ настінний Π·Π½Π°ΠΊ Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі", + "block.beneath.wood.planks.hanging_sign.blue_steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· ΡΠΈΠ½ΡŒΠΎΡ— сталі", + "block.beneath.wood.planks.wall_hanging_sign.blue_steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ настінний Π·Π½Π°ΠΊ Ρ–Π· ΡΠΈΠ½ΡŒΠΎΡ— сталі", + "block.beneath.wood.planks.hanging_sign.red_steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі", + "block.beneath.wood.planks.wall_hanging_sign.red_steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ настінний Π·Π½Π°ΠΊ Ρ–Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі", + "item.beneath.wood.hanging_sign.bismuth_bronze.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· бісмутової Π±Ρ€ΠΎΠ½Π·ΠΈ", + "item.beneath.wood.hanging_sign.black_bronze.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— Π±Ρ€ΠΎΠ½Π·ΠΈ", + "item.beneath.wood.hanging_sign.bronze.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· Π±Ρ€ΠΎΠ½Π·ΠΈ", + "item.beneath.wood.hanging_sign.copper.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· ΠΌΡ–Π΄Ρ–", + "item.beneath.wood.hanging_sign.wrought_iron.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π°", + "item.beneath.wood.hanging_sign.steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· сталі", + "item.beneath.wood.hanging_sign.black_steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі", + "item.beneath.wood.hanging_sign.blue_steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· ΡΠΈΠ½ΡŒΠΎΡ— сталі", + "item.beneath.wood.hanging_sign.red_steel.warped": "Висячий Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π·Π½Π°ΠΊ Ρ–Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі", + "block.beneath.wood.barrel.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° Π΄Ρ–ΠΆΠΊΠ°", + "block.beneath.wood.lectern.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° ΠΊΠ°Ρ‚Π΅Π΄Ρ€Π°", + "block.beneath.wood.scribing_table.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ писальний стіл", + "block.beneath.wood.sewing_table.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ швСйний стіл", + "block.beneath.wood.jar_shelf.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° полиця для Π±Π°Π½ΠΎΠΊ", + "block.beneath.wood.axle.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° Π²Ρ–ΡΡŒ", + "block.beneath.wood.bladed_axle.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° Π»ΠΎΠΏΠ°Ρ‚Π΅Π²Π° Π²Ρ–ΡΡŒ", + "block.beneath.wood.encased_axle.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° Π·Π°ΠΊΡ€ΠΈΡ‚Π° Π²Ρ–ΡΡŒ", + "block.beneath.wood.clutch.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° ΠΌΡƒΡ„Ρ‚Π°", + "block.beneath.wood.gear_box.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Ρ€Π΅Π΄ΡƒΠΊΡ‚ΠΎΡ€", + "block.beneath.wood.windmill.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ вітряк", + "block.beneath.wood.water_wheel.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π΅ водянС колСсо", + "block.beneath.wood.planks.warped_door": "Π₯ΠΈΠΌΠ΅Ρ€Π½Ρ– Π΄Π²Π΅Ρ€Ρ–", + "block.beneath.wood.planks.warped_trapdoor": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ люк", + "block.beneath.wood.planks.warped_fence": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ ΠΏΠ°Ρ€ΠΊΠ°Π½", + "block.beneath.wood.planks.warped_log_fence": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ ΠΏΠ°Ρ€ΠΊΠ°Π½ Ρ–Π· ΠΊΠΎΠ»ΠΎΠ΄", + "block.beneath.wood.planks.warped_fence_gate": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° Ρ…Π²Ρ–Ρ€Ρ‚ΠΊΠ°", + "block.beneath.wood.planks.warped_button": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° ΠΊΠ½ΠΎΠΏΠΊΠ°", + "block.beneath.wood.planks.warped_pressure_plate": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° натискна ΠΏΠ»ΠΈΡ‚Π°", + "block.beneath.wood.planks.warped_slab": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° ΠΏΠ»ΠΈΡ‚Π°", + "block.beneath.wood.planks.warped_stairs": "Π₯ΠΈΠΌΠ΅Ρ€Π½Ρ– сходи", + "block.beneath.wood.sapling.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ ΡΠ°Π΄ΠΆΠ°Π½Π΅Ρ†ΡŒ", + "beneath.creative_tab.beneath": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Π· The Beneath", + "entity.beneath.leviathan_fireball": "Вогняна куля Π›Π΅Π²Ρ–Π°Ρ„Π°Π½Π°", + "entity.beneath.blaze_leviathan": "Π†Ρ„Ρ€ΠΈΡ‚ΠΎΠ²ΠΈΠΉ Π›Π΅Π²Ρ–Π°Ρ„Π°Π½", + "entity.beneath.red_elk": "Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ лось", + "beneath.nutrient.decay": "Π ΠΎΠ·ΠΏΠ°Π΄: Β§e%s%%", + "beneath.nutrient.death": "Π‘ΠΌΠ΅Ρ€Ρ‚ΡŒ: Β§7%s%%", + "beneath.nutrient.destruction": "Руйнування: Β§6%s%%", + "beneath.nutrient.flame": "ΠŸΠΎΠ»ΡƒΠΌβ€™Ρ: Β§c%s%%", + "beneath.nutrient.sorrow": "ΠŸΠ΅Ρ‡Π°Π»ΡŒ: Β§9%s%%", + "beneath.block_entity.hellforge": "ПСкСльна кузня", + "beneath.screen.juicer": "Π‘ΠΎΠΊΠΎΠ²ΠΈΠΆΠΈΠΌΠ°Π»ΠΊΠ°", + "beneath.screen.juicer.mushrooms": "Нагодуй ΠΌΠ΅Π½Π΅ Π³Ρ€ΠΈΠ±Π°ΠΌΠΈ!", + "beneath.screen.lost_page": "Π’Ρ‚Ρ€Π°Ρ‡Π΅Π½Π° сторінка", + "beneath.screen.lost_page.cost": "Π’Π°Ρ€Ρ‚Ρ–ΡΡ‚ΡŒ", + "beneath.screen.lost_page.reward": "Π’ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π°", + "beneath.screen.lost_page.punishment": "ΠŸΠΎΠΊΠ°Ρ€Π°Π½Π½Ρ", + "beneath.lost_page.cobble": "Π‘ΡƒΠ΄ΡŒ-який кругляк", + "beneath.punishment": "Π’ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ покарання... %s", + "beneath.enum.punishment.none": "Π–ΠΎΠ΄Π½ΠΎΠ³ΠΎ покарання!", + "beneath.enum.punishment.levitation": "ЛСвітація!", + "beneath.enum.punishment.drunkenness": "Π”Π΅Π½ΡŒ пияцтва!", + "beneath.enum.punishment.blaze_inferno": "ПСкло ΠΏΠ»ΠΎΠΌΠ΅Π½Ρ–Π²!", + "beneath.enum.punishment.infestation": "ΠΠ°ΡˆΠ΅ΡΡ‚Ρ срібляків!", + "beneath.enum.punishment.withering": "Π’Ρ–Π·Π΅Ρ€!", + "beneath.enum.punishment.slime": "Π‘Π»ΠΈΠΌΠ°ΠΊ!", + "beneath.enum.punishment.unknown": "Β§kНСвідомо", + "beneath.sacrifice.error": "Помилка ΠΆΠ΅Ρ€Ρ‚Π²ΠΈ: ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ Π½Π΅ Π·Π½Π°ΠΉΠ΄Π΅Π½ΠΎ.", + "item.beneath.juicer.filled": "Π‘ΠΎΠΊΠΎΠ²ΠΈΠΆΠΈΠΌΠ°Π»ΠΊΠ° (%s)", + "death.attack.beneath.sulfur": "%1$s Π΄ΠΎΠ±ΡƒΠ² сірку Π·Π°Π»Ρ–Π·Π½ΠΈΠΌ інструмСнтом Ρ– підірвався.", + "death.attack.beneath.sulfur.player": "%1$s Π΄ΠΎΠ±ΡƒΠ² сірку Π·Π°Π»Ρ–Π·Π½ΠΈΠΌ інструмСнтом Ρ– підірвався, Π½Π°ΠΌΠ°Π³Π°ΡŽΡ‡ΠΈΡΡŒ ΡƒΡ‚Π΅ΠΊΡ‚ΠΈ Π²Ρ–Π΄ %2$s.", + "entity.beneath.boat.crimson": "Багряний Ρ‡ΠΎΠ²Π΅Π½", + "entity.beneath.boat.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Ρ‡ΠΎΠ²Π΅Π½", + "entity.beneath.chest_boat.crimson": "Багряний Ρ‡ΠΎΠ²Π΅Π½ Π·Ρ– ΡΠΊΡ€ΠΈΠ½Π΅ΡŽ", + "entity.beneath.chest_boat.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Ρ‡ΠΎΠ²Π΅Π½ Π·Ρ– ΡΠΊΡ€ΠΈΠ½Π΅ΡŽ", + "item.beneath.gold_chunk": "Π—ΠΎΠ»ΠΎΡ‚ΠΈΠΉ ΡˆΠΌΠ°Ρ‚ΠΎΠΊ", + "item.beneath.pure_death": "Чиста ΡΠΌΠ΅Ρ€Ρ‚ΡŒ", + "item.beneath.pure_decay": "Чистий Ρ€ΠΎΠ·ΠΏΠ°Π΄", + "item.beneath.pure_destruction": "ЧистС знищСння", + "item.beneath.pure_sorrow": "Чистий смуток", + "item.beneath.pure_flame": "ЧистС полум’я", + "item.beneath.agonizing_fertilizer": "АгонійнС Π΄ΠΎΠ±Ρ€ΠΈΠ²ΠΎ", + "item.beneath.crimson_straw": "Багряна солома", + "item.beneath.warped_straw": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° солома", + "item.beneath.ghost_pepper": "ΠŸΡ€ΠΈΠΌΠ°Ρ€Π½ΠΈΠΉ ΠΏΠ΅Ρ€Π΅Ρ†ΡŒ", + "item.beneath.juicer": "Π‘ΠΎΠΊΠΎΠ²ΠΈΠΆΠΈΠΌΠ°Π»ΠΊΠ°", + "item.beneath.raw_slime": "Π‘ΠΈΡ€ΠΈΠΉ слиз", + "item.beneath.lost_page": "Π’Ρ‚Ρ€Π°Ρ‡Π΅Π½Π° сторінка", + "item.beneath.spawn_egg.red_elk": "Π―ΠΉΡ†Π΅ ΠΏΡ€ΠΈΠ·ΠΎΠ²Ρƒ Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΠ³ΠΎ лося", + "block.beneath.ore.poor_nether_gold": "Π‘Ρ–Π΄Π½Π° Π½Π΅Π·Π΅Ρ€ΡΡŒΠΊΠ° Π·ΠΎΠ»ΠΎΡ‚Π° Ρ€ΡƒΠ΄Π°", + "block.beneath.ore.poor_nether_gold.prospected": "ΠΠ΅Π·Π΅Ρ€ΡΡŒΠΊΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ", + "block.beneath.ore.normal_nether_gold": "Π—Π²ΠΈΡ‡Π°ΠΉΠ½Π° Π½Π΅Π·Π΅Ρ€ΡΡŒΠΊΠ° Π·ΠΎΠ»ΠΎΡ‚Π° Ρ€ΡƒΠ΄Π°", + "block.beneath.ore.normal_nether_gold.prospected": "ΠΠ΅Π·Π΅Ρ€ΡΡŒΠΊΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ", + "block.beneath.ore.rich_nether_gold": "Π‘Π°Π³Π°Ρ‚Π° Π½Π΅Π·Π΅Ρ€ΡΡŒΠΊΠ° Π·ΠΎΠ»ΠΎΡ‚Π° Ρ€ΡƒΠ΄Π°", + "block.beneath.ore.rich_nether_gold.prospected": "ΠΠ΅Π·Π΅Ρ€ΡΡŒΠΊΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ", + "block.beneath.ore.nether_pyrite": "ΠΠ΅Π·Π΅Ρ€ΡΡŒΠΊΠ° ΠΏΡ–Ρ€ΠΈΡ‚ΠΎΠ²Π° Ρ€ΡƒΠ΄Π°", + "block.beneath.ore.nether_pyrite.prospected": "ΠΠ΅Π·Π΅Ρ€ΡΡŒΠΊΠΈΠΉ ΠΏΡ–Ρ€ΠΈΡ‚", + "block.beneath.ore.blackstone_sylvite.prospected": "Чорнокам’яний ΡΠΈΠ»ΡŒΠ²Ρ–Ρ‚", + "block.beneath.ore.slimed_netherrack": "ЗаслизнСна Π½Π΅Π·Π΅Ρ€ΡΡŒΠΊΠ° Ρ€ΡƒΠ΄Π°", + "block.beneath.ore.slimed_netherrack.prospected": "ЗаслизнСний Π½Π΅Π·Π΅Ρ€Π°ΠΊ", + "block.minecraft.nether_quartz_ore.prospected": "ΠΠ΅Π·Π΅Ρ€ΡΡŒΠΊΠΈΠΉ ΠΊΠ²Π°Ρ€Ρ†", + "block.beneath.haunted_spike": "ΠŸΡ€ΠΈΠΌΠ°Ρ€Π½ΠΈΠΉ шип", + "block.beneath.glowstone_spike": "Бвітлокам’яний шип", + "block.beneath.nether_pebble": "ΠΠ΅Π·Π΅Ρ€ΡΡŒΠΊΠ° галька", + "block.beneath.sulfur": "Π‘Ρ–Ρ€ΠΊΠ°", + "block.beneath.crop.crimson_roots": "БагрянС коріння", + "item.beneath.seeds.crimson_roots": "Насіння багряного коріння", + "block.beneath.crop.ghost_pepper": "ΠŸΡ€ΠΈΠΌΠ°Ρ€Π½ΠΈΠΉ ΠΏΠ΅Ρ€Π΅Ρ†ΡŒ", + "item.beneath.seeds.ghost_pepper": "Насіння ΠΏΡ€ΠΈΠΌΠ°Ρ€Π½ΠΎΠ³ΠΎ ΠΏΠ΅Ρ€Ρ†ΡŽ", + "block.beneath.crop.gleamflower": "Бяйквітка", + "item.beneath.seeds.gleamflower": "Насіння сяйвоквітки", + "block.beneath.crop.nether_wart": "ΠΠ΅Π·Π΅Ρ€ΡΡŒΠΊΠΈΠΉ наріст", + "item.beneath.seeds.nether_wart": "Насіння Π½Π΅Π·Π΅Ρ€ΡΡŒΠΊΠΎΠ³ΠΎ наросту", + "block.beneath.crop.warped_roots": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π΅ коріння", + "item.beneath.seeds.warped_roots": "Насіння Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΎΠ³ΠΎ коріння", + "block.beneath.gleamflower": "Бяйквітка", + "block.beneath.burpflower": "Π‘ΡƒΡ€ΠΊΠΎΡ‚ΠΊΠ²Ρ–Ρ‚ΠΊΠ°", + "block.beneath.unposter": "АнпостСр", + "block.beneath.hellforge": "ПСкСльна кузня", + "block.beneath.hellforge_side": "ПСкСльна кузня", + "block.beneath.soul_farmland": "Π”ΡƒΡˆΠ΅Π²Π½Π΅ рілля", + "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.cobblerack": "ΠšΠ°ΠΌΡ–Π½Π½ΠΎΠ»ΠΎΠΌ", + "block.beneath.fungal_cobblerack": "Π“Ρ€ΠΈΠ±Π½ΠΈΠΉ ΠΊΠ°ΠΌΡ–Π½Π½ΠΎΠ»ΠΎΠΌ", + "block.beneath.warped_thatch": "Π₯ΠΈΠΌΠ΅Ρ€Π½Π° солома", + "block.beneath.crimson_thatch": "Багряна стріха", + "block.beneath.hellbricks": "ПСкСльна Ρ†Π΅Π³Π»Π°", + "tfc.recipe.barrel.tfc.barrel.mortar": "Π ΠΎΠ·Ρ‡ΠΈΠ½" } \ No newline at end of file diff --git a/kubejs/assets/beneath/lang/zh_cn.json b/kubejs/assets/beneath/lang/zh_cn.json index 94c67e3f6..73bfe44ee 100644 --- a/kubejs/assets/beneath/lang/zh_cn.json +++ b/kubejs/assets/beneath/lang/zh_cn.json @@ -3,11 +3,11 @@ "block.beneath.blackstone_pebble": "ζΎζ•£θΎ‰ηŸ³ε²©", "block.beneath.blackstone_aqueduct": "θΎ‰ηŸ³ε²©εΌ•ζ°΄ζ‘₯", "block.beneath.loose_blackstone": "ζΎζ•£θΎ‰ηŸ³ε²©", - "block.beneath.ore.nether_cursecoal": "ζ— ηƒŸη…€ηŸΏηŸ³", + "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.ore.blackstone_sylvite": "θΎ‰ηŸ³ε²©ι’ΎηŸ³η›ηŸΏηŸ³", + "block.beneath.crackrack": "倩焢角斑岩", "block.beneath.soul_clay": "ζ³₯泞黏土", "block.beneath.wood.log.crimson": "η»―ηΊ’θŒζŸ„", "block.beneath.wood.stripped_log.crimson": "去ηšη»―ηΊ’θŒζŸ„", @@ -22,6 +22,248 @@ "block.beneath.wood.fallen_leaves.warped": "译异瓣叢落叢", "block.beneath.wood.leaves.warped": "译异瓣叢", "block.beneath.ancient_altar": "θΎ‰ηŸ³ε²©εŸΊεΊ§", + "item.beneath.wood.lumber.crimson": "绯纒木材", + "item.beneath.wood.sign.crimson": "η»―ηΊ’ζœ¨ε‘Šη€Ίη‰Œ", + "item.beneath.wood.boat.crimson": "绯纒木船", + "block.beneath.wood.twig.crimson": "η»―ηΊ’ζ ‘ζž", + "item.beneath.wood.chest_minecart.crimson": "η»―ηΊ’ζœ¨θΏθΎ“ηŸΏθ½¦", + "block.beneath.wood.potted_sapling.crimson": "绯纒树幼苗盆栽", + "block.beneath.wood.planks.crimson": "绯纒木板", + "block.beneath.wood.planks.crimson_tool_rack": "绯纒木ε·₯ε…·ζžΆ", + "block.beneath.wood.planks.crimson_loom": "η»―ηΊ’ζœ¨η»‡ζœΊ", + "block.beneath.wood.planks.crimson_bookshelf": "绯纒木书枢", + "block.beneath.wood.planks.crimson_workbench": "绯纒木ε·₯作台", + "block.beneath.wood.vertical_support.crimson": "η»―ηΊ’ζœ¨ζ”―ζ’‘ζ’", + "block.beneath.wood.horizontal_support.crimson": "η»―ηΊ’ζœ¨ζ”―ζ’‘ζ’", + "item.beneath.wood.support.crimson": "η»―ηΊ’ζœ¨ζ”―ζ’‘ζ’", + "block.beneath.wood.chest.crimson": "绯纒木η±ε­", + "block.beneath.wood.trapped_chest.crimson": "η»―ηΊ’ζœ¨ι™·ι˜±η±", + "block.beneath.wood.sluice.crimson": "η»―ηΊ’ζœ¨ζ΄—ηŸΏζ§½", + "block.beneath.wood.planks.crimson_sign": "η»―ηΊ’ζœ¨ε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.crimson_wall_sign": "η»―ηΊ’ζœ¨ε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.bismuth_bronze.crimson": "ι“‹ι’ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.bismuth_bronze.crimson": "ε’™δΈŠηš„ι“‹ι’ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.black_bronze.crimson": "ι»‘ι’ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.black_bronze.crimson": "ε’™δΈŠηš„ι»‘ι’ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.bronze.crimson": "ι’ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.bronze.crimson": "ε’™δΈŠηš„ι’ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.copper.crimson": "ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.copper.crimson": "ε’™δΈŠηš„ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.wrought_iron.crimson": "ι”»ι“η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.wrought_iron.crimson": "ε’™δΈŠηš„ι”»ι“η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.steel.crimson": "ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.steel.crimson": "ε’™δΈŠηš„ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.black_steel.crimson": "ι»‘ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.black_steel.crimson": "ε’™δΈŠηš„ι»‘ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.blue_steel.crimson": "θ“ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.blue_steel.crimson": "ε’™δΈŠηš„θ“ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.red_steel.crimson": "ηΊ’ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.red_steel.crimson": "ε’™δΈŠηš„ηΊ’ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.bismuth_bronze.crimson": "ι“‹ι’ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.black_bronze.crimson": "ι»‘ι’ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.bronze.crimson": "ι’ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.copper.crimson": "ι“œη»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.wrought_iron.crimson": "ι”»ι“η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.steel.crimson": "ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.black_steel.crimson": "ι»‘ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.blue_steel.crimson": "θ“ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.red_steel.crimson": "ηΊ’ι’’η»―ηΊ’ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.barrel.crimson": "绯纒木倧摢", + "block.beneath.wood.lectern.crimson": "绯纒木θ²ε°", + "block.beneath.wood.scribing_table.crimson": "η»―ηΊ’ζœ¨δΉ¦ε†™ζ‘Œ", + "block.beneath.wood.sewing_table.crimson": "绯纒木缝纫摌", + "block.beneath.wood.jar_shelf.crimson": "绯纒木橱柜", + "block.beneath.wood.axle.crimson": "绯纒木传动轴", + "block.beneath.wood.bladed_axle.crimson": "η»―ηΊ’ζœ¨εΆη‰‡δΌ εŠ¨θ½΄", + "block.beneath.wood.encased_axle.crimson": "η»―ηΊ’ζœ¨ε°ι—­δΌ εŠ¨θ½΄", + "block.beneath.wood.clutch.crimson": "η»―ηΊ’ζœ¨η¦»εˆε™¨", + "block.beneath.wood.gear_box.crimson": "绯纒木齿θ½η±", + "block.beneath.wood.windmill.crimson": "绯纒木风车", + "block.beneath.wood.water_wheel.crimson": "绯纒木水车", + "block.beneath.wood.planks.crimson_door": "η»―ηΊ’ζœ¨ι—¨", + "block.beneath.wood.planks.crimson_trapdoor": "η»―ηΊ’ζœ¨ζ΄»ζΏι—¨", + "block.beneath.wood.planks.crimson_fence": "η»―ηΊ’ζœ¨ζ …ζ ", + "block.beneath.wood.planks.crimson_log_fence": "η»―ηΊ’ζœ¨εŽŸζœ¨ζ …ζ ", + "block.beneath.wood.planks.crimson_fence_gate": "η»―ηΊ’ζœ¨ζ …ζ ι—¨", + "block.beneath.wood.planks.crimson_button": "η»―ηΊ’ζœ¨ζŒ‰ι’", + "block.beneath.wood.planks.crimson_pressure_plate": "η»―ηΊ’ζœ¨εŽ‹εŠ›ζΏ", + "block.beneath.wood.planks.crimson_slab": "绯纒木台阢", + "block.beneath.wood.planks.crimson_stairs": "绯纒木ζ₯Όζ’―", + "block.beneath.wood.sapling.crimson": "η»―ηΊ’ζ ‘θ‹—", + "item.beneath.wood.lumber.warped": "θ―‘εΌ‚ζœ¨ζ", + "item.beneath.wood.sign.warped": "θ―‘εΌ‚ζœ¨ε‘Šη€Ίη‰Œ", + "item.beneath.wood.boat.warped": "θ―‘εΌ‚ζœ¨θˆΉ", + "block.beneath.wood.twig.warped": "θ―‘εΌ‚ζ ‘ζž", + "item.beneath.wood.chest_minecart.warped": "θ―‘εΌ‚ζœ¨θΏθΎ“ηŸΏθ½¦", + "block.beneath.wood.potted_sapling.warped": "译异树幼苗盆栽", + "block.beneath.wood.planks.warped": "θ―‘εΌ‚ζœ¨ζΏ", + "block.beneath.wood.planks.warped_tool_rack": "θ―‘εΌ‚ζœ¨ε·₯ε…·ζžΆ", + "block.beneath.wood.planks.warped_loom": "θ―‘εΌ‚ζœ¨η»‡ζœΊ", + "block.beneath.wood.planks.warped_bookshelf": "θ―‘εΌ‚ζœ¨δΉ¦ζžΆ", + "block.beneath.wood.planks.warped_workbench": "θ―‘εΌ‚ζœ¨ε·₯作台", + "block.beneath.wood.vertical_support.warped": "θ―‘εΌ‚ζœ¨ζ”―ζ’‘ζ’", + "block.beneath.wood.horizontal_support.warped": "θ―‘εΌ‚ζœ¨ζ”―ζ’‘ζ’", + "item.beneath.wood.support.warped": "θ―‘εΌ‚ζœ¨ζ”―ζ’‘ζ’", + "block.beneath.wood.chest.warped": "θ―‘εΌ‚ζœ¨η±ε­", + "block.beneath.wood.trapped_chest.warped": "θ―‘εΌ‚ζœ¨ι™·ι˜±η±", + "block.beneath.wood.sluice.warped": "θ―‘εΌ‚ζœ¨ζ΄—ηŸΏζ§½", + "block.beneath.wood.planks.warped_sign": "θ―‘εΌ‚ζœ¨ε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.warped_wall_sign": "θ―‘εΌ‚ζœ¨ε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.bismuth_bronze.warped": "ι“‹ι’ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.bismuth_bronze.warped": "ε’™δΈŠηš„ι“‹ι’ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.black_bronze.warped": "ι»‘ι’ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.black_bronze.warped": "ε’™δΈŠηš„ι»‘ι’ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.bronze.warped": "ι’ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.bronze.warped": "ε’™δΈŠηš„ι’ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.copper.warped": "ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.copper.warped": "ε’™δΈŠηš„ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.wrought_iron.warped": "ι”»ι“θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.wrought_iron.warped": "ε’™δΈŠηš„ι”»ι“θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.steel.warped": "ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.steel.warped": "ε’™δΈŠηš„ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.black_steel.warped": "ι»‘ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.black_steel.warped": "ε’™δΈŠηš„ι»‘ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.blue_steel.warped": "θ“ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.blue_steel.warped": "ε’™δΈŠηš„θ“ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.red_steel.warped": "ηΊ’ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.red_steel.warped": "ε’™δΈŠηš„ηΊ’ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.bismuth_bronze.warped": "ι“‹ι’ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.black_bronze.warped": "ι»‘ι’ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.bronze.warped": "ι’ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.copper.warped": "ι“œθ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.wrought_iron.warped": "ι”»ι“θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.steel.warped": "ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.black_steel.warped": "ι»‘ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.blue_steel.warped": "θ“ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.red_steel.warped": "ηΊ’ι’’θ―‘εΌ‚ζœ¨ζ‚¬ζŒ‚εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.barrel.warped": "θ―‘εΌ‚ζœ¨ε€§ζ‘Ά", + "block.beneath.wood.lectern.warped": "θ―‘εΌ‚ζœ¨θ²ε°", + "block.beneath.wood.scribing_table.warped": "θ―‘εΌ‚ζœ¨δΉ¦ε†™ζ‘Œ", + "block.beneath.wood.sewing_table.warped": "θ―‘εΌ‚ζœ¨ηΌηΊ«ζ‘Œ", + "block.beneath.wood.jar_shelf.warped": "θ―‘εΌ‚ζœ¨ζ©±ζŸœ", + "block.beneath.wood.axle.warped": "θ―‘εΌ‚ζœ¨δΌ εŠ¨θ½΄", + "block.beneath.wood.bladed_axle.warped": "θ―‘εΌ‚ζœ¨εΆη‰‡δΌ εŠ¨θ½΄", + "block.beneath.wood.encased_axle.warped": "θ―‘εΌ‚ζœ¨ε°ι—­δΌ εŠ¨θ½΄", + "block.beneath.wood.clutch.warped": "θ―‘εΌ‚ζœ¨η¦»εˆε™¨", + "block.beneath.wood.gear_box.warped": "θ―‘εΌ‚ζœ¨ι½Ώθ½η±", + "block.beneath.wood.windmill.warped": "θ―‘εΌ‚ζœ¨ι£Žθ½¦", + "block.beneath.wood.water_wheel.warped": "θ―‘εΌ‚ζœ¨ζ°΄θ½¦", + "block.beneath.wood.planks.warped_door": "θ―‘εΌ‚ζœ¨ι—¨", + "block.beneath.wood.planks.warped_trapdoor": "θ―‘εΌ‚ζœ¨ζ΄»ζΏι—¨", + "block.beneath.wood.planks.warped_fence": "θ―‘εΌ‚ζœ¨ζ …ζ ", + "block.beneath.wood.planks.warped_log_fence": "θ―‘εΌ‚ζœ¨εŽŸζœ¨ζ …ζ ", + "block.beneath.wood.planks.warped_fence_gate": "θ―‘εΌ‚ζœ¨ζ …ζ ι—¨", + "block.beneath.wood.planks.warped_button": "θ―‘εΌ‚ζœ¨ζŒ‰ι’", + "block.beneath.wood.planks.warped_pressure_plate": "θ―‘εΌ‚ζœ¨εŽ‹εŠ›ζΏ", + "block.beneath.wood.planks.warped_slab": "θ―‘εΌ‚ζœ¨ε°ι˜Ά", + "block.beneath.wood.planks.warped_stairs": "θ―‘εΌ‚ζœ¨ζ₯Όζ’―", + "block.beneath.wood.sapling.warped": "θ―‘εΌ‚ζ ‘θ‹—", + "beneath.creative_tab.beneath": "εΉ½ε†₯δΉ‹εœ°ι“ε…·", + "entity.beneath.leviathan_fireball": "ηƒˆη„°ζ΅·ζ€ͺ火球", + "entity.beneath.blaze_leviathan": "ηƒˆη„°ζ΅·ζ€ͺ", + "entity.beneath.red_elk": "ηΊ’ιΊ‹ιΉΏ", + "beneath.nutrient.decay": "θ…εŒ–: Β§e%s%%", + "beneath.nutrient.death": "ζ­»δΊ‘: Β§7%s%%", + "beneath.nutrient.destruction": "毁灭: Β§6%s%%", + "beneath.nutrient.flame": "ηƒˆη„°: Β§c%s%%", + "beneath.nutrient.sorrow": "ζ‚²δΌ€: Β§9%s%%", + "beneath.block_entity.hellforge": "εœ°η‹±η†”η‚‰", + "beneath.screen.juicer": "榨汁器", + "beneath.screen.juicer.mushrooms": "ε–‚ζˆ‘δΈ€δΊ›θ˜‘θ‡οΌ", + "beneath.screen.lost_page": "倱落书鑡", + "beneath.screen.lost_page.cost": "代价", + "beneath.screen.lost_page.reward": "ε₯–εŠ±", + "beneath.screen.lost_page.punishment": "ζƒ©η½š", + "beneath.lost_page.cobble": "δ»»δ½•εœ†ηŸ³", + "beneath.punishment": "δ½ ε—εˆ°δΊ†... %sηš„ζƒ©η½š", + "beneath.enum.punishment.none": "ζ²‘ζœ‰δ»»δ½•ζƒ©η½šοΌ", + "beneath.enum.punishment.levitation": "飘ζ΅οΌ", + "beneath.enum.punishment.drunkenness": "ι…©ι…Šε€§ι†‰δΈ€ζ•΄ε€©οΌ", + "beneath.enum.punishment.blaze_inferno": "ηƒˆη„°δΊΊη‚Όη‹±οΌ", + "beneath.enum.punishment.infestation": "蠹虫価扰!", + "beneath.enum.punishment.withering": "凋離!", + "beneath.enum.punishment.slime": "ε²θŽ±ε§†οΌ", + "beneath.enum.punishment.unknown": "Β§kζœͺηŸ₯", + "beneath.sacrifice.error": "ηŒη₯­ι”™θ――:ζœͺζ‰Ύεˆ°ζζ–™γ€‚", + "item.beneath.juicer.filled": "榨汁器 (%s)", + "death.attack.beneath.sulfur": "%1$s δ½Ώη”¨ι“εˆΆε·₯ε…·εΌ€ι‡‡η‘«η£ΊοΌŒζŠŠθ‡ͺε·±η‚Έι£žδΊ†γ€‚", + "death.attack.beneath.sulfur.player": "%1$s εœ¨θ―•ε›Ύι€ƒη¦» %2$s ζ—Άδ½Ώη”¨ι“εˆΆε·₯ε…·εΌ€ι‡‡η‘«η£ΊοΌŒζŠŠθ‡ͺε·±η‚Έι£žδΊ†γ€‚", + "entity.beneath.boat.crimson": "绯纒木船", + "entity.beneath.boat.warped": "θ―‘εΌ‚ζœ¨θˆΉ", + "entity.beneath.chest_boat.crimson": "η»―ηΊ’ζœ¨θΏθΎ“θˆΉ", + "entity.beneath.chest_boat.warped": "θ―‘εΌ‚ζœ¨θΏθΎ“θˆΉ", + "item.beneath.gold_chunk": "金块", + "item.beneath.pure_death": "纯净死云", + "item.beneath.pure_decay": "ηΊ―ε‡€θ…εŒ–", + "item.beneath.pure_destruction": "纯净毁灭", + "item.beneath.pure_sorrow": "纯净悲伀", + "item.beneath.pure_flame": "ηΊ―ε‡€ηƒˆη„°", + "item.beneath.agonizing_fertilizer": "痛苦θ‚₯ζ–™", + "item.beneath.crimson_straw": "绯纒干草", + "item.beneath.warped_straw": "译异干草", + "item.beneath.ghost_pepper": "幽灡怒", + "item.beneath.juicer": "榨汁器", + "item.beneath.raw_slime": "η”Ÿε²θŽ±ε§†", + "item.beneath.lost_page": "倱落书鑡", + "item.beneath.spawn_egg.red_elk": "ηΊ’ιΊ‹ιΉΏεˆ·ζ€ͺθ›‹", + "block.beneath.ore.poor_nether_gold": "θ΄«η˜ δΈ‹η•Œι‡‘ηŸΏηŸ³", + "block.beneath.ore.poor_nether_gold.prospected": "δΈ‹η•Œι‡‘", + "block.beneath.ore.normal_nether_gold": "ζ™ι€šδΈ‹η•Œι‡‘ηŸΏηŸ³", + "block.beneath.ore.normal_nether_gold.prospected": "δΈ‹η•Œι‡‘", + "block.beneath.ore.rich_nether_gold": "ε―Œι›†δΈ‹η•Œι‡‘ηŸΏηŸ³", + "block.beneath.ore.rich_nether_gold.prospected": "δΈ‹η•Œι‡‘", + "block.beneath.ore.nether_pyrite": "δΈ‹η•Œι»„ι“ηŸΏηŸΏηŸ³", + "block.beneath.ore.nether_pyrite.prospected": "δΈ‹η•Œι»„ι“ηŸΏ", + "block.beneath.ore.blackstone_sylvite.prospected": "ι»‘ηŸ³ι’ΎηŸ³η›", + "block.beneath.ore.slimed_netherrack": "ε²θŽ±ε§†δΈ‹η•Œε²©ηŸΏηŸ³", + "block.beneath.ore.slimed_netherrack.prospected": "ε²θŽ±ε§†δΈ‹η•Œε²©", + "block.minecraft.nether_quartz_ore.prospected": "δΈ‹η•ŒηŸ³θ‹±", + "block.beneath.haunted_spike": "εΉ½ι­‚ε°–εˆΊ", + "block.beneath.glowstone_spike": "θ§ηŸ³ε°–εˆΊ", + "block.beneath.nether_pebble": "δΈ‹η•Œε²©ε΅ηŸ³", + "block.beneath.sulfur": "η‘«η£Ί", + "block.beneath.crop.crimson_roots": "绯纒菌紒", + "item.beneath.seeds.crimson_roots": "绯纒菌紒种子", + "block.beneath.crop.ghost_pepper": "幽灡怒", + "item.beneath.seeds.ghost_pepper": "幽灡怒种子", + "block.beneath.crop.gleamflower": "θŽΉε…‰θŠ±", + "item.beneath.seeds.gleamflower": "θŽΉε…‰θŠ±η§ε­", + "block.beneath.crop.nether_wart": "δΈ‹η•Œη–£", + "item.beneath.seeds.nether_wart": "δΈ‹η•Œη–£η§ε­", + "block.beneath.crop.warped_roots": "θ―‘εΌ‚θŒη΄’", + "item.beneath.seeds.warped_roots": "θ―‘εΌ‚θŒη΄’η§ε­", + "block.beneath.gleamflower": "θŽΉε…‰θŠ±", + "block.beneath.burpflower": "ε—ε—θŠ±", + "block.beneath.unposter": "θ˜‘θ‡εŸΉθ‚²ζ‘Ά", + "block.beneath.hellforge": "εœ°η‹±η†”η‚‰", + "block.beneath.hellforge_side": "εœ°η‹±η†”η‚‰", + "block.beneath.soul_farmland": "η΅ι­‚θ€•εœ°", + "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.cobblerack": "卡石岩", + "block.beneath.fungal_cobblerack": "菌丝卡石岩", + "block.beneath.warped_thatch": "译异干草块", + "block.beneath.crimson_thatch": "绯纒干草块", + "block.beneath.hellbricks": "εœ°η‹±η –", + "tfc.recipe.barrel.tfc.barrel.mortar": "砂框", "item.beneath.cursed_hide": "耐火ηšι©", "item.beneath.blackstone_brick": "θΎ‰ηŸ³ε²©η –", "item.beneath.cursecoal": "ζ— ηƒŸη…€", diff --git a/kubejs/assets/beneath/lang/zh_tw.json b/kubejs/assets/beneath/lang/zh_tw.json new file mode 100644 index 000000000..a4d56295c --- /dev/null +++ b/kubejs/assets/beneath/lang/zh_tw.json @@ -0,0 +1,272 @@ +{ + "__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.log.crimson": "η·‹η΄…θŒζŸ„", + "block.beneath.wood.stripped_log.crimson": "去ηšη·‹η΄…θŒζŸ„", + "block.beneath.wood.wood.crimson": "η·‹η΄…θŒζ Έ", + "block.beneath.wood.stripped_wood.crimson": "去ηšη·‹η΄…θŒζ Έ", + "block.beneath.wood.fallen_leaves.crimson": "緋紅瓣葉落葉", + "block.beneath.wood.leaves.crimson": "緋紅瓣葉", + "block.beneath.wood.log.warped": "θ©­η•°θŒζŸ„", + "block.beneath.wood.stripped_log.warped": "去ηšθ©­η•°θŒζŸ„", + "block.beneath.wood.wood.warped": "θ©­η•°θŒζ Έ", + "block.beneath.wood.stripped_wood.warped": "去ηšθ©­η•°θŒζ Έ", + "block.beneath.wood.fallen_leaves.warped": "詭異瓣葉落葉", + "block.beneath.wood.leaves.warped": "詭異瓣葉", + "block.beneath.ancient_altar": "輝石岩基座", + "item.beneath.wood.lumber.crimson": "η·‹η΄…ζœ¨ζ", + "item.beneath.wood.sign.crimson": "η·‹η΄…ζœ¨ε‘Šη€Ίη‰Œ", + "item.beneath.wood.boat.crimson": "η·‹η΄…ζœ¨θˆΉ", + "block.beneath.wood.twig.crimson": "η·‹η΄…ζ¨Ήζž", + "item.beneath.wood.chest_minecart.crimson": "η·‹η΄…ζœ¨ι‹θΌΈη€¦θ»Š", + "block.beneath.wood.potted_sapling.crimson": "緋紅樹苗盆栽", + "block.beneath.wood.planks.crimson": "η·‹η΄…ζœ¨ζœ¨ζΏ", + "block.beneath.wood.planks.crimson_tool_rack": "η·‹η΄…ζœ¨ε·₯ε…·ζžΆ", + "block.beneath.wood.planks.crimson_loom": "η·‹η΄…ζœ¨ηΉ”εΈƒζ©Ÿ", + "block.beneath.wood.planks.crimson_bookshelf": "η·‹η΄…ζœ¨ζ›ΈζžΆ", + "block.beneath.wood.planks.crimson_workbench": "η·‹η΄…ζœ¨ε·₯作台", + "block.beneath.wood.vertical_support.crimson": "η·‹η΄…ζœ¨ζ”―ζ’ζ’", + "block.beneath.wood.horizontal_support.crimson": "η·‹η΄…ζœ¨ζ”―ζ’ζ’", + "item.beneath.wood.support.crimson": "η·‹η΄…ζœ¨ζ”―ζ’ζ’", + "block.beneath.wood.chest.crimson": "η·‹η΄…ζœ¨η±ε­", + "block.beneath.wood.trapped_chest.crimson": "η·‹η΄…ζœ¨ι™·ι˜±η±", + "block.beneath.wood.sluice.crimson": "η·‹η΄…ζœ¨ζ΄—η€¦ζ§½", + "block.beneath.wood.planks.crimson_sign": "η·‹η΄…ζœ¨ε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.crimson_wall_sign": "η·‹η΄…ζœ¨η‰†ι’ε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.bismuth_bronze.crimson": "ι‰ι’ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.bismuth_bronze.crimson": "η‰†ι’ι‰ι’ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.black_bronze.crimson": "ι»‘ι’ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.black_bronze.crimson": "η‰†ι’ι»‘ι’ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.bronze.crimson": "ι’ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.bronze.crimson": "η‰†ι’ι’ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.copper.crimson": "ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.copper.crimson": "η‰†ι’ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.wrought_iron.crimson": "ι›ι΅η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.wrought_iron.crimson": "η‰†ι’ι›ι΅η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.steel.crimson": "ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.steel.crimson": "η‰†ι’ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.black_steel.crimson": "ι»‘ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.black_steel.crimson": "η‰†ι’ι»‘ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.blue_steel.crimson": "θ—ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.blue_steel.crimson": "η‰†ι’θ—ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.red_steel.crimson": "η΄…ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.red_steel.crimson": "η‰†ι’η΄…ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.bismuth_bronze.crimson": "ι‰ι’ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.black_bronze.crimson": "ι»‘ι’ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.bronze.crimson": "ι’ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.copper.crimson": "ιŠ…η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.wrought_iron.crimson": "ι›ι΅η·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.steel.crimson": "ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.black_steel.crimson": "ι»‘ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.blue_steel.crimson": "θ—ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.red_steel.crimson": "η΄…ι‹Όη·‹η΄…ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.barrel.crimson": "η·‹η΄…ζœ¨ε€§ζ‘Ά", + "block.beneath.wood.lectern.crimson": "η·‹η΄…ζœ¨θ¬›ε°", + "block.beneath.wood.scribing_table.crimson": "η·‹η΄…ζœ¨ζ›Έε―«ζ‘Œ", + "block.beneath.wood.sewing_table.crimson": "η·‹η΄…ζœ¨ηΈ«η΄‰ζ‘Œ", + "block.beneath.wood.jar_shelf.crimson": "η·‹η΄…ζœ¨η½η‰©ζ«ƒ", + "block.beneath.wood.axle.crimson": "η·‹η΄…ζœ¨ε‚³ε‹•θ»Έ", + "block.beneath.wood.bladed_axle.crimson": "η·‹η΄…ζœ¨θ‘‰η‰‡ε‚³ε‹•θ»Έ", + "block.beneath.wood.encased_axle.crimson": "η·‹η΄…ζœ¨ε°θ£ε‚³ε‹•θ»Έ", + "block.beneath.wood.clutch.crimson": "η·‹η΄…ζœ¨ι›’εˆε™¨", + "block.beneath.wood.gear_box.crimson": "η·‹η΄…ζœ¨ι½’θΌͺη±", + "block.beneath.wood.windmill.crimson": "η·‹η΄…ζœ¨ι’¨θ»Š", + "block.beneath.wood.water_wheel.crimson": "η·‹η΄…ζœ¨ζ°΄θ»Š", + "block.beneath.wood.planks.crimson_door": "η·‹η΄…ζœ¨ι–€", + "block.beneath.wood.planks.crimson_trapdoor": "η·‹η΄…ζœ¨εœ°ζΏι–€", + "block.beneath.wood.planks.crimson_fence": "η·‹η΄…ζœ¨ζŸ΅ζ¬„", + "block.beneath.wood.planks.crimson_log_fence": "η·‹η΄…ζœ¨εŽŸζœ¨ζŸ΅ζ¬„", + "block.beneath.wood.planks.crimson_fence_gate": "η·‹η΄…ζœ¨ζŸ΅ζ¬„ι–€", + "block.beneath.wood.planks.crimson_button": "η·‹η΄…ζœ¨ζŒ‰ιˆ•", + "block.beneath.wood.planks.crimson_pressure_plate": "η·‹η΄…ζœ¨ε£“εŠ›ζΏ", + "block.beneath.wood.planks.crimson_slab": "η·‹η΄…ζœ¨εŠη£š", + "block.beneath.wood.planks.crimson_stairs": "η·‹η΄…ζœ¨ιšŽζ’―", + "block.beneath.wood.sapling.crimson": "η·‹η΄…ζ¨Ήθ‹—", + "item.beneath.wood.lumber.warped": "θ©­η•°ζœ¨ζ", + "item.beneath.wood.sign.warped": "θ©­η•°ζœ¨ε‘Šη€Ίη‰Œ", + "item.beneath.wood.boat.warped": "θ©­η•°ζœ¨θˆΉ", + "block.beneath.wood.twig.warped": "θ©­η•°ζ¨Ήζž", + "item.beneath.wood.chest_minecart.warped": "θ©­η•°ζœ¨ι‹θΌΈη€¦θ»Š", + "block.beneath.wood.potted_sapling.warped": "詭異樹苗盆栽", + "block.beneath.wood.planks.warped": "θ©­η•°ζœ¨ζœ¨ζΏ", + "block.beneath.wood.planks.warped_tool_rack": "θ©­η•°ζœ¨ε·₯ε…·ζžΆ", + "block.beneath.wood.planks.warped_loom": "θ©­η•°ζœ¨ηΉ”εΈƒζ©Ÿ", + "block.beneath.wood.planks.warped_bookshelf": "θ©­η•°ζœ¨ζ›ΈζžΆ", + "block.beneath.wood.planks.warped_workbench": "θ©­η•°ζœ¨ε·₯作台", + "block.beneath.wood.vertical_support.warped": "θ©­η•°ζœ¨ζ”―ζ’ζ’", + "block.beneath.wood.horizontal_support.warped": "θ©­η•°ζœ¨ζ”―ζ’ζ’", + "item.beneath.wood.support.warped": "θ©­η•°ζœ¨ζ”―ζ’ζ’", + "block.beneath.wood.chest.warped": "θ©­η•°ζœ¨η±ε­", + "block.beneath.wood.trapped_chest.warped": "θ©­η•°ζœ¨ι™·ι˜±η±", + "block.beneath.wood.sluice.warped": "θ©­η•°ζœ¨ζ΄—η€¦ζ§½", + "block.beneath.wood.planks.warped_sign": "θ©­η•°ζœ¨ε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.warped_wall_sign": "θ©­η•°ζœ¨η‰†ι’ε‘Šη€Ίη‰Œ", + "beneath.creative_tab.beneath": "εΉ½ε†₯δΉ‹εœ°η‰©ε“", + "entity.beneath.leviathan_fireball": "ηƒˆη„°ζ΅·ζ€ͺ火球", + "entity.beneath.blaze_leviathan": "ηƒˆη„°ζ΅·ζ€ͺ", + "entity.beneath.red_elk": "η΄…ιΊ‹ιΉΏ", + "beneath.nutrient.decay": "θ…εŒ–οΌšΒ§e%s%%", + "beneath.nutrient.death": "死云:§7%s%%", + "beneath.nutrient.destruction": "ζ―€ζ»…οΌšΒ§6%s%%", + "beneath.nutrient.flame": "ηƒˆη„°οΌšΒ§c%s%%", + "beneath.nutrient.sorrow": "ζ‚²ε‚·οΌšΒ§9%s%%", + "beneath.block_entity.hellforge": "εœ°η„η†”ηˆ", + "beneath.screen.juicer": "榨汁器", + "beneath.screen.juicer.mushrooms": "η΅¦ζˆ‘δΈ€δΊ›θ˜‘θ‡ε§οΌ", + "beneath.screen.lost_page": "倱落書頁", + "beneath.screen.lost_page.cost": "代價", + "beneath.screen.lost_page.reward": "ηŽε‹΅", + "beneath.screen.lost_page.punishment": "懲罰", + "beneath.lost_page.cobble": "δ»»δ½•εœ“ηŸ³", + "beneath.punishment": "δ½ ε—εˆ°δΊ†β€¦β€¦%s ηš„ζ‡²η½°", + "beneath.enum.punishment.none": "ζ²’ζœ‰δ»»δ½•ζ‡²η½°οΌ", + "beneath.enum.punishment.levitation": "ζΌ‚ζ΅οΌ", + "beneath.enum.punishment.drunkenness": "整倩醉醺醺!", + "beneath.enum.punishment.blaze_inferno": "ηƒˆη„°δ½Ώθ€…η…‰η„οΌ", + "beneath.enum.punishment.infestation": "θ ΉθŸ²δΎ΅ζ“ΎοΌ", + "beneath.enum.punishment.withering": "凋離!", + "beneath.enum.punishment.slime": "ε²θŠε§†οΌ", + "beneath.enum.punishment.unknown": "Β§kζœͺηŸ₯", + "beneath.sacrifice.error": "獻η₯­ε€±ζ•—οΌšζ‰ΎδΈεˆ°ζ‰€ιœ€ζζ–™γ€‚", + "item.beneath.juicer.filled": "ζ¦¨ζ±ε™¨οΌˆ%sοΌ‰", + "death.attack.beneath.sulfur": "%1$s 使用鐡製ε·₯ε…·ι–‹ζŽ‘η‘«η£Ίζ™‚ζŠŠθ‡ͺ己炸飛了。", + "death.attack.beneath.sulfur.player": "%1$s εœ¨θ©¦εœ–ι€ƒι›’ %2$s ζ™‚οΌŒδ½Ώη”¨ι΅θ£½ε·₯ε…·ι–‹ζŽ‘η‘«η£ΊζŠŠθ‡ͺ己炸飛了。", + "entity.beneath.boat.crimson": "η·‹η΄…ζœ¨θˆΉ", + "entity.beneath.boat.warped": "θ©­η•°ζœ¨θˆΉ", + "entity.beneath.chest_boat.crimson": "η·‹η΄…ζœ¨ι‹θΌΈθˆΉ", + "entity.beneath.chest_boat.warped": "θ©­η•°ζœ¨ι‹θΌΈθˆΉ", + "item.beneath.gold_chunk": "ι‡‘ε‘Š", + "item.beneath.pure_death": "η΄”ζ·¨ζ­»δΊ‘", + "item.beneath.pure_decay": "η΄”ζ·¨θ…εŒ–", + "item.beneath.pure_destruction": "η΄”ζ·¨ζ―€ζ»…", + "item.beneath.pure_sorrow": "η΄”ζ·¨ζ‚²ε‚·", + "item.beneath.pure_flame": "η΄”ζ·¨ηƒˆη„°", + "item.beneath.agonizing_fertilizer": "痛苦θ‚₯ζ–™", + "item.beneath.crimson_straw": "緋紅乾草", + "item.beneath.warped_straw": "詭異乾草", + "item.beneath.ghost_pepper": "εΉ½ιˆζ€’", + "item.beneath.juicer": "榨汁器", + "item.beneath.raw_slime": "η”Ÿε²θŠε§†", + "item.beneath.lost_page": "倱落書頁", + "item.beneath.spawn_egg.red_elk": "η΄…ιΊ‹ιΉΏη”Ÿζ€ͺθ›‹", + "block.beneath.ore.poor_nether_gold": "θ²§η˜ δΈ‹η•Œι‡‘η€¦ηŸ³", + "block.beneath.ore.poor_nether_gold.prospected": "δΈ‹η•Œι‡‘", + "block.beneath.ore.normal_nether_gold": "ζ™ι€šδΈ‹η•Œι‡‘η€¦ηŸ³", + "block.beneath.ore.normal_nether_gold.prospected": "δΈ‹η•Œι‡‘", + "block.beneath.ore.rich_nether_gold": "ε―Œι›†δΈ‹η•Œι‡‘η€¦ηŸ³", + "block.beneath.ore.rich_nether_gold.prospected": "δΈ‹η•Œι‡‘", + "block.beneath.ore.nether_pyrite": "δΈ‹η•Œι»ƒι΅η€¦η€¦ηŸ³", + "block.beneath.ore.nether_pyrite.prospected": "δΈ‹η•Œι»ƒι΅η€¦", + "block.beneath.ore.blackstone_sylvite.prospected": "ι»‘ηŸ³ι‰€ηŸ³ιΉ½", + "block.beneath.ore.slimed_netherrack": "ε²θŠε§†δΈ‹η•Œε²©η€¦ηŸ³", + "block.beneath.ore.slimed_netherrack.prospected": "ε²θŠε§†δΈ‹η•Œε²©", + "block.minecraft.nether_quartz_ore.prospected": "δΈ‹η•ŒηŸ³θ‹±", + "block.beneath.haunted_spike": "εΉ½ι­‚ε°–εˆΊ", + "block.beneath.glowstone_spike": "θž’ηŸ³ε°–εˆΊ", + "block.beneath.nether_pebble": "δΈ‹η•Œε²©ε΅ηŸ³", + "block.beneath.sulfur": "η‘«η£Ί", + "block.beneath.crop.crimson_roots": "η·‹η΄…θŒη΄’", + "item.beneath.seeds.crimson_roots": "η·‹η΄…θŒη΄’η¨ε­", + "block.beneath.crop.ghost_pepper": "εΉ½ιˆζ€’", + "item.beneath.seeds.ghost_pepper": "εΉ½ιˆζ€’η¨ε­", + "block.beneath.crop.gleamflower": "η‘©ε…‰θŠ±", + "item.beneath.seeds.gleamflower": "η‘©ε…‰θŠ±η¨ε­", + "block.beneath.crop.nether_wart": "δΈ‹η•Œη–™η˜©", + "item.beneath.seeds.nether_wart": "δΈ‹η•Œη–™η˜©η¨ε­", + "block.beneath.crop.warped_roots": "θ©­η•°θŒη΄’", + "item.beneath.seeds.warped_roots": "θ©­η•°θŒη΄’η¨ε­", + "block.beneath.gleamflower": "η‘©ε…‰θŠ±", + "block.beneath.burpflower": "ζ‰“ε—θŠ±", + "block.beneath.unposter": "θ˜‘θ‡εŸΉθ‚²ζ‘Ά", + "block.beneath.hellforge": "εœ°η„η†”ηˆ", + "block.beneath.hellforge_side": "εœ°η„η†”ηˆ", + "block.beneath.soul_farmland": "ιˆι­‚θ€•εœ°", + "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.cobblerack": "卡石岩", + "block.beneath.fungal_cobblerack": "菌硲卡石岩", + "block.beneath.warped_thatch": "θ©­η•°δΉΎθ‰ε‘Š", + "block.beneath.crimson_thatch": "η·‹η΄…δΉΎθ‰ε‘Š", + "block.beneath.hellbricks": "εœ°η„η£š", + "tfc.recipe.barrel.tfc.barrel.mortar": "η ‚ζΌΏ", + "block.beneath.wood.planks.hanging_sign.bismuth_bronze.warped": "ι‰ι’ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.bismuth_bronze.warped": "η‰†ι’ι‰ι’ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.black_bronze.warped": "ι»‘ι’ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.black_bronze.warped": "η‰†ι’ι»‘ι’ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.bronze.warped": "ι’ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.bronze.warped": "η‰†ι’ι’ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.copper.warped": "ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.copper.warped": "η‰†ι’ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.wrought_iron.warped": "ι›ι΅θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.wrought_iron.warped": "η‰†ι’ι›ι΅θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.steel.warped": "ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.steel.warped": "η‰†ι’ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.black_steel.warped": "ι»‘ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.black_steel.warped": "η‰†ι’ι»‘ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.blue_steel.warped": "θ—ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.blue_steel.warped": "η‰†ι’θ—ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.hanging_sign.red_steel.warped": "η΄…ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.planks.wall_hanging_sign.red_steel.warped": "η‰†ι’η΄…ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.bismuth_bronze.warped": "ι‰ι’ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.black_bronze.warped": "ι»‘ι’ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.bronze.warped": "ι’ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.copper.warped": "ιŠ…θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.wrought_iron.warped": "ι›ι΅θ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.steel.warped": "ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.black_steel.warped": "ι»‘ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.blue_steel.warped": "θ—ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "item.beneath.wood.hanging_sign.red_steel.warped": "η΄…ι‹Όθ©­η•°ζœ¨ζ‡ΈζŽ›εΌε‘Šη€Ίη‰Œ", + "block.beneath.wood.barrel.warped": "θ©­η•°ζœ¨ε€§ζ‘Ά", + "block.beneath.wood.lectern.warped": "θ©­η•°ζœ¨θ¬›ε°", + "block.beneath.wood.scribing_table.warped": "θ©­η•°ζœ¨ζ›Έε―«ζ‘Œ", + "block.beneath.wood.sewing_table.warped": "θ©­η•°ζœ¨ηΈ«η΄‰ζ‘Œ", + "block.beneath.wood.jar_shelf.warped": "θ©­η•°ζœ¨η½η‰©ζ«ƒ", + "block.beneath.wood.axle.warped": "θ©­η•°ζœ¨ε‚³ε‹•θ»Έ", + "block.beneath.wood.bladed_axle.warped": "θ©­η•°ζœ¨θ‘‰η‰‡ε‚³ε‹•θ»Έ", + "block.beneath.wood.encased_axle.warped": "θ©­η•°ζœ¨ε°θ£ε‚³ε‹•θ»Έ", + "block.beneath.wood.clutch.warped": "θ©­η•°ζœ¨ι›’εˆε™¨", + "block.beneath.wood.gear_box.warped": "θ©­η•°ζœ¨ι½’θΌͺη±", + "block.beneath.wood.windmill.warped": "θ©­η•°ζœ¨ι’¨θ»Š", + "block.beneath.wood.water_wheel.warped": "θ©­η•°ζœ¨ζ°΄θ»Š", + "block.beneath.wood.planks.warped_door": "θ©­η•°ζœ¨ι–€", + "block.beneath.wood.planks.warped_trapdoor": "θ©­η•°ζœ¨εœ°ζΏι–€", + "block.beneath.wood.planks.warped_fence": "θ©­η•°ζœ¨ζŸ΅ζ¬„", + "block.beneath.wood.planks.warped_log_fence": "θ©­η•°ζœ¨εŽŸζœ¨ζŸ΅ζ¬„", + "block.beneath.wood.planks.warped_fence_gate": "θ©­η•°ζœ¨ζŸ΅ζ¬„ι–€", + "block.beneath.wood.planks.warped_button": "θ©­η•°ζœ¨ζŒ‰ιˆ•", + "block.beneath.wood.planks.warped_pressure_plate": "θ©­η•°ζœ¨ε£“εŠ›ζΏ", + "block.beneath.wood.planks.warped_slab": "θ©­η•°ζœ¨εŠη£š", + "block.beneath.wood.planks.warped_stairs": "θ©­η•°ζœ¨ιšŽζ’―", + "block.beneath.wood.sapling.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/beneath/textures/item/blackstone_pebble.png b/kubejs/assets/beneath/textures/item/blackstone_pebble.png new file mode 100644 index 000000000..76d7bc81b Binary files /dev/null and b/kubejs/assets/beneath/textures/item/blackstone_pebble.png differ diff --git a/kubejs/assets/betterend/blockstates/brimstone.json b/kubejs/assets/betterend/blockstates/brimstone.json new file mode 100644 index 000000000..8f26b4f6c --- /dev/null +++ b/kubejs/assets/betterend/blockstates/brimstone.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/brimstone_active" }, + { "model": "betterend:block/brimstone_active", "y": 180 }, + { "model": "betterend:block/brimstone_normal" }, + { "model": "betterend:block/brimstone_normal", "y": 180 } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/flavolite_pillar.json b/kubejs/assets/betterend/blockstates/flavolite_pillar.json new file mode 100644 index 000000000..e17d208b8 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/flavolite_pillar.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=y": { + "model": "betterend:block/flavolite_pillar" + }, + "axis=z": { + "model": "betterend:block/flavolite_pillar", + "x": 90 + }, + "axis=x": { + "model": "betterend:block/flavolite_pillar", + "x": 90, + "y": 90 + } + } +} diff --git a/kubejs/assets/betterend/blockstates/hydralux.json b/kubejs/assets/betterend/blockstates/hydralux.json deleted file mode 100644 index b8a984fc7..000000000 --- a/kubejs/assets/betterend/blockstates/hydralux.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "variants": { - "shape=flower_big_bottom": [ - { "model": "betterend:block/hydralux_flower_big_1_bottom" }, - { "model": "betterend:block/hydralux_flower_big_2_bottom" }, - { "model": "betterend:block/hydralux_flower_big_3_bottom" } - ], - "shape=flower_big_top": { "model": "betterend:block/hydralux_flower_big_top" }, - "shape=flower_small_bottom": { "model": "betterend:block/hydralux_flower_small_bottom" }, - "shape=flower_small_top": { "model": "betterend:block/hydralux_flower_small_top" }, - "shape=vine": { "model": "betterend:block/hydralux_vine" }, - "shape=roots": { "model": "betterend:block/hydralux_roots" } - } -} diff --git a/kubejs/assets/betterend/blockstates/hydralux_large.json b/kubejs/assets/betterend/blockstates/hydralux_large.json new file mode 100644 index 000000000..98fc5ef12 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/hydralux_large.json @@ -0,0 +1,13 @@ +{ + "variants": { + "height=0": { "model": "betterend:block/hydralux_vine_bottom" }, + "height=1": { "model": "betterend:block/hydralux_vine" }, + "height=2": [ + { "model": "betterend:block/hydralux_flower_big_1_bottom" }, + { "model": "betterend:block/hydralux_flower_big_2_bottom" }, + { "model": "betterend:block/hydralux_flower_big_3_bottom" } + ], + "height=3": { "model": "betterend:block/hydralux_flower_big_top" }, + "height=4": { "model": "" } + } +} diff --git a/kubejs/assets/betterend/blockstates/hydralux_sapling.json b/kubejs/assets/betterend/blockstates/hydralux_sapling.json index f0841963e..0e079837e 100644 --- a/kubejs/assets/betterend/blockstates/hydralux_sapling.json +++ b/kubejs/assets/betterend/blockstates/hydralux_sapling.json @@ -1,8 +1,10 @@ { "variants": { - "age=0": { "model": "betterend:block/hydralux_sapling_1" }, - "age=1": { "model": "betterend:block/hydralux_sapling_2" }, - "age=2": { "model": "betterend:block/hydralux_sapling_3" }, - "age=3": { "model": "betterend:block/hydralux_sapling_4" } + "": [ + { "model": "betterend:block/hydralux_sapling_1" }, + { "model": "betterend:block/hydralux_sapling_2" }, + { "model": "betterend:block/hydralux_sapling_3" }, + { "model": "betterend:block/hydralux_sapling_4" } + ] } } diff --git a/kubejs/assets/betterend/blockstates/hydralux_small.json b/kubejs/assets/betterend/blockstates/hydralux_small.json new file mode 100644 index 000000000..ba7bbcf0e --- /dev/null +++ b/kubejs/assets/betterend/blockstates/hydralux_small.json @@ -0,0 +1,9 @@ +{ + "variants": { + "height=0": { "model": "betterend:block/hydralux_vine_bottom" }, + "height=1": { "model": "betterend:block/hydralux_vine" }, + "height=2": { "model": "betterend:block/hydralux_flower_small_bottom" }, + "height=3": { "model": "betterend:block/hydralux_flower_small_top" }, + "height=4": { "model": "" } + } +} diff --git a/kubejs/assets/betterend/blockstates/hydrothermal_vent.json b/kubejs/assets/betterend/blockstates/hydrothermal_vent.json new file mode 100644 index 000000000..5ff455e55 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/hydrothermal_vent.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/hydrothermal_vent" }, + { "model": "betterend:block/hydrothermal_vent", "y": 90 }, + { "model": "betterend:block/hydrothermal_vent", "y": 180 }, + { "model": "betterend:block/hydrothermal_vent", "y": 270 } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/lacugrove_bark.json b/kubejs/assets/betterend/blockstates/lacugrove_bark.json new file mode 100644 index 000000000..11e6da40d --- /dev/null +++ b/kubejs/assets/betterend/blockstates/lacugrove_bark.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/lacugrove_bark", "weight": 5 }, + { "model": "betterend:block/lacugrove_bark_2", "weight": 5 }, + { "model": "betterend:block/lacugrove_bark_3" }, + { "model": "betterend:block/lacugrove_bark_4" } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/lucernia_bark.json b/kubejs/assets/betterend/blockstates/lucernia_bark.json new file mode 100644 index 000000000..8faa8f4d7 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/lucernia_bark.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/lucernia_bark", "weight": 6 }, + { "model": "betterend:block/lucernia_bark_2" }, + { "model": "betterend:block/lucernia_bark_3", "weight": 6 }, + { "model": "betterend:block/lucernia_bark_4" } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/sandy_jadestone_pillar.json b/kubejs/assets/betterend/blockstates/sandy_jadestone_pillar.json new file mode 100644 index 000000000..f7fda332b --- /dev/null +++ b/kubejs/assets/betterend/blockstates/sandy_jadestone_pillar.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=y": { + "model": "betterend:block/sandy_jadestone_pillar" + }, + "axis=z": { + "model": "betterend:block/sandy_jadestone_pillar", + "x": 90 + }, + "axis=x": { + "model": "betterend:block/sandy_jadestone_pillar", + "x": 90, + "y": 90 + } + } +} diff --git a/kubejs/assets/betterend/blockstates/shadow_plant.json b/kubejs/assets/betterend/blockstates/shadow_plant.json new file mode 100644 index 000000000..08fb1caee --- /dev/null +++ b/kubejs/assets/betterend/blockstates/shadow_plant.json @@ -0,0 +1,12 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/shadow_plant_1" }, + { "model": "betterend:block/shadow_plant_2" }, + { "model": "betterend:block/shadow_plant_3" }, + { "model": "betterend:block/shadow_plant_4" }, + { "model": "betterend:block/shadow_plant_5" }, + { "model": "betterend:block/shadow_plant_6" } + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/blockstates/sulphur_crystal.json b/kubejs/assets/betterend/blockstates/sulphur_crystal.json new file mode 100644 index 000000000..060336fc7 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/sulphur_crystal.json @@ -0,0 +1,9 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/sulphur_crystal_0" }, + { "model": "betterend:block/sulphur_crystal_1" }, + { "model": "betterend:block/sulphur_crystal_2" } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/sulphuric_rock.json b/kubejs/assets/betterend/blockstates/sulphuric_rock.json new file mode 100644 index 000000000..40d81957e --- /dev/null +++ b/kubejs/assets/betterend/blockstates/sulphuric_rock.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/sulphuric_rock" } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/sulphuric_rock_pillar.json b/kubejs/assets/betterend/blockstates/sulphuric_rock_pillar.json new file mode 100644 index 000000000..ca6a9e00c --- /dev/null +++ b/kubejs/assets/betterend/blockstates/sulphuric_rock_pillar.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=y": { + "model": "betterend:block/sulphuric_rock_pillar" + }, + "axis=z": { + "model": "betterend:block/sulphuric_rock_pillar", + "x": 90 + }, + "axis=x": { + "model": "betterend:block/sulphuric_rock_pillar", + "x": 90, + "y": 90 + } + } +} diff --git a/kubejs/assets/betterend/blockstates/tube_worm.json b/kubejs/assets/betterend/blockstates/tube_worm.json new file mode 100644 index 000000000..69543e40d --- /dev/null +++ b/kubejs/assets/betterend/blockstates/tube_worm.json @@ -0,0 +1,24 @@ +{ + "variants": { + "facing=north": [ + { "model": "betterend:block/tube_worm_01", "y": 180 }, + { "model": "betterend:block/tube_worm_02", "y": 180 }, + { "model": "betterend:block/tube_worm_03", "y": 180 } + ], + "facing=south": [ + { "model": "betterend:block/tube_worm_01" }, + { "model": "betterend:block/tube_worm_02" }, + { "model": "betterend:block/tube_worm_03" } + ], + "facing=east": [ + { "model": "betterend:block/tube_worm_01", "y": 270 }, + { "model": "betterend:block/tube_worm_02", "y": 270 }, + { "model": "betterend:block/tube_worm_03", "y": 270 } + ], + "facing=west": [ + { "model": "betterend:block/tube_worm_01", "y": 90 }, + { "model": "betterend:block/tube_worm_02", "y": 90 }, + { "model": "betterend:block/tube_worm_03", "y": 90 } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/twisted_vine.json b/kubejs/assets/betterend/blockstates/twisted_vine.json index 718311e23..b713a16a7 100644 --- a/kubejs/assets/betterend/blockstates/twisted_vine.json +++ b/kubejs/assets/betterend/blockstates/twisted_vine.json @@ -1,13 +1,15 @@ { "variants": { - "shape=top": { "model": "betterend:block/twisted_vine_top" }, - "shape=middle": [ + "height=0": { "model": "betterend:block/twisted_vine_top" }, + "height=1": [ { "model": "betterend:block/twisted_vine_middle_1" }, { "model": "betterend:block/twisted_vine_middle_2" } ], - "shape=bottom": [ + "height=2": [ { "model": "betterend:block/twisted_vine_bottom_1" }, { "model": "betterend:block/twisted_vine_bottom_2" } - ] + ], + "height=3": { "model": "" }, + "height=4": { "model": "" } } } diff --git a/kubejs/assets/betterend/lang/en_us.json b/kubejs/assets/betterend/lang/en_us.json index 7ebc3612a..11244c122 100644 --- a/kubejs/assets/betterend/lang/en_us.json +++ b/kubejs/assets/betterend/lang/en_us.json @@ -14,6 +14,7 @@ "block.betterend.bolux_mushroom": "Bolux Mushroom Colony", "block.betterend.bolux_mushroom_wild": "Wild Bolux Mushroom Colony", "block.betterend.bolux_mushroom_dead": "Dead Bolux Mushroom Colony", + "block.betterend.brimstone": "Brimstone", "block.betterend.bushy_grass": "Novagrass", "block.betterend.bulb_moss": "Bulb Moss", "block.betterend.cave_bush": "Carmine Lamella", @@ -45,13 +46,21 @@ "block.betterend.filalux_wings": "Filalux Wings", "block.betterend.flamaea": "Flamaea Mushroom", "block.betterend.flammalix": "Flammalix Mushroom", + "block.betterend.flavolite": "Raw Leucitite", + "block.betterend.flavolite_bricks": "Leucitite Bricks", + "block.betterend.flavolite_pillar": "Leucitite Pillar", + "block.betterend.flavolite_polished": "Polished Leucitite", + "block.betterend.flavolite_tiles": "Leucitite Tiles", "block.betterend.fracturn": "Fracturn", "block.betterend.glacian_hymenophore": "Glacian Hymenophore", "block.betterend.globulagus": "Globulagus", - "block.betterend.hydralux": "Hydralux", + "block.betterend.hydrothermal_vent": "Thermal Vent", + "block.betterend.hydralux_small": "Hydralux", + "block.betterend.hydralux_large": "Hydralux", "block.betterend.hydralux_sapling": "Hydralux Sprout", "block.betterend.inflexia": "Inflexia", "block.betterend.lacugrove": "Lacugrove Algae", + "block.betterend.lacugrove_bark": "Raw Adakite", "block.betterend.lamellarium": "Lamellarium", "block.betterend.lanceleaf": "Lanceleaf", "block.betterend.lanceleaf_small": "Lanceleaf Dagger", @@ -59,6 +68,7 @@ "block.betterend.lucernia_leaves": "Lucernia Lamella", "block.betterend.lucernia_leaves_fallen": "Small Lucernia Lamella", "block.betterend.lucernia_outer_leaves": "Lucernia Hyphae", + "block.betterend.lucernia_bark": "Fiendish Spire", "block.betterend.lutebus": "Lutebus", "block.betterend.magnula": "Magnula", "block.betterend.nightshade_moss": "Nox Moss", @@ -68,15 +78,28 @@ "block.betterend.rubinea": "Rubinea", "block.betterend.ruscus": "Ruscus Grass", "block.betterend.salteago": "Salteago", + "block.betterend.sandy_jadestone": "Raw Lamproite", + "block.betterend.sandy_jadestone_bricks": "Lamproite Bricks", + "block.betterend.sandy_jadestone_pillar": "Lamproite Pillar", + "block.betterend.sandy_jadestone_polished": "Polished Lamproite", + "block.betterend.sandy_jadestone_tiles": "Lamproite Tiles", "block.betterend.selagine": "Selagine", "block.betterend.shadow_berry": "Nox Berries", "block.betterend.shadow_berry_wild": "Wild Nox Berries", "block.betterend.shadow_berry_dead": "Dead Nox Berries", + "block.betterend.shadow_plant": "Blackened Ashgrass", "block.betterend.small_amaranita_mushroom": "Small Amaranita Mushroom", + "block.betterend.sulphur_crystal": "Sulfur Crystal", + "block.betterend.sulphuric_rock": "Raw Ignimbrite", + "block.betterend.sulphuric_rock_bricks": "Ignimbrite Bricks", + "block.betterend.sulphuric_rock_pillar": "Ignimbrite Pillar", + "block.betterend.sulphuric_rock_polished": "Polished Ignimbrite", + "block.betterend.sulphuric_rock_tiles": "Ignimbrite Tiles", + "block.betterend.tube_worm": "Tube Worm", "block.betterend.twisted_moss": "Twisted Moss", "block.betterend.twisted_umbrella_moss": "Twisted Umbrella Moss", "block.betterend.twisted_umbrella_moss_tall": "Twisted Umbrella Moss", - "block.betterend.twisted_vine": "Twisted Vine", + "block.betterend.twisted_vine": "Carbonic Vine", "block.betterend.umbrella_moss": "Umbrella Moss", "block.betterend.umbrella_moss_tall": "Umbrella Moss", "block.betterend.vaiolush_fern": "Vaiolush Fern", diff --git a/kubejs/assets/betterend/lang/ja_jp.json b/kubejs/assets/betterend/lang/ja_jp.json new file mode 100644 index 000000000..e72e61194 --- /dev/null +++ b/kubejs/assets/betterend/lang/ja_jp.json @@ -0,0 +1,103 @@ +{ + "__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": "Aeridium", + "block.betterend.amaranita_stem": "Amaranita Stem", + "block.betterend.amber_grass": "Amber Grass", + "block.betterend.amber_root_wild": "Wild Amber Shoots", + "block.betterend.amber_root_dead": "Dead Amber Shoots", + "block.betterend.amber_root": "Amber Shoots", + "block.betterend.aurant_polypore": "Aurant Polypore", + "block.betterend.blooming_cooksonia": "Blooming Cooksonia", + "block.betterend.blossom_berry": "Blossom Berry", + "block.betterend.blossom_berry_wild": "Wild Blossom Berry", + "block.betterend.blossom_berry_dead": "Dead Blossom Berry", + "block.betterend.bolux_mushroom": "Bolux Mushroom Colony", + "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.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": "γƒ’γ‚«γƒͺγ‚«γƒœγƒγƒ£", + "block.betterend.cave_pumpkin_wild": "ι‡Žη”Ÿγγƒ’γ‚«γƒͺγ‚«γƒœγƒγƒ£γθŒŽ", + "block.betterend.cave_pumpkin_dead": "ζž―γ‚ŒγŸγƒ’γ‚«γƒͺγ‚«γƒœγƒγƒ£γθŒŽ", + "block.betterend.cave_pumpkin_plant": "γƒ’γ‚«γƒͺγ‚«γƒœγƒγƒ£γθŒŽ", + "block.betterend.charnia_cyan": "Cyan Charnia", + "block.betterend.charnia_green": "Green Charnia", + "block.betterend.charnia_light_blue": "Teal Charnia", + "block.betterend.charnia_orange": "Orange Charnia", + "block.betterend.charnia_purple": "Purple Charnia", + "block.betterend.charnia_red": "Red Charnia", + "block.betterend.chorus_grass": "Chorus Grass", + "block.betterend.chorus_lily": "Chorus Lily", + "block.betterend.chorus_mushroom": "Chalmie Mushroom Colony", + "block.betterend.chorus_mushroom_wild": "Wild Chalmie Mushroom Colony", + "block.betterend.chorus_mushroom_dead": "Dead Chalmie Mushroom Colony", + "block.betterend.clawfern": "Clawfern", + "block.betterend.crystal_grass": "Crystal Grass", + "block.betterend.end_lily": "Deimos Lily", + "block.betterend.end_lily_seed": "Deimos Lily Sprout", + "block.betterend.end_lotus_flower": "Phobos Lotus Flower", + "block.betterend.end_lotus_leaf": "Phobos Lotus Leaf", + "block.betterend.end_lotus_stem": "Phobos Lotus Stem", + "block.betterend.end_lotus_seed": "Phobos Lotus Sprout", + "block.betterend.filalux_wings": "Filalux Wings", + "block.betterend.flamaea": "Flamaea Mushroom", + "block.betterend.flammalix": "Flammalix Mushroom", + "block.betterend.fracturn": "Fracturn", + "block.betterend.glacian_hymenophore": "Glacian Hymenophore", + "block.betterend.globulagus": "Globulagus", + "block.betterend.hydralux_small": "Hydralux", + "block.betterend.hydralux_large": "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_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", + "block.betterend.orango": "Orango", + "block.betterend.pond_anemone": "Anemone", + "block.betterend.purple_polypore": "Purple Polypore", + "block.betterend.rubinea": "Rubinea", + "block.betterend.ruscus": "Ruscus Grass", + "block.betterend.salteago": "Salteago", + "block.betterend.selagine": "Selagine", + "block.betterend.shadow_berry": "Nox Berries", + "block.betterend.shadow_berry_wild": "Wild Nox Berries", + "block.betterend.shadow_berry_dead": "Dead Nox Berries", + "block.betterend.small_amaranita_mushroom": "Small Amaranita Mushroom", + "block.betterend.twisted_moss": "Twisted Moss", + "block.betterend.twisted_umbrella_moss": "Twisted Umbrella Moss", + "block.betterend.twisted_umbrella_moss_tall": "Twisted Umbrella Moss", + "block.betterend.twisted_vine": "Twisted Vine", + "block.betterend.umbrella_moss": "Umbrella Moss", + "block.betterend.umbrella_moss_tall": "Umbrella Moss", + "block.betterend.vaiolush_fern": "Vaiolush Fern", + "item.betterend.amber_root_product": "Amber Shoots", + "item.betterend.amber_root_seeds": "Amber Shoots Seeds", + "item.betterend.blossom_berry_product": "Blossom Berry", + "item.betterend.blossom_berry_seeds": "Blossom Berry Seeds", + "item.betterend.bolux_mushroom_cooked": "Cooked Bolux Mushroom", + "item.betterend.bolux_mushroom_product": "Bolux Mushroom", + "item.betterend.bolux_mushroom_seeds": "Bolux Mushroom Spores", + "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": "Cooked Chalmie Mushroom", + "item.betterend.chorus_mushroom_product": "Chalmie Mushroom", + "item.betterend.chorus_mushroom_seeds": "Chalmie Mushroom Spores", + "item.betterend.shadow_berry_cooked": "Cooked Nox Berry", + "item.betterend.shadow_berry_product": "Nox Berry", + "item.betterend.shadow_berry_seeds": "Nox Berry Seeds" +} \ No newline at end of file diff --git a/kubejs/assets/betterend/lang/ru_ru.json b/kubejs/assets/betterend/lang/ru_ru.json index d37b6161a..144183629 100644 --- a/kubejs/assets/betterend/lang/ru_ru.json +++ b/kubejs/assets/betterend/lang/ru_ru.json @@ -15,12 +15,14 @@ "block.betterend.bolux_mushroom_wild": "Дикорастущая колония Π³Ρ€ΠΈΠ±ΠΎΠ² болюкс", "block.betterend.bolux_mushroom_dead": "Погибшая колония Π³Ρ€ΠΈΠ±ΠΎΠ² болюкс", "block.betterend.bushy_grass": "Новотрава", - "block.betterend.cave_bush": "ΠšΠ°Ρ€ΠΌΠΈΠ½ΠΎΠ²Ρ‹ΠΉ куст", + "block.betterend.bulb_moss": "Π›ΡƒΠΊΠΎΠ²ΠΈΡ‡Π½Ρ‹ΠΉ ΠΌΠΎΡ…", + "block.betterend.cave_bush": "ΠšΠ°Ρ€ΠΌΠΈΠ½ΠΎΠ²Π°Ρ Π»Π°ΠΌΠ΅Π»Π»Π°", + "block.betterend.cave_bush_fallen": "МалСнькая карминовая Π»Π°ΠΌΠ΅Π»Π»Π°", "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.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": "Голубая чарния", @@ -44,14 +46,20 @@ "block.betterend.flamaea": "Π“Ρ€ΠΈΠ± фламСя", "block.betterend.flammalix": "Π“Ρ€ΠΈΠ± фламмаликс", "block.betterend.fracturn": "Π€Ρ€Π°ΠΊΡ‚ΡŽΡ€Π½", + "block.betterend.glacian_hymenophore": "ГласиСвый Π³ΠΈΠΌΠ΅Π½ΠΎΡ„ΠΎΡ€", "block.betterend.globulagus": "Глобулагус", - "block.betterend.hydralux": "Π“ΠΈΠ΄Ρ€Π°Π»ΡŽΠΊΡ", + "block.betterend.hydralux_small": "Π“ΠΈΠ΄Ρ€Π°Π»ΡŽΠΊΡ", + "block.betterend.hydralux_large": "Π“ΠΈΠ΄Ρ€Π°Π»ΡŽΠΊΡ", "block.betterend.hydralux_sapling": "ΠžΡ‚Ρ€ΠΎΡΡ‚ΠΎΠΊ Π³ΠΈΠ΄Ρ€Π°Π»ΡŽΠΊΡΠ°", "block.betterend.inflexia": "Π˜Π½Ρ„Π»Π΅ΠΊΡΠΈΡ", + "block.betterend.lacugrove": "Водоросли ΠΎΠ·Ρ‘Ρ€Π½ΠΎΠ³ΠΎ ΠΌΠ°Π½Π³Ρ€Π°", "block.betterend.lamellarium": "Π›Π°ΠΌΠ΅Π»Π»Π°Ρ€ΠΈΡƒΠΌ", "block.betterend.lanceleaf": "ЛанцСлист", "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": "ΠœΠΎΡ… нокс", @@ -61,6 +69,7 @@ "block.betterend.rubinea": "РубинСя", "block.betterend.ruscus": "Π’Ρ€Π°Π²Π° руксус", "block.betterend.salteago": "Π‘Π°Π»ΡŒΡ‚Π΅Π°Π³ΠΎ", + "block.betterend.selagine": "Π‘Π΅Π»Π°Π³ΠΈΠ½Π΅Π»Π»Π°", "block.betterend.shadow_berry": "Нокс-ягода", "block.betterend.shadow_berry_wild": "Дикорастущая нокс-ягода", "block.betterend.shadow_berry_dead": "Погибшая нокс-ягода", @@ -79,12 +88,12 @@ "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.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": "Π‘ΠΏΠΎΡ€Ρ‹ Π³Ρ€ΠΈΠ±Π° Ρ‡Π°ΡˆΡ†Π΅Π»ΠΈΡ", diff --git a/kubejs/assets/betterend/lang/uk_ua.json b/kubejs/assets/betterend/lang/uk_ua.json index f7c87b9c3..40768fd35 100644 --- a/kubejs/assets/betterend/lang/uk_ua.json +++ b/kubejs/assets/betterend/lang/uk_ua.json @@ -14,6 +14,7 @@ "block.betterend.bolux_mushroom": "ΠšΠΎΠ»ΠΎΠ½Ρ–Ρ Π³Ρ€ΠΈΠ±Ρ–Π² Болукса", "block.betterend.bolux_mushroom_wild": "Π”ΠΈΠΊΠ° колонія Π³Ρ€ΠΈΠ±Ρ–Π² Болукса", "block.betterend.bolux_mushroom_dead": "ΠœΠ΅Ρ€Ρ‚Π²Π° колонія Π³Ρ€ΠΈΠ±Ρ–Π² Болукса", + "block.betterend.brimstone": "Брімстоун", "block.betterend.bushy_grass": "Новаграс", "block.betterend.bulb_moss": "Π›Π°ΠΌΠΏΠΎΠ²ΠΈΠΉ ΠΌΠΎΡ…", "block.betterend.cave_bush": "ΠšΠ°Ρ€ΠΌΠΈΠ½ΠΎΠ²Π° Π›Π°ΠΌΠ΅Π»ΡŒ", @@ -45,13 +46,21 @@ "block.betterend.filalux_wings": "ΠšΡ€ΠΈΠ»Π° Π€Ρ–Π»Π°Π»ΡŽΠΊΡΠ°", "block.betterend.flamaea": "Π“Ρ€ΠΈΠ± Π€Π»Π°ΠΌΠ°Π΅Π°", "block.betterend.flammalix": "Π“Ρ€ΠΈΠ± Ѐламмалікс", + "block.betterend.flavolite": "НСоброблСний Π»Π΅ΡƒΡ†ΠΈΡ‚ΠΈΡ‚", + "block.betterend.flavolite_bricks": "Π›Π΅ΡƒΡ†ΠΈΡ‚ΠΈΡ‚ΠΎΠ²Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", + "block.betterend.flavolite_pillar": "Π›Π΅ΡƒΡ†ΠΈΡ‚ΠΈΡ‚ΠΎΠ²ΠΈΠΉ стовп", + "block.betterend.flavolite_polished": "ΠŸΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½ΠΈΠΉ Π»Π΅ΡƒΡ†ΠΈΡ‚ΠΈΡ‚", + "block.betterend.flavolite_tiles": "Π›Π΅ΡƒΡ†ΠΈΡ‚ΠΈΡ‚ΠΎΠ²Ρ– ΠΏΠ»ΠΈΡ‚ΠΊΠΈ", "block.betterend.fracturn": "Π€Ρ€Π°ΠΊΡ‚ΡƒΡ€Π½", "block.betterend.glacian_hymenophore": "Π“Ρ–ΠΌΠ΅Π½ΠΎΡ„ΠΎΡ€ Π»Π°Ρ†Ρ–Π°Π½Π°", "block.betterend.globulagus": "Глобулагус", - "block.betterend.hydralux": "Π“Ρ–Π΄Ρ€Π°Π»ΡŽΠΊΡ", + "block.betterend.hydrothermal_vent": "Π’Π΅Ρ€ΠΌΠ°Π»ΡŒΠ½ΠΈΠΉ ΠΆΠ΅Ρ€Π»ΠΎ", + "block.betterend.hydralux_large": "Π“Ρ–Π΄Ρ€Π°Π»ΡŽΠΊΡ", + "block.betterend.hydralux_small": "Π“Ρ–Π΄Ρ€Π°Π»ΡŽΠΊΡ", "block.betterend.hydralux_sapling": "ΠŸΠ°Ρ€ΠΎΡΡ‚ΠΎΠΊ Π“Ρ–Π΄Ρ€Π°Π»ΡŽΠΊΡΠ°", "block.betterend.inflexia": "ІнфлСксія", "block.betterend.lacugrove": "Водорості Π›Π°ΠΊΡƒΠ³Ρ€ΠΎΡƒΠ²", + "block.betterend.lacugrove_bark": "НСоброблСний Π°Π΄Π°ΠΊΡ–Ρ‚", "block.betterend.lamellarium": "Π›Π°ΠΌΠ΅Π»Π»Π°Ρ€Ρ–ΡƒΠΌ", "block.betterend.lanceleaf": "ЛанцСлист", "block.betterend.lanceleaf_small": "КиндТал списолистий", @@ -59,6 +68,7 @@ "block.betterend.lucernia_leaves": "Π›Π°ΠΌΠ΅Π»ΡŒ Π›ΡŽΡ†Π΅Ρ€Π½Ρ–Ρ—", "block.betterend.lucernia_leaves_fallen": "Мала Π›Π°ΠΌΠ΅Π»ΡŒ Π›ΡŽΡ†Π΅Ρ€Π½Ρ–Ρ—", "block.betterend.lucernia_outer_leaves": "Π“Ρ–Ρ„ΠΈ Π›ΡŽΡ†Π΅Ρ€Π½Ρ–Ρ—", + "block.betterend.lucernia_bark": "Π”ΠΈΡΠ²ΠΎΠ»ΡŒΡΡŒΠΊΠΈΠΉ шпиль", "block.betterend.lutebus": "ЛутСбус", "block.betterend.magnula": "ΠœΠ°Π³Π½ΡƒΠ»Π°", "block.betterend.nightshade_moss": "ΠœΠΎΡ… Нокс", @@ -68,15 +78,27 @@ "block.betterend.rubinea": "Π ΡƒΠ±Ρ–Π½Π΅Π°", "block.betterend.ruscus": "Π’Ρ€Π°Π²Π° Рускус", "block.betterend.salteago": "Π‘Π°Π»ΡŒΡ‚Π΅Π°Π³ΠΎ", + "block.betterend.sandy_jadestone": "НСоброблСний Π»Π°ΠΌΠΏΡ€ΠΎΡ—Ρ‚", + "block.betterend.sandy_jadestone_bricks": "Π›Π°ΠΌΠΏΡ€ΠΎΡ—Ρ‚ΠΎΠ²Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", + "block.betterend.sandy_jadestone_pillar": "Π›Π°ΠΌΠΏΡ€ΠΎΡ—Ρ‚ΠΎΠ²ΠΈΠΉ стовп", + "block.betterend.sandy_jadestone_polished": "ΠŸΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½ΠΈΠΉ Π»Π°ΠΌΠΏΡ€ΠΎΡ—Ρ‚", + "block.betterend.sandy_jadestone_tiles": "Π›Π°ΠΌΠΏΡ€ΠΎΡ—Ρ‚ΠΎΠ²Ρ– ΠΏΠ»ΠΈΡ‚ΠΊΠΈ", "block.betterend.selagine": "Π‘Π΅Π»Π°Π³Ρ–Π½Π°", "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.sulphur_crystal": "Π‘Ρ–Ρ€Ρ‡Π°Π½ΠΈΠΉ кристал", + "block.betterend.sulphuric_rock": "НСоброблСний Ρ–Π³Π½Ρ–ΠΌΠ±Ρ€ΠΈΡ‚", + "block.betterend.sulphuric_rock_bricks": "Π†Π³Π½Ρ–ΠΌΠ±Ρ€ΠΈΡ‚ΠΎΠ²Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", + "block.betterend.sulphuric_rock_pillar": "Π†Π³Π½Ρ–ΠΌΠ±Ρ€ΠΈΡ‚ΠΎΠ²ΠΈΠΉ стовп", + "block.betterend.sulphuric_rock_polished": "ΠŸΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½ΠΈΠΉ Ρ–Π³Π½Ρ–ΠΌΠ±Ρ€ΠΈΡ‚", + "block.betterend.sulphuric_rock_tiles": "Π†Π³Π½Ρ–ΠΌΠ±Ρ€ΠΈΡ‚ΠΎΠ²Ρ– ΠΏΠ»ΠΈΡ‚ΠΊΠΈ", + "block.betterend.tube_worm": "Врубчастий Ρ…Ρ€ΠΎΠ±Π°ΠΊ", + "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": "ΠŸΠ°ΠΏΠΎΡ€ΠΎΡ‚ΡŒ Π’Π°ΠΉΠΎΠ»Π°Ρˆ", diff --git a/kubejs/assets/betterend/lang/zh_cn.json b/kubejs/assets/betterend/lang/zh_cn.json index d0ecd9550..40f9cd8f7 100644 --- a/kubejs/assets/betterend/lang/zh_cn.json +++ b/kubejs/assets/betterend/lang/zh_cn.json @@ -14,6 +14,7 @@ "block.betterend.bolux_mushroom": "ζ³’ι²ε…‹ζ–―θŒδΈ›", "block.betterend.bolux_mushroom_wild": "ι‡Žη”Ÿζ³’ι²ε…‹ζ–―θŒδΈ›", "block.betterend.bolux_mushroom_dead": "ζž―θŽηš„ζ³’ι²ε…‹ζ–―θŒδΈ›", + "block.betterend.brimstone": "瑫磺石", "block.betterend.bushy_grass": "ζ–°ζ˜Ÿθ‰", "block.betterend.bulb_moss": "ηƒθŒŽθ‹”", "block.betterend.cave_bush": "ζœ±ηΊ’η“£εΆ", @@ -45,13 +46,21 @@ "block.betterend.filalux_wings": "丝光翅叢", "block.betterend.flamaea": "焰心菇", "block.betterend.flammalix": "焰鑢菇", + "block.betterend.flavolite": "ε€©η„Άη™½ζ¦΄ηŸ³ε²©", + "block.betterend.flavolite_bricks": "η™½ζ¦΄ηŸ³ε²©η –", + "block.betterend.flavolite_pillar": "η™½ζ¦΄ηŸ³ε²©ζŸ±", + "block.betterend.flavolite_polished": "η£¨εˆΆη™½ζ¦΄ηŸ³ε²©", + "block.betterend.flavolite_tiles": "η™½ζ¦΄ηŸ³ε²©η“¦", "block.betterend.fracturn": "η’Žζ™Άθ•¨", "block.betterend.glacian_hymenophore": "霜原菌耢", "block.betterend.globulagus": "ηƒε›Šθ—»", - "block.betterend.hydralux": "ζ°΄ε…‰θŽ²", + "block.betterend.hydrothermal_vent": "热泉喷口", + "block.betterend.hydralux_small": "ζ°΄ε…‰θŽ²", + "block.betterend.hydralux_large": "ζ°΄ε…‰θŽ²", "block.betterend.hydralux_sapling": "ζ°΄ε…‰θŽ²θ‹—", "block.betterend.inflexia": "ζ›²ζžθ‰", "block.betterend.lacugrove": "ζ³Šζž—ζœ¨ζ΅·θ—»", + "block.betterend.lacugrove_bark": "ε€©η„ΆεŸƒθΎΎε…‹ε²©", "block.betterend.lamellarium": "叠层藻", "block.betterend.lanceleaf": "ηŸ›εΆθ‰", "block.betterend.lanceleaf_small": "ηŸ›εΆεˆƒ", @@ -59,6 +68,7 @@ "block.betterend.lucernia_leaves": "ε’η‘Ÿε°ΌδΊšη“£εΆ", "block.betterend.lucernia_leaves_fallen": "ε°εž‹ε’η‘Ÿε°ΌδΊšη“£εΆ", "block.betterend.lucernia_outer_leaves": "ε’η‘Ÿε°ΌδΊšθŒζ Έ", + "block.betterend.lucernia_bark": "ζ‹εΏε°–εˆΊ", "block.betterend.lutebus": "琉特草", "block.betterend.magnula": "磁光草", "block.betterend.nightshade_moss": "ε€œε½±θ‹”", @@ -68,15 +78,28 @@ "block.betterend.rubinea": "ηΊ’ηŽ‰θ‰", "block.betterend.ruscus": "假叢草", "block.betterend.salteago": "盐晢草", + "block.betterend.sandy_jadestone": "ε€©η„Άη…Œζ–‘ε²©", + "block.betterend.sandy_jadestone_bricks": "η…Œζ–‘ε²©η –", + "block.betterend.sandy_jadestone_pillar": "η…Œζ–‘ε²©ζŸ±", + "block.betterend.sandy_jadestone_polished": "η£¨εˆΆη…Œζ–‘ε²©", + "block.betterend.sandy_jadestone_tiles": "η…Œζ–‘ε²©η“¦", "block.betterend.selagine": "卷柏", "block.betterend.shadow_berry": "ε€œε½±ζ΅†ζžœ", "block.betterend.shadow_berry_wild": "ι‡Žη”Ÿε€œε½±ζ΅†ζžœ", "block.betterend.shadow_berry_dead": "ζž―θŽηš„ε€œε½±ζ΅†ζžœ", + "block.betterend.shadow_plant": "η„¦ι»‘ηš„η°θ‰", "block.betterend.small_amaranita_mushroom": " θ΅€ζ˜Ÿι’θŒŽθ‡", + "block.betterend.sulphur_crystal": "瑫磺晢体", + "block.betterend.sulphuric_rock": "倩焢熔灰岩", + "block.betterend.sulphuric_rock_bricks": "熔灰岩砖", + "block.betterend.sulphuric_rock_pillar": "η†”η°ε²©ζŸ±", + "block.betterend.sulphuric_rock_polished": "η£¨εˆΆη†”η°ε²©", + "block.betterend.sulphuric_rock_tiles": "熔灰岩瓦", + "block.betterend.tube_worm": "η‘θ •θ™«", "block.betterend.twisted_moss": "ηΌ η»“θ‹”", "block.betterend.twisted_umbrella_moss": "ηΌ η»“δΌžθ‹”", "block.betterend.twisted_umbrella_moss_tall": "ι«˜ηΌ η»“δΌžθ‹”", - "block.betterend.twisted_vine": "ηΌ η»“θ—€", + "block.betterend.twisted_vine": "η’³ι…Έθ—€", "block.betterend.umbrella_moss": "δΌžθ‹”", "block.betterend.umbrella_moss_tall": "ι«˜δΌžθ‹”", "block.betterend.vaiolush_fern": "幽蓝蕨", diff --git a/kubejs/assets/betterend/lang/zh_tw.json b/kubejs/assets/betterend/lang/zh_tw.json new file mode 100644 index 000000000..e37a790a2 --- /dev/null +++ b/kubejs/assets/betterend/lang/zh_tw.json @@ -0,0 +1,123 @@ +{ + "__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.brimstone": "瑫磺石", + "block.betterend.bushy_grass": "ζ–°ζ˜Ÿθ‰", + "block.betterend.bulb_moss": "ηƒθŽ–θ‹”", + "block.betterend.cave_bush": "ζœ±η΄…η“£θ‘‰", + "block.betterend.cave_bush_fallen": "ε°εž‹ζœ±η΄…η“£θ‘‰", + "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.flavolite": "ε€©η„Άη™½ζ¦΄ηŸ³ε²©", + "block.betterend.flavolite_bricks": "η™½ζ¦΄ηŸ³ε²©η£š", + "block.betterend.flavolite_pillar": "η™½ζ¦΄ηŸ³ε²©ζŸ±", + "block.betterend.flavolite_polished": "ζ‹‹ε…‰η™½ζ¦΄ηŸ³ε²©", + "block.betterend.flavolite_tiles": "η™½ζ¦΄ηŸ³ε²©η“¦", + "block.betterend.fracturn": "η’Žζ™Άθ•¨", + "block.betterend.glacian_hymenophore": "霜原菌耢", + "block.betterend.globulagus": "ηƒε›Šθ—»", + "block.betterend.hydrothermal_vent": "熱泉噴口", + "block.betterend.hydralux": "ζ°΄ε…‰θ“", + "block.betterend.hydralux_sapling": "ζ°΄ε…‰θ“θ‹—", + "block.betterend.inflexia": "ζ›²ζžθ‰", + "block.betterend.lacugrove": "ζ³Šζž—ζœ¨θ—»ε’", + "block.betterend.lacugrove_bark": "ε€©η„ΆεŸƒι”ε…‹ε²©", + "block.betterend.lamellarium": "η–Šε±€θ—»", + "block.betterend.lanceleaf": "ηŸ›θ‘‰θ‰", + "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.lucernia_bark": "ζ˜ι…·ε°–εˆΊ", + "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.sandy_jadestone": "ε€©η„Άη…Œζ–‘ε²©", + "block.betterend.sandy_jadestone_bricks": "η…Œζ–‘ε²©η£š", + "block.betterend.sandy_jadestone_pillar": "η…Œζ–‘ε²©ζŸ±", + "block.betterend.sandy_jadestone_polished": "ζ‹‹ε…‰η…Œζ–‘ε²©", + "block.betterend.sandy_jadestone_tiles": "η…Œζ–‘ε²©η“¦", + "block.betterend.selagine": "卷柏", + "block.betterend.shadow_berry": "倜影漿果", + "block.betterend.shadow_berry_wild": "ι‡Žη”Ÿε€œε½±ζΌΏζžœ", + "block.betterend.shadow_berry_dead": "ζž―θŽηš„ε€œε½±ζΌΏζžœ", + "block.betterend.small_amaranita_mushroom": "θ΅€ζ˜Ÿι’θŽ–θ‡", + "block.betterend.sulphur_crystal": "η‘«η£Ίζ™Άι«”", + "block.betterend.sulphuric_rock": "倩焢熔灰岩", + "block.betterend.sulphuric_rock_bricks": "η†”η°ε²©η£š", + "block.betterend.sulphuric_rock_pillar": "η†”η°ε²©ζŸ±", + "block.betterend.sulphuric_rock_polished": "拋光熔灰岩", + "block.betterend.sulphuric_rock_tiles": "熔灰岩瓦", + "block.betterend.tube_worm": "η‘蟲", + "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/models/block/brimstone_active.json b/kubejs/assets/betterend/models/block/brimstone_active.json new file mode 100644 index 000000000..d7aa24865 --- /dev/null +++ b/kubejs/assets/betterend/models/block/brimstone_active.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/brimstone" + } +} diff --git a/kubejs/assets/betterend/models/block/brimstone_normal.json b/kubejs/assets/betterend/models/block/brimstone_normal.json new file mode 100644 index 000000000..da1bff0eb --- /dev/null +++ b/kubejs/assets/betterend/models/block/brimstone_normal.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/inactive_brimstone" + } +} diff --git a/kubejs/assets/betterend/models/block/flavolite_pillar.json b/kubejs/assets/betterend/models/block/flavolite_pillar.json new file mode 100644 index 000000000..c534dc009 --- /dev/null +++ b/kubejs/assets/betterend/models/block/flavolite_pillar.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_column", + "textures": { + "end": "betterend:block/flavolite_pillar_top", + "side": "betterend:block/flavolite_pillar_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/hydralux_sapling_1.json b/kubejs/assets/betterend/models/block/hydralux_sapling_1.json index c433371b8..aea21f65c 100644 --- a/kubejs/assets/betterend/models/block/hydralux_sapling_1.json +++ b/kubejs/assets/betterend/models/block/hydralux_sapling_1.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/cross", "textures": { - "texture": "betterend:block/hydralux_sapling_1" + "cross": "betterend:block/hydralux_sapling_1" } } \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/hydralux_sapling_2.json b/kubejs/assets/betterend/models/block/hydralux_sapling_2.json index 8b3416b43..003f6f42a 100644 --- a/kubejs/assets/betterend/models/block/hydralux_sapling_2.json +++ b/kubejs/assets/betterend/models/block/hydralux_sapling_2.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/cross", "textures": { - "texture": "betterend:block/hydralux_sapling_2" + "cross": "betterend:block/hydralux_sapling_2" } } \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/hydralux_sapling_3.json b/kubejs/assets/betterend/models/block/hydralux_sapling_3.json index b584afc83..7c7083a3a 100644 --- a/kubejs/assets/betterend/models/block/hydralux_sapling_3.json +++ b/kubejs/assets/betterend/models/block/hydralux_sapling_3.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/cross", "textures": { - "texture": "betterend:block/hydralux_sapling_3" + "cross": "betterend:block/hydralux_sapling_3" } } \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/hydralux_sapling_4.json b/kubejs/assets/betterend/models/block/hydralux_sapling_4.json index 29d0571ea..8447696d4 100644 --- a/kubejs/assets/betterend/models/block/hydralux_sapling_4.json +++ b/kubejs/assets/betterend/models/block/hydralux_sapling_4.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/cross", "textures": { - "texture": "betterend:block/hydralux_sapling_4" + "cross": "betterend:block/hydralux_sapling_4" } } \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/hydralux_vine.json b/kubejs/assets/betterend/models/block/hydralux_vine.json index ad34df156..4bf44c7ce 100644 --- a/kubejs/assets/betterend/models/block/hydralux_vine.json +++ b/kubejs/assets/betterend/models/block/hydralux_vine.json @@ -1,6 +1,6 @@ { "parent": "minecraft:block/cross", "textures": { - "texture": "betterend:block/hydralux_vine" + "cross": "betterend:block/hydralux_vine" } } \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/hydralux_roots.json b/kubejs/assets/betterend/models/block/hydralux_vine_bottom.json similarity index 100% rename from kubejs/assets/betterend/models/block/hydralux_roots.json rename to kubejs/assets/betterend/models/block/hydralux_vine_bottom.json diff --git a/kubejs/assets/betterend/models/block/hydrothermal_vent.json b/kubejs/assets/betterend/models/block/hydrothermal_vent.json new file mode 100644 index 000000000..40f1962b6 --- /dev/null +++ b/kubejs/assets/betterend/models/block/hydrothermal_vent.json @@ -0,0 +1,164 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "parent": "block/block", + "textures": { + "particle": "betterend:block/sulphuric_rock", + "texture": "betterend:block/sulphuric_rock", + "rock_top": "betterend:block/sulphuric_rock_top", + "geyser_top": "betterend:block/geyser_top" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 9, 10, 8 ], + "to": [ 13, 16, 12 ], + "faces": { + "up": { "uv": [ 0, 0, 4, 4 ], "texture": "#geyser_top", "cullface": "up" }, + "north": { "uv": [ 3, 0, 7, 6 ], "texture": "#texture" }, + "south": { "uv": [ 9, 0, 13, 6 ], "texture": "#texture" }, + "west": { "uv": [ 8, 0, 12, 6 ], "texture": "#texture" }, + "east": { "uv": [ 4, 0, 8, 6 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 8, 0, 7 ], + "to": [ 14, 10, 13 ], + "faces": { + "down": { "uv": [ 5, 5, 11, 11 ], "texture": "#rock_top", "cullface": "down" }, + "up": { "uv": [ 10, 5, 16, 11 ], "texture": "#geyser_top" }, + "north": { "uv": [ 5, 6, 11, 16 ], "texture": "#texture" }, + "south": { "uv": [ 5, 6, 11, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5, 6, 11, 16 ], "texture": "#texture" }, + "east": { "uv": [ 5, 6, 11, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 4, 0, 1 ], + "to": [ 8, 5, 5 ], + "faces": { + "down": { "uv": [ 4, 11, 8, 15 ], "texture": "#rock_top", "cullface": "down" }, + "up": { "uv": [ 4, 1, 8, 5 ], "texture": "#geyser_top" }, + "north": { "uv": [ 8, 11, 12, 16 ], "texture": "#texture" }, + "west": { "uv": [ 1, 11, 5, 16 ], "texture": "#texture" }, + "east": { "uv": [ 11, 11, 15, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 5, 5, 2 ], + "to": [ 7, 11, 4 ], + "faces": { + "up": { "uv": [ 0, 4, 2, 6 ], "texture": "#geyser_top" }, + "north": { "uv": [ 8, 5, 10, 11 ], "texture": "#texture" }, + "south": { "uv": [ 6, 5, 8, 11 ], "texture": "#texture" }, + "west": { "uv": [ 1, 5, 3, 11 ], "texture": "#texture" }, + "east": { "uv": [ 13, 5, 15, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 1, 0, 8 ], + "to": [ 5, 8, 12 ], + "faces": { + "down": { "uv": [ 1, 4, 5, 8 ], "texture": "#rock_top", "cullface": "down" }, + "up": { "uv": [ 5, 12, 9, 16 ], "texture": "#geyser_top" }, + "north": { "uv": [ 11, 8, 15, 16 ], "texture": "#texture" }, + "south": { "uv": [ 1, 8, 5, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8, 8, 12, 16 ], "texture": "#texture" }, + "east": { "uv": [ 4, 8, 8, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 2, 8, 9 ], + "to": [ 4, 14, 11 ], + "faces": { + "up": { "uv": [ 0, 4, 2, 6 ], "texture": "#geyser_top" }, + "north": { "uv": [ 12, 2, 14, 8 ], "texture": "#texture" }, + "south": { "uv": [ 2, 2, 4, 8 ], "texture": "#texture" }, + "west": { "uv": [ 9, 2, 11, 8 ], "texture": "#texture" }, + "east": { "uv": [ 5, 2, 7, 8 ], "texture": "#texture" } + } + }, + { + "__comment": "Box7", + "from": [ 2, 0, 4 ], + "to": [ 5, 4, 7 ], + "faces": { + "down": { "uv": [ 2, 9, 5, 12 ], "texture": "#rock_top", "cullface": "down" }, + "up": { "uv": [ 9, 13, 12, 16 ], "texture": "#geyser_top" }, + "north": { "uv": [ 11, 12, 14, 16 ], "texture": "#texture" }, + "south": { "uv": [ 2, 12, 5, 16 ], "texture": "#texture" }, + "west": { "uv": [ 4, 12, 7, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9, 12, 12, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box7", + "from": [ 3, 0, 13 ], + "to": [ 6, 4, 16 ], + "faces": { + "down": { "uv": [ 3, 0, 6, 3 ], "texture": "#rock_top", "cullface": "down" }, + "up": { "uv": [ 9, 0, 12, 3 ], "texture": "#geyser_top" }, + "north": { "uv": [ 10, 12, 13, 16 ], "texture": "#texture" }, + "south": { "uv": [ 3, 12, 6, 16 ], "texture": "#texture", "cullface": "south" }, + "west": { "uv": [ 13, 12, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 12, 3, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box7", + "from": [ 12, 0, 2 ], + "to": [ 15, 4, 5 ], + "faces": { + "down": { "uv": [ 12, 11, 15, 14 ], "texture": "#rock_top", "cullface": "down" }, + "up": { "uv": [ 9, 13, 12, 16 ], "texture": "#geyser_top" }, + "north": { "uv": [ 1, 12, 4, 16 ], "texture": "#texture" }, + "south": { "uv": [ 12, 12, 15, 16 ], "texture": "#texture" }, + "west": { "uv": [ 2, 12, 5, 16 ], "texture": "#texture" }, + "east": { "uv": [ 11, 12, 14, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box7", + "from": [ 7, 0, 3 ], + "to": [ 12, 7, 8 ], + "faces": { + "down": { "uv": [ 7, 8, 12, 13 ], "texture": "#rock_top", "cullface": "down" }, + "up": { "uv": [ 4, 0, 9, 5 ], "texture": "#geyser_top" }, + "north": { "uv": [ 4, 9, 9, 16 ], "texture": "#texture" }, + "south": { "uv": [ 7, 9, 12, 16 ], "texture": "#texture" }, + "west": { "uv": [ 3, 9, 8, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8, 9, 13, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box7", + "from": [ 4, 0, 9 ], + "to": [ 9, 7, 14 ], + "faces": { + "down": { "uv": [ 4, 2, 9, 7 ], "texture": "#rock_top", "cullface": "down" }, + "up": { "uv": [ 4, 0, 9, 5 ], "texture": "#geyser_top" }, + "north": { "uv": [ 7, 9, 12, 16 ], "texture": "#texture" }, + "south": { "uv": [ 4, 9, 9, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9, 9, 14, 16 ], "texture": "#texture" }, + "east": { "uv": [ 2, 9, 7, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box7", + "from": [ 3, 0, 5 ], + "to": [ 8, 9, 10 ], + "faces": { + "down": { "uv": [ 3, 6, 8, 11 ], "texture": "#rock_top", "cullface": "down" }, + "up": { "uv": [ 4, 0, 9, 5 ], "texture": "#geyser_top" }, + "north": { "uv": [ 8, 7, 13, 16 ], "texture": "#texture" }, + "south": { "uv": [ 3, 7, 8, 16 ], "texture": "#texture" }, + "west": { "uv": [ 5, 7, 10, 16 ], "texture": "#texture" }, + "east": { "uv": [ 6, 7, 11, 16 ], "texture": "#texture" } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/lacugrove_bark.json b/kubejs/assets/betterend/models/block/lacugrove_bark.json new file mode 100644 index 000000000..9f6d5616f --- /dev/null +++ b/kubejs/assets/betterend/models/block/lacugrove_bark.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/lacugrove_log_side" + } +} diff --git a/kubejs/assets/betterend/models/block/lacugrove_bark_2.json b/kubejs/assets/betterend/models/block/lacugrove_bark_2.json new file mode 100644 index 000000000..086106bf1 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lacugrove_bark_2.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/lacugrove_log_side_2" + } +} diff --git a/kubejs/assets/betterend/models/block/lacugrove_bark_3.json b/kubejs/assets/betterend/models/block/lacugrove_bark_3.json new file mode 100644 index 000000000..0ebc7fd4e --- /dev/null +++ b/kubejs/assets/betterend/models/block/lacugrove_bark_3.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/lacugrove_log_side_3" + } +} diff --git a/kubejs/assets/betterend/models/block/lacugrove_bark_4.json b/kubejs/assets/betterend/models/block/lacugrove_bark_4.json new file mode 100644 index 000000000..aba164716 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lacugrove_bark_4.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/lacugrove_log_side_4" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_bark.json b/kubejs/assets/betterend/models/block/lucernia_bark.json new file mode 100644 index 000000000..2d1d28db2 --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_bark.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/lucernia_log_side" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_bark_2.json b/kubejs/assets/betterend/models/block/lucernia_bark_2.json new file mode 100644 index 000000000..1975f43dd --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_bark_2.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "betterend:block/lucernia_log_side_2" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_bark_3.json b/kubejs/assets/betterend/models/block/lucernia_bark_3.json new file mode 100644 index 000000000..98dacd59e --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_bark_3.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_mirrored_all", + "textures": { + "all": "betterend:block/lucernia_log_side" + } +} diff --git a/kubejs/assets/betterend/models/block/lucernia_bark_4.json b/kubejs/assets/betterend/models/block/lucernia_bark_4.json new file mode 100644 index 000000000..9b91dce6b --- /dev/null +++ b/kubejs/assets/betterend/models/block/lucernia_bark_4.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_mirrored_all", + "textures": { + "all": "betterend:block/lucernia_log_side_2" + } +} diff --git a/kubejs/assets/betterend/models/block/sandy_jadestone_pillar.json b/kubejs/assets/betterend/models/block/sandy_jadestone_pillar.json new file mode 100644 index 000000000..03476c611 --- /dev/null +++ b/kubejs/assets/betterend/models/block/sandy_jadestone_pillar.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_column", + "textures": { + "end": "betterend:block/sandy_jadestone_pillar_top", + "side": "betterend:block/sandy_jadestone_pillar_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/shadow_plant_1.json b/kubejs/assets/betterend/models/block/shadow_plant_1.json new file mode 100644 index 000000000..8966a93e7 --- /dev/null +++ b/kubejs/assets/betterend/models/block/shadow_plant_1.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/shadow_plant" + } +} diff --git a/kubejs/assets/betterend/models/block/shadow_plant_2.json b/kubejs/assets/betterend/models/block/shadow_plant_2.json new file mode 100644 index 000000000..e5b0883c7 --- /dev/null +++ b/kubejs/assets/betterend/models/block/shadow_plant_2.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/shadow_plant" + } +} diff --git a/kubejs/assets/betterend/models/block/shadow_plant_3.json b/kubejs/assets/betterend/models/block/shadow_plant_3.json new file mode 100644 index 000000000..747d552e8 --- /dev/null +++ b/kubejs/assets/betterend/models/block/shadow_plant_3.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/shadow_plant_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/shadow_plant_4.json b/kubejs/assets/betterend/models/block/shadow_plant_4.json new file mode 100644 index 000000000..33760a4c8 --- /dev/null +++ b/kubejs/assets/betterend/models/block/shadow_plant_4.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/shadow_plant_potted" + } +} diff --git a/kubejs/assets/betterend/models/block/shadow_plant_5.json b/kubejs/assets/betterend/models/block/shadow_plant_5.json new file mode 100644 index 000000000..27fc96c3f --- /dev/null +++ b/kubejs/assets/betterend/models/block/shadow_plant_5.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_inverted", + "textures": { + "cross": "betterend:block/tail_moss" + } +} diff --git a/kubejs/assets/betterend/models/block/shadow_plant_6.json b/kubejs/assets/betterend/models/block/shadow_plant_6.json new file mode 100644 index 000000000..e2110fee0 --- /dev/null +++ b/kubejs/assets/betterend/models/block/shadow_plant_6.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/tail_moss" + } +} diff --git a/kubejs/assets/betterend/models/block/sulphur_crystal_0.json b/kubejs/assets/betterend/models/block/sulphur_crystal_0.json new file mode 100644 index 000000000..9a3ff8de4 --- /dev/null +++ b/kubejs/assets/betterend/models/block/sulphur_crystal_0.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/sulphur_crystal_0" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/sulphur_crystal_1.json b/kubejs/assets/betterend/models/block/sulphur_crystal_1.json new file mode 100644 index 000000000..8474044dd --- /dev/null +++ b/kubejs/assets/betterend/models/block/sulphur_crystal_1.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/sulphur_crystal_1" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/sulphur_crystal_2.json b/kubejs/assets/betterend/models/block/sulphur_crystal_2.json new file mode 100644 index 000000000..279f1c3ed --- /dev/null +++ b/kubejs/assets/betterend/models/block/sulphur_crystal_2.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cross", + "textures": { + "cross": "betterend:block/sulphur_crystal_2" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/sulphuric_rock.json b/kubejs/assets/betterend/models/block/sulphuric_rock.json new file mode 100644 index 000000000..1fea448f1 --- /dev/null +++ b/kubejs/assets/betterend/models/block/sulphuric_rock.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "betterend:block/sulphuric_rock_top", + "side": "betterend:block/sulphuric_rock" + } +} diff --git a/kubejs/assets/betterend/models/block/sulphuric_rock_pillar.json b/kubejs/assets/betterend/models/block/sulphuric_rock_pillar.json new file mode 100644 index 000000000..85734fb6b --- /dev/null +++ b/kubejs/assets/betterend/models/block/sulphuric_rock_pillar.json @@ -0,0 +1,7 @@ +{ + "parent": "block/cube_column", + "textures": { + "end": "betterend:block/sulphuric_rock_pillar_top", + "side": "betterend:block/sulphuric_rock_pillar_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/tube_worm_01.json b/kubejs/assets/betterend/models/block/tube_worm_01.json new file mode 100644 index 000000000..ae2acdf57 --- /dev/null +++ b/kubejs/assets/betterend/models/block/tube_worm_01.json @@ -0,0 +1,95 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/tube_worm_3", + "worm3": "betterend:block/tube_worm_3", + "worm2": "betterend:block/tube_worm_2", + "worm1": "betterend:block/tube_worm_1" + }, + "elements": [ + { + "__comment": "PlaneX1", + "from": [ 8, 0, 0 ], + "to": [ 8.001, 9, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 16, 7, 0, 16 ], "texture": "#worm3" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#worm3" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 11, 0, 0 ], + "to": [ 11.001, 9, 16 ], + "rotation": { "origin": [ 11, 0, 0 ], "axis": "y", "angle": 22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 16, 7, 0, 16 ], "texture": "#worm1" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#worm1" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 5, 0, 0 ], + "to": [ 5.001, 9, 16 ], + "rotation": { "origin": [ 5, 0, 0 ], "axis": "y", "angle": -22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 16, 7, 0, 16 ], "texture": "#worm2" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#worm2" } + } + }, + { + "__comment": "Box4", + "from": [ 11, 6, 3 ], + "to": [ 14, 11, 6 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ 2, 6, 5 ], + "to": [ 5, 11, 8 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ 6.5, 7, 9 ], + "to": [ 9.5, 12, 12 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ 6.5, 9, 3 ], + "to": [ 9.5, 14, 6 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/tube_worm_02.json b/kubejs/assets/betterend/models/block/tube_worm_02.json new file mode 100644 index 000000000..dad765bfe --- /dev/null +++ b/kubejs/assets/betterend/models/block/tube_worm_02.json @@ -0,0 +1,95 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/tube_worm_3", + "worm3": "betterend:block/tube_worm_3", + "worm2": "betterend:block/tube_worm_2", + "worm1": "betterend:block/tube_worm_1" + }, + "elements": [ + { + "__comment": "PlaneX1", + "from": [ 8, 0, 0 ], + "to": [ 8.001, 9, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 16, 7, 0, 16 ], "texture": "#worm2" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#worm2" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 11, 0, 0 ], + "to": [ 11.001, 9, 16 ], + "rotation": { "origin": [ 11, 0, 0 ], "axis": "y", "angle": 22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 16, 7, 0, 16 ], "texture": "#worm3" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#worm3" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 5, 0, 0 ], + "to": [ 5.001, 9, 16 ], + "rotation": { "origin": [ 5, 0, 0 ], "axis": "y", "angle": -22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 16, 7, 0, 16 ], "texture": "#worm2" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#worm2" } + } + }, + { + "__comment": "Box4", + "from": [ 6.5, 6, 5.5 ], + "to": [ 9.5, 11, 8.5 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ 1, 6, 5 ], + "to": [ 4, 11, 8 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ 13.5, 7, 9 ], + "to": [ 16.5, 12, 12 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ 11.5, 9, 3 ], + "to": [ 14.5, 14, 6 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/tube_worm_03.json b/kubejs/assets/betterend/models/block/tube_worm_03.json new file mode 100644 index 000000000..90a0db4a7 --- /dev/null +++ b/kubejs/assets/betterend/models/block/tube_worm_03.json @@ -0,0 +1,108 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/tube_worm_3", + "worm3": "betterend:block/tube_worm_3", + "worm2": "betterend:block/tube_worm_2", + "worm1": "betterend:block/tube_worm_1" + }, + "elements": [ + { + "__comment": "PlaneX1", + "from": [ 8, 0, 0 ], + "to": [ 8.001, 9, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 16, 7, 0, 16 ], "texture": "#worm2" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#worm2" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 11, 0, 0 ], + "to": [ 11.001, 9, 16 ], + "rotation": { "origin": [ 11, 0, 0 ], "axis": "y", "angle": 22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 16, 7, 0, 16 ], "texture": "#worm3" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#worm3" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 5, 0, 0 ], + "to": [ 5.001, 9, 16 ], + "rotation": { "origin": [ 5, 0, 0 ], "axis": "y", "angle": -22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 16, 7, 0, 16 ], "texture": "#worm3" }, + "east": { "uv": [ 0, 7, 16, 16 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ 6.5, 6, 5.5 ], + "to": [ 9.5, 11, 8.5 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ 14, 7, 9 ], + "to": [ 17, 12, 12 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ 11.5, 9, 3 ], + "to": [ 14.5, 14, 6 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ 1.5, 9, 3 ], + "to": [ 4.5, 14, 6 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + }, + { + "__comment": "Box4", + "from": [ -1, 7, 9 ], + "to": [ 2, 12, 12 ], + "faces": { + "down": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "up": { "uv": [ 10, 0, 13, 3 ], "texture": "#worm3" }, + "north": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "south": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "west": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" }, + "east": { "uv": [ 13, 0, 16, 5 ], "texture": "#worm3" } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/twisted_vine_bottom_1.json b/kubejs/assets/betterend/models/block/twisted_vine_bottom_1.json new file mode 100644 index 000000000..c64d397a7 --- /dev/null +++ b/kubejs/assets/betterend/models/block/twisted_vine_bottom_1.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_no_distortion", + "textures": { + "texture": "betterend:block/twisted_vine_bottom" + } +} diff --git a/kubejs/assets/betterend/models/block/twisted_vine_bottom_2.json b/kubejs/assets/betterend/models/block/twisted_vine_bottom_2.json new file mode 100644 index 000000000..13696d557 --- /dev/null +++ b/kubejs/assets/betterend/models/block/twisted_vine_bottom_2.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_no_distortion_inverted", + "textures": { + "texture": "betterend:block/twisted_vine_bottom" + } +} diff --git a/kubejs/assets/betterend/models/block/twisted_vine_middle_1.json b/kubejs/assets/betterend/models/block/twisted_vine_middle_1.json new file mode 100644 index 000000000..50cd9cb87 --- /dev/null +++ b/kubejs/assets/betterend/models/block/twisted_vine_middle_1.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_no_distortion", + "textures": { + "texture": "betterend:block/twisted_vine" + } +} diff --git a/kubejs/assets/betterend/models/block/twisted_vine_middle_2.json b/kubejs/assets/betterend/models/block/twisted_vine_middle_2.json new file mode 100644 index 000000000..eb0a34031 --- /dev/null +++ b/kubejs/assets/betterend/models/block/twisted_vine_middle_2.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross_no_distortion_inverted", + "textures": { + "texture": "betterend:block/twisted_vine" + } +} diff --git a/kubejs/assets/betterend/models/block/twisted_vine_top.json b/kubejs/assets/betterend/models/block/twisted_vine_top.json new file mode 100644 index 000000000..c6cbd1d12 --- /dev/null +++ b/kubejs/assets/betterend/models/block/twisted_vine_top.json @@ -0,0 +1,76 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/twisted_vine", + "texture": "betterend:block/twisted_vine", + "roots": "betterend:block/twisted_vine_roots" + }, + "elements": [ + { + "__comment": "PlaneX1", + "from": [ 2.375, 0, 2.25 ], + "to": [ 2.376, 16, 18.25 ], + "rotation": { "origin": [ 2.375, 0, 2.25 ], "axis": "y", "angle": 45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 13.75, 0, 2.25 ], + "to": [ 13.751, 16, 18.25 ], + "rotation": { "origin": [ 13.75, 0, 2.25 ], "axis": "y", "angle": -45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneX4", + "from": [ 5, 0, 0.5 ], + "to": [ 5.001, 16, 16.5 ], + "rotation": { "origin": [ 5, 0, 0.5 ], "axis": "y", "angle": 22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" }, + "east": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" } + } + }, + { + "__comment": "PlaneZ5", + "from": [ 0.5, 0, 11 ], + "to": [ 16.5, 16, 11.001 ], + "rotation": { "origin": [ 0.5, 0, 11 ], "axis": "y", "angle": 22.5 }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" }, + "south": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" } + } + }, + { + "__comment": "PlaneX4", + "from": [ 11, 0, 0.5 ], + "to": [ 11.001, 16, 16.5 ], + "rotation": { "origin": [ 11, 0, 0.5 ], "axis": "y", "angle": -22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" }, + "east": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" } + } + }, + { + "__comment": "PlaneZ5", + "from": [ 0.5, 0, 5 ], + "to": [ 16.5, 16, 5.001 ], + "rotation": { "origin": [ 0.5, 0, 5 ], "axis": "y", "angle": -22.5 }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" }, + "south": { "uv": [ 0, 16, 16, 0 ], "texture": "#roots" } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/item/hydralux_large.json b/kubejs/assets/betterend/models/item/hydralux_large.json new file mode 100644 index 000000000..d3a1c3199 --- /dev/null +++ b/kubejs/assets/betterend/models/item/hydralux_large.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/hydralux_sapling_4" + } +} diff --git a/kubejs/assets/betterend/models/item/hydralux_small.json b/kubejs/assets/betterend/models/item/hydralux_small.json new file mode 100644 index 000000000..1dcb9cba5 --- /dev/null +++ b/kubejs/assets/betterend/models/item/hydralux_small.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/hydralux_sapling_2" + } +} diff --git a/kubejs/assets/betterend/models/item/hydrothermal_vent.json b/kubejs/assets/betterend/models/item/hydrothermal_vent.json new file mode 100644 index 000000000..df7a31771 --- /dev/null +++ b/kubejs/assets/betterend/models/item/hydrothermal_vent.json @@ -0,0 +1,3 @@ +{ + "parent": "betterend:block/hydrothermal_vent" +} diff --git a/kubejs/assets/betterend/models/item/shadow_plant.json b/kubejs/assets/betterend/models/item/shadow_plant.json new file mode 100644 index 000000000..e7b848fa4 --- /dev/null +++ b/kubejs/assets/betterend/models/item/shadow_plant.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/shadow_plant" + } +} diff --git a/kubejs/assets/betterend/models/item/sulphur_crystal.json b/kubejs/assets/betterend/models/item/sulphur_crystal.json new file mode 100644 index 000000000..899b962fa --- /dev/null +++ b/kubejs/assets/betterend/models/item/sulphur_crystal.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:block/sulphur_crystal_2" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/item/tube_worm.json b/kubejs/assets/betterend/models/item/tube_worm.json new file mode 100644 index 000000000..d754a00c5 --- /dev/null +++ b/kubejs/assets/betterend/models/item/tube_worm.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "betterend:item/tube_worm" + } +} diff --git a/kubejs/assets/betterend/textures/block/brimstone.png b/kubejs/assets/betterend/textures/block/brimstone.png new file mode 100644 index 000000000..e6c11d99a Binary files /dev/null and b/kubejs/assets/betterend/textures/block/brimstone.png differ diff --git a/kubejs/assets/betterend/textures/block/flavolite.png b/kubejs/assets/betterend/textures/block/flavolite.png new file mode 100644 index 000000000..f259025e7 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/flavolite.png differ diff --git a/kubejs/assets/betterend/textures/block/flavolite_bricks.png b/kubejs/assets/betterend/textures/block/flavolite_bricks.png new file mode 100644 index 000000000..39d09783b Binary files /dev/null and b/kubejs/assets/betterend/textures/block/flavolite_bricks.png differ diff --git a/kubejs/assets/betterend/textures/block/flavolite_pillar_side.png b/kubejs/assets/betterend/textures/block/flavolite_pillar_side.png new file mode 100644 index 000000000..3f2e5468e Binary files /dev/null and b/kubejs/assets/betterend/textures/block/flavolite_pillar_side.png differ diff --git a/kubejs/assets/betterend/textures/block/flavolite_pillar_top.png b/kubejs/assets/betterend/textures/block/flavolite_pillar_top.png new file mode 100644 index 000000000..0330151fe Binary files /dev/null and b/kubejs/assets/betterend/textures/block/flavolite_pillar_top.png differ diff --git a/kubejs/assets/betterend/textures/block/flavolite_polished.png b/kubejs/assets/betterend/textures/block/flavolite_polished.png new file mode 100644 index 000000000..14c07cf62 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/flavolite_polished.png differ diff --git a/kubejs/assets/betterend/textures/block/flavolite_tiles.png b/kubejs/assets/betterend/textures/block/flavolite_tiles.png new file mode 100644 index 000000000..3ee5436a6 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/flavolite_tiles.png differ diff --git a/kubejs/assets/betterend/textures/block/geyser_top.png b/kubejs/assets/betterend/textures/block/geyser_top.png new file mode 100644 index 000000000..0fc22b0f1 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/geyser_top.png differ diff --git a/kubejs/assets/betterend/textures/block/inactive_brimstone.png b/kubejs/assets/betterend/textures/block/inactive_brimstone.png new file mode 100644 index 000000000..0c0b22af9 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/inactive_brimstone.png differ diff --git a/kubejs/assets/betterend/textures/block/lacugrove_log_side.png b/kubejs/assets/betterend/textures/block/lacugrove_log_side.png new file mode 100644 index 000000000..885e2800e Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lacugrove_log_side.png differ diff --git a/kubejs/assets/betterend/textures/block/lacugrove_log_side_2.png b/kubejs/assets/betterend/textures/block/lacugrove_log_side_2.png new file mode 100644 index 000000000..1e4ddac31 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lacugrove_log_side_2.png differ diff --git a/kubejs/assets/betterend/textures/block/lacugrove_log_side_3.png b/kubejs/assets/betterend/textures/block/lacugrove_log_side_3.png new file mode 100644 index 000000000..d2053e292 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lacugrove_log_side_3.png differ diff --git a/kubejs/assets/betterend/textures/block/lacugrove_log_side_4.png b/kubejs/assets/betterend/textures/block/lacugrove_log_side_4.png new file mode 100644 index 000000000..dc310ff04 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lacugrove_log_side_4.png differ diff --git a/kubejs/assets/betterend/textures/block/lucernia_log_side.png b/kubejs/assets/betterend/textures/block/lucernia_log_side.png new file mode 100644 index 000000000..374023582 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lucernia_log_side.png differ diff --git a/kubejs/assets/betterend/textures/block/lucernia_log_side_2.png b/kubejs/assets/betterend/textures/block/lucernia_log_side_2.png new file mode 100644 index 000000000..6bfaba6dd Binary files /dev/null and b/kubejs/assets/betterend/textures/block/lucernia_log_side_2.png differ diff --git a/kubejs/assets/betterend/textures/block/sandy_jadestone.png b/kubejs/assets/betterend/textures/block/sandy_jadestone.png new file mode 100644 index 000000000..256ca2f79 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sandy_jadestone.png differ diff --git a/kubejs/assets/betterend/textures/block/sandy_jadestone_bricks.png b/kubejs/assets/betterend/textures/block/sandy_jadestone_bricks.png new file mode 100644 index 000000000..939a6e8d8 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sandy_jadestone_bricks.png differ diff --git a/kubejs/assets/betterend/textures/block/sandy_jadestone_pillar_side.png b/kubejs/assets/betterend/textures/block/sandy_jadestone_pillar_side.png new file mode 100644 index 000000000..94298f094 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sandy_jadestone_pillar_side.png differ diff --git a/kubejs/assets/betterend/textures/block/sandy_jadestone_pillar_top.png b/kubejs/assets/betterend/textures/block/sandy_jadestone_pillar_top.png new file mode 100644 index 000000000..d961081ba Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sandy_jadestone_pillar_top.png differ diff --git a/kubejs/assets/betterend/textures/block/sandy_jadestone_polished.png b/kubejs/assets/betterend/textures/block/sandy_jadestone_polished.png new file mode 100644 index 000000000..d69f09926 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sandy_jadestone_polished.png differ diff --git a/kubejs/assets/betterend/textures/block/sandy_jadestone_tiles.png b/kubejs/assets/betterend/textures/block/sandy_jadestone_tiles.png new file mode 100644 index 000000000..761ca2fbe Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sandy_jadestone_tiles.png differ diff --git a/kubejs/assets/betterend/textures/block/sulphur_crystal_0.png b/kubejs/assets/betterend/textures/block/sulphur_crystal_0.png new file mode 100644 index 000000000..7620e8dae Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sulphur_crystal_0.png differ diff --git a/kubejs/assets/betterend/textures/block/sulphur_crystal_1.png b/kubejs/assets/betterend/textures/block/sulphur_crystal_1.png new file mode 100644 index 000000000..42e1ec86b Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sulphur_crystal_1.png differ diff --git a/kubejs/assets/betterend/textures/block/sulphur_crystal_2.png b/kubejs/assets/betterend/textures/block/sulphur_crystal_2.png new file mode 100644 index 000000000..d1d6c3de8 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sulphur_crystal_2.png differ diff --git a/kubejs/assets/betterend/textures/block/sulphuric_rock.png b/kubejs/assets/betterend/textures/block/sulphuric_rock.png new file mode 100644 index 000000000..9e4c20ccc Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sulphuric_rock.png differ diff --git a/kubejs/assets/betterend/textures/block/sulphuric_rock_bricks.png b/kubejs/assets/betterend/textures/block/sulphuric_rock_bricks.png new file mode 100644 index 000000000..d8411976d Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sulphuric_rock_bricks.png differ diff --git a/kubejs/assets/betterend/textures/block/sulphuric_rock_pillar_side.png b/kubejs/assets/betterend/textures/block/sulphuric_rock_pillar_side.png new file mode 100644 index 000000000..26b4c9160 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sulphuric_rock_pillar_side.png differ diff --git a/kubejs/assets/betterend/textures/block/sulphuric_rock_pillar_top.png b/kubejs/assets/betterend/textures/block/sulphuric_rock_pillar_top.png new file mode 100644 index 000000000..2d66d0bd3 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sulphuric_rock_pillar_top.png differ diff --git a/kubejs/assets/betterend/textures/block/sulphuric_rock_polished.png b/kubejs/assets/betterend/textures/block/sulphuric_rock_polished.png new file mode 100644 index 000000000..e9056aa07 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sulphuric_rock_polished.png differ diff --git a/kubejs/assets/betterend/textures/block/sulphuric_rock_tiles.png b/kubejs/assets/betterend/textures/block/sulphuric_rock_tiles.png new file mode 100644 index 000000000..116833311 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sulphuric_rock_tiles.png differ diff --git a/kubejs/assets/betterend/textures/block/sulphuric_rock_top.png b/kubejs/assets/betterend/textures/block/sulphuric_rock_top.png new file mode 100644 index 000000000..fc3065159 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/sulphuric_rock_top.png differ diff --git a/kubejs/assets/betterend/textures/block/tube_worm_1.png b/kubejs/assets/betterend/textures/block/tube_worm_1.png new file mode 100644 index 000000000..1b993308b Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tube_worm_1.png differ diff --git a/kubejs/assets/betterend/textures/block/tube_worm_2.png b/kubejs/assets/betterend/textures/block/tube_worm_2.png new file mode 100644 index 000000000..7a2331ce5 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tube_worm_2.png differ diff --git a/kubejs/assets/betterend/textures/block/tube_worm_3.png b/kubejs/assets/betterend/textures/block/tube_worm_3.png new file mode 100644 index 000000000..fb6084a77 Binary files /dev/null and b/kubejs/assets/betterend/textures/block/tube_worm_3.png differ diff --git a/kubejs/assets/betterend/textures/block/twisted_vine.png b/kubejs/assets/betterend/textures/block/twisted_vine.png index 940357484..47a64f263 100644 Binary files a/kubejs/assets/betterend/textures/block/twisted_vine.png 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 index 44dfe5ad5..c1518f352 100644 Binary files a/kubejs/assets/betterend/textures/block/twisted_vine_bottom.png 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 index a68c549b7..8dcb9b916 100644 Binary files a/kubejs/assets/betterend/textures/block/twisted_vine_roots.png and b/kubejs/assets/betterend/textures/block/twisted_vine_roots.png differ diff --git a/kubejs/assets/betterend/textures/item/thermal_fungus.png b/kubejs/assets/betterend/textures/item/thermal_fungus.png new file mode 100644 index 000000000..bf1056d15 Binary files /dev/null and b/kubejs/assets/betterend/textures/item/thermal_fungus.png differ diff --git a/kubejs/assets/betterend/textures/item/tube_worm.png b/kubejs/assets/betterend/textures/item/tube_worm.png new file mode 100644 index 000000000..6159c2909 Binary files /dev/null and b/kubejs/assets/betterend/textures/item/tube_worm.png differ diff --git a/kubejs/assets/constructionwand/lang/ja_jp.json b/kubejs/assets/constructionwand/lang/ja_jp.json new file mode 100644 index 000000000..a07f74161 --- /dev/null +++ b/kubejs/assets/constructionwand/lang/ja_jp.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_tw.json b/kubejs/assets/constructionwand/lang/zh_tw.json new file mode 100644 index 000000000..a29301193 --- /dev/null +++ b/kubejs/assets/constructionwand/lang/zh_tw.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/en_us.json b/kubejs/assets/create/lang/en_us.json index 417c99027..7df80e91e 100644 --- a/kubejs/assets/create/lang/en_us.json +++ b/kubejs/assets/create/lang/en_us.json @@ -1,6 +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": "Blue Steel Backtank", + "block.create.shadow_casing": "Black Steel Casing", + "block.create.refined_radiance_casing": "Glowing Casing", "block.create.industrial_iron_block": "Industrial Steel Block", "block.create.weathered_iron_block": "Weathered Steel Block", "block.create.industrial_iron_window": "Industrial Steel Window", diff --git a/kubejs/assets/create/lang/ja_jp.json b/kubejs/assets/create/lang/ja_jp.json index 65b8ba854..eb69abbfb 100644 --- a/kubejs/assets/create/lang/ja_jp.json +++ b/kubejs/assets/create/lang/ja_jp.json @@ -7,18 +7,18 @@ "block.create.weathered_iron_window": "ιŒ†γ³γŸι‹Όζγηͺ“", "block.create.industrial_iron_window_pane": "鋼材γζΏηͺ“", "block.create.weathered_iron_window_pane": "ιŒ†γ³γŸι‹ΌζγζΏηͺ“", - "block.create.dark_oak_window": "Hickory Window", - "block.create.dark_oak_window_pane": "Hickory Window Pane", - "block.create.cherry_window": "Fig Window", - "block.create.cherry_window_pane": "Fig Window Pane", - "block.create.spruce_window": "Cypress Window", - "block.create.spruce_window_pane": "Cypress Window Pane", - "block.create.jungle_window": "Teak Window", - "block.create.jungle_window_pane": "Teak Window Pane", - "block.create.birch_window": "Eucalyptus Window", - "block.create.birch_window_pane": "Eucalyptus Window Pane", - "block.create.acacia_window": "Baobab Window", - "block.create.acacia_window_pane": "Baobab Window Pane", + "block.create.dark_oak_window": "ヒッコγƒͺγƒΌγηͺ“", + "block.create.dark_oak_window_pane": "ヒッコγƒͺγƒΌγζΏηͺ“", + "block.create.cherry_window": "ガジγƒ₯γƒžγƒ«γηͺ“", + "block.create.cherry_window_pane": "ガジγƒ₯γƒžγƒ«γζΏηͺ“", + "block.create.spruce_window": "γ‚€γƒˆγ‚Ήγ‚γηͺ“", + "block.create.spruce_window_pane": "γ‚€γƒˆγ‚Ήγ‚γζΏηͺ“", + "block.create.jungle_window": "チークγηͺ“", + "block.create.jungle_window_pane": "チークγζΏηͺ“", + "block.create.birch_window": "ユーカγƒͺγηͺ“", + "block.create.birch_window_pane": "ユーカγƒͺγζΏηͺ“", + "block.create.acacia_window": "バγ‚ͺバブγηͺ“", + "block.create.acacia_window_pane": "バγ‚ͺバブγζΏηͺ“", "block.create.andesite_bars": "ιŒ«εˆι‡‘ζ Όε­", "block.create.andesite_belt_funnel": "ιŒ¬ι‰„γƒ™γƒ«γƒˆγƒ•γ‚‘γƒ³γƒγƒ«", "block.create.andesite_casing": "ιŒ¬ι‰„γ‚±γƒΌγ‚·γƒ³γ‚°", diff --git a/kubejs/assets/create/lang/ru_ru.json b/kubejs/assets/create/lang/ru_ru.json index 0e68f675f..af1dd17cd 100644 --- a/kubejs/assets/create/lang/ru_ru.json +++ b/kubejs/assets/create/lang/ru_ru.json @@ -1,8 +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.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.spruce_window": "ΠšΠΈΠΏΠ°Ρ€ΠΈΡΠΎΠ²ΠΎΠ΅ ΠΎΠΊΠ½ΠΎ", + "block.create.spruce_window_pane": "ΠšΠΈΠΏΠ°Ρ€ΠΈΡΠΎΠ²Π°Ρ оконная панСль", + "block.create.jungle_window": "Окно ΠΈΠ· Ρ‚ΠΈΠΊΠΎΠ²ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π°", + "block.create.jungle_window_pane": "Оконная панСль ΠΈΠ· Ρ‚ΠΈΠΊΠΎΠ²ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π°", + "block.create.birch_window": "Π­Π²ΠΊΠ°Π»ΠΈΠΏΡ‚ΠΎΠ²ΠΎΠ΅ ΠΎΠΊΠ½ΠΎ", + "block.create.birch_window_pane": "Эвкалиптовая оконная панСль", + "block.create.acacia_window": "Π‘Π°ΠΎΠ±Π°Π±ΠΎΠ²ΠΎΠ΅ ΠΎΠΊΠ½ΠΎ", + "block.create.acacia_window_pane": "Баобабовая оконная панСль", "block.create.andesite_bars": "ΠœΠ΅Ρ‚Π°Π»Π»ΠΈΡ‡Π΅ΡΠΊΠΈΠ΅ ΠΏΡ€ΡƒΡ‚ΡŒΡ", "block.create.andesite_belt_funnel": "ΠœΠ΅Ρ‚Π°Π»Π»ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠΊΠΎΠ½Π²Π΅ΠΉΠ΅Ρ€Π½Ρ‹ΠΉ шлюз", "block.create.andesite_casing": "ΠœΠ΅Ρ‚Π°Π»Π»ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ корпус", @@ -12,9 +28,9 @@ "block.create.andesite_encased_shaft": "Π’Π°Π» Π² мСталличСском корпусС", "block.create.andesite_funnel": "ΠœΠ΅Ρ‚Π°Π»Π»ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ шлюз", "block.create.andesite_ladder": "ΠœΠ΅Ρ‚Π°Π»Π»ΠΈΡ‡Π΅ΡΠΊΠ°Ρ лСстница", - "block.create.andesite_pillar": "ΠœΠ΅Ρ‚Π°Π»Π»ΠΈΡ‡Π΅ΡΠΊΠ°Ρ ΠΊΠΎΠ»ΠΎΠ½Π½Π°", "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": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Ρ€Π΅Π·Π½ΠΎΠ³ΠΎ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚Π°", @@ -24,9 +40,9 @@ "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.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": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΌΠ΅Π»ΠΊΠΎΠ³ΠΎ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΊΠΈΡ€ΠΏΠΈΡ‡Π°", @@ -73,15 +89,15 @@ "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.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": "ВсСгда, ΠΊΠΎΠ³Π΄Π° Ρƒ мСталличСского туннСля Π΅ΡΡ‚ΡŒ доступный Π²Ρ‹Ρ…ΠΎΠ΄ сбоку...", @@ -89,5 +105,10 @@ "create.ponder.brass_funnel.text_1": "ΠœΠ΅Ρ‚Π°Π»Π»ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ шлюз ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈΠ·Π²Π»Π΅ΠΊΠ°Ρ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄ΠΈΠ½ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ Π·Π° Ρ€Π°Π·", "create.ponder.cogwheel_casing.text_1": "Π›Π°Ρ‚ΡƒΠ½Π½Ρ‹ΠΉ ΠΈΠ»ΠΈ мСталличСский корпус ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для ΡƒΠΊΡ€Π°ΡˆΠ΅Π½ΠΈΡ ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½Π΅ΠΉ", "create.ponder.shaft_casing.text_1": "Π›Π°Ρ‚ΡƒΠ½Π½Ρ‹ΠΉ ΠΈΠ»ΠΈ мСталличСский корпус ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для ΡƒΠΊΡ€Π°ΡˆΠ΅Π½ΠΈΡ Π²Π°Π»ΠΎΠ²", - "block.create.track": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ" + "block.create.track": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ", + "item.create.brass_ingot": "Π›Π°Ρ‚ΡƒΠ½ΡŒ (Π‘Π»ΠΈΡ‚ΠΎΠΊ)", + "item.create.brass_nugget": "Π›Π°Ρ‚ΡƒΠ½ΡŒ (Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄ΠΎΠΊ)", + "item.create.copper_nugget": "МСдь (Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄ΠΎΠΊ)", + "item.create.zinc_ingot": "Π¦ΠΈΠ½ΠΊ (Π‘Π»ΠΈΡ‚ΠΎΠΊ)", + "item.create.zinc_nugget": "Π¦ΠΈΠ½ΠΊ (Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄ΠΎΠΊ)" } \ No newline at end of file diff --git a/kubejs/assets/create/lang/uk_ua.json b/kubejs/assets/create/lang/uk_ua.json index 11fa91458..0cc0e8fe8 100644 --- a/kubejs/assets/create/lang/uk_ua.json +++ b/kubejs/assets/create/lang/uk_ua.json @@ -1,6 +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.shadow_casing": "Обшивка Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі", + "block.create.refined_radiance_casing": "Π‘Π²Ρ–Ρ‚Π½Π° обшивка", "block.create.industrial_iron_block": "ΠŸΡ€ΠΎΠΌΠΈΡΠ»ΠΎΠ²ΠΈΠΉ Π‘Ρ‚Π°Π»Π΅Π²ΠΈΠΉ Π‘Π»ΠΎΠΊ", "block.create.weathered_iron_block": "Π‘Π»ΠΎΠΊ Π’ΠΈΠ²Ρ–Ρ‚Ρ€Π΅Π½ΠΎΡ— Π‘Ρ‚Π°Π»Ρ–", "block.create.industrial_iron_window": "ΠŸΡ€ΠΎΠΌΠΈΡΠ»ΠΎΠ²Π΅ сталСвС Π²Ρ–ΠΊΠ½ΠΎ", diff --git a/kubejs/assets/create/lang/zh_cn.json b/kubejs/assets/create/lang/zh_cn.json index 92ca8c573..20c4259ec 100644 --- a/kubejs/assets/create/lang/zh_cn.json +++ b/kubejs/assets/create/lang/zh_cn.json @@ -1,6 +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.shadow_casing": "ι»‘ι’’ζœΊε£³", + "block.create.refined_radiance_casing": "θ§ε…‰ζœΊε£³", "block.create.industrial_iron_block": "ε·₯δΈšι’’ε—", "block.create.weathered_iron_block": "ι£ŽεŒ–ι’’ε—", "block.create.industrial_iron_window": "ε·₯δΈšι’’ηͺ—ζˆ·", diff --git a/kubejs/assets/create/lang/zh_tw.json b/kubejs/assets/create/lang/zh_tw.json new file mode 100644 index 000000000..9f7f2d25c --- /dev/null +++ b/kubejs/assets/create/lang/zh_tw.json @@ -0,0 +1,110 @@ +{ + "__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.shadow_casing": "ι»‘ι‹Όζ©ŸζΌ", + "block.create.refined_radiance_casing": "η²Ύη…‰ε…‰θΌζ©ŸζΌ", + "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.spruce_window": "ζ‰ζœ¨ηͺ—", + "block.create.spruce_window_pane": "ζ‰ζœ¨ηͺ—板", + "block.create.jungle_window": "ε’ζž—ζœ¨ηͺ—", + "block.create.jungle_window_pane": "ε’ζž—ζœ¨ηͺ—板", + "block.create.birch_window": "樺木ηͺ—", + "block.create.birch_window_pane": "樺木ηͺ—板", + "block.create.acacia_window": "ι‡‘εˆζ­‘ζœ¨ηͺ—", + "block.create.acacia_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/ja_jp.json b/kubejs/assets/createdeco/lang/ja_jp.json new file mode 100644 index 000000000..1dec76260 --- /dev/null +++ b/kubejs/assets/createdeco/lang/ja_jp.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/createdeco/lang/ru_ru.json b/kubejs/assets/createdeco/lang/ru_ru.json index 25273cde9..17ff1f7ff 100644 --- a/kubejs/assets/createdeco/lang/ru_ru.json +++ b/kubejs/assets/createdeco/lang/ru_ru.json @@ -148,8 +148,10 @@ "block.createdeco.zinc_mesh_fence": "Π‘Π΅Ρ‚Ρ‡Π°Ρ‚Ρ‹ΠΉ Π·Π°Π±ΠΎΡ€ ΠΈΠ· Ρ†ΠΈΠ½ΠΊΠ°", "block.createdeco.brass_sheet_metal": "Π‘Π»ΠΎΠΊ ΠΈΠ· пластин Π»Π°Ρ‚ΡƒΠ½ΠΈ", "block.createdeco.zinc_sheet_metal": "Π‘Π»ΠΎΠΊ ΠΈΠ· пластин Ρ†ΠΈΠ½ΠΊΠ°", + "item.createdeco.iron_coin": "ΠœΠΎΠ½Π΅Ρ‚Π° ΠΈΠ· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°", "item.createdeco.netherite_coin": "ΠœΠΎΠ½Π΅Ρ‚Π° ΠΈΠ· синСй стали", - "item.createdeco.netherite_coinstack": "Π‘Ρ‚ΠΎΠΏΠΊΠ° ΠΌΠΎΠ½Π΅Ρ‚ ΠΈΠ· синСй стали", "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/createdeco/lang/zh_tw.json b/kubejs/assets/createdeco/lang/zh_tw.json new file mode 100644 index 000000000..33f3bcc94 --- /dev/null +++ b/kubejs/assets/createdeco/lang/zh_tw.json @@ -0,0 +1,418 @@ +{ + "__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": "鋼瑬幣堆", + "block.createdeco.black_placard": "ι»‘θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.black_shipping_container": "黑色貨櫃", + "block.createdeco.blue_brass_lamp": "θ—θ‰²ι»ƒιŠ…η± η‡ˆ", + "block.createdeco.blue_brick_slab": "θ—θ‰²η£šεŠη£š", + "block.createdeco.blue_brick_stairs": "θ—θ‰²η£šζ¨“ζ’―", + "block.createdeco.blue_brick_wall": "θ—θ‰²η£šη‰†", + "block.createdeco.blue_bricks": "θ—θ‰²η£šε‘Š", + "block.createdeco.blue_copper_lamp": "θ—θ‰²ιŠ…η± η‡ˆ", + "block.createdeco.blue_placard": "θ—θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.blue_shipping_container": "藍色貨櫃", + "block.createdeco.blue_zinc_lamp": "θ—θ‰²ι‹…η± η‡ˆ", + "block.createdeco.brass_bars": "ι»ƒιŠ…ζ¬„ζ†", + "block.createdeco.brass_bars_overlay": "ι»ƒιŠ…ζ¬„ζΏ", + "block.createdeco.brass_catwalk": "ι»ƒιŠ…ζ£§ι“", + "block.createdeco.brass_catwalk_railing": "ι»ƒιŠ…ζ£§ι“ζ‰Άζ‰‹", + "block.createdeco.brass_catwalk_stairs": "ι»ƒιŠ…ζ£§ι“ζ¨“ζ’―", + "block.createdeco.brass_coinstack": "ι»ƒιŠ…η‘¬εΉ£ε †", + "block.createdeco.brass_door": "ι»ƒιŠ…ι–€", + "block.createdeco.brass_facade": "ι»ƒιŠ…η‰†ι’", + "block.createdeco.brass_hull": "ι»ƒιŠ…εˆ—θ»Šε€–ζΌ", + "block.createdeco.brass_mesh_fence": "ι»ƒιŠ…ηΆ²η‹€ζ¬„ζ†", + "block.createdeco.brass_sheet_metal": "ι»ƒιŠ…ι‡‘ε±¬ζΏ", + "block.createdeco.brass_support": "ι»ƒιŠ…ζ”―ζžΆ", + "block.createdeco.brass_support_wedge": "ι»ƒιŠ…ζ”―ζ’ζ₯”", + "block.createdeco.brass_trapdoor": "ι»ƒιŠ…ζ΄»ζΏι–€", + "block.createdeco.brass_window": "ι»ƒιŠ…ηͺ—ζˆΆ", + "block.createdeco.brass_window_pane": "ι»ƒιŠ…ηͺ—ζ Ό", + "block.createdeco.brown_placard": "ζ£•θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.brown_shipping_container": "棕色貨櫃", + "block.createdeco.copper_bars": "ιŠ…ζ¬„ζ†", + "block.createdeco.copper_bars_overlay": "ιŠ…ζ¬„ζΏ", + "block.createdeco.copper_catwalk": "ιŠ…ζ£§ι“", + "block.createdeco.copper_catwalk_railing": "ιŠ…ζ£§ι“ζ‰Άζ‰‹", + "block.createdeco.copper_catwalk_stairs": "ιŠ…ζ£§ι“ζ¨“ζ’―", + "block.createdeco.copper_coinstack": "ιŠ…η‘¬εΉ£ε †", + "block.createdeco.copper_door": "ιŠ…ι–€", + "block.createdeco.copper_facade": "ιŠ…η‰†ι’", + "block.createdeco.copper_hull": "ιŠ…εˆ—θ»Šε€–ζΌ", + "block.createdeco.copper_mesh_fence": "ιŠ…ηΆ²η‹€ζ¬„ζ†", + "block.createdeco.copper_sheet_metal": "ιŠ…ι‡‘ε±¬ζΏ", + "block.createdeco.copper_support": "ιŠ…ζ”―ζžΆ", + "block.createdeco.copper_support_wedge": "ιŠ…ζ”―ζ’ζ₯”", + "block.createdeco.copper_trapdoor": "ιŠ…ζ΄»ζΏι–€", + "block.createdeco.copper_window": "ιŠ…ηͺ—ζˆΆ", + "block.createdeco.copper_window_pane": "ιŠ…ηͺ—ζ Ό", + "item.createdeco.brass_coin": "ι»ƒιŠ…η‘¬εΉ£", + "item.createdeco.brass_coinstack": "ι»ƒιŠ…η‘¬εΉ£ε †", + "item.createdeco.copper_coin": "ιŠ…η‘¬εΉ£", + "item.createdeco.copper_coinstack": "ιŠ…η‘¬εΉ£ε †", + "item.createdeco.gold_coin": "金瑬幣", + "item.createdeco.gold_coinstack": "金瑬幣堆", + "item.createdeco.zinc_coin": "鋅瑬幣", + "item.createdeco.zinc_coinstack": "鋅瑬幣堆", + "item.createdeco.zinc_sheet": "鋅金屬板", + "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_red_brick_slab": "θ½‰θ§’η΄…η£šεŠη£š", + "block.createdeco.corner_red_brick_stairs": "θ½‰θ§’η΄…η£šζ¨“ζ’―", + "block.createdeco.corner_red_brick_wall": "θ½‰θ§’η΄…η£šη‰†", + "block.createdeco.corner_red_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_blue_brick_slab": "θ£‚η΄‹ηš“ηŸ³θ—η£šεŠη£š", + "block.createdeco.cracked_blue_brick_stairs": "θ£‚η΄‹ηš“ηŸ³θ—η£šζ¨“ζ’―", + "block.createdeco.cracked_blue_brick_wall": "θ£‚η΄‹ηš“ηŸ³θ—η£šη‰†", + "block.createdeco.cracked_blue_bricks": "θ£‚η΄‹ηš“ηŸ³θ—η£š", + "block.createdeco.cracked_dean_brick_slab": "θ£‚η΄‹θ΅­η ‚ι»ƒη£šεŠη£š", + "block.createdeco.cracked_dean_brick_stairs": "θ£‚η΄‹θ΅­η ‚ι»ƒη£šζ¨“ζ’―", + "block.createdeco.cracked_dean_brick_wall": "θ£‚η΄‹θ΅­η ‚ι»ƒη£šη‰†", + "block.createdeco.cracked_dean_bricks": "θ£‚η΄‹θ΅­η ‚ι»ƒη£š", + "block.createdeco.cracked_dusk_brick_slab": "θ£‚η΄‹η„¦ζΈ£ι»‘η£šεŠη£š", + "block.createdeco.cracked_dusk_brick_stairs": "θ£‚η΄‹η„¦ζΈ£ι»‘η£šζ¨“ζ’―", + "block.createdeco.cracked_dusk_brick_wall": "θ£‚η΄‹η„¦ζΈ£ι»‘η£šη‰†", + "block.createdeco.cracked_dusk_bricks": "θ£‚η΄‹η„¦ζΈ£ι»‘η£š", + "block.createdeco.cracked_pearl_brick_slab": "θ£‚η΄‹ηŸ³η°η™½η£šεŠη£š", + "block.createdeco.cracked_pearl_brick_stairs": "θ£‚η΄‹ηŸ³η°η™½η£šζ¨“ζ’―", + "block.createdeco.cracked_pearl_brick_wall": "θ£‚η΄‹ηŸ³η°η™½η£šη‰†", + "block.createdeco.cracked_pearl_bricks": "θ£‚η΄‹ηŸ³η°η™½η£š", + "block.createdeco.cracked_red_brick_slab": "θ£‚η΄‹η΄…η£šεŠη£š", + "block.createdeco.cracked_red_brick_stairs": "θ£‚η΄‹η΄…η£šζ¨“ζ’―", + "block.createdeco.cracked_red_brick_wall": "θ£‚η΄‹η΄…η£šη‰†", + "block.createdeco.cracked_red_bricks": "θ£‚η΄‹η΄…η£š", + "block.createdeco.cracked_scarlet_brick_slab": "θ£‚η΄‹η·‹ε²©η΄…η£šεŠη£š", + "block.createdeco.cracked_scarlet_brick_stairs": "θ£‚η΄‹η·‹ε²©η΄…η£šζ¨“ζ’―", + "block.createdeco.cracked_scarlet_brick_wall": "θ£‚η΄‹η·‹ε²©η΄…η£šη‰†", + "block.createdeco.cracked_scarlet_bricks": "θ£‚η΄‹η·‹ε²©η΄…η£š", + "block.createdeco.cracked_umber_brick_slab": "θ£‚η΄‹η†”ζΈ£ζ£•η£šεŠη£š", + "block.createdeco.cracked_umber_brick_stairs": "θ£‚η΄‹η†”ζΈ£ζ£•η£šζ¨“ζ’―", + "block.createdeco.cracked_umber_brick_wall": "θ£‚η΄‹η†”ζΈ£ζ£•η£šη‰†", + "block.createdeco.cracked_umber_bricks": "θ£‚η΄‹η†”ζΈ£ζ£•η£š", + "block.createdeco.cracked_verdant_brick_slab": "θ£‚η΄‹θΌε²©ηΆ η£šεŠη£š", + "block.createdeco.cracked_verdant_brick_stairs": "θ£‚η΄‹θΌε²©ηΆ η£šζ¨“ζ’―", + "block.createdeco.cracked_verdant_brick_wall": "θ£‚η΄‹θΌε²©ηΆ η£šη‰†", + "block.createdeco.cracked_verdant_bricks": "θ£‚η΄‹θΌε²©ηΆ η£š", + "block.createdeco.cyan_placard": "ι’θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.cyan_shipping_container": "青色貨櫃", + "block.createdeco.dean_brick_slab": "θ΅­η ‚ι»ƒη£šεŠη£š", + "block.createdeco.dean_brick_stairs": "θ΅­η ‚ι»ƒη£šζ¨“ζ’―", + "block.createdeco.dean_brick_wall": "θ΅­η ‚ι»ƒη£šη‰†", + "block.createdeco.dean_bricks": "θ΅­η ‚ι»ƒη£š", + "block.createdeco.decal_creeper": "θ‹¦εŠ›ζ€•εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_cross": "δΊ€ε‰εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_down": "向下η­ι ­εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_down_left": "ε·¦δΈ‹η­ι ­εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_down_right": "右下η­ι ­εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_electrical": "εΈΆι›»εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_fire": "η«η„°εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_fire_diamond": "危ιšͺ品菱归貼標", + "block.createdeco.decal_flow": "ζ°΄ζ΅εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_fluid": "ζ΅ι«”εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_ice": "δ½ŽζΊ«εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_left": "向左η­ι ­εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_no_entry": "禁歒進ε…₯εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_radioactive": "θΌ»ε°„εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_right": "向右η­ι ­εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_skull": "ιͺ·ι«εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_top_left": "左上η­ι ­εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_top_right": "右上η­ι ­εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_up": "ε‘δΈŠη­ι ­εœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.decal_warning": "θ­¦ε‘Šεœ–ζ‘ˆθ²Όζ¨™", + "block.createdeco.dusk_brick_slab": "η„¦ζΈ£ι»‘η£šεŠη£š", + "block.createdeco.dusk_brick_stairs": "η„¦ζΈ£ι»‘η£šζ¨“ζ’―", + "block.createdeco.dusk_brick_wall": "η„¦ζΈ£ι»‘η£šη‰†", + "block.createdeco.dusk_bricks": "η„¦ζΈ£ι»‘η£š", + "block.createdeco.gold_coinstack": "金瑬幣堆", + "block.createdeco.gray_placard": "η°θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.gray_shipping_container": "灰色貨櫃", + "block.createdeco.green_brass_lamp": "ηΆ θ‰²ι»ƒιŠ…η± η‡ˆ", + "block.createdeco.green_copper_lamp": "ηΆ θ‰²ιŠ…η± η‡ˆ", + "block.createdeco.green_placard": "ηΆ θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.green_shipping_container": "碠色貨櫃", + "block.createdeco.green_zinc_lamp": "ηΆ θ‰²ι‹…η± η‡ˆ", + "block.createdeco.light_blue_placard": "ζ·‘θ—θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.light_blue_shipping_container": "淑藍色貨櫃", + "block.createdeco.light_gray_placard": "ζ·‘η°θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.light_gray_shipping_container": "淑灰色貨櫃", + "block.createdeco.lime_placard": "ι»ƒηΆ θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.lime_shipping_container": "黃碠色貨櫃", + "block.createdeco.locked_brass_door": "δΈŠιŽ–ηš„ι»ƒιŠ…ι–€", + "block.createdeco.locked_copper_door": "δΈŠιŽ–ηš„ιŠ…ι–€", + "block.createdeco.locked_zinc_door": "δΈŠιŽ–ηš„ι‹…ι–€", + "block.createdeco.long_blue_brick_slab": "ζ’η‹€ηš“ηŸ³θ—η£šεŠη£š", + "block.createdeco.long_blue_brick_stairs": "ζ’η‹€ηš“ηŸ³θ—η£šζ¨“ζ’―", + "block.createdeco.long_blue_brick_wall": "ζ’η‹€ηš“ηŸ³θ—η£šη‰†", + "block.createdeco.long_blue_bricks": "ζ’η‹€ηš“ηŸ³θ—η£š", + "block.createdeco.long_dean_brick_slab": "ζ’η‹€θ΅­η ‚ι»ƒη£šεŠη£š", + "block.createdeco.long_dean_brick_stairs": "ζ’η‹€θ΅­η ‚ι»ƒη£šζ¨“ζ’―", + "block.createdeco.long_dean_brick_wall": "ζ’η‹€θ΅­η ‚ι»ƒη£šη‰†", + "block.createdeco.long_dean_bricks": "ζ’η‹€θ΅­η ‚ι»ƒη£š", + "block.createdeco.long_dusk_brick_slab": "ζ’η‹€η„¦ζΈ£ι»‘η£šεŠη£š", + "block.createdeco.long_dusk_brick_stairs": "ζ’η‹€η„¦ζΈ£ι»‘η£šζ¨“ζ’―", + "block.createdeco.long_dusk_brick_wall": "ζ’η‹€η„¦ζΈ£ι»‘η£šη‰†", + "block.createdeco.long_dusk_bricks": "ζ’η‹€η„¦ζΈ£ι»‘η£š", + "block.createdeco.long_pearl_brick_slab": "ζ’η‹€ηŸ³η°η™½η£šεŠη£š", + "block.createdeco.long_pearl_brick_stairs": "ζ’η‹€ηŸ³η°η™½η£šζ¨“ζ’―", + "block.createdeco.long_pearl_brick_wall": "ζ’η‹€ηŸ³η°η™½η£šη‰†", + "block.createdeco.long_pearl_bricks": "ζ’η‹€ηŸ³η°η™½η£š", + "block.createdeco.long_red_brick_slab": "ζ’η‹€η΄…η£šεŠη£š", + "block.createdeco.long_red_brick_stairs": "ζ’η‹€η΄…η£šζ¨“ζ’―", + "block.createdeco.long_red_brick_wall": "ζ’η‹€η΄…η£šη‰†", + "block.createdeco.long_red_bricks": "ζ’η‹€η΄…η£š", + "block.createdeco.long_scarlet_brick_slab": "ζ’η‹€η·‹ε²©η΄…η£šεŠη£š", + "block.createdeco.long_scarlet_brick_stairs": "ζ’η‹€η·‹ε²©η΄…η£šζ¨“ζ’―", + "block.createdeco.long_scarlet_brick_wall": "ζ’η‹€η·‹ε²©η΄…η£šη‰†", + "block.createdeco.long_scarlet_bricks": "ζ’η‹€η·‹ε²©η΄…η£š", + "block.createdeco.long_umber_brick_slab": "ζ’η‹€η†”ζΈ£ζ£•η£šεŠη£š", + "block.createdeco.long_umber_brick_stairs": "ζ’η‹€η†”ζΈ£ζ£•η£šζ¨“ζ’―", + "block.createdeco.long_umber_brick_wall": "ζ’η‹€η†”ζΈ£ζ£•η£šη‰†", + "block.createdeco.long_umber_bricks": "ζ’η‹€η†”ζΈ£ζ£•η£š", + "block.createdeco.long_verdant_brick_slab": "ζ’η‹€θΌε²©ηΆ η£šεŠη£š", + "block.createdeco.long_verdant_brick_stairs": "ζ’η‹€θΌε²©ηΆ η£šζ¨“ζ’―", + "block.createdeco.long_verdant_brick_wall": "ζ’η‹€θΌε²©ηΆ η£šη‰†", + "block.createdeco.long_verdant_bricks": "ζ’η‹€θΌε²©ηΆ η£š", + "block.createdeco.magenta_placard": "ζ΄‹η΄…θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.magenta_shipping_container": "洋紅色貨櫃", + "block.createdeco.mossy_blue_brick_slab": "θ¦†θ‹”ηš“ηŸ³θ—η£šεŠη£š", + "block.createdeco.mossy_blue_brick_stairs": "θ¦†θ‹”ηš“ηŸ³θ—η£šζ¨“ζ’―", + "block.createdeco.mossy_blue_brick_wall": "θ¦†θ‹”ηš“ηŸ³θ—η£šη‰†", + "block.createdeco.mossy_blue_bricks": "θ¦†θ‹”ηš“ηŸ³θ—η£š", + "block.createdeco.mossy_dean_brick_slab": "θ¦†θ‹”θ΅­η ‚ι»ƒη£šεŠη£š", + "block.createdeco.mossy_dean_brick_stairs": "θ¦†θ‹”θ΅­η ‚ι»ƒη£šζ¨“ζ’―", + "block.createdeco.mossy_dean_brick_wall": "θ¦†θ‹”θ΅­η ‚ι»ƒη£šη‰†", + "block.createdeco.mossy_dean_bricks": "θ¦†θ‹”θ΅­η ‚ι»ƒη£š", + "block.createdeco.mossy_dusk_brick_slab": "θ¦†θ‹”η„¦ζΈ£ι»‘η£šεŠη£š", + "block.createdeco.mossy_dusk_brick_stairs": "θ¦†θ‹”η„¦ζΈ£ι»‘η£šζ¨“ζ’―", + "block.createdeco.mossy_dusk_brick_wall": "θ¦†θ‹”η„¦ζΈ£ι»‘η£šη‰†", + "block.createdeco.mossy_dusk_bricks": "θ¦†θ‹”η„¦ζΈ£ι»‘η£š", + "block.createdeco.mossy_pearl_brick_slab": "θ¦†θ‹”ηŸ³η°η™½η£šεŠη£š", + "block.createdeco.mossy_pearl_brick_stairs": "θ¦†θ‹”ηŸ³η°η™½η£šζ¨“ζ’―", + "block.createdeco.mossy_pearl_brick_wall": "θ¦†θ‹”ηŸ³η°η™½η£šη‰†", + "block.createdeco.mossy_pearl_bricks": "θ¦†θ‹”ηŸ³η°η™½η£š", + "block.createdeco.mossy_red_brick_slab": "θ¦†θ‹”η΄…η£šεŠη£š", + "block.createdeco.mossy_red_brick_stairs": "θ¦†θ‹”η΄…η£šζ¨“ζ’―", + "block.createdeco.mossy_red_brick_wall": "θ¦†θ‹”η΄…η£šη‰†", + "block.createdeco.mossy_red_bricks": "θ¦†θ‹”η΄…η£š", + "block.createdeco.mossy_scarlet_brick_slab": "θ¦†θ‹”η·‹ε²©η΄…η£šεŠη£š", + "block.createdeco.mossy_scarlet_brick_stairs": "θ¦†θ‹”η·‹ε²©η΄…η£šζ¨“ζ’―", + "block.createdeco.mossy_scarlet_brick_wall": "θ¦†θ‹”η·‹ε²©η΄…η£šη‰†", + "block.createdeco.mossy_scarlet_bricks": "θ¦†θ‹”η·‹ε²©η΄…η£š", + "block.createdeco.mossy_umber_brick_slab": "θ¦†θ‹”η†”ζΈ£ζ£•η£šεŠη£š", + "block.createdeco.mossy_umber_brick_stairs": "θ¦†θ‹”η†”ζΈ£ζ£•η£šζ¨“ζ’―", + "block.createdeco.mossy_umber_brick_wall": "θ¦†θ‹”η†”ζΈ£ζ£•η£šη‰†", + "block.createdeco.mossy_umber_bricks": "θ¦†θ‹”η†”ζΈ£ζ£•η£š", + "block.createdeco.mossy_verdant_brick_slab": "θ¦†θ‹”θΌε²©ηΆ η£šεŠη£š", + "block.createdeco.mossy_verdant_brick_stairs": "θ¦†θ‹”θΌε²©ηΆ η£šζ¨“ζ’―", + "block.createdeco.mossy_verdant_brick_wall": "θ¦†θ‹”θΌε²©ηΆ η£šη‰†", + "block.createdeco.mossy_verdant_bricks": "θ¦†θ‹”θΌε²©ηΆ η£š", + "block.createdeco.orange_placard": "ζ©˜θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.orange_shipping_container": "ζ©˜θ‰²θ²¨ζ«ƒ", + "block.createdeco.pearl_brick_slab": "ηŸ³η°η™½η£šεŠη£š", + "block.createdeco.pearl_brick_stairs": "ηŸ³η°η™½η£šζ¨“ζ’―", + "block.createdeco.pearl_brick_wall": "ηŸ³η°η™½η£šη‰†", + "block.createdeco.pearl_bricks": "ηŸ³η°η™½η£š", + "block.createdeco.pink_placard": "η²‰η΄…θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.pink_shipping_container": "粉紅色貨櫃", + "block.createdeco.purple_placard": "η΄«θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.purple_shipping_container": "紫色貨櫃", + "block.createdeco.red_brass_lamp": "η΄…θ‰²ι»ƒιŠ…η± η‡ˆ", + "block.createdeco.red_copper_lamp": "η΄…θ‰²ιŠ…η± η‡ˆ", + "block.createdeco.red_placard": "η΄…θ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.red_shipping_container": "紅色貨櫃", + "block.createdeco.red_zinc_lamp": "η΄…θ‰²ι‹…η± η‡ˆ", + "block.createdeco.scarlet_brick_slab": "η·‹ε²©η΄…η£šεŠη£š", + "block.createdeco.scarlet_brick_stairs": "η·‹ε²©η΄…η£šζ¨“ζ’―", + "block.createdeco.scarlet_brick_wall": "η·‹ε²©η΄…η£šη‰†", + "block.createdeco.scarlet_bricks": "η·‹ε²©η΄…η£š", + "block.createdeco.short_blue_brick_slab": "ε―†η Œηš“ηŸ³θ—η£šεŠη£š", + "block.createdeco.short_blue_brick_stairs": "ε―†η Œηš“ηŸ³θ—η£šζ¨“ζ’―", + "block.createdeco.short_blue_brick_wall": "ε―†η Œηš“ηŸ³θ—η£šη‰†", + "block.createdeco.short_blue_bricks": "ε―†η Œηš“ηŸ³θ—η£š", + "block.createdeco.short_dean_brick_slab": "ε―†η Œθ΅­η ‚ι»ƒη£šεŠη£š", + "block.createdeco.short_dean_brick_stairs": "ε―†η Œθ΅­η ‚ι»ƒη£šζ¨“ζ’―", + "block.createdeco.short_dean_brick_wall": "ε―†η Œθ΅­η ‚ι»ƒη£šη‰†", + "block.createdeco.short_dean_bricks": "ε―†η Œθ΅­η ‚ι»ƒη£š", + "block.createdeco.short_dusk_brick_slab": "ε―†η Œη„¦ζΈ£ι»‘η£šεŠη£š", + "block.createdeco.short_dusk_brick_stairs": "ε―†η Œη„¦ζΈ£ι»‘η£šζ¨“ζ’―", + "block.createdeco.short_dusk_brick_wall": "ε―†η Œη„¦ζΈ£ι»‘η£šη‰†", + "block.createdeco.short_dusk_bricks": "ε―†η Œη„¦ζΈ£ι»‘η£š", + "block.createdeco.short_pearl_brick_slab": "ε―†η ŒηŸ³η°η™½η£šεŠη£š", + "block.createdeco.short_pearl_brick_stairs": "ε―†η ŒηŸ³η°η™½η£šζ¨“ζ’―", + "block.createdeco.short_pearl_brick_wall": "ε―†η ŒηŸ³η°η™½η£šη‰†", + "block.createdeco.short_pearl_bricks": "ε―†η ŒηŸ³η°η™½η£š", + "block.createdeco.short_red_brick_slab": "ε―†η Œη΄…η£šεŠη£š", + "block.createdeco.short_red_brick_stairs": "ε―†η Œη΄…η£šζ¨“ζ’―", + "block.createdeco.short_red_brick_wall": "ε―†η Œη΄…η£šη‰†", + "block.createdeco.short_red_bricks": "ε―†η Œη΄…η£š", + "block.createdeco.short_scarlet_brick_slab": "ε―†η Œη·‹ε²©η΄…η£šεŠη£š", + "block.createdeco.short_scarlet_brick_stairs": "ε―†η Œη·‹ε²©η΄…η£šζ¨“ζ’―", + "block.createdeco.short_scarlet_brick_wall": "ε―†η Œη·‹ε²©η΄…η£šη‰†", + "block.createdeco.short_scarlet_bricks": "ε―†η Œη·‹ε²©η΄…η£š", + "block.createdeco.short_umber_brick_slab": "ε―†η Œη†”ζΈ£ζ£•η£šεŠη£š", + "block.createdeco.short_umber_brick_stairs": "ε―†η Œη†”ζΈ£ζ£•η£šζ¨“ζ’―", + "block.createdeco.short_umber_brick_wall": "ε―†η Œη†”ζΈ£ζ£•η£šη‰†", + "block.createdeco.short_umber_bricks": "ε―†η Œη†”ζΈ£ζ£•η£š", + "block.createdeco.short_verdant_brick_slab": "ε―†η ŒθΌε²©ηΆ η£šεŠη£š", + "block.createdeco.short_verdant_brick_stairs": "ε―†η ŒθΌε²©ηΆ η£šζ¨“ζ’―", + "block.createdeco.short_verdant_brick_wall": "ε―†η ŒθΌε²©ηΆ η£šη‰†", + "block.createdeco.short_verdant_bricks": "ε―†η ŒθΌε²©ηΆ η£š", + "block.createdeco.tiled_blue_brick_slab": "ε―†ι‹ͺηš“ηŸ³θ—η£šεŠη£š", + "block.createdeco.tiled_blue_brick_stairs": "ε―†ι‹ͺηš“ηŸ³θ—η£šζ¨“ζ’―", + "block.createdeco.tiled_blue_brick_wall": "ε―†ι‹ͺηš“ηŸ³θ—η£šη‰†", + "block.createdeco.tiled_blue_bricks": "ε―†ι‹ͺηš“ηŸ³θ—η£š", + "block.createdeco.tiled_dean_brick_slab": "ε―†ι‹ͺθ΅­η ‚ι»ƒη£šεŠη£š", + "block.createdeco.tiled_dean_brick_stairs": "ε―†ι‹ͺθ΅­η ‚ι»ƒη£šζ¨“ζ’―", + "block.createdeco.tiled_dean_brick_wall": "ε―†ι‹ͺθ΅­η ‚ι»ƒη£šη‰†", + "block.createdeco.tiled_dean_bricks": "ε―†ι‹ͺθ΅­η ‚ι»ƒη£š", + "block.createdeco.tiled_dusk_brick_slab": "ε―†ι‹ͺη„¦ζΈ£ι»‘η£šεŠη£š", + "block.createdeco.tiled_dusk_brick_stairs": "ε―†ι‹ͺη„¦ζΈ£ι»‘η£šζ¨“ζ’―", + "block.createdeco.tiled_dusk_brick_wall": "ε―†ι‹ͺη„¦ζΈ£ι»‘η£šη‰†", + "block.createdeco.tiled_dusk_bricks": "ε―†ι‹ͺη„¦ζΈ£ι»‘η£š", + "block.createdeco.tiled_pearl_brick_slab": "ε―†ι‹ͺηŸ³η°η™½η£šεŠη£š", + "block.createdeco.tiled_pearl_brick_stairs": "ε―†ι‹ͺηŸ³η°η™½η£šζ¨“ζ’―", + "block.createdeco.tiled_pearl_brick_wall": "ε―†ι‹ͺηŸ³η°η™½η£šη‰†", + "block.createdeco.tiled_pearl_bricks": "ε―†ι‹ͺηŸ³η°η™½η£š", + "block.createdeco.tiled_red_brick_slab": "ε―†ι‹ͺη΄…η£šεŠη£š", + "block.createdeco.tiled_red_brick_stairs": "ε―†ι‹ͺη΄…η£šζ¨“ζ’―", + "block.createdeco.tiled_red_brick_wall": "ε―†ι‹ͺη΄…η£šη‰†", + "block.createdeco.tiled_red_bricks": "ε―†ι‹ͺη΄…η£š", + "block.createdeco.tiled_scarlet_brick_slab": "ε―†ι‹ͺη·‹ε²©η΄…η£šεŠη£š", + "block.createdeco.tiled_scarlet_brick_stairs": "ε―†ι‹ͺη·‹ε²©η΄…η£šζ¨“ζ’―", + "block.createdeco.tiled_scarlet_brick_wall": "ε―†ι‹ͺη·‹ε²©η΄…η£šη‰†", + "block.createdeco.tiled_scarlet_bricks": "ε―†ι‹ͺη·‹ε²©η΄…η£š", + "block.createdeco.tiled_umber_brick_slab": "ε―†ι‹ͺη†”ζΈ£ζ£•η£šεŠη£š", + "block.createdeco.tiled_umber_brick_stairs": "ε―†ι‹ͺη†”ζΈ£ζ£•η£šζ¨“ζ’―", + "block.createdeco.tiled_umber_brick_wall": "ε―†ι‹ͺη†”ζΈ£ζ£•η£šη‰†", + "block.createdeco.tiled_umber_bricks": "ε―†ι‹ͺη†”ζΈ£ζ£•η£š", + "block.createdeco.tiled_verdant_brick_slab": "ε―†ι‹ͺ輝岩碠磚半磚", + "block.createdeco.tiled_verdant_brick_stairs": "ε―†ι‹ͺθΌε²©ηΆ η£šζ¨“ζ’―", + "block.createdeco.tiled_verdant_brick_wall": "ε―†ι‹ͺθΌε²©ηΆ η£šη‰†", + "block.createdeco.tiled_verdant_bricks": "ε―†ι‹ͺ輝岩碠磚", + "block.createdeco.umber_brick_slab": "η†”ζΈ£ζ£•η£šεŠη£š", + "block.createdeco.umber_brick_stairs": "η†”ζΈ£ζ£•η£šζ¨“ζ’―", + "block.createdeco.umber_brick_wall": "η†”ζΈ£ζ£•η£šη‰†", + "block.createdeco.umber_bricks": "η†”ζΈ£ζ£•η£š", + "block.createdeco.verdant_brick_slab": "輝岩碠磚半磚", + "block.createdeco.verdant_brick_stairs": "θΌε²©ηΆ η£šζ¨“ζ’―", + "block.createdeco.verdant_brick_wall": "θΌε²©ηΆ η£šη‰†", + "block.createdeco.verdant_bricks": "輝岩碠磚", + "block.createdeco.white_shipping_container": "白色貨櫃", + "block.createdeco.yellow_brass_lamp": "ι»ƒθ‰²ι»ƒιŠ…η± η‡ˆ", + "block.createdeco.yellow_copper_lamp": "ι»ƒθ‰²ιŠ…η± η‡ˆ", + "block.createdeco.yellow_placard": "ι»ƒθ‰²ζ¨™η€Ίη‰Œ", + "block.createdeco.yellow_shipping_container": "黃色貨櫃", + "block.createdeco.yellow_zinc_lamp": "ι»ƒθ‰²ι‹…η± η‡ˆ", + "block.createdeco.zinc_bars": "鋅欄杆", + "block.createdeco.zinc_bars_overlay": "鋅欄板", + "block.createdeco.zinc_catwalk": "鋅棧道", + "block.createdeco.zinc_catwalk_railing": "鋅棧道扢手", + "block.createdeco.zinc_catwalk_stairs": "鋅棧道樓撯", + "block.createdeco.zinc_coinstack": "鋅瑬幣堆", + "block.createdeco.zinc_door": "ι‹…ι–€", + "block.createdeco.zinc_facade": "鋅牆青", + "block.createdeco.zinc_hull": "ι‹…εˆ—θ»Šε€–ζΌ", + "block.createdeco.zinc_ladder": "ι‹…ζ’―", + "block.createdeco.zinc_mesh_fence": "鋅碲狀欄杆", + "block.createdeco.zinc_sheet_metal": "鋅金屬板", + "block.createdeco.zinc_support": "ι‹…ζ”―ζžΆ", + "block.createdeco.zinc_support_wedge": "鋅支撐ζ₯”", + "block.createdeco.zinc_trapdoor": "鋅活板門", + "block.createdeco.zinc_window": "ι‹…ηͺ—ζˆΆ", + "block.createdeco.zinc_window_pane": "ι‹…ηͺ—ζ Ό" +} \ No newline at end of file diff --git a/kubejs/assets/createhorsepower/lang/ru_ru.json b/kubejs/assets/createhorsepower/lang/ru_ru.json index 1fa50fcb8..6bf7a0e5a 100644 --- a/kubejs/assets/createhorsepower/lang/ru_ru.json +++ b/kubejs/assets/createhorsepower/lang/ru_ru.json @@ -1,16 +1,16 @@ { "__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": "ΠšΠΎΠ½Π½Ρ‹ΠΉ ΠΏΡ€ΠΈΠ²ΠΎΠ΄", + "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.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": "Π’ настройках ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠΊΠ°Π·Π°Ρ‚ΡŒ Π»ΡŽΠ±Ρ‹Ρ… ΠΌΠΎΠ±ΠΎΠ², Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΈΡ… Π² Ρ€Π°Π±ΠΎΡ‡ΠΈΡ…", @@ -20,5 +20,5 @@ "createhorsepower.ponder.tag.path_types": "Π‘Π»ΠΎΠΊΠΈ Ρ‚Ρ€ΠΎΠΏΡ‹", "createhorsepower.ponder.tag.path_types.description": "Π‘Π»ΠΎΠΊΠΈ, ΠΏΠΎ ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΌ ΠΌΠΎΠ³ΡƒΡ‚ Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ Ρ€Π°Π±ΠΎΡ‡ΠΈΠ΅ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅", "createhorsepower.ponder.tag.viable_workers": "ΠŸΠΎΠ΄Ρ…ΠΎΠ΄ΡΡ‰ΠΈΠΉ Ρ€Π°Π±ΠΎΡ‡ΠΈΠΉ", - "createhorsepower.ponder.tag.viable_workers.description": "Π–ΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΡ€ΠΈΠ²ΠΎΠ΄ΠΈΡ‚ΡŒ Π² Π΄Π²ΠΈΠΆΠ΅Π½ΠΈΠ΅ Π»ΠΎΡˆΠ°Π΄ΠΈΠ½Ρ‹ΠΉ ΠΏΡ€ΠΈΠ²ΠΎΠ΄" + "createhorsepower.ponder.tag.viable_workers.description": "Π–ΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΡ€ΠΈΠ²ΠΎΠ΄ΠΈΡ‚ΡŒ Π² Π΄Π²ΠΈΠΆΠ΅Π½ΠΈΠ΅ скотный ΠΏΡ€ΠΈΠ²ΠΎΠ΄" } \ No newline at end of file diff --git a/kubejs/assets/createhorsepower/lang/zh_tw.json b/kubejs/assets/createhorsepower/lang/zh_tw.json new file mode 100644 index 000000000..a23916578 --- /dev/null +++ b/kubejs/assets/createhorsepower/lang/zh_tw.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/deafission/lang/ja_jp.json b/kubejs/assets/deafission/lang/ja_jp.json new file mode 100644 index 000000000..694662cbe --- /dev/null +++ b/kubejs/assets/deafission/lang/ja_jp.json @@ -0,0 +1,32 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.deafission.fission_reactor_mk1": "ζ Έεˆ†θ£‚η‚‰MK I", + "block.deafission.fission_reactor_mk2": "ζ Έεˆ†θ£‚η‚‰MK II", + "block.deafission.fuel_holder": "燃料棒格納部", + "deafission.machine.fuel_holder.tooltip": "ζ Έεˆ†θ£‚εεΏœγ‚’ε‰ε…¨γ«θ‘Œγ†γŸγ‚γ«γ€η‡ƒζ–™ζ£’を格納するブロックです。", + "block.deafission.material_holder": "γƒžγƒ†γƒͺをルホルダー", + "deafission.machine.material_holder.tooltip": "η†±γ‚„ζ”Ύε°„η·šγ‚’δ½Ώγ†ζ Έεˆ†θ£‚η‚‰γγƒ¬γ‚·γƒ”で使用するをむテムをε…₯γ‚Œγ‚‹γŸγ‚γγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγƒ–ロックです。", + "block.deafission.redstone_port": "γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³γƒγƒΌγƒˆ", + "deafission.machine.redstone_port.tooltip": "γƒ¬γƒ³γƒγ§γƒ’γƒΌγƒ‰γ‚’εˆ‡γ‚Šζ›Ώγˆγ‚‰γ‚ŒγΎγ™γ€‚", + "deafission.redstone_port.mode.heat": "熱", + "deafission.redstone_port.mode.fuels": "燃料", + "deafission.fission_reactor.gui.mode.default": "ζ­£εΈΈ", + "deafission.fission_reactor.gui.mode.cooldown": "クールダウン", + "deafission.fission_reactor.gui.stats": "%s H %s Th %s Eff", + "deafission.fission_reactor.gui.recipe": "レシピ: %s", + "deafission.fission_reactor.gui.recipe_none": "レシピ: η©Ί", + "deafission.fission_reactor.gui.coolant": "冷却材: %s mB/t", + "deafission.fission_reactor.gui.coolant_missing": "冷却材: %s (had %s%%)", + "deafission.fission_reactor.gui.fuel": "燃料: %s 損傷倀", + "deafission.fission_reactor.gui.fuel_throttle": "燃料: %s 損傷倀 @ %s%%", + "deafission.fission_reactor.gui.cooling": "冷却: %s HU/t", + "deafission.fission_reactor.gui.heating": "εŠ η†±: %s HU/t", + "deafission.fission_reactor.gui.processing": "処理: %s HU/t", + "deafission.fission_reactor.gui.mass": "θ³ͺ量: %s HU/Β°", + "deafission.fission_reactor.gui.heat": "熱量: %s / %s", + "item.deafission.fuelcell_plutonium_x1": "Plutonium Fuel Cell", + "item.deafission.fuelcell_thorium_x1": "Thorium Fuel Cell", + "item.deafission.fuelcell_uranium_x1": "Uranium Fuel Cell", + "material.deafission.flibe": "FLiBe Coolant", + "material.deafission.flibe_hot": "FLiBe Coolant(HotοΌ‰" +} \ No newline at end of file diff --git a/kubejs/assets/deafission/lang/zh_cn.json b/kubejs/assets/deafission/lang/zh_cn.json new file mode 100644 index 000000000..f3e65572d --- /dev/null +++ b/kubejs/assets/deafission/lang/zh_cn.json @@ -0,0 +1,50 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.deafission.fission_reactor_mk1": "θ£‚ε˜εεΊ”ε † MK I", + "block.deafission.fission_reactor_mk2": "θ£‚ε˜εεΊ”ε † MK II", + "block.deafission.fuel_holder": "η‡ƒζ–™ζ”―ζžΆ", + "deafission.machine.fuel_holder.tooltip": "ε­˜ε‚¨εΉΆεΉηΊ³ζ ΈεεΊ”ε †η‡ƒζ–™ζ£’οΌŒη‘δΏθ£‚ε˜εεΊ”ε‰ε…¨θΏ›θ‘Œγ€‚", + "block.deafission.material_holder": "ζζ–™ζ”―ζžΆ", + "deafission.machine.material_holder.tooltip": "ε­˜ε‚¨εΉΆεΉηΊ³εŸΊδΊŽηƒ­θΎε°„ηš„θ£‚ε˜εεΊ”ε †εˆζˆι…ζ–Ήζ‰€ιœ€θΎ“ε…₯材料。", + "block.deafission.redstone_port": "纒石端口", + "deafission.machine.redstone_port.tooltip": "δ½Ώη”¨ζ‰³ζ‰‹εˆ‡ζ’ε·₯δ½œζ¨‘εΌγ€‚", + "deafission.redstone_port.mode.heat": "输出热量/ζœ€ε€§ε€Ό", + "deafission.redstone_port.mode.fuels": "输出燃料数/ζ”―ζžΆζ•°", + "deafission.fission_reactor.gui.mode.default": "正常运葌", + "deafission.fission_reactor.gui.mode.cooldown": "冷却中", + "deafission.fission_reactor.gui.stats": "%s ηƒ­ %s 限 %s ζ•ˆ", + "deafission.fission_reactor.gui.recipe": "配方: %s", + "deafission.fission_reactor.gui.recipe_none": "配方: ζ— ", + "deafission.fission_reactor.gui.coolant": "冷却剂: %s mB/t", + "deafission.fission_reactor.gui.coolant_missing": "冷却剂: %s (εŽŸζœ‰ %s%%)", + "deafission.fission_reactor.gui.fuel": "燃料: %s 损伀度", + "deafission.fission_reactor.gui.fuel_throttle": "燃料: %s 损伀度 @ %s%%", + "deafission.fission_reactor.gui.cooling": "冷却: %s HU/t", + "deafission.fission_reactor.gui.heating": "εŠ ηƒ­: %s HU/t", + "deafission.fission_reactor.gui.processing": "倄理中: %s HU/t", + "deafission.fission_reactor.gui.mass": "质量: %s HU/Β°", + "deafission.fission_reactor.gui.heat": "热量: %s / %s", + "item.deafission.fuelcell_plutonium_x1": "ι’šη‡ƒζ–™ε•ε…ƒ", + "item.deafission.fuelcell_thorium_x1": "钍燃料单元", + "item.deafission.fuelcell_uranium_x1": "铀燃料单元", + "material.deafission.flibe": "ζ°Ÿι”‚ι“ε†·ε΄ε‰‚", + "material.deafission.flibe_hot": "ζ°Ÿι”‚ι“ε†·ε΄ε‰‚οΌˆι«˜ζΈ©οΌ‰", + "tooltip.deafission.fuelcell.rodcount": "燃料棒数量: %s", + "tooltip.deafission.fuelcell.heat": "热量: %s%%", + "tooltip.deafission.fuelcell.avgheat": "εΉ³ε‡η”Ÿε‘½ε‘¨ζœŸ: %s 热量", + "tooltip.deafission.fuelcell.avgheat_none": "εΉ³ε‡η”Ÿε‘½ε‘¨ζœŸ: Β§7--- Β§r热量", + "config.jade.plugin_deafission.reactor": "ζ˜Ύη€ΊεεΊ”ε †δΏ‘ζ―", + "deafission.recipe.heat_per_tick": "热量: -%s HU/t", + "deafission.recipe.coolant_heat_per_tick": "热量: -%s HU/t/Β°", + "deafission.fission_reactor_coolant": "θ£‚ε˜εεΊ”ε †", + "deafission.fission_reactor_processing": "θ£‚ε˜ηƒ­εŠ ε·₯", + "deafission.fission_reactor_fuel": "θ£‚ε˜δΊ§η‰©", + "emi.category.deafission.fission_component": "θ£‚ε˜εεΊ”ε †η»„δ»Ά", + "emi.deafission.heat_component_key": "ζœ€ε€§ηƒ­ι‡:", + "emi.deafission.heat_component_value": "%dΒ°", + "emi.deafission.throttle_component_key": "εŠŸηŽ‡ι™εˆΆ:", + "emi.deafission.throttle_component_value": "%d", + "emi.deafission.efficiency_component_key": "ζ•ˆηŽ‡:", + "emi.deafission.efficiency_component_value": "%d", + "deafission.subtitles.reactor_loop": "反应堆嗑鸣声" +} \ No newline at end of file diff --git a/kubejs/assets/deafission/lang/zh_tw.json b/kubejs/assets/deafission/lang/zh_tw.json new file mode 100644 index 000000000..a519b6ef8 --- /dev/null +++ b/kubejs/assets/deafission/lang/zh_tw.json @@ -0,0 +1,50 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.deafission.fission_reactor_mk1": "裂θŠεζ‡‰ηˆ MK I", + "block.deafission.fission_reactor_mk2": "裂θŠεζ‡‰ηˆ MK II", + "block.deafission.fuel_holder": "η‡ƒζ–™ζ”―ζžΆ", + "deafission.machine.fuel_holder.tooltip": "η”¨ζ–Όε­˜ζ”ΎδΈ¦ε›Ίεšζ Έεζ‡‰ηˆηš„η‡ƒζ–™ζ£’οΌŒη’ΊδΏθ£‚θŠεζ‡‰θƒ½ε€ ε‰ε…¨ι€²θ‘Œγ€‚", + "block.deafission.material_holder": "ζζ–™ζ”―ζžΆ", + "deafission.machine.material_holder.tooltip": "η”¨ζ–Όε­˜ζ”Ύδ»₯η†±θΌ»ε°„η‚ΊεŸΊη€Žηš„θ£‚θŠεζ‡‰ηˆεˆζˆι…ζ–Ήζ‰€ιœ€ηš„θΌΈε…₯材料。", + "block.deafission.redstone_port": "η΄…ηŸ³η«―ε£", + "deafission.machine.redstone_port.tooltip": "δ½Ώη”¨ζ‰³ζ‰‹εˆ‡ζ›ι‹δ½œζ¨‘εΌγ€‚", + "deafission.redstone_port.mode.heat": "θΌΈε‡Ίη†±ι‡οΌζœ€ε€§ε€Ό", + "deafission.redstone_port.mode.fuels": "θΌΈε‡Ίη‡ƒζ–™ζ•ΈοΌζ”―ζžΆζ•Έ", + "deafission.fission_reactor.gui.mode.default": "ζ­£εΈΈι‹δ½œ", + "deafission.fission_reactor.gui.mode.cooldown": "冷卻中", + "deafission.fission_reactor.gui.stats": "%s 熱 %s 限 %s ζ•ˆ", + "deafission.fission_reactor.gui.recipe": "ι…ζ–ΉοΌš%s", + "deafission.fission_reactor.gui.recipe_none": "ι…ζ–ΉοΌšη„‘", + "deafission.fission_reactor.gui.coolant": "ε†·ε»εŠ‘οΌš%s mB/t", + "deafission.fission_reactor.gui.coolant_missing": "ε†·ε»εŠ‘οΌš%sοΌˆε‰©ι€˜ %s%%οΌ‰", + "deafission.fission_reactor.gui.fuel": "η‡ƒζ–™οΌš%s 損耗度", + "deafission.fission_reactor.gui.fuel_throttle": "η‡ƒζ–™οΌš%s 損耗度 @ %s%%", + "deafission.fission_reactor.gui.cooling": "ε†·ε»οΌš%s HU/t", + "deafission.fission_reactor.gui.heating": "εŠ η†±οΌš%s HU/t", + "deafission.fission_reactor.gui.processing": "θ™•η†δΈ­οΌš%s HU/t", + "deafission.fission_reactor.gui.mass": "熱εΉι‡οΌš%s HU/Β°", + "deafission.fission_reactor.gui.heat": "η†±ι‡οΌš%s / %s", + "item.deafission.fuelcell_plutonium_x1": "ιˆ½η‡ƒζ–™ε–ε…ƒ", + "item.deafission.fuelcell_thorium_x1": "釷燃料ε–ε…ƒ", + "item.deafission.fuelcell_uranium_x1": "ιˆΎη‡ƒζ–™ε–ε…ƒ", + "material.deafission.flibe": "ζ°ŸεŒ–ι‹°ιˆΉε†·ε»εŠ‘", + "material.deafission.flibe_hot": "ζ°ŸεŒ–ι‹°ιˆΉε†·ε»εŠ‘οΌˆι«˜ζΊ«οΌ‰", + "tooltip.deafission.fuelcell.rodcount": "η‡ƒζ–™ζ£’ζ•Έι‡οΌš%s", + "tooltip.deafission.fuelcell.heat": "η†±ι‡οΌš%s%%", + "tooltip.deafission.fuelcell.avgheat": "εΉ³ε‡η”Ÿε‘½ι€±ζœŸοΌš%s 熱量", + "tooltip.deafission.fuelcell.avgheat_none": "εΉ³ε‡η”Ÿε‘½ι€±ζœŸοΌšΒ§7--- Β§r熱量", + "config.jade.plugin_deafission.reactor": "ι‘―η€Ίεζ‡‰ηˆθ³‡θ¨Š", + "deafission.recipe.heat_per_tick": "η†±ι‡οΌš-%s HU/t", + "deafission.recipe.coolant_heat_per_tick": "η†±ι‡οΌš-%s HU/t/Β°", + "deafission.fission_reactor_coolant": "裂θŠεζ‡‰ηˆ", + "deafission.fission_reactor_processing": "裂θŠη†±θ™•理", + "deafission.fission_reactor_fuel": "裂θŠη”’物", + "emi.category.deafission.fission_component": "裂θŠεζ‡‰ηˆη΅„δ»Ά", + "emi.deafission.heat_component_key": "ζœ€ε€§η†±ι‡οΌš", + "emi.deafission.heat_component_value": "%dΒ°", + "emi.deafission.throttle_component_key": "εŠŸηŽ‡ι™εˆΆοΌš", + "emi.deafission.throttle_component_value": "%d", + "emi.deafission.efficiency_component_key": "ζ•ˆηŽ‡οΌš", + "emi.deafission.efficiency_component_value": "%d", + "deafission.subtitles.reactor_loop": "εζ‡‰ηˆε—‘ι³΄θ²" +} \ No newline at end of file diff --git a/kubejs/assets/diggerhelmet/lang/ru_ru.json b/kubejs/assets/diggerhelmet/lang/ru_ru.json index 7ecbde127..02630071b 100644 --- a/kubejs/assets/diggerhelmet/lang/ru_ru.json +++ b/kubejs/assets/diggerhelmet/lang/ru_ru.json @@ -7,30 +7,30 @@ "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.shift_info": "Π’ΠΎΠ·ΡŒΠΌΠΈΡ‚Π΅ каску Π² Ρ€ΡƒΠΊΡƒ, Π½Π°ΠΆΠΌΠΈΡ‚Π΅ Β§eSHIFTΒ§7+ПКМ ΠΈ откроСтся интСрфСйс каски", "tooltip.diggerhelmet.digger_helmet.wool_lining_active": "Β§aШСрстяная ΠΏΠΎΠ΄ΠΊΠ»Π°Π΄ΠΊΠ° установлСна - обСспСчиваСт согрСваниС", - "tooltip.diggerhelmet.digger_helmet.silk_lining_active": "Β§bШСлковая ΠΏΠΎΠ΄ΠΊΠ»Π°Π΄ΠΊΠ° установлСна - обСспСчиваСт ΠΎΡ…Π»Π°ΠΆΠ΄Π΅Π½ΠΈΠ΅", + "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.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": "АвтоматичСски ΠΏΡŒΠ΅Ρ‚ Π²ΠΎΠ΄Ρƒ ΠΈΠ· инвСнтаря ΠΏΡ€ΠΈ установкС Π² ΡˆΠ°Ρ…Ρ‚Π΅Ρ€ΡΠΊΡƒΡŽ каску", + "tooltip.diggerhelmet.cooldown": "АвтоматичСски ΠΏΡŒΡ‘Ρ‚ Π²ΠΎΠ΄Ρƒ ΠΈΠ· инвСнтаря ΠΏΡ€ΠΈ установкС Π² ΡˆΠ°Ρ…Ρ‚Π΅Ρ€ΡΠΊΡƒΡŽ каску", "item.diggerhelmet.eternal_candle": "ВСчная свСча", - "tooltip.diggerhelmet.eternal_candle.main": "ВаинствСнный Π˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊ Π’Π΅Ρ‡Π½ΠΎΠ³ΠΎ ПламСни", + "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": "УстановитС Π² ΡˆΠ°Ρ…Ρ‚Π΅Ρ€ΡΠΊΡƒΡŽ каску для Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π½Ρ‹Ρ… свойств", + "tooltip.diggerhelmet.wool_lining.usage": "УстановитС Π² ΡˆΠ°Ρ…Ρ‚Ρ‘Ρ€ΡΠΊΡƒΡŽ каску для Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π½Ρ‹Ρ… свойств", "item.diggerhelmet.silk_lining": "Шёлковая ΠΏΠΎΠ΄ΠΊΠ»Π°Π΄ΠΊΠ°", "tooltip.diggerhelmet.silk_lining.main": "ΠžΠ±Π΅ΡΠΏΠ΅Ρ‡ΠΈΠ²Π°Π΅Ρ‚ ΠΏΡ€ΠΎΡ…Π»Π°Π΄Ρƒ ΠΈ Π»Π΅Π³ΠΊΠΎΡΡ‚ΡŒ", - "tooltip.diggerhelmet.silk_lining.usage": "УстановитС Π² ΡˆΠ°Ρ…Ρ‚Π΅Ρ€ΡΠΊΡƒΡŽ каску для ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΠΈΡ… свойств", + "tooltip.diggerhelmet.silk_lining.usage": "УстановитС Π² ΡˆΠ°Ρ…Ρ‚Ρ‘Ρ€ΡΠΊΡƒΡŽ каску для ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΠΈΡ… свойств", "gui.diggerhelmet.slot_info.title": "Π˜Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΡ ΠΎ слотах", "gui.diggerhelmet.slot_info.left_slot": "Π›Π΅Π²Ρ‹ΠΉ слот: ΠœΠΎΠ΄ΠΈΡ„ΠΈΠΊΠ°Ρ‚ΠΎΡ€ автоматичСского ΠΏΠΈΡ‚ΡŒΡ", "gui.diggerhelmet.slot_info.center_slot": "Π¦Π΅Π½Ρ‚Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ слот: ΠœΠΎΠ΄ΠΈΡ„ΠΈΠΊΠ°Ρ‚ΠΎΡ€ скорости Π΄ΠΎΠ±Ρ‹Ρ‡ΠΈ", diff --git a/kubejs/assets/diggerhelmet/lang/zh_tw.json b/kubejs/assets/diggerhelmet/lang/zh_tw.json new file mode 100644 index 000000000..1a56f1921 --- /dev/null +++ b/kubejs/assets/diggerhelmet/lang/zh_tw.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": "瀦ε·₯ι ­η›”", + "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": "ζ‰‹ζŒι ­η›”ζ™‚οΌŒζŒ‰δΈ‹ Shift + ε³ι΅ε³ε―ι–‹ε•Ÿδ»‹ι’", + "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/domum_ornamentum/lang/zh_tw.json b/kubejs/assets/domum_ornamentum/lang/zh_tw.json new file mode 100644 index 000000000..c76b8292d --- /dev/null +++ b/kubejs/assets/domum_ornamentum/lang/zh_tw.json @@ -0,0 +1,210 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.domum_ornamentum.architectscutter": "ε»Ίη―‰εΈ«εˆ‡ε‰²ζ©Ÿ", + "block.domum_ornamentum.beige_bricks": "η±³θ‰²η£šε‘Š", + "block.domum_ornamentum.beige_stone_bricks": "η±³θ‰²ηŸ³η£š", + "block.domum_ornamentum.black_floating_carpet": "黑色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.blockbarreldeco_onside": "ζ©«ζ”Ύζœ¨ζ‘Ά", + "block.domum_ornamentum.blockbarreldeco_standing": "η›΄η«‹ζœ¨ζ‘Ά", + "block.domum_ornamentum.blue_floating_carpet": "藍色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.brown_bricks": "ζ£•θ‰²η£šε‘Š", + "block.domum_ornamentum.brown_floating_carpet": "棕色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.brown_stone_bricks": "ζ£•θ‰²ηŸ³η£š", + "block.domum_ornamentum.cream_bricks": "ε₯Άζ²Ήθ‰²η£šε‘Š", + "block.domum_ornamentum.cream_stone_bricks": "ε₯Άζ²Ήθ‰²ηŸ³η£š", + "block.domum_ornamentum.roan_bricks": "ζ–‘ι§η£šε‘Š", + "block.domum_ornamentum.roan_stone_bricks": "ζ–‘ι§ηŸ³η£š", + "block.domum_ornamentum.cyan_floating_carpet": "青色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.gray_floating_carpet": "灰色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.green_floating_carpet": "碠色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.light_blue_floating_carpet": "淺藍色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.light_gray_floating_carpet": "淺灰色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.lime_floating_carpet": "淺碠色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.magenta_floating_carpet": "洋紅色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.orange_floating_carpet": "ζ©˜θ‰²ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.pink_floating_carpet": "粉紅色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.purple_floating_carpet": "紫色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.red_floating_carpet": "紅色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.sand_bricks": "ζ²™η£š", + "block.domum_ornamentum.sand_stone_bricks": "η ‚ε²©η£š", + "block.domum_ornamentum.white_floating_carpet": "白色ζ΅η©Ίεœ°ζ――", + "block.domum_ornamentum.yellow_floating_carpet": "黃色ζ΅η©Ίεœ°ζ――", + "cuttergroup.domum_ornamentum.avanilla": "εŸΊη€Žζ–Ήε‘Š", + "cuttergroup.domum_ornamentum.btimberframe": "ζœ¨ζ§‹ζ‘†ζžΆ", + "cuttergroup.domum_ornamentum.cshingle": "屋瓦", + "cuttergroup.domum_ornamentum.ddoor": "ι–€", + "cuttergroup.domum_ornamentum.etrapdoor": "活板門", + "cuttergroup.domum_ornamentum.fpanel": "青板", + "cuttergroup.domum_ornamentum.gpillar": "柱子", + "cuttergroup.domum_ornamentum.hpaperwall": "薄牆", + "cuttergroup.domum_ornamentum.ilight": "η‡ˆε…·", + "cuttergroup.domum_ornamentum.jbrick": "磚告", + "cuttergroup.domum_ornamentum.kpost": "η«‹ζŸ±", + "domum_ornamentum.allbrick.column.format": "δΈ»θ¦ζζ–™οΌš%s", + "domum_ornamentum.architectscutter": "ε»Ίη―‰εΈ«εˆ‡ε‰²ζ©Ÿ", + "domum_ornamentum.block.format": "ζζ–™οΌš%s", + "domum_ornamentum.blockpillar.name.format": "εœ“ε½’%s柱", + "domum_ornamentum.blockypillar.name.format": "ζ–Ήε‘Š%s柱", + "domum_ornamentum.dark_brick.name.format": "深色%s磚告", + "domum_ornamentum.dark_brick_stair.name.format": "深色%sη£šζ¨“ζ’―", + "domum_ornamentum.desc.center": "δΈ­εΏƒ%s", + "domum_ornamentum.desc.frame": "ι‚Šζ‘†%s", + "domum_ornamentum.desc.main": "主要%s", + "domum_ornamentum.desc.material": "ζζ–™οΌš%s", + "domum_ornamentum.desc.onlyone": "%s", + "domum_ornamentum.desc.shingle": "屋瓦%s", + "domum_ornamentum.desc.support": "支撐%s", + "domum_ornamentum.door.block.format": "ζζ–™οΌš%s", + "domum_ornamentum.door.name.format": "%sι–€", + "domum_ornamentum.door.type.format": "樣式:%s", + "domum_ornamentum.door.type.name.full": "ε―¦εΏƒ", + "domum_ornamentum.door.type.name.port.manteau": "ζ–—η―·ι€ εž‹", + "domum_ornamentum.door.type.name.vertically.striped": "εž‚η›΄ζ’η΄‹", + "domum_ornamentum.door.type.name.waffle": "ζ Όη‹€", + "domum_ornamentum.extra.name.format": "%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.black": "黑色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.blue": "藍色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.brown": "棕色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.cyan": "青色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.gray": "灰色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.green": "碠色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.light_blue": "淺藍色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.light_gray": "淺灰色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.lime": "淺碠色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.magenta": "洋紅色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.orange": "ζ©˜θ‰²%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.pink": "粉紅色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.purple": "紫色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.red": "紅色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.white": "白色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.extra.name.format.yellow": "黃色%sι™„εŠ θ£ι£Ύζ–Ήε‘Š", + "domum_ornamentum.fancydoor.center.block.format": " - ζζ–™οΌš%s", + "domum_ornamentum.fancydoor.center.header": "δΈ­εΏƒοΌš", + "domum_ornamentum.fancydoor.frame.block.format": " - ζζ–™οΌš%s", + "domum_ornamentum.fancydoor.frame.header": "ι‚Šζ‘†οΌš", + "domum_ornamentum.fancydoor.name.format": "η²Ύη·»%sι–€", + "domum_ornamentum.fancydoor.type.format": "樣式:%s", + "domum_ornamentum.fancydoor.type.name.creeper": "θ‹¦εŠ›ζ€•", + "domum_ornamentum.fancydoor.type.name.full": "ε―¦εΏƒ", + "domum_ornamentum.fancytrapdoor.center.block.format": " - ζζ–™οΌš%s", + "domum_ornamentum.fancytrapdoor.center.header": "δΈ­εΏƒοΌš", + "domum_ornamentum.fancytrapdoor.frame.block.format": " - ζζ–™οΌš%s", + "domum_ornamentum.fancytrapdoor.frame.header": "ι‚Šζ‘†οΌš", + "domum_ornamentum.fancytrapdoor.name.format": "η²Ύη·»%s活板門", + "domum_ornamentum.fancytrapdoor.type.format": "樣式:%s", + "domum_ornamentum.fancytrapdoor.type.name.creeper": "θ‹¦εŠ›ζ€•", + "domum_ornamentum.fancytrapdoor.type.name.full": "ε―¦εΏƒ", + "domum_ornamentum.fence-gate.name.format": "%sζŸ΅ζ¬„ι–€", + "domum_ornamentum.fence.name.format": "%sζŸ΅ζ¬„", + "domum_ornamentum.group": "εˆ†ι‘žοΌš", + "domum_ornamentum.light.center.block.format": " - ζζ–™οΌš%s", + "domum_ornamentum.light.center.header": "δΈ­εΏƒοΌš", + "domum_ornamentum.light.frame.block.format": " - ζζ–™οΌš%s", + "domum_ornamentum.light.frame.header": "ι‚Šζ‘†οΌš", + "domum_ornamentum.light.frame.name.format": "ι‘²ι‚Š%s", + "domum_ornamentum.light.frame.type.center_light": "δΈ­εΏƒ", + "domum_ornamentum.light.frame.type.crossed_light": "十字", + "domum_ornamentum.light.frame.type.fancy_light": "η²Ύη·»", + "domum_ornamentum.light.frame.type.format": " - 樣式:%s", + "domum_ornamentum.light.frame.type.four_light": "ε››ι‚Š", + "domum_ornamentum.light.frame.type.framed_light": "ι‘²ι‚Š", + "domum_ornamentum.light.frame.type.horizontal_light": "ζ°΄εΉ³", + "domum_ornamentum.light.frame.type.vertical_light": "εž‚η›΄", + "domum_ornamentum.light_brick.name.format": "δΊθ‰²%s磚告", + "domum_ornamentum.light_brick_stair.name.format": "δΊθ‰²%sη£šζ¨“ζ’―", + "domum_ornamentum.origin.tooltip": "η”±ε»Ίη―‰εΈ«εˆ‡ε‰²ζ©Ÿθ£½δ½œ", + "domum_ornamentum.panel.block.format": "ζζ–™οΌš%s", + "domum_ornamentum.panel.name.format": "%s青板", + "domum_ornamentum.panel.type.format": "樣式:%s", + "domum_ornamentum.panel.type.name.boss": "ε‡Έθ΅·", + "domum_ornamentum.panel.type.name.coffer": "ε…§ε‡Ή", + "domum_ornamentum.panel.type.name.full": "ε―¦εΏƒ", + "domum_ornamentum.panel.type.name.horizontal.bars": "水平欄杆", + "domum_ornamentum.panel.type.name.horizontally.squiggly.striped": "ζ°΄εΉ³ζ³’ζ΅ͺ撝紋", + "domum_ornamentum.panel.type.name.horizontally.striped": "水平撝紋", + "domum_ornamentum.panel.type.name.moulding": "線板", + "domum_ornamentum.panel.type.name.port.manteau": "ζ–—η―·ι€ εž‹", + "domum_ornamentum.panel.type.name.porthole": "舷ηͺ—", + "domum_ornamentum.panel.type.name.roundel": "εœ“ι£Ύ", + "domum_ornamentum.panel.type.name.slot": "η‹ΉηΈ«", + "domum_ornamentum.panel.type.name.vertical.bars": "εž‚η›΄ζ¬„ζ†", + "domum_ornamentum.panel.type.name.vertically.squiggly.striped": "εž‚η›΄ζ³’ζ΅ͺ撝紋", + "domum_ornamentum.panel.type.name.vertically.striped": "εž‚η›΄ζ’η΄‹", + "domum_ornamentum.panel.type.name.waffle": "ζ Όη‹€", + "domum_ornamentum.paperwall.center.format": " - δΈ­εΏƒοΌš%s", + "domum_ornamentum.paperwall.frame.format": " - ι‚Šζ‘†οΌš%s", + "domum_ornamentum.paperwall.header": "ζζ–™οΌš", + "domum_ornamentum.paperwall.name.format": "%sι‘²ι‚Šθ–„η‰†", + "domum_ornamentum.pillar.column.format": "δΈ»θ¦ζζ–™οΌš%s", + "domum_ornamentum.pillar.header": "樣式:", + "domum_ornamentum.post.block.format": "ζζ–™οΌš%s", + "domum_ornamentum.post.name.format": "%sη«‹ζŸ±", + "domum_ornamentum.post.type.format": "樣式:%s", + "domum_ornamentum.post.type.name.double": "ι›™ζŸ±", + "domum_ornamentum.post.type.name.heavy": "εŽšεΊ•", + "domum_ornamentum.post.type.name.pinched": "ζ”Άθ…°", + "domum_ornamentum.post.type.name.plain": "ε–ζŸ±", + "domum_ornamentum.post.type.name.quad": "ε››ζŸ±", + "domum_ornamentum.post.type.name.turned": "δΈ­ζ΅εŠ η²—", + "domum_ornamentum.shingle.main.format": "δΈ»θ¦ζζ–™οΌš%s", + "domum_ornamentum.shingle.name.format.block.domum_ornamentum.shingle": "%s屋瓦", + "domum_ornamentum.shingle.name.format.block.domum_ornamentum.shingle_flat": "%s平屋瓦", + "domum_ornamentum.shingle.name.format.block.domum_ornamentum.shingle_flat_lower": "%sδ½ŽεΉ³ε±‹η“¦", + "domum_ornamentum.shingle.support.format": "ζ”―ζ’οΌš%s", + "domum_ornamentum.shingle_slab.cover.format": "θ¦†θ“‹η‰©οΌš%s", + "domum_ornamentum.shingle_slab.main.format": "δΈ»θ¦ζζ–™οΌš%s", + "domum_ornamentum.shingle_slab.name.format": "%sε±‹η“¦εŠη£š", + "domum_ornamentum.shingle_slab.support.format": "ζ”―ζ’οΌš%s", + "domum_ornamentum.slab.name.format": "%s半磚", + "domum_ornamentum.squarepillar.name.format": "ζ–Ήε½’%s柱", + "domum_ornamentum.stair.name.format": "%s樓撯", + "domum_ornamentum.timber.center.block.format": " - ζζ–™οΌš%s", + "domum_ornamentum.timber.center.header": "δΈ­εΏƒοΌš", + "domum_ornamentum.timber.frame.block.format": " - ζζ–™οΌš%s", + "domum_ornamentum.timber.frame.header": "ι‚Šζ‘†οΌš", + "domum_ornamentum.timber.frame.name.format": "ι‘²ι‚Š%s", + "domum_ornamentum.timber.frame.type.double_crossed": "雙十字", + "domum_ornamentum.timber.frame.type.down_gated": "δΈ‹ι–€εž‹", + "domum_ornamentum.timber.frame.type.format": " - 樣式:%s", + "domum_ornamentum.timber.frame.type.framed": "ι‘²ι‚Š", + "domum_ornamentum.timber.frame.type.horizontal_plain": "ζ°΄εΉ³η΄‹", + "domum_ornamentum.timber.frame.type.one_crossed_lr": "ε·¦δΈŠε³δΈ‹ζ–œη·š", + "domum_ornamentum.timber.frame.type.one_crossed_rl": "ε³δΈŠε·¦δΈ‹ζ–œη·š", + "domum_ornamentum.timber.frame.type.plain": "εž‚η›΄η΄‹", + "domum_ornamentum.timber.frame.type.side_framed": "ε΄ι‚Šι‘²ι‚Š", + "domum_ornamentum.timber.frame.type.side_framed_horizontal": "ε΄ι‚Šι‘²ι‚ŠοΌˆζ°΄εΉ³οΌ‰", + "domum_ornamentum.timber.frame.type.up_gated": "δΈŠι–€εž‹", + "domum_ornamentum.trapdoor.block.format": "ζζ–™οΌš%s", + "domum_ornamentum.trapdoor.name.format": "%s活板門", + "domum_ornamentum.trapdoor.type.format": "樣式:%s", + "domum_ornamentum.trapdoor.type.name.boss": "ε‡Έθ΅·", + "domum_ornamentum.trapdoor.type.name.coffer": "ε…§ε‡Ή", + "domum_ornamentum.trapdoor.type.name.full": "ε―¦εΏƒ", + "domum_ornamentum.trapdoor.type.name.horizontal.bars": "水平欄杆", + "domum_ornamentum.trapdoor.type.name.horizontally.squiggly.striped": "ζ°΄εΉ³ζ³’ζ΅ͺ撝紋", + "domum_ornamentum.trapdoor.type.name.horizontally.striped": "水平撝紋", + "domum_ornamentum.trapdoor.type.name.moulding": "線板", + "domum_ornamentum.trapdoor.type.name.port.manteau": "ζ–—η―·ι€ εž‹", + "domum_ornamentum.trapdoor.type.name.porthole": "舷ηͺ—", + "domum_ornamentum.trapdoor.type.name.roundel": "εœ“ι£Ύ", + "domum_ornamentum.trapdoor.type.name.slot": "η‹ΉηΈ«", + "domum_ornamentum.trapdoor.type.name.vertical.bars": "εž‚η›΄ζ¬„ζ†", + "domum_ornamentum.trapdoor.type.name.vertically.squiggly.striped": "εž‚η›΄ζ³’ζ΅ͺ撝紋", + "domum_ornamentum.trapdoor.type.name.vertically.striped": "εž‚η›΄ζ’η΄‹", + "domum_ornamentum.trapdoor.type.name.waffle": "ζ Όη‹€", + "domum_ornamentum.variant": "樣式:", + "domum_ornamentum.wall.name.format": "%s牆", + "itemGroup.domum_ornamentum.doors": "DOο½œι–€", + "itemGroup.domum_ornamentum.extra-blocks": "DOο½œθ£ι£Ύζ–Ήε‘Š", + "itemGroup.domum_ornamentum.fences": "DOο½œζŸ΅ζ¬„", + "itemGroup.domum_ornamentum.floating-carpets": "DO|ζ΅η©Ίεœ°ζ――", + "itemGroup.domum_ornamentum.general": "εΆε±…θ£ι£ΎοΌˆDOοΌ‰", + "itemGroup.domum_ornamentum.paperwalls": "DOο½œι‘²ι‚Šθ–„η‰†", + "itemGroup.domum_ornamentum.posts": "DOο½œη«‹ζŸ±", + "itemGroup.domum_ornamentum.shingle_slabs": "DOο½œε±‹η“¦εŠη£š", + "itemGroup.domum_ornamentum.shingles": "DOο½œε±‹η“¦", + "itemGroup.domum_ornamentum.slabs": "DO|半磚", + "itemGroup.domum_ornamentum.stairs": "DOο½œζ¨“ζ’―", + "itemGroup.domum_ornamentum.timber_frames": "DOο½œι‘²ι‚Šζ–Ήε‘Š", + "itemGroup.domum_ornamentum.walls": "DOο½œη‰†" +} \ 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 5df4edbed..d93ff1dfd 100644 --- a/kubejs/assets/emi/category/properties/ae2_condenser.json +++ b/kubejs/assets/emi/category/properties/ae2_condenser.json @@ -1 +1 @@ -{"ae2:condenser":{"order":153}} \ No newline at end of file +{"ae2:condenser":{"order":156}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/ae2_p2p_attunement.json b/kubejs/assets/emi/category/properties/ae2_p2p_attunement.json index ab8290e0a..77df76d37 100644 --- a/kubejs/assets/emi/category/properties/ae2_p2p_attunement.json +++ b/kubejs/assets/emi/category/properties/ae2_p2p_attunement.json @@ -1 +1 @@ -{"ae2:p2p_attunement":{"order":167}} \ No newline at end of file +{"ae2:p2p_attunement":{"order":168}} \ 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 6c92a226d..383c4ec61 100644 --- a/kubejs/assets/emi/category/properties/create_draining.json +++ b/kubejs/assets/emi/category/properties/create_draining.json @@ -1 +1 @@ -{"create:draining":{"order":168}} \ No newline at end of file +{"create:draining":{"order":171}} \ 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 af210aabf..782ccd548 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":169}} \ No newline at end of file +{"create:spout_filling":{"order":172}} \ 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 97a7e68f7..3524eee33 100644 --- a/kubejs/assets/emi/category/properties/createaddition_rolling.json +++ b/kubejs/assets/emi/category/properties/createaddition_rolling.json @@ -1 +1 @@ -{"createaddition:rolling":{"order":80}} \ No newline at end of file +{"createaddition:rolling":{"order":81}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/deafission_component_fr.json b/kubejs/assets/emi/category/properties/deafission_component_fr.json new file mode 100644 index 000000000..23ab63472 --- /dev/null +++ b/kubejs/assets/emi/category/properties/deafission_component_fr.json @@ -0,0 +1 @@ +{"deafission:component_fr":{"order":71}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/diggerhelmet_helmet_repair.json b/kubejs/assets/emi/category/properties/diggerhelmet_helmet_repair.json index 0ab292e76..db7a788ab 100644 --- a/kubejs/assets/emi/category/properties/diggerhelmet_helmet_repair.json +++ b/kubejs/assets/emi/category/properties/diggerhelmet_helmet_repair.json @@ -1 +1 @@ -{"diggerhelmet:helmet_repair":{"order":162}} \ No newline at end of file +{"diggerhelmet:helmet_repair":{"order":163}} \ 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 30a086a71..baa7beb50 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":166}} \ No newline at end of file +{"domum_ornamentum:architects_cutter":{"order":167}} \ 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 0510a85d0..0393e9cd7 100644 --- a/kubejs/assets/emi/category/properties/emi_info.json +++ b/kubejs/assets/emi/category/properties/emi_info.json @@ -1 +1 @@ -{"emi:info":{"order":174}} \ No newline at end of file +{"emi:info":{"order":177}} \ 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 273fa60ac..d51c31551 100644 --- a/kubejs/assets/emi/category/properties/emi_tag.json +++ b/kubejs/assets/emi/category/properties/emi_tag.json @@ -1 +1 @@ -{"emi:tag":{"order":175}} \ No newline at end of file +{"emi:tag":{"order":178}} \ 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 cb039cc1e..8a808ccf3 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":170}} \ No newline at end of file +{"exposure:photograph_stacking":{"order":162}} \ 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 3859fedcb..eb210dcf7 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":165}} \ No newline at end of file +{"framedblocks:framing_saw":{"order":166}} \ 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 0019df577..3678d67d1 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":159}} \ No newline at end of file +{"greate:automatic_packing":{"order":175}} \ 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 ef6ec86c9..8080e35cc 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":157}} \ No newline at end of file +{"greate:automatic_shaped":{"order":173}} \ 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 6f4fb3f60..0b7a0b31e 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":158}} \ No newline at end of file +{"greate:automatic_shapeless":{"order":174}} \ 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 16d53180a..dfb2ea8ed 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":164}} \ No newline at end of file +{"greate:block_cutting":{"order":165}} \ 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 26d59929d..3e8026cb5 100644 --- a/kubejs/assets/emi/category/properties/greate_crushing.json +++ b/kubejs/assets/emi/category/properties/greate_crushing.json @@ -1 +1 @@ -{"greate:crushing":{"order":118}} \ No newline at end of file +{"greate:crushing":{"order":119}} \ 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 0af2ce4ea..1215ae3dc 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":124}} \ No newline at end of file +{"greate:fan_washing":{"order":125}} \ 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 98bcadf2f..01f14ecb5 100644 --- a/kubejs/assets/emi/category/properties/greate_milling.json +++ b/kubejs/assets/emi/category/properties/greate_milling.json @@ -1 +1 @@ -{"greate:milling":{"order":117}} \ No newline at end of file +{"greate:milling":{"order":118}} \ 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 befd5bfe1..67983151f 100644 --- a/kubejs/assets/emi/category/properties/greate_mixing.json +++ b/kubejs/assets/emi/category/properties/greate_mixing.json @@ -1 +1 @@ -{"greate:mixing":{"order":122}} \ No newline at end of file +{"greate:mixing":{"order":123}} \ 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 ccd9f8670..915a21b25 100644 --- a/kubejs/assets/emi/category/properties/greate_pressing.json +++ b/kubejs/assets/emi/category/properties/greate_pressing.json @@ -1 +1 @@ -{"greate:pressing":{"order":107}} \ No newline at end of file +{"greate:pressing":{"order":108}} \ 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 7687b9ac1..b14496925 100644 --- a/kubejs/assets/emi/category/properties/greate_sawing.json +++ b/kubejs/assets/emi/category/properties/greate_sawing.json @@ -1 +1 @@ -{"greate:sawing":{"order":94}} \ No newline at end of file +{"greate:sawing":{"order":95}} \ 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 1a58b9ce5..f41aab06a 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":73}} \ No newline at end of file +{"gtceu:air_scrubber":{"order":74}} \ 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 1e49a178d..f8fc50a7d 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":134}} \ No newline at end of file +{"gtceu:alloy_blast_smelter":{"order":135}} \ 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 65ee0f085..176573172 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":74}} \ No newline at end of file +{"gtceu:alloy_smelter":{"order":75}} \ 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 6ab5d69fa..f14c7de77 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":76}} \ No newline at end of file +{"gtceu:aqueous_accumulator":{"order":77}} \ 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 730bed18b..169b35cfb 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":77}} \ No newline at end of file +{"gtceu:arc_furnace":{"order":78}} \ 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 adce2f210..7bd34d260 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":154}} \ No newline at end of file +{"gtceu:arc_furnace_recycling":{"order":157}} \ 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 0affbce12..e547ae894 100644 --- a/kubejs/assets/emi/category/properties/gtceu_assembler.json +++ b/kubejs/assets/emi/category/properties/gtceu_assembler.json @@ -1 +1 @@ -{"gtceu:assembler":{"order":78}} \ No newline at end of file +{"gtceu:assembler":{"order":79}} \ 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 6efbfdccf..dbce179a4 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":135}} \ No newline at end of file +{"gtceu:assembly_line":{"order":136}} \ 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 a3c73e364..37a92f362 100644 --- a/kubejs/assets/emi/category/properties/gtceu_autoclave.json +++ b/kubejs/assets/emi/category/properties/gtceu_autoclave.json @@ -1 +1 @@ -{"gtceu:autoclave":{"order":79}} \ No newline at end of file +{"gtceu:autoclave":{"order":80}} \ 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 dff633620..ac1b79c9b 100644 --- a/kubejs/assets/emi/category/properties/gtceu_bender.json +++ b/kubejs/assets/emi/category/properties/gtceu_bender.json @@ -1 +1 @@ -{"gtceu:bender":{"order":82}} \ No newline at end of file +{"gtceu:bender":{"order":83}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_bioreactor.json b/kubejs/assets/emi/category/properties/gtceu_bioreactor.json new file mode 100644 index 000000000..df5863ec1 --- /dev/null +++ b/kubejs/assets/emi/category/properties/gtceu_bioreactor.json @@ -0,0 +1 @@ +{"gtceu:bioreactor":{"order":137}} \ 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 392b008ef..8cc06a1e4 100644 --- a/kubejs/assets/emi/category/properties/gtceu_brewery.json +++ b/kubejs/assets/emi/category/properties/gtceu_brewery.json @@ -1 +1 @@ -{"gtceu:brewery":{"order":83}} \ No newline at end of file +{"gtceu:brewery":{"order":84}} \ 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 379f56289..9ac566d07 100644 --- a/kubejs/assets/emi/category/properties/gtceu_canner.json +++ b/kubejs/assets/emi/category/properties/gtceu_canner.json @@ -1 +1 @@ -{"gtceu:canner":{"order":84}} \ No newline at end of file +{"gtceu:canner":{"order":85}} \ 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 667b6b9ce..849e253b1 100644 --- a/kubejs/assets/emi/category/properties/gtceu_centrifuge.json +++ b/kubejs/assets/emi/category/properties/gtceu_centrifuge.json @@ -1 +1 @@ -{"gtceu:centrifuge":{"order":86}} \ No newline at end of file +{"gtceu:centrifuge":{"order":87}} \ 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 d99d72732..0ac44f86d 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":88}} \ No newline at end of file +{"gtceu:chem_dyes":{"order":89}} \ 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 aaa187737..14bbcd091 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":87}} \ No newline at end of file +{"gtceu:chemical_bath":{"order":88}} \ 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 f25393d78..0b579ef62 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":90}} \ No newline at end of file +{"gtceu:chemical_reactor":{"order":91}} \ 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 9927cc9aa..3c50acf2a 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":92}} \ No newline at end of file +{"gtceu:circuit_assembler":{"order":93}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/gtceu_coal_liquefaction_tower.json b/kubejs/assets/emi/category/properties/gtceu_coal_liquefaction_tower.json new file mode 100644 index 000000000..7c3d1662f --- /dev/null +++ b/kubejs/assets/emi/category/properties/gtceu_coal_liquefaction_tower.json @@ -0,0 +1 @@ +{"gtceu:coal_liquefaction_tower":{"order":138}} \ 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 5ebf706f8..b4608cf12 100644 --- a/kubejs/assets/emi/category/properties/gtceu_compressor.json +++ b/kubejs/assets/emi/category/properties/gtceu_compressor.json @@ -1 +1 @@ -{"gtceu:compressor":{"order":93}} \ No newline at end of file +{"gtceu:compressor":{"order":94}} \ 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 5f8c600b7..f2f6ef99b 100644 --- a/kubejs/assets/emi/category/properties/gtceu_cracker.json +++ b/kubejs/assets/emi/category/properties/gtceu_cracker.json @@ -1 +1 @@ -{"gtceu:cracker":{"order":136}} \ No newline at end of file +{"gtceu:cracker":{"order":139}} \ 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 ee0682e04..1af20f965 100644 --- a/kubejs/assets/emi/category/properties/gtceu_cutter.json +++ b/kubejs/assets/emi/category/properties/gtceu_cutter.json @@ -1 +1 @@ -{"gtceu:cutter":{"order":95}} \ No newline at end of file +{"gtceu:cutter":{"order":96}} \ 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 3bad58595..72a980557 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":97}} \ No newline at end of file +{"gtceu:distillation_tower":{"order":98}} \ 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 d5d5d1013..88cdd2fe7 100644 --- a/kubejs/assets/emi/category/properties/gtceu_distillery.json +++ b/kubejs/assets/emi/category/properties/gtceu_distillery.json @@ -1 +1 @@ -{"gtceu:distillery":{"order":96}} \ No newline at end of file +{"gtceu:distillery":{"order":97}} \ 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 062012998..a06f87714 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":137}} \ No newline at end of file +{"gtceu:electric_blast_furnace":{"order":140}} \ 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 9884745b4..64bd5759c 100644 --- a/kubejs/assets/emi/category/properties/gtceu_electrolyzer.json +++ b/kubejs/assets/emi/category/properties/gtceu_electrolyzer.json @@ -1 +1 @@ -{"gtceu:electrolyzer":{"order":98}} \ No newline at end of file +{"gtceu:electrolyzer":{"order":99}} \ 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 dca38b2a9..5f99ad041 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":99}} \ No newline at end of file +{"gtceu:electromagnetic_separator":{"order":100}} \ 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 ec153faa0..6384d23bf 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":138}} \ No newline at end of file +{"gtceu:evaporation_tower":{"order":141}} \ 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 924619c65..a31e5a37e 100644 --- a/kubejs/assets/emi/category/properties/gtceu_extractor.json +++ b/kubejs/assets/emi/category/properties/gtceu_extractor.json @@ -1 +1 @@ -{"gtceu:extractor":{"order":101}} \ No newline at end of file +{"gtceu:extractor":{"order":102}} \ 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 debbf7bca..66fd8482e 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":156}} \ No newline at end of file +{"gtceu:extractor_recycling":{"order":159}} \ 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 4f8a510c6..4d76a1d27 100644 --- a/kubejs/assets/emi/category/properties/gtceu_extruder.json +++ b/kubejs/assets/emi/category/properties/gtceu_extruder.json @@ -1 +1 @@ -{"gtceu:extruder":{"order":103}} \ No newline at end of file +{"gtceu:extruder":{"order":104}} \ 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 270167191..222919a16 100644 --- a/kubejs/assets/emi/category/properties/gtceu_fermenter.json +++ b/kubejs/assets/emi/category/properties/gtceu_fermenter.json @@ -1 +1 @@ -{"gtceu:fermenter":{"order":104}} \ No newline at end of file +{"gtceu:fermenter":{"order":105}} \ 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 4ac004e90..6e14a9976 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":140}} \ No newline at end of file +{"gtceu:fission_reactor":{"order":143}} \ 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 f56150678..511826e95 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":105}} \ No newline at end of file +{"gtceu:fluid_heater":{"order":106}} \ 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 a8a03ccc1..c27aac3b2 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":106}} \ No newline at end of file +{"gtceu:fluid_solidifier":{"order":107}} \ 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 449e57e89..5c7caff41 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":108}} \ No newline at end of file +{"gtceu:forge_hammer":{"order":109}} \ 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 de6cb2009..ac1ab08a5 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":110}} \ No newline at end of file +{"gtceu:forming_press":{"order":111}} \ 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 57187fa8d..3f4912970 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":141}} \ No newline at end of file +{"gtceu:fusion_reactor":{"order":144}} \ 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 38c64d5d7..0855a78a8 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":111}} \ No newline at end of file +{"gtceu:gas_collector":{"order":112}} \ 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 48ea2ef0d..c55dcefef 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":112}} \ No newline at end of file +{"gtceu:gas_pressurizer":{"order":113}} \ 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 93d41ddd4..efa9331fc 100644 --- a/kubejs/assets/emi/category/properties/gtceu_greenhouse.json +++ b/kubejs/assets/emi/category/properties/gtceu_greenhouse.json @@ -1 +1 @@ -{"gtceu:greenhouse":{"order":142}} \ No newline at end of file +{"gtceu:greenhouse":{"order":145}} \ 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 367d2f2b1..462decfd8 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":143}} \ No newline at end of file +{"gtceu:heat_exchanger":{"order":146}} \ 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 674f533cd..5aca7e4c1 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":144}} \ No newline at end of file +{"gtceu:implosion_compressor":{"order":147}} \ 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 30f0d1904..971a52dbe 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":75}} \ No newline at end of file +{"gtceu:ingot_molding":{"order":76}} \ 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 006b70dd7..767c4742a 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":56}} \ No newline at end of file +{"gtceu:large_boiler":{"order":57}} \ 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 e93d90cc0..8d9aefd8f 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":91}} \ No newline at end of file +{"gtceu:large_chemical_reactor":{"order":92}} \ 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 cb239bb30..9f146f15f 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":114}} \ No newline at end of file +{"gtceu:laser_engraver":{"order":115}} \ 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 6caa98dea..7659c2ad4 100644 --- a/kubejs/assets/emi/category/properties/gtceu_lathe.json +++ b/kubejs/assets/emi/category/properties/gtceu_lathe.json @@ -1 +1 @@ -{"gtceu:lathe":{"order":116}} \ No newline at end of file +{"gtceu:lathe":{"order":117}} \ 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 2a96e473a..35d939495 100644 --- a/kubejs/assets/emi/category/properties/gtceu_macerator.json +++ b/kubejs/assets/emi/category/properties/gtceu_macerator.json @@ -1 +1 @@ -{"gtceu:macerator":{"order":119}} \ No newline at end of file +{"gtceu:macerator":{"order":120}} \ 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 b199a2617..b1f97cf11 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":155}} \ No newline at end of file +{"gtceu:macerator_recycling":{"order":158}} \ 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 be059f5cc..ca10c1c19 100644 --- a/kubejs/assets/emi/category/properties/gtceu_mixer.json +++ b/kubejs/assets/emi/category/properties/gtceu_mixer.json @@ -1 +1 @@ -{"gtceu:mixer":{"order":121}} \ No newline at end of file +{"gtceu:mixer":{"order":122}} \ 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 aadabe135..49f445263 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":147}} \ No newline at end of file +{"gtceu:moon_dust_harvester":{"order":150}} \ 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 ca907e4a2..8a2e96e89 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":145}} \ No newline at end of file +{"gtceu:nuclear_fuel_factory":{"order":148}} \ 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 d16a0b05a..da316554a 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":89}} \ No newline at end of file +{"gtceu:ore_bathing":{"order":90}} \ 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 ed0ca8cd7..e3e09a0f7 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":120}} \ No newline at end of file +{"gtceu:ore_crushing":{"order":121}} \ 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 06afe8c95..2be9b523a 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":109}} \ No newline at end of file +{"gtceu:ore_forging":{"order":110}} \ 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 a8f895338..99fc46d2e 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":123}} \ No newline at end of file +{"gtceu:ore_washer":{"order":124}} \ 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 a854e8a01..603588c05 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":146}} \ No newline at end of file +{"gtceu:ostrum_harvester":{"order":149}} \ 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 index d8cb9b522..3780fcead 100644 --- a/kubejs/assets/emi/category/properties/gtceu_ostrum_linear_accelerator.json +++ b/kubejs/assets/emi/category/properties/gtceu_ostrum_linear_accelerator.json @@ -1 +1 @@ -{"gtceu:ostrum_linear_accelerator":{"order":139}} \ No newline at end of file +{"gtceu:ostrum_linear_accelerator":{"order":142}} \ 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 882b8b827..2f428dab9 100644 --- a/kubejs/assets/emi/category/properties/gtceu_packer.json +++ b/kubejs/assets/emi/category/properties/gtceu_packer.json @@ -1 +1 @@ -{"gtceu:packer":{"order":125}} \ No newline at end of file +{"gtceu:packer":{"order":126}} \ 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 d6684f924..66f62c6f5 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":71}} \ No newline at end of file +{"gtceu:plasma_generator":{"order":72}} \ 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 8bad12318..f77e2a7b1 100644 --- a/kubejs/assets/emi/category/properties/gtceu_polarizer.json +++ b/kubejs/assets/emi/category/properties/gtceu_polarizer.json @@ -1 +1 @@ -{"gtceu:polarizer":{"order":126}} \ No newline at end of file +{"gtceu:polarizer":{"order":127}} \ 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 ca91b4326..dfdee2005 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":173}} \ No newline at end of file +{"gtceu:programmed_circuit":{"order":176}} \ 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 b34ef7400..0f17dc482 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":148}} \ No newline at end of file +{"gtceu:pyrolyse_oven":{"order":151}} \ 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 0726dce16..457059489 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":149}} \ No newline at end of file +{"gtceu:research_station":{"order":152}} \ 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 940c36635..d43366b28 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":127}} \ No newline at end of file +{"gtceu:rock_breaker":{"order":128}} \ 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 babb9f556..bc3c9eb07 100644 --- a/kubejs/assets/emi/category/properties/gtceu_scanner.json +++ b/kubejs/assets/emi/category/properties/gtceu_scanner.json @@ -1 +1 @@ -{"gtceu:scanner":{"order":128}} \ No newline at end of file +{"gtceu:scanner":{"order":129}} \ 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 3a6f1b575..91729a678 100644 --- a/kubejs/assets/emi/category/properties/gtceu_sifter.json +++ b/kubejs/assets/emi/category/properties/gtceu_sifter.json @@ -1 +1 @@ -{"gtceu:sifter":{"order":130}} \ No newline at end of file +{"gtceu:sifter":{"order":131}} \ 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 8a24941ba..1949f1005 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":150}} \ No newline at end of file +{"gtceu:steam_bloomery":{"order":153}} \ 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 1344362df..aa5444e77 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":57}} \ No newline at end of file +{"gtceu:steam_boiler":{"order":56}} \ 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 a046fc4d6..e2c701368 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":131}} \ No newline at end of file +{"gtceu:thermal_centrifuge":{"order":132}} \ 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 5c3e9d6ad..614f09279 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":151}} \ No newline at end of file +{"gtceu:vacuum_freezer":{"order":154}} \ 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 609afe478..ba9471c06 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":152}} \ No newline at end of file +{"gtceu:wire_coating":{"order":155}} \ 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 7c48917f3..d6768e6e3 100644 --- a/kubejs/assets/emi/category/properties/gtceu_wiremill.json +++ b/kubejs/assets/emi/category/properties/gtceu_wiremill.json @@ -1 +1 @@ -{"gtceu:wiremill":{"order":133}} \ No newline at end of file +{"gtceu:wiremill":{"order":134}} \ 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 70e40f59c..40e3a7239 100644 --- a/kubejs/assets/emi/category/properties/minecraft_smelting.json +++ b/kubejs/assets/emi/category/properties/minecraft_smelting.json @@ -1 +1 @@ -{"minecraft:smelting":{"order":72}} \ No newline at end of file +{"minecraft:smelting":{"order":73}} \ 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 282a1568b..6176a3709 100644 --- a/kubejs/assets/emi/category/properties/minecraft_stonecutting.json +++ b/kubejs/assets/emi/category/properties/minecraft_stonecutting.json @@ -1 +1 @@ -{"minecraft:stonecutting":{"order":163}} \ No newline at end of file +{"minecraft:stonecutting":{"order":164}} \ 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 5a657c070..42452df10 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":171}} \ No newline at end of file +{"tacz:attachment_query":{"order":169}} \ 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 df66f83aa..f021df1bc 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":172}} \ No newline at end of file +{"taczammoquery:ammo_query":{"order":170}} \ 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 aef0cc89d..05eea7f7b 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_centrifugation.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_centrifugation.json @@ -1 +1 @@ -{"vintageimprovements:centrifugation":{"order":85}} \ No newline at end of file +{"vintageimprovements:centrifugation":{"order":86}} \ 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 e290901bb..185fc7f00 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_coiling.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_coiling.json @@ -1 +1 @@ -{"vintageimprovements:coiling":{"order":132}} \ No newline at end of file +{"vintageimprovements:coiling":{"order":133}} \ 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 0271a9c1e..d08896541 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_curving.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_curving.json @@ -1 +1 @@ -{"vintageimprovements:curving":{"order":102}} \ No newline at end of file +{"vintageimprovements:curving":{"order":103}} \ 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 d754a9de8..c014d6a25 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":113}} \ No newline at end of file +{"vintageimprovements:laser_cutting":{"order":114}} \ No newline at end of file diff --git a/kubejs/assets/emi/category/properties/vintageimprovements_polishing.json b/kubejs/assets/emi/category/properties/vintageimprovements_polishing.json index 559212aaa..760cee391 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_polishing.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_polishing.json @@ -1 +1 @@ -{"vintageimprovements:polishing":{"order":115}} \ No newline at end of file +{"vintageimprovements:polishing":{"order":116}} \ 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 5cfc68b4c..f6bb70239 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_pressurizing.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_pressurizing.json @@ -1 +1 @@ -{"vintageimprovements:pressurizing":{"order":81}} \ No newline at end of file +{"vintageimprovements:pressurizing":{"order":82}} \ 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 7aa7ca174..8e01ce0e6 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_vacuumizing.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_vacuumizing.json @@ -1 +1 @@ -{"vintageimprovements:vacuumizing":{"order":100}} \ No newline at end of file +{"vintageimprovements:vacuumizing":{"order":101}} \ 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 e37758911..9cc5cbe70 100644 --- a/kubejs/assets/emi/category/properties/vintageimprovements_vibrating.json +++ b/kubejs/assets/emi/category/properties/vintageimprovements_vibrating.json @@ -1 +1 @@ -{"vintageimprovements:vibrating":{"order":129}} \ No newline at end of file +{"vintageimprovements:vibrating":{"order":130}} \ No newline at end of file diff --git a/kubejs/assets/emi/recipe/filters/categories.json b/kubejs/assets/emi/recipe/filters/categories.json index 98f9ceb7d..dcdcb9d9f 100644 --- a/kubejs/assets/emi/recipe/filters/categories.json +++ b/kubejs/assets/emi/recipe/filters/categories.json @@ -42,12 +42,6 @@ { "category": "gtceu:ore_vein_diagram" }, - { - "category": "create:automatic_shaped" - }, - { - "category": "create:automatic_shapeless" - }, { "category": "greate:automatic_brewing" }, @@ -78,6 +72,24 @@ { "id": "sophisticatedbackpacks:multiple_colors" }, + { + "id": "/.+wireless_ammo_box.*/" + }, + { + "id": "toomanyrecipeviewers:/create/potions" + }, + { + "id": "toomanyrecipeviewers:/exposure/sequenced_black_and_white_film_developing" + }, + { + "id": "toomanyrecipeviewers:/exposure/sequenced_color_film_developing" + }, + { + "id": "/gtceu.+potion_.+/" + }, + { + "id": "/.+crafting/tipped_arrow/.+/" + }, { "category": "ae2:certus_growth" }, diff --git a/kubejs/assets/endermanoverhaul/lang/en_us.json b/kubejs/assets/endermanoverhaul/lang/en_us.json index 9f8aee6e7..e9b45fcc9 100644 --- a/kubejs/assets/endermanoverhaul/lang/en_us.json +++ b/kubejs/assets/endermanoverhaul/lang/en_us.json @@ -1,6 +1,6 @@ { "__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": "Deep Cave Enderman", + "entity.endermanoverhaul.nether_wastes_enderman": "Fiery Enderman", "entity.endermanoverhaul.dark_oak_enderman": "Ashen Enderman", "entity.endermanoverhaul.mushroom_fields_enderman": "Mushroom Enderman", "entity.endermanoverhaul.swamp_enderman": "Mossy Enderman", @@ -10,7 +10,9 @@ "entity.endermanoverhaul.end_enderman": "Baritone Choral Enderman", "entity.endermanoverhaul.end_islands_enderman": "Soprano Choral Enderman", "entity.endermanoverhaul.spirit": "Comet", - "item.endermanoverhaul.nether_wastes_enderman_spawn_egg": "Deep Cave Enderman Spawn Egg", + "entity.endermanoverhaul.desert_enderman": "Lost Enderman", + "entity.endermanoverhaul.savanna_enderman": "Sandy Enderman", + "item.endermanoverhaul.nether_wastes_enderman_spawn_egg": "Fiery Enderman Spawn Egg", "item.endermanoverhaul.dark_oak_enderman_spawn_egg": "Ashen Enderman Spawn Egg", "item.endermanoverhaul.mushroom_fields_enderman_spawn_egg": "Mushroom Enderman Spawn Egg", "item.endermanoverhaul.swamp_enderman_spawn_egg": "Mossy Enderman Spawn Egg", @@ -20,6 +22,8 @@ "item.endermanoverhaul.end_enderman_spawn_egg": "Baritone Choral Enderman Spawn Egg", "item.endermanoverhaul.end_islands_enderman_spawn_egg": "Soprano Choral Enderman Spawn Egg", "item.endermanoverhaul.spirit_spawn_egg": "Comet Spawn Egg", + "item.endermanoverhaul.desert_enderman_spawn_egg": "Lost Enderman Spawn Egg", + "item.endermanoverhaul.savanna_enderman_spawn_egg": "Sandy Enderman Spawn Egg", "subtitles.endermanoverhaul.entity.cave_enderman.ambient": "Deep Cave Enderman vwoops", "subtitles.endermanoverhaul.entity.cave_enderman.hurt": "Deep Cave Enderman hurts", "subtitles.endermanoverhaul.entity.dark_oak_enderman.ambient": "Ashen Enderman vwoops", diff --git a/kubejs/assets/endermanoverhaul/lang/ja_jp.json b/kubejs/assets/endermanoverhaul/lang/ja_jp.json new file mode 100644 index 000000000..9f8aee6e7 --- /dev/null +++ b/kubejs/assets/endermanoverhaul/lang/ja_jp.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": "Deep Cave Enderman", + "entity.endermanoverhaul.dark_oak_enderman": "Ashen Enderman", + "entity.endermanoverhaul.mushroom_fields_enderman": "Mushroom Enderman", + "entity.endermanoverhaul.swamp_enderman": "Mossy Enderman", + "entity.endermanoverhaul.scarab": "Beetle", + "entity.endermanoverhaul.soulsand_valley_enderman": "Lightbloom-Touched Enderman", + "entity.endermanoverhaul.windswept_hills_enderman": "Lunar Maria Enderman", + "entity.endermanoverhaul.end_enderman": "Baritone Choral Enderman", + "entity.endermanoverhaul.end_islands_enderman": "Soprano Choral Enderman", + "entity.endermanoverhaul.spirit": "Comet", + "item.endermanoverhaul.nether_wastes_enderman_spawn_egg": "Deep Cave Enderman Spawn Egg", + "item.endermanoverhaul.dark_oak_enderman_spawn_egg": "Ashen Enderman Spawn Egg", + "item.endermanoverhaul.mushroom_fields_enderman_spawn_egg": "Mushroom Enderman Spawn Egg", + "item.endermanoverhaul.swamp_enderman_spawn_egg": "Mossy Enderman Spawn Egg", + "item.endermanoverhaul.scarab_spawn_egg": "Beetle Spawn Egg", + "item.endermanoverhaul.soulsand_valley_enderman_spawn_egg": "Lightbloom-Touched Enderman Spawn Egg", + "item.endermanoverhaul.windswept_hills_enderman_spawn_egg": "Lunar Maria Enderman Spawn Egg", + "item.endermanoverhaul.end_enderman_spawn_egg": "Baritone Choral Enderman Spawn Egg", + "item.endermanoverhaul.end_islands_enderman_spawn_egg": "Soprano Choral Enderman Spawn Egg", + "item.endermanoverhaul.spirit_spawn_egg": "Comet Spawn Egg", + "subtitles.endermanoverhaul.entity.cave_enderman.ambient": "Deep Cave Enderman vwoops", + "subtitles.endermanoverhaul.entity.cave_enderman.hurt": "Deep Cave Enderman hurts", + "subtitles.endermanoverhaul.entity.dark_oak_enderman.ambient": "Ashen Enderman vwoops", + "subtitles.endermanoverhaul.entity.dark_oak_enderman.darkness": "Ashen Enderman darkens", + "subtitles.endermanoverhaul.entity.dark_oak_enderman.stare": "Ashen Enderman cries out", + "tag.item.endermanoverhaul.ender_pearls": "Ender Pearls" +} \ No newline at end of file diff --git a/kubejs/assets/endermanoverhaul/lang/ru_ru.json b/kubejs/assets/endermanoverhaul/lang/ru_ru.json index 0fa08722a..bc7f04f39 100644 --- a/kubejs/assets/endermanoverhaul/lang/ru_ru.json +++ b/kubejs/assets/endermanoverhaul/lang/ru_ru.json @@ -22,5 +22,6 @@ "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": "ΠŸΠ΅ΠΏΠ΅Π»ΡŒΠ½Ρ‹ΠΉ эндСрмСн вскрикнул" + "subtitles.endermanoverhaul.entity.dark_oak_enderman.stare": "ΠŸΠ΅ΠΏΠ΅Π»ΡŒΠ½Ρ‹ΠΉ эндСрмСн вскрикнул", + "tag.item.endermanoverhaul.ender_pearls": "Π­Π½Π΄Π΅Ρ€-ΠΆΠ΅ΠΌΡ‡ΡƒΠ³ΠΈ" } \ No newline at end of file diff --git a/kubejs/assets/endermanoverhaul/lang/zh_cn.json b/kubejs/assets/endermanoverhaul/lang/zh_cn.json index 3f918e189..4a6887698 100644 --- a/kubejs/assets/endermanoverhaul/lang/zh_cn.json +++ b/kubejs/assets/endermanoverhaul/lang/zh_cn.json @@ -1,6 +1,6 @@ { "__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.nether_wastes_enderman": "η‹‚θΊζœ«ε½±δΊΊ", "entity.endermanoverhaul.dark_oak_enderman": "η°ηƒ¬ζœ«ε½±δΊΊ", "entity.endermanoverhaul.mushroom_fields_enderman": "θ˜‘θ‡ζœ«ε½±δΊΊ", "entity.endermanoverhaul.swamp_enderman": "θ¦†θ‹”ζœ«ε½±δΊΊ", @@ -10,7 +10,9 @@ "entity.endermanoverhaul.end_enderman": "η”·δΈ­ιŸ³εˆε”±ζœ«ε½±δΊΊ", "entity.endermanoverhaul.end_islands_enderman": "ε₯³ι«˜ιŸ³εˆε”±ζœ«ε½±δΊΊ", "entity.endermanoverhaul.spirit": "ε½—ζ˜Ÿ", - "item.endermanoverhaul.nether_wastes_enderman_spawn_egg": "洞穴末影人刷ζ€ͺθ›‹", + "entity.endermanoverhaul.desert_enderman": "迷倱末影人", + "entity.endermanoverhaul.savanna_enderman": "ζ²™εœ°ζœ«ε½±δΊΊ", + "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": "θ¦†θ‹”ζœ«ε½±δΊΊεˆ·ζ€ͺθ›‹", @@ -20,6 +22,8 @@ "item.endermanoverhaul.end_enderman_spawn_egg": "η”·δΈ­ιŸ³εˆε”±ζœ«ε½±δΊΊεˆ·ζ€ͺθ›‹", "item.endermanoverhaul.end_islands_enderman_spawn_egg": "ε₯³ι«˜ιŸ³εˆε”±ζœ«ε½±δΊΊεˆ·ζ€ͺθ›‹", "item.endermanoverhaul.spirit_spawn_egg": "ε½—ζ˜Ÿεˆ·ζ€ͺθ›‹", + "item.endermanoverhaul.desert_enderman_spawn_egg": "迷倱末影人刷ζ€ͺθ›‹", + "item.endermanoverhaul.savanna_enderman_spawn_egg": "ζ²™εœ°ζœ«ε½±δΊΊεˆ·ζ€ͺθ›‹", "subtitles.endermanoverhaul.entity.cave_enderman.ambient": "洞穴末影人:低鸣", "subtitles.endermanoverhaul.entity.cave_enderman.hurt": "洞穴末影人:受伀", "subtitles.endermanoverhaul.entity.dark_oak_enderman.ambient": "η°ηƒ¬ζœ«ε½±δΊΊ:低鸣", diff --git a/kubejs/assets/endermanoverhaul/lang/zh_tw.json b/kubejs/assets/endermanoverhaul/lang/zh_tw.json new file mode 100644 index 000000000..51bfdc362 --- /dev/null +++ b/kubejs/assets/endermanoverhaul/lang/zh_tw.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/extendedae/lang/ru_ru.json b/kubejs/assets/extendedae/lang/ru_ru.json new file mode 100644 index 000000000..b6bfcb09e --- /dev/null +++ b/kubejs/assets/extendedae/lang/ru_ru.json @@ -0,0 +1,10 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.extendedae.assembler_matrix_frame": "Π Π°ΠΌΠΊΠ° ΠΌΠ°Ρ‚Ρ€ΠΈΡ†Ρ‹ сборщика", + "block.extendedae.assembler_matrix_wall": "Π‘Ρ‚Π΅Π½ΠΊΠ° ΠΌΠ°Ρ‚Ρ€ΠΈΡ†Ρ‹ сборщика", + "block.extendedae.assembler_matrix_glass": "Π‘Ρ‚Π΅ΠΊΠ»ΠΎ ΠΌΠ°Ρ‚Ρ€ΠΈΡ†Ρ‹ сборщика", + "block.extendedae.assembler_matrix_pattern": "Π―Π΄Ρ€ΠΎ ΠΌΠ°Ρ‚Ρ€ΠΈΡ†Ρ‹ сборщика", + "block.extendedae.assembler_matrix_crafter": "ΠšΡ€Π°Ρ„Ρ‚ΠΎΠ²ΠΎΠ΅ ядро ΠΌΠ°Ρ‚Ρ€ΠΈΡ†Ρ‹ сборщика", + "block.extendedae.assembler_matrix_speed": "Π―Π΄Ρ€ΠΎ ускорСния ΠΌΠ°Ρ‚Ρ€ΠΈΡ†Ρ‹ сборщика", + "item.extendedae.oversize_interface_part": "МЭ Π‘Π²Π΅Ρ€Ρ…Ρ€Π°Π·ΠΌΠ΅Ρ€Π½Ρ‹ΠΉ интСрфСйс" +} \ No newline at end of file diff --git a/kubejs/assets/firmaciv/lang/ru_ru.json b/kubejs/assets/firmaciv/lang/ru_ru.json index 10c610f8a..ca465861b 100644 --- a/kubejs/assets/firmaciv/lang/ru_ru.json +++ b/kubejs/assets/firmaciv/lang/ru_ru.json @@ -1,5 +1,90 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.firmaciv.thatch_roofing_stairs": "БоломСнная ΠΊΡ€Ρ‹ΡˆΠ°", + "block.firmaciv.thatch_roofing_slab": "БоломСнная ΠΏΠ»ΠΈΡ‚Π°", + "block.firmaciv.thatch_roofing": "БоломСнная ΠΊΡ€Ρ‹ΡˆΠ°", + "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": "ΠŸΠ»ΠΈΡ‚Π° ΠΊΠΎΡ€Π°Π±Π΅Π»ΡŒΠ½ΠΎΠΉ обшивки", + "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": "ΠšΡ€ΠΎΠ²Π»Ρ ΠΈΠ· ΠΈΠ²Ρ‹", "entity.firmaciv.rowboat.acacia": "ГрСбная Π»ΠΎΠ΄ΠΊΠ° ΠΈΠ· Π°ΠΊΠ°Ρ†ΠΈΠΈ", "entity.firmaciv.rowboat.ash": "ГрСбная Π»ΠΎΠ΄ΠΊΠ° ΠΈΠ· ясСня", "entity.firmaciv.rowboat.aspen": "ГрСбная Π»ΠΎΠ΄ΠΊΠ° ΠΈΠ· осины", @@ -80,14 +165,35 @@ "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": "Π‘ΠΎΠ»ΡŒΡˆΠΎΠ΅ судно", + "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": "ВСсло для каноэ", "config.jade.plugin_firmaciv.barrel": "ΠžΡ‚ΡΠ΅ΠΊ c Π±ΠΎΡ‡ΠΊΠΎΠΉ", "config.jade.plugin_firmaciv.tfc_chest": "ΠžΡ‚ΡΠ΅ΠΊ с сундуком", "itemGroup.firmaciv": "Firma: Civilization", @@ -131,111 +237,5 @@ "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": "ΠšΡ€ΠΎΠ²Π»Ρ ΠΈΠ· ΠΈΠ²Ρ‹" + "firmaciv.jei.transfer.error.barrel_sealed": "Π’ настоящСС врСмя Π±ΠΎΡ‡ΠΊΠ° ΠΎΠΏΠ΅Ρ‡Π°Ρ‚Π°Π½Π°" } \ No newline at end of file diff --git a/kubejs/assets/firmaciv/lang/zh_tw.json b/kubejs/assets/firmaciv/lang/zh_tw.json new file mode 100644 index 000000000..b1e1fe9b0 --- /dev/null +++ b/kubejs/assets/firmaciv/lang/zh_tw.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": "θˆΉθ‰™ζœ¨ζ‘Ά", + "entity.firmaciv.compartment_large_vessel": "ε€§εž‹εΉε™¨θ‰™", + "config.jade.plugin_firmaciv.barrel": "θˆΉθ‰™ζœ¨ζ‘Ά", + "config.jade.plugin_firmaciv.tfc_chest": "TFC θˆΉθ‰™η±", + "itemGroup.firmaciv": "ηΎ€ε·’ε‚³θͺͺ:θˆͺζ΅·ζ–‡ζ˜Ž", + "creativetab.firmaciv_tab": "ηΎ€ε·’ε‚³θͺͺ:θˆͺζ΅·ζ–‡ζ˜Ž", + "creativetab.watercraft_tab": "ζ°΄δΈŠθΌ‰ε…·", + "creativetab.navigation_tab": "θˆͺζ΅·ε·₯ε…·", + "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.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.cannon": "加農砲", + "item.firmaciv.sloop_icon_only": "εƒ…ι‘―η€Ίεœ–η€Ί", + "item.firmaciv.canoe_icon_only": "εƒ…ι‘―η€Ίεœ–η€Ί", + "item.firmaciv.canoe_with_paddle_icon_only": "εƒ…ι‘―η€Ίεœ–η€Ί", + "item.firmaciv.kayak_with_paddle_icon_only": "εƒ…ι‘―η€Ίεœ–η€Ί", + "item.firmaciv.rowboat_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": "ζŸ³ζœ¨ε±‹ι ‚", + "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.aspen": "η™½ζ₯Šζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmaciv.wood.watercraft_frame.angled.aspen": "η™½ζ₯Šζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmaciv.wood.canoe_component_block.aspen": "η™½ζ₯Šζœ¨η¨ζœ¨θˆŸη΅„δ»Ά", + "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": "ζŸ³ζœ¨η¨ζœ¨θˆŸη΅„δ»Ά", + "item.firmaciv.rope_coil": "黃麻繩" +} \ No newline at end of file diff --git a/kubejs/assets/firmacivplus/lang/zh_tw.json b/kubejs/assets/firmacivplus/lang/zh_tw.json new file mode 100644 index 000000000..0ad388d93 --- /dev/null +++ b/kubejs/assets/firmacivplus/lang/zh_tw.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.", + "block.firmacivplus.wood.baobab_roofing": "ηŒ΄ιΊ΅εŒ…ζ¨Ήζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.canoe_component_block.crimson": "η·‹η΄…θ•ˆζœ¨η¨ζœ¨θˆŸη΅„δ»Ά", + "block.firmacivplus.wood.canoe_component_block.cypress": "ζŸζœ¨η¨ζœ¨θˆŸη΅„δ»Ά", + "block.firmacivplus.wood.canoe_component_block.fig": "η„‘θŠ±ζžœζœ¨η¨ζœ¨θˆŸη΅„δ»Ά", + "block.firmacivplus.wood.canoe_component_block.tualang": "ε€§η”˜ε·΄θ±†ζœ¨η¨ζœ¨θˆŸη΅„δ»Ά", + "block.firmacivplus.wood.crimson_roofing": "η·‹η΄…θ•ˆζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.cypress_roofing": "ζŸζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.eucalyptus_roofing": "ζ‘‰ζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.fig_roofing": "η„‘θŠ±ζžœζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.hevea_roofing": "ζ©‘θ† ζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.ipe_roofing": "ι‡θŸ»ζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.ironwood_roofing": "ι΅ζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.mahogany_roofing": "ζ‘ƒθŠ±εΏƒζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.teak_roofing": "ζŸšζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.tualang_roofing": "ε€§η”˜ε·΄θ±†ζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.warped_roofing": "ζ‰­ζ›²θ•ˆζœ¨ε±‹ι ‚", + "block.firmacivplus.wood.watercraft_frame.angled.baobab": "ηŒ΄ιΊ΅εŒ…ζ¨Ήζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.angled.eucalyptus": "ζ‘‰ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.angled.hevea": "ζ©‘θ† ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.angled.ipe": "ι‡θŸ»ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.angled.ironwood": "ι΅ζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.angled.mahogany": "ζ‘ƒθŠ±εΏƒζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.angled.teak": "ζŸšζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.angled.warped": "ζ‰­ζ›²θ•ˆζœ¨ζ–œι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.flat.baobab": "ηŒ΄ιΊ΅εŒ…ζ¨Ήζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.flat.eucalyptus": "ζ‘‰ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.flat.hevea": "ζ©‘θ† ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.flat.ipe": "ι‡θŸ»ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.flat.ironwood": "ι΅ζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.flat.mahogany": "ζ‘ƒθŠ±εΏƒζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.flat.teak": "ζŸšζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "block.firmacivplus.wood.watercraft_frame.flat.warped": "ζ‰­ζ›²θ•ˆζœ¨εΉ³ι’θˆΉεŒ θ…³ζ‰‹ζžΆ", + "entity.firmacivplus.dugout_canoe.crimson": "η·‹η΄…θ•ˆζœ¨η¨ζœ¨θˆŸ", + "entity.firmacivplus.dugout_canoe.cypress": "柏木獨木舟", + "entity.firmacivplus.dugout_canoe.fig": "η„‘θŠ±ζžœζœ¨η¨ζœ¨θˆŸ", + "entity.firmacivplus.dugout_canoe.tualang": "ε€§η”˜ε·΄θ±†ζœ¨η¨ζœ¨θˆŸ", + "entity.firmacivplus.rowboat.baobab": "ηŒ΄ιΊ΅εŒ…ζ¨Ήζœ¨εˆ’θ‰‡", + "entity.firmacivplus.rowboat.eucalyptus": "ζ‘‰ζœ¨εˆ’θ‰‡", + "entity.firmacivplus.rowboat.hevea": "ζ©‘θ† ζœ¨εˆ’θ‰‡", + "entity.firmacivplus.rowboat.ipe": "ι‡θŸ»ζœ¨εˆ’θ‰‡", + "entity.firmacivplus.rowboat.ironwood": "ι΅ζœ¨εˆ’θ‰‡", + "entity.firmacivplus.rowboat.mahogany": "ζ‘ƒθŠ±εΏƒζœ¨εˆ’θ‰‡", + "entity.firmacivplus.rowboat.teak": "ζŸšζœ¨εˆ’θ‰‡", + "entity.firmacivplus.rowboat.warped": "ζ‰­ζ›²θ•ˆζœ¨εˆ’θ‰‡", + "entity.firmacivplus.sloop.baobab": "ηŒ΄ιΊ΅εŒ…ζ¨Ήζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop.eucalyptus": "ζ‘‰ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop.hevea": "ζ©‘θ† ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop.ipe": "ι‡θŸ»ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop.ironwood": "鐡木ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop.mahogany": "ζ‘ƒθŠ±εΏƒζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop.teak": "柚木ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop.warped": "ζ‰­ζ›²θ•ˆζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop_construction.baobab": "ηŒ΄ιΊ΅εŒ…ζ¨Ήζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop_construction.eucalyptus": "ζ‘‰ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop_construction.hevea": "ζ©‘θ† ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop_construction.ipe": "ι‡θŸ»ζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop_construction.ironwood": "鐡木ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop_construction.mahogany": "ζ‘ƒθŠ±εΏƒζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop_construction.teak": "柚木ε–ζ‘…ηΈ±εΈ†θˆΉ", + "entity.firmacivplus.sloop_construction.warped": "ζ‰­ζ›²θ•ˆζœ¨ε–ζ‘…ηΈ±εΈ†θˆΉ" +} \ 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 c78ffad25..e0d52c7eb 100644 --- a/kubejs/assets/firmalife/lang/ru_ru.json +++ b/kubejs/assets/firmalife/lang/ru_ru.json @@ -3,12 +3,21 @@ "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": "Π”Π²Π΅Ρ€ΡŒ Ρ‚Π΅ΠΏΠ»ΠΈΡ†Ρ‹ ΠΈΠ· ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½ΠΎΠ³ΠΎ воском Π΄Π΅Ρ€Π΅Π²Π°", - "greenhouse.firmalife.treated_wood": "ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹Π΅ воском доски", "block.firmalife.treated_wood": "ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹Π΅ воском доски", - "item.firmalife.treated_lumber": "ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Π°Ρ воском доска" + "item.firmalife.treated_lumber": "ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Π°Ρ воском доска", + "greenhouse.firmalife.treated_wood": "ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹Π΅ воском доски", + "firmalife.jade.needs_peel": "НуТны ΠΊΠ»Π΅Ρ‰ΠΈ ΠΈΠ»ΠΈ ΠΏΡ€ΠΈΡ…Π²Π°Ρ‚ΠΊΠΈ для бСзопастного извСлСчСния ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ†ΠΈΠΈ" } \ 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 600248407..0be3e4ae3 100644 --- a/kubejs/assets/firmalife/lang/uk_ua.json +++ b/kubejs/assets/firmalife/lang/uk_ua.json @@ -17,6 +17,7 @@ "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/firmalife/lang/zh_tw.json b/kubejs/assets/firmalife/lang/zh_tw.json new file mode 100644 index 000000000..c42e985b7 --- /dev/null +++ b/kubejs/assets/firmalife/lang/zh_tw.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/forge/models/tag/item/dyes/black.json b/kubejs/assets/forge/models/tag/item/dyes/black.json new file mode 100644 index 000000000..7edba0b63 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/black.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/black_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/blue.json b/kubejs/assets/forge/models/tag/item/dyes/blue.json new file mode 100644 index 000000000..106f6e486 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/blue.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/blue_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/brown.json b/kubejs/assets/forge/models/tag/item/dyes/brown.json new file mode 100644 index 000000000..a7c0bf17e --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/brown.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/brown_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/cyan.json b/kubejs/assets/forge/models/tag/item/dyes/cyan.json new file mode 100644 index 000000000..8f0b9eabd --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/cyan.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/cyan_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/gray.json b/kubejs/assets/forge/models/tag/item/dyes/gray.json new file mode 100644 index 000000000..f172d9c84 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/gray.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/gray_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/green.json b/kubejs/assets/forge/models/tag/item/dyes/green.json new file mode 100644 index 000000000..8c9b01f4d --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/green.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/green_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/light_blue.json b/kubejs/assets/forge/models/tag/item/dyes/light_blue.json new file mode 100644 index 000000000..dc7b0fe83 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/light_blue.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/light_blue_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/light_gray.json b/kubejs/assets/forge/models/tag/item/dyes/light_gray.json new file mode 100644 index 000000000..fd20fd951 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/light_gray.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/light_gray_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/lime.json b/kubejs/assets/forge/models/tag/item/dyes/lime.json new file mode 100644 index 000000000..79d6a4b82 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/lime.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/lime_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/magenta.json b/kubejs/assets/forge/models/tag/item/dyes/magenta.json new file mode 100644 index 000000000..a90be55c0 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/magenta.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/magenta_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/orange.json b/kubejs/assets/forge/models/tag/item/dyes/orange.json new file mode 100644 index 000000000..27b2a2f9d --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/orange.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/orange_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/pink.json b/kubejs/assets/forge/models/tag/item/dyes/pink.json new file mode 100644 index 000000000..6c114a5ff --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/pink.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/pink_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/purple.json b/kubejs/assets/forge/models/tag/item/dyes/purple.json new file mode 100644 index 000000000..ec0488ef2 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/purple.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/purple_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/red.json b/kubejs/assets/forge/models/tag/item/dyes/red.json new file mode 100644 index 000000000..246614ff9 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/red.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/red_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/white.json b/kubejs/assets/forge/models/tag/item/dyes/white.json new file mode 100644 index 000000000..ecb66e038 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/white.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/white_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/dyes/yellow.json b/kubejs/assets/forge/models/tag/item/dyes/yellow.json new file mode 100644 index 000000000..f2ac0b20e --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/dyes/yellow.json @@ -0,0 +1,3 @@ +{ + "parent": "minecraft:item/yellow_dye" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/sand.json b/kubejs/assets/forge/models/tag/item/sand.json new file mode 100644 index 000000000..7a5974d0b --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/sand.json @@ -0,0 +1,3 @@ +{ + "parent": "tfc:item/sand/yellow" +} \ No newline at end of file diff --git a/kubejs/assets/forge/models/tag/item/wax.json b/kubejs/assets/forge/models/tag/item/wax.json new file mode 100644 index 000000000..c0ecf89a8 --- /dev/null +++ b/kubejs/assets/forge/models/tag/item/wax.json @@ -0,0 +1,3 @@ +{ + "parent": "firmalife:item/beeswax" +} \ No newline at end of file diff --git a/kubejs/assets/framedblocks/lang/zh_cn.json b/kubejs/assets/framedblocks/lang/zh_cn.json index f9270aa91..b1dacf823 100644 --- a/kubejs/assets/framedblocks/lang/zh_cn.json +++ b/kubejs/assets/framedblocks/lang/zh_cn.json @@ -1,110 +1,349 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.framedblocks.framed_activator_rail_slope": "ζΏ€ζ΄»ι“θ½¨ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_adj_double_copycat_panel": "ε―θ°ƒε€εˆδ»ΏεˆΆη«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_adj_double_copycat_slab": "ε―θ°ƒε€εˆδ»ΏεˆΆε°ι˜Άζ‘†ζžΆ", + "block.framedblocks.framed_adj_double_panel": "ε―θ°ƒε€εˆη«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_adj_double_slab": "ε―θ°ƒε€εˆε°ι˜Άζ‘†ζžΆ", "block.framedblocks.framed_bars": "ι“ζ …ζ ζ‘†ζžΆ", + "block.framedblocks.framed_bookshelf": "δΉ¦ζžΆζ‘†ζžΆ", "block.framedblocks.framed_bouncy_cube": "ι»ζΆ²ε—ζ‘†ζžΆ", "block.framedblocks.framed_button": "ζŒ‰ι’ζ‘†ζžΆ", + "block.framedblocks.framed_centered_panel": "ε±…δΈ­η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_centered_slab": "ε±…δΈ­ε°ι˜Άζ‘†ζžΆ", + "block.framedblocks.framed_checkered_cube": "ζ£‹η›˜ηΊΉζ–Ήε—ζ‘†ζžΆ", + "block.framedblocks.framed_checkered_cube_segment": "ζ£‹η›˜ηΊΉζ–Ήε—εˆ†ζ΅ζ‘†ζžΆ", + "block.framedblocks.framed_checkered_panel": "ζ£‹η›˜ηΊΉη«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_checkered_panel_segment": "ζ£‹η›˜ηΊΉη«–ζΏεˆ†ζ΅ζ‘†ζžΆ", + "block.framedblocks.framed_checkered_slab": "ζ£‹η›˜ηΊΉε°ι˜Άζ‘†ζžΆ", + "block.framedblocks.framed_checkered_slab_segment": "ζ£‹η›˜ηΊΉε°ι˜Άεˆ†ζ΅ζ‘†ζžΆ", "block.framedblocks.framed_chest": "η±ε­ζ‘†ζžΆ", + "block.framedblocks.framed_chiseled_bookshelf": "ι›•ηΊΉδΉ¦ζžΆζ‘†ζžΆ", "block.framedblocks.framed_collapsible_block": "θ‡ͺεšδΉ‰ζ–Ήε—ζ‘†ζžΆ", + "block.framedblocks.framed_collapsible_copycat_block": "θ‡ͺεšδΉ‰δ»ΏεˆΆζ–Ήε—ζ‘†ζžΆ", + "block.framedblocks.framed_compound_slope_panel": "ε€εˆε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_compound_slope_slab": "ε€εˆε‘ε°ι˜Άζ‘†ζžΆ", "block.framedblocks.framed_corner_pillar": "θ§’ζŸ±ζ‘†ζžΆ", "block.framedblocks.framed_corner_slope": "θ§’ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_corner_strip": "θ§’ζ‘ζ‘†ζžΆ", "block.framedblocks.framed_cube": "ζ‘†ζžΆε—", + "block.framedblocks.framed_detector_rail_slope": "ζŽ’ζ΅‹ι“θ½¨ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_divided_panel_horizontal": "εˆ†ε‰²η«–ζΏζ‘†ζžΆοΌˆζ°΄εΉ³οΌ‰", + "block.framedblocks.framed_divided_panel_vertical": "εˆ†ε‰²η«–ζΏζ‘†ζžΆοΌˆεž‚η›΄οΌ‰", + "block.framedblocks.framed_divided_slab": "εˆ†ε‰²ε°ι˜Άζ‘†ζžΆ", + "block.framedblocks.framed_divided_slope": "εˆ†ε‰²ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_divided_stairs": "εˆ†ε‰²ζ₯Όζ’―ζ‘†ζžΆ", "block.framedblocks.framed_door": "ι—¨ζ‘†ζžΆ", "block.framedblocks.framed_double_corner": "ε€εˆθ§’ζ‘†ζžΆ", - "block.framedblocks.framed_double_panel": "ε€εˆδΎ§ζΏζ‘†ζžΆ", + "block.framedblocks.framed_double_half_slope": "ε€εˆεŠε‘ζ‘†ζžΆ", + "block.framedblocks.framed_double_half_stairs": "倍合半ζ₯Όζ’―ζ‘†ζžΆ", + "block.framedblocks.framed_double_panel": "ε€εˆη«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_double_prism": "ε€εˆζ£±ζŸ±ζ‘†ζžΆ", "block.framedblocks.framed_double_prism_corner": "ε€εˆζ£±ζ‘†ζžΆ", "block.framedblocks.framed_double_slab": "ε€εˆε°ι˜Άζ‘†ζžΆ", "block.framedblocks.framed_double_slope": "ε€εˆε‘ζ‘†ζžΆ", - "block.framedblocks.framed_double_slope_panel": "ε€εˆι«˜ε‘ζ‘†ζžΆ", - "block.framedblocks.framed_double_slope_slab": "ε°ι˜Άε€εˆε‘ζ‘†ζžΆ", + "block.framedblocks.framed_double_slope_panel": "ε€εˆε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_double_slope_slab": "ε€εˆε‘ε°ι˜Άζ‘†ζžΆ", + "block.framedblocks.framed_double_sloped_prism": "ε€εˆε‘ζ£±ζŸ±ζ‘†ζžΆ", "block.framedblocks.framed_double_stairs": "倍合ζ₯Όζ’―ζ‘†ζžΆ", "block.framedblocks.framed_double_threeway_corner": "ε€εˆδΈ‰θ§’ζ‘†ζžΆ", - "block.framedblocks.framed_elevated_double_slope_slab": "ε€εˆι«˜ε‘ε°ι˜Άζ‘†ζžΆ", - "block.framedblocks.framed_elevated_slope_slab": "ι«˜ε‘ζ‘†ζžΆ", - "block.framedblocks.framed_extended_double_slope_panel": "ε€εˆη«–ε‘ι«˜ε‘ζ‘†ζžΆ", - "block.framedblocks.framed_extended_slope_panel": "η«–ε‘ι«˜ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_double_threeway_corner_pillar": "ε€εˆδΈ‰θ§’ζŸ±ζ‘†ζžΆ", + "block.framedblocks.framed_elevated_double_slope_edge": "ζŠ¬ε‡ε€εˆε‘θΎΉηΌ˜ζ‘†ζžΆ", + "block.framedblocks.framed_elevated_double_slope_slab": "ζŠ¬ε‡ε€εˆε‘ε°ι˜Άζ‘†ζžΆ", + "block.framedblocks.framed_elevated_slope_edge": "ζŠ¬ε‡ε‘θΎΉηΌ˜ζ‘†ζžΆ", + "block.framedblocks.framed_elevated_slope_slab": "ζŠ¬ε‡ε‘ε°ι˜Άζ‘†ζžΆ", + "block.framedblocks.framed_ext_corner_slope_panel": "ε»ΆδΌΈθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_ext_corner_slope_panel_w": "ε»ΆδΌΈθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_ext_double_corner_slope_panel": "ε»ΆδΌΈε€εˆθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_ext_double_corner_slope_panel_w": "ε»ΆδΌΈε€εˆθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_ext_inner_corner_slope_panel": "ε»ΆδΌΈε†…θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_ext_inner_corner_slope_panel_w": "ε»ΆδΌΈε†…θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_ext_inner_double_corner_slope_panel": "ε»ΆδΌΈε†…ε€εˆθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_ext_inner_double_corner_slope_panel_w": "ε»ΆδΌΈε†…ε€εˆθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_extended_double_slope_panel": "ε»ΆδΌΈε€εˆε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_extended_slope_panel": "ε»ΆδΌΈε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_fancy_activator_rail": "θŠ±εΌζΏ€ζ΄»ι“θ½¨ζ‘†ζžΆ", + "block.framedblocks.framed_fancy_activator_rail_slope": "θŠ±εΌζΏ€ζ΄»ι“θ½¨ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_fancy_detector_rail": "θŠ±εΌζŽ’ζ΅‹ι“θ½¨ζ‘†ζžΆ", + "block.framedblocks.framed_fancy_detector_rail_slope": "θŠ±εΌζŽ’ζ΅‹ι“θ½¨ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_fancy_powered_rail": "θŠ±εΌε……θƒ½ι“θ½¨ζ‘†ζžΆ", + "block.framedblocks.framed_fancy_powered_rail_slope": "θŠ±εΌε……θƒ½ι“θ½¨ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_fancy_rail": "θŠ±εΌι“θ½¨ζ‘†ζžΆ", + "block.framedblocks.framed_fancy_rail_slope": "θŠ±εΌι“θ½¨ε‘ζ‘†ζžΆ", "block.framedblocks.framed_fence": "ζ …ζ ζ‘†ζžΆ", + "block.framedblocks.framed_fence_gate": "ζ …ζ ι—¨ζ‘†ζžΆ", + "block.framedblocks.framed_flat_double_slope_panel_corner": "ζ‰εΉ³ε€εˆε‘η«–ζΏθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_double_slope_slab_corner": "ζ‰εΉ³ε€εˆε‘ε°ι˜Άθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_elev_double_slope_slab_corner": "ζ‰εΉ³ζŠ¬ε‡ε€εˆε‘ε°ι˜Άθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_elev_inner_double_slope_slab_corner": "ζ‰εΉ³ζŠ¬ε‡ε†…ε€εˆε‘ε°ι˜Άθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_elev_inner_slope_slab_corner": "ζ‰εΉ³ζŠ¬ε‡ε†…ε‘ε°ι˜Άθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_elev_slope_slab_corner": "ζ‰εΉ³ζŠ¬ε‡ε‘ε°ι˜Άθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_ext_double_slope_panel_corner": "ζ‰εΉ³ε»ΆδΌΈε€εˆε‘η«–ζΏθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_ext_inner_double_slope_panel_corner": "ζ‰εΉ³ε»ΆδΌΈε†…ε€εˆε‘η«–ζΏθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_ext_inner_slope_panel_corner": "ζ‰εΉ³ε»ΆδΌΈε†…ε‘η«–ζΏθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_ext_slope_panel_corner": "ζ‰εΉ³ε»ΆδΌΈε‘η«–ζΏθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_inner_slope_panel_corner": "ζ‰εΉ³ε†…ε‘η«–ζΏθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_inner_slope_slab_corner": "ζ‰εΉ³ε†…ε‘ε°ι˜Άθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_inv_double_slope_panel_corner": "ζ‰εΉ³εε‘ε€εˆε‘η«–ζΏθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_inv_double_slope_slab_corner": "ζ‰εΉ³εε‘ε€εˆε‘ε°ι˜Άθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_slope_panel_corner": "ζ‰εΉ³ε‘η«–ζΏθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_slope_slab_corner": "ζ‰εΉ³ε‘ε°ι˜Άθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_stacked_inner_slope_panel_corner": "ζ‰εΉ³ε †ε ε†…ε‘η«–ζΏθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_stacked_inner_slope_slab_corner": "ζ‰εΉ³ε †ε ε†…ε‘ε°ι˜Άθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_stacked_slope_panel_corner": "ζ‰εΉ³ε †ε ε‘η«–ζΏθ§’ζ‘†ζžΆ", + "block.framedblocks.framed_flat_stacked_slope_slab_corner": "ζ‰εΉ³ε †ε ε‘ε°ι˜Άθ§’ζ‘†ζžΆ", "block.framedblocks.framed_floor_board": "εœ°ζΏζ‘†ζžΆ", "block.framedblocks.framed_flower_pot": "θŠ±η›†ζ‘†ζžΆ", - "block.framedblocks.framed_fence_gate": "ζ …ζ ι—¨ζ‘†ζžΆ", "block.framedblocks.framed_gate": "ι—¨ζ‘†ζžΆ", - "block.framedblocks.framed_gold_pressure_plate": "θ½»θ΄¨ζ΅‹ι‡εŽ‹εŠ›ζΏζ‘†ζžΆ", + "block.framedblocks.framed_glowing_cube": "ε‘ε…‰ζ–Ήε—ζ‘†ζžΆ", + "block.framedblocks.framed_glowing_item_frame": "ε‘ε…‰η‰©ε“ε±•η€Ίζ‘†ζ‘†ζžΆ", + "block.framedblocks.framed_gold_pressure_plate": "θ½»θ΄¨εŽ‹εŠ›ζΏζ‘†ζžΆ", "block.framedblocks.framed_half_pillar": "εŠζŸ±ζ‘†ζžΆ", + "block.framedblocks.framed_half_slope": "εŠε‘ζ‘†ζžΆ", "block.framedblocks.framed_half_stairs": "半ζ₯Όζ’―ζ‘†ζžΆ", - "block.framedblocks.framed_horizontal_pane": "ζ°΄εΉ³ζΏζ‘†ζžΆ", + "block.framedblocks.framed_hanging_sign": "ζ‚¬ζŒ‚ε‘Šη€Ίη‰Œζ‘†ζžΆ", + "block.framedblocks.framed_horizontal_pane": "ζ°΄εΉ³ηŽ»η’ƒζΏζ‘†ζžΆ", "block.framedblocks.framed_inner_corner_slope": "ε†…θ§’ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_inner_prism": "ε†…ζ£±ζŸ±ζ‘†ζžΆ", "block.framedblocks.framed_inner_prism_corner": "ε†…ζ£±ζ‘†ζžΆ", + "block.framedblocks.framed_inner_sloped_prism": "ε†…ε‘ζ£±ζŸ±ζ‘†ζžΆ", "block.framedblocks.framed_inner_threeway_corner": "ε†…δΈ‰θ§’ζ‘†ζžΆ", - "block.framedblocks.framed_inv_double_slope_panel": "η«–η›΄εε‘ε€εˆε‘ζ‘†ζžΆ", - "block.framedblocks.framed_inv_double_slope_slab": "ε°ι˜Άεε‘ε€εˆε‘ζ‘†ζžΆ", + "block.framedblocks.framed_inv_double_corner_slope_panel": "εε‘ε€εˆθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_inv_double_corner_slope_panel_w": "εε‘ε€εˆθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_inv_double_slope_panel": "εε‘ε€εˆε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_inv_double_slope_slab": "εε‘ε€εˆε‘ε°ι˜Άζ‘†ζžΆ", "block.framedblocks.framed_iron_door": "ι“ι—¨ζ‘†ζžΆ", + "block.framedblocks.framed_iron_gate": "ι“εˆΆε€§ι—¨ζ‘†ζžΆ", "block.framedblocks.framed_iron_pressure_plate": "ι‡θ΄¨εŽ‹εŠ›ζΏζ‘†ζžΆ", "block.framedblocks.framed_iron_trapdoor": "ι“ζ΄»ζΏι—¨ζ‘†ζžΆ", + "block.framedblocks.framed_item_frame": "η‰©ε“ε±•η€Ίζ‘†ζ‘†ζžΆ", "block.framedblocks.framed_ladder": "ζ’―ε­ζ‘†ζžΆ", "block.framedblocks.framed_large_button": "ε€§ζŒ‰ι’ζ‘†ζžΆ", + "block.framedblocks.framed_large_corner_slope_panel": "ε€§θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_large_corner_slope_panel_w": "ε€§θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_large_double_corner_slope_panel": "ε€§ε€εˆθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_large_double_corner_slope_panel_w": "ε€§ε€εˆθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_large_inner_corner_slope_panel": "ε€§ε†…θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_large_inner_corner_slope_panel_w": "ε€§ε†…θ§’ε‘η«–ζΏζ‘†ζžΆ", "block.framedblocks.framed_large_stone_button": "ε€§ηŸ³ε€΄ζŒ‰ι’ζ‘†ζžΆ", "block.framedblocks.framed_lattice_block": "ζ ΌζžΆζ–Ήε—", "block.framedblocks.framed_lever": "ζ‹‰ζ†ζ‘†ζžΆ", + "block.framedblocks.framed_masonry_corner": "石ε·₯θ§’ζ‘†ζžΆ", + "block.framedblocks.framed_masonry_corner_segment": "石ε·₯θ§’εˆ†ζ΅ζ‘†ζžΆ", + "block.framedblocks.framed_mini_cube": "εΎεž‹ζ–Ήε—ζ‘†ζžΆ", "block.framedblocks.framed_obsidian_pressure_plate": "ι»‘ζ›œηŸ³εŽ‹εŠ›ζΏζ‘†ζžΆ", + "block.framedblocks.framed_one_way_window": "ε•ε‘ηŽ»η’ƒζ‘†ζžΆ", "block.framedblocks.framed_pane": "ηŽ»η’ƒζΏζ‘†ζžΆ", "block.framedblocks.framed_panel": "η«–ζΏζ‘†ζžΆ", "block.framedblocks.framed_pillar": "ζŸ±ζ‘†ζžΆ", "block.framedblocks.framed_post": "ζ†ζ‘†ζžΆ", + "block.framedblocks.framed_powered_rail_slope": "ε……θƒ½ι“θ½¨ε‘ζ‘†ζžΆ", "block.framedblocks.framed_pressure_plate": "εŽ‹εŠ›ζΏζ‘†ζžΆ", - "block.framedblocks.framed_prism": "δΈ‰ζ£±ζŸ±ζ‘†ζžΆ", + "block.framedblocks.framed_prism": "ζ£±ζŸ±ζ‘†ζžΆ", "block.framedblocks.framed_prism_corner": "ζ£±ζ‘†ζžΆ", "block.framedblocks.framed_pyramid": "θ§’ι”₯ζ‘†ζžΆ", "block.framedblocks.framed_pyramid_slab": "θ§’ι”₯ε°ι˜Άζ‘†ζžΆ", - "block.framedblocks.framed_rail_slope": "ι“θ·―ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_rail_slope": "ι“θ½¨ε‘ζ‘†ζžΆ", "block.framedblocks.framed_redstone_block": "ηΊ’ηŸ³ε—ζ‘†ζžΆ", + "block.framedblocks.framed_redstone_torch": "ηΊ’ηŸ³η«ζŠŠζ‘†ζžΆ", "block.framedblocks.framed_secret_storage": "ζœ¨ζ‘Άζ‘†ζžΆ", "block.framedblocks.framed_sign": "ε‘Šη€Ίη‰Œζ‘†ζžΆ", "block.framedblocks.framed_slab": "ε°ι˜Άζ‘†ζžΆ", "block.framedblocks.framed_slab_corner": "ε°ι˜Άθ§’ζ‘†ζžΆ", "block.framedblocks.framed_slab_edge": "ε°ι˜ΆθΎΉηΌ˜ζ‘†ζžΆ", + "block.framedblocks.framed_sliced_stairs_panel": "εˆ‡θΎΉζ₯Όζ’―ζ‘†ζžΆοΌˆη«–ζΏοΌ‰", + "block.framedblocks.framed_sliced_stairs_slab": "εˆ‡θΎΉζ₯Όζ’―ζ‘†ζžΆοΌˆε°ι˜ΆοΌ‰", "block.framedblocks.framed_slope": "ε‘ζ‘†ζžΆ", - "block.framedblocks.framed_slope_panel": "η«–ε‘ε‘ζ‘†ζžΆ", - "block.framedblocks.framed_slope_slab": "ε°ι˜Άε‘ζ‘†ζžΆ", - "block.framedblocks.framed_sloped_prism": "δΈ‰ζ£±ζŸ±ε‘ζ‘†ζžΆ", + "block.framedblocks.framed_slope_edge": "ε‘θΎΉηΌ˜ζ‘†ζžΆ", + "block.framedblocks.framed_slope_panel": "ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_slope_slab": "ε‘ε°ι˜Άζ‘†ζžΆ", + "block.framedblocks.framed_sloped_prism": "ε‘ζ£±ζŸ±ζ‘†ζžΆ", + "block.framedblocks.framed_sloped_stairs": "坑ζ₯Όζ’―ζ‘†ζžΆ", + "block.framedblocks.framed_small_corner_slope_panel": "ε°θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_small_corner_slope_panel_w": "ε°θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_small_double_corner_slope_panel": "ε°ε€εˆθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_small_double_corner_slope_panel_w": "ε°ε€εˆθ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_small_inner_corner_slope_panel": "ε°ε†…θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_small_inner_corner_slope_panel_w": "ε°ε†…θ§’ε‘η«–ζΏζ‘†ζžΆ", "block.framedblocks.framed_soul_torch": "η΅ι­‚η«ζŠŠζ‘†ζžΆ", + "block.framedblocks.framed_stacked_corner_slope_panel": "ε †ε θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_stacked_corner_slope_panel_w": "ε †ε θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_stacked_inner_corner_slope_panel": "ε †ε ε†…θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_stacked_inner_corner_slope_panel_w": "ε †ε ε†…θ§’ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_stacked_slope_edge": "ε †ε ε‘θΎΉηΌ˜ζ‘†ζžΆ", + "block.framedblocks.framed_stacked_slope_panel": "ε †ε ε‘η«–ζΏζ‘†ζžΆ", + "block.framedblocks.framed_stacked_slope_slab": "ε †ε ε‘ε°ι˜Άζ‘†ζžΆ", "block.framedblocks.framed_stairs": "ζ₯Όζ’―ζ‘†ζžΆ", "block.framedblocks.framed_stone_button": "ηŸ³ε€΄ζŒ‰ι’ζ‘†ζžΆ", "block.framedblocks.framed_stone_pressure_plate": "ηŸ³ε€΄εŽ‹εŠ›ζΏζ‘†ζžΆ", "block.framedblocks.framed_target": "ζ ‡ιΆζ‘†ζžΆ", + "block.framedblocks.framed_thick_lattice": "εŽšζ ΌζžΆζ‘†ζžΆ", "block.framedblocks.framed_threeway_corner": "δΈ‰θ§’ζ‘†ζžΆ", + "block.framedblocks.framed_threeway_corner_pillar": "δΈ‰θ§’ζŸ±ζ‘†ζžΆ", "block.framedblocks.framed_torch": "η«ζŠŠζ‘†ζžΆ", "block.framedblocks.framed_trapdoor": "ζ΄»ζΏι—¨ζ‘†ζžΆ", - "block.framedblocks.framed_vertical_double_stairs": "η«–ε‘ε€εˆε°ι˜Άζ‘†ζžΆ", - "block.framedblocks.framed_vertical_half_stairs": "η«–ε‘εŠζ₯Όζ’―ζ‘†ζžΆ", - "block.framedblocks.framed_vertical_stairs": "竖向ζ₯Όζ’―ζ‘†ζžΆ", + "block.framedblocks.framed_tube": "η‘ηŠΆζ‘†ζžΆ", + "block.framedblocks.framed_vertical_divided_stairs": "εž‚η›΄εˆ†ε‰²ζ₯Όζ’―ζ‘†ζžΆ", + "block.framedblocks.framed_vertical_double_half_slope": "εž‚η›΄ε€εˆεŠε‘ζ‘†ζžΆ", + "block.framedblocks.framed_vertical_double_half_stairs": "εž‚η›΄ε€εˆεŠζ₯Όζ’―ζ‘†ζžΆ", + "block.framedblocks.framed_vertical_double_stairs": "εž‚η›΄ε€εˆζ₯Όζ’―ζ‘†ζžΆ", + "block.framedblocks.framed_vertical_half_slope": "εž‚η›΄εŠε‘ζ‘†ζžΆ", + "block.framedblocks.framed_vertical_half_stairs": "εž‚η›΄εŠζ₯Όζ’―ζ‘†ζžΆ", + "block.framedblocks.framed_vertical_sliced_stairs": "εž‚η›΄εˆ‡θΎΉζ₯Όζ’―ζ‘†ζžΆ", + "block.framedblocks.framed_vertical_sloped_stairs": "εž‚η›΄ε‘ζ₯Όζ’―ζ‘†ζžΆ", + "block.framedblocks.framed_vertical_stairs": "εž‚η›΄ζ₯Όζ’―ζ‘†ζžΆ", "block.framedblocks.framed_wall": "ε’™ζ‘†ζžΆ", "block.framedblocks.framed_wall_board": "ε’™ζΏζ‘†ζžΆ", + "block.framedblocks.framed_wall_hanging_sign": "ζ‚¬ζŒ‚ε‘Šη€Ίη‰Œζ‘†ζžΆ", "block.framedblocks.framed_wall_sign": "ε‘Šη€Ίη‰Œζ‘†ζžΆ", - "button.framedblocks.gui.done": "εŒζˆ", + "block.framedblocks.framed_waterloggable_gold_pressure_plate": "θ½»θ΄¨εŽ‹εŠ›ζΏζ‘†ζžΆ", + "block.framedblocks.framed_waterloggable_iron_pressure_plate": "ι‡θ΄¨εŽ‹εŠ›ζΏζ‘†ζžΆ", + "block.framedblocks.framed_waterloggable_obsidian_pressure_plate": "ι»‘ζ›œηŸ³εŽ‹εŠ›ζΏζ‘†ζžΆ", + "block.framedblocks.framed_waterloggable_pressure_plate": "εŽ‹εŠ›ζΏζ‘†ζžΆ", + "block.framedblocks.framed_waterloggable_stone_pressure_plate": "ηŸ³ε€΄εŽ‹εŠ›ζΏζ‘†ζžΆ", + "block.framedblocks.framing_saw": "ζ‘†ζžΆι”―", + "block.framedblocks.powered_framing_saw": "εŠ¨εŠ›ζ‘†ζžΆι”―", + "config.framedblocks.client.altGhostRenderer": "使用替代放η½ι’„θ§ˆζΈ²ζŸ“ε™¨", + "config.framedblocks.client.camoMessageVerbosity": "δΌͺ装块禁用俑息详细程度", + "config.framedblocks.client.camoRotationMode": "δΌͺθ£…ε—ζ—‹θ½¬θ¦†η›–ε±‚οΌšζ˜Ύη€Ίζ¨‘εΌ", + "config.framedblocks.client.conTexMode": "连ζŽ₯纹理樑式", + "config.framedblocks.client.detailedCulling": "详细剔陀", + "config.framedblocks.client.discreteUVSteps": "使用离散UVζ­₯ι•Ώ", + "config.framedblocks.client.fancyHitboxes": "θŠ±εΌη’°ζ’žη±", + "config.framedblocks.client.forceAoOnGlowingBlocks": "εΌΊεˆΆεœ¨ε‘ε…‰ζ‘†ζžΆε—δΈŠεΊ”η”¨ηŽ―ε’ƒε…‰ιθ”½", + "config.framedblocks.client.itemFrameBackgroundMode": "η‰©ε“ε±•η€Ίζ‘†θƒŒζ™―θ¦†η›–ε±‚οΌšζ˜Ύη€Ίζ¨‘εΌ", + "config.framedblocks.client.oneWayWindowMode": "ε•ε‘ηŽ»η’ƒθ¦†η›–ε±‚οΌšζ˜Ύη€Ίζ¨‘εΌ", + "config.framedblocks.client.prismOffsetMode": "ζ£±ζŸ±εη§»θ¦†η›–ε±‚οΌšζ˜Ύη€Ίζ¨‘εΌ", + "config.framedblocks.client.reinforcedMode": "εΌΊεŒ–θ¦†η›–ε±‚οΌšζ˜Ύη€Ίζ¨‘εΌ", + "config.framedblocks.client.showAllRecipePermutationsInEmi": "在EMIδΈ­ζ˜Ύη€Ίζ‰€ζœ‰ζ‘†ζžΆι”―ι…ζ–Ήε˜δ½“", + "config.framedblocks.client.showButtonPlateTypeOverlay": "ζ˜Ύη€ΊζŒ‰ι’ε’ŒεŽ‹εŠ›ζΏη±»εž‹θ¦†η›–ε±‚", + "config.framedblocks.client.showGhostBlocks": "ζ˜Ύη€ΊεΉ½η΅ζ–Ήε—", + "config.framedblocks.client.showSpecialCubeTypeOverlay": "ζ˜Ύη€Ίη‰ΉζŠζ–Ήε—η±»εž‹θ¦†η›–ε±‚", + "config.framedblocks.client.solidFrameMode": "εžεΏƒζ‘†ζžΆζ¨‘式", + "config.framedblocks.client.splitLineMode": "ε―ζŠ˜ε ζ–Ήε—εˆ†ε‰²ηΊΏθ¦†η›–ε±‚οΌšζ˜Ύη€Ίζ¨‘εΌ", + "config.framedblocks.client.stateLockMode": "ηŠΆζ€ι”εšθ¦†η›–ε±‚οΌšζ˜Ύη€Ίζ¨‘式", + "config.framedblocks.client.toggleWaterlogMode": "εˆ‡ζ’ε―ε«ζ°΄θ¦†η›–ε±‚οΌšζ˜Ύη€Ίζ¨‘εΌ", + "config.framedblocks.client.toggleYSlopeMode": "εˆ‡ζ’Yθ½΄ε‘ι’θ¦†η›–ε±‚οΌšζ˜Ύη€Ίζ¨‘εΌ", + "config.framedblocks.common.fireproofBlocks": "ι˜²η«ζ–Ήε—", + "config.framedblocks.server.allowBlockEntities": "允θΈζ–Ήε—εžδ½“", + "config.framedblocks.server.consumeCamoItem": "ζΆˆθ€—δΌͺ装物品", + "config.framedblocks.server.enableIntangibleFeature": "ε―η”¨ζ— ε½’εŒ–εŠŸθƒ½", + "config.framedblocks.server.glowstoneLightLevel": "θ§ηŸ³ε…‰η…§η­‰ηΊ§", + "config.framedblocks.server.intangibleMarkerItem": "ζ— ε½’εŒ–ζ ‡θ°η‰©ε“", + "config.framedblocks.server.oneWayWindowOwnable": "ε•ε‘ηŽ»η’ƒε―ζ‹₯ζœ‰ζ€§", + "config.jade.plugin_framedblocks.framed_item_frame": "η‰©ε“ε±•η€Ίζ‘†ζ‘†ζžΆ", "desc.framedblocks.blueprint_block": "ε†…η½ζ–Ήε—οΌš%s", - "desc.framedblocks.blueprint_camo": "ε€–θ‘¨ζ–Ήε—οΌš%s", - "desc.framedblocks.blueprint_cant_copy": "歀方块η›ε‰ζ— ζ³•θ’«ε€εˆΆ", - "desc.framedblocks.blueprint_cant_place_fluid_camo": "η›ε‰ζ— ζ³•ε€εˆΆε‘«ε……ζœ‰ζ΅δ½“ηš„ζ–Ήε—", - "desc.framedblocks.blueprint_illuminated": "η‚ΉδΊοΌš%s", + "desc.framedblocks.blueprint_camo": "δΌͺθ£…ζ–Ήε—οΌš%s", + "desc.framedblocks.blueprint_cant_copy": "歀方块η›ε‰ζ— ζ³•θ’«ε€εˆΆοΌ", + "desc.framedblocks.blueprint_cant_place_fluid_camo": "η›ε‰ζ— ζ³•ε€εˆΆε‘«ε……ζœ‰ζ΅δ½“ηš„δΌͺ装方块!", "desc.framedblocks.blueprint_false": "否", - "desc.framedblocks.blueprint_true": "是", + "desc.framedblocks.blueprint_illuminated": "η‚ΉδΊοΌš%s", + "desc.framedblocks.blueprint_intangible": "ζ— ε½’εŒ–οΌš%s", "desc.framedblocks.blueprint_invalid": "ζ— ζ•ˆηš„", - "block.framedblocks.framed_iron_gate": "ι“εˆΆε€§ι—¨ζ‘†ζžΆ", + "desc.framedblocks.blueprint_missing_materials": "ηΌΊε°‘ζ‰€ιœ€ζζ–™οΌš", "desc.framedblocks.blueprint_none": "ζ— ", + "desc.framedblocks.blueprint_reinforced": "ε·²εΌΊεŒ–οΌš%s", + "desc.framedblocks.blueprint_true": "是", + "desc.framedblocks.slope_slab.place_upside_down": "ζŒ‰δ½ζ½œθ‘Œι”δ»₯ε€’η½ζ”Ύη½", "framedblocks.key.categories.framedblocks": "ζ‘†ζžΆζ–Ήε—", - "framedblocks.key.update_cull": "ζ›΄ζ–°culling cache", + "framedblocks.key.update_cull": "ζ›΄ζ–°ε‰”ι™€ηΌ“ε­˜", "item.framedblocks.framed_blueprint": "ζ‘†ζžΆθ“ε›Ύ", "item.framedblocks.framed_hammer": "ζ‘†ζžΆι”€", "item.framedblocks.framed_key": "ζ‘†ζžΆι’₯εŒ™", + "item.framedblocks.framed_reinforcement": "ζ‘†ζžΆεΌΊεŒ–ζζ–™", "item.framedblocks.framed_screwdriver": "ζ‘†ζžΆθžΊδΈεˆ€", "item.framedblocks.framed_wrench": "ζ‘†ζžΆζ‰³ζ‰‹", "itemGroup.framed_blocks": "ζ‘†ζžΆζ–Ήε—", - "msg.framedblocks.camo.blacklisted": "θ―₯ζ–Ήε—εœ¨ι»‘εε•δΈ­οΌ", - "msg.framedblocks.camo.block_entity": "εžδ½“方块不得放ε…₯ζ‘†ζžΆδΈ­οΌ", + "msg.framedblocks.camo.blacklisted": "θ―₯ζ–Ήε—δΈεΎ—δ½œδΈΊδΌͺ装块使用!", + "msg.framedblocks.camo.block_entity": "ε«ζœ‰ζ–Ήε—εžδ½“ηš„ζ–Ήε—δΈεΎ—ζ”Ύε…₯ζ‘†ζžΆδΈ­οΌ", + "msg.framedblocks.camo.non_solid": "ζœͺζ ‡θ°ηš„ιžεžεΏƒζ–Ήε—不得放ε…₯ζ‘†ζžΆδΈ­οΌ", + "msg.framedblocks.frame_crafter.fail.incorrect_additive_0": "η¬¬δΈ€ζ ΌδΈ­ε­˜εœ¨ι”™θ――ηš„ζ·»εŠ ε‰‚ζˆεˆ†", + "msg.framedblocks.frame_crafter.fail.incorrect_additive_1": "η¬¬δΊŒζ ΌδΈ­ε­˜εœ¨ι”™θ――ηš„ζ·»εŠ ε‰‚ζˆεˆ†", + "msg.framedblocks.frame_crafter.fail.incorrect_additive_2": "η¬¬δΈ‰ζ ΌδΈ­ε­˜εœ¨ι”™θ――ηš„ζ·»εŠ ε‰‚ζˆεˆ†", + "msg.framedblocks.frame_crafter.fail.insufficient_additive_0": "η¬¬δΈ€ζ ΌδΈ­ζ·»εŠ ε‰‚ζˆεˆ†ζ•°ι‡δΈθΆ³", + "msg.framedblocks.frame_crafter.fail.insufficient_additive_1": "η¬¬δΊŒζ ΌδΈ­ζ·»εŠ ε‰‚ζˆεˆ†ζ•°ι‡δΈθΆ³", + "msg.framedblocks.frame_crafter.fail.insufficient_additive_2": "η¬¬δΈ‰ζ ΌδΈ­ζ·»εŠ ε‰‚ζˆεˆ†ζ•°ι‡δΈθΆ³", + "msg.framedblocks.frame_crafter.fail.material_lcm": "θΎ“ε…₯η‰©ε“θΏ‡ε°‘οΌŒζ— ζ³•ε‡εŒ€θ½¬ζ’δΈΊζ­€θΎ“ε‡Ί", + "msg.framedblocks.frame_crafter.fail.material_value": "可用输ε…₯材料不袳", + "msg.framedblocks.frame_crafter.fail.missing_additive_0": "η¬¬δΈ€ζ ΌδΈ­ηΌΊε°‘ζ·»εŠ ε‰‚ζˆεˆ†", + "msg.framedblocks.frame_crafter.fail.missing_additive_1": "η¬¬δΊŒζ ΌδΈ­ηΌΊε°‘ζ·»εŠ ε‰‚ζˆεˆ†", + "msg.framedblocks.frame_crafter.fail.missing_additive_2": "η¬¬δΈ‰ζ ΌδΈ­ηΌΊε°‘ζ·»εŠ ε‰‚ζˆεˆ†", + "msg.framedblocks.frame_crafter.fail.output_size": "η»“ζžœζ•°ι‡θΆ…θΏ‡ζœ€ε€§ε †ε ε€§ε°", + "msg.framedblocks.frame_crafter.fail.success": "可合成", + "msg.framedblocks.frame_crafter.fail.unexpected_additive_0": "η¬¬δΈ€ζ ΌδΈ­ε­˜εœ¨ζ„ε€–ηš„ζ·»εŠ ε‰‚ζˆεˆ†", + "msg.framedblocks.frame_crafter.fail.unexpected_additive_1": "η¬¬δΊŒζ ΌδΈ­ε­˜εœ¨ζ„ε€–ηš„ζ·»εŠ ε‰‚ζˆεˆ†", + "msg.framedblocks.frame_crafter.fail.unexpected_additive_2": "η¬¬δΈ‰ζ ΌδΈ­ε­˜εœ¨ζ„ε€–ηš„ζ·»εŠ ε‰‚ζˆεˆ†", + "msg.framedblocks.framing_saw.transfer.invalid_recipe": "ι…ζ–Ήζ— ζ•ˆ", + "msg.framedblocks.framing_saw.transfer.not_implemented": "δΌ θΎ“ζœͺεžηŽ°οΌŒδΈδΌšθ½¬η§»δ»»δ½•η‰©ε“", "msg.framedblocks.lock_state": "现在θ―₯ζ–Ήε—ηŠΆζ€δΈΊ %s", "msg.framedblocks.lock_state.locked": "锁εš", "msg.framedblocks.lock_state.unlocked": "ζœͺ锁εš", + "msg.framedblocks.powered_saw.status": "ηŠΆζ€οΌš", + "msg.framedblocks.powered_saw.status.no_match": "ι…ζ–ΉδΈεŒΉι…", + "msg.framedblocks.powered_saw.status.no_recipe": "无配方", + "msg.framedblocks.powered_saw.status.ready": "ε°±η»ͺ", + "msg.framedblocks.prism_offset.switch": "δ½Ώη”¨ζ‘†ζžΆι”€ζ•²ε‡»δ»₯εˆ‡ζ’εη§»", + "msg.framedblocks.split_line.switch": "δ½Ώη”¨ζ‘†ζžΆζ‰³ζ‰‹ζ•²ε‡»δ»₯εˆ‡ζ’εˆ†ε‰²ηΊΏζ–Ήε‘", "title.framedblocks.framed_chest": "η±ε­ζ‘†ζžΆ", "title.framedblocks.framed_secret_storage": "ζœ¨ζ‘Άζ‘†ζžΆ", + "title.framedblocks.framing_saw": "ζ‘†ζžΆι”―", + "title.framedblocks.powered_framing_saw": "εŠ¨εŠ›ζ‘†ζžΆι”―", + "title.framedblocks.powered_saw.target_block": "η›ζ ‡οΌš", "title.framedblocks.sign.edit": "ηΌ–θΎ‘ε‘Šη€Ίη‰Œ", - "tooltip.framedblocks.lock_state": "ηŠΆζ€ %s" + "tooltip.framedblocks.camo_rotation.false": "η›ζ ‡δΌͺ装块不可旋转", + "tooltip.framedblocks.camo_rotation.true": "η›ζ ‡δΌͺ装块可旋转", + "tooltip.framedblocks.frame_bg.set_camo": "δ½Ώη”¨ζ‘†ζžΆι”€ζ•²ε‡»δ»₯ε°†δΌͺ装块θΎδΈΊθƒŒζ™―", + "tooltip.framedblocks.frame_bg.set_leather": "δ½Ώη”¨ζ‘†ζžΆι”€ζ•²ε‡»δ»₯ε°†ηšι©θΎδΈΊθƒŒζ™―", + "tooltip.framedblocks.frame_bg.use_camo": "η‰©ε“ε±•η€Ίζ‘†ζ‘†ζžΆδ½Ώη”¨δΌͺθ£…ε—δ½œδΈΊθƒŒζ™―", + "tooltip.framedblocks.frame_bg.use_leather": "η‰©ε“ε±•η€Ίζ‘†ζ‘†ζžΆδ½Ώη”¨ηšι©δ½œδΈΊθƒŒζ™―", + "tooltip.framedblocks.framing_saw.have_item_none": "ζ— ", + "tooltip.framedblocks.framing_saw.have_x_but_need_y_item": "ζ‹₯ζœ‰%sοΌŒδ½†ιœ€θ¦%s", + "tooltip.framedblocks.framing_saw.have_x_but_need_y_item_count": "ζ‹₯ζœ‰%sδΈͺη‰©ε“οΌŒδ½†θ‡³ε°‘ιœ€θ¦%sδΈͺ", + "tooltip.framedblocks.framing_saw.have_x_but_need_y_material_count": "ζ‹₯ζœ‰%sζζ–™οΌŒδ½†θ‡³ε°‘ιœ€θ¦%s材料", + "tooltip.framedblocks.framing_saw.have_x_but_need_y_tag": "ζ‹₯ζœ‰%sοΌŒδ½†ιœ€θ¦δ»»ζ„%s", + "tooltip.framedblocks.framing_saw.loose_additive": "θ―₯η‰©ε“η”±ζ·»εŠ ε‰‚ζˆεˆ†εˆζˆοΌŒθΏ™δΊ›ζˆεˆ†ε°†δΈ’ε€±", + "tooltip.framedblocks.framing_saw.material": "ζζ–™δ»·ε€ΌοΌš%s", + "tooltip.framedblocks.framing_saw.output_count": "η»“ζžœζ•°ι‡οΌš%sοΌŒζœ€ε€§ζ•°ι‡οΌš%s", + "tooltip.framedblocks.framing_saw.press_to_show": "ζŒ‰δΈ‹[%s]δ»₯ζ˜Ύη€Ίζ‰€ζœ‰ε―θƒ½ηš„η‰©ε“", + "tooltip.framedblocks.is_waterloggable.false": "方块不可含水。", + "tooltip.framedblocks.is_waterloggable.true": "方块可含水。", + "tooltip.framedblocks.lock_state": "ηŠΆζ€ %s", + "tooltip.framedblocks.make_waterloggable.false": "δ½Ώη”¨ζ‘†ζžΆι”€ζ•²ε‡»δ»₯使兢不可含水", + "tooltip.framedblocks.make_waterloggable.true": "δ½Ώη”¨ζ‘†ζžΆι”€ζ•²ε‡»δ»₯使兢可含水", + "tooltip.framedblocks.one_way_window.clear_face": "ζ½œθ‘Œζ—Άδ½Ώη”¨ζ‘†ζžΆζ‰³ζ‰‹ζ•²ε‡»δ»₯清陀透视青", + "tooltip.framedblocks.one_way_window.curr_face": "ε½“ε‰ι€θ§†ι’οΌš%s", + "tooltip.framedblocks.one_way_window.dir.down": "δΈ‹", + "tooltip.framedblocks.one_way_window.dir.east": "东", + "tooltip.framedblocks.one_way_window.dir.north": "εŒ—", + "tooltip.framedblocks.one_way_window.dir.south": "南", + "tooltip.framedblocks.one_way_window.dir.up": "上", + "tooltip.framedblocks.one_way_window.dir.west": "θ₯Ώ", + "tooltip.framedblocks.one_way_window.face.down": "δΈ‹", + "tooltip.framedblocks.one_way_window.face.east": "东", + "tooltip.framedblocks.one_way_window.face.none": "ζ— ", + "tooltip.framedblocks.one_way_window.face.north": "εŒ—", + "tooltip.framedblocks.one_way_window.face.south": "南", + "tooltip.framedblocks.one_way_window.face.up": "上", + "tooltip.framedblocks.one_way_window.face.west": "θ₯Ώ", + "tooltip.framedblocks.one_way_window.face_abbr.down": "δΈ‹", + "tooltip.framedblocks.one_way_window.face_abbr.east": "东", + "tooltip.framedblocks.one_way_window.face_abbr.none": "-", + "tooltip.framedblocks.one_way_window.face_abbr.north": "εŒ—", + "tooltip.framedblocks.one_way_window.face_abbr.south": "南", + "tooltip.framedblocks.one_way_window.face_abbr.up": "上", + "tooltip.framedblocks.one_way_window.face_abbr.west": "θ₯Ώ", + "tooltip.framedblocks.one_way_window.set_face": "δ½Ώη”¨ζ‘†ζžΆζ‰³ζ‰‹ζ•²ε‡»δ»₯将透视青θΎδΈΊ%s", + "tooltip.framedblocks.powered_saw.energy": "%s / %s FE", + "tooltip.framedblocks.powered_saw.status.no_recipe": "ζœͺι€‰ζ‹©ι…ζ–ΉοΌŒη‚Ήε‡»η›ζ ‡ζ ΌεΉΆζ”Ύε…₯δ»»ζ„ζ‘†ζžΆζ–Ήε—δ»₯选择配方", + "tooltip.framedblocks.prism_offset.false": "三角纹理ζœͺ偏移。", + "tooltip.framedblocks.prism_offset.true": "δΈ‰θ§’ηΊΉη†εη§»δΊ†εŠδΈͺ方块。", + "tooltip.framedblocks.reinforce_state": "方块%s。", + "tooltip.framedblocks.reinforce_state.false": "ζœͺεΌΊεŒ–", + "tooltip.framedblocks.reinforce_state.true": "ε·²εΌΊεŒ–", + "tooltip.framedblocks.split_line.false": "ε˜ε½’ι’ηš„εˆ†ε‰²ηΊΏζ²Ώι™‘ε―Ήθ§’ηΊΏε»ΆδΌΈγ€‚", + "tooltip.framedblocks.split_line.true": "ε˜ε½’ι’ηš„εˆ†ε‰²ηΊΏζ²ΏηΌ“ε―Ήθ§’ηΊΏε»ΆδΌΈγ€‚", + "tooltip.framedblocks.y_slope": "方块使用%sι’δ½œδΈΊεž‚η›΄ε‘ι’γ€‚", + "tooltip.framedblocks.y_slope.horizontal": "ζ°΄εΉ³", + "tooltip.framedblocks.y_slope.toggle": "δ½Ώη”¨ζ‘†ζžΆζ‰³ζ‰‹ζ•²ε‡»δ»₯εˆ‡ζ’θ‡³%s青", + "tooltip.framedblocks.y_slope.vertical": "εž‚η›΄" } \ No newline at end of file diff --git a/kubejs/assets/ftbbackups/lang/uk_ua.json b/kubejs/assets/ftbbackups/lang/uk_ua.json new file mode 100644 index 000000000..ecc7b5742 --- /dev/null +++ b/kubejs/assets/ftbbackups/lang/uk_ua.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.", + "ftbbackups2.backup.starting": "Запуск Ρ€Π΅Π·Π΅Ρ€Π²Π½ΠΎΠ³ΠΎ ΠΊΠΎΠΏΡ–ΡŽΠ²Π°Π½Π½Ρ сСрвСра", + "ftbbackups2.backup.failed": "НС вдалося створити Ρ€Π΅Π·Π΅Ρ€Π²Π½Ρƒ ΠΊΠΎΠΏΡ–ΡŽ", + "ftbbackups2.backup.finished": "Π—Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ створСння Ρ€Π΅Π·Π΅Ρ€Π²Π½ΠΎΡ— ΠΊΠΎΠΏΡ–Ρ—", + "Backup finished in ": "Π Π΅Π·Π΅Ρ€Π²Π½Π΅ ΠΊΠΎΠΏΡ–ΡŽΠ²Π°Π½Π½Ρ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ Π·Π° ", + " Size: ": " Π ΠΎΠ·ΠΌΡ–Ρ€: " +} \ No newline at end of file diff --git a/kubejs/assets/ftbchunks/lang/uk_ua.json b/kubejs/assets/ftbchunks/lang/uk_ua.json new file mode 100644 index 000000000..d33a3c72a --- /dev/null +++ b/kubejs/assets/ftbchunks/lang/uk_ua.json @@ -0,0 +1,337 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "ftbchunks": "FTB Chunks", + "ftbchunks.zoom_warning": "МаксимальнС віддалСння ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ ΠΎΠ±ΠΌΠ΅ΠΆΠ΅Π½ΠΎ Ρ‡Π΅Ρ€Π΅Π· обмСТСння пам’яті", + "ftbchunks.appearance": "Π—ΠΎΠ²Π½Ρ–ΡˆΠ½Ρ–ΠΉ вигляд", + "ftbchunks.appearance.noise": "Π¨ΡƒΠΌ", + "ftbchunks.appearance.shadows": "Π’Ρ–Π½Ρ–", + "ftbchunks.appearance.chunk_grid": "Π‘Ρ–Ρ‚ΠΊΠ° Ρ‡Π°Π½ΠΊΡ–Π²", + "ftbchunks.appearance.reduced_color_palette": "Π—ΠΌΠ΅Π½ΡˆΠ΅Π½Π° ΠΏΠ°Π»Ρ–Ρ‚Ρ€Π° ΠΊΠΎΠ»ΡŒΠΎΡ€Ρ–Π²", + "ftbchunks.appearance.saturation": "ΠΠ°ΡΠΈΡ‡Π΅Π½Ρ–ΡΡ‚ΡŒ", + "ftbchunks.appearance.claimed_chunks_on_map": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ зайняті Ρ‡Π°Π½ΠΊΠΈ Π½Π° ΠΌΠ°ΠΏΡ–", + "ftbchunks.appearance.own_claimed_chunks_on_map": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ власні зайняті Ρ‡Π°Π½ΠΊΠΈ Π½Π° ΠΌΠ°ΠΏΡ–", + "ftbchunks.appearance.map_mode": "Π Π΅ΠΆΠΈΠΌ ΠΊΠ°Ρ€Ρ‚ΠΈ", + "ftbchunks.appearance.biome_blend": "Π—ΠΌΡ–ΡˆΡƒΠ²Π°Π½Π½Ρ Π±Ρ–ΠΎΠΌΡ–Π²", + "ftbchunks.biome_blend.none": "НСмає (НайшвидшС)", + "ftbchunks.biome_blend.blend_3x3": "Π—ΠΌΡ–ΡˆΡƒΠ²Π°Π½Π½Ρ 3x3", + "ftbchunks.biome_blend.blend_5x5": "Π—ΠΌΡ–ΡˆΡƒΠ²Π°Π½Π½Ρ 5Ρ…5", + "ftbchunks.biome_blend.blend_7x7": "Π—ΠΌΡ–ΡˆΡƒΠ²Π°Π½Π½Ρ 7Ρ…7", + "ftbchunks.biome_blend.blend_9x9": "Π—ΠΌΡ–ΡˆΡƒΠ²Π°Π½Π½Ρ 9Ρ…9", + "ftbchunks.biome_blend.blend_11x11": "Π—ΠΌΡ–ΡˆΡƒΠ²Π°Π½Π½Ρ 11Ρ…11", + "ftbchunks.biome_blend.blend_13x13": "Π—ΠΌΡ–ΡˆΡƒΠ²Π°Π½Π½Ρ 13Ρ…13", + "ftbchunks.biome_blend.blend_15x15": "Π—ΠΌΡ–ΡˆΡƒΠ²Π°Π½Π½Ρ 15x15 (ΠΠ°ΠΉΠΏΠΎΠ²Ρ–Π»ΡŒΠ½Ρ–ΡˆΠ΅)", + "ftbchunks.appearance.water_height_factor": "ΠšΠΎΠ΅Ρ„Ρ–Ρ†Ρ–Ρ”Π½Ρ‚ висоти Π²ΠΎΠ΄ΠΈ", + "ftbchunks.appearance.only_surface_entities": "Π›ΠΈΡˆΠ΅ ΠΏΠΎΠ²Π΅Ρ€Ρ…Π½Π΅Π²Ρ– сутності", + "ftbchunks.advanced": "Π ΠΎΠ·ΡˆΠΈΡ€Π΅Π½Ρ– Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ", + "ftbchunks.advanced.debug_info": "Інформація налагодТСння", + "ftbchunks.waypoints": "ΠœΡ–Ρ‚ΠΊΠΈ", + "ftbchunks.waypoints.in_world_waypoints": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ ΠΌΡ–Ρ‚ΠΊΡƒ Ρƒ світі", + "ftbchunks.waypoints.death_waypoints": "Π‘Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ ΠΌΡ–Ρ‚ΠΊΠΈ смСрті після Π·Π°Π³ΠΈΠ±Π΅Π»Ρ–", + "ftbchunks.waypoints.death_waypoint_autoremove_distance": "АвтоматичнС видалСння ΠΌΡ–Ρ‚ΠΊΠΈ смСрті Π·Π° Π²Ρ–Π΄ΡΡ‚Π°Π½Π½ΡŽ", + "ftbchunks.waypoints.death_waypoint_autoremove_distance.tooltip": "Π―ΠΊΡ‰ΠΎ > 0, Π½Π°ΠΉΠ±Π»ΠΈΠΆΡ‡Π° ΠΌΡ–Ρ‚ΠΊΠ° смСрті Π±ΡƒΠ΄Π΅ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π²ΠΈΠ΄Π°Π»Π΅Π½Π°, якщо Π²ΠΎΠ½Π° Π·Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒΡΡ Π±Π»ΠΈΠΆΡ‡Π΅ Π·Π° Ρ†ΡŽ Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ Π΄ΠΎ вас", + "ftbchunks.waypoints.waypoint_fade_distance": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Π° Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ згасання маяка", + "ftbchunks.waypoints.waypoint_dot_fade_distance": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Π° Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ згасання Ρ‚ΠΎΡ‡ΠΎΠΊ", + "ftbchunks.waypoints.waypoint_max_distance": "Максимальна Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ зобраТСння ΠΌΡ–Ρ‚ΠΎΠΊ", + "ftbchunks.waypoints.waypoint_focus_distance": "Ѐокусна Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ ΠΌΡ–Ρ‚ΠΊΠΈ", + "ftbchunks.waypoints.waypoint_focus_distance.tooltip": "ΠΠ°ΡΠΊΡ–Π»ΡŒΠΊΠΈ близько ΠΏΡ€ΠΈΡ†Ρ–Π» гравця ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ Π΄ΠΎ ΠΌΡ–Ρ‚ΠΊΠΈ, Ρ‰ΠΎΠ± зобразилася Ρ—Ρ— Π½Π°Π·Π²Π°?", + "ftbchunks.waypoints.waypoint_focus_scale": "ΠœΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ сфокусованої ΠΌΡ–Ρ‚ΠΊΠΈ", + "ftbchunks.waypoints.waypoint_focus_scale.tooltip": "ΠΠ°ΡΠΊΡ–Π»ΡŒΠΊΠΈ Π·Π±Ρ–Π»ΡŒΡˆΡƒΡŽΡ‚ΡŒΡΡ сфокусовані ΠΌΡ–Ρ‚ΠΊΠΈ?", + "ftbchunks.advanced.memory": "Використання ΠΏΠ°ΠΌ'яті", + "ftbchunks.advanced.memory.region_release_time": "Π’Π°ΠΉΠΌ-Π°ΡƒΡ‚ Π·Π²Ρ–Π»ΡŒΠ½Π΅Π½Π½Ρ Π½Π΅Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ Ρ€Π΅Π³Ρ–ΠΎΠ½Ρƒ", + "ftbchunks.advanced.memory.region_release_time.tooltip": "Π’Π°ΠΉΠΌ-Π°ΡƒΡ‚ Ρƒ сСкундах для Π·Π²Ρ–Π»ΡŒΠ½Π΅Π½Π½Ρ Π΄Π°Π½ΠΈΡ… 512x512 Ρ€Π΅Π³Ρ–ΠΎΠ½Ρ–Π², Π΄ΠΎ яких Π½Π΅ Π±ΡƒΠ»ΠΎ доступу останнім часом \nΠœΠ΅Π½ΡˆΡ– значСння Π·ΠΌΠ΅Π½ΡˆΡƒΡŽΡ‚ΡŒ використання пам’яті, Π°Π»Π΅ Π·Π±Ρ–Π»ΡŒΡˆΡƒΡŽΡ‚ΡŒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π·Π²Π΅Ρ€Π½Π΅Π½ΡŒ Π΄ΠΎ диска ΠΏΡ–Π΄ час ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎΠ³ΠΎ завантаТСння Ρ€Π΅Π³Ρ–ΠΎΠ½Ρ–Π² \nΠ’ΡΡ‚Π°Π½ΠΎΠ²Ρ–Ρ‚ΡŒ 0, Ρ‰ΠΎΠ± Π²ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π·Π²Ρ–Π»ΡŒΠ½Π΅Π½Π½Ρ Π΄Π°Π½ΠΈΡ… Ρ€Π΅Π³Ρ–ΠΎΠ½Ρ–Π².", + "ftbchunks.advanced.memory.autorelease_on_map_close": "Автоматично Π·Π²Ρ–Π»ΡŒΠ½ΡΡ‚ΠΈ Ρ€Π΅Π³Ρ–ΠΎΠ½ΠΈ ΠΏΡ€ΠΈ Π·Π°ΠΊΡ€ΠΈΡ‚Ρ‚Ρ– ΠΌΠ°ΠΏΠΈ", + "ftbchunks.advanced.memory.autorelease_on_map_close.tooltip": "Коли Π²Π΅Π»ΠΈΠΊΠ° ΠΌΠ°ΠΏΠ° Π·Π°ΠΊΡ€ΠΈΠ²Π°Ρ”Ρ‚ΡŒΡΡ, Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π·Π²Ρ–Π»ΡŒΠ½ΡΡ‚ΠΈ Π΄Π°Π½Ρ– Ρ€Π΅Π³Ρ–ΠΎΠ½Ρ–Π² Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ значСння \nΠœΠ΅Π½ΡˆΡ– значСння Π·ΠΌΠ΅Π½ΡˆΡƒΡŽΡ‚ΡŒ використання пам’яті, Π°Π»Π΅ Π·Π±Ρ–Π»ΡŒΡˆΡƒΡŽΡ‚ΡŒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π·Π²Π΅Ρ€Π½Π΅Π½ΡŒ Π΄ΠΎ диска ΠΏΡ–Π΄ час ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎΠ³ΠΎ завантаТСння Ρ€Π΅Π³Ρ–ΠΎΠ½Ρ–Π² \nΠ’ΡΡ‚Π°Π½ΠΎΠ²Ρ–Ρ‚ΡŒ 0, Ρ‰ΠΎΠ± Π²ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π·Π²Ρ–Π»ΡŒΠ½Π΅Π½Π½Ρ Π΄Π°Π½ΠΈΡ… Ρ€Π΅Π³Ρ–ΠΎΠ½Ρ–Π².", + "ftbchunks.advanced.memory.max_zoom_constraint": "Constrain map zoom-out", + "ftbchunks.advanced.memory.max_zoom_constraint.tooltip": "Π―ΠΊΡ‰ΠΎ ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, максимальнС віддалСння ΠΌΠ°ΠΏΠΈ ΠΎΠ±ΠΌΠ΅ΠΆΡƒΡ”Ρ‚ΡŒΡΡ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ дослідТСних Ρ€Π΅Π³Ρ–ΠΎΠ½Ρ–Π² Ρ‚Π° обсягом доступної пам’яті \nΠ―ΠΊΡ‰ΠΎ Ρ†Π΅ Π·Π°Π²Π°ΠΆΠ°Ρ”, Π²ΡΡ‚Π°Π½ΠΎΠ²Ρ–Ρ‚ΡŒ значСння Π’ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ.", + "ftbchunks.minimap": "ΠœΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚Π°", + "ftbchunks.minimap.enabled": "Π£Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbchunks.minimap.position": "ΠŸΠΎΠ·ΠΈΡ†Ρ–Ρ", + "ftbchunks.minimap.position_offset_x": "Зсув ΠΏΠΎΠ·ΠΈΡ†Ρ–Ρ— X", + "ftbchunks.minimap.position_offset_y": "Зсув ΠΏΠΎΠ·ΠΈΡ†Ρ–Ρ— Y", + "ftbchunks.minimap.position_offset_condition": "Π£ΠΌΠΎΠ²Π° зсуву ΠΏΠΎΠ·ΠΈΡ†Ρ–Ρ—", + "ftbchunks.minimap.position.none": "НСмає", + "ftbchunks.minimap.position.bottom_left": "НиТній Π»Ρ–Π²ΠΈΠΉ", + "ftbchunks.minimap.position.left": "Π›Ρ–Π²ΠΈΠΉ", + "ftbchunks.minimap.position.top_left": "Π’Π΅Ρ€Ρ…Π½Ρ–ΠΉ Π»Ρ–Π²ΠΈΠΉ", + "ftbchunks.minimap.position.top_right": "Π’Π΅Ρ€Ρ…Π½Ρ–ΠΉ ΠΏΡ€Π°Π²ΠΈΠΉ", + "ftbchunks.minimap.position.right": "ΠŸΡ€Π°Π²ΠΎΡ€ΡƒΡ‡", + "ftbchunks.minimap.position.bottom_right": "НиТній ΠΏΡ€Π°Π²ΠΈΠΉ", + "ftbchunks.minimap.scale": "ΠœΠ°ΡΡˆΡ‚Π°Π±", + "ftbchunks.minimap.locked_north": "Ѐіксувати ΠΏΡ–Π²Π½Ρ–Ρ‡", + "ftbchunks.minimap.show_player_when_unlocked": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ гравця, якщо ΠΏΡ–Π²Π½Ρ–Ρ‡ Π½Π΅ зафіксована", + "ftbchunks.minimap.waypoints": "ΠœΡ–Ρ‚ΠΊΠΈ", + "ftbchunks.minimap.entities": "Бутності", + "ftbchunks.minimap.entity_heads": "Π“ΠΎΠ»ΠΎΠ²ΠΈ сутностСй", + "ftbchunks.minimap.player_heads": "Π“ΠΎΠ»ΠΎΠ²ΠΈ Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbchunks.minimap.large_entities": "Π’Π΅Π»ΠΈΠΊΡ– сутності", + "ftbchunks.minimap.zoom": "ΠœΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ", + "ftbchunks.minimap.xyz": "XYZ", + "ftbchunks.minimap.biome": "Π‘Ρ–ΠΎΠΌ", + "ftbchunks.minimap.blur_mode": "Π Π΅ΠΆΠΈΠΌ розмивання", + "ftbchunks.minimap.blur_mode.auto": "Авто", + "ftbchunks.minimap.blur_mode.on": "Π£Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ", + "ftbchunks.minimap.blur_mode.off": "Π’ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ", + "ftbchunks.minimap.compass": "Компас", + "ftbchunks.minimap.reticle": "Π›Ρ–Π½Ρ–Ρ— ΠΏΡ€ΠΈΡ†Ρ–Π»Ρƒ", + "ftbchunks.minimap.visibility": "Π’ΠΈΠ΄ΠΈΠΌΡ–ΡΡ‚ΡŒ", + "ftbchunks.minimap.zone": "Π—ΠΎΠ½Π°", + "ftbchunks.minimap.square": "ΠšΠ²Π°Π΄Ρ€Π°Ρ‚Π½Π° ΠΌΡ–Π½Ρ–ΠΌΠ°ΠΏΠ°", + "ftbchunks.minimap.font_scale": "ΠœΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ ΡˆΡ€ΠΈΡ„Ρ‚Ρƒ", + "ftbchunks.minimap.font_scale.tooltip": "Π Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΠΎΠ²Π°Π½ΠΎ використовувати значСння, ΠΊΡ€Π°Ρ‚Π½Π΅ 0.5", + "ftbchunks.minimap.proportional": "ΠŸΡ€ΠΎΠΏΠΎΡ€Ρ†Ρ–ΠΉΠ½Π΅ ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ", + "ftbchunks.minimap.proportional.tooltip": "Π―ΠΊΡ‰ΠΎ ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Ρ€ΠΎΠ·ΠΌΡ–Ρ€ ΠΌΡ–Π½Ρ–ΠΌΠ°ΠΏΠΈ ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ 10% ΡˆΠΈΡ€ΠΈΠ½ΠΈ Π΅ΠΊΡ€Π°Π½Π° (ΠΌΠΎΠΆΠ½Π° Π·ΠΌΡ–Π½ΠΈΡ‚ΠΈ Ρ‡Π΅Ρ€Π΅Π· ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ ΠœΠ°ΡΡˆΡ‚Π°Π±). \nΠ―ΠΊΡ‰ΠΎ Π²ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ, ΠΌΡ–Π½Ρ–ΠΌΠ°ΠΏΠ° ΠΌΠ°Ρ” фіксований Ρ€ΠΎΠ·ΠΌΡ–Ρ€ Π½Π΅Π·Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ Ρ€ΠΎΠ·Π΄Ρ–Π»ΡŒΠ½ΠΎΡ— здатності Π΅ΠΊΡ€Π°Π½Π°", + "ftbchunks.minimap.pointer_icon_mode": "Π Π΅ΠΆΠΈΠΌ Π²Π΅Π»ΠΈΠΊΠΎΡ— Ρ–ΠΊΠΎΠ½ΠΊΠΈ ΠΏΠΎΠΊΠ°ΠΆΡ‡ΠΈΠΊΠ° Π½Π° ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚ΠΈ", + "ftbchunks.minimap.pointer_icon_mode_minimap": "Π Π΅ΠΆΠΈΠΌ Ρ–ΠΊΠΎΠ½ΠΊΠΈ ΠΏΠΎΠΊΠ°ΠΆΡ‡ΠΈΠΊΠ° Π½Π° ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€ΠΈΡ‚ΠΈ", + "ftbchunks.minimap.pointer_icon_mode.both": "Обидва", + "ftbchunks.minimap.pointer_icon_mode.pointer": "Π’ΠΊΠ°Π·Ρ–Π²Π½ΠΈΠΊ", + "ftbchunks.minimap.pointer_icon_mode.face": "Π†ΠΊΠΎΠ½ΠΊΠ° обличчя", + "ftbchunks.minimap.text_above_minimap": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ тСкст Π½Π°Π΄ ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚ΠΎΡŽ", + "sidebar_button.ftbchunks.chunks": "FTB Chunks: ΠšΠ°Ρ€Ρ‚Π°", + "sidebar_button.ftbchunks.claim_chunks": "FTB Chunks: ΠœΠ΅Π½Π΅Π΄ΠΆΠ΅Ρ€ привласнСння", + "key.categories.ftbchunks": "FTB Chunks", + "key.ftbchunks.map": "Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ ΠΊΠ°Ρ€Ρ‚Ρƒ", + "key.ftbchunks.claim_manager": "Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ ΠΌΠ΅Π½Π΅Π΄ΠΆΠ΅Ρ€ привласнСння", + "key.ftbchunks.minimap.zoomIn": "Π—Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚Ρƒ", + "key.ftbchunks.minimap.zoomOut": "Π—ΠΌΠ΅Π½ΡˆΠΈΡ‚ΠΈ ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚Ρƒ", + "key.ftbchunks.add_waypoint": "Π¨Π²ΠΈΠ΄ΠΊΠ΅ додавання ΠΌΡ–Ρ‚ΠΎΠΊ", + "key.ftbchunks.waypoint_manager": "ΠœΠ΅Π½Π΅Π΄ΠΆΠ΅Ρ€ ΠΌΡ–Ρ‚ΠΎΠΊ", + "key.ftbchunks.toggle_minimap": "ΠŸΠ΅Ρ€Π΅ΠΌΠΊΠ½ΡƒΡ‚ΠΈ ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚Ρƒ", + "wilderness": "Π”ΠΈΠΊΠ° ΠΌΡ–ΡΡ†Π΅Π²Ρ–ΡΡ‚ΡŒ", + "ftbchunks.no_server_mod": "FTB Chunks ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” встановлСння ΠΌΠΎΠ΄Ρƒ Π½Π° сСрвСрі!", + "ftbchunks.already_claimed": "Π§Π°Π½ΠΊ ΡƒΠΆΠ΅ привласнСний Π³Ρ€Π°Π²Ρ†Π΅ΠΌ %s", + "ftbchunks.waypoint_added": "ΠœΡ–Ρ‚ΠΊΡƒ '%s' Π΄ΠΎΠ΄Π°Π½ΠΎ", + "ftbchunks.deathpoint_removed": "ΠœΡ–Ρ‚ΠΊΡƒ '%s' Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π²ΠΈΠ΄Π°Π»Π΅Π½ΠΎ", + "ftbchunks.gui.claimed": "ΠŸΡ€ΠΈΠ²Π»Π°ΡΠ½Π΅Π½ΠΎ", + "ftbchunks.gui.force_loaded": "ΠŸΡ€ΠΈΠΌΡƒΡΠΎΠ²Π΅ завантаТСння", + "ftbchunks.gui.force_load_expires": "ΠŸΡ€ΠΈΠΌΡƒΡΠΎΠ²Π΅ завантаТСння Π·Π°Π²Π΅Ρ€ΡˆΡƒΡ”Ρ‚ΡŒΡΡ", + "ftbchunks.gui.allies": "Боюзники", + "ftbchunks.gui.ally_whitelist": "Π‘Ρ–Π»ΠΈΠΉ список ΡΠΎΡŽΠ·Π½ΠΈΠΊΡ–Π²", + "ftbchunks.gui.ally_blacklist": "Π§ΠΎΡ€Π½ΠΈΠΉ список ΡΠΎΡŽΠ·Π½ΠΈΠΊΡ–Π²", + "ftbchunks.gui.large_map": "Π’Π΅Π»ΠΈΠΊΠ° ΠΊΠ°Ρ€Ρ‚Π°", + "ftbchunks.gui.claimed_chunks": "ΠŸΡ€ΠΈΠ²Π»Π°ΡΠ½Π΅Π½Ρ– Ρ‡Π°Π½ΠΊΠΈ", + "ftbchunks.gui.waypoints": "ΠœΠ΅Π½Π΅Π΄ΠΆΠ΅Ρ€ ΠΌΡ–Ρ‚ΠΎΠΊ", + "ftbchunks.gui.add_waypoint": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ ΠΌΡ–Ρ‚ΠΊΡƒ", + "ftbchunks.gui.edit_waypoint": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ ΠΌΡ–Ρ‚ΠΊΡƒ", + "ftbchunks.gui.settings": "ΠΠ°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ", + "ftbchunks.gui.settings.server": "ΠΠ°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ сСрвСра", + "ftbchunks.gui.sync": "ΠŸΠΎΠ΄Ρ–Π»ΠΈΡ‚ΠΈΡΡ ΠΊΠ°Ρ€Ρ‚ΠΎΡŽ Π· союзниками", + "ftbchunks.gui.clear_deathpoints": "ΠžΡ‡ΠΈΡΡ‚ΠΈΡ‚ΠΈ всі ΠΌΡ–Ρ‚ΠΊΠΈ смСрті", + "ftbchunks.gui.delete_waypoint": "Π’ΠΈΠ΄Π°Π»ΠΈΡ‚ΠΈ ΠΌΡ–Ρ‚ΠΊΡƒ '%s'?", + "ftbchunks.gui.change_color": "Π—ΠΌΡ–Π½ΠΈΡ‚ΠΈ ΠΊΠΎΠ»Ρ–Ρ€", + "ftbchunks.gui.edit": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ", + "ftbchunks.gui.hold_alt_for_dates": "Π£Ρ‚Ρ€ΠΈΠΌΡƒΠΉΡ‚Π΅ Alt: ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΠΈ Π°Π±ΡΠΎΠ»ΡŽΡ‚Π½ΠΈΠΉ час", + "ftbchunks.gui.mouse_wheel_expiry": "ΠšΠΎΠ»Ρ–Ρ‰Π°Ρ‚ΠΊΠΎ ΠΌΠΈΡˆΡ–: Π·ΠΌΡ–Π½ΠΈΡ‚ΠΈ час Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ примусового завантаТСння", + "ftbchunks.gui.teleport": "ВСлСпортація", + "ftbchunks.gui.large_map_info": "Π”ΠΎΠ²Ρ–Π΄Π½ΠΈΠΊ ΠΊΠ»Π°Π²Ρ–Ρˆ/ΠΌΠΈΡˆΡ–", + "ftbchunks.gui.large_map_info.text": "Миша\nΠ›Ρ–Π²Π° ΠΊΠ½ΠΎΠΏΠΊΠ° β€” ΠšΠ»Ρ–ΠΊ/пСрСтягування для пСрСміщСння ΠΊΠ°Ρ€Ρ‚ΠΈ\nΠŸΡ€Π°Π²Π° ΠΊΠ½ΠΎΠΏΠΊΠ° β€” ΠšΠΎΠ½Ρ‚Π΅ΠΊΡΡ‚Π½Π΅ мСню\nΠšΠΎΠ»Ρ–Ρ‰Π°Ρ‚ΠΊΠΎ ΠΌΠΈΡˆΡ– β€” ΠžΠ±Π΅Ρ€Ρ‚Π°Π½Π½Ρ для ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ\n\nΠšΠ»Π°Π²Ρ–ΡˆΡ–\nΠŸΡ€ΠΎΠ±Ρ–Π» β€” Π¦Π΅Π½Ρ‚Ρ€ΡƒΠ²Π°Ρ‚ΠΈ ΠΊΠ°Ρ€Ρ‚Ρƒ Π½Π° Π³Ρ€Π°Π²Ρ†Ρ–\nC β€” Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Π΅ΠΊΡ€Π°Π½ привласнСння Ρ‡Π°Π½ΠΊΡ–Π²\nT β€” ВСлСпортація Π΄ΠΎ Ρ‚ΠΎΡ‡ΠΊΠΈ (ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– ΠΏΡ€Π°Π²Π° ΠΎΠΏΠ΅Ρ€Π°Ρ‚ΠΎΡ€Π°)\nS β€” Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Π΅ΠΊΡ€Π°Π½ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½ΡŒ\nCtrl + S β€” Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ сСрвСрні Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ (ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– ΠΏΡ€Π°Π²Π° ΠΎΠΏΠ΅Ρ€Π°Ρ‚ΠΎΡ€Π°)\nF3 + G β€” ΠŸΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°Π½Π½Ρ сітки Ρ‡Π°Π½ΠΊΡ–Π²", + "ftbchunks.gui.chunk_info": "Π”ΠΎΠ²Ρ–Π΄Π½ΠΈΠΊ привласнСння Ρ‡Π°Π½ΠΊΡ–Π²", + "ftbchunks.gui.chunk_info.text": "ΠŸΡ€ΠΈΠ²Π»Π°ΡΠ½Π΅Π½Π½Ρ\nΠ›Ρ–Π²Π° ΠΊΠ½ΠΎΠΏΠΊΠ° β€” ΠŸΠ΅Ρ€Π΅Ρ‚ΡΠ³Π½Ρ–Ρ‚ΡŒ для привласнСння області \nΠŸΡ€Π°Π²Π° ΠΊΠ½ΠΎΠΏΠΊΠ° β€” ΠŸΠ΅Ρ€Π΅Ρ‚ΡΠ³Π½Ρ–Ρ‚ΡŒ для скасування привласнСння області\n\nΠŸΡ€ΠΈΠΌΡƒΡΠΎΠ²Π΅ завантаТСння\nShift + Π»Ρ–Π²Π° ΠΊΠ½ΠΎΠΏΠΊΠ° β€” ΠŸΠ΅Ρ€Π΅Ρ‚ΡΠ³Π½Ρ–Ρ‚ΡŒ для примусового завантаТСння області \nShift + ΠΏΡ€Π°Π²Π° ΠΊΠ½ΠΎΠΏΠΊΠ° β€” ΠŸΠ΅Ρ€Π΅Ρ‚ΡΠ³Π½Ρ–Ρ‚ΡŒ для скасування примусового завантаТСння \nΠšΠΎΠ»Ρ–Ρ‰Π°Ρ‚ΠΊΠΎ ΠΌΠΈΡˆΡ– β€” ΠžΠ±Π΅Ρ€Ρ‚Π°ΠΉΡ‚Π΅ Π½Π° примусово Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΎΠΌΡƒ Ρ‡Π°Π½ΠΊΡƒ для Π·ΠΌΡ–Π½ΠΈ часу Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ\n\nΠ†Π½ΡˆΠ΅\nTab β€” Π£Ρ‚Ρ€ΠΈΠΌΡƒΠΉΡ‚Π΅ для приховування сітки Ρ‡Π°Π½ΠΊΡ–Π² \nAlt β€” Π£Ρ‚Ρ€ΠΈΠΌΡƒΠΉΡ‚Π΅ для ΠΏΠΎΠΊΠ°Π·Ρƒ Π°Π±ΡΠΎΠ»ΡŽΡ‚Π½ΠΎΠ³ΠΎ часу привласнСння/завантаТСння Ρ‡Π°Π½ΠΊΡ–Π²", + "ftbchunks.gui.delete": "Π’ΠΈΠ΄Π°Π»ΠΈΡ‚ΠΈ", + "ftbchunks.gui.quick_delete": "Π¨Π²ΠΈΠ΄ΠΊΠ΅ видалСння", + "ftbchunks.gui.opened_as": "Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΎ як %s", + "ftbchunks.gui.admin_mode_disabled": "Π Π΅ΠΆΠΈΠΌ адміністратора: Π²ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbchunks.gui.admin_mode_enabled": "Π Π΅ΠΆΠΈΠΌ адміністратора: ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbchunks.gui.admin_mode_info": "Π―ΠΊΡ‰ΠΎ ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·ΠΌΡ–Π½ΡŽΠ²Π°Ρ‚ΠΈ Ρ‡Π°Π½ΠΊΠΈ Π½Π΅Π·Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ власника", + "ftbchunks.gui.unclaim_all": "Бкасувати всі привласнСння", + "ftbchunks.gui.unclaim_all.description": "Бкасувати привласнСння всіх Ρ‡Π°Π½ΠΊΡ–Π², Π²ΠΈΠ΄ΠΈΠΌΠΈΡ… Π½Π° ΠΊΠ°Ρ€Ρ‚Ρ–?", + "ftbchunks.gui.entity_icon_settings": "ΠΠ°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Ρ–ΠΊΠΎΠ½ΠΎΠΊ сутностСй", + "ftbchunks.gui.enabled_disabled_count": "Π£Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ: %d, Π’ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ: %d", + "ftbchunks.gui.label.dimension": "Π ΠΎΠ·ΠΌΡ–Ρ€", + "ftbchunks.gui.label.name": "Назва", + "ftbchunks.gui.waypoint.no_name": "Π‘ΡƒΠ΄ΡŒ ласка, Π²Π²Π΅Π΄iΡ‚ΡŒ iΠΌ'я", + "ftbchunks.gui.no_waypoints": "Π‘Π΅Π· ΠΌΡ–Ρ‚ΠΎΠΊ", + "ftbteamsconfig.ftbchunks": "Властивості FTB Chunks", + "ftbteamsconfig.ftbchunks.allow_fake_players": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ всіх Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbteamsconfig.ftbchunks.allow_fake_players.tooltip": "Π’Π²Π°ΠΆΠ°Ρ‚ΠΈ всіх Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π² союзниками ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ \nУВАГА: Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Ρ†Π΅ΠΉ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€, Π²ΠΎΡ€ΠΎΠΆΡ– Π³Ρ€Π°Π²Ρ†Ρ– ΠΌΠΎΠΆΡƒΡ‚ΡŒ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ доступ Π΄ΠΎ Π²Π°ΡˆΠΈΡ… привласнСних Ρ‡Π°Π½ΠΊΡ–Π² Ρ‡Π΅Ρ€Π΅Π· Π±ΡƒΠ΄ΡŒ-якого Ρ„Π΅ΠΉΠΊΠΎΠ²ΠΎΠ³ΠΎ гравця. Π’ΠΈΠΌΠΊΠ½Ρ–Ρ‚ΡŒ, якщо Π½Π΅ Π²ΠΏΠ΅Π²Π½Π΅Π½Ρ–.", + "ftbteamsconfig.ftbchunks.allow_named_fake_players": "Π†ΠΌΠ΅Π½Π°/ID ΡΠΎΡŽΠ·Π½ΠΈΡ… Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbteamsconfig.ftbchunks.allow_named_fake_players.tooltip": "Π’Π²Π°ΠΆΠ°Ρ‚ΠΈ Ρ†ΠΈΡ… Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π² союзниками ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ \nУВАГА: Додавання записів сюди ΠΌΠΎΠΆΠ΅ Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ Π²ΠΎΡ€ΠΎΠΆΠΈΠΌ гравцям ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ доступ Π΄ΠΎ Π²Π°ΡˆΠΈΡ… привласнСних Ρ‡Π°Π½ΠΊΡ–Π² Ρ‡Π΅Ρ€Π΅Π· Π·Π°Π·Π½Π°Ρ‡Π΅Π½ΠΈΡ… Ρ„Π΅ΠΉΠΊΠΎΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π². Π—Π°Π»ΠΈΡˆΡ‚Π΅ ΠΏΠΎΠ»Π΅ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ–ΠΌ, якщо Π½Π΅ Π²ΠΏΠ΅Π²Π½Π΅Π½Ρ–.", + "ftbteamsconfig.ftbchunks.allow_fake_players_by_id": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π² Π·Π° ID", + "ftbteamsconfig.ftbchunks.allow_fake_players_by_id.tooltip": "Дозволяє Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… гравцям Π· ID Ρ€Π΅Π°Π»ΡŒΠ½ΠΎΠ³ΠΎ гравця доступ Π΄ΠΎ Π²Π°ΡˆΠΈΡ… привласнСних Ρ‡Π°Π½ΠΊΡ–Π², якщо Ρ†Π΅ΠΉ Ρ€Π΅Π°Π»ΡŒΠ½ΠΈΠΉ Π³Ρ€Π°Π²Π΅Ρ†ΡŒ ΠΌΠ°Ρ” Π΄ΠΎΠ·Π²Ρ–Π» β€” як союзник Π°Π±ΠΎ учасник ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ. Π£Π²Ρ–ΠΌΠΊΠ½Ρ–Ρ‚ΡŒ, якщо Π½Π΅ Π²ΠΏΠ΅Π²Π½Π΅Π½Ρ–.", + "ftbteamsconfig.ftbchunks.allow_explosions": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ ΡˆΠΊΠΎΠ΄Ρƒ Π²Ρ–Π΄ Π²ΠΈΠ±ΡƒΡ…Ρ–Π²", + "ftbteamsconfig.ftbchunks.allow_explosions.tooltip": "Π§ΠΈ ΠΏΠΎΠ²ΠΈΠ½Π½Ρ– Π²ΠΈΠ±ΡƒΡ…ΠΈ Π·Π°Π²Π΄Π°Π²Π°Ρ‚ΠΈ шкоди Π±Π»ΠΎΠΊΠ°ΠΌ Ρƒ привласнСних Ρ‡Π°Π½ΠΊΠ°Ρ…?", + "ftbteamsconfig.ftbchunks.allow_pvp": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ PvP", + "ftbteamsconfig.ftbchunks.allow_pvp.tooltip": "Π§ΠΈ дозволяти PvP Ρƒ привласнСних Ρ‡Π°Π½ΠΊΠ°Ρ…? \nДля Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Ρ†Ρ–Ρ”Ρ— Ρ„ΡƒΠ½ΠΊΡ†Ρ–Ρ— ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ сСрвСра 'Allow PvP Combat' ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ встановлСний Ρƒ значСння Β«per_teamΒ». \nНС Π³Π°Ρ€Π°Π½Ρ‚ΡƒΡ”Ρ‚ΡŒΡΡ захист Π²Ρ–Π΄ 100\u202F% нСпрямих Π°Ρ‚Π°ΠΊ; ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Π° ΠΌΠΎΠΆΠ»ΠΈΠ²Ρ–ΡΡ‚ΡŒ прив’язати Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎ шкоди Π΄ΠΎ ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½ΠΎΠ³ΠΎ гравця", + "ftbteamsconfig.ftbchunks.allow_mob_griefing": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ Π΄Ρ–Ρ— грифСрства ΠΌΠΎΠ±Ρ–Π²", + "ftbteamsconfig.ftbchunks.allow_mob_griefing.tooltip": "Π§ΠΈ дозволяти ΠΌΠΎΠ±Π°ΠΌ Π·Π°Π²Π΄Π°Π²Π°Ρ‚ΠΈ шкоди Π±Π»ΠΎΠΊΠ°ΠΌ Ρƒ привласнСних Ρ‡Π°Π½ΠΊΠ°Ρ…? \nΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°: Π½Π°Ρ€Π°Π·Ρ– Ρ†Π΅ ΡΡ‚ΠΎΡΡƒΡ”Ρ‚ΡŒΡΡ лишС Π΅Π½Π΄Π΅Ρ€ΠΌΠ΅Π½Ρ–Π²; Ρƒ ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½ΡŒΠΎΠΌΡƒ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ Π΄ΠΎΠ΄Π°Π½Ρ– ΠΉ Ρ–Π½ΡˆΡ– ΠΌΠΎΠ±ΠΈ. \nΠ’ΠΈΠ±ΡƒΡ…ΠΈ ΠΊΡ€Ρ–ΠΏΠ΅Ρ€Ρ–Π² ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŽΡŽΡ‚ΡŒΡΡ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΎΠΌ \"Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ Π²ΠΈΠ±ΡƒΡ…ΠΈ\"", + "ftbteamsconfig.ftbchunks.block_edit_and_interact_mode": "Π Π΅ΠΆΠΈΠΌ рСдагування/Π²Π·Π°Ρ”ΠΌΠΎΠ΄Ρ–Ρ— Π· Π±Π»ΠΎΠΊΠ°ΠΌΠΈ", + "ftbteamsconfig.ftbchunks.block_edit_and_interact_mode.tooltip": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ, ΠΊΠΎΠ»ΠΈ Π±Π»ΠΎΠΊΠΈ Ρ€ΠΎΠ·ΠΌΡ–Ρ‰ΡŽΡŽΡ‚ΡŒΡΡ, Π»Π°ΠΌΠ°ΡŽΡ‚ΡŒΡΡ Π°Π±ΠΎ Π· Π½ΠΈΠΌΠΈ Π²Π·Π°Ρ”ΠΌΠΎΠ΄Ρ–ΡŽΡ‚ΡŒ", + "ftbteamsconfig.ftbchunks.block_edit_mode": "Π Π΅ΠΆΠΈΠΌ рСдагування Π±Π»ΠΎΠΊΡ–Π²", + "ftbteamsconfig.ftbchunks.block_edit_mode.tooltip": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ, ΠΊΠΎΠ»ΠΈ Π±Π»ΠΎΠΊΠΈ Ρ€ΠΎΠ·ΠΌΡ–Ρ‰ΡƒΡŽΡ‚ΡŒΡΡ Π°Π±ΠΎ Π»Π°ΠΌΠ°ΡŽΡ‚ΡŒΡΡ", + "ftbteamsconfig.ftbchunks.block_interact_mode": "Π Π΅ΠΆΠΈΠΌ Π²Π·Π°Ρ”ΠΌΠΎΠ΄Ρ–Ρ— Π· Π±Π»ΠΎΠΊΠ°ΠΌΠΈ", + "ftbteamsconfig.ftbchunks.block_interact_mode.tooltip": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ, ΠΊΠΎΠ»ΠΈ ΠΏΠΎ Π±Π»ΠΎΠΊΠ°Ρ… ΠΊΠ»Π°Ρ†Π°ΡŽΡ‚ΡŒ ПКМ, Π½Π°ΠΏΡ€., відкривання скрині Ρ‡ΠΈ пСрСмикання ваТСля", + "ftbteamsconfig.ftbchunks.entity_interact_mode": "Π Π΅ΠΆΠΈΠΌ Π²Π·Π°Ρ”ΠΌΠΎΠ΄Ρ–Ρ— Π· сутностями", + "ftbteamsconfig.ftbchunks.entity_interact_mode.tooltip": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ, ΠΊΠΎΠ»ΠΈ ΠΏΠΎ сутностях ПКМ", + "ftbteamsconfig.ftbchunks.nonliving_entity_attack_mode": "Π Π΅ΠΆΠΈΠΌ Π°Ρ‚Π°ΠΊΠΈ Π½Π΅ΠΆΠΈΠ²ΠΈΡ… сутностСй", + "ftbteamsconfig.ftbchunks.nonliving_entity_attack_mode.tooltip": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ, ΠΊΠΎΠ»ΠΈ ΠΏΠΎ Π½Π΅ΠΆΠΈΠ²ΠΈΡ… сутностях (ΠΊΠ°Ρ€Ρ‚ΠΈΠ½ΠΈ, Ρ€Π°ΠΌΠΊΠΈ для ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Ρ‚ΠΎΡ‰ΠΎ) ΠΊΠ»Π°Ρ†Π°ΡŽΡ‚ΡŒ Π»Ρ–Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ–", + "ftbteamsconfig.ftbchunks.minimap_mode": "Π Π΅ΠΆΠΈΠΌ ΠΌΡ–Π½Ρ– ΠΊΠ°Ρ€Ρ‚ΠΈ", + "ftbteamsconfig.ftbchunks.location_mode": "Π’ΠΈΠ΄ΠΈΠΌΡ–ΡΡ‚ΡŒ місцСпСрСбування", + "ftbteamsconfig.ftbchunks.location_mode.tooltip": "Π’ΠΈΠ·Π½Π°Ρ‡Π°Ρ”, Ρ…Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅ Π±Π°Ρ‡ΠΈΡ‚ΠΈ вас Π½Π° ΠΊΠ°Ρ€Ρ‚Ρ– Ρ‡ΠΈ ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚Ρ– (ΠΏΠΎΠ·Π° ΠΌΠ΅ΠΆΠ°ΠΌΠΈ стандартного Π΄Ρ–Π°ΠΏΠ°Π·ΠΎΠ½Ρƒ відстСТСння Ρƒ Π²Π°Π½Ρ–Π»Ρ–)", + "ftbteamsconfig.ftbchunks.claim_visibility": "Π’ΠΈΠ΄ΠΈΠΌΡ–ΡΡ‚ΡŒ ΠΏΡ€ΠΈΠ²Π»Π°ΡΠ½Π΅Π½ΡŒ", + "ftbteamsconfig.ftbchunks.claim_visibility.tooltip": "Π’ΠΈΠ·Π½Π°Ρ‡Π°Ρ”, Ρ…Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅ Π±Π°Ρ‡ΠΈΡ‚ΠΈ Π²Π°ΡˆΡ– привласнСння Π½Π° ΠΊΠ°Ρ€Ρ‚Ρ– Ρ‡ΠΈ ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚Ρ–", + "ftbchunks.fake_players": "Π€Π°Π»ΡŒΡˆΠΈΠ²Ρ– Π³Ρ€Π°Π²Ρ†Ρ–", + "ftbchunks.claiming": "ΠŸΡ€ΠΈΠ²Π»Π°ΡΠ½Π΅Π½Π½Ρ Ρ‡Π°Π½ΠΊΡ–Π²", + "ftbchunks.force_loading": "ΠŸΡ€ΠΈΠΌΡƒΡΠΎΠ²Π΅ завантаТСння", + "ftbchunks.fake_players.fake_players": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbchunks.fake_players.fake_players.tooltip": "CHECK: пСрСвіряти доступ Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π² Ρ‚Π°ΠΊ само, як Ρ– справТніх \nDENY: Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ дозволяти Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΠΌ гравцям \nALLOW: Π·Π°Π²ΠΆΠ΄ΠΈ дозволяти Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbchunks.claiming.max_claimed_chunks": "Максимальна ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ привласнСних Ρ‡Π°Π½ΠΊΡ–Π² Π½Π° гравця", + "ftbchunks.claiming.max_claimed_chunks.tooltip": "Π¦Π΅ значСння Π·Π° замовчуванням ΠΌΠΎΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅Π²ΠΈΠ·Π½Π°Ρ‡ΠΈΡ‚ΠΈ Π·Π° допомогою Π²ΡƒΠ·Π»Π° Π΄ΠΎΠ·Π²ΠΎΠ»Ρƒ FTB Ranks `ftbchunks.max_claimed`.", + "ftbchunks.force_loading.max_force_loaded_chunks": "Максимальна ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ примусово Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΈΡ… Ρ‡Π°Π½ΠΊΡ–Π² Π½Π° гравця", + "ftbchunks.force_loading.max_force_loaded_chunks.tooltip": "Π¦Π΅ значСння Π·Π° замовчуванням ΠΌΠΎΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅Π²ΠΈΠ·Π½Π°Ρ‡ΠΈΡ‚ΠΈ Π·Π° допомогою Π²ΡƒΠ·Π»Π° Π΄ΠΎΠ·Π²ΠΎΠ»Ρƒ FTB Ranks `ftbchunks.max_force_loaded`.", + "ftbchunks.force_loading.force_load_mode": "Π Π΅ΠΆΠΈΠΌ ΠΎΡ„Π»Π°ΠΉΠ½ примусового завантаТСння", + "ftbchunks.force_loading.force_load_mode.tooltip": "NEVER: дозволяти примусовС завантаТСння Ρ‡Π°Π½ΠΊΡ–Π² лишС якщо Π² ΠΊΠΎΠΌΠ°Π½Π΄Ρ– власника Ρ” Ρ…ΠΎΡ‡Π° Π± ΠΎΠ΄ΠΈΠ½ Π³Ρ€Π°Π²Π΅Ρ†ΡŒ ΠΎΠ½Π»Π°ΠΉΠ½ \nALWAYS: Π·Π°Π²ΠΆΠ΄ΠΈ дозволяти примусовС завантаТСння, Π½Π°Π²Ρ–Ρ‚ΡŒ якщо ΠΆΠΎΠ΄Π΅Π½ Π³Ρ€Π°Π²Π΅Ρ†ΡŒ Π½Π΅ ΠΎΠ½Π»Π°ΠΉΠ½ \nDEFAULT: дозволяти примусовС завантаТСння, якщо Π² ΠΊΠΎΠΌΠ°Π½Π΄Ρ– Ρ” Ρ…ΠΎΡ‡Π° Π± ΠΎΠ΄ΠΈΠ½ Π³Ρ€Π°Π²Π΅Ρ†ΡŒ Π· Π΄ΠΎΠ·Π²ΠΎΠ»ΠΎΠΌ FTB Ranks `ftbchunks.chunk_load_offline`", + "ftbchunks.disable_protection": "Π’ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ захист привласнСння", + "ftbchunks.disable_protection.tooltip": "ΠšΠΎΡ€ΠΈΡΠ½ΠΎ для ΠΏΡ€ΠΈΠ²Π°Ρ‚Π½ΠΈΡ… сСрвСрів, Π΄Π΅ всі Π³Ρ€Π°Π²Ρ†Ρ– Π΄ΠΎΠ²Ρ–Ρ€Π΅Π½Ρ–, Π° привласнСння Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ лишС для примусового завантаТСння Ρ‡Π°Π½ΠΊΡ–Π²", + "ftbchunks.pvp_mode": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ PvP Ρƒ привласнСних Ρ‡Π°Π½ΠΊΠ°Ρ…", + "ftbchunks.pvp_mode.tooltip": "ALWAYS: Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ PvP Ρƒ всіх привласнСних Ρ‡Π°Π½ΠΊΠ°Ρ… \nNEVER: Π·Π°Π±ΠΎΡ€ΠΎΠ½ΠΈΡ‚ΠΈ PvP Ρƒ всіх привласнСних Ρ‡Π°Π½ΠΊΠ°Ρ… \nPER_TEAM: ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ самостійно Π²ΠΈΡ€Ρ–ΡˆΡƒΠ²Π°Ρ‚ΠΈ, Ρ‡ΠΈ Π΄ΠΎΠ·Π²ΠΎΠ»Π΅Π½ΠΎ PvP Ρƒ Ρ—Ρ…Π½Ρ–Ρ… привласнСних Ρ‡Π°Π½ΠΊΠ°Ρ… Ρ‡Π΅Ρ€Π΅Π· Π²Π»Π°ΡΡ‚ΠΈΠ²Ρ–ΡΡ‚ΡŒ ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ", + "ftbchunks.ally_mode": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ Π³Ρ€Π°Π²Ρ†ΡŽ Π·ΠΌΡ–Π½ΡŽΠ²Π°Ρ‚ΠΈ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ ΡΠΎΡŽΠ·Π½ΠΈΠΊΡ–Π²", + "ftbchunks.ally_mode.tooltip": "DEFAULT: статус союзника Π² FTB Teams Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для визначСння, Ρ‡ΠΈ Ρ” Π³Ρ€Π°Π²Ρ†Ρ– союзниками \nFORCED_ALL: усі Π³Ρ€Π°Π²Ρ†Ρ– Π·Π°Π²ΠΆΠ΄ΠΈ Π²Π²Π°ΠΆΠ°ΡŽΡ‚ΡŒΡΡ союзниками \nFORCED_NONE: ΠΆΠΎΠ΄Π΅Π½ Π³Ρ€Π°Π²Π΅Ρ†ΡŒ Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ Π²Π²Π°ΠΆΠ°Ρ”Ρ‚ΡŒΡΡ союзником", + "ftbchunks.claiming.claim_dimension_blacklist": "Π§ΠΎΡ€Π½ΠΈΠΉ список Π²ΠΈΠΌΡ–Ρ€Ρ–Π²", + "ftbchunks.claiming.claim_dimension_blacklist.tooltip": "Π§ΠΎΡ€Π½ΠΈΠΉ список Ρ–Π΄Π΅Π½Ρ‚ΠΈΡ„Ρ–ΠΊΠ°Ρ‚ΠΎΡ€Ρ–Π² Π²ΠΈΠΌΡ–Ρ€Ρ–Π², Ρƒ яких Π·Π°Π±ΠΎΡ€ΠΎΠ½Π΅Π½ΠΎ привласнСння Ρ‡Π°Π½ΠΊΡ–Π².\nНапр., Π΄ΠΎΠ΄Π°ΠΉΡ‚Π΅ \"minecraft:the_end\" Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ списку, якщо Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π²ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ привласнСння Ρ‡Π°Π½ΠΊΡ–Π² Ρƒ ΠšΡ€Π°ΡŽ.\nΠ”ΠΎΠ·Π²ΠΎΠ»Π΅Π½Ρ– шаблони Β«wildcardsΒ», Π½Π°ΠΏΡ€., \"othermod:*\" Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” всім Π²ΠΈΠΌΡ–Ρ€Π°ΠΌ, Π΄ΠΎΠ΄Π°Π½ΠΈΠΌ \"othermod\"", + "ftbchunks.claiming.claim_dimension_whitelist": "Π‘Ρ–Π»ΠΈΠΉ список Π²ΠΈΠΌΡ–Ρ€Ρ–Π²", + "ftbchunks.claiming.claim_dimension_whitelist.tooltip": "Π‘Ρ–Π»ΠΈΠΉ список Ρ–Π΄Π΅Π½Ρ‚ΠΈΡ„Ρ–ΠΊΠ°Ρ‚ΠΎΡ€Ρ–Π² Π²ΠΈΠΌΡ–Ρ€Ρ–Π², Ρƒ яких Π΄ΠΎΠ·Π²ΠΎΠ»Π΅Π½ΠΎ привласнСння Ρ‡Π°Π½ΠΊΡ–Π². \nΠ―ΠΊΡ‰ΠΎ список Π½Π΅ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ–ΠΉ, Π²ΠΈΠΌΡ–Ρ€ *обов’язково* ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ Π² Π½ΡŒΠΎΠΌΡƒ (Ρ– водночас Π½Π΅ Π²Ρ…ΠΎΠ΄ΠΈΡ‚ΠΈ Π΄ΠΎ Β«Π§ΠΎΡ€Π½ΠΎΠ³ΠΎ списку Π²ΠΈΠΌΡ–Ρ€Ρ–Π²Β»). \nБинтаксис Ρ‚Π°ΠΊΠΈΠΉ самий, як Ρ– для Β«Π§ΠΎΡ€Π½ΠΎΠ³ΠΎ списку Π²ΠΈΠΌΡ–Ρ€Ρ–Π²Β»", + "ftbchunks.no_wilderness": "Захист нСпривайнятих Ρ€Π΅Π³Ρ–ΠΎΠ½Ρ–Π²", + "ftbchunks.no_wilderness.tooltip": "Π―ΠΊΡ‰ΠΎ ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Ρ‡Π°Π½ΠΊΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ привласнСні, ΠΏΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ Π½Π° Π½ΠΈΡ… ΠΌΠΎΠΆΠ½Π° Π±ΡƒΠ΄Π΅ Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ", + "ftbchunks.no_wilderness_dimensions": "Захист нСпривайнятих Ρ€Π΅Π³Ρ–ΠΎΠ½Ρ–Π² для ΠΊΠΎΠΆΠ½ΠΎΠ³ΠΎ Π²ΠΈΠΌΡ–Ρ€Ρƒ", + "ftbchunks.no_wilderness_dimensions.tooltip": "Бписок Ρ–Π΄Π΅Π½Ρ‚ΠΈΡ„Ρ–ΠΊΠ°Ρ‚ΠΎΡ€Ρ–Π² Π²ΠΈΠΌΡ–Ρ€Ρ–Π², Ρƒ яких Ρ‡Π°Π½ΠΊΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ привласнСні ΠΏΠ΅Ρ€Π΅Π΄ внСсСнням Π·ΠΌΡ–Π½. \nНапр., Π΄ΠΎΠ΄Π°ΠΉΡ‚Π΅ \"minecraft:the_nether\", Ρ‰ΠΎΠ± Π²ΠΈΠΌΠ°Π³Π°Ρ‚ΠΈ привласнСння Ρ‡Π°Π½ΠΊΡ–Π² Ρƒ НСзСрі. \nΠ”ΠΎΠ·Π²ΠΎΠ»Π΅Π½Ρ– шаблони Β«wildcardsΒ», Π½Π°ΠΏΡ€., \"othermod:*\" Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” всім Π²ΠΈΠΌΡ–Ρ€Π°ΠΌ, Π΄ΠΎΠ΄Π°Π½ΠΈΠΌ \"othermod\"", + "ftbchunks.force_disable_minimap": "Π’ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚Ρƒ для ΠΊΠ»Ρ–Ρ”Π½Ρ‚Ρ–Π²", + "ftbchunks.claiming.max_idle_days_before_unclaim": "Макс ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π΄Π½Ρ–Π² ΠΏΠ΅Ρ€Π΅Π΄ скасуванням привласнСння", + "ftbchunks.claiming.max_idle_days_before_unclaim.tooltip": "Π―ΠΊΡ‰ΠΎ ΠΆΠΎΠ΄Π΅Π½ учасник ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ Π½Π΅ Π·Π°ΠΉΠ΄Π΅ Π² Π³Ρ€Ρƒ протягом Π·Π°Π·Π½Π°Ρ‡Π΅Π½ΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π΄Π½Ρ–Π², привласнСні командою Ρ‡Π°Π½ΠΊΠΈ Π±ΡƒΠ΄Π΅ Π·Π²Ρ–Π»ΡŒΠ½Π΅Π½ΠΎ. \nЗначСння 0 Π²ΠΈΠΌΠΈΠΊΠ°Ρ” Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½Π΅ скасування привласнСння.", + "ftbchunks.force_loading.max_idle_days_before_unforce": "Макс ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π΄Π½Ρ–Π² ΠΏΠ΅Ρ€Π΅Π΄ скасуванням примусового завантаТСння", + "ftbchunks.force_loading.max_idle_days_before_unforce.tooltip": "Π―ΠΊΡ‰ΠΎ ΠΆΠΎΠ΄Π΅Π½ учасник ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ Π½Π΅ Π·Π°ΠΉΠ΄Π΅ Π² Π³Ρ€Ρƒ протягом Π·Π°Π·Π½Π°Ρ‡Π΅Π½ΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π΄Π½Ρ–Π², усі примусово Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½Ρ– Ρ‡Π°Π½ΠΊΠΈ ΠΏΠ΅Ρ€Π΅ΡΡ‚Π°Π½ΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ примусово Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΈΠΌΠΈ. \nЗначСння 0 Π²ΠΈΠΌΠΈΠΊΠ°Ρ” Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½Π΅ скасування примусового завантаТСння.", + "ftbchunks.long_range_tracker_interval": "Π†Π½Ρ‚Π΅Ρ€Π²Π°Π» Π΄Π°Π»Π΅ΠΊΠΎΠ΄Ρ–ΡŽΡ‡ΠΎΠ³ΠΎ відстСТувача Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbchunks.long_range_tracker_interval.tooltip": "Π†Π½Ρ‚Π΅Ρ€Π²Π°Π» Ρƒ Ρ‚Π°ΠΊΡ‚Π°Ρ… для надсилання оновлСнь ΠΊΠ»Ρ–Ρ”Π½Ρ‚Π°ΠΌ Ρ–Π· Π΄Π°Π½ΠΈΠΌΠΈ Π΄Π°Π»Π΅ΠΊΠΎΠ΄Ρ–ΡŽΡ‡ΠΎΠ³ΠΎ відстСТСння Π³Ρ€Π°Π²Ρ†Ρ–Π². \nΠœΠ΅Π½ΡˆΡ– значСння ΠΎΠ·Π½Π°Ρ‡Π°ΡŽΡ‚ΡŒ Ρ‡Π°ΡΡ‚Ρ–ΡˆΡ– оновлСння, Π°Π»Π΅ Π±Ρ–Π»ΡŒΡˆΡ– навантаТСння Π½Π° сСрвСр Ρ– ΠΌΠ΅Ρ€Π΅ΠΆΠ΅Π²ΠΈΠΉ Ρ‚Ρ€Π°Ρ„Ρ–ΠΊ; Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½Ρ– Π· Ρ†ΠΈΠΌ, особливо Π½Π° Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΈΡ… сСрвСрах. \nЗначСння 0 Π²ΠΈΠΌΠΈΠΊΠ°Ρ” Π΄Π°Π»Π΅ΠΊΠΎΠ΄Ρ–ΡŽΡ‡Π΅ відстСТСння.", + "ftbchunks.protect_unknown_explosions": "Π—Π°ΠΏΠΎΠ±Ρ–Π³Π°Ρ‚ΠΈ Π²ΠΈΠ±ΡƒΡ…Π°ΠΌ Ρ–Π· Π½Π΅Π²Ρ–Π΄ΠΎΠΌΠΈΡ… Π΄ΠΆΠ΅Ρ€Π΅Π»", + "ftbchunks.protect_unknown_explosions.tooltip": "ДСякі Π΄ΠΆΠ΅Ρ€Π΅Π»Π° Π²ΠΈΠ±ΡƒΡ…Ρ–Π² (Π½Π°ΠΏΡ€ΠΈΠΊΠ»Π°Π΄, Π°ΡΡ‚ΠΈ) Π½Π΅ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ Π²ΠΈΠ·Π½Π°Ρ‡ΠΈΡ‚ΠΈ Π² ΠΊΠΎΠ΄Ρ–. \nΠ―ΠΊΡ‰ΠΎ Ρ†Π΅ΠΉ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, шкода Π²Ρ–Π΄ Ρ‚Π°ΠΊΠΈΡ… Π²ΠΈΠ±ΡƒΡ…Ρ–Π² Π·Π°ΠΏΠΎΠ±Ρ–Π³Π°Ρ”Ρ‚ΡŒΡΡ Ρƒ Π·Π°Ρ…ΠΈΡ‰Π΅Π½ΠΈΡ… Ρ‡Π°Π½ΠΊΠ°Ρ….", + "ftbchunks.claiming.hard_team_claim_limit": "Жорсткий макс Π»Ρ–ΠΌΡ–Ρ‚ привласнСння для ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ", + "ftbchunks.claiming.hard_team_claim_limit.tooltip": "Жорсткий Π»Ρ–ΠΌΡ–Ρ‚ привласнСння для ΠΊΠΎΠΌΠ°Π½Π΄, Π½Π΅Π·Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– учасників Ρ‡ΠΈ Ρ€Π΅ΠΆΠΈΠΌΡƒ обчислСння Π»Ρ–ΠΌΡ–Ρ‚Ρƒ. \nЗначСння Π·Π° замовчуванням 0 ΠΎΠ·Π½Π°Ρ‡Π°Ρ” Π²Ρ–Π΄ΡΡƒΡ‚Π½Ρ–ΡΡ‚ΡŒ Торсткого Π»Ρ–ΠΌΡ–Ρ‚Ρƒ.", + "ftbchunks.force_loading.hard_team_force_limit": "Жорсткий максимальний Π»Ρ–ΠΌΡ–Ρ‚ примусового завантаТСння для ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ", + "ftbchunks.force_loading.hard_team_force_limit.tooltip": "Жорсткий Π»Ρ–ΠΌΡ–Ρ‚ примусового завантаТСння для ΠΊΠΎΠΌΠ°Π½Π΄, Π½Π΅Π·Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– учасників Ρ‡ΠΈ Ρ€Π΅ΠΆΠΈΠΌΡƒ обчислСння Π»Ρ–ΠΌΡ–Ρ‚Ρƒ. \nЗначСння Π·Π° замовчуванням 0 ΠΎΠ·Π½Π°Ρ‡Π°Ρ” Π²Ρ–Π΄ΡΡƒΡ‚Π½Ρ–ΡΡ‚ΡŒ Торсткого Π»Ρ–ΠΌΡ–Ρ‚Ρƒ.", + "ftbchunks.claiming.party_limit_mode": "Π Π΅ΠΆΠΈΠΌ обчислСння Π»Ρ–ΠΌΡ–Ρ‚Ρƒ для ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ", + "ftbchunks.claiming.party_limit_mode.tooltip": "ΠœΠ΅Ρ‚ΠΎΠ΄, Π·Π° яким ΠΎΠ±Ρ‡ΠΈΡΠ»ΡŽΡŽΡ‚ΡŒΡΡ Π»Ρ–ΠΌΡ–Ρ‚ΠΈ привласнСння Ρ‚Π° примусового завантаТСння для ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ. \nLARGEST: використовувати Π»Ρ–ΠΌΡ–Ρ‚ΠΈ учасника Π· Π½Π°ΠΉΠ±Ρ–Π»ΡŒΡˆΠΈΠΌΠΈ значСннями \nSUM: підсумовувати Π»Ρ–ΠΌΡ–Ρ‚ΠΈ всіх учасників \nOWNER: використовувати лишС Π»Ρ–ΠΌΡ–Ρ‚ΠΈ власника ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ \nAVERAGE: використовувати сСрСднє значСння Π»Ρ–ΠΌΡ–Ρ‚Ρ–Π² усіх учасників.", + "ftbchunks.require_game_stage": "Π’ΠΈΠΌΠ°Π³Π°Ρ‚ΠΈ Ρ–Π³Ρ€ΠΎΠ²Ρƒ ΡΡ‚Π°Π΄Ρ–ΡŽ для ΠΊΠ°Ρ€Ρ‚ΠΈ", + "ftbchunks.require_game_stage.tooltip": "Π―ΠΊΡ‰ΠΎ ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Π³Ρ€Π°Π²Ρ†Ρ– ΠΏΠΎΠ²ΠΈΠ½Π½Ρ– ΠΌΠ°Ρ‚ΠΈ Ρ–Π³Ρ€ΠΎΠ²Ρƒ ΡΡ‚Π°Π΄Ρ–ΡŽ 'ftbchunks_mapping' (ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– KubeJS Ρ‚Π°/Π°Π±ΠΎ GameStages), Ρ‰ΠΎΠ± ΠΌΠ°Ρ‚ΠΈ Π·ΠΌΠΎΠ³Ρƒ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ ΠΊΠ°Ρ€Ρ‚Ρƒ Π°Π±ΠΎ Π±Π°Ρ‡ΠΈΡ‚ΠΈ ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚Ρƒ", + "ftbchunks.location_mode_override": "ΠŸΠ΅Ρ€Π΅Π²ΠΈΠ·Π½Π°Ρ‡ΠΈΡ‚ΠΈ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ \"Π’ΠΈΠ΄ΠΈΠΌΡ–ΡΡ‚ΡŒ Ρ€ΠΎΠ·Ρ‚Π°ΡˆΡƒΠ²Π°Π½Π½Ρ\"", + "ftbchunks.location_mode_override.tooltip": "Π―ΠΊΡ‰ΠΎ ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΈ ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ \"Π’ΠΈΠ΄ΠΈΠΌΡ–ΡΡ‚ΡŒ Ρ€ΠΎΠ·Ρ‚Π°ΡˆΡƒΠ²Π°Π½Π½Ρ\" Ρ–Π³Π½ΠΎΡ€ΡƒΡŽΡ‚ΡŒΡΡ, Ρ– всі Π³Ρ€Π°Π²Ρ†Ρ– ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±Π°Ρ‡ΠΈΡ‚ΠΈ ΠΎΠ΄Π½Π΅ ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π±ΡƒΠ΄ΡŒ-Π΄Π΅ Π½Π° ΠΊΠ°Ρ€Ρ‚Ρ–", + "ftbchunks.piston_protection": "Захист Π²Ρ–Π΄ ΠΏΠΎΡ€ΡˆΠ½Ρ–Π²", + "ftbchunks.piston_protection.tooltip": "Π―ΠΊΡ‰ΠΎ ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, ΠΏΠΎΡ€ΡˆΠ½Ρ– Π½Π΅ ΠΌΠΎΠΆΡƒΡ‚ΡŒ ΡˆΡ‚ΠΎΠ²Ρ…Π°Ρ‚ΠΈ/тягнути Π±Π»ΠΎΠΊΠΈ Ρ‡Π΅Ρ€Π΅Π· привласнСні Ρ‚Π΅Ρ€ΠΈΡ‚ΠΎΡ€Ρ–Ρ—, Ρ‰ΠΎ Π½Π°Π»Π΅ΠΆΠ°Ρ‚ΡŒ Ρ€Ρ–Π·Π½ΠΈΠΌ ΠΊΠΎΠΌΠ°Π½Π΄Π°ΠΌ (якщо Ρ‚Ρ–Π»ΡŒΠΊΠΈ Π±Π»ΠΎΠΊ Π½Π΅ Π²Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ/Π½Π΅ Π²ΠΈΡ…ΠΎΠ΄ΠΈΡ‚ΡŒ Ρ–Π· привласнСної Ρ‚Π΅Ρ€ΠΈΡ‚ΠΎΡ€Ρ–Ρ— Π· Ρ€Π΅ΠΆΠΈΠΌΠΎΠΌ рСдагування Π±Π»ΠΎΠΊΡ–Π², встановлСним Π½Π° \"ΠŸΡƒΠ±Π»Ρ–Ρ‡Π½ΠΈΠΉ\"). \nΠ―ΠΊΡ‰ΠΎ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ 'disable_protection' ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Ρ†Π΅ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Ρ–Π³Π½ΠΎΡ€ΡƒΡ”Ρ‚ΡŒΡΡ.", + "ftbchunks.fake_players.max_prevented_log_age": "Π’Ρ–ΠΊ ΠΆΡƒΡ€Π½Π°Π»Ρƒ блокування доступу Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbchunks.fake_players.max_prevented_log_age.tooltip": "Π’Ρ–ΠΊ Ρƒ днях для збСрСТСння ΠΆΡƒΡ€Π½Π°Π»Ρ–Π² Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ доступу Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π² \nΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°: функція Ρ‰Π΅ Π½Π΅ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Ρ€Π΅Π°Π»Ρ–Π·ΠΎΠ²Π°Π½Π°; Ρƒ ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½ΡŒΠΎΠΌΡƒ Π±ΡƒΠ΄Π΅ використана для зобраТСння Ρ‚Π° ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŽ доступу Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π² Π΄ΠΎ Π²Π°ΡˆΠΈΡ… привласнСних Ρ‚Π΅Ρ€ΠΈΡ‚ΠΎΡ€Ρ–ΠΉ", + "ftbchunks.claim_result": "Π—ΠΌΡ–Π½Π΅Π½ΠΎ Ρ‡Π°Π½ΠΊΡ–Π²: %d / %d", + "ftbchunks.claim_result.other": "НСвідомі ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠΈ", + "ftbchunks.claim_result.not_owner": "НС Ρ” власником Ρ‡Π°Π½ΠΊΠ°", + "ftbchunks.claim_result.not_enough_power": "Досягнуто Π»Ρ–ΠΌΡ–Ρ‚Ρƒ Ρ‡Π°Π½ΠΊΡ–Π²", + "ftbchunks.claim_result.already_claimed": "Π§Π°Π½ΠΊ ΡƒΠΆΠ΅ привласнСно", + "ftbchunks.claim_result.dimension_forbidden": "ΠŸΡ€ΠΈΠ²Π»Π°ΡΠ½Π΅Π½Π½Ρ Ρƒ Ρ†ΡŒΠΎΠΌΡƒ Π²ΠΈΠΌΡ–Ρ€Ρ– Π·Π°Π±ΠΎΡ€ΠΎΠ½Π΅Π½ΠΎ", + "ftbchunks.claim_result.not_claimed": "Π§Π°Π½ΠΊ Π½Π΅ привласнСно", + "ftbchunks.claim_result.already_loaded": "Π§Π°Π½ΠΊ ΡƒΠΆΠ΅ Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΎ", + "ftbchunks.claim_result.not_loaded": "Π§Π°Π½ΠΊ Π½Π΅ Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΎ", + "ftbchunks.need_to_claim_chunk": "Π’Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ привласнити Ρ†Π΅ΠΉ Ρ‡Π°Π½ΠΊ, Ρ‰ΠΎΠ± взаємодіяти Π· Π±Π»ΠΎΠΊΠ°ΠΌΠΈ Ρ‚ΡƒΡ‚!", + "ftbchunks.action_prevented": "Π’Π·Π°Ρ”ΠΌΠΎΠ΄Ρ–ΡŽ Ρ‚ΡƒΡ‚ Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΎ захистом привласнСння!", + "ftbchunks.label.show": "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΠΈ", + "ftbchunks.label.hide": "Π‘Ρ…ΠΎΠ²Π°Ρ‚ΠΈ", + "ftbchunks.message.no_pvp": "Π‘Ρ–ΠΉ PvP Ρ‚ΡƒΡ‚ Π²ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbchunks.game_time": "Час Π³Ρ€ΠΈ: %s", + "ftbchunks.real_time": "РСальний Час: %s", + "ftbchunks.fps": "FPS: %d", + "ftbchunks.minimap.show_game_time": "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΠΈ Ρ–Π³Ρ€ΠΎΠ²ΠΈΠΉ час", + "ftbchunks.minimap.show_fps": "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΠΈ FPS", + "ftbchunks.minimap.show_real_time": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ Ρ€Π΅Π°Π»ΡŒΠ½ΠΈΠΉ час", + "ftbchunks.minimap.entity_icon": "Π’ΠΈΠ΄ΠΈΠΌΡ–ΡΡ‚ΡŒ Ρ–ΠΊΠΎΠ½ΠΎΠΊ сутностСй", + "ftbchunks.waypoint.shared": "ΠŸΠΎΠ΄Ρ–Π»ΠΈΠ²ΡΡ Π· Π²Π°ΠΌΠΈ ΠΌΡ–Ρ‚ΠΊΠΎΡŽ '%s'! ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± Π΄ΠΎΠ΄Π°Ρ‚ΠΈ", + "ftbchunks.waypoint.shared_by_you": "Π’ΠΈ поділилися ΠΌΡ–Ρ‚ΠΊΠΎΡŽ '%s'!", + "ftbchunks.waypoint.share": "ΠŸΠΎΠ΄Ρ–Π»ΠΈΡ‚ΠΈΡΡŒ", + "ftbchunks.waypoint.share.server": "Π‘Π΅Ρ€Π²Π΅Ρ€", + "ftbchunks.waypoint.share.party": "Π“Ρ€ΡƒΠΏΠ°", + "ftbchunks.waypoint.share.player": "Π“Ρ€Π°Π²Π΅Ρ†ΡŒ", + "ftbchunks.waypoint_sharing": "ΠŸΠΎΠ΄Ρ–Π»ΠΈΡ‚ΠΈΡΡ ΠΌΡ–Ρ‚ΠΊΠΎΡŽ", + "ftbchunks.waypoint_sharing.waypoint_sharing_party": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ ΡΠΏΡ–Π»ΡŒΠ½ΠΈΠΉ доступ Π΄ΠΎ ΠΌΡ–Ρ‚ΠΎΠΊ для Π³Ρ€ΡƒΠΏΠΈ", + "ftbchunks.waypoint_sharing.waypoint_sharing_server": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ ΡΠΏΡ–Π»ΡŒΠ½ΠΈΠΉ доступ Π΄ΠΎ ΠΌΡ–Ρ‚ΠΎΠΊ для сСрвСра", + "ftbchunks.waypoint_sharing.waypoint_sharing_players": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ ΡΠΏΡ–Π»ΡŒΠ½ΠΈΠΉ доступ Π΄ΠΎ ΠΌΡ–Ρ‚ΠΎΠΊ для Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbchunks.team_prop_defaults": "Π’ΠΈΠΏΠΎΠ²Ρ– властивості ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ", + "ftbchunks.team_prop_defaults.def_fake_players": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ всіх Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbchunks.team_prop_defaults.def_fake_player_ids": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ Ρ„Π°Π»ΡŒΡˆΠΈΠ²ΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π² Π·Π° ID", + "ftbchunks.team_prop_defaults.def_named_fake_players": "Π†ΠΌΠ΅Π½ΠΎΠ²Π°Π½Ρ– Ρ„Π°Π»ΡŒΡˆΠΈΠ²Ρ– Π³Ρ€Π°Π²Ρ†Ρ–", + "ftbchunks.team_prop_defaults.def_allow_explosions": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ ΡˆΠΊΠΎΠ΄Ρƒ Π²Ρ–Π΄ Π²ΠΈΠ±ΡƒΡ…Ρ–Π²", + "ftbchunks.team_prop_defaults.def_pvp": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ PvP", + "ftbchunks.team_prop_defaults.def_mob_griefing": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ Π΄Ρ–Ρ— грифСрства ΠΌΠΎΠ±Ρ–Π²", + "ftbchunks.team_prop_defaults.def_block_edit_interact": "Π Π΅ΠΆΠΈΠΌ рСдагування/Π²Π·Π°Ρ”ΠΌΠΎΠ΄Ρ–Ρ— Π· Π±Π»ΠΎΠΊΠ°ΠΌΠΈ", + "ftbchunks.team_prop_defaults.def_block_edit": "Π Π΅ΠΆΠΈΠΌ рСдагування Π±Π»ΠΎΠΊΡ–Π²", + "ftbchunks.team_prop_defaults.def_block_interact": "Π Π΅ΠΆΠΈΠΌ Π²Π·Π°Ρ”ΠΌΠΎΠ΄Ρ–Ρ— Π· Π±Π»ΠΎΠΊΠ°ΠΌΠΈ", + "ftbchunks.team_prop_defaults.def_entity_interact": "Π Π΅ΠΆΠΈΠΌ Π²Π·Π°Ρ”ΠΌΠΎΠ΄Ρ–Ρ— Π· сутностями", + "ftbchunks.team_prop_defaults.def_entity_attack": "Π Π΅ΠΆΠΈΠΌ Π°Ρ‚Π°ΠΊΠΈ Π½Π΅ΠΆΠΈΠ²ΠΈΡ… сутностСй", + "ftbchunks.team_prop_defaults.def_player_visibility": "Π’ΠΈΠ΄ΠΈΠΌΡ–ΡΡ‚ΡŒ місцСзнаходТСння", + "ftbchunks.team_prop_defaults.def_claim_visibility": "Π’ΠΈΠ΄ΠΈΠΌΡ–ΡΡ‚ΡŒ ΠΏΡ€ΠΈΠ²Π»Π°ΡΠ½Π΅Π½ΡŒ", + "ftbchunks.map_mode.none": "НСмає", + "ftbchunks.map_mode.night": "Ніч", + "ftbchunks.map_mode.topography": "Вопографія", + "ftbchunks.map_mode.blocks": "Π‘Π»ΠΎΠΊΠΈ", + "ftbchunks.map_mode.light_sources": "Π”ΠΆΠ΅Ρ€Π΅Π»Π° світла", + "ftbchunks.ally_mode.default": "Π—Π° замовчуванням", + "ftbchunks.ally_mode.forced_all": "ΠŸΡ€ΠΈΠΌΡƒΡΠΎΠ²ΠΎ всі", + "ftbchunks.ally_mode.forced_none": "ΠŸΡ€ΠΈΠΌΡƒΡΠΎΠ²ΠΎ Π½Π΅ΠΌΠ°Ρ”", + "ftbchunks.pvp_mode.always": "Π—Π°Π²ΠΆΠ΄ΠΈ", + "ftbchunks.pvp_mode.never": "Ніколи", + "ftbchunks.pvp_mode.per_team": "Для ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ", + "ftbchunks.party_limit_mode.largest": "ΠΠ°ΠΉΠ±Ρ–Π»ΡŒΡˆΠΈΠΉ", + "ftbchunks.party_limit_mode.owner": "Власник", + "ftbchunks.party_limit_mode.sum": "Π‘ΡƒΠΌΠ°", + "ftbchunks.party_limit_mode.average": "Π‘Π΅Ρ€Π΅Π΄Π½Ρ”", + "ftbchunks.force_load_mode.default": "Π—Π° замовчуванням", + "ftbchunks.force_load_mode.never": "Ніколи", + "ftbchunks.force_load_mode.always": "Π—Π°Π²ΠΆΠ΄ΠΈ", + "ftbchunks.time_mode.twenty_four": "Π”Π²Π°Π΄Ρ†ΡΡ‚ΡŒ Ρ‡ΠΎΡ‚ΠΈΡ€ΠΈ", + "ftbchunks.time_mode.twelve": "Π”Π²Π°Π½Π°Π΄Ρ†ΡΡ‚ΡŒ", + "ftbchunks.time_mode.clock": "Π“ΠΎΠ΄ΠΈΠ½Π½ΠΈΠΊ", + "ftbchunks.gui.move_up": "ΠŸΠ΅Ρ€Π΅ΠΌΡ–ΡΡ‚ΠΈΡ‚ΠΈ Π²Π³ΠΎΡ€Ρƒ", + "ftbchunks.gui.move_down": "ΠŸΠ΅Ρ€Π΅ΠΌΡ–ΡΡ‚ΠΈΡ‚ΠΈ Π²Π½ΠΈΠ·", + "minimap.info.ftbchunks.biome.title": "Π‘Ρ–ΠΎΠΌ", + "minimap.info.ftbchunks.biome.description": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ Π±Ρ–ΠΎΠΌ", + "minimap.info.ftbchunks.fps.title": "FPS", + "minimap.info.ftbchunks.fps.description": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ FPS", + "minimap.info.ftbchunks.game_time.title": "Час Π³Ρ€ΠΈ", + "minimap.info.ftbchunks.game_time.description": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ час Π³Ρ€ΠΈ", + "minimap.info.ftbchunks.debug.title": "НалагодТСння", + "minimap.info.ftbchunks.debug.description": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ налагодТування", + "minimap.info.ftbchunks.player_pos.title": "ΠŸΠΎΠ·ΠΈΡ†Ρ–Ρ гравця", + "minimap.info.ftbchunks.player_pos.description": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ ΠΏΠΎΠ·ΠΈΡ†Ρ–ΡŽ гравця", + "minimap.info.ftbchunks.real_time.title": "РСальний час", + "minimap.info.ftbchunks.real_time.description": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ Ρ€Π΅Π°Π»ΡŒΠ½ΠΈΠΉ час", + "minimap.info.ftbchunks.zone.title": "Π—ΠΎΠ½Π°", + "minimap.info.ftbchunks.zone.description": "Π—ΠΎΠ½Π° зобраТСння", + "ftbchunks.gui.toggle_visibility_off": "ΠŸΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°Ρ‡ видимості β€” Π’ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbchunks.gui.toggle_visibility_on": "ΠŸΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°Ρ‡ видимості β€” Π’Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbchunks.gui.sort_minimap_info": "ΠΠ°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚ΠΈ", + "ftbchunks.minimap.info_hidden": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–ΡŽ ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚ΠΈ", + "ftbchunks.minimap.info_order": "ΠŸΠΎΡ€ΡΠ΄ΠΎΠΊ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— ΠΌΡ–Π½Ρ–ΠΊΠ°Ρ€Ρ‚ΠΈ", + "ftbchunks.minimap.info_settings": "ΠΠ°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ—", + "ftbchunks.show_wilderness.show_wilderness": "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΠΈ Π΄ΠΈΠΊΡƒ ΠΌΡ–ΡΡ†Π΅Π²Ρ–ΡΡ‚ΡŒ", + "ftbchunks.show_wilderness.just_claimed": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ лишС зайняті Ρ‡Π°Π½ΠΊΠΈ", + "tag.item.ftbchunks.right_click_blacklist": "ΠŸΡ€Π°Π²ΠΈΠΉ ΠΊΠ»Π°Ρ† ΠΏΠΎ Ρ‡ΠΎΡ€Π½ΠΎΠΌΡƒ списку", + "tag.item.ftbchunks.right_click_whitelist": "ΠŸΡ€Π°Π²ΠΈΠΉ ΠΊΠ»Π°Ρ† ΠΏΠΎ Π±Ρ–Π»ΠΎΠΌΡƒ списку", + "mob_category.monster": "ΠœΠΎΠ½ΡΡ‚Ρ€", + "mob_category.creature": "Бтворіння", + "mob_category.ambient": "Π€ΠΎΠ½ΠΎΠ²ΠΈΠΉ", + "mob_category.axolotls": "Аксолотлі", + "mob_category.underground_water_creature": "ΠŸΡ–Π΄Π·Π΅ΠΌΠ½Π° Π²ΠΎΠ΄Π½Π° істота", + "mob_category.water_creature": "Π’ΠΎΠ΄Π½Π° істота", + "mob_category.water_ambient": "Π€ΠΎΠ½ΠΎΠ²Π° Π²ΠΎΠ΄Π°", + "mob_category.misc": "Π Ρ–Π·Π½Π΅", + "ftbchunks.commands.claimed": "Зайняті Ρ‡Π°Π½ΠΊΠΈ: %d", + "ftbchunks.commands.unclaimed": "НСзайняті Ρ‡Π°Π½ΠΊΠΈ: %d", + "ftbchunks.commands.force_loaded": "ΠŸΡ€ΠΈΠΌΡƒΡΠΎΠ²ΠΎ Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½Ρ– Ρ‡Π°Π½ΠΊΠΈ: %d", + "ftbchunks.commands.unloaded": "НСпримусово Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½Ρ– Ρ‡Π°Π½ΠΊΠΈ: %d (Π· %d Π·Π°Π³Π°Π»ΠΎΠΌ зайнятих)", + "ftbchunks.commands.location": "Π ΠΎΠ·Ρ‚Π°ΡˆΡƒΠ²Π°Π½Π½Ρ: %s", + "ftbchunks.commands.owner": "Власник: ", + "ftbchunks.commands.is_force_loaded": "ΠŸΡ€ΠΈΠΌΡƒΡΠΎΠ²ΠΎ Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΎ: %s", + "ftbchunks.commands.not_claimed": "Π§Π°Π½ΠΊ Π½Π΅ привласнСно", + "ftbchunks.commands.cant_determined": "НС Π²Π΄Π°Ρ”Ρ‚ΡŒΡΡ Π²ΠΈΠ·Π½Π°Ρ‡ΠΈΡ‚ΠΈ стан Ρ‡Π°Π½ΠΊΠ°", + "ftbchunks.commands.no_personal_info": "НС Π²Π΄Π°Ρ”Ρ‚ΡŒΡΡ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ особисті Π΄Π°Π½Ρ– ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ для: %s", + "ftbchunks.command.extra_chunks_claimed": "%s ΠΌΠ°Ρ” %d Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΡ… зайнятих Ρ‡Π°Π½ΠΊΡ–Π²", + "ftbchunks.command.set_extra_chunks_claimed": "Встановити Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Ρ– зайняті Ρ‡Π°Π½ΠΊΠΈ Π½Π° %d для %s", + "ftbchunks.command.extra_forceload_chunks": "%s ΠΌΠ°Ρ” %d Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΡ… примусово Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΈΡ… Ρ‡Π°Π½ΠΊΡ–Π²", + "ftbchunks.command.set_extra_forceload_chunks": "Встановити Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Ρ– примусово Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½Ρ– Ρ‡Π°Π½ΠΊΠΈ Π½Π° %d для %s", + "ftbchunks.command.bypass_protection_enabled": "ΠžΠ±Ρ…Ρ–Π΄ захисту: Π£Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbchunks.command.bypass_protection_disabled": "ΠžΠ±Ρ…Ρ–Π΄ захисту: Π’ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbchunks.command.view_loaded": "Π—Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½Ρ– Ρ‡Π°Π½ΠΊΠΈ: %d. ΠŸΠ΅Ρ€Π΅Π²Ρ–Ρ€Ρ‚Π΅ ΠΊΠ°Ρ€Ρ‚Ρƒ, Ρ‰ΠΎΠ± ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½Ρ– Ρ‡Π°Π½ΠΊΠΈ", + "ftbchunks.command.waypoint_added": "Π”ΠΎΠ΄Π°Π½ΠΎ ΠΌΡ–Ρ‚ΠΊΡƒ '%s'" +} \ No newline at end of file diff --git a/kubejs/assets/ftbessentials/lang/uk_ua.json b/kubejs/assets/ftbessentials/lang/uk_ua.json new file mode 100644 index 000000000..4f2e2f181 --- /dev/null +++ b/kubejs/assets/ftbessentials/lang/uk_ua.json @@ -0,0 +1,97 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "sidebar_button.ftbessentials.trash_can": "Π‘ΠΌΡ–Ρ‚Π½ΠΈΠΊ", + "ftbessentials.chat.status.start_record": "Π·Π°Ρ€Π°Π· Π·Π°ΠΏΠΈΡΡƒΡ”Ρ‚ΡŒΡΡ!", + "ftbessentials.chat.status.stop_record": "Π±Ρ–Π»ΡŒΡˆΠ΅ Π½Π΅ Π·Π°ΠΏΠΈΡΡƒΡ”Ρ‚ΡŒΡΡ!", + "ftbessentials.chat.status.start_stream": "Π·Π°Ρ€Π°Π· Ρ‚Ρ€Π°Π½ΡΠ»ΡŽΡ”Ρ‚ΡŒΡΡ!", + "ftbessentials.chat.status.stop_stream": "Π±Ρ–Π»ΡŒΡˆΠ΅ Π½Π΅ Ρ‚Ρ€Π°Π½ΡΠ»ΡŽΡ”Ρ‚ΡŒΡΡ!", + "ftbessentials.messages.kick_self": "Π’ΠΈ Π²ΠΈΠ³Π½Π°Π»ΠΈ самі сСбС!", + "ftbessentials.feedback.limit_radius": "ОбмСТСння радіуса Π΄ΠΎ %s", + "ftbessentials.near.players_within": "%s Π³Ρ€Π°Π²Π΅Ρ†ΡŒ(Ρ†Ρ–) Ρƒ ΠΌΠ΅ΠΆΠ°Ρ… %sΠΌ", + "ftbessentials.teleport_prevented": "Π’Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚Π°Ρ†Ρ–ΡŽ Π±ΡƒΠ»ΠΎ Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΎ!", + "ftbessentials.tpa.expired": "Π—Π°ΠΏΠΈΡ‚ TPA закінчився!", + "ftbessentials.muted": "Π’ΠΈ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ користуватися Ρ‡Π°Ρ‚ΠΎΠΌ, вас Π±ΡƒΠ»ΠΎ Π·Π°Π³Π»ΡƒΡˆΠ΅Π½ΠΎ адміністратором!", + "ftbessentials.mute_expiry": "ЗакінчСння Π·Π°Π³Π»ΡƒΡˆΠ΅Π½Π½Ρ Ρ‡Π΅Ρ€Π΅Π·: %s", + "ftbessentials.enderchest.unable": "НСмоТливо Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€ СндСрскрині!", + "ftbessentials.flight.disabled": "ΠŸΠΎΠ»Ρ–Ρ‚ Π²ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbessentials.flight.enabled": "ΠŸΠΎΠ»Ρ–Ρ‚ ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbessentials.god_mode.disabled": "Π Π΅ΠΆΠΈΠΌ Π±ΠΎΠ³Π° Π²ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbessentials.god_mode.enabled": "Π Π΅ΠΆΠΈΠΌ Π±ΠΎΠ³Π° ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbessentials.teleport.history_empty": "Історія Ρ‚Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚Π°Ρ†Ρ–ΠΉ пороТня!", + "ftbessentials.teleport.max_less_than_min": "Максимальна Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ Ρ‚Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚Π°Ρ†Ρ–Ρ— Π½Π΅ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ мСншою Π·Π° ΠΌΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Ρƒ!", + "ftbessentials.rtp.not_here": "Π’ΠΈ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використовувати /rtp Ρƒ Ρ†ΡŒΠΎΠΌΡƒ Π²ΠΈΠΌΡ–Ρ€Ρ–!", + "ftbessentials.rtp.looking": "ΠŸΠΎΡˆΡƒΠΊ Π²ΠΈΠΏΠ°Π΄ΠΊΠΎΠ²ΠΎΡ— Π»ΠΎΠΊΠ°Ρ†Ρ–Ρ—...", + "ftbessentials.rtp.found": "Π—Π½Π°ΠΉΠ΄Π΅Π½ΠΎ Π²Π΄Π°Π»Ρƒ Π»ΠΎΠΊΠ°Ρ†Ρ–ΡŽ після %s спроб(ΠΈ) @ %s", + "ftbessentials.rtp.failed": "НС вдалося Π·Π½Π°ΠΉΡ‚ΠΈ дійсну Π»ΠΎΠΊΠ°Ρ†Ρ–ΡŽ для Ρ‚Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚Π°Ρ†Ρ–Ρ—!", + "ftbessentials.jump.failed": "НС ΠΌΠΎΠΆΠ½Π° стрибнути: %s", + "ftbessentials.kit.added_items": "Π”ΠΎΠ΄Π°Π½ΠΎ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚(ΠΈ) Π· Π½Π°Π±ΠΎΡ€Ρƒ '%s' Π΄ΠΎ Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€ΡŽ", + "ftbessentials.kit.no_items": "НСмає ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² для додавання Π΄ΠΎ Π½Π°Π±ΠΎΡ€Ρƒ!", + "ftbessentials.kit.cant_store": "НСмоТливо Π·Π±Π΅Ρ€Π΅Π³Ρ‚ΠΈ Π½Π°Π±Ρ–Ρ€ Π² Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Ρ–: %s", + "ftbessentials.kit.created": "Набір '%s' створСно", + "ftbessentials.kit.deleted": "Набір '%s' Π²ΠΈΠ΄Π°Π»Π΅Π½ΠΎ", + "ftbessentials.kit.autogrant_modified": "Набір '%s' автопризначСння Π·ΠΌΡ–Π½Π΅Π½ΠΎ: %s", + "ftbessentials.kit.cooldown_modified": "Набір '%s' час відновлСння Π·ΠΌΡ–Π½Π΅Π½ΠΎ: %s", + "ftbessentials.kit.gave_to_players": "Набір '%s' Π²ΠΈΠ΄Π°Π½ΠΎ %s Π³Ρ€Π°Π²Ρ†ΡŽ(ям)", + "ftbessentials.kit.no_permission": "НСмає Π΄ΠΎΠ·Π²ΠΎΠ»Ρƒ Π½Π° Π²ΠΈΠ΄Π°Ρ‡Ρƒ Π½Π°Π±ΠΎΡ€Ρƒ '%s'", + "ftbessentials.kit.not_looking_at_block": "НС дивитСся Π½Π° Π±Π»ΠΎΠΊ", + "ftbessentials.kit.not_enough_space": "ΠΠ΅Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ місця Π² Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Ρ– для збСрСТСння Π½Π°Π±ΠΎΡ€Ρƒ", + "ftbessentials.kit_name": "Назва Π½Π°Π±ΠΎΡ€Ρƒ: %s", + "ftbessentials.kit.count": "%s Π½Π°Π±Ρ–Ρ€(ΠΈ)", + "ftbessentials.kit.cooldown": "Час відновлСння: %s", + "ftbessentials.kit.cooldown.none": "Π‘Π΅Π· часу відновлСння", + "ftbessentials.kit.one_time": "ΠžΠ΄Π½ΠΎΡ€Π°Π·ΠΎΠ²Π΅ використання", + "ftbessentials.kit.one_time_only": "Набір \"%s\" Ρ” ΠΎΠ΄Π½ΠΎΡ€Π°Π·ΠΎΠ²ΠΈΠΌ (Π²ΠΆΠ΅ Π²ΠΈΠ΄Π°Π½ΠΈΠΉ \"%s\")", + "ftbessentials.kit.on_cooldown": "Набір \"%s\" Π½Π° Π²Ρ–Π΄Π½ΠΎΠ²Π»Π΅Π½Π½Ρ– β€” залишилось %s", + "ftbessentials.kit.autogranted": "Автоматично Π²ΠΈΠ΄Π°Π½ΠΎ ΠΏΡ–Π΄ час Π²Ρ…ΠΎΠ΄Ρƒ гравця", + "ftbessentials.kit.items": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ:", + "ftbessentials.kit.no_such_kit": "НСмає Ρ‚Π°ΠΊΠΎΠ³ΠΎ Π½Π°Π±ΠΎΡ€Ρƒ: '%s'", + "ftbessentials.kit.already_exists": "Набір '%s' Π²ΠΆΠ΅ існує", + "ftbessentials.kit.cooldown_reset": "Час відновлСння для %s скинуто для UUID %s", + "ftbessentials.kit.cooldown_reset_all": "Час відновлСння для %s скинуто для всіх Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbessentials.muted.muted": "Гравця %s Π±ΡƒΠ»ΠΎ Π·Π°Π³Π»ΡƒΡˆΠ΅Π½ΠΎ %s β€” Ρ‚Ρ€ΠΈΠ²Π°Π»Ρ–ΡΡ‚ΡŒ: %s", + "ftbessentials.muted.unmuted": "Гравця %s Π±ΡƒΠ»ΠΎ Ρ€ΠΎΠ·Π³Π»ΡƒΡˆΠ΅Π½ΠΎ %s", + "ftbessentials.nick.too_long": "Нік Π·Π°Π½Π°Π΄Ρ‚ΠΎ Π΄ΠΎΠ²Π³ΠΈΠΉ!", + "ftbessentials.nick.reset": "Нік скинуто!", + "ftbessentials.nick.changed": "Нік Π·ΠΌΡ–Π½Π΅Π½ΠΎ Π½Π° '%s'", + "ftbessentials.duration.indefinite": "Π΄ΠΎ подальшого повідомлСння", + "ftbessentials.duration.expected_format": "НСкорСктний Ρ„ΠΎΡ€ΠΌΠ°Ρ‚ тривалості. ΠžΡ‡Ρ–ΠΊΡƒΡ”Ρ‚ΡŒΡΡ: [smhdw]", + "ftbessentials.speed_boost": "ΠŸΡ€ΠΈΡΠΊΠΎΡ€Π΅Π½Π½Ρ для %s (%s) = %s%%", + "ftbessentials.speed_boost.none": "НСмає прискорСння для %s", + "ftbessentials.leaderboard": "Ваблиця Π»Ρ–Π΄Π΅Ρ€Ρ–Π² [ %s ]", + "ftbessentials.leaderboard.no_data": "НСмає Π΄Π°Π½ΠΈΡ…!", + "ftbessentials.home.set": "Π”Ρ–ΠΌ встановлСно!", + "ftbessentials.home.too_many": "НС ΠΌΠΎΠΆΠ½Π° Π΄ΠΎΠ΄Π°Ρ‚ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅ Π΄ΠΎΠΌΡ–Π²!", + "ftbessentials.home.deleted": "Π”Ρ–ΠΌ Π²ΠΈΠ΄Π°Π»Π΅Π½ΠΎ!", + "ftbessentials.home.not_found": "Π”Ρ–ΠΌ Π½Π΅ Π·Π½Π°ΠΉΠ΄Π΅Π½ΠΎ!", + "ftbessentials.home.show_home": "%s: Π·Π° %s", + "ftbessentials.home.y_too_low": "Π Ρ–Π²Π΅Π½ΡŒ Y Π·Π°Π½Π°Π΄Ρ‚ΠΎ низький! Π”Ρ–ΠΌ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ встановлСний Π²ΠΈΡ‰Π΅ Y=%s", + "ftbessentials.none": "НСмає", + "ftbessentials.home.for_player": "Π”ΠΎΠΌΡ–Π²ΠΊΠΈ для %s", + "ftbessentials.click_to_teleport": "ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ для Ρ‚Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚Π°Ρ†Ρ–Ρ—", + "ftbessentials.unknown_player_id": "НСвідомий ID гравця: %s", + "ftbessentials.unknown_player": "НСвідомий Π³Ρ€Π°Π²Π΅Ρ†ΡŒ: %s", + "ftbessentials.tp_offline.player_is_online": "Π“Ρ€Π°Π²Π΅Ρ†ΡŒ Ρƒ ΠΌΠ΅Ρ€Π΅ΠΆΡ–! ВикористайтС Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρƒ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ /tp", + "ftbessentials.tp_offline.moved": "ΠžΡ„Π»Π°ΠΉΠ½-Π³Ρ€Π°Π²Π΅Ρ†ΡŒ %s ΠΏΠ΅Ρ€Π΅ΠΌΡ–Ρ‰Π΅Π½ΠΈΠΉ Π΄ΠΎ %s Ρƒ %s", + "ftbessentials.tp_offline.cant_update": "НС вдалося ΠΎΠ½ΠΎΠ²ΠΈΡ‚ΠΈ dat-Ρ„Π°ΠΉΠ»: %s", + "ftbessentials.tpa.already_sent": "Π—Π°ΠΏΠΈΡ‚ ΡƒΠΆΠ΅ надіслано!", + "ftbessentials.tpa.notify": "Π—Π°ΠΏΠΈΡ‚ TPA! [ %s ➑ %s ]", + "ftbessentials.tpa.click_one": "ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ ΠΎΠ΄ΠΈΠ½ Ρ–Π· Ρ†ΠΈΡ… Π²Π°Ρ€Ρ–Π°Π½Ρ‚Ρ–Π²: ", + "ftbessentials.tpa.accept": "ΠŸΡ€ΠΈΠΉΠ½ΡΡ‚ΠΈ βœ”οΈ", + "ftbessentials.tpa.accept.tooltip": "ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± прийняти", + "ftbessentials.tpa.deny": "Π’Ρ–Π΄ΠΌΠΎΠ²ΠΈΡ‚ΠΈβŒ", + "ftbessentials.tpa.deny.tooltip": "ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ Ρ‰ΠΎΠ± Π²Ρ–Π΄ΠΌΠΎΠ²ΠΈΡ‚ΠΈ", + "ftbessentials.tpa.request_sent": "Π—Π°ΠΏΠΈΡ‚ надіслано!", + "ftbessentials.tpa.invalid_request": "НСвірний Π·Π°ΠΏΠΈΡ‚!", + "ftbessentials.tpa.gone_offline": "Π“Ρ€Π°Π²Π΅Ρ†ΡŒ вийшов Ρ–Π· ΠΌΠ΅Ρ€Π΅ΠΆΡ–!", + "ftbessentials.tpa.denied": "Π—Π°ΠΏΠΈΡ‚ Π²Ρ–Π΄Ρ…ΠΈΠ»Π΅Π½ΠΎ!", + "ftbessentials.warp.set": "Π’Π°Ρ€ΠΏ встановлСно!", + "ftbessentials.warp.deleted": "Π’Π°Ρ€ΠΏ Π²ΠΈΠ΄Π°Π»Π΅Π½ΠΎ!", + "ftbessentials.warp.not_found": "Π’Π°Ρ€ΠΏ Π½Π΅ Π·Π½Π°ΠΉΠ΄Π΅Π½ΠΎ!", + "ftbessentials.dimension_not_found": "Π’ΠΈΠΌΡ–Ρ€ Π½Π΅ Π·Π½Π°ΠΉΠ΄Π΅Π½ΠΎ!", + "ftbessentials.unknown_dest": "НСвідомС місцС призначСння!", + "ftbessentials.teleport.not_from_here": "ВСлСпортація Π· вашого Π²ΠΈΠΌΡ–Ρ€Ρƒ Π·Π°Π±ΠΎΡ€ΠΎΠ½Π΅Π½Π°!", + "ftbessentials.teleport.not_to_here": "ВСлСпортація Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ Π²ΠΈΠΌΡ–Ρ€Ρƒ Π·Π°Π±ΠΎΡ€ΠΎΠ½Π΅Π½Π°!", + "ftbessentials.teleport.on_cooldown": "Π©Π΅ Π½Π΅ ΠΌΠΎΠΆΠ½Π° тСлСпортуватися! Час відновлСння: %s", + "ftbessentials.teleport.interrupted": "Π’Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚Π°Ρ†Ρ–ΡŽ ΠΏΠ΅Ρ€Π΅Ρ€Π²Π°Π½ΠΎ!", + "ftbessentials.teleport.notify": "ВСлСпортація Ρ‡Π΅Ρ€Π΅Π· %sс" +} \ No newline at end of file diff --git a/kubejs/assets/ftbfiltersystem/lang/uk_ua.json b/kubejs/assets/ftbfiltersystem/lang/uk_ua.json new file mode 100644 index 000000000..04e077c38 --- /dev/null +++ b/kubejs/assets/ftbfiltersystem/lang/uk_ua.json @@ -0,0 +1,68 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "ftbfiltersystem": "FTB Filter System", + "item.ftbfiltersystem.smart_filter": "Π ΠΎΠ·ΡƒΠΌΠ½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€", + "item.ftbfiltersystem.smart_filter.tooltip.1": "ПКМ: Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Ρ„Ρ–Π»ΡŒΡ‚Ρ€", + "item.ftbfiltersystem.smart_filter.tooltip.2": "Shift+ПКМ: ΠŸΡ€ΠΎΡ‚Π΅ΡΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Ρ–Π· ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠΌ Π² Ρ–Π½ΡˆΡ–ΠΉ Ρ€ΡƒΡ†Ρ–", + "ftbfiltersystem.message.parse_failed": "Помилка Π°Π½Π°Π»Ρ–Π·Ρƒ Ρ„Ρ–Π»ΡŒΡ‚Ρ€Π°: %s", + "ftbfiltersystem.message.not_a_filter": "Π’ΠΈ ΠΏΠΎΠ²ΠΈΠ½Π½Ρ– Ρ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Ρ€ΠΎΠ·ΡƒΠΌΠ½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Π² основній Ρ€ΡƒΡ†Ρ–", + "ftbfiltersystem.message.not_configured": "Π¦Π΅ΠΉ Ρ€ΠΎΠ·ΡƒΠΌΠ½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Π½Π΅ ΠΌΠ°Ρ” Π½Π°Π»Π°ΡˆΡ‚ΠΎΠ²Π°Π½ΠΈΡ… Ρ„Ρ–Π»ΡŒΡ‚Ρ€Ρ–Π²", + "ftbfiltersystem.message.no_offhand_item": "Π£Ρ‚Ρ€ΠΈΠΌΡƒΠΉΡ‚Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ для тСсту Π² Ρ–Π½ΡˆΡ–ΠΉ Ρ€ΡƒΡ†Ρ–", + "ftbfiltersystem.message.matched": "Π€Ρ–Π»ΡŒΡ‚Ρ€ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ”: %s", + "ftbfiltersystem.message.not_matched": "Π€Ρ–Π»ΡŒΡ‚Ρ€ Π½Π΅ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ”: %s", + "ftbfiltersystem.message.changes_saved": "Π€Ρ–Π»ΡŒΡ‚Ρ€ ΠΎΠ½ΠΎΠ²Π»Π½ΠΎ!", + "ftbfiltersystem.message.cache_cleared": "ΠžΡ‡ΠΈΡ‰Π΅Π½ΠΎ кСш ΡΠΊΠΎΠΌΠΏΡ–Π»ΡŒΠΎΠ²Π°Π½ΠΈΡ… Ρ„Ρ–Π»ΡŒΡ‚Ρ€Ρ–Π²", + "ftbfiltersystem.message.components_header": "%s ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Ρ‚Π½(Ρ–Π²) Π΄Π°Π½ΠΈΡ… %s:", + "ftbfiltersystem.message.components_header_none": "Π‘Π΅Π· ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² Π΄Π°Π½ΠΈΡ…", + "ftbfiltersystem.message.non_default_components": "Π’Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΎ лишС нСстандартні ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ", + "ftbfiltersystem.gui.add": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ...", + "ftbfiltersystem.gui.delete": "Π’ΠΈΠ΄Π°Π»ΠΈΡ‚ΠΈ", + "ftbfiltersystem.gui.configure": "ΠΠ°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ...", + "ftbfiltersystem.gui.percentage": "Відсоток", + "ftbfiltersystem.gui.item_source.creative": "Π’Π²ΠΎΡ€Ρ‡ΠΈΠΉ", + "ftbfiltersystem.gui.item_source.inventory": "Π†Π½Π²Π΅Π½Ρ‚Π°Ρ€", + "ftbfiltersystem.gui.item_source.mod": "Мод", + "ftbfiltersystem.gui.nbt_ok": "SNBT ΠΏΡ€ΠΎΠ°Π½Π°Π»Ρ–Π·ΠΎΠ²Π°Π½ΠΎ ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ", + "ftbfiltersystem.gui.nbt_bad": "НС вдалося ΠΏΡ€ΠΎΠ°Π½Π°Π»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ SNBT!", + "ftbfiltersystem.gui.filter_ok": "Π€Ρ–Π»ΡŒΡ‚Ρ€ ΠΏΡ€ΠΎΠ°Π½Π°Π»Ρ–Π·ΠΎΠ²Π°Π½ΠΎ ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ", + "ftbfiltersystem.gui.filter_bad": "НС вдалося ΠΏΡ€ΠΎΠ°Π½Π°Π»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ Ρ„Ρ–Π»ΡŒΡ‚Ρ€!", + "ftbfiltersystem.gui.custom_id": "ID ΠΊΠΎΡ€ΠΈΡΡ‚ΡƒΠ²Π°Ρ†ΡŒΠΊΠΎΡ— ΠΏΠΎΠ΄Ρ–Ρ—:", + "ftbfiltersystem.gui.custom_data": "Π”ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Ρ– ΠΊΠΎΡ€ΠΈΡΡ‚ΡƒΠ²Π°Ρ†ΡŒΠΊΡ– Π΄Π°Π½Ρ–:", + "ftbfiltersystem.gui.changes_made": "Π’ΠΈ внСсли Π·ΠΌΡ–Π½ΠΈ Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ Ρ„Ρ–Π»ΡŒΡ‚Ρ€Π°", + "ftbfiltersystem.gui.changes_made.question": "Π—Π°ΠΊΡ€ΠΈΡ‚ΠΈ Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€ Π±Π΅Π· збСрігання?", + "ftbfiltersystem.gui.compound": "ΠšΠΎΠΌΠ±Ρ–Π½ΠΎΠ²Π°Π½Ρ– Ρ„Ρ–Π»ΡŒΡ‚Ρ€ΠΈ", + "ftbfiltersystem.gui.basic": "Π‘Π°Π·ΠΎΠ²Ρ– Ρ„Ρ–Π»ΡŒΡ‚Ρ€ΠΈ", + "ftbfiltersystem.gui.fuzzy_match": "НСчіткий Π·Π±Ρ–Π³ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π²?", + "ftbfiltersystem.gui.custom_name": "ВласнС Ρ–ΠΌ'я", + "filter.ftbfiltersystem.and.name": "УсС Π·", + "filter.ftbfiltersystem.and.tooltip": "ΠšΠΎΠΌΠ±Ρ–Π½ΠΎΠ²Π°Π½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€: Ρ†Π΅ΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ”, якщо Π’Π‘Π† ΠΉΠΎΠ³ΠΎ Π΄ΠΎΡ‡Ρ–Ρ€Π½Ρ– Ρ„Ρ–Π»ΡŒΡ‚Ρ€ΠΈ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°ΡŽΡ‚ΡŒ.", + "filter.ftbfiltersystem.or.name": "Π‘ΡƒΠ΄ΡŒ-Ρ‰ΠΎ Π·", + "filter.ftbfiltersystem.or.tooltip": "ΠšΠΎΠΌΠ±Ρ–Π½ΠΎΠ²Π°Π½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€: Ρ†Π΅ΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ”, якщо Π‘Π£Π”Π¬-Π―ΠšΠ˜Π™ Π· ΠΉΠΎΠ³ΠΎ Π΄ΠΎΡ‡Ρ–Ρ€Π½Ρ–Ρ… Ρ„Ρ–Π»ΡŒΡ‚Ρ€Ρ–Π² Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ”.", + "filter.ftbfiltersystem.not.name": "НС", + "filter.ftbfiltersystem.not.tooltip": "ΠšΠΎΠΌΠ±Ρ–Π½ΠΎΠ²Π°Π½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€: Ρ†Π΅ΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ”, якщо ΠΉΠΎΠ³ΠΎ Π΄ΠΎΡ‡Ρ–Ρ€Π½Ρ–ΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ НЕ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ”. МоТна Π΄ΠΎΠ΄Π°Ρ‚ΠΈ Π½Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π΄ΠΎΡ‡Ρ–Ρ€Π½ΡŒΠΎΠ³ΠΎ Ρ„Ρ–Π»ΡŒΡ‚Ρ€Π°.", + "filter.ftbfiltersystem.only_one.name": "Один Π·", + "filter.ftbfiltersystem.only_one.tooltip": "ΠšΠΎΠΌΠ±Ρ–Π½ΠΎΠ²Π°Π½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€: Ρ†Π΅ΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ”, якщо Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” лишС ΠžΠ”Π˜Π Π· ΠΉΠΎΠ³ΠΎ Π΄ΠΎΡ‡Ρ–Ρ€Π½Ρ–Ρ… Ρ„Ρ–Π»ΡŒΡ‚Ρ€Ρ–Π².", + "filter.ftbfiltersystem.block.name": "Π„ Π±Π»ΠΎΠΊΠΎΠΌ", + "filter.ftbfiltersystem.block.tooltip": "ΠŸΡ€ΠΎΡΡ‚ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€, який Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ”, якщо ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ Ρ” Ρ€ΠΎΠ·ΠΌΡ–Ρ‰ΡƒΠ²Π°Π½ΠΈΠΌ Π±Π»ΠΎΠΊΠΎΠΌ.", + "filter.ftbfiltersystem.component.name": "ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°", + "filter.ftbfiltersystem.component.tooltip": "Π—Π±Ρ–Π³Π°Ρ”Ρ‚ΡŒΡΡ Π· ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Π°ΠΌΠΈ Π΄Π°Π½ΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π° Π½Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–. ΠŸΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” Ρ‚ΠΎΡ‡Π½Ρ– (всі ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ ΠΏΠΎΠ²ΠΈΠ½Π½Ρ– збігатися) Ρ– Π½Π΅Ρ‡Ρ–Ρ‚ΠΊΡ– Π·Π±Ρ–Π³ΠΈ (Ρ‚Ρ–Π»ΡŒΠΊΠΈ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ, Ρ‰ΠΎ Π·Π±Ρ–Π³Π°ΡŽΡ‚ΡŒΡΡ Ρƒ Ρ„Ρ–Π»ΡŒΡ‚Ρ€Ρ–). Π―ΠΊΡ‰ΠΎ Ρƒ вас Ρ” ΠΏΡ€Π°Π²Π° адміністратора, ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Ρƒ Π²Π°ΡˆΠΎΠΌΡƒ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Ρ–, які ΠΌΠ°ΡŽΡ‚ΡŒ (нСстандартні) Π΄Π°Π½Ρ– ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π², ΠΌΠΎΠΆΠ½Π° натиснути, Ρ‰ΠΎΠ± ΡΠΊΠΎΠΏΡ–ΡŽΠ²Π°Ρ‚ΠΈ Ρ—Ρ… ΠΏΠΎΡ‚ΠΎΡ‡Π½Ρ– Π΄Π°Π½Ρ– Π² тСкстовий Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€, сСріалізовані як SNBT..", + "filter.ftbfiltersystem.durability.name": "ΠœΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ", + "filter.ftbfiltersystem.durability.tooltip": "Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρƒ Π½Π° основі ΠΉΠΎΠ³ΠΎ Π·Π°Π»ΠΈΡˆΠΊΠΎΠ²ΠΎΡ— міцності. ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ, які Π½Π΅ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ ΠΏΠΎΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½Ρ–, Π²Π²Π°ΠΆΠ°ΡŽΡ‚ΡŒΡΡ Ρ‚Π°ΠΊΠΈΠΌΠΈ, Ρ‰ΠΎ ΠΌΠ°ΡŽΡ‚ΡŒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ 0.", + "filter.ftbfiltersystem.food_value.name": "Π₯Π°Ρ€Ρ‡ΠΎΠ²Π° Ρ†Ρ–Π½Π½Ρ–ΡΡ‚ΡŒ", + "filter.ftbfiltersystem.food_value.tooltip": "Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρƒ Π½Π° основі ΠΉΠΎΠ³ΠΎ Ρ…Π°Ρ€Ρ‡ΠΎΠ²ΠΎΡ— цінності (Ρƒ ΠΏΠΎΠ»ΠΎΠ²ΠΈΠ½ΠΊΠ°Ρ… ΡˆΠΌΠ°Ρ‚ΠΎΡ‡ΠΊΡ–Π² Ρ—ΠΆΡ–)\nНСхарчові ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Ρ…Π°Ρ€Ρ‡ΠΎΠ²Ρƒ Ρ†Ρ–Π½Π½Ρ–ΡΡ‚ΡŒ 0", + "filter.ftbfiltersystem.item.name": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚", + "filter.ftbfiltersystem.item.tooltip": "Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½ΠΎΠΌΡƒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρƒ. Π”Π°Π½Ρ– ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Ρ‚ΡƒΡ‚ Π½Π΅ ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€ΡΡŽΡ‚ΡŒΡΡ (Π΄ΠΈΠ². Π€Ρ–Π»ΡŒΡ‚Ρ€ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π²). ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ ΠΌΠΎΠΆΠ½Π° Π²ΠΈΠ±ΠΈΡ€Π°Ρ‚ΠΈ Π·Ρ– списків ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Ρ‚Π²ΠΎΡ€Ρ‡ΠΈΡ… Π²ΠΊΠ»Π°Π΄ΠΎΠΊ Π°Π±ΠΎ інвСнтаря. ВикористовуйтС тСкстовС ΠΏΠΎΠ»Π΅ для Ρ„Ρ–Π»ΡŒΡ‚Ρ€Π°Ρ†Ρ–Ρ— Ρ–Π΄Π΅Π½Ρ‚ΠΈΡ„Ρ–ΠΊΠ°Ρ‚ΠΎΡ€Ρ–Π² ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π², Ρ‰ΠΎΠ± ΠΎΠ±ΠΌΠ΅ΠΆΠΈΡ‚ΠΈ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΡƒΠ²Π°Π½ΠΈΡ… Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚Ρ–Π².", + "filter.ftbfiltersystem.item_tag.name": "Назва", + "filter.ftbfiltersystem.item_tag.tooltip": "Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” Ρ‚Π΅Π³Ρƒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°; ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ, які Π·Π½Π°Ρ…ΠΎΠ΄ΡΡ‚ΡŒΡΡ Π² Ρ‚Π΅Π·Ρ–, Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ‚ΠΈ.\nВикористовуйтС тСкстовС ΠΏΠΎΠ»Π΅ для Ρ„Ρ–Π»ΡŒΡ‚Ρ€Π°Ρ†Ρ–Ρ— Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡ… Ρ‚Π΅Π³Ρ–Π² ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π².", + "filter.ftbfiltersystem.stack_size.name": "Π ΠΎΠ·ΠΌΡ–Ρ€ стосу", + "filter.ftbfiltersystem.stack_size.tooltip": "Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” ΠΏΠΎΡ‚ΠΎΡ‡Π½ΠΎΠΌΡƒ Ρ€ΠΎΠ·ΠΌΡ–Ρ€Ρƒ стосу ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°.", + "filter.ftbfiltersystem.max_stack_size.name": "Максимальний Ρ€ΠΎΠ·ΠΌΡ–Ρ€ стосу", + "filter.ftbfiltersystem.max_stack_size.tooltip": "Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½ΠΎΠΌΡƒ Ρ€ΠΎΠ·ΠΌΡ–Ρ€Ρƒ стосу ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°.\nΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ, Ρ‰ΠΎ Π½Π΅ ΡΠΊΠ»Π°Π΄Π°ΡŽΡ‚ΡŒΡΡ, Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°ΡŽΡ‚ΡŒ Π·Π½Π°Ρ‡Π΅Π½Π½ΡŽ 1.", + "filter.ftbfiltersystem.mod.name": "Мод", + "filter.ftbfiltersystem.mod.tooltip": "Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” ΠΌΠΎΠ΄ΠΈΡ„Ρ–ΠΊΠ°Ρ†Ρ–Ρ—, яка Π΄ΠΎΠ΄Π°Ρ” ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚.\nΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎΡ— Π³Ρ€ΠΈ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°ΡŽΡ‚ΡŒ Β«ΠΌΠΎΠ΄ΡƒΒ» Minecraft.", + "filter.ftbfiltersystem.custom.name": "ΠšΠΎΡ€ΠΈΡΡ‚ΡƒΠ²Π°Ρ†ΡŒΠΊΠΈΠΉ", + "filter.ftbfiltersystem.custom.tooltip": "Π ΠΎΠ·ΡˆΠΈΡ€Π΅Π½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€, ΠΏΡ€ΠΈΠ·Π½Π°Ρ‡Π΅Π½ΠΈΠΉ для ΠΌΠΎΠ΄Π΄Π΅Ρ€Ρ–Π² Ρ‚Π° Ρ€ΠΎΠ·Ρ€ΠΎΠ±Π½ΠΈΠΊΡ–Π² ΠΌΠΎΠ΄ΠΏΠ°ΠΊΡ–Π². Π’ΠΈΠΊΠΎΠ½ΡƒΡ” CustomFilterEvent ΠΏΡ€ΠΈ спробі Π·Π±Ρ–Π³Ρƒ; Π²ΡΡ‚Π°Π½ΠΎΠ²Π»ΡŽΡ” Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚ ΠΏΠΎΠ΄Ρ–Ρ—, Ρ‰ΠΎΠ± Π²ΠΊΠ°Π·Π°Ρ‚ΠΈ Π½Π° ΡƒΡΠΏΡ–ΡˆΠ½ΠΈΠΉ Π°Π±ΠΎ Π½Π΅Π²Π΄Π°Π»ΠΈΠΉ Π·Π±Ρ–Π³. ВикористовуйтС тСкстовС ΠΏΠΎΠ»Π΅, Ρ‰ΠΎΠ± Π½Π°Π΄Π°Ρ‚ΠΈ Π΄Π°Π½Ρ– Ρƒ Π΄ΠΎΠ²Ρ–Π»ΡŒΠ½Ρ–ΠΉ Ρ„ΠΎΡ€ΠΌΡ–, які ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ΡŒΡΡ Π΄ΠΎ ΠΏΠΎΠ΄Ρ–Ρ— як ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ \"data\".", + "filter.ftbfiltersystem.expression.name": "Π’ΠΈΡ€Π°Π·", + "filter.ftbfiltersystem.expression.tooltip": "Дозволяє ввСсти Π°Π±ΠΎ Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ Π±ΡƒΠΊΠ²Π°Π»ΡŒΠ½Π΅ вираТСння Ρ„Ρ–Π»ΡŒΡ‚Ρ€Π° Π· ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π° Π€Ρ–Π»ΡŒΡ‚Ρ€Ρƒ Ρƒ Π²Π°ΡˆΠΎΠΌΡƒ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Ρ–. Для Π±Ρ–Π»ΡŒΡˆΠΎΡ— зрозумілості ΠΌΠΎΠΆΠ½Π° (Π°Π»Π΅ Π½Π΅ ΠΎΠ±ΠΎΠ²'язково!) присвоїти ΠΉΠΎΠΌΡƒ власнС Ρ–ΠΌ'я.", + "filter.ftbfiltersystem.root.name": "ΠšΠΎΡ€Ρ–Π½ΡŒ (УсС Π·)" +} \ No newline at end of file diff --git a/kubejs/assets/ftblibrary/lang/uk_ua.json b/kubejs/assets/ftblibrary/lang/uk_ua.json new file mode 100644 index 000000000..0687398f7 --- /dev/null +++ b/kubejs/assets/ftblibrary/lang/uk_ua.json @@ -0,0 +1,114 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "gui.accept": "ΠŸΡ€ΠΈΠΉΠ½ΡΡ‚ΠΈ", + "gui.add": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ", + "gui.added": "Π”ΠΎΠ΄Π°Π½ΠΎ", + "gui.remove": "Π’ΠΈΠ΄Π°Π»ΠΈΡ‚ΠΈ", + "gui.removed": "Π’ΠΈΠ΄Π°Π»Π΅Π½ΠΎ", + "gui.close": "Π—Π°ΠΊΡ€ΠΈΡ‚ΠΈ", + "gui.open": "Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ", + "gui.saved": "Π—Π±Π΅Ρ€Π΅ΠΆΠ΅Π½ΠΎ", + "gui.loaded": "Π—Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΎ", + "gui.info": "Інформація", + "gui.collapse_all": "Π—Π³ΠΎΡ€Π½ΡƒΡ‚ΠΈ всі", + "gui.expand_all": "Π ΠΎΠ·Π³ΠΎΡ€Π½ΡƒΡ‚ΠΈ всі", + "gui.download": "Π—Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ", + "gui.downloaded": "Π—Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΎ", + "gui.update": "ΠžΠ½ΠΎΠ²ΠΈΡ‚ΠΈ", + "gui.updated": "ОновлСно", + "gui.active": "Активний", + "gui.inactive": "НСактивний", + "gui.settings": "ΠΠ°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ", + "gui.rename": "ΠŸΠ΅Ρ€Π΅ΠΉΠΌΠ΅Π½ΡƒΠ²Π°Ρ‚ΠΈ", + "gui.search_box": "ΠŸΠΎΡˆΡƒΠΊ...", + "gui.move": "ΠŸΠ΅Ρ€Π΅ΠΌΡ–ΡΡ‚ΠΈΡ‚ΠΈ", + "gui.copy": "ΠšΠΎΠΏΡ–ΡŽΠ²Π°Ρ‚ΠΈ", + "gui.paste": "Вставити", + "gui.cut": "Π’ΠΈΡ€Ρ–Π·Π°Ρ‚ΠΈ", + "gui.other": "Π†Π½ΡˆΠ΅", + "gui.server_forced": "ΠŸΡ€ΠΈΠΌΡƒΡˆΠ΅Π½ΠΎ сСрвСром: %s", + "gui.online": "Π’ ΠΌΠ΅Ρ€Π΅ΠΆΡ–", + "gui.offline": "НС Π² ΠΌΠ΅Ρ€Π΅ΠΆΡ–", + "gui.whitelist": "Π‘Ρ–Π»ΠΈΠΉ список", + "gui.blacklist": "Π§ΠΎΡ€Π½ΠΈΠΉ список", + "gui.color": "ΠšΠΎΠ»Ρ–Ρ€", + "gui.downloading": "ЗавантаТСння...", + "gui.infinite": "НСскінчСнно", + "delete_item": "Π’ΠΈ дійсно Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π²ΠΈΠ΄Π°Π»ΠΈΡ‚ΠΈ %s?", + "lat_support": "ΠŸΠΎΠ΄ΠΎΠ±Π°Ρ”Ρ‚ΡŒΡΡ ΠΌΠΎΠ΄? ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΠΌΠΎΡ— ΠΏΡ€ΠΎΡ”ΠΊΡ‚ΠΈ!", + "ftblibrary.select_fluid.gui": "ΠžΠ±Ρ€Π°Ρ‚ΠΈ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ", + "ftblibrary.select_item.list_mode": "Π Π΅ΠΆΠΈΠΌ списку", + "ftblibrary.select_item.list_mode.all": "Всі ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ", + "ftblibrary.select_fluid.list_mode.all": "Всі Ρ€Ρ–Π΄ΠΈΠ½ΠΈ", + "ftblibrary.select_item.list_mode.inv": "Π†Π½Π²Π΅Π½Ρ‚Π°Ρ€", + "ftblibrary.select_item.list_mode.jei": "JEI", + "ftblibrary.select_item.list_mode.rei": "REI", + "ftblibrary.select_item.list_mode.emi": "EMI", + "ftblibrary.select_item.count": "Установити Ρ€ΠΎΠ·ΠΌΡ–Ρ€", + "ftblibrary.select_item.nbt": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ NBT\nΒ§7Π›Ρ–Π²ΠΈΠΉ ΠΊΠ»Ρ–ΠΊ: швидкий Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€ рядків\nΒ§7ΠŸΡ€Π°Π²ΠΈΠΉ ΠΊΠ»Ρ–ΠΊ: Ρ–Π½Ρ‚Π΅Ρ€Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΉ Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€ NBT", + "ftblibrary.select_item.caps": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ моТливості", + "ftblibrary.select_item.display_name": "Встановити Π·ΠΎΠ±Ρ€Π°ΠΆΡƒΠ²Π°Π½Π΅ Ρ–ΠΌ'я", + "ftblibrary.select_image.scanning": "Бканування Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΡŒ: Ρ†Π΅ ΠΌΠΎΠΆΠ΅ зайняти ΠΊΡ–Π»ΡŒΠΊΠ° сСкунд...", + "ftblibrary.select_image.rescan": "ΠŸΠ΅Ρ€Π΅ΡΠΊΠ°Π½ΡƒΠ²Π°Ρ‚ΠΈ зобраТСння", + "ftblibrary.select_image.all_images": "Всі зобраТСння", + "ftblibrary.select_entity.all_entities": "Усі ΠΆΠΈΠ²Ρ– істоти", + "ftblibrary.unsaved_changes": "Бкасувати Π½Π΅Π·Π±Π΅Ρ€Π΅ΠΆΠ΅Π½Ρ– Π·ΠΌΡ–Π½ΠΈ?", + "config.group.value": "ЗначСння", + "sidebar_button.ftblibrary.toggle.gamemode": "ΠŸΠ΅Ρ€Π΅ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Ρ–Π³Ρ€ΠΎΠ²ΠΈΠΉ Ρ€Π΅ΠΆΠΈΠΌ", + "sidebar_button.ftblibrary.toggle.gamemode.tooltip": "ΠŸΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°Ρ” ΠΌΡ–ΠΆ Ρ€Π΅ΠΆΠΈΠΌΠ°ΠΌΠΈ виТивання Ρ– творчості", + "sidebar_button.ftblibrary.toggle.rain": "ΠŸΠ΅Ρ€Π΅ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π΄ΠΎΡ‰", + "sidebar_button.ftblibrary.toggle.rain.tooltip": "ΠŸΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°Ρ” ΠΏΠΎΠ³ΠΎΠ΄Ρƒ ΠΌΡ–ΠΆ ясною Ρ– Π΄ΠΎΡ‰ΠΎΠ²ΠΎΡŽ", + "sidebar_button.ftblibrary.toggle.day": "Установити Π½Π° дСнь", + "sidebar_button.ftblibrary.toggle.day.tooltip": "Π£ΡΡ‚Π°Π½ΠΎΠ²Π»ΡŽΡ” Π΄Π΅Π½Π½ΠΈΠΉ час", + "sidebar_button.ftblibrary.toggle.night": "Установити Π½Π° Π½Ρ–Ρ‡", + "sidebar_button.ftblibrary.toggle.night.tooltip": "Π£ΡΡ‚Π°Π½ΠΎΠ²Π»ΡŽΡ” Π½Ρ–Ρ‡Π½ΠΈΠΉ час", + "sidebar_button.ftblibrary.config": "ΠšΠ»Ρ–Ρ”Π½Ρ‚ΡΡŒΠΊΠ° конфігурація FTB Library", + "sidebar_button.ftblibrary.config.tooltip": "Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ ΠΊΠΎΠ½Ρ„Ρ–Π³ΡƒΡ€Π°Ρ†Ρ–ΡŽ ΠΊΠ»Ρ–Ρ”Π½Ρ‚ΡΡŒΠΊΠΎΡ— Π±Ρ–Π±Π»Ρ–ΠΎΡ‚Π΅ΠΊΠΈ FTB", + "sidebar_button.ftblibrary.config.enter_edit_mode": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою, Ρ‰ΠΎΠ± Ρ€Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ ΠΊΠ½ΠΎΠΏΠΊΠΈ Π±Ρ–Ρ‡Π½ΠΎΡ— ΠΏΠ°Π½Π΅Π»Ρ–", + "item.ftblibrary.fluid_container": "ΠšΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€ для Ρ€Ρ–Π΄ΠΈΠ½ΠΈ", + "item.ftblibrary.fluid_container.use": "Пкм ΠΏΠΎ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρƒ, Ρ‰ΠΎΠ± спороТнити ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€", + "ftblibrary.mb": "%d ΠΌΠ‘ Π· %s", + "ftblibrary.empty": "ΠŸΠΎΡ€ΠΎΠΆΠ½ΡŒΠΎ", + "ftblibrary.gui.listSize1": "1 Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚", + "ftblibrary.gui.listSize": "%d Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚Ρ–Π²", + "ftblibrary.gui.error": "Помилка!", + "ftblibrary.gui.search": "ΠŸΠΎΡˆΡƒΠΊ...", + "ftblibrary.gui.nbt_copied": "NBT скопійовано Π΄ΠΎ Π±ΡƒΡ„Π΅Ρ€Π° ΠΎΠ±ΠΌΡ–Π½Ρƒ", + "ftblibrary.gui.edit_tag_name": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ Ρ–ΠΌ'я Ρ‚Π΅Π³Π°", + "ftblibrary.gui.edit_tag_value": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ значСння Ρ‚Π΅Π³Ρƒ", + "ftblibrary.gui.no_selection": "Нічого Π½Π΅ Π²ΠΈΠ±Ρ€Π°Π½ΠΎ", + "ftblibrary.gui.key_reference": "ΠšΠ»ΡŽΡ‡ΠΎΠ²Π΅ посилання", + "ftblibrary.gui.enabled": "Π£Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftblibrary.gui.disabled": "Π’ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftblibrary.client_settings": "ΠšΠΎΠ½Ρ„Ρ–Π³ΡƒΡ€Π°Ρ†Ρ–Ρ ΠΊΠ»Ρ–Ρ”Π½Ρ‚Π°", + "ftblibrary.client_settings.tooltips": "ΠŸΡ–Π΄ΠΊΠ°Π·ΠΊΠΈ", + "ftblibrary.client_settings.tooltips.item_modname": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ Π½Π°Π·Π²Ρƒ ΠΌΠΎΠ΄Π° Π² GUI Π²ΠΈΠ±ΠΎΡ€Ρƒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²", + "ftblibrary.client_settings.tooltips.fluid_modname": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ Π½Π°Π·Π²Ρƒ ΠΌΠΎΠ΄Π° Π² GUI Π²ΠΈΠ±ΠΎΡ€Ρƒ Ρ€Ρ–Π΄ΠΈΠ½", + "ftblibrary.client_settings.tooltips.image_modname": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ Π½Π°Π·Π²Ρƒ ΠΌΠΎΠ΄Π° Π² GUI Π²ΠΈΠ±ΠΎΡ€Ρƒ Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΡŒ", + "ftblibrary.client_settings.sidebar": "Кнопки Π±Ρ–Ρ‡Π½ΠΎΡ— ΠΏΠ°Π½Π΅Π»Ρ–", + "ftblibrary.client_settings.sidebar.enabled": "Π£Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ ΠΊΠ½ΠΎΠΏΠΊΠΈ Π±Ρ–Ρ‡Π½ΠΎΡ— ΠΏΠ°Π½Π΅Π»Ρ–", + "ftblibrary.client_settings.sidebar.position": "ΠŸΠΎΠ·ΠΈΡ†Ρ–Ρ ΠΊΠ½ΠΎΠΏΠΎΠΊ Π±Ρ–Ρ‡Π½ΠΎΡ— ΠΏΠ°Π½Π΅Π»Ρ–", + "ftblibrary.palette.chat": "ΠšΠΎΠ»ΡŒΠΎΡ€ΠΈ Ρ‡Π°Ρ‚Ρƒ", + "ftblibrary.palette.dye": "ΠšΠΎΠ»ΡŒΠΎΡ€ΠΈ Π±Π°Ρ€Π²Π½ΠΈΠΊΡ–Π²", + "ftblibrary.palette.nord": "ΠŸΡ–Π²Π½Ρ–Ρ‡Π½Π° Ρ‚Π΅ΠΌΠ°", + "ftblibrary.palette.reds": "Π§Π΅Ρ€Π²ΠΎΠ½Ρ–", + "ftblibrary.palette.greens": "Π—Π΅Π»Π΅Π½Ρ–", + "ftblibrary.palette.blues": "Π‘ΠΈΠ½Ρ–", + "ftblibrary.palette.recent": "ΠžΡΡ‚Π°Π½Π½Ρ– ΠΊΠΎΠ»ΡŒΠΎΡ€ΠΈ", + "ftblibrary.panel.position.top_left": "Π’Π΅Ρ€Ρ…Π½Ρ–ΠΉ Π»Ρ–Π²ΠΈΠΉ", + "ftblibrary.panel.position.top": "Π’Π΅Ρ€Ρ…", + "ftblibrary.panel.position.top_right": "Π’Π΅Ρ€Ρ…Π½Ρ–ΠΉ ΠΏΡ€Π°Π²ΠΈΠΉ", + "ftblibrary.panel.position.left": "Π›Ρ–Π²ΠΈΠΉ", + "ftblibrary.panel.position.right": "ΠŸΡ€Π°Π²ΠΎΡ€ΡƒΡ‡", + "ftblibrary.panel.position.bottom_left": "НиТній Π»Ρ–Π²ΠΈΠΉ", + "ftblibrary.panel.position.bottom": "Π’Π½ΠΈΠ·", + "ftblibrary.panel.position.bottom_right": "НиТній ΠΏΡ€Π°Π²ΠΈΠΉ", + "ftblibrary.server_settings": "ΠΠ°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ сСрвСра", + "dimension.minecraft.overworld": "Π’Π΅Ρ€Ρ…Π½Ρ–ΠΉ світ", + "dimension.minecraft.the_nether": "НСзСр", + "dimension.minecraft.the_end": "Π•Π½Π΄", + "dimension.hyperbox.hyperbox": "ГіпСрбокс", + "dimension.ae2.spatial_storage": "ΠŸΡ€ΠΎΡΡ‚ΠΎΡ€ΠΎΠ²Π΅ сховищС AE2", + "itemGroup.ftbsuite.creative_tab": "Набір FTB", + "item.ftblibrary.icon_item": "Π—Π½Π°Ρ‡ΠΎΠΊ FTB" +} \ No newline at end of file diff --git a/kubejs/assets/ftbquests/lang/uk_ua.json b/kubejs/assets/ftbquests/lang/uk_ua.json new file mode 100644 index 000000000..b1f5d46f0 --- /dev/null +++ b/kubejs/assets/ftbquests/lang/uk_ua.json @@ -0,0 +1,633 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "ftbquests": "FTB Quests", + "block.ftbquests.screen.missing_data": "Π‘Π»ΠΎΠΊ пошкодТСно / Π”Π°Π½Ρ– відсутні!", + "block.ftbquests.aux_task_screen": "Π•ΠΊΡ€Π°Π½ завдань", + "block.ftbquests.screen_1": "Π•ΠΊΡ€Π°Π½ завдань (1x1)", + "block.ftbquests.screen_3": "Π•ΠΊΡ€Π°Π½ завдань (3x3)", + "block.ftbquests.screen_5": "Π•ΠΊΡ€Π°Π½ завдань (5x5)", + "block.ftbquests.screen_7": "Π•ΠΊΡ€Π°Π½ завдань (7x7)", + "block.ftbquests.screen.task_index": "ІндСкс завдань", + "block.ftbquests.screen.size": "Π ΠΎΠ·ΠΌΡ–Ρ€", + "block.ftbquests.screen.skin": "Π’Π΅ΠΌΠ°", + "block.ftbquests.screen.indestructible": "НСзнищСнний", + "block.ftbquests.screen.input_only": "Π’Ρ–Π»ΡŒΠΊΠΈ Π²Ρ…Ρ–Π΄", + "block.ftbquests.screen.input_mode_icon": "Π†ΠΊΠΎΠ½ΠΊΠ° Ρ€Π΅ΠΆΠΈΠΌΡƒ ввСдСння", + "block.ftbquests.screen.text_shadow": "Π’Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΠΈ Ρ‚Ρ–Π½Ρ– тСксту", + "block.ftbquests.screen.fullscreen": "На вСсь Π΅ΠΊΡ€Π°Π½", + "block.ftbquests.screen.hide_icons": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ Ρ–ΠΊΠΎΠ½ΠΊΠΈ", + "block.ftbquests.screen.no_permission": "Π£ вас Π½Π΅ΠΌΠ°Ρ” Π΄ΠΎΠ·Π²ΠΎΠ»Ρƒ Π½Π° Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Ρ†ΡŒΠΎΠ³ΠΎ!", + "block.ftbquests.progress_detector": "Π”Π΅Ρ‚Π΅ΠΊΡ‚ΠΎΡ€ прогрСсу квСстів", + "block.ftbquests.progress_detector.object": "ID ΠΎΠ±'Ρ”ΠΊΡ‚Π°", + "block.ftbquests.progress_detector.level": "Π Ρ–Π²Π΅Π½ΡŒ Π²ΠΈΡ…ΠΎΠ΄Ρƒ", + "block.ftbquests.barrier": "Π‘Π°Ρ€'Ρ”Ρ€ квСсту", + "block.ftbquests.stage_barrier": "Π‘Π°Ρ€'Ρ”Ρ€ Π΅Ρ‚Π°ΠΏΡƒ", + "block.ftbquests.barrier.object": "ID ΠΎΠ±'Ρ”ΠΊΡ‚Π°", + "block.ftbquests.barrier.invis_when_open": "НСвидимий, ΠΊΠΎΠ»ΠΈ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΎ", + "block.ftbquests.detector": "Π”Π΅Ρ‚Π΅ΠΊΡ‚ΠΎΡ€ квСстів", + "block.ftbquests.detector.task": "Завдання", + "block.ftbquests.detector.notifications": "БповіщСння", + "block.ftbquests.detector.redstone": "Π”Π΅Ρ‚Π΅ΠΊΡ‚ΠΎΡ€ рСдстоуну", + "block.ftbquests.detector.redstone.required_redstone": "НСобхідний Ρ€Ρ–Π²Π΅Π½ΡŒ рСдстоуну", + "block.ftbquests.detector.player": "Π”Π΅Ρ‚Π΅ΠΊΡ‚ΠΎΡ€ Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "block.ftbquests.detector.player.radius": "Радіус", + "block.ftbquests.detector.player.offset_y": "ЗміщСння Y", + "block.ftbquests.detector.player.height": "Висота", + "block.ftbquests.progress_screen": "Π•ΠΊΡ€Π°Π½ прогрСсу", + "block.ftbquests.chest": "Бкриня квСстів", + "block.ftbquests.chest.transfer_all": "АвтоматичнС пСрСміщСння всіх ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²", + "block.ftbquests.chest.input": "Π’Ρ…Ρ–Π΄Π½ΠΈΠΉ слот", + "block.ftbquests.chest.input_desc": "Π ΠΎΠ·ΠΌΡ–ΡΡ‚Ρ–Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Ρ‚ΡƒΡ‚ для Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ квСстів", + "block.ftbquests.chest.output": "Π’ΠΈΡ…Ρ–Π΄Π½ΠΈΠΉ слот", + "block.ftbquests.chest.output_desc": "Нагороди Π·'ΡΠ²Π»ΡΡ‚ΡŒΡΡ Ρ‚ΡƒΡ‚", + "block.ftbquests.loot_crate_storage": "Π‘Ρ…ΠΎΠ²ΠΈΡ‰Π΅ лутбоксів", + "block.ftbquests.loot_crate_opener": "Π’Ρ–Π΄ΠΊΡ€ΠΈΠ²Π°Ρ‡ лутбоксів", + "block.ftbquests.loot_crate_opener.rightclick": "Π—Π±Π΅Ρ€Π΅ΠΆΠ΅Π½Ρ– ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ: %d", + "item.ftbquests.book": "Книга квСстів", + "item.ftbquests.missing_item": "Відсутній ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚", + "item.ftbquests.barrier.rightclick": "ПКМ, Ρ‰ΠΎΠ± Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ ΠΊΠΎΠ½Ρ„Ρ–Π³ΡƒΡ€Π°Ρ†Ρ–ΡŽ\nБКМ, Ρ‰ΠΎΠ± ΠΎΠ±Ρ€Π°Ρ‚ΠΈ ΠΊΠΎΠΏΡ–ΡŽ, Π²ΠΊΠ»ΡŽΡ‡Π½ΠΎ Π· Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½ΡΠΌΠΈ", + "item.ftbquests.barrier.object.quest_barrier": "ΠΠ°Π»Π°ΡˆΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ квСст: %s", + "item.ftbquests.barrier.object.stage_barrier": "ΠΠ°Π»Π°ΡˆΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ Π΅Ρ‚Π°ΠΏ: %s", + "item.ftbquests.barrier.skin": "Π—'ΡΠ²Π»ΡΡ”Ρ‚ΡŒΡΡ як: %s", + "item.ftbquests.barrier.invis_when_open": "НСвидимий, ΠΊΠΎΠ»ΠΈ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΎ: %s", + "item.ftbquests.book.tooltip": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ ПКМ, Ρ‰ΠΎΠ± Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Π²Ρ–ΠΊΠ½ΠΎ квСсту", + "item.ftbquests.book.disabled": "Π“Ρ€Π°Ρ„Ρ–Ρ‡Π½ΠΈΠΉ інтСрфСйс ΠΊΠ½ΠΈΠ³ΠΈ квСстів Π²ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ!", + "item.ftbquests.lootcrate": "Лутбокс", + "item.ftbquests.lootcrate.tooltip_1": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ ПКМ, Ρ‰ΠΎΠ± Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ", + "item.ftbquests.lootcrate.tooltip_2": "ΠŸΡ€ΠΈΡΡΠ΄ΡŒΡ‚Π΅ Ρ‚Π° ΠΊΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ ПКМ, Ρ‰ΠΎΠ± Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ всі Π² Ρ€ΡƒΡ†Ρ–", + "item.ftbquests.lootcrate.missing": "ΠŸΠžΠœΠ˜Π›ΠšΠ: Π½Π΅Π²Ρ–Π΄ΠΎΠΌΠΈΠΉ лутбокс '%s'!", + "item.ftbquests.custom_icon": "Π‘ΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½Π° Ρ–ΠΊΠΎΠ½ΠΊΠ°", + "item.ftbquests.custom_icon.tooltip": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ ПКМ Π½Π° 'Π†ΠΊΠΎΠ½ΠΊΠ°' Π² Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€Ρ–, Ρ‰ΠΎΠ± Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Π²ΠΈΠ±Ρ–Ρ€ ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΎΠ³ΠΎ зобраТСння", + "item.ftbquests.task_screen_configurator": "ΠšΠΎΠ½Ρ„Ρ–Π³ΡƒΡ€Π°Ρ‚ΠΎΡ€ Π΅ΠΊΡ€Π°Π½Π° завдань", + "item.ftbquests.task_screen_configurator.tooltip": "ΠŸΡ€ΠΈΡΡΠ΄ΡŒΡ‚Π΅ Ρ‚Π° ΠΊΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ ПКМ ΠΏΠΎ Π±Π»ΠΎΠΊΡƒ Π΅ΠΊΡ€Π°Π½Π° завдань, Ρ‰ΠΎΠ± ΠΏΡ€ΠΈΠ²'язати", + "ftbquests.rarity.common": "Π—Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ", + "ftbquests.rarity.uncommon": "НСзвичайний", + "ftbquests.rarity.rare": "Рідкісний", + "ftbquests.rarity.epic": "Π•ΠΏΡ–Ρ‡Π½ΠΈΠΉ", + "ftbquests.rarity.legendary": "Π›Π΅Π³Π΅Π½Π΄Π°Ρ€Π½ΠΈΠΉ", + "ftbquests.raymatcher.block_id": "ID Π±Π»ΠΎΠΊΡƒ", + "ftbquests.raymatcher.block_entity_id": "ID Π±Π»ΠΎΠΊΡƒ-сутності", + "ftbquests.raymatcher.block_entity_class": "Клас Π±Π»ΠΎΠΊΡƒ-сутності", + "ftbquests.raymatcher.entity_id": "ID сутності", + "ftbquests.raymatcher.entity_class": "Клас сутності", + "itemGroup.ftbquests.ftbquests": "FTB Quests", + "sidebar_button.ftbquests.quests": "ΠšΠ²Π΅ΡΡ‚ΠΈ", + "sidebar_button.ftbquests.quests.no_team": "ΠŸΡ€ΠΈΡ”Π΄Π½Π°ΠΉΡ‚Π΅ΡΡ Π΄ΠΎ ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ, Ρ‰ΠΎΠ± Π²ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈ квСсти Ρ€Π°Π·ΠΎΠΌ!", + "key.categories.ftbquests": "FTB Quests", + "key.ftbquests.quests": "Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ квСсти", + "ftbquests.unnamed": "Π‘Π΅Π· Ρ–ΠΌΠ΅Π½Ρ–", + "ftbquests.team": "Команда", + "ftbquests.progress": "ΠŸΡ€ΠΎΠ³Ρ€Π΅Ρ", + "ftbquests.title": "Π—Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ", + "ftbquests.task_title": "Π—Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ завдання", + "ftbquests.title.tooltip": "Π‘ΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΈΠΉ Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ", + "ftbquests.icon": "Π†ΠΊΠΎΠ½ΠΊΠ°", + "ftbquests.icon.tooltip": "Π‘ΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½Π° Ρ–ΠΊΠΎΠ½ΠΊΠ°\nΠ›ΠšΠœ: ΠΎΠ±Ρ€Π°Ρ‚ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚\nПКМ: ΠΎΠ±Ρ€Π°Ρ‚ΠΈ тСкстуру", + "ftbquests.tags": "Π’Π΅Π³ΠΈ", + "ftbquests.tags.tooltip": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для Ρ‚Π΅ΠΌ Ρ‚Π° ΠΏΠΎΠ΄Ρ–ΠΉ KubeJS", + "ftbquests.completion_command": "Команда Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ", + "ftbquests.dependencies": "ЗалСТності", + "ftbquests.dependency": "Π—Π°Π»Π΅ΠΆΠ½Ρ–ΡΡ‚ΡŒ", + "ftbquests.null": "НСмає", + "ftbquests.disable_completion_toast": "Π’ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ сповіщСння ΠΏΡ€ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ", + "ftbquests.file": "Модпак", + "ftbquests.file.completed": "Усі Ρ€ΠΎΠ·Π΄Ρ–Π»ΠΈ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ!", + "ftbquests.file.allow_take_quest_blocks": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ Π±Ρ€Π°Ρ‚ΠΈ квСстові Π±Π»ΠΎΠΊΠΈ", + "ftbquests.file.allow_take_quest_blocks.tooltip": "Π”ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ квСстові Π±Π»ΠΎΠΊΠΈ Π· інтСрфСйсу квСстів.", + "ftbquests.file.emergency_items": "Аварійні ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ", + "ftbquests.file.emergency_items.get_items": "ΠžΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ", + "ftbquests.file.emergency_items_cooldown": "Час відновлСння Π°Π²Π°Ρ€Ρ–ΠΉΠ½ΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²", + "ftbquests.file.emergency_items_cooldown.tooltip": "Π’Π°ΠΉΠΌΠ΅Ρ€ часу для ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎΠ³ΠΎ Π·'явлСння Π°Π²Π°Ρ€Ρ–ΠΉΠ½ΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π².", + "ftbquests.file.defaults": "УсталСно", + "ftbquests.file.defaults.reward_team": "Командна Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π° Ρƒ завданнях", + "ftbquests.file.defaults.consume_items": "БпоТивання ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Ρƒ завданнях", + "ftbquests.file.defaults.autoclaim_rewards": "Автоматична Π²ΠΈΠ΄Π°Ρ‡Π° Π½Π°Π³ΠΎΡ€ΠΎΠ΄ΠΈ", + "ftbquests.file.defaults.quest_shape": "Π€ΠΎΡ€ΠΌΠ° квСсту", + "ftbquests.file.defaults.quest_disable_jei": "ΠŸΠ΅Ρ€Π΅Π³Π»ΡΠ΄ JEI Ρ‡Π΅Ρ€Π΅Π· квСсти'", + "ftbquests.file.drop_loot_crates": "Бутності ΡΠΊΠΈΠ΄Π°ΡŽΡ‚ΡŒ лутбокси", + "ftbquests.file.loot_crate_no_drop": "Лутбокси сутностСй ΡΠΊΠΈΠ΄Π°ΡŽΡ‚ΡŒ ΠΏΠΎΡ€ΠΎΠΆΠ½ΡŽ Π²Π°Π³Ρƒ", + "ftbquests.file.disable_gui": "Π’ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π³Ρ€Π°Ρ„Ρ–Ρ‡Π½ΠΈΠΉ інтСрфСйс", + "ftbquests.file.full_screen_quest_view": "ΠŸΠΎΠ²Π½ΠΎΠ΅ΠΊΡ€Π°Π½Π½ΠΈΠΉ пСрСгляд квСсту", + "ftbquests.file.grid_scale": "ΠœΠ°ΡΡˆΡ‚Π°Π± сітки", + "ftbquests.file.lock_message": "ΠŸΠΎΠ²Ρ–Π΄ΠΎΠΌΠ»Π΅Π½Π½Ρ блокування", + "ftbquests.file.progression_mode": "Π Π΅ΠΆΠΈΠΌ прогрСсу", + "ftbquests.file.pause_game": "ΠŸΠ°ΡƒΠ·Π° Π² Π³Ρ€Ρ– Π½Π° Π΅ΠΊΡ€Π°Π½Ρ– квСстів", + "ftbquests.file.pause_game.tooltip": "НС Π·Π°ΡΡ‚ΠΎΡΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Π΄ΠΎ Π±Π°Π³Π°Ρ‚ΠΎΠΊΠΎΡ€ΠΈΡΡ‚ΡƒΠ²Π°Ρ†ΡŒΠΊΠΈΡ… Ρ–Π³ΠΎΡ€", + "ftbquests.file.detection_delay": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½ΠΈΠΉ Ρ–Π½Ρ‚Π΅Ρ€Π²Π°Π» Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ виявлСння ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²", + "ftbquests.file.drop_book_on_death": "Π‘ΠΊΠΈΠ΄Π°Ρ‚ΠΈ ΠΊΠ½ΠΈΠ³Ρƒ квСстів FTB Ρƒ Ρ€Π°Π·Ρ– смСрті", + "ftbquests.file.hide_excluded_quests": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ квСсти Ρƒ Π²ΠΈΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ… лініях квСстів", + "ftbquests.file.hide_excluded_quests.tooltip": "Π―ΠΊΡ‰ΠΎ встановлСно false, Π²ΠΈΠΊΠ»ΡŽΡ‡Π΅Π½Ρ– квСсти Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒΡΡ, Π°Π»Π΅ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π·Π°Ρ‚Π΅ΠΌΠ½Π΅Π½ΠΈΠΌΠΈ", + "ftbquests.file.fallback_locale": "Π Π΅Π·Π΅Ρ€Π²Π½Π° локалізація", + "ftbquests.file.fallback_locale.tooltip": "Мова, Ρ‰ΠΎ виступає основою для ΠΏΠ΅Ρ€Π΅ΠΊΠ»Π°Π΄Ρ–Π², яких Π½Π΅ΠΌΠ°Ρ” Π² ΠΏΠΎΡ‚ΠΎΡ‡Π½Ρ–ΠΉ Π»ΠΎΠΊΠ°Π»Ρ–Π·Π°Ρ†Ρ–Ρ—\nΠ¦Π΅ ΠΌΠΎΠΆΠ½Π° Π·ΠΌΡ–Π½ΠΈΡ‚ΠΈ Π½Π° ΠΊΠ»Ρ–Ρ”Π½Ρ‚Ρ– Π² Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½ΡΡ… гравця\nΠ―ΠΊΡ‰ΠΎ ΠΏΠΎΠ»Π΅ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ”, усталСно Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ 'en_us'", + "ftbquests.file.detection_delay.tooltip": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½ΠΈΠΉ Ρ–Π½Ρ‚Π΅Ρ€Π²Π°Π» (Ρƒ Ρ‚Π°ΠΊΡ‚Π°Ρ…) ΠΌΡ–ΠΆ ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€ΠΊΠ°ΠΌΠΈ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€ΡŽ гравця, ΠΊΠΎΠ»ΠΈ Π²Ρ–Π½ Π·ΠΌΡ–Π½ΡŽΡ”Ρ‚ΡŒΡΡ. Π’ΠΈΡ‰Ρ– значСння Π±Ρ–Π»ΡŒΡˆ корисні для TPS сСрвСра, особливо якщо Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€ Π³Ρ€Π°Π²Ρ†Ρ–Π² Π·ΠΌΡ–Π½ΡŽΡ”Ρ‚ΡŒΡΡ часто, Π°Π»Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ” Π΄ΠΎΠ²ΡˆΡ– Π·Π°Ρ‚Ρ€ΠΈΠΌΠΊΠΈ для ΠΏΠΎΠ²Ρ–Π΄ΠΎΠΌΠ»Π΅Π½ΡŒ ΠΏΡ€ΠΎ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ квСсту.", + "ftbquests.chapter.misc.progression_mode": "УсталСний 'Π Π΅ΠΆΠΈΠΌ прогрСсу'", + "ftbquests.chapter.misc.default_repeatable": "УсталСний 'ΠŸΠΎΠ²Ρ‚ΠΎΡ€ΡŽΠ²Π°Π½ΠΈΠΉ квСст'", + "ftbquests.chapter.misc.consume_items": "УсталСнС 'БпоТивання ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²'", + "ftbquests.file.progression_mode.tooltip": "Π›Ρ–Π½Ρ–ΠΉΠ½ΠΈΠΉ: квСст ΠΏΠΎΠ²ΠΈΠ½Π΅Π½ Π±ΡƒΡ‚ΠΈ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΈΠΉ, ΠΏΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π½ΡƒΡ‚ΡŒΡΡ Π·Π°Π»Π΅ΠΆΠ½Ρ– квСсти. Π“Π½ΡƒΡ‡ΠΊΠΈΠΉ: завдання Π² Π·Π°Π»Π΅ΠΆΠ½ΠΈΡ… квСстах ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ Π²ΠΈΠΊΠΎΠ½Π°Π½Ρ– Π² Π±ΡƒΠ΄ΡŒ-який час, Π°Π»Π΅ Π·Π°Π»Π΅ΠΆΠ½Ρ– квСсти Π½Π΅ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Ρ–, ΠΏΠΎΠΊΠΈ Π·Π°Π»Π΅ΠΆΠ½Ρ–ΡΡ‚ΡŒ Π½Π΅ Π±ΡƒΠ΄Π΅ Π²ΠΈΠΊΠΎΠ½Π°Π½Π°", + "ftbquests.file.progression_mode.default": "УсталСно", + "ftbquests.file.progression_mode.linear": "Π›Ρ–Π½Ρ–ΠΉΠ½ΠΈΠΉ", + "ftbquests.file.progression_mode.flexible": "Π“Π½ΡƒΡ‡ΠΊΠΈΠΉ", + "ftbquests.loot.entitydrops": "Випадання ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π²Ρ–Π΄ сутностСй", + "ftbquests.loot.entitytype.passive": "Пасивний", + "ftbquests.loot.entitytype.monster": "ΠœΠΎΠ½ΡΡ‚Ρ€", + "ftbquests.loot.entitytype.boss": "Бос", + "ftbquests.chapter": "Π ΠΎΠ·Π΄Ρ–Π»", + "ftbquests.chapters": "Π ΠΎΠ·Π΄Ρ–Π»ΠΈ", + "ftbquests.chapter.completed": "Π ΠΎΠ·Π΄Ρ–Π» Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ!", + "ftbquests.chapter.subtitle": "ΠŸΡ–Π΄Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ", + "ftbquests.chapter.visibility.always_invisible": "Π—Π°Π²ΠΆΠ΄ΠΈ Π½Π΅Π²ΠΈΠ΄ΠΈΠΌΠΈΠΉ", + "ftbquests.chapter.group": "Π“Ρ€ΡƒΠΏΠ°", + "ftbquests.chapter.appearance.default_quest_shape": "УсталСна Ρ„ΠΎΡ€ΠΌΠ° квСсту", + "ftbquests.chapter.appearance.default_quest_size": "УсталСний Ρ€ΠΎΠ·ΠΌΡ–Ρ€ квСсту", + "ftbquests.chapter.visibility.default_hide_dependency_lines": "УсталСно 'ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ Π»Ρ–Π½Ρ–Ρ— залСТності'", + "ftbquests.chapter.image": "ЗобраТСння", + "ftbquests.chapter.image.x": "X", + "ftbquests.chapter.image.y": "Y", + "ftbquests.chapter.image.width": "Π¨ΠΈΡ€ΠΈΠ½Π°", + "ftbquests.chapter.image.height": "Висота", + "ftbquests.chapter.image.align": "Π’ΠΈΡ€Ρ–Π²Π½ΡŽΠ²Π°Π½Π½Ρ", + "ftbquests.chapter.image.fit": "ΠŸΡ–Π΄Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Π΄ΠΎ ΡˆΠΈΡ€ΠΈΠ½ΠΈ ΠΏΠ°Π½Π΅Π»Ρ–?", + "ftbquests.chapter.image.rotation": "ΠžΠ±Π΅Ρ€Ρ‚Π°Π½Π½Ρ", + "ftbquests.chapter.image.image": "ЗобраТСння", + "ftbquests.chapter.image.color": "Вонування зобраТСння", + "ftbquests.chapter.image.alpha": "ΠŸΡ€ΠΎΠ·ΠΎΡ€Ρ–ΡΡ‚ΡŒ зобраТСння", + "ftbquests.chapter.image.order": "ΠŸΠΎΡ€ΡΠ΄ΠΎΠΊ Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΡŒ", + "ftbquests.chapter.image.order.tooltip": "ΠŸΠΎΡ€ΡΠ΄ΠΎΠΊ, Ρƒ якому малюнки Π² ΠΎΠ΄Π½ΠΎΠΌΡƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– ΠΌΠ°Π»ΡŽΡŽΡ‚ΡŒΡΡ. Малюнки Π²ΠΈΡ‰ΠΎΠ³ΠΎ порядку ΠΌΠ°Π»ΡŽΡŽΡ‚ΡŒΡΡ Π½Π°Π΄ Π½ΠΈΠΆΡ‡ΠΈΠΌΠΈ.", + "ftbquests.chapter.image.hover": "ВСкст ΠΏΡ€ΠΈ Π½Π°Π²Π΅Π΄Π΅Π½Π½Ρ–", + "ftbquests.chapter.image.hover.tooltip": "Π’ΡƒΡ‚ ΠΌΠΎΠΆΠ½Π° використовувати тСкст Π°Π±ΠΎ ΠΊΠ»ΡŽΡ‡Ρ– ΠΏΠ΅Ρ€Π΅ΠΊΠ»Π°Π΄Ρƒ", + "ftbquests.chapter.image.click": "ΠšΠ»Ρ–ΠΊ", + "ftbquests.chapter.image.click.tooltip": "Π—Π°Π±Π΅Π·ΠΏΠ΅Ρ‡Ρ‚Π΅ ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½Ρƒ Ρ„ΡƒΠ½ΠΊΡ†Ρ–ΠΎΠ½Π°Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ ΠΏΡ€ΠΈ ΠΊΠ»Ρ–ΠΊΡƒ Π½Π° зобраТСння:\nβ€’ Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ сторінку Π°Π±ΠΎ Ρ„Π°ΠΉΠ» Π· URL http://, https:// Π°Π±ΠΎ file:///\nβ€’ Π’ΠΈΠΊΠΎΠ½Π°Ρ‚ΠΈ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ Π· 'command:'\nβ€’ ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π΄ΠΎ квСсту Π· '#' (використовуйтС ΠšΠΎΠΏΡ–ΡŽΠ²Π°Ρ‚ΠΈ ID для отримання ID квСстів)\nβ€’ Π’ΠΈΠΊΠ»ΠΈΠΊΠ°Ρ‚ΠΈ CustomClickEvent (для KubeJS Π°Π±ΠΎ Ρ–Π½ΡˆΠΈΡ… ΠΌΠΎΠ΄Ρ–Π²) Π· 'custom:'", + "ftbquests.chapter.image.dev": "Π’ΠΈΠ΄ΠΈΠΌΠΈΠΉ лишС Ρƒ Ρ€Π΅ΠΆΠΈΠΌΡ– рСдагування", + "ftbquests.chapter.image.corner": "ΠžΠ±Π΅Ρ€Ρ‚Π°Ρ‚ΠΈ Ρ‚Π° Π·ΠΌΡ–Ρ‰ΡƒΠ²Π°Ρ‚ΠΈ Π· ΠΊΡƒΡ‚Π°", + "ftbquests.chapter.appearance.default_min_width": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Π° усталСна ΡˆΠΈΡ€ΠΈΠ½Π° Π²Ρ–ΠΊΠ½Π° Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΎΠ³ΠΎ квСсту", + "ftbquests.chapter.visibility.hide_quest_details_until_startable": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ Π΄Π΅Ρ‚Π°Π»Ρ– квСсту, Π΄ΠΎΠΊΠΈ ΠΉΠΎΠ³ΠΎ Π½Π΅ ΠΌΠΎΠΆΠ½Π° Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ", + "ftbquests.chapter.visibility.hide_quest_until_deps_complete": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ квСсти, Π΄ΠΎΠΊΠΈ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Ρ– залСТності", + "ftbquests.chapter.visibility.hide_quest_until_deps_visible": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ квСсти, Π΄ΠΎΠΊΠΈ Π½Π΅ ΡΡ‚Π°Π½ΡƒΡ‚ΡŒ Π²ΠΈΠ΄ΠΈΠΌΠΈΠΌΠΈ залСТності", + "ftbquests.quest": "ΠšΠ²Π΅ΡΡ‚", + "ftbquests.quests": "ΠšΠ²Π΅ΡΡ‚ΠΈ", + "ftbquests.quest.completed": "ΠšΠ²Π΅ΡΡ‚ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ!", + "ftbquests.quest.copied": "Π‘ΠΊΠΎΠΏΡ–ΠΉΠΎΠ²Π°Π½ΠΈΠΉ ΠΎΠ±'Ρ”ΠΊΡ‚:", + "ftbquests.quest.cannot_copy_many": "ΠšΠΎΠΏΡ–ΡŽΠ²Π°Π½Π½Ρ Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠΎΡ… ΠΎΠ±'Ρ”ΠΊΡ‚Ρ–Π² Π½Π΅ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ”Ρ‚ΡŒΡΡ!", + "ftbquests.quest.appearance": "Π—ΠΎΠ²Π½Ρ–ΡˆΠ½Ρ–ΠΉ вигляд", + "ftbquests.quest.dependencies": "ЗалСТності", + "ftbquests.quest.misc": "Π Ρ–Π·Π½Π΅", + "ftbquests.quest.visibility": "Π’ΠΈΠ΄ΠΈΠΌΡ–ΡΡ‚ΡŒ", + "ftbquests.quest.subtitle": "ΠŸΡ–Π΄Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ", + "ftbquests.quest.description": "Опис", + "ftbquests.quest.appearance.x": "X", + "ftbquests.quest.appearance.y": "Y", + "ftbquests.quest.appearance.size": "Π ΠΎΠ·ΠΌΡ–Ρ€", + "ftbquests.quest.appearance.size.tooltip": "0 ΠΎΠ·Π½Π°Ρ‡Π°Ρ” використання усталСного Ρ€ΠΎΠ·ΠΌΡ–Ρ€Ρƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ", + "ftbquests.quest.appearance.icon_scale": "ΠœΠ°ΡΡˆΡ‚Π°Π± Ρ–ΠΊΠΎΠ½ΠΊΠΈ", + "ftbquests.quest.appearance.icon_scale.tooltip": "НСзалСТно Π²Ρ–Π΄ загального Ρ€ΠΎΠ·ΠΌΡ–Ρ€Ρƒ ΠΊΠ½ΠΎΠΏΠΊΠΈ", + "ftbquests.quest.visibility.hide_until_deps_complete": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ квСст, ΠΏΠΎΠΊΠΈ залСТності Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Ρ–", + "ftbquests.quest.visibility.hide_until_deps_visible": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ квСст, ΠΏΠΎΠΊΠΈ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚Ρ– залСТності Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π²ΠΈΠ΄ΠΈΠΌΠΈΠΌΠΈ", + "ftbquests.quest.appearance.shape": "Π€ΠΎΡ€ΠΌΠ°", + "ftbquests.quest_link.shape": "Π€ΠΎΡ€ΠΌΠ°", + "ftbquests.quest_link.size": "Π ΠΎΠ·ΠΌΡ–Ρ€", + "ftbquests.quest_link.x": "X", + "ftbquests.quest_link.y": "Y", + "ftbquests.quest.shape.default": "УсталСна", + "ftbquests.quest.shape.circle": "Коло", + "ftbquests.quest.shape.square": "ΠšΠ²Π°Π΄Ρ€Π°Ρ‚", + "ftbquests.quest.shape.diamond": "Π ΠΎΠΌΠ±", + "ftbquests.quest.shape.rsquare": "Π‘ΠΊΡ€ΡƒΠ³Π»Π΅Π½ΠΈΠΉ ΠΊΠ²Π°Π΄Ρ€Π°Ρ‚", + "ftbquests.quest.shape.pentagon": "П'ятикутник", + "ftbquests.quest.shape.hexagon": "ШСстикутник", + "ftbquests.quest.shape.octagon": "Π’ΠΎΡΡŒΠΌΠΈΠΊΡƒΡ‚Π½ΠΈΠΊ", + "ftbquests.quest.shape.heart": "Π‘Π΅Ρ€Ρ†Π΅", + "ftbquests.quest.shape.gear": "ШСстСрня", + "ftbquests.quest.shape.none": "ΠŸΡ€ΠΎΠ·ΠΎΡ€Π°", + "ftbquests.quest.misc.can_repeat": "ΠŸΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΈΠΉ квСст", + "ftbquests.quest.misc.exclusive": "Π•ΠΊΡΠΊΠ»ΡŽΠ·ΠΈΠ²Π½Π° Π³Ρ–Π»ΠΊΠ° квСстів", + "ftbquests.quest.misc.exclusive.desc": "Виконання завдання квСсту Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ Ρ–Π½ΡˆΡ– Π³Ρ–Π»ΠΊΠΈ нСдоступними", + "ftbquests.quest.tasks_ignore_dependencies": "Π†Π³Π½ΠΎΡ€ΡƒΠ²Π°Ρ‚ΠΈ залСТності Π·Π°Π΄Π°Ρ‡", + "ftbquests.quest.tasks_ignore_dependencies.tooltip": "Дозволяє ΠΏΠΎΡ‡ΠΈΠ½Π°Ρ‚ΠΈ Π·Π°Π΄Π°Ρ‡Ρ– Π±Π΅Π· Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ залСТностСй", + "ftbquests.quest.dependencies.dependency_requirement": "Π’ΠΈΠΌΠΎΠ³Π° залСТностСй", + "ftbquests.quest.dependency_requirement.tooltip": "Π†Π³Π½ΠΎΡ€ΡƒΡ”Ρ‚ΡŒΡΡ, якщо ΠΌΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½ΠΎ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ залСТностСй > 0", + "ftbquests.quest.dependency_requirement.all_completed": "Всі Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Ρ–", + "ftbquests.quest.dependency_requirement.one_completed": "Одна Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π°", + "ftbquests.quest.dependency_requirement.all_started": "Всі ΠΏΠΎΡ‡Π°Ρ‚Ρ–", + "ftbquests.quest.dependency_requirement.one_started": "Одна ΠΏΠΎΡ‡Π°Ρ‚Π°", + "ftbquests.quest.misc.guide_page": "Π‘Ρ‚ΠΎΡ€Ρ–Π½ΠΊΠ° посібника", + "ftbquests.quest.dependencies.hide_dependency_lines": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ Π»Ρ–Π½Ρ–Ρ— залСТностСй", + "ftbquests.quest.hide_dependency_lines.tooltip": "ΠšΠ΅Ρ€ΡƒΡ” відобраТСнням Π»Ρ–Π½Ρ–ΠΉ залСТностСй Π²Ρ–Π΄ квСстів, які Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΠΎΠ²ΡƒΡŽΡ‚ΡŒ Ρ†Π΅ΠΉ", + "ftbquests.quest.dependencies.hide_dependent_lines": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ Π»Ρ–Π½Ρ–Ρ— Π·Π°Π»Π΅ΠΆΠ½ΠΈΡ…", + "ftbquests.quest.dependencies.hide_dependent_lines.tooltip": "ΠšΠ΅Ρ€ΡƒΡ” відобраТСнням Π»Ρ–Π½Ρ–ΠΉ залСТностСй Π²Ρ–Π΄ квСстів, які Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΠΎΠ²Π°Π½Ρ– Ρ†ΠΈΠΌ", + "ftbquests.quest.dependencies.max_completable_dependents": "ΠœΠ°ΠΊΡΠΈΠΌΡƒΠΌ Π²ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Π½ΠΈΡ… залСТностСй", + "ftbquests.quest.dependencies.max_completable_dependents.tooltip": "Π―ΠΊΡ‰ΠΎ > 0, ΠΌΠΎΠΆΠ½Π° Π²ΠΈΠΊΠΎΠ½Π°Ρ‚ΠΈ Π½Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅ Ρ†Ρ–Ρ”Ρ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– залСТностСй, після яких Ρ–Π½ΡˆΡ– Π½Π΅Π²ΠΈΠΊΠΎΠ½Π°Π½Ρ– Π·Π°Π»Π΅ΠΆΠ½Ρ– квСсти ΡΡ‚Π°ΡŽΡ‚ΡŒ нСдоступними\nΠšΠΎΡ€ΠΈΡΠ½ΠΎ для створСння Π΅ΠΊΡΠΊΠ»ΡŽΠ·ΠΈΠ²Π½ΠΈΡ… Π³Ρ–Π»ΠΎΠΊ Ρƒ Π»Π°Π½Ρ†ΡŽΠΆΠΊΡƒ квСстів", + "ftbquests.quest.dependencies.min_required_dependencies": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Π° ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΡ… залСТностСй", + "ftbquests.quest.min_required_dependencies.tooltip": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ встановитС Ρ†Π΅ Π½Π° значСння Π±Ρ–Π»ΡŒΡˆΠΈΠΌ Π·Π° 0, Ρ†Π΅ станС ΠšΠ’Π•Π‘Π’ΠžΠœ ΠΠ‘Πž, Π΄Π΅ для ΠΉΠΎΠ³ΠΎ розблокування ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Π° лишС ΠΏΠ΅Π²Π½Π° ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ залСТностСй", + "ftbquests.quest.visibility.hide_text_until_complete": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ опис Π΄ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ квСсту", + "ftbquests.quest.visibility.hide_text_until_complete.tooltip": "Π”Π΅Ρ‚Π°Π»Ρ– квСсту ΠΌΠΎΠΆΠ½Π° Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ, Π°Π»Π΅ опис Π½Π΅ Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ, ΠΏΠΎΠΊΠΈ квСст Π½Π΅ Π±ΡƒΠ΄Π΅ Π²ΠΈΠΊΠΎΠ½Π°Π½ΠΎ", + "ftbquests.quest.visibility.hide_lock_icon": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ Π·Π½Π°Ρ‡ΠΎΠΊ Π·Π°ΠΌΠΊΠ°", + "ftbquests.quest.visibility.hide_lock_icon.tooltip": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ Π·Π½Π°Ρ‡ΠΎΠΊ Π·Π°ΠΌΠΊΠ°, який Π·Π°Π·Π²ΠΈΡ‡Π°ΠΉ Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ”Ρ‚ΡŒΡΡ, ΠΊΠΎΠ»ΠΈ квСст Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΎ Ρ‡Π΅Ρ€Π΅Π· Π·Π°Π»Π΅ΠΆΠ½Ρ–ΡΡ‚ΡŒ", + "ftbquests.quest.misc.disable_jei": "Π’ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ JEI", + "ftbquests.quest.misc.optional": "Π”ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΠΉ квСст", + "ftbquests.quest.misc.optional_task": "Π”ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Π° Π·Π°Π΄Π°Ρ‡Π°", + "ftbquests.quest.locked": "Π—Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΎ: Π½Π΅Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ залСТності", + "ftbquests.quest.locked.excluded": "Π—Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΎ: Π²ΠΈΠΊΠ»ΡŽΡ‡Π΅Π½ΠΎ Ρ–Π½ΡˆΠΎΡŽ Π»Ρ–Π½Ρ–Ρ”ΡŽ квСстів", + "ftbquests.quest.appearance.min_width": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Π° ΡˆΠΈΡ€ΠΈΠ½Π° Π²Ρ–ΠΊΠ½Π° Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΎΠ³ΠΎ квСсту", + "ftbquests.quest.misc.ignore_reward_blocking": "Π†Π³Π½ΠΎΡ€ΡƒΠ²Π°Ρ‚ΠΈ блокування Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄", + "ftbquests.quest.misc.ignore_reward_blocking.tooltip": "ΠŸΡ€ΠΎΠΏΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Ρƒ(ΠΈ) квСсту Π½Π°Π²Ρ–Ρ‚ΡŒ якщо Π²ΠΎΠ½ΠΈ Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½Ρ– для ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ Π·Π° допомогою ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ '/ftbquests block_rewards'", + "ftbquests.quest.visibility.invisible": "НСвидимий Π΄ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ", + "ftbquests.quest.visibility.invisible.tooltip": "ΠšΠ²Π΅ΡΡ‚ Π½Π΅Π²ΠΈΠ΄ΠΈΠΌΠΈΠΉ для Π³Ρ€Π°Π²Ρ†Ρ–Π² Π΄ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ.\nΠšΠΎΡ€ΠΈΡΠ½ΠΎ для \"ΠΏΠ°ΡΡ…Π°Π»ΡŒΠ½ΠΈΡ… ΡΡ”Ρ†ΡŒ\" Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΡ… квСстів.", + "ftbquests.quest.visibility.invisible_until_tasks": "НСвидимий Π΄ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ X Π·Π°Π΄Π°Ρ‡", + "ftbquests.quest.visibility.invisible_until_tasks.tooltip": "Π—Π°ΡΡ‚ΠΎΡΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ лишС якщо НСвидимий встановлСно Π² true.\nΠ―ΠΊΡ‰ΠΎ > 0, квСст стає Π²ΠΈΠ΄ΠΈΠΌΠΈΠΌ, якщо Π²ΠΈΠΊΠΎΠ½Π°Π½ΠΎ X Π°Π±ΠΎ Π±Ρ–Π»ΡŒΡˆΠ΅ Π·Π°Π΄Π°Ρ‡.", + "ftbquests.quest.min_required_header": "%d ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ", + "ftbquests.quest.hidden_quests_footer": "%d ΠΏΡ€ΠΈΡ…ΠΎΠ²Π°Π½ΠΎ", + "ftbquests.quest.misc.progression_mode": "Π Π΅ΠΆΠΈΠΌ прогрСсу", + "ftbquests.quest.misc.require_sequential_tasks": "ΠŸΠΎΡΠ»Ρ–Π΄ΠΎΠ²Π½Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ завдань", + "ftbquests.quest.misc.require_sequential_tasks.tooltip": "Коли true, завдання ΠΏΠΎΠ²ΠΈΠ½Π½Ρ– Π±ΡƒΡ‚ΠΈ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Ρ– Π² строгому порядку, Π² якому Π²ΠΎΠ½ΠΈ Π±ΡƒΠ»ΠΈ Π΄ΠΎΠ΄Π°Π½Ρ– Π΄ΠΎ квСсту\nΠ—Π° замовчуванням Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ", + "ftbquests.chapter.misc.require_sequential_tasks": "ΠŸΠΎΡΠ»Ρ–Π΄ΠΎΠ²Π½Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ завдань", + "ftbquests.chapter.misc.require_sequential_tasks.tooltip": "Π―ΠΊΡ‰ΠΎ встановлСно значСння true, завдання ΠΏΠΎΠ²ΠΈΠ½Π½Ρ– Π±ΡƒΡ‚ΠΈ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Ρ– Π² строгому порядку, Π² якому Π²ΠΎΠ½ΠΈ Π±ΡƒΠ»ΠΈ Π΄ΠΎΠ΄Π°Π½Ρ– Π΄ΠΎ квСсту", + "ftbquests.chapter.misc.autofocus_id": "Автофокус ID квСсту", + "ftbquests.chapter.misc.autofocus_id.tooltip": "Π―ΠΊΡ‰ΠΎ Π½Π΅ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ”, ΠΏΠΎΠ²ΠΈΠ½Π½ΠΎ Π±ΡƒΡ‚ΠΈ ID квСсту Π°Π±ΠΎ посилання Π½Π° квСст (використовуйтС ΠšΠΎΠΏΡ–ΡŽΠ²Π°Ρ‚ΠΈ ID квСсту для отримання).\nΠŸΡ€ΠΈ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚Ρ‚Ρ– Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ панСль Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Ρ†Π΅Π½Ρ‚Ρ€ΡƒΡ” Π²ΠΈΠ΄ Π½Π° Ρ†Π΅ΠΉ квСст", + "ftbquests.quest.visibility.hide_details_until_startable": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ Π΄Π΅Ρ‚Π°Π»Ρ– Π΄ΠΎ моТливості ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ", + "ftbquests.quest.visibility.hide_details_until_startable.tooltip": "Π―ΠΊΡ‰ΠΎ true, Ρ‚ΠΎ Π΄Π΅Ρ‚Π°Π»Ρ– квСсту (тСкст Ρ‚Π° завдання) Π½Π΅ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ пСрСглянуті, ΠΏΠΎΠΊΠΈ квСст Π½Π΅ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈΠΉ", + "ftbquests.chapter_group": "Π“Ρ€ΡƒΠΏΠ° Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ–Π²", + "ftbquests.quest_link": "Посилання Π½Π° квСст", + "ftbquests.chapter_groups": "Π“Ρ€ΡƒΠΏΠΈ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ–Π²", + "ftbquests.gui.image.width": "Π¨ΠΈΡ€ΠΈΠ½Π° зобраТСння", + "ftbquests.gui.image.height": "Висота зобраТСння", + "ftbquests.gui.image.align": "Π’ΠΈΡ€Ρ–Π²Π½ΡŽΠ²Π°Π½Π½Ρ", + "ftbquests.gui.image.fit": "ΠŸΡ–Π΄Ρ–Π³Π½Π°Ρ‚ΠΈ Π΄ΠΎ ΡˆΠΈΡ€ΠΈΠ½ΠΈ ΠΏΠ°Π½Π΅Π»Ρ–?", + "ftbquests.gui.preferences": "ΠŸΠ΅Ρ€ΡΠΎΠ½Π°Π»ΡŒΠ½Ρ– Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ гравця", + "ftbquests.gui.line": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ рядок тСксту", + "ftbquests.gui.image": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ зобраТСння", + "ftbquests.gui.edit": "Π Π΅Π΄Π°Π³.", + "ftbquests.gui.edit_quest_props": "Властивості квСсту", + "ftbquests.gui.undo": "Бкасувати", + "ftbquests.gui.edit_linked_quest": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ Π·Π²'язаний квСст", + "ftbquests.gui.edit_file": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»", + "ftbquests.gui.save_as_file": "Π—Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ Ρ„Π°ΠΉΠ»ΠΈ квСсту", + "ftbquests.gui.save_on_server": "Π—Π±Π΅Ρ€Π΅Π³Ρ‚ΠΈ Π½Π° сСрвСрі Π·Π°Ρ€Π°Π·", + "ftbquests.gui.export_spreadsheet": "Експортувати Ρ‚Π°Π±Π»ΠΈΡ†ΡŽ", + "ftbquests.gui.saved_as_file": "ΠšΠ²Π΅ΡΡ‚ΠΈ Π·Π±Π΅Ρ€Π΅ΠΆΠ΅Π½Ρ– Π½Π° ΠΊΠ»Ρ–Ρ”Π½Ρ‚Ρ– Π² %s", + "ftbquests.gui.saved_on_server": "ΠšΠ²Π΅ΡΡ‚ΠΈ Π·Π±Π΅Ρ€Π΅ΠΆΠ΅Π½Ρ– Π½Π° сСрвСрі", + "ftbquests.gui.error": "Помилка!", + "ftbquests.gui.add_reward_all": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Ρƒ Π΄ΠΎ всіх...", + "ftbquests.gui.clear_reward_all": "ΠžΡ‡ΠΈΡΡ‚ΠΈΡ‚ΠΈ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ΠΈ Ρƒ всіх", + "ftbquests.gui.select_quest_object": "Π’ΠΈΠ±Ρ€Π°Ρ‚ΠΈ ΠΎΠ±'Ρ”ΠΊΡ‚ квСсту", + "ftbquests.gui.select_task_type": "Π’ΠΈΠ±Ρ€Π°Ρ‚ΠΈ Ρ‚ΠΈΠΏ завдання", + "ftbquests.gui.select_reward_table": "Π’ΠΈΠ±Ρ€Π°Ρ‚ΠΈ Ρ‚Π°Π±Π»ΠΈΡ†ΡŽ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄", + "ftbquests.gui.select_reward_type": "Π’ΠΈΠ±Ρ€Π°Ρ‚ΠΈ Ρ‚ΠΈΠΏ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ΠΈ", + "ftbquests.gui.reset_progress": "Π‘ΠΊΠΈΠ½ΡƒΡ‚ΠΈ прогрСс", + "ftbquests.gui.reset_progress_q": "Π‘ΠΊΠΈΠ½ΡƒΡ‚ΠΈ прогрСс для Π²Π°ΡˆΠΎΡ— ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ?", + "ftbquests.gui.complete_instantly": "Π—Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ ΠΌΠΈΡ‚Ρ‚Ρ”Π²ΠΎ", + "ftbquests.gui.complete_instantly_q": "Π—Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ Ρ†Π΅ завдання ΠΌΠΈΡ‚Ρ‚Ρ”Π²ΠΎ?", + "ftbquests.gui.add_dependencies": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ Π²ΠΈΠ±Ρ€Π°Π½Ρ– як залСТності", + "ftbquests.gui.remove_dependencies": "Π’ΠΈΠ»ΡƒΡ‡ΠΈΡ‚ΠΈ Π²ΠΈΠ±Ρ€Π°Π½Ρ– Π· залСТностСй", + "ftbquests.gui.add_dependencies_self": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ як Π·Π°Π»Π΅ΠΆΠ½Ρ–ΡΡ‚ΡŒ Π΄ΠΎ Π²ΠΈΠ±Ρ€Π°Π½ΠΎΠ³ΠΎ", + "ftbquests.gui.remove_dependencies_self": "Π’ΠΈΠ»ΡƒΡ‡ΠΈΡ‚ΠΈ як Π·Π°Π»Π΅ΠΆΠ½Ρ–ΡΡ‚ΡŒ Π²Ρ–Π΄ Π²ΠΈΠ±Ρ€Π°Π½ΠΎΠ³ΠΎ", + "ftbquests.gui.copy_id": "ΠšΠΎΠΏΡ–ΡŽΠ²Π°Ρ‚ΠΈ ID", + "ftbquests.gui.copy_id.paste_hint": "Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використовувати Ρ†Π΅ΠΉ ID для вставки квСстів Π°Π±ΠΎ посилань Π½Π° квСсти", + "ftbquests.gui.copy_id.quick_properties": "Π¨Π²ΠΈΠ΄ΠΊΠ΅ рСдагування властивостСй...", + "ftbquests.gui.no_tasks": "НСмає завдань", + "ftbquests.gui.no_rewards": "НСмає Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄", + "ftbquests.gui.requires": "Π’ΠΈΠΌΠ°Π³Π°Ρ”", + "ftbquests.gui.required_by": "Π’ΠΈΠΌΠ°Π³Π°Ρ”Ρ‚ΡŒΡΡ", + "ftbquests.gui.collect_rewards": "ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± Π·Ρ–Π±Ρ€Π°Ρ‚ΠΈ всі Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ΠΈ!", + "ftbquests.gui.times_completed": "ΠšΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΡŒ", + "ftbquests.gui.looping_dependencies": "Π—Π°Ρ†ΠΈΠΊΠ»Π΅Π½Ρ– залСТності!", + "ftbquests.gui.open_in_guide": "ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ Ρ‚ΡƒΡ‚, Ρ‰ΠΎΠ± дізнатися Π±Ρ–Π»ΡŒΡˆΠ΅...", + "ftbquests.gui.wiki": "Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Π’Ρ–ΠΊΡ–", + "ftbquests.gui.change_progress": "Π—ΠΌΡ–Π½ΠΈΡ‚ΠΈ прогрСс", + "ftbquests.gui.change_progress.reset": "Π‘ΠΊΠΈΠ½ΡƒΡ‚ΠΈ", + "ftbquests.gui.change_progress.reset_deps": "Π‘ΠΊΠΈΠ½ΡƒΡ‚ΠΈ (+ЗалСТності)", + "ftbquests.gui.change_progress.complete": "Π—Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ", + "ftbquests.gui.change_progress.complete_deps": "Π—Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ (+ЗалСТності)", + "ftbquests.gui.pin": "Π—Π°ΠΊΡ€Ρ–ΠΏΠΈΡ‚ΠΈ", + "ftbquests.gui.unpin": "Π’Ρ–Π΄ΠΊΡ€Ρ–ΠΏΠΈΡ‚ΠΈ", + "ftbquests.gui.autopin.on": "АвтозакріплСння: Π£Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbquests.gui.autopin.off": "АвтозакріплСння: Π’ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbquests.gui.move_to_chapter": "ΠŸΠ΅Ρ€Π΅ΠΌΡ–ΡΡ‚ΠΈΡ‚ΠΈ Π² Ρ–Π½ΡˆΠΈΠΉ Ρ€ΠΎΠ·Π΄Ρ–Π»", + "ftbquests.gui.change_group": "Π—ΠΌΡ–Π½ΠΈΡ‚ΠΈ Π³Ρ€ΡƒΠΏΡƒ", + "ftbquests.gui.move_tooltip": "БкорочСння: ΠšΠ»Π°Ρ†Π°Π½Π½Ρ БКМ", + "ftbquests.gui.reload_theme": "ΠŸΠ΅Ρ€Π΅Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ Ρ‚Π΅ΠΌΡƒ", + "ftbquests.gui.view_dependencies": "ΠŸΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡƒΡ‚ΠΈ залСТності", + "ftbquests.gui.view_dependants": "ΠŸΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡƒΡ‚ΠΈ залСТності", + "ftbquests.gui.no_dependencies": "НСмає залСТностСй", + "ftbquests.gui.no_dependants": "НСмає залСТностСй", + "ftbquests.gui.edit_text": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ тСкст", + "ftbquests.gui.edit_description": "Π Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€ опису квСсту", + "ftbquests.gui.edit_description.help": "Shift+Enter: Π·Π±Π΅Ρ€Π΅Π³Ρ‚ΠΈ Ρ– Π²ΠΈΠΉΡ‚ΠΈ", + "ftbquests.gui.paste": "Вставити квСст", + "ftbquests.gui.paste_no_deps": "Вставити квСст (Π±Π΅Π· залСТностСй)", + "ftbquests.gui.paste_link": "Вставити посилання Π½Π° квСст", + "ftbquests.gui.paste_image": "Вставити зобраТСння", + "ftbquests.gui.paste_task": "Вставити завдання", + "ftbquests.gui.goto_linked_quest": "ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π΄ΠΎ Π·Π²'язаного квСсту (Ρƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ–: %s)", + "ftbquests.gui.linked_quest_id": "ID Π·Π²'язаного квСсту: %s", + "ftbquests.gui.view_quest_links": "ΠŸΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡƒΡ‚ΠΈ посилання Π½Π° квСст(ΠΈ)", + "ftbquests.gui.fix_aspect_ratio_w": "Вирівняти ΡˆΠΈΡ€ΠΈΠ½Ρƒ Π·Π° Π²Ρ–Π΄Π½ΠΎΡˆΠ΅Π½Π½ΡΠΌ сторін", + "ftbquests.gui.fix_aspect_ratio_h": "Вирівняти висоту Π·Π° Π²Ρ–Π΄Π½ΠΎΡˆΠ΅Π½Π½ΡΠΌ сторін", + "ftbquests.gui.bulk_change_size": "Π—ΠΌΡ–Π½ΠΈΡ‚ΠΈ Ρ€ΠΎΠ·ΠΌΡ–Ρ€ для всіх...", + "ftbquests.gui.use_as_quest_icon": "Використовувати Π·Π½Π°Ρ‡ΠΎΠΊ завдання як Π·Π½Π°Ρ‡ΠΎΠΊ квСсту", + "ftbquests.gui.clear_formatting": "ΠžΡ‡ΠΈΡΡ‚ΠΈΡ‚ΠΈ форматування", + "ftbquests.gui.insert_link": "Вставити посилання", + "ftbquests.gui.page_break": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ Ρ€ΠΎΠ·Ρ€ΠΈΠ² сторінки", + "ftbquests.gui.confirm_esc": "Бкасувати Π½Π΅Π·Π±Π΅Ρ€Π΅ΠΆΠ΅Π½Ρ– Π·ΠΌΡ–Π½ΠΈ?", + "ftbquests.gui.key_reference.player": "Π—Π°Π³Π°Π»ΡŒΠ½Ρ– ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Ρ–\n-;Π—ΠΌΠ΅Π½ΡˆΠΈΡ‚ΠΈ ΠΌΠ°ΡΡˆΡ‚Π°Π±\n+;Π—Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ ΠΌΠ°ΡΡˆΡ‚Π°Π±\n0;Π‘ΠΊΠΈΠ½ΡƒΡ‚ΠΈ ΠΌΠ°ΡΡˆΡ‚Π°Π±\nTab;Наступний Ρ€ΠΎΠ·Π΄Ρ–Π»\nShift + Tab;ΠŸΠΎΠΏΠ΅Ρ€Π΅Π΄Π½Ρ–ΠΉ Ρ€ΠΎΠ·Π΄Ρ–Π»\n1 - 9;ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π΄ΠΎ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ\nΠŸΡ€ΠΎΠ±Ρ–Π»;Π¦Π΅Π½Ρ‚Ρ€ΡƒΠ²Π°Ρ‚ΠΈ Π²ΠΈΠ΄\nCtrl + F;ΠŸΠΎΡˆΡƒΠΊ\nF1;ΠŸΡ€ΠΈ Π½Π°Π²Π΅Π΄Π΅Π½Π½Ρ– Π½Π° квСст, ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΠΈ Ρ€ΠΎΠ·ΡˆΠΈΡ€Π΅Π½Ρƒ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–ΡŽ\nΠ›ΠšΠœ;ΠŸΠ΅Ρ€Π΅Π³Π»ΡΠ΄ Π΄Π΅Ρ‚Π°Π»Π΅ΠΉ квСсту\nΠšΠΎΠ»Ρ–Ρ‰Π°Ρ‚ΠΊΠΎ;ΠŸΡ€ΠΎΠΊΡ€ΡƒΡ‚ΠΊΠ° Π²Π³ΠΎΡ€Ρƒ/Π²Π½ΠΈΠ·\nShift + ΠšΠΎΠ»Ρ–Ρ‰Π°Ρ‚ΠΊΠΎ;ΠŸΡ€ΠΎΠΊΡ€ΡƒΡ‚ΠΊΠ° Π»Ρ–Π²ΠΎΡ€ΡƒΡ‡/ΠΏΡ€Π°Π²ΠΎΡ€ΡƒΡ‡\nCtrl + ΠšΠΎΠ»Ρ–Ρ‰Π°Ρ‚ΠΊΠΎ;Π—Π±Ρ–Π»ΡŒΡˆΠ΅Π½Π½Ρ/змСншСння ΠΌΠ°ΡΡˆΡ‚Π°Π±Ρƒ", + "ftbquests.gui.key_reference.editor": "Π Π΅ΠΆΠΈΠΌ Ρ€Π΅Π΄Π°ΠΊΡ‚ΠΎΡ€Π°\nCtrl + Π›ΠšΠœ;ΠŸΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°Π½Π½Ρ виділСння\nБКМ;ΠŸΠ΅Ρ€Π΅ΠΌΡ–Ρ‰Π΅Π½Π½Ρ Π²ΠΈΠ±Ρ€Π°Π½ΠΈΡ… квСстів\nПКМ;ΠšΠΎΠ½Ρ‚Π΅ΠΊΡΡ‚Π½Π΅ мСню\nБКМ: ΠŸΠ΅Ρ€Π΅Ρ‚ΡΠ³ΡƒΠ²Π°Π½Π½Ρ;Π’ΠΈΠ±Ρ–Ρ€ квСстів Ρƒ області виділСння\nCtrl + БКМ: ΠŸΠ΅Ρ€Π΅Ρ‚ΡΠ³ΡƒΠ²Π°Π½Π½Ρ;ΠŸΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°Π½Π½Ρ виділСння Π² області\nCtrl + A;Π’ΠΈΠ±Ρ€Π°Ρ‚ΠΈ всС\nCtrl + D;Бкасувати Π²ΠΈΠ±Ρ–Ρ€\nCtrl + Π’Π³ΠΎΡ€Ρƒ/Π’Π½ΠΈΠ·/Π’Π»Ρ–Π²ΠΎ/Π’ΠΏΡ€Π°Π²ΠΎ;ΠŸΠ΅Ρ€Π΅ΠΌΡ–Ρ‰Π΅Π½Π½Ρ Π²ΠΈΠ±Ρ€Π°Π½ΠΈΡ… квСстів\nCtrl + R;ΠŸΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ½ΡƒΡ‚ΠΈ відобраТСння пСрСхрСстя\nCtrl + C;ΠšΠΎΠΏΡ–ΡŽΠ²Π°Ρ‚ΠΈ Π²ΠΈΠ±Ρ€Π°Π½ΠΈΠΉ/Π½Π°Π²Π΅Π΄Π΅Π½ΠΈΠΉ ΠΎΠ±'Ρ”ΠΊΡ‚\nCtrl + V;Вставити Π²ΠΈΠ±Ρ€Π°Π½Π΅\nCtrl + Shift + V;Вставити квСст (Π±Π΅Π· залСТностСй)\nCtrl + Alt + V;Вставити як посилання Π½Π° квСст\n\nПанСль пСрСгляду квСсту\nT;Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ Π½Π°Π·Π²Ρƒ квСсту\nS;Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ ΠΏΡ–Π΄Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ квСсту\nD;Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ опис квСсту", + "ftbquests.gui.set_autofocused": "Встановити як автофокусований квСст", + "ftbquests.gui.clear_autofocused": "Π‘ΠΊΠΈΠ½ΡƒΡ‚ΠΈ автофокусований квСст", + "ftbquests.gui.restore": "Π’Ρ–Π΄Π½ΠΎΠ²ΠΈΡ‚ΠΈ", + "ftbquests.gui.move_left": "ΠŸΠ΅Ρ€Π΅ΠΌΡ–ΡΡ‚ΠΈΡ‚ΠΈ Π»Ρ–Π²ΠΎΡ€ΡƒΡ‡", + "ftbquests.gui.move_right": "ΠŸΠ΅Ρ€Π΅ΠΌΡ–ΡΡ‚ΠΈΡ‚ΠΈ ΠΏΡ€Π°Π²ΠΎΡ€ΡƒΡ‡", + "ftbquests.gui.submit": "Π’Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ", + "ftbquests.task": "Завдання", + "ftbquests.tasks": "Завдання", + "ftbquests.task.completed": "Завдання Π²ΠΈΠΊΠΎΠ½Π°Π½Π΅!", + "ftbquests.task.click_to_submit": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± Π²Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ", + "ftbquests.task.task_screen_only": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ ΠΌΠΎΠΆΠ½Π° Π’Π˜ΠšΠ›ΠЧНО Π²Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ Ρ‡Π΅Ρ€Π΅Π· Π΅ΠΊΡ€Π°Π½ завдання!", + "ftbquests.task.auto_detected": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π²ΠΈΠ·Π½Π°Ρ‡Π΅Π½Ρ–", + "ftbquests.task.click_to_submit_all": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± Π²Ρ–Π΄ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ всі ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ", + "ftbquests.task.max_input": "Максимальна ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ ввСдСння", + "ftbquests.task.grab_item": "ΠžΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΠΊΠΎΠΏΡ–ΡŽ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°", + "ftbquests.task.gave_item": "Π’ΠΈΠ΄Π°Π½ΠΎ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ Π·Π°Π΄Π°Ρ‡Ρ–: %s", + "ftbquests.task.ftbquests.item": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚", + "ftbquests.task.ftbquests.item.count": "ΠšΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ", + "ftbquests.task.ftbquests.item.consume_items": "Π‘ΠΏΠΎΠΆΠΈΠ²Π°Ρ‚ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ", + "ftbquests.task.ftbquests.item.ignore_damage": "Π†Π³Π½ΠΎΡ€ΡƒΠ²Π°Ρ‚ΠΈ Π·Π±ΠΈΡ‚ΠΊΠΈ", + "ftbquests.task.ftbquests.item.nbt_mode": "Π Π΅ΠΆΠΈΠΌ NBT", + "ftbquests.task.ftbquests.item.consume_true": "Π‘ΠΏΠΎΠΆΠΈΠ²Π°Ρ” ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚", + "ftbquests.task.ftbquests.item.consume_false": "НС споТиває ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚", + "ftbquests.task.ftbquests.item.hide_valid_items": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ допустимі ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ", + "ftbquests.task.ftbquests.item.valid_items": "Допустимі ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ:", + "ftbquests.task.ftbquests.item.view_items": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± пСрСглянути допустимі ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ", + "ftbquests.task.ftbquests.item.valid_for": "Допустимі ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ для %s", + "ftbquests.task.ftbquests.item.click_recipe": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± пСрСглянути Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ", + "ftbquests.task.ftbquests.item.convert_tag": "ΠŸΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Π½Π° Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Ρ‚Π΅Π³Ρƒ '%s'", + "ftbquests.task.ftbquests.item.select_tag": "Π’ΠΈΠ±Π΅Ρ€Ρ–Ρ‚ΡŒ Ρ‚Π΅Π³ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°", + "ftbquests.task.ftbquests.item.only_from_crafting": "Π’Ρ–Π»ΡŒΠΊΠΈ виявлСно Π· виготовлСння", + "ftbquests.task.ftbquests.item.match_components": "Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Ρ–ΡΡ‚ΡŒ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π²", + "ftbquests.task.ftbquests.item.match_components.tooltip": "Π’Ρ–Π΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΎ: Ρ–Π³Π½ΠΎΡ€ΡƒΠ²Π°Ρ‚ΠΈ Π΄Π°Π½Ρ– ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°\nFuzzy: пСрСвіряти Ρ‚Ρ–Π»ΡŒΠΊΠΈ Π΄Π°Π½Ρ– ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π², присутніх Ρƒ стосі Ρ„Ρ–Π»ΡŒΡ‚Ρ€Ρƒ\nStrict: ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ ΠΏΠΎΠ²ΠΈΠ½Π΅Π½ Ρ‚ΠΎΡ‡Π½ΠΎ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ‚ΠΈ Π΄Π°Π½ΠΈΠΌ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² стосу Ρ„Ρ–Π»ΡŒΡ‚Ρ€Π°", + "ftbquests.task.ftbquests.item.task_screen_only": "Π’Ρ–Π»ΡŒΠΊΠΈ Π· Π΅ΠΊΡ€Π°Π½Π° завдання", + "ftbquests.task.ftbquests.item.task_screen_only.tooltip": "Коли true, ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ Π²Ρ–Π΄ΠΏΡ€Π°Π²Π»Π΅Π½Ρ– лишС Ρ‡Π΅Ρ€Π΅Π· Π΅ΠΊΡ€Π°Π½ завдання\nΠ—Π°ΡΡ‚ΠΎΡΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ лишС Ρ‚ΠΎΠ΄Ρ–, ΠΊΠΎΠ»ΠΈ для Ρ†ΡŒΠΎΠ³ΠΎ завдання Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ БпоТивання ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π².", + "ftbquests.task.ftbquests.fluid": "Π Ρ–Π΄ΠΈΠ½Π°", + "ftbquests.task.ftbquests.fluid.fluid": "Π Ρ–Π΄ΠΈΠ½Π°", + "ftbquests.task.ftbquests.fluid.fluid_nbt": "NBT Ρ€Ρ–Π΄ΠΈΠ½ΠΈ", + "ftbquests.task.ftbquests.fluid.amount": "ΠšΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ", + "ftbquests.task.ftbquests.forge_energy": "ЕнСргія Forge", + "ftbquests.task.ftbquests.forge_energy.value": "ЕнСргія / RF", + "ftbquests.task.ftbquests.forge_energy.text": "%d FE", + "ftbquests.task.ftbquests.tech_reborn_energy": "ЕнСргія Tech Reborn", + "ftbquests.task.ftbquests.tech_reborn_energy.value": "E", + "ftbquests.task.ftbquests.tech_reborn_energy.text": "%d E", + "ftbquests.task.ftbquests.custom": "Π‘ΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½Π΅", + "ftbquests.task.ftbquests.xp": "Π Ρ–Π²Π½Ρ– досвіду", + "ftbquests.task.ftbquests.xp.value": "Досвід", + "ftbquests.task.ftbquests.xp.points": "Π‘Π°Π»ΠΈ", + "ftbquests.task.ftbquests.xp.points.tooltip": "ВикористовуйтС Π±Π°Π»ΠΈ досвіду для Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ Π·Π°ΠΌΡ–ΡΡ‚ΡŒ Ρ€Ρ–Π²Π½Ρ–Π². ВикористовуйтС ΠΊΠ°Π»ΡŒΠΊΡƒΠ»ΡΡ‚ΠΎΡ€, Ρ‰ΠΎΠ± дізнатися, якС значСння ΠΏΠΎΠ²ΠΈΠ½Π½ΠΎ Π±ΡƒΡ‚ΠΈ", + "ftbquests.task.ftbquests.dimension": "Π’Ρ–Π΄Π²Ρ–Π΄Π°Ρ‚ΠΈ Π²ΠΈΠΌΡ–Ρ€", + "ftbquests.task.ftbquests.dimension.dim": "Π’ΠΈΠΌΡ–Ρ€", + "ftbquests.task.ftbquests.biome": "Π’Ρ–Π΄Π²Ρ–Π΄Π°Ρ‚ΠΈ Π±Ρ–ΠΎΠΌ", + "ftbquests.task.ftbquests.biome.biome": "Π‘Ρ–ΠΎΠΌ", + "ftbquests.task.ftbquests.structure": "Π—Π½Π°ΠΉΡ‚ΠΈ структуру", + "ftbquests.task.ftbquests.structure.structure": "Π‘Ρ‚Ρ€ΡƒΠΊΡ‚ΡƒΡ€Π°", + "ftbquests.task.ftbquests.stat": "Бтатистика", + "ftbquests.task.ftbquests.stat.stat": "Назва статистики", + "ftbquests.task.ftbquests.stat.value": "ЗначСння", + "ftbquests.task.ftbquests.kill": "Π’Π±ΠΈΡ‚ΠΈ ΡΡƒΡ‚Π½Ρ–ΡΡ‚ΡŒ", + "ftbquests.task.ftbquests.kill.entity": "Назва сутності", + "ftbquests.task.ftbquests.kill.entity.tooltip": "Π¦Π΅ Ρ–Π³Π½ΠΎΡ€ΡƒΡ”Ρ‚ΡŒΡΡ, якщо Ρ‚Π΅Π³ Ρ‚ΠΈΠΏΡƒ сутності Π½Π΅ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ–ΠΉ", + "ftbquests.task.ftbquests.kill.entity_type_tag": "Π’Π΅Π³ Ρ‚ΠΈΠΏΡƒ сутності", + "ftbquests.task.ftbquests.kill.entity_type_tag.tooltip": "Π―ΠΊΡ‰ΠΎ Π½Π΅ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ–ΠΉ, Ρ†Π΅ ΠΌΠ°Ρ” ΠΏΡ€Ρ–ΠΎΡ€ΠΈΡ‚Π΅Ρ‚ Π½Π°Π΄ Ρ‚ΠΈΠΏΠΎΠΌ сутності", + "ftbquests.task.ftbquests.kill.custom_name": "Π†ΠΌ'я сутності", + "ftbquests.task.ftbquests.kill.custom_name.tooltip": "Для Π³Ρ€Π°Π²Ρ†Ρ–Π² β€” Ρ—Ρ… Ρ–ΠΌ'я гравця\nДля Ρ–Π½ΡˆΠΈΡ… сутностСй β€” власнС Ρ–ΠΌ'я, присвоєнС Π·Π° допомогою ярлика", + "ftbquests.task.ftbquests.kill.value": "ΠšΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ", + "ftbquests.task.ftbquests.kill.title": "Π’Π±ΠΈΡ‚ΠΈ: %sx %s", + "ftbquests.task.ftbquests.kill.title_named": "Π’Π±ΠΈΡ‚ΠΈ: %sx %s Π½Π° Ρ–ΠΌ'я '%s'", + "ftbquests.task.ftbquests.location": "Π ΠΎΠ·Ρ‚Π°ΡˆΡƒΠ²Π°Π½Π½Ρ", + "ftbquests.task.ftbquests.location.dim": "Π’ΠΈΠΌΡ–Ρ€", + "ftbquests.task.ftbquests.location.ignore_dim": "Π†Π³Π½ΠΎΡ€ΡƒΠ²Π°Ρ‚ΠΈ Π²ΠΈΠΌΡ–Ρ€", + "ftbquests.task.ftbquests.location.x": "ΠŸΠΎΠ·ΠΈΡ†Ρ–Ρ X", + "ftbquests.task.ftbquests.location.x.tooltip": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Π΅ значСння X для гравця (Π³Ρ€Π°Π²Π΅Ρ†ΡŒ-X ΠΏΠΎΠ²ΠΈΠ½Π΅Π½ Π±ΡƒΡ‚ΠΈ >= X Ρ– < X+W)", + "ftbquests.task.ftbquests.location.y": "ΠŸΠΎΠ·ΠΈΡ†Ρ–Ρ Y", + "ftbquests.task.ftbquests.location.y.tooltip": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Π΅ значСння Y для гравця (Π³Ρ€Π°Π²Π΅Ρ†ΡŒ-Y ΠΏΠΎΠ²ΠΈΠ½Π΅Π½ Π±ΡƒΡ‚ΠΈ >= Y Ρ– < Y+H)", + "ftbquests.task.ftbquests.location.z": "ΠŸΠΎΠ·ΠΈΡ†Ρ–Ρ Z", + "ftbquests.task.ftbquests.location.z.tooltip": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Π΅ значСння Z для гравця (Π³Ρ€Π°Π²Π΅Ρ†ΡŒ-Z ΠΏΠΎΠ²ΠΈΠ½Π΅Π½ Π±ΡƒΡ‚ΠΈ >= Z Ρ– < Z+D)", + "ftbquests.task.ftbquests.location.w": "Π ΠΎΠ·ΠΌΡ–Ρ€ X (Π¨ΠΈΡ€)", + "ftbquests.task.ftbquests.location.h": "Π ΠΎΠ·ΠΌΡ–Ρ€ Y (Вис)", + "ftbquests.task.ftbquests.location.d": "Π ΠΎΠ·ΠΌΡ–Ρ€ Z (Π”ΠΎΠ²)", + "ftbquests.task.ftbquests.checkmark": "ΠŸΠΎΠ·Π½Π°Ρ‡ΠΊΠ° Π³Π°Π»ΠΎΡ‡ΠΊΠΎΡŽ", + "ftbquests.task.ftbquests.advancement": "ДосягнСння", + "ftbquests.task.ftbquests.advancement.criterion": "ΠšΡ€ΠΈΡ‚Π΅Ρ€Ρ–ΠΉ", + "ftbquests.task.ftbquests.observation": "БпостСрСТСння", + "ftbquests.task.ftbquests.observation.timer": "Π’Π°ΠΉΠΌΠ΅Ρ€", + "ftbquests.task.ftbquests.observation.observe_type": "Π’ΠΈΠΏ", + "ftbquests.task.ftbquests.observation.to_observe": "БпостСрігати", + "ftbquests.task.ftbquests.interaction": "Взаємодія", + "ftbquests.task.ftbquests.interaction.type": "Π’ΠΈΠΏ", + "ftbquests.task.ftbquests.interaction.match": "Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Ρ–ΡΡ‚ΡŒ", + "ftbquests.task.ftbquests.interaction.properties": "Властивості", + "ftbquests.task.ftbquests.buildcraft_mj": "ЕнСргія BuildCraft", + "ftbquests.task.ftbquests.buildcraft_mj.value": "mJ", + "ftbquests.task.ftbquests.buildcraft_mj.text": "%d MJ", + "ftbquests.task.ftbquests.ic2_energy": "ЕнСргія IC2", + "ftbquests.task.ftbquests.ic2_energy.value": "EU", + "ftbquests.task.ftbquests.ic2_energy.text": "%d EU", + "ftbquests.task.ftbquests.botania_mana": "ЕнСргія Botania", + "ftbquests.task.ftbquests.botania_mana.value": "Мана", + "ftbquests.task.ftbquests.botania_mana.show_numbers": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ числа", + "ftbquests.task.ftbquests.botania_mana.text": "%d ΠΌΠ°Π½ΠΈ", + "ftbquests.task.ftbquests.emc": "EMC", + "ftbquests.task.ftbquests.gamestage": "Π•Ρ‚Π°ΠΏ", + "ftbquests.task.ftbquests.npc_quest": "Завдання CustomNPCs", + "ftbquests.task.ftbquests.npc_quest.id": "ID завдання", + "ftbquests.task.ftbquests.npc_quest.check_active": "ΠŸΠ΅Ρ€Π΅Π²Ρ–Ρ€ΠΈΡ‚ΠΈ, Ρ‡ΠΈ завдання Π°ΠΊΡ‚ΠΈΠ²Π½Π΅", + "ftbquests.task.ftbquests.npc_dialog": "Π”Ρ–Π°Π»ΠΎΠ³ CustomNPCs", + "ftbquests.task.ftbquests.npc_dialog.id": "ID Π΄Ρ–Π°Π»ΠΎΠ³Ρƒ", + "ftbquests.task.ftbquests.npc_faction": "Ѐракція CustomNPCs", + "ftbquests.task.ftbquests.npc_faction.id": "ID Ρ„Ρ€Π°ΠΊΡ†Ρ–Ρ—", + "ftbquests.task.ftbquests.npc_faction.required_points": "НСобхідні Π±Π°Π»ΠΈ", + "ftbquests.task.ftbquests.npc_faction.mode": "Π Π΅ΠΆΠΈΠΌ Π±Π°Π»Ρ–Π²", + "ftbquests.reward": "Π’ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π°", + "ftbquests.rewards": "Π’ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ΠΈ", + "ftbquests.reward.team_reward": "Командна Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π°", + "ftbquests.reward.team_reward.tooltip": "Π―ΠΊΡ‰ΠΎ значСння true, Ρ†Π΅ Ρ”Π΄ΠΈΠ½Π° Π½Π°Π³ΠΎΡ€ΠΎΠ΄Π° для всієї ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ; Ρ—Ρ— ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ” Π³Ρ€Π°Π²Π΅Ρ†ΡŒ, який ΠΏΠ΅Ρ€ΡˆΠΈΠΌ Π· нСю провзаємодіяв\nΠ―ΠΊΡ‰ΠΎ значСння false, Π½Π°Π³ΠΎΡ€ΠΎΠ΄Ρƒ ΠΌΠΎΠΆΡƒΡ‚ΡŒ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΠΎΠΊΡ€Π΅ΠΌΠΎ усі Π³Ρ€Π°Π²Ρ†Ρ– ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ", + "ftbquests.reward.blocked": "%d Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π°(ΠΈ) Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½Ρ– для ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ '%s'", + "ftbquests.reward.this_blocked": "Π’ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π° Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½Π° для ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ '%s'", + "ftbquests.reward.emergency": "ЕкстрСна Ρ€Ρ–Ρ‡", + "ftbquests.reward.autoclaim": "Автовидача", + "ftbquests.reward.autoclaim.default": "Π—Π° замовчуванням", + "ftbquests.reward.autoclaim.disabled": "Π’ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbquests.reward.autoclaim.enabled": "Π£Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "ftbquests.reward.autoclaim.no_toast": "Π£Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Π±Π΅Π· ΡΠΏΠΎΠ²Ρ–Ρ‰Π΅Π½ΡŒ", + "ftbquests.reward.autoclaim.invisible": "Π£Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Π½Π΅Π²ΠΈΠ΄ΠΈΠΌΠΎ", + "ftbquests.reward.claim_all": "Π—Π°Π±Ρ€Π°Ρ‚ΠΈ всі Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ΠΈ", + "ftbquests.reward.collected": "Π’ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π° Π·Ρ–Π±Ρ€Π°Π½Π°!", + "ftbquests.reward.exclude_from_claim_all": "Π’ΠΈΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΠΈ Π·Ρ– Π·Π±ΠΎΡ€Ρƒ всіх", + "ftbquests.reward.exclude_from_claim_all.tooltip": "Π†Π³Π½ΠΎΡ€ΡƒΠ²Π°Ρ‚ΠΈ Ρ†ΡŽ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Ρƒ, ΠΊΠΎΠ»ΠΈ натиснуто ΠΊΠ½ΠΎΠΏΠΊΡƒ \"Π—Π°Π±Ρ€Π°Ρ‚ΠΈ всі\"\nΠ¦Π΅ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Π½Π΅ ΠΌΠΎΠΆΠ½Π° Π·ΠΌΡ–Π½ΠΈΡ‚ΠΈ для Ρ‚ΠΈΠΏΡ–Π² Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ Π—Π΄ΠΎΠ±ΠΈΡ‡, Π’ΠΈΠΏΠ°Π΄ΠΊΠΎΠ²Π°\n Ρ‚Π° Π’ΠΈΠ±Ρ–Ρ€", + "ftbquests.reward.random_bonus": "Π’ΠΈΠΏΠ°Π΄ΠΊΠΎΠ²ΠΈΠΉ бонус", + "ftbquests.reward.ftbquests.item": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚", + "ftbquests.reward.ftbquests.item.count": "ΠšΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ", + "ftbquests.reward.ftbquests.item.only_one": "Π’Ρ–Π»ΡŒΠΊΠΈ Один", + "ftbquests.reward.ftbquests.item.only_one.tooltip": "Π―ΠΊΡ‰ΠΎ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€ ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ Ρ†Π΅ΠΉ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚, Ρ‚ΠΎ Π½Π΅ Π΄ΠΎΠ΄Π°Ρ” ΠΉΠΎΠ³ΠΎ. Π†Π³Π½ΠΎΡ€ΡƒΡ” NBT.", + "ftbquests.reward.ftbquests.all_table": "Π’ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π° Вмістом", + "ftbquests.reward.ftbquests.choice": "Π’ΠΈΠ±Ρ–Ρ€ΠΊΠΎΠ²Π° Π’ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π°", + "ftbquests.reward.ftbquests.random": "Π’ΠΈΠΏΠ°Π΄ΠΊΠΎΠ²Π° Π’ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π°", + "ftbquests.reward.ftbquests.loot": "Π’ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π° Π—Π΄ΠΎΠ±ΠΈΡ‡Ρ–", + "ftbquests.reward.ftbquests.custom": "Π‘ΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½Π΅", + "ftbquests.reward.ftbquests.xp": "Досвід", + "ftbquests.reward.ftbquests.xp_levels": "Π Ρ–Π²Π½Ρ– Досвіду", + "ftbquests.reward.ftbquests.command": "Команда", + "ftbquests.reward.ftbquests.command.success": "Π£ΡΠΏΡ–ΡˆΠ½ΠΎ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π½ΠΎ ΠΊΠΎΠΌΠ°Π½Π΄Π½Ρƒ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Ρƒ", + "ftbquests.reward.ftbquests.command.tooltip": "ΠŸΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒΡΡ класичні Π·Π°ΠΌΡ–Π½ΠΈ, Π½Π°ΠΏΡ€ΠΈΠΊΠ»Π°Π΄ @p\nΠ‘ΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½Ρ– Π·Π°ΠΌΡ–Π½ΠΈ:\n{x} / {y} / {z} - ΠΏΠΎΡ‚ΠΎΡ‡Π½Π΅ X/Y/Z полоТСння гравця\n{quest} - ID Ρ†ΡŒΠΎΠ³ΠΎ квСсту\n{chapter} - ID Ρ†ΡŒΠΎΠ³ΠΎ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ\n{team} - ΠΊΠΎΡ€ΠΎΡ‚ΠΊΠ° Π½Π°Π·Π²Π° ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ гравця", + "ftbquests.reward.ftbquests.command.permission_level": "Запустити Π· Ρ€Ρ–Π²Π½Π΅ΠΌ Π΄ΠΎΠ·Π²ΠΎΠ»Ρƒ", + "ftbquests.reward.ftbquests.command.permission_level.tooltip": "0 = Π³Ρ€Π°Π²Π΅Ρ†ΡŒ\n1 = ΠΌΠΎΠ΄Π΅Ρ€Π°Ρ‚ΠΎΡ€\n2 = ΠΎΠΏΠ΅Ρ€Π°Ρ‚ΠΎΡ€\n3 = адміністратор\n4 = власник", + "ftbquests.reward.ftbquests.command.silent": "Π‘Π΅Π· повідомлСння", + "ftbquests.reward.ftbquests.command.feedback_message": "Π’ΠΈΠ³ΡƒΠ»ΡŒΠΊ Π²Ρ–Π΄Π³ΡƒΠΊΡƒ", + "ftbquests.reward.ftbquests.command.feedback_message.tooltip": "Надіслати сповіщСння Ρƒ ΠΏΡ–Π΄ΠΊΠ°Π·Ρ†Ρ– ΠΏΡ€ΠΈ ΡƒΡΠΏΡ–ΡˆΠ½ΠΎΡΡ‚Ρ– ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ", + "ftbquests.reward.ftbquests.advancement": "ДосягнСння", + "ftbquests.reward.ftbquests.advancement.criterion": "ΠšΡ€ΠΈΡ‚Π΅Ρ€Ρ–ΠΉ", + "ftbquests.reward.ftbquests.advancement.criterion.tooltip": "ΠžΠΏΡ†Ρ–ΠΎΠ½Π°Π»ΡŒΠ½ΠΎ, Π²ΡΡ‚Π°Π½ΠΎΠ²Π»ΡŽΠΉΡ‚Π΅, якщо ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ лишС ΠΎΠ΄ΠΈΠ½ ΠΊΡ€ΠΈΡ‚Π΅Ρ€Ρ–ΠΉ", + "ftbquests.reward.ftbquests.toast": "БповіщСння Ρƒ ΠΏΡ–Π΄ΠΊΠ°Π·Ρ†Ρ–", + "ftbquests.reward.ftbquests.toast.description": "Опис", + "ftbquests.reward.ftbquests.gamestage": "Π•Ρ‚Π°ΠΏ", + "ftbquests.reward.ftbquests.gamestage.silent": "Π‘Π΅Π· повідомлСння", + "ftbquests.reward.ftbquests.gamestage.remove": "Π’ΠΈΠ΄Π°Π»ΠΈΡ‚ΠΈ", + "ftbquests.reward.ftbquests.npc_quest": "Завдання CustomNPCs", + "ftbquests.reward.ftbquests.npc_quest.id": "ID завдання", + "ftbquests.reward.ftbquests.npc_faction": "Ѐракція CustomNPCs", + "ftbquests.reward.ftbquests.npc_faction.id": "ID Ρ„Ρ€Π°ΠΊΡ†Ρ–Ρ—", + "ftbquests.reward.ftbquests.npc_faction.points": "Π‘Π°Π»ΠΈ", + "ftbquests.reward.ftbquests.npc_faction.add": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ", + "ftbquests.reward.ftbquests.npc_mail": "ΠŸΠΎΡˆΡ‚Π° CustomNPCs", + "ftbquests.reward.ftbquests.npc_mail.subject": "Π’Π΅ΠΌΠ°", + "ftbquests.reward.ftbquests.npc_mail.sender": "Π’Ρ–Π΄ΠΏΡ€Π°Π²Π½ΠΈΠΊ", + "ftbquests.reward.ftbquests.npc_mail.message": "ΠŸΠΎΠ²Ρ–Π΄ΠΎΠΌΠ»Π΅Π½Π½Ρ", + "ftbquests.reward.ftbquests.npc_mail.time": "Час", + "ftbquests.reward.ftbquests.npc_mail.been_read": "ΠŸΡ€ΠΎΡ‡ΠΈΡ‚Π°Π½ΠΎ", + "ftbquests.reward.ftbquests.npc_mail.quest_id": "ID завдання CustomNPCs", + "ftbquests.reward.ftbquests.npc_mail.quest_title": "Назва завдання CustomNPCs", + "ftbquests.reward.ftbquests.npc_mail.items": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ", + "ftbquests.reward.ftbquests.npc_mail.time_past": "ΠœΠΈΠ½ΡƒΠ»ΠΈΠΉ час", + "ftbquests.reward_table": "Ваблиця Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄", + "ftbquests.reward.disable_reward_screen_blur": "Π’ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ розмиття Π½Π° Π΅ΠΊΡ€Π°Π½Ρ– Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄", + "ftbquests.reward_table.hide_tooltip": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ ΠΏΡ–Π΄ΠΊΠ°Π·ΠΊΡƒ", + "ftbquests.reward_table.use_title": "Використовувати Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ", + "ftbquests.reward_table.edit": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ Ρ‚Π°Π±Π»ΠΈΡ†ΡŽ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄", + "ftbquests.reward_tables": "Π Π΅Π΄Π°Π³ΡƒΠ²Π°Ρ‚ΠΈ Ρ‚Π°Π±Π»ΠΈΡ†Ρ– Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄", + "ftbquests.reward_table.nothing": "Нічого", + "ftbquests.reward_table.and_more": "...Ρ– Ρ‰Π΅ %d", + "ftbquests.reward_table.empty_weight": "ΠŸΠΎΡ€ΠΎΠΆΠ½Ρ Π²Π°Π³Π°", + "ftbquests.reward_table.loot_size": "Π ΠΎΠ·ΠΌΡ–Ρ€ Π·Π΄ΠΎΠ±ΠΈΡ‡Ρ–", + "ftbquests.reward_table.weight": "Π’Π°Π³Π°", + "ftbquests.reward_table.set_weight": "Встановити Π²Π°Π³Ρƒ", + "ftbquests.reward_table.enable_loot_crate": "Π£Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ лутбокси", + "ftbquests.reward_table.disable_loot_crate": "Π’ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ лутбокси", + "ftbquests.reward_table.loot_crate.id": "ID", + "ftbquests.reward_table.loot_crate.item_name": "Назва ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°", + "ftbquests.reward_table.loot_crate.item_name.tooltip": "Π¦Π΅ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ ΠΊΠ»ΡŽΡ‡ ΠΏΠ΅Ρ€Π΅ΠΊΠ»Π°Π΄Ρƒ", + "ftbquests.reward_table.loot_crate.color": "ΠšΠΎΠ»Ρ–Ρ€", + "ftbquests.reward_table.loot_crate.glow": "Бвітіння", + "ftbquests.reward_table.loot_crate.passive_weight": "Π’Π°Π³Π° (Пасивний)", + "ftbquests.reward_table.loot_crate.monster_weight": "Π’Π°Π³Π° (ΠœΠΎΠ½ΡΡ‚Ρ€)", + "ftbquests.reward_table.loot_crate.boss_weight": "Π’Π°Π³Π° (Бос)", + "ftbquests.reward_table.used_in": "Використано Ρƒ %d Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄Π°Ρ… Π·Π° завдання", + "ftbquests.leaderboard_progress": "ΠŸΡ€ΠΎΠ³Ρ€Π΅Ρ завдань FTB", + "jei.ftbquests.lootcrates": "Π‘ΠΊΡ€ΠΈΠ½ΡŒΠΊΠΈ Π—Π΄ΠΎΠ±ΠΈΡ‡Ρ–", + "jei.ftbquests.lootcrates.chance": "Шанс: %s", + "jei.ftbquests.lootcrates.no_chance": "Шанс ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π° відсутній: %s", + "jei.ftbquests.lootcrates.dropped_by": "Π’ΠΈΠΏΠ°Π΄Π°Ρ” Π·:", + "commands.ftbquests.editing_mode.enabled": "Π Π΅ΠΆΠΈΠΌ рСдагування для '%s' ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "commands.ftbquests.editing_mode.disabled": "Π Π΅ΠΆΠΈΠΌ рСдагування для '%s' Π²ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", + "commands.ftbquests.locked.enabled": "Π—Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½Ρ– завдання для %s", + "commands.ftbquests.locked.disabled": "Π ΠΎΠ·Π±Π»ΠΎΠΊΠΎΠ²Π°Π½Ρ– завдання для %s", + "commands.ftbquests.command.error.no_object": "НС Π·Π½Π°ΠΉΠ΄Π΅Π½ΠΎ ΠΎΠ±'Ρ”ΠΊΡ‚ завдання Π·Π° ID %s!", + "commands.ftbquests.command.error.no_file": "НС Π·Π½Π°ΠΉΠ΄Π΅Π½ΠΎ Ρ„Π°ΠΉΠ»Ρƒ завдання, Ρ‰ΠΎ Π²Ρ–Π΄Π±ΡƒΠ²Π°Ρ”Ρ‚ΡŒΡΡ?!", + "commands.ftbquests.command.error.invalid_id": "НСдійсний ID ΠΎΠ±'Ρ”ΠΊΡ‚Π°: %s!", + "commands.ftbquests.command.error.invalid_type": "НСдійсний Ρ‚ΠΈΠΏ Π·ΠΌΡ–Π½ΠΈ прогрСсу: %s!", + "commands.ftbquests.command.error.no_inventory": "Π¦Π΅ΠΉ Π±Π»ΠΎΠΊ Π½Π΅ ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€ΡŽ!", + "commands.ftbquests.command.error.not_editing": "Π’Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π±ΡƒΡ‚ΠΈ Π² Ρ€Π΅ΠΆΠΈΠΌΡ– рСдагування (/ftbquests editing_mode), Ρ‰ΠΎΠ± Ρ†Π΅ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ!", + "commands.ftbquests.command.feedback.table_exported": "Π£ΡΠΏΡ–ΡˆΠ½ΠΎ Скспортовано Ρ‚Π°Π±Π»ΠΈΡ†ΡŽ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ '%s' Π· %s ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°ΠΌΠΈ Π² Ρ†Ρ–Π»ΡŒΠΎΠ²ΠΈΠΉ Π±Π»ΠΎΠΊ!", + "commands.ftbquests.command.feedback.table_imported": "Π£ΡΠΏΡ–ΡˆΠ½ΠΎ Ρ–ΠΌΠΏΠΎΡ€Ρ‚ΠΎΠ²Π°Π½ΠΎ Ρ‚Π°Π±Π»ΠΈΡ†ΡŽ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ '%s' Π· %s ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°ΠΌΠΈ!", + "commands.ftbquests.command.feedback.table_too_many_items": "ΠŸΠžΠŸΠ•Π Π•Π”Π–Π•ΠΠΠ―: Ваблиця %s ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π², Π½Ρ–ΠΆ ΠΌΠΎΠΆΠ΅ ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ†Ρ–Π»ΡŒΠΎΠ²ΠΈΠΉ Π±Π»ΠΎΠΊ, Ρ‚Π΅Ρ€ΠΌΡ–Π½ΠΎΠ²Π° Π·ΡƒΠΏΠΈΠ½ΠΊΠ°!", + "commands.ftbquests.command.feedback.reloaded": "Π”Π°Π½Ρ– завдань Ρ‚Π° прогрСсії ΠΏΠ΅Ρ€Π΅Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½Ρ– Π· Ρ„Π°ΠΉΠ»Ρƒ!", + "commands.ftbquests.command.feedback.reloaded_quest": "Π”Π°Π½Ρ– завдань ΠΏΠ΅Ρ€Π΅Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½Ρ– Π· Ρ„Π°ΠΉΠ»Ρƒ!", + "commands.ftbquests.command.feedback.reloaded_progress": "Π”Π°Π½Ρ– прогрСсії ΠΏΠ΅Ρ€Π΅Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½Ρ– Π· Ρ„Π°ΠΉΠ»Ρƒ!", + "commands.ftbquests.command.feedback.reloaded.disclaimer": "ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°: ΠŸΠ΅Ρ€Π΅Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½Π½Ρ завдань Ρ” Π·Ρ€ΡƒΡ‡Π½ΠΈΠΌ інструмСнтом для Ρ€ΠΎΠ·Ρ€ΠΎΠ±Π½ΠΈΠΊΠ° завдань Ρ– Π½Π΅ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”Ρ‚ΡŒΡΡ для використання Π½Π° прямому сСрвСрі.", + "commands.ftbquests.command.feedback.rewards_blocked": "Блокування Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ завдання для ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ '%s' встановлСно Π½Π°: %s", + "commands.ftbquests.command.feedback.clear_display_cache": "КСш відобраТСння ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π±ΡƒΠ² ΠΎΡ‡ΠΈΡ‰Π΅Π½ΠΈΠΉ для всіх Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "commands.ftbquests.command.delete_empty_reward_tables.text": "Π’ΠΈΠ΄Π°Π»Π΅Π½ΠΎ %s ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ–Ρ… Ρ‚Π°Π±Π»ΠΈΡ†ΡŒ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄", + "commands.ftbquests.change_progress.text": "ΠŸΡ€ΠΎΠ³Ρ€Π΅Ρ Π·ΠΌΡ–Π½Π΅Π½ΠΎ!", + "commands.ftbquests.change_progress.invalid_type": "НСдійсний Ρ‚ΠΈΠΏ прогрСсу: %s", + "commands.ftbquests.change_team_rewards.invalid_id": "НСдійсний ID Π³Π»Π°Π²ΠΈ!", + "commands.ftbquests.change_team_rewards.text": "Π—ΠΌΡ–Π½Π΅Π½ΠΎ %d Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ для ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ Π½Π° %s", + "commands.ftbquests.change_consumable.text": "Π—ΠΌΡ–Π½Π΅Π½ΠΎ %d Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ вТивання ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² завдання Π½Π° %s", + "commands.ftbquests.import_rewards_from_chest.usage": "/ftbquests import_rewards_from_chest [weight] [replace]", + "commands.ftbquests.import_rewards_from_chest.invalid_id": "НСдійсний ID Ρ‚Π°Π±Π»ΠΈΡ†Ρ– Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄!", + "commands.ftbquests.import_rewards_from_chest.text": "Π†ΠΌΠΏΠΎΡ€Ρ‚ΠΎΠ²Π°Π½ΠΎ %d ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π² %s", + "commands.ftbquests.weigh_from_emc.invalid_id": "НСдійсний ID Ρ‚Π°Π±Π»ΠΈΡ†Ρ– Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄!", + "commands.ftbquests.weigh_from_emc.text": "Π—ΠΌΡ–Π½Π΅Π½ΠΎ Π²Π°Π³Ρƒ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ΠΈ Π·Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°ΠΌΠΈ Π½Π° основі EMC Π² %s", + "commands.ftbquests.export_rewards_to_chest.usage": "/ftbquests export_rewards_to_chest ", + "commands.ftbquests.export_rewards_to_chest.text": "Експортовано %s / %s ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π· '%s'", + "ftbquests.ui": "ΠšΠΎΡ€ΠΈΡΡ‚ΡƒΠ²Π°Ρ†ΡŒΠΊΠΈΠΉ інтСрфСйс", + "ftbquests.ui.old_scroll_wheel": "Π‘Ρ‚Π°Ρ€Π° ΠΏΠΎΠ²Π΅Π΄Ρ–Π½ΠΊΠ° ΠΏΡ€ΠΎΠΊΡ€ΡƒΡ‚ΠΊΠΈ", + "ftbquests.ui.old_scroll_wheel.tooltip": "Коли false, колСсо ΠΏΡ€ΠΎΠΊΡ€ΡƒΡ‚ΠΊΠΈ ΠΏΡ€ΠΎΠΊΡ€ΡƒΡ‡ΡƒΡ” Π²Π³ΠΎΡ€Ρƒ Ρ– Π²Π½ΠΈΠ·, ΡƒΡ‚Ρ€ΠΈΠΌΡƒΡŽΡ‡ΠΈ Shift, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅ΠΌΡ–Ρ‰ΡƒΠ²Π°Ρ‚ΠΈ, Ctrl, Ρ‰ΠΎΠ± ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Ρ‚ΠΈ\nКоли true, колСсо ΠΏΡ€ΠΎΠΊΡ€ΡƒΡ‚ΠΊΠΈ лишС ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΡ” (ΠΏΠΎΠ²Π΅Π΄Ρ–Π½ΠΊΠ° 1.19 Ρ– Ρ€Π°Π½Ρ–ΡˆΠ΅)", + "ftbquests.ui.chapter_panel_pinned": "ЗакріплСння Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΎΡ— ΠΏΠ°Π½Π΅Π»Ρ– Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ–Π²", + "ftbquests.pinned": "Π—Π°ΠΊΡ€Ρ–ΠΏΠ»Π΅Π½Ρ– квСсти", + "ftbquests.pinned.pinned_quests_pos": "ПолоТСння ΠΏΠ°Π½Π΅Π»Ρ– Π·Π°ΠΊΡ€Ρ–ΠΏΠ»Π΅Π½ΠΈΡ… квСстів", + "ftbquests.pinned.pinned_quests_inset_x": "Π ΠΎΠ·Ρ‚Π°ΡˆΡƒΠ²Π°Π½Π½Ρ ΠΏΠ°Π½Π΅Π»Ρ– Π·Π°ΠΊΡ€Ρ–ΠΏΠ»Π΅Π½ΠΈΡ… квСстів ΠΏΠΎ X", + "ftbquests.pinned.pinned_quests_inset_x.tooltip": "ПанСль Ρ€ΠΎΠ·ΠΌΡ–Ρ‰ΡƒΡ”Ρ‚ΡŒΡΡ Π²Ρ–Π΄ Ρ†Π΅Π½Ρ‚Ρ€Ρƒ Π΅ΠΊΡ€Π°Π½Π°.\nΠ†Π³Π½ΠΎΡ€ΡƒΡ”Ρ‚ΡŒΡΡ, якщо X-позиція Ρ†Π΅Π½Ρ‚Ρ€ΠΎΠ²Π°Π½Π°.", + "ftbquests.pinned.pinned_quests_inset_y": "Π ΠΎΠ·Ρ‚Π°ΡˆΡƒΠ²Π°Π½Π½Ρ ΠΏΠ°Π½Π΅Π»Ρ– Π·Π°ΠΊΡ€Ρ–ΠΏΠ»Π΅Π½ΠΈΡ… квСстів ΠΏΠΎ Y", + "ftbquests.pinned.pinned_quests_inset_y.tooltip": "ПанСль Ρ€ΠΎΠ·ΠΌΡ–Ρ‰ΡƒΡ”Ρ‚ΡŒΡΡ Π²Ρ–Π΄ Ρ†Π΅Π½Ρ‚Ρ€Ρƒ Π΅ΠΊΡ€Π°Π½Π°.\nΠ†Π³Π½ΠΎΡ€ΡƒΡ”Ρ‚ΡŒΡΡ, якщо Y-позиція Ρ†Π΅Π½Ρ‚Ρ€ΠΎΠ²Π°Π½Π°.", + "ftbquests.pinned.pinned_quests_scale": "ΠœΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ ΠΏΠ°Π½Π΅Π»Ρ– Π·Π°ΠΊΡ€Ρ–ΠΏΠ»Π΅Π½ΠΈΡ… квСстів", + "ftbquests.pinned.auto_pin_follows": "АвтоматичнС закріплСння", + "ftbquests.pinned.auto_pin_follows.tooltip": "β€’ Π ΠΎΠ·Π΄Ρ–Π»: Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°ΡŽΡ‚ΡŒΡΡ Ρ‚Ρ–Π»ΡŒΠΊΠΈ доступні квСсти Π² ΠΎΡΡ‚Π°Π½Π½ΡŒΠΎΠΌΡƒ пСрСглянутому Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ–\nβ€’ Книга квСстів: Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°ΡŽΡ‚ΡŒΡΡ доступні квСсти Π· ΠΊΠΎΠΆΠ½ΠΎΠ³ΠΎ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ", + "ftbquests.ui.show_lock_icon": "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΠΈ ΠΏΡ–ΠΊΡ‚ΠΎΠ³Ρ€Π°ΠΌΡƒ для Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΈΡ… квСстів", + "ftbquests.ui.show_lock_icon.tooltip": "ΠŸΠΎΠΊΠ°Π·Π°Ρ‚ΠΈ ΠΏΡ–ΠΊΡ‚ΠΎΠ³Ρ€Π°ΠΌΡƒ Π·Π°ΠΌΠΊΠ° Π½Π° Π±ΡƒΠ΄ΡŒ-яких квСстах, які Π½Π΅ ΠΌΠΎΠΆΠ½Π° Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Ρ‡Π΅Ρ€Π΅Π· обмСТСння залСТності Π°Π±ΠΎ Π²ΠΈΠΊΠ»ΡŽΡ‡Π΅Π½Π½Ρ.", + "ftbquests.ui.backspace_history": "ΠšΠ»Π°Π²Ρ–ΡˆΠ° Backspace для пСрСгляду історії", + "ftbquests.ui.backspace_history.tooltip": "Π―ΠΊΡ‰ΠΎ значСння true, натискання ΠΊΠ»Π°Π²Ρ–ΡˆΡ– Backspace ΠΏΡ–Π΄ час пСрСгляду квСсту Π²Ρ–Π΄ΠΊΡ€ΠΈΠ²Π°Ρ” ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ пСрСглянутий квСст. Π―ΠΊΡ‰ΠΎ значСння false, ΠΊΠ»Π°Π²Ρ–ΡˆΠ° Backspace ΠΏΡ€Π°Ρ†ΡŽΡ” як Escape, просто Π·Π°ΠΊΡ€ΠΈΠ²Π°ΡŽΡ‡ΠΈ квСст.", + "ftbquests.notifications": "ΠŸΠΎΠ²Ρ–Π΄ΠΎΠΌΠ»Π΅Π½Π½Ρ", + "ftbquests.notifications.completion_style": "Π‘Ρ‚ΠΈΠ»ΡŒ повідомлСння ΠΏΡ€ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ", + "ftbquests.notifications.completion_style.tooltip": "Π―ΠΊ повідомляти ΠΏΡ€ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ завдання, квСсту Π°Π±ΠΎ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ. ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°: «Напис Π½Π°Π΄ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Π΅ΠΌΒ» Ρ‚Π° «Ніяк» ΠΌΠΎΠΆΡƒΡ‚ΡŒ призвСсти Π΄ΠΎ пропуску ΠΏΠΎΠ²Ρ–Π΄ΠΎΠΌΠ»Π΅Π½ΡŒ ΠΏΡ€ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ", + "ftbquests.notifications.reward_style": "Π‘Ρ‚ΠΈΠ»ΡŒ повідомлСння ΠΏΡ€ΠΎ Π½Π°Π³ΠΎΡ€ΠΎΠ΄Ρƒ", + "ftbquests.notifications.reward_style.tooltip": "Π―ΠΊ повідомляти ΠΏΡ€ΠΎ отримання Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ΠΈ ΠΏΠΎΠ·Π° ΠΌΠ΅ΠΆΠ°ΠΌΠΈ Π²Ρ–ΠΊΠ½Π° Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ΠΈ.", + "ftbquests.notifications.completion_sounds": "Π’Ρ–Π΄Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Π·Π²ΡƒΠΊΠΈ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ", + "ftbquests.notifications.completion_sounds.tooltip": "Π§ΠΈ Π²Ρ–Π΄Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Π·Π²ΡƒΠΊΠΈ ΠΏΡ€ΠΈ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ– завдання, квСсту Π°Π±ΠΎ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ", + "ftbquests.ui.notification.toast": "ΠŸΡ–Π΄ΠΊΠ°Π·ΠΊΠ°", + "ftbquests.ui.notification.chat": "Π§Π°Ρ‚", + "ftbquests.ui.notification.action_bar": "Над Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Π΅ΠΌ", + "ftbquests.ui.notification.none": "Ніяк", + "ftbquests.xlate": "ΠŸΠ΅Ρ€Π΅ΠΊΠ»Π°Π΄ΠΈ", + "ftbquests.xlate.editing_locale": "ΠŸΠ΅Ρ€Π΅Π²ΠΈΠ·Π½Π°Ρ‡Π΅Π½Π½Ρ Π»ΠΎΠΊΠ°Π»Ρ–Π·Π°Ρ†Ρ–Ρ—", + "ftbquests.xlate.editing_locale.tooltip": "Мова, яка Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для рСдагування тСксту FTB Quests: тСкст Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΊΡ–Π² Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ–Π², квСстів, завдань Ρ– Ρ‚Π°Π±Π»ΠΈΡ†ΡŒ Π½Π°Π³ΠΎΡ€ΠΎΠ΄, ΠΏΡ–Π΄Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΊΡ–Π² Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ–Π² Ρ– квСстів, Π° Ρ‚Π°ΠΊΠΎΠΆ тСкст опису квСстів. Π―ΠΊΡ‰ΠΎ ΠΏΠΎΠ»Π΅ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ”, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ ΠΏΠΎΡ‚ΠΎΡ‡Π½Π° ΠΌΠΎΠ²Π° Minecraft.", + "ftbquests.xlate.fallback_locale": "Π Π΅Π·Π΅Ρ€Π²Π½Π° локалізація", + "ftbquests.xlate.fallback_locale.tooltip": "Мова, яка Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для ΠΏΠ΅Ρ€Π΅ΠΊΠ»Π°Π΄Ρ–Π², яких Π½Π΅ΠΌΠ°Ρ” Π² ΠΏΠΎΡ‚ΠΎΡ‡Π½Ρ–ΠΉ Π»ΠΎΠΊΠ°Π»Ρ–Π·Π°Ρ†Ρ–Ρ—. Π―ΠΊΡ‰ΠΎ ΠΏΠΎΠ»Π΅ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ”, Π·Π° замовчуванням Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Ρ€Π΅Π·Π΅Ρ€Π²Π½Π° локалізація квСстбука, Π²ΠΈΠ·Π½Π°Ρ‡Π΅Π½Π° сСрвСром.", + "ftbquests.xlate.hilite_missing": "Виділяти відсутні ΠΏΠ΅Ρ€Π΅ΠΊΠ»Π°Π΄ΠΈ", + "ftbquests.xlate.hilite_missing.tooltip": "Π―ΠΊΡ‰ΠΎ значСння true, тСкст квСсту, який Π½Π΅ ΠΌΠ°Ρ” ΠΏΠ΅Ρ€Π΅ΠΊΠ»Π°Π΄Ρƒ Π² ΠΏΠΎΡ‚ΠΎΡ‡Π½Ρ–ΠΉ Π»ΠΎΠΊΠ°Π»Ρ–, Π²ΠΈΠ΄Ρ–Π»ΡΡ”Ρ‚ΡŒΡΡ Π² Ρ€Π΅ΠΆΠΈΠΌΡ– рСдагування Ρ‚Π° Π² Π»ΠΎΠΊΠ°Π»Ρ– рСдагування, Π²Ρ–Π΄ΠΌΡ–Π½Π½Ρ–ΠΉ Π²Ρ–Π΄ 'en_us'", + "ftbquests.objects": "%d ΠΎΠ±'Ρ”ΠΊΡ‚(ΠΈ)", + "ftbquests.message.configurator_bound": "ΠΠ°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Π·Π²'язано: %s", + "ftbquests.message.task_screen_inaccessible": "Π•ΠΊΡ€Π°Π½ завдань нСдоступний звідси!", + "ftbquests.message.missing_task_screen": "Π•ΠΊΡ€Π°Π½ завдань відсутній!", + "ftbquests.message.missing_xlate_1": "Відсутній ΠΏΠ΅Ρ€Π΅ΠΊΠ»Π°Π΄ для %s Ρƒ ΠΏΠΎΡ‚ΠΎΡ‡Π½Ρ–ΠΉ Π»ΠΎΠΊΠ°Π»Ρ–Π·Π°Ρ†Ρ–Ρ— '%s'", + "ftbquests.message.missing_xlate_2": "ΠŸΠΎΠ²Π΅Ρ€Π½Π΅Π½Π½Ρ Π΄ΠΎ '%s'", + "ftbquests.translation_key.title": "Π½Π°Π·Π²Π°", + "ftbquests.translation_key.quest_subtitle": "ΠΏΡ–Π΄Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ квСсту", + "ftbquests.translation_key.chapter_subtitle": "ΠΏΡ–Π΄Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ", + "ftbquests.translation_key.quest_desc": "опис квСсту", + "ftbquests.gui.use_default_lang": "[Використовувати усталСну ΠΌΠΎΠ²Ρƒ]", + "config.jade.plugin_ftbquests.barrier": "Π‘Π°Ρ€'Ρ”Ρ€ΠΈ", + "comment": "Π΄Π°Π»Ρ– застарілі рядки", + "ftbquests.ui.pinned_quests_pos": "ΠŸΠΎΠ·ΠΈΡ†Ρ–Ρ ΠΏΠ°Π½Π΅Π»Ρ– Π·Π°ΠΊΡ€Ρ–ΠΏΠ»Π΅Π½ΠΈΡ… квСстів", + "ftbquests.ui.pinned_quests_inset_x": "ΠŸΠΎΠ·ΠΈΡ†Ρ–Ρ X ΠΏΠ°Π½Π΅Π»Ρ– Π·Π°ΠΊΡ€Ρ–ΠΏΠ»Π΅Π½ΠΈΡ… квСстів", + "ftbquests.ui.pinned_quests_inset_x.tooltip": "Вставка Π΄ΠΎ Ρ†Π΅Π½Ρ‚Ρ€Ρƒ Π΅ΠΊΡ€Π°Π½Π°.\nΠ†Π³Π½ΠΎΡ€ΡƒΡ”Ρ‚ΡŒΡΡ, якщо X позиція ΠΏΠΎ Ρ†Π΅Π½Ρ‚Ρ€Ρƒ.", + "ftbquests.ui.pinned_quests_inset_y": "ΠŸΠΎΠ·ΠΈΡ†Ρ–Ρ Y ΠΏΠ°Π½Π΅Π»Ρ– Π·Π°ΠΊΡ€Ρ–ΠΏΠ»Π΅Π½ΠΈΡ… квСстів", + "ftbquests.ui.pinned_quests_inset_y.tooltip": "Вставка Π΄ΠΎ Ρ†Π΅Π½Ρ‚Ρ€Ρƒ Π΅ΠΊΡ€Π°Π½Π°.\nΠ†Π³Π½ΠΎΡ€ΡƒΡ”Ρ‚ΡŒΡΡ, якщо Y позиція ΠΏΠΎ Ρ†Π΅Π½Ρ‚Ρ€Ρƒ.", + "item.ftbquests.barrier.nogui": "Π“Ρ€Π°Ρ„Ρ–Ρ‡Π½ΠΈΠΉ інтСрфСйс Ρ‰Π΅ Π² Ρ€ΠΎΠ·Ρ€ΠΎΠ±Ρ†Ρ–", + "item.ftbquests.barrier.disabled": "Π€ΡƒΠ½ΠΊΡ†Ρ–ΠΎΠ½ΡƒΡ” Ρ‚Ρ–Π»ΡŒΠΊΠΈ Π² Ρ€Π΅ΠΆΠΈΠΌΡ– рСдагування!", + "item.ftbquests.barrier.config": "ΠŸΠ΅Ρ€Π΅ΠΉΠΌΠ΅Π½ΡƒΠΉΡ‚Π΅ Π² ΠΊΠΎΠ²Π°Π΄Π»Ρ–, Ρ‰ΠΎΠ± встановити ID квСсту", + "item.ftbquests.stage_barrier.config": "ΠŸΠ΅Ρ€Π΅ΠΉΠΌΠ΅Π½ΡƒΠΉΡ‚Π΅ Π² ΠΊΠΎΠ²Π°Π΄Π»Ρ–, Ρ‰ΠΎΠ± встановити Π΅Ρ‚Π°ΠΏ", + "ftbquest.gui.set_autofocused": "Встановити як автофокусований квСст", + "ftbquest.gui.clear_autofocused": "Π‘ΠΊΠΈΠ½ΡƒΡ‚ΠΈ автофокусований квСст", + "ftbquests.task.ftbquests.item.match_nbt": "Π’Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Ρ–ΡΡ‚ΡŒ NBT", + "ftbquests.task.ftbquests.item.match_nbt.tooltip": "Π—Π° замовчуванням: ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ ΠΏΠΎΠ²ΠΈΠ½Π΅Π½ Π±ΡƒΡ‚ΠΈ Π² Ρ‚Π΅Π³Ρƒ 'itemfilters:check_nbt'\nFalse: Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ пСрСвіряти NBT\nTrue: Π·Π°Π²ΠΆΠ΄ΠΈ пСрСвіряти NBT", + "ftbquests.quest.visibility.hide": "ΠŸΡ€ΠΈΡ…ΠΎΠ²Π°Ρ‚ΠΈ квСст, ΠΏΠΎΠΊΠΈ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚Ρ– залСТності Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π²ΠΈΠ΄ΠΈΠΌΠΈΠΌΠΈ", + "ftbquests.task.ftbquests.item.weak_nbt_match": "Π‘Π»Π°Π±ΠΊΠ° Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Ρ–ΡΡ‚ΡŒ NBT", + "ftbquests.task.ftbquests.item.weak_nbt_match.tooltip": "False: ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Π° Ρ‚ΠΎΡ‡Π½Π° Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Ρ–ΡΡ‚ΡŒ NBT\nTrue: поля NBT Π² ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€Π΅Π½ΠΎΠΌΡƒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–, Π°Π»Π΅ Π½Π΅ Π² Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚Ρ– Ρ„Ρ–Π»ΡŒΡ‚Ρ€Ρƒ Π½Π΅ ΡΠΏΡ€ΠΈΡ‡ΠΈΠ½ΡΡŽΡ‚ΡŒ ΠΏΠΎΠΌΠΈΠ»ΠΊΡƒ відповідності", + "ftbquests.reward.ftbquests.command.elevate": "Π’ΠΈΠΊΠΎΠ½Π°Ρ‚ΠΈ Π· ΠΏΡ–Π΄Π²ΠΈΡ‰Π΅Π½ΠΈΠΌΠΈ ΠΏΡ€Π°Π²Π°ΠΌΠΈ", + "ftbquests.reward.ftbquests.command.elevate.tooltip": "Π’ΠΈΠΊΠΎΠ½Π°Ρ‚ΠΈ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ Ρ‚Π°ΠΊ, якби Π³Ρ€Π°Π²Π΅Ρ†ΡŒ ΠΌΠ°Π² Ρ€Ρ–Π²Π΅Π½ΡŒ Π΄ΠΎΠ·Π²ΠΎΠ»Ρƒ 2" +} \ No newline at end of file diff --git a/kubejs/assets/ftbteams/lang/uk_ua.json b/kubejs/assets/ftbteams/lang/uk_ua.json index 25ab91cb8..fee11e2b9 100644 --- a/kubejs/assets/ftbteams/lang/uk_ua.json +++ b/kubejs/assets/ftbteams/lang/uk_ua.json @@ -1,93 +1,96 @@ { "__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.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_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.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.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ΠŸΠ΅Ρ€Π΅Π²Ρ–Ρ€Ρ‚Π΅ Π»ΠΎΠ³ΠΈ сСрвСра Π½Π° Π½Π°ΡΠ²Π½Ρ–ΡΡ‚ΡŒ ΠΏΠΎΠΌΠΈΠ»ΠΎΠΊ Ρ– пСрСконайтСся, Ρ‰ΠΎ ваш сСрвСр Ρƒ Ρ€Π΅ΠΆΠΈΠΌΡ– ΠΎΠ½Π»Π°ΠΉΠ½.", + "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.display_name": "Π’Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΠΈ Π½Π°Π·Π²Ρƒ", "ftbteamsconfig.ftbteams.description": "Опис", "ftbteamsconfig.ftbteams.color": "ΠšΠΎΠ»Ρ–Ρ€", - "ftbteamsconfig.ftbteams.free_to_join": "Π’Ρ–Π»ΡŒΠ½ΠΈΠΉ Π²Ρ…Ρ–Π΄", - "ftbteamsconfig.ftbteams.max_msg_history_size": "Максимальний Ρ€ΠΎΠ·ΠΌΡ–Ρ€ історії ΠΏΠΎΠ²Ρ–Π΄ΠΎΠΌΠ»Π΅Π½ΡŒ", + "ftbteamsconfig.ftbteams.free_to_join": "Π’Ρ–Π»ΡŒΠ½ΠΎ приєднатися", + "ftbteamsconfig.ftbteams.max_msg_history_size": "Максимальний Ρ€ΠΎΠ·ΠΌΡ–Ρ€ історії ΠΏΠΎΠ²Ρ–Π΄ΠΎΠΌΠ»Π΅Π½ΡŒ ", "ftbteams.privacy_mode.allies": "Боюзники", - "ftbteams.privacy_mode.private": "ΠŸΡ€ΠΈΠ²Π°Ρ‚Π½ΠΎ", - "ftbteams.privacy_mode.public": "ΠŸΡƒΠ±Π»Ρ–Ρ‡Π½ΠΎ", + "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": "Π ΠΎΠ·ΠΆΠ°Π»ΡƒΠ²Π°Ρ‚ΠΈ %s", "ftbteams.gui.demote.confirm": "Π’ΠΈ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ ΠΏΠΎΠ½ΠΈΠ·ΠΈΡ‚ΠΈ гравця %s?", - "ftbteams.gui.leave": "ΠŸΠΎΠΊΠΈΠ½ΡƒΡ‚ΠΈ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ", + "ftbteams.gui.leave": "ΠŸΠΎΠΊΠΈΠ½ΡƒΡ‚ΠΈ Π³Ρ€ΡƒΠΏΡƒ", "ftbteams.gui.leave.confirm": "Π’ΠΈ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ ΠΏΠΎΠΊΠΈΠ½ΡƒΡ‚ΠΈ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ?", - "ftbteams.gui.disband": "Π ΠΎΠ·Ρ„ΠΎΡ€ΠΌΡƒΠ²Π°Ρ‚ΠΈ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ", - "ftbteams.gui.disband.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_name": "Назва ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ", "ftbteams.gui.party_description": "Опис", "ftbteams.gui.create_party": "Опис", "ftbteams.gui.add_members": "Π”ΠΎΠ΄Π°Ρ‚ΠΈ учасників", "ftbteams.gui.invite": "Запросити гравця(Ρ–Π²)", - "ftbteams.gui.manage_allies": "ΠšΠ΅Ρ€ΡƒΠ²Π°Π½Π½Ρ союзниками", + "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": "Π’ΠΈΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΠΈ Π· ΡΠΎΡŽΠ·Π½ΠΈΠΊΡ–Π² %s", "ftbteams.gui.remove_ally.confirm": "Π’ΠΈ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π²ΠΈΠ΄Π°Π»ΠΈΡ‚ΠΈ %s як союзника?", - "ftbteams.ranks.enemy": "Π‘ΡƒΠΏΡ€ΠΎΡ‚ΠΈΠ²Π½ΠΈΠΊ", - "ftbteams.ranks.none": "Відсутній", + "ftbteams.gui.toggle_chat": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅ΠΌΠΊΠ½ΡƒΡ‚ΠΈ", + "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.player": "Команда Π³Ρ€Π°Π²Ρ†Ρ–Π²", + "ftbteams.team_type.party": "ΠŸΠ°Ρ€Ρ‚Ρ–ΠΉΠ½Π° ΠΊΠΎΠΌΠ°Π½Π΄Π°", "ftbteams.team_type.server": "Команда сСрвСра", - "key.ftbteams.open_gui": "Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ GUI ΠΊΠΎΠΌΠ°Π½Π΄", - "key.categories.ftbteams": "FTB Команди", + "key.ftbteams.open_gui": "Π’Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈΠΉ Π³Ρ€Π°Ρ„Ρ–Ρ‡Π½ΠΈΠΉ інтСрфСйс ΠΊΠΎΠΌΠ°Π½Π΄", + "key.categories.ftbteams": "Команди FTB", "ftbteams.message.invited": "Π—Π°ΠΏΡ€ΠΎΡˆΠ΅Π½ΠΎ %s", - "ftbteams.message.invite_sent": "%s запросив вас приєднатися Π΄ΠΎ своєї ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ!", - "ftbteams.message.joined": "%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.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' Π· ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ '%s'!", + "ftbteams.message.team_disbanded": "ΠŸΡ€ΠΈΠΌΡƒΡΠΎΠ²ΠΎ Ρ€ΠΎΠ·ΠΏΡƒΡ‰Π΅Π½ΠΎ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ '%s' (%s) !", + "ftbteams.message.chat_redirected.on": "ΠŸΠΎΠ²Ρ–Π΄ΠΎΠΌΠ»Π΅Π½Π½Ρ Ρƒ Ρ‡Π°Ρ‚Ρ– ΠΏΠ΅Ρ€Π΅Π½Π°ΠΏΡ€Π°Π²Π»ΡΡ‚ΠΈΠΌΡƒΡ‚ΡŒΡΡ Ρƒ ΠΊΠΎΠΌΠ°Π½Π΄Π½ΠΈΠΉ Ρ‡Π°Ρ‚", + "ftbteams.message.chat_redirected.off": "ΠŸΠΎΠ²Ρ–Π΄ΠΎΠΌΠ»Π΅Π½Π½Ρ Ρƒ Ρ‡Π°Ρ‚Ρ– Π²Ρ–Π΄ΠΏΡ€Π°Π²Π»ΡΡ‚ΠΈΠΌΡƒΡ‚ΡŒΡΡ Ρƒ Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ Ρ‡Π°Ρ‚", "ftbteams.accept": "ΠŸΡ€ΠΈΠΉΠ½ΡΡ‚ΠΈ βœ”", "ftbteams.decline": "Π’Ρ–Π΄Ρ…ΠΈΠ»ΠΈΡ‚ΠΈ ✘", - "ftbteams.click_show_info": "ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± пСрСглянути Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–ΡŽ ΠΏΡ€ΠΎ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ" + "ftbteams.click_show_info": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ, Ρ‰ΠΎΠ± пСрСдивитися опис ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ" } \ No newline at end of file diff --git a/kubejs/assets/greate/blockstates/rose_quartz_bud_indicator.json b/kubejs/assets/greate/blockstates/rose_quartz_bud_indicator.json new file mode 100644 index 000000000..8f1495444 --- /dev/null +++ b/kubejs/assets/greate/blockstates/rose_quartz_bud_indicator.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "greate:block/rose_quartz_bud_indicator" }, + { "model": "greate:block/rose_quartz_bud_indicator", "y": 90 }, + { "model": "greate:block/rose_quartz_bud_indicator", "y": 180 }, + { "model": "greate:block/rose_quartz_bud_indicator", "y": 270 } + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/greate/lang/en_us.json b/kubejs/assets/greate/lang/en_us.json index aacdc7752..a4a4331f2 100644 --- a/kubejs/assets/greate/lang/en_us.json +++ b/kubejs/assets/greate/lang/en_us.json @@ -32,11 +32,11 @@ "block.greate.large_andesite_alloy_cogwheel": "Large Basic Cogwheel", "block.greate.metal_girder_encased_andesite_alloy_shaft": "Metal Girder Encased Basic Shaft", "block.greate.powered_andesite_alloy_shaft": "Powered Basic Shaft", - "item.greate.rubber_belt_connector": "Rubber Belt", - "item.greate.silicone_rubber_belt_connector": "Silicone Rubber Belt", - "block.greate.polyethylene_belt_titanium": "Styrene Butadiene Rubber Belt", - "block.greate.polyethylene_belt_tungsten_steel": "Styrene Butadiene Rubber Belt", - "item.greate.polyethylene_belt_connector": "Styrene Butadiene Rubber Belt", + "item.greate.andesite_alloy_belt_connector": "Plank Tread Mechanical Belt", + "item.greate.stone_belt_connector": "Leather Mechanical Belt", + "item.greate.rubber_belt_connector": "Rubber Mechanical Belt", + "item.greate.silicone_rubber_belt_connector": "Silicone Rubber Mechanical Belt", + "item.greate.styrene_butadiene_rubber_belt_connector": "Styrene Butadiene Rubber Mechanical Belt", "item.greate.andesite_alloy_vertical_gearbox": "Basic Vertical Gearbox", "greate.recipe.packing": "Welding & Packing", "greate.ponder.belt_casing.text_1": "Brass or Metal Casing can be used to decorate Mechanical Belts", diff --git a/kubejs/assets/greate/lang/ja_jp.json b/kubejs/assets/greate/lang/ja_jp.json index 3e2df87dd..1a922e2fa 100644 --- a/kubejs/assets/greate/lang/ja_jp.json +++ b/kubejs/assets/greate/lang/ja_jp.json @@ -33,7 +33,7 @@ "block.greate.brass_encased_large_aluminium_cogwheel": "真ιγ‚±γƒΌγ‚Ήε…₯γ‚Šε€§γγͺγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½ζ­―θ»Š", "block.greate.brass_encased_large_darmstadtium_cogwheel": "真ιε€§γγͺダームスタチウムケースε…₯γ‚Šζ­―θ»Š", "block.greate.brass_encased_large_naquadah_alloy_cogwheel": "真ιε€§γγͺγƒŠγ‚―γ‚’γƒ€εˆι‡‘γ‚±γƒΌγ‚Ήε…₯γ‚Šζ­―θ»Š", - "block.greate.brass_encased_large_neutronium_cogwheel": "真ιε€§γγͺ中子素ケースε…₯γ‚Šζ­―θ»Š", + "block.greate.brass_encased_large_neutronium_cogwheel": "真ιε€§γγͺニγƒ₯γƒΌγƒˆγƒ­γƒ‹γ‚¦γƒ θ£½γ‚±γƒΌγ‚Ήε…₯γ‚Šζ­―θ»Š", "block.greate.brass_encased_large_rhodium_plated_palladium_cogwheel": "真ιε€§γγͺロジウムケースε…₯γ‚Šζ­―θ»Š", "block.greate.brass_encased_large_stainless_steel_cogwheel": "真ιγ‚±γƒΌγ‚Ήε…₯γ‚Šε€§γγͺγ‚Ήγƒ†γƒ³γƒ¬γ‚Ήθ£½ζ­―θ»Š", "block.greate.brass_encased_large_steel_cogwheel": "真ιε€§γγͺγ‚±γƒΌγ‚Ήε…₯γ‚Šζ­―θ»Š", @@ -41,8 +41,8 @@ "block.greate.brass_encased_large_tungsten_steel_cogwheel": "真ιγ‚±γƒΌγ‚Ήε…₯γ‚Šε€§γγͺγ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³γ‚ΉγƒγƒΌγƒ«ζ­―θ»Š", "block.greate.brass_encased_naquadah_alloy_cogwheel": "真ιγƒŠγ‚―γ‚’γƒ€εˆι‡‘γ‚±γƒΌγ‚Ήε…₯γ‚Šζ­―θ»Š", "block.greate.brass_encased_naquadah_alloy_shaft": "真ιγƒŠγ‚―γ‚’γƒ€εˆι‡‘γ‚±γƒΌγ‚Ήε…₯γ‚Šγ‚·γƒ£γƒ•γƒˆ", - "block.greate.brass_encased_neutronium_cogwheel": "真ιδΈ­ε­η΄ γ‚±γƒΌγ‚Ήε…₯γ‚Šζ­―θ»Š", - "block.greate.brass_encased_neutronium_shaft": "真ιδΈ­ε­η΄ γ‚±γƒΌγ‚Ήε…₯γ‚Šγ‚·γƒ£γƒ•γƒˆ", + "block.greate.brass_encased_neutronium_cogwheel": "真ιγƒ‹γƒ₯γƒΌγƒˆγƒ­γƒ‹γ‚¦γƒ θ£½γ‚±γƒΌγ‚Ήε…₯γ‚Šζ­―θ»Š", + "block.greate.brass_encased_neutronium_shaft": "真ιγƒ‹γƒ₯γƒΌγƒˆγƒ­γƒ‹γ‚¦γƒ θ£½γ‚±γƒΌγ‚Ήε…₯γ‚Šγ‚·γƒ£γƒ•γƒˆ", "block.greate.brass_encased_rhodium_plated_palladium_cogwheel": "真ιγƒ­γ‚Έγ‚¦γƒ γ‚±γƒΌγ‚Ήε…₯γ‚Šζ­―θ»Š", "block.greate.brass_encased_rhodium_plated_palladium_shaft": "真ιγƒ­γ‚Έγ‚¦γƒ γ‚±γƒΌγ‚Ήε…₯γ‚Šγ‚·γƒ£γƒ•γƒˆ", "block.greate.brass_encased_stainless_steel_cogwheel": "真ιγ‚±γƒΌγ‚Ήε…₯γ‚Šγ‚Ήγƒ†γƒ³γƒ¬γ‚Ήθ£½ζ­―θ»Š", @@ -67,7 +67,7 @@ "block.greate.large_aluminium_cogwheel": "倧きγͺγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½ζ­―θ»Š", "block.greate.large_darmstadtium_cogwheel": "倧きγͺγƒ€γƒΌγƒ γ‚Ήγ‚Ώγƒγ‚¦γƒ ζ­―θ»Š", "block.greate.large_naquadah_alloy_cogwheel": "倧きγͺγƒŠγ‚―γ‚’γƒ€εˆι‡‘ζ­―θ»Š", - "block.greate.large_neutronium_cogwheel": "倧きγͺ中子素歯車", + "block.greate.large_neutronium_cogwheel": "倧きγͺニγƒ₯γƒΌγƒˆγƒ­γƒ‹γ‚¦γƒ θ£½ζ­―θ»Š", "block.greate.large_rhodium_plated_palladium_cogwheel": "倧きγͺγƒ­γ‚Έγ‚¦γƒ ζ­―θ»Š", "block.greate.large_stainless_steel_cogwheel": "倧きγͺγ‚Ήγƒ†γƒ³γƒ¬γ‚Ήθ£½ζ­―θ»Š", "block.greate.large_steel_cogwheel": "倧きγͺγ‚ΉγƒγƒΌγƒ«θ£½ζ­―θ»Š", @@ -76,7 +76,7 @@ "block.greate.metal_girder_encased_aluminium_shaft": "鉄ιͺ¨ε…₯γ‚Šγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½γ‚·γƒ£γƒ•γƒˆ", "block.greate.metal_girder_encased_darmstadtium_shaft": "鉄ιͺ¨ε…₯γ‚Šγƒ€γƒΌγƒ γ‚Ήγ‚Ώγƒγ‚¦γƒ γ‚·γƒ£γƒ•γƒˆ", "block.greate.metal_girder_encased_naquadah_alloy_shaft": "鉄ιͺ¨ε…₯γ‚ŠγƒŠγ‚―γ‚’γƒ€εˆι‡‘γ‚·γƒ£γƒ•γƒˆ", - "block.greate.metal_girder_encased_neutronium_shaft": "鉄ιͺ¨ε…₯γ‚ŠδΈ­ε­η΄ γ‚·γƒ£γƒ•γƒˆ", + "block.greate.metal_girder_encased_neutronium_shaft": "鉄ιͺ¨ε…₯γ‚Šγƒ‹γƒ₯γƒΌγƒˆγƒ­γƒ‹γ‚¦γƒ θ£½γ‚·γƒ£γƒ•γƒˆ", "block.greate.metal_girder_encased_rhodium_plated_palladium_shaft": "鉄ιͺ¨ε…₯γ‚Šγƒ­γ‚Έγ‚¦γƒ γ‚·γƒ£γƒ•γƒˆ", "block.greate.metal_girder_encased_stainless_steel_shaft": "鉄ιͺ¨ε…₯γ‚Šγ‚Ήγƒ†γƒ³γƒ¬γ‚Ήθ£½γ‚·γƒ£γƒ•γƒˆ", "block.greate.metal_girder_encased_steel_shaft": "鉄ιͺ¨ε…₯γ‚Šγ‚ΉγƒγƒΌγƒ«θ£½γ‚·γƒ£γƒ•γƒˆ", @@ -93,25 +93,25 @@ "block.greate.naquadah_alloy_mechanical_saw": "γƒŠγ‚―γ‚’γƒ€εˆι‡‘γƒ‘γ‚«γƒ‹γ‚«γƒ«γ‚½γƒΌ", "block.greate.naquadah_alloy_millstone": "γƒŠγ‚―γ‚’γƒ€εˆι‡‘ηŸ³θ‡Ό", "block.greate.naquadah_alloy_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.polybenzimidazole_belt_darmstadtium": "θšθ‹―εΉΆε’ͺ唑传送带", - "block.greate.polybenzimidazole_belt_neutronium": "θšθ‹―εΉΆε’ͺ唑传送带", - "block.greate.polytetrafluoroethylene_belt_naquadah_alloy": "θšε››ζ°ŸδΉ™ηƒ―δΌ ι€εΈ¦", - "block.greate.polytetrafluoroethylene_belt_rhodium_plated_palladium": "θšε››ζ°ŸδΉ™ηƒ―δΌ ι€εΈ¦", + "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.polybenzimidazole_belt_darmstadtium": "ポγƒͺγƒ™γƒ³γ‚Ίγ‚€γƒŸγƒ€γ‚ΎγƒΌγƒ«γƒ™γƒ«γƒˆ", + "block.greate.polybenzimidazole_belt_neutronium": "ポγƒͺγƒ™γƒ³γ‚Ίγ‚€γƒŸγƒ€γ‚ΎγƒΌγƒ«γƒ™γƒ«γƒˆ", + "block.greate.polytetrafluoroethylene_belt_naquadah_alloy": "PTFEγƒ™γƒ«γƒˆ", + "block.greate.polytetrafluoroethylene_belt_rhodium_plated_palladium": "PTFEγƒ™γƒ«γƒˆ", "block.greate.powered_aluminium_shaft": "γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½ε‹•εŠ›γ‚·γƒ£γƒ•γƒˆ", "block.greate.powered_darmstadtium_shaft": "γƒ€γƒΌγƒ γ‚Ήγ‚Ώγƒγ‚¦γƒ ε‹•εŠ›γ‚·γƒ£γƒ•γƒˆ", "block.greate.powered_naquadah_alloy_shaft": "γƒŠγ‚―γ‚’γƒ€εˆι‡‘ε‹•εŠ›γ‚·γƒ£γƒ•γƒˆ", - "block.greate.powered_neutronium_shaft": "δΈ­ε­η΄ ε‹•εŠ›γ‚·γƒ£γƒ•γƒˆ", + "block.greate.powered_neutronium_shaft": "ニγƒ₯γƒΌγƒˆγƒ­γƒ‹γ‚¦γƒ θ£½ε‹•εŠ›γ‚·γƒ£γƒ•γƒˆ", "block.greate.powered_rhodium_plated_palladium_shaft": "γƒ­γ‚Έγ‚¦γƒ ε‹•εŠ›γ‚·γƒ£γƒ•γƒˆ", "block.greate.powered_stainless_steel_shaft": "γ‚Ήγƒ†γƒ³γƒ¬γ‚Ήθ£½ε‹•εŠ›γ‚·γƒ£γƒ•γƒˆ", "block.greate.powered_steel_shaft": "γ‚ΉγƒγƒΌγƒ«θ£½ε‹•εŠ›γ‚·γƒ£γƒ•γƒˆ", @@ -180,9 +180,9 @@ "item.greate.aluminium_vertical_gearbox": "γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½εž‚η›΄γ‚γ‚’γƒœγƒƒγ‚―γ‚Ή", "item.greate.darmstadtium_vertical_gearbox": "γƒ€γƒΌγƒ γ‚Ήγ‚Ώγƒγ‚¦γƒ εž‚η›΄γ‚γ‚’γƒœγƒƒγ‚―γ‚Ή", "item.greate.naquadah_alloy_vertical_gearbox": "γƒŠγ‚―γ‚’γƒ€εˆι‡‘εž‚η›΄γ‚γ‚’γƒœγƒƒγ‚―γ‚Ή", - "item.greate.neutronium_vertical_gearbox": "δΈ­ε­η΄ εž‚η›΄γ‚γ‚’γƒœγƒƒγ‚―γ‚Ή", - "item.greate.polybenzimidazole_belt_connector": "θšθ‹―εΉΆε’ͺ唑传送带", - "item.greate.polytetrafluoroethylene_belt_connector": "θšε››ζ°ŸδΉ™ηƒ―δΌ ι€εΈ¦", + "item.greate.neutronium_vertical_gearbox": "ニγƒ₯γƒΌγƒˆγƒ­γƒ‹γ‚¦γƒ θ£½εž‚η›΄γ‚γ‚’γƒœγƒƒγ‚―γ‚Ή", + "item.greate.polybenzimidazole_belt_connector": "ポγƒͺγƒ™γƒ³γ‚Ίγ‚€γƒŸγƒ€γ‚ΎγƒΌγƒ«γƒ™γƒ«γƒˆ", + "item.greate.polytetrafluoroethylene_belt_connector": "PTFEγƒ™γƒ«γƒˆ", "item.greate.rhodium_plated_palladium_vertical_gearbox": "γƒ­γ‚Έγ‚¦γƒ εž‚η›΄γ‚γ‚’γƒœγƒƒγ‚―γ‚Ή", "item.greate.stainless_steel_vertical_gearbox": "γ‚Ήγƒ†γƒ³γƒ¬γ‚Ήθ£½εž‚η›΄γ‚γ‚’γƒœγƒƒγ‚―γ‚Ή", "item.greate.steel_vertical_gearbox": "γ‚ΉγƒγƒΌγƒ«θ£½εž‚η›΄γ‚γ‚’γƒœγƒƒγ‚―γ‚Ή", diff --git a/kubejs/assets/greate/lang/ru_ru.json b/kubejs/assets/greate/lang/ru_ru.json index c09807e9c..47f9b2773 100644 --- a/kubejs/assets/greate/lang/ru_ru.json +++ b/kubejs/assets/greate/lang/ru_ru.json @@ -1,9 +1,5 @@ { "__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": "ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€ Π΄Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½ΠΎΠ³ΠΎ колСса", @@ -36,9 +32,16 @@ "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": "Π›Π°Ρ‚ΡƒΠ½Π½Ρ‹ΠΉ ΠΈΠ»ΠΈ мСталличСский корпус ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ использован для ΡƒΠΊΡ€Π°ΡˆΠ΅Π½ΠΈΡ ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½ΠΈ", + "material.greate.rose_quartz": "Π ΠΎΠ·ΠΎΠ²Ρ‹ΠΉ ΠΊΠ²Π°Ρ€Ρ†", "block.greate.aluminium_cogwheel": "ШСстСрня (Алюминий)", "block.greate.aluminium_crushing_wheel": "Π”Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½ΠΎΠ΅ колСсо (Алюминий)", "block.greate.aluminium_crushing_wheel_controller": "ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€ Π΄Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½ΠΎΠ³ΠΎ колСса (Алюминий)", @@ -173,13 +176,8 @@ "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": "Π£Ρ€ΠΎΠ²Π΅Π½ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°: ", @@ -194,7 +192,6 @@ "greate.recipe.fan_washing": "Массовая ΠΏΡ€ΠΎΠΌΡ‹Π²ΠΊΠ°", "greate.recipe.milling": "Помол", "greate.recipe.mixing": "БмСшиваниС", - "greate.recipe.packing": "Π£ΠΏΠ°ΠΊΠΎΠ²ΠΊΠ°", "greate.recipe.pressing": "ΠŸΡ€Π΅ΡΡΠΎΠ²Π°Π½ΠΈΠ΅", "greate.recipe.processing.extra_chance": "% Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π·Π° ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ", "greate.recipe.sawing": "Распиловка", diff --git a/kubejs/assets/greate/lang/uk_ua.json b/kubejs/assets/greate/lang/uk_ua.json index 71f4581f0..bb850d344 100644 --- a/kubejs/assets/greate/lang/uk_ua.json +++ b/kubejs/assets/greate/lang/uk_ua.json @@ -32,11 +32,11 @@ "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_belt_connector": "ΠœΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½ΠΈΠΉ Ρ€Π΅ΠΌΡ–Π½ΡŒ Ρ–Π· Π΄ΠΎΡ‰Π°Ρ‚ΠΈΠΌ ΠΏΡ€ΠΎΡ‚Π΅ΠΊΡ‚ΠΎΡ€ΠΎΠΌ", + "item.greate.stone_belt_connector": "Шкіряний ΠΌΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½ΠΈΠΉ Ρ€Π΅ΠΌΡ–Π½ΡŒ", + "item.greate.rubber_belt_connector": "Π“ΡƒΠΌΠΎΠ²ΠΈΠΉ ΠΌΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½ΠΈΠΉ Ρ€Π΅ΠΌΡ–Π½ΡŒ", + "item.greate.silicone_rubber_belt_connector": "ΠœΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½ΠΈΠΉ Ρ€Π΅ΠΌΡ–Π½ΡŒ Ρ–Π· силіконової Π³ΡƒΠΌΠΈ", + "item.greate.styrene_butadiene_rubber_belt_connector": "ΠœΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½ΠΈΠΉ Ρ€Π΅ΠΌΡ–Π½ΡŒ Ρ–Π· стирол-Π±ΡƒΡ‚Π°Π΄Ρ–Ρ”Π½ΠΎΠ²ΠΎΡ— Π³ΡƒΠΌΠΈ", "item.greate.andesite_alloy_vertical_gearbox": "Π‘Π°Π·ΠΎΠ²ΠΈΠΉ Π²Π΅Ρ€Ρ‚ΠΈΠΊΠ°Π»ΡŒΠ½ΠΈΠΉ Ρ€Π΅Π΄ΡƒΠΊΡ‚ΠΎΡ€", "greate.recipe.packing": "Π—Π²Π°Ρ€ΡŽΠ²Π°Π½Π½Ρ Ρ‚Π° ΠŸΠ°ΠΊΡƒΠ²Π°Π½Π½Ρ", "greate.ponder.belt_casing.text_1": "Π›Π°Ρ‚ΡƒΠ½Π½ΠΈΠΉ Π°Π±ΠΎ ΠΌΠ΅Ρ‚Π°Π»Π΅Π²ΠΈΠΉ ΠΊΠΎΠΆΡƒΡ… ΠΌΠΎΠΆΠ½Π° використовувати для дСкорування ΠΌΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½ΠΈΡ… Ρ€Π΅ΠΌΠ΅Π½Ρ–Π²", diff --git a/kubejs/assets/greate/lang/zh_cn.json b/kubejs/assets/greate/lang/zh_cn.json index 7230a1344..c2d749888 100644 --- a/kubejs/assets/greate/lang/zh_cn.json +++ b/kubejs/assets/greate/lang/zh_cn.json @@ -368,11 +368,11 @@ "block.greate.large_andesite_alloy_cogwheel": "ε€§εž‹εŸΊη‘€ι½Ώθ½", "block.greate.metal_girder_encased_andesite_alloy_shaft": "ι‡‘ε±žζ’εŒ…δ½ηš„εŸΊη‘€δΌ εŠ¨ζ†", "block.greate.powered_andesite_alloy_shaft": "εŸΊη‘€εŠ¨εŠ›ζ›²θ½΄", + "item.greate.andesite_alloy_belt_connector": "木板ε±₯带式传送带", + "item.greate.stone_belt_connector": "ηšι©δΌ ι€εΈ¦", "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.styrene_butadiene_rubber_belt_connector": "丁苯橑胢传送带", "item.greate.andesite_alloy_vertical_gearbox": "εŸΊη‘€η«–η›΄εε­—ι½Ώθ½η±", "greate.recipe.packing": "η„ŠζŽ₯ & εŽ‹ηΌ©", "greate.ponder.belt_casing.text_1": "你可δ»₯η”¨ι»„ι“œζˆ–θ€…ι‡‘ε±žζœΊε£³θ£…ι₯°δ½ ηš„传送带", diff --git a/kubejs/assets/gtceu/models/block/rose_quartz_bud_indicator.json b/kubejs/assets/greate/models/block/rose_quartz_bud_indicator.json similarity index 100% rename from kubejs/assets/gtceu/models/block/rose_quartz_bud_indicator.json rename to kubejs/assets/greate/models/block/rose_quartz_bud_indicator.json diff --git a/kubejs/assets/greate/textures/block/andesite_alloy/belt.png b/kubejs/assets/greate/textures/block/andesite_alloy/belt.png new file mode 100644 index 000000000..bd259c25d Binary files /dev/null and b/kubejs/assets/greate/textures/block/andesite_alloy/belt.png differ diff --git a/kubejs/assets/greate/textures/block/andesite_alloy/belt_diagonal.png b/kubejs/assets/greate/textures/block/andesite_alloy/belt_diagonal.png new file mode 100644 index 000000000..6dd58dd7d Binary files /dev/null and b/kubejs/assets/greate/textures/block/andesite_alloy/belt_diagonal.png differ diff --git a/kubejs/assets/greate/textures/block/andesite_alloy/belt_diagonal_scroll.png b/kubejs/assets/greate/textures/block/andesite_alloy/belt_diagonal_scroll.png new file mode 100644 index 000000000..b65fed607 Binary files /dev/null and b/kubejs/assets/greate/textures/block/andesite_alloy/belt_diagonal_scroll.png differ diff --git a/kubejs/assets/greate/textures/block/andesite_alloy/belt_offset.png b/kubejs/assets/greate/textures/block/andesite_alloy/belt_offset.png new file mode 100644 index 000000000..8ea0053a8 Binary files /dev/null and b/kubejs/assets/greate/textures/block/andesite_alloy/belt_offset.png differ diff --git a/kubejs/assets/greate/textures/block/andesite_alloy/belt_scroll.png b/kubejs/assets/greate/textures/block/andesite_alloy/belt_scroll.png new file mode 100644 index 000000000..751ec63b0 Binary files /dev/null and b/kubejs/assets/greate/textures/block/andesite_alloy/belt_scroll.png differ diff --git a/kubejs/assets/greate/textures/block/rubber/belt.png b/kubejs/assets/greate/textures/block/rubber/belt.png new file mode 100644 index 000000000..61e23bdd3 Binary files /dev/null and b/kubejs/assets/greate/textures/block/rubber/belt.png differ diff --git a/kubejs/assets/greate/textures/block/rubber/belt_diagonal.png b/kubejs/assets/greate/textures/block/rubber/belt_diagonal.png new file mode 100644 index 000000000..45b40ff7a Binary files /dev/null and b/kubejs/assets/greate/textures/block/rubber/belt_diagonal.png differ diff --git a/kubejs/assets/greate/textures/block/rubber/belt_diagonal_scroll.png b/kubejs/assets/greate/textures/block/rubber/belt_diagonal_scroll.png new file mode 100644 index 000000000..6ec8ee545 Binary files /dev/null and b/kubejs/assets/greate/textures/block/rubber/belt_diagonal_scroll.png differ diff --git a/kubejs/assets/greate/textures/block/rubber/belt_offset.png b/kubejs/assets/greate/textures/block/rubber/belt_offset.png new file mode 100644 index 000000000..bc4fe47aa Binary files /dev/null and b/kubejs/assets/greate/textures/block/rubber/belt_offset.png differ diff --git a/kubejs/assets/greate/textures/block/rubber/belt_scroll.png b/kubejs/assets/greate/textures/block/rubber/belt_scroll.png new file mode 100644 index 000000000..bd1074a78 Binary files /dev/null and b/kubejs/assets/greate/textures/block/rubber/belt_scroll.png differ diff --git a/kubejs/assets/greate/textures/block/silicone_rubber/belt.png b/kubejs/assets/greate/textures/block/silicone_rubber/belt.png new file mode 100644 index 000000000..12024e291 Binary files /dev/null and b/kubejs/assets/greate/textures/block/silicone_rubber/belt.png differ diff --git a/kubejs/assets/greate/textures/block/silicone_rubber/belt_diagonal.png b/kubejs/assets/greate/textures/block/silicone_rubber/belt_diagonal.png new file mode 100644 index 000000000..fab27e223 Binary files /dev/null and b/kubejs/assets/greate/textures/block/silicone_rubber/belt_diagonal.png differ diff --git a/kubejs/assets/greate/textures/block/silicone_rubber/belt_diagonal_scroll.png b/kubejs/assets/greate/textures/block/silicone_rubber/belt_diagonal_scroll.png new file mode 100644 index 000000000..3f3fa5237 Binary files /dev/null and b/kubejs/assets/greate/textures/block/silicone_rubber/belt_diagonal_scroll.png differ diff --git a/kubejs/assets/greate/textures/block/silicone_rubber/belt_offset.png b/kubejs/assets/greate/textures/block/silicone_rubber/belt_offset.png new file mode 100644 index 000000000..c6f9102c1 Binary files /dev/null and b/kubejs/assets/greate/textures/block/silicone_rubber/belt_offset.png differ diff --git a/kubejs/assets/greate/textures/block/silicone_rubber/belt_scroll.png b/kubejs/assets/greate/textures/block/silicone_rubber/belt_scroll.png new file mode 100644 index 000000000..db67db48e Binary files /dev/null and b/kubejs/assets/greate/textures/block/silicone_rubber/belt_scroll.png differ diff --git a/kubejs/assets/greate/textures/block/stone/belt.png b/kubejs/assets/greate/textures/block/stone/belt.png new file mode 100644 index 000000000..b1806dadc Binary files /dev/null and b/kubejs/assets/greate/textures/block/stone/belt.png differ diff --git a/kubejs/assets/greate/textures/block/stone/belt_diagonal.png b/kubejs/assets/greate/textures/block/stone/belt_diagonal.png new file mode 100644 index 000000000..a2ca94799 Binary files /dev/null and b/kubejs/assets/greate/textures/block/stone/belt_diagonal.png differ diff --git a/kubejs/assets/greate/textures/block/stone/belt_diagonal_scroll.png b/kubejs/assets/greate/textures/block/stone/belt_diagonal_scroll.png new file mode 100644 index 000000000..cf862379d Binary files /dev/null and b/kubejs/assets/greate/textures/block/stone/belt_diagonal_scroll.png differ diff --git a/kubejs/assets/greate/textures/block/stone/belt_offset.png b/kubejs/assets/greate/textures/block/stone/belt_offset.png new file mode 100644 index 000000000..2315f5d2a Binary files /dev/null and b/kubejs/assets/greate/textures/block/stone/belt_offset.png differ diff --git a/kubejs/assets/greate/textures/block/stone/belt_scroll.png b/kubejs/assets/greate/textures/block/stone/belt_scroll.png new file mode 100644 index 000000000..c9318f8e0 Binary files /dev/null and b/kubejs/assets/greate/textures/block/stone/belt_scroll.png differ diff --git a/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt.png b/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt.png new file mode 100644 index 000000000..e1607ede0 Binary files /dev/null and b/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt.png differ diff --git a/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_diagonal.png b/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_diagonal.png new file mode 100644 index 000000000..3ba4c8824 Binary files /dev/null and b/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_diagonal.png differ diff --git a/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_diagonal_scroll.png b/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_diagonal_scroll.png new file mode 100644 index 000000000..4dba576c8 Binary files /dev/null and b/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_diagonal_scroll.png differ diff --git a/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_offset.png b/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_offset.png new file mode 100644 index 000000000..a994b49bd Binary files /dev/null and b/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_offset.png differ diff --git a/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_scroll.png b/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_scroll.png new file mode 100644 index 000000000..60d982b10 Binary files /dev/null and b/kubejs/assets/greate/textures/block/styrene_butadiene_rubber/belt_scroll.png differ diff --git a/kubejs/assets/greate/textures/item/andesite_alloy_belt_connector.png b/kubejs/assets/greate/textures/item/andesite_alloy_belt_connector.png new file mode 100644 index 000000000..170fe3f95 Binary files /dev/null and b/kubejs/assets/greate/textures/item/andesite_alloy_belt_connector.png differ diff --git a/kubejs/assets/greate/textures/item/rubber_belt_connector.png b/kubejs/assets/greate/textures/item/rubber_belt_connector.png new file mode 100644 index 000000000..cc459e5ef Binary files /dev/null and b/kubejs/assets/greate/textures/item/rubber_belt_connector.png differ diff --git a/kubejs/assets/greate/textures/item/silicone_rubber_belt_connector.png b/kubejs/assets/greate/textures/item/silicone_rubber_belt_connector.png new file mode 100644 index 000000000..0fa0a707b Binary files /dev/null and b/kubejs/assets/greate/textures/item/silicone_rubber_belt_connector.png differ diff --git a/kubejs/assets/greate/textures/item/stone_belt_connector.png b/kubejs/assets/greate/textures/item/stone_belt_connector.png new file mode 100644 index 000000000..f5b101e99 Binary files /dev/null and b/kubejs/assets/greate/textures/item/stone_belt_connector.png differ diff --git a/kubejs/assets/greate/textures/item/styrene_butadiene_rubber_belt_connector.png b/kubejs/assets/greate/textures/item/styrene_butadiene_rubber_belt_connector.png new file mode 100644 index 000000000..5f95e2bbd Binary files /dev/null and b/kubejs/assets/greate/textures/item/styrene_butadiene_rubber_belt_connector.png differ diff --git a/kubejs/assets/gtceu/blockstates/rose_quartz_bud_indicator.json b/kubejs/assets/gtceu/blockstates/rose_quartz_bud_indicator.json deleted file mode 100644 index dacf99e1c..000000000 --- a/kubejs/assets/gtceu/blockstates/rose_quartz_bud_indicator.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "": [ - { "model": "gtceu:block/rose_quartz_bud_indicator" }, - { "model": "gtceu:block/rose_quartz_bud_indicator", "y": 90 }, - { "model": "gtceu:block/rose_quartz_bud_indicator", "y": 180 }, - { "model": "gtceu:block/rose_quartz_bud_indicator", "y": 270 } - ] - } -} \ 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 3724fdfe2..85a0c37d7 100644 --- a/kubejs/assets/gtceu/lang/en_us.json +++ b/kubejs/assets/gtceu/lang/en_us.json @@ -2,7 +2,11 @@ "__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 Surface Bud", "block.gtceu.greenhouse": "Greenhouse", - "block.gtceu.steam_bloomery": "Steam Bloomery", + "block.tfg.steam_bloomery": "Steam Bloomery", + "block.tfg.steam_thermal_centrifuge": "Steam Thermal Centrifuge", + "block.tfg.steam_fuser": "Steam Fuser", + "block.tfg.steam_squasher": "Steam Squasher", + "block.tfg.steam_presser": "Steam Presser", "block.gtceu.large_solar_panel": "Β§9Large Solar Array MK I", "block.gtceu.large_solar_panel_tier2": "Β§bLarge Solar Array MK II", "block.gtceu.large_solar_panel_tier3": "Β§cLarge Solar Array MK III", @@ -13,7 +17,8 @@ "block.gtceu.evaporation_tower": "Evaporation Tower", "block.gtceu.ostrum_harvester": "Ostrum Harvester", "block.gtceu.moon_dust_harvester": "Moon Dust Harvester", - "block.gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator", + "block.tfg.ostrum_linear_accelerator": "Ostrum Linear Accelerator", + "block.gtceu.coal_liquefaction_tower": "Liquefaction Tower", "block.gtceu.ulv_super_tank": "Basic Super Tank", "block.gtceu.ulv_super_chest": "Basic Super Chest", "block.gtceu.ulv_hermetic_casing": "Basic Hermetic Casing", @@ -40,6 +45,7 @@ "gtceu.large_solar_panel_tier3": "Large Solar Array MK III", "gtceu.gas_pressurizer": "Gas Pressurizer", "gtceu.nuclear_fuel_factory": "Nuclear Fuel Factory", + "gtceu.nuclear_turbine": "Nuclear Steam Turbine", "gtceu.heat_exchanger": "Heat Exchanger", "gtceu.fission_reactor": "Fission Reactor", "gtceu.evaporation_tower": "Evaporation Tower", @@ -48,6 +54,25 @@ "gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator", "gtceu.bioreactor": "Bioreactor", "gtceu.growth_chamber": "Growth Chamber", + "gtceu.coal_liquefaction_tower": "Liquefaction Tower", + "gtceu.smr_generator": "Small Modular Turbine", + "gtceu.tooltip.machine.moon_dust_harvester_1": "Β§7Extraterrestrial Vacuum CleanerΒ§r", + "gtceu.tooltip.machine.moon_dust_harvester_2": "Β§7Harvests infinite Regolith Dust depending on the biome its placed in.Β§r", + "gtceu.tooltip.machine.ostrum_harvester_1": "Β§7Legally Distinct Spice CrawlerΒ§r", + "gtceu.tooltip.machine.ostrum_harvester_2": "Β§7Harvests infinite Ostrum Dust when placed over an Ostrum deposit.Β§r", + "gtceu.tooltip.machine.ostrum_harvester_3": "Β§7Requires drilling fluid to work.Β§r", + "gtceu.tooltip.machine.ostrum_linear_accelerator_1": "Β§7Higgs Boson not includedΒ§r", + "gtceu.tooltip.machine.ostrum_linear_accelerator_2": "Β§7Breaks down Ostrum Dust into its components. Requires various fluids from fission line.Β§r", + "gtceu.tooltip.machine.heat_exchanger_1": "Β§7Heating up Fluids with other hot FluidsΒ§r", + "gtceu.tooltip.machine.heat_exchanger_2": "Β§7Transfers heat from one fluid to another.Β§r", + "gtceu.tooltip.machine.nuclear_fuel_factory_1": "Β§7Producing extra spicy RodsΒ§r", + "gtceu.tooltip.machine.nuclear_fuel_factory_2": "Β§7Processes raw radioactive material into fissile fuel.Β§r", + "gtceu.tooltip.machine.steam_bloomery_1": "Β§7Upgrade your Bloomery with the power of Steam!Β§r", + "gtceu.tooltip.machine.steam_bloomery_2": "Β§7Processes Iron-bearing Dusts or Ingots into Raw Iron Blooms.Β§r", + "gtceu.tooltip.machine.steam_bloomery_3": "Β§7Fueling it with Coke or Anthracite will double the output.Β§r", + "gtceu.tooltip.machine.steam_parallel": "Β§7Can process up to 8 recipes at once, which changes how much Steam is required.Β§r", + "gtceu.tooltip.machine.coal_liquefaction_tower_1": "Β§7Smoothie MakerΒ§r", + "gtceu.tooltip.machine.coal_liquefaction_tower_2": "Β§7Extracts gas and liquids from carbonic solidsΒ§r", "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", @@ -119,8 +144,10 @@ "material.gtceu.armalcolite": "Armalcolite", "material.gtceu.desh": "Desh", "material.gtceu.ostrum": "Ostrum", - "material.gtceu.calorite": "Calorite", - "material.gtceu.etrium": "Etrium", + "material.tfg.calorite": "Calorite", + "material.tfg.etrium": "Etrium", + "material.gtceu.tarkianite": "Tarkianite", + "material.gtceu.thorium": "Thorianite", "material.gtceu.aluminium_silicate": "Aluminium Silicate", "material.gtceu.rocket_alloy_t1": "R-Aluminosteel Rocket Alloy", "material.gtceu.rocket_alloy_t2": "ASM 4914 Titanium Rocket Alloy", @@ -166,6 +193,9 @@ "material.gtceu.uranium_pellet": "Uranium Pellet", "material.gtceu.thorium_pellet": "Thorium Pellet", "material.gtceu.ostrum_iodide": "Ostrum Iodide", + "material.gtceu.americium": "Americium 243", + "material.gtceu.uranium": "Uranium 238", + "material.gtceu.plutonium": "Plutonium 239", "material.gtceu.residual_radioactive_concoction": "Residual Radioactive Concoction", "material.gtceu.regolith_vapor": "Regolith Vapor", "material.gtceu.dense_ostrum_vapor": "Dense Ostrum Vapor", @@ -175,16 +205,22 @@ "metaitem.crushed.tooltip.purify": "Drop in Water to get Purified Ore", "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", + "item.gtceu.tool.tooltip.repair_info": "", + "item.gtceu.tool.tooltip.repair_material": "", "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", - "gtceu.jei.bedrock_fluid.liquid_ice": "Martian Ice", + "gtceu.jei.bedrock_fluid.nether_natural_gas_deposit": "Beneath Natural Gas Deposit", + "gtceu.jei.bedrock_fluid.moon_helium": "Lunar Helium Deposit", + "gtceu.jei.bedrock_fluid.moon_helium_3": "Lunar Helium-3 Deposit", + "gtceu.jei.bedrock_fluid.moon_argon": "Lunar Argon Deposit", + "gtceu.jei.bedrock_fluid.semiheavy_ammoniacal_water": "Martian Semiheavy Ammoniacal Water Deposit", + "gtceu.jei.bedrock_fluid.liquid_carbon_dioxide": "Martian Liquid Carbon Dioxide Deposit", + "gtceu.jei.bedrock_fluid.heavy_ammoniacal_water": "Martian Heavy Ammoniacal Water Deposit", + "gtceu.jei.bedrock_fluid.liquid_ice": "Martian Ice Deposit", "gtceu.recipe.category.ingot_molding": "Material Molding", + "block.gtceu.wire_coil.tooltip_pyro": "Β§8Pyrolyse Oven, Liquefaction Tower and Nuclear Fuel Factory:Β§r", + "block.gtceu.wire_coil.tooltip_cracking": "Β§8Cracking Unit, Moon and Ostrum Harvesters:Β§r", + "tooltip.moldraw.shift_view": "Β§7Β§oHold (Shift) for Molecular StructureΒ§r", "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/ja_jp.json b/kubejs/assets/gtceu/lang/ja_jp.json index 61c1d4a38..426e38373 100644 --- a/kubejs/assets/gtceu/lang/ja_jp.json +++ b/kubejs/assets/gtceu/lang/ja_jp.json @@ -2,22 +2,23 @@ "__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 Surface Bud", "block.gtceu.greenhouse": "ι›»ζ°—ζΈ©ε€", - "block.gtceu.steam_bloomery": "θ’Έζ°—εΌε‘Šι‰„η‚‰", - "block.gtceu.large_solar_panel": "Β§9Large Solar Array MK I", - "block.gtceu.large_solar_panel_tier2": "Β§bLarge Solar Array MK II", - "block.gtceu.large_solar_panel_tier3": "Β§cLarge Solar Array MK III", + "block.tfg.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": "Nuclear Fuel Factory", - "block.gtceu.heat_exchanger": "Heat Exchanger", - "block.gtceu.fission_reactor": "Fission Reactor", - "block.gtceu.evaporation_tower": "Evaporation Tower", - "block.gtceu.ostrum_harvester": "Ostrum Harvester", - "block.gtceu.moon_dust_harvester": "Moon dust Harvester", - "block.gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator", + "block.gtceu.nuclear_fuel_factory": "ζ Έη‡ƒζ–™ε½’ζˆζ©Ÿ", + "block.gtceu.heat_exchanger": "η†±δΊ€ζ›ζ©Ÿ", + "block.gtceu.fission_reactor": "ζ Έεˆ†θ£‚η‚‰", + "block.gtceu.evaporation_tower": "θ’Έη™Ίε‘”", + "block.gtceu.ostrum_harvester": "γ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒγƒΌγƒ™γ‚Ήγ‚ΏγƒΌ", + "block.gtceu.moon_dust_harvester": "ムーンハーベスター", + "block.tfg.ostrum_linear_accelerator": "γ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒͺニををクセラレーター", + "block.gtceu.coal_liquefaction_tower": "ζΆ²εŒ–ε‘”", "block.gtceu.ulv_super_tank": "εŸΊζœ¬εž‹γ‚ΉγƒΌγƒ‘γƒΌγ‚Ώγƒ³γ‚―", "block.gtceu.ulv_super_chest": "εŸΊζœ¬εž‹γ‚ΉγƒΌγƒ‘γƒΌγƒγ‚§γ‚Ήγƒˆ", - "block.gtceu.ulv_hermetic_casing": "Basic Hermetic Casing", - "block.gtceu.hv_energy_output_hatch_4a": "Β§6HV 4A Dynamo HatchΒ§r", + "block.gtceu.ulv_hermetic_casing": "εŸΊζœ¬ζ°—ε―†ε€–θ£…", + "block.gtceu.hv_energy_output_hatch_4a": "Β§6HV 4A γƒ€γ‚€γƒŠγƒ’γƒγƒƒγƒΒ§r", "block.tfg.bioreactor": "Bioreactor", "block.tfg.growth_chamber": "Growth Chamber", "block.tfg.single_itemstack_bus": "Limiting Input Bus", @@ -29,25 +30,45 @@ "block.gtceu.black_bronze_drum": "ブラックブロンズ製ドラム", "block.gtceu.bismuth_bronze_crate": "γƒ“γ‚Ήγƒžγ‚Ήγƒ–γƒ­γƒ³γ‚Ίθ£½γ‚―γƒ¬γƒΌγƒˆ", "block.gtceu.bismuth_bronze_drum": "γƒ“γ‚Ήγƒžγ‚Ήγƒ–γƒ­γƒ³γ‚Ίθ£½γƒ‰γƒ©γƒ ", - "block.gtceu.overworld_marker": "Earth", + "block.gtceu.overworld_marker": "εœ°ηƒ", "block.gtceu.the_nether_marker": "The Beneath", "gtceu.greenhouse": "ι›»ζ°—ζΈ©ε€", "gtceu.steam_bloomery": "θ’Έζ°—εΌε‘Šι‰„η‚‰", "gtceu.food_oven": "ι›»ζ°—γ‚ͺーブン", "gtceu.food_processor": "θ‡ͺε‹•θͺΏη†", - "gtceu.large_solar_panel": "Large Solar Array MK I", - "gtceu.large_solar_panel_tier2": "Large Solar Array MK II", - "gtceu.large_solar_panel_tier3": "Large Solar Array MK III", + "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": "Nuclear Fuel Factory", - "gtceu.heat_exchanger": "Heat Exchanger", - "gtceu.fission_reactor": "Fission Reactor", - "gtceu.evaporation_tower": "Evaporation Tower", - "gtceu.ostrum_harvester": "Ostrum Harvester", - "gtceu.moon_dust_harvester": "Moon dust Harvester", - "gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator", + "gtceu.nuclear_fuel_factory": "ζ Έη‡ƒζ–™ε½’ζˆζ©Ÿ", + "gtceu.nuclear_turbine": "εŽŸε­εŠ›θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³", + "gtceu.heat_exchanger": "η†±δΊ€ζ›ζ©Ÿ", + "gtceu.fission_reactor": "ζ Έεˆ†θ£‚η‚‰", + "gtceu.evaporation_tower": "θ’Έη™Ίε‘”", + "gtceu.ostrum_harvester": "γ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒγƒΌγƒ™γ‚Ήγ‚ΏγƒΌ", + "gtceu.moon_dust_harvester": "ムーンハーベスター", + "gtceu.ostrum_linear_accelerator": "γ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒͺニををクセラレーター", "gtceu.bioreactor": "Bioreactor", "gtceu.growth_chamber": "Growth Chamber", + "gtceu.coal_liquefaction_tower": "ζΆ²εŒ–ε‘”", + "gtceu.smr_generator": "Small Modular Turbine", + "gtceu.tooltip.machine.moon_dust_harvester_1": "Β§7Extraterrestrial Vacuum CleanerΒ§r", + "gtceu.tooltip.machine.moon_dust_harvester_2": "Β§7Harvests infinite Regolith Dust depending on the biome its placed in.Β§r", + "gtceu.tooltip.machine.ostrum_harvester_1": "Β§7Legally Distinct Spice CrawlerΒ§r", + "gtceu.tooltip.machine.ostrum_harvester_2": "Β§7Harvests infinite Ostrum Dust when placed over an Ostrum deposit.Β§r", + "gtceu.tooltip.machine.ostrum_harvester_3": "Β§7Requires drilling fluid to work.Β§r", + "gtceu.tooltip.machine.ostrum_linear_accelerator_1": "Β§7Higgs Boson not includedΒ§r", + "gtceu.tooltip.machine.ostrum_linear_accelerator_2": "Β§7Breaks down Ostrum Dust into its components. Requires various fluids from fission line.Β§r", + "gtceu.tooltip.machine.heat_exchanger_1": "Β§7Heating up Fluids with other hot FluidsΒ§r", + "gtceu.tooltip.machine.heat_exchanger_2": "Β§7Transfers heat from one fluid to another.Β§r", + "gtceu.tooltip.machine.nuclear_fuel_factory_1": "Β§7Producing extra spicy RodsΒ§r", + "gtceu.tooltip.machine.nuclear_fuel_factory_2": "Β§7Processes raw radioactive material into fissile fuel.Β§r", + "gtceu.tooltip.machine.steam_bloomery_1": "Β§7Upgrade your Bloomery with the power of Steam!Β§r", + "gtceu.tooltip.machine.steam_bloomery_2": "Β§7Processes Iron-bearing Dusts or Ingots into Raw Iron Blooms.Β§r", + "gtceu.tooltip.machine.steam_bloomery_3": "Β§7Fueling it with Coke or Anthracite will double the output.Β§r", + "gtceu.tooltip.machine.steam_parallel": "Β§7Can process up to 8 recipes at once, which changes how much Steam is required.Β§r", + "gtceu.tooltip.machine.coal_liquefaction_tower_1": "Β§7Smoothie MakerΒ§r", + "gtceu.tooltip.machine.coal_liquefaction_tower_2": "Β§7Extracts gas and liquids from carbonic solidsΒ§r", "item.gtceu.tiny_wood_dust": "ζ₯΅ε°γζœ¨γγƒ‘ルプ", "item.gtceu.small_wood_dust": "小さγͺ木γγƒ‘ルプ", "item.gtceu.wood_dust": "木γγƒ‘ルプ", @@ -111,35 +132,36 @@ "item.gtceu.exquisite_rock_salt_gem": "η²Ύε·§γͺ岩呩γη΅ζ™Ά", "item.gtceu.flawless_salt_gem": "ε‚·γγͺい呩γη΅ζ™Ά", "item.gtceu.flawless_rock_salt_gem": "ε‚·γγͺい岩呩γη΅ζ™Ά", - "material.gtceu.ice": "Ice Slush", + "material.gtceu.ice": "ζ°·ζ³₯", "material.gtceu.damascus_steel": "Swine-steel", - "material.gtceu.air": "Earth Air", - "material.gtceu.liquid_air": "Liquid Earth Air", - "material.gtceu.cooperite": "Cooperite", - "material.gtceu.armalcolite": "Armalcolite", - "material.gtceu.desh": "Desh", - "material.gtceu.ostrum": "Ostrum", - "material.gtceu.calorite": "Calorite", - "material.gtceu.etrium": "Etrium", - "material.gtceu.aluminium_silicate": "Aluminium Silicate", - "material.gtceu.rocket_alloy_t1": "R-Aluminosteel Rocket Alloy", - "material.gtceu.rocket_alloy_t2": "ASM 4914 Titanium Rocket Alloy", - "material.gtceu.rocket_alloy_t3": "45-Ti Tungstensteel Rocket Alloy", - "material.gtceu.vitrified_asbestos": "Vitrified Asbestos", - "material.gtceu.liquid_carbon_dioxide": "Liquid Carbon Dioxide", + "material.gtceu.air": "η©Ίζ°—", + "material.gtceu.liquid_air": "梲体空気", + "material.gtceu.cooperite": "クーパー鉱", + "material.gtceu.armalcolite": "γ‚’γƒΌγƒžγƒ«γ‚³γƒ©γ‚€γƒˆ", + "material.gtceu.desh": "デッシγƒ₯", + "material.gtceu.ostrum": "γ‚ͺγ‚Ήγƒˆγƒ©γƒ ", + "material.tfg.calorite": "γ‚«γƒ­γƒ©γ‚€γƒˆ", + "material.tfg.etrium": "γ‚¨γƒˆγƒͺウム", + "material.gtceu.tarkianite": "タキをン鉱", + "material.gtceu.aluminium_silicate": "γ‚±γ‚€ι…Έγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ ", + "material.gtceu.rocket_alloy_t1": "R-AS γƒ­γ‚±γƒƒγƒˆεˆι‡‘", + "material.gtceu.rocket_alloy_t2": "ASM-4914 γƒγ‚Ώγƒ‹γ‚¦γƒ γƒ­γ‚±γƒƒγƒˆεˆι‡‘", + "material.gtceu.rocket_alloy_t3": "45-Ti γ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³γ‚ΉγƒγƒΌγƒ«γƒ­γ‚±γƒƒγƒˆεˆι‡‘", + "material.gtceu.vitrified_asbestos": "γ‚¬γƒ©γ‚ΉεŒ–γ—γŸηŸ³ηΆΏ", + "material.gtceu.liquid_carbon_dioxide": "ζΆ²εŒ–δΊŒι…ΈεŒ–η‚­η΄ ", "material.gtceu.hot_debrominated_brine": "Hot Debrominated Brine", - "material.gtceu.hydrogen_iodide": "Hydrogen Iodide", - "material.gtceu.dense_steam": "High Pressure Steam", - "material.gtceu.radioactive_steam": "Radioactive Steam", - "material.gtceu.radioactive_waste": "Radioactive Waste", - "material.gtceu.irradiated_steam": "Irradiated Steam", - "material.gtceu.heavy_water": "Heavy Water", - "material.gtceu.uranium_waste": "Uranium Waste", - "material.gtceu.nuclear_waste": "Nuclear Waste", - "material.gtceu.dirty_hexafluorosilicic_acid": "Dirty Hexafluorosilicic Acid", - "material.gtceu.martian_sludge": "Martian Sludge", - "material.gtceu.dioxygen_difluoride": "Dioxygen Difluoride", - "material.gtceu.tritiated_water": "Tritiated Water", + "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": "Raw Rich Brine", "material.gtceu.hot_iodine_brine": "Hot Iodine Brine", "material.gtceu.brominated_iodine_vapor": "Brominated Iodine Vapor", @@ -156,68 +178,77 @@ "material.gtceu.debrominated_brine": "Debrominated Brine", "material.gtceu.acidic_bromine_exhaust": "Acidic Bromine Exhaust", "material.gtceu.hot_alkaline_debrominated_brine": "Hot Alkaline Debrominated Brine", - "material.gtceu.lithium_carbonate": "Lithium Carbonate", - "material.gtceu.lithium_fluoride": "Lithium Fluoride", - "material.gtceu.tetrafluoroberyllate": "Tetrafluoroberyllate", - "material.gtceu.thorium_230": "Thorium 230", - "material.gtceu.thorium_232": "Thorium 232", + "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 Pellet", - "material.gtceu.plutonium_pellet": "Plutonium Pellet", - "material.gtceu.uranium_pellet": "Uranium Pellet", - "material.gtceu.thorium_pellet": "Thorium Pellet", - "material.gtceu.ostrum_iodide": "Ostrum Iodide", - "material.gtceu.residual_radioactive_concoction": "Residual Radioactive Concoction", - "material.gtceu.regolith_vapor": "Regolith Vapor", - "material.gtceu.dense_ostrum_vapor": "Dense Ostrum Vapor", - "material.gtceu.lightweight_ostrum_vapor": "Lightweight Ostrum Vapor", - "material.gtceu.ostrum_vapor": "Ostrum Vapor", + "material.gtceu.plutonium_pellet": "γƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ γƒšγƒ¬γƒƒγƒˆ", + "material.gtceu.uranium_pellet": "γ‚¦γƒ©γƒ³γƒšγƒ¬γƒƒγƒˆ", + "material.gtceu.thorium_pellet": "γƒˆγƒͺγ‚¦γƒ γƒšγƒ¬γƒƒγƒˆ", + "material.gtceu.ostrum_iodide": "γƒ¨γ‚¦εŒ–γ‚ͺγ‚Ήγƒˆγƒ©γƒ ", + "material.gtceu.americium": "をパγƒͺシウム243", + "material.gtceu.uranium": "ウラン238", + "material.gtceu.plutonium": "γƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ 239", + "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": "Drop in Water to get Clean Dust", "metaitem.crushed.tooltip.purify": "Drop in Water to get Purified Ore", "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", + "item.gtceu.tool.tooltip.repair_info": "", + "item.gtceu.tool.tooltip.repair_material": "", "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", - "gtceu.jei.bedrock_fluid.liquid_ice": "Martian Ice", - "tagprefix.sword_head": "%s Sword Head", - "tagprefix.pickaxe_head": "%s Pickaxe Head", - "tagprefix.shovel_head": "%s Shovel Head", - "tagprefix.axe_head": "%s Axe Head", - "tagprefix.hoe_head": "%s Hoe Head", - "tagprefix.scythe_head": "%s Scythe Head", - "tagprefix.file_head": "%s File Head", - "tagprefix.hammer_head": "%s Hammer Head", - "tagprefix.saw_head": "%s Saw Head", - "tagprefix.knife_head": "%s Knife Head", - "tagprefix.butchery_knife_head": "%s Butchery Knife Head", - "tagprefix.mining_hammer_head": "%s Mining Hammer Head", - "tagprefix.spade_head": "%s Spade Head", - "tagprefix.double_ingot": "%s Double Ingot", - "tagprefix.poor_raw": "Poor Raw %s", - "tagprefix.rich_raw": "Rich Raw %s", - "tagprefix.dusty_raw": "Dusty Raw %s", - "tagprefix.gabbro": "Gabbro %s Ore", - "tagprefix.shale": "Shale %s Ore", - "tagprefix.claystone": "Claystone %s Ore", - "tagprefix.limestone": "Limestone %s Ore", - "tagprefix.conglomerate": "Conglomerate %s Ore", - "tagprefix.dolomite": "Dolomite %s Ore", - "tagprefix.chert": "Chert %s Ore", - "tagprefix.chalk": "Chalk %s Ore", - "tagprefix.rhyolite": "Rhyolite %s Ore", - "tagprefix.dacite": "Dacite %s Ore", - "tagprefix.quartzite": "Quartzite %s Ore", - "tagprefix.slate": "Slate %s Ore", - "tagprefix.phyllite": "Phyllite %s Ore", - "tagprefix.schist": "Schist %s Ore", - "tagprefix.gneiss": "Gneiss %s Ore", - "tagprefix.marble": "Marble %s Ore", - "tagprefix.deepslate": "Migmatite %s Ore", - "tagprefix.pyroxenite": "Pyroxenite %s Ore", - "tagprefix.dripstone": "Travertine %s Ore" + "gtceu.jei.bedrock_fluid.nether_natural_gas_deposit": "Beneath Natural Gas Deposit", + "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": "γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚Šγι‡ζ°΄", + "gtceu.jei.bedrock_fluid.liquid_ice": "ζ°·", + "gtceu.recipe.category.ingot_molding": "Material Molding", + "block.gtceu.wire_coil.tooltip_pyro": "Β§8Pyrolyse Oven and Nuclear Fuel Factory:Β§r", + "block.gtceu.wire_coil.tooltip_cracking": "Β§8Cracking Unit, Coal Liquefaction Tower, Moon and Ostrum Harvesters:Β§r", + "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.dusty_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ι‰±ηŸ³(鍾乳石)" } \ No newline at end of file diff --git a/kubejs/assets/gtceu/lang/ru_ru.json b/kubejs/assets/gtceu/lang/ru_ru.json index 1fb1eb28a..51dfe31bd 100644 --- a/kubejs/assets/gtceu/lang/ru_ru.json +++ b/kubejs/assets/gtceu/lang/ru_ru.json @@ -1,21 +1,53 @@ { "__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.tfg.steam_bloomery": "ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ сыродутный Π³ΠΎΡ€Π½", + "block.gtceu.large_solar_panel": "Β§9Large Solar Array MK I", + "block.gtceu.large_solar_panel_tier2": "Β§bLarge Solar Array MK II", + "block.gtceu.large_solar_panel_tier3": "Β§cLarge Solar Array MK III", + "block.gtceu.gas_pressurizer": "Gas Pressurizer", + "block.gtceu.nuclear_fuel_factory": "Nuclear Fuel Factory", + "block.gtceu.heat_exchanger": "Heat Exchanger", + "block.gtceu.fission_reactor": "Fission Reactor", + "block.gtceu.evaporation_tower": "Evaporation Tower", + "block.gtceu.ostrum_harvester": "Ostrum Harvester", + "block.gtceu.moon_dust_harvester": "Moon Dust Harvester", + "block.tfg.ostrum_linear_accelerator": "Ostrum Linear Accelerator", + "block.gtceu.ulv_super_tank": "Basic Super Tank", + "block.gtceu.ulv_super_chest": "Basic Super Chest", + "block.gtceu.ulv_hermetic_casing": "Basic Hermetic Casing", + "block.gtceu.hv_energy_output_hatch_4a": "Β§6HV 4A Dynamo HatchΒ§r", + "block.tfg.bioreactor": "Π‘ΠΈΠΎΡ€Π΅Π°ΠΊΡ‚ΠΎΡ€", + "block.tfg.growth_chamber": "Growth Chamber", + "block.tfg.single_itemstack_bus": "Limiting Input Bus", + "block.gtceu.red_granite_cobblestone": "ΠšΡ€Π°ΡΠ½ΠΎ-Π³Ρ€Π°Π½ΠΈΡ‚Π½Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.gtceu.mossy_red_granite_cobblestone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ красно-Π³Ρ€Π°Π½ΠΈΡ‚Π½Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.gtceu.copper_crate": "Copper Crate", + "block.gtceu.copper_drum": "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.greenhouse": "ЭлСктричСская Ρ‚Π΅ΠΏΠ»ΠΈΡ†Π°", + "gtceu.steam_bloomery": "ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ сыродутный Π³ΠΎΡ€Π½", + "gtceu.food_oven": "Food Oven", + "gtceu.food_processor": "Food Processor", + "gtceu.large_solar_panel": "Large Solar Array MK I", + "gtceu.large_solar_panel_tier2": "Large Solar Array MK II", + "gtceu.large_solar_panel_tier3": "Large Solar Array MK III", + "gtceu.gas_pressurizer": "Gas Pressurizer", + "gtceu.nuclear_fuel_factory": "Nuclear Fuel Factory", + "gtceu.heat_exchanger": "Heat Exchanger", + "gtceu.fission_reactor": "Fission Reactor", + "gtceu.evaporation_tower": "Evaporation Tower", + "gtceu.ostrum_harvester": "Ostrum Harvester", + "gtceu.moon_dust_harvester": "Moon Dust Harvester", + "gtceu.ostrum_linear_accelerator": "Ostrum Linear Accelerator", + "gtceu.bioreactor": "Π‘ΠΈΠΎΡ€Π΅Π°ΠΊΡ‚ΠΎΡ€", + "gtceu.growth_chamber": "Growth Chamber", "item.gtceu.tiny_wood_dust": "ΠšΡ€ΠΎΡ…ΠΎΡ‚Π½Π°Ρ ΠΊΡƒΡ‡ΠΊΠ° массы ΠΈΠ· мягкого Π΄Π΅Ρ€Π΅Π²Π°", "item.gtceu.small_wood_dust": "МалСнькая ΠΊΡƒΡ‡ΠΊΠ° массы ΠΈΠ· мягкого Π΄Π΅Ρ€Π΅Π²Π°", "item.gtceu.wood_dust": "Масса ΠΈΠ· мягкого Π΄Π΅Ρ€Π΅Π²Π°", @@ -25,14 +57,16 @@ "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": "Β§Π›ΠΎΠ΄ΠΎΡ‡Π½ΠΈΠΊ: Β§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.tool.behavior.canoe_creator": "Β§Π›ΠΎΠ΄ΠΎΡ‡Π½ΠΈΠΊ: Β§fΠœΠΎΠΆΠ΅Ρ‚ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ ΠΊΠ°Π½ΠΎΠ΅", - "item.gtceu.ice_bucket": "Π’Π΅Π΄Ρ€ΠΎ со льдом", - "item.gtceu.deepslate_dust": "ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ (ΠŸΡ‹Π»ΡŒ)", - "item.gtceu.blackstone_dust": "ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚ (ΠŸΡ‹Π»ΡŒ)", + "item.gtceu.netherrack_dust": "Keratophyre Dust", + "item.gtceu.small_netherrack_dust": "Small Pile of Keratophyre Dust", + "item.gtceu.tiny_netherrack_dust": "Tiny Pile of Keratophyre Dust", "item.gtceu.iron_ring": "Π‘Π΅Ρ€Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ (ΠšΠΎΠ»ΡŒΡ†ΠΎ)", "item.gtceu.small_iron_gear": "Π‘Π΅Ρ€Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ (МалСнькая ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½Ρ)", "item.gtceu.iron_gear": "Π‘Π΅Ρ€Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ (ШСстСрня)", @@ -47,10 +81,122 @@ "item.gtceu.iron_screw": "Π‘Π΅Ρ€Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ (Π’ΠΈΠ½Ρ‚)", "item.gtceu.iron_turbine_blade": "Π‘Π΅Ρ€Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ (Π›ΠΎΠΏΠ°ΡΡ‚ΡŒ Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹)", "item.gtceu.iron_round": "Π‘Π΅Ρ€Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ (Π¨Π°Ρ€ΠΈΠΊ)", + "item.gtceu.iron_single_wire": "1x Cast Iron Wire", + "item.gtceu.iron_double_wire": "2x Cast Iron Wire", + "item.gtceu.iron_quadruple_wire": "4x Cast Iron Wire", + "item.gtceu.iron_octal_wire": "8x Cast Iron Wire", + "item.gtceu.iron_hex_wire": "16x Cast Iron Wire", + "item.gtceu.iron_single_cable": "1x Cast Iron Cable", + "item.gtceu.iron_double_cable": "2x Cast Iron Cable", + "item.gtceu.iron_quadruple_cable": "4x Cast Iron Cable", + "item.gtceu.iron_octal_cable": "8x Cast Iron Cable", + "item.gtceu.iron_hex_cable": "16x Cast Iron Cable", + "item.gtceu.ice_bucket": "Π’Π΅Π΄Ρ€ΠΎ со льдом", + "item.gtceu.copper_credit": "Β§71 Credit", + "item.gtceu.cupronickel_credit": "Β§78 Credits", + "item.gtceu.silver_credit": "Β§764 Credits", + "item.gtceu.gold_credit": "Β§7512 Credits", + "item.gtceu.platinum_credit": "Β§74,096 Credits", + "item.gtceu.osmium_credit": "Β§732,768 Credits", + "item.gtceu.naquadah_credit": "Β§7262,144 Credits", + "item.gtceu.neutronium_credit": "Β§72,097,152 Credits", + "item.gtceu.wood_plate": "Medium Density Fiberboard", + "item.gtceu.chipped_salt_gem": "Chipped Salt Crystal", + "item.gtceu.chipped_rock_salt_gem": "Chipped Rock Salt Crystal", + "item.gtceu.flawed_salt_gem": "Flawed Salt Crystal", + "item.gtceu.flawed_rock_salt_gem": "Flawed Rock Salt Crystal", + "item.gtceu.salt_gem": "Salt Crystal", + "item.gtceu.rock_salt_gem": "Rock Salt Crystal", + "item.gtceu.exquisite_salt_gem": "Exquisite Salt Crystal", + "item.gtceu.exquisite_rock_salt_gem": "Exquisite Rock Salt Crystal", + "item.gtceu.flawless_salt_gem": "Flawless Salt Crystal", + "item.gtceu.flawless_rock_salt_gem": "Flawless Rock Salt Crystal", + "material.gtceu.ice": "Ice Slush", + "material.gtceu.damascus_steel": "Swine-steel", + "material.gtceu.air": "Earth Air", + "material.gtceu.liquid_air": "Liquid Earth Air", + "material.gtceu.cooperite": "Cooperite", + "material.gtceu.armalcolite": "Армалколит", + "material.gtceu.desh": "Π”Π΅Ρˆ", + "material.gtceu.ostrum": "Ostrum", + "material.tfg.calorite": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚", + "material.tfg.etrium": "Π­Ρ‚Ρ€ΠΈΡƒΠΌ", + "material.gtceu.aluminium_silicate": "Aluminium Silicate", + "material.gtceu.rocket_alloy_t1": "ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ алюминиСво-ΡΡ‚Π°Π»ΡŒΠ½ΠΎΠΉ Ρ€Π°ΠΊΠ΅Ρ‚Π½Ρ‹ΠΉ сплав", + "material.gtceu.rocket_alloy_t2": "ASM 4914 Titanium Rocket Alloy", + "material.gtceu.rocket_alloy_t3": "45-Ti Tungstensteel Rocket Alloy", + "material.gtceu.vitrified_asbestos": "ΠžΡΡ‚Π΅ΠΊΠ»ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ асбСст", + "material.gtceu.liquid_carbon_dioxide": "Liquid Carbon Dioxide", + "material.gtceu.hot_debrominated_brine": "Hot Debrominated Brine", + "material.gtceu.hydrogen_iodide": "Hydrogen Iodide", + "material.gtceu.dense_steam": "High Pressure Steam", + "material.gtceu.radioactive_steam": "Radioactive Steam", + "material.gtceu.radioactive_waste": "Radioactive Waste", + "material.gtceu.irradiated_steam": "Irradiated Steam", + "material.gtceu.heavy_water": "Heavy Water", + "material.gtceu.uranium_waste": "Uranium Waste", + "material.gtceu.nuclear_waste": "Nuclear Waste", + "material.gtceu.dirty_hexafluorosilicic_acid": "Dirty Hexafluorosilicic Acid", + "material.gtceu.martian_sludge": "Martian Sludge", + "material.gtceu.dioxygen_difluoride": "Dioxygen Difluoride", + "material.gtceu.tritiated_water": "Tritiated Water", + "material.gtceu.raw_rich_brine": "Raw Rich Brine", + "material.gtceu.hot_iodine_brine": "Hot Iodine Brine", + "material.gtceu.brominated_iodine_vapor": "Brominated Iodine Vapor", + "material.gtceu.basic_bromine_exhaust": "Basic Bromine Exhaust", + "material.gtceu.dirty_flibe": "Dirty FLiBe", + "material.gtceu.flibe": "FLiBe", + "material.gtceu.hot_flibe": "Hot FLiBe", + "material.gtceu.raw_brine": "Raw Brine", + "material.gtceu.hot_brine": "Hot Brine", + "material.gtceu.hot_chlorinated_brominated_brine": "Hot Chlorinated Brominated Brine", + "material.gtceu.brominated_chlorine_vapor": "Brominated Chlorine Vapor", + "material.gtceu.acidic_bromine_solution": "Acidic Bromine Solution", + "material.gtceu.concentrated_bromine_solution": "Concentrated Bromine Solution", + "material.gtceu.debrominated_brine": "Debrominated Brine", + "material.gtceu.acidic_bromine_exhaust": "Acidic Bromine Exhaust", + "material.gtceu.hot_alkaline_debrominated_brine": "Hot Alkaline Debrominated Brine", + "material.gtceu.lithium_carbonate": "Lithium Carbonate", + "material.gtceu.lithium_fluoride": "Lithium Fluoride", + "material.gtceu.tetrafluoroberyllate": "Tetrafluoroberyllate", + "material.gtceu.thorium_230": "Thorium 230", + "material.gtceu.thorium_232": "Thorium 232", + "material.gtceu.tbu-232_pellet": "TBU 232 Pellet", + "material.gtceu.plutonium_pellet": "Plutonium Pellet", + "material.gtceu.uranium_pellet": "Uranium Pellet", + "material.gtceu.thorium_pellet": "Thorium Pellet", + "material.gtceu.ostrum_iodide": "Ostrum Iodide", + "material.gtceu.americium": "АмСриций 243", + "material.gtceu.uranium": "Π£Ρ€Π°Π½ 238", + "material.gtceu.plutonium": "ΠŸΠ»ΡƒΡ‚ΠΎΠ½ΠΈΠΉ 239", + "material.gtceu.residual_radioactive_concoction": "Residual Radioactive Concoction", + "material.gtceu.regolith_vapor": "Regolith Vapor", + "material.gtceu.dense_ostrum_vapor": "Dense Ostrum Vapor", + "material.gtceu.lightweight_ostrum_vapor": "Lightweight Ostrum Vapor", + "material.gtceu.ostrum_vapor": "Ostrum Vapor", + "material.gtceu.blue_steel": "Биняя ΡΡ‚Π°Π»ΡŒ", "metaitem.dust.tooltip.purify": "Π‘Ρ€ΠΎΡΡŒΡ‚Π΅ Π² источник Π²ΠΎΠ΄Ρ‹ ΠΈΠ»ΠΈ Π½Π°ΠΆΠΌΠΈΡ‚Π΅ ПКМ ΠΏΠΎ ΠΊΠΎΡ‚Π»Ρƒ, для получСния чистой ΠΏΡ‹Π»ΠΈ", "metaitem.crushed.tooltip.purify": "Π‘Ρ€ΠΎΡΡŒΡ‚Π΅ Π² источник Π²ΠΎΠ΄Ρ‹ ΠΈΠ»ΠΈ Π½Π°ΠΆΠΌΠΈΡ‚Π΅ ПКМ ΠΏΠΎ ΠΊΠΎΡ‚Π»Ρƒ, для получСния ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½ΠΎΠΉ Ρ€ΡƒΠ΄Ρ‹", - "block.gtceu.overworld_marker": "ЗСмля", - "block.gtceu.the_nether_marker": "Π‘Π΅Π·Π΄Π½Π°", + "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", + "item.gtceu.tool.tooltip.repair_info": "", + "item.gtceu.tool.tooltip.repair_material": "", + "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", + "gtceu.jei.bedrock_fluid.liquid_ice": "Martian Ice", + "gtceu.recipe.category.ingot_molding": "Material Molding", + "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": "Π›ΡƒΠ½Π½Ρ‹ΠΉ Ρ…Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", "tagprefix.sword_head": "%s (ОголовьС ΠΌΠ΅Ρ‡Π°)", "tagprefix.pickaxe_head": "%s (ОголовьС ΠΊΠΈΡ€ΠΊΠΈ)", "tagprefix.shovel_head": "%s (ОголовьС Π»ΠΎΠΏΠ°Ρ‚Ρ‹)", @@ -67,6 +213,7 @@ "tagprefix.double_ingot": "%s (Π”Π²ΠΎΠΉΠ½ΠΎΠΉ слиток)", "tagprefix.poor_raw": "%s (БСдная Ρ€ΡƒΠ΄Π°)", "tagprefix.rich_raw": "%s (Богатая Ρ€ΡƒΠ΄Π°)", + "tagprefix.dusty_raw": "Dusty Raw %s", "tagprefix.gabbro": "%s (Габбровая Ρ€ΡƒΠ΄Π°)", "tagprefix.shale": "%s (БланцСвая Ρ€ΡƒΠ΄Π°)", "tagprefix.claystone": "%s (Аргиллитовая Ρ€ΡƒΠ΄Π°)", @@ -91,13 +238,5 @@ "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": "ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ алюминиСво-ΡΡ‚Π°Π»ΡŒΠ½ΠΎΠΉ Ρ€Π°ΠΊΠ΅Ρ‚Π½Ρ‹ΠΉ сплав" + "tagprefix.glacio_stone": "%s (Ѐонолитовая Ρ€ΡƒΠ΄Π°)" } \ 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 bbf356128..6f4bb6bd3 100644 --- a/kubejs/assets/gtceu/lang/uk_ua.json +++ b/kubejs/assets/gtceu/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.bud_indicator": "%s ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Π΅Π²Π° Π”Ρ€ΡƒΠ·Π°", "block.gtceu.greenhouse": "ВСплиця", - "block.gtceu.steam_bloomery": "ΠŸΠ°Ρ€ΠΎΠ²Π° Π‘ΠΈΡ€ΠΎΠ΄ΡƒΡ‚Π½Π° ΠŸΡ–Ρ‡", + "block.tfg.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", @@ -13,7 +13,8 @@ "block.gtceu.evaporation_tower": "Π’ΠΈΠΏΠ°Ρ€Π½Π° ΠΊΠ°ΠΌΠ΅Ρ€Π°", "block.gtceu.ostrum_harvester": "Π—Π±ΠΈΡ€Π°Ρ‡ ΠžΡΡ‚Ρ€ΠΎΠΌΡƒ", "block.gtceu.moon_dust_harvester": "Π—Π±ΠΈΡ€Π°Ρ‡ ΠœΡ–ΡΡΡ‡Π½ΠΎΠ³ΠΎ ΠŸΠΈΠ»Ρƒ", - "block.gtceu.ostrum_linear_accelerator": "Π›Ρ–Π½Ρ–ΠΉΠ½ΠΈΠΉ ΠŸΡ€ΠΈΡΠΊΠΎΡ€ΡŽΠ²Π°Ρ‡ Π· ΠžΡΡ‚Ρ€ΡƒΠΌΡƒ", + "block.tfg.ostrum_linear_accelerator": "Π›Ρ–Π½Ρ–ΠΉΠ½ΠΈΠΉ ΠŸΡ€ΠΈΡΠΊΠΎΡ€ΡŽΠ²Π°Ρ‡ Π· ΠžΡΡ‚Ρ€ΡƒΠΌΡƒ", + "block.gtceu.coal_liquefaction_tower": "Π’Π΅ΠΆΠ° зрідТСння", "block.gtceu.ulv_super_tank": "Π‘Π°Π·ΠΎΠ²ΠΈΠΉ супСр Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ²Π°Ρ€", "block.gtceu.ulv_super_chest": "Π‘Π°Π·ΠΎΠ²Π° супСр скриня", "block.gtceu.ulv_hermetic_casing": "Π‘Π°Π·ΠΎΠ²Π° Π³Π΅Ρ€ΠΌΠ΅Ρ‚ΠΈΡ‡Π½Π° ΠΎΠ±ΠΎΠ»ΠΎΠ½ΠΊΠ°", @@ -40,6 +41,7 @@ "gtceu.large_solar_panel_tier3": "Π’Π΅Π»ΠΈΠΊΠ° сонячна матриця MK III", "gtceu.gas_pressurizer": "Π“Π°Π·ΠΎΠ²ΠΈΠΉ прСсуризатор", "gtceu.nuclear_fuel_factory": "Π€Π°Π±Ρ€ΠΈΠΊΠ° ядСрного ΠΏΠ°Π»ΠΈΠ²Π°", + "gtceu.nuclear_turbine": "Π―Π΄Π΅Ρ€Π½Π° ΠΏΠ°Ρ€ΠΎΠ²Π° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°", "gtceu.heat_exchanger": "Π’Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΡ–Π½Π½ΠΈΠΊ", "gtceu.fission_reactor": "Π Π΅Π°ΠΊΡ‚ΠΎΡ€ ядСрного ΠΏΠΎΠ΄Ρ–Π»Ρƒ", "gtceu.evaporation_tower": "Π’ΠΈΠΏΠ°Ρ€Π½Π° ΠΊΠ°ΠΌΠ΅Ρ€Π°", @@ -48,6 +50,25 @@ "gtceu.ostrum_linear_accelerator": "Π›Ρ–Π½Ρ–ΠΉΠ½ΠΈΠΉ ΠŸΡ€ΠΈΡΠΊΠΎΡ€ΡŽΠ²Π°Ρ‡ Π· ΠžΡΡ‚Ρ€ΡƒΠΌΡƒ", "gtceu.bioreactor": "Π‘Ρ–ΠΎΡ€Π΅Π°ΠΊΡ‚ΠΎΡ€", "gtceu.growth_chamber": "ΠšΠ°ΠΌΠ΅Ρ€Π° росту", + "gtceu.coal_liquefaction_tower": "Π’Π΅ΠΆΠ° зрідТСння", + "gtceu.smr_generator": "Мала ΠΌΠΎΠ΄ΡƒΠ»ΡŒΠ½Π° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°", + "gtceu.tooltip.machine.moon_dust_harvester_1": "Β§7ПозазСмний пилосос§r", + "gtceu.tooltip.machine.moon_dust_harvester_2": "Β§7Π—Π±ΠΈΡ€Π°Ρ” нСскінчСнну ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Ρ€Π΅Π³ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΏΠΈΠ»Ρƒ Π·Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ Π±Ρ–ΠΎΠΌΠ°, Π² якому Π²Ρ–Π½ Ρ€ΠΎΠ·ΠΌΡ–Ρ‰Π΅Π½ΠΈΠΉ.Β§r", + "gtceu.tooltip.machine.ostrum_harvester_1": "Β§7ΠΡ€ΠΈΠ΄ΠΈΡ‡Π½ΠΎ Π²Ρ–Π΄ΠΌΡ–Π½Π½ΠΈΠΉ пряний ΠΏΠΎΠ²Π·ΡƒΠ½Β§r", + "gtceu.tooltip.machine.ostrum_harvester_2": "Β§7Π’ΠΈΠ΄ΠΎΠ±ΡƒΠ²Π°Ρ” нСскінчСнний ΠΏΠΈΠ» оструму, якщо Ρ€ΠΎΠ·ΠΌΡ–Ρ‰Π΅Π½ΠΎ Π½Π°Π΄ Ρ€ΠΎΠ΄ΠΎΠ²ΠΈΡ‰Π΅ΠΌ оструму.Β§r", + "gtceu.tooltip.machine.ostrum_harvester_3": "Β§7ΠŸΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” Π±ΡƒΡ€ΠΎΠ²ΠΎΡ— Ρ€Ρ–Π΄ΠΈΠ½ΠΈ для Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ.Β§r", + "gtceu.tooltip.machine.ostrum_linear_accelerator_1": "Β§7Π‘ΠΎΠ·ΠΎΠ½ Π₯іггса Π½Π΅ Π²Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ Ρƒ ΠΊΠΎΠΌΠΏΠ»Π΅ΠΊΡ‚Β§r", + "gtceu.tooltip.machine.ostrum_linear_accelerator_2": "Β§7Π ΠΎΠ·ΠΊΠ»Π°Π΄Π°Ρ” острумовий ΠΏΠΈΠ» Π½Π° ΠΉΠΎΠ³ΠΎ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ. ΠŸΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” Ρ€Ρ–Π·Π½Ρ– Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Π· Π»Ρ–Π½Ρ–Ρ— ΠΏΠΎΠ΄Ρ–Π»Ρƒ.Β§r", + "gtceu.tooltip.machine.heat_exchanger_1": "Β§7Нагрівання Ρ€Ρ–Π΄ΠΈΠ½ Ρ–Π½ΡˆΠΈΠΌΠΈ гарячими Ρ€Ρ–Π΄ΠΈΠ½Π°ΠΌΠΈΒ§r", + "gtceu.tooltip.machine.heat_exchanger_2": "Β§7ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ” Ρ‚Π΅ΠΏΠ»ΠΎ Π²Ρ–Π΄ ΠΎΠ΄Π½Ρ–Ρ”Ρ— Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Π΄ΠΎ Ρ–Π½ΡˆΠΎΡ—.Β§r", + "gtceu.tooltip.machine.nuclear_fuel_factory_1": "Β§7Виробляє Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΎ ΠΏΡ–ΠΊΠ°Π½Ρ‚Π½Ρ– стриТні§r", + "gtceu.tooltip.machine.nuclear_fuel_factory_2": "Β§7ΠŸΠ΅Ρ€Π΅Ρ€ΠΎΠ±Π»ΡΡ” Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΈΠΉ Ρ€Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΉ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» Ρƒ ΠΏΠΎΠ΄Ρ–Π»ΡŒΠ½Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ.Β§r", + "gtceu.tooltip.machine.steam_bloomery_1": "Β§7ΠŸΠΎΠΊΡ€Π°Ρ‰ΡƒΠΉΡ‚Π΅ свою Π΄ΠΎΠΌΠ½ΠΈΡ†ΡŽ силою ΠΏΠ°Ρ€ΠΈ!Β§r", + "gtceu.tooltip.machine.steam_bloomery_2": "Β§7ΠŸΠ΅Ρ€Π΅Ρ€ΠΎΠ±Π»ΡΡ” ΠΏΠΈΠ» Π°Π±ΠΎ Π·Π»ΠΈΡ‚ΠΊΠΈ, Ρ‰ΠΎ ΠΌΡ–ΡΡ‚ΡΡ‚ΡŒ Π·Π°Π»Ρ–Π·ΠΎ, Ρƒ Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½Ρ– Π·Π°Π»Ρ–Π·Π½Ρ– ΠΊΡ€ΠΈΡ†Ρ–.Β§r", + "gtceu.tooltip.machine.steam_bloomery_3": "Β§7Використання коксу Π°Π±ΠΎ Π°Π½Ρ‚Ρ€Π°Ρ†ΠΈΡ‚Ρƒ як пального ΠΏΠΎΠ΄Π²ΠΎΡ—Ρ‚ΡŒ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ.Β§r", + "gtceu.tooltip.machine.steam_parallel": "Β§7МоТС обробляти Π΄ΠΎ 8 Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π² одночасно, Ρ‰ΠΎ Π·ΠΌΡ–Π½ΡŽΡ” ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΎΡ— ΠΏΠ°Ρ€ΠΈ.Β§r", + "gtceu.tooltip.machine.coal_liquefaction_tower_1": "Β§7Π€Ρ€ΡƒΠΊΡ‚ΠΎΠ²ΠΈΠΉ міксСр§r", + "gtceu.tooltip.machine.coal_liquefaction_tower_2": "Β§7Π’ΠΈΠ΄ΠΎΠ±ΡƒΠ²Π°Ρ” Π³Π°Π·ΠΈ Ρ‚Π° Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Π· Π²ΡƒΠ³Π»Π΅Ρ†Π΅Π²ΠΈΡ… Ρ‚Π²Π΅Ρ€Π΄ΠΈΡ… Ρ€Π΅Ρ‡ΠΎΠ²ΠΈΠ½Β§r", "item.gtceu.tiny_wood_dust": "МалСнька ΠΊΡƒΠΏΠ° Ρ…Π²ΠΎΠΉΠ½ΠΎΡ— Ρ†Π΅Π»ΡŽΠ»ΠΎΠ·ΠΈ", "item.gtceu.small_wood_dust": "Мала ΠΊΡƒΠΏΠ° Ρ…Π²ΠΎΠΉΠ½ΠΎΡ— Ρ†Π΅Π»ΡŽΠ»ΠΎΠ·ΠΈ", "item.gtceu.wood_dust": "Π₯Π²ΠΎΠΉΠ½Π° Ρ†Π΅Π»ΡŽΠ»ΠΎΠ·Π°", @@ -109,8 +130,9 @@ "material.gtceu.armalcolite": "Армалколіт", "material.gtceu.desh": "Π”Π΅Ρˆ", "material.gtceu.ostrum": "ΠžΡΡ‚Ρ€ΡƒΠΌ", - "material.gtceu.calorite": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚", - "material.gtceu.etrium": "Π•Ρ‚Ρ€Ρ–ΡƒΠΌ", + "material.tfg.calorite": "ΠšΠ°Π»ΠΎΡ€ΠΈΡ‚", + "material.tfg.etrium": "Π•Ρ‚Ρ€Ρ–ΡƒΠΌ", + "material.gtceu.tarkianite": "Π’Π°Ρ€ΠΊΡ–Π°Π½Ρ–Ρ‚", "material.gtceu.aluminium_silicate": "ΠΠ»ΡŽΠΌΠΎΡΠΈΠ»Ρ–ΠΊΠ°Ρ‚", "material.gtceu.rocket_alloy_t1": "ΠΠ»ΡŽΠΌΡ–Π½ΠΎΡΡ‚Π°Π»Π΅Π²ΠΈΠΉ Ρ€Π°ΠΊΠ΅Ρ‚Π½ΠΈΠΉ сплав R-класу", "material.gtceu.rocket_alloy_t2": "Π Π°ΠΊΠ΅Ρ‚Π½ΠΈΠΉ Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²ΠΈΠΉ сплав ASM 4914", @@ -155,7 +177,11 @@ "material.gtceu.plutonium_pellet": "ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²Π° Π³Ρ€Π°Π½ΡƒΠ»Π°", "material.gtceu.uranium_pellet": "Π£Ρ€Π°Π½ΠΎΠ²Π° Π³Ρ€Π°Π½ΡƒΠ»Π°", "material.gtceu.thorium_pellet": "Π’ΠΎΡ€Ρ–Ρ”Π²Π° Π³Ρ€Π°Π½ΡƒΠ»Π°", + "material.gtceu.ostrum_iodide": "Π™ΠΎΠ΄ΠΈΡ‚ ΠžΡΡ‚Ρ€ΡƒΠΌΡƒ", "material.gtceu.residual_radioactive_concoction": "Π—Π°Π»ΠΈΡˆΠΊΠΎΠ²Π° Π Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Π° Π‘ΡƒΠΌΡ–Ρˆ", + "material.gtceu.americium": "АмСрицій 243", + "material.gtceu.uranium": "Π£Ρ€Π°Π½ 238", + "material.gtceu.plutonium": "ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΠΉ 239", "material.gtceu.regolith_vapor": "Випаровування Π Π΅Π³ΠΎΠ»Ρ–Ρ‚Ρƒ", "material.gtceu.dense_ostrum_vapor": "ГустС Випаровування ΠžΡΡ‚Ρ€ΠΎΠΌΡƒ", "material.gtceu.lightweight_ostrum_vapor": "Π›Π΅Π³ΠΊΠ΅ Випаровування ΠžΡΡ‚Ρ€ΠΎΠΌΡƒ", @@ -164,15 +190,22 @@ "metaitem.crushed.tooltip.purify": "ΠšΠΈΠ½ΡŒΡ‚Π΅ Ρƒ Π²ΠΎΠ΄Ρƒ, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΠΎΡ‡ΠΈΡ‰Π΅Π½Ρƒ Ρ€ΡƒΠ΄Ρƒ", "item.gtceu.tool.behavior.silk_ice": "Β§dΠ‘ΠΊΡƒΠ»ΡŒΠΏΡ‚ΠΎΡ€:Β§r Π¨ΠΎΠ²ΠΊ Π·Π±ΠΈΡ€Π°Ρ” ΡƒΡ‰Ρ–Π»ΡŒΠ½Π΅Π½ΠΈΠΉ Π»Ρ–Π΄", "item.gtceu.tool.butchery_knife.tooltip": "Β§cΠœβ€™ΡΡΠ½ΠΈΠΊ:Β§r Π—Π°Π±ΠΈΠ²Π°Ρ” Ρ‚Π²Π°Ρ€ΠΈΠ½ для отримання Π±Ρ–Π»ΡŒΡˆΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– м’яса", + "item.gtceu.tool.tooltip.repair_info": "", + "item.gtceu.tool.tooltip.repair_material": "", "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": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠ° Π²Π°ΠΆΠΊΠ° Π°ΠΌΡ–Π°Ρ‡Π½Π° Π²ΠΎΠ΄Π°", - "gtceu.jei.bedrock_fluid.liquid_ice": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΈΠΉ Π»Ρ–Π΄", + "gtceu.jei.bedrock_fluid.nether_natural_gas_deposit": "Π ΠΎΠ΄ΠΎΠ²ΠΈΡ‰e ΠΏΡ€ΠΈΡ€ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π³Π°Π·Ρƒ Π² Π‘Π΅Π·ΠΎΠ΄Π½Ρ–", + "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": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠ΅ Ρ€ΠΎΠ΄ΠΎΠ²ΠΈΡ‰Π΅ Π²Π°ΠΆΠΊΠΎΡ— Π°ΠΌΡ–Π°Ρ‡Π½ΠΎΡ— Π²ΠΎΠ΄ΠΈ", + "gtceu.jei.bedrock_fluid.liquid_ice": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠ΅ Ρ€ΠΎΠ΄ΠΎΠ²ΠΈΡ‰Π΅ Π»ΡŒΠΎΠ΄Ρƒ", + "gtceu.recipe.category.ingot_molding": "Ѐормування ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²", + "block.gtceu.wire_coil.tooltip_pyro": "Β§8ΠŸΡ–Ρ€ΠΎΠ»Ρ–Π·Π½Π° ΠΏΡ–Ρ‡, Π²Π΅ΠΆΠ° зрідТСння Ρ‚Π° Ρ„Π°Π±Ρ€ΠΈΠΊΠ° ядСрного пального:Β§r", + "block.gtceu.wire_coil.tooltip_cracking": "Β§8Установка ΠΊΡ€Π΅ΠΊΡ–Π½Π³Ρƒ, місячний Ρ‚Π° острумний Π·Π±ΠΈΡ€Π°Ρ‡Ρ–:Β§r", + "tooltip.moldraw.shift_view": "Β§7Β§oΠ£Ρ‚Ρ€ΠΈΠΌΡƒΠΉΡ‚Π΅ (Shift), Ρ‰ΠΎΠ± ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ молСкулярну структуру§r", "tagprefix.sword_head": "%s Π›Π΅Π·ΠΎ ΠΌΠ΅Ρ‡Π°", "tagprefix.pickaxe_head": "%s Π›Π΅Π·ΠΎ ΠΊΠ°ΠΉΠ»Π°", "tagprefix.shovel_head": "%s Π›Π΅Π·ΠΎ Π»ΠΎΠΏΠ°Ρ‚ΠΈ", diff --git a/kubejs/assets/gtceu/lang/zh_cn.json b/kubejs/assets/gtceu/lang/zh_cn.json index ff25d22c2..b56445918 100644 --- a/kubejs/assets/gtceu/lang/zh_cn.json +++ b/kubejs/assets/gtceu/lang/zh_cn.json @@ -2,7 +2,11 @@ "__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.greenhouse": "ζΈ©ε€", - "block.gtceu.steam_bloomery": "蒸汽锻铁炉", + "block.tfg.steam_bloomery": "蒸汽锻铁炉", + "block.tfg.steam_thermal_centrifuge": "ε€§εž‹θ’Έζ±½ηƒ­εŠ›η¦»εΏƒζœΊ", + "block.tfg.steam_fuser": "ε€§εž‹θ’Έζ±½εˆι‡‘η‚‰", + "block.tfg.steam_squasher": "ε€§εž‹θ’Έζ±½εŽ‹ηΌ©ζœΊ", + "block.tfg.steam_presser": "ε€§εž‹θ’Έζ±½ι”»ι€ ι”€", "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", @@ -12,8 +16,9 @@ "block.gtceu.fission_reactor": "θ£‚ε˜εεΊ”ε †", "block.gtceu.evaporation_tower": "蒸发呔", "block.gtceu.ostrum_harvester": "紫金采集器", - "block.gtceu.moon_dust_harvester": "ζœˆε°˜ι‡‡ι›†ε™¨", - "block.gtceu.ostrum_linear_accelerator": "η΄«ι‡‘ηΊΏζ€§εŠ ι€Ÿε™¨", + "block.gtceu.moon_dust_harvester": "ζœˆε£€ι‡‡ι›†ε™¨", + "block.tfg.ostrum_linear_accelerator": "η΄«ι‡‘ηΊΏζ€§εŠ ι€Ÿε™¨", + "block.gtceu.coal_liquefaction_tower": "ζΆ²εŒ–ε‘”", "block.gtceu.ulv_super_tank": "εŸΊη‘€θΆ…ηΊ§ηΌΈ", "block.gtceu.ulv_super_chest": "εŸΊη‘€θΆ…ηΊ§η±", "block.gtceu.ulv_hermetic_casing": "εŸΊη‘€ε―†ε°ζœΊζ’°ζ–Ήε—", @@ -40,14 +45,34 @@ "gtceu.large_solar_panel_tier3": "ε€§εž‹ε€ͺι˜³θƒ½ι˜΅εˆ— MK III", "gtceu.gas_pressurizer": "ζ°”δ½“εŠ εŽ‹ε™¨", "gtceu.nuclear_fuel_factory": "核燃料ε·₯εŽ‚", + "gtceu.nuclear_turbine": "核能蒸汽梑θ½", "gtceu.heat_exchanger": "热亀捒器", "gtceu.fission_reactor": "θ£‚ε˜εεΊ”ε †", "gtceu.evaporation_tower": "蒸发呔", "gtceu.ostrum_harvester": "紫金采集器", - "gtceu.moon_dust_harvester": "ζœˆε°˜ι‡‡ι›†ε™¨", + "gtceu.moon_dust_harvester": "ζœˆε£€ι‡‡ι›†ε™¨", "gtceu.ostrum_linear_accelerator": "η΄«ι‡‘ηΊΏζ€§εŠ ι€Ÿε™¨", "gtceu.bioreactor": "η”Ÿη‰©εεΊ”ε™¨", "gtceu.growth_chamber": "η”Ÿι•Ώε€", + "gtceu.coal_liquefaction_tower": "ζΆ²εŒ–ε‘”", + "gtceu.smr_generator": "ε°εž‹ζ¨‘ε—εŒ–ζΆ‘θ½", + "gtceu.tooltip.machine.moon_dust_harvester_1": "Β§7εœ°ε€–ηœŸη©ΊεΈε°˜ε™¨Β§r", + "gtceu.tooltip.machine.moon_dust_harvester_2": "Β§7ζ Ήζζ‰€ε€„η”Ÿη‰©ηΎ€η³»ζ— ι™ι‡‡ι›†ι£ŽεŒ–εœŸη²‰ε°˜γ€‚Β§r", + "gtceu.tooltip.machine.ostrum_harvester_1": "Β§7εˆζ³•εΌ‚ζ˜Ÿι¦™ζ–™ι‡‡ι›†θ½¦Β§r", + "gtceu.tooltip.machine.ostrum_harvester_2": "Β§7η½δΊŽη΄«ι‡‘ηŸΏεΊŠδΈŠζ–Ήε―无限采集紫金粉。§r", + "gtceu.tooltip.machine.ostrum_harvester_3": "Β§7ιœ€ζΆˆθ€—ι’»δΊ•ζΆ²γ€‚Β§r", + "gtceu.tooltip.machine.ostrum_linear_accelerator_1": "Β§7δΈε«εΈŒζ Όζ–―ηŽ»θ‰²ε­Β§r", + "gtceu.tooltip.machine.ostrum_linear_accelerator_2": "Β§7ε°†η΄«ι‡‘ηŸΏη²‰εˆ†θ§£δΈΊη»„εˆ†εŽŸζ–™γ€‚ιœ€ι…εˆθ£‚ε˜δΊ§ηΊΏε€šη§ζ΅δ½“γ€‚Β§r", + "gtceu.tooltip.machine.heat_exchanger_1": "Β§7η”¨ι«˜ζΈ©ζ΅δ½“εŠ ηƒ­ε…Άδ»–ζ΅δ½“Β§r", + "gtceu.tooltip.machine.heat_exchanger_2": "Β§7εžηŽ°ζ΅δ½“ι—΄ηš„ηƒ­ι‡δΌ ι€’Β§r", + "gtceu.tooltip.machine.nuclear_fuel_factory_1": "Β§7θΆ…εŠ²ηˆ†η‡ƒζ–™ζ£’εˆΆι€ εŽ‚Β§r", + "gtceu.tooltip.machine.nuclear_fuel_factory_2": "Β§7ε°†εŽŸε§‹ζ”Ύε°„ζ€§ζζ–™εŠ ε·₯ζˆθ£‚ε˜η‡ƒζ–™Β§r", + "gtceu.tooltip.machine.steam_bloomery_1": "Β§7η”¨θ’Έζ±½εŠ¨εŠ›ε‡ηΊ§δ½ ηš„ι”»ι“η‚‰οΌΒ§r", + "gtceu.tooltip.machine.steam_bloomery_2": "Β§7ε°†ε«ι“ηŸΏη²‰ζˆ–ι”­εŠ ε·₯ζˆη”Ÿι“ζ–Ήε―γ€‚Β§r", + "gtceu.tooltip.machine.steam_bloomery_3": "Β§7δ½Ώη”¨η„¦η…€ζˆ–ζ— ηƒŸη…€ε―ε€ε’žδΊ§ι‡γ€‚Β§r", + "gtceu.tooltip.machine.steam_parallel": "Β§7ζ”―ζŒζœ€ε€š8η»„ι…ζ–ΉεΉΆθ‘Œε€„η†οΌŒη›ΈεΊ”θ°ƒζ•΄θ’Έζ±½ιœ€ζ±‚γ€‚Β§r", + "gtceu.tooltip.machine.coal_liquefaction_tower_1": "Β§7ε₯Άζ˜”εˆΆι€ ζœΊΒ§r", + "gtceu.tooltip.machine.coal_liquefaction_tower_2": "Β§7δ»Žη’³θ΄¨ε›Ίδ½“δΈ­ζε–η‡ƒζ°”ε’Œζ΅δ½“Β§r", "item.gtceu.tiny_wood_dust": "小ζ’θ½―ζœ¨ζ΅†", "item.gtceu.small_wood_dust": "ε°ε †θ½―ζœ¨ζ΅†", "item.gtceu.wood_dust": "θ½―ζœ¨ζ΅†", @@ -119,8 +144,10 @@ "material.gtceu.armalcolite": "ι˜Ώε§†ι˜Ώε°”ζŸ―ε°”ηŸΏ", "material.gtceu.desh": "ζˆ΄ζ–―", "material.gtceu.ostrum": "紫金", - "material.gtceu.calorite": "θ€ηƒ­ι‡‘ε±ž", - "material.gtceu.etrium": "εŸƒεΏ’ζ©", + "material.tfg.calorite": "θ€ηƒ­ι‡‘ε±ž", + "material.tfg.etrium": "εŸƒεΏ’ζ©", + "material.gtceu.tarkianite": "ε‘”εŸΊε‰ηŸΏ", + "material.gtceu.thorium": "ζ–Ήι’ηŸ³", "material.gtceu.aluminium_silicate": "瑅酸铝", "material.gtceu.rocket_alloy_t1": "Rεž‹ι“ι’’η«η­εˆι‡‘", "material.gtceu.rocket_alloy_t2": "ASM 4914 ι’›εˆι‡‘η«η­εˆι‡‘", @@ -166,6 +193,9 @@ "material.gtceu.uranium_pellet": "铀燃料丸", "material.gtceu.thorium_pellet": "钍燃料丸", "material.gtceu.ostrum_iodide": "η’˜εŒ–η΄«ι‡‘", + "material.gtceu.americium": "ι•…-243", + "material.gtceu.uranium": "ι“€-238", + "material.gtceu.plutonium": "ι’š-239", "material.gtceu.residual_radioactive_concoction": "ζ”Ύε°„ζ€§ζ‹ζΆ²", "material.gtceu.regolith_vapor": "ι£ŽεŒ–εœŸθ’Έζ°”", "material.gtceu.dense_ostrum_vapor": "致密紫金蒸气", @@ -175,17 +205,23 @@ "metaitem.crushed.tooltip.purify": "ζŠ•ε…₯ζ°΄δΈ­ε―θŽ·εΎ—ηΊ―ε‡€ηŸΏηŸ³", "item.gtceu.tool.behavior.silk_ice": "Β§dι›•εˆ»εΆ:Β§r ε―η”¨η²Ύε‡†ι‡‡ι›†θŽ·ε–ζ΅ε†°", "item.gtceu.tool.butchery_knife.tooltip": "§屠倫:Β§r ε± ε°εŠ¨η‰©ε―θŽ·εΎ—ζ›΄ε€šθ‚‰η±»", + "item.gtceu.tool.tooltip.repair_info": "", + "item.gtceu.tool.tooltip.repair_material": "", "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": "η«ζ˜Ÿι‡ζ°¨ζ°΄", - "gtceu.jei.bedrock_fluid.liquid_ice": "η«ζ˜Ÿε†°", + "gtceu.jei.bedrock_fluid.nether_natural_gas_deposit": "εΉ½ε†₯δΉ‹εœ°ε€©η„Άζ°”ηŸΏθ—", + "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": "η«ζ˜Ÿι‡ζ°¨ζ°΄ηŸΏθ—", + "gtceu.jei.bedrock_fluid.liquid_ice": "η«ζ˜Ÿε†°ηŸΏθ—", "gtceu.recipe.category.ingot_molding": "εŽ‹ζ¨‘", - "tagprefix.sword_head": "%s剑倴", + "block.gtceu.wire_coil.tooltip_pyro": "Β§8ηƒ­θ§£η‚‰οΌŒζΆ²εŒ–ε‘”δΈŽζ Έη‡ƒζ–™ε·₯εŽ‚οΌšΒ§r", + "block.gtceu.wire_coil.tooltip_cracking": "Β§8θ£‚εŒ–ζœΊοΌŒζœˆε£€ε’Œη΄«ι‡‘ι‡‡ι›†ε™¨οΌšΒ§r", + "tooltip.moldraw.shift_view": "Β§7Β§oζŒ‰δ½(Shift)ζŸ₯ηœ‹εˆ†ε­η»“ζž„Β§r", + "tagprefix.sword_head": "%s剑身", "tagprefix.pickaxe_head": "%s镐倴", "tagprefix.shovel_head": "%s铲倴", "tagprefix.axe_head": "%s斧倴", @@ -195,13 +231,13 @@ "tagprefix.hammer_head": "%s销倴", "tagprefix.saw_head": "%s锯倴", "tagprefix.knife_head": "%sεˆ€ε€΄", - "tagprefix.butchery_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.dusty_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/models/block/cube_3_layer/all.json b/kubejs/assets/gtceu/models/block/cube_3_layer/all.json new file mode 100644 index 000000000..bd4649c5f --- /dev/null +++ b/kubejs/assets/gtceu/models/block/cube_3_layer/all.json @@ -0,0 +1,24 @@ +{ + "parent": "gtceu:block/cube_3_layer/default", + "textures": { + "particle": "#bot_all", + "bot_down": "#bot_all", + "bot_up": "#bot_all", + "bot_north": "#bot_all", + "bot_east": "#bot_all", + "bot_south": "#bot_all", + "bot_west": "#bot_all", + "mid_down": "#mid_all", + "mid_up": "#mid_all", + "mid_north": "#mid_all", + "mid_east": "#mid_all", + "mid_south": "#mid_all", + "mid_west": "#mid_all", + "top_down": "#top_all", + "top_up": "#top_all", + "top_north": "#top_all", + "top_east": "#top_all", + "top_south": "#top_all", + "top_west": "#top_all" + } +} diff --git a/kubejs/assets/gtceu/models/block/cube_3_layer/all_translucent.json b/kubejs/assets/gtceu/models/block/cube_3_layer/all_translucent.json new file mode 100644 index 000000000..7e9b40eb4 --- /dev/null +++ b/kubejs/assets/gtceu/models/block/cube_3_layer/all_translucent.json @@ -0,0 +1,25 @@ +{ + "parent": "gtceu:block/cube_3_layer/default", + "render_type": "translucent", + "textures": { + "particle": "#bot_all", + "bot_down": "#bot_all", + "bot_up": "#bot_all", + "bot_north": "#bot_all", + "bot_east": "#bot_all", + "bot_south": "#bot_all", + "bot_west": "#bot_all", + "mid_down": "#mid_all", + "mid_up": "#mid_all", + "mid_north": "#mid_all", + "mid_east": "#mid_all", + "mid_south": "#mid_all", + "mid_west": "#mid_all", + "top_down": "#top_all", + "top_up": "#top_all", + "top_north": "#top_all", + "top_east": "#top_all", + "top_south": "#top_all", + "top_west": "#top_all" + } +} diff --git a/kubejs/assets/gtceu/models/block/cube_3_layer/default.json b/kubejs/assets/gtceu/models/block/cube_3_layer/default.json new file mode 100644 index 000000000..4919daa49 --- /dev/null +++ b/kubejs/assets/gtceu/models/block/cube_3_layer/default.json @@ -0,0 +1,43 @@ +{ + "parent": "block/block", + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "down": { "texture": "#bot_down", "cullface": "down", "tintindex": 0 }, + "up": { "texture": "#bot_up", "cullface": "up", "tintindex": 0 }, + "north": { "texture": "#bot_north", "cullface": "north", "tintindex": 0 }, + "south": { "texture": "#bot_south", "cullface": "south", "tintindex": 0 }, + "west": { "texture": "#bot_west", "cullface": "west", "tintindex": 0 }, + "east": { "texture": "#bot_east", "cullface": "east", "tintindex": 0 } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "shade": false, + "faces": { + "down": { "texture": "#mid_down", "cullface": "down", "tintindex": 1 }, + "up": { "texture": "#mid_up", "cullface": "up", "tintindex": 1 }, + "north": { "texture": "#mid_north", "cullface": "north", "tintindex": 1 }, + "south": { "texture": "#mid_south", "cullface": "south", "tintindex": 1 }, + "west": { "texture": "#mid_west", "cullface": "west", "tintindex": 1 }, + "east": { "texture": "#mid_east", "cullface": "east", "tintindex": 1 } + } + }, + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "shade": false, + "faces": { + "down": { "texture": "#top_down", "cullface": "down", "tintindex": 2 }, + "up": { "texture": "#top_up", "cullface": "up", "tintindex": 2 }, + "north": { "texture": "#top_north", "cullface": "north", "tintindex": 2 }, + "south": { "texture": "#top_south", "cullface": "south", "tintindex": 2 }, + "west": { "texture": "#top_west", "cullface": "west", "tintindex": 2 }, + "east": { "texture": "#top_east", "cullface": "east", "tintindex": 2 } + } + } + ] +} diff --git a/kubejs/assets/gtceu/models/block/machine/active_transformer.json b/kubejs/assets/gtceu/models/block/machine/active_transformer.json new file mode 100644 index 000000000..852f3edb9 --- /dev/null +++ b/kubejs/assets/gtceu/models/block/machine/active_transformer.json @@ -0,0 +1,82 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "gtceu:active_transformer", + "texture_overrides": { + "all": "tfg:item/deprecated" + }, + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated_active" + } + } + }, + "is_formed=false,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated_active" + } + } + }, + "is_formed=true,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated_active" + } + } + }, + "is_formed=true,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated_active" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/models/block/machine/me_stocking_input_bus.json b/kubejs/assets/gtceu/models/block/machine/me_stocking_input_bus.json new file mode 100644 index 000000000..528c5ebe9 --- /dev/null +++ b/kubejs/assets/gtceu/models/block/machine/me_stocking_input_bus.json @@ -0,0 +1,56 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "gtceu:me_stocking_input_bus", + "replaceable_textures": [ + "bottom", + "top", + "side" + ], + "variants": { + "is_formed=false,is_painted=false": { + "model": { + "parent": "gtceu:block/machine/template/part/hatch_machine", + "textures": { + "bottom": "gtceu:block/casings/voltage/iv/bottom", + "overlay": "gtceu:block/overlay/appeng/me_input_bus", + "side": "gtceu:block/casings/voltage/iv/side", + "top": "gtceu:block/casings/voltage/iv/top" + } + } + }, + "is_formed=false,is_painted=true": { + "model": { + "parent": "gtceu:block/machine/template/part/hatch_machine_color_ring", + "textures": { + "bottom": "gtceu:block/casings/voltage/iv/bottom", + "overlay": "gtceu:block/overlay/appeng/me_input_bus", + "side": "gtceu:block/casings/voltage/iv/side", + "top": "gtceu:block/casings/voltage/iv/top" + } + } + }, + "is_formed=true,is_painted=false": { + "model": { + "parent": "gtceu:block/machine/template/part/hatch_machine", + "textures": { + "bottom": "gtceu:block/casings/voltage/iv/bottom", + "overlay": "gtceu:block/overlay/appeng/me_input_bus", + "side": "gtceu:block/casings/voltage/iv/side", + "top": "gtceu:block/casings/voltage/iv/top" + } + } + }, + "is_formed=true,is_painted=true": { + "model": { + "parent": "gtceu:block/machine/template/part/hatch_machine_color_ring", + "textures": { + "bottom": "gtceu:block/casings/voltage/iv/bottom", + "overlay": "gtceu:block/overlay/appeng/me_input_bus", + "side": "gtceu:block/casings/voltage/iv/side", + "top": "gtceu:block/casings/voltage/iv/top" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/models/block/machine/me_stocking_input_hatch.json b/kubejs/assets/gtceu/models/block/machine/me_stocking_input_hatch.json new file mode 100644 index 000000000..dee53a4e1 --- /dev/null +++ b/kubejs/assets/gtceu/models/block/machine/me_stocking_input_hatch.json @@ -0,0 +1,56 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "gtceu:me_stocking_input_hatch", + "replaceable_textures": [ + "bottom", + "top", + "side" + ], + "variants": { + "is_formed=false,is_painted=false": { + "model": { + "parent": "gtceu:block/machine/template/part/hatch_machine", + "textures": { + "bottom": "gtceu:block/casings/voltage/iv/bottom", + "overlay": "gtceu:block/overlay/appeng/me_input_hatch", + "side": "gtceu:block/casings/voltage/iv/side", + "top": "gtceu:block/casings/voltage/iv/top" + } + } + }, + "is_formed=false,is_painted=true": { + "model": { + "parent": "gtceu:block/machine/template/part/hatch_machine_color_ring", + "textures": { + "bottom": "gtceu:block/casings/voltage/iv/bottom", + "overlay": "gtceu:block/overlay/appeng/me_input_hatch", + "side": "gtceu:block/casings/voltage/iv/side", + "top": "gtceu:block/casings/voltage/iv/top" + } + } + }, + "is_formed=true,is_painted=false": { + "model": { + "parent": "gtceu:block/machine/template/part/hatch_machine", + "textures": { + "bottom": "gtceu:block/casings/voltage/iv/bottom", + "overlay": "gtceu:block/overlay/appeng/me_input_hatch", + "side": "gtceu:block/casings/voltage/iv/side", + "top": "gtceu:block/casings/voltage/iv/top" + } + } + }, + "is_formed=true,is_painted=true": { + "model": { + "parent": "gtceu:block/machine/template/part/hatch_machine_color_ring", + "textures": { + "bottom": "gtceu:block/casings/voltage/iv/bottom", + "overlay": "gtceu:block/overlay/appeng/me_input_hatch", + "side": "gtceu:block/casings/voltage/iv/side", + "top": "gtceu:block/casings/voltage/iv/top" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/models/block/material_sets/chonky/block.json b/kubejs/assets/gtceu/models/block/material_sets/chonky/block.json new file mode 100644 index 000000000..9f753d696 --- /dev/null +++ b/kubejs/assets/gtceu/models/block/material_sets/chonky/block.json @@ -0,0 +1,8 @@ +{ + "parent": "gtceu:block/cube_3_layer/all", + "textures": { + "bot_all": "gtceu:block/material_sets/chonky/block", + "mid_all": "gtceu:block/material_sets/chonky/block_secondary", + "top_all": "gtceu:block/material_sets/chonky/block_overlay" + } +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/models/block/material_sets/chonky/frame_gt.json b/kubejs/assets/gtceu/models/block/material_sets/chonky/frame_gt.json new file mode 100644 index 000000000..e98a4e16d --- /dev/null +++ b/kubejs/assets/gtceu/models/block/material_sets/chonky/frame_gt.json @@ -0,0 +1,8 @@ +{ + "parent": "gtceu:block/cube_3_layer/all_translucent", + "textures": { + "bot_all": "gtceu:block/material_sets/chonky/frame_gt", + "mid_all": "gtceu:block/material_sets/chonky/frame_gt_secondary", + "top_all": "gtceu:block/material_sets/chonky/frame_gt_overlay" + } +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/block.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/block.json new file mode 100644 index 000000000..495c503ae --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/block.json @@ -0,0 +1,3 @@ +{ + "parent": "gtceu:item/material_sets/chonky/block" +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/bolt.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/bolt.json new file mode 100644 index 000000000..e77b96e4f --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/bolt.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/bolt", + "layer1": "gtceu:item/material_sets/chonky/bolt_secondary", + "layer2": "gtceu:item/material_sets/chonky/bolt_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/foil.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/foil.json new file mode 100644 index 000000000..dca6eed74 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/foil.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/foil", + "layer1": "gtceu:item/material_sets/chonky/foil_secondary", + "layer2": "gtceu:item/material_sets/chonky/foil_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/frame_gt.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/frame_gt.json new file mode 100644 index 000000000..61f59e8b9 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/frame_gt.json @@ -0,0 +1,3 @@ +{ + "parent": "gtceu:item/material_sets/chonky/frame_gt" +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/gear.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/gear.json new file mode 100644 index 000000000..b0265d2c0 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/gear.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/gear", + "layer1": "gtceu:item/material_sets/chonky/gear_secondary", + "layer2": "gtceu:item/material_sets/chonky/gear_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/gear_small.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/gear_small.json new file mode 100644 index 000000000..dd51c5c7f --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/gear_small.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/gear_small", + "layer1": "gtceu:item/material_sets/chonky/gear_small_secondary", + "layer2": "gtceu:item/material_sets/chonky/gear_small_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/ingot.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/ingot.json new file mode 100644 index 000000000..d7347df75 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/ingot.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/ingot", + "layer1": "gtceu:item/material_sets/chonky/ingot_secondary", + "layer2": "gtceu:item/material_sets/chonky/ingot_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/ingot_double.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/ingot_double.json new file mode 100644 index 000000000..bffa7f1e1 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/ingot_double.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/ingot_double", + "layer1": "gtceu:item/material_sets/chonky/ingot_double_secondary", + "layer2": "gtceu:item/material_sets/chonky/ingot_double_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/ingot_hot.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/ingot_hot.json new file mode 100644 index 000000000..db6a4ec37 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/ingot_hot.json @@ -0,0 +1,9 @@ +{ + "parent": "gtceu:item/material_sets/chonky/ingot", + "textures": { + "layer0":"gtceu:item/material_sets/chonky/ingot", + "layer1":"gtceu:item/material_sets/chonky/ingot_secondary", + "layer2":"gtceu:item/material_sets/chonky/ingot_overlay", + "layer3":"gtceu:item/material_sets/chonky/ingot_hot_overlay" + } +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/nugget.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/nugget.json new file mode 100644 index 000000000..1b994d90c --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/nugget.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/nugget", + "layer1": "gtceu:item/material_sets/chonky/nugget_secondary", + "layer2": "gtceu:item/material_sets/chonky/nugget_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/plate.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/plate.json new file mode 100644 index 000000000..662218a13 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/plate.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/plate", + "layer1": "gtceu:item/material_sets/chonky/plate_secondary", + "layer2": "gtceu:item/material_sets/chonky/plate_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/plate_dense.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/plate_dense.json new file mode 100644 index 000000000..479760975 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/plate_dense.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/plate_dense", + "layer1": "gtceu:item/material_sets/chonky/plate_dense_secondary", + "layer2": "gtceu:item/material_sets/chonky/plate_dense_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/plate_double.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/plate_double.json new file mode 100644 index 000000000..ba5f9b677 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/plate_double.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/plate_double", + "layer1": "gtceu:item/material_sets/chonky/plate_double_secondary", + "layer2": "gtceu:item/material_sets/chonky/plate_double_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/ring.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/ring.json new file mode 100644 index 000000000..665aa603b --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/ring.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/ring", + "layer1": "gtceu:item/material_sets/chonky/ring_secondary", + "layer2": "gtceu:item/material_sets/chonky/ring_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/rod.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/rod.json new file mode 100644 index 000000000..05da66ead --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/rod.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/rod", + "layer1": "gtceu:item/material_sets/chonky/rod_secondary", + "layer2": "gtceu:item/material_sets/chonky/rod_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/rod_long.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/rod_long.json new file mode 100644 index 000000000..2856de974 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/rod_long.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/rod_long", + "layer1": "gtceu:item/material_sets/chonky/rod_long_secondary", + "layer2": "gtceu:item/material_sets/chonky/rod_long_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/rotor.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/rotor.json new file mode 100644 index 000000000..e411f89b0 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/rotor.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/rotor", + "layer1": "gtceu:item/material_sets/chonky/rotor_secondary", + "layer2": "gtceu:item/material_sets/chonky/rotor_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/round.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/round.json new file mode 100644 index 000000000..8be0d3752 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/round.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/round", + "layer1": "gtceu:item/material_sets/chonky/round_secondary", + "layer2": "gtceu:item/material_sets/chonky/round_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/screw.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/screw.json new file mode 100644 index 000000000..45d4b4464 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/screw.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/screw", + "layer1": "gtceu:item/material_sets/chonky/screw_secondary", + "layer2": "gtceu:item/material_sets/chonky/screw_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/spring.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/spring.json new file mode 100644 index 000000000..3999b33c5 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/spring.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/spring", + "layer1": "gtceu:item/material_sets/chonky/spring_secondary", + "layer2": "gtceu:item/material_sets/chonky/spring_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/spring_small.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/spring_small.json new file mode 100644 index 000000000..71ffb6a0b --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/spring_small.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/spring_small", + "layer1": "gtceu:item/material_sets/chonky/spring_small_secondary", + "layer2": "gtceu:item/material_sets/chonky/spring_small_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_buzz_saw.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_buzz_saw.json new file mode 100644 index 000000000..1481a0e52 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_buzz_saw.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/tool_head_buzz_saw", + "layer1": "gtceu:item/material_sets/chonky/tool_head_buzz_saw_secondary", + "layer2": "gtceu:item/material_sets/chonky/tool_head_buzz_saw_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_chainsaw.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_chainsaw.json new file mode 100644 index 000000000..b97e0c3a9 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_chainsaw.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/tool_head_chainsaw", + "layer1": "gtceu:item/material_sets/chonky/tool_head_chainsaw_secondary", + "layer2": "gtceu:item/material_sets/chonky/tool_head_chainsaw_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_drill.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_drill.json new file mode 100644 index 000000000..74085a203 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_drill.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/tool_head_drill", + "layer1": "gtceu:item/material_sets/chonky/tool_head_drill_secondary", + "layer2": "gtceu:item/material_sets/chonky/tool_head_drill_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_screwdriver.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_screwdriver.json new file mode 100644 index 000000000..5e81cc3b4 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_screwdriver.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/tool_head_screwdriver", + "layer1": "gtceu:item/material_sets/chonky/tool_head_screwdriver_secondary", + "layer2": "gtceu:item/material_sets/chonky/tool_head_screwdriver_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_wrench.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_wrench.json new file mode 100644 index 000000000..af4a2f5d9 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/tool_head_wrench.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/tool_head_wrench", + "layer1": "gtceu:item/material_sets/chonky/tool_head_wrench_secondary", + "layer2": "gtceu:item/material_sets/chonky/tool_head_wrench_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/turbine_blade.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/turbine_blade.json new file mode 100644 index 000000000..4778455f1 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/turbine_blade.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/turbine_blade", + "layer1": "gtceu:item/material_sets/chonky/turbine_blade_secondary", + "layer2": "gtceu:item/material_sets/chonky/turbine_blade_overlay" + } +} diff --git a/kubejs/assets/gtceu/models/item/material_sets/chonky/wire_fine.json b/kubejs/assets/gtceu/models/item/material_sets/chonky/wire_fine.json new file mode 100644 index 000000000..5a734e877 --- /dev/null +++ b/kubejs/assets/gtceu/models/item/material_sets/chonky/wire_fine.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "gtceu:item/material_sets/chonky/wire_fine", + "layer1": "gtceu:item/material_sets/chonky/wire_fine_secondary", + "layer2": "gtceu:item/material_sets/chonky/wire_fine_overlay" + } +} diff --git a/kubejs/assets/gtceu/molecules/ammonia.json b/kubejs/assets/gtceu/molecules/ammonia.json new file mode 100644 index 000000000..5ad544b7a --- /dev/null +++ b/kubejs/assets/gtceu/molecules/ammonia.json @@ -0,0 +1,56 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 0.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 1.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "H", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 3, + "x": 0.0, + "y": -1.7321 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/antimony_trifluoride.json b/kubejs/assets/gtceu/molecules/antimony_trifluoride.json new file mode 100644 index 000000000..44afbd03a --- /dev/null +++ b/kubejs/assets/gtceu/molecules/antimony_trifluoride.json @@ -0,0 +1,56 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Sb", + "index": 0, + "x": 0.866, + "y": -0.5 + }, + { + "type": "atom", + "element": "F", + "index": 1, + "x": 0.866, + "y": -1.5 + }, + { + "type": "atom", + "element": "F", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "F", + "index": 3, + "x": 1.732, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/antimony_trioxide.json b/kubejs/assets/gtceu/molecules/antimony_trioxide.json new file mode 100644 index 000000000..f0b83773a --- /dev/null +++ b/kubejs/assets/gtceu/molecules/antimony_trioxide.json @@ -0,0 +1,75 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "Sb", + "index": 1, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "Sb", + "index": 3, + "x": 2.598, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 3.4641, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/arsenic_trioxide.json b/kubejs/assets/gtceu/molecules/arsenic_trioxide.json new file mode 100644 index 000000000..87dc46385 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/arsenic_trioxide.json @@ -0,0 +1,170 @@ +{ + "contents": [ + { + "type": "atom", + "element": "As", + "index": 0, + "x": 1.9603, + "y": -1.0063 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 1.7095, + "y": -1.8087 + }, + { + "type": "atom", + "element": "As", + "index": 2, + "x": 0.55, + "y": -1.6268 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": -0.2485, + "y": -1.8023 + }, + { + "type": "atom", + "element": "As", + "index": 4, + "x": 0.0, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": 1.1606, + "y": -1.1827 + }, + { + "type": "atom", + "element": "O", + "index": 6, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 7, + "x": 0.55, + "y": -0.6268 + }, + { + "type": "atom", + "element": "O", + "index": 8, + "x": 1.9603, + "y": -0.0063 + }, + { + "type": "atom", + "element": "As", + "index": 9, + "x": 0.8661, + "y": 0.5 + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 9, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/barite.json b/kubejs/assets/gtceu/molecules/barite.json new file mode 100644 index 000000000..22a247a36 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/barite.json @@ -0,0 +1,100 @@ +{ + "contents": [ + { + "type": "atom", + "element": "S", + "index": 0, + "x": 2.33, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.33, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.33, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.33, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 2.33, + "y": 1.0 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3, + 4 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Ba²⁺", + "color": { + "color": -16725760, + "optional": true + }, + "material": "gtceu:barium" + }, + "index": 5, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/biphenyl.json b/kubejs/assets/gtceu/molecules/biphenyl.json new file mode 100644 index 000000000..676d78489 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/biphenyl.json @@ -0,0 +1,186 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.5, + "y": 0.8661 + }, + { + "type": "atom", + "index": 1, + "x": 2.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 2, + "x": 1.5, + "y": 0.8661 + }, + { + "type": "atom", + "index": 3, + "x": 1.5, + "y": -0.866 + }, + { + "type": "atom", + "index": 4, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 5, + "x": 0.5, + "y": -0.866 + }, + { + "type": "atom", + "index": 6, + "x": 3.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 7, + "x": 4.5, + "y": 0.8661 + }, + { + "type": "atom", + "index": 8, + "x": 3.5, + "y": 0.8661 + }, + { + "type": "atom", + "index": 9, + "x": 5.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 10, + "x": 3.5, + "y": -0.866 + }, + { + "type": "atom", + "index": 11, + "x": 4.5, + "y": -0.866 + }, + { + "type": "bond", + "a": 2, + "b": 0, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 1, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 6, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 11, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 7, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/calcite.json b/kubejs/assets/gtceu/molecules/calcite.json new file mode 100644 index 000000000..01cbc9580 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/calcite.json @@ -0,0 +1,82 @@ +{ + "contents": [ + { + "type": "atom", + "element": "C", + "index": 0, + "x": 2.2933, + "y": -0.155 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.1594, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.4273, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.2933, + "y": 0.845 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Ca²⁺", + "color": { + "color": -12714240, + "optional": true + }, + "material": "gtceu:calcium" + }, + "index": 4, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/calcium_ferrocyanide.json b/kubejs/assets/gtceu/molecules/calcium_ferrocyanide.json new file mode 100644 index 000000000..54c464d20 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/calcium_ferrocyanide.json @@ -0,0 +1,237 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Fe", + "index": 0, + "x": 2.95, + "y": 0.0 + }, + { + "type": "atom", + "index": 1, + "x": 2.084, + "y": 0.5 + }, + { + "type": "atom", + "index": 2, + "x": 2.084, + "y": -0.5 + }, + { + "type": "atom", + "index": 3, + "x": 2.95, + "y": 1.0 + }, + { + "type": "atom", + "index": 4, + "x": 2.95, + "y": -1.0 + }, + { + "type": "atom", + "index": 5, + "x": 3.816, + "y": 0.5 + }, + { + "type": "atom", + "index": 6, + "x": 3.816, + "y": -0.5 + }, + { + "type": "atom", + "element": "N", + "index": 7, + "x": 1.218, + "y": -1.0 + }, + { + "type": "atom", + "element": "N", + "index": 8, + "x": 4.6821, + "y": 1.0 + }, + { + "type": "atom", + "element": "N", + "index": 9, + "x": 2.95, + "y": 2.0 + }, + { + "type": "atom", + "element": "N", + "index": 10, + "x": 4.6821, + "y": -1.0 + }, + { + "type": "atom", + "element": "N", + "index": 11, + "x": 1.218, + "y": 1.0 + }, + { + "type": "atom", + "element": "N", + "index": 12, + "x": 2.95, + "y": -2.0 + }, + { + "sup": "4-", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Ca⁺", + "color": { + "color": -12714240, + "optional": true + }, + "material": "gtceu:calcium" + }, + "index": 13, + "x": 0.0, + "y": 0.0 + }, + { + "sub": "2", + "atoms": [ + 13 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 6, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 2, + "b": 7, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 8, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 9, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 10, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 11, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 12, + "lines": [ + "solid", + "solid", + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/calcium_hydroxide.json b/kubejs/assets/gtceu/molecules/calcium_hydroxide.json new file mode 100644 index 000000000..7230a092c --- /dev/null +++ b/kubejs/assets/gtceu/molecules/calcium_hydroxide.json @@ -0,0 +1,49 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 1.0, + "y": 0 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 2.0, + "y": 0 + }, + { + "sup": "-", + "sub": "2", + "atoms": [ + 0, + 1 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Ca²⁺", + "color": { + "color": -12714240, + "optional": true + }, + "material": "gtceu:calcium" + }, + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/carbon_dioxide.json b/kubejs/assets/gtceu/molecules/carbon_dioxide.json new file mode 100644 index 000000000..c24cbb9d4 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/carbon_dioxide.json @@ -0,0 +1,45 @@ +{ + "contents": [ + { + "type": "atom", + "element": "C", + "index": 0, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 2.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/carbon_monoxide.json b/kubejs/assets/gtceu/molecules/carbon_monoxide.json new file mode 100644 index 000000000..e60d5670b --- /dev/null +++ b/kubejs/assets/gtceu/molecules/carbon_monoxide.json @@ -0,0 +1,27 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 1.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid", + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/chromium_trioxide.json b/kubejs/assets/gtceu/molecules/chromium_trioxide.json new file mode 100644 index 000000000..1756b8a51 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/chromium_trioxide.json @@ -0,0 +1,62 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Cr", + "index": 0, + "x": 0.866, + "y": -0.5 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.866, + "y": -1.5 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 1.732, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/dimethylamine.json b/kubejs/assets/gtceu/molecules/dimethylamine.json new file mode 100644 index 000000000..83edb251f --- /dev/null +++ b/kubejs/assets/gtceu/molecules/dimethylamine.json @@ -0,0 +1,40 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "above": "H", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "index": 1, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 2, + "x": 1.732, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/dinitrogen_tetroxide.json b/kubejs/assets/gtceu/molecules/dinitrogen_tetroxide.json new file mode 100644 index 000000000..85d9673ad --- /dev/null +++ b/kubejs/assets/gtceu/molecules/dinitrogen_tetroxide.json @@ -0,0 +1,90 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 0.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.0, + "y": -1.732 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "N", + "index": 3, + "x": 1.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 2.0, + "y": -1.732 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": 2.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 3, + "b": 5, + "lines": [ + "solid", + "dotted" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/dioxygen_difluoride.json b/kubejs/assets/gtceu/molecules/dioxygen_difluoride.json new file mode 100644 index 000000000..ae31f96f4 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/dioxygen_difluoride.json @@ -0,0 +1,56 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 1.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "F", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "F", + "index": 3, + "x": 2.0, + "y": -1.732 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 1, + "b": 3, + "lines": [ + "inward" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/distilled_water.json b/kubejs/assets/gtceu/molecules/distilled_water.json new file mode 100644 index 000000000..3b1d2724b --- /dev/null +++ b/kubejs/assets/gtceu/molecules/distilled_water.json @@ -0,0 +1,41 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/ethenone.json b/kubejs/assets/gtceu/molecules/ethenone.json new file mode 100644 index 000000000..331e10261 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/ethenone.json @@ -0,0 +1,73 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "C", + "index": 1, + "x": 1.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 2.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "H", + "index": 3, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 4, + "x": 0.0, + "y": -1.732 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/fluoroantimonic_acid.json b/kubejs/assets/gtceu/molecules/fluoroantimonic_acid.json new file mode 100644 index 000000000..db3f258e1 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/fluoroantimonic_acid.json @@ -0,0 +1,159 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Sb", + "index": 0, + "x": 3.766, + "y": 0.542 + }, + { + "type": "atom", + "element": "F", + "index": 1, + "x": 2.9, + "y": 1.042 + }, + { + "type": "atom", + "element": "F", + "index": 2, + "x": 2.9, + "y": 0.042 + }, + { + "type": "atom", + "element": "F", + "index": 3, + "x": 3.766, + "y": 1.542 + }, + { + "type": "atom", + "element": "F", + "index": 4, + "x": 3.766, + "y": -0.458 + }, + { + "type": "atom", + "element": "F", + "index": 5, + "x": 4.632, + "y": 1.042 + }, + { + "type": "atom", + "element": "F", + "index": 6, + "x": 4.632, + "y": 0.042 + }, + { + "sup": "-", + "atoms": [ + 1, + 2, + 3, + 4, + 5, + 6 + ], + "type": "parens" + }, + { + "type": "atom", + "element": "F", + "index": 7, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "H", + "index": 8, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 9, + "x": 1.732, + "y": 0.0 + }, + { + "sup": "+", + "atoms": [ + 7, + 8, + 9 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 6, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 9, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/hydrochloric_acid.json b/kubejs/assets/gtceu/molecules/hydrochloric_acid.json new file mode 100644 index 000000000..07e395b59 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/hydrochloric_acid.json @@ -0,0 +1,26 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Cl", + "index": 0, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/hydrofluoric_acid.json b/kubejs/assets/gtceu/molecules/hydrofluoric_acid.json new file mode 100644 index 000000000..612e3ac28 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/hydrofluoric_acid.json @@ -0,0 +1,26 @@ +{ + "contents": [ + { + "type": "atom", + "element": "F", + "index": 0, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/hydrogen_cyanide.json b/kubejs/assets/gtceu/molecules/hydrogen_cyanide.json new file mode 100644 index 000000000..b7fd98999 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/hydrogen_cyanide.json @@ -0,0 +1,43 @@ +{ + "contents": [ + { + "type": "atom", + "element": "C", + "index": 0, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "N", + "index": 1, + "x": 2.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/hydrogen_peroxide.json b/kubejs/assets/gtceu/molecules/hydrogen_peroxide.json new file mode 100644 index 000000000..654d33dc3 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/hydrogen_peroxide.json @@ -0,0 +1,56 @@ +{ + "contents": [ + { + "type": "atom", + "element": "H", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 3, + "x": 2.598, + "y": 0.5 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/hydrogen_sulfide.json b/kubejs/assets/gtceu/molecules/hydrogen_sulfide.json new file mode 100644 index 000000000..0efd3e706 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/hydrogen_sulfide.json @@ -0,0 +1,41 @@ +{ + "contents": [ + { + "type": "atom", + "element": "S", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/hypochlorous_acid.json b/kubejs/assets/gtceu/molecules/hypochlorous_acid.json new file mode 100644 index 000000000..0b7c41dae --- /dev/null +++ b/kubejs/assets/gtceu/molecules/hypochlorous_acid.json @@ -0,0 +1,41 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "Cl", + "index": 2, + "x": 2.089, + "y": -0.2089 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/lactose.json b/kubejs/assets/gtceu/molecules/lactose.json new file mode 100644 index 000000000..54d116e07 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/lactose.json @@ -0,0 +1,353 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 1.8660000000000014, + "y": -1.5 + }, + { + "type": "atom", + "index": 1, + "x": 0.86600000000000144, + "y": -1.5 + }, + { + "type": "atom", + "index": 2, + "x": 0.36600000000000144, + "y": -2.3659999999999997 + }, + { + "type": "atom", + "index": 3, + "x": 0.86600000000000144, + "y": -3.2319999999999993 + }, + { + "type": "atom", + "index": 4, + "x": 1.8660000000000014, + "y": -3.2319999999999993 + }, + { + "type": "atom", + "index": 5, + "x": 2.3660000000000014, + "y": -2.3659999999999997 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 6, + "x": 0.36600000000000144, + "y": -1.3659999999999997 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 7, + "x": 0.86600000000000144, + "y": -2.2319999999999993 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 8, + "x": 1.8660000000000014, + "y": -4.2319999999999993 + }, + { + "type": "atom", + "element": "O", + "index": 9, + "x": 2.3660000000000014, + "y": -1.3659999999999997 + }, + { + "type": "atom", + "index": 10, + "x": 2.3660000000000014, + "y": -0.36599999999999966 + }, + { + "type": "atom", + "index": 11, + "x": 0.86600000000000144, + "y": -0.5 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 12, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 13, + "x": 2.8660000000000014, + "y": -1.2320000000000002 + }, + { + "type": "atom", + "index": 14, + "x": 3.8660000000000014, + "y": -1.2320000000000002 + }, + { + "type": "atom", + "index": 15, + "x": 4.3660000000000014, + "y": -0.36599999999999966 + }, + { + "type": "atom", + "element": "O", + "index": 16, + "x": 3.8660000000000014, + "y": 0.5 + }, + { + "type": "atom", + "index": 17, + "x": 2.8660000000000014, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 18, + "x": 2.8660000000000014, + "y": -0.23200000000000021 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 19, + "x": 3.8660000000000014, + "y": -2.2319999999999993 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 20, + "x": 4.3660000000000014, + "y": 0.63400000000000034 + }, + { + "type": "atom", + "index": 21, + "x": 2.8660000000000014, + "y": 1.5 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 22, + "x": 2.0, + "y": 2.0 + }, + { + "type": "bond", + "a": 5, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 5, + "b": 4, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 13, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 13, + "b": 14, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 15, + "b": 14, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 22, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/liquid_carbon_dioxide.json b/kubejs/assets/gtceu/molecules/liquid_carbon_dioxide.json new file mode 100644 index 000000000..c24cbb9d4 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/liquid_carbon_dioxide.json @@ -0,0 +1,45 @@ +{ + "contents": [ + { + "type": "atom", + "element": "C", + "index": 0, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 2.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/lithium_carbonate.json b/kubejs/assets/gtceu/molecules/lithium_carbonate.json new file mode 100644 index 000000000..928cbab50 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/lithium_carbonate.json @@ -0,0 +1,89 @@ +{ + "contents": [ + { + "type": "atom", + "element": "C", + "index": 0, + "x": 2.2933, + "y": -0.155 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.1594, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.4273, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.2933, + "y": 0.845 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Li⁺", + "color": { + "color": -3374849, + "optional": true + }, + "material": "gtceu:lithium" + }, + "index": 4, + "x": 0.0, + "y": 0.0 + }, + { + "sub": "2", + "atoms": [ + 4 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/magnesite.json b/kubejs/assets/gtceu/molecules/magnesite.json new file mode 100644 index 000000000..70eb7e46e --- /dev/null +++ b/kubejs/assets/gtceu/molecules/magnesite.json @@ -0,0 +1,82 @@ +{ + "contents": [ + { + "type": "atom", + "element": "C", + "index": 0, + "x": 2.2933, + "y": -0.155 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.1594, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.4273, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.2933, + "y": 0.845 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Mg²⁺", + "color": { + "color": -7667968, + "optional": true + }, + "material": "gtceu:magnesium" + }, + "index": 4, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/monochloramine.json b/kubejs/assets/gtceu/molecules/monochloramine.json new file mode 100644 index 000000000..f85b44f50 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/monochloramine.json @@ -0,0 +1,56 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 0.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "Cl", + "index": 1, + "x": 1.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "H", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 3, + "x": 0.0, + "y": -1.7321 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/nitric_acid.json b/kubejs/assets/gtceu/molecules/nitric_acid.json new file mode 100644 index 000000000..d9f2e45bf --- /dev/null +++ b/kubejs/assets/gtceu/molecules/nitric_acid.json @@ -0,0 +1,59 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 0.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 1, + "x": 1.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 0.0, + "y": -1.7321 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "dotted" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/nitric_oxide.json b/kubejs/assets/gtceu/molecules/nitric_oxide.json new file mode 100644 index 000000000..d148b4b27 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/nitric_oxide.json @@ -0,0 +1,28 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 1.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid", + "dotted" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/nitrogen_dioxide.json b/kubejs/assets/gtceu/molecules/nitrogen_dioxide.json new file mode 100644 index 000000000..fc79c49d8 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/nitrogen_dioxide.json @@ -0,0 +1,45 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 1, + "b": 0, + "lines": [ + "dotted", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "dotted", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/nitrosyl_chloride.json b/kubejs/assets/gtceu/molecules/nitrosyl_chloride.json new file mode 100644 index 000000000..3c1fe3ae0 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/nitrosyl_chloride.json @@ -0,0 +1,43 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "Cl", + "index": 1, + "x": 1.7321, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/nitrous_oxide.json b/kubejs/assets/gtceu/molecules/nitrous_oxide.json new file mode 100644 index 000000000..3df656c24 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/nitrous_oxide.json @@ -0,0 +1,44 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "N", + "index": 1, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 2.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid", + "dotted" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/osmium_tetroxide.json b/kubejs/assets/gtceu/molecules/osmium_tetroxide.json new file mode 100644 index 000000000..223d3bce5 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/osmium_tetroxide.json @@ -0,0 +1,71 @@ +{ + "contents": [ + { + "index": 0, + "element": "Os", + "x": 0.0, + "y": 0.0, + "type": "atom" + }, + { + "index": 1, + "element": "O", + "x": 0.0, + "y": 1.0, + "type": "atom" + }, + { + "index": 2, + "element": "O", + "x": 0.9659258, + "y": -0.25881904, + "type": "atom" + }, + { + "index": 3, + "element": "O", + "x": 0.5, + "y": -0.8660254, + "type": "atom" + }, + { + "index": 4, + "element": "O", + "x": -0.8660254, + "y": -0.5, + "type": "atom" + }, + { + "a": 0, + "b": 1, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 0, + "b": 2, + "lines": [ + "inward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 3, + "lines": [ + "outward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 4, + "lines": [ + "solid" + ], + "type": "bond" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/paracetamol.json b/kubejs/assets/gtceu/molecules/paracetamol.json new file mode 100644 index 000000000..5764c3a22 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/paracetamol.json @@ -0,0 +1,168 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.866, + "y": 1.5 + }, + { + "type": "atom", + "index": 1, + "x": 2.5981, + "y": 1.5 + }, + { + "type": "atom", + "index": 2, + "x": 1.7321, + "y": 2.0 + }, + { + "type": "atom", + "index": 3, + "x": 2.5981, + "y": 0.5 + }, + { + "type": "atom", + "index": 4, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "index": 5, + "x": 1.7321, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 6, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "N", + "above": "H", + "index": 7, + "x": 3.4641, + "y": 2.0 + }, + { + "type": "atom", + "index": 8, + "x": 4.3301, + "y": 1.5 + }, + { + "type": "atom", + "index": 9, + "x": 4.3301, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 5.1962, + "y": 2.0 + }, + { + "type": "bond", + "a": 2, + "b": 0, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 1, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 10, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/phosphate.json b/kubejs/assets/gtceu/molecules/phosphate.json new file mode 100644 index 000000000..543fa076a --- /dev/null +++ b/kubejs/assets/gtceu/molecules/phosphate.json @@ -0,0 +1,84 @@ +{ + "contents": [ + { + "index": 0, + "element": "P", + "x": 0.0, + "y": 0.0, + "type": "atom" + }, + { + "index": 1, + "element": "O", + "x": 0.0, + "y": 1.0, + "type": "atom" + }, + { + "index": 2, + "element": "O", + "x": 0.9659258, + "y": -0.25881904, + "type": "atom" + }, + { + "index": 3, + "element": "O", + "x": 0.5, + "y": -0.8660254, + "type": "atom" + }, + { + "index": 4, + "element": "O", + "x": -0.8660254, + "y": -0.5, + "type": "atom" + }, + { + "sup": "3-", + "atoms": [ + 0, + 1, + 2, + 3, + 4 + ], + "type": "parens" + }, + { + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true, + "type": "bond" + }, + { + "a": 0, + "b": 2, + "lines": [ + "inward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 3, + "lines": [ + "outward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 4, + "lines": [ + "solid" + ], + "type": "bond" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/phosphoric_acid.json b/kubejs/assets/gtceu/molecules/phosphoric_acid.json new file mode 100644 index 000000000..c45647763 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/phosphoric_acid.json @@ -0,0 +1,76 @@ +{ + "contents": [ + { + "type": "atom", + "element": "P", + "index": 0, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 1, + "x": 1.0, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 2, + "x": 2.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 3, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 1.0, + "y": 1.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/phosphorus_pentoxide.json b/kubejs/assets/gtceu/molecules/phosphorus_pentoxide.json new file mode 100644 index 000000000..221ad432e --- /dev/null +++ b/kubejs/assets/gtceu/molecules/phosphorus_pentoxide.json @@ -0,0 +1,238 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.4132, + "y": -0.7316 + }, + { + "type": "atom", + "element": "P", + "index": 1, + "x": 1.3028, + "y": -0.2795 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.3028, + "y": 0.6246 + }, + { + "type": "atom", + "element": "P", + "index": 3, + "x": 1.8466, + "y": 1.5806 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 0.9568, + "y": 1.1286 + }, + { + "type": "atom", + "element": "P", + "index": 5, + "x": 0.9568, + "y": 0.2244 + }, + { + "type": "atom", + "element": "O", + "index": 6, + "x": 1.8466, + "y": -0.2277 + }, + { + "type": "atom", + "element": "P", + "index": 7, + "x": 2.7364, + "y": 0.2244 + }, + { + "type": "atom", + "element": "O", + "index": 8, + "x": 2.1926, + "y": -0.7316 + }, + { + "type": "atom", + "element": "O", + "index": 9, + "x": 2.7364, + "y": 1.1286 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 1.0728, + "y": -1.2695 + }, + { + "type": "atom", + "element": "O", + "index": 11, + "x": 3.7031, + "y": -0.0313 + }, + { + "type": "atom", + "element": "O", + "index": 12, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 13, + "x": 1.8466, + "y": 2.5806 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 10, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 7, + "b": 11, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 5, + "b": 12, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 3, + "b": 13, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/polychlorinated_biphenyl.json b/kubejs/assets/gtceu/molecules/polychlorinated_biphenyl.json new file mode 100644 index 000000000..e3fbe7b91 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/polychlorinated_biphenyl.json @@ -0,0 +1,242 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 1.2472, + "y": -0.1295 + }, + { + "type": "atom", + "index": 1, + "x": 2.7472, + "y": -0.9955 + }, + { + "type": "atom", + "index": 2, + "x": 2.2472, + "y": -0.1295 + }, + { + "type": "atom", + "index": 3, + "x": 2.2472, + "y": -1.8616 + }, + { + "type": "atom", + "index": 4, + "x": 0.7472, + "y": -0.9955 + }, + { + "type": "atom", + "index": 5, + "x": 1.2472, + "y": -1.8616 + }, + { + "type": "atom", + "index": 6, + "x": 3.7472, + "y": -0.9955 + }, + { + "type": "atom", + "index": 7, + "x": 5.2472, + "y": -0.1295 + }, + { + "type": "atom", + "index": 8, + "x": 4.2472, + "y": -0.1295 + }, + { + "type": "atom", + "index": 9, + "x": 5.7472, + "y": -0.9955 + }, + { + "type": "atom", + "index": 10, + "x": 4.2472, + "y": -1.8616 + }, + { + "type": "atom", + "index": 11, + "x": 5.2472, + "y": -1.8616 + }, + { + "type": "atom", + "index": 12, + "x": 1.7472, + "y": -0.9955 + }, + { + "type": "atom", + "element": { + "symbol": "Clβ‚˜", + "color": { + "color": -14684129, + "optional": true + }, + "material": "gtceu:chlorine" + }, + "index": 13, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 14, + "x": 4.7472, + "y": -0.9955 + }, + { + "type": "atom", + "element": { + "symbol": "Clβ‚™", + "color": { + "color": -14684129, + "optional": true + }, + "material": "gtceu:chlorine" + }, + "index": 15, + "x": 6.457, + "y": 0 + }, + { + "type": "bond", + "a": 2, + "b": 0, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 1, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 6, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 11, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 7, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 15, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/potassium_carbonate.json b/kubejs/assets/gtceu/molecules/potassium_carbonate.json new file mode 100644 index 000000000..73c5ce557 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/potassium_carbonate.json @@ -0,0 +1,89 @@ +{ + "contents": [ + { + "type": "atom", + "element": "C", + "index": 0, + "x": 2.2933, + "y": -0.155 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.1594, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.4273, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.2933, + "y": 0.845 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "K⁺", + "color": { + "color": -7388972, + "optional": true + }, + "material": "gtceu:potassium" + }, + "index": 4, + "x": 0.0, + "y": 0.0 + }, + { + "sub": "2", + "atoms": [ + 4 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/potassium_cyanide.json b/kubejs/assets/gtceu/molecules/potassium_cyanide.json new file mode 100644 index 000000000..2fb8dc9bb --- /dev/null +++ b/kubejs/assets/gtceu/molecules/potassium_cyanide.json @@ -0,0 +1,50 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 1.9999, + "y": 0.0 + }, + { + "type": "atom", + "element": "C", + "index": 1, + "x": 1.0, + "y": 0.0 + }, + { + "sup": "-", + "atoms": [ + 0, + 1 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "K⁺", + "color": { + "color": -7388972, + "optional": true + }, + "material": "gtceu:potassium" + }, + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid", + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/potassium_dichromate.json b/kubejs/assets/gtceu/molecules/potassium_dichromate.json new file mode 100644 index 000000000..cbc9d1188 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/potassium_dichromate.json @@ -0,0 +1,175 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Cr", + "index": 0, + "x": 2.0238, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 1.5238, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 2.5238, + "y": 0.8661 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 1.1578, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 2.8898, + "y": -0.5 + }, + { + "type": "atom", + "element": "Cr", + "index": 5, + "x": 3.7559, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 6, + "x": 3.2559, + "y": 0.8661 + }, + { + "type": "atom", + "element": "O", + "index": 7, + "x": 4.2559, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "index": 8, + "x": 4.6219, + "y": 0.5 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "K⁺", + "color": { + "color": -7388972, + "optional": true + }, + "material": "gtceu:potassium" + }, + "index": 9, + "x": -0.25, + "y": 0.0 + }, + { + "sub": "2", + "atoms": [ + 9 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 6, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 5, + "b": 7, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 5, + "b": 8, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/potassium_ferrocyanide.json b/kubejs/assets/gtceu/molecules/potassium_ferrocyanide.json new file mode 100644 index 000000000..f90360188 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/potassium_ferrocyanide.json @@ -0,0 +1,237 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Fe", + "index": 0, + "x": 2.95, + "y": 0.0 + }, + { + "type": "atom", + "index": 1, + "x": 2.084, + "y": 0.5 + }, + { + "type": "atom", + "index": 2, + "x": 2.084, + "y": -0.5 + }, + { + "type": "atom", + "index": 3, + "x": 2.95, + "y": 1.0 + }, + { + "type": "atom", + "index": 4, + "x": 2.95, + "y": -1.0 + }, + { + "type": "atom", + "index": 5, + "x": 3.816, + "y": 0.5 + }, + { + "type": "atom", + "index": 6, + "x": 3.816, + "y": -0.5 + }, + { + "type": "atom", + "element": "N", + "index": 7, + "x": 1.218, + "y": -1.0 + }, + { + "type": "atom", + "element": "N", + "index": 8, + "x": 4.6821, + "y": 1.0 + }, + { + "type": "atom", + "element": "N", + "index": 9, + "x": 2.95, + "y": 2.0 + }, + { + "type": "atom", + "element": "N", + "index": 10, + "x": 4.6821, + "y": -1.0 + }, + { + "type": "atom", + "element": "N", + "index": 11, + "x": 1.218, + "y": 1.0 + }, + { + "type": "atom", + "element": "N", + "index": 12, + "x": 2.95, + "y": -2.0 + }, + { + "sup": "4-", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "K⁺", + "color": { + "color": -7388972, + "optional": true + }, + "material": "gtceu:potassium" + }, + "index": 13, + "x": 0.0, + "y": 0.0 + }, + { + "sub": "4", + "atoms": [ + 13 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 6, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 2, + "b": 7, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 8, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 9, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 10, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 11, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 12, + "lines": [ + "solid", + "solid", + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/potassium_hydroxide.json b/kubejs/assets/gtceu/molecules/potassium_hydroxide.json new file mode 100644 index 000000000..73a96dc89 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/potassium_hydroxide.json @@ -0,0 +1,48 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 1.0, + "y": 0 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 2.0, + "y": 0 + }, + { + "sup": "-", + "atoms": [ + 0, + 1 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "K⁺", + "color": { + "color": -7388972, + "optional": true + }, + "material": "gtceu:potassium" + }, + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/potassium_sulfate.json b/kubejs/assets/gtceu/molecules/potassium_sulfate.json new file mode 100644 index 000000000..db31c59c6 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/potassium_sulfate.json @@ -0,0 +1,107 @@ +{ + "contents": [ + { + "type": "atom", + "element": "S", + "index": 0, + "x": 2.33, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.33, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.33, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.33, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 2.33, + "y": 1.0 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3, + 4 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "K⁺", + "color": { + "color": -7388972, + "optional": true + }, + "material": "gtceu:potassium" + }, + "index": 5, + "x": 0.0, + "y": 0.0 + }, + { + "sub": "2", + "atoms": [ + 5 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/prussian_blue.json b/kubejs/assets/gtceu/molecules/prussian_blue.json new file mode 100644 index 000000000..3b804e980 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/prussian_blue.json @@ -0,0 +1,1179 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Fe", + "index": 0, + "x": 2.0, + "y": -3.0 + }, + { + "type": "atom", + "index": 1, + "x": 3.0, + "y": -3.0 + }, + { + "type": "atom", + "index": 2, + "x": 2.0, + "y": -2.0 + }, + { + "type": "atom", + "element": "N", + "index": 3, + "x": 2.0, + "y": -1.0 + }, + { + "type": "atom", + "element": "N", + "index": 4, + "x": 4.0, + "y": -3.0 + }, + { + "type": "atom", + "element": "Fe", + "index": 5, + "x": 2.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "Fe", + "index": 6, + "x": 5.0, + "y": -3.0 + }, + { + "type": "atom", + "element": "N", + "index": 7, + "x": 5.0, + "y": -2.0 + }, + { + "type": "atom", + "element": "N", + "index": 8, + "x": 3.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 9, + "x": 4.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "Fe", + "index": 10, + "x": 5.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 11, + "x": 5.0, + "y": -1.0 + }, + { + "type": "atom", + "element": "N", + "index": 12, + "x": 2.5, + "y": 0.866 + }, + { + "type": "atom", + "index": 13, + "x": 5.5, + "y": 0.866 + }, + { + "type": "atom", + "index": 14, + "x": 2.5, + "y": -2.134 + }, + { + "type": "atom", + "element": "N", + "index": 15, + "x": 5.5, + "y": -2.134 + }, + { + "type": "atom", + "index": 16, + "x": 6.0, + "y": -1.2679 + }, + { + "type": "atom", + "element": "Fe", + "index": 17, + "x": 6.5, + "y": -0.4019 + }, + { + "type": "atom", + "element": "N", + "index": 18, + "x": 6.0, + "y": 1.7321 + }, + { + "type": "atom", + "element": "Fe", + "index": 19, + "x": 6.5, + "y": 2.5981 + }, + { + "type": "atom", + "index": 20, + "x": 3.0, + "y": 1.7321 + }, + { + "type": "atom", + "element": "Fe", + "index": 21, + "x": 3.5, + "y": 2.5981 + }, + { + "type": "atom", + "element": "N", + "index": 22, + "x": 3.0, + "y": -1.2679 + }, + { + "type": "atom", + "element": "Fe", + "index": 23, + "x": 3.5, + "y": -0.4019 + }, + { + "type": "atom", + "index": 24, + "x": 4.5, + "y": 2.5981 + }, + { + "type": "atom", + "element": "N", + "index": 25, + "x": 5.5, + "y": 2.5981 + }, + { + "type": "atom", + "index": 26, + "x": 3.5, + "y": 1.5981 + }, + { + "type": "atom", + "element": "N", + "index": 27, + "x": 3.5, + "y": 0.5981 + }, + { + "type": "atom", + "element": "N", + "index": 28, + "x": 6.5, + "y": 1.5981 + }, + { + "type": "atom", + "index": 29, + "x": 6.5, + "y": 0.5981 + }, + { + "type": "atom", + "element": "N", + "index": 30, + "x": 4.5, + "y": -0.4019 + }, + { + "type": "atom", + "index": 31, + "x": 5.5, + "y": -0.4019 + }, + { + "type": "atom", + "index": 32, + "x": 3.5, + "y": 3.5981 + }, + { + "type": "atom", + "index": 33, + "x": 4.0, + "y": 3.4641 + }, + { + "type": "atom", + "index": 34, + "x": 2.5, + "y": 2.5981 + }, + { + "type": "atom", + "element": "N", + "index": 35, + "x": 3.5, + "y": 4.5981 + }, + { + "type": "atom", + "element": "N", + "index": 36, + "x": 4.5, + "y": 4.3301 + }, + { + "type": "atom", + "element": "N", + "index": 37, + "x": 1.5, + "y": 2.5981 + }, + { + "type": "atom", + "element": "N", + "index": 38, + "x": 7.5, + "y": 2.5981 + }, + { + "type": "atom", + "element": "N", + "index": 39, + "x": 7.0, + "y": 3.4641 + }, + { + "type": "atom", + "element": "N", + "index": 40, + "x": 6.5, + "y": 3.5981 + }, + { + "type": "atom", + "index": 41, + "x": 6.5, + "y": 4.5981 + }, + { + "type": "atom", + "index": 42, + "x": 7.5, + "y": 4.3301 + }, + { + "type": "atom", + "index": 43, + "x": 8.5, + "y": 2.5981 + }, + { + "type": "atom", + "index": 44, + "x": 7.5, + "y": -0.4019 + }, + { + "type": "atom", + "index": 45, + "x": 6.5, + "y": -1.4019 + }, + { + "type": "atom", + "index": 46, + "x": 7.0, + "y": 0.4641 + }, + { + "type": "atom", + "element": "N", + "index": 47, + "x": 4.5, + "y": -3.866 + }, + { + "type": "atom", + "element": "N", + "index": 48, + "x": 5.0, + "y": -4.0 + }, + { + "type": "atom", + "element": "N", + "index": 49, + "x": 6.0, + "y": -3.0 + }, + { + "type": "atom", + "element": "N", + "index": 50, + "x": 6.5, + "y": -2.4019 + }, + { + "type": "atom", + "index": 51, + "x": 7.0, + "y": -3.0 + }, + { + "type": "atom", + "index": 52, + "x": 5.0, + "y": -5.0 + }, + { + "type": "atom", + "index": 53, + "x": 4.0, + "y": -4.7321 + }, + { + "type": "atom", + "element": "N", + "index": 54, + "x": 8.5, + "y": -0.4019 + }, + { + "type": "atom", + "element": "N", + "index": 55, + "x": 7.5, + "y": 1.3301 + }, + { + "type": "atom", + "index": 56, + "x": 1.5, + "y": -3.866 + }, + { + "type": "atom", + "element": "N", + "index": 57, + "x": 1.0, + "y": -4.7321 + }, + { + "type": "atom", + "index": 58, + "x": 1.0, + "y": -3.0 + }, + { + "type": "atom", + "element": "N", + "index": 59, + "x": 0.0, + "y": -3.0 + }, + { + "type": "atom", + "index": 60, + "x": 2.0, + "y": -4.0 + }, + { + "type": "atom", + "element": "N", + "index": 61, + "x": 2.0, + "y": -5.0 + }, + { + "type": "atom", + "element": "N", + "index": 62, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "N", + "index": 63, + "x": 2.0, + "y": 1.0 + }, + { + "type": "atom", + "element": "N", + "index": 64, + "x": 1.5, + "y": -0.866 + }, + { + "type": "atom", + "index": 65, + "x": 1.0, + "y": -1.7321 + }, + { + "type": "atom", + "index": 66, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 67, + "x": 2.0, + "y": 2.0 + }, + { + "type": "atom", + "index": 68, + "x": 6.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "N", + "index": 69, + "x": 7.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 70, + "x": 5.0, + "y": 1.0 + }, + { + "type": "atom", + "element": "N", + "index": 71, + "x": 5.0, + "y": 2.0 + }, + { + "type": "atom", + "index": 72, + "x": 4.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "N", + "index": 73, + "x": 4.0, + "y": -1.7321 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 4, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 7, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 18, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 20, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 22, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 24, + "b": 25, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 26, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 27, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 28, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 29, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 29, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 30, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 30, + "b": 31, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 31, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 32, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 33, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 34, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 32, + "b": 35, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 33, + "b": 36, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 34, + "b": 37, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 38, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 39, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 40, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 40, + "b": 41, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 39, + "b": 42, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 38, + "b": 43, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 44, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 45, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 47, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 48, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 49, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 45, + "b": 50, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 49, + "b": 51, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 48, + "b": 52, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 47, + "b": 53, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 44, + "b": 54, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 46, + "b": 55, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 56, + "b": 57, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 58, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 58, + "b": 59, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 56, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 60, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 60, + "b": 61, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 62, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 63, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 64, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 64, + "b": 65, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 62, + "b": 66, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 63, + "b": 67, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 68, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 68, + "b": 69, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 70, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 70, + "b": 71, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 72, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 72, + "b": 73, + "lines": [ + "solid", + "solid", + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/ruthenium_tetroxide.json b/kubejs/assets/gtceu/molecules/ruthenium_tetroxide.json new file mode 100644 index 000000000..332f31714 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/ruthenium_tetroxide.json @@ -0,0 +1,79 @@ +{ + "contents": [ + { + "index": 0, + "element": "Ru", + "x": 0.0, + "y": 0.0, + "type": "atom" + }, + { + "index": 1, + "element": "O", + "x": 0.0, + "y": 1.0, + "type": "atom" + }, + { + "index": 2, + "element": "O", + "x": 0.9659258, + "y": -0.25881904, + "type": "atom" + }, + { + "index": 3, + "element": "O", + "x": 0.5, + "y": -0.8660254, + "type": "atom" + }, + { + "index": 4, + "element": "O", + "x": -0.8660254, + "y": -0.5, + "type": "atom" + }, + { + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true, + "type": "bond" + }, + { + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true, + "type": "bond" + }, + { + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true, + "type": "bond" + }, + { + "a": 0, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true, + "type": "bond" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/saltpeter.json b/kubejs/assets/gtceu/molecules/saltpeter.json new file mode 100644 index 000000000..edc6744a3 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/saltpeter.json @@ -0,0 +1,83 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 2.2933, + "y": -0.155 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.1594, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.4273, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.2933, + "y": 0.845 + }, + { + "sup": "-", + "atoms": [ + 0, + 1, + 2, + 3 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "K⁺", + "color": { + "color": -7388972, + "optional": true + }, + "material": "gtceu:potassium" + }, + "index": 4, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "dotted" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/scheelite.json b/kubejs/assets/gtceu/molecules/scheelite.json new file mode 100644 index 000000000..0903363c5 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/scheelite.json @@ -0,0 +1,100 @@ +{ + "contents": [ + { + "type": "atom", + "element": "W", + "index": 0, + "x": 2.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.0, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 2.0, + "y": 1.0 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3, + 4 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Ca²⁺", + "color": { + "color": -12714240, + "optional": true + }, + "material": "gtceu:calcium" + }, + "index": 5, + "x": -0.5, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/soda_ash.json b/kubejs/assets/gtceu/molecules/soda_ash.json new file mode 100644 index 000000000..4445b7387 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/soda_ash.json @@ -0,0 +1,89 @@ +{ + "contents": [ + { + "type": "atom", + "element": "C", + "index": 0, + "x": 2.2933, + "y": -0.155 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.1594, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.4273, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.2933, + "y": 0.845 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "color": { + "color": -5546766, + "optional": true + }, + "material": "gtceu:sodium" + }, + "index": 4, + "x": 0.0, + "y": 0.0 + }, + { + "sub": "2", + "atoms": [ + 4 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/sodium_bicarbonate.json b/kubejs/assets/gtceu/molecules/sodium_bicarbonate.json new file mode 100644 index 000000000..28f864472 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/sodium_bicarbonate.json @@ -0,0 +1,83 @@ +{ + "contents": [ + { + "type": "atom", + "element": "C", + "index": 0, + "x": 2.2933, + "y": -0.155 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 1, + "x": 3.1594, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.4273, + "y": -0.655 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.2933, + "y": 0.845 + }, + { + "sup": "-", + "atoms": [ + 0, + 1, + 2, + 3 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "color": { + "color": -5546766, + "optional": true + }, + "material": "gtceu:sodium" + }, + "index": 4, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/sodium_bisulfate.json b/kubejs/assets/gtceu/molecules/sodium_bisulfate.json new file mode 100644 index 000000000..04ebb4cb8 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/sodium_bisulfate.json @@ -0,0 +1,107 @@ +{ + "contents": [ + { + "type": "atom", + "element": "S", + "index": 0, + "x": 2.33, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.33, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.33, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.33, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 2.33, + "y": 1.0 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3, + 4 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "color": { + "color": -5546766, + "optional": true + }, + "material": "gtceu:sodium" + }, + "index": 5, + "x": -0.5, + "y": 0.0 + }, + { + "sub": "2", + "atoms": [ + 5 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/sodium_hydroxide.json b/kubejs/assets/gtceu/molecules/sodium_hydroxide.json new file mode 100644 index 000000000..7c87d4b87 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/sodium_hydroxide.json @@ -0,0 +1,48 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 1.0, + "y": 0 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 2.0, + "y": 0 + }, + { + "sup": "-", + "atoms": [ + 0, + 1 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "color": { + "color": -5546766, + "optional": true + }, + "material": "gtceu:sodium" + }, + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/sodium_nitrite.json b/kubejs/assets/gtceu/molecules/sodium_nitrite.json new file mode 100644 index 000000000..fa36ab940 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/sodium_nitrite.json @@ -0,0 +1,66 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 2.13, + "y": 0.25 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 2.996, + "y": -0.25 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.264, + "y": -0.25 + }, + { + "sup": "-", + "atoms": [ + 0, + 1, + 2 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "color": { + "color": -5546766, + "optional": true + }, + "material": "gtceu:sodium" + }, + "index": 3, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "dotted" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/sodium_persulfate.json b/kubejs/assets/gtceu/molecules/sodium_persulfate.json new file mode 100644 index 000000000..fa687b757 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/sodium_persulfate.json @@ -0,0 +1,191 @@ +{ + "contents": [ + { + "type": "atom", + "element": "S", + "index": 0, + "x": 2.926, + "y": 0.175 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.792, + "y": -0.325 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 2.426, + "y": -0.691 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 3.426, + "y": 1.041 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 2.0599, + "y": 0.675 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": 4.658, + "y": 0.175 + }, + { + "type": "atom", + "element": "S", + "index": 6, + "x": 5.524, + "y": -0.325 + }, + { + "type": "atom", + "element": "O", + "index": 7, + "x": 5.024, + "y": -1.191 + }, + { + "type": "atom", + "element": "O", + "index": 8, + "x": 6.024, + "y": 0.541 + }, + { + "type": "atom", + "element": "O", + "index": 9, + "x": 6.3901, + "y": -0.825 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "color": { + "color": -5546766, + "optional": true + }, + "material": "gtceu:sodium" + }, + "index": 10, + "x": 0.0, + "y": 0.0 + }, + { + "sub": "2", + "atoms": [ + 10 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 6, + "b": 8, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 6, + "b": 9, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/sugar.json b/kubejs/assets/gtceu/molecules/sugar.json new file mode 100644 index 000000000..c0b5a8e1f --- /dev/null +++ b/kubejs/assets/gtceu/molecules/sugar.json @@ -0,0 +1,353 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.8661, + "y": -3.2321 + }, + { + "type": "atom", + "index": 1, + "x": 1.8661, + "y": -3.2321 + }, + { + "type": "atom", + "index": 2, + "x": 2.3661, + "y": -2.3661 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 1.8661, + "y": -1.5 + }, + { + "type": "atom", + "index": 4, + "x": 0.8661, + "y": -1.5 + }, + { + "type": "atom", + "index": 5, + "x": 0.3661, + "y": -2.3661 + }, + { + "type": "atom", + "element": "O", + "index": 6, + "x": 4.3956, + "y": -1.7183 + }, + { + "type": "atom", + "index": 7, + "x": 5.2045, + "y": -2.3061 + }, + { + "type": "atom", + "index": 8, + "x": 4.8955, + "y": -3.2572 + }, + { + "type": "atom", + "index": 9, + "x": 3.8956, + "y": -3.2572 + }, + { + "type": "atom", + "index": 10, + "x": 3.5866, + "y": -2.3061 + }, + { + "type": "atom", + "element": "O", + "index": 11, + "x": 2.9721, + "y": -2.8761 + }, + { + "type": "atom", + "index": 12, + "x": 0.8661, + "y": -0.5 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 13, + "x": 0.8661, + "y": -2.2321 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 14, + "x": 0.3661, + "y": -3.3661 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 15, + "x": 1.8661, + "y": -4.2321 + }, + { + "type": "atom", + "index": 16, + "x": 3.5866, + "y": -1.3061 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 17, + "x": 2.7205, + "y": -0.8061 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 18, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 19, + "x": 3.8956, + "y": -4.2572 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 20, + "x": 4.6555, + "y": -2.3972 + }, + { + "type": "atom", + "index": 21, + "x": 5.2045, + "y": -3.3061 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 22, + "x": 6.0706, + "y": -3.8061 + }, + { + "type": "bond", + "a": 5, + "b": 0, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 2, + "b": 1, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 9, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 9, + "b": 8, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 7, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 7, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 22, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/sulfur_dioxide.json b/kubejs/assets/gtceu/molecules/sulfur_dioxide.json new file mode 100644 index 000000000..0174dc2a8 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/sulfur_dioxide.json @@ -0,0 +1,45 @@ +{ + "contents": [ + { + "type": "atom", + "element": "S", + "index": 0, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 2.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/sulfur_trioxide.json b/kubejs/assets/gtceu/molecules/sulfur_trioxide.json new file mode 100644 index 000000000..99b56e2da --- /dev/null +++ b/kubejs/assets/gtceu/molecules/sulfur_trioxide.json @@ -0,0 +1,62 @@ +{ + "contents": [ + { + "type": "atom", + "element": "S", + "index": 0, + "x": 0.866, + "y": -0.5 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.866, + "y": -1.5 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 1.732, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/sulfuric_acid.json b/kubejs/assets/gtceu/molecules/sulfuric_acid.json new file mode 100644 index 000000000..dab936ef8 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/sulfuric_acid.json @@ -0,0 +1,77 @@ +{ + "contents": [ + { + "type": "atom", + "element": "S", + "index": 0, + "x": 0.9913, + "y": 0.0015 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.9948, + "y": -0.9993 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 3, + "x": 1.9971, + "y": 0.0045 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 0.9905, + "y": 1.0036 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/titanium_tetrachloride.json b/kubejs/assets/gtceu/molecules/titanium_tetrachloride.json new file mode 100644 index 000000000..579f0c99d --- /dev/null +++ b/kubejs/assets/gtceu/molecules/titanium_tetrachloride.json @@ -0,0 +1,71 @@ +{ + "contents": [ + { + "index": 0, + "element": "Ti", + "x": 0.0, + "y": 0.0, + "type": "atom" + }, + { + "index": 1, + "element": "Cl", + "x": 0.0, + "y": 1.0, + "type": "atom" + }, + { + "index": 2, + "element": "Cl", + "x": 0.9659258, + "y": -0.25881904, + "type": "atom" + }, + { + "index": 3, + "element": "Cl", + "x": 0.5, + "y": -0.8660254, + "type": "atom" + }, + { + "index": 4, + "element": "Cl", + "x": -0.8660254, + "y": -0.5, + "type": "atom" + }, + { + "a": 0, + "b": 1, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 0, + "b": 2, + "lines": [ + "inward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 3, + "lines": [ + "outward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 4, + "lines": [ + "solid" + ], + "type": "bond" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/titanium_trifluoride.json b/kubejs/assets/gtceu/molecules/titanium_trifluoride.json new file mode 100644 index 000000000..4925bae95 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/titanium_trifluoride.json @@ -0,0 +1,56 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Ti", + "index": 0, + "x": 0.866, + "y": -0.5 + }, + { + "type": "atom", + "element": "F", + "index": 1, + "x": 0.866, + "y": -1.5 + }, + { + "type": "atom", + "element": "F", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "F", + "index": 3, + "x": 1.732, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/tritiated_water.json b/kubejs/assets/gtceu/molecules/tritiated_water.json new file mode 100644 index 000000000..9a4e002de --- /dev/null +++ b/kubejs/assets/gtceu/molecules/tritiated_water.json @@ -0,0 +1,41 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "T", + "index": 1, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "T", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/tungstate.json b/kubejs/assets/gtceu/molecules/tungstate.json new file mode 100644 index 000000000..6aa09ef80 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/tungstate.json @@ -0,0 +1,107 @@ +{ + "contents": [ + { + "type": "atom", + "element": "W", + "index": 0, + "x": 2.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 3.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 2.0, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 2.0, + "y": 1.0 + }, + { + "sup": "2-", + "atoms": [ + 0, + 1, + 2, + 3, + 4 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Li⁺", + "color": { + "color": -3374849, + "optional": true + }, + "material": "gtceu:lithium" + }, + "index": 5, + "x": -0.5, + "y": 0.0 + }, + { + "sub": "2", + "atoms": [ + 5 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/tungstic_acid.json b/kubejs/assets/gtceu/molecules/tungstic_acid.json new file mode 100644 index 000000000..41243c007 --- /dev/null +++ b/kubejs/assets/gtceu/molecules/tungstic_acid.json @@ -0,0 +1,77 @@ +{ + "contents": [ + { + "type": "atom", + "element": "W", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.0, + "y": -0.825 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.0, + "y": 0.825 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 3, + "x": 0.825, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 4, + "x": -0.825, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/molecules/water.json b/kubejs/assets/gtceu/molecules/water.json new file mode 100644 index 000000000..3b1d2724b --- /dev/null +++ b/kubejs/assets/gtceu/molecules/water.json @@ -0,0 +1,41 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/textures/block/material_sets/chonky/block.png b/kubejs/assets/gtceu/textures/block/material_sets/chonky/block.png new file mode 100644 index 000000000..d456c5965 Binary files /dev/null and b/kubejs/assets/gtceu/textures/block/material_sets/chonky/block.png differ diff --git a/kubejs/assets/gtceu/textures/block/material_sets/chonky/block_overlay.png b/kubejs/assets/gtceu/textures/block/material_sets/chonky/block_overlay.png new file mode 100644 index 000000000..baf443562 Binary files /dev/null and b/kubejs/assets/gtceu/textures/block/material_sets/chonky/block_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/block/material_sets/chonky/block_secondary.png b/kubejs/assets/gtceu/textures/block/material_sets/chonky/block_secondary.png new file mode 100644 index 000000000..6b7c18018 Binary files /dev/null and b/kubejs/assets/gtceu/textures/block/material_sets/chonky/block_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/block/material_sets/chonky/frame_gt.png b/kubejs/assets/gtceu/textures/block/material_sets/chonky/frame_gt.png new file mode 100644 index 000000000..d4ad8581b Binary files /dev/null and b/kubejs/assets/gtceu/textures/block/material_sets/chonky/frame_gt.png differ diff --git a/kubejs/assets/gtceu/textures/block/material_sets/chonky/frame_gt_overlay.png b/kubejs/assets/gtceu/textures/block/material_sets/chonky/frame_gt_overlay.png new file mode 100644 index 000000000..bf82e85e4 Binary files /dev/null and b/kubejs/assets/gtceu/textures/block/material_sets/chonky/frame_gt_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/block/material_sets/chonky/frame_gt_secondary.png b/kubejs/assets/gtceu/textures/block/material_sets/chonky/frame_gt_secondary.png new file mode 100644 index 000000000..bf4df82cf Binary files /dev/null and b/kubejs/assets/gtceu/textures/block/material_sets/chonky/frame_gt_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/bolt.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/bolt.png new file mode 100644 index 000000000..156644f37 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/bolt.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/bolt_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/bolt_overlay.png new file mode 100644 index 000000000..a6eb6cb3f Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/bolt_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/bolt_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/bolt_secondary.png new file mode 100644 index 000000000..344589a8d Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/bolt_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/foil.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/foil.png new file mode 100644 index 000000000..60e99db47 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/foil.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/foil_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/foil_overlay.png new file mode 100644 index 000000000..1e4c20601 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/foil_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/foil_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/foil_secondary.png new file mode 100644 index 000000000..a66c6cdda Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/foil_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear.png new file mode 100644 index 000000000..96da2eebd Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_overlay.png new file mode 100644 index 000000000..658a48b00 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_secondary.png new file mode 100644 index 000000000..372125edc Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_small.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_small.png new file mode 100644 index 000000000..36d3fc087 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_small.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_small_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_small_overlay.png new file mode 100644 index 000000000..d71c7ee5b Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_small_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_small_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_small_secondary.png new file mode 100644 index 000000000..d11fceb51 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/gear_small_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot.png new file mode 100644 index 000000000..0c739c564 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_double.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_double.png new file mode 100644 index 000000000..2c889a4d6 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_double.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_double_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_double_overlay.png new file mode 100644 index 000000000..b6344c952 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_double_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_double_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_double_secondary.png new file mode 100644 index 000000000..4a7e09631 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_double_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_hot.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_hot.png new file mode 100644 index 000000000..0c739c564 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_hot.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_hot_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_hot_overlay.png new file mode 100644 index 000000000..66495dfa3 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_hot_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_hot_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_hot_secondary.png new file mode 100644 index 000000000..8bba7db7e Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_hot_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_overlay.png new file mode 100644 index 000000000..f9df6e60d Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_secondary.png new file mode 100644 index 000000000..8bba7db7e Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ingot_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/nugget.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/nugget.png new file mode 100644 index 000000000..2950dd58f Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/nugget.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/nugget_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/nugget_overlay.png new file mode 100644 index 000000000..2012f8c33 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/nugget_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/nugget_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/nugget_secondary.png new file mode 100644 index 000000000..8a2166461 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/nugget_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate.png new file mode 100644 index 000000000..c5852b31f Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_dense.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_dense.png new file mode 100644 index 000000000..f402c662d Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_dense.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_dense_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_dense_overlay.png new file mode 100644 index 000000000..881627b64 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_dense_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_dense_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_dense_secondary.png new file mode 100644 index 000000000..ec537401b Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_dense_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_double.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_double.png new file mode 100644 index 000000000..eb91a8825 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_double.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_double_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_double_overlay.png new file mode 100644 index 000000000..cc7c6e60a Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_double_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_double_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_double_secondary.png new file mode 100644 index 000000000..df0a19900 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_double_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_overlay.png new file mode 100644 index 000000000..98bb6f503 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_secondary.png new file mode 100644 index 000000000..89211c946 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/plate_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ring.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ring.png new file mode 100644 index 000000000..37fd22e4d Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ring.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ring_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ring_overlay.png new file mode 100644 index 000000000..4cb2f1b8c Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ring_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/ring_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ring_secondary.png new file mode 100644 index 000000000..00c57fd32 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/ring_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod.png new file mode 100644 index 000000000..7861a5568 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_long.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_long.png new file mode 100644 index 000000000..aac16b378 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_long.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_long_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_long_overlay.png new file mode 100644 index 000000000..bf3ff7771 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_long_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_long_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_long_secondary.png new file mode 100644 index 000000000..b36c0bb6c Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_long_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_overlay.png new file mode 100644 index 000000000..9063b94be Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_secondary.png new file mode 100644 index 000000000..e77a57cb3 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rod_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/rotor.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rotor.png new file mode 100644 index 000000000..12733d7d4 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rotor.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/rotor_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rotor_overlay.png new file mode 100644 index 000000000..d567d4eb2 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rotor_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/rotor_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rotor_secondary.png new file mode 100644 index 000000000..d6bfa4c80 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/rotor_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/round.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/round.png new file mode 100644 index 000000000..b85f9e915 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/round.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/round_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/round_overlay.png new file mode 100644 index 000000000..05589c8cc Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/round_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/round_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/round_secondary.png new file mode 100644 index 000000000..1c99631cd Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/round_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/screw.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/screw.png new file mode 100644 index 000000000..980f4e98a Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/screw.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/screw_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/screw_overlay.png new file mode 100644 index 000000000..b287140b2 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/screw_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/screw_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/screw_secondary.png new file mode 100644 index 000000000..d80e57b98 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/screw_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring.png new file mode 100644 index 000000000..c4c81adf0 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_overlay.png new file mode 100644 index 000000000..53d28ec22 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_secondary.png new file mode 100644 index 000000000..f9d70dabc Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_small.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_small.png new file mode 100644 index 000000000..a8975e211 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_small.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_small_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_small_overlay.png new file mode 100644 index 000000000..401a0972b Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_small_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_small_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_small_secondary.png new file mode 100644 index 000000000..71fc8e5e7 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/spring_small_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_buzz_saw.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_buzz_saw.png new file mode 100644 index 000000000..9ef67bf86 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_buzz_saw.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_buzz_saw_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_buzz_saw_overlay.png new file mode 100644 index 000000000..bdae8fcf8 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_buzz_saw_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_buzz_saw_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_buzz_saw_secondary.png new file mode 100644 index 000000000..485a43548 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_buzz_saw_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_chainsaw.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_chainsaw.png new file mode 100644 index 000000000..da3df1085 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_chainsaw.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_chainsaw_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_chainsaw_overlay.png new file mode 100644 index 000000000..4d2ba9f4d Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_chainsaw_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_chainsaw_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_chainsaw_secondary.png new file mode 100644 index 000000000..03bbe678f Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_chainsaw_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_drill.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_drill.png new file mode 100644 index 000000000..a941ed464 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_drill.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_drill_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_drill_overlay.png new file mode 100644 index 000000000..97569c6c5 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_drill_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_drill_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_drill_secondary.png new file mode 100644 index 000000000..5ebc3dcc4 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_drill_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_screwdriver.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_screwdriver.png new file mode 100644 index 000000000..69e290f23 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_screwdriver.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_screwdriver_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_screwdriver_overlay.png new file mode 100644 index 000000000..ef831b9cc Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_screwdriver_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_screwdriver_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_screwdriver_secondary.png new file mode 100644 index 000000000..78760659e Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_screwdriver_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_wrench.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_wrench.png new file mode 100644 index 000000000..a3898bc25 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_wrench.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_wrench_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_wrench_overlay.png new file mode 100644 index 000000000..f26a211aa Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_wrench_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_wrench_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_wrench_secondary.png new file mode 100644 index 000000000..217cb691c Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/tool_head_wrench_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/turbine_blade.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/turbine_blade.png new file mode 100644 index 000000000..46349c3c7 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/turbine_blade.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/turbine_blade_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/turbine_blade_overlay.png new file mode 100644 index 000000000..74ffd68e7 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/turbine_blade_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/turbine_blade_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/turbine_blade_secondary.png new file mode 100644 index 000000000..e1f7d5ff5 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/turbine_blade_secondary.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/wire_fine.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/wire_fine.png new file mode 100644 index 000000000..9dd582679 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/wire_fine.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/wire_fine_overlay.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/wire_fine_overlay.png new file mode 100644 index 000000000..8cc50d44b Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/wire_fine_overlay.png differ diff --git a/kubejs/assets/gtceu/textures/item/material_sets/chonky/wire_fine_secondary.png b/kubejs/assets/gtceu/textures/item/material_sets/chonky/wire_fine_secondary.png new file mode 100644 index 000000000..de7589ef7 Binary files /dev/null and b/kubejs/assets/gtceu/textures/item/material_sets/chonky/wire_fine_secondary.png differ diff --git a/kubejs/assets/immersive_aircraft/lang/en_us.json b/kubejs/assets/immersive_aircraft/lang/en_us.json index 643248790..32b743729 100644 --- a/kubejs/assets/immersive_aircraft/lang/en_us.json +++ b/kubejs/assets/immersive_aircraft/lang/en_us.json @@ -1,5 +1,6 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.immersive_aircraft.bamboo_hopper": "Aluminium Hopper", "item.immersive_aircraft.steel_boiler": "Steam-powered Aircraft Engine", "item.immersive_aircraft.nether_engine": "MV Aircraft Engine", "item.immersive_aircraft.enhanced_propeller": "Aluminium Plated Airplane Propeller", diff --git a/kubejs/assets/immersive_aircraft/lang/ru_ru.json b/kubejs/assets/immersive_aircraft/lang/ru_ru.json index ec2871f8a..07e0fb5fe 100644 --- a/kubejs/assets/immersive_aircraft/lang/ru_ru.json +++ b/kubejs/assets/immersive_aircraft/lang/ru_ru.json @@ -1,5 +1,6 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.immersive_aircraft.bamboo_hopper": "Π’ΠΎΡ€ΠΎΠ½ΠΊΠ° (Алюминий)", "item.immersive_aircraft.steel_boiler": "ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π²ΠΎΠ·Π΄ΡƒΡˆΠ½Ρ‹ΠΉ Π΄Π²ΠΈΠ³Π°Ρ‚Π΅Π»ΡŒ", "item.immersive_aircraft.nether_engine": "Π’ΠΎΠ·Π΄ΡƒΡˆΠ½Ρ‹ΠΉ Π΄Π²ΠΈΠ³Π°Ρ‚Π΅Π»ΡŒ MV", "item.immersive_aircraft.enhanced_propeller": "ΠŸΡ€ΠΎΠΏΠ΅Π»Π»Π΅Ρ€ самолёта (Алюминий)", diff --git a/kubejs/assets/immersive_aircraft/lang/uk_ua.json b/kubejs/assets/immersive_aircraft/lang/uk_ua.json index 06cf80fc4..38aa82f8a 100644 --- a/kubejs/assets/immersive_aircraft/lang/uk_ua.json +++ b/kubejs/assets/immersive_aircraft/lang/uk_ua.json @@ -1,9 +1,10 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.immersive_aircraft.bamboo_hopper": "ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²Π° Π»Ρ–ΠΉΠΊΠ°", "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": "ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²Π° Π²ΠΎΡ€ΠΎΠ½ΠΊΠ°" + "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 index 3955bcff6..ed24d586e 100644 --- a/kubejs/assets/immersive_aircraft/lang/zh_cn.json +++ b/kubejs/assets/immersive_aircraft/lang/zh_cn.json @@ -1,5 +1,6 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "entity.immersive_aircraft.bamboo_hopper": "ι“εˆΆζΌζ–—ζœΊ", "item.immersive_aircraft.steel_boiler": "θ’Έζ±½εŠ¨εŠ›θˆͺη©ΊεΌ•ζ“Ž", "item.immersive_aircraft.nether_engine": "δΈ­εŽ‹θˆͺη©ΊεΌ•ζ“Ž", "item.immersive_aircraft.enhanced_propeller": "ι•€ι“ι£žζœΊθžΊζ—‹ζ‘¨", diff --git a/kubejs/assets/merequester/lang/ru_ru.json b/kubejs/assets/merequester/lang/ru_ru.json new file mode 100644 index 000000000..1cf1392c1 --- /dev/null +++ b/kubejs/assets/merequester/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.", + "itemGroup.merequester.tab": "ME Requester", + "item.merequester.requester_terminal": "МЭ Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π» запроса", + "block.merequester.requester": "МЭ Π·Π°ΠΊΠ°Π·Ρ‡ΠΈΠΊ", + "gui.merequester.requester_terminal": "МЭ Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π» запросов", + "gui.merequester.no_requesters": "НС Π½Π°ΠΉΠ΄Π΅Π½ΠΎ Π½ΠΈ ΠΎΠ΄Π½ΠΎΠ³ΠΎ запросчика МЭ!", + "tooltip.merequester.requester_desc": "АвтоматичСски ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ запасы ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΈ ТидкостСй, Π·Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°Ρ Π½ΠΎΠ²Ρ‹Π΅ ΠΏΠ°Ρ€Ρ‚ΠΈΠΈ ΠΏΡ€ΠΈ нСобходимости. Π”ΠΎΠ»ΠΆΠ΅Π½ Π±Ρ‹Ρ‚ΡŒ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½ ΠΊ МЭ сСти ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ доступСн с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ МЭ Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π»Π° запроса. ΠŸΡ€ΠΈ ΠΏΠΎΠ»ΠΎΠΌΠΊΠ΅ тСряСт свои настройки. Настройки ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ скопированы с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΊΠ°Ρ€Ρ‚Ρ‹ памяти.", + "tooltip.merequester.shift_for_more": "%s ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½Π΅Π΅", + "tooltip.merequester.enter_to_submit": "%s ΠΏΡ€Π΅Π΄ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ", + "tooltip.merequester.whole_number": "Π”ΠΎΠ»ΠΆΠ½ΠΎ Π±Ρ‹Ρ‚ΡŒ Ρ†Π΅Π»ΠΎΠ΅ число!", + "tooltip.merequester.locked": "Π—Π°Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Π½ΠΎ! Запрос Π² процСссС выполнСния.", + "tooltip.merequester.toggle": "ΠŸΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ запрос", + "tooltip.merequester.amount": "Π‘ΡƒΠΌΠΌΠ° ΠΊ запасам", + "tooltip.merequester.batch": "Π Π°Π·ΠΌΠ΅Ρ€ ΠΏΠ°ΠΊΠ΅Ρ‚Π°", + "tooltip.merequester.submit": "ВнСсти измСнСния", + "tooltip.merequester.status": "БостояниС запроса", + "tooltip.merequester.idle": "ΠŸΡ€ΠΎΡΡ‚ΠΎΠΉ", + "tooltip.merequester.idle_desc": "Запросчик простаиваСт, ΠΊΠΎΠ³Π΄Π° Π·Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°Π΅ΠΌΠΎΠ΅ количСство ΡƒΠΆΠ΅ достигнуто ΠΈΠ»ΠΈ для этого ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π° ΠΈΠ»ΠΈ Тидкости Π½Π΅Ρ‚ шаблона ΠΊΡ€Π°Ρ„Ρ‚ΠΈΠ½Π³Π°.", + "tooltip.merequester.missing": "ΠΠ΅Π΄ΠΎΡΡ‚Π°ΡŽΡ‰ΠΈΠ΅ ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹", + "tooltip.merequester.missing_desc": "БистСмС Π½Π΅ Ρ…Π²Π°Ρ‚Π°Π΅Ρ‚ ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚ΠΎΠ² для создания Ρ‚Ρ€Π΅Π±ΡƒΠ΅ΠΌΠΎΠ³ΠΎ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π° ΠΈΠ»ΠΈ Тидкости. ΠŸΡ€ΠΎΡ†Π΅ΡΡ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠ΅Π½, ΠΊΠΎΠ³Π΄Π° ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ Π±ΡƒΠ΄ΡƒΡ‚ доступны.", + "tooltip.merequester.link": "Π‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅", + "tooltip.merequester.link_desc": "Π’ настоящСС врСмя систСма Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ Ρ‚Ρ€Π΅Π±ΡƒΠ΅ΠΌΡ‹ΠΉ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ ΠΈΠ»ΠΈ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ.", + "tooltip.merequester.export": "Экспорт", + "tooltip.merequester.export_desc": "Π—Π°ΠΊΠ°Π·Ρ‡ΠΈΠΊ пытаСтся ΡΠΊΡΠΏΠΎΡ€Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚Ρ‹ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Π² систСму. Если запросчик находится Π² этом статусС Π΄ΠΎΠ»Π³ΠΎΠ΅ врСмя, Ρ‚ΠΎ для экспорта Π½Π΅Ρ‚ свободного мСста." +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/atlases/armor_trims.json b/kubejs/assets/minecraft/atlases/armor_trims.json index e69c5d5f9..e0d80f286 100644 --- a/kubejs/assets/minecraft/atlases/armor_trims.json +++ b/kubejs/assets/minecraft/atlases/armor_trims.json @@ -55,7 +55,7 @@ "salt_tfc": "tfc:color_palettes/trims/salt_tfc", "sapphire_tfc": "tfc:color_palettes/trims/sapphire_tfc", "sodalite_tfc": "tfc:color_palettes/trims/sodalite_tfc", - "coke_tfc": "tfc:color_palettes/trims/coke_tfc", + "armalcolite_tfc": "tfc:color_palettes/trims/armalcolite_tfc", "spessartine_tfc": "tfc:color_palettes/trims/spessartine_tfc", "topaz_tfc": "tfc:color_palettes/trims/topaz_tfc", "uvarovite_tfc": "tfc:color_palettes/trims/uvarovite_tfc", diff --git a/kubejs/assets/minecraft/atlases/blocks.json b/kubejs/assets/minecraft/atlases/blocks.json index d0a87f124..a00db2299 100644 --- a/kubejs/assets/minecraft/atlases/blocks.json +++ b/kubejs/assets/minecraft/atlases/blocks.json @@ -31,7 +31,7 @@ "salt_tfc": "tfc:color_palettes/trims/salt_tfc", "sapphire_tfc": "tfc:color_palettes/trims/sapphire_tfc", "sodalite_tfc": "tfc:color_palettes/trims/sodalite_tfc", - "coke_tfc": "tfc:color_palettes/trims/coke_tfc", + "armalcolite_tfc": "tfc:color_palettes/trims/armalcolite_tfc", "spessartine_tfc": "tfc:color_palettes/trims/spessartine_tfc", "topaz_tfc": "tfc:color_palettes/trims/topaz_tfc", "uvarovite_tfc": "tfc:color_palettes/trims/uvarovite_tfc", diff --git a/kubejs/assets/minecraft/lang/en_gb.json b/kubejs/assets/minecraft/lang/en_gb.json index ae1f36035..e0456b5e5 100644 --- a/kubejs/assets/minecraft/lang/en_gb.json +++ b/kubejs/assets/minecraft/lang/en_gb.json @@ -1,6 +1,29 @@ { "__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": "Cast Iron Block", + "block.minecraft.stone": "Reconstituted Stone", + "block.minecraft.stone_stairs": "Reconstituted Stone Stairs", + "block.minecraft.stone_slab": "Reconstituted Stone Slab", + "block.minecraft.cobblestone": "Reconstituted Stone Cobble", + "block.minecraft.cobblestone_stairs": "Reconstituted Stone Cobble Stairs", + "block.minecraft.cobblestone_slab": "Reconstituted Stone Cobble Slab", + "block.minecraft.cobblestone_wall": "Reconstituted Stone Cobble Wall", + "block.minecraft.mossy_cobblestone": "Mossy Reconstituted Stone Cobble", + "block.minecraft.mossy_cobblestone_stairs": "Mossy Reconstituted Stone Cobble Stairs", + "block.minecraft.mossy_cobblestone_slab": "Mossy Reconstituted Stone Cobble Slab", + "block.minecraft.mossy_cobblestone_wall": "Mossy Reconstituted Stone Cobble Wall", + "block.minecraft.smooth_stone": "Polished Reconstituted Stone", + "block.minecraft.smooth_stone_slab": "Polished Reconstituted Stone Slab", + "block.minecraft.stone_bricks": "Reconstituted Stone Bricks", + "block.minecraft.stone_bricks_stairs": "Reconstituted Stone Brick Stairs", + "block.minecraft.stone_bricks_slab": "Reconstituted Stone Brick Slab", + "block.minecraft.stone_bricks_wall": "Reconstituted Stone Brick Wall", + "block.minecraft.cracked_stone_bricks": "Cracked Reconstituted Stone Bricks", + "block.minecraft.mossy_stone_bricks": "Mossy Reconstituted Stone Bricks", + "block.minecraft.mossy_stone_bricks_stairs": "Mossy Reconstituted Stone Bricks Stairs", + "block.minecraft.mossy_stone_bricks_slab": "Mossy Reconstituted Stone Bricks Slab", + "block.minecraft.mossy_stone_bricks_wall": "Mossy Reconstituted Stone Bricks Wall", + "block.minecraft.chiseled_stone_bricks": "Chiseled Reconstituted Stone Bricks", "block.minecraft.chiseled_deepslate": "Chiseled Migmatite", "block.minecraft.cobbled_deepslate": "Migmatite Cobble", "block.minecraft.cobbled_deepslate_slab": "Cobbled Migmatite Slab", @@ -26,8 +49,8 @@ "block.minecraft.blackstone_slab": "Pyroxenite Slab", "block.minecraft.blackstone_stairs": "Pyroxenite Stairs", "block.minecraft.blackstone_wall": "Pyroxenite Wall", - "block.minecraft.chiseled_polished_blackstone": "Chiseled Polished Pyroxenite", - "block.minecraft.cracked_polished_blackstone_bricks": "Cracked Polished Pyroxenite Bricks", + "block.minecraft.chiseled_polished_blackstone": "Chiseled Pyroxenite", + "block.minecraft.cracked_polished_blackstone_bricks": "Cracked Pyroxenite Bricks", "block.minecraft.gilded_blackstone": "Gilded Pyroxenite", "block.minecraft.polished_blackstone": "Polished Pyroxenite", "block.minecraft.polished_blackstone_brick_slab": "Pyroxenite Brick Slab", @@ -56,10 +79,10 @@ "block.minecraft.weeping_vines_plant": "Crimson Vines Plant", "block.minecraft.weeping_vines": "Crimson Vines", "block.minecraft.red_sand": "Hematitic Sand", - "block.minecraft.red_sandstone": "Hematitic Sandstone", - "block.minecraft.red_sandstone_stairs": "Hematitic Sandstone Stairs", - "block.minecraft.red_sandstone_slab": "Hematitic Sandstone Slab", - "block.minecraft.red_sandstone_wall": "Hematitic Sandstone Wall", + "block.minecraft.red_sandstone": "Raw Hematitic Sandstone", + "block.minecraft.red_sandstone_stairs": "Raw Hematitic Sandstone Stairs", + "block.minecraft.red_sandstone_slab": "Raw Hematitic Sandstone Slab", + "block.minecraft.red_sandstone_wall": "Raw Hematitic Sandstone Wall", "block.minecraft.chiseled_red_sandstone": "Chiseled Hematitic Sandstone", "block.minecraft.smooth_red_sandstone": "Smooth Hematitic Sandstone", "block.minecraft.smooth_red_sandstone_stairs": "Smooth Hematitic Sandstone Stairs", @@ -75,5 +98,7 @@ "item.minecraft.glow_ink_sac": "Glowing Dye", "item.minecraft.nether_brick": "Keratophyre Brick", "item.minecraft.furnace_minecart": "Minecart with Boiler", - "material.tfg.dripstone": "Travertine" + "material.tfg.dripstone": "Travertine", + "death.attack.magic": "%1$s was killed by deadly poison", + "death.attack.magic.player": "%1$s was killed by deadly poison whilst trying to escape %2$s" } \ No newline at end of file diff --git a/kubejs/assets/minecraft/lang/en_us.json b/kubejs/assets/minecraft/lang/en_us.json index caf30b220..f411c7d30 100644 --- a/kubejs/assets/minecraft/lang/en_us.json +++ b/kubejs/assets/minecraft/lang/en_us.json @@ -79,10 +79,10 @@ "block.minecraft.weeping_vines_plant": "Crimson Vines Plant", "block.minecraft.weeping_vines": "Crimson Vines", "block.minecraft.red_sand": "Hematitic Sand", - "block.minecraft.red_sandstone": "Hematitic Sandstone", - "block.minecraft.red_sandstone_stairs": "Hematitic Sandstone Stairs", - "block.minecraft.red_sandstone_slab": "Hematitic Sandstone Slab", - "block.minecraft.red_sandstone_wall": "Hematitic Sandstone Wall", + "block.minecraft.red_sandstone": "Raw Hematitic Sandstone", + "block.minecraft.red_sandstone_stairs": "Raw Hematitic Sandstone Stairs", + "block.minecraft.red_sandstone_slab": "Raw Hematitic Sandstone Slab", + "block.minecraft.red_sandstone_wall": "Raw Hematitic Sandstone Wall", "block.minecraft.chiseled_red_sandstone": "Chiseled Hematitic Sandstone", "block.minecraft.smooth_red_sandstone": "Smooth Hematitic Sandstone", "block.minecraft.smooth_red_sandstone_stairs": "Smooth Hematitic Sandstone Stairs", @@ -94,9 +94,12 @@ "item.minecraft.iron_ingot": "Cast Iron Ingot", "item.minecraft.iron_block": "Cast Iron Block", "item.minecraft.netherite_leggings": "Blue Steel Diving Leggings", + "item.minecraft.netherite_boots": "Blue Steel Lavaproof Boots", "item.minecraft.string": "Silk Thread", "item.minecraft.glow_ink_sac": "Glowing Dye", "item.minecraft.nether_brick": "Keratophyre Brick", "item.minecraft.furnace_minecart": "Minecart with Boiler", - "material.tfg.dripstone": "Travertine" + "material.tfg.dripstone": "Travertine", + "death.attack.magic": "%1$s was killed by deadly poison", + "death.attack.magic.player": "%1$s was killed by deadly poison whilst trying to escape %2$s" } \ No newline at end of file diff --git a/kubejs/assets/minecraft/lang/es_es.json b/kubejs/assets/minecraft/lang/es_es.json new file mode 100644 index 000000000..c990ae10a --- /dev/null +++ b/kubejs/assets/minecraft/lang/es_es.json @@ -0,0 +1,103 @@ +{ + "__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": "Bloque de hierro fundido", + "block.minecraft.stone": "Piedra reconstituida", + "block.minecraft.stone_stairs": "Escaleras de piedra reconstituida", + "block.minecraft.stone_slab": "Losa de piedra reconstituida", + "block.minecraft.cobblestone": "Roca de piedra reconstituida", + "block.minecraft.cobblestone_stairs": "Escaleras de roca de piedra reconstituida", + "block.minecraft.cobblestone_slab": "Losa de roca de piedra Reconstituida", + "block.minecraft.cobblestone_wall": "Muro de roca de piedra Reconstituida", + "block.minecraft.mossy_cobblestone": "Roca de piedra Reconstituida Musgosa", + "block.minecraft.mossy_cobblestone_stairs": "Escaleras de roca de piedra reconstituida Musgosa", + "block.minecraft.mossy_cobblestone_slab": "Losa de roca de piedra reconstituida musgosa", + "block.minecraft.mossy_cobblestone_wall": "Muro de roca de piedra reconstituida musgoso", + "block.minecraft.smooth_stone": "Piedra reconstituida lisa", + "block.minecraft.smooth_stone_slab": "Losa de piedra reconstituida lisa", + "block.minecraft.stone_bricks": "Ladrillos de piedra reconstituida", + "block.minecraft.stone_bricks_stairs": "Escaleras de ladrillos de piedra reconstituida", + "block.minecraft.stone_bricks_slab": "Losa de ladrillos", + "block.minecraft.stone_bricks_wall": "Muro de ladrillos de piedra reconstituida", + "block.minecraft.cracked_stone_bricks": "Ladrillos de piedra reconstituida agrietados", + "block.minecraft.mossy_stone_bricks": "Ladrillos de piedra reconstituida musgosos", + "block.minecraft.mossy_stone_bricks_stairs": "Escaleras de ladrillos de piedra reconstituida musgosas", + "block.minecraft.mossy_stone_bricks_slab": "Losa de ladrillos de piedra reconstituida musgosa", + "block.minecraft.mossy_stone_bricks_wall": "Muro de ladrillos de piedra reconstituida musgosa", + "block.minecraft.chiseled_stone_bricks": "Ladrillos de piedra reconstituida cincelados", + "block.minecraft.chiseled_deepslate": "Migmatita cincelada", + "block.minecraft.cobbled_deepslate": "Roca de migmatita", + "block.minecraft.cobbled_deepslate_slab": "Losa de roca de migmatita", + "block.minecraft.cobbled_deepslate_stairs": "Escaleras de roca de migmatita", + "block.minecraft.cobbled_deepslate_wall": "Muro de roca de migmatita", + "block.minecraft.cracked_deepslate_bricks": "Ladrillos de migmatita agrietados", + "block.minecraft.cracked_deepslate_tiles": "Baldosas de migmatita agrietadas", + "block.minecraft.deepslate": "Migmatita en bruto", + "block.minecraft.deepslate_brick_slab": "Losa de ladrillos de migmatita", + "block.minecraft.deepslate_brick_stairs": "Escaleras de ladrillos de migmatita", + "block.minecraft.deepslate_brick_wall": "Muro de ladrillos de migmatita", + "block.minecraft.deepslate_bricks": "Ladrillos de migmatita", + "block.minecraft.deepslate_tile_slab": "Losa de baldosas de migmatita", + "block.minecraft.deepslate_tile_stairs": "Escaleras de baldosas de migmatita", + "block.minecraft.deepslate_tile_wall": "Muro de baldosas de migmatita", + "block.minecraft.deepslate_tiles": "Baldosas de migmatita", + "block.minecraft.infested_deepslate": "Migmatita infestada", + "block.minecraft.polished_deepslate": "Migmatita pulida", + "block.minecraft.polished_deepslate_slab": "Losa de migmatita pulida", + "block.minecraft.polished_deepslate_stairs": "Escaleras de migmatita pulida", + "block.minecraft.polished_deepslate_wall": "Muro de migmatita pulida", + "block.minecraft.blackstone": "Piroxenita en bruto", + "block.minecraft.blackstone_slab": "Losa de piroxenita", + "block.minecraft.blackstone_stairs": "Escaleras de piroxenita", + "block.minecraft.blackstone_wall": "Muro de piroxenita", + "block.minecraft.chiseled_polished_blackstone": "Piroxenita cincelada", + "block.minecraft.cracked_polished_blackstone_bricks": "Ladrillos de piroxenita agrietados", + "block.minecraft.gilded_blackstone": "Piroxenita Γ‘urea", + "block.minecraft.polished_blackstone": "Piroxenita pulida", + "block.minecraft.polished_blackstone_brick_slab": "Losa de ladrillos de piroxenita", + "block.minecraft.polished_blackstone_brick_stairs": "Escaleras de ladrillos de piroxenita", + "block.minecraft.polished_blackstone_brick_wall": "Muro de ladrillos de piroxenita", + "block.minecraft.polished_blackstone_bricks": "Ladrillos de piroxenita", + "block.minecraft.polished_blackstone_button": "BotΓ³n de piroxenita pulida", + "block.minecraft.polished_blackstone_pressure_plate": "Placa de presiΓ³n de piroxenita pulida", + "block.minecraft.polished_blackstone_slab": "Losa de piroxenita pulida", + "block.minecraft.polished_blackstone_stairs": "Escaleras de piroxenita pulida", + "block.minecraft.polished_blackstone_wall": "Muro de piroxenita pulida", + "block.minecraft.dripstone_block": "Travertino en bruto", + "block.minecraft.nether_bricks": "Ladrillos de queratofiro", + "block.minecraft.nether_brick_fence": "Valla de ladrillos de queratofiro", + "block.minecraft.nether_brick_slab": "Losa de ladrillos de queratofiro", + "block.minecraft.nether_brick_wall": "Muro de ladrillos de queratofiro", + "block.minecraft.nether_brick_stairs": "Escaleras de ladrillos de queratofiro", + "block.minecraft.cracked_nether_bricks": "Ladrillos de queratofiro agrietados", + "block.minecraft.chiseled_nether_bricks": "Ladrillos de queratofiro cincelados", + "block.minecraft.magma_block": "Piroxenita de magma", + "block.minecraft.twisting_vines": "Tallo de brilloluz", + "block.minecraft.pearlescent_froglight": "Brilloluz perlado", + "block.minecraft.verdant_froglight": "Brilloluz verdante", + "block.minecraft.ochre_froglight": "Brilloluz ocre", + "block.minecraft.nether_wart_block": "Bloque de verruga carmesΓ­", + "block.minecraft.weeping_vines_plant": "Planta de enredaderas carmesΓ­", + "block.minecraft.weeping_vines": "Enredaderas carmesΓ­", + "block.minecraft.red_sand": "Arena hematΓ­tica", + "block.minecraft.red_sandstone": "Arenisca hematΓ­tica", + "block.minecraft.red_sandstone_stairs": "Escaleras de arenisca hematΓ­tica", + "block.minecraft.red_sandstone_slab": "Losa de arenisca hematΓ­tica", + "block.minecraft.red_sandstone_wall": "Muro de arenisca hematΓ­tica", + "block.minecraft.chiseled_red_sandstone": "Arenisca hematΓ­tica cincelada", + "block.minecraft.smooth_red_sandstone": "Arenisca hematΓ­tica lisa", + "block.minecraft.smooth_red_sandstone_stairs": "Escaleras de arenisca hematΓ­tica lisa", + "block.minecraft.smooth_red_sandstone_slab": "Losa de arenisca hematΓ­tica lisa", + "block.minecraft.cut_red_sandstone": "Arenisca hematΓ­tica cortada", + "block.minecraft.cut_red_sandstone_slab": "Losa de arenisca hematΓ­tica cortada", + "entity.minecraft.furnace_minecart": "Vagoneta con caldera", + "item.minecraft.iron_nugget": "Pepita de hierro fundido", + "item.minecraft.iron_ingot": "Lingote de hierro fundido", + "item.minecraft.iron_block": "Bloque de hierro fundido", + "item.minecraft.netherite_leggings": "Grebas de buceo de acero azul", + "item.minecraft.netherite_boots": "Botas de buceo de acero azul", + "item.minecraft.string": "Hilo de seda", + "item.minecraft.glow_ink_sac": "Tinte brillante", + "item.minecraft.nether_brick": "Ladrillo de queratofiro", + "item.minecraft.furnace_minecart": "Vagoneta con caldera", + "material.tfg.dripstone": "Travertino" +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/lang/ja_jp.json b/kubejs/assets/minecraft/lang/ja_jp.json index a407b262f..6ce5806fd 100644 --- a/kubejs/assets/minecraft/lang/ja_jp.json +++ b/kubejs/assets/minecraft/lang/ja_jp.json @@ -89,7 +89,7 @@ "block.minecraft.smooth_red_sandstone_slab": "滑らかγͺ血鉄θ³ͺγη ‚岩γγƒγƒΌγƒ•ブロック", "block.minecraft.cut_red_sandstone": "η ”γŒγ‚ŒγŸθ΅€ι‰„θ³ͺγη ‚岩", "block.minecraft.cut_red_sandstone_slab": "η ”γŒγ‚ŒγŸθ΅€ι‰„θ³ͺγη ‚岩γγƒγƒΌγƒ•ブロック", - "entity.minecraft.furnace_minecart": "Minecart with Boiler", + "entity.minecraft.furnace_minecart": "γƒœγ‚€γƒ©γƒΌδ»˜γγγƒˆγƒ­γƒƒγ‚³", "item.minecraft.iron_nugget": "ι‹³ι‰„γƒŠγ‚²γƒƒγƒˆ", "item.minecraft.iron_ingot": "ι‹³ι‰„γ‚€γƒ³γ‚΄γƒƒγƒˆ", "item.minecraft.iron_block": "鋳鉄ブロック", @@ -98,5 +98,5 @@ "item.minecraft.glow_ink_sac": "η™Ίε…‰ζŸ“ζ–™", "item.minecraft.nether_brick": "角斑岩γγƒ¬γƒ³γ‚¬", "item.minecraft.furnace_minecart": "γƒœγ‚€γƒ©γƒΌδ»˜γγγƒˆγƒ­γƒƒγ‚³", - "material.tfg.dripstone": "Travertine" + "material.tfg.dripstone": "鍾乳石" } \ No newline at end of file diff --git a/kubejs/assets/minecraft/lang/ru_ru.json b/kubejs/assets/minecraft/lang/ru_ru.json index 1aa8b5368..6f0606390 100644 --- a/kubejs/assets/minecraft/lang/ru_ru.json +++ b/kubejs/assets/minecraft/lang/ru_ru.json @@ -1,6 +1,29 @@ { "__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.stone": "ВосстановлСнный камСнь", + "block.minecraft.stone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ восстановлСнного камня", + "block.minecraft.stone_slab": "ΠŸΠ»ΠΈΡ‚Π° восстановлСнного камня", + "block.minecraft.cobblestone": "Π‘ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ восстановлСнного камня", + "block.minecraft.cobblestone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° восстановлСнного камня", + "block.minecraft.cobblestone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° восстановлСнного камня", + "block.minecraft.cobblestone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° восстановлСнного камня", + "block.minecraft.mossy_cobblestone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ восстановлСнного камня", + "block.minecraft.mossy_cobblestone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° восстановлСнного камня", + "block.minecraft.mossy_cobblestone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° восстановлСнного камня", + "block.minecraft.mossy_cobblestone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° восстановлСнного камня", + "block.minecraft.smooth_stone": "ΠŸΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ восстановлСнный камСнь", + "block.minecraft.smooth_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ восстановлСнного камня", + "block.minecraft.stone_bricks": "ΠšΠΈΡ€ΠΏΠΈΡ‡ΠΈ восстановлСнного камня", + "block.minecraft.stone_bricks_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΊΠΈΡ€ΠΏΠΈΡ‡Π° восстановлСнного камня", + "block.minecraft.stone_bricks_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΊΠΈΡ€ΠΏΠΈΡ‡Π° восстановлСнного камня", + "block.minecraft.stone_bricks_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΊΠΈΡ€ΠΏΠΈΡ‡Π° восстановлСнного камня", + "block.minecraft.cracked_stone_bricks": "ΠŸΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΠ΅ΡΡ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ восстановлСнного камня", + "block.minecraft.mossy_stone_bricks": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ восстановлСнного камня", + "block.minecraft.mossy_stone_bricks_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ восстановлСнного камня", + "block.minecraft.mossy_stone_bricks_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ восстановлСнного камня", + "block.minecraft.mossy_stone_bricks_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ восстановлСнного камня", + "block.minecraft.chiseled_stone_bricks": "Π Π΅Π·Π½Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ восстановлСнного камня", "block.minecraft.chiseled_deepslate": "Π Π΅Π·Π½ΠΎΠΉ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚", "block.minecraft.cobbled_deepslate": "ΠšΠΎΠ»ΠΎΡ‚Ρ‹ΠΉ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚", "block.minecraft.cobbled_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΊΠΎΠ»ΠΎΡ‚ΠΎΠ³ΠΎ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚Π°", @@ -23,11 +46,11 @@ "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.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": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· пироксСнитовых ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", @@ -40,15 +63,21 @@ "block.minecraft.polished_blackstone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ пироксСнита", "block.minecraft.polished_blackstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ пироксСнита", "block.minecraft.dripstone_block": "Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "block.minecraft.nether_bricks": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.minecraft.nether_brick_fence": "Π—Π°Π±ΠΎΡ€ ΠΈΠ· ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.minecraft.nether_brick_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.minecraft.nether_brick_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.minecraft.nether_brick_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.minecraft.cracked_nether_bricks": "ΠŸΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΠ΅ΡΡ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.minecraft.chiseled_nether_bricks": "Π Π΅Π·Π½Ρ‹Π΅ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", "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.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": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π³Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ пСсчаника", @@ -58,18 +87,21 @@ "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", + "block.minecraft.cut_red_sandstone": "ΠŸΠΈΠ»Π΅Π½Ρ‹ΠΉ Π³Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсчаник", + "block.minecraft.cut_red_sandstone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΈΠ»Π΅Π½ΠΎΠ³ΠΎ Π³Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ пСсчаника", + "entity.minecraft.furnace_minecart": "Π’Π°Π³ΠΎΠ½Π΅Ρ‚ΠΊΠ° с Π±ΠΎΠΉΠ»Π΅Ρ€ΠΎΠΌ", "item.minecraft.iron_nugget": "Π‘Π΅Ρ€Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ (Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄ΠΎΠΊ)", "item.minecraft.iron_ingot": "Π‘Π΅Ρ€Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ (Π‘Π»ΠΈΡ‚ΠΎΠΊ)", + "item.minecraft.iron_block": "Π‘Π΅Ρ€Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ (Π‘Π»ΠΎΠΊ)", + "item.minecraft.netherite_leggings": "Π›Π°Π²ΠΎΠ»Π°Π·Π½Ρ‹Π΅ ΠΏΠΎΠ½ΠΎΠΆΠΈ ΠΈΠ· синСй стали", + "item.minecraft.string": "Шёлковая Π½ΠΈΡ‚ΡŒ", + "item.minecraft.glow_ink_sac": "БвСтящийся ΠΊΡ€Π°ΡΠΈΡ‚Π΅Π»ΡŒ", + "item.minecraft.nether_brick": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹ΠΉ ΠΊΠΈΡ€ΠΏΠΈΡ‡", + "item.minecraft.furnace_minecart": "Π’Π°Π³ΠΎΠ½Π΅Ρ‚ΠΊΠ° с Π±ΠΎΠΉΠ»Π΅Ρ€ΠΎΠΌ", + "material.tfg.dripstone": "Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", "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": "КамСшСк пироксСнита" + "block.minecraft.gold_block": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ (Π‘Π»ΠΎΠΊ)", + "block.minecraft.copper_block": "МСдь (Π‘Π»ΠΎΠΊ)" } \ No newline at end of file diff --git a/kubejs/assets/minecraft/lang/uk_ua.json b/kubejs/assets/minecraft/lang/uk_ua.json index edae2bf32..956bb5a46 100644 --- a/kubejs/assets/minecraft/lang/uk_ua.json +++ b/kubejs/assets/minecraft/lang/uk_ua.json @@ -94,6 +94,7 @@ "item.minecraft.iron_ingot": "Π§Π°Π²ΡƒΠ½Π½ΠΈΠΉ Π·Π»ΠΈΡ‚ΠΎΠΊ", "item.minecraft.iron_block": "Π§Π°Π²ΡƒΠ½Π½ΠΈΠΉ Π±Π»ΠΎΠΊ", "item.minecraft.netherite_leggings": "Π‘ΠΈΠ½Ρ– сталСві лСгінси для Π΄Π°ΠΉΠ²Ρ–Π½Π³Ρƒ", + "item.minecraft.netherite_boots": "Π‘ΠΈΠ½Ρ– сталСві лавостійкі Ρ‡ΠΎΠ±ΠΎΡ‚ΠΈ", "item.minecraft.string": "Π¨ΠΎΠ²ΠΊΠΎΠ²Π° Π½ΠΈΡ‚ΠΊΠ°", "item.minecraft.glow_ink_sac": "Π‘Π²Ρ–Ρ‚Π½ΠΈΠΉ Π±Π°Ρ€Π²Π½ΠΈΠΊ", "item.minecraft.nether_brick": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„Ρ–Ρ€ΠΎΠ²Π° Ρ†Π΅Π³Π»Π°", diff --git a/kubejs/assets/minecraft/lang/zh_cn.json b/kubejs/assets/minecraft/lang/zh_cn.json index cb6f0cf18..7657ccf5f 100644 --- a/kubejs/assets/minecraft/lang/zh_cn.json +++ b/kubejs/assets/minecraft/lang/zh_cn.json @@ -79,10 +79,10 @@ "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.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": "εΉ³ζ»‘θ΅€ι“ηŸΏη ‚ε²©ζ₯Όζ’―", @@ -94,9 +94,12 @@ "item.minecraft.iron_ingot": "铸铁锭", "item.minecraft.iron_block": "铸铁块", "item.minecraft.netherite_leggings": "θ“ι’’ζ½œζ°΄ζŠ€θ…Ώ", + "item.minecraft.netherite_boots": "θ“ι’’ι˜²η†”ε²©ι΄", "item.minecraft.string": "丝线", "item.minecraft.glow_ink_sac": "θ§ε…‰ζŸ“ζ–™", "item.minecraft.nether_brick": "角斑岩砖", "item.minecraft.furnace_minecart": "εŠ¨εŠ›ηŸΏθ½¦", - "material.tfg.dripstone": "石灰华" + "material.tfg.dripstone": "石灰华", + "death.attack.magic": "%1$s θ’«ζ―’ζ­»δΊ†", + "death.attack.magic.player": "%1$sεœ¨θ―•ε›Ύι€ƒη¦»%2$sζ—Άθ’«ζ―’ζ­»δΊ†" } \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/block/red_sandstone.json b/kubejs/assets/minecraft/models/block/red_sandstone.json new file mode 100644 index 000000000..1411b50bc --- /dev/null +++ b/kubejs/assets/minecraft/models/block/red_sandstone.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "minecraft:block/red_sandstone_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/block/red_sandstone_slab.json b/kubejs/assets/minecraft/models/block/red_sandstone_slab.json new file mode 100644 index 000000000..252d98e0c --- /dev/null +++ b/kubejs/assets/minecraft/models/block/red_sandstone_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone_bottom", + "top": "minecraft:block/red_sandstone_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/block/red_sandstone_slab_top.json b/kubejs/assets/minecraft/models/block/red_sandstone_slab_top.json new file mode 100644 index 000000000..dc4b5cb82 --- /dev/null +++ b/kubejs/assets/minecraft/models/block/red_sandstone_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone_bottom", + "top": "minecraft:block/red_sandstone_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/block/red_sandstone_stairs.json b/kubejs/assets/minecraft/models/block/red_sandstone_stairs.json new file mode 100644 index 000000000..b69671478 --- /dev/null +++ b/kubejs/assets/minecraft/models/block/red_sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone_bottom", + "top": "minecraft:block/red_sandstone_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/block/red_sandstone_stairs_inner.json b/kubejs/assets/minecraft/models/block/red_sandstone_stairs_inner.json new file mode 100644 index 000000000..98cd1e27c --- /dev/null +++ b/kubejs/assets/minecraft/models/block/red_sandstone_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone_bottom", + "top": "minecraft:block/red_sandstone_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/block/red_sandstone_stairs_outer.json b/kubejs/assets/minecraft/models/block/red_sandstone_stairs_outer.json new file mode 100644 index 000000000..b4b1302d7 --- /dev/null +++ b/kubejs/assets/minecraft/models/block/red_sandstone_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "minecraft:block/red_sandstone_bottom", + "side": "minecraft:block/red_sandstone_bottom", + "top": "minecraft:block/red_sandstone_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/block/red_sandstone_wall_inventory.json b/kubejs/assets/minecraft/models/block/red_sandstone_wall_inventory.json new file mode 100644 index 000000000..56ced25b2 --- /dev/null +++ b/kubejs/assets/minecraft/models/block/red_sandstone_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "minecraft:block/red_sandstone_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/block/red_sandstone_wall_post.json b/kubejs/assets/minecraft/models/block/red_sandstone_wall_post.json new file mode 100644 index 000000000..f18e723df --- /dev/null +++ b/kubejs/assets/minecraft/models/block/red_sandstone_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "minecraft:block/red_sandstone_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/block/red_sandstone_wall_side.json b/kubejs/assets/minecraft/models/block/red_sandstone_wall_side.json new file mode 100644 index 000000000..811b52dfd --- /dev/null +++ b/kubejs/assets/minecraft/models/block/red_sandstone_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "minecraft:block/red_sandstone_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/block/red_sandstone_wall_side_tall.json b/kubejs/assets/minecraft/models/block/red_sandstone_wall_side_tall.json new file mode 100644 index 000000000..bb475502a --- /dev/null +++ b/kubejs/assets/minecraft/models/block/red_sandstone_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "minecraft:block/red_sandstone_bottom" + } +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/tag/item/dirt.json b/kubejs/assets/minecraft/models/tag/item/dirt.json new file mode 100644 index 000000000..7dd03d568 --- /dev/null +++ b/kubejs/assets/minecraft/models/tag/item/dirt.json @@ -0,0 +1,3 @@ +{ + "parent": "tfc:item/dirt/loam" +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/models/tag/item/sand.json b/kubejs/assets/minecraft/models/tag/item/sand.json new file mode 100644 index 000000000..7a5974d0b --- /dev/null +++ b/kubejs/assets/minecraft/models/tag/item/sand.json @@ -0,0 +1,3 @@ +{ + "parent": "tfc:item/sand/yellow" +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/textures/item/iron_nugget.png b/kubejs/assets/minecraft/textures/item/iron_nugget.png index 503b9a14a..8b3c75338 100644 Binary files a/kubejs/assets/minecraft/textures/item/iron_nugget.png and b/kubejs/assets/minecraft/textures/item/iron_nugget.png differ diff --git a/kubejs/assets/minecraft/textures/item/netherite_boots.png b/kubejs/assets/minecraft/textures/item/netherite_boots.png new file mode 100644 index 000000000..37c481d57 Binary files /dev/null and b/kubejs/assets/minecraft/textures/item/netherite_boots.png differ diff --git a/kubejs/assets/minecraft/textures/models/armor/netherite_layer_1.png b/kubejs/assets/minecraft/textures/models/armor/netherite_layer_1.png new file mode 100644 index 000000000..31b657852 Binary files /dev/null and b/kubejs/assets/minecraft/textures/models/armor/netherite_layer_1.png differ diff --git a/kubejs/assets/primitive_creatures/lang/ja_jp.json b/kubejs/assets/primitive_creatures/lang/ja_jp.json new file mode 100644 index 000000000..f690ee3a5 --- /dev/null +++ b/kubejs/assets/primitive_creatures/lang/ja_jp.json @@ -0,0 +1,28 @@ +{ + "__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": "ι‡ŽδΊΊ", + "entity.primitive_creatures.piloger_9": "θ›ζ—", + "entity.primitive_creatures.nahida": "γƒγƒ³γƒˆγƒžγ‚Ήγ‚ΏγƒΌ", + "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.piloger_9_spawn_egg": "θ›ζ—γγ‚ΉγƒγƒΌγƒ³γ‚¨γƒƒγ‚°", + "item.primitive_creatures.nahida_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": "Small Shard", + "item.primitive_creatures.f_1": "Primitive Explosives", + "item.primitive_creatures.ww_3": "Fragrant Grass" +} \ 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 index 5236fcde3..0f20eb13f 100644 --- a/kubejs/assets/primitive_creatures/lang/ru_ru.json +++ b/kubejs/assets/primitive_creatures/lang/ru_ru.json @@ -6,12 +6,16 @@ "entity.primitive_creatures.wiloger": "Π£ΠΊΡ€ΠΎΡ‚ΠΈΡ‚Π΅Π»ΡŒ Π·Π²Π΅Ρ€Π΅ΠΉ", "entity.primitive_creatures.iloger_2": "Π—Π½Π°Ρ…Π°Ρ€ΡŒ", "entity.primitive_creatures.iloger_1": "Π€ΡƒΡ€Π°ΠΆΠΈΡ€", + "entity.primitive_creatures.piloger_9": "Π’ΠΎΠΈΠ½", + "entity.primitive_creatures.nahida": "Π₯антмастСр", "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.piloger_9_spawn_egg": "Π―ΠΉΡ†ΠΎ ΠΏΡ€ΠΈΠ·Ρ‹Π²Π° Π’ΠΎΠΈΠ½Π°", + "item.primitive_creatures.nahida_spawn_egg": "Π―ΠΉΡ†ΠΎ ΠΏΡ€ΠΈΠ·Ρ‹Π²Π° Π₯антмастСра", "item.primitive_creatures.yhgi": "Π‘ΡƒΠ»Π°Π²Π° (ΠšΡ€Π΅ΠΌΠ΅Π½ΡŒ)", "item.primitive_creatures.reh": "УкрСплСнная Π±ΡƒΠ»Π°Π²Π° (ΠšΡ€Π΅ΠΌΠ΅Π½ΡŒ)", "item.primitive_creatures.grh": "ИзношСнная ΡˆΠ΅Ρ€ΡΡ‚ΡŒ", @@ -20,8 +24,11 @@ "item.primitive_creatures.totem_3": "Π£ΠΊΡ€Π΅ΠΏΠ»Π΅Π½Π½Ρ‹ΠΉ глиняный ΠΈΠ΄ΠΎΠ»", "item.primitive_creatures.tt_5": "МалСнький осколок", "item.primitive_creatures.f_1": "ΠŸΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½Π°Ρ Π²Π·Ρ€Ρ‹Π²Ρ‡Π°Ρ‚ΠΊΠ°", + "item.primitive_creatures.ww_3": "Π”ΡƒΡˆΠΈΡΡ‚Π°Ρ Ρ‚Ρ€Π°Π²Π°", "item.primitive_creatures.reh.description_0": "\"Π›ΠΎΠΌΠ°Π΅Ρ‚ кости ΠΏΡ€ΠΈ ΡƒΠ΄Π°Ρ€Π΅\"", "item.kaolinclayze.reh.description_0": "\"Π›ΠΎΠΌΠ°Π΅Ρ‚ кости ΠΏΡ€ΠΈ ΡƒΠ΄Π°Ρ€Π΅\"", "item.primitive_creatures.yhgi.description_0": "\"Π›ΠΎΠΌΠ°Π΅Ρ‚ кости ΠΏΡ€ΠΈ ΡƒΠ΄Π°Ρ€Π΅\"", - "item.kaolinclayze.yhgi.description_0": "\"Π›ΠΎΠΌΠ°Π΅Ρ‚ кости ΠΏΡ€ΠΈ ΡƒΠ΄Π°Ρ€Π΅\"" + "item.kaolinclayze.yhgi.description_0": "\"Π›ΠΎΠΌΠ°Π΅Ρ‚ кости ΠΏΡ€ΠΈ ΡƒΠ΄Π°Ρ€Π΅\"", + "effect.kaolinclayze.dd": "Π‘Π»ΠΎΠΌΠ°Π½Π½Ρ‹Π΅ кости", + "effect.primitive_creatures.dd": "Π‘Π»ΠΎΠΌΠ°Π½Π½Ρ‹Π΅ кости" } \ No newline at end of file diff --git a/kubejs/assets/primitive_creatures/lang/uk_ua.json b/kubejs/assets/primitive_creatures/lang/uk_ua.json index 9bc4a5fcb..59e7b8327 100644 --- a/kubejs/assets/primitive_creatures/lang/uk_ua.json +++ b/kubejs/assets/primitive_creatures/lang/uk_ua.json @@ -6,6 +6,8 @@ "entity.primitive_creatures.wiloger": "ΠŸΡ€ΠΈΠ±ΠΎΡ€ΠΊΠΎΠ²Π°Ρ‡ Π·Π²Ρ–Ρ€Ρ–Π²", "entity.primitive_creatures.iloger_2": "Π’Ρ€Π°Π²Π½ΠΈΠΊ", "entity.primitive_creatures.iloger_1": "Π€ΡƒΡ€Π°ΠΆΠΈΡ€", + "entity.primitive_creatures.piloger_9": "Π’ΠΎΡ—Π½", + "entity.primitive_creatures.nahida": "ΠœΠ°ΠΉΡΡ‚Π΅Ρ€ полювання", "item.primitive_creatures.tfc_spawn_egg": "Π―ΠΉΡ†Π΅ Π²ΠΈΠΊΠ»ΠΈΠΊΡƒ ΠšΠ°ΠΎΠ»Ρ–Π½ΠΎΠ²ΠΎΠ³ΠΎ КлСйза", "item.primitive_creatures.golem_2_spawn_egg": "Π―ΠΉΡ†Π΅ Π²ΠΈΠΊΠ»ΠΈΠΊΡƒ Π“Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ Π“Π»Π΅ΠΉΠ·Π°", "item.primitive_creatures.iloger_4_spawn_egg": "Π―ΠΉΡ†Π΅ Π²ΠΈΠΊΠ»ΠΈΠΊΡƒ Засідника", diff --git a/kubejs/assets/railways/lang/ru_ru.json b/kubejs/assets/railways/lang/ru_ru.json index dcfa938d8..7bc9fb63a 100644 --- a/kubejs/assets/railways/lang/ru_ru.json +++ b/kubejs/assets/railways/lang/ru_ru.json @@ -1,9 +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.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_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ", + "block.railways.track_create_andesite_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ", "block.railways.track_blackstone_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° пироксСнитовых ΡˆΠΏΠ°Π»Π°Ρ…", "block.railways.track_incomplete_blackstone_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° пироксСнитовых ΡˆΠΏΠ°Π»Π°Ρ…", "block.railways.track_blackstone": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° пироксСнитовых ΡˆΠΏΠ°Π»Π°Ρ…", @@ -40,6 +38,8 @@ "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": "ΠžΠΊΡ€Π°ΡˆΠΈΠ²Π°Π½ΠΈΠ΅", @@ -57,15 +57,86 @@ "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_switch_andesite": "Π–Π΅Π»Π΅Π·Π½Ρ‹ΠΉ стрСлочный ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ΄", "block.railways.track_bamboo": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π±Π°ΠΌΠ±ΡƒΠΊΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", "block.railways.track_bamboo_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π±Π°ΠΌΠ±ΡƒΠΊΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", "block.railways.track_bamboo_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π±Π°ΠΌΠ±ΡƒΠΊΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_stripped_bamboo": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· обтёсанного Π±Π°ΠΌΠ±ΡƒΠΊΠ°", + "block.railways.track_stripped_bamboo_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· обтёсанного Π±Π°ΠΌΠ±ΡƒΠΊΠ°", + "block.railways.track_stripped_bamboo_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· обтёсанного Π±Π°ΠΌΠ±ΡƒΠΊΠ°", "block.railways.track_crimson": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π°Π³Ρ€ΠΎΠ²Ρ‹Ρ… досок", + "block.railways.track_crimson_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π°Π³Ρ€ΠΎΠ²Ρ‹Ρ… досок", + "block.railways.track_crimson_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π°Π³Ρ€ΠΎΠ²Ρ‹Ρ… досок", "block.railways.track_phantom": "Π€Π°Π½Ρ‚ΠΎΠΌΠ½Ρ‹ΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ", - "block.railways.track_switch_andesite": "ЖСлСзнодороТная стрСлка", "block.railways.track_warped": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· искаТСнного Π΄Π΅Ρ€Π΅Π²Π°", "block.railways.track_warped_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° искаТённых ΡˆΠΏΠ°Π»Π°Ρ…", "block.railways.track_warped_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° искаТённых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tieless": "Π‘Π΅ΡΡˆΠΏΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ", + "block.railways.track_tieless_narrow": "Π£Π·ΠΊΠΈΠΉ Π±Π΅ΡΡˆΠΏΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ", + "block.railways.track_tieless_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ Π±Π΅ΡΡˆΠΏΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ", + "block.railways.track_tfc_acacia": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π°ΠΊΠ°Ρ†ΠΈΠ΅Π²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_acacia_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π°ΠΊΠ°Ρ†ΠΈΠ΅Π²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_acacia_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π°ΠΊΠ°Ρ†ΠΈΠ΅Π²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_ash": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ясСнСвых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_ash_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ясСнСвых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_ash_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ясСнСвых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_aspen": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° осиновых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_aspen_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° осиновых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_aspen_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° осиновых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_birch": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π±Π΅Ρ€Ρ‘Π·ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_birch_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π±Π΅Ρ€Ρ‘Π·ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_birch_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π±Π΅Ρ€Ρ‘Π·ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_blackwood": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π³Ρ€Π΅Π½Π°Π΄ΠΈΠ»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_blackwood_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π³Ρ€Π΅Π½Π°Π΄ΠΈΠ»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_blackwood_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π³Ρ€Π΅Π½Π°Π΄ΠΈΠ»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_chestnut": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ°ΡˆΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_chestnut_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ°ΡˆΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_chestnut_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ°ΡˆΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_douglas_fir": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· дугласовой ΠΏΠΈΡ…Ρ‚Ρ‹", + "block.railways.track_tfc_douglas_fir_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· дугласовой ΠΏΠΈΡ…Ρ‚Ρ‹", + "block.railways.track_tfc_douglas_fir_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· дугласовой ΠΏΠΈΡ…Ρ‚Ρ‹", + "block.railways.track_tfc_hickory": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΎΡ€Π΅Ρ…ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_hickory_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΎΡ€Π΅Ρ…ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_hickory_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΎΡ€Π΅Ρ…ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_kapok": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сСйбовых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_kapok_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сСйбовых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_kapok_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сСйбовых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_mangrove": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· ΠΌΠ°Π½Π³Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π°", + "block.railways.track_tfc_mangrove_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· ΠΌΠ°Π½Π³Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π°", + "block.railways.track_tfc_mangrove_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· ΠΌΠ°Π½Π³Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π°", + "block.railways.track_tfc_maple": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ»Π΅Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_maple_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ»Π΅Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_maple_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ»Π΅Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_oak": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΄ΡƒΠ±ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_oak_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΄ΡƒΠ±ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_oak_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΄ΡƒΠ±ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_palm": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ°Π»ΡŒΠΌΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_palm_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ°Π»ΡŒΠΌΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_palm_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ°Π»ΡŒΠΌΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_pine": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сосновых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_pine_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сосновых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_pine_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сосновых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_rosewood": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° палисандровых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_rosewood_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° палисандровых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_rosewood_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° палисандровых ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_sequoia": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· сСквойи", + "block.railways.track_tfc_sequoia_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· сСквойи", + "block.railways.track_tfc_sequoia_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· сСквойи", + "block.railways.track_tfc_spruce": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΅Π»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_spruce_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΅Π»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_spruce_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΅Π»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_sycamore": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ»Π°Ρ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_sycamore_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ»Π°Ρ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_sycamore_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ»Π°Ρ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_white_cedar": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π΅Π»ΠΎΠ³ΠΎ ΠΊΠ΅Π΄Ρ€Π°", + "block.railways.track_tfc_white_cedar_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π΅Π»ΠΎΠ³ΠΎ ΠΊΠ΅Π΄Ρ€Π°", + "block.railways.track_tfc_white_cedar_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π΅Π»ΠΎΠ³ΠΎ ΠΊΠ΅Π΄Ρ€Π°", + "block.railways.track_tfc_willow": "Π–/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΈΠ²ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_willow_narrow": "Π£Π·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΈΠ²ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "block.railways.track_tfc_willow_wide": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΈΠ²ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_stripped_bamboo": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· обтёсанного Π±Π°ΠΌΠ±ΡƒΠΊΠ°", + "item.railways.track_incomplete_stripped_bamboo_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· обтёсанного Π±Π°ΠΌΠ±ΡƒΠΊΠ°", + "item.railways.track_incomplete_stripped_bamboo_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· обтёсанного Π±Π°ΠΌΠ±ΡƒΠΊΠ°", "item.railways.track_incomplete_jungle": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… Ρ‚ΠΈΠΊΠΎΠ²ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π°", "item.railways.track_incomplete_blackstone": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° пироксСнитовых ΡˆΠΏΠ°Π»Π°Ρ…", "item.railways.track_incomplete_blackstone_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° пироксСнитовых ΡˆΠΏΠ°Π»Π°Ρ…", @@ -78,7 +149,67 @@ "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": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ Π±Π΅ΡΡˆΠΏΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ" + "item.railways.track_incomplete_crimson": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π°Π³Ρ€ΠΎΠ²Ρ‹Ρ… досок", + "item.railways.track_incomplete_crimson_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π°Π³Ρ€ΠΎΠ²Ρ‹Ρ… досок", + "item.railways.track_incomplete_crimson_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π°Π³Ρ€ΠΎΠ²Ρ‹Ρ… досок", + "item.railways.track_incomplete_tfc_acacia": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π°ΠΊΠ°Ρ†ΠΈΠ΅Π²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_acacia_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π°ΠΊΠ°Ρ†ΠΈΠ΅Π²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_acacia_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π°ΠΊΠ°Ρ†ΠΈΠ΅Π²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_ash": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ясСнСвых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_ash_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ясСнСвых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_ash_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ясСнСвых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_aspen": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° осиновых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_aspen_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° осиновых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_aspen_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° осиновых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_birch": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π±Π΅Ρ€Ρ‘Π·ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_birch_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π±Π΅Ρ€Ρ‘Π·ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_birch_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π±Π΅Ρ€Ρ‘Π·ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_blackwood": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π³Ρ€Π΅Π½Π°Π΄ΠΈΠ»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_blackwood_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π³Ρ€Π΅Π½Π°Π΄ΠΈΠ»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_blackwood_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π³Ρ€Π΅Π½Π°Π΄ΠΈΠ»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_chestnut": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ°ΡˆΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_chestnut_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ°ΡˆΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_chestnut_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ°ΡˆΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_douglas_fir": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· дугласовой ΠΏΠΈΡ…Ρ‚Ρ‹", + "item.railways.track_incomplete_tfc_douglas_fir_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· дугласовой ΠΏΠΈΡ…Ρ‚Ρ‹", + "item.railways.track_incomplete_tfc_douglas_fir_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· дугласовой ΠΏΠΈΡ…Ρ‚Ρ‹", + "item.railways.track_incomplete_tfc_hickory": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΎΡ€Π΅Ρ…ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_hickory_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΎΡ€Π΅Ρ…ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_hickory_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΎΡ€Π΅Ρ…ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_kapok": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сСйбовых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_kapok_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сСйбовых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_kapok_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сСйбовых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_mangrove": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· ΠΌΠ°Π½Π³Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π°", + "item.railways.track_incomplete_tfc_mangrove_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· ΠΌΠ°Π½Π³Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π°", + "item.railways.track_incomplete_tfc_mangrove_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· ΠΌΠ°Π½Π³Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π°", + "item.railways.track_incomplete_tfc_maple": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ»Π΅Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_maple_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ»Π΅Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_maple_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΊΠ»Π΅Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_oak": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΄ΡƒΠ±ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_oak_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΄ΡƒΠ±ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_oak_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΄ΡƒΠ±ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_palm": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ°Π»ΡŒΠΌΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_palm_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ°Π»ΡŒΠΌΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_palm_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ°Π»ΡŒΠΌΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_pine": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сосновых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_pine_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сосновых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_pine_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° сосновых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_rosewood": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° палисандровых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_rosewood_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° палисандровых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_rosewood_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° палисандровых ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_sequoia": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· сСквойи", + "item.railways.track_incomplete_tfc_sequoia_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· сСквойи", + "item.railways.track_incomplete_tfc_sequoia_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· сСквойи", + "item.railways.track_incomplete_tfc_spruce": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΅Π»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_spruce_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΅Π»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_spruce_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° Π΅Π»ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_sycamore": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ»Π°Ρ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_sycamore_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ»Π°Ρ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_sycamore_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΏΠ»Π°Ρ‚Π°Π½ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_white_cedar": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π΅Π»ΠΎΠ³ΠΎ ΠΊΠ΅Π΄Ρ€Π°", + "item.railways.track_incomplete_tfc_white_cedar_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π΅Π»ΠΎΠ³ΠΎ ΠΊΠ΅Π΄Ρ€Π°", + "item.railways.track_incomplete_tfc_white_cedar_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΡˆΠΏΠ°Π»Π°Ρ… ΠΈΠ· Π±Π΅Π»ΠΎΠ³ΠΎ ΠΊΠ΅Π΄Ρ€Π°", + "item.railways.track_incomplete_tfc_willow": "НСзакончСнный ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΈΠ²ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_willow_narrow": "НСзакончСнный ΡƒΠ·ΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΈΠ²ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…", + "item.railways.track_incomplete_tfc_willow_wide": "НСзакончСнный ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ ΠΆ/Π΄ ΠΏΡƒΡ‚ΡŒ Π½Π° ΠΈΠ²ΠΎΠ²Ρ‹Ρ… ΡˆΠΏΠ°Π»Π°Ρ…" } \ No newline at end of file diff --git a/kubejs/assets/rnr/textures/item/crushed_base_course.png b/kubejs/assets/rnr/textures/item/crushed_base_course.png new file mode 100644 index 000000000..ee9fce984 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/crushed_base_course.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/andesite.png b/kubejs/assets/rnr/textures/item/flagstone/andesite.png new file mode 100644 index 000000000..9798f4c80 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/andesite.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/basalt.png b/kubejs/assets/rnr/textures/item/flagstone/basalt.png new file mode 100644 index 000000000..597d29918 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/basalt.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/black_sandstone.png b/kubejs/assets/rnr/textures/item/flagstone/black_sandstone.png new file mode 100644 index 000000000..8ebad69b5 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/black_sandstone.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/brown_sandstone.png b/kubejs/assets/rnr/textures/item/flagstone/brown_sandstone.png new file mode 100644 index 000000000..454edb4f0 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/brown_sandstone.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/chalk.png b/kubejs/assets/rnr/textures/item/flagstone/chalk.png new file mode 100644 index 000000000..43f488feb Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/chalk.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/chert.png b/kubejs/assets/rnr/textures/item/flagstone/chert.png new file mode 100644 index 000000000..c87347087 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/chert.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/claystone.png b/kubejs/assets/rnr/textures/item/flagstone/claystone.png new file mode 100644 index 000000000..e8fde2236 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/claystone.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/conglomerate.png b/kubejs/assets/rnr/textures/item/flagstone/conglomerate.png new file mode 100644 index 000000000..fc2591af2 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/conglomerate.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/dacite.png b/kubejs/assets/rnr/textures/item/flagstone/dacite.png new file mode 100644 index 000000000..d74b5a39e Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/dacite.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/diorite.png b/kubejs/assets/rnr/textures/item/flagstone/diorite.png new file mode 100644 index 000000000..437dda894 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/diorite.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/dolomite.png b/kubejs/assets/rnr/textures/item/flagstone/dolomite.png new file mode 100644 index 000000000..a2cd00517 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/dolomite.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/gabbro.png b/kubejs/assets/rnr/textures/item/flagstone/gabbro.png new file mode 100644 index 000000000..9083aabbf Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/gabbro.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/gneiss.png b/kubejs/assets/rnr/textures/item/flagstone/gneiss.png new file mode 100644 index 000000000..2376495d1 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/gneiss.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/granite.png b/kubejs/assets/rnr/textures/item/flagstone/granite.png new file mode 100644 index 000000000..0e3d35e1c Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/granite.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/green_sandstone.png b/kubejs/assets/rnr/textures/item/flagstone/green_sandstone.png new file mode 100644 index 000000000..05a26066b Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/green_sandstone.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/limestone.png b/kubejs/assets/rnr/textures/item/flagstone/limestone.png new file mode 100644 index 000000000..58e92e6c6 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/limestone.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/marble.png b/kubejs/assets/rnr/textures/item/flagstone/marble.png new file mode 100644 index 000000000..ec9ed5cff Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/marble.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/phyllite.png b/kubejs/assets/rnr/textures/item/flagstone/phyllite.png new file mode 100644 index 000000000..6b9cc423d Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/phyllite.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/pink_sandstone.png b/kubejs/assets/rnr/textures/item/flagstone/pink_sandstone.png new file mode 100644 index 000000000..b17ba9341 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/pink_sandstone.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/quartzite.png b/kubejs/assets/rnr/textures/item/flagstone/quartzite.png new file mode 100644 index 000000000..dae64dcc5 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/quartzite.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/red_sandstone.png b/kubejs/assets/rnr/textures/item/flagstone/red_sandstone.png new file mode 100644 index 000000000..eb7984a12 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/red_sandstone.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/rhyolite.png b/kubejs/assets/rnr/textures/item/flagstone/rhyolite.png new file mode 100644 index 000000000..0fce29354 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/rhyolite.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/schist.png b/kubejs/assets/rnr/textures/item/flagstone/schist.png new file mode 100644 index 000000000..5f38747cd Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/schist.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/shale.png b/kubejs/assets/rnr/textures/item/flagstone/shale.png new file mode 100644 index 000000000..b58e2415e Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/shale.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/slate.png b/kubejs/assets/rnr/textures/item/flagstone/slate.png new file mode 100644 index 000000000..669d671e3 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/slate.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/white_sandstone.png b/kubejs/assets/rnr/textures/item/flagstone/white_sandstone.png new file mode 100644 index 000000000..0d328874b Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/white_sandstone.png differ diff --git a/kubejs/assets/rnr/textures/item/flagstone/yellow_sandstone.png b/kubejs/assets/rnr/textures/item/flagstone/yellow_sandstone.png new file mode 100644 index 000000000..88cdb4ad5 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/flagstone/yellow_sandstone.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/andesite.png b/kubejs/assets/rnr/textures/item/gravel_fill/andesite.png new file mode 100644 index 000000000..666df4d57 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/andesite.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/basalt.png b/kubejs/assets/rnr/textures/item/gravel_fill/basalt.png new file mode 100644 index 000000000..7bc5305b8 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/basalt.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/chalk.png b/kubejs/assets/rnr/textures/item/gravel_fill/chalk.png new file mode 100644 index 000000000..12687cfbc Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/chalk.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/chert.png b/kubejs/assets/rnr/textures/item/gravel_fill/chert.png new file mode 100644 index 000000000..95befa88a Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/chert.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/claystone.png b/kubejs/assets/rnr/textures/item/gravel_fill/claystone.png new file mode 100644 index 000000000..d07f1f945 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/claystone.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/conglomerate.png b/kubejs/assets/rnr/textures/item/gravel_fill/conglomerate.png new file mode 100644 index 000000000..cc9aeeb78 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/conglomerate.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/dacite.png b/kubejs/assets/rnr/textures/item/gravel_fill/dacite.png new file mode 100644 index 000000000..767b2fd7b Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/dacite.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/diorite.png b/kubejs/assets/rnr/textures/item/gravel_fill/diorite.png new file mode 100644 index 000000000..1651d6b7f Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/diorite.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/dolomite.png b/kubejs/assets/rnr/textures/item/gravel_fill/dolomite.png new file mode 100644 index 000000000..0ca678304 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/dolomite.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/gabbro.png b/kubejs/assets/rnr/textures/item/gravel_fill/gabbro.png new file mode 100644 index 000000000..90eed2397 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/gabbro.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/gneiss.png b/kubejs/assets/rnr/textures/item/gravel_fill/gneiss.png new file mode 100644 index 000000000..ddd197d56 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/gneiss.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/granite.png b/kubejs/assets/rnr/textures/item/gravel_fill/granite.png new file mode 100644 index 000000000..937bcb733 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/granite.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/limestone.png b/kubejs/assets/rnr/textures/item/gravel_fill/limestone.png new file mode 100644 index 000000000..7dbca6f57 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/limestone.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/marble.png b/kubejs/assets/rnr/textures/item/gravel_fill/marble.png new file mode 100644 index 000000000..cff31afd6 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/marble.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/phyllite.png b/kubejs/assets/rnr/textures/item/gravel_fill/phyllite.png new file mode 100644 index 000000000..c06b92414 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/phyllite.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/quartzite.png b/kubejs/assets/rnr/textures/item/gravel_fill/quartzite.png new file mode 100644 index 000000000..0ff8078df Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/quartzite.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/rhyolite.png b/kubejs/assets/rnr/textures/item/gravel_fill/rhyolite.png new file mode 100644 index 000000000..989bd4097 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/rhyolite.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/schist.png b/kubejs/assets/rnr/textures/item/gravel_fill/schist.png new file mode 100644 index 000000000..cca945805 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/schist.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/shale.png b/kubejs/assets/rnr/textures/item/gravel_fill/shale.png new file mode 100644 index 000000000..2b8284f3e Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/shale.png differ diff --git a/kubejs/assets/rnr/textures/item/gravel_fill/slate.png b/kubejs/assets/rnr/textures/item/gravel_fill/slate.png new file mode 100644 index 000000000..660ee4c9e Binary files /dev/null and b/kubejs/assets/rnr/textures/item/gravel_fill/slate.png differ diff --git a/kubejs/assets/rnr/textures/item/hoggin_mix.png b/kubejs/assets/rnr/textures/item/hoggin_mix.png new file mode 100644 index 000000000..c47773a11 Binary files /dev/null and b/kubejs/assets/rnr/textures/item/hoggin_mix.png differ diff --git a/kubejs/assets/sandworm_mod/lang/en_us.json b/kubejs/assets/sandworm_mod/lang/en_us.json new file mode 100644 index 000000000..9281db3ff --- /dev/null +++ b/kubejs/assets/sandworm_mod/lang/en_us.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.", + "entity.sandworm_mod.worm_chain": "Sandworm", + "entity.sandworm_mod.worm_head_segment": "Sandworm Head", + "entity.sandworm_mod.worm_segment": "Sandworm Body" +} \ No newline at end of file diff --git a/kubejs/assets/sandworm_mod/lang/zh_cn.json b/kubejs/assets/sandworm_mod/lang/zh_cn.json new file mode 100644 index 000000000..a2b8d28a6 --- /dev/null +++ b/kubejs/assets/sandworm_mod/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.", + "entity.sandworm_mod.worm_chain": "ζ²™θ™«", + "entity.sandworm_mod.worm_head_segment": "沙虫倴部", + "entity.sandworm_mod.worm_segment": "沙虫躯体" +} \ No newline at end of file diff --git a/kubejs/assets/sns/lang/ru_ru.json b/kubejs/assets/sns/lang/ru_ru.json new file mode 100644 index 000000000..93cc05081 --- /dev/null +++ b/kubejs/assets/sns/lang/ru_ru.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.", + "item.sns.black_steel_toe_hiking_boots": "ΠŸΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ (Чёрная ΡΡ‚Π°Π»ΡŒ)", + "item.sns.blue_steel_toe_hiking_boots": "ΠŸΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ (Биняя ΡΡ‚Π°Π»ΡŒ)", + "item.sns.bound_leather_strip": "УкрСплённая коТаная полоска", + "item.sns.buckle": "ΠŸΡ€ΡΠΆΠΊΠ°", + "item.sns.burlap_sack": "МСшок ΠΈΠ· ΠΌΠ΅ΡˆΠΊΠΎΠ²ΠΈΠ½Ρ‹", + "item.sns.frame_pack": "ΠšΠ°Ρ€ΠΊΠ°ΡΠ½Ρ‹ΠΉ Ρ€ΡŽΠΊΠ·Π°ΠΊ", + "item.sns.hiking_boots": "ΠŸΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ", + "item.sns.leather_sack": "ΠšΠΎΠΆΠ°Π½Ρ‹ΠΉ мСшок", + "item.sns.leather_strip": "КоТаная полоска", + "item.sns.lunchbox": "Ланчбокс", + "item.sns.metal.horseshoe.black_steel": "Подкова ΠΈΠ· Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ стали", + "item.sns.metal.horseshoe.blue_steel": "Подкова ΠΈΠ· синСй стали", + "item.sns.metal.horseshoe.red_steel": "Подкова ΠΈΠ· красной стали", + "item.sns.metal.horseshoe.steel": "Π‘Ρ‚Π°Π»ΡŒΠ½Π°Ρ ΠΏΠΎΠ΄ΠΊΠΎΠ²Π°", + "item.sns.metal.horseshoes.black_steel": "ΠŸΠΎΠ΄ΠΊΠΎΠ²Ρ‹ ΠΈΠ· Ρ‡Ρ‘Ρ€Π½ΠΎΠΉ стали", + "item.sns.metal.horseshoes.blue_steel": "ΠŸΠΎΠ΄ΠΊΠΎΠ²Ρ‹ ΠΈΠ· синСй стали", + "item.sns.metal.horseshoes.red_steel": "ΠŸΠΎΠ΄ΠΊΠΎΠ²Ρ‹ ΠΈΠ· красной стали", + "item.sns.metal.horseshoes.steel": "Π‘Ρ‚Π°Π»ΡŒΠ½Ρ‹Π΅ ΠΏΠΎΠ΄ΠΊΠΎΠ²Ρ‹", + "item.sns.mob_net": "Π‘Π΅Ρ‚ΡŒ для ΠΌΠΎΠ±ΠΎΠ²", + "item.sns.ore_sack": "МСшок для Ρ€ΡƒΠ΄Ρ‹", + "item.sns.pack_frame": "ΠšΠ°Ρ€ΠΊΠ°Ρ Ρ€ΡŽΠΊΠ·Π°ΠΊΠ°", + "item.sns.quiver": "ΠšΠΎΠ»Ρ‡Π°Π½", + "item.sns.red_steel_toe_hiking_boots": "ΠŸΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ (ΠšΡ€Π°ΡΠ½Π°Ρ ΡΡ‚Π°Π»ΡŒ)", + "item.sns.reinforced_fabric": "УкрСплённая Ρ‚ΠΊΠ°Π½ΡŒ", + "item.sns.reinforced_fiber": "УкрСплённая Π½ΠΈΡ‚ΡŒ", + "item.sns.seed_pouch": "ΠœΠ΅ΡˆΠΎΡ‡Π΅ΠΊ для сСмян", + "item.sns.steel_toe_hiking_boots": "ΠŸΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ (Π‘Ρ‚Π°Π»ΡŒ)", + "item.sns.straw_basket": "БоломСнная ΠΊΠΎΡ€Π·ΠΈΠ½Π°", + "item.sns.unfinished_leather_sack": "ΠΠ΅Π·Π°Π²Π΅Ρ€ΡˆΡ‘Π½Π½Ρ‹ΠΉ ΠΊΠΎΠΆΠ°Π½Ρ‹ΠΉ мСшок", + "pack.sns.description": "Sacks 'N Such Resources", + "sns.advancements.frame_pack.description": "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ ΡΡ‚Π°Π»ΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ каркасный Ρ€ΡŽΠΊΠ·Π°ΠΊ. Насколько Sophisticated?", + "sns.advancements.frame_pack.title": "НС Sophisticated Ρ€ΡŽΠΊΠ·Π°ΠΊ", + "sns.advancements.hiking_boots.description": "Π‘ΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ высококачСствСнныС Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ, ΠΏΠΎΠΌΠΎΠ³Π°ΡŽΡ‰ΠΈΠ΅ ΠΈΡΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚ΡŒ ΠΌΠΈΡ€ пСшком", + "sns.advancements.hiking_boots.title": "Π­Ρ‚ΠΈ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ созданы для Ρ…ΠΎΠ΄ΡŒΠ±Ρ‹", + "sns.advancements.leather_sack.description": "Π‘ΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ ΠΊΠΎΠΆΠ°Π½Ρ‹ΠΉ мСшок ΠΈΠ· самой Π»ΡƒΡ‡ΡˆΠ΅ΠΉ ΠΊΠΎΠΆΠΈ", + "sns.advancements.leather_sack.title": "ΠšΠΎΠΆΠ°Π½Ρ‹ΠΉ мСшок", + "sns.advancements.lunchbox.description": "Π‘ΠΊΡƒΠΉΡ‚Π΅ ланчбокс", + "sns.advancements.lunchbox.title": "Π•Π΄Π° с собой", + "sns.advancements.steel_horseshoes.description": "Π‘ΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ ΠΏΠΎΠ΄ΠΊΠΎΠ²Ρ‹ ΠΈΠ· стали. Как Π±ΡƒΠ΄Ρ‚ΠΎ ΠΎΠ½ΠΈ Π·Π°Ρ‡Π°Ρ€ΠΎΠ²Π°Π½Ρ‹", + "sns.advancements.steel_horseshoes.title": "БкоростныС ΠΏΠΎΠ΄ΠΊΠΎΠ²Ρ‹", + "sns.advancements.steel_toe_hiking_boots.description": "Π—Π°Ρ‰ΠΈΡ‚ΠΈΡ‚Π΅ свои ΠΏΠ°Π»ΡŒΡ†Ρ‹ Π½ΠΎΠ³ ΡΡ‚Π°Π»ΡŒΡŽ", + "sns.advancements.steel_toe_hiking_boots.title": "Π—Π°Ρ‰ΠΈΡ‚Π° для ΠΏΠ°Π»ΡŒΡ‡ΠΈΠΊΠΎΠ²", + "sns.advancements.straw_basket.description": "Π‘ΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ ΠΏΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½ΡƒΡŽ ΠΊΠΎΡ€Π·ΠΈΠ½Ρƒ ΠΈΠ· соломы", + "sns.advancements.straw_basket.title": "БоломСнная ΠΊΠΎΡ€Π·ΠΈΠ½Π°", + "sns.creative_tab.sacks": "Sacks 'N Such", + "sns.disabled": "ΠžΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΎ", + "sns.enabled": "Π’ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΎ", + "sns.extra_fall_distance": "БСзопасная высота падСния", + "sns.key.openItemContainer": "ΠžΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€", + "sns.key.pickup": "ΠŸΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π°Π²Ρ‚ΠΎΠΏΠΎΠ΄Π±ΠΎΡ€", + "sns.stack_name.mob_net.with_mob": "%s (%s)", + "sns.status.item_container.no_pickup": "Автоподбор для %s ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Ρ‘Π½", + "sns.status.mob_net.cannot_capture_generic": "НСльзя ΠΏΠΎΠΉΠΌΠ°Ρ‚ΡŒ %s", + "sns.status.mob_net.cannot_capture_players": "НСльзя Π»ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΠ³Ρ€ΠΎΠΊΠΎΠ²", + "sns.status.mob_net.cannot_capture_size": "%s слишком большой для ΠΏΠΎΠΈΠΌΠΊΠΈ", + "sns.status.mob_net.cannot_place": "НСдостаточно мСста, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ ΠΏΠΎΠΉΠΌΠ°Π½Π½ΠΎΠ³ΠΎ %s", + "sns.status.sack.auto_pickup": "Автоподбор: %s", + "sns.tooltip.food_trait.lunchbox": "Π‘ΠΎΡ…Ρ€Π°Π½Π΅Π½ΠΎ Π² ланчбоксС", + "sns.tooltip.hiking_boots.prevents_slow": "ΠŸΡ€Π΅Π΄ΠΎΡ‚Π²Ρ€Π°Ρ‰Π°Π΅Ρ‚ Π·Π°ΠΌΠ΅Π΄Π»Π΅Π½ΠΈΠ΅ Π² высокой Ρ‚Ρ€Π°Π²Π΅", + "sns.tooltip.horseshoe.modifier": "ΠŸΡ€ΠΈ Π΅Π·Π΄Π΅ Π½Π° лошади:", + "sns.tooltip.item_container.allowed_size": "ΠœΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½Ρ‹ΠΉ Ρ€Π°Π·ΠΌΠ΅Ρ€: %s", + "sns.tooltip.item_container.slot_capacity": "Π’ΠΌΠ΅ΡΡ‚ΠΈΠΌΠΎΡΡ‚ΡŒ слота: %s", + "sns.tooltip.item_container.slot_count": "ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ слотов: %s", + "sns.tooltip.item_container.tooltip.inventory_interaction": "ВзаимодСйствиС с ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Ρ‘ΠΌ: %s", + "sns.tooltip.item_container.tooltip.pickup": "Автоподбор: %s", + "sns.tooltip.item_container.tooltip.shift": "Π£Π΄Π΅Ρ€ΠΆΠΈΠ²Π°ΠΉΡ‚Π΅ (Shift) для ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ ΠΎ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π΅", + "sns.tooltip.item_container.tooltip.void": "Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ²: %s", + "sns.tooltip.lunchbox.selected_slot": "Π’Ρ‹Π±Ρ€Π°Π½Π½Ρ‹ΠΉ слот: %s" +} \ No newline at end of file diff --git a/kubejs/assets/sodiumextras/lang/uk_ua.json b/kubejs/assets/sodiumextras/lang/uk_ua.json new file mode 100644 index 000000000..7fde262b9 --- /dev/null +++ b/kubejs/assets/sodiumextras/lang/uk_ua.json @@ -0,0 +1,132 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "sodium.extras.options.common.slow": "ΠŸΠΎΠ²Ρ–Π»ΡŒΠ½ΠΎ", + "sodium.extras.options.common.normal": "ΠΠΎΡ€ΠΌΠ°Π»ΡŒΠ½ΠΈΠΉ", + "sodium.extras.options.common.fast": "Π¨Π²ΠΈΠ΄ΠΊΠΈΠΉ", + "sodium.extras.options.common.superfast": "Π”ΡƒΠΆΠ΅ швидка", + "sodium.extras.options.common.fastest": "Найшвидший", + "sodium.extras.options.common.realtime": "РСальний час", + "sodium.extras.options.common.off": "Π’ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ", + "sodium.extras.options.common.on": "Π£Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ", + "sodium.extras.options.common.simple": "ΠŸΡ€ΠΎΡΡ‚ΠΈΠΉ", + "sodium.extras.options.common.advanced": "Π ΠΎΠ·ΡˆΠΈΡ€Π΅Π½Ρ–", + "sodium.extras.options.common.attach": "ΠŸΡ€ΠΈΠΊΡ€Ρ–ΠΏΠΈΡ‚ΠΈ", + "sodium.extras.options.common.replace": "Π—Π°ΠΌΡ–Π½ΠΈΡ‚ΠΈ", + "sodium.extras.options.common.experimental": "[EXPERIMENTAL]", + "sodium.extras.options.common.millis": "мс", + "sodium.extras.options.clouds.height.title": "Висота Ρ…ΠΌΠ°Ρ€", + "sodium.extras.options.clouds.height.desc": "ΠŸΡ–Π΄Ρ–ΠΉΠΌΠ°Ρ” висоту Ρ…ΠΌΠ°Ρ€. \nΠΠ°Π»Π°ΡˆΡ‚ΡƒΠΉΡ‚Π΅ висоту зобраТСння Ρ…ΠΌΠ°Ρ€", + "sodium.extras.options.culling.page": "Відсікання сутностСй", + "sodium.extras.options.culling.entity.title": "Використовувати ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½Ρƒ Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ сутностСй", + "sodium.extras.options.culling.entity.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, сутності Π±ΡƒΠ΄ΡƒΡ‚ΡŒ ΠΏΡ€ΠΈΡ…ΠΎΠ²Π°Π½Ρ– Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎ Π΄ΠΎ Π½Π°Π»Π°ΡˆΡ‚ΠΎΠ²Π°Π½ΠΎΠ³ΠΎ обмСТСння відстані", + "sodium.extras.options.culling.entity.distance.horizontal.title": "Максимальна Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ сутностСй (Π³ΠΎΡ€ΠΈΠ·ΠΎΠ½Ρ‚Π°Π»ΡŒΠ½Π°)", + "sodium.extras.options.culling.entity.distance.horizontal.desc": "ΠŸΡ€ΠΈΡ…ΠΎΠ²ΡƒΡ” ΠΉ Π½Π΅ ΠΎΠΏΡ€Π°Ρ†ΡŒΠΎΠ²ΡƒΡ” сутності Π·Π° ΠΌΠ΅ΠΆΠ°ΠΌΠΈ Ρ†Ρ–Ρ”Ρ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π±Π»ΠΎΠΊΡ–Π². Π—Π½Π°Ρ‡Π½Π΅ підвищСння продуктивності, особливо біля ΠΌΠΎΠ΄ΠΈΡ„Ρ–ΠΊΠΎΠ²Π°Π½ΠΈΡ… Ρ„Π΅Ρ€ΠΌ.", + "sodium.extras.options.culling.entity.distance.vertical.title": "Максимальна Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ сутностСй (Π²Π΅Ρ€Ρ‚ΠΈΠΊΠ°Π»ΡŒΠ½Π°)", + "sodium.extras.options.culling.entity.distance.vertical.desc": "ΠŸΡ€ΠΈΡ…ΠΎΠ²ΡƒΡ” ΠΉ Π½Π΅ ΠΎΠΏΡ€Π°Ρ†ΡŒΠΎΠ²ΡƒΡ” сутності Π½ΠΈΠΆΡ‡Π΅ Ρ†Ρ–Ρ”Ρ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π±Π»ΠΎΠΊΡ–Π², ΠΏΡ–Π΄Π²ΠΈΡ‰ΡƒΡŽΡ‡ΠΈ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ Π½Π°Π΄ ΠΏΠ΅Ρ‡Π΅Ρ€Π°ΠΌΠΈ. Π‘Π°ΠΆΠ°Π½ΠΎ Π²ΡΡ‚Π°Π½ΠΎΠ²Π»ΡŽΠ²Π°Ρ‚ΠΈ мСншС значСння, Π½Ρ–ΠΆ для Π³ΠΎΡ€ΠΈΠ·ΠΎΠ½Ρ‚Π°Π»ΡŒΠ½ΠΎΡ— відстані.", + "sodium.extras.options.culling.tiles.title": "Використовувати ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½Ρƒ Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ Π±Π»ΠΎΠΊΡƒ сутностСй", + "sodium.extras.options.culling.tiles.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Π±Π»ΠΎΠΊΠΈ сутності Π±ΡƒΠ΄ΡƒΡ‚ΡŒ ΠΏΡ€ΠΈΡ…ΠΎΠ²Π°Π½Ρ– Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎ Π΄ΠΎ Π½Π°Π»Π°ΡˆΡ‚ΠΎΠ²Π°Π½ΠΎΠ³ΠΎ обмСТСння відстані", + "sodium.extras.options.culling.tile.distance.horizontal.title": "Максимальна Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ Π±Π»ΠΎΠΊΡƒ сутностСй (Π³ΠΎΡ€ΠΈΠ·ΠΎΠ½Ρ‚Π°Π»ΡŒΠ½Π°)", + "sodium.extras.options.culling.tile.distance.horizontal.desc": "ΠŸΡ€ΠΈΡ…ΠΎΠ²ΡƒΡ” Π±Π»ΠΎΠΊΠΈ сутності Π·Π° ΠΌΠ΅ΠΆΠ°ΠΌΠΈ Ρ†Ρ–Ρ”Ρ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π±Π»ΠΎΠΊΡ–Π². Π—Π½Π°Ρ‡Π½Π΅ підвищСння продуктивності, особливо біля Π²Π΅Π»ΠΈΠΊΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– ΠΌΠΎΠ΄ΠΈΡ„Ρ–ΠΊΠΎΠ²Π°Π½ΠΈΡ… машин.", + "sodium.extras.options.culling.tile.distance.vertical.title": "Максимальна Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ Π±Π»ΠΎΠΊΡƒ сутностСй (Π²Π΅Ρ€Ρ‚ΠΈΠΊΠ°Π»ΡŒΠ½Π°)", + "sodium.extras.options.culling.tile.distance.vertical.desc": "ΠŸΡ€ΠΈΡ…ΠΎΠ²ΡƒΡ” Π±Π»ΠΎΠΊΠΈ сутності Π½ΠΈΠΆΡ‡Π΅ Ρ†Ρ–Ρ”Ρ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π±Π»ΠΎΠΊΡ–Π², ΠΏΡ–Π΄Π²ΠΈΡ‰ΡƒΡŽΡ‡ΠΈ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ Π½Π°Π΄ ΠΏΠ΅Ρ‡Π΅Ρ€Π°ΠΌΠΈ (якщо Π· ΡΠΊΠΎΡ—ΡΡŒ ΠΏΡ€ΠΈΡ‡ΠΈΠ½ΠΈ Π²ΠΈ розмістили свої машини Π² ΠΏΠ΅Ρ‡Π΅Ρ€Π°Ρ…). Π‘Π°ΠΆΠ°Π½ΠΎ Π²ΡΡ‚Π°Π½ΠΎΠ²Π»ΡŽΠ²Π°Ρ‚ΠΈ мСншС значСння, Π½Ρ–ΠΆ для Π³ΠΎΡ€ΠΈΠ·ΠΎΠ½Ρ‚Π°Π»ΡŒΠ½ΠΎΡ— відстані.", + "sodium.extras.options.darkness.page": "БправТня тСмрява", + "sodium.extras.options.darkness.mode.title": "Π Π΅ΠΆΠΈΠΌ тСмряви", + "sodium.extras.options.darkness.mode.desc": "Π ΠΎΠ±ΠΈΡ‚ΡŒ Ρ€Π΅ΡˆΡ‚Ρƒ світу Π±Ρ–Π»ΡŒΡˆ рСалістично Ρ‚Π΅ΠΌΠ½ΠΎΡŽ. НС Π²ΠΏΠ»ΠΈΠ²Π°Ρ” Π½Π° Π΄Π΅Π½Π½Π΅ світло Π°Π±ΠΎ світло смолоскипів.\nΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŽΡ” Ρ‚Π΅, Π½Π°ΡΠΊΡ–Π»ΡŒΠΊΠΈ Ρ‚Π΅ΠΌΠ½Π° тСмрява Π²Π²Π°ΠΆΠ°Ρ”Ρ‚ΡŒΡΡ Ρ†Ρ–Π»ΠΊΠΎΠ²ΠΈΡ‚ΠΎΡŽ Ρ‚Π΅ΠΌΡ€ΡΠ²ΠΎΡŽ.", + "sodium.extras.options.darkness.mode.pitchblack": "ΠΠ±ΡΠΎΠ»ΡŽΡ‚Π½Π° ΠΏΡ–Ρ‚ΡŒΠΌΠ°", + "sodium.extras.options.darkness.mode.reallydark": "Π”ΡƒΠΆΠ΅ Ρ‚Π΅ΠΌΠ½ΠΎ", + "sodium.extras.options.darkness.mode.dark": "Π’Π΅ΠΌΠ½ΠΎ", + "sodium.extras.options.darkness.mode.dim": "Вьмяно", + "sodium.extras.options.darkness.others.title": "Π£Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π² Ρ–Π½ΡˆΠΈΡ… Π²ΠΈΠΌΡ–Ρ€Π°Ρ…", + "sodium.extras.options.darkness.others.desc": "Π―ΠΊΡ‰ΠΎ ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, справТня тСмрява Π±ΡƒΠ΄Π΅ застосовуватися Π² Ρ–Π½ΡˆΠΈΡ… Π²ΠΈΠΌΡ–Ρ€Π°Ρ…\n\n[УВАГА] Π¦Π΅ΠΉ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ Π±ΡƒΠ΄Π΅ Π²ΠΈΠ»ΡƒΡ‡Π΅Π½ΠΎ Π½Π°ΠΉΠ±Π»ΠΈΠΆΡ‡ΠΈΠΌ часом Π½Π° ΠΊΠΎΡ€ΠΈΡΡ‚ΡŒ Ρ‡ΠΎΡ€Π½ΠΎΠ³ΠΎ списку", + "sodium.extras.options.darkness.overworld.title": "Π£Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π² ΠžΡΠ½ΠΎΠ²Π½ΠΎΠΌΡƒ світі", + "sodium.extras.options.darkness.overworld.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Π² основному світі Π·Π°ΡΡ‚ΠΎΡΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ справТня тСмрява.", + "sodium.extras.options.darkness.noskylight.title": "Π£Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π² SkyLess Π²ΠΈΠΌΡ–Ρ€Π°Ρ…", + "sodium.extras.options.darkness.noskylight.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, справТня тСмрява Π·Π°ΡΡ‚ΠΎΡΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ Ρƒ Π²ΠΈΠΌΡ–Ρ€Π°Ρ… skylight", + "sodium.extras.options.darkness.nether.title": "Π£Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π² НСзСрі", + "sodium.extras.options.darkness.nether.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, справТня тСмрява Π·Π°ΡΡ‚ΠΎΡΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ Ρƒ НСзСрі.", + "sodium.extras.options.darkness.nether.brightness.title": "Π―ΡΠΊΡ€Π°Π²Ρ–ΡΡ‚ΡŒ Ρ‚ΡƒΠΌΠ°Π½Ρƒ НСзСру", + "sodium.extras.options.darkness.nether.brightness.desc": "ΠΠ°Π»Π°ΡˆΡ‚ΠΎΠ²ΡƒΡ” ΡΡΠΊΡ€Π°Π²Ρ–ΡΡ‚ΡŒ Ρ‚ΡƒΠΌΠ°Π½Ρƒ Π² НСзСрі, ΠΊΠΎΠ»ΠΈ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ тСмряву.", + "sodium.extras.options.darkness.end.title": "Π£Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π² Π•Π½Π΄Ρ–", + "sodium.extras.options.darkness.end.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, справТня тСмрява Π·Π°ΡΡ‚ΠΎΡΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ Π² Π•Π½Π΄Ρ–.", + "sodium.extras.options.darkness.end.brightness.title": "Π―ΡΠΊΡ€Π°Π²Ρ–ΡΡ‚ΡŒ Ρ‚ΡƒΠΌΠ°Π½Ρƒ Π•Π½Π΄Ρƒ", + "sodium.extras.options.darkness.end.brightness.desc": "ΠΠ°Π»Π°ΡˆΡ‚ΠΎΠ²ΡƒΡ” ΡΡΠΊΡ€Π°Π²Ρ–ΡΡ‚ΡŒ Ρ‚ΡƒΠΌΠ°Π½Ρƒ Π² Π•Π½Π΄Ρ–, ΠΊΠΎΠ»ΠΈ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ тСмряву.", + "sodium.extras.options.darkness.blocklightonly.title": "Π›ΠΈΡˆΠ΅ світло Π²Ρ–Π΄ Π±Π»ΠΎΠΊΡ–Π²", + "sodium.extras.options.darkness.blocklightonly.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Π²ΠΈΠΌΠΈΠΊΠ°Ρ” ΡΡΠΊΡ€Π°Π²Ρ–ΡΡ‚ΡŒ Π½Π΅Π±Π°, Ρ‚ΡƒΠΌΠ°Π½Ρƒ Ρ‚Π° місяця, роблячи Π±Π»ΠΎΠΊΠΈ Ρ”Π΄ΠΈΠ½ΠΈΠΌ Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎΠΌ світла", + "sodium.extras.options.darkness.moonphase.title": "Використовувати Ρ„Π°Π·ΠΈ місяця", + "sodium.extras.options.darkness.moonphase.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, тСмрява Π·Π°Π»Π΅ΠΆΠ°Ρ‚ΠΈΠΌΠ΅ Π²Ρ–Π΄ Ρ„Π°Π· місяця", + "sodium.extras.options.darkness.moonphase.fresh.title": "Π―ΡΠΊΡ€Π°Π²Ρ–ΡΡ‚ΡŒ ΠΌΠΎΠ»ΠΎΠ΄ΠΎΠ³ΠΎ ΠœΡ–ΡΡΡ†Ρ (ΠΌΡ–Π½.)", + "sodium.extras.options.darkness.moonphase.fresh.desc": "ΠΠ°Π»Π°ΡˆΡ‚ΠΎΠ²ΡƒΡ” ΡΡΠΊΡ€Π°Π²Ρ–ΡΡ‚ΡŒ ΠΏΡ–Π΄ час ΠΌΠΎΠ»ΠΎΠ΄ΠΎΠ³ΠΎ місяця Π°Π±ΠΎ ΠΌΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ яскравості Ρƒ Ρ„Π°Π·Ρ– Ρ‡ΠΎΡ€Π½ΠΎΠ³ΠΎ місяця", + "sodium.extras.options.darkness.moonphase.full.title": "Π―ΡΠΊΡ€Π°Π²Ρ–ΡΡ‚ΡŒ ΠΏΠΎΠ²Π½ΠΎΠ³ΠΎ ΠœΡ–ΡΡΡ†Ρ (макс.)", + "sodium.extras.options.darkness.moonphase.full.desc": "ΠΠ°Π»Π°ΡˆΡ‚ΠΎΠ²ΡƒΡ” ΡΡΠΊΡ€Π°Π²Ρ–ΡΡ‚ΡŒ ΠΏΡ–Π΄ час ΠΏΠΎΠ²Π½ΠΎΠ³ΠΎ місяця Π°Π±ΠΎ максимальний Ρ€Ρ–Π²Π΅Π½ΡŒ яскравості Ρƒ Ρ„Π°Π·Ρ– Ρ‡ΠΎΡ€Π½ΠΎΠ³ΠΎ місяця", + "sodium.extras.options.displayfps.title": "ΠŸΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ FPS", + "sodium.extras.options.displayfps.desc": "Π’Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ” ΠΏΠΎΡ‚ΠΎΡ‡Π½ΠΈΠΉ FPS. Π ΠΎΠ·ΡˆΠΈΡ€Π΅Π½ΠΈΠΉ Ρ€Π΅ΠΆΠΈΠΌ Ρ‚Π°ΠΊΠΎΠΆ ΠΏΠΎΠΊΠ°Π·ΡƒΡ” ΠΌΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½ΠΈΠΉ FPS, Π° Ρ‚Π°ΠΊΠΎΠΆ сСрСдній FPS Π·Π° 15 сСкунд, Ρ‰ΠΎ корисно для ΠΎΡ†Ρ–Π½ΠΊΠΈ продуктивності.", + "sodium.extras.options.displayfps.gravity.title": "Гравітація тСксту", + "sodium.extras.options.displayfps.gravity.desc": "ΠšΡƒΡ‚ΠΎΠ²Π΅ Ρ€ΠΎΠ·Ρ‚Π°ΡˆΡƒΠ²Π°Π½Π½Ρ відобраТСння FPS", + "sodium.extras.options.displayfps.gravity.left": "Π›Ρ–Π²ΠΈΠΉ", + "sodium.extras.options.displayfps.gravity.center": "Π¦Π΅Π½Ρ‚Ρ€", + "sodium.extras.options.displayfps.gravity.right": "Π‘ΠΏΡ€Π°Π²Π°", + "sodium.extras.options.displayfps.system.title": "Π’Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΠΈ ΠΌΠ΅Ρ‚Ρ€ΠΈΠΊΠΈ", + "sodium.extras.options.displayfps.system.desc": "Π’Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ” використання пам’яті Ρ‚Π° GPU ΠΏΠΎΡ€ΡƒΡ‡ Ρ–Π· Π»Ρ–Ρ‡ΠΈΠ»ΡŒΠ½ΠΈΠΊΠΎΠΌ FPS", + "sodium.extras.options.displayfps.system.gpu": "Π’Ρ–Π»ΡŒΠΊΠΈ Π³Ρ€Π°Ρ„Ρ–ΠΊΠ°", + "sodium.extras.options.displayfps.system.ram": "Π’Ρ–Π»ΡŒΠΊΠΈ ΠΏΠ°ΠΌ'ΡΡ‚ΡŒ", + "sodium.extras.options.displayfps.margin.title": "Відступ тСксту", + "sodium.extras.options.displayfps.margin.desc": "Зсув відобраТСння FPS", + "sodium.extras.options.displayfps.shadow.title": "Використовувати Ρ‚Ρ–Π½ΡŒΠΎΠ²Ρƒ Ρ€Π°ΠΌΠΊΡƒ для тСксту", + "sodium.extras.options.displayfps.shadow.desc": "Π”ΠΎΠ΄Π°Ρ” Ρ‚Ρ–Π½ΡŒΠΎΠ²Ρƒ Ρ€Π°ΠΌΠΊΡƒ Π΄ΠΎ відобраТСння FPS Ρƒ чистому стилі F3", + "sodium.extras.options.displayfps.fps": "FPS", + "sodium.extras.options.displayfps.min": "ΠœΡ–Π½", + "sodium.extras.options.displayfps.avg": "Π‘Ρ€Π΄", + "sodium.extras.options.displayfps.gpu": "GPU", + "sodium.extras.options.displayfps.mem": "ΠžΠ—ΠŸ", + "sodium.extras.options.dynlights.page": "Π”ΠΈΠ½Π°ΠΌΡ–Ρ‡Π½Π΅ освітлСння", + "sodium.extras.options.dynlights.tiles.title": "Використовувати для Π±Π»ΠΎΠΊΡ–Π² сутностСй", + "sodium.extras.options.dynlights.tiles.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Π΄ΠΈΠ½Π°ΠΌΡ–Ρ‡Π½Π΅ освітлСння Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ Π½Π° Π±Π»ΠΎΠΊΠ°Ρ… сутностях (ΠΏΠ΅Ρ‡Π°Ρ…, ΠΌΠΎΠ΄ΠΈΡ„Ρ–ΠΊΠΎΠ²Π°Π½ΠΈΡ… ΠΌΠ°ΡˆΠΈΠ½Π°Ρ… Ρ‚ΠΎΡ‰ΠΎ).\n\nΠ¦Π΅ ΠΌΠΎΠΆΠ΅ суттєво Π·Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ оновлСнь освітлСння, Π½Π°Π²Ρ–Ρ‚ΡŒ якщо Π²ΠΈ Π½Π΅ ΠΏΠ΅Ρ€Π΅Π±ΡƒΠ²Π°Ρ”Ρ‚Π΅ ΠΏΠΎΡ€ΡƒΡ‡ Ρ–Π· ΠΏΠ΅Ρ‡Π°ΠΌΠΈ", + "sodium.extras.options.dynlights.entities.title": "Використовувати для сутностСй", + "sodium.extras.options.dynlights.entities.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Π΄ΠΈΠ½Π°ΠΌΡ–Ρ‡Π½Π΅ освітлСння Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ Π½Π° сутностях (скинутих ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°Ρ…, ΠΌΠΎΠ±Π°Ρ… Ρ‚ΠΎΡ‰ΠΎ).\n\nΠ¦Π΅ ΠΌΠΎΠΆΠ΅ суттєво Π·Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ оновлСнь освітлСння, Π½Π°Π²Ρ–Ρ‚ΡŒ якщо Π²ΠΈ Π½Π΅ Ρ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅ смолоскип.", + "sodium.extras.options.dynlights.speed.title": "Π¨Π²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ оновлСння освітлСння", + "sodium.extras.options.dynlights.speed.desc": "ΠšΠ΅Ρ€ΡƒΡ” Ρ‡Π°ΡΡ‚ΠΎΡ‚ΠΎΡŽ оновлСння Π΄ΠΈΠ½Π°ΠΌΡ–Ρ‡Π½ΠΎΠ³ΠΎ освітлСння.\n\nΠŸΠ΅Ρ€Π΅Ρ€Π°Ρ…ΡƒΠ½ΠΎΠΊ освітлСння ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ рСсурсомістким, Ρ‚ΠΎΠΌΡƒ ΠΌΠ΅Π½ΡˆΡ– значСння Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡Π°Ρ‚ΡŒ ΠΊΡ€Π°Ρ‰Ρƒ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ.", + "sodium.extras.options.fadein.title": "Π―ΠΊΡ–ΡΡ‚ΡŒ поступового відобраТСння Ρ‡Π°Π½ΠΊΡ–Π²", + "sodium.extras.options.fadein.desc": "ΠšΠ΅Ρ€ΡƒΡ” ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŽ поступового відобраТСння Ρ‡Π°Π½ΠΊΡ–Π². НС Π²ΠΏΠ»ΠΈΠ²Π°Ρ” Π½Π° ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ, Ρƒ Ρ€Π΅ΠΆΠΈΠΌΡ– Β«Π’ΠΈΡˆΡƒΠΊΠ°Π½ΠΎΒ» процСс Ρ‚Ρ€ΠΈΠ²Π°Ρ” довшС, Π°Π»Π΅ виглядає Ρ‚Ρ€ΠΎΡ…ΠΈ Π΅Ρ„Π΅ΠΊΡ‚Π½Ρ–ΡˆΠ΅. Наразі Π½Π΅ ΠΏΡ€Π°Ρ†ΡŽΡ”", + "sodium.extras.options.fastchest.title": "Використовувати ΡˆΠ²ΠΈΠ΄ΠΊΡ– скрині", + "sodium.extras.options.fastchest.desc": "Π’ΠΈΠΌΠΈΠΊΠ°Ρ” Π°Π½Ρ–ΠΌΠ°Ρ†Ρ–ΡŽ ΡΠΊΡ€ΠΈΠ½ΡŒ, Π·Π°ΠΌΡ–Π½ΡŽΡŽΡ‡ΠΈ Ρ—Ρ… Π½Π° Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρ– статичні Π±Π»ΠΎΠΊΠΈ. Π¦Π΅ ΠΏΡ€ΠΈΡˆΠ²ΠΈΠ΄ΡˆΡƒΡ” Ρ€ΠΎΠ±ΠΎΡ‚Ρƒ Π³Ρ€ΠΈ Π² ΠΊΡ–ΠΌΠ½Π°Ρ‚Π°Ρ… Π·Ρ– скринями, Π°Π»Π΅ ΠΏΡ€ΠΈΠ±ΠΈΡ€Π°Ρ” Π΅Ρ„Π΅ΠΊΡ‚ відкриття.\n\nНС Π΄Ρ–Ρ”, якщо встановлСно Flywheel Π· Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΌ batching Π°Π±ΠΎ instancing", + "sodium.extras.options.fastbeds.title": "Використовувати ΡˆΠ²ΠΈΠ΄ΠΊΡ– Π»Ρ–ΠΆΠΊΠ°", + "sodium.extras.options.fastbeds.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Π·Π°ΠΌΡ–Π½ΡŽΡ” Π΄ΠΈΠ½Π°ΠΌΡ–Ρ‡Π½Ρƒ модСль Π»Ρ–ΠΆΠΊΠ° Π½Π° статичну, як Ρƒ Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎΠ³ΠΎ Π±Π»ΠΎΠΊΠ°. ΠŸΡ–Π΄Π²ΠΈΡ‰ΡƒΡ” ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ Ρ– Ρ‚Π°ΠΊΠΎΠΆ дозволяє використовувати власні ΠΌΠΎΠ΄Π΅Π»Ρ– Π· ΠΏΠ°ΠΊΡƒΠ½ΠΊΠ°ΠΌΠΈ рСсурсів", + "sodium.extras.options.fog.title": "Використовувати Ρ‚ΡƒΠΌΠ°Π½", + "sodium.extras.options.fog.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ, Π΅Ρ„Π΅ΠΊΡ‚ Ρ‚ΡƒΠΌΠ°Π½Ρƒ ΠΏΡ€ΠΈΠ±ΠΈΡ€Π°Ρ”Ρ‚ΡŒΡΡ лишС Π² ΠžΡΠ½ΠΎΠ²Π½ΠΎΠΌΡƒ світі", + "sodium.extras.options.fontshadow.title": "Π’Ρ–Π½ΡŒ ΡˆΡ€ΠΈΡ„Ρ‚Ρƒ", + "sodium.extras.options.fontshadow.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ, тСкст Π·ΠΎΠ±Ρ€Π°ΠΆΠ°ΡŽΡ‚ΡŒΡΡ Π±Π΅Π· Ρ‚Ρ–Π½Π΅ΠΉ, Ρƒ плоскому стилі. \nΠŸΡ–Π΄Π²ΠΈΡ‰ΡƒΡ” FPS Π·Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– тСксту Π½Π° Π΅ΠΊΡ€Π°Π½Ρ–, особливо Π· ΠΌΠΎΠ΄Π°ΠΌΠΈ Π½Π° ΠΊΡˆΡ‚Π°Π»Ρ‚ BetterF3", + "sodium.extras.options.jei.title": "ΠŸΡ€ΠΈΡ…ΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈ JEI, Π΄ΠΎΠΊΠΈ Π½Π΅ Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΎ ΠΏΠΎΡˆΡƒΠΊ", + "sodium.extras.options.jei.desc": "Коли ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, список ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² JEI Π±ΡƒΠ΄Π΅ ΠΏΡ€ΠΈΡ…ΠΎΠ²Π°Π½ΠΈΠΉ, ΠΏΠΎΠΊΠΈ Π²ΠΈ Π½Ρ–Ρ‡ΠΎΠ³ΠΎ Π½Π΅ ΡˆΡƒΠΊΠ°Ρ‚ΠΈΠΌΠ΅Ρ‚Π΅. ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ ΠΏΡ€ΠΎΠ±Ρ–Π», Ρ‰ΠΎΠ± ΡˆΡƒΠΊΠ°Ρ‚ΠΈ всС.", + "sodium.extras.options.screen.title": "ΠŸΠΎΠ²Π½ΠΎΠ΅ΠΊΡ€Π°Π½Π½ΠΈΠΉ Π Π΅ΠΆΠΈΠΌ", + "sodium.extras.options.screen.desc": "Π’Ρ–ΠΊΠΎΠ½Π½ΠΈΠΉ Ρ€Π΅ΠΆΠΈΠΌ β€” Π³Ρ€Π° Π·ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ”Ρ‚ΡŒΡΡ Ρƒ Π½Π΅Π²Π΅Π»ΠΈΠΊΠΎΠΌΡƒ Π²Ρ–ΠΊΠ½Ρ–. \nΠ‘Π΅Π·Ρ€Π°ΠΌΠΊΠΎΠ²ΠΈΠΉ Ρ€Π΅ΠΆΠΈΠΌ β€” Π³Ρ€Π° Ρ€ΠΎΠ·Π³ΠΎΡ€Ρ‚Π°Ρ”Ρ‚ΡŒΡΡ Π½Π° вСсь Π΅ΠΊΡ€Π°Π½ Ρ– ΡΠΈΠ½Ρ…Ρ€ΠΎΠ½Ρ–Π·ΡƒΡ”Ρ‚ΡŒΡΡ Π· Ρ‡Π°ΡΡ‚ΠΎΡ‚ΠΎΡŽ оновлСння ΠΌΠΎΠ½Ρ–Ρ‚ΠΎΡ€Π°, Π°Π»Π΅ дозволяє Π»Π΅Π³ΠΊΠΎ Π·Π³ΠΎΡ€Ρ‚Π°Ρ‚ΠΈ Π²Ρ–ΠΊΠ½ΠΎ. \nΠŸΠΎΠ²Π½ΠΎΠ΅ΠΊΡ€Π°Π½Π½ΠΈΠΉ Ρ€Π΅ΠΆΠΈΠΌ β€” Π³Ρ€Π° Π·ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ”Ρ‚ΡŒΡΡ Ρƒ Ρ€Ρ–Π΄Π½ΠΎΠΌΡƒ ΠΏΠΎΠ²Π½ΠΎΠ΅ΠΊΡ€Π°Π½Π½ΠΎΠΌΡƒ Ρ€Π΅ΠΆΠΈΠΌΡ–.", + "sodium.extras.options.screen.borderless": "Π‘Π΅Π· Ρ€Π°ΠΌΠΎΠΊ", + "sodium.extras.options.screen.windowed": "Π’Ρ–ΠΊΠΎΠ½Π½ΠΈΠΉ", + "sodium.extras.options.zoom.page": "ΠœΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ", + "sodium.extras.options.zoom.cinematic.title": "ΠšΡ–Π½Π΅ΠΌΠ°Ρ‚ΠΎΠ³Ρ€Π°Ρ„Ρ–Ρ‡Π½Π΅ наблиТСння", + "sodium.extras.options.zoom.cinematic.desc": "Π£Π²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ ΠΊΡ–Π½Π΅ΠΌΠ°Ρ‚ΠΎΠ³Ρ€Π°Ρ„Ρ–Ρ‡Π½Ρƒ ΠΊΠ°ΠΌΠ΅Ρ€Ρƒ ΠΏΡ–Π΄ час наблиТСння. \nΠ―ΠΊΡ‰ΠΎ Π²ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ Ρ†ΡŽ ΠΎΠΏΡ†Ρ–ΡŽ, Π²Π°Ρ€Ρ‚ΠΎ Ρ‚Π°ΠΊΠΎΠΆ встановити `zoomSmoothnessMs` Π½Π° `0`", + "sodium.extras.options.zoom.sensitive.title": "Π§ΡƒΡ‚Π»ΠΈΠ²Ρ–ΡΡ‚ΡŒ ΠΌΠΈΡˆΡ–", + "sodium.extras.options.zoom.sensitive.desc": "Π§ΡƒΡ‚Π»ΠΈΠ²Ρ–ΡΡ‚ΡŒ ΠΌΠΈΡˆΡ– Π½Π΅ Π·ΠΌΠ΅Π½ΡˆΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ Π½ΠΈΠΆΡ‡Π΅ Ρ†ΡŒΠΎΠ³ΠΎ значСння ΠΏΡ–Π΄ час наблиТСння. \nΠ’ΡΡ‚Π°Π½ΠΎΠ²Ρ–Ρ‚ΡŒ `1.0`, Ρ‰ΠΎΠ± ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°Π±ΠΎΡ€ΠΎΠ½ΠΈΡ‚ΠΈ Π·ΠΌΡ–Π½Ρƒ (Π½Π΅ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”Ρ‚ΡŒΡΡ Π±Π΅Π· `enableCinematicZoom`)", + "sodium.extras.options.zoom.speed.title": "Π¨Π²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ ΠœΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ", + "sodium.extras.options.zoom.speed.desc": "Π¨Π²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ для ΠΊΠ»Π°Π²Ρ–Ρˆ наблиТСння/віддалСння Ρ‚Π° прокручування ΠΌΠ°ΡΡˆΡ‚Π°Π±Ρƒ (якщо Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ).", + "sodium.extras.options.zoom.scrolling.title": "ΠŸΡ€ΠΎΠΊΡ€ΡƒΡ‡ΡƒΠ²Π°Π½Π½Ρ ΠΌΠ°ΡΡˆΡ‚Π°Π±Ρƒ", + "sodium.extras.options.zoom.scrolling.desc": "Дозволяє Π½Π°Π±Π»ΠΈΠΆΠ°Ρ‚ΠΈ Ρ‚Π° віддаляти зобраТСння прокручуванням ΠΊΠΎΠ»Ρ–Ρ‰Π°Ρ‚ΠΊΠ° ΠΌΠΈΡˆΡ– ΠΏΡ–Π΄ час Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ. \nΠ―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, Ρ†Π΅ Π±Π»ΠΎΠΊΡƒΡ” прокручування гарячої ΠΏΠ°Π½Π΅Π»Ρ– ΠΏΡ–Π΄ час наблиТСння.", + "sodium.extras.options.zoom.smoothness.title": "ΠŸΠ»Π°Π²Π½Ρ–ΡΡ‚ΡŒ ΠΌΠ°ΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ Ρƒ мілісСкундах", + "sodium.extras.options.zoom.smoothness.desc": "Π—ΠΌΡ–Π½ΠΈ поля Π·ΠΎΡ€Ρƒ Ρ€ΠΎΠ·Ρ‚ΡΠ³ΡƒΠ²Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒΡΡ Π½Π° Π²ΠΊΠ°Π·Π°Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ мілісСкунд. \nΠ’ΡΡ‚Π°Π½ΠΎΠ²Ρ–Ρ‚ΡŒ `0`, Ρ‰ΠΎΠ± Π²ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π°Π½Ρ–ΠΌΠ°Ρ†Ρ–ΡŽ.", + "sodium.extras.options.zoom.easing.title": "Показник згладТування", + "sodium.extras.options.zoom.easing.desc": "ΠŸΡ€ΠΎΠ³Ρ€Π΅Ρ Π°Π½Ρ–ΠΌΠ°Ρ†Ρ–Ρ— згладТування ΠΏΡ–Π΄Π½ΠΎΡΠΈΡ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ ΠΏΠΎΠΊΠ°Π·Π½ΠΈΠΊΠ° для Π΅Ρ„Π΅ΠΊΡ‚Ρƒ зглаТування. Π’ΠΈΡ‰Ρ– значСння ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ відчуття швидшого Ρ€ΡƒΡ…Ρƒ. \nΠ Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”Ρ‚ΡŒΡΡ Ρ‚Π°ΠΊΠΎΠΆ Π·Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ `zoomSmoothnessMs` ΠΏΡ€ΠΈ ΠΏΡ–Π΄Π²ΠΈΡ‰Π΅Π½Π½Ρ– Ρ†ΡŒΠΎΠ³ΠΎ значСння. \nΠ’ΡΡ‚Π°Π½ΠΎΠ²Ρ–Ρ‚ΡŒ `1`, Ρ‰ΠΎΠ± Π²ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ.", + "sodium.extras.options.zoom.quadratics.title": "Використовувати ΠΊΠ²Π°Π΄Ρ€Π°Ρ‚ΠΈΡ‡Π½Π΅", + "sodium.extras.options.zoom.quadratics.desc": "Відсоток ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ Π±ΡƒΠ΄Π΅ Π·Π²Π΅Π΄Π΅Π½ΠΎ Ρƒ ΠΊΠ²Π°Π΄Ρ€Π°Ρ‚ ΠΏΠ΅Ρ€Π΅Π΄ застосуванням, якщо встановлСно `true`. \nΠ¦Π΅ Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ Π·ΠΌΡ–Π½ΠΈ поля Π·ΠΎΡ€Ρƒ Π±Ρ–Π»ΡŒΡˆ Ρ€Ρ–Π²Π½ΠΎΠΌΡ–Ρ€Π½ΠΈΠΌΠΈ. \nΠ Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”Ρ‚ΡŒΡΡ Π·Π°Π»ΠΈΡˆΠΈΡ‚ΠΈ Ρ†ΡŽ ΠΎΠΏΡ†Ρ–ΡŽ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎΡŽ, якщо Π²ΠΈ Π½Π΅ Ρ€ΠΎΠ·ΡƒΠΌΡ–Ρ”Ρ‚Π΅, як самС Π²ΠΎΠ½Π° ΠΏΡ€Π°Ρ†ΡŽΡ”.", + "sodium.extras.options.zoom.default.title": "ΠœΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ Π·Π° замовчуванням", + "sodium.extras.options.zoom.default.desc": "ΠŸΠΎΡ‡Π°Ρ‚ΠΊΠΎΠ²ΠΈΠΉ відсоток ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ Π·Π° замовчуванням.", + "sodium.extras.options.zoom.toggle.title": "Π Π΅ΠΆΠΈΠΌ пСрСмикання", + "sodium.extras.options.zoom.toggle.desc": "Π―ΠΊΡ‰ΠΎ встановлСно `true`, ΠΊΠ»Π°Π²Ρ–ΡˆΠ° ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈΠΌΠ΅ як ΠΏΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°Ρ‡. Π―ΠΊΡ‰ΠΎ встановлСно `false`, Π·ΡƒΠΌ Π±ΡƒΠ΄Π΅ Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΌ лишС ΠΏΡ–Π΄ час утримання ΠΊΠ»Π°Π²Ρ–ΡˆΡ–.", + "sodium.extras.options.zoom.max.title": "МаксимальнС ΠΏΠΎΠ»Π΅ Π·ΠΎΡ€Ρƒ", + "sodium.extras.options.zoom.max.desc": "МаксимальнС ΠΏΠΎΠ»Π΅ Π·ΠΎΡ€Ρƒ ΠΏΡ–Π΄ час ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ.", + "sodium.extras.options.zoom.min.title": "ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Π΅ ΠΏΠΎΠ»Π΅ Π·ΠΎΡ€Ρƒ", + "sodium.extras.options.zoom.min.desc": "МаксимальнС ΠΏΠΎΠ»Π΅ Π·ΠΎΡ€Ρƒ ΠΏΡ–Π΄ час ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ.", + "sodium.extras.options.others.page": "Π†Π½ΡˆΡ–", + "sodium.extras.options.others.borderless.attachmode.title": "Π‘Π΅Π·Ρ€Π°ΠΌΠΊΠΎΠ²ΠΈΠΉ ΠΏΠΎΠ²Π½ΠΎΠ΅ΠΊΡ€Π°Π½Π½ΠΈΠΉ Ρ€Π΅ΠΆΠΈΠΌ Π½Π° F11", + "sodium.extras.options.others.borderless.attachmode.desc": "ΠΠ°Π»Π°ΡˆΡ‚ΠΎΠ²ΡƒΡ”, як самС ΠΌΠ°Ρ” застосовуватися Π±Π΅Π·Ρ€Π°ΠΌΠΊΠΎΠ²ΠΈΠΉ ΠΏΠΎΠ²Π½ΠΎΠ΅ΠΊΡ€Π°Π½Π½ΠΈΠΉ Ρ€Π΅ΠΆΠΈΠΌ \n\nATTACH β€” Π΄ΠΎΠ΄Π°Ρ” ΠΉΠΎΠ³ΠΎ ΠΌΡ–ΠΆ Π²Ρ–ΠΊΠΎΠ½Π½ΠΈΠΌ Ρ– ΠΏΠΎΠ²Π½ΠΎΠ΅ΠΊΡ€Π°Π½Π½ΠΈΠΌ Ρ€Π΅ΠΆΠΈΠΌΠ°ΠΌΠΈ \nREPLACE β€” Π·Π°ΠΌΡ–Π½ΡŽΡ” ΠΏΠΎΠ²Π½ΠΎΠ΅ΠΊΡ€Π°Π½Π½ΠΈΠΉ Ρ€Π΅ΠΆΠΈΠΌ Π½Π° Π±Π΅Π·Ρ€Π°ΠΌΠΊΠΎΠ²ΠΈΠΉ \nOFF β€” Π²ΠΈΠΌΠΈΠΊΠ°Ρ” прив’язку Π±Π΅Π·Ρ€Π°ΠΌΠΊΠΎΠ²ΠΎΠ³ΠΎ ΠΏΠΎΠ²Π½ΠΎΠ΅ΠΊΡ€Π°Π½Π½ΠΎΠ³ΠΎ Ρ€Π΅ΠΆΠΈΠΌΡƒ Π΄ΠΎ ΠΊΠ»Π°Π²Ρ–ΡˆΡ– F11", + "sodium.extras.options.others.languagescreen.fastreload.title": "Π¨Π²ΠΈΠ΄ΠΊΠ΅ пСрСзавантаТСння ΠΌΠΎΠ²ΠΈ", + "sodium.extras.options.others.languagescreen.fastreload.desc": "Π―ΠΊΡ‰ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ, оновлСння ΠΌΠΎΠ²ΠΈ ΠΏΠ΅Ρ€Π΅Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΡƒΠ²Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ лишС ΠΌΠΎΠ²Π½Ρ– Ρ„Π°ΠΉΠ»ΠΈ Π·Π°ΠΌΡ–ΡΡ‚ΡŒ усіх рСсурсів, Ρ‰ΠΎ Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡ” ΠΌΠ°ΠΉΠΆΠ΅ 99,9% приросту ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ–" +} \ No newline at end of file diff --git a/kubejs/assets/sophisticatedbackpacks/lang/ru_ru.json b/kubejs/assets/sophisticatedbackpacks/lang/ru_ru.json index 466f053e7..feaeb3f67 100644 --- a/kubejs/assets/sophisticatedbackpacks/lang/ru_ru.json +++ b/kubejs/assets/sophisticatedbackpacks/lang/ru_ru.json @@ -1,11 +1,11 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", - "item.sophisticatedbackpacks.iron_backpack": "Рюкзак (ΠšΡ€Π°ΡΠ½Π°Ρ ΡΡ‚Π°Π»ΡŒ)", - "item.sophisticatedbackpacks.gold_backpack": "Рюкзак (Алюминий)", - "item.sophisticatedbackpacks.diamond_backpack": "Рюкзак (Π’ΠΈΡ‚Π°Π½)", - "item.sophisticatedbackpacks.netherite_backpack": "Рюкзак (Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ)", "block.sophisticatedbackpacks.iron_backpack": "Рюкзак (ΠšΡ€Π°ΡΠ½Π°Ρ ΡΡ‚Π°Π»ΡŒ)", "block.sophisticatedbackpacks.gold_backpack": "Рюкзак (Алюминий)", "block.sophisticatedbackpacks.diamond_backpack": "Рюкзак (Π’ΠΈΡ‚Π°Π½)", - "block.sophisticatedbackpacks.netherite_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/en_us.json b/kubejs/assets/species/lang/en_us.json index dbc5806c7..8a6bbf4a8 100644 --- a/kubejs/assets/species/lang/en_us.json +++ b/kubejs/assets/species/lang/en_us.json @@ -1,5 +1,26 @@ { "__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": "Glacian Cap", - "block.species.petrified_egg": "Goober Egg" + "block.species.petrified_egg": "Goober Egg", + "item.species.wicked_mask": "Disguise Kit", + "item.species.wicked_swapper": "Swapper Pearl", + "item.species.wicked_treat": "Pet Treat", + "subtitles.item.species.wicked_mask.link": "Disguise Kit molds", + "subtitles.item.species.wicked_mask.equip": "Disguise Kit sticks", + "subtitles.item.species.wicked_swapper.throw": "Swapper Pearl flies", + "subtitles.item.species.wicked_swapper.fail": "Swapper Pearl drops", + "subtitles.item.species.wicked_swapper.teleport": "Swapper Pearl swaps", + "item.species.trooper_spawn_egg": "Sulfie Spawn Egg", + "item.species.wicked_treat.desc.snatched": "Super Speed II (0:45)", + "item.species.wicked_treat.desc.iron_will": "Knockback Resistance (0:45)", + "entity.species.trooper": "Sulfie", + "subtitles.entity.species.trooper.death": "Sulfie dies", + "subtitles.entity.species.trooper.hurt": "Sulfie hurts", + "subtitles.entity.species.trooper.step": "Sulfie trots", + "subtitles.entity.species.trooper.uproot": "Sulfie uproots", + "subtitles.entity.species.trooper.plant": "Sulfie plants", + "effect.species.iron_will": "Knockback Resistance", + "effect.species.iron_will.description": "Prevents all knockback.", + "effect.species.snatched": "Super Speed", + "effect.species.snatched.description": "Grants faster Movement Speed scaling with levels. Makes affected entities taller and thinner." } \ No newline at end of file diff --git a/kubejs/assets/species/lang/ja_jp.json b/kubejs/assets/species/lang/ja_jp.json new file mode 100644 index 000000000..0bbace303 --- /dev/null +++ b/kubejs/assets/species/lang/ja_jp.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.species.alphacene_moss_block": "グラシをンγγ‚­γƒ£γƒƒγƒ—", + "block.species.petrified_egg": "グーバーγε΅" +} \ No newline at end of file diff --git a/kubejs/assets/species/lang/ru_ru.json b/kubejs/assets/species/lang/ru_ru.json new file mode 100644 index 000000000..ebb04f9d0 --- /dev/null +++ b/kubejs/assets/species/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.species.alphacene_moss_block": "Π¨Π°ΠΏΠΎΡ‡ΠΊΠ° гласивника", + "block.species.petrified_egg": "Π―ΠΉΡ†ΠΎ слюпика" +} \ No newline at end of file diff --git a/kubejs/assets/species/lang/zh_cn.json b/kubejs/assets/species/lang/zh_cn.json index 011644687..127111949 100644 --- a/kubejs/assets/species/lang/zh_cn.json +++ b/kubejs/assets/species/lang/zh_cn.json @@ -1,5 +1,516 @@ { "__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": "ιœœεŽŸδΌžη›–", - "block.species.petrified_egg": "ι»ζΆ•ε…½εˆ·ζ€ͺθ›‹" + "block.species.alphacene_moss_block": "首新世苔藓块", + "block.species.petrified_egg": "ηŸ³εŒ–θ›‹", + "itemGroup.species.species": "物种", + "item.species.logo": "物种", + "advancements.species.root.title": "物种", + "advancements.species.root.description": "", + "advancements.species.v1.title": "物种倍苏 I: 发布", + "advancements.species.v1.description": "ζ­€ζ¬‘ζ›΄ζ–°ηš„δΈ»ι’˜ζ˜―ζ²‘ζœ‰δΈ»ι’˜", + "species.developer.made_by": "εˆΆδ½œθ€…:", + "species.developer.contribution_level.developer": " ", + "species.developer.contribution_level.guest_artist": "(ε’εΊ§θ‰Ίζœ―εΆ)", + "species.developer.contribution_level.composer": "(δ½œζ›²εΆ)", + "species.developer.contribution_level.contributor": "(θ΄‘ηŒθ€…)", + "key.categories.species": "物种", + "key.extend": "η°§ι’ˆε…½δΌΈι•Ώ", + "key.retract": "η°§ι’ˆε…½ηΌ©ηŸ­", + "item.species.whenEaten": "ι£Ÿη”¨ζ—ΆοΌš", + "entity.species.wraptor": "译恐鸟", + "block.species.wraptor_egg": "θ―‘ζιΈŸθ›‹", + "block.species.cracked_wraptor_egg": "η ΄θ£‚ηš„θ―‘ζιΈŸθ›‹", + "item.species.cracked_wraptor_egg": "η ΄θ£‚ηš„θ―‘ζιΈŸθ›‹", + "item.species.wraptor_spawn_egg": "译恐鸟刷ζ€ͺθ›‹", + "effect.species.wither_resistance": "ε‡‹ι›ΆζŠ—ζ€§", + "effect.species.wither_resistance.description": "ζΆˆι™€ε‡‹ι›Άζ•ˆζžœεΉΆι˜²ζ­’ε—εˆ°ζ­€ζ•ˆζžœε½±ε“γ€‚", + "subtitles.entity.species.wraptor.aggro": "θ―‘ζιΈŸοΌšε•Όε«", + "subtitles.entity.species.wraptor.agitated": "译恐鸟:躁鸣", + "subtitles.entity.species.wraptor.attack": "θ―‘ζιΈŸοΌšε•„ε‡»", + "subtitles.entity.species.wraptor.death": "译恐鸟:死云", + "subtitles.entity.species.wraptor.hurt": "θ―‘ζιΈŸοΌšε—δΌ€", + "subtitles.entity.species.wraptor.idle": "θ―‘ζιΈŸοΌšε’―ε’―ε«", + "subtitles.entity.species.wraptor.shear": "ε‰ͺεˆ€οΌšε‰ͺζ–­", + "subtitles.entity.species.wraptor.step": "θ―‘ζιΈŸοΌšθ„šζ­₯ε£°", + "subtitles.entity.species.wraptor.feather_loss": "θ―‘ζιΈŸοΌšθ„±ηΎ½", + "subtitles.entity.species.wraptor.egg": "θ―‘ζιΈŸοΌšδΈ‹θ›‹", + "subtitles.block.species.wraptor_egg.crack": "θ―‘ζιΈŸθ›‹οΌšθ£‚εΌ€", + "subtitles.block.species.wraptor_egg.hatch": "θ―‘ζιΈŸθ›‹οΌšε­΅εŒ–", + "subtitles.item.species.cracked_wraptor_egg.slurp": "εεΈ", + "advancements.species.shear_wraptor_completely.title": "ε€§θͺ明", + "advancements.species.shear_wraptor_completely.description": "ε‰ͺε…‰θ―‘ζιΈŸηš„ηΎ½ζ―›εΉΆε‡†ε€‡ε₯½ι’临后果", + "advancements.species.hatch_wraptor.title": "ζ·±ζ²‰ηš„ηˆ±", + "advancements.species.hatch_wraptor.description": "用铁砧ζ₯ε­΅εŒ–θ―‘ζιΈŸθ›‹", + "entity.species.deepfish": "深吟鱼", + "item.species.deepfish_spawn_egg": "深吟鱼刷ζ€ͺθ›‹", + "item.species.deepfish_bucket": "深吟鱼摢", + "subtitles.entity.species.deepfish.flop": "ζ·±εŸι±ΌοΌšζ‰‘θ…Ύ", + "subtitles.entity.species.deepfish.death": "深吟鱼:死云", + "subtitles.entity.species.deepfish.hurt": "ζ·±εŸι±ΌοΌšε—δΌ€", + "subtitles.entity.species.deepfish.idle": "深吟鱼:嚎叫", + "advancements.species.deepfish_in_a_bucket.title": "ζ·±ζΈŠηš„εŸε”±", + "advancements.species.deepfish_in_a_bucket.description": "η”¨ι“ζ‘Άζ•θŽ·δΈ€εͺ深吟鱼", + "entity.species.stackatick": "ε θ‘Œθ™«", + "item.species.stackatick_spawn_egg": "ε θ‘Œθ™«εˆ·ζ€ͺθ›‹", + "subtitles.entity.species.stackatick.eat": "ε θ‘Œθ™«οΌšθΏ›ι£Ÿ", + "subtitles.entity.species.stackatick.death": "ε θ‘Œθ™«οΌšζ­»δΊ‘", + "subtitles.entity.species.stackatick.hurt": "ε θ‘Œθ™«οΌšε—δΌ€", + "subtitles.entity.species.stackatick.idle": "ε θ‘Œθ™«οΌšζ•²ε‡»", + "subtitles.entity.species.stackatick.snoring": "ε θ‘Œθ™«οΌšζ‰“ιΌΎ", + "subtitles.entity.species.stackatick.step": "ε θ‘Œθ™«οΌšε‰θΏ›", + "subtitles.entity.species.stackatick.sit": "ε θ‘Œθ™«οΌšεδΈ‹", + "subtitles.entity.species.stackatick.stand_up": "ε θ‘Œθ™«οΌšθ΅·θΊ«", + "entity.species.birt": "ε“”η‰Ή", + "item.species.birt_spawn_egg": "ε“”η‰Ήεˆ·ζ€ͺθ›‹", + "item.species.birt_egg": "ε“”η‰Ήθ›‹", + "entity.species.birt_egg": "ε“”η‰Ήθ›‹", + "item.species.birt_egg.desc.birtd": "ε“”ε“”ε•΅ε•΅οΌˆ0:03οΌ‰", + "item.species.birt_egg.desc.effect": "禁歒移动", + "block.species.birt_dwelling": "ε“”η‰Ήε·’", + "item.species.music_disc_dial": "ιŸ³δΉε”±η‰‡", + "item.species.music_disc_dial.desc": "lunarbunten - dial", + "effect.species.birtd": "ε“”ε“”ε•΅ε•΅", + "effect.species.birtd.description": "禁歒εžδ½“η§»εŠ¨οΌŒεΉΆεœ¨ε—ε½±ε“ηš„εžδ½“δΈŠζ–ΉδΊ§η”Ÿε“”η‰Ήη²’ε­ζ•ˆζžœγ€‚", + "subtitles.entity.species.birt.death": "ε“”η‰ΉοΌšζ­»δΊ‘", + "subtitles.entity.species.birt.hurt": "ε“”η‰ΉοΌšε—δΌ€", + "subtitles.entity.species.birt.idle": "ε“”η‰ΉοΌšε•ε•Ύ", + "subtitles.entity.species.birt.fly": "ε“”η‰ΉοΌšι£žθ‘Œ", + "subtitles.entity.species.birt.search": "ε“”η‰ΉοΌšζœε―»", + "subtitles.entity.species.birt.message": "ε“”η‰ΉοΌšι€šδΏ‘", + "subtitles.effect.birtd.applied": "ε“”η‰ΉοΌšε“”ε“”ε•΅ε•΅", + "subtitles.block.species.birt_dwelling.collect": "ε“”η‰Ήθ›‹οΌšζ”Άι›†", + "subtitles.block.species.birt_dwelling.enter": "ε“”η‰ΉοΌšε…₯ε·’", + "subtitles.block.species.birt_dwelling.exit": "ε“”η‰ΉοΌšη¦»ε·’", + "subtitles.block.species.birt_dwelling.work": "ε“”η‰ΉοΌšε―†θ°‹", + "subtitles.item.species.birt_egg.throw": "ε“”η‰Ήθ›‹οΌšι£žε‡Ί", + "subtitles.item.species.birt_egg.hit": "ε“”η‰Ήθ›‹οΌšε‡»δΈ­", + "block.species.birtday_cake": "哔特蛋糕", + "container.species.birtday_cake": "θΎη½η”Ÿζ—₯俑息", + "item.species.birtday_cake_slice": "哔特蛋糕片", + "item.species.birtday_cake_slice.desc.birtd": "ε“”ε“”ε•΅ε•΅οΌˆ0:10οΌ‰", + "item.species.birtday_cake_slice.desc.effect": "禁歒移动", + "subtitles.block.species.birtday_cake.blow": "ε“”η‰Ήθ›‹η³•οΌšδΌ ζ’­δΏ‘ε·", + "messages.species.birtday": "δΈ€εͺε°ε°ε“”η‰Ήε‘Šθ―‰ζˆ‘ % 今倩 % 岁了!", + "advancements.species.birt_egg_at_warden.title": "ιΈŸθΏ›εˆΆ", + "advancements.species.birt_egg_at_warden.description": "向监εˆθ€…ζ‰”δΈ€ζžšε“”η‰Ήθ›‹οΌŒη„ΆεŽζ΄»η€θ²θΏ°θΏ™δΈͺζ•…δΊ‹", + "entity.species.limpet": "矿壳贝", + "item.species.limpet_spawn_egg": "矿壳贝刷ζ€ͺθ›‹", + "subtitles.entity.species.limpet.death": "矿壳贝:死云", + "subtitles.entity.species.limpet.hurt": "ηŸΏε£³θ΄οΌšε—δΌ€", + "subtitles.entity.species.limpet.idle": "矿壳贝:嘎吱声", + "subtitles.entity.species.limpet.step": "ηŸΏε£³θ΄οΌšθ„šζ­₯ε£°", + "subtitles.entity.species.limpet.deflect": "矿壳贝:防徑", + "subtitles.entity.species.limpet.break": "ηŸΏε£³θ΄οΌšε€–ε£³η ΄θ£‚", + "advancements.species.break_limpet.title": "ι»„ι‡‘ηŸΏε·₯", + "advancements.species.break_limpet.description": "ζ‰“η ΄ηŸΏε£³θ΄ηš„ε€–ε£³δ»₯攢集εƒθΊ«δΈŠηš„ηŸΏη‰©", + "advancements.species.silk_touch_break_limpet.title": "δΉ°ζ ͺ还怟", + "advancements.species.silk_touch_break_limpet.description": "η”¨η²Ύε‡†ι‡‡ι›†η ΄εΌ€ηŸΏε£³θ΄ηš„ε€–ε£³", + "advancements.species.v2.title": "物种倍苏 IIοΌšι‚£δΊ›θ’«ζ—Άι—΄ι—εΏ˜ηš„η”Ÿη‰©", + "advancements.species.v2.description": "ζ­€ζ¬‘ζ›΄ζ–°ηš„δΈ»ι’˜ε°±ζ˜―θΎθ‘δΊ†θΈε€šζœ‰θΆ£ηš„ε²ε‰η”Ÿη‰©γ€‚", + "block.species.red_suspicious_sand": "ε―η–‘ηš„ηΊ’ζ²™", + "block.species.bone_bark": "ιͺ¨ηšε±‚", + "block.species.bone_vertebra": "θ„Šζ€Žιͺ¨", + "block.species.bone_spike": "ιͺ¨εˆΊ", + "item.species.music_disc_lapidarian": "ιŸ³δΉε”±η‰‡", + "item.species.music_disc_lapidarian.desc": "Exclaim! - Lapidarian", + "advancements.species.ancient_eggs.title": "ζˆ‘δ»¬ε›žζ₯δΊ†", + "advancements.species.ancient_eggs.description": "εœ¨δ½ ηš„η‰©ε“ζ δΈ­ι›†ι½ζ‰€ζœ‰η§η±»ηš„θΏœε€θ›‹", + "entity.species.treeper": "树立怕", + "item.species.treeper_spawn_egg": "ζ ‘η«‹ζ€•εˆ·ζ€ͺθ›‹", + "item.species.ancient_pinecone": "远叀松果", + "block.species.trooper": "ζžœη«‹ζ€•", + "block.species.potted_trooper": "ζžœη«‹ζ€•η›†ζ ½", + "item.species.trooper_spawn_egg": "η‘«εŠ›ζ€•εˆ·ζ€ͺθ›‹", + "subtitles.entity.species.treeper.death": "ζ ‘η«‹ζ€•οΌšζ­»δΊ‘", + "subtitles.entity.species.treeper.hurt": "ζ ‘η«‹ζ€•οΌšε—δΌ€", + "subtitles.entity.species.treeper.idle": "ζ ‘η«‹ζ€•οΌšδ½Žθ―­", + "subtitles.entity.species.treeper.idle_planted": "ζ ‘οΌšε―η–‘ηš„ε™Όε•ͺε£°", + "subtitles.entity.species.treeper.plant": "ζ ‘η«‹ζ€•οΌšζ‰Žζ Ή", + "subtitles.entity.species.treeper.uproot": "ζ ‘η«‹ζ€•οΌšζ‹”ζ Ήθ€Œθ΅·", + "subtitles.entity.species.treeper.step": "ζ ‘η«‹ζ€•οΌšζΈΈθ‘", + "subtitles.entity.species.treeper.shake_fail": "ζ ‘η«‹ζ€•οΌšζ™ƒεŠ¨", + "subtitles.entity.species.treeper.shake_success": "ζ ‘η«‹ζ€•οΌšζŽ‰θ½ζ ‘θ‹—", + "advancements.species.burn_treeper_into_place.title": "η₯žη»ζŸδΌ€", + "advancements.species.burn_treeper_into_place.description": "灼烧树立怕δ»₯防歒εƒη§»εЍ", + "advancements.species.tame_trooper.title": "ζˆ‘δΈΊζ ‘η«‹ζ€•δ»£θ¨€", + "advancements.species.tame_trooper.description": "η§δΈ‹θΏœε€ζΎζžœεΉΆε°†ε…Άη”Ÿι•Ώε‡Ίηš„ζžœη«‹ζ€•ι©―ζœ", + "entity.species.goober": "黏梕兽", + "entity.species.goober_goo": "黏梕兽鼻梕", + "item.species.goober_spawn_egg": "ι»ζΆ•ε…½εˆ·ζ€ͺθ›‹", + "block.species.alphacene_moss_carpet": "ι¦–ζ–°δΈ–θ¦†εœ°θ‹”θ—“", + "block.species.alphacene_grass_block": "首新世草方块", + "block.species.alphacene_grass": "首新世草", + "block.species.alphacene_tall_grass": "ι¦–ζ–°δΈ–ι«˜θ‰δΈ›", + "block.species.alphacene_mushroom": "ι¦–ζ–°δΈ–θ˜‘θ‡", + "block.species.alphacene_mushroom_block": "ι¦–ζ–°δΈ–θ˜‘θ‡ζ–Ήε—", + "block.species.alphacene_mushroom_growth": "ι¦–ζ–°δΈ–θ˜‘θ‡ε’žη”Ÿδ½“", + "subtitles.entity.species.goober.death": "ι»ζΆ•ε…½οΌšζ­»δΊ‘", + "subtitles.entity.species.goober.hurt": "ι»ζΆ•ε…½οΌšε—δΌ€", + "subtitles.entity.species.goober.idle": "ι»ζΆ•ε…½οΌšε’•ε“", + "subtitles.entity.species.goober.idle_resting": "ι»ζΆ•ε…½οΌšε›°ε€¦εœ°ε‘»εŸ", + "subtitles.entity.species.goober.sneeze": "ι»ζΆ•ε…½οΌšζ‰“ε–·εš", + "subtitles.entity.species.goober.lay_down": "ι»ζΆ•ε…½οΌšδΌ‘ζ†©", + "subtitles.entity.species.goober.rear_up": "ι»ζΆ•ε…½οΌšη«™η«‹", + "subtitles.entity.species.goober.step": "ι»ζΆ•ε…½οΌšθ„šζ­₯ε£°", + "subtitles.entity.species.goober.yawn": "ι»ζΆ•ε…½οΌšζ‰“ε“ˆζ¬ ", + "subtitles.entity.species.goober.eat": "ι»ζΆ•ε…½οΌšθΏ›ι£Ÿ", + "subtitles.block.species.petrified_egg.crack": "ηŸ³εŒ–θ›‹οΌšθ£‚εΌ€", + "subtitles.block.species.petrified_egg.hatch": "ηŸ³εŒ–θ›‹οΌšε­΅εŒ–", + "subtitles.block.species.petrified_egg.plop": "ι»ζΆ•ε…½οΌšδΈ‹θ›‹", + "jei.species.goober_goo": "黏梕兽鼻梕转捒", + "advancements.species.obtain_petrified_egg.title": "乏味蛋", + "advancements.species.obtain_petrified_egg.description": "θŽ·εΎ—ηŸ³εŒ–θ›‹", + "advancements.species.tickle_goober.title": "θΏ‡ζ•ε­£θŠ‚", + "advancements.species.tickle_goober.description": "θ©ι»ζΆ•ε…½ε–·εšε‡Ίι»ζΆ•ε…½ι»ζΆ²οΌŒδ½Ώδ½ ε‘¨ε›΄ηš„δΈ–η•Œε²ε‰εŒ–", + "entity.species.cruncher": "θ΄ͺε’€ε…½", + "bar.species.cruncher": "%sηš„ι£Ÿζ¬²", + "item.species.cruncher_spawn_egg": "θ΄ͺε’€ε…½εˆ·ζ€ͺθ›‹", + "block.species.cruncher_egg": "θ΄ͺε’€ε…½θ›‹", + "block.species.cruncher_pellet": "θ΄ͺε’€ε…½ι£Ÿε›’", + "subtitles.entity.species.cruncher.death": "θ΄ͺε’€ε…½οΌšζ­»δΊ‘", + "subtitles.entity.species.cruncher.hurt": "θ΄ͺε’€ε…½οΌšε—δΌ€", + "subtitles.entity.species.cruncher.idle": "θ΄ͺε’€ε…½οΌšε’•ε“", + "subtitles.entity.species.cruncher.step": "θ΄ͺε’€ε…½οΌšζ‘‡ζ‘†θ‘Œθ΅°", + "subtitles.entity.species.cruncher.roar": "θ΄ͺε’€ε…½οΌšε’†ε“", + "subtitles.entity.species.cruncher.spit": "θ΄ͺε’€ε…½οΌšεε‡Ίι£Ÿε›’", + "subtitles.entity.species.cruncher.stomp": "θ΄ͺε’€ε…½οΌšθΈ©θ·Ί", + "subtitles.entity.species.cruncher.stun": "θ΄ͺε’€ε…½οΌšηœ©ζ™•", + "death.attack.crunch": "%1$s蒫跡踏了", + "death.attack.crunch.item": "%1$sθ’«%2$s用%3$s跡踏了", + "death.attack.crunch.player": "%1$sθ’«%2$s跡踏了", + "effect.species.gut_feeling": "胃ηŸ₯恐惧", + "effect.species.gut_feeling.description": "ε—ε½±ε“ηš„εžδ½“ηš„θƒƒε‘ε‡Ίιš†ιš†ε£°εΉΆζŠ½εŠ¨οΌŒθ©εƒδ»¬ζ„Ÿθ§‰εˆ°ε₯½εƒζœ‰δΈͺβ€œε€§β€ηš„ζ­£ε‡†ε€‡ζ”»ε‡»γ€‚", + "subtitles.effect.species.gut_feeling.applied": "肠胃闷响", + "subtitles.effect.species.gut_feeling.spawn": "θ‚ θƒƒη—‰ζŒ›", + "subtitles.effect.species.gut_feeling.roar": "肠胃不适", + "jei.species.cruncher_pellet": "θ΄ͺε’€ε…½οΌšη‹©ηŒŽ", + "jei.species.cruncher_pellet.mob": "η‹©ηŒŽε―Ήθ±‘οΌš%s", + "jei.species.cruncher_pellet.amount": "%s 到 %s 尸体", + "advancements.species.obtain_cruncher_egg.title": "ηΎŽε‘³θ›‹", + "advancements.species.obtain_cruncher_egg.description": "θŽ·εΎ—θ΄ͺε’€ε…½θ›‹", + "advancements.species.feed_cruncher.title": "割肉ι₯²θ™Ž", + "advancements.species.feed_cruncher.description": "ε°θ―•εŽ»ζ»‘θΆ³θ΄ͺε’€ε…½ηš„ι£Ÿζ¬²", + "entity.species.mammutilation": "ζ‹ηΌΊηŒ›ηŠΈ", + "item.species.mammutilation_spawn_egg": "ζ‹ηΌΊηŒ›ηŠΈεˆ·ζ€ͺθ›‹", + "item.species.ichor_bottle": "θ„“ζΆ²η“Ά", + "item.species.youth_potion": "还η«₯药水", + "block.species.ichor": "θ„“ζΆ²", + "block.species.frozen_meat": "冰冻肉块", + "block.species.frozen_hair": "冰冻毛ηš", + "subtitles.entity.species.mammutilation.death": "ζ‹ηΌΊηŒ›ηŠΈοΌšε†ζ¬‘ζ­»δΊ‘", + "subtitles.entity.species.mammutilation.hurt": "ζ‹ηΌΊηŒ›ηŠΈοΌšζ›΄εŠ ε—δΌ€", + "subtitles.entity.species.mammutilation.idle": "ζ‹ηΌΊηŒ›ηŠΈοΌšθ―•ε›Ύε‘ΌεΈ", + "subtitles.entity.species.mammutilation.cough": "ζ‹ηΌΊηŒ›ηŠΈοΌšε’³ε—½", + "subtitles.entity.species.mammutilation.howl": "ζ‹ηΌΊηŒ›ηŠΈοΌšεšŽε«", + "subtitles.entity.species.mammutilation.bleed": "ζ‹ηΌΊηŒ›ηŠΈοΌšζ΅θ‘€", + "subtitles.entity.species.mammutilation.mammutiful_idle": "ζ‹ηΌΊηŒ›ηŠΈοΌšζΈΈθ‘", + "subtitles.item.species.ichor_bottle.applied": "θ„“ζΆ²οΌšζ²»η–—", + "subtitles.item.species.youth_potion.baby": "θΏ”θ€θΏ˜η«₯", + "subtitles.item.species.youth_potion.stumped": "ζŠ‘εˆΆη”Ÿι•Ώ", + "advancements.species.look_at_mammutilation.title": "εƒθΏ˜...ζ΄»η€οΌŸ", + "advancements.species.look_at_mammutilation.description": "εˆ©η”¨ι—ͺη”΅ηš„θƒ½ι‡ε°†ζ‹ηΌΊηŒ›ηŠΈε€ζ΄»", + "advancements.species.turn_mob_into_baby.title": "θΏ™θΏ˜η¬¦εˆδΌ¦η†ε—οΌŸ", + "advancements.species.turn_mob_into_baby.description": "η”¨θΏ˜η«₯θ―ζ°΄ε›žζΊ―ε²ζœˆοΌŒθ©δΈ€εͺη”Ÿη‰©ε›žεˆ°εΉΌεΉ΄ε½’ζ€", + "entity.species.springling": "η°§ι’ˆε…½", + "item.species.springling_spawn_egg": "η°§ι’ˆε…½εˆ·ζ€ͺθ›‹", + "block.species.springling_egg": "η°§ι’ˆε…½θ›‹", + "springling.keybinds": "ζŒ‰δΈ‹%sζ₯δΌΈι•ΏοΌ›ζŒ‰δΈ‹%sζ₯缩短", + "subtitles.entity.species.springling.death": "η°§ι’ˆε…½οΌšζ­»δΊ‘", + "subtitles.entity.species.springling.hurt": "η°§ι’ˆε…½οΌšε—δΌ€", + "subtitles.entity.species.springling.idle": "η°§ι’ˆε…½οΌšε“Όε”§", + "subtitles.entity.species.springling.step": "η°§ι’ˆε…½οΌšθ„šζ­₯ε£°", + "subtitles.entity.species.springling.eat": "η°§ι’ˆε…½οΌšθΏ›ι£Ÿ", + "subtitles.entity.species.springling.extend": "η°§ι’ˆε…½οΌšδΌΈηΌ©", + "subtitles.entity.species.springling.extend_finish": "η°§ι’ˆε…½οΌšδΌΈι•ΏεŒζ―•", + "subtitles.block.species.springling_egg.crack": "η°§ι’ˆε…½θ›‹οΌšθ£‚εΌ€", + "subtitles.block.species.springling_egg.hatch": "η°§ι’ˆε…½θ›‹οΌšε­΅εŒ–", + "subtitles.block.species.springling_egg.plop": "η°§ι’ˆε…½οΌšδΈ‹θ›‹", + "advancements.species.obtain_springling_egg.title": "θΆ£ε‘³θ›‹", + "advancements.species.obtain_springling_egg.description": "θŽ·εΎ—η°§ι’ˆε…½θ›‹", + "advancements.species.extend_springling_fully.title": "εοΌ", + "advancements.species.extend_springling_fully.description": "ι©―ζœη°§ι’ˆε…½εΉΆθ©εƒε°†θ„–ε­δΌΈεˆ°ζœ€ι•Ώ", + "advancements.species.v3.title": "物种倍苏 IIIοΌšε™©ζ’¦θΏžθΏž", + "advancements.species.v3.description": "ζ­€ζ¬‘ζ›΄ζ–°ηš„δΈ»ι’˜ζ˜―δΈΊζΈΈζˆζ·»εŠ ζ›΄ε€šη‰ΉζŠηš„ζ•Œε―Ήη”Ÿη‰©γ€‚", + "entity.species.ghoul": "食尸鬼", + "item.species.ghoul_spawn_egg": "食尸鬼刷ζ€ͺθ›‹", + "item.species.ghoul_tongue": "食尸鬼舌倴", + "block.species.ghoul_head": "ι£Ÿε°Έι¬Όε€΄ι’…", + "subtitles.entity.species.ghoul.idle": "ι£Ÿε°Έι¬ΌοΌšε’†ε“", + "subtitles.entity.species.ghoul.death": "食尸鬼:死云", + "subtitles.entity.species.ghoul.hurt": "ι£Ÿε°Έι¬ΌοΌšε—δΌ€", + "subtitles.entity.species.ghoul.aggro": "ι£Ÿε°Έι¬ΌοΌšε°–ε«", + "subtitles.entity.species.ghoul.attack": "ι£Ÿε°Έι¬ΌοΌšθˆ”θˆ", + "subtitles.entity.species.ghoul.infect": "ι£Ÿε°Έι¬ΌοΌšζ„ŸζŸ“", + "subtitles.entity.species.ghoul.confused": "ι£Ÿε°Έι¬ΌοΌšθΏ·ε€±ζ–Ήε‘", + "subtitles.entity.species.ghoul.searching": "ι£Ÿε°Έι¬ΌοΌšθ†ε¬", + "subtitles.entity.species.ghoul.angry": "ι£Ÿε°Έι¬ΌοΌšε–˜ζ°”", + "subtitles.entity.species.ghoul.step": "食尸鬼:爬葌", + "subtitles.effect.species.bloodlust.feed": "ε—œθ‘€ε•ƒε™¬", + "subtitles.effect.species.bloodlust.removed": "ε—œθ‘€ζΆˆι€€", + "death.attack.torn": "%1$s θ’«ζ’•ζˆη’Žη‰‡", + "death.attack.torn.item": "%1$s θ’« %2$s 用 %3$s ζ’•ζˆδΊ†η’Žη‰‡", + "death.attack.torn.player": "%1$s θ’« %2$s ζ’•ζˆδΊ†η’Žη‰‡", + "effect.species.bloodlust": "ε—œθ‘€", + "effect.species.bloodlust.description": "η¦ζ­’ι£Ÿη”¨ι£Ÿη‰©οΌŒδ½†ε―δ»₯ι€šθΏ‡ε‡»ζ€η”Ÿη‰©ζ₯θ‘₯ε……ι₯₯ι₯Ώε€ΌδΈŽι₯±ι£ŸεΊ¦γ€‚ζ›΄εΌΊε€§ηš„η”Ÿη‰©ε―ζδΎ›ζ›΄ε€šι₯±ι£ŸεΊ¦γ€‚", + "item.minecraft.lingering_potion.effect.bloodlust": "ζ»žη•™εž‹ε—œθ‘€θ―ζ°΄", + "item.minecraft.potion.effect.bloodlust": "ε—œθ‘€θ―ζ°΄", + "item.minecraft.splash_potion.effect.bloodlust": "ε–·ζΊ…εž‹ε—œθ‘€θ―ζ°΄", + "item.minecraft.tipped_arrow.effect.bloodlust": "ε—œθ‘€δΉ‹η­", + "effect.species.bloodlust.reason": "δ½ ζ›΄ζΈ΄ζœ›ε…Άδ»–ηš„δΈœθ₯Ώβ€¦ ", + "advancements.species.aggro_ghoul.title": "纒灯", + "advancements.species.aggro_ghoul.description": "εœ¨ι”™θ――ηš„ζ—ΆζœΊη§»εŠ¨δΌšεΌ•ζ₯ι£Ÿε°Έι¬Όηš„ζ”»ε‡»", + "advancements.species.survive_ghoul.title": "绿灯", + "advancements.species.survive_ghoul.description": "δΈθ¦εœ¨ι£Ÿε°Έι¬Όζœε―»ζ—Άθ’«ε…Άε‘ηŽ°", + "entity.species.quake": "ιœ‡ε‡»θ€…", + "item.species.quake_spawn_egg": "ιœ‡ε‡»θ€…εˆ·ζ€ͺθ›‹", + "block.species.kinetic_core": "εŠ¨εŠ›ζ ΈεΏƒ", + "subtitles.entity.species.quake.absorb": "ιœ‡ε‡»θ€…οΌšεΈζ”ΆδΌ€ε³", + "subtitles.entity.species.quake.charge": "ιœ‡ε‡»θ€…οΌšεΌ€ε§‹θ“„εŠ›", + "subtitles.entity.species.quake.attack": "ιœ‡ε‡»θ€…οΌšι‡Šζ”ΎδΌ€ε³", + "subtitles.entity.species.quake.unscrews": "ιœ‡ε‡»θ€…οΌšζ‹‰δΌΈ", + "subtitles.entity.species.quake.finishes_unscrewing": "ιœ‡ε‡»θ€…οΌšεŒζˆζ‹‰δΌΈ", + "subtitles.entity.species.quake.death": "ιœ‡ε‡»θ€…οΌšζ­»δΊ‘", + "subtitles.entity.species.quake.hurt": "ιœ‡ε‡»θ€…οΌšε—δΌ€", + "subtitles.entity.species.quake.shield": "ιœ‡ε‡»θ€…οΌšζ ΌζŒ‘", + "subtitles.entity.species.quake.step": "ιœ‡ε‡»θ€…οΌšζŒͺ动", + "subtitles.entity.species.quake.recharge": "ιœ‡ε‡»θ€…οΌšι‡ζ•΄ζ——ιΌ“", + "block.species.quake_head": "ιœ‡ε‡»θ€…ε€΄ι’…", + "entity.species.deflector_dummy": "εŠ¨θƒ½ε‡δΊΊ", + "item.species.deflector_dummy": "εŠ¨θƒ½ε‡δΊΊ", + "item.species.deflector_dummy.desc.powered": "θ’«ηΊ’ηŸ³ε……θƒ½ζ—ΆοΌš", + "item.species.deflector_dummy.desc.damage": "δΌ€ε³εΈζ”Άζœ€ε€§80", + "subtitles.entity.species.deflector_dummy.place": "εŠ¨θƒ½ε‡δΊΊοΌšζ”Ύη½", + "subtitles.entity.species.deflector_dummy.break": "εŠ¨θƒ½ε‡δΊΊοΌšη ΄ε", + "subtitles.entity.species.deflector_dummy.hurt": "εŠ¨θƒ½ε‡δΊΊοΌšε‡»ζ‰“", + "subtitles.entity.species.deflector_dummy.deflect": "εŠ¨θƒ½ε‡δΊΊοΌšιœ‡ε‡»", + "subtitles.entity.species.deflector_dummy.absorb": "εŠ¨θƒ½ε‡δΊΊοΌšεΈζ”ΆδΌ€ε³", + "subtitles.entity.species.deflector_dummy.attack": "εŠ¨θƒ½ε‡δΊΊοΌšι‡Šζ”ΎδΌ€ε³", + "item.species.ricoshield": "反击之盾", + "item.species.ricoshield.desc.blocking": "ζ ΌζŒ‘ζ—ΆοΌš", + "item.species.ricoshield.desc.damage": "δΌ€ε³εΈζ”Άζœ€ε€§40", + "subtitles.item.species.ricoshield.absorb": "η›Ύη‰ŒοΌšεΈζ”ΆδΌ€ε³", + "subtitles.item.species.ricoshield.attack": "η›Ύη‰ŒοΌšι‡Šζ”ΎδΌ€ε³", + "death.attack.kinetic": "%2$s θ© %1$s 体ιͺŒδΊ†ι‡Œζ°ιœ‡ηΊ§", + "death.attack.kinetic.player": "%2$s θ© %1$s 体ιͺŒδΊ†ι‡Œζ°ιœ‡ηΊ§", + "death.attack.kinetic.item": "%2$s 用 %3$s θ© %1$s 体ιͺŒδΊ†ι‡Œζ°ιœ‡ηΊ§", + "item.species.music_disk_spawner": "ιŸ³δΉε”±η‰‡", + "item.species.music_disk_spawner.desc": "Exclaim! - Spawner", + "advancements.species.kill_ten_mobs_with_quake.title": "ιœ‡θ€³ζ¬²θ‹", + "advancements.species.kill_ten_mobs_with_quake.description": "η”¨δΈ€ζ¬‘εŠ¨θƒ½ε‡δΊΊηš„ε†²ε‡»ζ³’ε‡»ζ€10δΈͺη”Ÿη‰©", + "advancements.species.kill_all_prehistoric_mobs_with_quake.title": "η”Ÿη‰©ε€§η­η»", + "advancements.species.kill_all_prehistoric_mobs_with_quake.description": "δ½Ώη”¨εŠ¨θƒ½ε‡δΊΊηš„ε†²ε‡»ζ³’δΈ€ζ¬‘ε‡»ζ€ζΈΈζˆδΈ­ζ―δΈ€η§ε²ε‰η”Ÿη‰©", + "entity.species.spectre": "幻灡", + "item.species.spectre_spawn_egg": "幻灡刷ζ€ͺθ›‹", + "item.species.broken_links": "ζŸεηš„ι”ι“Ύ", + "item.species.spectre_light.color": "ι’œθ‰²οΌš", + "item.species.spectre_light.dyeable": "ε―ζŸ“θ‰²", + "block.species.speclight": "幻灡灯", + "block.species.chaindelier": "ι”ι“ΎεŠη―", + "block.species.hopelight": "εΈŒζœ›δΉ‹ε…‰", + "item.species.spectralibur": "εΉ»η΅εœ£ε‰‘", + "item.species.spectralibur.no_strength": "汝ζœͺζœ‰ι©Ύι©­εΎδΉ‹εŠ›β€¦", + "item.species.spectralibur.peaceful": "汝之勇气ε‰εœ¨οΌŸ", + "item.species.spectralibur.summon": "%1$s η’Žη‰‡", + "item.species.spectralibur.desc": "ε°†ζ­»εŽ»ηš„η΅ι­‚θ½¬εŒ–δΈΊεΉ»η΅", + "item.species.spectralibur.desc.release": "ε―ι‡Šζ”ΎοΌš", + "item.species.spectralibur.desc.spectre.1": "%1$s 幻灡", + "item.species.spectralibur.desc.spectre.2": "%1$s δΈͺ幻灡", + "item.species.spectralibur.desc.jousting_spectre.1": "%1$s 迅捷幻灡", + "item.species.spectralibur.desc.jousting_spectre.2": "%1$s δΈͺ迅捷幻灡", + "item.species.spectralibur.desc.hulking_spectre.1": "%1$s ε·¨εŠ›εΉ»η΅", + "item.species.spectralibur.desc.hulking_spectre.2": "%1$s δΈͺε·¨εŠ›εΉ»η΅", + "block.species.spectralibur_pedestal": "εΉ»η΅εœ£ε‰‘εΊ•εΊ§", + "block.species.spectralibur": "εΉ»η΅εœ£ε‰‘", + "subtitles.entity.species.spectre.death": "εΉ»η΅οΌšζΆˆζ•£", + "subtitles.entity.species.spectre.hurt": "εΉ»η΅οΌšε—δΌ€", + "subtitles.entity.species.spectre.idle": "幻灡:低语声", + "subtitles.entity.species.spectre.fly": "εΉ»η΅οΌšζΌ‚ζ΅", + "subtitles.entity.species.spectre.attack": "εΉ»η΅οΌšι“Ώι”΅ε£°", + "subtitles.entity.species.spectre.hulking_attack": "εΉ»η΅οΌšζΆζ‰“", + "subtitles.entity.species.spectre.jousting_attack": "幻灡:εε½“ε£°", + "subtitles.entity.species.spectre.spot": "幻灡:追随η›ζ ‡", + "subtitles.entity.species.spectre.spawn": "εΉ»η΅οΌšη”Ÿζˆ", + "subtitles.entity.species.spectre.dash": "εΉ»η΅οΌšε†²εˆΊ", + "subtitles.block.species.spectralibur.can_be_pulled": "εΉ»η΅εœ£ε‰‘ζΎεŠ¨", + "subtitles.block.species.spectralibur.pull": "εΉ»η΅εœ£ε‰‘ζ‹”ε‡Ί", + "subtitles.block.species.spectralibur.extract": "εΉ»η΅εœ£ε‰‘ζ‹”ε‡Ίθ£‚ηΌ", + "subtitles.block.species.spectralibur.go_in": "εΉ»η΅εœ£ε‰‘οΌšζ­£εœ¨ε›žι€€οΌ", + "subtitles.block.species.spectralibur.go_in_fully": "εΉ»η΅εœ£ε‰‘οΌšι‡ε½’ηŸ³δΈ­οΌ", + "subtitles.block.species.spectralibur.cant_pull": "εΉ»η΅εœ£ε‰‘ζ— ζ³•ζ‹”ε‡Ίθ£‚ηΌ", + "subtitles.block.species.spectralibur_pedestal.activate": "η΅ι­‚ι‡Šζ”Ύ", + "subtitles.block.species.spectralibur_pedestal.deactivate": "εΊ•εΊ§οΌšε€±ζ΄»", + "subtitles.block.species.speclight.on": "εΉ»η΅η―οΌšεΌ€ε―", + "subtitles.block.species.speclight.off": "εΉ»η΅η―οΌšε…³ι—­", + "subtitles.item.species.spectralibur.collect_soul": "灡魂攢集", + "subtitles.item.species.spectralibur.use_soul": "灡魂选εš", + "subtitles.item.species.spectralibur.release_spectre": "η΅ι­‚ι‡Šζ”Ύ", + "subtitles.item.species.spectralibur.start_charging": "εΉ»η΅εœ£ε‰‘οΌšε……θƒ½", + "advancements.species.start_spectre_challenge.title": "εΉ»η΅εœ£ε…ΈοΌŒεΌ€ε§‹οΌ", + "advancements.species.start_spectre_challenge.description": "ζŒ‘ζˆ˜εΉ»η΅εœ£ε‰‘ε―†ε€", + "advancements.species.summon_spectre.title": "一魂捒一魂", + "advancements.species.summon_spectre.description": "ζ‰§ζŽŒεΉ»η΅εœ£ε‰‘οΌŒι©­δ½Ώη΅ι­‚δΉ‹εŠ›γ€‚", + "entity.species.wicked": "ι‚ͺη«ζ³•εΈˆ", + "item.species.wicked_spawn_egg": "ι‚ͺη«ζ³•εΈˆεˆ·ζ€ͺθ›‹", + "block.species.wicked_candle": "ι‚ͺη«θœ‘ηƒ›", + "effect.species.tanked": "厚躯", + "effect.species.tanked.description": "ι‚ͺη«ζ•ˆζžœγ€‚ιšη€η­‰ηΊ§ζε‡οΌŒθ΅‹δΊˆζ›΄ε€šη”Ÿε‘½ε€Όγ€ζ›΄ε€šδΌ€ε³οΌŒεΉΆι™δ½Žη§»εŠ¨ι€ŸεΊ¦γ€‚δ½Ώε—ε½±ε“ηš„εžδ½“δ»Žε€–θ§‚δΈŠηœ‹θ΅·ζ₯ζ›΄ε½γ€‚", + "effect.species.combustion": "燃躯", + "effect.species.combustion.description": "ι‚ͺη«ζ•ˆζžœγ€‚δ½Ώε—ε½±ε“ηš„εžδ½“εœ¨ζ­»δΊ‘ζ—Άηˆ†η‚Έγ€‚ηˆ†η‚ΈθŒƒε›΄ε’Œζ–Ήε—η ΄εεΌΊεΊ¦ιšη­‰ηΊ§ε’žεŠ γ€‚", + "item.species.wicked_wax": "ι‚ͺ火蜑", + "item.species.monster_meal": "ζ··ζ²Œι£Ÿε“", + "item.species.monster_meal.desc.effect": "δ½Ώι£Ÿη”¨ηš„εžδ½“θŽ·εΎ—δΈ€δΈͺιšζœΊηš„ι‚ͺη«ζ•ˆζžœ", + "item.species.smoke_bomb": "ηƒŸι›ΎεΌΉ", + "item.species.smoke_bomb.desc.invisibility": "隐身 (0:15)", + "item.species.smoke_bomb.desc.speed": "ι€ŸεΊ¦ III (0:02)", + "item.species.smoke_bomb.desc.speed.effect": "+60% η§»εŠ¨ι€ŸεΊ¦", + "item.species.wicked_dope": "ι‚ͺ火膏", + "item.species.wicked_dope.desc.effect": "δ½Ώζ‰€ζœ‰η”Ÿζ•ˆδΈ­ηš„ζ•ˆζžœη­‰ηΊ§ +1 ", + "item.species.wicked_dope.no_effects": "δ½ ζ²‘ζœ‰δ»»δ½•ζ•ˆζžœζ₯提升", + "item.species.wicked_mask.desc.apply": "δΌͺθ£…ζˆη»‘εšηš„η”Ÿη‰©", + "item.species.wicked_mask.desc.disguise.1": "%1$s + %2$s", + "item.species.wicked_mask.desc.disguise.2": "ι€‰ζ‹©η”Ÿη‰©", + "item.species.wicked_treat.desc": "εͺ能喂给ε η‰©", + "item.species.wicked_treat.desc.regeneration": "η”Ÿε‘½ζ’ε€ (0:45)", + "item.species.wicked_treat.desc.strength": "εŠ›ι‡ (0:20)", + "subtitles.entity.species.wicked.death": "ι‚ͺη«ζ³•εΈˆοΌšζ­»δΊ‘", + "subtitles.entity.species.wicked.hurt": "ι‚ͺη«ζ³•εΈˆοΌšε—δΌ€", + "subtitles.entity.species.wicked.idle": "ι‚ͺη«ζ³•εΈˆοΌšε’―ε’―η¬‘", + "subtitles.entity.species.wicked.haunt": "ι‚ͺη«ζ³•εΈˆοΌšι™„θΊ«", + "subtitles.entity.species.wicked.idle_haunting": "ι‚ͺη«ζ³•εΈˆοΌšθ₯笑", + "subtitles.entity.species.wicked.shoot": "ι‚ͺη«ζ³•εΈˆοΌšε‘ε°„", + "subtitles.entity.species.wicked.spot": "ι‚ͺη«ζ³•εΈˆοΌšθ·Ÿιšη”Ÿη‰©", + "subtitles.entity.species.wicked.stop_haunting": "ι‚ͺη«ζ³•εΈˆοΌšη¦»εΌ€ι™„θΊ«εžδ½“", + "subtitles.item.species.smoke_bomb.charge": "玩εΆοΌšε‡†ε€‡", + "subtitles.item.species.smoke_bomb.use": "ηƒŸι›ΎεΌΉοΌšηˆ†η‚Έ", + "subtitles.item.species.wicked_wax.eat": "θΏ›ι£Ÿ", + "subtitles.item.species.monster_meal.apply": "ιšζœΊζ•ˆζžœζΏ€ζ΄»", + "subtitles.item.species.wicked_treat.apply": "ε η‰©ζε‡", + "subtitles.item.species.wicked_dope.boost": "ζ•ˆζžœζε‡", + "subtitles.item.species.wicked_dope.fail": "提升倱θ΄₯", + "advancements.species.wicked_mask_wither.title": "ζˆ‘ε˜ζˆδΊ†ε‡‹ι›Ά", + "advancements.species.wicked_stop_haunting.title": "θΆ…εΊ¦", + "advancements.species.wicked_stop_haunting.description": "θ©δΈ€δΈͺι‚ͺη«ζ³•εΈˆεœζ­’ι™„θΊ«η”Ÿη‰©", + "entity.species.bewereager": "ζΈ΄θ‘€η‹ΌδΊΊ", + "item.species.bewereager_spawn_egg": "ζΈ΄θ‘€η‹ΌδΊΊεˆ·ζ€ͺθ›‹", + "item.species.werefang": "狼人獠牙", + "item.species.crankbow": "ζ›²ζŸ„θΏžεΌ©", + "item.species.crankbow.fullness": "%s/%s", + "item.species.crankbow.desc": "θΏžε‘ζι€ŸοΌšθΏžε‘ζ•°θΆŠε€šοΌŒε°„ι€ŸθΆŠεΏ«γ€‚", + "block.species.cranktrap": "捕兽倹", + "enchantment.species.capacity": "εΉι‡", + "enchantment.species.capacity.desc": "ε’žεŠ ζ›²ζŸ„θΏžεΌ©ηš„θ£…ε‘«εΉι‡", + "enchantment.species.sparing": "θŠ‚ηΊ¦", + "enchantment.species.sparing.desc": "ε°„ε‡»ζ—Άζœ‰ε‡ ηŽ‡δΈζΆˆθ€—η­ηŸ’", + "enchantment.species.quick_crank": "εΏ«ι€ŸδΈŠεΌ¦", + "enchantment.species.quick_crank.desc": "ε‡ε°‘θΏžε‘εŠ ι€Ÿζ‰€ιœ€ηš„ζ¬‘ζ•°", + "enchantment.species.scattershot": "ζΊ…ε°„", + "enchantment.species.scattershot.desc": "ε–ε†³δΊŽε°„ι€ŸοΌŒε―ε‘ε°„ε€šζ”―η­ηŸ’", + "block.species.hopeful_banner": "εΈŒζœ›ζ——εΈœ", + "block.species.bewereager_head": "渴葀狼人倴钅", + "block.minecraft.banner.species.villager.black": "村民", + "block.minecraft.banner.species.villager.blue": "村民", + "block.minecraft.banner.species.villager.brown": "村民", + "block.minecraft.banner.species.villager.cyan": "村民", + "block.minecraft.banner.species.villager.gray": "村民", + "block.minecraft.banner.species.villager.green": "村民", + "block.minecraft.banner.species.villager.light_blue": "村民", + "block.minecraft.banner.species.villager.light_gray": "村民", + "block.minecraft.banner.species.villager.lime": "村民", + "block.minecraft.banner.species.villager.magenta": "村民", + "block.minecraft.banner.species.villager.orange": "村民", + "block.minecraft.banner.species.villager.pink": "村民", + "block.minecraft.banner.species.villager.purple": "村民", + "block.minecraft.banner.species.villager.red": "村民", + "block.minecraft.banner.species.villager.white": "村民", + "block.minecraft.banner.species.villager.yellow": "村民", + "effect.species.stuck": "困住", + "effect.species.stuck.description": "ι˜»ζ­’ζ‰€ζœ‰η§»εŠ¨γ€‚", + "death.attack.cranktrap": "%1$s 蒫捕兽倹倹死", + "death.attack.cranktrap.item": "%1$s εœ¨θ―•ε›Ύδ½Ώη”¨ %3$s 逃离 %2$s ζ—ΆοΌŒθ’«ζ•ε…½ε€Ήε€Ήζ­»", + "death.attack.cranktrap.player": "%1$s εœ¨θ―•ε›Ύι€ƒη¦» %2$s ζ—ΆοΌŒθ’«ζ•ε…½ε€Ήε€Ήζ­»", + "subtitles.entity.species.bewereager.idle": "ζΈ΄θ‘€η‹ΌδΊΊοΌšε“Όε“Όε£°", + "subtitles.entity.species.bewereager.hurt": "ζΈ΄θ‘€η‹ΌδΊΊοΌšε—δΌ€", + "subtitles.entity.species.bewereager.death": "ζΈ΄θ‘€η‹ΌδΊΊοΌšζ­»δΊ‘", + "subtitles.entity.species.bewereager.step": "ζΈ΄θ‘€η‹ΌδΊΊοΌšζ½œθ‘Œ", + "subtitles.entity.species.bewereager.stun": "ζΈ΄θ‘€η‹ΌδΊΊοΌšηœ©ζ™•", + "subtitles.entity.species.bewereager.slash": "ζΈ΄θ‘€η‹ΌδΊΊοΌšζŠ“ζŒ ", + "subtitles.entity.species.bewereager.bite": "ζΈ΄θ‘€η‹ΌδΊΊοΌšζ’•ε’¬", + "subtitles.entity.species.bewereager.howl": "ζΈ΄θ‘€η‹ΌδΊΊοΌšη‹ΌεšŽ", + "subtitles.entity.species.bewereager.howl_strength": "ζΈ΄θ‘€η‹ΌδΊΊοΌšε€§η¬‘", + "subtitles.entity.species.bewereager.jump": "ζΈ΄θ‘€η‹ΌδΊΊοΌšθ·³θ·ƒ", + "subtitles.entity.species.bewereager.land": "ζΈ΄θ‘€η‹ΌδΊΊοΌšθ½εœ°", + "subtitles.entity.species.bewereager.shake": "ζΈ΄θ‘€η‹ΌδΊΊοΌšζŠ–εŠ¨", + "subtitles.entity.species.bewereager.split": "ζΈ΄θ‘€η‹ΌδΊΊοΌšεˆ†ε‰²", + "subtitles.entity.species.bewereager.celebrate": "ζΈ΄θ‘€η‹ΌδΊΊοΌšεΊ†η₯", + "subtitles.entity.species.bewereager.transform": "ζΈ΄θ‘€η‹ΌδΊΊοΌšθ½¬εŒ–", + "subtitles.entity.species.bewereager.transform_start": "ζΈ΄θ‘€η‹ΌδΊΊοΌšεΌ€ε§‹ι’€ζŠ–", + "subtitles.block.species.cranktrap.open": "ζ•ε…½ε€ΉοΌšεΌ€ε―", + "subtitles.block.species.cranktrap.close": "ζ•ε…½ε€ΉοΌšζ’•ε’¬", + "subtitles.item.species.crankbow.pull": "ζ›²ζŸ„θΏžεΌ©οΌšδΈŠεΌ¦", + "subtitles.item.species.crankbow.shoot": "ζ›²ζŸ„θΏžεΌ©οΌšε‘ε°„", + "subtitles.item.species.crankbow.shoot_spare": "ζ›²ζŸ„θΏžεΌ©οΌšθŠ‚ηœη­ηŸ’", + "subtitles.item.species.crankbow.speed": "ζ›²ζŸ„θΏžεΌ©οΌšεŠ ι€Ÿ", + "subtitles.item.species.crankbow.stop": "ζ›²ζŸ„θΏžεΌ©οΌšε‡ι€Ÿ", + "subtitles.item.species.crankbow.load_arrow": "ζ›²ζŸ„θΏžεΌ©οΌšθ£…ε‘«η­ηŸ’", + "subtitles.item.species.crankbow.remove_arrow": "ζ›²ζŸ„θΏžεΌ©οΌšεΈδΈ‹η­ηŸ’", + "advancements.species.cure_bewereager.title": "ε…½εŒ»", + "advancements.species.cure_bewereager.description": "ζ…’δΈ‹ζ₯οΌŒη„ΆεŽε°†ε—θ―…ε’’ηš„ζΈ΄θ‘€η‹ΌδΊΊεˆ†θ§£ζˆεƒηš„εŸΊζœ¬ζˆεˆ†", + "entity.species.leaf_hanger": "εΆζ‚¬ηŒŽθ€…", + "item.species.leaf_hanger_spawn_egg": "εΆζ‚¬ηŒŽθ€…εˆ·ζ€ͺθ›‹", + "subtitles.entity.species.leaf_hanger.shoot": "εΆζ‚¬ηŒŽθ€…οΌšι‡Šζ”Ύθ―±ι₯΅", + "subtitles.entity.species.leaf_hanger.step": "εΆζ‚¬ηŒŽθ€…οΌšε―»ζ‰Ύθ—θΊ«δΉ‹ε€„", + "subtitles.entity.species.leaf_hanger.idle": "εΆζ‚¬ηŒŽθ€…οΌšε˜Žε±ε£°", + "subtitles.entity.species.leaf_hanger.idle_pulling": "εΆζ‚¬ηŒŽθ€…οΌšεž‚ζΆŽζ¬²ζ»΄", + "subtitles.entity.species.leaf_hanger.hurt": "εΆζ‚¬ηŒŽθ€…οΌšε—δΌ€", + "subtitles.entity.species.leaf_hanger.death": "εΆζ‚¬ηŒŽθ€…οΌšζ­»δΊ‘", + "subtitles.entity.species.leaf_hanger.attack": "εΆζ‚¬ηŒŽθ€…οΌšζ’•ε’¬", + "subtitles.entity.species.leaf_hanger.catch": "εΆζ‚¬ηŒŽθ€…οΌšζŠ“εˆ°ηŒŽη‰©", + "entity.species.cliff_hanger": "ε΄–ζ‚¬ηŒŽθ€…", + "item.species.cliff_hanger_spawn_egg": "ε΄–ζ‚¬ηŒŽθ€…εˆ·ζ€ͺθ›‹", + "subtitles.entity.species.cliff_hanger.shoot": "ε΄–ζ‚¬ηŒŽθ€…οΌšδΌΈι•ΏθˆŒε€΄", + "subtitles.entity.species.cliff_hanger.step": "ε΄–ζ‚¬ηŒŽθ€…οΌšε―»ζ‰Ύθ—θΊ«δΉ‹ε€„", + "subtitles.entity.species.cliff_hanger.idle": "ε΄–ζ‚¬ηŒŽθ€…οΌšε˜Žε±ε£°", + "subtitles.entity.species.cliff_hanger.idle_pulling": "ε΄–ζ‚¬ηŒŽθ€…οΌšεž‚ζΆŽζ¬²ζ»΄", + "subtitles.entity.species.cliff_hanger.hurt": "ε΄–ζ‚¬ηŒŽθ€…οΌšε—δΌ€", + "subtitles.entity.species.cliff_hanger.death": "ε΄–ζ‚¬ηŒŽθ€…οΌšζ­»δΊ‘", + "subtitles.entity.species.cliff_hanger.attack": "ε΄–ζ‚¬ηŒŽθ€…οΌšζ’•ε’¬", + "subtitles.entity.species.cliff_hanger.attach": "ε΄–ζ‚¬ηŒŽθ€…οΌšη›˜θΈžδΊŽι‘Ά", + "subtitles.entity.species.coil.place": "η»³εœˆοΌšζ”Ύη½", + "subtitles.entity.species.coil.remove": "绳圈:破坏声", + "subtitles.entity.species.coil.link": "绳圈:连ζŽ₯", + "subtitles.entity.species.coil.adjust": "η»³εœˆοΌšθ°ƒζ•΄", + "subtitles.item.species.harpoon.thrown": "εŠη΄’οΌšζŠ•ζŽ·", + "subtitles.item.species.harpoon.retrieved": "εŠη΄’οΌšε›žζ”Ά", + "subtitles.item.species.harpoon.anchor": "εŠη΄’οΌšι”šεš", + "subtitles.item.species.harpoon.start_ziplining": "εŠη΄’οΌšεΌ€ε§‹ζ»‘εŠ¨", + "item.species.coil": "绳圈", + "entity.species.coil": "绳圈", + "item.species.harpoon": "吊紒", + "entity.species.harpoon": "吊紒", + "painting.species.the_composition.title": "εˆδ½œδ½œθ€…", + "painting.species.the_composition.author": "Yapettoshen", + "advancements.species.fall_for_hanger.title": "εˆε ι™·ι˜±", + "advancements.species.fall_for_hanger.description": "落ε…₯ζ‚¬ηŒŽθ€…ηš„ι™·ι˜±οΌŒθΏ™ζ³’η—εƒδ»¬ηš„", + "advancements.species.fall_for_hanger_twice.title": "ζ’…εΌ€δΊŒεΊ¦ε₯–", + "advancements.species.fall_for_hanger_twice.description": "再欑落ε…₯ζ‚¬ηŒŽθ€…ηš„ι™·ι˜±οΌŒδΈζ˜―οΌŒδ½ ζ˜―δΈζ˜―εŽ‹ζ Ήζ²‘ηœ‹θ·―ε•ŠοΌŸ", + "item.species.wicked_mask": "δΌͺθ£…ε·₯ε…·εŒ…", + "item.species.wicked_swapper": "捒位珠", + "item.species.wicked_treat": "ε η‰©ι›Άι£Ÿ", + "subtitles.item.species.wicked_mask.link": "δΌͺθ£…ε·₯ε…·εŒ…οΌšη»‘εš", + "subtitles.item.species.wicked_mask.equip": "δΌͺθ£…ε·₯ε…·εŒ…οΌšη²˜ι»ε£°", + "subtitles.item.species.wicked_swapper.throw": "捒位珠:掷空", + "subtitles.item.species.wicked_swapper.fail": "捒位珠:落地", + "subtitles.item.species.wicked_swapper.teleport": "捒位珠:捒位", + "item.species.wicked_treat.desc.snatched": "袅级迅捷 II (0:45)", + "item.species.wicked_treat.desc.iron_will": "ε‡»ι€€ζŠ—ζ€§ (0:45)", + "entity.species.trooper": "η‘«εŠ›ζ€•", + "subtitles.entity.species.trooper.death": "η‘«εŠ›ζ€•οΌšζ­»δΊ‘", + "subtitles.entity.species.trooper.hurt": "η‘«εŠ›ζ€•οΌšε—δΌ€", + "subtitles.entity.species.trooper.step": "η‘«εŠ›ζ€•οΌšε°ζ­₯η–Ύθ·‘", + "subtitles.entity.species.trooper.uproot": "η‘«εŠ›ζ€•οΌšζ‹”ζ Ήθ€Œθ΅·", + "subtitles.entity.species.trooper.plant": "η‘«εŠ›ζ€•οΌšζ‰Žζ Ή", + "effect.species.iron_will": "ε‡»ι€€ζŠ—ζ€§", + "effect.species.iron_will.description": "ε…η–«δΈ€εˆ‡ε‡»ι€€γ€‚", + "effect.species.snatched": "袅级迅捷", + "effect.species.snatched.description": "ζ Ήζη­‰ηΊ§ζε‡η§»εŠ¨ι€ŸεΊ¦γ€‚δ½Ώε—ε½±ε“ηš„εžδ½“δ»Žε€–θ§‚δΈŠηœ‹θ΅·ζ₯ζ›΄ι«˜ζ›΄η˜¦γ€‚" } \ No newline at end of file diff --git a/kubejs/assets/species/textures/entity/treeper/trooper.png b/kubejs/assets/species/textures/entity/treeper/trooper.png new file mode 100644 index 000000000..ae903890b Binary files /dev/null and b/kubejs/assets/species/textures/entity/treeper/trooper.png differ diff --git a/kubejs/assets/species/textures/entity/treeper/trooper_tame.png b/kubejs/assets/species/textures/entity/treeper/trooper_tame.png new file mode 100644 index 000000000..179f90a26 Binary files /dev/null and b/kubejs/assets/species/textures/entity/treeper/trooper_tame.png differ diff --git a/kubejs/assets/species/textures/item/smoke_bomb.png b/kubejs/assets/species/textures/item/smoke_bomb.png new file mode 100644 index 000000000..9607a8258 Binary files /dev/null and b/kubejs/assets/species/textures/item/smoke_bomb.png differ diff --git a/kubejs/assets/species/textures/item/wicked_mask.png b/kubejs/assets/species/textures/item/wicked_mask.png new file mode 100644 index 000000000..acae21bfb Binary files /dev/null and b/kubejs/assets/species/textures/item/wicked_mask.png differ diff --git a/kubejs/assets/species/textures/item/wicked_mask_worn.png b/kubejs/assets/species/textures/item/wicked_mask_worn.png new file mode 100644 index 000000000..03540ca7d Binary files /dev/null and b/kubejs/assets/species/textures/item/wicked_mask_worn.png differ diff --git a/kubejs/assets/species/textures/item/wicked_swapper.png b/kubejs/assets/species/textures/item/wicked_swapper.png new file mode 100644 index 000000000..cff5af54b Binary files /dev/null and b/kubejs/assets/species/textures/item/wicked_swapper.png differ diff --git a/kubejs/assets/species/textures/item/wicked_treat.png b/kubejs/assets/species/textures/item/wicked_treat.png new file mode 100644 index 000000000..452eafc9b Binary files /dev/null and b/kubejs/assets/species/textures/item/wicked_treat.png differ diff --git a/kubejs/assets/tacz/lang/en_us.json b/kubejs/assets/tacz/lang/en_us.json index 0a1d26b09..8eeb7035a 100644 --- a/kubejs/assets/tacz/lang/en_us.json +++ b/kubejs/assets/tacz/lang/en_us.json @@ -6,15 +6,35 @@ "applied_armorer.attachment.extended_mid_mag_aa_1.name": "Fluix Grooved Magazine", "applied_armorer.attachment.extended_mid_mag_aa_2.name": "Β§9Fluix Grooved Magazine", "applied_armorer.attachment.extended_mid_mag_aa_3.name": "Β§dFluix Grooved Magazine", + "applied_armorer.ammo.cluster_quartz_bullet.name": "Β§bCluster Quartz Shell", + "applied_armorer.ammo.etched_quartz_bullet.name": "Β§bEtched Quartz Bullet", + "applied_armorer.attachment.si_pricision.name": "Β§aPrecision Scope", + "applied_armorer.attachment.si_double_sided_mirror.name": "\"Double Sided Mirror\" Scope", + "applied_armorer.attachment.si_ms_12.name": "Β§aMS-12 Scope", + "applied_armorer.attachment.scope_ms_14.name": "Β§eMS-14 Scope", + "applied_armorer.attachment.scope_xgs_905.name": "Β§eXGS-905 Scope", + "applied_armorer.attachment.muzzle_classic.name": "Classic Suppressor", + "applied_armorer.attachment.muzzle_ns_1.name": "NS-1 Suppressor", + "applied_armorer.attachment.muzzle_commander.name": "Commander Muzzle Brake", + "applied_armorer.attachment.muzzle_bs_mod4.name": "BS-Mod.4 Compensator", "applied_armorer.attachment.grip_lf11.name": "LF-11 Laser-Grip", "applied_armorer.attachment.grip_sl_2.name": "SL-2 Laser-Grip", "applied_armorer.attachment.grip_stable.name": "ST-61 Grip", "applied_armorer.attachment.grip_light.name": "LI-13 Grip", "applied_armorer.attachment.grip_hf_17.name": "HF-17 Grip", + "tooltip.niklas_pistol_semi_pride": "Β§7Guns are faster than knives at any distance... right?", "create_armorer.attachment.extended_mag_ca_1.name": "Invar Magazine", "create_armorer.attachment.extended_mag_ca_2.name": "Copper Plated Magazine", "create_armorer.attachment.extended_mag_ca_3.name": "Brass Plated Magazine", - "create_armorer.ammo.rbapb.name": "Rimmed Blunt Ammo", + "create_armorer.ammo.slap.name": "SLAP Bullet", + "create_armorer.ammo.rbapb.name": "Rimmed Blunt Bullet", + "create_armorer.gun.pistol_auto_stress": "\"Stress\" Semi Pistol", + "create_armorer.gun.mg_platemag_flywheel": "\"Flywheel\" Machine Gun", + "create_armorer.gun.rifle_assult_crane": "\"Crane\" Assault Rifle", + "create_armorer.gun.sniper_semi_clockwork": "\"Clockwork\" Rifle", + "tacz.ammo.30_06.name": ".30-06 SLAP Bullet", + "tacz.ammo.12g.name": "12 Gauge Shell", + "tacz.gun.m700.name": "\"Clutch\" Sniper Rifle", "item.tacz.ammo_box.iron": "Steel Ammo Box", "item.tacz.ammo_box.gold": "Β§9Magnalium Ammo Box", "item.tacz.ammo_box.diamond": "Β§6Desh Ammo Box" diff --git a/kubejs/assets/tacz/lang/ja_jp.json b/kubejs/assets/tacz/lang/ja_jp.json new file mode 100644 index 000000000..d1b3dc311 --- /dev/null +++ b/kubejs/assets/tacz/lang/ja_jp.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.", + "applied_armorer.attachment.extended_mag_aa_1.name": "Certus Grooved Magazine", + "applied_armorer.attachment.extended_mag_aa_2.name": "Β§9Certus Grooved Magazine", + "applied_armorer.attachment.extended_mag_aa_3.name": "Β§dCertus Grooved Magazine", + "applied_armorer.attachment.extended_mid_mag_aa_1.name": "Fluix Grooved Magazine", + "applied_armorer.attachment.extended_mid_mag_aa_2.name": "Β§9Fluix Grooved Magazine", + "applied_armorer.attachment.extended_mid_mag_aa_3.name": "Β§dFluix Grooved Magazine", + "applied_armorer.attachment.grip_lf11.name": "LF-11 Laser-Grip", + "applied_armorer.attachment.grip_sl_2.name": "SL-2 Laser-Grip", + "applied_armorer.attachment.grip_stable.name": "ST-61 Grip", + "applied_armorer.attachment.grip_light.name": "LI-13 Grip", + "applied_armorer.attachment.grip_hf_17.name": "HF-17 Grip", + "create_armorer.attachment.extended_mag_ca_1.name": "Invar Magazine", + "create_armorer.attachment.extended_mag_ca_2.name": "Copper Plated Magazine", + "create_armorer.attachment.extended_mag_ca_3.name": "Brass Plated Magazine", + "create_armorer.ammo.rbapb.name": "Rimmed Blunt Ammo", + "item.tacz.ammo_box.iron": "スチールγεΌΎθ–¬η±", + "item.tacz.ammo_box.gold": "Β§9γƒžγ‚°γƒŠγƒͺウムγεΌΎθ–¬η±", + "item.tacz.ammo_box.diamond": "Β§6デッシγƒ₯γεΌΎθ–¬η±" +} \ No newline at end of file diff --git a/kubejs/assets/tacz/lang/ru_ru.json b/kubejs/assets/tacz/lang/ru_ru.json index c2a38d709..d411b0252 100644 --- a/kubejs/assets/tacz/lang/ru_ru.json +++ b/kubejs/assets/tacz/lang/ru_ru.json @@ -1,6 +1,5 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", - "lang_a": "Github", "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Π˜ΡΡ‚ΠΈΠ½Π½ΠΎ-ΠΊΠ²Π°Ρ€Ρ†Π΅Π²Ρ‹ΠΉ Ρ€ΠΈΡ„Π»Ρ‘Π½Ρ‹ΠΉ ΠΌΠ°Π³Π°Π·ΠΈΠ½", @@ -12,32 +11,6 @@ "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": "Π—Π°ΠΊΡ€Π°ΠΈΠ½Π½Ρ‹Π΅ Ρ‚ΡƒΠΏΠΎΠ³ΠΎΠ»ΠΎΠ²Ρ‹Π΅ ΠΏΠ°Ρ‚Ρ€ΠΎΠ½Ρ‹", - "lang_b": "tacz Create Armorer", - "create_armorer.ammo.slap.name": "ΠŸΠΎΠ΄ΠΊΠ°Π»ΠΈΠ±Π΅Ρ€Π½Ρ‹Π΅ Π±Ρ€ΠΎΠ½Π΅Π±ΠΎΠΉΠ½Ρ‹Π΅ ΠΏΠ°Ρ‚Ρ€ΠΎΠ½Ρ‹", - "create_armorer.ammo.40mmhe.name": "Π€Π‘ 40ΠΌΠΌ", - "create_armorer.attachment.scope_telephoto.name": "Π’Π΅Π»Π΅ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΈΠ²Π½Ρ‹ΠΉ ΠΏΡ€ΠΈΡ†Π΅Π»", - "create_armorer.attachment.sight_standard.name": "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½Ρ‹ΠΉ оптичСский ΠΏΡ€ΠΈΡ†Π΅Π»", - "create_armorer.attachment.sight_medium_distance.name": "ΠžΠΏΡ‚ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠΏΡ€ΠΈΡ†Π΅Π» срСднСй дистанции", - "create_armorer.attachment.sight_simple.name": "ΠŸΡ€ΠΎΡΡ‚ΠΎΠΉ мСханичСский ΠΏΡ€ΠΈΡ†Π΅Π»", - "create_armorer.attachment.sight_reflex.name": "Π—Π΅Ρ€ΠΊΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΏΡ€ΠΈΡ†Π΅Π»", - "create_armorer.tooltip.attachment.scope_telephoto": "Β§7Π­Ρ‚ΠΎ Π½Π΅ круассан! НС Сшь это!", - "create_armorer.attachment.muzzle_refit_bigger_cylinder.name": "\"ΠœΠ°Ρ…ΠΎΠ²ΠΈΠΊ\" ΠΏΠ΅Ρ€Π΅ΠΎΠ±ΠΎΡ€ΡƒΠ΄ΠΎΠ²Π°Π½ΠΈΠ΅: Π‘Π°Π»Π»ΠΎΠ½", - "create_armorer.attachment.muzzle_refit_lava_perfusion_bottle.name": "\"ΠšΡ€Π°Π½\" ΠΏΠ΅Ρ€Π΅ΠΎΠ±ΠΎΡ€ΡƒΠ΄ΠΎΠ²Π°Π½ΠΈΠ΅: Π€Π»Π°ΠΊΠΎΠ½Ρ‹ для ΠΏΠ΅Ρ€Ρ„ΡƒΠ·ΠΈΠΈ Π»Π°Π²Ρ‹", - "create_armorer.attachment.grip_gantry_shaft.name": "Валочная Π»ΠΈΠ½Π΅ΠΉΠ½ΠΎ-приводная рукоятка", - "create_armorer.attachment.grip_wooden.name": "ДСрСвянная рукоятка", - "create_armorer.attachment.grip_shaft.name": "Валочная рукоятка", - "create_armorer.gun.mg_platemag_flywheel": "ΠŸΡƒΠ»Π΅ΠΌΡ‘Ρ‚ \"ΠœΠ°Ρ…ΠΎΠ²ΠΈΠΊ\"", - "create_armorer.gun.rifle_assult_crane": "Штурмовая Π²ΠΈΠ½Ρ‚ΠΎΠ²ΠΊΠ° \"ΠšΡ€Π°Π½\"", - "create_armorer.gun.pistol_revolver_torque": "Π Π΅Π²ΠΎΠ»ΡŒΠ²Π΅Ρ€ \"ΠœΠΎΠΌΠ΅Π½Ρ‚ силы\"", - "create_armorer.gun.sniper_semi_clockwork": "БнайпСрская Π²ΠΈΠ½Ρ‚ΠΎΠ²ΠΊΠ° \"Π—Π°Π²ΠΎΠ΄Π½ΠΎΠΉ\"", - "create_armorer.gun.shotgun_pump_bearing": "Π”Ρ€ΠΎΠ±ΠΎΠ²ΠΈΠΊ \"Подшипник\"", - "create_armorer.gun.cannon_40mm_salamander": "ΠŸΠ»Π΅Ρ‡Π΅Π²ΠΎΠ΅ ΠΏΠΎΠ»Π΅Π²ΠΎΠ΅ ΠΎΡ€ΡƒΠ΄ΠΈΠ΅ 40ΠΌΠΌ \"Π‘Π°Π»Π°ΠΌΠ°Π½Π΄Ρ€Π°\"", - "create_armorer.tooltip.mg_platemag_flywheel": "НС Π·Π°Π±Ρ‹Π²Π°ΠΉΡ‚Π΅, Ρ‡Ρ‚ΠΎ закрСплСнная ΠΌΠΎΡ‚Ρ‹Π³Π° ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ использована для Π±Π»ΠΈΠΆΠ½Π΅Π³ΠΎ боя.", - "lang_c": "tacz Applied Armorer", "applied_armorer.ammo.cluster_quartz_bullet.name": "Π”Ρ€ΠΎΠ±ΡŒ с истинным ΠΊΠ²Π°Ρ€Ρ†Π΅ΠΌ", "applied_armorer.ammo.fluix_infused_grenade.name": "Β§bΠ“Ρ€Π°Π½Π°Ρ‚Π° с Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ΠΌ флакса", "applied_armorer.ammo.etched_quartz_bullet.name": "ΠŸΠ°Ρ‚Ρ€ΠΎΠ½Ρ‹ с истинным ΠΊΠ²Π°Ρ€Ρ†Π΅ΠΌ", @@ -58,7 +31,33 @@ "tooltip.moritz_rifle_ar77": "Β§7Π’Π°ΠΊ ΠΆΠ΅ прост Π² использовании, ΠΊΠ°ΠΊ ваша правая Ρ€ΡƒΠΊΠ°.", "tooltip.moritz_shotgun_sg914": "Β§7БСсподобноС ΠΏΠΎΠ΄Π°Π²Π»Π΅Π½ΠΈΠ΅ Π½Π° Π±Π»ΠΈΠ·ΠΊΠΎΠΉ дистанции.", "tooltip.moritz_gernade_gl3": "Β§7ЕдинствСнный нСдостаток β€” Π½Π΅Ρ‚ автоматичСского Ρ€Π΅ΠΆΠΈΠΌΠ° огня.", - "lang_d": "tacz ULV Guns", + "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": "Π—Π°ΠΊΡ€Π°ΠΈΠ½Π½Ρ‹Π΅ Ρ‚ΡƒΠΏΠΎΠ³ΠΎΠ»ΠΎΠ²Ρ‹Π΅ ΠΏΠ°Ρ‚Ρ€ΠΎΠ½Ρ‹", + "create_armorer.ammo.slap.name": "ΠŸΠΎΠ΄ΠΊΠ°Π»ΠΈΠ±Π΅Ρ€Π½Ρ‹Π΅ Π±Ρ€ΠΎΠ½Π΅Π±ΠΎΠΉΠ½Ρ‹Π΅ ΠΏΠ°Ρ‚Ρ€ΠΎΠ½Ρ‹", + "create_armorer.ammo.40mmhe.name": "Π€Π‘ 40ΠΌΠΌ", + "create_armorer.attachment.scope_telephoto.name": "Π’Π΅Π»Π΅ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΈΠ²Π½Ρ‹ΠΉ ΠΏΡ€ΠΈΡ†Π΅Π»", + "create_armorer.attachment.sight_standard.name": "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½Ρ‹ΠΉ оптичСский ΠΏΡ€ΠΈΡ†Π΅Π»", + "create_armorer.attachment.sight_medium_distance.name": "ΠžΠΏΡ‚ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠΏΡ€ΠΈΡ†Π΅Π» срСднСй дистанции", + "create_armorer.attachment.sight_simple.name": "ΠŸΡ€ΠΎΡΡ‚ΠΎΠΉ мСханичСский ΠΏΡ€ΠΈΡ†Π΅Π»", + "create_armorer.attachment.sight_reflex.name": "Π—Π΅Ρ€ΠΊΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΏΡ€ΠΈΡ†Π΅Π»", + "create_armorer.tooltip.attachment.scope_telephoto": "Β§7Π­Ρ‚ΠΎ Π½Π΅ круассан! НС Сшь это!", + "create_armorer.attachment.muzzle_refit_bigger_cylinder.name": "\"ΠœΠ°Ρ…ΠΎΠ²ΠΈΠΊ\" ΠΏΠ΅Ρ€Π΅ΠΎΠ±ΠΎΡ€ΡƒΠ΄ΠΎΠ²Π°Π½ΠΈΠ΅: Π‘Π°Π»Π»ΠΎΠ½", + "create_armorer.attachment.muzzle_refit_lava_perfusion_bottle.name": "\"ΠšΡ€Π°Π½\" ΠΏΠ΅Ρ€Π΅ΠΎΠ±ΠΎΡ€ΡƒΠ΄ΠΎΠ²Π°Π½ΠΈΠ΅: Π€Π»Π°ΠΊΠΎΠ½Ρ‹ для ΠΏΠ΅Ρ€Ρ„ΡƒΠ·ΠΈΠΈ Π»Π°Π²Ρ‹", + "create_armorer.attachment.grip_gantry_shaft.name": "Валочная Π»ΠΈΠ½Π΅ΠΉΠ½ΠΎ-приводная рукоятка", + "create_armorer.attachment.grip_wooden.name": "ДСрСвянная рукоятка", + "create_armorer.attachment.grip_shaft.name": "Валочная рукоятка", + "create_armorer.gun.mg_platemag_flywheel": "ΠŸΡƒΠ»Π΅ΠΌΡ‘Ρ‚ \"ΠœΠ°Ρ…ΠΎΠ²ΠΈΠΊ\"", + "create_armorer.gun.rifle_assult_crane": "Штурмовая Π²ΠΈΠ½Ρ‚ΠΎΠ²ΠΊΠ° \"ΠšΡ€Π°Π½\"", + "create_armorer.gun.pistol_revolver_torque": "Π Π΅Π²ΠΎΠ»ΡŒΠ²Π΅Ρ€ \"ΠœΠΎΠΌΠ΅Π½Ρ‚ силы\"", + "create_armorer.gun.sniper_semi_clockwork": "БнайпСрская Π²ΠΈΠ½Ρ‚ΠΎΠ²ΠΊΠ° \"Π—Π°Π²ΠΎΠ΄Π½ΠΎΠΉ\"", + "create_armorer.gun.shotgun_pump_bearing": "Π”Ρ€ΠΎΠ±ΠΎΠ²ΠΈΠΊ \"Подшипник\"", + "create_armorer.gun.cannon_40mm_salamander": "ΠŸΠ»Π΅Ρ‡Π΅Π²ΠΎΠ΅ ΠΏΠΎΠ»Π΅Π²ΠΎΠ΅ ΠΎΡ€ΡƒΠ΄ΠΈΠ΅ 40ΠΌΠΌ \"Π‘Π°Π»Π°ΠΌΠ°Π½Π΄Ρ€Π°\"", + "create_armorer.tooltip.mg_platemag_flywheel": "НС Π·Π°Π±Ρ‹Π²Π°ΠΉΡ‚Π΅, Ρ‡Ρ‚ΠΎ закрСплСнная ΠΌΠΎΡ‚Ρ‹Π³Π° ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ использована для Π±Π»ΠΈΠΆΠ½Π΅Π³ΠΎ боя.", + "item.tacz.ammo_box.iron": "Π―Ρ‰ΠΈΠΊ с ΠΏΠ°Ρ‚Ρ€ΠΎΠ½Π°ΠΌΠΈ (Π‘Ρ‚Π°Π»ΡŒ)", + "item.tacz.ammo_box.gold": "Β§9Π―Ρ‰ΠΈΠΊ с ΠΏΠ°Ρ‚Ρ€ΠΎΠ½Π°ΠΌΠΈ (Магналий)", + "item.tacz.ammo_box.diamond": "Β§6Π―Ρ‰ΠΈΠΊ с ΠΏΠ°Ρ‚Ρ€ΠΎΠ½Π°ΠΌΠΈ (Π”Π΅Ρˆ)", "ulv_guns.gun.flintlock.name": "ΠšΡ€Π΅ΠΌΠ½Π΅Π²ΠΎΠ΅ Ρ€ΡƒΠΆΡŒΠ΅", "ulv_guns.ammo.lead_shot": "Cвинцовая Π΄Ρ€ΠΎΠ±ΡŒ" } \ No newline at end of file diff --git a/kubejs/assets/tacz/lang/uk_ua.json b/kubejs/assets/tacz/lang/uk_ua.json index 9e075ca87..7ad948c7f 100644 --- a/kubejs/assets/tacz/lang/uk_ua.json +++ b/kubejs/assets/tacz/lang/uk_ua.json @@ -6,13 +6,36 @@ "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.ammo.cluster_quartz_bullet.name": "Β§bΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° ΠΊΠ²Π°Ρ€Ρ†ΠΎΠ²Π° ΠΎΠ±ΠΎΠ»ΠΎΠ½ΠΊΠ°", + "applied_armorer.ammo.etched_quartz_bullet.name": "Β§bΠ“Ρ€Π°Π²Ρ–ΠΉΠΎΠ²Π°Π½Π° ΠΊΠ²Π°Ρ€Ρ†ΠΎΠ²Π° куля", + "applied_armorer.attachment.si_pricision.name": "Β§aΠŸΡ€ΠΈΡ†Ρ–Π» високої точності", + "applied_armorer.attachment.si_double_sided_mirror.name": "\"ΠŸΠΎΠ΄Π²Ρ–ΠΉΠ½ΠΈΠΉ Π΄Π·Π΅Ρ€ΠΊΠ°Π»ΡŒΠ½ΠΈΠΉ\" ΠΏΡ€ΠΈΡ†Ρ–Π»", + "applied_armorer.attachment.si_ms_12.name": "Β§aMS-12 ΠŸΡ€ΠΈΡ†Ρ–Π»", + "applied_armorer.attachment.scope_ms_14.name": "Β§eMS-14 ΠŸΡ€ΠΈΡ†Ρ–Π»", + "applied_armorer.attachment.scope_xgs_905.name": "Β§eXGS-905 ΠŸΡ€ΠΈΡ†Ρ–Π»", + "applied_armorer.attachment.muzzle_classic.name": "ΠšΠ»Π°ΡΠΈΡ‡Π½ΠΈΠΉ Π³Π»ΡƒΡˆΠ½ΠΈΠΊ", + "applied_armorer.attachment.muzzle_ns_1.name": "NS-1 Π“Π»ΡƒΡˆΠ½ΠΈΠΊ", + "applied_armorer.attachment.muzzle_commander.name": "ΠšΠΎΠΌΠ°Π½Π΄ΠΈΡ€ΡΡŒΠΊΠ΅ Π΄ΡƒΠ»ΡŒΠ½Π΅ гальмо", + "applied_armorer.attachment.muzzle_bs_mod4.name": "BS-Mod.4 ΠšΠΎΠΌΠΏΠ΅Π½ΡΠ°Ρ‚ΠΎΡ€", "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", + "tooltip.niklas_pistol_semi_pride": "Β§7ΠŸΡ–ΡΡ‚ΠΎΠ»Π΅Ρ‚ΠΈ ΡˆΠ²ΠΈΠ΄ΡˆΡ– Π·Π° Π½ΠΎΠΆΡ– Π½Π° Π±ΡƒΠ΄ΡŒ-якій відстані... Ρ‡ΠΈ Π½Π΅ Ρ‚Π°ΠΊ?", "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": "Π ΠΈΠΌΠΎΠ²Π°Π½ΠΈΠΉ ΠΏΠ°Ρ‚Ρ€ΠΎΠ½ Ρ–Π· плоским зарядом" + "create_armorer.ammo.slap.name": "ΠšΡƒΠ»Ρ SLAP", + "create_armorer.ammo.rbapb.name": "ΠšΡƒΠ»Ρ Π· Ρ„Π»Π°Π½Ρ†Π΅ΠΌ Π· Ρ‚ΡƒΠΏΠΈΠΌ Π½Π°ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΈΠΊΠΎΠΌ", + "create_armorer.gun.pistol_auto_stress": "Напівавтоматичний пістолСт \"БтрСс\"", + "create_armorer.gun.mg_platemag_flywheel": "\"ΠœΠ°Ρ…ΠΎΠ²ΠΈΠΊΠΎΠ²ΠΈΠΉ\" ΠΊΡƒΠ»Π΅ΠΌΠ΅Ρ‚", + "create_armorer.gun.rifle_assult_crane": "\"ΠšΡ€Π°Π½ΠΎΠ²Π°\" ΡˆΡ‚ΡƒΡ€ΠΌΠΎΠ²Π° Π³Π²ΠΈΠ½Ρ‚Ρ–Π²ΠΊΠ°", + "create_armorer.gun.sniper_semi_clockwork": "Π“Π²ΠΈΠ½Ρ‚Ρ–Π²ΠΊΠ° \"ΠšΠ»ΠΎΠΊΠ²ΠΎΡ€ΠΊ\"", + "tacz.ammo.30_06.name": "ΠšΡƒΠ»Ρ SLAP 30-06", + "tacz.ammo.12g.name": "ΠŸΠ°Ρ‚Ρ€ΠΎΠ½ 12 ΠΊΠ°Π»Ρ–Π±Ρ€Ρƒ", + "tacz.gun.m700.name": "Π‘Π½Π°ΠΉΠΏΠ΅Ρ€ΡΡŒΠΊΠ° Π³Π²ΠΈΠ½Ρ‚Ρ–Π²ΠΊΠ° \"ΠšΠ»Π°Ρ‚Ρ‡\"", + "item.tacz.ammo_box.iron": "Π‘Ρ‚Π°Π»Π΅Π²ΠΈΠΉ ящик Π· набоями", + "item.tacz.ammo_box.gold": "Β§9Π―Ρ‰ΠΈΠΊ Π½Π°Π±ΠΎΡ—Π² Π· ΠΌΠ°Π³Π½Π°Π»Ρ–ΡŽ", + "item.tacz.ammo_box.diamond": "Β§6Π―Ρ‰ΠΈΠΊ Π½Π°Π±ΠΎΡ—Π² Π· Π΄Π΅ΡˆΡƒ" } \ No newline at end of file diff --git a/kubejs/assets/tacz/lang/zh_cn.json b/kubejs/assets/tacz/lang/zh_cn.json index 2e1527194..f7be0fbb7 100644 --- a/kubejs/assets/tacz/lang/zh_cn.json +++ b/kubejs/assets/tacz/lang/zh_cn.json @@ -6,15 +6,35 @@ "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.ammo.cluster_quartz_bullet.name": "Β§bι›†ζŸηŸ³θ‹±εΌΉ", + "applied_armorer.ammo.etched_quartz_bullet.name": "Β§bθš€εˆ»ηŸ³θ‹±εΌΉ", + "applied_armorer.attachment.si_pricision.name": "Β§aη²Ύε―†ηž„ε‡†ι•œ", + "applied_armorer.attachment.si_double_sided_mirror.name": "β€œεŒι’ι•œβ€ηž„ε‡†ι•œ", + "applied_armorer.attachment.si_ms_12.name": "Β§aMS-12ηž„ε‡†ι•œ", + "applied_armorer.attachment.scope_ms_14.name": "Β§eMS-14ηž„ε‡†ι•œ", + "applied_armorer.attachment.scope_xgs_905.name": "Β§eXGS-905ηž„ε‡†ι•œ", + "applied_armorer.attachment.muzzle_classic.name": "η»ε…ΈζΆˆιŸ³ε™¨", + "applied_armorer.attachment.muzzle_ns_1.name": "NS-1ζΆˆιŸ³ε™¨", + "applied_armorer.attachment.muzzle_commander.name": "\"ζŒ‡ζŒ₯ε˜\"εˆΆι€€ε™¨", + "applied_armorer.attachment.muzzle_bs_mod4.name": "BS-Mod.4θ‘₯偿器", "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 揑把", + "tooltip.niklas_pistol_semi_pride": "Β§7ζ— θΊθ·η¦»θΏœθΏ‘οΌŒζžͺιƒ½ζ―”εˆ€εΏ«β€¦β€¦ε―Ήε§οΌŸ", "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.slap.name": "θ„±ε£³η©Ώη”²εΌΉ", "create_armorer.ammo.rbapb.name": "ε‡ΈηΌ˜εΌι’ε€΄εΌΉ", + "create_armorer.gun.pistol_auto_stress": "β€œι‡εŽ‹β€εŠθ‡ͺεŠ¨ζ‰‹ζžͺ", + "create_armorer.gun.mg_platemag_flywheel": "β€œι£žθ½β€ζœΊζžͺ", + "create_armorer.gun.rifle_assult_crane": "β€œιΉ€εΌβ€ηͺε‡»ζ­₯ζžͺ", + "create_armorer.gun.sniper_semi_clockwork": "β€œε‘ζ‘β€ζ­₯ζžͺ", + "tacz.ammo.30_06.name": ".30-06θ„±ε£³η©Ώη”²εΌΉ", + "tacz.ammo.12g.name": "12号霰弹", + "tacz.gun.m700.name": "β€œζ“’ηΊ΅β€η‹™ε‡»ζ­₯ζžͺ", "item.tacz.ammo_box.iron": "钒弹药盒", "item.tacz.ammo_box.gold": "Β§9ι•ι“εˆι‡‘εΌΉθ―η›’", "item.tacz.ammo_box.diamond": "Β§6ζˆ΄ζ–―εΌΉθ―η›’" diff --git a/kubejs/assets/tacz/textures/gun/slot/m700.png b/kubejs/assets/tacz/textures/gun/slot/m700.png new file mode 100644 index 000000000..35b6afacf Binary files /dev/null and b/kubejs/assets/tacz/textures/gun/slot/m700.png differ diff --git a/kubejs/assets/tacz/textures/gun/uv/m700.png b/kubejs/assets/tacz/textures/gun/uv/m700.png new file mode 100644 index 000000000..6f4918f17 Binary files /dev/null and b/kubejs/assets/tacz/textures/gun/uv/m700.png differ diff --git a/kubejs/assets/tacz/textures/gun/uv/m700_n.png b/kubejs/assets/tacz/textures/gun/uv/m700_n.png new file mode 100644 index 000000000..9096d4184 Binary files /dev/null and b/kubejs/assets/tacz/textures/gun/uv/m700_n.png differ diff --git a/kubejs/assets/tacz/textures/gun/uv/m700_s.png b/kubejs/assets/tacz/textures/gun/uv/m700_s.png new file mode 100644 index 000000000..f37bef343 Binary files /dev/null and b/kubejs/assets/tacz/textures/gun/uv/m700_s.png differ diff --git a/kubejs/assets/tfc/lang/en_us.json b/kubejs/assets/tfc/lang/en_us.json index e1d7186a8..7b9b9af21 100644 --- a/kubejs/assets/tfc/lang/en_us.json +++ b/kubejs/assets/tfc/lang/en_us.json @@ -12,6 +12,7 @@ "item.tfc.jute_net": "Burlap Net", "item.tfc.dirty_jute_net": "Dirty Burlap Net", "item.tfc.powder.salt": "Table Salt", + "item.tfc.blubber": "Animal Fat", "tfc.jei.raw_hide_knapping": "Raw Hide Knapping", "metal.tfg.redstone": "Redstone", "metal.tfg.red_alloy": "Red Alloy", @@ -23,6 +24,11 @@ "metal.tfg.cobalt_brass": "Cobalt Brass", "metal.tfg.aluminium_silicate": "Aluminium Silicate", "tfc.tooltip.propick.accuracy": "Accuracy: 100%", + "tfc.recipe.barrel.tfg.barrel.gouda_wheel": "Gouda Wheel", + "tfc.recipe.barrel.tfg.barrel.feta_wheel": "Feta Wheel", + "tfc.recipe.barrel.tfg.barrel.shosha_wheel": "Shosha Wheel", + "tfc.jei.goat_horn_knapping": "Chitin Knapping Recipe", + "tfc.field_guide.book_landing_text": "Welcome traveller! This book will be the source of all you need to know as you explore the world of TerraFirmaCraft (TFC) in $(bold)TerraFirmaGreg$().$(br)This book is accessible at any time via the icon on the right side of your inventory.$(br)You can find an online copy of this guide $(bold)$(l:https://terrafirmagreg-team.github.io/Field-Guide-Modern/en_us/)here$().$(br)Click on the $(italic)Entry Index$() and start typing to $(bold)search$().", "trim_material.tfc.almandine_tfc": "Almandine", "trim_material.tfc.andradite_tfc": "Andradite", "trim_material.tfc.blue_topaz_tfc": "Blue Topaz", @@ -40,7 +46,7 @@ "trim_material.tfc.salt_tfc": "salt", "trim_material.tfc.sapphire_tfc": "Sapphire", "trim_material.tfc.sodalite_tfc": "Sodalite", - "trim_material.tfc.coke_tfc": "Coke", + "trim_material.tfc.armalcolite_tfc": "Armalcolite", "trim_material.tfc.spessartine_tfc": "Spessartine", "trim_material.tfc.topaz_tfc": "Topaz", "trim_material.tfc.uvarovite_tfc": "Uvarovite", diff --git a/kubejs/assets/tfc/lang/ja_jp.json b/kubejs/assets/tfc/lang/ja_jp.json index 659114ff5..848f86219 100644 --- a/kubejs/assets/tfc/lang/ja_jp.json +++ b/kubejs/assets/tfc/lang/ja_jp.json @@ -40,7 +40,7 @@ "trim_material.tfc.salt_tfc": "salt", "trim_material.tfc.sapphire_tfc": "Sapphire", "trim_material.tfc.sodalite_tfc": "Sodalite", - "trim_material.tfc.coke_tfc": "Coke", + "trim_material.tfc.armalcolite_tfc": "Armalcolite", "trim_material.tfc.spessartine_tfc": "Spessartine", "trim_material.tfc.topaz_tfc": "Topaz", "trim_material.tfc.uvarovite_tfc": "Uvarovite", diff --git a/kubejs/assets/tfc/lang/ru_ru.json b/kubejs/assets/tfc/lang/ru_ru.json index 6fb71b2d1..0e78df761 100644 --- a/kubejs/assets/tfc/lang/ru_ru.json +++ b/kubejs/assets/tfc/lang/ru_ru.json @@ -1,9 +1,17 @@ { "__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": "ΠžΠ»ΠΎΠ²ΡΠ½Π½Ρ‹ΠΉ сплав", - "tfc.advancements.story.propick.description": "Π‘ΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ свой ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ гСологичСский ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΊ", + "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": "ΠŸΠΎΡ€ΠΎΡˆΠΎΠΊ сСры", + "item.tfc.jute_net": "ДТутовая сСтка", + "item.tfc.dirty_jute_net": "Грязная дТутовая сСтка", + "item.tfc.powder.salt": "ΠŸΠΈΡ‰Π΅Π²Π°Ρ соль", "item.tfc.metal.double_ingot.cast_iron": "Π‘Π΅Ρ€Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ (Π”Π²ΠΎΠΉΠ½ΠΎΠΉ слиток)", "item.tfc.metal.double_ingot.black_steel": "Чёрная ΡΡ‚Π°Π»ΡŒ (Π”Π²ΠΎΠΉΠ½ΠΎΠΉ слиток)", "item.tfc.metal.double_ingot.blue_steel": "Биняя ΡΡ‚Π°Π»ΡŒ (Π”Π²ΠΎΠΉΠ½ΠΎΠΉ слиток)", @@ -126,5 +134,65 @@ "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": "ΠšΡ€ΡŽΡ‡ΠΎΠΊ (ΠšΡ€Π°ΡΠ½Π°Ρ ΡΡ‚Π°Π»ΡŒ)" + "item.tfc.metal.fish_hook.red_steel": "ΠšΡ€ΡŽΡ‡ΠΎΠΊ (ΠšΡ€Π°ΡΠ½Π°Ρ ΡΡ‚Π°Π»ΡŒ)", + "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%", + "tfc.advancements.story.propick.description": "Π‘ΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ свой ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ гСологичСский ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΊ", + "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" } \ 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 ba9450a6a..edc2397b5 100644 --- a/kubejs/assets/tfc/lang/uk_ua.json +++ b/kubejs/assets/tfc/lang/uk_ua.json @@ -11,6 +11,8 @@ "item.tfc.powder.sulfur": "Π‘Ρ–Ρ€Ρ‡Π°Π½ΠΈΠΉ ΠŸΠΎΡ€ΠΎΡˆΠΎΠΊ", "item.tfc.jute_net": "ΠœΡ–ΡˆΠΊΠΎΠ²ΠΈΠ½Π½Π° сітка", "item.tfc.dirty_jute_net": "Π‘Ρ€ΡƒΠ΄Π½Π° ΠΌΡ–ΡˆΠΊΠΎΠ²ΠΈΠ½Π½Π° сітка", + "item.tfc.powder.salt": "Π₯Π°Ρ€Ρ‡ΠΎΠ²Π° ΡΡ–Π»ΡŒ", + "item.tfc.blubber": "Π’Π²Π°Ρ€ΠΈΠ½Π½ΠΈΠΉ ΠΆΠΈΡ€", "tfc.jei.raw_hide_knapping": "ΠžΠ±Ρ€ΠΎΠ±ΠΊΠ° Π‘ΠΈΡ€ΠΎΡ— Π¨ΠΊΡ–Ρ€ΠΈ", "metal.tfg.redstone": "РСдстоун", "metal.tfg.red_alloy": "Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ сплав", @@ -22,6 +24,10 @@ "metal.tfg.cobalt_brass": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΎΠ²Π° Π»Π°Ρ‚ΡƒΠ½ΡŒ", "metal.tfg.aluminium_silicate": "ΠΠ»ΡŽΠΌΠΎΡΠΈΠ»Ρ–ΠΊΠ°Ρ‚", "tfc.tooltip.propick.accuracy": "Π’ΠΎΡ‡Π½Ρ–ΡΡ‚ΡŒ: 100%", + "tfc.recipe.barrel.tfg.barrel.gouda_wheel": "КолСсо Π“Π°ΡƒΠ΄Π°", + "tfc.recipe.barrel.tfg.barrel.feta_wheel": "КолСсо Π€Π΅Ρ‚ΠΈ", + "tfc.recipe.barrel.tfg.barrel.shosha_wheel": "КолСсо Шоша", + "tfc.field_guide.book_landing_text": "Π’Ρ–Ρ‚Π°ΡŽ, ΠΌΠ°Π½Π΄Ρ€Ρ–Π²Π½ΠΈΠΊΡƒ! Ця ΠΊΠ½ΠΈΠ³Π° станС Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎΠΌ ΡƒΡΡŒΠΎΠ³ΠΎ, Ρ‰ΠΎ Ρ‚ΠΎΠ±Ρ– ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π·Π½Π°Ρ‚ΠΈ, Π΄ΠΎΡΠ»Ρ–Π΄ΠΆΡƒΡŽΡ‡ΠΈ світ TerraFirmaCraft (TFC) Ρƒ $(bold)TerraFirmaGreg$().$(br)Ця ΠΊΠ½ΠΈΠ³Π° доступна Π±ΡƒΠ΄ΡŒ-ΠΊΠΎΠ»ΠΈ Ρ‡Π΅Ρ€Π΅Π· Ρ–ΠΊΠΎΠ½ΠΊΡƒ ΠΏΡ€Π°Π²ΠΎΡ€ΡƒΡ‡ Ρƒ Ρ‚Π²ΠΎΡ”ΠΌΡƒ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Ρ–.$(br)Онлайн-Π²Π΅Ρ€ΡΡ–ΡŽ Ρ†ΡŒΠΎΠ³ΠΎ посібника ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ $(bold)$(l:https://terrafirmagreg-team.github.io/Field-Guide-Modern/uk_ua/)Ρ‚ΡƒΡ‚$().$(br)Натисни Π½Π° $(italic)ІндСкс записів$() Ρ– ΠΏΠΎΡ‡Π½ΠΈ Π²Π²ΠΎΠ΄ΠΈΡ‚ΠΈ, Ρ‰ΠΎΠ± $(bold)ΡˆΡƒΠΊΠ°Ρ‚ΠΈ$().", "trim_material.tfc.almandine_tfc": "Альмандин", "trim_material.tfc.andradite_tfc": "Андрадіт", "trim_material.tfc.blue_topaz_tfc": "Π‘ΠΈΠ½Ρ–ΠΉ Π’ΠΎΠΏΠ°Π·", @@ -39,7 +45,7 @@ "trim_material.tfc.salt_tfc": "ΡΡ–Π»ΡŒ", "trim_material.tfc.sapphire_tfc": "Π‘Π°ΠΏΡ„Ρ–Ρ€", "trim_material.tfc.sodalite_tfc": "Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚", - "trim_material.tfc.coke_tfc": "Кокс", + "trim_material.tfc.armalcolite_tfc": "Армалколіт", "trim_material.tfc.spessartine_tfc": "БпСсартин", "trim_material.tfc.topaz_tfc": "Π’ΠΎΠΏΠ°Π·", "trim_material.tfc.uvarovite_tfc": "Π£Π²Π°Ρ€ΠΎΠ²Ρ–Ρ‚", diff --git a/kubejs/assets/tfc/lang/zh_cn.json b/kubejs/assets/tfc/lang/zh_cn.json index 5b248c0dc..52fd0339f 100644 --- a/kubejs/assets/tfc/lang/zh_cn.json +++ b/kubejs/assets/tfc/lang/zh_cn.json @@ -12,6 +12,7 @@ "item.tfc.jute_net": "粗麻布网", "item.tfc.dirty_jute_net": "脏粗麻布网", "item.tfc.powder.salt": "ι£Ÿη›", + "item.tfc.blubber": "εŠ¨η‰©θ„‚θ‚ͺ", "tfc.jei.raw_hide_knapping": "ε‰₯εˆΆη”Ÿηš", "metal.tfg.redstone": "纒石", "metal.tfg.red_alloy": "ηΊ’θ‰²εˆι‡‘", @@ -23,6 +24,11 @@ "metal.tfg.cobalt_brass": "ι’΄ι»„ι“œ", "metal.tfg.aluminium_silicate": "瑅酸铝", "tfc.tooltip.propick.accuracy": "η²Ύε‡†εΊ¦οΌš100%", + "tfc.recipe.barrel.tfg.barrel.gouda_wheel": "θ·ε…°ι«˜εΎ·ε₯Άι…ͺθ½", + "tfc.recipe.barrel.tfg.barrel.feta_wheel": "εΈŒθ…Šθ²θΎΎε₯Άι…ͺθ½", + "tfc.recipe.barrel.tfg.barrel.shosha_wheel": "ε–œι©¬ζ‹‰ι›…ε₯Άι…ͺθ½", + "tfc.jei.goat_horn_knapping": "ε‡ δΈθ΄¨εŠ ε·₯配方", + "tfc.field_guide.book_landing_text": "ζ—…θ‘Œθ€…οΌŒζ¬’θΏŽδ½ οΌζœ¬δΉ¦ε°†ζ˜―δ½ ζŽ’η΄’$(bold)TFG$()ζ•΄εˆεŒ…δΈ­ηΎ€ε³¦δΌ θ―΄δΈ–η•Œζ—ΆοΌŒδΈ€εˆ‡ζ‰€ιœ€ηŸ₯θ―†ηš„ζΊζ³‰γ€‚$(br)δ½ ιšζ—Άε―δ»₯ι€šθΏ‡η‰©ε“ζ ε³δΎ§ηš„ε›Ύζ ‡θΏι—ζœ¬δΉ¦γ€‚$(br)你可δ»₯在$(bold)$(l:https://terrafirmagreg-team.github.io/Field-Guide-Modern/zh_cn/)歀倄$()ζ‰Ύεˆ°ζœ¬ζŒ‡ε—ηš„εœ¨ηΊΏη‰ˆζœ¬γ€‚$(br)点击$(italic)村η›η΄’εΌ•$()εΉΆεΌ€ε§‹θΎ“ε…₯δ»₯$(bold)搜紒$()。", "trim_material.tfc.almandine_tfc": "ι“ι“ζ¦΄ηŸ³", "trim_material.tfc.andradite_tfc": "ι’™ι“ζ¦΄ηŸ³", "trim_material.tfc.blue_topaz_tfc": "θ“ι»„ηŽ‰", @@ -40,7 +46,7 @@ "trim_material.tfc.salt_tfc": "盐", "trim_material.tfc.sapphire_tfc": "蓝εηŸ³", "trim_material.tfc.sodalite_tfc": "ζ–Ήι’ ηŸ³", - "trim_material.tfc.coke_tfc": "焦煀", + "trim_material.tfc.armalcolite_tfc": "ι˜Ώε§†ι˜Ώε°”ζŸ―ε°”ηŸΏ", "trim_material.tfc.spessartine_tfc": "ι”°ι“ζ¦΄ηŸ³", "trim_material.tfc.topaz_tfc": "ι»„ηŽ‰", "trim_material.tfc.uvarovite_tfc": "ι’™ι“¬ζ¦΄ηŸ³", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/firmaciv/beneath.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/firmaciv/beneath.json new file mode 100644 index 000000000..38da342d6 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/firmaciv/beneath.json @@ -0,0 +1,37 @@ +{ + "name": "Martian Boats", + "category": "tfc:firmaciv", + "icon": "beneath:wood/sapling/crimson", + "flag": "mod:beneath", + "read_by_default": true, + "sortnum": 100, + "pages": [ + { + "type": "patchouli:text", + "text": "Way off on the far reaches of Mars, you can find both Crimson and Warped wood to create some rather flashy $(l:firmaciv/watercraft)Boats$()." + }, + { + "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/en_us/entries/getting_started/primitive_alloys.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/getting_started/primitive_alloys.json index 02f4a4702..2ee28c3ce 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/getting_started/primitive_alloys.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/getting_started/primitive_alloys.json @@ -14,7 +14,7 @@ }, { "type": "patchouli:text", - "text": "For example, to create 1000 mB of $(thing)Bronze$() (shown to the right), you would need between 880 and 920 mB of $(thing)Copper$(), and between 80 and 120 mB of $(thing)Tin$().$(br2)The next three pages show the recipes of the three bronzes. Each type of bronze can be used to make tools, $(l:mechanics/armor)Armor$(), and other metal items. They are slightly different so resulting tools will have different durability, efficiency, and attack damage." + "text": "For example, to create 1000 mB of $(thing)Bronze$() (shown to the right), you would need between 700 and 800 mB of $(thing)Copper$(), and between 200 and 300 mB of $(thing)Tin$().$(br2)The next three pages show the recipes of the three bronzes. Each type of bronze can be used to make tools, $(l:mechanics/armor)Armor$(), and other metal items. They are slightly different so resulting tools will have different durability, efficiency, and attack damage." }, { "type": "patchouli:spotlight", @@ -71,6 +71,6 @@ "gtceu:bronze_ingot": 3, "gtceu:bismuth_bronze_ingot": 4, "gtceu:black_bronze_ingot": 5, - "gtceu:brass_ingot": 7 + "create:brass_ingot": 7 } } \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/anvils.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/anvils.json index 02998bb6f..0c7efe50a 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/anvils.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/anvils.json @@ -76,6 +76,16 @@ "title": "Perfectly Forged", "link_recipes": false, "text": "There are four tiers of forging bonus:$(li)Poorly Forged$(li)Well Forged$(li)Expertly Forged$(li)Perfectly Forged$(br2)These bonuses increase the power of your tool - making it break less often, mine faster, and/or do more damage in combat, depending on the tool." + }, + { + "type": "patchouli:text", + "anchor": "welding", + "text": "Welding is a process through which two items are fused together to create a new item. Welding works the same whether on a $(l:getting_started/primitive_anvils)Stone Anvil$() or a metal anvil.$(br2)First, you must place the two items you want to weld on the anvil. You can do this either by using the items on the anvil, or by opening the anvil interface and inserting them in the two leftmost slots.", + "title": "Welding" + }, + { + "type": "patchouli:text", + "text": "You also need to have at least one $(l:mechanics/flux)Flux$() in the anvil to aid the welding process. Then, while both items are $(l:mechanics/heating)hot enough$() to weld - the tooltip will say \"Can Weld\" - you must use any $(thing)Hammer$() on the anvil. You will hear a hammering sound and the items will be welded together. They can then be extracted by using $(item)$(k:key.use)$() on the anvil with an empty hand." } ], "read_by_default": true, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/blast_furnace.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/blast_furnace.json index 29557a767..effad226e 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/blast_furnace.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/blast_furnace.json @@ -6,16 +6,16 @@ "pages": [ { "type": "patchouli:text", - "text": "A $(thing)Blast Furnace$() is an advanced device which is used in the creation of $(thing)Steel$(). By mixing $(l:getting_started/finding_ores)Iron Ores$(), $(l:tfg_tips/basic_automation)Coke$() or $(l:beneath/ores_and_minerals#cursecoal)Anthacite$(), and $(l:mechanics/flux)Flux$() in a controlled, hot environment, you can create a stronger metal than cast or wrought iron.$(br2)To obtain a blast furnace, you will first need a $(l:mechanics/crucible)Crucible$() and a lot of $(thing)Wrought Iron Sheets$()." + "text": "A $(thing)Blast Furnace$() is an advanced device which is used in the creation of $(thing)Steel$(). By mixing $(l:getting_started/finding_ores)Iron Ores$(), $(l:tfg_tips/basic_automation)Coke$() or $(l:beneath/ores_and_minerals#cursecoal)Anthacite$(), and $(l:mechanics/flux)Flux$() in a controlled, hot environment, you can create a stronger metal than cast or wrought iron.$(br2)To obtain a blast furnace, you will first need a $(l:mechanics/crucible)Crucible$() and a lot of $(thing)Wrought Iron Plates$()." }, { "type": "patchouli:crafting", "recipe": "tfc:crafting/blast_furnace", - "text": "Crafting a blast furnace itself requires a $(thing)Crucible$(), along with some of the $(thing)Wrought Iron Sheets$() you will need." + "text": "Crafting a blast furnace itself requires a $(thing)Crucible$(), along with some of the $(thing)Double Wrought Iron Plates$() you will need." }, { "type": "patchouli:text", - "text": "You will then need to construct the blast furnace, along with its $(thing)Chimney$(). The chimney must be composed out of $(l:mechanics/fire_clay#fire_bricks)Reinforced Fire Bricks$(), as they are strong enough to withstand the intense heat. These can be crafted from fire brick blocks, and either cast iron or wrought iron sheets. The sheets can be applied to each exposed face of the bricks by $(item)$(k:key.use)$() with the sheet in hand, or crafted into $(l:mechanics/blast_furnace_insulation)Blast Furnace Insulation$()." + "text": "You will then need to construct the blast furnace, along with its $(thing)Chimney$(). The chimney must be composed out of $(l:mechanics/fire_clay#fire_bricks)Reinforced Fire Bricks$(), as they are strong enough to withstand the intense heat. These can be crafted from fire brick blocks, and either cast iron or wrought iron plates. The plates can be applied to each exposed face of the bricks by $(item)$(k:key.sneak)$() + $(item)$(k:key.use)$() with the plate in hand, or crafted into $(l:mechanics/blast_furnace_insulation)Blast Furnace Insulation$()." }, { "type": "patchouli:multiblock", @@ -26,7 +26,7 @@ }, { "type": "patchouli:text", - "text": "The blast furnace's chimney can be up to five layers - each layer requiring four $(thing)Fire Bricks$() and twelve $(thing)Wrought Iron Sheets$() to complete. Having more layers increases the total capacity of the blast furnace, allowing it to smelt more steel at once. Each chimney layer, up to a maximum of five, allows the blast furnace to hold four additional ore items." + "text": "The blast furnace's chimney can be up to five layers - each layer requiring four $(thing)Fire Bricks$() and twelve $(thing)Wrought Iron Plates$() to complete. Having more layers increases the total capacity of the blast furnace, allowing it to smelt more steel at once. Each chimney layer, up to a maximum of five, allows the blast furnace to hold four additional ore items." }, { "type": "patchouli:text", @@ -55,7 +55,7 @@ }, { "type": "patchouli:text", - "text": "Finally, to get started, light the blast furnace with a $(l:getting_started/firepit#firestarter)Fire Starter$(), a $(thing)Flint and Pyrite$(), or a $(thing)Flint and Steel$(). It will begin to heat the ores inside. Make sure that the blast furnace continues to have fuel, and use the bellows to add air to the blast furnace after its internal temperature has reached the maximum for charcoal. After the ores inside heat up, they will melt and convert into $(l:mechanics/steel)Pig Iron$()." + "text": "Finally, to get started, light the blast furnace with a $(l:getting_started/firepit#firestarter)Fire Starter$() or a $(thing)Flint and Steel$(). It will begin to heat the ores inside. Make sure that the blast furnace continues to have fuel, and use the bellows to add air to the blast furnace after its internal temperature has reached the maximum for charcoal. After the ores inside heat up, they will melt and convert into $(l:mechanics/steel)Pig Iron$()." }, { "type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/bloomery.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/bloomery.json index 86959d363..7a8671585 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/bloomery.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/bloomery.json @@ -11,7 +11,7 @@ { "type": "patchouli:crafting", "recipe": "tfc:crafting/bloomery", - "text": "The bloomery is made from 8 $(thing)Bronze Double Sheets$()." + "text": "The bloomery is made from 8 $(thing)Bronze Double Plates$()." }, { "type": "patchouli:multiblock", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/roadsandroofs/paving_cart.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/roadsandroofs/paving_cart.json new file mode 100644 index 000000000..04b16db1e --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/roadsandroofs/paving_cart.json @@ -0,0 +1,48 @@ +{ + "name": "Paving Cart", + "category": "tfc:roadsandroofs", + "icon": "tfg:rnr_plow", + "pages": [ + { + "type": "patchouli:text", + "text": "The $(thing)Paving Cart$() is a specialized cart used for laying down road surfaces quickly and efficiently. It can be filled with road materials and $(thing)Crushed Base Course$() to create roads. The cart can also fill in any existing base course blocks" + }, + { + "type": "patchouli:image", + "title": "Paving Cart", + "images": [ "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart.png" ], + "border": true + }, + { + "type": "patchouli:image", + "title": "Width Adjustment Slider", + "images": [ "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_width.png" ], + "border": true, + "text": "The cart allows you to adjust the width of the path in the GUI" + }, + { + "type": "patchouli:image", + "title": "Variable Width Path", + "images": [ "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_path_width.png" ], + "border": true + }, + { + "type": "patchouli:image", + "title": "Randomizer Button", + "images": [ "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_random.png" ], + "border": true, + "text": "The cart has a mode that will lay down materials in a random pattern." + }, + { + "type": "patchouli:image", + "title": "Random Material Path", + "images": [ "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_path_random.png" ], + "border": true + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tfg:rnr_plow": 0 + }, + "sortnum": 20 +} 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 9489fa748..bd7ec360f 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,12 +14,12 @@ }, { "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)85%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)72%$(/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)80%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)70%$(/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_tarkianite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Bornite: $(l:tfg_ores/earth_vein_index#deep_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Calcite: $(l:tfg_ores/earth_vein_index#normal_gypsum)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_lapis)15%$(/l)$()$(li)Cassiterite: $(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)Cassiterite Sand: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)35%$(/l)$()$(li)Chalcocite: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Chromite: $(l:tfg_ores/earth_vein_index#deep_magnetite)33%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()$(li)Cinnabar: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)Coal: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Cobalt: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)Cobaltite: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)Cooperite: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/l)$()$(li)Diamond: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)Diatomite: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_garnet_tin)15%$(/l)$()", + "text": "$(li)Bornite: $(l:tfg_ores/earth_vein_index#deep_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Calcite: $(l:tfg_ores/earth_vein_index#normal_gypsum)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_lapis)15%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/earth_vein_index#surface_cassiterite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)35%$(/l), $(l:tfg_ores/earth_vein_index#surface_copper)5%$(/l)$()$(li)Cassiterite Sand: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)35%$(/l)$()$(li)Chalcocite: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Chromite: $(l:tfg_ores/earth_vein_index#deep_magnetite)33%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()$(li)Cinnabar: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)Coal: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Cobalt: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)Cobaltite: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)Cooperite: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/l)$()$(li)Diamond: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)Diatomite: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_garnet_tin)15%$(/l)$()", "type": "patchouli:text" }, { @@ -29,27 +29,27 @@ }, { "Type": "patchouli:text", - "text": "$(li)Kyanite: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)Lapis: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Lazurite: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Lead: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Lepidolite: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)15%$(/l)$()$(li)Lithium: $(l:tfg_ores/earth_vein_index#deep_scheelite)20%$(/l)$()$(li)Magnesite: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Magnetite: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Malachite: $(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)Molybdenite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)35%$(/l)$()$(li)Monazite: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)Native Copper: $(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)Native Gold: $(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)$()", + "text": "$(li)Kyanite: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)Lapis: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Lazurite: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Lead: $(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)Lepidolite: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)15%$(/l)$()$(li)Lithium: $(l:tfg_ores/earth_vein_index#deep_scheelite)20%$(/l)$()$(li)Magnesite: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Magnetite: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Malachite: $(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)Molybdenite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)35%$(/l)$()$(li)Monazite: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)Native Copper: $(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)Native Gold: $(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)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Native Silver: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/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)$()", + "text": "$(li)Native Silver: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)10%$(/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), $(l:tfg_ores/earth_vein_index#normal_tarkianite)35%$(/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" }, { "Type": "patchouli:text", - "text": "$(li)Pyrope: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)Quartzite: $(l:tfg_ores/earth_vein_index#normal_quartz)43%$(/l)$()$(li)Realgar: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)Red Garnet: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)5%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)5%$(/l)$()$(li)Redstone: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/earth_vein_index#normal_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)Ruby: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()$(li)Salt: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l)$()$(li)Sapphire: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Scheelite: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Soapstone: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)Sodalite: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()", + "text": "$(li)Pyrope: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)Quartzite: $(l:tfg_ores/earth_vein_index#normal_quartz)43%$(/l)$()$(li)Realgar: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)Red Garnet: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)5%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)5%$(/l)$()$(li)Redstone: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/earth_vein_index#normal_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)Ruby: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()$(li)Salt: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)10%$(/l)$()$(li)Sapphire: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Scheelite: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Soapstone: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)Sodalite: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()", "type": "patchouli:text" }, { "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)8%$(/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)$()", + "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)Tarkianite: $(l:tfg_ores/earth_vein_index#normal_tarkianite)35%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Thorianite: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Tin: $(l:tfg_ores/earth_vein_index#normal_cassiterite)55%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)35%$(/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), $(l:tfg_ores/earth_vein_index#normal_tarkianite)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/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), $(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)$()", + "text": "$(li)Uraninite: $(l:tfg_ores/earth_vein_index#deep_pitchblende)25%$(/l)$()$(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 11d948edc..eaa8bc79a 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 @@ -29,7 +29,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Sulfur & Pyrite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Tetrahedrite (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Tetrahedrite (Surface)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Topaz & Chalcocite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Uraninite & Pitchblende$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Wulfenite & Molybdenite$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Sulfur & Pyrite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tarkianite)Tarkianite & Oilsands$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Tetrahedrite (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Tetrahedrite (Surface)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Topaz & Chalcocite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Uraninite & Pitchblende$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Wulfenite & Molybdenite$()$()", "type": "patchouli:text" }, { @@ -131,7 +131,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Size$(): 34$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 20 β€” 120$(br)$(thing)Size$(): 34$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", "title": "Apatite & Pyrochlore", "type": "patchouli:text", "anchor": "normal_apatite" @@ -379,7 +379,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 72%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", + "text": "$(thing)Percentage$(): 70%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", "type": "patchouli:multiblock" }, { @@ -399,7 +399,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 10%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): Pb$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "text": "$(thing)Percentage$(): 11%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): Pb$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -419,7 +419,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 9%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", "type": "patchouli:multiblock" }, { @@ -439,7 +439,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 8%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "text": "$(thing)Percentage$(): 9%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", "type": "patchouli:multiblock" }, { @@ -471,7 +471,27 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 85%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", + "text": "$(thing)Percentage$(): 80%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Silver", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", "type": "patchouli:multiblock" }, { @@ -494,26 +514,6 @@ "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", @@ -563,7 +563,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 60%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", "type": "patchouli:multiblock" }, { @@ -583,13 +583,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", @@ -615,7 +630,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 60%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { @@ -635,13 +650,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", @@ -737,7 +767,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Rarity$(): 225$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Size$(): 20$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", + "text": "$(thing)Rarity$(): 225$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Size$(): 20$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Marble, Shale", "title": "Chromite & Magnetite", "type": "patchouli:text", "anchor": "deep_magnetite" @@ -1077,7 +1107,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Thorium", + "name": "Thorianite", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1092,7 +1122,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1930,7 +1960,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Rarity$(): 190$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Size$(): 36$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", + "text": "$(thing)Rarity$(): 190$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Size$(): 36$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", "title": "Kyanite, Mica, & Bauxite", "type": "patchouli:text", "anchor": "normal_mica" @@ -2919,7 +2949,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Rarity$(): 180$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -64 β€” 26$(br)$(thing)Size$(): 28$(br)$(thing)Height$(): 8$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite", + "text": "$(thing)Rarity$(): 180$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -64 β€” 32$(br)$(thing)Size$(): 28$(br)$(thing)Height$(): 8$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Diorite, Rhyolite", "title": "Sapphire & Almandine", "type": "patchouli:text", "anchor": "deep_sapphire" @@ -3543,6 +3573,98 @@ "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 140$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Pipe Vein$(br)$(thing)Y$(): 20 β€” 120$(br)$(thing)Height$(): 60$(br)$(thing)Radius$(): 10$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Gneiss, Granite, Limestone, Marble, Phyllite, Quartzite, Rhyolite, Schist, Shale, Slate$(br2)Only appears in deserts to the $(thing)South-West$(), with a minimum temperature of 7Β°C and a maximum rainfall of 100mm.", + "title": "Tarkianite & Oilsands", + "type": "patchouli:text", + "anchor": "normal_tarkianite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tarkianite", + "multiblock": { + "mapping": { + "0": "#forge:ores/tarkianite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Rhenium, Molybdenum$(br)$(thing)Formula$(): CuFeReβ‚„Moβ‚„Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Oilsands", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Freedom \uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Borax", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Sodium, Boron$(br)$(thing)Formula$(): Naβ‚‚Bβ‚„(Hβ‚‚O)₁₀O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Trona", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Source of$(): Sodium$(br)$(thing)Formula$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆", + "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$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", @@ -3793,7 +3915,7 @@ ] }, "enable_visualize": false, - "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)$()", + "text": "$(thing)Percentage$(): 62%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UOβ‚‚)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -3813,7 +3935,7 @@ ] }, "enable_visualize": false, - "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)$()", + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UOβ‚‚$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { 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 718015567..b0b52328e 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,7 @@ }, { "Type": "patchouli:text", - "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#mars_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#mars_surface_hematite)5%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/mars_vein_index#mars_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), $(l:tfg_ores/mars_vein_index#mars_graphite)25%$(/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#mars_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#mars_lapis)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_hematite)5%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/mars_vein_index#mars_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), $(l:tfg_ores/mars_vein_index#mars_graphite)25%$(/l)$()", "type": "patchouli:text" }, { @@ -24,17 +24,22 @@ }, { "Type": "patchouli:text", - "text": "$(li)Lead: $(l:tfg_ores/mars_vein_index#mars_galena)33%$(/l)$()$(li)Lepidolite: $(l:tfg_ores/mars_vein_index#mars_salt)15%$(/l)$()$(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#mars_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#mars_surface_hematite)5%$(/l)$()$(li)Native Silver: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_nickel_galena)23%$(/l)$()$(li)Pentlandite: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/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)$()", + "text": "$(li)Lapis: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/l)$()$(li)Lazurite: $(l:tfg_ores/mars_vein_index#mars_lapis)35%$(/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)$()$(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#mars_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#mars_surface_hematite)5%$(/l)$()$(li)Native Silver: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_nickel_galena)23%$(/l)$()$(li)Pentlandite: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/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)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Pyrolusite: $(l:tfg_ores/mars_vein_index#mars_tantalite)42%$(/l)$()$(li)Pyrope: $(l:tfg_ores/mars_vein_index#mars_almandine)26%$(/l)$()$(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#mars_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#mars_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)21%$(/l)$()$(li)Spessartine: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_nickel_galena)17%$(/l)$()", + "text": "$(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)42%$(/l)$()$(li)Pyrope: $(l:tfg_ores/mars_vein_index#mars_almandine)26%$(/l)$()$(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#mars_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#mars_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)21%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(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#mars_surface_tetrahedrite)19%$(/l)$()$(li)Sulfur: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)36%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_cassiterite)35%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()$(li)Trona: $(l:tfg_ores/mars_vein_index#mars_lubricant)35%$(/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#mars_surface_hematite)33%$(/l)$()", + "text": "$(li)Sodalite: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_tetrahedrite)19%$(/l)$()$(li)Sulfur: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)36%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/mars_vein_index#mars_surface_tetrahedrite)57%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)47%$(/l)$()$(li)Thorianite: $(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#mars_surface_cassiterite)35%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()$(li)Trona: $(l:tfg_ores/mars_vein_index#mars_lubricant)35%$(/l)$()$(li)Tungstate: $(l:tfg_ores/mars_vein_index#mars_tungsten)33%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(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#mars_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 b7c906bc8..3ad04def8 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 @@ -19,7 +19,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)Manganese & Tantalum$()$()$(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_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#mars_surface_tetrahedrite)Tetrahedrite (Surface)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Trona, Talc, & Glauconite$()$()", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_lapis)Lapis, Lazurite, & Sodalite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)Manganese & Tantalum$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)Pitchblende & Thorianite, & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Pitchblende, Thorianite, & 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_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#mars_surface_tetrahedrite)Tetrahedrite (Surface)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Trona, Talc, & Glauconite$()$()", "type": "patchouli:text" }, { @@ -1240,6 +1240,98 @@ "draw_filler": true, "type": "patchouli:empty" }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 200$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 70$(br)$(thing)Size$(): 30$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Argillite, Chalk, Chert, Dolomite, Limestone, Shale", + "title": "Lapis, Lazurite, & Sodalite", + "type": "patchouli:text", + "anchor": "mars_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "Lazurite", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Aluminium, Calcium, Sodium$(br)$(thing)Formula$(): Al₆Si₆Caβ‚ˆNaβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sodalite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Aluminium, Sodium$(br)$(thing)Formula$(): Al₃Si₃Naβ‚„Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lapis", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Lazurite, Sodalite, Pyrite, Calcite", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Calcite", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(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", @@ -1335,7 +1427,7 @@ { "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", + "title": "Pitchblende & Thorianite, & Hematite", "type": "patchouli:text", "anchor": "mars_pitchblende" }, @@ -1356,12 +1448,12 @@ ] }, "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)$()", + "text": "$(thing)Percentage$(): 41%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UOβ‚‚)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Thorium", + "name": "Thorianite", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1376,7 +1468,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 29%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "text": "$(thing)Percentage$(): 29%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1402,7 +1494,7 @@ { "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", + "title": "Pitchblende, Thorianite, & Uraninite", "type": "patchouli:text", "anchor": "deep_mars_pitchblende" }, @@ -1423,12 +1515,12 @@ ] }, "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)$()", + "text": "$(thing)Percentage$(): 52%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UOβ‚‚)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Thorium", + "name": "Thorianite", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1443,7 +1535,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 26%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "text": "$(thing)Percentage$(): 26%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1463,7 +1555,7 @@ ] }, "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)$()", + "text": "$(thing)Percentage$(): 21%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UOβ‚‚$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_ore_index.json index c2fc92e90..4001c0bec 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_ore_index.json @@ -39,7 +39,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Tantalite: $(l:tfg_ores/moon_vein_index#moon_pyrolusite)14%$(/l), $(l:tfg_ores/moon_vein_index#moon_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)40%$(/l)$()$(li)Thorium: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)Tin: $(l:tfg_ores/moon_vein_index#moon_cassiterite)17%$(/l)$()$(li)Topaz: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/moon_vein_index#moon_apatite)33%$(/l)$()$(li)Trona: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/moon_vein_index#moon_scheelite)50%$(/l)$()$(li)Vanadium Magnetite: $(l:tfg_ores/moon_vein_index#moon_magnetite)15%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/moon_vein_index#moon_molybdenum)44%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/moon_vein_index#moon_garnet)14%$(/l)$()$(li)Zeolite: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()", + "text": "$(li)Tantalite: $(l:tfg_ores/moon_vein_index#moon_pyrolusite)14%$(/l), $(l:tfg_ores/moon_vein_index#moon_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)40%$(/l)$()$(li)Thorianite: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)Tin: $(l:tfg_ores/moon_vein_index#moon_cassiterite)17%$(/l)$()$(li)Topaz: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/moon_vein_index#moon_apatite)33%$(/l)$()$(li)Trona: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/moon_vein_index#moon_scheelite)50%$(/l)$()$(li)Vanadium Magnetite: $(l:tfg_ores/moon_vein_index#moon_magnetite)15%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/moon_vein_index#moon_molybdenum)44%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/moon_vein_index#moon_garnet)14%$(/l)$()$(li)Zeolite: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_vein_index.json index 16d9728e8..a61f9b89a 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/moon_vein_index.json @@ -934,7 +934,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Thorium", + "name": "Thorianite", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -949,7 +949,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 0%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "text": "$(thing)Percentage$(): 0%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_ore_index.json index 066e4693c..d7124bacc 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_ore_index.json @@ -19,7 +19,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Calcite: $(l:tfg_ores/nether_vein_index#nether_gypsum)30%$(/l), $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/nether_vein_index#nether_cassiterite)40%$(/l)$()$(li)Cassiterite Sand: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)Chalcocite: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)Chromite: $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Cinnabar: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)Coal: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Cobalt: $(l:tfg_ores/nether_vein_index#nether_garnierite)14%$(/l)$()$(li)Cobaltite: $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l)$()$(li)Cooperite: $(l:tfg_ores/nether_vein_index#nether_sheldonite)29%$(/l)$()$(li)Diamond: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/l)$()$(li)Diatomite: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnet_tin)15%$(/l)$()$(li)Electrotine: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l)$()", + "text": "$(li)Calcite: $(l:tfg_ores/nether_vein_index#nether_gypsum)30%$(/l), $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/nether_vein_index#nether_cassiterite)36%$(/l)$()$(li)Cassiterite Sand: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)Chalcocite: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)Chromite: $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Cinnabar: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)Coal: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Cobalt: $(l:tfg_ores/nether_vein_index#nether_garnierite)14%$(/l)$()$(li)Cobaltite: $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l)$()$(li)Cooperite: $(l:tfg_ores/nether_vein_index#nether_sheldonite)29%$(/l)$()$(li)Diamond: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/l)$()$(li)Diatomite: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnet_tin)15%$(/l)$()$(li)Electrotine: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l)$()", "type": "patchouli:text" }, { @@ -39,12 +39,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)Quartzite: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()$(li)Red Garnet: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)Redstone: $(l:tfg_ores/nether_vein_index#nether_redstone)45%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/nether_vein_index#nether_beryllium)18%$(/l)$()$(li)Ruby: $(l:tfg_ores/nether_vein_index#nether_redstone)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)20%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l)$()$(li)Sapphire: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Scheelite: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()$(li)Soapstone: $(l:tfg_ores/nether_vein_index#nether_lubricant)30%$(/l)$()$(li)Sodalite: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)Stibnite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()", + "text": "$(li)Quartzite: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()$(li)Red Garnet: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)Redstone: $(l:tfg_ores/nether_vein_index#nether_redstone)45%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/nether_vein_index#nether_beryllium)18%$(/l)$()$(li)Ruby: $(l:tfg_ores/nether_vein_index#nether_redstone)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)20%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_cassiterite)9%$(/l)$()$(li)Sapphire: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Scheelite: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()$(li)Soapstone: $(l:tfg_ores/nether_vein_index#nether_lubricant)30%$(/l)$()$(li)Sodalite: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)Stibnite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Sylvite: $(l:tfg_ores/nether_vein_index#nether_sylvite)100%$(/l)$()$(li)Talc: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Tantalite: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Thorium: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)Tin: $(l:tfg_ores/nether_vein_index#nether_cassiterite)60%$(/l)$()$(li)Topaz: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Trona: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/nether_vein_index#nether_scheelite)35%$(/l)$()$(li)Uraninite: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/l)$()$(li)Vanadium Magnetite: $(l:tfg_ores/nether_vein_index#nether_magnetite)30%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/nether_vein_index#nether_molybdenum)42%$(/l), $(l:tfg_ores/nether_vein_index#nether_pitchblende)12%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/nether_vein_index#nether_garnet)14%$(/l)$()", + "text": "$(li)Sylvite: $(l:tfg_ores/nether_vein_index#nether_sylvite)100%$(/l)$()$(li)Talc: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Tantalite: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Thorianite: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)Tin: $(l:tfg_ores/nether_vein_index#nether_cassiterite)54%$(/l)$()$(li)Topaz: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Trona: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/nether_vein_index#nether_scheelite)35%$(/l)$()$(li)Uraninite: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/l)$()$(li)Vanadium Magnetite: $(l:tfg_ores/nether_vein_index#nether_magnetite)30%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/nether_vein_index#nether_molybdenum)42%$(/l), $(l:tfg_ores/nether_vein_index#nether_pitchblende)12%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/nether_vein_index#nether_garnet)14%$(/l)$()", "type": "patchouli:text" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_vein_index.json index 1146e818f..722cc922e 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_vein_index.json @@ -396,7 +396,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 60%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", + "text": "$(thing)Percentage$(): 54%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", "type": "patchouli:multiblock" }, { @@ -416,13 +416,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "text": "$(thing)Percentage$(): 36%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:multiblock", + "name": "Saltpeter", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 9%$(br)$(thing)Source of$(): Potassium, Nitrogen$(br)$(thing)Formula$(): KNO₃", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", @@ -784,7 +799,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Thorium", + "name": "Thorianite", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -799,7 +814,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 0%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "text": "$(thing)Percentage$(): 0%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -2543,7 +2558,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 100%$(br)$(thing)Used for$(): Fertiliser$(br)$(thing)Formula$(): KCl", + "text": "$(thing)Percentage$(): 100%$(br)$(thing)Used for$(): Fertilizer$(br)$(thing)Formula$(): KCl", "type": "patchouli:multiblock" }, { @@ -2729,7 +2744,7 @@ ] }, "enable_visualize": false, - "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)$()", + "text": "$(thing)Percentage$(): 62%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UOβ‚‚)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -2749,7 +2764,7 @@ ] }, "enable_visualize": false, - "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)$()", + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UOβ‚‚$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/venus_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/venus_ore_index.json new file mode 100644 index 000000000..c5ed949ce --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/venus_ore_index.json @@ -0,0 +1,22 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Venus Ore Index", + "icon": "vintageimprovements:sulfur", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Ore Index$() for $(thing)Venus$(). All ores are sorted alphabetically and then by richest to poorest vein type. You can click on them to learn more information about each vein.", + "title": "Venus Ore Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Lepidolite: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)Pyrite: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)15%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/venus_vein_index#venus_manual_salt)10%$(/l)$()$(li)Salt: $(l:tfg_ores/venus_vein_index#venus_manual_salt)80%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)5%$(/l)$()$(li)Spodumene: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)Sulfur: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)80%$(/l)$()", + "type": "patchouli:text" + } + ], + "sortnum": 8 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/venus_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/venus_vein_index.json new file mode 100644 index 000000000..9585d526b --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/venus_vein_index.json @@ -0,0 +1,181 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Venus Vein Index", + "icon": "gtceu:venus_stone_sulfur_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Vein Index$() for $(item)Venus$(). Each Vein has details regarding its rarity, density, vein type, height found, sizes, what stones it spawns in, and more.", + "title": "Venus Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/venus_vein_index#venus_manual_salt)Salts & Spodumene$()$()$(li)$(l:tfg_ores/venus_vein_index#venus_manual_sulfur)Sulfur & Pyrite$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 30$(br)$(thing)Density$(): 0.2$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 40 β€” 65$(br)$(thing)Size$(): 20$(br)$(thing)Height$(): 6$(br)$(thing)Indicator Max Depth$(): 30$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite, Trachyte, Travertine$(br2)Only appears in the $(thing)Salt Flats$() biome.", + "title": "Salts & Spodumene", + "type": "patchouli:text", + "anchor": "venus_manual_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Salt", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 80%$(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$(): 10%$(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$(): 5%$(br)$(thing)Source of$(): Potassium, Lithium, Aluminium, Fluorine$(br)$(thing)Formula$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Spodumene", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Lithium, Aluminium$(br)$(thing)Formula$(): LiAlSiβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 30$(br)$(thing)Density$(): 0.2$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 40 β€” 65$(br)$(thing)Size$(): 20$(br)$(thing)Indicator Max Depth$(): 30$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite, Trachyte, Travertine$(br2)Only appears in the $(thing)Sulfuric Ravines$() biome.", + "title": "Sulfur & Pyrite", + "type": "patchouli:text", + "anchor": "venus_manual_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 80%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(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$(): 5%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", + "type": "patchouli:multiblock" + } + ], + "sortnum": 9 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/anvil_working_guide.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/anvil_working_guide.json index 118aad884..b210c5cac 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/anvil_working_guide.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/anvil_working_guide.json @@ -131,7 +131,7 @@ }, { "type": "patchouli:text", - "text": "Rod Target Value: $(bold)78$()$(br)Required Steps: Draw->Draw->Bend$(br)\"requiredWork\": (-15 x 2) + 7 = -23$(br)Derived Value: 78 + 23 = 101.$(br)Reaching the Value: (Shrink x 5)->(Bend x 3)$(br)Getting the Item: 101 - 15 - 15 + 7 = 101." + "text": "Rod Target Value: $(bold)78$()$(br)Required Steps: Draw->Draw->Bend$(br)\"requiredWork\": (-15 x 2) + 7 = -23$(br)Derived Value: 78 + 23 = 101.$(br)Reaching the Value: (Shrink x 5)->(Bend x 3)$(br)Getting the Item: 101 - 15 - 15 + 7 = 78." }, { "type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/blast_furnace_tips.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/blast_furnace_tips.json index bc3a89ef9..52011ad60 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/blast_furnace_tips.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/blast_furnace_tips.json @@ -13,7 +13,7 @@ { "type": "patchouli:spotlight", "item": "gtceu:compressed_fireclay", - "text": "Before you use all your fire clay on 20 fire bricks, note that once you get into the steam age, you can create fire bricks out of only clay, through $(item)Compressed Fireclay$() (you'll need steam machines for the clay dust). This allows you to save $(item)Kaolinite$() and $(item)Graphite$() for $(thing)Casting Tables$()." + "text": "Before you use all your fire clay on 20 fire bricks, note that once you get into the steam age, you can craft it for significantly cheaper. This allows you to save $(item)Kaolinite$() and $(item)Graphite$() for $(thing)Casting Tables$()." }, { "type": "patchouli:spotlight", @@ -33,11 +33,11 @@ }, { "type": "patchouli:text", - "text": "You can pump liquid directly out of the blast furnace using a Create $(item)Mechanical Pump$(). Pump into a $(l:tfc:tfcchannelcasting/channel_casting)Mold Table$() and extract the ingots with a hopper or chute: Easy automation!$(br2)You can automate the bellows with a $(item)Deployer$() too! Just be careful, as using the bellows excessively consumes more fuel and breaks your $(thing)tuyere$() faster.$(br2)You can process the resulting $(item)Pig Iron$() and $(item)High Carbon Steel$() in a $(thing)Forge Hammer$()." + "text": "You can pump liquid directly out of the blast furnace using a Create $(item)Mechanical Pump$(). Pump into a $(l:tfc:tfcchannelcasting/channel_casting)Mold Table$() and extract the ingots with a hopper or chute: Easy automation!$(br2)You can automate the bellows with a $(item)Deployer$() too! Just be careful, as using the bellows excessively consumes more fuel and breaks your $(thing)tuyere$() faster.$(br2)You can process the resulting $(item)Pig Iron$() and $(item)High Carbon Steel$() in a $(thing)Forge Hammer$() or $(thing)Helve Hammer$()." }, { "type": "patchouli:text", - "text": "You can automatically replace broken tuyeres with a hopper facing into the blast furnace." + "text": "You can automatically replace broken tuyeres with a hopper or item pipe facing into the blast furnace." } ] } \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/faqs.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/faqs.json index ce8574c54..69a7d3473 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/faqs.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/faqs.json @@ -13,7 +13,7 @@ }, { "type": "patchouli:text", - "text": "$(li)$(l:tfg_tips/faqs#boats)Why did my boat sink?$()$(li)$(l:tfg_tips/faqs#dried_fruit)How do I make yeast starter?$()$(li)$(l:tfg_tips/faqs#dried_fruit)How do I make pineapple fiber?$()$(li)$(l:tfg_tips/faqs#jam)How do I make jam?$()$(li)$(l:tfg_tips/faqs#resin)How do I make Rubber?$()$(li)$(l:tfg_tips/faqs#chunks)How do I force-load a chunk or increase my limit?$()" + "text": "$(li)$(l:tfg_tips/faqs#boats)Why did my boat sink?$()$(li)$(l:tfg_tips/faqs#dried_fruit)How do I make yeast starter?$()$(li)$(l:tfg_tips/faqs#dried_fruit)How do I make pineapple fiber?$()$(li)$(l:tfg_tips/faqs#resin)How do I make Rubber?$()$(li)$(l:tfg_tips/faqs#chunks)How do I force-load a chunk or increase my limit?$()" }, { "type": "patchouli:text", @@ -25,11 +25,6 @@ "anchor": "dried_fruit", "text": "$(italic)How do I make yeast starter or pineapple fiber?$()$(br2)Make sure you dry the fruit first using a $(item)Drying Mat$(). Then follow the rest of the steps for $(l:firmalife/bread)bread$() or $(l:firmalife/berry_bushes)pineapple leather$()." }, - { - "type": "patchouli:text", - "anchor": "jam", - "text": "$(italic)How do I make jam?$()$(br2)It's easiest with a $(l:firmalife/oven_appliances#vat)Vat$(). Follow the steps in that section, but you don't need to make a $(thing)Jarring Station$() or $(thing)Lids$() unless you want to automate it. Just right-click the Vat of $(thing)Fruity Fluid$() with an empty jar, then right-click it again to take it out, and it should be full of jam and sealed.$(br2)Make sure you $(bold)close the lid$() on the Vat with $(item)$(k:sneak)$() + $(item)$(k:use)$()!" - }, { "type": "patchouli:text", "anchor": "chunks", @@ -38,7 +33,7 @@ { "type": "patchouli:text", "anchor": "resin", - "text": "$(italic)How do I make rubber?$()$(br2)Sticky Resin is no longer what you are looking for! First, grow some $(thing)Latex$()-producing trees and make some $(thing)Tree Taps$(). Place a tree tap on the trunk of each tree (more taps on a tree just splits the output). You can collect the Latex that comes out with a $(tfc:mechanics/barrels)Barrel$()." + "text": "$(italic)How do I make rubber?$()$(br2)Sticky Resin is no longer what you are looking for! First, grow some $(thing)Latex$()-producing trees and make some $(thing)Tree Taps$(). Place a tree tap on the trunk of each tree (more taps on a tree just splits the output). You can collect the Latex that comes out with a $(l:mechanics/barrels)Barrel$()." }, { "type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/inventory_management.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/inventory_management.json index 4b941cba3..297383796 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/inventory_management.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/inventory_management.json @@ -29,7 +29,7 @@ "type": "patchouli:text", "title": "Drums", "anchor": "drums", - "text": "For storing fluids, GregTech has $(item)Drums$(). These can hold a large amount of a single fluid type, and different tiers hold more, just like with crates.$(br2)Unlike crates, drums will retain their fluid when broken, making them ideal for moving fluids around.$(br2)Drums can automatically push their fluid out of their bottom face by right-clicking them with a $(thing)Soft Mallet$()." + "text": "For storing fluids, GregTech has $(item)Drums$(). These can hold a large amount of a single fluid type, and different tiers hold more, just like with crates.$(br2)Unlike crates, drums will retain their fluid when broken, making them ideal for moving fluids around.$(br2)Drums can automatically push their fluid out of their bottom face by right-clicking them with a $(thing)Soft Mallet$() or $(thing)Screwdriver$()." }, { "type": "patchouli:crafting", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/space_crops.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/space_crops.json index 2f32f2dfd..5215f5ffe 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/space_crops.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/space_crops.json @@ -564,7 +564,7 @@ "betterend:blossom_berry_product": 6, "betterend:bolux_mushroom_seeds": 8, "betterend:bolux_mushroom_product": 8, - "betterend:cave_pumpkin_seeds": 10, + "betterend:cave_pumpkin_plant_seeds": 10, "betterend:cave_pumpkin": 10, "betterend:chorus_mushroom_seeds": 12, "betterend:chorus_mushroom_product": 12, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/earth_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/earth_ore_index.json index 9489fa748..bd7ec360f 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/earth_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/earth_ore_index.json @@ -14,12 +14,12 @@ }, { "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)85%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)72%$(/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)80%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)70%$(/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_tarkianite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Bornite: $(l:tfg_ores/earth_vein_index#deep_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Calcite: $(l:tfg_ores/earth_vein_index#normal_gypsum)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_lapis)15%$(/l)$()$(li)Cassiterite: $(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)Cassiterite Sand: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)35%$(/l)$()$(li)Chalcocite: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Chromite: $(l:tfg_ores/earth_vein_index#deep_magnetite)33%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()$(li)Cinnabar: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)Coal: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Cobalt: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)Cobaltite: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)Cooperite: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/l)$()$(li)Diamond: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)Diatomite: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_garnet_tin)15%$(/l)$()", + "text": "$(li)Bornite: $(l:tfg_ores/earth_vein_index#deep_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Calcite: $(l:tfg_ores/earth_vein_index#normal_gypsum)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_lapis)15%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/earth_vein_index#surface_cassiterite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)35%$(/l), $(l:tfg_ores/earth_vein_index#surface_copper)5%$(/l)$()$(li)Cassiterite Sand: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)35%$(/l)$()$(li)Chalcocite: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Chromite: $(l:tfg_ores/earth_vein_index#deep_magnetite)33%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()$(li)Cinnabar: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)Coal: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Cobalt: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)Cobaltite: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)Cooperite: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/l)$()$(li)Diamond: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)Diatomite: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_garnet_tin)15%$(/l)$()", "type": "patchouli:text" }, { @@ -29,27 +29,27 @@ }, { "Type": "patchouli:text", - "text": "$(li)Kyanite: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)Lapis: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Lazurite: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Lead: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Lepidolite: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)15%$(/l)$()$(li)Lithium: $(l:tfg_ores/earth_vein_index#deep_scheelite)20%$(/l)$()$(li)Magnesite: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Magnetite: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Malachite: $(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)Molybdenite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)35%$(/l)$()$(li)Monazite: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)Native Copper: $(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)Native Gold: $(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)$()", + "text": "$(li)Kyanite: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)Lapis: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Lazurite: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Lead: $(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)Lepidolite: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)15%$(/l)$()$(li)Lithium: $(l:tfg_ores/earth_vein_index#deep_scheelite)20%$(/l)$()$(li)Magnesite: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Magnetite: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Malachite: $(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)Molybdenite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)35%$(/l)$()$(li)Monazite: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)Native Copper: $(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)Native Gold: $(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)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Native Silver: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/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)$()", + "text": "$(li)Native Silver: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)10%$(/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), $(l:tfg_ores/earth_vein_index#normal_tarkianite)35%$(/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" }, { "Type": "patchouli:text", - "text": "$(li)Pyrope: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)Quartzite: $(l:tfg_ores/earth_vein_index#normal_quartz)43%$(/l)$()$(li)Realgar: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)Red Garnet: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)5%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)5%$(/l)$()$(li)Redstone: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/earth_vein_index#normal_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)Ruby: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()$(li)Salt: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l)$()$(li)Sapphire: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Scheelite: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Soapstone: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)Sodalite: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()", + "text": "$(li)Pyrope: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)Quartzite: $(l:tfg_ores/earth_vein_index#normal_quartz)43%$(/l)$()$(li)Realgar: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)Red Garnet: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)5%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)5%$(/l)$()$(li)Redstone: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/earth_vein_index#normal_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)Ruby: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()$(li)Salt: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)10%$(/l)$()$(li)Sapphire: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Scheelite: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Soapstone: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)Sodalite: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()", "type": "patchouli:text" }, { "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)8%$(/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)$()", + "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)Tarkianite: $(l:tfg_ores/earth_vein_index#normal_tarkianite)35%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Thorianite: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Tin: $(l:tfg_ores/earth_vein_index#normal_cassiterite)55%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)35%$(/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), $(l:tfg_ores/earth_vein_index#normal_tarkianite)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/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), $(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)$()", + "text": "$(li)Uraninite: $(l:tfg_ores/earth_vein_index#deep_pitchblende)25%$(/l)$()$(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/fr_fr/entries/tfg_ores/earth_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/earth_vein_index.json index 11d948edc..eaa8bc79a 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/earth_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/earth_vein_index.json @@ -29,7 +29,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Sulfur & Pyrite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Tetrahedrite (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Tetrahedrite (Surface)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Topaz & Chalcocite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Uraninite & Pitchblende$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Wulfenite & Molybdenite$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Sulfur & Pyrite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tarkianite)Tarkianite & Oilsands$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Tetrahedrite (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Tetrahedrite (Surface)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Topaz & Chalcocite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Uraninite & Pitchblende$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Wulfenite & Molybdenite$()$()", "type": "patchouli:text" }, { @@ -131,7 +131,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Size$(): 34$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 20 β€” 120$(br)$(thing)Size$(): 34$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", "title": "Apatite & Pyrochlore", "type": "patchouli:text", "anchor": "normal_apatite" @@ -379,7 +379,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 72%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", + "text": "$(thing)Percentage$(): 70%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", "type": "patchouli:multiblock" }, { @@ -399,7 +399,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 10%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): Pb$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "text": "$(thing)Percentage$(): 11%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): Pb$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -419,7 +419,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 9%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", "type": "patchouli:multiblock" }, { @@ -439,7 +439,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 8%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "text": "$(thing)Percentage$(): 9%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", "type": "patchouli:multiblock" }, { @@ -471,7 +471,27 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 85%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", + "text": "$(thing)Percentage$(): 80%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Silver", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", "type": "patchouli:multiblock" }, { @@ -494,26 +514,6 @@ "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", @@ -563,7 +563,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 60%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", "type": "patchouli:multiblock" }, { @@ -583,13 +583,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", @@ -615,7 +630,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 60%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { @@ -635,13 +650,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", @@ -737,7 +767,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Rarity$(): 225$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Size$(): 20$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", + "text": "$(thing)Rarity$(): 225$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Size$(): 20$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Marble, Shale", "title": "Chromite & Magnetite", "type": "patchouli:text", "anchor": "deep_magnetite" @@ -1077,7 +1107,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Thorium", + "name": "Thorianite", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1092,7 +1122,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1930,7 +1960,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Rarity$(): 190$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Size$(): 36$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", + "text": "$(thing)Rarity$(): 190$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Size$(): 36$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", "title": "Kyanite, Mica, & Bauxite", "type": "patchouli:text", "anchor": "normal_mica" @@ -2919,7 +2949,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Rarity$(): 180$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -64 β€” 26$(br)$(thing)Size$(): 28$(br)$(thing)Height$(): 8$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite", + "text": "$(thing)Rarity$(): 180$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -64 β€” 32$(br)$(thing)Size$(): 28$(br)$(thing)Height$(): 8$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Diorite, Rhyolite", "title": "Sapphire & Almandine", "type": "patchouli:text", "anchor": "deep_sapphire" @@ -3543,6 +3573,98 @@ "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 140$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Pipe Vein$(br)$(thing)Y$(): 20 β€” 120$(br)$(thing)Height$(): 60$(br)$(thing)Radius$(): 10$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Gneiss, Granite, Limestone, Marble, Phyllite, Quartzite, Rhyolite, Schist, Shale, Slate$(br2)Only appears in deserts to the $(thing)South-West$(), with a minimum temperature of 7Β°C and a maximum rainfall of 100mm.", + "title": "Tarkianite & Oilsands", + "type": "patchouli:text", + "anchor": "normal_tarkianite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tarkianite", + "multiblock": { + "mapping": { + "0": "#forge:ores/tarkianite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Rhenium, Molybdenum$(br)$(thing)Formula$(): CuFeReβ‚„Moβ‚„Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Oilsands", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Freedom \uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Borax", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Sodium, Boron$(br)$(thing)Formula$(): Naβ‚‚Bβ‚„(Hβ‚‚O)₁₀O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Trona", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Source of$(): Sodium$(br)$(thing)Formula$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆", + "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$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", @@ -3793,7 +3915,7 @@ ] }, "enable_visualize": false, - "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)$()", + "text": "$(thing)Percentage$(): 62%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UOβ‚‚)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -3813,7 +3935,7 @@ ] }, "enable_visualize": false, - "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)$()", + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UOβ‚‚$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/mars_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/mars_ore_index.json index 718015567..b0b52328e 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/mars_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/mars_ore_index.json @@ -14,7 +14,7 @@ }, { "Type": "patchouli:text", - "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#mars_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#mars_surface_hematite)5%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/mars_vein_index#mars_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), $(l:tfg_ores/mars_vein_index#mars_graphite)25%$(/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#mars_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#mars_lapis)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_hematite)5%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/mars_vein_index#mars_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), $(l:tfg_ores/mars_vein_index#mars_graphite)25%$(/l)$()", "type": "patchouli:text" }, { @@ -24,17 +24,22 @@ }, { "Type": "patchouli:text", - "text": "$(li)Lead: $(l:tfg_ores/mars_vein_index#mars_galena)33%$(/l)$()$(li)Lepidolite: $(l:tfg_ores/mars_vein_index#mars_salt)15%$(/l)$()$(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#mars_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#mars_surface_hematite)5%$(/l)$()$(li)Native Silver: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_nickel_galena)23%$(/l)$()$(li)Pentlandite: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/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)$()", + "text": "$(li)Lapis: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/l)$()$(li)Lazurite: $(l:tfg_ores/mars_vein_index#mars_lapis)35%$(/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)$()$(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#mars_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#mars_surface_hematite)5%$(/l)$()$(li)Native Silver: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_nickel_galena)23%$(/l)$()$(li)Pentlandite: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/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)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Pyrolusite: $(l:tfg_ores/mars_vein_index#mars_tantalite)42%$(/l)$()$(li)Pyrope: $(l:tfg_ores/mars_vein_index#mars_almandine)26%$(/l)$()$(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#mars_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#mars_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)21%$(/l)$()$(li)Spessartine: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_nickel_galena)17%$(/l)$()", + "text": "$(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)42%$(/l)$()$(li)Pyrope: $(l:tfg_ores/mars_vein_index#mars_almandine)26%$(/l)$()$(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#mars_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#mars_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)21%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(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#mars_surface_tetrahedrite)19%$(/l)$()$(li)Sulfur: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)36%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_cassiterite)35%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()$(li)Trona: $(l:tfg_ores/mars_vein_index#mars_lubricant)35%$(/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#mars_surface_hematite)33%$(/l)$()", + "text": "$(li)Sodalite: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_tetrahedrite)19%$(/l)$()$(li)Sulfur: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)36%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/mars_vein_index#mars_surface_tetrahedrite)57%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)47%$(/l)$()$(li)Thorianite: $(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#mars_surface_cassiterite)35%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()$(li)Trona: $(l:tfg_ores/mars_vein_index#mars_lubricant)35%$(/l)$()$(li)Tungstate: $(l:tfg_ores/mars_vein_index#mars_tungsten)33%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(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#mars_surface_hematite)33%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/mars_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/mars_vein_index.json index b7c906bc8..3ad04def8 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/mars_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/mars_vein_index.json @@ -19,7 +19,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)Manganese & Tantalum$()$()$(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_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#mars_surface_tetrahedrite)Tetrahedrite (Surface)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Trona, Talc, & Glauconite$()$()", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_lapis)Lapis, Lazurite, & Sodalite$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)Manganese & Tantalum$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)Pitchblende & Thorianite, & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Pitchblende, Thorianite, & 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_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#mars_surface_tetrahedrite)Tetrahedrite (Surface)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Trona, Talc, & Glauconite$()$()", "type": "patchouli:text" }, { @@ -1240,6 +1240,98 @@ "draw_filler": true, "type": "patchouli:empty" }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 200$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 70$(br)$(thing)Size$(): 30$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Argillite, Chalk, Chert, Dolomite, Limestone, Shale", + "title": "Lapis, Lazurite, & Sodalite", + "type": "patchouli:text", + "anchor": "mars_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "Lazurite", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Aluminium, Calcium, Sodium$(br)$(thing)Formula$(): Al₆Si₆Caβ‚ˆNaβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sodalite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Aluminium, Sodium$(br)$(thing)Formula$(): Al₃Si₃Naβ‚„Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lapis", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Lazurite, Sodalite, Pyrite, Calcite", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Calcite", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(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", @@ -1335,7 +1427,7 @@ { "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", + "title": "Pitchblende & Thorianite, & Hematite", "type": "patchouli:text", "anchor": "mars_pitchblende" }, @@ -1356,12 +1448,12 @@ ] }, "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)$()", + "text": "$(thing)Percentage$(): 41%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UOβ‚‚)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Thorium", + "name": "Thorianite", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1376,7 +1468,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 29%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "text": "$(thing)Percentage$(): 29%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1402,7 +1494,7 @@ { "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", + "title": "Pitchblende, Thorianite, & Uraninite", "type": "patchouli:text", "anchor": "deep_mars_pitchblende" }, @@ -1423,12 +1515,12 @@ ] }, "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)$()", + "text": "$(thing)Percentage$(): 52%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UOβ‚‚)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "Thorium", + "name": "Thorianite", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1443,7 +1535,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 26%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "text": "$(thing)Percentage$(): 26%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1463,7 +1555,7 @@ ] }, "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)$()", + "text": "$(thing)Percentage$(): 21%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UOβ‚‚$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/moon_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/moon_ore_index.json index c2fc92e90..4001c0bec 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/moon_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/moon_ore_index.json @@ -39,7 +39,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Tantalite: $(l:tfg_ores/moon_vein_index#moon_pyrolusite)14%$(/l), $(l:tfg_ores/moon_vein_index#moon_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)40%$(/l)$()$(li)Thorium: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)Tin: $(l:tfg_ores/moon_vein_index#moon_cassiterite)17%$(/l)$()$(li)Topaz: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/moon_vein_index#moon_apatite)33%$(/l)$()$(li)Trona: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/moon_vein_index#moon_scheelite)50%$(/l)$()$(li)Vanadium Magnetite: $(l:tfg_ores/moon_vein_index#moon_magnetite)15%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/moon_vein_index#moon_molybdenum)44%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/moon_vein_index#moon_garnet)14%$(/l)$()$(li)Zeolite: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()", + "text": "$(li)Tantalite: $(l:tfg_ores/moon_vein_index#moon_pyrolusite)14%$(/l), $(l:tfg_ores/moon_vein_index#moon_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)40%$(/l)$()$(li)Thorianite: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)Tin: $(l:tfg_ores/moon_vein_index#moon_cassiterite)17%$(/l)$()$(li)Topaz: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/moon_vein_index#moon_apatite)33%$(/l)$()$(li)Trona: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/moon_vein_index#moon_scheelite)50%$(/l)$()$(li)Vanadium Magnetite: $(l:tfg_ores/moon_vein_index#moon_magnetite)15%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/moon_vein_index#moon_molybdenum)44%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/moon_vein_index#moon_garnet)14%$(/l)$()$(li)Zeolite: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/moon_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/moon_vein_index.json index 16d9728e8..a61f9b89a 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/moon_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/moon_vein_index.json @@ -934,7 +934,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Thorium", + "name": "Thorianite", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -949,7 +949,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 0%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "text": "$(thing)Percentage$(): 0%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/nether_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/nether_ore_index.json index 066e4693c..d7124bacc 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/nether_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/nether_ore_index.json @@ -19,7 +19,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Calcite: $(l:tfg_ores/nether_vein_index#nether_gypsum)30%$(/l), $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/nether_vein_index#nether_cassiterite)40%$(/l)$()$(li)Cassiterite Sand: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)Chalcocite: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)Chromite: $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Cinnabar: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)Coal: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Cobalt: $(l:tfg_ores/nether_vein_index#nether_garnierite)14%$(/l)$()$(li)Cobaltite: $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l)$()$(li)Cooperite: $(l:tfg_ores/nether_vein_index#nether_sheldonite)29%$(/l)$()$(li)Diamond: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/l)$()$(li)Diatomite: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnet_tin)15%$(/l)$()$(li)Electrotine: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l)$()", + "text": "$(li)Calcite: $(l:tfg_ores/nether_vein_index#nether_gypsum)30%$(/l), $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/nether_vein_index#nether_cassiterite)36%$(/l)$()$(li)Cassiterite Sand: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)Chalcocite: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)Chromite: $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Cinnabar: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)Coal: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Cobalt: $(l:tfg_ores/nether_vein_index#nether_garnierite)14%$(/l)$()$(li)Cobaltite: $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l)$()$(li)Cooperite: $(l:tfg_ores/nether_vein_index#nether_sheldonite)29%$(/l)$()$(li)Diamond: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/l)$()$(li)Diatomite: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnet_tin)15%$(/l)$()$(li)Electrotine: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l)$()", "type": "patchouli:text" }, { @@ -39,12 +39,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)Quartzite: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()$(li)Red Garnet: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)Redstone: $(l:tfg_ores/nether_vein_index#nether_redstone)45%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/nether_vein_index#nether_beryllium)18%$(/l)$()$(li)Ruby: $(l:tfg_ores/nether_vein_index#nether_redstone)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)20%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l)$()$(li)Sapphire: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Scheelite: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()$(li)Soapstone: $(l:tfg_ores/nether_vein_index#nether_lubricant)30%$(/l)$()$(li)Sodalite: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)Stibnite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()", + "text": "$(li)Quartzite: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()$(li)Red Garnet: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)Redstone: $(l:tfg_ores/nether_vein_index#nether_redstone)45%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/nether_vein_index#nether_beryllium)18%$(/l)$()$(li)Ruby: $(l:tfg_ores/nether_vein_index#nether_redstone)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)20%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_cassiterite)9%$(/l)$()$(li)Sapphire: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Scheelite: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()$(li)Soapstone: $(l:tfg_ores/nether_vein_index#nether_lubricant)30%$(/l)$()$(li)Sodalite: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)Stibnite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Sylvite: $(l:tfg_ores/nether_vein_index#nether_sylvite)100%$(/l)$()$(li)Talc: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Tantalite: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Thorium: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)Tin: $(l:tfg_ores/nether_vein_index#nether_cassiterite)60%$(/l)$()$(li)Topaz: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Trona: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/nether_vein_index#nether_scheelite)35%$(/l)$()$(li)Uraninite: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/l)$()$(li)Vanadium Magnetite: $(l:tfg_ores/nether_vein_index#nether_magnetite)30%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/nether_vein_index#nether_molybdenum)42%$(/l), $(l:tfg_ores/nether_vein_index#nether_pitchblende)12%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/nether_vein_index#nether_garnet)14%$(/l)$()", + "text": "$(li)Sylvite: $(l:tfg_ores/nether_vein_index#nether_sylvite)100%$(/l)$()$(li)Talc: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Tantalite: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Thorianite: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)Tin: $(l:tfg_ores/nether_vein_index#nether_cassiterite)54%$(/l)$()$(li)Topaz: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Trona: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/nether_vein_index#nether_scheelite)35%$(/l)$()$(li)Uraninite: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/l)$()$(li)Vanadium Magnetite: $(l:tfg_ores/nether_vein_index#nether_magnetite)30%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/nether_vein_index#nether_molybdenum)42%$(/l), $(l:tfg_ores/nether_vein_index#nether_pitchblende)12%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/nether_vein_index#nether_garnet)14%$(/l)$()", "type": "patchouli:text" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/nether_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/nether_vein_index.json index 1146e818f..722cc922e 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/nether_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/nether_vein_index.json @@ -396,7 +396,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 60%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", + "text": "$(thing)Percentage$(): 54%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", "type": "patchouli:multiblock" }, { @@ -416,13 +416,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "text": "$(thing)Percentage$(): 36%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:multiblock", + "name": "Saltpeter", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 9%$(br)$(thing)Source of$(): Potassium, Nitrogen$(br)$(thing)Formula$(): KNO₃", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", @@ -784,7 +799,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Thorium", + "name": "Thorianite", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -799,7 +814,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 0%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "text": "$(thing)Percentage$(): 0%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -2543,7 +2558,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Percentage$(): 100%$(br)$(thing)Used for$(): Fertiliser$(br)$(thing)Formula$(): KCl", + "text": "$(thing)Percentage$(): 100%$(br)$(thing)Used for$(): Fertilizer$(br)$(thing)Formula$(): KCl", "type": "patchouli:multiblock" }, { @@ -2729,7 +2744,7 @@ ] }, "enable_visualize": false, - "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)$()", + "text": "$(thing)Percentage$(): 62%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UOβ‚‚)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -2749,7 +2764,7 @@ ] }, "enable_visualize": false, - "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)$()", + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UOβ‚‚$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Radioactive (Any Contact)$(/t)$()", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/venus_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/venus_ore_index.json new file mode 100644 index 000000000..c5ed949ce --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/venus_ore_index.json @@ -0,0 +1,22 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Venus Ore Index", + "icon": "vintageimprovements:sulfur", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Ore Index$() for $(thing)Venus$(). All ores are sorted alphabetically and then by richest to poorest vein type. You can click on them to learn more information about each vein.", + "title": "Venus Ore Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Lepidolite: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)Pyrite: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)15%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/venus_vein_index#venus_manual_salt)10%$(/l)$()$(li)Salt: $(l:tfg_ores/venus_vein_index#venus_manual_salt)80%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)5%$(/l)$()$(li)Spodumene: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)Sulfur: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)80%$(/l)$()", + "type": "patchouli:text" + } + ], + "sortnum": 8 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/venus_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/venus_vein_index.json new file mode 100644 index 000000000..9585d526b --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/fr_fr/entries/tfg_ores/venus_vein_index.json @@ -0,0 +1,181 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Venus Vein Index", + "icon": "gtceu:venus_stone_sulfur_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Vein Index$() for $(item)Venus$(). Each Vein has details regarding its rarity, density, vein type, height found, sizes, what stones it spawns in, and more.", + "title": "Venus Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/venus_vein_index#venus_manual_salt)Salts & Spodumene$()$()$(li)$(l:tfg_ores/venus_vein_index#venus_manual_sulfur)Sulfur & Pyrite$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 30$(br)$(thing)Density$(): 0.2$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 40 β€” 65$(br)$(thing)Size$(): 20$(br)$(thing)Height$(): 6$(br)$(thing)Indicator Max Depth$(): 30$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite, Trachyte, Travertine$(br2)Only appears in the $(thing)Salt Flats$() biome.", + "title": "Salts & Spodumene", + "type": "patchouli:text", + "anchor": "venus_manual_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Salt", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 80%$(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$(): 10%$(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$(): 5%$(br)$(thing)Source of$(): Potassium, Lithium, Aluminium, Fluorine$(br)$(thing)Formula$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Spodumene", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Lithium, Aluminium$(br)$(thing)Formula$(): LiAlSiβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 30$(br)$(thing)Density$(): 0.2$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 40 β€” 65$(br)$(thing)Size$(): 20$(br)$(thing)Indicator Max Depth$(): 30$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite, Trachyte, Travertine$(br2)Only appears in the $(thing)Sulfuric Ravines$() biome.", + "title": "Sulfur & Pyrite", + "type": "patchouli:text", + "anchor": "venus_manual_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 80%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(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$(): 5%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", + "type": "patchouli:multiblock" + } + ], + "sortnum": 9 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/roadsandroofs/paving_cart.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/roadsandroofs/paving_cart.json new file mode 100644 index 000000000..a8972ae34 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/roadsandroofs/paving_cart.json @@ -0,0 +1,48 @@ +{ + "name": "Carrinho Pavimentador", + "category": "tfc:roadsandroofs", + "icon": "tfg:rnr_plow", + "pages": [ + { + "type": "patchouli:text", + "text": "O $(thing)Carrinho Pavimentador$() Γ© um carrinho especializado usado para aplicar superfΓ­cies de estrada de forma rΓ‘pida e eficiente. Ele pode ser carregado com materiais para estradas e $(thing)Base Britada$() para criar estradas. O carrinho tambΓ©m pode preencher quaisquer blocos de base jΓ‘ existentes." + }, + { + "type": "patchouli:image", + "title": "Carrinho Pavimentador", + "images": [ "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart.png" ], + "border": true + }, + { + "type": "patchouli:image", + "title": "Controle de Largura", + "images": [ "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_width.png" ], + "border": true, + "text": "O carrinho permite ajustar a largura do caminho na interface." + }, + { + "type": "patchouli:image", + "title": "Largura do Caminho", + "images": [ "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_path_width.png" ], + "border": true + }, + { + "type": "patchouli:image", + "title": "BotΓ£o AleatΓ³rio", + "images": [ "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_random.png" ], + "border": true, + "text": "O carrinho possui um modo que aplica materiais em um padrΓ£o aleatΓ³rio." + }, + { + "type": "patchouli:image", + "title": "Materiais AleatΓ³rios", + "images": [ "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_path_random.png" ], + "border": true + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tfg:rnr_plow": 0 + }, + "sortnum": 20 +} 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 4bcf0b595..ce258f730 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 @@ -14,17 +14,17 @@ }, { "Type": "patchouli:text", - "text": "$(li)Almandina: $(l:tfg_ores/earth_vein_index#deep_sapphire)38%$(/l)$()$(li)Alunita: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/l)$()$(li)Ametista: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)65%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)25%$(/l)$()$(li)Amianto: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_quartz)18%$(/l)$()$(li)Apatita: $(l:tfg_ores/earth_vein_index#normal_apatite)50%$(/l)$()$(li)Areia Cassiterita: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)35%$(/l)$()$(li)Areia Glauconita: $(l:tfg_ores/earth_vein_index#normal_lubricant)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_olivine)15%$(/l)$()$(li)Areia Granada: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Areia Mineral BasΓ‘ltica: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)35%$(/l)$()$(li)Areia Mineral GranΓ­tica: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)Areias PetrolΓ­feras: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l)$()$(li)Barita: $(l:tfg_ores/earth_vein_index#normal_quartz)37%$(/l)$()$(li)Bastnasita: $(l:tfg_ores/earth_vein_index#normal_monazite)62%$(/l)$()$(li)Bauxita: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()", + "text": "$(li)Almandina: $(l:tfg_ores/earth_vein_index#deep_sapphire)38%$(/l)$()$(li)Alunita: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/l)$()$(li)Ametista: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)65%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)25%$(/l)$()$(li)Amianto: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_quartz)18%$(/l)$()$(li)Apatita: $(l:tfg_ores/earth_vein_index#normal_apatite)50%$(/l)$()$(li)Areia Cassiterita: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)35%$(/l)$()$(li)Areia Glauconita: $(l:tfg_ores/earth_vein_index#normal_lubricant)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_olivine)15%$(/l)$()$(li)Areia Granada: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Areia Mineral BasΓ‘ltica: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)35%$(/l)$()$(li)Areia Mineral GranΓ­tica: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)Areias PetrolΓ­feras: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_tarkianite)35%$(/l)$()$(li)Barita: $(l:tfg_ores/earth_vein_index#normal_quartz)37%$(/l)$()$(li)Bastnasita: $(l:tfg_ores/earth_vein_index#normal_monazite)62%$(/l)$()$(li)Bauxita: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()", "type": "patchouli:text" }, { "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)85%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)72%$(/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)10%$(/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)80%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)70%$(/l)$()$(li)BΓ³rax: $(l:tfg_ores/earth_vein_index#normal_gypsum)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_tarkianite)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)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)35%$(/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" }, { "Type": "patchouli:text", - "text": "$(li)Cobalto: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)Cobre Nativo: $(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)Cooperita: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/l)$()$(li)Cromita: $(l:tfg_ores/earth_vein_index#deep_magnetite)33%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()$(li)Diamante: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)Diatomita: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_garnet_tin)15%$(/l)$()$(li)Eletrotina: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l)$()$(li)Enxofre: $(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)8%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Esfalerita: $(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)Esmeralda: $(l:tfg_ores/earth_vein_index#normal_beryllium)50%$(/l)$()$(li)Espessartita: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)Espodumena: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Estanho: $(l:tfg_ores/earth_vein_index#normal_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)40%$(/l)$()$(li)Estibnita: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()", + "text": "$(li)Cobalto: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)Cobre Nativo: $(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)Cooperita: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/l)$()$(li)Cromita: $(l:tfg_ores/earth_vein_index#deep_magnetite)33%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()$(li)Diamante: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)Diatomita: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_garnet_tin)15%$(/l)$()$(li)Eletrotina: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l)$()$(li)Enxofre: $(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)Esfalerita: $(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)Esmeralda: $(l:tfg_ores/earth_vein_index#normal_beryllium)50%$(/l)$()$(li)Espessartita: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)Espodumena: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Estanho: $(l:tfg_ores/earth_vein_index#normal_cassiterite)55%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)35%$(/l)$()$(li)Estibnita: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()", "type": "patchouli:text" }, { @@ -39,17 +39,17 @@ }, { "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), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/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)$()", + "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#normal_bismuthinite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)10%$(/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" }, { "Type": "patchouli:text", - "text": "$(li)Safira: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Safira Verde: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l)$()$(li)Sal: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Sal-gema: $(l:tfg_ores/earth_vein_index#normal_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)Salitre: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l)$()$(li)Sheelita: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Sodalita: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Talco: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Tantalita: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)Terra de Fuller: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_gypsum)15%$(/l)$()$(li)Tetraedrita: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)TopΓ‘zio: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)TopΓ‘zio Azul: $(l:tfg_ores/earth_vein_index#deep_topaz)35%$(/l)$()$(li)TΓ³rio: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()", + "text": "$(li)Safira: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(li)Safira Verde: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l)$()$(li)Sal: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Sal-gema: $(l:tfg_ores/earth_vein_index#normal_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)Salitre: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)10%$(/l)$()$(li)Sheelita: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Sodalita: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Talco: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Tantalita: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)Tarcianita: $(l:tfg_ores/earth_vein_index#normal_tarkianite)35%$(/l)$()$(li)Terra de Fuller: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_gypsum)15%$(/l)$()$(li)Tetraedrita: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)TopΓ‘zio: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)TopΓ‘zio Azul: $(l:tfg_ores/earth_vein_index#deep_topaz)35%$(/l)$()", "type": "patchouli:text" }, { "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)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)$()", + "text": "$(li)Torianita: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Trona: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l), $(l:tfg_ores/earth_vein_index#normal_tarkianite)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 6438a9686..7c9b24ace 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 @@ -29,7 +29,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Sheelita e Tungstato$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Tetraedrita (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Tetraedrita (SuperfΓ­cie)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)TopΓ‘zio e Calcocita$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Uraninita e Pechblenda$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Wulfenita e Molibdenita$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Sheelita e Tungstato$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tarkianite)Tarcianita e Areias PetrolΓ­feras$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Tetraedrita (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Tetraedrita (SuperfΓ­cie)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)TopΓ‘zio e Calcocita$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Uraninita e Pechblenda$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Wulfenita e Molibdenita$()$()", "type": "patchouli:text" }, { @@ -131,7 +131,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 220$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Tamanho$(): 34$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): ArdΓ³sia, Diorito, Filito, Gabro, Gnaisse, Granito, MΓ‘rmore, Quartzito, Xisto", + "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 20 β€” 120$(br)$(thing)Tamanho$(): 34$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): ArdΓ³sia, Diorito, Filito, Gabro, Gnaisse, Granito, MΓ‘rmore, Quartzito, Xisto", "title": "Apatita e Pirocloro", "type": "patchouli:text", "anchor": "normal_apatite" @@ -498,7 +498,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 72%$(br)$(thing)Derrete em$(): Bismuto$(br)$(thing)FΓ³rmula$(): Bi", + "text": "$(thing)Porcentagem$(): 70%$(br)$(thing)Derrete em$(): Bismuto$(br)$(thing)FΓ³rmula$(): Bi", "type": "patchouli:multiblock" }, { @@ -518,7 +518,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Derrete em$(): Chumbo$(br)$(thing)FΓ³rmula$(): Pb$(br)$(thing)Perigo$(): $(c)$(t:Requer MΓ‘scara Facial)Pouco Venenoso (InalaΓ§Γ£o)$(/t)$()", + "text": "$(thing)Porcentagem$(): 11%$(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" }, { @@ -538,7 +538,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 9%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)FΓ³rmula$(): Ag", + "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)FΓ³rmula$(): Ag", "type": "patchouli:multiblock" }, { @@ -558,7 +558,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 8%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)FΓ³rmula$(): S", + "text": "$(thing)Porcentagem$(): 9%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)FΓ³rmula$(): S", "type": "patchouli:multiblock" }, { @@ -590,7 +590,27 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 85%$(br)$(thing)Derrete em$(): Bismuto$(br)$(thing)FΓ³rmula$(): Bi", + "text": "$(thing)Porcentagem$(): 80%$(br)$(thing)Derrete em$(): Bismuto$(br)$(thing)FΓ³rmula$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Prata Nativa", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Derrete em$(): Prata$(br)$(thing)FΓ³rmula$(): Ag", "type": "patchouli:multiblock" }, { @@ -613,26 +633,6 @@ "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", @@ -801,7 +801,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 60%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): Sn", + "text": "$(thing)Porcentagem$(): 55%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): Sn", "type": "patchouli:multiblock" }, { @@ -821,13 +821,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): SnOβ‚‚", + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", @@ -853,7 +868,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 60%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): SnOβ‚‚", + "text": "$(thing)Porcentagem$(): 55%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { @@ -873,17 +888,32 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): Sn", + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): Sn", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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$(): 190$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Tamanho$(): 36$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 40$(br2)$(thing)Tipos de Pedra$(): ArdΓ³sia, Diorito, Filito, Gabro, Gnaisse, Granito, MΓ‘rmore, Quartzito, Xisto", + "text": "$(thing)Raridade$(): 190$(br)$(thing)Densidade$(): 0.25$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Tamanho$(): 36$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): ArdΓ³sia, Diorito, Filito, Gabro, Gnaisse, Granito, MΓ‘rmore, Quartzito, Xisto", "title": "Cianita, Mica e Bauxita", "type": "patchouli:text", "anchor": "normal_mica" @@ -1134,7 +1164,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 225$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Tamanho$(): 20$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Argilito, CalcΓ‘rio, Cherte, Conglomerado, Dolomito, Folhelho, Giz", + "text": "$(thing)Raridade$(): 225$(br)$(thing)Densidade$(): 0.3$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Tamanho$(): 20$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Argilito, CalcΓ‘rio, Cherte, Conglomerado, Dolomito, Folhelho, Giz, MΓ‘rmore", "title": "Cromita e Magnetita", "type": "patchouli:text", "anchor": "deep_magnetite" @@ -1489,7 +1519,7 @@ }, { "Type": "patchouli:multiblock", - "name": "TΓ³rio", + "name": "Torianita", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1504,7 +1534,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): TΓ³rio$(br)$(thing)FΓ³rmula$(): Th", + "text": "$(thing)Porcentagem$(): 15%$(br)$(thing)Fonte de$(): TΓ³rio$(br)$(thing)FΓ³rmula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -3202,7 +3232,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 β€” 26$(br)$(thing)Tamanho$(): 28$(br)$(thing)Altura$(): 8$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito", + "text": "$(thing)Raridade$(): 180$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): -64 β€” 32$(br)$(thing)Tamanho$(): 28$(br)$(thing)Altura$(): 8$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Diorito, Riolito", "title": "Safira e Almandina", "type": "patchouli:text", "anchor": "deep_sapphire" @@ -3543,6 +3573,98 @@ "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): LΓ­tio$(br)$(thing)FΓ³rmula$(): Li", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 140$(br)$(thing)Densidade$(): 0.35$(br)$(thing)Tipo$(): Veio Tubular$(br)$(thing)Y$(): 20 β€” 120$(br)$(thing)Altura$(): 60$(br)$(thing)Raio$(): 10$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Andesito, ArdΓ³sia, Argilito, Basalto, CalcΓ‘rio, Cherte, Conglomerado, Dacito, Diorito, Dolomito, Filito, Folhelho, Gabro, Giz, Gnaisse, Granito, MΓ‘rmore, Quartzito, Riolito, Xisto", + "title": "Tarcianita e Areias PetrolΓ­feras", + "type": "patchouli:text", + "anchor": "normal_tarkianite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tarcianita", + "multiblock": { + "mapping": { + "0": "#forge:ores/tarkianite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): RΓͺnio, MolibdΓͺnio$(br)$(thing)FΓ³rmula$(): CuFeReβ‚„Moβ‚„Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Areias PetrolΓ­feras", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): Liberdade \uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "BΓ³rax", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 20%$(br)$(thing)Fonte de$(): SΓ³dio, Boro$(br)$(thing)FΓ³rmula$(): Naβ‚‚Bβ‚„(Hβ‚‚O)₁₀O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Trona", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 10%$(br)$(thing)Fonte de$(): SΓ³dio$(br)$(thing)FΓ³rmula$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, { "Type": "patchouli:text", "text": "$(thing)Raridade$(): 170$(br)$(thing)Densidade$(): 0.4$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Tamanho$(): 40$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 60$(br2)$(thing)Tipos de Pedra$(): ArdΓ³sia, Filito, Gnaisse, MΓ‘rmore, Quartzito, Xisto", 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 b21b41ef8..8f5701118 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,7 @@ }, { "Type": "patchouli:text", - "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)7%$(/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#mars_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#mars_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), $(l:tfg_ores/mars_vein_index#mars_graphite)25%$(/l)$()$(li)Cassiterita: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)55%$(/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)7%$(/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#mars_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#mars_lapis)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_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), $(l:tfg_ores/mars_vein_index#mars_graphite)25%$(/l)$()$(li)Cassiterita: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)55%$(/l)$()", "type": "patchouli:text" }, { @@ -24,17 +24,22 @@ }, { "Type": "patchouli:text", - "text": "$(li)Fosfato TricΓ‘lcico: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()$(li)Galena: $(l:tfg_ores/mars_vein_index#mars_galena)40%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_bismuthinite)20%$(/l)$()$(li)GlossulΓ‘ria: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Goethita: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()$(li)Grafite: $(l:tfg_ores/mars_vein_index#mars_graphite)45%$(/l)$()$(li)Hematita: $(l:tfg_ores/mars_vein_index#mars_hematite)50%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_graphite)10%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)7%$(/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#mars_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#mars_surface_nickel_galena)23%$(/l)$()", + "text": "$(li)Fosfato TricΓ‘lcico: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()$(li)Galena: $(l:tfg_ores/mars_vein_index#mars_galena)40%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_bismuthinite)20%$(/l)$()$(li)GlossulΓ‘ria: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Goethita: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()$(li)Grafite: $(l:tfg_ores/mars_vein_index#mars_graphite)45%$(/l)$()$(li)Hematita: $(l:tfg_ores/mars_vein_index#mars_hematite)50%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_graphite)10%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)7%$(/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Γ‘pis-lazΓΊri: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/l)$()$(li)Lazurita: $(l:tfg_ores/mars_vein_index#mars_lapis)35%$(/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#mars_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)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(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#mars_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)$()$(li)Pedra-sabΓ£o: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()$(li)Pentlandita: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/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)42%$(/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#mars_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#mars_surface_tetrahedrite)4%$(/l)$()$(li)Rubi: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)35%$(/l)$()", + "text": "$(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#mars_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#mars_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)$()$(li)Pedra-sabΓ£o: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()$(li)Pentlandita: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/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)42%$(/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#mars_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)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(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)$()$(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#mars_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)36%$(/l)$()$(li)Tetraedrita: $(l:tfg_ores/mars_vein_index#mars_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)Trona: $(l:tfg_ores/mars_vein_index#mars_lubricant)35%$(/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)$()", + "text": "$(li)Redstone: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)45%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)$()$(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#mars_surface_cassiterite)10%$(/l)$()$(li)Sheelita: $(l:tfg_ores/mars_vein_index#mars_tungsten)42%$(/l)$()$(li)Sodalita: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/l)$()$(li)Talco: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()$(li)Tantalita: $(l:tfg_ores/mars_vein_index#mars_tantalite)36%$(/l)$()$(li)Tetraedrita: $(l:tfg_ores/mars_vein_index#mars_surface_tetrahedrite)57%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)47%$(/l)$()$(li)Torianita: $(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)26%$(/l), $(l:tfg_ores/mars_vein_index#mars_pitchblende)29%$(/l)$()$(li)Trona: $(l:tfg_ores/mars_vein_index#mars_lubricant)35%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(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 7833d38d5..3e1622d89 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 @@ -19,7 +19,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_surface_hematite)Hematita e Limonita$()$()$(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_surface_nickel_galena)Sphalerite & Galena$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_stibnite)Tetraedrita (Normal)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_tetrahedrite)Tetraedrita (SuperfΓ­cie)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Trona, Talc, & Glauconite$()$()", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_surface_hematite)Hematita e Limonita$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lapis)LΓ‘pis-lazΓΊri, Lazurita e Sodalita$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)ManganΓͺs e TΓ’ntalo$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)Pitchblende & Thorianite, & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Pitchblende, Thorianite, & 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_surface_nickel_galena)Sphalerite & Galena$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_stibnite)Tetraedrita (Normal)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_tetrahedrite)Tetraedrita (SuperfΓ­cie)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Trona, Talc, & Glauconite$()$()", "type": "patchouli:text" }, { @@ -1332,6 +1332,98 @@ "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$(): 0 β€” 70$(br)$(thing)Tamanho$(): 30$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 20$(br2)$(thing)Tipos de Pedra$(): Argilita, CalcΓ‘rio, Cherte, Dolomito, Folhelho, Giz", + "title": "LΓ‘pis-lazΓΊri, Lazurita e Sodalita", + "type": "patchouli:text", + "anchor": "mars_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "Lazurita", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 35%$(br)$(thing)Fonte de$(): AlumΓ­nio, CΓ‘lcio, SΓ³dio$(br)$(thing)FΓ³rmula$(): Al₆Si₆Caβ‚ˆNaβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sodalita", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): AlumΓ­nio, SΓ³dio$(br)$(thing)FΓ³rmula$(): Al₃Si₃Naβ‚„Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "LΓ‘pis-lazΓΊri", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 25%$(br)$(thing)Fonte de$(): Lazurita, Sodalita, Pirita, Calcita", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Calcita", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(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", @@ -1427,7 +1519,7 @@ { "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", + "title": "Pitchblende & Thorianite, & Hematite", "type": "patchouli:text", "anchor": "mars_pitchblende" }, @@ -1453,7 +1545,7 @@ }, { "Type": "patchouli:multiblock", - "name": "TΓ³rio", + "name": "Torianita", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1468,7 +1560,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 29%$(br)$(thing)Fonte de$(): TΓ³rio$(br)$(thing)FΓ³rmula$(): Th", + "text": "$(thing)Porcentagem$(): 29%$(br)$(thing)Fonte de$(): TΓ³rio$(br)$(thing)FΓ³rmula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1494,7 +1586,7 @@ { "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", + "title": "Pitchblende, Thorianite, & Uraninite", "type": "patchouli:text", "anchor": "deep_mars_pitchblende" }, @@ -1520,7 +1612,7 @@ }, { "Type": "patchouli:multiblock", - "name": "TΓ³rio", + "name": "Torianita", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1535,7 +1627,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 26%$(br)$(thing)Fonte de$(): TΓ³rio$(br)$(thing)FΓ³rmula$(): Th", + "text": "$(thing)Porcentagem$(): 26%$(br)$(thing)Fonte de$(): TΓ³rio$(br)$(thing)FΓ³rmula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_ore_index.json index ae5122eea..820ba44e8 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_ore_index.json @@ -39,7 +39,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Salitre: $(l:tfg_ores/moon_vein_index#moon_saltpeter)29%$(/l)$()$(li)Sheelita: $(l:tfg_ores/moon_vein_index#moon_scheelite)40%$(/l)$()$(li)Talco: $(l:tfg_ores/moon_vein_index#moon_lubricant)20%$(/l), $(l:tfg_ores/moon_vein_index#moon_saltpeter)12%$(/l)$()$(li)Tantalita: $(l:tfg_ores/moon_vein_index#moon_pyrolusite)14%$(/l), $(l:tfg_ores/moon_vein_index#moon_manganese)12%$(/l)$()$(li)Tetraedrita: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)40%$(/l)$()$(li)TopΓ‘zio: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)TopΓ‘zio Azul: $(l:tfg_ores/moon_vein_index#moon_topaz)35%$(/l)$()$(li)TΓ³rio: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)Trona: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/l)$()$(li)Tungstato: $(l:tfg_ores/moon_vein_index#moon_scheelite)50%$(/l)$()$(li)Wulfenita: $(l:tfg_ores/moon_vein_index#moon_molybdenum)44%$(/l)$()$(li)ZeΓ³lita: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()", + "text": "$(li)Salitre: $(l:tfg_ores/moon_vein_index#moon_saltpeter)29%$(/l)$()$(li)Sheelita: $(l:tfg_ores/moon_vein_index#moon_scheelite)40%$(/l)$()$(li)Talco: $(l:tfg_ores/moon_vein_index#moon_lubricant)20%$(/l), $(l:tfg_ores/moon_vein_index#moon_saltpeter)12%$(/l)$()$(li)Tantalita: $(l:tfg_ores/moon_vein_index#moon_pyrolusite)14%$(/l), $(l:tfg_ores/moon_vein_index#moon_manganese)12%$(/l)$()$(li)Tetraedrita: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)40%$(/l)$()$(li)TopΓ‘zio: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)TopΓ‘zio Azul: $(l:tfg_ores/moon_vein_index#moon_topaz)35%$(/l)$()$(li)Torianita: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)Trona: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/l)$()$(li)Tungstato: $(l:tfg_ores/moon_vein_index#moon_scheelite)50%$(/l)$()$(li)Wulfenita: $(l:tfg_ores/moon_vein_index#moon_molybdenum)44%$(/l)$()$(li)ZeΓ³lita: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_vein_index.json index b7dc9fe90..2f258676b 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/moon_vein_index.json @@ -1016,7 +1016,7 @@ }, { "Type": "patchouli:multiblock", - "name": "TΓ³rio", + "name": "Torianita", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1031,7 +1031,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 0%$(br)$(thing)Fonte de$(): TΓ³rio$(br)$(thing)FΓ³rmula$(): Th", + "text": "$(thing)Porcentagem$(): 0%$(br)$(thing)Fonte de$(): TΓ³rio$(br)$(thing)FΓ³rmula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_ore_index.json index 15b2f4fd7..22f0139b6 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_ore_index.json @@ -19,12 +19,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)BerΓ­lio: $(l:tfg_ores/nether_vein_index#nether_beryllium)33%$(/l)$()$(li)BΓ³rax: $(l:tfg_ores/nether_vein_index#nether_gypsum)20%$(/l)$()$(li)Bornita: $(l:tfg_ores/nether_vein_index#nether_sheldonite)41%$(/l), $(l:tfg_ores/nether_vein_index#nether_topaz)15%$(/l)$()$(li)Calcita: $(l:tfg_ores/nether_vein_index#nether_gypsum)30%$(/l), $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)Calcocita: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Calcopirita: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)CarvΓ£o: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Cassiterita: $(l:tfg_ores/nether_vein_index#nether_cassiterite)40%$(/l)$()$(li)Chumbo: $(l:tfg_ores/nether_vein_index#nether_silver)35%$(/l)$()$(li)Cianita: $(l:tfg_ores/nether_vein_index#nether_mica)46%$(/l)$()$(li)CinΓ‘brio: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)Cobaltita: $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l)$()$(li)Cobalto: $(l:tfg_ores/nether_vein_index#nether_garnierite)14%$(/l)$()$(li)Cobre Nativo: $(l:tfg_ores/nether_vein_index#nether_copper)65%$(/l), $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)30%$(/l)$()", + "text": "$(li)BerΓ­lio: $(l:tfg_ores/nether_vein_index#nether_beryllium)33%$(/l)$()$(li)BΓ³rax: $(l:tfg_ores/nether_vein_index#nether_gypsum)20%$(/l)$()$(li)Bornita: $(l:tfg_ores/nether_vein_index#nether_sheldonite)41%$(/l), $(l:tfg_ores/nether_vein_index#nether_topaz)15%$(/l)$()$(li)Calcita: $(l:tfg_ores/nether_vein_index#nether_gypsum)30%$(/l), $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)Calcocita: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Calcopirita: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)CarvΓ£o: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Cassiterita: $(l:tfg_ores/nether_vein_index#nether_cassiterite)36%$(/l)$()$(li)Chumbo: $(l:tfg_ores/nether_vein_index#nether_silver)35%$(/l)$()$(li)Cianita: $(l:tfg_ores/nether_vein_index#nether_mica)46%$(/l)$()$(li)CinΓ‘brio: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)Cobaltita: $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l)$()$(li)Cobalto: $(l:tfg_ores/nether_vein_index#nether_garnierite)14%$(/l)$()$(li)Cobre Nativo: $(l:tfg_ores/nether_vein_index#nether_copper)65%$(/l), $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)30%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Cooperita: $(l:tfg_ores/nether_vein_index#nether_sheldonite)29%$(/l)$()$(li)Cromita: $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Diamante: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/l)$()$(li)Diatomita: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnet_tin)15%$(/l)$()$(li)Eletrotina: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l)$()$(li)Enxofre: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()$(li)Esfalerita: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)Esmeralda: $(l:tfg_ores/nether_vein_index#nether_beryllium)47%$(/l)$()$(li)Espessartita: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Estanho: $(l:tfg_ores/nether_vein_index#nether_cassiterite)60%$(/l)$()$(li)Estibnita: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)Fosfato TricΓ‘lcico: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Galena: $(l:tfg_ores/nether_vein_index#nether_silver)30%$(/l)$()$(li)Garnierita: $(l:tfg_ores/nether_vein_index#nether_garnierite)23%$(/l)$()", + "text": "$(li)Cooperita: $(l:tfg_ores/nether_vein_index#nether_sheldonite)29%$(/l)$()$(li)Cromita: $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Diamante: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/l)$()$(li)Diatomita: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnet_tin)15%$(/l)$()$(li)Eletrotina: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l)$()$(li)Enxofre: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()$(li)Esfalerita: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)Esmeralda: $(l:tfg_ores/nether_vein_index#nether_beryllium)47%$(/l)$()$(li)Espessartita: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Estanho: $(l:tfg_ores/nether_vein_index#nether_cassiterite)54%$(/l)$()$(li)Estibnita: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)Fosfato TricΓ‘lcico: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Galena: $(l:tfg_ores/nether_vein_index#nether_silver)30%$(/l)$()$(li)Garnierita: $(l:tfg_ores/nether_vein_index#nether_garnierite)23%$(/l)$()", "type": "patchouli:text" }, { @@ -44,7 +44,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Salitre: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l)$()$(li)Sheelita: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()$(li)Silvita: $(l:tfg_ores/nether_vein_index#nether_sylvite)100%$(/l)$()$(li)Sodalita: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Talco: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Tantalita: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)Terra de Fuller: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_gypsum)15%$(/l)$()$(li)Tetraedrita: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)TopΓ‘zio: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)TopΓ‘zio Azul: $(l:tfg_ores/nether_vein_index#nether_topaz)35%$(/l)$()$(li)TΓ³rio: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)Trona: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Tungstato: $(l:tfg_ores/nether_vein_index#nether_scheelite)35%$(/l)$()$(li)Uraninita: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/l)$()", + "text": "$(li)Salitre: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_cassiterite)9%$(/l)$()$(li)Sheelita: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()$(li)Silvita: $(l:tfg_ores/nether_vein_index#nether_sylvite)100%$(/l)$()$(li)Sodalita: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Talco: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Tantalita: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)Terra de Fuller: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_gypsum)15%$(/l)$()$(li)Tetraedrita: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)TopΓ‘zio: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)TopΓ‘zio Azul: $(l:tfg_ores/nether_vein_index#nether_topaz)35%$(/l)$()$(li)Torianita: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)Trona: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Tungstato: $(l:tfg_ores/nether_vein_index#nether_scheelite)35%$(/l)$()$(li)Uraninita: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/l)$()", "type": "patchouli:text" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_vein_index.json index 65bd3f1a8..f3e543676 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/nether_vein_index.json @@ -488,7 +488,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 60%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): Sn", + "text": "$(thing)Porcentagem$(): 54%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): Sn", "type": "patchouli:multiblock" }, { @@ -508,13 +508,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 40%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): SnOβ‚‚", + "text": "$(thing)Porcentagem$(): 36%$(br)$(thing)Derrete em$(): Estanho$(br)$(thing)FΓ³rmula$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:multiblock", + "name": "Salitre", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 9%$(br)$(thing)Fonte de$(): PotΓ‘ssio, NitrogΓͺnio$(br)$(thing)FΓ³rmula$(): KNO₃", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", @@ -1077,7 +1092,7 @@ }, { "Type": "patchouli:multiblock", - "name": "TΓ³rio", + "name": "Torianita", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1092,7 +1107,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Porcentagem$(): 0%$(br)$(thing)Fonte de$(): TΓ³rio$(br)$(thing)FΓ³rmula$(): Th", + "text": "$(thing)Porcentagem$(): 0%$(br)$(thing)Fonte de$(): TΓ³rio$(br)$(thing)FΓ³rmula$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/venus_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/venus_ore_index.json new file mode 100644 index 000000000..0f3db8b9a --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/venus_ore_index.json @@ -0,0 +1,22 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Venus Ore Index", + "icon": "vintageimprovements:sulfur", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "Este Γ© o $(thing)Índice de MinΓ©rios$() para $(thing)Venus$(). Todos os minΓ©rios estΓ£o ordenados alfabeticamente e do veio mais rico para o mais pobre. VocΓͺ pode clicar neles para saber mais sobre cada veio.", + "title": "Venus Ore Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Enxofre: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)80%$(/l)$()$(li)Esfalerita: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)5%$(/l)$()$(li)Espodumena: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)Lepidorita: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)Pirita: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)15%$(/l)$()$(li)Sal: $(l:tfg_ores/venus_vein_index#venus_manual_salt)80%$(/l)$()$(li)Sal-gema: $(l:tfg_ores/venus_vein_index#venus_manual_salt)10%$(/l)$()", + "type": "patchouli:text" + } + ], + "sortnum": 8 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/venus_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/venus_vein_index.json new file mode 100644 index 000000000..74a356323 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/pt_br/entries/tfg_ores/venus_vein_index.json @@ -0,0 +1,181 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Venus Vein Index", + "icon": "gtceu:venus_stone_sulfur_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "Este Γ© o $(thing)Índice de Veios$() para $(item)Venus$(). Cada veio contΓ©m detalhes sobre sua raridade, densidade, tipo de veio, altura onde Γ© encontrado, tamanhos, tipos de rocha em que aparece e mais.", + "title": "Venus Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/venus_vein_index#venus_manual_sulfur)Enxofre e Pirita$()$()$(li)$(l:tfg_ores/venus_vein_index#venus_manual_salt)Salts & Spodumene$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 30$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio Aglomerado$(br)$(thing)Y$(): 40 β€” 65$(br)$(thing)Tamanho$(): 20$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 30$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito, Traquito, Travertino", + "title": "Enxofre e Pirita", + "type": "patchouli:text", + "anchor": "venus_manual_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Enxofre", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 80%$(br)$(thing)Fonte de$(): Enxofre$(br)$(thing)FΓ³rmula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pirita", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 15%$(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$(): 5%$(br)$(thing)Derrete em$(): Zinco$(br)$(thing)FΓ³rmula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Raridade$(): 30$(br)$(thing)Densidade$(): 0.2$(br)$(thing)Tipo$(): Veio em Disco$(br)$(thing)Y$(): 40 β€” 65$(br)$(thing)Tamanho$(): 20$(br)$(thing)Altura$(): 6$(br)$(thing)Profundidade MΓ‘xima do Indicador$(): 30$(br2)$(thing)Tipos de Pedra$(): Andesito, Basalto, Dacito, Riolito, Traquito, Travertino$(br2)Only appears in the $(thing)Salt Flats$() biome.", + "title": "Salts & Spodumene", + "type": "patchouli:text", + "anchor": "venus_manual_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Sal", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 80%$(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$(): 10%$(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$(): 5%$(br)$(thing)Fonte de$(): PotΓ‘ssio, LΓ­tio, AlumΓ­nio, FlΓΊor$(br)$(thing)FΓ³rmula$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Espodumena", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Porcentagem$(): 5%$(br)$(thing)Fonte de$(): LΓ­tio, AlumΓ­nio$(br)$(thing)FΓ³rmula$(): LiAlSiβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + } + ], + "sortnum": 9 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/categories/sacks_n_such.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/categories/sacks_n_such.json new file mode 100644 index 000000000..7d0c9a01c --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/categories/sacks_n_such.json @@ -0,0 +1,6 @@ +{ + "name": "Sacks 'N Such", + "description": "Всё, Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ Π·Π½Π°Ρ‚ΡŒ ΠΎ Sacks 'N Such", + "icon": "sns:textures/item/icon/leather_sack.png", + "sortnum": 3 +} \ 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 index 2e4f1ebc8..3ec25eb9c 100644 --- 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 @@ -8,30 +8,30 @@ "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" + "text": "Если Π²ΠΎ врСмя своих ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠΉ Π²Ρ‹ встрСтитС Π΄Π΅Ρ€Π΅Π²ΡŒΡ Компассии ΠΈΠ»ΠΈ Π˜Π½ΠΆΠΈΡ€Π°, Π²Π°ΠΌ Π±ΡƒΠ΄Π΅Ρ‚ приятно ΡƒΠ·Π½Π°Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎ ΠΈΠ· Π½ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ $(l:firmaciv/watercraft)Π›ΠΎΠ΄ΠΊΠΈ$() Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ ΠΈ ΠΈΠ· любого Π΄Ρ€ΡƒΠ³ΠΎΠ³ΠΎ Π²ΠΈΠ΄Π° дрСвСсины." }, { "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$()", + "title": "МягкиС ΠΏΠΎΡ€ΠΎΠ΄Ρ‹ дрСвСсины", + "text": "МягкиС ΠΏΠΎΡ€ΠΎΠ΄Ρ‹ ΠΈΠΌΠ΅ΡŽΡ‚ достаточно ΠΌΡΠ³ΠΊΡƒΡŽ дрСвСсину ΠΈ ΠΊΠΎΡ€Ρƒ, благодаря Ρ‡Π΅ΠΌΡƒ ΠΎΠ½ΠΈ идСально подходят для создания $(l:firmaciv/canoe)Π”ΠΎΠ»Π±Π»Ρ‘Π½Ρ‹Ρ… каноэ$()", "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$()" + "text": "$(li)Компассия$() $(li)Π˜Π½ΠΆΠΈΡ€$() $(li)ΠšΠΈΠΏΠ°Ρ€ΠΈΡ$()" }, { "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$()", + "title": "Π’Π²Ρ‘Ρ€Π΄Ρ‹Π΅ ΠΏΠΎΡ€ΠΎΠ΄Ρ‹ дрСвСсины", + "text": "Π˜Π·Π²Π΅ΡΡ‚Π½Ρ‹Π΅ своСй ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΉ ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒΡŽ, Ρ‚Π²Ρ‘Ρ€Π΄Ρ‹Π΅ ΠΏΠΎΡ€ΠΎΠ΄Ρ‹ дрСвСсины идСально подходят для создания Π±ΠΎΠ»Π΅Π΅ ΠΊΡ€ΡƒΠΏΠ½Ρ‹Ρ… ΠΈ слоТных Π²ΠΎΠ΄Π½Ρ‹Ρ… судов, Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ $(l:firmaciv/rowboat)Π“Ρ€Π΅Π±Π½Ρ‹Π΅ Π›ΠΎΠ΄ΠΊΠΈ$() ΠΈ $(l:firmaciv/sloop)Π¨Π»ΡŽΠΏΡ‹$()", "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$()" + "text": "$(li)Π‘Π°ΠΎΠ±Π°Π±$() $(li)Π­Π²ΠΊΠ°Π»ΠΈΠΏΡ‚$() $(li)ΠœΠ°Ρ…Π°Π³ΠΎΠ½ΠΈΡ$() $(li)ГСвСя$() $(li)Π’ΠΈΠΊΠΎΠ²ΠΎΠ΅ Π”Π΅Ρ€Π΅Π²ΠΎ$() $(li)Π–Π΅Π»Π΅Π·Π½ΠΎΠ΅ Π”Π΅Ρ€Π΅Π²ΠΎ$() $(li)ИпС$()" } ] -} \ 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 index c69005a38..72dd719ef 100644 --- 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 @@ -1,5 +1,5 @@ { - "name": "Beneath", + "name": "MарсианскиС Π»ΠΎΠ΄ΠΊΠΈ", "category": "tfc:firmaciv", "icon": "beneath:wood/sapling/crimson", "flag": "mod:beneath", @@ -8,30 +8,30 @@ "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." + "text": "Π”Π°Π»Π΅ΠΊΠΎ-Π΄Π°Π»Π΅ΠΊΠΎ, Π½Π° самых Π΄Π°Π»ΡŒΠ½ΠΈΡ… ΠΎΠΊΡ€Π°ΠΈΠ½Π°Ρ… ΠœΠ°Ρ€ΡΠ° Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΠΉΡ‚ΠΈ ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ БагряныС ΠΈ Π˜ΡΠΊΠ°ΠΆΠ΅Π½Π½Ρ‹Π΅ Π΄Π΅Ρ€Π΅Π²ΡŒΡ для создания $(l:firmaciv/watercraft)Π›ΠΎΠ΄ΠΎΠΊ$()." }, { "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$()", + "title": "МягкиС ΠΏΠΎΡ€ΠΎΠ΄Ρ‹ дрСвСсины", + "text": "МягкиС ΠΏΠΎΡ€ΠΎΠ΄Ρ‹ ΠΈΠΌΠ΅ΡŽΡ‚ достаточно ΠΌΡΠ³ΠΊΡƒΡŽ дрСвСсину ΠΈ ΠΊΠΎΡ€Ρƒ, благодаря Ρ‡Π΅ΠΌΡƒ ΠΎΠ½ΠΈ идСально подходят для создания $(l:firmaciv/canoe)Π”ΠΎΠ»Π±Π»Ρ‘Π½Ρ‹Ρ… каноэ$()", "item": "beneath:wood/stripped_log/crimson" }, { "type": "patchouli:text", - "text": "$(li)Crimson$()" + "text": "$(li)Багряная ДрСвСсина$()" }, { "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$()", + "title": "Π’Π²Ρ‘Ρ€Π΄Ρ‹Π΅ ΠΏΠΎΡ€ΠΎΠ΄Ρ‹ дрСвСсины", + "text": "Π˜Π·Π²Π΅ΡΡ‚Π½Ρ‹Π΅ своСй ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΉ ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒΡŽ, Ρ‚Π²Ρ‘Ρ€Π΄Ρ‹Π΅ ΠΏΠΎΡ€ΠΎΠ΄Ρ‹ дрСвСсины идСально подходят для создания Π±ΠΎΠ»Π΅Π΅ ΠΊΡ€ΡƒΠΏΠ½Ρ‹Ρ… ΠΈ слоТных Π²ΠΎΠ΄Π½Ρ‹Ρ… судов, Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ $(l:firmaciv/rowboat)Π“Ρ€Π΅Π±Π½Ρ‹Π΅ Π›ΠΎΠ΄ΠΊΠΈ$() ΠΈ $(l:firmaciv/sloop)Π¨Π»ΡŽΠΏΡ‹$()", "item": "beneath:wood/planks/warped" }, { "type": "patchouli:text", - "text": "$(li)Warped$()" + "text": "$(li)ИскаТСнная ДрСвСсина$()" } ] -} \ 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 index 308a0f85e..473a2bc46 100644 --- 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 @@ -20,10 +20,10 @@ "text": "ΠšΡƒΠΉΡ‚Π΅ стволы ΠΏΡƒΡˆΠ΅ΠΊ ΠΈΠ· Π΄Π²ΠΎΠΉΠ½Ρ‹Ρ… пластин ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π° ΠΈ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚Π΅ созданиС ΠΏΡƒΡˆΠΊΠΈ Ρ‡Π΅Ρ€Π΅Π· ΠΊΡ€Π°Ρ„Ρ‚." }, { - "type": "text", + "type": "patchouli: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/getting_started/primitive_alloys.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/getting_started/primitive_alloys.json index 4232f1326..b17cdf26b 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/getting_started/primitive_alloys.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/getting_started/primitive_alloys.json @@ -14,28 +14,28 @@ }, { "type": "patchouli:text", - "text": "НапримСр, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ 1000 ΠΌΠ‘ $(thing)Π‘Ρ€ΠΎΠ½Π·Ρ‹$() (ΠΏΠΎΠΊΠ°Π·Π°Π½ΠΎ справа), Π²Π°ΠΌ потрСбуСтся ΠΎΡ‚ 880 Π΄ΠΎ 920 ΠΌΠ‘ $(thing)ΠΌΠ΅Π΄ΠΈ$(), ΠΈ ΠΎΡ‚ 80 Π΄ΠΎ 120 ΠΌΠ‘ $(thing)Олова$().$(br2)На ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΡ… Ρ‚Ρ€Π΅Ρ… страницах ΠΏΠΎΠΊΠ°Π·Π°Π½Ρ‹ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Ρ‚Ρ€Π΅Ρ… Π²ΠΈΠ΄ΠΎΠ² Π±Ρ€ΠΎΠ½Π·Ρ‹. ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ‚ΠΈΠΏ Π±Ρ€ΠΎΠ½Π·Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ для изготовлСния инструмСнтов, $(l:mechanics/armor)ДоспСхов$(), ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… мСталличСских ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ². Они Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΎΡ‚Π»ΠΈΡ‡Π°ΡŽΡ‚ΡΡ, поэтому ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½Π½Ρ‹Π΅ инструмСнты Π±ΡƒΠ΄ΡƒΡ‚ ΠΈΠΌΠ΅Ρ‚ΡŒ Ρ€Π°Π·Π½ΡƒΡŽ ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒ, ΡΡ„Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΡΡ‚ΡŒ ΠΈ ΡƒΡ€ΠΎΠ½." + "text": "НапримСр, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ 1000 ΠΌΠ‘ $(thing)Π‘Ρ€ΠΎΠ½Π·Ρ‹$() (ΠΏΠΎΠΊΠ°Π·Π°Π½ΠΎ справа), Π²Π°ΠΌ потрСбуСтся ΠΎΡ‚ 700 Π΄ΠΎ 800 ΠΌΠ‘ $(thing)ΠΌΠ΅Π΄ΠΈ$(), ΠΈ ΠΎΡ‚ 200 Π΄ΠΎ 300 ΠΌΠ‘ $(thing)Олова$().$(br2)На ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΡ… Ρ‚Ρ€Π΅Ρ… страницах ΠΏΠΎΠΊΠ°Π·Π°Π½Ρ‹ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Ρ‚Ρ€Π΅Ρ… Π²ΠΈΠ΄ΠΎΠ² Π±Ρ€ΠΎΠ½Π·Ρ‹. ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ‚ΠΈΠΏ Π±Ρ€ΠΎΠ½Π·Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ для изготовлСния инструмСнтов, $(l:mechanics/armor)ДоспСхов$(), ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… мСталличСских ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ². Они Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΎΡ‚Π»ΠΈΡ‡Π°ΡŽΡ‚ΡΡ, поэтому ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½Π½Ρ‹Π΅ инструмСнты Π±ΡƒΠ΄ΡƒΡ‚ ΠΈΠΌΠ΅Ρ‚ΡŒ Ρ€Π°Π·Π½ΡƒΡŽ ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒ, ΡΡ„Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΡΡ‚ΡŒ ΠΈ ΡƒΡ€ΠΎΠ½." }, { "type": "patchouli:spotlight", "item": "tfc:metal/ingot/bronze", "title": "Π‘Ρ€ΠΎΠ½Π·Π°", "link_recipes": false, - "text": "$(br)$(bold)ВрСбования: $()$(br)$(li)88 - 92 %: $(thing)мСдь$()$(li)8 - 12 %: $(thing)Олово$()$(br2)" + "text": "$(br)$(bold)ВрСбования: $()$(br)$(li)70 - 80 %: $(thing)МСдь$()$(li)20 - 30 %: $(thing)Олово$()$(br2)" }, { "type": "patchouli:spotlight", "item": "tfc:metal/ingot/bismuth_bronze", "title": "Висмутовая Π±Ρ€ΠΎΠ½Π·Π°", "link_recipes": false, - "text": "$(br)$(bold)ВрСбования: $()$(br)$(li)20 - 30 % : $(thing)Π¦ΠΈΠ½ΠΊ$()$(li)50 - 65 %: $(thing)мСдь$()$(li)10 - 20 % : $(thing)Висмут$()$(br2)" + "text": "$(br)$(bold)ВрСбования: $()$(br)$(li)20 - 30 % : $(thing)Π¦ΠΈΠ½ΠΊ$()$(li)50 - 65 %: $(thing)МСдь$()$(li)10 - 20 % : $(thing)Висмут$()$(br2)" }, { "type": "patchouli:spotlight", "item": "tfc:metal/ingot/black_bronze", "title": "Чёрная Π±Ρ€ΠΎΠ½Π·Π°", "link_recipes": false, - "text": "$(br)$(bold)ВрСбования: $()$(br)$(li)50 - 70 %: $(thing)мСдь$()$(li)10 - 25 %: $(thing)Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ$()$(li)10 - 25 %: $(thing)Π—ΠΎΠ»ΠΎΡ‚ΠΎ$()$(br2)" + "text": "$(br)$(bold)ВрСбования: $()$(br)$(li)50 - 70 %: $(thing)МСдь$()$(li)10 - 25 %: $(thing)Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ$()$(li)10 - 25 %: $(thing)Π—ΠΎΠ»ΠΎΡ‚ΠΎ$()$(br2)" }, { "type": "patchouli:text", @@ -48,21 +48,21 @@ "item": "tfc:metal/ingot/brass", "title": "Π›Π°Ρ‚ΡƒΠ½ΡŒ", "link_recipes": false, - "text": "$(br)$(bold)ВрСбования:$()$(br)$(li)88 - 92 %: $(thing)мСдь$()$(li)8 - 12 %: $(thing)Π¦ΠΈΠ½ΠΊ$()$(br2)" + "text": "$(br)$(bold)ВрСбования:$()$(br)$(li)70 - 80 %: $(thing)МСдь$()$(li)20 - 30 %: $(thing)Π¦ΠΈΠ½ΠΊ$()$(br2)" }, { "type": "patchouli:spotlight", "item": "tfc:metal/ingot/rose_gold", "title": "Π ΠΎΠ·ΠΎΠ²ΠΎΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ", "link_recipes": false, - "text": "$(br)$(bold)ВрСбования: $()$(br)$(li)15 - 30 %: $(thing)мСдь$()$(li)70 - 85 %: $(thing)Π—ΠΎΠ»ΠΎΡ‚ΠΎ$()$(br2)" + "text": "$(br)$(bold)ВрСбования: $()$(br)$(li)15 - 30 %: $(thing)МСдь$()$(li)70 - 85 %: $(thing)Π—ΠΎΠ»ΠΎΡ‚ΠΎ$()$(br2)" }, { "type": "patchouli:spotlight", "item": "tfc:metal/ingot/sterling_silver", "title": "Π‘Ρ‚Π΅Ρ€Π»ΠΈΠ½Π³ΠΎΠ²ΠΎΠ΅ сСрСбро", "link_recipes": false, - "text": "$(br)$(bold)ВрСбования: $()$(br)$(li)20 - 40 %: $(thing)мСдь$()$(li)60 - 80 %: $(thing)Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ$()$(br2)" + "text": "$(br)$(bold)ВрСбования: $()$(br)$(li)20 - 40 %: $(thing)МСдь$()$(li)60 - 80 %: $(thing)Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ$()$(br2)" } ], "read_by_default": true, @@ -73,4 +73,4 @@ "tfc:metal/ingot/black_bronze": 5, "tfc:metal/ingot/brass": 7 } -} \ No newline at end of file +} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/dairy.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/dairy.json index 39876257f..6838a671c 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/dairy.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/dairy.json @@ -1,27 +1,12 @@ { - "__comment__": "This file was automatically created by mcresources", "name": "ΠœΠΎΠ»ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹", "category": "tfc:mechanics", "icon": "tfc:textures/item/food/cheese.png", "pages": [ { "type": "patchouli:text", - "text": "$(thing)ΠœΠΎΠ»ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹$() - это $(l:getting_started/food_and_water#nutrients)ΠŸΠΈΡ‚Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠ΅ вСщСство$(), ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΠΌΠΎΠ΅ ΠΈΠ· ΠΌΠΎΠ»ΠΎΠΊΠ°, ΠΏΡ€ΠΎΠΈΠ·Π²Π΅Π΄Π΅Π½Π½ΠΎΠ³ΠΎ $(l:mechanics/animal_husbandry#dairy_animals)ΠœΠΎΠ»ΠΎΡ‡Π½Ρ‹ΠΌΠΈ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹ΠΌΠΈ$(). Π•Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΈΡ‚ΡŒ ΠΈΠ»ΠΈ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Π² $(thing)Π‘Ρ‹Ρ€$(). ΠŸΠΈΡ‚ΡŒ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΠ· ΠΊΡƒΠ²ΡˆΠΈΠ½Π°, ΠΈ это всСгда восстанавливаСт $(l:getting_started/food_and_water#thirst)Π–Π°ΠΆΠ΄Ρƒ$(). Однако, это добавляСт ΠΊ ΠΏΠΈΡ‚Π°Π½ΠΈΡŽ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ послС употрСблСния ΠΏΠΈΡ‰ΠΈ. На ΠΏΡ€Π°ΠΊΡ‚ΠΈΠΊΠ΅ это ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚, Ρ‡Ρ‚ΠΎ ΠΏΠΈΡ‚ΡŒ ΠΌΠΎΠ»ΠΎΠΊΠΎ Π΄Π²Π°ΠΆΠ΄Ρ‹ подряд нСэффСктивно. ΠŸΠ΅Ρ€Π΅Π΄ этим Π΄ΠΎΠ»ΠΆΠ΅Π½ Π±Ρ‹Ρ‚ΡŒ ΠΏΡ€ΠΈΠ΅ΠΌ ΠΏΠΈΡ‰ΠΈ.", + "text": "$(l:firmalife/cheese)ΠŸΡ€ΠΎΠ²Π΅Ρ€ΡŒ ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰ΡƒΡŽ Π³Π»Π°Π²Ρƒ Π² Firmalife для Π°ΠΊΡ‚ΡƒΠ°Π»ΡŒΠ½ΠΎΠΉ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ.$()", "title": "ΠœΠΎΠ»ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹" - }, - { - "type": "patchouli:text", - "text": "Π§Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ процСсс $(thing)БыроварСния$(), Π΄ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ $(thing)Молоко$() ΠΈ $(thing)Уксус$() Π² $(l:mechanics/barrels)Π‘ΠΎΡ‡ΠΊΡƒ$() Π² ΡΠΎΠΎΡ‚Π½ΠΎΡˆΠ΅Π½ΠΈΠΈ 9: 1. Π­Ρ‚ΠΎ ΠΏΡ€ΠΎΡ‰Π΅ всСго ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ, Π½Π°ΠΏΠΎΠ»Π½ΠΈΠ² Π±ΠΎΡ‡ΠΊΡƒ 9 Π²Π΅Π΄Ρ€Π°ΠΌΠΈ ΠΌΠΎΠ»ΠΎΠΊΠ° ΠΈ Π΄ΠΎΠ±Π°Π²ΠΈΠ² ΠΎΠ΄Π½ΠΎ Π²Π΅Π΄Ρ€ΠΎ уксуса. Π­Ρ‚ΠΎ Π΄Π°Π΅Ρ‚ $(thing)ΠœΠΎΠ»ΠΎΡ‡Π½Ρ‹ΠΉ уксус$()." - }, - { - "type": "tfc:sealed_barrel_recipe", - "recipe": "tfc:barrel/curdling", - "text": "Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΌΠΎΠ»ΠΎΠΊΠΎ ΠΈ уксус ΡΠΌΠ΅ΡˆΠ°Π½Ρ‹, ΠΎΠ½ΠΎ свСрнСтся, Ссли Π΅Π³ΠΎ Π·Π°ΠΏΠ΅Ρ‡Π°Ρ‚Π°Ρ‚ΡŒ Π² Π±ΠΎΡ‡ΠΊΠ΅ Π½Π° восСмь часов. Для этого Π½Π΅ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹, ΠΊΡ€ΠΎΠΌΠ΅ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ." - }, - { - "type": "tfc:sealed_barrel_recipe", - "recipe": "tfc:barrel/cheese", - "text": "Π—Π°Ρ‚Π΅ΠΌ сыр дСлаСтся ΠΏΡƒΡ‚Π΅ΠΌ ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎΠ³ΠΎ запСчатывания ΡΠ²Π΅Ρ€Π½ΡƒΠ²ΡˆΠ΅Π³ΠΎΡΡ ΠΌΠΎΠ»ΠΎΠΊΠ° Π² Π±ΠΎΡ‡ΠΊΠ΅ Π½Π° восСмь часов. Π‘Ρ‹Ρ€ - это Π΄ΠΎΠ»Π³ΠΎΠ²Π΅Ρ‡Π½Ρ‹ΠΉ ΠΌΠΎΠ»ΠΎΡ‡Π½Ρ‹ΠΉ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ использован Π² Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Π±Π»ΡŽΠ΄Π°Ρ… для добавлСния ΠΌΠΎΠ»ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ², Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ $(l:mechanics/sandwiches)Π‘ΡƒΡ‚Π΅Ρ€Π±Ρ€ΠΎΠ΄Ρ‹$()." } ], "read_by_default": true, @@ -29,4 +14,4 @@ "minecraft:milk_bucket": 0, "tfc:food/cheese": 1 } -} \ No newline at end of file +} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/burlap_sack.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/burlap_sack.json new file mode 100644 index 000000000..1c39392a6 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/burlap_sack.json @@ -0,0 +1,18 @@ +{ + "name": "МСшок ΠΈΠ· ΠΌΠ΅ΡˆΠΊΠΎΠ²ΠΈΠ½Ρ‹", + "category": "tfc:sacks_n_such", + "icon": "sns:burlap_sack", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:burlap_sack", + "text": "$(item)МСшок ΠΈΠ· ΠΌΠ΅ΡˆΠΊΠΎΠ²ΠΈΠ½Ρ‹$() β€” это Ρ‚ΠΈΠΏ $(l:sns/item_containers)ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π°$() с Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ большСй Π²ΠΌΠ΅ΡΡ‚ΠΈΠΌΠΎΡΡ‚ΡŒΡŽ, Ρ‡Π΅ΠΌ Ρƒ $(item)ΠΊΠΎΠΆΠ°Π½ΠΎΠ³ΠΎ мСшка$()." + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/burlap_sack", + "text": "По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π²ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ максимум $(thing)малСнького$() Ρ€Π°Π·ΠΌΠ΅Ρ€Π°." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/frame_pack.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/frame_pack.json new file mode 100644 index 000000000..9c1d7fa64 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/frame_pack.json @@ -0,0 +1,18 @@ +{ + "name": "ΠšΠ°Ρ€ΠΊΠ°ΡΠ½Ρ‹ΠΉ Ρ€ΡŽΠΊΠ·Π°ΠΊ", + "category": "tfc:sacks_n_such", + "icon": "sns:frame_pack", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:frame_pack", + "text": "$(item)ΠšΠ°Ρ€ΠΊΠ°ΡΠ½Ρ‹ΠΉ Ρ€ΡŽΠΊΠ·Π°ΠΊ$() β€” это Ρ‚ΠΈΠΏ $(l:sns/item_containers)ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π°$(), ΠΏΠΎ сути ΡΠ²Π»ΡΡŽΡ‰ΠΈΠΉΡΡ TFC сундуком Π½Π° вашСй спинС. Как ΠΈ TFC сундук, ΠΎΠ½ ΡƒΡ‡ΠΈΡ‚Ρ‹Π²Π°Π΅Ρ‚ $(l:getting_started/size_and_weight)систСму Ρ€Π°Π·ΠΌΠ΅Ρ€ΠΎΠ²$() TFC." + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/frame_pack", + "text": "По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π²ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ максимум $(thing)большого$() Ρ€Π°Π·ΠΌΠ΅Ρ€Π°." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/hiking_boots.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/hiking_boots.json new file mode 100644 index 000000000..046c328f9 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/hiking_boots.json @@ -0,0 +1,17 @@ +{ + "name": "ΠŸΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ", + "category": "tfc:sacks_n_such", + "icon": "sns:hiking_boots", + "pages": [ + { + "type": "patchouli:text", + "text": "ΠšΠ°ΠΆΠ΄ΠΎΠΌΡƒ ΠΈΡΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚Π΅Π»ΡŽ Π½ΡƒΠΆΠ½Π° Ρ…ΠΎΡ€ΠΎΡˆΠ°Ρ ΠΏΠ°Ρ€Π° Π±ΠΎΡ‚ΠΈΠ½ΠΎΠΊ. Они ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ быстро ΠΏΡ€ΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒΡΡ сквозь Ρ‚Ρ€Π°Π²Ρƒ, Π΄Π°ΡŽΡ‚ нСбольшоС ускорСниС ΠΈ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°ΡŽΡ‚ Π±Π΅Π·ΠΎΠΏΠ°ΡΠ½ΡƒΡŽ высоту падСния." + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/hiking_boots", + "text": "Π­Ρ‚ΠΈ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ созданы для Ρ…ΠΎΠ΄ΡŒΠ±Ρ‹." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/horseshoes.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/horseshoes.json new file mode 100644 index 000000000..3ddd6f339 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/horseshoes.json @@ -0,0 +1,30 @@ +{ + "name": "ΠŸΠΎΠ΄ΠΊΠΎΠ²Ρ‹", + "category": "tfc:sacks_n_such", + "icon": "sns:metal/horseshoe/steel", + "pages": [ + { + "type": "patchouli:text", + "text": "$(item)ΠŸΠΎΠ΄ΠΊΠΎΠ²Ρ‹$() Π²Ρ‹ΠΊΠΎΠ²Ρ‹Π²Π°ΡŽΡ‚ΡΡ ΠΏΠΎ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ, Π° Π·Π°Ρ‚Π΅ΠΌ ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½ΡΡŽΡ‚ΡΡ вмСстС Π² ΠΊΡ€Π°Ρ„Ρ‚ΠΎΠ²ΠΎΠΌ мСню. Π Π°Π·Π²Π΅ Ρ‚Ρ‹ Π½Π΅ Π·Π½Π°Π», Ρ‡Ρ‚ΠΎ Ρƒ лошадСй 4 Π½ΠΎΠ³ΠΈ? $(br)$(br)ΠšΡΡ‚Π°Ρ‚ΠΈ, с Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΌΠΈ ΠΏΠΎΠ΄ΠΊΠΎΠ²Π°ΠΌΠΈ β€” ΠΎΡ‡Π΅Π½ΡŒ Ρ…ΠΎΡ€ΠΎΡˆΠ°Ρ идСя ΠΈΠΌΠ΅Π½Π½ΠΎ ΠΏΡ€ΠΈΠ²ΡΠ·Ρ‹Π²Π°Ρ‚ΡŒ свою лошадь, Ρ‚ΠΊ обычная яма Π½Π΅ сработаСт!" + }, + { + "type": "tfc:sns/better_anvil_recipe", + "recipe": "sns:anvil/metal/horseshoe/steel", + "recipe2": "sns:anvil/metal/horseshoe/black_steel", + "recipe3": "sns:anvil/metal/horseshoe/blue_steel", + "recipe4": "sns:anvil/metal/horseshoe/red_steel", + "text4": "КаТдой лошади Π½ΡƒΠΆΠ½Ρ‹ ΠΏΠΎΠ΄ΠΊΠΎΠ²Ρ‹" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/metal/horseshoes/steel", + "recipe2": "sns:crafting/metal/horseshoes/black_steel" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/metal/horseshoes/blue_steel", + "recipe2": "sns:crafting/metal/horseshoes/red_steel" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/item_containers.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/item_containers.json new file mode 100644 index 000000000..44309ff8d --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/item_containers.json @@ -0,0 +1,20 @@ +{ + "name": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Ρ‹", + "category": "tfc:sacks_n_such", + "icon": "sns:straw_basket", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Ρ‹$() β€” это основныС ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ добавляСт Π΄Π°Π½Π½Ρ‹ΠΉ ΠΌΠΎΠ΄. Π£ Π½ΠΈΡ… Π΅ΡΡ‚ΡŒ 6 основных характСристик, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ, удСрТивая $(3)Shift$(clear), навСдя курсор Π½Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚. $(li)$(thing)ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ слотов$(): сколько слотов ΠΎΠ½ ΠΈΠΌΠ΅Π΅Ρ‚. $(li)$(thing)Π’ΠΌΠ΅ΡΡ‚ΠΈΠΌΠΎΡΡ‚ΡŒ слота$(): сколько ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΌΠΎΠΆΠ΅Ρ‚ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ ΠΎΠ΄ΠΈΠ½ слот. $(li)$(thing)Допустимый Ρ€Π°Π·ΠΌΠ΅Ρ€$(): максимально допустимый $(l:getting_started/size_and_weight)Ρ€Π°Π·ΠΌΠ΅Ρ€ TFC$() для слотов." + }, + { + "type": "patchouli:text", + "text": "$(li)$(thing)Автоподбор$() β€” ΠΌΠΎΠΆΠ΅Ρ‚ Π»ΠΈ ΠΎΠ½ ΠΏΠΎΠ΄Π±ΠΈΡ€Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ автоматичСски. Shift + ПКМ ΠΈΠ»ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ $(k:sns.key.pickup) для ΠΏΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ. $(li)$(thing)Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ²$() β€” ΠΌΠΎΠΆΠ΅Ρ‚ Π»ΠΈ ΠΎΠ½ ΡƒΠ΄Π°Π»ΡΡ‚ΡŒ лишниС ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹. Для ΠΏΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ Ctrl + Π›ΠšΠœ. $(li)$(thing)ВзаимодСйствиС с ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Ρ‘ΠΌ$() β€” ΠΌΠΎΠΆΠ½ΠΎ Π»ΠΈ Π²Π½ΠΎΡΠΈΡ‚ΡŒ ΠΈ ΠΈΠ·Π²Π»Π΅ΠΊΠ°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, кликая ΠΏΠΎ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Ρƒ, ΠΊΠ°ΠΊ Ρƒ сосудов TFC ΠΈΠ»ΠΈ Π²Π°Π½ΠΈΠ»ΡŒΠ½Ρ‹Ρ… мСшков. $(br)ВсС $(thing)ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Ρ‹$() ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°ΡŽΡ‚ Π²Π°Π½ΠΈΠ»ΡŒΠ½ΡƒΡŽ Ρ„ΡƒΠ½ΠΊΡ†ΠΈΡŽ Π²Ρ‹Π±ΠΎΡ€Π° Π±Π»ΠΎΠΊΠ° Ρ‡Π΅Ρ€Π΅Π· $(k:pickItem)" + }, + { + "type": "patchouli:text", + "text": "Для Π°Π²Ρ‚ΠΎΡ€ΠΎΠ² ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠΎΠ² ΠΈΠ»ΠΈ просто Ρ‚Π΅Ρ…, ΠΊΡ‚ΠΎ Ρ…ΠΎΡ‡Π΅Ρ‚ Π½Π°ΡΡ‚Ρ€Π°ΠΈΠ²Π°Ρ‚ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ Π²Π΅Ρ‰ΠΈ. ВсС$(thing) ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Ρ‹$() ΠΈΠΌΠ΅ΡŽΡ‚ Ρ‚Π΅Π³ \"Ρ‡Π΅Ρ€Π½ΠΎΠ³ΠΎ списка\", ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π²ΠΊΠ»ΡŽΡ‡Π°Π΅Ρ‚ $(bold)sns:prevented_in_item_containers$(). Π‘Ρ…Π΅ΠΌΠ° имСнования β€” $(bold)prevented_in_$(), Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ соломСнная ΠΊΠΎΡ€Π·ΠΈΠ½Π° ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ $(bold)sns:prevented_in_straw_basket$(). $(thing)ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Ρ‹$() со ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½Ρ‹ΠΌΠΈ Ρ‚Π΅Π³Π°ΠΌΠΈ \"Π±Π΅Π»ΠΎΠ³ΠΎ списка\" Π±ΡƒΠ΄ΡƒΡ‚ пСрСчислСны Π² ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰Π΅ΠΉ Π³Π»Π°Π²Π΅." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/leather_sack.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/leather_sack.json new file mode 100644 index 000000000..ff12fe3b2 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/leather_sack.json @@ -0,0 +1,17 @@ +{ + "name": "ΠšΠΎΠΆΠ°Π½Ρ‹ΠΉ мСшок", + "category": "tfc:sacks_n_such", + "icon": "sns:leather_sack", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:leather_sack", + "text": "$(item)ΠšΠΎΠΆΠ°Π½Ρ‹ΠΉ мСшок$() β€” это Ρ‚ΠΈΠΏ $(l:sns/item_containers)ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π°$() ΠΈ ΠΏΠΎΡ…ΠΎΠΆ Π½Π° сосуд с Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ большСй Π²ΠΌΠ΅ΡΡ‚ΠΈΠΌΠΎΡΡ‚ΡŒΡŽ. По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ ΠΎΠ½ ΠΌΠΎΠΆΠ΅Ρ‚ Π²ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ максимум $(thing)ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠ³ΠΎ$() Ρ€Π°Π·ΠΌΠ΅Ρ€Π°." + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/leather_sack" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/ore_sack.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/ore_sack.json new file mode 100644 index 000000000..4ed321cb1 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/ore_sack.json @@ -0,0 +1,18 @@ +{ + "name": "МСшок для Ρ€ΡƒΠ΄Ρ‹", + "category": "tfc:sacks_n_such", + "icon": "sns:ore_sack", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:ore_sack", + "text": "$(item)МСшок для Ρ€ΡƒΠ΄Ρ‹$() β€” это Ρ‚ΠΈΠΏ $(l:sns/item_containers)ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π°$(), ΠΏΡ€Π΅Π΄Π½Π°Π·Π½Π°Ρ‡Π΅Π½Π½Ρ‹ΠΉ для хранСния Π±ΠΎΠ»ΡŒΡˆΠΈΡ… количСств ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π²ΠΈΠ΄Π° Ρ€ΡƒΠ΄Ρ‹ ΠΈΠ»ΠΈ ΠΏΠΎΠ΄ΠΎΠ±Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ², Ρ‡Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ Π΅Π³ΠΎ Ρ‡Ρ€Π΅Π·Π²Ρ‹Ρ‡Π°ΠΉΠ½ΠΎ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌ ΠΏΡ€ΠΈ Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ Ρ€ΡƒΠ΄Ρ‹. $(br2)По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ ΠΎΠ½ Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ ΠΎΡˆΠ΅Π»ΠΎΠΌΠ»ΡΡŽΡ‰ΠΈΠ΅ 512 ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ²." + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/ore_sack", + "text": "Для Π°Π²Ρ‚ΠΎΡ€ΠΎΠ² ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠΎΠ² ΠΈΠ»ΠΈ просто Ρ‚Π΅Ρ…, ΠΊΡ‚ΠΎ Ρ…ΠΎΡ‡Π΅Ρ‚ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ Ρ€ΡƒΠ΄Ρ‹, смотритС Ρ‚Π΅Π³ $(bold)sns:allowed_in_ore_sack$() β€” Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ Π°Π΄Π΄ΠΎΠ½ΠΎΠ² Π΄ΠΎΠ»ΠΆΠ½ΠΎ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒΡΡ автоматичСски." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/quiver.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/quiver.json new file mode 100644 index 000000000..490102889 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/quiver.json @@ -0,0 +1,18 @@ +{ + "name": "ΠšΠΎΠ»Ρ‡Π°Π½", + "category": "tfc:sacks_n_such", + "icon": "sns:quiver", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:quiver", + "text": "$(item)ΠšΠΎΠ»Ρ‡Π°Π½$() β€” это Ρ‚ΠΈΠΏ $(l:sns/item_containers)ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π°$() ΠΈ Π»ΡƒΡ‡ΡˆΠΈΠΉ Π΄Ρ€ΡƒΠ³ любого Π»ΡŽΠ±ΠΈΡ‚Π΅Π»Ρ дальнСго боя, Π±ΡƒΠ΄ΡŒ Ρ‚ΠΎ Ρ‚ΠΎΡ‚, ΠΊΡ‚ΠΎ Π»ΡŽΠ±ΠΈΡ‚ $(item)копья$(), ΠΈΠ»ΠΈ ΠΏΡ€Π΅Π΄ΠΏΠΎΡ‡ΠΈΡ‚Π°ΡŽΡ‰ΠΈΠΉ Π»ΡƒΠΊ. $(br)ΠŸΡ€ΠΈ использовании Π»ΡƒΠΊΠ° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ для \"боСприпасов\" бСрутся сначала ΠΈΠ· ΠΊΠΎΠ»Ρ‡Π°Π½Π°, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΠ½ замСняСт ΠΌΠ΅Ρ‚Π°Π΅ΠΌΡ‹Π΅ копья." + }, + { + "type": "tfc:knapping_recipe", + "recipe": "sns:leather_knapping/quiver", + "text": "Для Π°Π²Ρ‚ΠΎΡ€ΠΎΠ² ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠΎΠ² ΠΈΠ»ΠΈ просто Ρ‚Π΅Ρ…, ΠΊΡ‚ΠΎ Ρ…ΠΎΡ‡Π΅Ρ‚ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΡƒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… \"боСприпасов\", смотритС Ρ‚Π΅Π³ $(bold)sns:allowed_in_quiver$(). Π£Ρ‡Ρ‚ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ ΠΏΠΎΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ ΠΊΠΎΠΏΠΈΠΉ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ с копьями TFC (ΠΈΠ»ΠΈ ΠΈΠ· Π°Π΄Π΄ΠΎΠ½ΠΎΠ²)." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/safety_toe_hiking_boots.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/safety_toe_hiking_boots.json new file mode 100644 index 000000000..f9b9fe101 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/safety_toe_hiking_boots.json @@ -0,0 +1,22 @@ +{ + "name": "Π‘Ρ‚Π°Π»ΡŒΠ½Ρ‹Π΅ ΠΏΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ", + "category": "tfc:sacks_n_such", + "icon": "sns:steel_toe_hiking_boots", + "pages": [ + { + "type": "patchouli:text", + "text": "Как $(l:sns/hiking_boots)ΠΏΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ$(), Π½ΠΎ бСзопаснСС благодаря ΡΡ‚Π°Π»ΡŒΠ½Ρ‹ΠΌ носкам. Π–Π°Π»ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ, Ρ‡Ρ‚ΠΎ Π½ΠΈΠΊΡ‚ΠΎ Π΅Ρ‰Ρ‘ Π½Π΅ ΠΈΠ·ΠΎΠ±Ρ€Ρ‘Π» каску" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/steel_toe_hiking_boots", + "recipe2": "sns:crafting/black_steel_toe_hiking_boots" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/blue_steel_toe_hiking_boots", + "recipe2": "sns:crafting/red_steel_toe_hiking_boots" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/seed_pouch.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/seed_pouch.json new file mode 100644 index 000000000..4dfa29a7b --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/seed_pouch.json @@ -0,0 +1,18 @@ +{ + "name": "ΠœΠ΅ΡˆΠΎΡ‡Π΅ΠΊ для сСмян", + "category": "tfc:sacks_n_such", + "icon": "sns:seed_pouch", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:seed_pouch", + "text": "$(item)ΠœΠ΅ΡˆΠΎΡ‡Π΅ΠΊ для сСмян$() β€” это Ρ‚ΠΈΠΏ $(l:sns/item_containers)ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π°$(), ΠΏΡ€Π΅Π΄Π½Π°Π·Π½Π°Ρ‡Π΅Π½Π½Ρ‹ΠΉ для хранСния большого разнообразия сСмян, Ρ‡Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ Π΅Π³ΠΎ ΠΎΡ‡Π΅Π½ΡŒ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌ ΠΏΡ€ΠΈ фСрмСрствС. $(br2)По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ Π² Π½Ρ‘ΠΌ 27 слотов, ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΌΠΎΠΆΠ΅Ρ‚ Π²ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ Π΄ΠΎ 64 сСмян." + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/seed_pouch", + "text": "Для Π°Π²Ρ‚ΠΎΡ€ΠΎΠ² ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠΎΠ² ΠΈΠ»ΠΈ просто Ρ‚Π΅Ρ…, ΠΊΡ‚ΠΎ Ρ…ΠΎΡ‡Π΅Ρ‚ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ сСмСна, смотритС Ρ‚Π΅Π³ $(bold)sns:allowed_in_seed_pouch$() β€” Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ Π°Π΄Π΄ΠΎΠ½ΠΎΠ² Π΄ΠΎΠ»ΠΆΠ½ΠΎ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒΡΡ автоматичСски." + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/straw_basket.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/straw_basket.json new file mode 100644 index 000000000..595d55dce --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/sns/straw_basket.json @@ -0,0 +1,17 @@ +{ + "name": "БоломСнная ΠΊΠΎΡ€Π·ΠΈΠ½Π°", + "category": "tfc:sacks_n_such", + "icon": "sns:straw_basket", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:straw_basket", + "text": "$(item)БоломСнная ΠΊΠΎΡ€Π·ΠΈΠ½Π°$() β€” это Ρ‚ΠΈΠΏ $(l:sns/item_containers)ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π°$() ΠΈ ΠΏΠΎ сути являСтся Π±ΠΎΠ»Π΅Π΅ Π΄Π΅ΡˆΡ‘Π²Ρ‹ΠΌ сосудом. По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ ΠΎΠ½Π° ΠΌΠΎΠΆΠ΅Ρ‚ Π²ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ максимум $(thing)малСнького$() Ρ€Π°Π·ΠΌΠ΅Ρ€Π°." + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/straw_basket" + } + ], + "read_by_default": true +} \ 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 808329fcf..f06711814 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 @@ -14,42 +14,42 @@ }, { "Type": "patchouli:text", - "text": "$(li)Алмаз: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)Алунит: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/l)$()$(li)Альмандин: $(l:tfg_ores/earth_vein_index#deep_sapphire)38%$(/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_apatite)50%$(/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_basaltic_sands)35%$(/l)$()$(li)Π‘Π°Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_quartz)37%$(/l)$()$(li)БастнСзит: $(l:tfg_ores/earth_vein_index#normal_monazite)62%$(/l)$()$(li)Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/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_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Π‘ΡƒΡ€Π°: $(l:tfg_ores/earth_vein_index#normal_gypsum)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()", + "text": "$(li)Алмаз: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)Алунит: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/l)$()$(li)Альмандин: $(l:tfg_ores/earth_vein_index#deep_sapphire)38%$(/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_apatite)50%$(/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_basaltic_sands)35%$(/l)$()$(li)Π‘Π°Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_quartz)37%$(/l)$()$(li)БастнСзит: $(l:tfg_ores/earth_vein_index#normal_monazite)62%$(/l)$()$(li)Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/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_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Π‘ΡƒΡ€Π°: $(l:tfg_ores/earth_vein_index#normal_gypsum)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_tarkianite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()", "type": "patchouli:text" }, { "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)85%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)72%$(/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)$()", + "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)80%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)70%$(/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" }, { "Type": "patchouli:text", - "text": "$(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#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#deep_sapphire)16%$(/l)$()$(li)Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄: $(l:tfg_ores/earth_vein_index#normal_beryllium)50%$(/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_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/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_quartz)43%$(/l)$()$(li)ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)5%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)5%$(/l)$()", + "text": "$(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#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#deep_sapphire)16%$(/l)$()$(li)Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄: $(l:tfg_ores/earth_vein_index#normal_beryllium)50%$(/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_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#surface_cassiterite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)35%$(/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_quartz)43%$(/l)$()$(li)ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)5%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)5%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(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_olivine)25%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/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#deep_molybdenum)35%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)НСодим: $(l:tfg_ores/earth_vein_index#normal_monazite)6%$(/l)$()$(li)НСфтСносный пСсок: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l)$()$(li)НикСль: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)Оливин: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()", + "text": "$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(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_olivine)25%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/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#deep_molybdenum)35%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)НСодим: $(l:tfg_ores/earth_vein_index#normal_monazite)6%$(/l)$()$(li)НСфтСносный пСсок: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_tarkianite)35%$(/l)$()$(li)НикСль: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)Оливин: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(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#deep_garnet_opal)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/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_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#normal_manganese)25%$(/l)$()$(li)ΠŸΠΈΡ€ΠΎΠΏ: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/earth_vein_index#deep_sheldonite)7%$(/l)$()$(li)ΠŸΠΎΠ²Π΅Π»Π»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_molybdenum)17%$(/l)$()$(li)ΠŸΠΎΠ»Π»ΡƒΡ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(li)Π Π΅Π°Π»ΡŒΠ³Π°Ρ€: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(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)$()", + "text": "$(li)Олово: $(l:tfg_ores/earth_vein_index#normal_cassiterite)55%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)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_garnierite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_lubricant)15%$(/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#normal_manganese)25%$(/l)$()$(li)ΠŸΠΈΡ€ΠΎΠΏ: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/earth_vein_index#deep_sheldonite)7%$(/l)$()$(li)ΠŸΠΎΠ²Π΅Π»Π»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_molybdenum)17%$(/l)$()$(li)ΠŸΠΎΠ»Π»ΡƒΡ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(li)Π Π΅Π°Π»ΡŒΠ³Π°Ρ€: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(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)$()", "type": "patchouli:text" }, { "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), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/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)10%$(/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)8%$(/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#normal_bismuthinite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)10%$(/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), $(l:tfg_ores/earth_vein_index#normal_cassiterite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)10%$(/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)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)$()", + "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#normal_tarkianite)35%$(/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), $(l:tfg_ores/earth_vein_index#normal_tarkianite)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)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Π¦Π΅ΠΎΠ»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)Π¦ΠΈΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)Π¨Π΅Π΅Π»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/l)$()$(li)Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l)$()", + "text": "$(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#surface_copper)16%$(/l)$()$(li)Π¦ΠΈΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)Π¨Π΅Π΅Π»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/l)$()$(li)Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/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 efdaa1ec7..6a322a0db 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 @@ -24,12 +24,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_opal)Опал ΠΈ Π³Ρ€Π°Π½Π°Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_redstone)РСдстоун, ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ ΠΈ Π ΡƒΠ±ΠΈΠ½$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sapphire)Π‘Π°ΠΏΡ„ΠΈΡ€ ΠΈ Альмандин$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)Π‘Π΅Π»ΠΈΡ‚Ρ€Π° ΠΈ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_silver)Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ, Π“Π°Π»Π΅Π½Π° ΠΈ Π‘Π²ΠΈΠ½Π΅Ρ†$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_salt)Π‘ΠΎΠ»ΠΈ ΠΈ Π‘ΡƒΡ€Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_spodumene)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ ΠΈ Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ & ΠŸΠΈΡ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ ΠΈ Π‘Π΅Ρ€Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)ВСтраэдрит (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)ВСтраэдрит (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Π’ΠΎΠΏΠ°Π· ΠΈ Π₯алькозин$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_coal)Уголь$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_opal)Опал ΠΈ Π³Ρ€Π°Π½Π°Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_redstone)РСдстоун, ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ ΠΈ Π ΡƒΠ±ΠΈΠ½$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sapphire)Π‘Π°ΠΏΡ„ΠΈΡ€ ΠΈ Альмандин$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)Π‘Π΅Π»ΠΈΡ‚Ρ€Π° ΠΈ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_silver)Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ, Π“Π°Π»Π΅Π½Π° ΠΈ Π‘Π²ΠΈΠ½Π΅Ρ†$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_salt)Π‘ΠΎΠ»ΠΈ ΠΈ Π‘ΡƒΡ€Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_spodumene)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ ΠΈ Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ & ΠŸΠΈΡ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ ΠΈ Π‘Π΅Ρ€Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tarkianite)Π’Π°Ρ€ΠΊΠΈΠ°Π½ΠΈΡ‚ ΠΈ НСфтСносный пСсок$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)ВСтраэдрит (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)ВСтраэдрит (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Π’ΠΎΠΏΠ°Π· ΠΈ Π₯алькозин$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚ ΠΈ Π£Ρ€Π°Π½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_copper)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚ ΠΈ Π Π΅Π°Π»ΡŒΠ³Π°Ρ€$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_magnetite)Π₯Ρ€ΠΎΠΌΠΈΡ‚ ΠΈ ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_mica)Π¦ΠΈΠΎΠ½ΠΈΡ‚, Блюда ΠΈ Боксит$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Π¨Π΅Π΅Π»ΠΈΡ‚ ΠΈ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sheldonite)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚ ΠΈ Π‘ΠΎΡ€Π½ΠΈΡ‚$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_coal)Уголь$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚ ΠΈ Π£Ρ€Π°Π½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_copper)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚ ΠΈ Π Π΅Π°Π»ΡŒΠ³Π°Ρ€$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_magnetite)Π₯Ρ€ΠΎΠΌΠΈΡ‚ ΠΈ ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_mica)Π¦ΠΈΠΎΠ½ΠΈΡ‚, Блюда ΠΈ Боксит$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Π¨Π΅Π΅Π»ΠΈΡ‚ ΠΈ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sheldonite)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚ ΠΈ Π‘ΠΎΡ€Π½ΠΈΡ‚$()$()", "type": "patchouli:text" }, { @@ -131,7 +131,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 60$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 34$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 20 β€” 120$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 34$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", "title": "Апатит ΠΈ ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€", "type": "patchouli:text", "anchor": "normal_apatite" @@ -379,7 +379,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 72%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Висмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 70%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Висмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", "type": "patchouli:multiblock" }, { @@ -399,7 +399,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π²ΠΈΠ½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 11%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π²ΠΈΠ½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -419,7 +419,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 9%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ag", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ag", "type": "patchouli:multiblock" }, { @@ -439,7 +439,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 8%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π΅Ρ€Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 9%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π΅Ρ€Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", "type": "patchouli:multiblock" }, { @@ -471,7 +471,27 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 85%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Висмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 80%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Висмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ag", "type": "patchouli:multiblock" }, { @@ -494,26 +514,6 @@ "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": "Π‘Π΅Ρ€Π°", @@ -1488,7 +1488,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€ΠΈΠΉ", + "name": "Π’ΠΎΡ€ΠΈΠ°Π½ΠΈΡ‚", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1503,7 +1503,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1530,7 +1530,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 60%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 55%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", "type": "patchouli:multiblock" }, { @@ -1550,13 +1550,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", @@ -1582,7 +1597,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 60%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 55%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1602,13 +1617,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", @@ -2524,7 +2554,7 @@ }, { "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)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 180$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 32$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 28$(br)$(thing)Высота$(): 8$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", "title": "Π‘Π°ΠΏΡ„ΠΈΡ€ ΠΈ Альмандин", "type": "patchouli:text", "anchor": "deep_sapphire" @@ -3158,6 +3188,98 @@ "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 140$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): трубчатая ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 20 β€” 120$(br)$(thing)Высота$(): 60$(br)$(thing)Радиус$(): 10$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Аргиллит, Аспидный сланСц, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, ΠœΡ€Π°ΠΌΠΎΡ€, Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π»Π°Π½Π΅Ρ†, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π’Π°Ρ€ΠΊΠΈΠ°Π½ΠΈΡ‚ ΠΈ НСфтСносный пСсок", + "type": "patchouli:text", + "anchor": "normal_tarkianite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Ρ€ΠΊΠΈΠ°Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tarkianite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π Π΅Π½ΠΈΠΉ, МолибдСн$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CuFeReβ‚„Moβ‚„Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "НСфтСносный пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ", + "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/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Натрий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚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-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 75$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", @@ -3572,7 +3694,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 225$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 30$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 20$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π‘Π»Π°Π½Π΅Ρ†", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 225$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 30$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 20$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, ΠœΡ€Π°ΠΌΠΎΡ€, Π‘Π»Π°Π½Π΅Ρ†", "title": "Π₯Ρ€ΠΎΠΌΠΈΡ‚ ΠΈ ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", "type": "patchouli:text", "anchor": "deep_magnetite" @@ -3679,7 +3801,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 190$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 210$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 36$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 40$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 190$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 210$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 36$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", "title": "Π¦ΠΈΠΎΠ½ΠΈΡ‚, Блюда ΠΈ Боксит", "type": "patchouli:text", "anchor": "normal_mica" 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 c2696cce5..a5f42705b 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 @@ -19,22 +19,27 @@ }, { "Type": "patchouli:text", - "text": "$(li)Π“Ρ‘Ρ‚ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()$(li)Гипс: $(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)20%$(/l)$()$(li)Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/l)$()$(li)Π“Ρ€Π°Ρ„ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_graphite)45%$(/l)$()$(li)Гроссуляр: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_hematite)30%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_hematite)5%$(/l)$()$(li)КамСнная соль: $(l:tfg_ores/mars_vein_index#mars_salt)20%$(/l)$()$(li)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_nickel_galena)11%$(/l)$()$(li)Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_salt)15%$(/l)$()", + "text": "$(li)Π“Ρ‘Ρ‚ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()$(li)Гипс: $(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)20%$(/l)$()$(li)Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/l)$()$(li)Π“Ρ€Π°Ρ„ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_graphite)45%$(/l)$()$(li)Гроссуляр: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_hematite)30%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_lapis)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_hematite)5%$(/l)$()$(li)КамСнная соль: $(l:tfg_ores/mars_vein_index#mars_salt)20%$(/l)$()$(li)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_nickel_galena)11%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_lapis)35%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Π›ΠΈΡ‚ΠΈΠΉ: $(l:tfg_ores/mars_vein_index#mars_tungsten)19%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_neodynium)29%$(/l)$()$(li)ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/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#mars_surface_nickel_galena)23%$(/l)$()$(li)Олово: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)35%$(/l)$()$(li)ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/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)42%$(/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#mars_surface_tetrahedrite)4%$(/l)$()", + "text": "$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/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)$()$(li)ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/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#mars_surface_nickel_galena)23%$(/l)$()$(li)Олово: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)35%$(/l)$()$(li)ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/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)42%$(/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)$()", "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#mars_sapphire)55%$(/l), $(l:tfg_ores/mars_vein_index#mars_hematite)5%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_tetrahedrite)19%$(/l)$()$(li)Бамородная Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_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_surface_cassiterite)10%$(/l)$()$(li)Π‘Π΅Ρ€Π°: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)20%$(/l)$()$(li)Боль: $(l:tfg_ores/mars_vein_index#mars_salt)30%$(/l)$()$(li)БпасСрит: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/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#mars_surface_tetrahedrite)19%$(/l)$()$(li)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_nickel_galena)17%$(/l)$()$(li)Вальк: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()", + "text": "$(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#mars_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#mars_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#mars_surface_tetrahedrite)19%$(/l)$()$(li)Бамородная Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_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_surface_cassiterite)10%$(/l)$()$(li)Π‘Π΅Ρ€Π°: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)20%$(/l)$()$(li)Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/l)$()$(li)Боль: $(l:tfg_ores/mars_vein_index#mars_salt)30%$(/l)$()$(li)БпасСрит: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½: $(l:tfg_ores/mars_vein_index#mars_salt)35%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Π’Π°Π½Ρ‚Π°Π»ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_tantalite)36%$(/l)$()$(li)ВСтраэдрит: $(l:tfg_ores/mars_vein_index#mars_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#mars_lubricant)35%$(/l)$()$(li)Уголь: $(l:tfg_ores/mars_vein_index#mars_coal)70%$(/l), $(l:tfg_ores/mars_vein_index#mars_graphite)25%$(/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)$()", + "text": "$(li)Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_stibnite)19%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_tetrahedrite)19%$(/l)$()$(li)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)36%$(/l)$()$(li)ВСтраэдрит: $(l:tfg_ores/mars_vein_index#mars_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#mars_lubricant)35%$(/l)$()$(li)Уголь: $(l:tfg_ores/mars_vein_index#mars_coal)70%$(/l), $(l:tfg_ores/mars_vein_index#mars_graphite)25%$(/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)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(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 660f54d6d..113854729 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,12 +14,12 @@ }, { "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_surface_nickel_galena)Sphalerite & Galena$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Trona, Talc, & Glauconite$()$()$(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#mars_surface_bismuthinite)Висмут$()$()", + "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 & Thorianite, & Hematite$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Pitchblende, Thorianite, & 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_surface_nickel_galena)Sphalerite & Galena$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Trona, Talc, & Glauconite$()$()$(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#mars_surface_bismuthinite)Висмут$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "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#mars_surface_hematite)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ ΠΈ Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_graphite)Π“Ρ€Π°Ρ„ΠΈΡ‚ ΠΈ Алмаз$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄ ΠΈ Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_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#mars_surface_tetrahedrite)ВСтраэдрит (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)Π¨Π΅Π΅Π»ΠΈΡ‚ ΠΈ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚$()$()", + "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#mars_surface_hematite)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ ΠΈ Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_graphite)Π“Ρ€Π°Ρ„ΠΈΡ‚ ΠΈ Алмаз$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄ ΠΈ Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lapis)Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2 ΠΈ Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚$()$()$(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#mars_surface_tetrahedrite)ВСтраэдрит (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)Π¨Π΅Π΅Π»ΠΈΡ‚ ΠΈ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚$()$()", "type": "patchouli:text" }, { @@ -373,7 +373,7 @@ { "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", + "title": "Pitchblende & Thorianite, & Hematite", "type": "patchouli:text", "anchor": "mars_pitchblende" }, @@ -399,7 +399,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€ΠΈΠΉ", + "name": "Π’ΠΎΡ€ΠΈΠ°Π½ΠΈΡ‚", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -414,7 +414,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 29%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 29%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -440,7 +440,7 @@ { "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", + "title": "Pitchblende, Thorianite, & Uraninite", "type": "patchouli:text", "anchor": "deep_mars_pitchblende" }, @@ -466,7 +466,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€ΠΈΠΉ", + "name": "Π’ΠΎΡ€ΠΈΠ°Π½ΠΈΡ‚", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -481,7 +481,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 26%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 26%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1772,6 +1772,98 @@ "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Азот$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KNO₃", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 200$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 70$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 30$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π‘Π»Π°Π½Π΅Ρ†", + "title": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2 ΠΈ Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "mars_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": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2", + "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)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 230$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 70$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 42$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 15$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Red Granite, Аргиллит, Аргиллит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π‘Π»Π°Π½Π΅Ρ†, Π’Ρ€Π°Ρ…ΠΈΡ‚", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_ore_index.json index 8b26f0086..02e19a806 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_ore_index.json @@ -39,7 +39,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€ΠΈΠΉ: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†ΠΈΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/moon_vein_index#moon_apatite)33%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/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_cassiterite)35%$(/l)$()$(li)Π₯Ρ€ΠΎΠΌΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_magnetite)40%$(/l)$()$(li)Π¦Π΅ΠΎΠ»ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()$(li)Π¦ΠΈΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_mica)33%$(/l)$()$(li)Π¨Π΅Π΅Π»ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_scheelite)40%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_sheldonite)25%$(/l)$()$(li)Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½: $(l:tfg_ores/moon_vein_index#moon_saltpeter)37%$(/l)$()", + "text": "$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€ΠΈΠ°Π½ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†ΠΈΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/moon_vein_index#moon_apatite)33%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/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_cassiterite)35%$(/l)$()$(li)Π₯Ρ€ΠΎΠΌΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_magnetite)40%$(/l)$()$(li)Π¦Π΅ΠΎΠ»ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()$(li)Π¦ΠΈΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_mica)33%$(/l)$()$(li)Π¨Π΅Π΅Π»ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_scheelite)40%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_sheldonite)25%$(/l)$()$(li)Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½: $(l:tfg_ores/moon_vein_index#moon_saltpeter)37%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_vein_index.json index 3ec2baac0..96a9e3acb 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/moon_vein_index.json @@ -1108,7 +1108,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€ΠΈΠΉ", + "name": "Π’ΠΎΡ€ΠΈΠ°Π½ΠΈΡ‚", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1123,7 +1123,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 0%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 0%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_ore_index.json index a28d311e8..15f742923 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_ore_index.json @@ -24,12 +24,12 @@ }, { "Type": "patchouli:text", - "text": "$(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_sapphire)16%$(/l)$()$(li)Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄: $(l:tfg_ores/nether_vein_index#nether_beryllium)47%$(/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_beryllium)18%$(/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_quartz)25%$(/l)$()$(li)ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)14%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l)$()$(li)ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_lapis)35%$(/l)$()", + "text": "$(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_sapphire)16%$(/l)$()$(li)Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄: $(l:tfg_ores/nether_vein_index#nether_beryllium)47%$(/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_beryllium)18%$(/l)$()$(li)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_cassiterite)36%$(/l)$()$(li)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()$(li)ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)14%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l)$()$(li)ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_lapis)35%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Π›ΠΈΡ‚ΠΈΠΉ: $(l:tfg_ores/nether_vein_index#nether_scheelite)20%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_magnetite)20%$(/l)$()$(li)ΠœΠ°Π»Π°Ρ…ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_goethite)20%$(/l)$()$(li)ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_molybdenum)31%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь: $(l:tfg_ores/nether_vein_index#nether_lubricant)30%$(/l)$()$(li)Наквада: $(l:tfg_ores/nether_vein_index#nether_naquadah)100%$(/l)$()$(li)НСзСр-ΠΊΠ²Π°Ρ€Ρ†: $(l:tfg_ores/nether_vein_index#nether_quartz)54%$(/l)$()$(li)НСодим: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)НикСль: $(l:tfg_ores/nether_vein_index#nether_sheldonite)23%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l), $(l:tfg_ores/nether_vein_index#nether_molybdenum)15%$(/l)$()$(li)Оливин: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)Олово: $(l:tfg_ores/nether_vein_index#nether_cassiterite)60%$(/l)$()", + "text": "$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Π›ΠΈΡ‚ΠΈΠΉ: $(l:tfg_ores/nether_vein_index#nether_scheelite)20%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_magnetite)20%$(/l)$()$(li)ΠœΠ°Π»Π°Ρ…ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_goethite)20%$(/l)$()$(li)ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_molybdenum)31%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь: $(l:tfg_ores/nether_vein_index#nether_lubricant)30%$(/l)$()$(li)Наквада: $(l:tfg_ores/nether_vein_index#nether_naquadah)100%$(/l)$()$(li)НСзСр-ΠΊΠ²Π°Ρ€Ρ†: $(l:tfg_ores/nether_vein_index#nether_quartz)54%$(/l)$()$(li)НСодим: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)НикСль: $(l:tfg_ores/nether_vein_index#nether_sheldonite)23%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/l), $(l:tfg_ores/nether_vein_index#nether_molybdenum)15%$(/l)$()$(li)Оливин: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)Олово: $(l:tfg_ores/nether_vein_index#nether_cassiterite)54%$(/l)$()", "type": "patchouli:text" }, { @@ -39,12 +39,12 @@ }, { "Type": "patchouli:text", - "text": "$(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_silver)35%$(/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_sylvite)100%$(/l)$()$(li)Π‘ΠΈΠ½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·: $(l:tfg_ores/nether_vein_index#nether_topaz)35%$(/l)$()$(li)Блюда: $(l:tfg_ores/nether_vein_index#nether_mica)33%$(/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_lapis)25%$(/l)$()$(li)БпасСрит: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/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_lubricant)20%$(/l)$()$(li)Π’Π°Π½Ρ‚Π°Π»ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()", + "text": "$(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_silver)35%$(/l)$()$(li)Π‘Π΅Π»ΠΈΡ‚Ρ€Π°: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_cassiterite)9%$(/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_sylvite)100%$(/l)$()$(li)Π‘ΠΈΠ½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·: $(l:tfg_ores/nether_vein_index#nether_topaz)35%$(/l)$()$(li)Блюда: $(l:tfg_ores/nether_vein_index#nether_mica)33%$(/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_lapis)25%$(/l)$()$(li)БпасСрит: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/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_lubricant)20%$(/l)$()$(li)Π’Π°Π½Ρ‚Π°Π»ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)ВСтраэдрит: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€ΠΈΠΉ: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†ΠΈΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Уголь: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)62%$(/l)$()$(li)Π₯алькозин: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)Π₯Ρ€ΠΎΠΌΠΈΡ‚: $(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_scheelite)45%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_sheldonite)29%$(/l)$()", + "text": "$(li)ВСтраэдрит: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€ΠΈΠ°Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†ΠΈΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Уголь: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)62%$(/l)$()$(li)Π₯алькозин: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)Π₯Ρ€ΠΎΠΌΠΈΡ‚: $(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_scheelite)45%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_sheldonite)29%$(/l)$()", "type": "patchouli:text" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_vein_index.json index 7733ddf21..010a8d22d 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_vein_index.json @@ -1182,7 +1182,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€ΠΈΠΉ", + "name": "Π’ΠΎΡ€ΠΈΠ°Π½ΠΈΡ‚", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1197,7 +1197,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 0%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 0%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1229,7 +1229,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 60%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 54%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", "type": "patchouli:multiblock" }, { @@ -1249,13 +1249,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 36%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Π»ΠΈΡ‚Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 9%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Азот$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KNO₃", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/venus_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/venus_ore_index.json new file mode 100644 index 000000000..1414a21b9 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/venus_ore_index.json @@ -0,0 +1,22 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Venus Ore Index", + "icon": "vintageimprovements:sulfur", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Ore Index$() for $(thing)Venus$(). All ores are sorted alphabetically and then by richest to poorest vein type. You can click on them to learn more information about each vein.", + "title": "Venus Ore Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)КамСнная соль: $(l:tfg_ores/venus_vein_index#venus_manual_salt)10%$(/l)$()$(li)Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)ΠŸΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)15%$(/l)$()$(li)Π‘Π΅Ρ€Π°: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)80%$(/l)$()$(li)Боль: $(l:tfg_ores/venus_vein_index#venus_manual_salt)80%$(/l)$()$(li)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)5%$(/l)$()", + "type": "patchouli:text" + } + ], + "sortnum": 8 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/venus_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/venus_vein_index.json new file mode 100644 index 000000000..23eabe80c --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/venus_vein_index.json @@ -0,0 +1,181 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Venus Vein Index", + "icon": "gtceu:venus_stone_sulfur_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Vein Index$() for $(thing)Venus$(). Each Vein has details regarding its rarity, density, vein type, height found, sizes, what stones it spawns on, and more.", + "title": "Venus Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/venus_vein_index#venus_manual_salt)Salts & Spodumene$()$()$(li)$(l:tfg_ores/venus_vein_index#venus_manual_sulfur)Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 30$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.2$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 40 β€” 65$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 20$(br)$(thing)Высота$(): 6$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 30$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½, Π’Ρ€Π°Ρ…ΠΈΡ‚$(br2)Only appears in the $(thing)Salt Flats$() biome.", + "title": "Salts & Spodumene", + "type": "patchouli:text", + "anchor": "venus_manual_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Боль", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 80%$(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)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(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)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Π›ΠΈΡ‚ΠΈΠΉ, Алюминий, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π›ΠΈΡ‚ΠΈΠΉ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): LiAlSiβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 30$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.2$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 40 β€” 65$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 20$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 30$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½, Π’Ρ€Π°Ρ…ΠΈΡ‚", + "title": "Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "venus_manual_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 80%$(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)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(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)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + } + ], + "sortnum": 9 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_tips/faqs.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_tips/faqs.json new file mode 100644 index 000000000..cfe128d36 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_tips/faqs.json @@ -0,0 +1,43 @@ +{ + "name": "Часто Π·Π°Π΄Π°Π²Π°Π΅ΠΌΡ‹Π΅ вопросы", + "icon": "minecraft:spyglass", + "category": "tfc:tfg_tips", + "read_by_default": true, + "priority": true, + "pages": + [ + { + "type": "patchouli:text", + "title": "Π§ΠΠ’Πž", + "text": "Застрял Π½Π° Ρ‡Ρ‘ΠΌ-Ρ‚ΠΎ? ΠŸΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉ сначала ΠΏΡ€ΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ эту ΠΊΠ½ΠΈΠ³Ρƒ ΠΈ задания, Π½ΠΎ Ссли Ρ‚Ρ‹ всС Π΅Ρ‰Π΅ Π½Π΅ моТСшь Π½Π°ΠΉΡ‚ΠΈ ΠΎΡ‚Π²Π΅Ρ‚, Ρ‚Ρ‹ моТСшь Π·Π°Π΄Π°Ρ‚ΡŒ вопрос Π½Π° нашСм сайтС. $(l:https://discord.com/invite/AEaCzCTUwQ)Discord$() ΠΈΠ»ΠΈ $(l:https://www.reddit.com/r/TerraFirmaGreg)Subreddit$()!" + }, + { + "type": "patchouli:text", + "text": "$(li)$(l:tfg_tips/faqs#boats)ΠŸΠΎΡ‡Π΅ΠΌΡƒ моя Π»ΠΎΠ΄ΠΊΠ° Ρ‚ΠΎΠ½Π΅Ρ‚?$()$(li)$(l:tfg_tips/faqs#dried_fruit)Как ΠΌΠ½Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π΄Ρ€ΠΎΠΆΠΆΠΈ?$()$(li)$(l:tfg_tips/faqs#dried_fruit)Как ΠΌΠ½Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ананосовоС Π²ΠΎΠ»ΠΎΠΊΠ½ΠΎ?$()$(li)$(l:tfg_tips/faqs#resin)Как ΠΌΠ½Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Ρ€Π΅Π·ΠΈΠ½Ρƒ?$()$(li)$(l:tfg_tips/faqs#chunks)Как ΠΏΠΎΠ΄Π³Ρ€ΡƒΠ·ΠΈΡ‚ΡŒ Ρ‡Π°Π½ΠΊΠΈ ΠΈΠ»ΠΈ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ ΠΈΡ… Π»ΠΈΠΌΠΈΡ‚?$()" + }, + { + "type": "patchouli:text", + "anchor": "boats", + "text": "$(italic)ΠŸΠΎΡ‡Π΅ΠΌΡƒ моя Π»ΠΎΠ΄ΠΊΠ° Ρ‚ΠΎΠ½Π΅Ρ‚?$()$(br2)ΠŸΠΎΡΡ‚Ρ€ΠΎΠΉΡ‚Π΅ Π»ΠΎΠ΄ΠΊΡƒ Π½Π° ΡΡƒΡˆΠ΅, Π° Π·Π°Ρ‚Π΅ΠΌ Ρ‚ΠΎΠ»ΠΊΠ°ΠΉΡ‚Π΅ Π΅Ρ‘ ΠΈΠ»ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ $(item)ΠΏΠΎΠ²ΠΎΠ΄ΠΎΠΊ$(), Ρ‡Ρ‚ΠΎΠ±Ρ‹ Ρ‚ΠΎΠ»ΠΊΠ°Ρ‚ΡŒ Π΅Π΅. Если ΠΎΠ½Π° ΡƒΠΆΠ΅ Π·Π°Ρ‚ΠΎΠ½ΡƒΠ»Π°, Π½ΠΈΡ‡Π΅Π³ΠΎ ΡΡ‚Ρ€Π°ΡˆΠ½ΠΎΠ³ΠΎ, сдСлайтС Π½ΠΎΠ²ΠΎΠ΅." + }, + { + "type": "patchouli:text", + "anchor": "dried_fruit", + "text": "$(italic)Как ΠΌΠ½Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π΄Ρ€ΠΎΠΆΠΆΠΈ ΠΈΠ»ΠΈ ананосовоС Π²ΠΎΠ»ΠΎΠΊΠ½ΠΎ?$()$(br2)ΠŸΠ΅Ρ€Π΅Π΄ использованиСм ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ Π²Ρ‹ΡΡƒΡˆΠΈΡ‚Π΅ Ρ„Ρ€ΡƒΠΊΡ‚Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ $(item)Настил для ΡΡƒΡˆΠΊΠΈ$(). Π—Π°Ρ‚Π΅ΠΌ Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚Π΅ ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ шаги для $(l:firmalife/bread)Ρ…Π»Π΅Π±Π°$() ΠΈΠ»ΠΈ $(l:firmalife/berry_bushes)ананасовой ΠΊΠΎΠΆΠΈ$()." + }, + { + "type": "patchouli:text", + "anchor": "chunks", + "text": "$(italic)Как ΠΏΠΎΠ΄Π³Ρ€ΡƒΠ·ΠΈΡ‚ΡŒ Ρ‡Π°Π½ΠΊΠΈ ΠΈΠ»ΠΈ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ ΠΈΡ… Π»ΠΈΠΌΠΈΡ‚?$()$(br2)ΠžΡ‚ΠΊΡ€ΠΎΠΉ ΠΊΠ°Ρ€Ρ‚Ρƒ Π½Π° ΠΊΠ»Π°Π²ΠΈΡˆΡƒ $(item)$(k:key.ftbchunks.claim_manager)$(), Π·Π°Ρ‚Π΅ΠΌ shift Π›ΠšΠœ ΠΏΠΎ Ρ‡Π°Π½ΠΊΡƒ. Shift ПКМ для снятия ΠΊΠ»Π΅ΠΉΠΌΠ°.$(br2)Для увСличСния количСства ΠΏΠΎΠ΄Π³Ρ€ΡƒΠΆΠ°Π΅ΠΌΡ‹Ρ… Ρ‡Π°Π½ΠΊΠΎΠ², ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ $(item)/ftbchunks admin extra_force_load_chunks @p set X$(), Π³Π΄Π΅ X - Π½ΠΎΠ²Ρ‹ΠΉ Π»ΠΈΠΌΠΈΡ‚." + }, + { + "type": "patchouli:text", + "anchor": "resin", + "text": "$(italic)Как ΠΌΠ½Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Ρ€Π΅Π·ΠΈΠ½Ρƒ?$()$(br2)Π Π΅Π·ΠΈΠ½Π°(ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚) β€” это большС Π½Π΅ Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ! Π‘Π½Π°Ρ‡Π°Π»Π° вырасти Π΄Π΅Ρ€Π΅Π²ΡŒΡ, Π΄Π°ΡŽΡ‰ΠΈΠ΅ $(thing)ЛатСкс$() ΠΈ скрафтитС нСсколько $(thing)ΠšΡ€Π°Π½ΠΈΠΊΠΎΠ² для подсочки$(). УстановитС ΠšΡ€Π°Π½ΠΈΠΊ для подсочки Π½Π° ΠΊΠ°ΠΆΠ΄ΠΎΠΌ Π΄Π΅Ρ€Π΅Π²Π΅. (Π‘ΠΎΠ»ΡŒΡˆΠ΅ ΠΊΡ€Π°Π½ΠΈΠΊΠΎΠ² Π½Π° ΠΎΠ΄Π½ΠΎΠΌ Π΄Π΅Ρ€Π΅Π²Π΅ просто Ρ€Π°Π·Π΄Π΅Π»ΠΈΡ‚ Π²Ρ‹Ρ…ΠΎΠ΄).Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ латСкс с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ $(l:mechanics/barrels)Π‘ΠΎΡ‡Π΅ΠΊ$()." + }, + { + "type": "patchouli:text", + "text": "БыстрСС всСго ΡΠ²Π°Ρ€ΠΈΡ‚ΡŒ латСкс Π² $(l:firmalife/oven_appliances#vat)Π§Π°Π½Π΅$(). Π‘ΠΎΠ΅Π΄ΠΈΠ½ΠΈ латСкс с $(item)ΠŸΠΎΡ€ΠΎΡˆΠΊΠΎΠΌ сСры$() Π² Ρ‡Π°Π½Π΅ (ΠŸΠ΅Ρ€Π΅Π΄Ρ€ΠΎΠ±ΠΈ ΠΏΡ‹Π»ΡŒ сСры), Π½Π°Π³Ρ€Π΅ΠΉ ΠΈ $(bold)Π·Π°ΠΊΡ€ΠΎΠΉ ΠΊΡ€Ρ‹ΡˆΠΊΠΊΡƒ$() Ρ‡Π°Π½Π° с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ клавиш $(item)$(k:sneak)$() + $(item)$(k:use)$(). Π’Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡˆΡŒ $(thing)Π’ΡƒΠ»ΠΊΠ°Π½ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ латСкс$(), ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Ρ‚Ρ‹ моТСшь Π²Π°ΠΊΡƒΡƒΠΌΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π² $(thing)Π’Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΠΉ ΠΊΠ°ΠΌΠ΅Ρ€Π΅$() для этой Π΄ΠΎΠ»Π³ΠΎΠΆΠ΄Π°Π½Π½ΠΎΠΉ Ρ€Π΅Π·ΠΈΠ½Ρ‹!$(br2)ПозТС, $(thing)LV Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°$() ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Ρ‚Π΅Π±Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ $(thing)ΠΠ΅ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½ΡƒΡŽ Ρ€Π΅Π·ΠΈΠ½Ρƒ$() Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ с Π±Ρ€Π΅Π²Π΅Π½ латСксных Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π²." + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/getting_started/primitive_alloys.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/getting_started/primitive_alloys.json index f0e4b73b1..c9d01025d 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/getting_started/primitive_alloys.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/getting_started/primitive_alloys.json @@ -71,6 +71,6 @@ "gtceu:bronze_ingot": 3, "gtceu:bismuth_bronze_ingot": 4, "gtceu:black_bronze_ingot": 5, - "gtceu:brass_ingot": 7 + "create:brass_ingot": 7 } } \ No newline at end of file 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 c9d217d7e..0b0ce6aa8 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 @@ -14,42 +14,42 @@ }, { "Type": "patchouli:text", - "text": "$(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#deep_sapphire)38%$(/l)$()$(li)Алуніт: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/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_apatite)50%$(/l)$()$(li)Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)35%$(/l)$()$(li)Π‘Π°Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_quartz)37%$(/l)$()$(li)БастнСзит: $(l:tfg_ores/earth_vein_index#normal_monazite)62%$(/l)$()$(li)Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/l)$()$(li)Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ: $(l:tfg_ores/earth_vein_index#normal_beryllium)35%$(/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#deep_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Π‘ΡƒΡ€Π°: $(l:tfg_ores/earth_vein_index#normal_gypsum)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()", + "text": "$(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#deep_sapphire)38%$(/l)$()$(li)Алуніт: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/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_apatite)50%$(/l)$()$(li)Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)35%$(/l)$()$(li)Π‘Π°Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_quartz)37%$(/l)$()$(li)БастнСзит: $(l:tfg_ores/earth_vein_index#normal_monazite)62%$(/l)$()$(li)Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/l)$()$(li)Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ: $(l:tfg_ores/earth_vein_index#normal_beryllium)35%$(/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#deep_sheldonite)53%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Π‘ΡƒΡ€Π°: $(l:tfg_ores/earth_vein_index#normal_gypsum)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_tarkianite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()", "type": "patchouli:text" }, { "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)85%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)72%$(/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)$()", + "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)80%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)70%$(/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" }, { "Type": "patchouli:text", - "text": "$(li)Гроссуляр: $(l:tfg_ores/earth_vein_index#normal_manganese)37%$(/l)$()$(li)Π”Ρ–Π°ΠΌΠ°Π½Ρ‚: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/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_saltpeter)25%$(/l)$()$(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#deep_sapphire)16%$(/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_gypsum)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_lapis)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#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_quartz)43%$(/l)$()$(li)ΠšΡ–Π°Π½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()", + "text": "$(li)Гроссуляр: $(l:tfg_ores/earth_vein_index#normal_manganese)37%$(/l)$()$(li)Π”Ρ–Π°ΠΌΠ°Π½Ρ‚: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/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_saltpeter)25%$(/l)$()$(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#deep_sapphire)16%$(/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_gypsum)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_lapis)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#surface_cassiterite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)35%$(/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_quartz)43%$(/l)$()$(li)ΠšΡ–Π°Π½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)ΠšΡ–Π½ΠΎΠ²Π°Ρ€: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Лапіс: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(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_olivine)25%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/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#deep_molybdenum)35%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)Нафтові піски: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l)$()$(li)НСодим: $(l:tfg_ores/earth_vein_index#normal_monazite)6%$(/l)$()", + "text": "$(li)ΠšΡ–Π½ΠΎΠ²Π°Ρ€: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Лапіс: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(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_olivine)25%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/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#deep_molybdenum)35%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_monazite)31%$(/l)$()$(li)Нафтові піски: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_tarkianite)35%$(/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_garnierite)10%$(/l)$()$(li)Нітрат ΠΊΠ°Π»Ρ–ΡŽ: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l)$()$(li)ΠžΠ»ΠΈΠ²Ρ–Π½: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/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#deep_garnet_opal)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/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_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#normal_manganese)25%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΠΏ: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/earth_vein_index#deep_sheldonite)7%$(/l)$()$(li)ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#deep_molybdenum)17%$(/l)$()$(li)ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(li)Π Π΅Π°Π»ΡŒΠ³Π°Ρ€: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()", + "text": "$(li)ΠΡ–ΠΊΠ΅Π»ΡŒ: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)Нітрат ΠΊΠ°Π»Ρ–ΡŽ: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)10%$(/l)$()$(li)ΠžΠ»ΠΈΠ²Ρ–Π½: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Олово: $(l:tfg_ores/earth_vein_index#normal_cassiterite)55%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)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_garnierite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_lubricant)15%$(/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#normal_manganese)25%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΠΏ: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/earth_vein_index#deep_sheldonite)7%$(/l)$()$(li)ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#deep_molybdenum)17%$(/l)$()$(li)ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(li)Π Π΅Π°Π»ΡŒΠ³Π°Ρ€: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()", "type": "patchouli:text" }, { "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), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/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)10%$(/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)8%$(/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#normal_bismuthinite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)10%$(/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)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)$()", + "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#normal_tarkianite)35%$(/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), $(l:tfg_ores/earth_vein_index#normal_tarkianite)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)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(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#surface_copper)16%$(/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#deep_scheelite)45%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚Π½: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/l)$()", + "text": "$(li)Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_topaz)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#surface_copper)16%$(/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#deep_scheelite)45%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚Π½: $(l:tfg_ores/earth_vein_index#deep_sheldonite)38%$(/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 ced57fa2d..9d1312b2e 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 @@ -24,12 +24,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_opal)Опал Ρ– Π“Ρ€Π°Π½Π°Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_redstone)РСдстоун, ΠšΡ–Π½ΠΎΠ²Π°Ρ€ Ρ– Π ΡƒΠ±Ρ–Π½$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sapphire)Π‘Π°ΠΏΡ„Ρ–Ρ€ Ρ– ΠΠ»ΡŒΠΌΠ°Π΄Ρ–Π½$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)Π‘Π΅Π»Ρ–Ρ‚Ρ€Π° Ρ‚Π° Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_beryllium)Π‘ΠΌΠ°Ρ€Π°Π³Π΄ Ρ– Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_salt)Π‘ΠΎΠ»Ρ– Ρ‚Π° Π‘ΡƒΡ€Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_spodumene)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ Ρ‚Π° Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_silver)Π‘Ρ€Ρ–Π±Π»ΠΎ, Π“Π°Π»Π΅Π½ Ρ– Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lubricant)Π‘Ρ‚Π΅Π°Ρ‚ΠΈΡ‚, Вальк Ρ– Π’Ρ€ΠΎΠ½Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– ΠŸΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– Π‘Ρ–Ρ€ΠΊΠ°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (Π—Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_opal)Опал Ρ– Π“Ρ€Π°Π½Π°Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_redstone)РСдстоун, ΠšΡ–Π½ΠΎΠ²Π°Ρ€ Ρ– Π ΡƒΠ±Ρ–Π½$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sapphire)Π‘Π°ΠΏΡ„Ρ–Ρ€ Ρ– ΠΠ»ΡŒΠΌΠ°Π΄Ρ–Π½$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)Π‘Π΅Π»Ρ–Ρ‚Ρ€Π° Ρ‚Π° Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_beryllium)Π‘ΠΌΠ°Ρ€Π°Π³Π΄ Ρ– Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_salt)Π‘ΠΎΠ»Ρ– Ρ‚Π° Π‘ΡƒΡ€Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_spodumene)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ Ρ‚Π° Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_silver)Π‘Ρ€Ρ–Π±Π»ΠΎ, Π“Π°Π»Π΅Π½ Ρ– Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lubricant)Π‘Ρ‚Π΅Π°Ρ‚ΠΈΡ‚, Вальк Ρ– Π’Ρ€ΠΎΠ½Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– ΠŸΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– Π‘Ρ–Ρ€ΠΊΠ°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tarkianite)Π’Π°Ρ€ΠΊΡ–Π°Π½Ρ–Ρ‚ Ρ‚Π° Нафтові піски$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (Π—Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Π’ΠΎΠΏΠ°Π· Ρ– Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Π£Ρ€Π°Π½Ρ–Ρ‚ & ΠŸΡ–Ρ‚Ρ‡Π±Π»Π΅Π½Π΄$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_copper)Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚ Ρ‚Π° Π Π΅Π°Π»ΡŒΠ³Π°Ρ€$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_magnetite)Π₯Ρ€ΠΎΠΌΡ–Ρ‚ Ρ– ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Π¨Π΅Ρ”Π»Ρ–Ρ‚ Ρ‚Π° Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sheldonite)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚ Ρ– Π‘ΠΎΡ€Π½Ρ–Ρ‚$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Π’ΠΎΠΏΠ°Π· Ρ– Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Π£Ρ€Π°Π½Ρ–Ρ‚ & ΠŸΡ–Ρ‚Ρ‡Π±Π»Π΅Π½Π΄$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_copper)Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚ Ρ‚Π° Π Π΅Π°Π»ΡŒΠ³Π°Ρ€$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_magnetite)Π₯Ρ€ΠΎΠΌΡ–Ρ‚ Ρ– ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Π¨Π΅Ρ”Π»Ρ–Ρ‚ Ρ‚Π° Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sheldonite)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚ Ρ– Π‘ΠΎΡ€Π½Ρ–Ρ‚$()$()", "type": "patchouli:text" }, { @@ -131,7 +131,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 34$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 20 β€” 120$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 34$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", "title": "Апатит Ρ– ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€", "type": "patchouli:text", "anchor": "normal_apatite" @@ -379,7 +379,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 72%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Вісмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", + "text": "$(thing)Відсоток$(): 70%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Вісмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", "type": "patchouli:multiblock" }, { @@ -399,7 +399,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)НСбСзпСчний$(): $(c)$(t:ΠŸΠΎΡ‚Ρ€Ρ–Π±Π½Π° захисна маска)Π‘Π»Π°Π±ΠΊΠ° ΠΎΡ‚Ρ€ΡƒΠΉΠ½Ρ–ΡΡ‚ΡŒ (інгаляція)$(/t)$()", + "text": "$(thing)Відсоток$(): 11%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)НСбСзпСчний$(): $(c)$(t:ΠŸΠΎΡ‚Ρ€Ρ–Π±Π½Π° захисна маска)Π‘Π»Π°Π±ΠΊΠ° ΠΎΡ‚Ρ€ΡƒΠΉΠ½Ρ–ΡΡ‚ΡŒ (інгаляція)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -419,7 +419,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 9%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Ρ€Ρ–Π±Π»ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ag", + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Ρ€Ρ–Π±Π»ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ag", "type": "patchouli:multiblock" }, { @@ -439,7 +439,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 8%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Ρ–Ρ€ΠΊΠΈ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "text": "$(thing)Відсоток$(): 9%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Ρ–Ρ€ΠΊΠΈ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", "type": "patchouli:multiblock" }, { @@ -471,7 +471,27 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 85%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Вісмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", + "text": "$(thing)Відсоток$(): 80%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Вісмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π‘Ρ€Ρ–Π±Π»Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Ρ€Ρ–Π±Π»ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ag", "type": "patchouli:multiblock" }, { @@ -494,26 +514,6 @@ "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": "Π‘Ρ–Ρ€ΠΊΠ°", @@ -1490,7 +1490,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 60%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "text": "$(thing)Відсоток$(): 55%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", "type": "patchouli:multiblock" }, { @@ -1510,13 +1510,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", @@ -1542,7 +1557,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 60%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "text": "$(thing)Відсоток$(): 55%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1562,13 +1577,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", @@ -1639,7 +1669,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 190$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 36$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 40$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 190$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 36$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", "title": "ΠšΡ–Π°Π½Ρ–Ρ‚, Блюда Ρ‚Π° Боксити", "type": "patchouli:text", "anchor": "normal_mica" @@ -2469,7 +2499,7 @@ }, { "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)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 180$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 32$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 28$(br)$(thing)Висота$(): 8$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", "title": "Π‘Π°ΠΏΡ„Ρ–Ρ€ Ρ– ΠΠ»ΡŒΠΌΠ°Π΄Ρ–Π½", "type": "patchouli:text", "anchor": "deep_sapphire" @@ -2767,7 +2797,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€Ρ–ΠΉ", + "name": "Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -2782,7 +2812,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -3277,6 +3307,98 @@ "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", "type": "patchouli:multiblock" }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 140$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): Π’Ρ€ΡƒΠ±Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 20 β€” 120$(br)$(thing)Висота$(): 60$(br)$(thing)Радіус$(): 10$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Аргиліт, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π‘Π°Π·Π°Π»ΡŒΡ‚, Вапняк, Π“Π°Π±Ρ€ΠΎ, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Π°Ρ†ΠΈΡ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π’Π°Ρ€ΠΊΡ–Π°Π½Ρ–Ρ‚ Ρ‚Π° Нафтові піски", + "type": "patchouli:text", + "anchor": "normal_tarkianite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Ρ€ΠΊΡ–Π°Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tarkianite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π Π΅Π½Ρ–ΠΉ, ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CuFeReβ‚„Moβ‚„Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Нафтові піски", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Π²ΠΎΠ±ΠΎΠ΄ΠΈ \uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", + "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/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ°Ρ‚Ρ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚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$(): -32 β€” 75$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", @@ -3664,7 +3786,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 225$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 20$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 225$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 20$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠœΠ°Ρ€ΠΌΡƒΡ€", "title": "Π₯Ρ€ΠΎΠΌΡ–Ρ‚ Ρ– ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", "type": "patchouli:text", "anchor": "deep_magnetite" 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 a0613df0b..d949d080b 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 @@ -19,22 +19,27 @@ }, { "Type": "patchouli:text", - "text": "$(li)Π“Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()$(li)Гіпс: $(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)20%$(/l)$()$(li)Π“Π»Π°Π²ΠΊΠΎΠ½Ρ–Ρ‚Π½ΠΈΠΉ пісок: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/l)$()$(li)Π“Ρ€Π°Ρ„Ρ–Ρ‚: $(l:tfg_ores/mars_vein_index#mars_graphite)45%$(/l)$()$(li)Гроссуляр: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Π”Ρ–Π°ΠΌΠ°Π½Ρ‚: $(l:tfg_ores/mars_vein_index#mars_graphite)20%$(/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#mars_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_surface_hematite)5%$(/l)$()$(li)ΠšΠ°ΠΌβ€™ΡΠ½Π° ΡΡ–Π»ΡŒ: $(l:tfg_ores/mars_vein_index#mars_salt)20%$(/l)$()$(li)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_nickel_galena)11%$(/l)$()", + "text": "$(li)Π“Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_hematite)15%$(/l)$()$(li)Гіпс: $(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)20%$(/l)$()$(li)Π“Π»Π°Π²ΠΊΠΎΠ½Ρ–Ρ‚Π½ΠΈΠΉ пісок: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/l)$()$(li)Π“Ρ€Π°Ρ„Ρ–Ρ‚: $(l:tfg_ores/mars_vein_index#mars_graphite)45%$(/l)$()$(li)Гроссуляр: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)Π”Ρ–Π°ΠΌΠ°Π½Ρ‚: $(l:tfg_ores/mars_vein_index#mars_graphite)20%$(/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#mars_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_lapis)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_hematite)5%$(/l)$()$(li)ΠšΠ°ΠΌβ€™ΡΠ½Π° ΡΡ–Π»ΡŒ: $(l:tfg_ores/mars_vein_index#mars_salt)20%$(/l)$()$(li)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_nickel_galena)11%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(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)$()$(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#mars_surface_nickel_galena)23%$(/l)$()$(li)Нітрат ΠΊΠ°Π»Ρ–ΡŽ: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)10%$(/l)$()$(li)Олово: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)35%$(/l)$()$(li)ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/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)42%$(/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)$()", + "text": "$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_lapis)35%$(/l)$()$(li)Лапіс: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/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)$()$(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#mars_surface_nickel_galena)23%$(/l)$()$(li)Нітрат ΠΊΠ°Π»Ρ–ΡŽ: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)10%$(/l)$()$(li)Олово: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)35%$(/l)$()$(li)ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/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)42%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΠΏ: $(l:tfg_ores/mars_vein_index#mars_almandine)26%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€: $(l:tfg_ores/mars_vein_index#mars_apatite)14%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)РСдстоун: $(l:tfg_ores/mars_vein_index#deep_mars_chromite)45%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_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#mars_surface_tetrahedrite)19%$(/l)$()$(li)Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π‘Ρ€Ρ–Π±Π»Π°: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_bismuthinite)20%$(/l)$()$(li)Π‘ΠΌΠ°Ρ€Π°Π³Π΄: $(l:tfg_ores/mars_vein_index#mars_beryllium)50%$(/l)$()$(li)Боапостон: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()$(li)БпСсартін: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/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#mars_surface_tetrahedrite)19%$(/l)$()", + "text": "$(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#mars_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#mars_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#mars_surface_tetrahedrite)19%$(/l)$()$(li)Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π‘Ρ€Ρ–Π±Π»Π°: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_surface_bismuthinite)20%$(/l)$()$(li)Π‘ΠΌΠ°Ρ€Π°Π³Π΄: $(l:tfg_ores/mars_vein_index#mars_beryllium)50%$(/l)$()$(li)Боапостон: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()$(li)Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)36%$(/l)$()$(li)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_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#mars_lubricant)35%$(/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)$()", + "text": "$(li)БпСсартін: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/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#mars_surface_tetrahedrite)19%$(/l)$()$(li)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)36%$(/l)$()$(li)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚: $(l:tfg_ores/mars_vein_index#mars_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#mars_lubricant)35%$(/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)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(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 51200e18e..49ab96a50 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,12 +14,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_almandine)Альмандин Ρ– Π‘Π°ΠΏΡ„Ρ–Ρ€$()$()$(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#deep_mars_sheldonite)Π‘ΠΎΡ€Π½Ρ–Ρ‚ Ρ– ΠšΡƒΠΏΠ΅Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)Вісмут$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_coal)Вугілля Ρ– Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚$()$()$(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#mars_surface_hematite)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ Ρ‚Π° Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_graphite)Π“Ρ€Π°Ρ„Ρ–Ρ‚ Ρ– Π”Ρ–Π°ΠΌΠ°Π½Ρ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sapphire)Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½ Ρ– Боксит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_quartzite)ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, АзбСст Ρ– Π‘Π°Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†ΡŒ Ρ– Π’Π°Π½Ρ‚Π°Π»$()$()", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_almandine)Альмандин Ρ– Π‘Π°ΠΏΡ„Ρ–Ρ€$()$()$(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#deep_mars_sheldonite)Π‘ΠΎΡ€Π½Ρ–Ρ‚ Ρ– ΠšΡƒΠΏΠ΅Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)Вісмут$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_coal)Вугілля Ρ– Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚$()$()$(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#mars_surface_hematite)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ Ρ‚Π° Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_graphite)Π“Ρ€Π°Ρ„Ρ–Ρ‚ Ρ– Π”Ρ–Π°ΠΌΠ°Π½Ρ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sapphire)Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½ Ρ– Боксит$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_quartzite)ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, АзбСст Ρ– Π‘Π°Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lapis)Лапіс, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ Ρ‚Π° Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_copper)ΠœΡ–Π΄ΡŒ Ρ‚Π° Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)Настуран, Π’ΠΎΡ€Ρ–ΠΉ Ρ– Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Настуран, Π’ΠΎΡ€Ρ–ΠΉ Ρ– Π£Ρ€Π°Π½Ρ–Π½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_chromite)РСдстоун Ρ– Π₯Ρ€ΠΎΠΌΡ–Ρ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)Π‘ΠΌΠ°Ρ€Π°Π³Π΄ Ρ– Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_salt)Π‘ΠΎΠ»Ρ– Ρ– Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_galena)Π‘Ρ€Ρ–Π±Π»ΠΎ, Π“Π°Π»Π΅Π½ Ρ– Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Π‘Ρ‚Π΅Π°Ρ‚ΠΈΡ‚, Вальк Ρ– Π“Π»Π°ΡƒΠΊΠΎΠ½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_nickel_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#mars_surface_tetrahedrite)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)Π¨Π΅Ρ”Π»Ρ–Ρ‚ Ρ‚Π° Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ$()$()", + "text": "$(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_pitchblende)Настуран, Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚ Ρ– Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)Настуран, Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚ Ρ– Π£Ρ€Π°Π½Ρ–Π½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_chromite)РСдстоун Ρ– Π₯Ρ€ΠΎΠΌΡ–Ρ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)Π‘ΠΌΠ°Ρ€Π°Π³Π΄ Ρ– Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_salt)Π‘ΠΎΠ»Ρ– Ρ– Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_galena)Π‘Ρ€Ρ–Π±Π»ΠΎ, Π“Π°Π»Π΅Π½ Ρ– Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)Π‘Ρ‚Π΅Π°Ρ‚ΠΈΡ‚, Вальк Ρ– Π“Π»Π°ΡƒΠΊΠΎΠ½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_nickel_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#mars_surface_tetrahedrite)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)Π¨Π΅Ρ”Π»Ρ–Ρ‚ Ρ‚Π° Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ$()$()", "type": "patchouli:text" }, { @@ -1173,6 +1173,98 @@ "draw_filler": true, "type": "patchouli:empty" }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 200$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 70$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 30$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргіліт, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Лапіс, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ Ρ‚Π° Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "mars_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)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 230$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 70$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 42$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 15$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Red Granite, Аргиліт, Аргіліт, Π‘Π°Π·Π°Π»ΡŒΡ‚, Вапняк, Π“Π°Π±Ρ€ΠΎ, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π’Ρ€Π°Ρ…Ρ–Ρ‚", @@ -1360,7 +1452,7 @@ { "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": "Настуран, Π’ΠΎΡ€Ρ–ΠΉ Ρ– Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "title": "Настуран, Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚ Ρ– Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", "type": "patchouli:text", "anchor": "mars_pitchblende" }, @@ -1386,7 +1478,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€Ρ–ΠΉ", + "name": "Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1401,7 +1493,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 29%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "text": "$(thing)Відсоток$(): 29%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1427,7 +1519,7 @@ { "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": "Настуран, Π’ΠΎΡ€Ρ–ΠΉ Ρ– Π£Ρ€Π°Π½Ρ–Π½Ρ–Ρ‚", + "title": "Настуран, Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚ Ρ– Π£Ρ€Π°Π½Ρ–Π½Ρ–Ρ‚", "type": "patchouli:text", "anchor": "deep_mars_pitchblende" }, @@ -1453,7 +1545,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€Ρ–ΠΉ", + "name": "Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1468,7 +1560,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 26%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "text": "$(thing)Відсоток$(): 26%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_ore_index.json index 1bbcd24bf..da1f5c95b 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_ore_index.json @@ -39,7 +39,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)40%$(/l)$()$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€Ρ–ΠΉ: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/moon_vein_index#moon_apatite)33%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_cassiterite)35%$(/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_magnetite)40%$(/l)$()$(li)Π¦Π΅ΠΎΠ»Ρ–Ρ‚: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()$(li)Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/moon_vein_index#moon_garnet)9%$(/l)$()$(li)Π¨Π΅Ρ”Π»Ρ–Ρ‚: $(l:tfg_ores/moon_vein_index#moon_scheelite)40%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚Π½: $(l:tfg_ores/moon_vein_index#moon_sheldonite)25%$(/l)$()", + "text": "$(li)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_tetrahedrite)40%$(/l)$()$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/moon_vein_index#moon_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚: $(l:tfg_ores/moon_vein_index#moon_beryllium)0%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/moon_vein_index#moon_apatite)33%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/moon_vein_index#moon_lubricant)10%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/moon_vein_index#moon_cassiterite)35%$(/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_magnetite)40%$(/l)$()$(li)Π¦Π΅ΠΎΠ»Ρ–Ρ‚: $(l:tfg_ores/moon_vein_index#moon_cassiterite)5%$(/l)$()$(li)Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/moon_vein_index#moon_garnet)9%$(/l)$()$(li)Π¨Π΅Ρ”Π»Ρ–Ρ‚: $(l:tfg_ores/moon_vein_index#moon_scheelite)40%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚Π½: $(l:tfg_ores/moon_vein_index#moon_sheldonite)25%$(/l)$()", "type": "patchouli:text" } ], diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_vein_index.json index bd9a0a222..97767decf 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/moon_vein_index.json @@ -1782,7 +1782,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€Ρ–ΠΉ", + "name": "Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1797,7 +1797,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 0%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "text": "$(thing)Відсоток$(): 0%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_ore_index.json index 22f3dda26..f7bfffeed 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_ore_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_ore_index.json @@ -24,7 +24,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Π”Ρ–Π°ΠΌΠ°Π½Ρ‚: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/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_saltpeter)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_sapphire)16%$(/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_gypsum)30%$(/l), $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)ΠšΠ°ΠΌβ€™ΡΠ½Π° ΡΡ–Π»ΡŒ: $(l:tfg_ores/nether_vein_index#nether_beryllium)18%$(/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_quartz)54%$(/l)$()$(li)ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()$(li)ΠšΡ–Π°Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_mica)46%$(/l)$()", + "text": "$(li)Π”Ρ–Π°ΠΌΠ°Π½Ρ‚: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/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_saltpeter)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_sapphire)16%$(/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_gypsum)30%$(/l), $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)ΠšΠ°ΠΌβ€™ΡΠ½Π° ΡΡ–Π»ΡŒ: $(l:tfg_ores/nether_vein_index#nether_beryllium)18%$(/l)$()$(li)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_cassiterite)36%$(/l)$()$(li)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)ΠšΠ²Π°Ρ€Ρ† НиТнього Π‘Π²Ρ–Ρ‚Ρƒ: $(l:tfg_ores/nether_vein_index#nether_quartz)54%$(/l)$()$(li)ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()$(li)ΠšΡ–Π°Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_mica)46%$(/l)$()", "type": "patchouli:text" }, { @@ -34,7 +34,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Нітрат ΠΊΠ°Π»Ρ–ΡŽ: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l)$()$(li)ΠžΠ»ΠΈΠ²Ρ–Π½: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)Олово: $(l:tfg_ores/nether_vein_index#nether_cassiterite)60%$(/l)$()$(li)Опал: $(l:tfg_ores/nether_vein_index#nether_garnet)38%$(/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_sulfur)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_copper)10%$(/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_apatite)15%$(/l)$()$(li)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_sheldonite)5%$(/l)$()$(li)ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_molybdenum)10%$(/l)$()$(li)ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_mica)20%$(/l)$()$(li)РСдстоун: $(l:tfg_ores/nether_vein_index#nether_redstone)45%$(/l)$()$(li)Π ΡƒΠ±Ρ–Π½: $(l:tfg_ores/nether_vein_index#nether_redstone)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)20%$(/l)$()", + "text": "$(li)Нітрат ΠΊΠ°Π»Ρ–ΡŽ: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_cassiterite)9%$(/l)$()$(li)ΠžΠ»ΠΈΠ²Ρ–Π½: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)Олово: $(l:tfg_ores/nether_vein_index#nether_cassiterite)54%$(/l)$()$(li)Опал: $(l:tfg_ores/nether_vein_index#nether_garnet)38%$(/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_sulfur)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_copper)10%$(/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_apatite)15%$(/l)$()$(li)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_sheldonite)5%$(/l)$()$(li)ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_molybdenum)10%$(/l)$()$(li)ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_mica)20%$(/l)$()$(li)РСдстоун: $(l:tfg_ores/nether_vein_index#nether_redstone)45%$(/l)$()$(li)Π ΡƒΠ±Ρ–Π½: $(l:tfg_ores/nether_vein_index#nether_redstone)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)20%$(/l)$()", "type": "patchouli:text" }, { @@ -44,7 +44,7 @@ }, { "Type": "patchouli:text", - "text": "$(li)Вальк: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Π’Π°Π½Ρ‚Π°Π»Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€Ρ–ΠΉ: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)62%$(/l)$()$(li)Π£Ρ€Π°Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π₯Ρ€ΠΎΠΌΡ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)Π¨Π΅Ρ”Π»Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()", + "text": "$(li)Вальк: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Π’Π°Π½Ρ‚Π°Π»Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_beryllium)0%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)62%$(/l)$()$(li)Π£Ρ€Π°Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π₯Ρ€ΠΎΠΌΡ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_magnetite)10%$(/l)$()$(li)Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)Π¨Π΅Ρ”Π»Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()", "type": "patchouli:text" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_vein_index.json index 502c8fb6b..3ab2c99df 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_vein_index.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_vein_index.json @@ -1137,7 +1137,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 60%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "text": "$(thing)Відсоток$(): 54%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", "type": "patchouli:multiblock" }, { @@ -1157,13 +1157,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "text": "$(thing)Відсоток$(): 36%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:multiblock", + "name": "Нітрат ΠΊΠ°Π»Ρ–ΡŽ", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 9%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, Азот$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KNO₃", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", @@ -2108,7 +2123,7 @@ }, { "Type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€Ρ–ΠΉ", + "name": "Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -2123,7 +2138,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)Відсоток$(): 0%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "text": "$(thing)Відсоток$(): 0%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/venus_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/venus_ore_index.json new file mode 100644 index 000000000..bd6266b92 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/venus_ore_index.json @@ -0,0 +1,22 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Venus Ore Index", + "icon": "vintageimprovements:sulfur", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "Π¦Π΅ $(thing)ІндСкс Ρ€ΡƒΠ΄$() для $(thing)Venus$(). Усі Ρ€ΡƒΠ΄ΠΈ відсортовані Π² Π°Π»Ρ„Π°Π²Ρ–Ρ‚Π½ΠΎΠΌΡƒ порядку, Π° ΠΏΠΎΡ‚Ρ–ΠΌ β€” Π²Ρ–Π΄ Π½Π°ΠΉΠ±Π°Π³Π°Ρ‚ΡˆΠΈΡ… Π΄ΠΎ Π½Π°ΠΉΠ±Ρ–Π΄Π½Ρ–ΡˆΠΈΡ… ΠΆΠΈΠ». Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ натиснути Π½Π° Π½ΠΈΡ…, Ρ‰ΠΎΠ± дізнатися Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΡ€ΠΎ ΠΊΠΎΠΆΠ½Ρƒ ΠΆΠΈΠ»Ρƒ.", + "title": "Venus Ore Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)ΠšΠ°ΠΌβ€™ΡΠ½Π° ΡΡ–Π»ΡŒ: $(l:tfg_ores/venus_vein_index#venus_manual_salt)10%$(/l)$()$(li)Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΈΡ‚: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)15%$(/l)$()$(li)Π‘Ρ–Π»ΡŒ: $(l:tfg_ores/venus_vein_index#venus_manual_salt)80%$(/l)$()$(li)Π‘Ρ–Ρ€ΠΊΠ°: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)80%$(/l)$()$(li)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)5%$(/l)$()", + "type": "patchouli:text" + } + ], + "sortnum": 8 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/venus_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/venus_vein_index.json new file mode 100644 index 000000000..0802695cd --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/venus_vein_index.json @@ -0,0 +1,181 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Venus Vein Index", + "icon": "gtceu:venus_stone_sulfur_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "Π¦Π΅ $(thing)ІндСкс ΠΆΠΈΠ»$() для $(thing)Venus$(). КоТна ΠΆΠΈΠ»Π° ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–ΡŽ ΠΏΡ€ΠΎ Ρ—Ρ— Ρ€Ρ–Π΄ΠΊΡ–ΡΠ½Ρ–ΡΡ‚ΡŒ, Ρ‰Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ, Ρ‚ΠΈΠΏ, висоту залягання, Ρ€ΠΎΠ·ΠΌΡ–Ρ€ΠΈ, ΠΏΠΎΡ€ΠΎΠ΄ΠΈ, Π² яких Π²ΠΎΠ½Π° Π·β€™ΡΠ²Π»ΡΡ”Ρ‚ΡŒΡΡ, Ρ‚Π° Ρ–Π½ΡˆΠ΅.", + "title": "Venus Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/venus_vein_index#venus_manual_sulfur)Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/venus_vein_index#venus_manual_salt)Π‘ΠΎΠ»Ρ– Ρ– Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 30$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.2$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 40 β€” 65$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 20$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 30$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½, Π’Ρ€Π°Ρ…Ρ–Ρ‚", + "title": "Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "venus_manual_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Ρ€ΠΊΠ°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 80%$(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)Відсоток$(): 15%$(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)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 30$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.2$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): 40 β€” 65$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 20$(br)$(thing)Висота$(): 6$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 30$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½, Π’Ρ€Π°Ρ…Ρ–Ρ‚", + "title": "Π‘ΠΎΠ»Ρ– Ρ– Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½", + "type": "patchouli:text", + "anchor": "venus_manual_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Π»ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 80%$(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)Відсоток$(): 10%$(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)Відсоток$(): 5%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, Π›Ρ–Ρ‚Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π›Ρ–Ρ‚Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): LiAlSiβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + } + ], + "sortnum": 9 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_tips/faqs.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_tips/faqs.json index 22216117b..2797b56d2 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_tips/faqs.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_tips/faqs.json @@ -12,7 +12,7 @@ }, { "type": "patchouli:text", - "text": "$(li)$(l:tfg_tips/faqs#boats)Π§ΠΎΠΌΡƒ ΠΌΡ–ΠΉ Ρ‡ΠΎΠ²Π΅Π½ ΠΏΠΎΡ‚ΠΎΠ½ΡƒΠ²?$()\n$(li)$(l:tfg_tips/faqs#dried_fruit)Π―ΠΊ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ закваску?$()\n$(li)$(l:tfg_tips/faqs#dried_fruit)Π―ΠΊ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π²ΠΎΠ»ΠΎΠΊΠ½ΠΎ Π· ананаса?$()\n$(li)$(l:tfg_tips/faqs#jam)Π―ΠΊ ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Π΄ΠΆΠ΅ΠΌ?$()\n$(li)$(l:tfg_tips/faqs#resin)Π―ΠΊ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π³ΡƒΠΌΡƒ?$()\n$(li)$(l:tfg_tips/faqs#chunks)Π―ΠΊ примусово Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ Ρ‡Π°Π½ΠΊ Π°Π±ΠΎ Π·Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ Π»Ρ–ΠΌΡ–Ρ‚?$()" + "text": "$(li)$(l:tfg_tips/faqs#boats)Π§ΠΎΠΌΡƒ ΠΌΡ–ΠΉ Ρ‡ΠΎΠ²Π΅Π½ ΠΏΠΎΡ‚ΠΎΠ½ΡƒΠ²?$()\n$(li)$(l:tfg_tips/faqs#dried_fruit)Π―ΠΊ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ закваску?$()\n$(li)$(l:tfg_tips/faqs#dried_fruit)Π―ΠΊ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π²ΠΎΠ»ΠΎΠΊΠ½ΠΎ Π· ананаса?$()$()\n$(li)$(l:tfg_tips/faqs#resin)Π―ΠΊ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π³ΡƒΠΌΡƒ?$()\n$(li)$(l:tfg_tips/faqs#chunks)Π―ΠΊ примусово Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ Ρ‡Π°Π½ΠΊ Π°Π±ΠΎ Π·Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ Π»Ρ–ΠΌΡ–Ρ‚?$()" }, { "type": "patchouli:text", @@ -24,11 +24,6 @@ "anchor": "dried_fruit", "text": "$(italic)Π―ΠΊ ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Π΄Ρ€Ρ–ΠΆΠ΄ΠΆΠΎΠ²Ρƒ закваску Π°Π±ΠΎ ананасову ΠΊΠ»Ρ–Ρ‚ΠΊΠΎΠ²ΠΈΠ½Ρƒ?$()$(br2)Обов'язково спочатку Π²ΠΈΡΡƒΡˆΡ–Ρ‚ΡŒ Ρ„Ρ€ΡƒΠΊΡ‚ΠΈ, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ $(item)Π‘ΡƒΡˆΠΈΠ»ΡŒΠ½ΠΈΠΉ ΠΊΠΈΠ»ΠΈΠΌΠΎΠΊ$(). ΠŸΠΎΡ‚Ρ–ΠΌ Π²ΠΈΠΊΠΎΠ½Π°ΠΉΡ‚Π΅ Ρ€Π΅ΡˆΡ‚Ρƒ ΠΊΡ€ΠΎΠΊΡ–Π² для $(l:firmalife/bread)Ρ…Π»Ρ–Π±Ρƒ$() Π°Π±ΠΎ $(l:firmalife/berry_bushes)ананасової ΡˆΠΊΡ–Ρ€ΠΈ$()." }, - { - "type": "patchouli:text", - "anchor": "jam", - "text": "$(italic)Π―ΠΊ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π΄ΠΆΠ΅ΠΌ?$()$(br2)\nΠΠ°ΠΉΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠ΅ β€” Π·Π° допомогою $(l:firmalife/oven_appliances#vat)Ρ‡Π°Π½Ρƒ$(). Π”ΠΎΡ‚Ρ€ΠΈΠΌΡƒΠΉΡ‚Π΅ΡΡŒ ΠΊΡ€ΠΎΠΊΡ–Π² Ρ–Π· Ρ†ΡŒΠΎΠ³ΠΎ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ, Π°Π»Π΅ Π²Π°ΠΌ Π½Π΅ обов’язково Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ $(thing)ΡΡ‚Π°Π½Ρ†Ρ–ΡŽ для консСрвування$() Ρ‡ΠΈ $(thing)ΠΊΡ€ΠΈΡˆΠΊΠΈ$(), якщо Π½Π΅ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΡƒΠ²Π°Ρ‚ΠΈ процСс. ΠŸΡ€ΠΎΡΡ‚ΠΎ ΠΊΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ– ΠΏΠΎ Ρ‡Π°Π½Ρƒ Π· $(thing)Ρ„Ρ€ΡƒΠΊΡ‚ΠΎΠ²ΠΎΡŽ Ρ€Ρ–Π΄ΠΈΠ½ΠΎΡŽ$(), Ρ‚Ρ€ΠΈΠΌΠ°ΡŽΡ‡ΠΈ ΠΏΠΎΡ€ΠΎΠΆΠ½ΡŽ Π±Π°Π½ΠΊΡƒ, ΠΏΠΎΡ‚Ρ–ΠΌ ΠΊΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ Ρ‰Π΅ Ρ€Π°Π·, Ρ‰ΠΎΠ± дістати Ρ—Ρ— β€” Ρ– Π²ΠΎΠ½Π° Π±ΡƒΠ΄Π΅ повною Π΄ΠΆΠ΅ΠΌΡƒ Ρ‚Π° Π·Π°ΠΏΠ΅Ρ‡Π°Ρ‚Π°Π½ΠΎΡŽ.$(br2)\nΠžΠ±ΠΎΠ²β€™ΡΠ·ΠΊΠΎΠ²ΠΎ $(bold)Π·Π°ΠΊΡ€ΠΈΠΉΡ‚Π΅ ΠΊΡ€ΠΈΡˆΠΊΡƒ$() Π½Π° Ρ‡Π°Π½Ρ–, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚Π°Π²ΡˆΠΈ $(item)$(k:sneak)$() + $(item)$(k:use)$()!" - }, { "type": "patchouli:text", "anchor": "chunks", @@ -37,7 +32,7 @@ { "type": "patchouli:text", "anchor": "resin", - "text": "$(italic)Π―ΠΊ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π³ΡƒΠΌΡƒ?$()$(br2)КлСйка смола Π±Ρ–Π»ΡŒΡˆΠ΅ Π½Π΅ Ρ‚Π΅, Ρ‰ΠΎ Ρ‚ΠΎΠ±Ρ– ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ! Π‘ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ вирости ΠΊΡ–Π»ΡŒΠΊΠ° Π΄Π΅Ρ€Π΅Π², Ρ‰ΠΎ Π²ΠΈΡ€ΠΎΠ±Π»ΡΡŽΡ‚ΡŒ $(thing)латСкс$(), Ρ– Π·Ρ€ΠΎΠ±ΠΈ ΠΊΡ–Π»ΡŒΠΊΠ° $(thing)CΠΎΠΊΠΎΠ·Π±Ρ–Ρ€Π½ΠΈΠΊΡ–Π²$(). Встанови сокозбірник Π½Π° стовбур ΠΊΠΎΠΆΠ½ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π° (Π±Ρ–Π»ΡŒΡˆΠ΅ сокозбірників Π½Π° ΠΎΠ΄Π½ΠΎΠΌΡƒ Π΄Π΅Ρ€Π΅Π²Ρ– лишС Ρ€ΠΎΠ·ΠΏΠΎΠ΄Ρ–Π»ΡΡŽΡ‚ΡŒ Π²ΠΈΡ…Ρ–Π΄). Π—Ρ–Π±Ρ€Π°Π½ΠΈΠΉ латСкс ΠΌΠΎΠΆΠ½Π° Π·Π±ΠΈΡ€Π°Ρ‚ΠΈ Π·Π° допомогою $(tfc:mechanics/barrels)Π”Ρ–ΠΆΠΊΠΈ$()." + "text": "$(italic)Π―ΠΊ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π³ΡƒΠΌΡƒ?$()$(br2)КлСйка смола Π±Ρ–Π»ΡŒΡˆΠ΅ Π½Π΅ Ρ‚Π΅, Ρ‰ΠΎ Ρ‚ΠΎΠ±Ρ– ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ! Π‘ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ вирости ΠΊΡ–Π»ΡŒΠΊΠ° Π΄Π΅Ρ€Π΅Π², Ρ‰ΠΎ Π²ΠΈΡ€ΠΎΠ±Π»ΡΡŽΡ‚ΡŒ $(thing)латСкс$(), Ρ– Π·Ρ€ΠΎΠ±ΠΈ ΠΊΡ–Π»ΡŒΠΊΠ° $(thing)CΠΎΠΊΠΎΠ·Π±Ρ–Ρ€Π½ΠΈΠΊΡ–Π²$(). Встанови сокозбірник Π½Π° стовбур ΠΊΠΎΠΆΠ½ΠΎΠ³ΠΎ Π΄Π΅Ρ€Π΅Π²Π° (Π±Ρ–Π»ΡŒΡˆΠ΅ сокозбірників Π½Π° ΠΎΠ΄Π½ΠΎΠΌΡƒ Π΄Π΅Ρ€Π΅Π²Ρ– лишС Ρ€ΠΎΠ·ΠΏΠΎΠ΄Ρ–Π»ΡΡŽΡ‚ΡŒ Π²ΠΈΡ…Ρ–Π΄). Π—Ρ–Π±Ρ€Π°Π½ΠΈΠΉ латСкс ΠΌΠΎΠΆΠ½Π° Π·Π±ΠΈΡ€Π°Ρ‚ΠΈ Π·Π° допомогою $(l:mechanics/barrels)Π”Ρ–ΠΆΠΊΠΈ$()." }, { "type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_tips/space_crops.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_tips/space_crops.json index 232167ded..7b4872ac3 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_tips/space_crops.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_tips/space_crops.json @@ -564,7 +564,7 @@ "betterend:blossom_berry_product": 6, "betterend:bolux_mushroom_seeds": 8, "betterend:bolux_mushroom_product": 8, - "betterend:cave_pumpkin_seeds": 10, + "betterend:cave_pumpkin_plant_seeds": 10, "betterend:cave_pumpkin": 10, "betterend:chorus_mushroom_seeds": 12, "betterend:chorus_mushroom_product": 12, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/beneath.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/beneath.json new file mode 100644 index 000000000..7a8d7f1ed --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/beneath.json @@ -0,0 +1,6 @@ +{ + "name": "δΈ‹η•Œβ€¦β€¦οΌŸ", + "description": "ε…³δΊŽεΉ½ε†₯δΉ‹εœ°ηš„δΈ€εˆ‡", + "icon": "minecraft:netherrack", + "sortnum": 10 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/roadsandroofs.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/roadsandroofs.json new file mode 100644 index 000000000..ed6658a28 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/roadsandroofs.json @@ -0,0 +1,6 @@ +{ + "name": "ι“θ·―δΈŽε±‹ι‘Ά", + "description": "ι“θ·―δΈŽε±‹ι‘Άζ‰©ε±•ζ¨‘η»„δ½Ώη”¨ζŒ‡ε—", + "icon": "rnr:metal/mattock/bismuth_bronze", + "sortnum": 19 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/sacks_n_such.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/sacks_n_such.json new file mode 100644 index 000000000..23baf34b0 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/sacks_n_such.json @@ -0,0 +1,6 @@ +{ + "name": "蒋纳百物", + "description": "ε…³δΊŽθ’‹ηΊ³η™Ύη‰©οΌˆSacks 'N SuchοΌ‰δ½ ιœ€θ¦ηŸ₯ι“ηš„δΈ€εˆ‡γ€‚", + "icon": "sns:textures/item/icon/leather_sack.png", + "sortnum": 3 +} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/tfcchannelcasting.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/tfcchannelcasting.json new file mode 100644 index 000000000..69ee29aa8 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/tfcchannelcasting.json @@ -0,0 +1,6 @@ +{ + "name": "桇注道铸造", + "description": "ε…³δΊŽζ΅‡ζ³¨ι“ι“Έι€ ι™„εŠ ε†…εΉοΌŒε…θΈδ½ ε°†ε©εŸšδΈ­ηš„ι‡‘ε±žεŒζ—Άζ΅‡ζ³¨εˆ°ε€šδΈͺ樑具。", + "icon": "tfcchannelcasting:channel", + "sortnum": 60 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/tfg_ores.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/tfg_ores.json new file mode 100644 index 000000000..bb93a1095 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/tfg_ores.json @@ -0,0 +1,6 @@ +{ + "name": "TFGηŸΏη‰©", + "description": "TFGζ•΄εˆεŒ…ι‡‡η”¨η‹¬η‰Ήηš„ηŸΏθ„‰η”Ÿζˆη³»η»ŸοΌŒη±»δΌΌηΎ€ε³¦δΌ θ―΄ηš„ηŸΏθ„‰η”ŸζˆζœΊεˆΆβ€”β€”ε€§θ€Œη¨€ζœ‰ηš„ηŸΏθ„‰οΌŒδ½†ζ―δΈͺηŸΏθ„‰δΌšδΊ§ε‡Ίε€šη§ηŸΏη‰©γ€‚ζœ¬η« ε°†εˆ—ε‡Ίζ‰€ζœ‰ηŸΏθ„‰η±»εž‹εŠε…Άεˆ†εΈƒεŒΊεŸŸγ€‚$(br2)ηŸΏθ„‰δ»₯ε…Άζœ€δΈ»θ¦ηš„ηŸΏηŸ³ε‘½εοΌŒδ½†ε€§ε€šζ•°ηŸΏθ„‰εŒ…ε«3-5η§ηŸΏη‰©γ€‚$(br2)ε¦θ―·ε‚ι˜…οΌš$(l:the_world/geology)地质学$(),$(l:getting_started/finding_ores)ηŸΏηŸ³γ€ι‡‘ε±žε’Œι“Έι€ $()", + "icon": "tfc:ore/pyrite", + "sortnum": 60 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/tfg_tips.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/tfg_tips.json new file mode 100644 index 000000000..ce07b0c0f --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/categories/tfg_tips.json @@ -0,0 +1,6 @@ +{ + "name": "TFG提瀺与说明", + "description": "介绍TerraFirmaGregζ•΄εˆεŒ…δΈŽεŽŸη‰ˆηΎ€ε³¦δΌ θ―΄ε’Œζ Όι›·η§‘ζŠ€ηš„δΈεŒδΉ‹ε€„γ€‚", + "icon": "tfg:terra_firma_greg", + "sortnum": 200 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/arborfirmacraft/making_rubber.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/arborfirmacraft/making_rubber.json new file mode 100644 index 000000000..1fee277bb --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/arborfirmacraft/making_rubber.json @@ -0,0 +1,49 @@ +{ + "name": "倄理乳胢", + "category": "tfc:arborfirmacraft", + "icon": "gtceu:sticky_resin", + "pages": [ + { + "type": "patchouli:text", + "text": "ηœ‹ζ₯δ½ ε·²η»ι€šθΏ‡ι‡‡ι›†η‰Ήεšηš„ηƒ­εΈ¦ζ ‘ζœ¨θŽ·εΎ—δΊ†δΊ›$(thing)δΉ³θƒΆ$()β€¦β€¦ζ­ε–œοΌδΉ³θƒΆζœ¬θΊ«η”¨ι€”ζœ‰ι™οΌŒδ½†ι€šθΏ‡εŠ ε·₯ε€„η†ζˆ‘δ»¬ε―δ»₯εΎ—εˆ°θΈε€šιžεΈΈζœ‰η”¨ηš„ε‰―产品!$(br2)ε¦‚ζžœδ½ θΏ˜ζ²‘ζ‰Ύεˆ°θƒ½δΊ§ε‡ΊδΉ³θƒΆηš„ζ ‘ζœ¨οΌŒε―δ»₯ζŸ₯ηœ‹$(l:arborfirmacraft/tapping_index)ι‡‡ι›†ζŒ‡ε—$()村η›θŽ·ε–ζ›΄ε€šδΏ‘息!" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:sticky_resin", + "title": "一种黏稠物质", + "link_recipe": true, + "text": "$(thing)δΉ³θƒΆ$()ηš„δΈ€η§η”¨ι€”ζ˜―η”ŸδΊ§$(item)黏性树脂$()γ€‚ι»ζ€§ζ ‘θ„‚ιœ€θ¦εœ¨$(l:firmalife/oven_appliances#vat)δΈι”ˆι’’ι”…$()ζˆ–$(l:mechanics/pot)ι™Άι”…$()中加ε…₯$(thing)θ‰ζœ¨η°$()ζ₯ε‡ε›ΊδΉ³θƒΆεˆΆζˆγ€‚" + }, + { + "type": "patchouli:spotlight", + "title": "ι»ζ€§η”Ÿζ„", + "item": "gtceu:resin_circuit_board,gtceu:resistor,gtceu:basic_tape", + "text": "$(thing)黏性树脂$()η”¨ι€”ε€šζ ·οΌŒε› δΈΊεƒιžεΈΈι»θ…»γ€‚εƒε―δ»₯用ζ₯刢作倚δΈͺη‰©ε“οΌŒζ―”ε¦‚$(item)θƒΆεΈ¦$()可δ»₯移动η±ε­θ€ŒδΈδΌšζŽ‰θ½ε†…εΉη‰©οΌ›ζ›΄ι‡θ¦ηš„ζ˜―,εƒθΏ˜θƒ½εšζˆ$(item)θ¦†θ†œη”΅θ·―εŸΊζΏ$()ε’Œ$(item)η”΅ι˜»$()β€”β€”θΏ™δΊ›ζ˜―δ½ ζœ€ζ—©ζœŸηš„η”΅ε­ε…ƒδ»Άγ€‚" + }, + { + "type": "patchouli:spotlight", + "item": "tfg:vulcanized_latex_bucket", + "title": "ζˆ‘ζ˜―ζ©‘θƒΆβ€¦β€¦", + "text": "$(thing)δΉ³θƒΆ$()ηš„ε¦δΈ€δΈ»θ¦η”¨ι€”ζ˜―εˆΆι€ ζ©‘θƒΆγ€‚δΈΊδΊ†θ©δΉ³θƒΆζ›΄εΌΊιŸ§γ€ι€‚εˆε·₯δΈšη”¨ι€”οΌŒιœ€ε°†ε…ΆεŠ ηƒ­οΌˆδ½Ώη”¨ $(l:firmalife/oven_appliances#vat)δΈι”ˆι’’ι”…$()ζˆ–$(l:mechanics/pot)ι™Άι”…$()οΌ‰οΌŒεΉΆεŠ ε…₯$(thing)瑫磺粉$()刢成$(thing)η‘«εŒ–δΉ³θƒΆ$()。这δΈͺθΏ‡η¨‹ζœ¬θΊ«ε«εšβ€œη‘«εŒ–β€οΌ" + }, + { + "type": "patchouli:spotlight", + "title": "提取", + "item": "gtceu:raw_rubber_dust", + "text": "使用$(thing)ζε–ζœΊ$()ζˆ–$(thing)ηœŸη©Ίθ…”ε€$(),可δ»₯ε°†$(thing)η‘«εŒ–δΉ³θƒΆ$()εΉ²η‡₯δΈΊ$(item)η”Ÿζ©‘θƒΆζœ«$()γ€‚θΏ™η§η²‰ζœ«θΏ˜ιœ€εœ¨$(thing)εˆι‡‘η‚‰$()中与$(thing)瑫磺粉$()δΈ€θ΅·ε€„η†οΌŒζ‰θƒ½εˆΆζˆ$(thing)橑胢村$()。" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:rubber_ingot", + "text": "$(thing)橑胢村$()εΊ”η”¨εΉΏζ³›οΌŒδΎ‹ε¦‚η”¨δΊŽεˆΆδ½œε·₯εŽ‚η”¨ηš„$(thing)传送带$(),δ»₯εŠζœ€ι‡θ¦ηš„οΌšη”¨δΊŽ$(bold)绝缘$()$(thing)η”΅ηΊΏ$()γ€‚η»ηΌ˜η”΅ηΊΏε―ε‰ε…¨θ§¦η’°δΈ”ε‡ε°‘η”΅εŽ‹ζŸθ€—γ€‚" + }, + { + "type": "patchouli:spotlight", + "title": "松脂", + "item": "tfg:conifer_pitch_bucket", + "text": "ι»ζ€§ζ ‘θ„‚δΉŸε―δ»₯δ»Žη‰Ήεšηš„$(thing)ι’ˆεΆζΎζ ‘$()δΈ­θŽ·ε–οΌŒδΈθΏ‡θΏ™δΊ›ζ ‘ζ— ζ³•η”¨ζ₯εšζ©‘θƒΆγ€‚" + } + ], + "read_by_default": true, + "sortnum": 3 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/arborfirmacraft/tapping_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/arborfirmacraft/tapping_index.json new file mode 100644 index 000000000..5c381ef5d --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/arborfirmacraft/tapping_index.json @@ -0,0 +1,160 @@ +{ + "name": "ι‡‡ι›†ζŒ‡ε—", + "category": "tfc:arborfirmacraft", + "icon": "afc:wood/sapling/weeping_maple", + "read_by_default": true, + "pages": [ + { + "type": "patchouli:text", + "text": "θΏ™ζ˜―δΈ–η•ŒδΈ­ζ‰€ζœ‰ε―ι‡‡ι›†ζ ‘ζœ¨ηš„εˆ—θ‘¨οΌŒζŒ‰ε­—ζ―ι‘ΊεΊζŽ’εˆ—γ€‚$(br)$(thing)ζ°”ε€™ζ•°ζ$() 会显瀺θ―₯ζ ‘ι€‚εˆη”Ÿι•Ώηš„ζΈ©εΊ¦ε’Œι™ι›¨θŒƒε›΄οΌŒ$(thing)采集数ζ$() εˆ™θ―΄ζ˜Žε…ΆδΊ§ι‡γ€ζ΅ι€ŸεŠζ˜―ε¦δ»…ζ˜₯倩产出。" + }, + { + "type": "patchouli:text", + "text": "$(l:arborfirmacraft/tapping_index#maple)$(li)ζž«ζ ‘$()$(l:arborfirmacraft/tapping_index#birch)$(li)白摦树$()$(l:arborfirmacraft/tapping_index#hevea)$(li)三叢胢树$()$(l:arborfirmacraft/tapping_index#rubber_fig)$(li)ζ©‘θƒΆζ— θŠ±ζžœζ ‘$()$(l:arborfirmacraft/tapping_index#kapok)$(li)ζœ¨ζ£‰ζ ‘$()$(l:arborfirmacraft/tapping_index#aspen)$(li)山杨树$()$(l:arborfirmacraft/tapping_index#spruce)$(li)云杉树$()$(l:arborfirmacraft/tapping_index#white_cedar)$(li)η™½ι›ͺ松树$()$(l:arborfirmacraft/tapping_index#douglas_fir)$(li)θŠ±ζ——ζΎζ ‘$()" + }, + { + "type": "patchouli:spotlight", + "anchor": "maple", + "title": "ζž«ζ ‘", + "item": "tfc:wood/log/maple,tfc:wood/wood/maple,tfc:wood/leaves/maple,tfc:wood/sapling/maple", + "link_recipe": false, + "text": "$(bold)ζ°”ε€™ζ•°ζ$()$(br)$(thing)ζœ€δ½ŽζΈ©εΊ¦$(): -8.4Β°C$(br)$(thing)ζœ€ι«˜ζΈ©εΊ¦$(): 8Β°C$(br)$(thing)ζœ€δ½Žι™ι›¨ι‡$(): 240$(br)$(thing)ζœ€ι«˜ι™ι›¨ι‡$(): 470$(br2)$(bold)采集数ζ$()$(br)$(thing)ζœ€δ½ŽδΊ§ε‡ΊζΈ©εΊ¦$(): -15Β°C$(br)$(thing)ζœ€ι«˜δΊ§ε‡ΊζΈ©εΊ¦$(): 5Β°C$(br)$(thing)ζ˜₯ε­£η‰Ήζœ‰$(): 否$(br)$(thing)ζ΅ι€Ÿ$(): 5mb" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/tapping_index/maple_tree.png" + ], + "text": "$(thing)产出物$(): ζž«ζ ‘ζ±$(br)$(thing)加ε·₯产物$(): ζž«η³–", + "border": true + }, + { + "type": "patchouli:spotlight", + "anchor": "birch", + "title": "白摦树", + "item": "tfc:wood/log/birch,tfc:wood/wood/birch,tfc:wood/leaves/birch,tfc:wood/sapling/birch", + "link_recipe": false, + "text": "$(bold)ζ°”ε€™ζ•°ζ$()$(br)$(thing)ζœ€δ½ŽζΈ©εΊ¦$(): -12.1Β°C$(br)$(thing)ζœ€ι«˜ζΈ©εΊ¦$(): 6.1Β°C$(br)$(thing)ζœ€δ½Žι™ι›¨ι‡$(): 125$(br)$(thing)ζœ€ι«˜ι™ι›¨ι‡$(): 310$(br2)$(bold)采集数ζ$()$(br)$(thing)ζœ€δ½ŽδΊ§ε‡ΊζΈ©εΊ¦$(): -15Β°C$(br)$(thing)ζœ€ι«˜δΊ§ε‡ΊζΈ©εΊ¦$(): 5Β°C$(br)$(thing)ζ˜₯ε­£η‰Ήζœ‰$(): 否$(br)$(thing)ζ΅ι€Ÿ$(): 5mb" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/tapping_index/birch_tree.png" + ], + "text": "$(thing)产出物$(): 摦树汁$(br)$(thing)加ε·₯产物$(): 摦糖", + "border": true + }, + { + "type": "patchouli:spotlight", + "anchor": "hevea", + "title": "三叢胢树", + "item": "afc:wood/log/hevea,afc:wood/wood/hevea,afc:wood/leaves/hevea,afc:wood/sapling/hevea", + "link_recipe": false, + "text": "$(bold)ζ°”ε€™ζ•°ζ$()$(br)$(thing)ζœ€δ½ŽζΈ©εΊ¦$(): 17.1Β°C$(br)$(thing)ζœ€ι«˜ζΈ©εΊ¦$(): 26.2Β°C$(br)$(thing)ζœ€δ½Žι™ι›¨ι‡$(): 390$(br)$(thing)ζœ€ι«˜ι™ι›¨ι‡$(): 500$(br2)$(bold)采集数ζ$()$(br)$(thing)ζœ€δ½ŽδΊ§ε‡ΊζΈ©εΊ¦$(): 8Β°C$(br)$(thing)ζœ€ι«˜δΊ§ε‡ΊζΈ©εΊ¦$(): N/A$(br)$(thing)ζ˜₯ε­£η‰Ήζœ‰$(): 否$(br)$(thing)ζ΅ι€Ÿ$(): 3mb" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/tapping_index/hevea_tree.png" + ], + "text": "$(thing)产出物$(): δΉ³θƒΆ$(br)$(thing)加ε·₯产物$(): 黏性树脂 & ζ©‘θƒΆ", + "border": true + }, + { + "type": "patchouli:spotlight", + "anchor": "rubber_fig", + "title": "ζ©‘θƒΆζ— θŠ±ζžœζ ‘", + "item": "afc:wood/log/rubber_fig,afc:wood/wood/rubber_fig,afc:wood/leaves/rubber_fig,afc:wood/sapling/rubber_fig", + "link_recipe": false, + "text": "$(bold)ζ°”ε€™ζ•°ζ$()$(br)$(thing)ζœ€δ½ŽζΈ©εΊ¦$(): 9.8Β°C$(br)$(thing)ζœ€ι«˜ζΈ©εΊ¦$(): 20.7Β°C$(br)$(thing)ζœ€δ½Žι™ι›¨ι‡$(): 290$(br)$(thing)ζœ€ι«˜ι™ι›¨ι‡$(): 400$(br2)$(bold)采集数ζ$()$(br)$(thing)ζœ€δ½ŽδΊ§ε‡ΊζΈ©εΊ¦$(): 4Β°C$(br)$(thing)ζœ€ι«˜δΊ§ε‡ΊζΈ©εΊ¦$(): N/A$(br)$(thing)ζ˜₯ε­£η‰Ήζœ‰$(): 否$(br)$(thing)ζ΅ι€Ÿ$(): 2mb" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/tapping_index/rubber_fig_tree.png" + ], + "text": "$(thing)产出物$(): δΉ³θƒΆ$(br)$(thing)加ε·₯产物$(): 黏性树脂 & ζ©‘θƒΆ", + "border": true + }, + { + "type": "patchouli:spotlight", + "anchor": "kapok", + "title": "ζœ¨ζ£‰ζ ‘", + "item": "tfc:wood/log/kapok,tfc:wood/wood/kapok,tfc:wood/leaves/kapok,tfc:wood/sapling/kapok", + "link_recipe": false, + "text": "$(bold)ζ°”ε€™ζ•°ζ$()$(br)$(thing)ζœ€δ½ŽζΈ©εΊ¦$(): 17.1Β°C$(br)$(thing)ζœ€ι«˜ζΈ©εΊ¦$(): 38Β°C$(br)$(thing)ζœ€δ½Žι™ι›¨ι‡$(): 320$(br)$(thing)ζœ€ι«˜ι™ι›¨ι‡$(): 500$(br2)$(bold)采集数ζ$()$(br)$(thing)ζœ€δ½ŽδΊ§ε‡ΊζΈ©εΊ¦$(): 12Β°C$(br)$(thing)ζœ€ι«˜δΊ§ε‡ΊζΈ©εΊ¦$(): N/A$(br)$(thing)ζ˜₯ε­£η‰Ήζœ‰$(): 否$(br)$(thing)ζ΅ι€Ÿ$(): 4mb" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/tapping_index/kapok_tree.png" + ], + "text": "$(thing)产出物$(): δΉ³θƒΆ$(br)$(thing)加ε·₯产物$(): 黏性树脂 & ζ©‘θƒΆ", + "border": true + }, + { + "type": "patchouli:spotlight", + "anchor": "aspen", + "title": "山杨树", + "item": "tfc:wood/log/aspen,tfc:wood/wood/aspen,tfc:wood/leaves/aspen,tfc:wood/sapling/aspen", + "link_recipe": false, + "text": "$(bold)ζ°”ε€™ζ•°ζ$()$(br)$(thing)ζœ€δ½ŽζΈ©εΊ¦$(): -15.7Β°C$(br)$(thing)ζœ€ι«˜ζΈ©εΊ¦$(): -1.1Β°C$(br)$(thing)ζœ€δ½Žι™ι›¨ι‡$(): 350$(br)$(thing)ζœ€ι«˜ι™ι›¨ι‡$(): 500$(br2)$(bold)采集数ζ$()$(br)$(thing)ζœ€δ½ŽδΊ§ε‡ΊζΈ©εΊ¦$(): -10Β°C$(br)$(thing)ζœ€ι«˜δΊ§ε‡ΊζΈ©εΊ¦$(): N/A$(br)$(thing)ζ˜₯ε­£η‰Ήζœ‰$(): 否$(br)$(thing)ζ΅ι€Ÿ$(): 2mb" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/tapping_index/aspen_tree.png" + ], + "text": "$(thing)产出物$(): 松脂$(br)$(thing)加ε·₯产物$(): 黏性树脂 & 松香", + "border": true + }, + { + "type": "patchouli:spotlight", + "anchor": "spruce", + "title": "云杉树", + "item": "tfc:wood/log/spruce,tfc:wood/wood/spruce,tfc:wood/leaves/spruce,tfc:wood/sapling/spruce", + "link_recipe": false, + "text": "$(bold)ζ°”ε€™ζ•°ζ$()$(br)$(thing)ζœ€δ½ŽζΈ©εΊ¦$(): -17.5Β°C$(br)$(thing)ζœ€ι«˜ζΈ©εΊ¦$(): -6.6Β°C$(br)$(thing)ζœ€δ½Žι™ι›¨ι‡$(): 220$(br)$(thing)ζœ€ι«˜ι™ι›¨ι‡$(): 470$(br2)$(bold)采集数ζ$()$(br)$(thing)ζœ€δ½ŽδΊ§ε‡ΊζΈ©εΊ¦$(): -10Β°C$(br)$(thing)ζœ€ι«˜δΊ§ε‡ΊζΈ©εΊ¦$(): N/A$(br)$(thing)ζ˜₯ε­£η‰Ήζœ‰$(): 否$(br)$(thing)ζ΅ι€Ÿ$(): 4mb" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/tapping_index/spruce_tree.png" + ], + "text": "$(thing)产出物$(): 松脂$(br)$(thing)加ε·₯产物$(): 黏性树脂 & 松香", + "border": true + }, + { + "type": "patchouli:spotlight", + "anchor": "white_cedar", + "title": "η™½ι›ͺ松树", + "item": "tfc:wood/log/white_cedar,tfc:wood/wood/white_cedar,tfc:wood/leaves/white_cedar,tfc:wood/sapling/white_cedar", + "link_recipe": false, + "text": "$(bold)ζ°”ε€™ζ•°ζ$()$(br)$(thing)ζœ€δ½ŽζΈ©εΊ¦$(): -15.7Β°C$(br)$(thing)ζœ€ι«˜ζΈ©εΊ¦$(): 0.7Β°C$(br)$(thing)ζœ€δ½Žι™ι›¨ι‡$(): 100$(br)$(thing)ζœ€ι«˜ι™ι›¨ι‡$(): 285$(br2)$(bold)采集数ζ$()$(br)$(thing)ζœ€δ½ŽδΊ§ε‡ΊζΈ©εΊ¦$(): -8Β°C$(br)$(thing)ζœ€ι«˜δΊ§ε‡ΊζΈ©εΊ¦$(): N/A$(br)$(thing)ζ˜₯ε­£η‰Ήζœ‰$(): 否$(br)$(thing)ζ΅ι€Ÿ$(): 3mb" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/tapping_index/white_cedar_tree.png" + ], + "text": "$(thing)产出物$(): 松脂$(br)$(thing)加ε·₯产物$(): 黏性树脂 & 松香", + "border": true + }, + { + "type": "patchouli:spotlight", + "anchor": "douglas_fir", + "title": "θŠ±ζ——ζΎζ ‘", + "item": "tfc:wood/log/douglas_fir,tfc:wood/wood/douglas_fir,tfc:wood/leaves/douglas_fir,tfc:wood/sapling/douglas_fir", + "link_recipe": false, + "text": "$(bold)ζ°”ε€™ζ•°ζ$()$(br)$(thing)ζœ€δ½ŽζΈ©εΊ¦$(): -15.7Β°C$(br)$(thing)ζœ€ι«˜ζΈ©εΊ¦$(): 6.1Β°C$(br)$(thing)ζœ€δ½Žι™ι›¨ι‡$(): 305$(br)$(thing)ζœ€ι«˜ι™ι›¨ι‡$(): 500$(br2)$(bold)采集数ζ$()$(br)$(thing)ζœ€δ½ŽδΊ§ε‡ΊζΈ©εΊ¦$(): -8Β°C$(br)$(thing)ζœ€ι«˜δΊ§ε‡ΊζΈ©εΊ¦$()): N/A$(br)$(thing)ζ˜₯ε­£η‰Ήζœ‰$(): 否$(br)$(thing)ζ΅ι€Ÿ$(): 2mb" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/tapping_index/douglas_fir_tree.png" + ], + "text": "$(thing)产出物$(): 松脂$(br)$(thing)加ε·₯产物$(): 黏性树脂 & 松香", + "border": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/arborfirmacraft/tree_tapping.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/arborfirmacraft/tree_tapping.json new file mode 100644 index 000000000..471273ea0 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/arborfirmacraft/tree_tapping.json @@ -0,0 +1,36 @@ +{ + "name": "树汁采集", + "category": "tfc:arborfirmacraft", + "icon": "afc:tree_tap", + "pages": [ + { + "type": "patchouli:text", + "text": "ζŸδΊ›ζ ‘ζœ¨ε―δ»₯蒫采集δ»₯θŽ·ε–ζœ‰η”¨ηš„ζ΅δ½“γ€‚θΏ™δΊ›ζ ‘ζœ¨ε―δΊ§ε‡Ίε«η³–ζ ‘ζΆ²οΌˆε―ζ΅“ηΌ©δΈΊη³–ζ΅†η”¨δ½œη”œε‘³ε‰‚οΌ‰γ€δΉ³θƒΆοΌˆε―εŠ ε·₯ζˆζ©‘θƒΆοΌ‰ζˆ–ζ ‘θ„‚οΌˆε―εŠ ε·₯ζˆζΎι¦™δ½œδΈΊθœ‘ζ›Ώδ»£ε“οΌ‰γ€‚" + }, + { + "type": "patchouli:image", + "title": "θŽ·ε–ζž«ζ ‘ζ ‘ζ±", + "images": [ + "afc:textures/gui/book/maple_tapping.png" + ], + "border": true + }, + { + "type": "patchouli:text", + "text": "ι‡‡ι›†ζ ‘ζ±ιœ€θ¦δΈ‰ζ ·δΈœθ₯ΏοΌšζ ‘ζœ¨ζœ¬θΊ«γ€δΈ€εͺ树汁导η‘οΌˆιœ€η”¨ι“œι”­ζ‰“ι€ εΉΆε‰θ£…εœ¨θ‡³ε°‘δΈ‰ζ Όι«˜ζ ‘εΉ²ηš„δΈ­ιƒ¨οΌ‰οΌŒδ»₯εŠδΈ€δΈͺζ‘ΆοΌˆεΏ…ι‘»ζ­£ε―Ήε―Όη‘δΈ‹ζ–Ήγ€ζœδΈŠζ”Ύη½οΌ‰γ€‚θ‹₯ζ‘δ»Άεˆι€‚οΌŒζ‘ΆδΌšη«‹εˆ»εΌ€ε§‹ζ³¨ζ»‘ζ ‘ζ±γ€‚" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/tree_tapping/tapping_kapok.png" + ], + "text": "δΈ€δΈͺζœ‰ζ•ˆηš„ι…η½οΌšη”¨δΊŽδ»Žζœ¨ζ£‰ζ ‘中提取乳胢", + "border": true + } + ], + "read_by_default": true, + "sortnum": 1, + "extra_recipe_mappings": { + "afc:tree_tap": 0 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/beneath.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/beneath.json new file mode 100644 index 000000000..c73a6b953 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/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/zh_cn/entries/beneath/biomes.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/biomes.json new file mode 100644 index 000000000..7d8cf133c --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/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/zh_cn/entries/beneath/cooling.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/cooling.json new file mode 100644 index 000000000..119603107 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/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 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/curious_blocks.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/curious_blocks.json new file mode 100644 index 000000000..73f70cb95 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/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/zh_cn/entries/beneath/hellforge.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/hellforge.json new file mode 100644 index 000000000..07f3d8f10 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/hellforge.json @@ -0,0 +1,50 @@ +{ + "name": "εœ°η‹±η†”η‚‰", + "category": "tfc:beneath", + "icon": "beneath:cursecoal", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)εœ°η‹±η†”η‚‰$() ζ˜―δΈ€δΈͺθΆ…ε€§θ§„ζ¨‘ηš„η‚‰ε­οΌŒε…·ε€‡ι«˜η‡ƒζ–™εΉι‡γ€δΊ§η‰©δΊ§θƒ½ε’ŒεŠ ηƒ­ζ•ˆηŽ‡γ€‚εƒη”±εœ°η‹±η –、$(l:beneath/ores_and_minerals#cursecoal)ζ— ηƒŸη…€$() ε’ŒθΎ‰ηŸ³ε²©εΌ•ζ°΄ζ‘₯ζž„ζˆγ€‚" + }, + { + "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": "εœ°η‹±η†”η‚‰", + "text": "", + "enable_visualize": false + }, + { + "type": "patchouli:text", + "text": "εœ°η‹±η†”η‚‰ιœ€θ¦εœ¨ε››δΈͺθ§’ηš„εΌ•ζ°΄ζ‘₯中桁ε…₯ε²©ζ΅†οΌŒδ»₯及 21 ε—εœ°η‹±η –γ€‚δΈ­ι—΄ηš„ 3x3 εŒΊεŸŸεΏ…ι‘»ε‘«ζ»‘ $(l:beneath/ores_and_minerals#cursecoal)ζ— ηƒŸη…€ε †$()οΌŒη‚Ήη«εŽε³ε―ε―εŠ¨η†”η‚‰γ€‚" + }, + { + "type": "patchouli:text", + "text": "εœ°η‹±η†”η‚‰ηš„η‰©ε“ζ§½δ½ε―ζ”Ύη½η‡ƒζ–™ζˆ–εΎ…ε†Άη‚Όηš„η‰©ε“οΌ›ζ²‘ζœ‰εŒΊεˆ«γ€‚ε°εΏƒζ”Ύι”™δΈœθ₯ΏοΌθΏ˜ζœ‰η†”η‚Όζ§½οΌŒε¦‚εŒζœ¨η‚­η‚‰δΈ€θˆ¬δ½Ώη”¨γ€‚ε±εΉ•δΈŠηš„ε²©ζ΅†θ‘ι‡θ‘¨θ‘¨η€ΊζΈ©εΊ¦οΌˆεŒζ—Άε―ι€šθΏ‡η‰©ε“εœ¨δΈ–η•ŒδΈ­ηš„η§»εŠ¨ε―θ§†εŒ–οΌ‰γ€‚" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/ores_and_minerals.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/ores_and_minerals.json new file mode 100644 index 000000000..94983723f --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/ores_and_minerals.json @@ -0,0 +1,76 @@ +{ + "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/zh_cn/entries/beneath/piglins.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/piglins.json new file mode 100644 index 000000000..1e117dc9a --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/piglins.json @@ -0,0 +1,40 @@ +{ + "name": "ηŒͺ灡", + "category": "tfc:beneath", + "icon": "minecraft:gold_ingot", + "pages": [ + { + "type": "patchouli:text", + "title": "ηŒͺη΅δΊ€ζ˜“", + "text": "εƒδ½ ι’„ζœŸι‚£ζ ·οΌŒδ½ ε―δ»₯用 $(item)金锭$() 与 $(thing)ηŒͺ灡$() θΏ›θ‘ŒδΊ€ζ˜“οΌŒζ–ΉεΌδΈŽεŽŸη‰ˆη›ΈεŒγ€‚" + }, + { + "type": "patchouli:entity", + "entity": "minecraft:piglin", + "scale": 0.9, + "name": "ηŒͺ灡", + "text": "你可δ»₯在幽ε†₯δΉ‹εœ°ε‡ δΉŽζ‰€ζœ‰η”Ÿη‰©ηΎ€η³»δΈ­ζ‰Ύεˆ°ηŒͺ灡。" + }, + { + "type": "patchouli:text", + "title": "δΊ€ζ˜“δΊ§η‰©", + "text": "$(li)1 ι“œι”­$(li)1 ι”‘ι”­$(li)1 ι“Άι”­$(li)1 ι’ι“œι”­$(li)1 ι“‹ι’ι“œι”­$(li)1 铸铁锭$(li)1 ι”Œι”­$(li)1 ι»„ι“œι”­$(li)1 ι“‹ι”­$(li)1 镍锭$(li)1 ζœ±η ‚εηŸ³" + }, + { + "type": "patchouli:text", + "text": "$(li)4-6 瑫磺粉$(li)1-2 ηšι©$(li)6-12 ηΊΏ$(li)6-12 δΈ‹η•ŒηŸ³θ‹±$(li)12-18 ζ‘ƒθŠ±εΏƒζœ¨ζ$(li)6-8 ζ‘ƒθŠ±εΏƒζœ¨εŽŸζœ¨$(li)4-6 η†ŸιΉΏθ‚‰$(li)4-6 ι¬Όζ€’$(li)4-6 火药$(li)4-8 ζœ¨η‚­$(li)6-12 η­ηŸ’$(li)6-12 εŠ©η„Šε‰‚$(li)8-12 θΎ‰ηŸ³ε²©η –$(li)8-12 ζ··εˆε²©η –$(li)8-16 木棍" + }, + { + "type": "patchouli:text", + "title": "ε ‘εž’ι—θΏΉ", + "text": "ζŽ ε€ΊδΈ€δΈͺ $(thing)ε ‘εž’ι—θΏΉ$() ε―θƒ½ε±ι™©οΌŒδ½†ε›žζŠ₯δΉŸεΎˆδΈ°εŽšοΌδ½ θƒ½θŽ·εΎ—ε¦‚δΈ‹η‰©ε“οΌš$(li)ι‡‘γ€ηŽ«η‘°ι‡‘γ€η”Ÿι“γ€ι»‘ι’ι“œε’Œι“Άι”­$(li)ι»‘ι’ι“œζ­¦ε™¨γ€ε·₯ε…·ε’ŒζŠ€η”²$(li)ι«˜ε²­εœŸε’ŒηŸ³ε’¨$(li)永久光源$(li)布料、ηšι©γ€η§ε­ε’Œι£Ÿη‰©$(li)δ»₯εŠε…Άδ»–εθ—οΌ" + }, + { + "type": "patchouli:spotlight", + "item": "tfg:piglin_disguise", + "title": "ηŒͺ灡δΌͺθ£…", + "text": "ε¦‚ζžœδ½ εΈŒζœ›ι‘Ίεˆ©δΊ€ζ˜“οΌŒζˆ–θ€…ε•ηΊ―ζƒ³θžε…₯ε½“εœ°β€¦β€¦ζˆ΄δΈŠ $(thing)ηŒͺ灡δΌͺθ£…$() 可避免ηŒͺη΅δΈ€εΌ€ε§‹ε―Ήδ½ ζ•Œε―Ήγ€‚δ½†ζ³¨ζ„οΌεƒδ»¬εΉεΏζœ‰ι™β€¦β€¦" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/unposter.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/unposter.json new file mode 100644 index 000000000..6f149ccdb --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/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/zh_cn/entries/beneath/water.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/water.json new file mode 100644 index 000000000..59bb3b763 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/beneath/water.json @@ -0,0 +1,21 @@ +{ + "name": "δΏζŒζ°΄εˆ†", + "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/zh_cn/entries/firmaciv/beneath.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/firmaciv/beneath.json new file mode 100644 index 000000000..bcaf258e9 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/firmaciv/beneath.json @@ -0,0 +1,37 @@ +{ + "name": "εΉ½ε†₯δΉ‹εœ°", + "category": "tfc:firmaciv", + "icon": "beneath:wood/sapling/crimson", + "flag": "mod:beneath", + "read_by_default": true, + "sortnum": 100, + "pages": [ + { + "type": "patchouli:text", + "text": "在火星ι₯θΏœηš„θΎΉη–†οΌŒδ½ ε―δ»₯ζ‰Ύεˆ°η»―ηΊ’ζœ¨ε’Œθ―‘εΌ‚ζœ¨οΌŒη”¨ζ₯ε»Ίι€ η›Έε½“δΈι”™ηš„$(l:firmaciv/watercraft)船$()。" + }, + { + "type": "patchouli:empty" + }, + { + "type": "patchouli:spotlight", + "title": "软木", + "text": "θ½―ζœ¨ηš„ζœ¨θ΄¨ε’Œζ ‘ηšθΆ³ε€ŸζŸ”θ½―οΌŒιžεΈΈι€‚εˆεˆΆδ½œ$(l:firmaciv/canoe)η‹¬ζœ¨θˆŸ$()。", + "item": "beneath:wood/stripped_log/crimson" + }, + { + "type": "patchouli:text", + "text": "$(li)绯纒木$()" + }, + { + "type": "patchouli:spotlight", + "title": "瑬木", + "text": "瑬木δ»₯ε…Άε“θΆŠηš„εšε›Ίζ€§θ‘—η§°οΌŒζ˜―ε»Ίι€ ζ›΄ε€§γ€ζ›΄η²Ύε―†θˆΉεͺηš„η†ζƒ³ι€‰ζ‹©οΌŒδΎ‹ε¦‚$(l:firmaciv/rowboat)εˆ’θ‰‡$()ε’Œ$(l:firmaciv/sloop)ε•ζ‘…ηΊ΅εΈ†θˆΉ$()。", + "item": "beneath:wood/planks/warped" + }, + { + "type": "patchouli:text", + "text": "$(li)θ―‘εΌ‚ζœ¨$()" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/firmalife/irrigation.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/firmalife/irrigation.json new file mode 100644 index 000000000..b6ff7aa0f --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/firmalife/irrigation.json @@ -0,0 +1,28 @@ +{ + "name": "ηŒζΊ‰", + "category": "tfc:firmalife", + "icon": "firmalife:sprinkler", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)喷洒器$() ζ˜―δΈ€η§ε―ε‘ε…ΆδΈ‹ζ–Ή 5Γ—6Γ—5 θŒƒε›΄ε†…ε‡εŒ€ε–·ζ°΄ηš„θ£…η½γ€‚当εƒεΌ€ε§‹ζ»΄θ½ζ°΄η²’ε­ζ—ΆοΌŒθ―΄ζ˜Žζ­£εœ¨ε·₯δ½œγ€‚ζœδΈŠηš„ε–·ζ΄’ε™¨δΌšηŒζΊ‰ε…ΆδΈŠζ–ΉεŒζ ·ε€§ε°ηš„εŒΊεŸŸγ€‚" + }, + { + "type": "tfc:anvil_recipe", + "recipe": "firmalife:anvil/sprinkler", + "text": "喷洒器由一块 $(thing)ι“œζΏ$() εˆΆζˆγ€‚" + }, + { + "title": "η‘ι“η³»η»Ÿ", + "item": "gtceu:copper_tiny_fluid_pipe", + "type": "patchouli:spotlight", + "text": "ε–·ζ΄’ε™¨εΏ…ι‘»θΏžζŽ₯εˆ°δΈ€ε₯—δΎ›ζ°΄η‘道才能ε·₯δ½œγ€‚θΏ™ι€šθΏ‡ε°†δΈ€η³»εˆ— $(thing)桁体η‘道$() 连ζŽ₯εˆ°ε–·ζ΄’ε™¨εžηŽ°γ€‚δ½ ε―δ»₯用 $(thing)εŠ¨εŠ›ζ³΅$() ε‘ε…ΆδΈ­εŠ ζ°΄γ€‚" + }, + { + "type": "patchouli:text", + "text": "你可δ»₯右ι”点击η‘ι“εΉΆδ½Ώη”¨ζ Όι›·η§‘ζŠ€ηš„ζ‘†ζžΆοΌˆε¦‚ $(thing)ι“œζ‘†ζžΆ$()οΌ‰δ½Ώε…ΆδΈŽε’™ι’ι½εΉ³οΌŒζˆ–δ½Ώη”¨ζΈ©ε€ζŽ₯ε£γ€‚δΉ‹εŽε³ε―η›΄ζŽ₯将喷洒器ζŽ₯在η‘ι“δΈŠοΌη”¨ζ‰³ζ‰‹ε³ι”η‘ι“ε―θ°ƒζ•΄ζ–Ήε‘οΌŒζŒ‰δ½ Shift εΉΆ$(thing)空手$()右ι”可θΎη½δΈΊε•ε‘ζ΅εŠ¨γ€‚" + } + ], + "read_by_default": true, + "sortnum": 8 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/finding_ores.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/finding_ores.json new file mode 100644 index 000000000..880cc04ff --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/finding_ores.json @@ -0,0 +1,109 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "ηŸΏηŸ³γ€ι‡‘ε±žε’Œι“Έι€ ", + "category": "tfc:getting_started", + "icon": "tfc:ore/normal_native_copper", + "pages": [ + { + "type": "patchouli:text", + "text": "ι™€δΊ†εœ°δΈŠηš„ι‚£δΊ›ζœ¨ζ£γ€ζ ‘ζžε’Œε°ηŸ³ε­οΌŒδ½ ε―θƒ½θΏ˜ι‡εˆ°θΏ‡ζ•£θ½εœ¨εœ°θ‘¨ηš„ε°ηŸΏη²’γ€‚ε€šζ”Άι›†δΈ€η‚Ήε§οΌŒεœ¨δ½ θŽ·εΎ—ι•δΉ‹ε‰οΌŒθΏ™ζ˜―δ½ θŽ·εΎ—ηŸΏηŸ³ε’Œι‡‘ε±žδΈΊζ•°δΈε€šηš„ζ–Ήζ³•δΉ‹δΈ€γ€‚" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + " ", + " 0 ", + " " + ], + [ + "ABCD", + "EFGH", + "IJKL" + ], + [ + "XXXX", + "XXXX", + "XXXX" + ] + ], + "mapping": { + "X": "tfc:grass/loam", + "A": "tfc:ore/small_native_copper", + "B": "tfc:ore/small_native_gold", + "C": "tfc:ore/small_hematite", + "D": "tfc:ore/small_native_silver", + "E": "tfc:ore/small_cassiterite", + "F": "tfc:ore/small_bismuthinite", + "G": "tfc:ore/small_garnierite", + "H": "tfc:ore/small_malachite", + "I": "tfc:ore/small_magnetite", + "J": "tfc:ore/small_limonite", + "K": "tfc:ore/small_sphalerite", + "L": "tfc:ore/small_tetrahedrite" + } + }, + "name": "", + "text": "ζ―η§δΈεŒηš„ε°ηŸΏη²’", + "enable_visualize": false + }, + { + "type": "patchouli:text", + "text": "θΏ™δΊ›ε°ηŸΏη²’δΈδ»…δΈΊδ½ ζδΎ›δΊ†ζ—©ζœŸη”Ÿε­˜θ‡³ε…³ι‡θ¦ηš„ι‡‘ε±žη΄ ζοΌŒεƒδ»¬θΏ˜ζη€Ίδ½ εƒδ»¬ι™„θΏ‘ηš„ζ΅…θ‘¨ε±‚ε²©ηŸ³δΈ­ε―θƒ½ε­˜εœ¨ε€§εž‹ηŸΏθ„‰γ€‚η•™εΏƒζ ‡θ°δ½ ε‘ηŽ°θΏ™δΊ›ε°ηŸΏη²’ηš„δ½η½οΌŒθΏ™δΊ›δΏ‘息等你δ»₯εŽζœ‰δΊ†$(l:mechanics/prospecting)ε‹˜ηŸΏι•$()δΉ‹εŽδΌšεΎˆζœ‰η”¨ηš„γ€‚$(br2)δΈ‹δΈ€ι‘΅δΌšδ»‹η»θΏ™δΈͺδΈ–η•ŒδΈ­ηš„ηš„εδΊŒη§ηŸΏη²’ε’Œδ»–δ»¬ζ‰€ε―ΉεΊ”ηš„ι‡‘ε±žγ€‚" + }, + { + "type": "patchouli:text", + "text": "$(li)εŽŸη”Ÿι“œη²’οΌˆ$(thing)ι“œ$()οΌ‰$(li)εŽŸη”Ÿι‡‘η²’οΌˆ$(thing)金$()οΌ‰$(li)θ΅€ι“ηŸΏη²’οΌˆ$(thing)铸铁$()οΌ‰$(li)εŽŸη”Ÿι“Άη²’οΌˆ$(thing)ι“Ά$()οΌ‰$(li)ι”‘ηŸ³η²’οΌˆ$(thing)ι”‘$()οΌ‰$(li)θΎ‰ι“‹ηŸΏη²’οΌˆ$(thing)ι“‹$()οΌ‰$(li)η»Ώι•ηŸΏη²’οΌˆ$(thing)镍$()οΌ‰$(li)ε­”ι›€ηŸ³η²’οΌˆ$(thing)ι“œ$()οΌ‰$(li)η£ι“ηŸΏη²’οΌˆ$(thing)铸铁$()οΌ‰$(li)θ€ι“ηŸΏη²’οΌˆ$(thing)铸铁$()οΌ‰$(li)ι—ͺι”ŒηŸΏη²’οΌˆ$(thing)ι”Œ$()οΌ‰$(li)ι»ι“œηŸΏη²’οΌˆ$(thing)ι“œ$()οΌ‰", + "title": "ε°ηŸΏηŸ³η²’" + }, + { + "type": "patchouli:text", + "anchor": "casting", + "text": "在羀峦传说中,每δΈͺηŸΏηŸ³εŒ…ε«ηš„εžι™…ι‡‘ε±žηš„$(thing)单位$()($(thing)mBοΌˆδΉŸε°±ζ˜―ζ―«ζ‘ΆοΌ‰$()οΌ‰ζ˜―δΈεŒηš„γ€‚εƒθΏ™ζ ·εœ¨εœ°θ‘¨ε‘ηŽ°ηš„ε°ηŸΏη²’θ΄¨ι‡ζœ€δ½ŽοΌŒεͺ能提供 $(thing)10 mB$() ηš„ι‡‘ε±žγ€‚δΈΊδΊ†ζε–θΏ™η§ι‡‘ε±žοΌŒιœ€θ¦ε°†ε…Άη†”εŒ–οΌŒεΉΆδ½Ώη”¨η§°δΈΊ$(thing)ι“Έι€ $()ηš„ε·₯θ‰ΊεˆΆζˆε·₯具。", + "title": "ι“Έι€ " + }, + { + "type": "patchouli:text", + "text": "εΌ€ε§‹δΉ‹ε‰οΌŒδ½ ιœ€θ¦ε‡†ε€‡οΌš$(br)$(li)δΈ€εͺ$(l:getting_started/pottery#vessel)小缸$()$(li)θΆ³ε€Ÿζ­ε»ΊδΈ€δΈͺ$(l:getting_started/pit_kiln)坑ηͺ‘$()ηš„ζζ–™γ€‚$(li)θ‹₯εΉ²δΈͺ用ζ₯ζ΅‡ι“Έι‡‘ε±žηš„$(l:getting_started/pottery#mold)樑具$()。$(li)ζœ€εŽοΌŒδΉŸζ˜―ζœ€ι‡θ¦ηš„οΌŒθ‡³ε°‘δ»·ε€Ό 100 mB ηš„ε―δ»₯用ζ₯ι“Έι€ ηš„ι‡‘ε±žηŸΏηŸ³γ€‚ζ—©ζœŸηš„θ―ε°±εͺζœ‰$(thing)ι“œ$()δΊ†οΌˆδΈ‰η§ι“œηŸΏηŸ³δΈ­ηš„δ»»ζ„δΈ€η§οΌŒζˆ–θ€…ζ··ζ­ιƒ½θ‘ŒοΌ‰γ€‚$(br2)$(italic)ε€‡ζ³¨οΌšε¦‚ζžœζζ–™θΆ³ε€ŸοΌŒδΉŸε―δ»₯η›΄ζŽ₯ι“Έι€ ζŸδΊ›$(l:getting_started/primitive_alloys)εˆι‡‘$()。" + }, + { + "type": "patchouli:text", + "text": "ι¦–ε…ˆοΌŒζ‰“εΌ€εΉΆε°†ζƒ³θ¦η†”εŒ–ηš„ηŸΏη²’ζ”ΎθΏ›$(thing)小缸$()中。θ°εΎ—δΈ€εšθ¦ζ•°ε₯½ι‡‘ε±žηš„ζ•°ι‡οΌε°ηΌΈζœ€ε€šεΉηΊ³ 3024 mB ζΆ²ζ€ι‡‘ε±žοΌŒθΆ…ε‡Ίιƒ¨εˆ†δΌšζŸε€±γ€‚η„ΆεŽοΌŒζŠŠθ£…ζœ‰ηŸΏη²’ηš„ε°ηΌΈζ”ΎθΏ›$(l:getting_started/pit_kiln)坑ηͺ‘$()δΈ­εΉΆη‚Ήη‡ƒγ€‚ηŸΏηŸ³δΌšιšη€ε°ηΌΈηš„ε‡ζΈ©θ€Œη†”εŒ–οΌŒη„ΆεŽδ½ ε°±εΎ—εˆ°δΊ†δΈ€ηΌΈζΆ²ζ€ι‡‘ε±žγ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "tfchotornot:crafting/tongs/wood", + "text": "ε°εΏƒοΌŒε°ηΌΈηŽ°εœ¨ιžεΈΈηƒ«οΌη”¨δΈ€ζ Ήζœ¨ζ£ε’ŒδΈ€ζŠŠεˆ€εˆΆδ½œ$(thing)ζœ¨ι’³ε­$()οΌŒθ£…ε€‡εœ¨ε‰―ζ‰‹δΈ­οΌŒζ‰θƒ½ε‰ε…¨ε€„η†ι«˜ζΈ©ηš„ε°ηΌΈγ€‚" + }, + { + "type": "patchouli:image", + "images": [ + "tfc:textures/gui/book/gui/casting.png" + ], + "text": "ζ‰‹ζŒε°ηΌΈεΉΆζŒ‰δΈ‹$(item)$(k:key.use)$()ζ₯打开$(thing)ι“Έι€ $()η•Œι’γ€‚", + "border": false + }, + { + "type": "patchouli:text", + "text": "ζŽ₯δΈ‹ζ₯,εͺθ¦ε°†ηƒ§εˆΆε₯½ηš„ζ¨‘ε…·ζ”Ύεœ¨ε±εΉ•δΈ­ι—΄ηš„η©Ίζ Όε†…ε°±ε―δ»₯ε°†ζΆ²ζ€ι‡‘ε±žζ΅‡ι“ΈθΏ›ζ¨‘ε…·δΊ†γ€‚δΈ€εšθ¦θΆι‡‘ε±žθΏ˜ζ²‘ε‡ε›Ίζ—Άζ΅‡ι“Έγ€‚ε¦‚ζžœι‡‘ε±žε˜ε†·δΊ†ηš„θ―ε°±εͺ能再造一δΈͺ坑ηͺ‘ζŠŠεƒη†”εŒ–δΊ†οΌζ¨‘ε…·ζ³¨ζ»‘δΉ‹εŽε°±ε―δ»₯δ»Žε°ηΌΈδΈ­ζ‹Ώε‡Ίζ₯ε†·ε΄δΊ†γ€‚η­‰εΎ…ζ¨‘ε…·δΈ­ηš„ι‡‘ε±žε‡ε›ΊδΉ‹εŽοΌŒζ‰‹ζŒζ¨‘ε…·$(item)$(k:key.use)$()η‚Ήε‡»οΌŒζˆ–ε°†ζ¨‘ε…·ζ”Ύε…₯合成格中就可δ»₯ε°†ζˆε“ε–ε‡Ίγ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "gtceu:shaped/pickaxe_copper", + "text": "ηŽ°εœ¨δ½ ε­¦δΌšε¦‚δ½•ι“Έι€ ι‡‘ε±žε·₯ε…·δΊ†οΌŒζ₯ε°θ―•εšδΈ€ζŠŠι•ε§οΌεŽ»ζ”Άι›†ηŸΏη²’οΌŒεšδΈ€δΈͺι•ε€΄ζ¨‘ε…·οΌŒε†εœ¨ε‘ηͺ‘ι‡Œη†”εŒ–ηŸΏη²’εΉΆζ΅‡ι“Έεˆ°ζ¨‘ε…·ι‡ŒοΌŒζœ€εŽεŠ δΈŠδΈ€ζ Ήζœ¨ζ£ε°±ε₯½δΊ†οΌηŽ°εœ¨δ½ ε―δ»₯εŽ»ζŒ–$(l:tfg_ores/index)矿石$()了。" + }, + { + "type": "patchouli:spotlight", + "item": "tfc:metal/chisel/copper", + "text": "θΏ˜ζœ‰ε…Άδ»–ι‡θ¦ηš„ι‡‘ε±žε·₯具可供进展使用。$(l:mechanics/chisel)凿子$()ε―η”¨δΊŽηŸ³ζεŠ ε·₯,δ»₯ζ»‘θΆ³ε»Ίη­‘ιœ€ζ±‚εŠε…Άδ»–ι…ζ–Ήιœ€ζ±‚γ€‚" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:copper_saw", + "text": "ι”―ε­ε―η”¨δΊŽε°†εŽŸζœ¨εŠ ε·₯δΈΊ$(l:mechanics/support_beams)支撑撁$()ε’Œ$(thing)木材$()οΌŒθΏ›δΈ€ζ­₯ε―εˆΆζˆζœ¨ζΏγ€ε·₯δ½œε°γ€η±ε­η­‰γ€‚δΉŸε―用ζ₯ε»Ίι€ $(l:firmaciv/canoe)η‹¬ζœ¨θˆŸ$()。" + } + ], + "read_by_default": true, + "sortnum": 4 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/introduction.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/introduction.json new file mode 100644 index 000000000..bb5915fbf --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/introduction.json @@ -0,0 +1,168 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "第一倩", + "category": "tfc:getting_started", + "icon": "tfc:rock/loose/granite", + "pages": [ + { + "type": "patchouli:text", + "text": "εœ¨ηΎ€ε³¦δΌ θ―΄δΈ­οΌŒδ½ ζœ€εˆθƒ½θŽ·εΎ—ηš„θ΅„ζΊεͺζœ‰ι‚£δΊ›ζ•£θ½εœ¨εœ°δΈŠηš„ζœ¨ζ£γ€ζ ‘ζžγ€ε’Œε°ηŸ³ε­γ€‚ε‡ δΉŽζ‰€ζœ‰ζ°”ε€™δΈ­ιƒ½δΌšζœ‰θΏ™δΊ›θ΅„ζΊγ€‚δ½ ε―δ»₯ζŒ‰$(item)$(k:key.use)$()οΌŒζˆ–ζ‰“η ΄εƒδ»¬ζ₯把εƒδ»¬ζ‘θ΅·ζ₯。" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + "1 ", + " 2 4", + " 03 ", + " 4 ", + " 5" + ], + [ + "GGGGG", + "GGGGG", + "GGGGG", + "GGGGG", + "GGGGG" + ] + ], + "mapping": { + "G": "tfc:grass/sandy_loam", + "1": "tfc:rock/loose/granite[count=1]", + "2": "tfc:rock/loose/granite[count=2]", + "3": "tfc:rock/loose/granite[count=3]", + "4": "tfc:groundcover/stick", + "5": "tfc:wood/twig/ash" + } + }, + "name": "η€ΊδΎ‹", + "text": "δΈ€δΊ›ζ•£θ½ηš„ζœ¨ζ£ε’ŒηŸ³ε€΄γ€‚", + "enable_visualize": false + }, + { + "type": "patchouli:text", + "text": "ι™€δΊ†εœ¨εœ°δΈŠζ”Άι›†ζœ¨ζ£ε’Œε°ζ ‘ζžε€–οΌŒθΏ˜ε―δ»₯η©Ίζ‰‹ζ‰“η’Žζ ‘εΆζ₯θŽ·εΎ—ζœ¨ζ£γ€‚εœ¨δ½ ζ”Άι›†δΊ†δΈ€δΊ›ηŸ³ε€΄ε’Œζœ¨ζ£εŽοΌŒδ½ ε°±ε―δ»₯开始尝试$(thing)ζ‰“εˆΆηŸ³ε™¨$()δΊ†γ€‚ζ‰“εˆΆηŸ³ε™¨ζ˜―ε°†δΈ€ε—ηŸ³ε­δΊ’η›Έζ•²ε‡»δ»₯ε°†ε…ΆδΈ­δΈ€ε—ε‡Ώζˆη‰Ήεšε½’ηŠΆηš„θΏ‡η¨‹γ€‚ι¦–ε…ˆδ½ ηš„ζ‰‹δΈ­εΊ”θ‡³ε°‘ζ‘δ½δΈ€ε—ηŸ³ε­οΌŒη„ΆεŽε―Ήη€η©Ίζ°”ζŒ‰δΈ‹$(item)$(k:key.use)$()就能打开$(thing)ζ‰“εˆΆη•Œι’$()。" + }, + { + "type": "patchouli:image", + "images": [ + "tfc:textures/gui/book/gui/rock_knapping.png" + ], + "text": "ζ‰“εˆΆη•Œι’γ€‚", + "border": false + }, + { + "type": "patchouli:text", + "text": "ζƒ³θ¦ζ‰“εˆΆη‰Ήεšηš„η‰©ε“οΌŒε°±εΏ…ι‘»ι€šθΏ‡η‚Ήε‡»$(thing)ζ‰“εˆΆη•Œι’$()δΈŠηš„ζ­£ζ–Ήε½’ηŸ³η‰‡ζ₯ε‡ΏεŽ»δΈθ¦ηš„ιƒ¨εˆ†οΌŒη›΄εˆ°ε½’ζˆζ‰€ιœ€ηš„ε›Ύζ‘ˆγ€‚δΎ‹ε¦‚ε°†ηŸ³η‰‡ε‡Ώζˆε³δΎ§ζ˜Ύη€Ίηš„ε›Ύζ‘ˆε°±θƒ½εšζˆηŸ³εˆ€εˆƒγ€‚$(br2)δΈŽεˆζˆι…ζ–ΉδΈ€ζ ·οΌŒζ‰€ιœ€ε›Ύζ‘ˆηš„δ½η½ε―ΉθΎ“ε‡ΊεΉΆδΈι‡θ¦οΌŒεΉΆδΈ”δΈ€δΊ›ι…ζ–Ήε…·ζœ‰ε€šδΈͺζœ‰ζ•ˆηš„ε›Ύζ‘ˆγ€‚" + }, + { + "type": "tfc:rock_knapping_recipe", + "anchor": "knife", + "recipes": [ + "tfg:rock_knapping/stone_knife_head", + "tfg:rock_knapping/stone_knife_head_1", + "tfg:rock_knapping/stone_knife_head_2", + "tfg:rock_knapping/stone_knife_head_3" + ], + "text": "δΈ€ζŠŠηŸ³εˆ€εˆƒοΌŒη”¨ε„η§δΈεŒηš„ε²©ηŸ³ιƒ½ε―δ»₯εˆΆδ½œγ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "gtceu:shaped/knife_stone", + "text": "δ½Ώη”¨ζœ¨ζ£ζˆ–ε°ζ ‘ζžε―δ»₯ζŠŠδ»»ζ„ηš„ηŸ³εˆΆε·₯ε…·ε€΄η»„θ£…ζˆεŒζ•΄ηš„ε·₯具。$(br2)ηŸ³εˆ€ε―δ»₯破坏怍物ζ₯ζ”ΆθŽ·$(thing)干草$()。" + }, + { + "type": "tfc:rock_knapping_recipe", + "recipes": [ + "tfg:rock_knapping/stone_axe_head" + ], + "text": "$(thing)ζ–§$()可δ»₯η ε€’ζ•΄ζ£΅ζ ‘οΌŒεŒ…ζ‹¬ζ ‘εΉ²ε’Œζ ‘εΆγ€‚δ½†εͺζœ‰ε•η‹¬ζ‰“η’Žζ ‘εΆζ‰θƒ½θŽ·εΎ—ζ ‘θ‹—ε’Œζœ¨ζ£γ€‚" + }, + { + "type": "tfc:rock_knapping_recipe", + "recipes": [ + "tfg:rock_knapping/stone_shovel_head" + ], + "text": "$(thing)ι“²$()可δ»₯用ζ₯ζŒ–η±»δΌΌεœŸε£€ζθ΄¨ηš„ζ–Ήε—γ€‚ε―Ή$(thing)草方块$()ζˆ–$(thing)ζ³₯土$(item)使用$()ι“²ε­δΉŸε―δ»₯εˆΆι€ $(thing)εœŸεΎ„$()。" + }, + { + "type": "tfc:rock_knapping_recipe", + "recipes": [ + "tfg:rock_knapping/stone_hoe_head", + "tfg:rock_knapping/stone_hoe_head_1", + "tfg:rock_knapping/stone_hoe_head_2" + ], + "text": "$(thing)ι”„$()是$(l:mechanics/crops)ε†œθ€•$()δΈε―ζˆ–ηΌΊηš„ε·₯具。εƒδΉŸε―δ»₯ζΈ…η†ζ ‘εΆζˆ–ε…Άδ»–ζ€η‰©γ€‚" + }, + { + "type": "tfc:rock_knapping_recipe", + "recipes": [ + "tfg:rock_knapping/stone_hammer_head" + ], + "text": "$(thing)销$()可δ»₯ε½“δ½œζ­¦ε™¨δ½Ώη”¨οΌˆι€ ζˆ$(l:mechanics/damage_types)打击伀ε³$()οΌ‰οΌŒδ½†εƒζœ€δΈ»θ¦ηš„η”¨ι€”θΏ˜ζ˜―在$(l:getting_started/primitive_anvils)ε†Άι‡‘δΈš$()中。" + }, + { + "type": "tfc:rock_knapping_recipe", + "recipes": [ + "tfc:rock_knapping/javelin_head_sedimentary", + "tfc:rock_knapping/javelin_head_metamorphic", + "tfc:rock_knapping/javelin_head_igneous_extrusive", + "tfc:rock_knapping/javelin_head_igneous_intrusive" + ], + "text": "ζœ€εŽοΌŒ$(thing)ζ ‡ζžͺ$()ζ˜―δΈ€η§εŽŸε§‹ηš„δΈ€ζ¬‘ζ€§θΏœη¨‹ζ­¦ε™¨οΌŒδΉŸε―δ»₯ε½“δ½œθΏ‘ζˆ˜ζ­¦ε™¨δ½Ώη”¨οΌˆι€ ζˆ$(l:mechanics/damage_types)ηͺεˆΊδΌ€ε³$())。" + } + ], + "read_by_default": true, + "sortnum": 0, + "extra_recipe_mappings": { + "tfc:stone/knife_head/sedimentary": 5, + "tfc:stone/knife_head/metamorphic": 5, + "tfc:stone/knife_head/igneous_extrusive": 5, + "tfc:stone/knife_head/igneous_intrusive": 5, + "tfc:stone/knife/sedimentary": 5, + "tfc:stone/knife/metamorphic": 5, + "tfc:stone/knife/igneous_extrusive": 5, + "tfc:stone/knife/igneous_intrusive": 5, + "tfc:stone/axe_head/sedimentary": 7, + "tfc:stone/axe_head/metamorphic": 7, + "tfc:stone/axe_head/igneous_extrusive": 7, + "tfc:stone/axe_head/igneous_intrusive": 7, + "tfc:stone/axe/sedimentary": 7, + "tfc:stone/axe/metamorphic": 7, + "tfc:stone/axe/igneous_extrusive": 7, + "tfc:stone/axe/igneous_intrusive": 7, + "tfc:stone/shovel_head/sedimentary": 8, + "tfc:stone/shovel_head/metamorphic": 8, + "tfc:stone/shovel_head/igneous_extrusive": 8, + "tfc:stone/shovel_head/igneous_intrusive": 8, + "tfc:stone/shovel/sedimentary": 8, + "tfc:stone/shovel/metamorphic": 8, + "tfc:stone/shovel/igneous_extrusive": 8, + "tfc:stone/shovel/igneous_intrusive": 8, + "tfc:stone/hoe_head/sedimentary": 9, + "tfc:stone/hoe_head/metamorphic": 9, + "tfc:stone/hoe_head/igneous_extrusive": 9, + "tfc:stone/hoe_head/igneous_intrusive": 9, + "tfc:stone/hoe/sedimentary": 9, + "tfc:stone/hoe/metamorphic": 9, + "tfc:stone/hoe/igneous_extrusive": 9, + "tfc:stone/hoe/igneous_intrusive": 9, + "tfc:stone/hammer_head/sedimentary": 10, + "tfc:stone/hammer_head/metamorphic": 10, + "tfc:stone/hammer_head/igneous_extrusive": 10, + "tfc:stone/hammer_head/igneous_intrusive": 10, + "tfc:stone/hammer/sedimentary": 10, + "tfc:stone/hammer/metamorphic": 10, + "tfc:stone/hammer/igneous_extrusive": 10, + "tfc:stone/hammer/igneous_intrusive": 10, + "tfc:stone/javelin_head/sedimentary": 11, + "tfc:stone/javelin_head/metamorphic": 11, + "tfc:stone/javelin_head/igneous_extrusive": 11, + "tfc:stone/javelin_head/igneous_intrusive": 11, + "tfc:stone/javelin/sedimentary": 11, + "tfc:stone/javelin/metamorphic": 11, + "tfc:stone/javelin/igneous_extrusive": 11, + "tfc:stone/javelin/igneous_intrusive": 11 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/primitive_alloys.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/primitive_alloys.json new file mode 100644 index 000000000..1f30078e7 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/primitive_alloys.json @@ -0,0 +1,76 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "εŽŸε§‹εˆι‡‘", + "category": "tfc:getting_started", + "icon": "tfc:ceramic/ingot_mold{tank:{\"Amount\":100,\"FluidName\":\"tfc:metal/bronze\"}}", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)εˆι‡‘$()ζ˜―ζŒ‡η”±δΈ€η§ζˆ–ζ›΄ε€šη§δΈεŒι‡‘ε±žζ··εˆθ€Œζˆηš„ζ›΄εΌΊηš„ι‡‘ε±žγ€‚ι“œεœ¨ζΈΈζˆζ—©ζœŸεΎˆεžη”¨οΌŒδ½†ζƒ³θ¦ε‘ε±•εˆ°δΈ‹δΈ€ηΊ§ζ–‡ζ˜ŽοΌŒε°±εΏ…ι‘»ζƒ³εŠžζ³•εšε‡Ί$(thing)ι’ι“œ$()γ€‚ε°†δΈεŒι‡‘ε±žζ··εˆεœ¨δΈ€θ΅·η†”εŒ–οΌŒεͺθ¦ζ‰€ζœ‰ζˆεˆ†ιƒ½ε€„δΊŽη‰ΉεšεŒΊι—΄ε†…ε°±θƒ½εšε‡Ίε―ΉεΊ”ηš„εˆι‡‘δΊ†οΌ" + }, + { + "type": "patchouli:text", + "text": "$(thing)小缸$()ζ˜―ζΈΈζˆζ—©ζœŸε”―δΈ€ε―δ»₯εˆΆδ½œεˆι‡‘ηš„ζ‰‹ζ΅γ€‚εˆΆδ½œεˆι‡‘ηš„ζ­₯ιͺ€ε’Œ$(l:getting_started/finding_ores#casting)ι“Έι€ $()εΎˆη›ΈδΌΌοΌŒε”―δΈ€ηš„εŒΊεˆ«ζ˜―θ¦εœ¨ε°ηΌΈδΈ­ζ··εˆζ”Ύη½ε€šη§δΈεŒηš„ι‡‘ε±žθ€ŒδΈδ»…δ»…ζ˜―ι“œγ€‚εͺθ¦ε°ηΌΈδΈ­ηš„ε‡ η§ι‡‘ε±žζ―”δΎ‹ιƒ½δ½δΊŽε―ζŽ₯ε—θŒƒε›΄ε†…οΌŒη†”εŒ–ζ‰€εΎ—ηš„ι‡‘ε±žε°±δΌšθ‡ͺεŠ¨θ½¬εŒ–δΈΊεˆι‡‘γ€‚" + }, + { + "type": "patchouli:text", + "text": "δΎ‹ε¦‚οΌŒθ¦εˆζˆ 1000 mB ηš„$(thing)ι’ι“œ$()οΌˆε³δΎ§ζ‰€η€ΊοΌ‰οΌŒδ½ ιœ€θ¦εŠ ε…₯ 700~800 mB ηš„$(thing)ι“œ$()δ»₯及 200~300 mB ηš„$(thing)ι”‘$()。$(br2)ζŽ₯δΈ‹ζ₯ηš„ε‡ ι‘΅ε±•η€ΊδΊ†δΈ‰η§δΈεŒηš„ι“œεˆι‡‘γ€‚ζ―η§ι“œεˆι‡‘ιƒ½ε―δ»₯做成ε·₯具、$(l:mechanics/armor)η›”η”²$()γ€ε’Œε…Άδ»–ι‡‘ε±žη‰©ε“οΌŒδ½†εƒδ»¬ηš„θ€δΉ…εΊ¦γ€ζ•ˆηŽ‡γ€ε’ŒδΌ€ε³ζœ‰δΊ›εΎε°ηš„ε·εΌ‚。" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:bronze_ingot", + "title": "ι’ι“œ", + "link_recipes": false, + "text": "$(br)$(bold)村仢:$()$(br)$(li)70 - 80 %:$(thing)ι“œ$()$(li)20 - 30 %:$(thing)ι”‘$()$(br2)" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:bismuth_bronze_ingot", + "title": "ι“‹ι’ι“œ", + "link_recipes": false, + "text": "$(br)$(bold)村仢:$()$(br)$(li)20 - 30 %:$(thing)ι”Œ$()$(li)50 - 65 %:$(thing)ι“œ$()$(li)10 - 20 %:$(thing)ι“‹$()$(br2)" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:black_bronze_ingot", + "title": "ι»‘ι’ι“œ", + "link_recipes": false, + "text": "$(br)$(bold)村仢:$()$(br)$(li)50 - 70 %:$(thing)ι“œ$()$(li)10 - 25 %:$(thing)ι“Ά$()$(li)10 - 25 %:$(thing)金$()$(br2)" + }, + { + "type": "patchouli:text", + "text": "θΏ˜ζœ‰δΈ€δΊ›ε…Άδ»–δΈι€‚εˆεˆΆζˆε·₯ε…·ηš„εˆι‡‘οΌŒζ―”ε¦‚$(thing)ι»„ι“œ$()、$(thing)ηŽ«η‘°ι‡‘$()ε’Œ$(thing)ηΊ―ι“Ά$()。$(br2)$(thing)ι»„ι“œ$()ηš„δΈ»θ¦δ½œη”¨ζ˜―εˆΆδ½œε„η§ε°θ£…η½οΌŒε¦‚$(l:mechanics/mechanical_power)ζœΊζ’°εŠ¨εŠ›$()。$(br2)$(thing)ηŽ«η‘°ι‡‘$()ε’Œ$(thing)ηΊ―ι“Ά$()εˆ™ζ˜―η†”η‚Ό$(l:mechanics/steel#red_steel)ηΊ’ι’’$()ε’Œ$(l:mechanics/steel#blue_steel)蓝钒$()ζ—ΆεΏ…ι‘»ηš„εŽŸζ–™γ€‚", + "title": "εŠŸθƒ½ζ€§εˆι‡‘" + }, + { + "type": "patchouli:spotlight", + "anchor": "brass", + "item": "create:brass_ingot", + "title": "ι»„ι“œ", + "link_recipes": false, + "text": "$(br)$(bold)ι…ζ–Ήθ¦ζ±‚οΌš$()$(br)$(li)70 - 80 %:$(thing)ι“œ$()$(li)20 - 30 %:$(thing)ι”Œ$()$(br2)" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:rose_gold_ingot", + "title": "ηŽ«η‘°ι‡‘", + "link_recipes": false, + "text": "$(br)$(bold)村仢:$()$(br)$(li)15 - 30 % : $(thing)ι“œ$()$(li)70 - 85 % : $(thing)金$()$(br2)" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:sterling_silver_ingot", + "title": "ηΊ―ι“Ά", + "link_recipes": false, + "text": "$(br)$(bold)村仢:$()$(br)$(li)20 - 40 % : $(thing)ι“œ$()$(li)60 - 80 % : $(thing)ι“Ά$()$(br2)" + } + ], + "read_by_default": true, + "sortnum": 5, + "extra_recipe_mappings": { + "gtceu:bronze_ingot": 3, + "gtceu:bismuth_bronze_ingot": 4, + "gtceu:black_bronze_ingot": 5, + "create:brass_ingot": 7 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/primitive_anvils.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/primitive_anvils.json new file mode 100644 index 000000000..3d09b9f8a --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/getting_started/primitive_anvils.json @@ -0,0 +1,237 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "εŽŸε§‹η §", + "category": "tfc:getting_started", + "icon": "tfc:rock/anvil/granite", + "pages": [ + { + "type": "patchouli:text", + "text": "ι™€δΊ†εœ¨ζΈΈζˆεˆζœŸη›΄ζŽ₯桇铸ε·₯ε…·ε€–οΌŒδ½Ώη”¨$(thing)η §$()ι”»ι€ ι‡‘ε±žδΉŸζ˜―ε¦δΈ€η§ι€‰ζ‹©οΌŒεŒζ—Άζ›΄ζ˜―εŠ ε·₯ι«˜ηΊ§ι‡‘ε±žηš„εΏ…θ¦ζ‘δ»Άγ€‚η §θƒ½η”¨δΊŽδΈ€η§δΈεŒε·₯θ‰ΊοΌš$(l:mechanics/anvils#working)ι”»ι€ $()ε’Œ$(l:mechanics/anvils#welding)η„ŠζŽ₯$()γ€‚η §ε―ε°†ζ‰€ιœ€ι‡‘ε±žηš„εŒι”­η„ŠζŽ₯ζˆζ›΄ι«˜δΈ€ηΊ§ηš„η §οΌŒθΏ™ζ˜―ε€„η†θ―₯ι‡‘ε±žε…Άδ»–η‰©ε“ηš„εΏ…θ¦ζ­₯ιͺ€γ€‚" + }, + { + "type": "patchouli:text", + "text": "ι¦–ε…ˆοΌŒδ½ εΎ—ζ‰Ύεˆ°δΈ€ε—$(thing)ε€©η„Άηš„$()$(thing)喷出岩$() οΌˆζ΅ηΊΉε²©γ€ηŽ„ζ­¦ε²©γ€ε‰ε±±ε²©γ€ζˆ–θ‹±ε‰ε²©οΌ‰ζˆ–$(thing)δΎ΅ε…₯岩$()οΌˆθŠ±ε²—ε²©γ€ι—ͺι•Ώε²©γ€ζˆ–θΎ‰ι•Ώε²©οΌ‰γ€‚δ½ ε―δ»₯η›΄ζŽ₯δ½Ώη”¨ζš΄ιœ²εœ¨εœ°θ‘¨ηš„ι‚£δΊ›οΌŒζˆ–θ€…δΉŸε―δ»₯把εƒδ»¬δ»Žε²©ε£δΈŠ$(l:getting_started/primitive_anvils#raw_rock)采下ζ₯$()。" + }, + { + "type": "patchouli:text", + "anchor": "stone_anvils", + "text": "δ½ θΏ˜ιœ€θ¦δΈ€ζŠŠδ»»ζ„ζζ–™εˆΆζˆηš„$(thing)销$()γ€‚θ¦ζŠŠε²©ηŸ³ε˜ζˆη §οΌŒζ‰‹ζŒ$(thing)销$()右ι”点击兢$(thing)鑢青$()即可。$(br2)η §ζ˜―ζœ‰δΈεŒ$(l:mechanics/anvils#tiers)η­‰ηΊ§$()ηš„γ€‚ηŸ³η §ηš„η­‰ηΊ§ζ˜― 0 - δΉŸε°±ζ˜―ζœ€δ½Žη­‰ηΊ§γ€‚εƒεͺ能用ζ₯$(l:mechanics/anvils#welding)η„ŠζŽ₯$() 1 ηΊ§ηš„ι‡‘ε±žι”­γ€‚", + "title": "石砧" + }, + { + "type": "tfc:multimultiblock", + "text": "ε°†δΈ­ι—΄ι‚£ε—ε²©ηŸ³δ½œδΈΊηŸ³η §γ€‚", + "multiblocks": [ + { + "pattern": [ + [ + " 0 " + ], + [ + "RRR" + ] + ], + "mapping": { + "0": "AIR", + "R": "tfc:rock/raw/gabbro" + } + }, + "tfc:rock_anvil" + ] + }, + { + "type": "patchouli:text", + "anchor": "raw_rock", + "text": "ζƒ³θ¦θŽ·εΎ—δΈ€ε—ε€©η„Άηš„ε²©ηŸ³οΌŒη›΄ζŽ₯η”¨ι•ζŒ–ζ˜―δΈθ‘Œηš„γ€‚ε”―δΈ€ηš„ζ–Ήζ³•ζ˜―ε°†ε…Άε…­ι’ζ‰€η›Έι‚»ηš„ζ–Ήε—ιƒ½ζŒ–ζŽ‰οΌŒ $(thing)悬空$()ηš„ε²©ηŸ³ε°±δΌšζŽ‰θ½ε…Άζœ¬δ½“δΊ†γ€‚", + "title": "θŽ·εΎ—ε€©η„Άε²©ηŸ³" + }, + { + "type": "tfc:multimultiblock", + "text": "ζŒ–ζŽ‰δΈ€ε—ε€©η„Άε²©ηŸ³ηš„ζ‰€ζœ‰ε…­δΈͺ邻青——εŒζˆεŽοΌŒδΈ­εΏƒε—ε°†δ½œδΈΊη‰©ε“ζŽ‰θ½γ€‚", + "multiblocks": [ + { + "pattern": [ + [ + " ", + " R ", + " " + ], + [ + " R ", + "RRR", + " R " + ], + [ + " ", + " 0 ", + " " + ] + ], + "mapping": { + "0": "tfc:rock/raw/gabbro", + "R": "tfc:rock/raw/gabbro" + } + }, + { + "pattern": [ + [ + " ", + " ", + " " + ], + [ + " R ", + "RRR", + " R " + ], + [ + " ", + " 0 ", + " " + ] + ], + "mapping": { + "0": "tfc:rock/raw/gabbro", + "R": "tfc:rock/raw/gabbro" + } + }, + { + "pattern": [ + [ + " ", + " ", + " " + ], + [ + " ", + "RRR", + " R " + ], + [ + " ", + " 0 ", + " " + ] + ], + "mapping": { + "0": "tfc:rock/raw/gabbro", + "R": "tfc:rock/raw/gabbro" + } + }, + { + "pattern": [ + [ + " ", + " ", + " " + ], + [ + " ", + " RR", + " R " + ], + [ + " ", + " 0 ", + " " + ] + ], + "mapping": { + "0": "tfc:rock/raw/gabbro", + "R": "tfc:rock/raw/gabbro" + } + }, + { + "pattern": [ + [ + " ", + " ", + " " + ], + [ + " ", + " RR", + " " + ], + [ + " ", + " 0 ", + " " + ] + ], + "mapping": { + "0": "tfc:rock/raw/gabbro", + "R": "tfc:rock/raw/gabbro" + } + }, + { + "pattern": [ + [ + " ", + " ", + " " + ], + [ + " ", + " R ", + " " + ], + [ + " ", + " 0 ", + " " + ] + ], + "mapping": { + "0": "tfc:rock/raw/gabbro", + "R": "tfc:rock/raw/gabbro" + } + }, + { + "pattern": [ + [ + " ", + " ", + " " + ], + [ + " ", + " R ", + " " + ], + [ + " ", + " 0 ", + " " + ] + ], + "mapping": { + "0": "AIR", + "R": "tfc:rock/raw/gabbro" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "welding", + "text": "η„ŠζŽ₯ζ˜―δΈ€η§ε°†δΈ€δΈͺη‰©ε“η†”εˆδΈΊζ–°η‰©ε“ηš„θΏ‡η¨‹γ€‚ζ— θΊζ˜―在$(l:getting_started/primitive_anvils)石砧$()还是$(l:mechanics/anvils)ι‡‘ε±žη §$()δΈŠιƒ½δΈ€ζ ·γ€‚$(br2)ι¦–ε…ˆοΌŒδ½ εΏ…ι‘»ε°†εΎ…η„ŠζŽ₯ηš„δΈ€δΈͺ物品放η½εœ¨η §δΈŠγ€‚ε―ι€šθΏ‡ζ‰‹ζŒη‰©ε“ε―Ήη §η‚Ήε‡»δ½Ώη”¨οΌŒζˆ–ζ‰“εΌ€η §ηš„ζ“δ½œη•Œι’ε°†ε…Άζ”Ύε…₯ζœ€ε·¦δΎ§ηš„δΈ€δΈͺ槽位中εŒζˆζ”Ύη½γ€‚", + "title": "η„ŠζŽ₯" + }, + { + "type": "patchouli:text", + "text": "ζ­€ε€–οΌŒη §ε†…ιœ€θ‡³ε°‘ε­˜ζ”ΎδΈ€δ»½$(l:mechanics/flux)εŠ©η„Šε‰‚$()δ»₯θΎ…εŠ©η„ŠζŽ₯过程。当一δΈͺη‰©ε“ε‡θΎΎεˆ°$(l:mechanics/heating)ε―η„ŠζŽ₯ζΈ©εΊ¦$()οΌˆζη€ΊδΏ‘ζ―ε°†ζ˜Ύη€Ίβ€œε―η„ŠζŽ₯β€οΌ‰ζ—ΆοΌŒη”¨δ»»ζ„$(thing)销$()ε‡»ζ‰“η §οΌŒζˆ–η‚Ήε‡»η §ζ“δ½œη•Œι’δΈ­ηš„η„ŠζŽ₯ζŒ‰ι’ε³ε―γ€‚ζ­€ζ—Άε°†δΌ ε‡Ίι”»ζ‰“ε£°ζ•ˆοΌŒη‰©ε“δΉŸιšδΉ‹η†”εˆδΈΊδΈ€δ½“γ€‚" + } + ], + "read_by_default": true, + "sortnum": 6, + "extra_recipe_mappings": { + "tfc:rock/anvil/granite": 0, + "tfc:rock/anvil/diorite": 0, + "tfc:rock/anvil/gabbro": 0, + "tfc:rock/anvil/rhyolite": 0, + "tfc:rock/anvil/basalt": 0, + "tfc:rock/anvil/andesite": 0, + "tfc:rock/anvil/dacite": 0 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/anvils.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/anvils.json new file mode 100644 index 000000000..afa952385 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/anvils.json @@ -0,0 +1,111 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "η §", + "category": "tfc:mechanics", + "icon": "tfc:metal/anvil/copper", + "pages": [ + { + "type": "patchouli:text", + "text": "η §ζ˜―εΌ€ε±•ε†Άι‡‘ε€§δΈšεΏ…δΈε―ε°‘ηš„ε·₯ε…·γ€‚η §ηš„δΈ»θ¦δ½œη”¨ζ˜―η„ŠζŽ₯ι‡‘ε±žι”­οΌŒζˆ–ε°†εƒδ»¬ι”»ι€ ζˆε„η§δΈεŒηš„ε·₯ε…·ε’Œθ£…ε€‡γ€‚$(br2)$(l:mechanics/anvils#working)ι”»ι€ $()ζ˜―ζŒ‡ε°†δΈ€ε—ι‡‘ε±žι”­ζ‰“ι€ ζˆε…Άδ»–ε½’ηŠΆοΌŒδ»₯δΎΏδΊŽε°†ε…ΆεˆΆζˆζŸδΊ›ε·₯ε…·ζˆ–θ£…ε€‡ηš„ε·₯θ‰Ίγ€‚θ€Œ$(l:mechanics/anvils#welding)η„ŠζŽ₯$()εˆ™ζ˜―ζŒ‡ε°†δΈ€ε—ι‡‘ε±žι”­ζˆ–ε…Άδ»–ι‡‘ε±žιƒ¨δ»Άη²˜θΏžεœ¨δΈ€θ΅·η‰©ε“ηš„ε·₯艺。" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + "X" + ], + [ + "0" + ] + ], + "mapping": { + "X": "#tfc:anvils" + } + }, + "name": "", + "text": "ε„εΌε„ζ ·ηš„ι‡‘ε±žη §", + "enable_visualize": false + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/metal/anvil/copper", + "text": "η §ζ˜―η”±εƒδ»¬ε―ΉεΊ”ηš„ι‡‘ε±ž$(thing)εŒι”­$()εˆΆδ½œηš„γ€‚εœ¨θŽ·εΎ—δ½ ηš„η¬¬δΈ€δΈͺη §ε‰οΌŒδ½ εͺθƒ½δ½Ώη”¨ζœ€εŽŸε§‹ηš„$(l:getting_started/primitive_anvils)石砧$()γ€‚ζœ‰δΊ†ηŸ³η §οΌŒδ½ ε°±ε―δ»₯用εƒζ₯$(l:mechanics/anvils#welding)η„ŠζŽ₯$()ε‡Ί$(thing)ι“œεŒι”­$()了。" + }, + { + "type": "patchouli:text", + "anchor": "tiers", + "text": "η §ζ˜―εˆ†$(thing)η­‰ηΊ§$()ηš„γ€‚η­‰ηΊ§ε†³εšδΊ†δ»€δΉˆζ ·ηš„ι‡‘ε±žε’Œζζ–™ε―δ»₯εœ¨θΏ™δΈͺ砧上加ε·₯。εͺζœ‰η­‰ηΊ§ε’Œη §η›ΈεŒζˆ–ζ―”η §δ½Žηš„ζζ–™ζ‰ε―δ»₯εœ¨η §δΈŠι”»ι€ οΌŒθ€Œθƒ½εœ¨η §δΈŠη„ŠζŽ₯ηš„ι‡‘ε±žηš„ζœ€ε€§η­‰ηΊ§δΈΊη §ηš„η­‰ηΊ§ +1。$(br)$(li)$(bold)第離级$():石砧$(li)$(bold)第一级$()οΌšι“œ$(li)$(bold)第二级$()οΌšι“‹ι“œγ€ι»‘ι“œγ€ι’ι“œ$(li)$(bold)第三级$()οΌšι”»ι“$(li)$(bold)第四级$()οΌšι’’$(li)$(bold)第五级$()οΌšι»‘ι’’$(li)$(bold)第六级$();纒钒、蓝钒" + }, + { + "type": "patchouli:text", + "anchor": "working", + "text": "δΈŽη §δΊ’εŠ¨ε°±θƒ½ζ‰“εΌ€η §η•Œι’οΌŒε¦‚ε³ε›Ύζ‰€η€Ίγ€‚ε±εΉ•ε·¦δΎ§ηš„δΈ€δΈͺη©Ίζ Όζ˜―η”¨ζ₯ζ”Ύη½ιœ€θ¦εŠ ε·₯ηš„η‰©ε“ηš„γ€‚ι”»ι€ η΄ ζεΏ…ι‘»ζ”Ύεœ¨ε³θΎΉι‚£ζ Όβ€”β€”ε·¦θΎΉι‚£ζ Όεͺζœ‰η„ŠζŽ₯ζ—Άζ‰δΌšη”¨εˆ°γ€‚ι”»ι€ ζ—ΆοΌŒεΏ…ι‘»ζ‰‹ζŒγ€ζˆ–εœ¨ε³δΎ§η©Ίζ Όε†…ζ”Ύη½δΈ€ζŸ„$(thing)销$()γ€‚ζ―ζ¬‘εŠ ε·₯ζ—ΆοΌŒι”€ιƒ½δΌšη•₯εΎη£¨ζŸγ€‚", + "title": "如何锻造" + }, + { + "type": "patchouli:image", + "images": [ + "tfc:textures/gui/book/gui/anvil_empty.png" + ], + "text": "η §η•Œι’", + "border": false + }, + { + "type": "patchouli:text", + "text": "εΌ€ε·₯ε‰οΌŒδ½ εΏ…ι‘»ε…ˆι€‰ζ‹©ι”»ι€ $(thing)η›ζ ‡$()。$(item)$(k:key.attack)$()点击卷轴图标打开η›ζ ‡δΈ€θ§ˆοΌŒι€‰ζ‹©εŒεŽδΌšθ‡ͺεŠ¨θΏ”ε›žη §η•Œι’οΌŒδΈ”ε·θ½΄ε›Ύζ ‡δΌšθ½¬ε˜δΈΊδ½ εˆšεˆšι€‰ζ‹©ηš„η‰©ε“οΌŒεŒζ—Άε±εΉ•δΈŠζ–Ήηš„δΈ‰δΈͺη©Ίζ ΌδΌšζ˜Ύη€Ίε½“ε‰η›ζ ‡ζ‰€ιœ€ηš„$(thing)ι”»ι€ θ§„εˆ™$()。" + }, + { + "type": "patchouli:image", + "images": [ + "tfc:textures/gui/book/gui/anvil_in_use.png" + ], + "text": "ζ‘ˆδΎ‹οΌšι€‰ζ‹©ι•ε€΄δ½œδΈΊη›ζ ‡", + "border": false + }, + { + "type": "patchouli:text", + "text": "ε±εΉ•ηš„ζœ€δΈ­ι—΄ζœ‰δΈ€ζ Ήι•Ώζ‘ε’ŒδΈ€ηΊ’δΈ€η»ΏδΈ€δΈͺζŒ‡ι’ˆγ€‚$(2)η»Ώθ‰²ζŒ‡ι’ˆ$()葨瀺了η›ε‰ηš„锻造进度。$(4)ηΊ’θ‰²ζŒ‡ι’ˆ$()葨瀺了锻造η›ζ ‡γ€‚δ½ ιœ€θ¦εšηš„οΌŒε°±ζ˜―ε°†η»Ώθ‰²ζŒ‡ι’ˆδΈŽηΊ’θ‰²ζŒ‡ι’ˆε―Ήι½γ€‚", + "title": "εŒζˆι”»ι€ η›ζ ‡" + }, + { + "type": "patchouli:text", + "text": "$(br2)ε±εΉ•ζ­£δΈ­ηš„$(4)纒色$()与$(2)绿色$()ζŒ‰ι’δ»£θ‘¨δΊ†δΈεŒηš„$(thing)锻造手法$()。使用$(2)绿色$()ζ‰‹ζ³•δΌšε°†η»Ώθ‰²ζŒ‡ι’ˆε‘$(bold)右$()η§»εŠ¨οΌŒθ€Œδ½Ώη”¨$(4)纒色$()ζ‰‹ζ³•εˆ™δΌšε°†η»Ώθ‰²ζŒ‡ι’ˆε‘$(bold)ε·¦$()η§»εŠ¨γ€‚ζ³¨ζ„οΌε¦‚ζžœδ½ ζŠŠη»Ώθ‰²ζŒ‡ι’ˆζ‰“ε‡ΊδΊ†ε±εΉ•οΌŒι”»ι€ η΄ ζε°±δ½œεΊŸδΊ†οΌη„Άθ€ŒοΌŒε•ε•ε°†δΈ€δΈͺζŒ‡ι’ˆε―Ήι½ζ˜―δΈε€Ÿηš„γ€‚δ½ θΏ˜εΏ…ι‘»ι΅εˆι’ε€–ηš„$(thing)ι”»ι€ θ§„εˆ™$()……" + }, + { + "type": "patchouli:text", + "text": "每δΈͺη›ζ ‡ιƒ½δΌšζœ‰δΈ€εˆ°δΈ‰δΈͺ$(thing)ι”»ι€ θ§„εˆ™$()οΌŒζ ‡ζ³¨εœ¨ε±εΉ•ι‘Άιƒ¨γ€‚ι”»ι€ θ§„εˆ™θ¦ζ±‚δ½ ζŒ‰η…§η‰Ήεšηš„鑺序使用特εšηš„锻造手法ζ₯εŒζˆη›ζ ‡γ€‚ζ―”ε¦‚οΌŒε¦‚ζžœδΈ€δΈͺι”»ι€ θ§„εˆ™θ¦ζ±‚β€œ$(2)εΌ―ζ›² ε€’ζ•°η¬¬δΊŒ$()β€οΌŒεˆ™δ½ ε°†ζŒ‡ι’ˆε―Ήι½ε‰ηš„ε€’ζ•°η¬¬δΊŒδΈͺζ‰‹ζ³•εΏ…ι‘»ζ˜―β€œ$(2)εΌ―ζ›²$()”", + "title": "ι”»ι€ θ§„εˆ™" + }, + { + "type": "patchouli:text", + "text": "ι”»ι€ θ§„εˆ™δΈ‹ζ–ΉδΌšζ˜Ύη€Ίδ½ ζœ€εŽδ½Ώη”¨ηš„δΈ‰δΈͺι”»ι€ ζ‰‹ζ³•γ€‚θ’«ζ»‘θΆ³ηš„ι”»ι€ θ§„εˆ™ηš„θ½ε»“δΌšε˜δΈΊη»Ώθ‰²γ€‚εͺζœ‰ε½“ζ‰€ζœ‰ι”»ι€ θ§„εˆ™ιƒ½θ’«ζ»‘θΆ³οΌŒδΈ”δΈ€δΈͺζŒ‡ι’ˆδΉŸε―Ήι½ζ—Άζ‰η—ι”»ι€ ζˆεŠŸγ€‚$(br2)ζœ€εŽοΌŒεˆ«εΏ˜δΊ†η•™ζ„ι”»ι€ η΄ ζηš„$(l:mechanics/heating)ζΈ©εΊ¦$()γ€‚ι‡‘ε±žι”­εͺζœ‰εœ¨ζΈ©εΊ¦θΆ³ε€Ÿι«˜ζ—ΆοΌˆε…Άε·₯ε…·ζη€ΊδΌšζ˜Ύη€Ίβ€œε―εŠ ε·₯”)才可δ»₯用ζ₯ι”»ι€ γ€‚ι”»ι€ εˆ°δΈ€εŠηš„η‰©ε“ε―δ»₯δ»Žη §δΈŠε–ε‡Ίε†εŠ ηƒ­οΌŒε…Άι”»ι€ θΏ›εΊ¦δΌšδΏη•™γ€‚" + }, + { + "type": "patchouli:text", + "text": "ι”»ι€ ε―δΈζ˜―δ»ΆεΉζ˜“ζ΄»ε„Ώγ€‚ζ–°ζ‰‹εΎ€εΎ€ιœ€θ¦ε°†η΄ ζζ₯ε›žζ•²ζ‰“ε€šζ¬‘ζ‰θƒ½εšε₯½οΌŒθ€Œθ€ζ‰‹δΎΏθƒ½δΈ€ζ°”ε‘΅ζˆγ€‚ε―ΉδΊŽζŸδΊ›ι”»ι€ η›ζ ‡οΌˆζ―”如ε·₯具倴)ζ₯θ―΄οΌŒε¦‚ζžœθƒ½εœ¨ε‡ ζ­₯ε†…ε°±εšζˆοΌŒι”»ι€ ε‡Ίζ₯ηš„ζˆε“ηš„$(thing)ι”»ι€ θ―„δ»·$()δΌšζε‡γ€‚η”¨θ―„δ»·ι«˜ηš„ε·₯ε…·ε€΄εšε‡Ίζ₯ηš„ε·₯ε…·δΌšζœ‰δΈ€εšηš„ε±žζ€§εŠ ζˆγ€‚", + "title": "ι”»ι€ θ―„δ»·" + }, + { + "type": "patchouli:spotlight", + "item": "tfc:metal/pickaxe/wrought_iron{\"tfc:forging_bonus\":4}", + "title": "εŒηΎŽοΌ", + "link_recipes": false, + "text": "ζœ‰ε››η§δΈεŒηš„ι”»ι€ θ―„δ»·οΌš$(li)η²—η³™$(li)合格$(li)η²Ύθ‰―$(li)εŒηΎŽοΌ$(br2)ζ Ήζε·₯ε…·η±»εž‹ηš„δΈεŒοΌŒθΏ™δΊ›θ―ζ‘δΌšζ”Ήε˜ε·₯ε…·ηš„θ€δΉ…εΊ¦γ€ζŒ–ζŽ˜ι€ŸεΊ¦γ€ε’ŒδΌ€ε³η­‰ε±žζ€§γ€‚" + }, + { + "type": "patchouli:text", + "anchor": "welding", + "text": "η„ŠζŽ₯ζ˜―δΈ€η§ε°†δΈ€δΈͺη‰©ε“η†”εˆδΈΊζ–°η‰©ε“ηš„ε·₯艺。无θΊζ˜―在$(l:getting_started/primitive_anvils)石砧$()θΏ˜ζ˜―ι‡‘ε±žη §δΈŠζ“δ½œοΌŒη„ŠζŽ₯桁程都εŒε…¨δΈ€θ‡΄γ€‚$(br2)ι¦–ε…ˆοΌŒεΏ…ι‘»ε°†εΎ…η„ŠζŽ₯ηš„δΈ€δΈͺ物品放η½εœ¨η §δΈŠγ€‚ε―ι€šθΏ‡ζ‰‹ζŒη‰©ε“ε―Ήη §η‚Ήε‡»δ½Ώη”¨οΌŒζˆ–ζ‰“εΌ€η §ηš„ζ“δ½œη•Œι’ε°†ε…Άζ”Ύε…₯ζœ€ε·¦δΎ§ηš„δΈ€δΈͺ槽位中εŒζˆζ”Ύη½γ€‚", + "title": "η„ŠζŽ₯" + }, + { + "type": "patchouli:text", + "text": "ζ­€ε€–οΌŒη §ε†…ιœ€θ‡³ε°‘ε­˜ζ”ΎδΈ€δ»½$(l:mechanics/flux)εŠ©η„Šε‰‚$()δ»₯θΎ…εŠ©η„ŠζŽ₯过程。当一δΈͺη‰©ε“ε‡θΎΎεˆ°$(l:mechanics/heating)ε―η„ŠζŽ₯ζΈ©εΊ¦$()οΌˆζη€ΊδΏ‘ζ―ε°†ζ˜Ύη€Ίβ€œε―η„ŠζŽ₯β€οΌ‰ζ—ΆοΌŒη”¨δ»»ζ„$(thing)销$()ε‡»ζ‰“η §οΌŒζˆ–η‚Ήε‡»η §ζ“δ½œη•Œι’δΈ­ηš„η„ŠζŽ₯ζŒ‰ι’ε³ε―γ€‚ζ­€ζ—Άε°†δΌ ε‡Ίι”»ζ‰“ε£°ζ•ˆοΌŒη‰©ε“δΉŸιšδΉ‹η†”εˆδΈΊδΈ€δ½“γ€‚εŒζˆεŽοΌŒη©Ίζ‰‹ε―Ήη §δ½Ώη”¨$(item)$(k:key.use)$()ε³ε―ε–ε‡Ίζˆε“γ€‚" + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tag:tfc:anvils": 0 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/blast_furnace.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/blast_furnace.json new file mode 100644 index 000000000..b1329f3d2 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/blast_furnace.json @@ -0,0 +1,68 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "ι«˜η‚‰", + "category": "tfc:mechanics", + "icon": "tfc:blast_furnace", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)ι«˜η‚‰$()ζ˜―δΈ€η§η”¨ζ₯η‚Ό$(thing)ι’’$()ηš„ι«˜ηΊ§θΎε€‡γ€‚ε°†$(thing)ι“ηŸΏηŸ³$()、$(thing)焦煀$()ζˆ–$(l:beneath/ores_and_minerals#cursecoal)ζ— ηƒŸη…€$()οΌŒε’Œ$(thing)εŠ©η„Šε‰‚$()εœ¨ι«˜ηƒ­ηŽ―ε’ƒδΈ­ζ··εˆε°±θƒ½εˆΆι€ ε‡ΊδΈ€η§ζ―”ι”»ι“ζ›΄εΌΊηš„ι‡‘ε±žγ€‚$(br2)θ¦ζ­ε»Ίι«˜η‚‰οΌŒδ½ εΏ…ι‘»ε…ˆεˆΆδ½œδΈ€δΈͺ$(l:mechanics/crucible)坩埚$()、一根$(thing)ιΌ“ι£Žε£$()γ€ε’ŒδΈ€δΈͺ风η±γ€‚ζ­€ε€–οΌŒδ½ θΏ˜δΌšιœ€θ¦εΎˆε€š$(thing)锻铁板$()ε’Œ$(thing)耐火砖块$()。" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/blast_furnace", + "text": "εˆΆδ½œι«˜η‚‰ζ–Ήε—ζœ¬δ½“ε°±ιœ€θ¦δΈ€δΈͺ$(thing)坩埚$(),δ»₯εŠδΈ€δΊ›$(thing)εŒε±‚ι”»ι“ζΏ$()。" + }, + { + "type": "patchouli:text", + "text": "ζŽ₯δΈ‹ζ₯就可δ»₯εΌ€ε§‹ζ­ε»Ίι«˜η‚‰ηš„$(thing)ηƒŸε›±$()δΊ†γ€‚ηƒŸε›±εΏ…ι‘»η”¨θΆ³δ»₯ζ‰Ώε—η‚Όι’’ι«˜ζΈ©ηš„$(l:mechanics/fire_clay#fire_bricks)εΌΊεŒ–θ€η«η –$()ζ­ε»Ίγ€‚εΌΊεŒ–η –ε―ι€šθΏ‡ζ‰‹ζŒι“Έι“ζΏζˆ–ι”»ι“ζΏοΌŒε―Ήθ€η«η –ε—η”¨$(item)$(k:key.sneak)$()+$(item)$(k:key.use)$()点击各δΈͺε€–ιœ²ι’θΏ›θ‘ŒεŒ…θ¦†οΌŒζˆ–η›΄ζŽ₯合成$(l:mechanics/blast_furnace_insulation)ι«˜η‚‰ιš”ηƒ­ζΏ$()。" + }, + { + "type": "patchouli:multiblock", + "multiblock_id": "tfc:blast_furnace", + "name": "δΈ€εΊ§ι«˜η‚‰", + "text": "ζœ€εŸΊη‘€ηš„ι«˜η‚‰η»“ζž„γ€‚", + "enable_visualize": true + }, + { + "type": "patchouli:text", + "text": "ι«˜η‚‰ηš„ηƒŸε›±ζœ€ε€šε―δ»₯搭建 5 ε±‚οΌŒζ―ε±‚ηƒŸε›±ιœ€θ¦ι’ε€– 4 块$(thing)耐火砖块$()ε’Œ 12 εΌ $(thing)锻铁板$()γ€‚ζ―ι’ε€–ζ­ε»ΊδΈ€ε±‚ηƒŸε›±οΌŒι«˜η‚‰ε°±ε―δ»₯εŒζ—Άε€šηƒ§η‚Ό 4 δΈͺη‰©ε“οΌŒδ»Žθ€Œζε‡ε·₯δ½œζ•ˆηŽ‡γ€‚" + }, + { + "type": "patchouli:text", + "text": "εΏ…ι‘»δ»Žι«˜η‚‰ηš„ηƒŸε›±ι‘ΆζŠ•ε…₯η‚Όι’’ζ‰€ιœ€ηš„η΄ ζγ€‚θ¦η‚Όι’’οΌŒι¦–ε…ˆε°†η­‰ι‡ηš„$(thing)ι“ηŸΏηŸ³$()ε’Œ$(l:mechanics/flux)εŠ©η„Šε‰‚$()ζŠ•ε…₯ι«˜η‚‰γ€‚ι“ηŸΏηŸ³ε―δ»₯η”¨δ»»δ½•θƒ½θ’«η†”εŒ–ζˆ$(thing)铸铁$()ηš„η‰©ε“δ»£ζ›Ώγ€‚ε¦ε€–οΌŒδ½ θΏ˜ιœ€θ¦εœ¨ι«˜η‚‰η‡ƒηƒ§ηš„θΏ‡η¨‹δΈ­δΈζ–­εŠ ε…₯$(l:tfg_tips/basic_automation)焦炭$()ζˆ–$(l:beneath/ores_and_minerals#cursecoal)ζ— ηƒŸη…€$()ζ₯η»΄ζŒη‡ƒηƒ§γ€‚" + }, + { + "type": "patchouli:text", + "text": "δΈŽι«˜η‚‰ζ–Ήε—δΊ’εŠ¨ε―δ»₯ζ‰“εΌ€ι«˜η‚‰η•Œι’οΌŒε¦‚ε³ε›Ύζ‰€η€Ίγ€‚ι«˜η‚‰η•Œι’δΌšζ˜Ύη€Ίη‚‰δΈ­ηš„ι‡‘ε±žε’Œη‡ƒζ–™ζ•°ι‡γ€‚ε±εΉ•ε³δΈŠθ§’ηš„η©Ίζ ΌεΏ…ι‘»ζ”Ύη½δΈ€ζ Ή$(thing)ιΌ“ι£Žε£$()γ€‚ζœ‰δΊ†ιΌ“ι£Žε£ι«˜η‚‰ζ‰θƒ½θΎΎεˆ°ε―δ»₯η‚Όι’’ηš„ζΈ©εΊ¦γ€‚ε―δ»₯在$(l:mechanics/anvils)η §$()δΈŠι”»ι€ ιΌ“ι£Žε£γ€‚" + }, + { + "type": "patchouli:image", + "images": [ + "tfc:textures/gui/book/gui/blast_furnace.png" + ], + "text": "ι«˜η‚‰η•Œι’", + "border": false + }, + { + "type": "patchouli:text", + "text": "δ½ θΏ˜ιœ€δΈ€δΈͺ$(l:mechanics/bellows)风η±$()ζ₯δ½Ώι«˜η‚‰ε‡ζΈ©θ‡³θƒ½θžεŒ–ι“ηš„η¨‹εΊ¦γ€‚ι£Žη±ε―δ»₯ε‰θ£…εœ¨ι«˜η‚‰δ»»ζ„ε››δΈͺ侧青之一。" + }, + { + "type": "patchouli:multiblock", + "multiblock_id": "tfc:full_blast_furnace", + "name": "", + "text": "δΈ€δΈͺζœ€ε€§ηš„εŒζ•΄ι«˜η‚‰η»“ζž„οΌŒι…ζœ‰ι£Žη±ε’Œε©εŸšγ€‚", + "enable_visualize": true + }, + { + "type": "patchouli:text", + "text": "ζœ€εŽοΌŒη”¨$(l:getting_started/firepit#firestarter)衷火器$()ζˆ–$(thing)ζ‰“η«ηŸ³$()η‚Ήη‡ƒι«˜η‚‰ζ–Ήε—ε°±ε―δ»₯εΌ€ε§‹η‚Όι’’δΊ†γ€‚ι«˜η‚‰δΌšηΌ“ζ…’εŠ ηƒ­ηŸΏηŸ³οΌŒεŒζ—Άθ¦ζ³¨ζ„δΈζ–­ιΌ“ι£Žε’Œζ·»εŠ η‡ƒζ–™γ€‚ε½“ι«˜η‚‰ε†…ηš„ζΈ©εΊ¦θΆ³δ»₯η†”εŒ–ηŸΏηŸ³ζ—ΆοΌŒηŸΏηŸ³ε°±δΌšη†”εŒ–εΉΆθ½¬εŒ–δΈΊ$(l:mechanics/steel)η”Ÿι“$()。" + }, + { + "type": "patchouli:text", + "text": "θΏ™η§ζΆ²ζ€ι‡‘ε±žδΌšζ»΄θ½θΏ›ζ­£δΈ‹ζ–Ήζ”Ύη½ηš„δ»»δ½•ι‡‘ε±žζΆ²εΉε™¨δΈ­οΌŒδΎ‹ε¦‚ $(l:mechanics/crucible)坩埚$()。ζŽ₯着可δ»₯δ»Žε©εŸšηš„θΎ“ε‡Ίζ§½ι“Έι€ ζˆι”­οΌŒεΉΆθΏ›δΈ€ζ­₯加ε·₯成 $(l:mechanics/steel)ι’’$()。" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/bloomery.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/bloomery.json new file mode 100644 index 000000000..7d6c41d3c --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/bloomery.json @@ -0,0 +1,80 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "锻铁炉", + "category": "tfc:mechanics", + "icon": "tfc:bloomery", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)锻铁炉$()ζ˜―δΈ€η§θƒ½ε°†$(thing)ι“ηŸΏ$()ηƒ§η‚Όζˆ$(thing)η”Ÿι“ζ–Ήε―$()ηš„θ£…η½γ€‚η”Ÿι“ζ–Ήε―可进一ζ­₯ι”»ι€ ζˆ$(thing)锻铁$()。$(l:the_world/ores_and_minerals#hematite)θ΅€ι“ηŸΏ$()、$(l:the_world/ores_and_minerals#limonite)θ€ι“ηŸΏ$()ε’Œ$(l:the_world/ores_and_minerals#magnetite)η£ι“ηŸΏ$()均含铁。直ζŽ₯η†”εŒ–θΏ™δΊ›ηŸΏηŸ³εͺδΌšεΎ—εˆ°ζ— η”¨ηš„$(thing)铸铁$()θ€Œιž$(thing)锻铁$()γ€‚ε¦ε€–οΌŒζ‰€ζœ‰ε«ι“η‰©ε“η†”εŒ–ζ—Άιƒ½εͺδΌšε˜ζˆι“Έι“γ€‚ι”»ι“η‚‰ζ˜―ζŠŠι“Έι“ε˜δΈΊι”»ι“ηš„ε”―δΈ€ζ–Ήζ³•γ€‚ι”»ι“η‚‰ζŽ₯ε—δ»»δ½•ε«ι“η‰©ε“οΌŒεŒ…ζ‹¬ι“ηŸΏηŸ³ζˆ–ι“Έι“ι”­γ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/bloomery", + "text": "锻铁炉由 8 块 $(thing)εŒε±‚ι’ι“œζΏ$() εˆΆδ½œθ€Œζˆγ€‚" + }, + { + "type": "patchouli:multiblock", + "multiblock_id": "tfc:bloomery", + "name": "一座锻铁炉", + "text": "ζœ€εŸΊη‘€ηš„ι”»ι“η‚‰η»“ζž„γ€‚ι”»ι“η‚‰ζ–Ήε—ε―δ»₯用$(item)$(k:key.use)$()ζ‰“εΌ€ζˆ–ε…³ι—­γ€‚", + "enable_visualize": true + }, + { + "type": "patchouli:text", + "text": "ι”»ι“η‚‰ζœ€ε€šε―εΉηΊ³ 48 δΈͺ $(thing)θΎ“ε…₯ι‘Ή$()οΌŒζ―ε±‚ηƒŸε›±ζœ€ε€šζ”Ύ16δ»Άη‰©ε“γ€‚ε―ι€šθΏ‡ε †ε ι’ε€–ηš„ηŸ³ε€΄ζ₯εŠ ι«˜θ‡³ε€šδΈ€ε±‚ηƒŸε›±οΌŒζ―ε±‚ι’ε€–ηš„ηƒŸε›±ε―δ»₯倚εΉηΊ³16仢物品。$(br2)θ¦ε‘ι”»ι“η‚‰δΈ­εŠ ε…₯η‰©ε“οΌŒεͺιœ€ε°†η‰©ε“δ»ŽηƒŸε›±ι‘Άιƒ¨ζŠ•ε…₯ηƒŸε›±δΈ­ε³ε―γ€‚ε¦‚ζžœηƒŸε›±δΈ­ε‡ΊηŽ°η°θ‰²η‰©θ΄¨ε°±θ―΄ζ˜ŽζˆεŠŸδΊ†γ€‚" + }, + { + "type": "patchouli:image", + "images": [ + "tfc:textures/gui/book/tutorial/bloomery_hole.png" + ], + "text": "ε°†η‰©ε“ζ·»εŠ εˆ°ι”»ι“η‚‰δΈ­γ€‚", + "border": true + }, + { + "type": "patchouli:text", + "text": "ι”»ι“η‚‰δΌšε°†ζ―$(thing)1δ»½ζœ¨η‚­$()ε’Œ$(thing)144mB铸铁$()θ½¬εŒ–ζˆδΈ€ε—$(thing)方坯$()γ€‚εœ¨ζŠ•ε…₯ζ‰€ιœ€ηš„$(thing)ζœ¨η‚­$()ε’Œ$(thing)矿石$()εŽοΌŒη‚Ήη‡ƒι”»ι“η‚‰ζ–Ήε—εΉΆη­‰δΈŠ 15 ε°ζ—Άγ€‚ι”»ι“η‚‰η†„η­εŽδΌšη•™δΈ‹θΈε€šζ–Ήε―ζ–Ήε—γ€‚η”¨ι•εε€ζŒ–ζŽ˜$(thing)方坯$()δΎΏθƒ½εΎ—εˆ°$(thing)η”Ÿι“ζ–Ήε―$()。" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + "X" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:bloom[layers=8]" + } + }, + "name": "方坯", + "text": "一倧块$(thing)方坯$()。", + "enable_visualize": false + }, + { + "type": "tfc:anvil_recipe", + "recipe": "tfc:anvil/refined_iron_bloom", + "text": "$(thing)η”Ÿι“ζ–Ήε―$()θΏ˜εΏ…ι‘»εœ¨$(l:mechanics/anvils)η §$()δΈŠζ‰“ι€ ζˆ$(thing)精铁方坯$()。" + }, + { + "type": "tfc:anvil_recipe", + "recipe": "tfc:anvil/wrought_iron_from_bloom", + "text": "在$(l:mechanics/anvils)η §$()δΈŠθΏ›δΈ€ζ­₯打造$(thing)精铁方坯$()ε°±θƒ½θŽ·εΎ—$(thing)锻铁锭$()了。" + }, + { + "type": "patchouli:text", + "text": "$(li)ε¦‚ζžœζŠ•ε…₯ι”»ι“η‚‰ηš„η‰©ε“θΆ…ε‡ΊδΊ†εƒηš„ζ‰€θƒ½ε€„η†ηš„ζ•°ι‡οΌŒεƒε°±δΌšδ»Žι”»ι“η‚‰ι—¨ε£εε‡Ίζ₯。$()$(li)ε¦‚ζžœθ¦ε–ε›žζŠ•ε…₯ι”»ι“η‚‰δΈ­ηš„η‰©ε“οΌŒδΈθ¦θ―•ε›ΎζŒ–ζŽ˜ε‘”δΈ­ηš„η†”θžη‰©οΌŒη›΄ζŽ₯ζŠŠι”»ι“η‚‰ζ–Ήε—ζŒ–ζŽ‰ε³ε―γ€‚$()$(li)方坯εͺδΌšη†”εŒ–ζˆι“Έι“οΌŒθ€ŒδΈζ˜―ι”»ι“γ€‚ζ–Ήε―εΏ…ι‘»η»θΏ‡ι”€η‚Όζ‰θƒ½ε˜ζˆι”»ι“οΌ$()", + "title": "ι“εŒ ηš„η¬”θ°" + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tfc:bloom": 6, + "tfc:raw_iron_bloom": 7, + "tfc:refined_iron_bloom": 8 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/crops.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/crops.json new file mode 100644 index 000000000..3d67d0e77 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/crops.json @@ -0,0 +1,3826 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "ε†œδ½œη‰©", + "category": "tfc:mechanics", + "icon": "tfc:textures/item/food/wheat.png", + "pages": [ + { + "type": "patchouli:text", + "text": "ε†œδ½œη‰©ζ˜―ι£Ÿη‰©ε’Œε…Άδ»–δΈ€δΊ›ζζ–™ηš„ζ₯ζΊγ€‚θ™½η„Άζ―η§δ½œη‰©ιƒ½η•₯ζœ‰δΈεŒοΌŒδ½†ε…Άεžιƒ½ε€§εŒε°εΌ‚γ€‚θ¦η§ζ€ε†œδ½œη‰©οΌŒδ½ ιœ€θ¦ε…ˆζ‰ΎδΈ€δΊ›$(thing)种子$(),破坏$(l:the_world/wild_crops)ι‡Žη”Ÿδ½œη‰©$()可δ»₯ε°±εΎ—εˆ°δΈ€η‚Ήγ€‚$(br2)ζœ‰δΊ†η§ε­οΌŒδ½ θΏ˜ιœ€θ¦δΈ€ζŠŠ$(thing)ι”„$()γ€‚η§ε­δΉŸε―δ»₯作为$(l:mechanics/fishing)ι±Όι₯΅$()。" + }, + { + "type": "patchouli:text", + "text": "ι™€δΊ†δ»Žι‡Žη”Ÿδ½œη‰©θŽ·ε–η§ε­οΌŒζ ½εŸΉδ½œη‰©δΉŸδΌšδΊ§ε‡Ίη§ε­γ€‚ε½“δΈ€ζ ͺεŒε…¨ζˆη†Ÿηš„δ½œη‰©δΈθΊζ˜―ε› δΈΊε€©ζ°”εŽŸε› οΌŒζˆ–ζ˜―θΏ‡δΊ†ζ”ΆθŽ·ζ—ΆθŠ‚θ€Œζž―θŽζ—Άε°±δΌšθ½¬ε˜δΈΊη§ε­οΌŒδΈΊδΈ‹δΈ€ε­£η§ζ€ζ›΄ε€šδ½œη‰©ζδΎ›δΊ†δΏιšœγ€‚" + }, + { + "type": "tfc:rock_knapping_recipe", + "recipes": [ + "tfg:rock_knapping/stone_hoe_head_1" + ], + "text": "θ¦εΌ€ε§‹οΌŒι¦–ε…ˆι€šθΏ‡$(thing)ζ‰“εˆΆηŸ³ε™¨$()εšδΈ€ζŠŠ$(thing)ηŸ³ι”„$()" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/stone/hoe_sedimentary", + "text": "ε°†ι”„ε€΄δΈŽζœ¨ζ£εˆζˆδΈ€ζŠŠι”„γ€‚$(br2)ι”„ηš„εŠŸθƒ½δΈŽεŽŸη‰ˆη›ΈεŒοΌŒ$(item)$(k:key.use)$()点击ζ³₯εœŸζ–Ήε—ε³ε―ε°†ε…Άθ½¬εŒ–δΈΊ$(thing)θ€•εœ°$()。εƒθΏ˜ε―δ»₯η”¨δΊŽε°†$(thing)ηΌ ζ Ήζ³₯土$()θ½¬εŒ–δΈΊ$(thing)土$()。" + }, + { + "type": "patchouli:text", + "text": "ζ‰€ζœ‰δ½œη‰©ιƒ½ιœ€θ¦η§ζ€εœ¨θ€•εœ°δΈŠζ‰θƒ½η”Ÿι•Ώγ€‚ζœ‰δΊ›δ½œη‰©θΏ˜ζœ‰ι’ε€–ηš„θ¦ζ±‚οΌŒζ―”ε¦‚εͺθƒ½η§εœ¨ζ°΄ι‡Œζˆ–θ€…ιœ€θ¦ζ’δΈ€ζ Ήζœ¨ζ£ζ‰θƒ½η”Ÿι•Ώγ€‚$(br2)δ½œη‰©δΈιœ€θ¦$(thing)θ₯养物质$()ε°±θƒ½η”Ÿι•ΏοΌŒδ½†θ₯ε…»η‰©θ΄¨θƒ½εŠ ι€Ÿε…Άζˆη†Ÿγ€‚θ₯ε…»η‰©θ΄¨εˆ†δΈΊδΈ‰η§οΌš$(b)ζ°$()、$(6)η£·$()ε’Œ$(d)ι’Ύ$()γ€‚ζ―η§δ½œη‰©ιƒ½ζœ‰δΈ€η§εηˆ±ηš„ε…»εˆ†γ€‚", + "title": "η§ζ€δ½œη‰©" + }, + { + "type": "patchouli:text", + "text": "ζΆˆθ€—εηˆ±ηš„θ₯养物质可δ»₯εŠ ι€Ÿδ½œη‰©ηš„η”Ÿι•ΏοΌŒεΉΆζι«˜ζ”ΆθŽ·ζ—Άηš„δΊ§ι‡γ€‚δ½œη‰©ζΆˆθ€—θ€•εœ°δΈ­ηš„ζŸη§θ₯ε…»η‰©θ΄¨ηš„εŒζ—ΆοΌŒδΌšε°εΉ…δΊ§ε‡Ίε…Άδ»–δΈ€η§θ₯养物质。$(br2)ζŽ₯δΈ‹ζ₯ηš„ε‡ ι‘΅δΌšεˆ—ε‡ΊηΎ€ε³¦δΌ θ―΄δΈ­ζ‰€ζœ‰ηš„δ½œη‰©γ€‚" + }, + { + "type": "patchouli:text", + "anchor": "barley", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():-8 - 26 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():18 - 75 %$(br)$(bold)θ₯养物质$():ζ°$(br2)ε€§ιΊ¦ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€ε€§ιΊ¦δΌšδΊ§ε‡Ί$(thing)ε€§ιΊ¦$()ε’Œ$(thing)倧麦种子$()。", + "title": "ε€§ιΊ¦" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/barley[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/barley[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/barley[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/barley[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/barley[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/barley[age=5]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/barley[age=6]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/barley[age=7]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "oat", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():3 - 40 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():35 - 100 %$(br)$(bold)θ₯养物质$():磷$(br2)η‡•ιΊ¦ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€η‡•ιΊ¦δΌšδΊ§ε‡Ί$(thing)燕麦$()ε’Œ$(thing)燕麦种子$()。", + "title": "燕麦" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/oat[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/oat[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/oat[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/oat[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/oat[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/oat[age=5]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/oat[age=6]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/oat[age=7]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "rye", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():-11 - 30 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():25 - 85 %$(br)$(bold)θ₯养物质$():磷$(br2)ι»‘ιΊ¦ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€ι»‘ιΊ¦δΌšδΊ§ε‡Ί$(thing)ι»‘ιΊ¦$()ε’Œ$(thing)黑麦种子$()。", + "title": "ι»‘ιΊ¦" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rye[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rye[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rye[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rye[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rye[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rye[age=5]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rye[age=6]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rye[age=7]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "maize", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():13 - 40 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():75 - 100 %$(br)$(bold)θ₯养物质$():磷$(br2)ηŽ‰η±³ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€ηŽ‰η±³δΌšδΊ§ε‡Ί$(thing)ηŽ‰η±³$()ε’Œ$(thing)ηŽ‰η±³η§ε­$()。", + "title": "ηŽ‰η±³" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/maize[age=0,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/maize[age=1,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/maize[age=2,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/maize[age=3,part=top]", + "Y": "tfc:crop/maize[age=3,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/maize[age=4,part=top]", + "Y": "tfc:crop/maize[age=4,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/maize[age=5,part=top]", + "Y": "tfc:crop/maize[age=5,part=bottom]", + "Z": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "wheat", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():-4 - 35 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():25 - 100 %$(br)$(bold)θ₯养物质$():磷$(br2)ε°ιΊ¦ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€ε°ιΊ¦δΌšδΊ§ε‡Ί$(thing)小麦$()ε’Œ$(thing)小麦种子$()。", + "title": "小麦" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/wheat[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/wheat[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/wheat[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/wheat[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/wheat[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/wheat[age=5]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/wheat[age=6]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/wheat[age=7]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "rice", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():15 - 30 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():25 - 100 %$(br)$(bold)θ₯养物质$():磷$(br2)ζ°΄η¨»ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚ζ°΄η¨»εΏ…ι‘»η§ζ€εœ¨δΈ€ζ Όζ·‘ζ°΄ζ·±ηš„θ€•εœ°δΈŠγ€‚η§ζ€ζ°΄η¨»δΌšδΊ§ε‡Ί$(thing)水稻$()ε’Œ$(thing)水稻种子$()。", + "title": "水稻" + }, + { + "type": "tfc:multimultiblock", + "text": "η§ζ€ζ°΄η¨»η§ε­ηš„ζ–Ήε—εΏ…ι‘»$(thing)含水$()。", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rice[age=0,fluid=water]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rice[age=1,fluid=water]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rice[age=2,fluid=water]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rice[age=3,fluid=water]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rice[age=4,fluid=water]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rice[age=5,fluid=water]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rice[age=6,fluid=water]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/rice[age=7,fluid=water]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "beet", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():-5 - 20 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():18 - 85 %$(br)$(bold)θ₯养物质$()οΌšι’Ύ$(br2)η”œθœζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€η”œθœδΌšδΊ§ε‡Ί$(thing)η”œθœ$()ε’Œ$(thing)η”œθœη§ε­$()。", + "title": "η”œθœ" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/beet[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/beet[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/beet[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/beet[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/beet[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/beet[age=5]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "cabbage", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():-10 - 27 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():15 - 65 %$(br)$(bold)θ₯养物质$():ζ°$(br2)ε·εΏƒθœζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€ε·εΏƒθœδΌšδΊ§ε‡Ί$(thing)ε·εΏƒθœ$()ε’Œ$(thing)ε·εΏƒθœη§ε­$()。", + "title": "ε·εΏƒθœ" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/cabbage[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/cabbage[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/cabbage[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/cabbage[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/cabbage[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/cabbage[age=5]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "carrot", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():3 - 30 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():25 - 100 %$(br)$(bold)θ₯养物质$()οΌšι’Ύ$(br2)θƒ‘θεœζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€θƒ‘θεœδΌšδΊ§ε‡Ί$(thing)θƒ‘θεœ$()ε’Œ$(thing)θƒ‘θεœη§ε­$()。", + "title": "θƒ‘θεœ" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/carrot[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/carrot[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/carrot[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/carrot[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/carrot[age=4]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "garlic", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():-20 - 18 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():15 - 75 %$(br)$(bold)θ₯养物质$():ζ°$(br2)ε€§θ’œζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€ε€§θ’œδΌšδΊ§ε‡Ί$(thing)ε€§θ’œ$()ε’Œ$(thing)ε€§θ’œη§ε­$()。", + "title": "ε€§θ’œ" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/garlic[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/garlic[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/garlic[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/garlic[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/garlic[age=4]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "green_bean", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():2 - 35 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():38 - 100 %$(br)$(bold)θ₯养物质$():ζ°$(br2)ι’θ±†ζ˜―δΈ€η§ζ”€ηˆ¬δ½œη‰©γ€‚ε¦‚ζžœθ€•εœ°δΈŠζ’ζœ‰ζœ¨ζ£οΌŒι’θ±†θƒ½ι•Ώεˆ°δΈ€ζ Όι«˜γ€‚η§ζ€ι’θ±†δΌšδΊ§ε‡Ί$(thing)青豆$()ε’Œ$(thing)青豆种子$()。", + "title": "青豆" + }, + { + "type": "tfc:multimultiblock", + "text": "ιœ€θ¦ζ’ζœ¨ζ£ζ‰θƒ½δ½Ώδ½œη‰©ε……εˆ†η”Ÿι•Ώγ€‚", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/green_bean[age=0,part=top,stick=true]", + "Y": "tfc:crop/green_bean[age=0,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/green_bean[age=1,part=top,stick=true]", + "Y": "tfc:crop/green_bean[age=1,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/green_bean[age=2,part=top,stick=true]", + "Y": "tfc:crop/green_bean[age=2,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/green_bean[age=3,part=top,stick=true]", + "Y": "tfc:crop/green_bean[age=3,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/green_bean[age=4,part=top,stick=true]", + "Y": "tfc:crop/green_bean[age=4,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/green_bean[age=5,part=top,stick=true]", + "Y": "tfc:crop/green_bean[age=5,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/green_bean[age=6,part=top,stick=true]", + "Y": "tfc:crop/green_bean[age=6,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/green_bean[age=7,part=top,stick=true]", + "Y": "tfc:crop/green_bean[age=7,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "potato", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():-1 - 37 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():50 - 100 %$(br)$(bold)θ₯养物质$()οΌšι’Ύ$(br2)ι©¬ι“ƒθ–―ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€ι©¬ι“ƒθ–―δΌšδΊ§ε‡Ί$(thing)马铃薯$()ε’Œ$(thing)马铃薯种子$()。", + "title": "马铃薯" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/potato[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/potato[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/potato[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/potato[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/potato[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/potato[age=5]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/potato[age=6]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "pumpkin", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():0 - 30 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():30 - 80 %$(br)$(bold)θ₯养物质$():磷$(br2)ε—η“œζ˜―δΈ€η§ηˆ¬θ‘Œδ½œη‰©γ€‚η§ζ€εœ¨θ€•εœ°δΈŠζ—ΆοΌŒε—η“œζ’—δΌšεœ¨ζˆη†ŸεŽεœ¨η›Έι‚»δ½η½ζ”Ύη½ζœ€ε€šδΈ€ι’—$(thing)ε—η“œ$()γ€‚ε—η“œζ’—εœ¨ε…₯ε†¬ε‰ε―η»“ζžœε€šζ¬‘γ€‚ε—η“œε―δ»₯刢作成$(l:mechanics/lighting#jack_o_lanterns)ε—η“œη―$()。", + "title": "ε—η“œ" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/pumpkin[age=0]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/pumpkin[age=1]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/pumpkin[age=2]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/pumpkin[age=3]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/pumpkin[age=4]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/pumpkin[age=5]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/pumpkin[age=6]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/pumpkin[age=7]", + "P": "tfc:pumpkin" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "melon", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():5 - 37 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():75 - 100 %$(br)$(bold)θ₯养物质$():磷$(br2)θ₯Ώη“œζ˜―δΈ€η§ηˆ¬θ‘Œδ½œη‰©γ€‚η§ζ€εœ¨θ€•εœ°δΈŠζ—ΆοΌŒθ₯Ώη“œζ’—δΌšεœ¨ζˆη†ŸεŽεœ¨η›Έι‚»δ½η½ζ”Ύη½ζœ€ε€šδΈ€ι’—$(thing)θ₯Ώη“œ$()。θ₯Ώη“œζ’—εœ¨ε…₯ε†¬ε‰ε―η»“ζžœε€šζ¬‘γ€‚", + "title": "θ₯Ώη“œ" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/melon[age=0]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/melon[age=1]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/melon[age=2]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/melon[age=3]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/melon[age=4]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/melon[age=5]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/melon[age=6]", + "P": "minecraft:air" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfc:farmland/loam", + "0": "tfc:farmland/loam", + "C": "tfc:crop/melon[age=7]", + "P": "tfc:melon" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "red_bell_pepper", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():16 - 30 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():25 - 60 %$(br)$(bold)θ₯养物质$()οΌšι’Ύ$(br2)ηΊ’η”œζ€’ζ˜―δΈ€η§ε―ι‡‡ζ‘˜δ½œη‰©γ€‚εœ¨ζŽ₯θΏ‘ζˆη†Ÿζ—ΆοΌŒε―δ»₯使用$(item)$(k:key.use)$()ι‡‡ζ‘˜ι’η”œζ€’γ€‚ι‡‡ζ‘˜ζ—ΆδΈη ΄εζ€ζ ͺοΌŒε…θΈζ€η‰©εœ¨ζœͺζ₯ι•Ώε‡Ίζ›΄ε€šηš„η”œζ€’γ€‚", + "title": "ηΊ’η”œζ€’" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/red_bell_pepper[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/red_bell_pepper[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/red_bell_pepper[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/red_bell_pepper[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/red_bell_pepper[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/red_bell_pepper[age=5]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/red_bell_pepper[age=6]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "yellow_bell_pepper", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():16 - 30 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():25 - 60 %$(br)$(bold)θ₯养物质$()οΌšι’Ύ$(br2)ι»„η”œζ€’ζ˜―δΈ€η§ε―ι‡‡ζ‘˜δ½œη‰©γ€‚εœ¨ζŽ₯θΏ‘ζˆη†Ÿζ—ΆοΌŒε―δ»₯使用$(item)$(k:key.use)$()ι‡‡ζ‘˜ι’η”œζ€’γ€‚ι‡‡ζ‘˜ζ—ΆδΈη ΄εζ€ζ ͺοΌŒε…θΈζ€η‰©εœ¨ζœͺζ₯ι•Ώε‡Ίζ›΄ε€šηš„η”œζ€’γ€‚", + "title": "ι»„η”œζ€’" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/yellow_bell_pepper[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/yellow_bell_pepper[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/yellow_bell_pepper[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/yellow_bell_pepper[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/yellow_bell_pepper[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/yellow_bell_pepper[age=5]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/yellow_bell_pepper[age=6]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "onion", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():0 - 30 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():25 - 90 %$(br)$(bold)θ₯养物质$():ζ°$(br2)ζ΄‹θ‘±ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€ζ΄‹θ‘±δΌšδΊ§ε‡Ί$(thing)ζ΄‹θ‘±$()ε’Œ$(thing)洋葱种子$()。", + "title": "ζ΄‹θ‘±" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/onion[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/onion[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/onion[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/onion[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/onion[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/onion[age=5]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/onion[age=6]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "soybean", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():8 - 30 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():40 - 100 %$(br)$(bold)θ₯养物质$():ζ°$(br2)ε€§θ±†ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€ε€§θ±†δΌšδΊ§ε‡Ί$(thing)倧豆$()ε’Œ$(thing)倧豆种子$()。", + "title": "倧豆" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/soybean[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/soybean[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/soybean[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/soybean[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/soybean[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/soybean[age=5]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/soybean[age=6]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "squash", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():5 - 33 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():23 - 95 %$(br)$(bold)θ₯养物质$()οΌšι’Ύ$(br2)θ₯Ώθ‘«θŠ¦ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€θ₯Ώθ‘«θŠ¦δΌšδΊ§ε‡Ί$(thing)θ₯Ώθ‘«θЦ$()ε’Œ$(thing)θ₯Ώθ‘«θŠ¦η§ε­$()。", + "title": "θ₯Ώθ‘«θЦ" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/squash[age=0]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/squash[age=1]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/squash[age=2]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/squash[age=3]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/squash[age=4]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/squash[age=5]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/squash[age=6]", + "Y": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/squash[age=7]", + "Y": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "sugarcane", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():12 - 38 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():40 - 100 %$(br)$(bold)θ₯养物质$()οΌšι’Ύ$(br2)η”˜θ”—ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€η”˜θ”—δΌšδΊ§ε‡Ί$(thing)η”˜θ”—$()ε’Œ$(thing)η”˜θ”—η§ε­$()γ€‚η”˜θ”—ε―δ»₯刢成$(thing)η³–$()。", + "title": "η”˜θ”—" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/sugarcane[age=0,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/sugarcane[age=1,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/sugarcane[age=2,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/sugarcane[age=3,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/sugarcane[age=4,part=top]", + "Y": "tfc:crop/sugarcane[age=4,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/sugarcane[age=5,part=top]", + "Y": "tfc:crop/sugarcane[age=5,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/sugarcane[age=6,part=top]", + "Y": "tfc:crop/sugarcane[age=6,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/sugarcane[age=7,part=top]", + "Y": "tfc:crop/sugarcane[age=7,part=bottom]", + "Z": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "tomatoes", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():0 - 36 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():30 - 95 %$(br)$(bold)θ₯养物质$()οΌšι’Ύ$(br2)θ₯ΏηΊ’ζŸΏζ˜―δΈ€η§ζ”€ηˆ¬δ½œη‰©γ€‚ε¦‚ζžœθ€•εœ°δΈŠζ’ζœ‰ζœ¨ζ£οΌŒθ₯ΏηΊ’ζŸΏθƒ½ι•Ώεˆ°δΈ€ζ Όι«˜γ€‚η§ζ€θ₯ΏηΊ’ζŸΏδΌšδΊ§ε‡Ί$(thing)θ₯ΏηΊ’柿$()ε’Œ$(thing)θ₯ΏηΊ’柿种子$()。", + "title": "θ₯ΏηΊ’柿" + }, + { + "type": "tfc:multimultiblock", + "text": "ιœ€θ¦ζ’ζœ¨ζ£ζ‰θƒ½δ½Ώδ½œη‰©ε……εˆ†η”Ÿι•Ώγ€‚", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/tomato[age=0,part=top,stick=true]", + "Y": "tfc:crop/tomato[age=0,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/tomato[age=1,part=top,stick=true]", + "Y": "tfc:crop/tomato[age=1,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/tomato[age=2,part=top,stick=true]", + "Y": "tfc:crop/tomato[age=2,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/tomato[age=3,part=top,stick=true]", + "Y": "tfc:crop/tomato[age=3,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/tomato[age=4,part=top,stick=true]", + "Y": "tfc:crop/tomato[age=4,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/tomato[age=5,part=top,stick=true]", + "Y": "tfc:crop/tomato[age=5,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/tomato[age=6,part=top,stick=true]", + "Y": "tfc:crop/tomato[age=6,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/tomato[age=7,part=top,stick=true]", + "Y": "tfc:crop/tomato[age=7,part=bottom,stick=true]", + "Z": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "jute", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():5 - 37 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():25 - 100 %$(br)$(bold)θ₯养物质$()οΌšι’Ύ$(br2)ι»„ιΊ»ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚η§ζ€ι»„ιΊ»δΌšδΊ§ε‡Ί$(thing)ι»„ιΊ»$()ε’Œ$(thing)黄麻种子$()。", + "title": "ι»„ιΊ»" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/jute[age=0,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/jute[age=1,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/jute[age=2,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/jute[age=3,part=top]", + "Y": "tfc:crop/jute[age=3,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/jute[age=4,part=top]", + "Y": "tfc:crop/jute[age=4,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/jute[age=5,part=top]", + "Y": "tfc:crop/jute[age=5,part=bottom]", + "Z": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "anchor": "papyrus", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():19 - 37 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():70 - 100 %$(br)$(bold)θ₯养物质$()οΌšι’Ύ$(br2)ηΊΈθŽŽθ‰ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„δ½œη‰©γ€‚ηΊΈθŽŽθ‰η§ε­ε―δ»₯η§ζ€εœ¨θ€•εœ°δΈŠοΌŒη”Ÿι•Ώεˆ°δΈ€ζ Όι«˜οΌŒεΉΆη”ŸδΊ§$(l:mechanics/papermaking)ηΊΈθŽŽθ‰$()ε’Œ$(thing)ηΊΈθŽŽθ‰η§ε­$()δ½œδΈΊδΊ§η‰©γ€‚", + "title": "ηΊΈθŽŽθ‰" + }, + { + "type": "tfc:multimultiblock", + "text": "", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/papyrus[age=0,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/papyrus[age=1,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfc:crop/papyrus[age=2,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/papyrus[age=3,part=top]", + "Y": "tfc:crop/papyrus[age=3,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/papyrus[age=4,part=top]", + "Y": "tfc:crop/papyrus[age=4,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:crop/papyrus[age=5,part=top]", + "Y": "tfc:crop/papyrus[age=5,part=bottom]", + "Z": "tfc:farmland/loam" + } + } + ] + }, + { + "type": "patchouli:text", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():5 - 40 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():20 - 80 %$(br)$(bold)θ₯养物质$():ζ°$(br2)向ζ—₯θ‘΅ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„δ½œη‰©γ€‚ε‘ζ—₯葡种子可δ»₯η§ζ€εœ¨θ€•εœ°δΈŠοΌŒη”Ÿι•Ώεˆ°δΈ€ζ Όι«˜οΌŒεΉΆη”ŸδΊ§ε―εŠ ε·₯δΈΊ$(thing)种子油$()ηš„$(item)向ζ—₯θ‘΅θŠ±η›˜$()γ€‚η§ε­ζ²Ήζ—’ε―η”¨δ½œη―ζ²ΉοΌŒδΉŸε―εœ¨εŽζœŸη”¨δΊŽεˆΆδ½œ$(thing)η”Ÿη‰©ζŸ΄ζ²Ή$()。$(br)在$(l:firmalife/beekeeping)ε…»θœ‚$()η³»η»ŸδΈ­οΌŒε‘ζ—₯θ‘΅εŒζ ·θ’«θ§†δΈΊζœ‰ζ•ˆθŠ±ζΊγ€‚", + "title": "向ζ—₯θ‘΅" + }, + { + "type": "tfc:multimultiblock", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:sunflower[age=0,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:sunflower[age=1,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:sunflower[age=2,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:sunflower[age=3,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfg:sunflower[age=4,part=top]", + "Y": "tfg:sunflower[age=4,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfg:sunflower[age=5,part=top]", + "Y": "tfg:sunflower[age=5,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfg:sunflower[age=6,part=top]", + "Y": "tfg:sunflower[age=6,part=bottom]", + "Z": "tfc:farmland/loam" + } + } + ], + "text": "$(thing)ι‡Žη”Ÿε‘ζ—₯θ‘΅$()η”Ÿι•ΏδΊŽ5Β°C至40Β°Cηš„ζΈ©εΊ¦εŒΊι—΄εŠ100至450ζ―«η±³ηš„ι™ι›¨ηŽ―ε’ƒγ€‚ε…Άη§ε­δΊ¦ε―ηƒ˜ηƒ€ι£Ÿη”¨οΌ" + }, + { + "type": "patchouli:text", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$(): -5 - 25 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$(): 10 - 60 %$(br)$(bold)θ₯养物质$():磷$(br2)ζ²Ήθœζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„δ½œη‰©γ€‚ζ²Ήθœη§ε­ε―η§ζ€εœ¨θ€•εœ°δΈŠοΌŒη”Ÿι•Ώεˆ°δΈ€ζ Όι«˜οΌŒεΉΆη”ŸδΊ§ε―εŠ ε·₯δΈΊ$(thing)种子油$()ηš„$(item)油菜籽荚$()γ€‚η§ε­ζ²Ήζ—’ε―η”¨δ½œη―ζ²ΉοΌŒδΉŸε―εœ¨εŽζœŸη”¨δΊŽεˆΆδ½œ$(thing)η”Ÿη‰©ζŸ΄ζ²Ή$()。$(br)在$(l:firmalife/beekeeping)ε…»θœ‚$()η³»η»ŸδΈ­οΌŒζ²ΉθœεŒζ ·θ’«θ§†δΈΊζœ‰ζ•ˆθŠ±ζΊγ€‚", + "title": "油菜" + }, + { + "type": "tfc:multimultiblock", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:rapeseed[age=0,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:rapeseed[age=1,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:rapeseed[age=2,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfg:rapeseed[age=3,part=top]", + "Y": "tfg:rapeseed[age=3,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfg:rapeseed[age=4,part=top]", + "Y": "tfg:rapeseed[age=4,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfg:rapeseed[age=5,part=top]", + "Y": "tfg:rapeseed[age=5,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfg:rapeseed[age=6,part=top]", + "Y": "tfg:rapeseed[age=6,part=bottom]", + "Z": "tfc:farmland/loam" + } + } + ], + "text": "$(thing)ι‡Žη”Ÿζ²Ήθœ$()(亦称$(thing)θŠΈθ‹”$()οΌ‰η”Ÿι•ΏδΊŽ-7Β°C至25Β°Cηš„ζΈ©εΊ¦εŒΊι—΄εŠ50至350ζ―«η±³ηš„ι™ι›¨ηŽ―ε’ƒγ€‚", + "enable_visualize": false + }, + { + "type": "patchouli:text", + "text": "$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():5 - 37 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():25 - 100 %$(br)$(bold)θ₯养物质$():ζ°$(br2)δΊšιΊ»ζ˜―δΈ€η§δΈ€ζ Όι«˜ηš„ε†œδ½œη‰©γ€‚δΊšιΊ»η§ε­ε―δ»₯η§ζ€εœ¨θ€•εœ°δΈŠοΌŒη”Ÿι•Ώεˆ°δΈ€ζ Όι«˜οΌŒεΉΆη”ŸδΊ§η”¨δΊŽεŠ ε·₯δΈΊ$(thing)δΊšιΊ»εΈƒ$()ηš„$(item)δΊšιΊ»θŒŽζ†$()。$(br)在$(l:firmalife/beekeeping)ε…»θœ‚$()η³»η»ŸδΈ­οΌŒδΊšιΊ»εŒζ ·θ’«θ§†δΈΊζœ‰ζ•ˆθŠ±ζΊγ€‚", + "title": "亚麻" + }, + { + "type": "tfc:multimultiblock", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:flax[age=0,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:flax[age=1,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:flax[age=2,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "minecraft:air", + "Y": "tfg:flax[age=3,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfg:flax[age=4,part=top]", + "Y": "tfg:flax[age=4,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfg:flax[age=5,part=top]", + "Y": "tfg:flax[age=5,part=bottom]", + "Z": "tfc:farmland/loam" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfg:flax[age=6,part=top]", + "Y": "tfg:flax[age=6,part=bottom]", + "Z": "tfc:farmland/loam" + } + } + ], + "text": "$(thing)ι‡Žη”ŸδΊšιΊ»$()η”Ÿι•ΏδΊŽ-5Β°C至23Β°Cηš„ζΈ©εΊ¦εŒΊι—΄εŠ175至475ζ―«η±³ηš„ι™ι›¨ηŽ―ε’ƒγ€‚" + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tfc:seeds/barley": 6, + "tfc:food/barley": 6, + "tfc:seeds/oat": 8, + "tfc:food/oat": 8, + "tfc:seeds/rye": 10, + "tfc:food/rye": 10, + "tfc:seeds/maize": 12, + "tfc:food/maize": 12, + "tfc:seeds/wheat": 14, + "tfc:food/wheat": 14, + "tfc:seeds/rice": 16, + "tfc:food/rice": 16, + "tfc:seeds/beet": 18, + "tfc:food/beet": 18, + "tfc:seeds/cabbage": 20, + "tfc:food/cabbage": 20, + "tfc:seeds/carrot": 22, + "tfc:food/carrot": 22, + "tfc:seeds/garlic": 24, + "tfc:food/garlic": 24, + "tfc:seeds/green_bean": 26, + "tfc:food/green_bean": 26, + "tfc:seeds/potato": 28, + "tfc:food/potato": 28, + "tfc:seeds/pumpkin": 30, + "tfc:seeds/melon": 32, + "tfc:seeds/red_bell_pepper": 34, + "tfc:seeds/yellow_bell_pepper": 36, + "tfc:seeds/onion": 38, + "tfc:food/onion": 38, + "tfc:seeds/soybean": 40, + "tfc:food/soybean": 40, + "tfc:seeds/squash": 42, + "tfc:food/squash": 42, + "tfc:seeds/sugarcane": 44, + "tfc:food/sugarcane": 44, + "tfc:seeds/tomato": 46, + "tfc:food/tomato": 46, + "tfc:seeds/jute": 48, + "tfc:jute": 48, + "tfc:seeds/papyrus": 50, + "tfc:papyrus": 50, + "tfg:sunflower_seeds": 52, + "tfg:sunflower_product": 52, + "tfg:rapeseed_seeds": 54, + "tfg:rapeseed_product": 54, + "tfg:flax_seeds": 56, + "tfg:flax_product": 56 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/fire_clay.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/fire_clay.json new file mode 100644 index 000000000..4fb72d970 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/fire_clay.json @@ -0,0 +1,40 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "θ€η«ι»εœŸ", + "category": "tfc:mechanics", + "icon": "tfc:fire_clay", + "pages": [ + { + "type": "patchouli:text", + "text": "θ€η«ι»εœŸθƒ½εšζˆηš„δΈœθ₯ΏδΈε€šοΌŒδ½†ζ―δΈͺιƒ½ζ˜―η§‘ζŠ€θΏ›ζ­₯δΈŠδΈε―ζˆ–ηΌΊηš„θ¦η΄ οΌθ€η«ι»εœŸζ―”ζ™ι€šι»εœŸθƒ½ζ‰Ώε—ζ›΄ι«˜ηš„ι«˜ζΈ©οΌŒε› ζ­€ζŸδΊ›ι«˜ηΊ§θΎε€‡εͺθƒ½η”¨θ€η«ι»εœŸε»Ίι€ γ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/fire_clay", + "text": "θ€η«ι»εœŸζ˜―ι€šθΏ‡$(l:the_world/ores_and_minerals#graphite)ηŸ³ε’¨η²‰$()ε’Œ$(l:the_world/ores_and_minerals#kaolinite)ι«˜ε²­ηŸ³η²‰$()εˆζˆεΎ—εˆ°ηš„οΌŒε‰θ€…ιœ€η”¨ $(l:mechanics/quern)ζ‰‹ζŽ¨η£¨$() 研磨。" + }, + { + "type": "tfc:heat_recipe", + "recipe": "tfc:heating/kaolin_clay", + "text": "ι«˜ε²­ηŸ³η²‰ζ˜―ι€šθΏ‡εŠ ηƒ­$(l:the_world/ores_and_minerals#kaolinite)高岭土$()εΎ—εˆ°ηš„γ€‚η„Άθ€ŒηŽ°εœ¨θΏ™η§ε·₯θ‰ΊεΉΆδΈζˆη†ŸοΌŒε―Όθ‡΄ε…ΆδΊ§ηŽ‡εͺζœ‰20%左右。" + }, + { + "type": "tfc:knapping_recipe", + "anchor": "crucible", + "recipe": "tfc:fire_clay_knapping/crucible", + "text": "η”¨θ€η«ι»εœŸε‘‘ε½’ζˆζœͺηƒ§εˆΆηš„$(l:mechanics/crucible)坩埚$()。" + }, + { + "type": "tfc:knapping_recipe", + "anchor": "fire_bricks", + "recipe": "tfc:fire_clay_knapping/brick", + "text": "δ½œδΈΊη†ζƒ³ηš„ιš”ηƒ­ζζ–™οΌŒθ€η«η –ζ˜―ε»Ίι€ $(l:mechanics/blast_furnace)ι«˜η‚‰$()ηš„εΏ…ιœ€ε“γ€‚" + }, + { + "type": "tfc:knapping_recipe", + "recipe": "tfc:fire_clay_knapping/fire_ingot_mold", + "text": "$(thing)耐火铸锭樑具$()ζ˜―δΈ€η§ζ›΄εΌΊη‰ˆζœ¬ηš„$(l:getting_started/pottery#mold)铸锭樑具$()。相比ζ™ι€šηš„ι“Έι”­ζ¨‘ε…·οΌŒθ€η«ι“Έι”­ζ¨‘ε…·δ»…ζœ‰1%ηš„ζ¦‚ηŽ‡δΌšεœ¨δ½Ώη”¨ζ—Άη ΄η’ŽοΌŒζ™ι€šζ¨‘ε…·εˆ™ζ˜―10%。" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/fishing_nets.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/fishing_nets.json new file mode 100644 index 000000000..0fa2d2fb7 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/fishing_nets.json @@ -0,0 +1,22 @@ +{ + "name": "渔网", + "icon": "tfg:fishing_net/brass", + "category": "tfc:mechanics", + "read_by_default": true, + "pages": [ + { + "type": "patchouli:spotlight", + "title": "渔网", + "item": { + "tag": "forge:tools/fishing_nets" + }, + "text": "εŽŒε€¦δΊ†η”¨ι±Όε‰ζ•ι±ΌοΌŸζˆ–θ€…εœ¨ $(l:mechanics/fishing)ι’“ι±Ό$() ζ—Άζ€»ζ˜―δΈ’δΊ†ι±ΌοΌŸεˆΆδ½œδΈ€δΈͺ $(thing)渔网$() ζ₯θ½»ζΎζžθ΅·δ½ ηš„ζ™šι€γ€‚$(br)δ½Ώη”¨ζΈ”η½‘ζ—ΆοΌŒε³ι”点击鱼即可将兢攢ε…₯θƒŒεŒ…γ€‚δΈεŒη­‰ηΊ§ηš„ζΈ”η½‘ζ•ˆζžœη›ΈεŒοΌŒδ½†θ€δΉ…δΈεŒγ€‚" + }, + { + "type": "patchouli:crafting", + "title": "ζœ¨εˆΆζΈ”η½‘", + "recipe": "tfc:kjs/damage/shaped/fishing_net/wood", + "text": "δΈ€ζ¬ΎεŸΊη‘€ηš„ $(item)ζœ¨εˆΆζΈ”η½‘$()。" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/glassworking.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/glassworking.json new file mode 100644 index 000000000..860e06d6d --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/glassworking.json @@ -0,0 +1,82 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "ηŽ»η’ƒε·₯θ‰Ί", + "category": "tfc:mechanics", + "icon": "tfc:silica_glass_bottle", + "pages": [ + { + "type": "patchouli:text", + "text": "ηŽ»η’ƒε·₯θ‰Ίζ˜―ζŠŠζ²™ε­ε˜δΈΊηŽ»η’ƒηš„θ‰Ίζœ―γ€‚ι¦–ε…ˆοΌŒδ½ εΏ…ι‘»ε†³εšεˆΆδ½œε“ͺ一种$(thing)ηŽ»η’ƒεŽŸζ–™$():$(br)$(br) 1、$(thing)δΊŒζ°§εŒ–η‘…ηŽ»η’ƒ$()οΌšη”±η™½ζ²™εˆΆζˆγ€‚$(br) 2、$(thing)θ΅€ι“ηŸΏηŽ»η’ƒ$()οΌšη”±ι»„ζ²™γ€ηΊ’ζ²™ζˆ–η²‰ηΊ’ζ²™εˆΆζˆγ€‚$(br) 3、$(thing)ζ©„ζ¦„ε²©ηŽ»η’ƒ$()οΌšη”±η»Ώζ²™ζˆ–ζ£•ζ²™εˆΆζˆγ€‚$(br) 4、$(thing)η«ε±±ε²©ηŽ»η’ƒ$()οΌšη”±ι»‘ζ²™εˆΆζˆγ€‚" + }, + { + "type": "patchouli:crafting", + "title": "δΊŒζ°§εŒ–η‘…ηŽ»η’ƒεŽŸζ–™", + "recipe": "tfc:crafting/silica_glass_batch", + "text": "ηŽ»η’ƒεŽŸζ–™ι™€δΊ†ιœ€θ¦ε―ΉεΊ”ι’œθ‰²ηš„ζ²™ε­δ»₯ε€–οΌŒθΏ˜ιœ€θ¦ε‡†ε€‡$(l:mechanics/glassworking#lime)ηŸ³η°η²‰$()ε’Œδ»»ζ„δΈ€η§$(l:mechanics/glassworking#potash)ι’Ύη›ζ·»εŠ η‰©$()。" + }, + { + "type": "patchouli:smelting", + "anchor": "lime", + "recipe": "tfg:smelting/lime", + "text": "$(thing)ηŸ³η°η²‰$()ζ˜―εˆΆδ½œηŽ»η’ƒεŽŸζ–™ηš„εΏ…θ¦εŽŸζ–™δΉ‹δΈ€οΌŒε―δ»₯ι€šθΏ‡$(l:mechanics/heating)εŠ ηƒ­$()$(l:mechanics/flux)εŠ©η„Šε‰‚$()θŽ·εΎ—γ€‚" + }, + { + "type": "patchouli:smelting", + "anchor": "potash", + "recipe": "tfg:smelting/dried_seaweed_to_soda", + "recipe2": "tfg:smelting/dried_kelp_to_soda", + "text": "εˆΆδ½œηŽ»η’ƒεŽŸζ–™θΏ˜ιœ€θ¦εŠ ε…₯δΈ€δΊ›$(thing)钾盐$(),可δ»₯选用$(thing)桷草灰$()οΌˆι€šθΏ‡εŠ ηƒ­$(thing)干桷草$()ζˆ–$(thing)ζ΅·εΈ¦$()θŽ·εΎ—οΌ‰ζˆ–$(l:the_world/ores_and_minerals#saltpeter)瑝石$()。" + }, + { + "type": "patchouli:text", + "text": "θΏ›θ‘ŒηŽ»η’ƒεŠ ε·₯ε‰οΌŒθΏ˜ιœ€θ¦ε‡†ε€‡ε€šη§ε·₯ε…·οΌš$(br)$(li)一支用ζ₯$(thing)吹气$()ε’Œ$(thing)拉伸$()ηš„$(l:mechanics/glassworking#blowpipe)吹风η‘$()οΌ›$(li)一支用ζ₯$(thing)εΉ³ζ•΄$()ηš„$(l:mechanics/glassworking#paddle)ηŽ»η’ƒεŽ‹ζΏ$()οΌ›$(li)一对用ζ₯$(thing)ζŒ€εŽ‹$()ηš„$(l:mechanics/glassworking#jacks)ε€Ήι’³$()οΌ›$(li)ε’ŒδΈ€ζŠŠη”¨ζ₯$(thing)锯割$()ηš„$(l:mechanics/glassworking#saw)εηŸ³ι”―$()。", + "title": "加ε·₯ε·₯ε…·" + }, + { + "type": "tfc:knapping_recipe", + "anchor": "blowpipe", + "recipe": "tfc:clay_knapping/blowpipe", + "text": "ζœ€ι‡θ¦ηš„ε·₯ε…·ζ˜―$(thing)吹风η‘$()γ€‚ι€šθΏ‡ι»εœŸ$(thing)捏刢$()εˆΆδ½œε‡Ίζ¨‘ε…·εŽεœ¨ηƒ§εˆΆζˆ$(thing)ι™Άη“·εΉι£Žη‘$()即可。" + }, + { + "type": "tfc:anvil_recipe", + "recipe": "tfc:anvil/blowpipe", + "text": "ι™Άη“·εΉι£Žη‘ζ˜“η’ŽοΌŒδ½Ώη”¨ζ—Άζœ‰ζ¦‚ηŽ‡η ΄ζŸγ€‚ζ›΄ε―ι ηš„ι€‰ζ‹©ζ˜―η”¨$(thing)ι»„ι“œζ†$()在砧上$(l:mechanics/anvils#working)ι”»ι€ $()δΈ€ζ”―εΉι£Žη‘。" + }, + { + "type": "patchouli:crafting", + "anchor": "paddle", + "recipe": "tfc:crafting/paddle", + "text": "$(thing)ηŽ»η’ƒεŽ‹ζΏ$()可δ»₯用ζ₯ε°†ηŽ»η’ƒ$(thing)εŽ‹εΉ³$()οΌŒε―η”¨ζœ¨ζεˆΆδ½œγ€‚" + }, + { + "type": "tfc:welding_recipe", + "anchor": "jacks", + "recipe": "tfc:welding/jacks", + "text": "$(thing)ηŽ»η’ƒε€Ήι’³$()ε―θΏ›θ‘Œ$(thing)ζŒ€εŽ‹$()οΌŒιœ€θ¦ε°†δΈ€ζ Ήι»„ι“œζ†η„ŠζŽ₯εœ¨δΈ€θ΅·γ€‚" + }, + { + "type": "patchouli:crafting", + "anchor": "saw", + "recipe": "tfc:crafting/gem_saw", + "text": "$(thing)εηŸ³ι”―$()ζ˜―η”¨ζ₯ζ‰§θ‘Œ$(thing)锯割$()ζ“δ½œηš„γ€‚εηŸ³ι”―还可δ»₯用ζ₯ζŒ–ζŽ˜$(thing)ηŽ»η’ƒε—$()ε’Œ$(thing)ηŽ»η’ƒζΏ$()θ€ŒδΈδ½Ώε…ΆζŸεγ€‚" + }, + { + "type": "patchouli:text", + "text": "ι¦–ε…ˆοΌŒε°†θ£…ζœ‰ηŽ»η’ƒεŽŸζ–™ηš„εΉι£Žη‘εŠ ηƒ­εˆ°θ‡³ε°‘$(4)$(bold)ζ·‘ηΊ’$()γ€‚ιšεŽε°†εΉη‘η½δΊŽ$(thing)副手$()οΌŒζŒη»­ζŒ‰δ½$(item)$(k:key.use)$()δ»₯ζ‰§θ‘Œζ―δΈͺζ­₯ιͺ€$()。$(br)使用$(item)$(k:key.swapOffhand)$()可将炽热吹η‘εΏ«ι€Ÿη§»θ‡³ε‰―ζ‰‹γ€‚$(br2)$(bold)吹气$()$(br)ζ‰‹ζŒ$(thing)吹η‘$()ζ—ΆδΏζŒζ­£ε―Ήε‰ζ–Ήθ§†θ§’δ½Ώη”¨γ€‚$(br2)$(bold)拉伸$()$(br)ζ‰‹ζŒ$(thing)吹η‘$()ζ—ΆδΏζŒζœε‘ζ­£δΈ‹ζ–Ήθ§†θ§’δ½Ώη”¨γ€‚", + "title": "ε¦‚δ½•εˆΆδ½œηŽ»η’ƒ" + }, + { + "type": "patchouli:text", + "text": "$(bold)εΉ³ζ•΄$()$(br)ε‰―ζ‰‹ζŒζœ‰$(l:mechanics/glassworking#paddle)ηŽ»η’ƒεŽ‹ζΏ$()既使用$(thing)吹风η‘$()。$(br2)$(bold)ζŒ€εŽ‹$()$(br)ε‰―ζ‰‹ζŒζœ‰$(l:mechanics/glassworking#jacks)ηŽ»η’ƒε€Ήι’³$()既使用$(thing)吹风η‘$()。$(br2)$(bold)锯割$()$(br)ε‰―ζ‰‹ζŒζœ‰$(l:mechanics/glassworking#saw)εηŸ³ι”―$()既使用$(thing)吹风η‘$()。$(br2)$(bold)翻转$()$(br)ε‰―ζ‰‹ζŒζœ‰$(l:mechanics/weaving#wool_cloth)ηΎŠζ―›εΈƒ$()既使用$(thing)吹风η‘$()。" + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tfc:powder/lime": 2, + "tfc:powder/soda_ash": 3, + "tfc:paddle": 7, + "tfc:jacks": 8, + "tfc:gem_saw": 9 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/glassworking_applications.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/glassworking_applications.json new file mode 100644 index 000000000..f3c2af60f --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/glassworking_applications.json @@ -0,0 +1,434 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "ηŽ»η’ƒεˆΆε“", + "category": "tfc:mechanics", + "icon": "minecraft:glass", + "pages": [ + { + "type": "patchouli:text", + "text": "ζœ€εŸΊη‘€ηš„ηŽ»η’ƒεˆΆε“ζ˜―$(thing)ηŽ»η’ƒζΏ$()ε’Œ$(thing)ηŽ»η’ƒε—$()。将$(thing)ηŽ»η’ƒεŽŸζ–™$()θ£…εœ¨$(l:mechanics/glassworking#blowpipe)吹风η‘$()上,就可δ»₯θΏ›θ‘Œ$(thing)桇筑$()了。$(br)$(li)$(bold)台式桇筑$()ζ³•ε―εˆΆδ½œ$(thing)ηŽ»η’ƒζΏ$()$(li)$(bold)盆式桇筑$()ζ³•ε―εˆΆδ½œ$(thing)ηŽ»η’ƒε—$()" + }, + { + "type": "patchouli:text", + "text": "εœ¨θΏ›θ‘Œζ΅‡η­‘δΉ‹ε‰οΌŒε―δ»₯ε…ˆε―ΉηŽ»η’ƒθΏ›θ‘Œ$(thing)ζŸ“θ‰²$()γ€‚ηŽ»η’ƒηš„ι’œθ‰²ζ˜―η”±ζ‰€η”¨ηŽ»η’ƒεŽŸζ–™ηš„η±»εž‹οΌŒδ»₯及加ε·₯ζ—ΆεŠ ε…₯ηš„ζ·»εŠ ε‰‚η²‰ζœ«ε†³εšηš„。$(br2)ζ―η§η±»εž‹ηš„$(thing)ηŽ»η’ƒεŽŸζ–™$()都ζ‹₯ζœ‰θ‡ͺε·±ηš„θ‡ͺη„Άι’œθ‰²οΌŒδΈ”εͺθƒ½ζŸ“ζˆζŸδΊ›η‰Ήεšηš„ι’œθ‰²γ€‚$(thing)δΊŒζ°§εŒ–η‘…$()ε’Œ$(thing)θ΅€ι“ηŸΏ$()ηŽ»η’ƒε―δ»₯θ’«ζŸ“ζˆθΈε€šι’œθ‰²οΌŒθ€Œ$(thing)橄榄岩$()ε’Œ$(thing)火山岩$()ηŽ»η’ƒεˆ™εͺθƒ½θ’«ζŸ“ζˆθΎƒε°‘ηš„ε‡ η§ι’œθ‰²γ€‚" + }, + { + "type": "patchouli:text", + "text": "$(thing)ηŽ»η’ƒζΏ$()ζ˜―η”¨$(thing)台式桇筑$()ζ³•εˆΆζˆηš„γ€‚ε°†ζœ€ε€š16块$(thing)ι•€ι»„ι“œε—$()ζ”Ύη½εœ¨η»ŸδΈ€εΉ³ι’δ»₯ε½’ζˆδΈ€ε—ζ΅‡η­‘εΉ³ε°εŽοΌš$(br) 1、将$(l:mechanics/glassworking)ηŽ»η’ƒεŽŸζ–™$()θ£…ε…₯$(thing)吹风η‘$()οΌ›$(br) 2γ€ε°†εΉι£Žη‘εŠ ηƒ­θ‡³θ‡³ε°‘$(4)$(bold)ζ·‘ηΊ’$()οΌ›$(br) 3、$()对准桇筑平台$(item)$(k:key.use)$()点击$(thing)吹风η‘$()οΌ›$(br) 4γ€ζ‰‹ζŒ$(l:mechanics/glassworking#paddle)ηŽ»η’ƒεŽ‹ζΏ$()$(item)$(k:key.use)$()η‚Ήε‡»εΉ³ε°δΈŠηš„ηŽ»η’ƒεŽŸζ–™δ»₯ε°†ηŽ»η’ƒεΉ³ι“Ίεœ¨ζ•΄δΈͺ平台葨青。", + "title": "台式桇筑" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "mapping": { + "C": "#tfc:glass_pouring_table", + "0": "#tfc:glass_pouring_table" + }, + "pattern": [ + [ + "CCCC", + "CCC0", + "CCCC", + "CCCC" + ] + ] + }, + "text": "εΎ…ηŽ»η’ƒε†·ε΄δΉ‹εŽοΌŒη”¨$(l:mechanics/glassworking#saw)εηŸ³ι”―$()ε°±θƒ½ε°†ε…Άδ»ŽεΉ³ε°δΈŠζ”Άι›†δΈ‹ζ₯了。", + "border": true + }, + { + "type": "patchouli:text", + "text": "$(thing)ηŽ»η’ƒε—$()εˆ™ιœ€θ¦η”¨$(thing)盆式桇筑$()ζ³•εˆΆδ½œγ€‚η”¨5块$(thing)ι•€ι»„ι“œε—$()将一块空气围衷ζ₯后:$(br) 1、将$(l:mechanics/glassworking)ηŽ»η’ƒεŽŸζ–™$()θ£…ε…₯$(thing)吹风η‘$()οΌ›$(br) 2γ€ε°†εΉι£Žη‘εŠ ηƒ­θ‡³θ‡³ε°‘$(4)$(bold)ζ·‘ηΊ’$()οΌ›$(br) 3、对准盆内部$(item)$(k:key.use)$()点击$(thing)吹风η‘$()。", + "title": "盆式桇筑" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "mapping": { + "C": "#tfc:glass_basin_blocks", + "0": "#tfc:glass_basin_blocks" + }, + "pattern": [ + [ + " C ", + "C C", + " C " + ], + [ + " ", + " 0 ", + " " + ] + ] + }, + "text": "εΎ…ηŽ»η’ƒε†·ε΄δΉ‹εŽοΌŒη”¨$(l:mechanics/glassworking#saw)εηŸ³ι”―$()ε°±θƒ½ε°†ε…Άδ»ŽεΉ³ε°δΈŠζ”Άι›†δΈ‹ζ₯了。", + "border": true + }, + { + "type": "patchouli:crafting", + "title": "ηŽ»η’ƒεŠ ε·₯方块", + "recipe": "tfc:crafting/white_kaolin_clay", + "text": "$(thing)ι•€ι»„ι“œε—$() ε―ι€šθΏ‡ζ‰‹ζŒ $(thing)ι»„ι“œζΏ$() εΉΆ $(item)$(k:key.use)$() εœ¨δ»»ζ„ $(thing)ηŸ³η –$() δΈŠεˆζˆγ€‚" + }, + { + "type": "patchouli:text", + "anchor": "coloring", + "text": "ζ Ήζζ‰€ι€‰$(l:mechanics/glassworking)ηŽ»η’ƒεŽŸζ–™$()ζ€§θ΄¨οΌŒηŽ»η’ƒδΌšζ‹₯ζœ‰δΈ€η§θ‡ͺη„Άηš„ι’œθ‰²γ€‚θ¦ε°†ηŽ»η’ƒζŸ“ζˆε…Άδ»–ι’œθ‰²οΌŒιœ€θ¦ε‡†ε€‡δΈ€εͺ$(l:mechanics/bowls)η’—$()。$(br2)ε°†$(l:mechanics/bowls)η’—$()ζ”Ύεœ¨εœ°δΈŠοΌŒεŠ ε…₯ζ‰€ιœ€ηš„$(thing)η²‰ζœ«$()οΌŒιšεŽη”¨θ£…εœ¨$(thing)吹风η‘$()δΈŠηš„ηŽ»η’ƒεŽŸζ–™θ˜Έε–δΈ€δΊ›η²‰ζœ«γ€‚", + "title": "ηŽ»η’ƒζŸ“θ‰²" + }, + { + "type": "patchouli:text", + "text": "$(li)$(bold)$(7)白色$()οΌšδΊŒζ°§εŒ–η‘…/θ΅€ι“ηŸΏηŽ»η’ƒ+$(thing)桷草粉$()$(li)$(bold)$(0)黑色$()οΌšδ»»δ½•ηŽ»η’ƒ+$(thing)ηŸ³ε’¨η²‰$()$(li)$(bold)$(8)灰色$()οΌšδ»»δ½•ηŽ»η’ƒ+$(thing)石咨$()+$(thing)桷草粉$()$(li)$(bold)$(7)淑灰色$()οΌšδ»»δ½•ηŽ»η’ƒ+$(thing)ηŸ³ε’¨η²‰$()+2x$(thing)桷草粉$()$(li)$(bold)$(5)紫色$()οΌšδ»»δ½•ηŽ»η’ƒ+$(thing)铁粉$()+$(thing)ι“œη²‰$()$(li)$(bold)$(#964b00)棕色$()οΌšδ»»δ½•ηŽ»η’ƒ+$(thing)镍粉$()$(li)$(bold)$(3)青色$()οΌšιžη«ε±±ε²©ηŽ»η’ƒ+$(thing)ι“œη²‰$()+$(thing)蓝εηŸ³η²‰$()$(li)$(bold)$(2)绿色$()οΌšδΊŒζ°§εŒ–η‘…/θ΅€ι“ηŸΏηŽ»η’ƒ+$(thing)铁粉$()", + "title": "ζŸ“θ‰²ι…ζ–Ή" + }, + { + "type": "patchouli:text", + "text": "$(li)$(bold)$(a)黄绿色$()οΌšδΊŒζ°§εŒ–η‘…/θ΅€ι“ηŸΏηŽ»η’ƒ+$(thing)铁粉$()+$(thing)桷草粉$()$(li)$(bold)$(b)淑蓝色$()οΌšδΊŒζ°§εŒ–η‘…ηŽ»η’ƒ+$(thing)ι’ι‡‘ηŸ³η²‰$()$(li)$(bold)$(1)蓝色$()οΌšδΊŒζ°§εŒ–η‘…ηŽ»η’ƒ+$(thing)ι“œη²‰$()$(li)$(bold)$(4)纒色$()οΌšδΊŒζ°§εŒ–η‘…/θ΅€ι“ηŸΏηŽ»η’ƒ+$(thing)锑粉$()$(li)$(bold)$(6)黄色$()οΌšδΊŒζ°§εŒ–η‘…/θ΅€ι“ηŸΏηŽ»η’ƒ+$(thing)铢粉$()$(li)$(bold)$(#ef8e38)橙色$()οΌšδΊŒζ°§εŒ–η‘…ηŽ»η’ƒ+$(thing)ι»„ι“ηŸΏη²‰$()$(li)$(bold)$(5)品纒色$()οΌšδΊŒζ°§εŒ–η‘…/θ΅€ι“ηŸΏηŽ»η’ƒ+$(thing)ηΊ’εηŸ³η²‰$()$(li)$(bold)$(d)粉纒色$()οΌšδΊŒζ°§εŒ–η‘…ηŽ»η’ƒ+$(thing)金粉$()$(li)$(bold)$(0)ιε…‰$()οΌšιžδΊŒζ°§εŒ–η‘…ηŽ»η’ƒ+$(thing)紫水晢粉$()" + }, + { + "type": "tfc:table_small", + "strings": [ + { + "text": "" + }, + { + "text": "C" + }, + { + "text": "T" + }, + { + "fill": "0xff42f2" + }, + { + "fill": "0x8af3ff" + }, + { + "fill": "0x526cff" + }, + { + "fill": "0xe3e3e3" + }, + { + "fill": "0xe69407" + }, + { + "fill": "0xc738c9" + }, + { + "fill": "0xffe81c" + }, + { + "fill": "0x48ff1f" + }, + { + "fill": "0xe01414" + }, + { + "fill": "0x0c9400" + }, + { + "fill": "0x188a9e" + }, + { + "fill": "0x7d4f00" + }, + { + "fill": "0x6e059c" + }, + { + "fill": "0x7d7d7d" + }, + { + "fill": "0xbdbdbd" + }, + { + "fill": "0x000000" + }, + { + "text": "δΊŒζ°§εŒ–η‘…" + }, + { + "fill": "0x3d42a8" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "text": "θ΅€ι“ηŸΏ" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3d42a8" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "text": "ζ©„ζ¦„ηŸ³" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0x3d42a8" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "text": "火山岩" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0x3d42a8" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0xb33e3e" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + }, + { + "fill": "0x3eb340" + } + ], + "text": "ζ―η§εŽŸζ–™ε―εˆΆζˆηš„ζ‰€ζœ‰ηŽ»η’ƒι’œθ‰²γ€‚Cθ‘¨η€Ίι€ζ˜ŽηŽ»η’ƒοΌŒT葨瀺ιε…‰ηŽ»η’ƒγ€‚", + "title": "ε―εˆΆζˆηš„ηŽ»η’ƒι’œθ‰²", + "legend": [ + { + "text": "可刢作", + "color": "0x3eb340" + }, + { + "text": "不可刢作", + "color": "0xb33e3e" + }, + { + "text": "默θ€ι’œθ‰²", + "color": "0x3d42a8" + } + ], + "columns": 18, + "first_column_width": 35, + "column_width": 10, + "row_height": 10, + "left_buffer": 5, + "top_buffer": 15, + "draw_background": true + }, + { + "type": "patchouli:empty", + "draw_filler": false + }, + { + "type": "tfc:glassworking_recipe", + "anchor": "lamp_glass", + "recipe": "tfc:glassworking/lamp_glass", + "text": "$(thing)灯罩$()是$(l:mechanics/lamps)灯$()ηš„εΏ…θ¦ιƒ¨δ»Άγ€‚" + }, + { + "type": "tfc:glassworking_recipe", + "anchor": "jar", + "recipe": "tfc:glassworking/jar", + "text": "$(l:mechanics/jarring)ηŽ»η’ƒη½$()εͺθƒ½δ½Ώη”¨δΊŒζ°§εŒ–η‘…ηŽ»η’ƒζˆ–θ΅€ι“ηŸΏηŽ»η’ƒεˆΆζˆγ€‚" + }, + { + "type": "tfc:glassworking_recipe", + "anchor": "glass_bottle", + "recipe": "tfc:glassworking/silica_bottle", + "text": "$(thing)ηŽ»η’ƒη“Ά$()ηš„εΌΊεΊ¦ε–ε†³δΊŽεˆΆδ½œηŽ»η’ƒη“Άζ‰€η”¨ηš„ηŽ»η’ƒη§η±»γ€‚" + }, + { + "type": "tfc:glassworking_recipe", + "recipe": "tfc:glassworking/lens", + "text": "$(thing)ι€ι•œ$()ε―η”¨δΊŽεˆΆδ½œ$(thing)ζœ›θΏœι•œ$()ε’Œ$(thing)ζŒ‡ε—ι’ˆ$()等物品。" + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tag:tfc:glass_batches": 1, + "tag:forge:glass": 2 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/harvest_baskets.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/harvest_baskets.json new file mode 100644 index 000000000..5e5ba2164 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/harvest_baskets.json @@ -0,0 +1,26 @@ +{ + "name": "ζ”ΆθŽ·η―", + "icon": "tfg:harvest_basket", + "category": "tfc:mechanics", + "read_by_default": true, + "pages": [ + { + "type": "patchouli:spotlight", + "title": "ζ”ΆθŽ·η―", + "item": { + "tag": "tfg:harvester" + }, + "text": "专为身材ηŸε°θ€…θΎθ‘β€”β€”$(thing)ζ”ΆθŽ·η―$()ζ­£ζ˜―δ»Žζ ‘ζœ¨ε’ŒηŒζœ¨δΈŠι‡‡ζ‘˜ζžœεžηš„理想ε·₯具。$(br)使用既右ι”η‚Ήε‡»ζžœζ ‘ζˆ–ηŒζœ¨οΌŒ$(thing)εŠεΎ„7ζ Ό$()ε†…ηš„ζ‰€ζœ‰ζžœεžιƒ½ε°†θ’«ι‡‡ζ‘˜γ€‚" + }, + { + "type": "patchouli:text", + "text": "ζ™ι€šζ”ΆθŽ·η―ε…·ζœ‰$(thing)128$()η‚Ήθ€δΉ…εΊ¦οΌŒθ€Œι“εˆΆζ”ΆθŽ·η―δ½Ώη”¨ζ—ΆδΈδΌšζŸθ€—θ€δΉ…γ€‚ζ”ΆθŽ·η―也可蒫$(thing)ζœΊζ’°ζ‰‹$()η­‰θΎε€‡δ½Ώη”¨δ»₯εžηްθ‡ͺεŠ¨εŒ–ι‡‡ζ”ΆοΌŒζ­€θΏ‡η¨‹δΌšζ­£εΈΈζΆˆθ€—θ€δΉ…εΊ¦γ€‚" + }, + { + "type": "patchouli:crafting", + "title": "ζ”ΆθŽ·η―", + "recipe": "tfg:shaped/harvest_basket_from_papyrus", + "text": "εŸΊη‘€ζ¬Ύηš„$(item)ζ”ΆθŽ·η―$()ε―δ½Ώη”¨ζ΅Έζ³‘εŽηš„ηΊΈθŽŽθ‰ζˆ–η‘¬ζœ¨εˆΆδ½œγ€‚" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/papermaking.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/papermaking.json new file mode 100644 index 000000000..144dabd32 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/papermaking.json @@ -0,0 +1,161 @@ +{ + "name": "ι€ ηΊΈζœ―", + "category": "tfc:mechanics", + "icon": "tfc:unrefined_paper", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)ηΊΈ$()ζœ‰δΈ‰η§θŽ·ε–ζ–ΉεΌοΌšι€šθΏ‡εŠ ε·₯$(l:mechanics/crops#papyrus)ηΊΈθŽŽθ‰$()ηš„θŒŽζ₯εˆΆδ½œθŽŽθ‰ηΊΈοΌŒι€šθΏ‡εŠ ε·₯$(l:mechanics/papermaking#parchment)ε…½ηš$()ζ₯刢作羊ηšηΊΈοΌŒζˆ–经过$(l:mechanics/papermaking#paperfromwood)η‰Ήεšζœ¨ζηš„倍杂ε·₯序$()εˆΆζˆγ€‚ηΊΈε―η”¨δΊŽεˆΆδ½œ$(thing)δΉ¦$()ε’Œ$(thing)εœ°ε›Ύ$()等书写材料。。" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/papyrus_strips", + "text": "ε…ˆη”¨$(thing)εˆ€$()ε°†ηΊΈθŽŽθ‰εˆ‡ζˆζ‘γ€‚" + }, + { + "type": "tfc:sealed_barrel_recipe", + "recipe": "tfc:barrel/soaked_papyrus_strip", + "text": "η„ΆεŽοΌŒε°†ηΊΈθŽŽθ‰ζ‘ζ΅Έε…₯θ£…ζœ‰$(thing)ζ·‘ζ°΄$()$(l:mechanics/barrels)ε€§ζ‘Ά$()中。" + }, + { + "type": "tfc:loom_recipe", + "recipe": "tfc:loom/unrefined_paper", + "text": "将桸泑ε₯½ηš„ηΊΈθŽŽθ‰ζ‘η”¨η»‡εΈƒζœΊηΌ–η»‡ζˆ$(thing)η²—εˆΆηΊΈ$()γ€‚ζœ€εŽοΌŒε°†η²—εˆΆηΊΈεœ¨δΈ€ζ ΉεŽŸζœ¨δΈŠε±•εΌ€οΌŒη”¨ε°εˆ€$(l:mechanics/leather_making#scraping)εˆεŽ»$()ε…Άθ‘¨ε±‚θΏ›θ‘Œε‰–ε…‰οΌŒε°±θƒ½εΎ—εˆ°ε―δ»₯δ½Ώη”¨ηš„$(thing)ηΊΈ$()了。" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/vanilla/map", + "recipe2": "tfc:crafting/vanilla/name_tag" + }, + { + "type": "patchouli:crafting", + "recipe": "minecraft:writable_book", + "recipe2": "minecraft:book" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/wood/pine_lectern", + "recipe2": "tfc:crafting/wood/kapok_bookshelf" + }, + { + "type": "patchouli:text", + "text": "δΈ‹δΈ€ι‘΅δΌšθ²θΏ°ε¦‚δ½•εˆΆδ½œηΎŠηšηΊΈγ€‚" + }, + { + "type": "patchouli:text", + "anchor": "parchment", + "text": "$(thing)羊ηšηΊΈ$()是δ»₯$(l:mechanics/leather_making)εˆεˆΆε…½ηš$()δΈΊδΈ»θ¦εŽŸζ–™οΌŒδ»₯εŠε‡ η§ε…Άδ»–ζζ–™εˆΆζˆηš„ηΊΈγ€‚ι¦–ε…ˆοΌŒιœ€θ¦ε…ˆζ”Άι›†$(thing)ζ΅ηŸ³$()δ»₯δΎΏθ½―εŒ–ε…½ηšγ€‚ζ΅ηŸ³δΌšη”Ÿζˆεœ¨$(l:the_world/geology)火山$()ε››ε‘¨οΌŒδΉŸε―δ»₯ι€šθΏ‡εœ¨ε‰ε±±ε²©γ€ζ΅ηΊΉε²©ζˆ–θ‹±ε‰ε²©εœ°εŒΊηš„ζ²³ζ΅δΈ­ζ”Άι›†ηŸΏη‰©ζ²‰η§―η‰©οΌŒεΉΆη”¨$(l:mechanics/sluices)ζ΄—ηŸΏζ§½$()ζˆ–$(l:mechanics/panning)ζ·˜ι‡‘η›˜$()ε€„η†θŽ·εΎ—γ€‚", + "title": "羊ηšηΊΈ" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + "X" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:groundcover/pumice" + } + }, + "name": "ζ΅ηŸ³", + "text": "εœ°δΈŠηš„ζ΅ηŸ³", + "enable_visualize": false + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/large_treated_hide", + "text": "ε°†ζ΅ηŸ³γ€εˆεˆΆε…½ηšδΈŽδΈ€ζŠŠι”€εˆζˆε°±θƒ½εΎ—εˆ°$(thing)η³ŠεŒ–ε…½ηš$()。" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/parchment", + "text": "ζœ€εŽοΌŒε°†η³ŠεŒ–ε…½ηšγ€$(l:mechanics/glassworking#lime)ηŸ³η°η²‰$()γ€ι’η²‰ε’ŒδΈ€εͺζ–°ι²œιΈ‘θ›‹ζ‰“εœ¨δΈ€θ΅·ε°±θƒ½η”ŸδΊ§ε‡Ίε―η”¨ηš„ηΎŠηšηΊΈδΊ†γ€‚" + }, + { + "type": "patchouli:text", + "anchor": "paperfromwood", + "text": "$(thing)ζœ¨ζι€ ηΊΈ$()ζ˜―δΈ€η§ε€θ€ε·₯θ‰ΊοΌŒιœ€ε°†εšεžζœ¨ζεŠ ε·₯ζˆθ–„η‰‡οΌŒεˆ†θ§£δΈΊηΊΈζ΅†εŽη»εŽ‹εˆΆγ€εΉ²η‡₯与εˆεˆΆθ€Œζˆγ€‚$(br2)ζ³¨ζ„θΎƒθ½―ηš„ζœ¨ζδΈι€‚η”¨δΊŽι€ ηΊΈγ€‚", + "title": "ζœ¨ζι€ ηΊΈ" + }, + { + "type": "patchouli:text", + "text": "ι¦–ε…ˆδ½ ιœ€θ¦ζ‰Ύεˆ°η‘¬ζœ¨οΌš$(br2)ι‡‘εˆζ¬’ζœ¨$(br)ι»‘ζ’£ζœ¨$(br)山杨木$(br)η™½ζ‘¦ζœ¨$(br)ι»‘ζͺ€ζœ¨$(br)ζ —ζœ¨$(br)ε±±ζ Έζ‘ƒζœ¨$(br)枫木$(br)橑木$(br)θ”·θ–‡ζœ¨$(br)ζ‚¬ι“ƒζœ¨" + }, + { + "type": "patchouli:spotlight", + "title": "去ηšη‘¬ζœ¨", + "item": { + "tag": "tfg:stripped_hardwood" + }, + "text": "第一ζ­₯ζ˜―εŽ»ι™€ $(thing)瑬木$() ηš„ε€–ηšδ»₯ζ˜Ύιœ²ε†…ιƒ¨ηΊ€η»΄γ€‚δ½ ε―δ»₯ι€šθΏ‡ζ”Ύη½εŽŸζœ¨εŽζ‰‹ζŒζ–§ε€΄ε³ι”点击εŒζˆεŽ»ηšγ€‚" + }, + { + "type": "patchouli:crafting", + "title": "瑬木村", + "recipe": "tfg:crafting/strip_hardwood", + "text": "ζŽ₯η€οΌŒη”¨ζ–§ε€΄εˆ‡ε‰Šε·²εŽ»ηšηš„ζœ¨ζεΎ—εˆ° $(item)瑬木村$()γ€‚θΏ™δΉŸε―δ»₯δ½Ώη”¨ζ–§ε…·ζˆ–ζ›΄η²Ύε―†ηš„ζ–Ήζ³•εŒζˆγ€‚" + }, + { + "type": "tfc:sealed_barrel_recipe", + "title": "桸泑瑬木村", + "recipe": "tfg:barrel/soak_hardwood_strip", + "text": "ε°†η‘¬ζœ¨ζ‘ζ”Ύε…₯η››ζœ‰$(thing)ζ·‘ζ°΄$()ηš„$(l:mechanics/barrels)倧木摢$()中桸泑,歀ζ­₯ιͺ€ε°†$(thing)ε‰ŠεΌ±ζœ¨ζη»“ζž„εΌΊεΊ¦$()δ»₯δΎΏ$(thing)θΏ›δΈ€ζ­₯εˆ†θ§£$()。" + }, + { + "type": "tfc:quern_recipe", + "recipe": "tfg:quern/soaked_hardwood_strip", + "title": "η‘¬ζœ¨ζ΅†", + "text": "ιšεŽδ½Ώη”¨$(l:mechanics/quern)ζ‰‹ζŽ¨η£¨$()ε°†ζ΅Έζ°΄η‘¬ζœ¨ζ‘η£¨η’Žζˆ$(item)η‘¬ζœ¨ζ΅†$()" + }, + { + "type": "patchouli:crafting", + "recipe": "gtceu:shaped/small_dust_assembling_hardwood", + "title": "纸框堆叠", + "text": "ζ‰‹ζŽ¨η£¨εͺδΊ§ε‡Ίε°ε †ηΊΈζ΅†οΌŒιœ€θ¦εœ¨$(thing)ε·₯作台$()δΈŠε°†ε…ΆεˆεΉΆγ€‚ζ›΄η²Ύε―†ηš„η²‰η’Žε·₯θ‰Ίθƒ½ζε‡ηΊΈζ΅†ηš„δΊ§ι‡γ€‚" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:thermochemically_treated_hardwood_dust", + "title": "ηΊΈζ΅†εˆ†θ§£", + "text": "在继续加ε·₯ζˆηΊΈεΌ ε‰οΌŒεΏ…ι‘»η”¨$(thing)η’±ζΆ²$()在$(l:firmalife/oven_appliances#vat)δΈι”ˆι’’ι”…$()ζˆ–$(l:mechanics/pot)ι™Άι”…$()δΈ­ζ²Έη…框料δ»₯θΏ›δΈ€ζ­₯εˆ†θ§£γ€‚" + }, + { + "type": "patchouli:empty" + }, + { + "type": "patchouli:spotlight", + "item": "tfg:soaked_unrefined_paper", + "title": "ηΊΈζ΅†εŽ‹εˆΆ", + "text": "经过璱梲沸η…εˆ†θ§£εŽοΌŒ$(item)ηƒ­εŒ–ε­¦ε€„η†η‘¬ζœ¨ζ΅†$()ε―θ’«εŽ‹εˆΆζˆδΈ€εΌ $(item)ζ΅Έζ³‘η²—εˆΆηΊΈ$()" + }, + { + "type": "tfc:anvil_recipe", + "recipe": "tfg:anvil/soaked_unrefined_paper", + "text": "你可δ»₯使用$(l:mechanics/anvils)η §$()ε°†ηΊΈζ΅†ζΆζ‰“ζˆθ–„η‰‡γ€‚" + }, + { + "type": "patchouli:spotlight", + "title": "ζ‘Άε†…θΈ©εŽ‹", + "item": { + "tag": "firmalife:stomping_barrels" + }, + "text": "ζ›Ώδ»£ζ–Ήζ‘ˆζ˜―εœ¨ $(l:firmalife/wine)踩踏摢$()δΈ­θΈ©θΈηƒ­εŒ–ε­¦ε€„η†η‘¬ζœ¨ζ΅†γ€‚" + }, + { + "type": "tfc:drying_recipe", + "recipe": "tfg:drying/unrefined_paper", + "text": "ζœ€εŽι€šθΏ‡$(l:firmalife/drying)ζ™Ύζ™’$()ε°†$(item)ζ΅Έζ³‘η²—εˆΆηΊΈ$()θ½¬εŒ–δΈΊ$(item)η²—εˆΆηΊΈ$()οΌŒε†ζŒ‰ε‰θΏ°ζ–Ήζ³•εˆεˆΆδΈΊ$(item)ηΊΈ$()" + }, + { + "type": "patchouli:text", + "title": "η€εŒ–ζ­₯ιͺ€...?", + "text": "ιšη€η§‘ζŠ€ζ ‘ε‡ηΊ§οΌŒδ½ θƒ½δ»₯ζ›΄ε°‘ηš„ζ­₯ιͺ€εžηŽ°ζœ¨ζι€ ηΊΈοΌŒθ―·ζŸ₯ι˜… $(thing)EMI$()δΊ†θ§£δΈεŒζœ¨ζι€ ηΊΈζ–Ήζ‘ˆγ€‚" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/prospecting.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/prospecting.json new file mode 100644 index 000000000..1951c0d5a --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/prospecting.json @@ -0,0 +1,92 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "ε‹˜ζŽ’", + "category": "tfc:mechanics", + "icon": "tfc:metal/propick/wrought_iron", + "pages": [ + { + "type": "patchouli:text", + "text": "你还θ°εΎ—δ½ ζ˜―在ε“ͺι‡Œζ‘εˆ°ι‚£δΊ›$(l:getting_started/finding_ores)ε°ηŸΏη²’$()ηš„οΌŒε―Ήε§οΌŸε―»ζ‰Ύζ›΄ε€šηŸΏηŸ³ιœ€θ¦θŠ±θ΄Ήε€§ι‡η²ΎεŠ›ζ₯ε‹˜ζŽ’ε’ŒεΌ€ι‡‡γ€‚ηŽ°εœ¨οΌŒδ½ εΊ”θ―₯ε·²η»ι€šθ―»$(l:tfg_ores/earth_ore_index)εœ°ηƒηŸΏη‰©η΄’εΌ•$()θΏ™δΈ€η« θŠ‚γ€‚δ½ εΊ”θ―₯ζ˜Žη™½οΌŒε¦‚ζžœδ½ εœ¨ε―»ζ‰Ύη‰Ήεšηš„ηŸΏηŸ³οΌŒεˆ™εΏ…ι‘»ε…ˆζ‰Ύεˆ°εƒη”Ÿζˆηš„ε²©ηŸ³η±»εž‹β€”β€”δΈθΊζ˜―就在你εΆι—¨ε£οΌŒζˆ–ζ˜―εƒι‡ŒδΉ‹ε€–γ€‚" + }, + { + "type": "patchouli:text", + "text": "ε½“δ»…ι ζ‘ζ‹Ύε°ηŸΏη²’δΈθƒ½ζ»‘θΆ³δ½ ηš„ε‘ε±•ιœ€θ¦ζ—Άε°±εΊ”θ€ƒθ™‘εΌ€ε§‹ε‹˜ηŸΏδΊ†γ€‚$(br)$(li)ε°ηŸΏη²’γ€θ‘¨ι’θŠ½γ€εœ°θ‘¨ε²©ηŸ³εͺδΌšεœ¨δΈ‹ζ–Ήζœ‰ηŸΏθ„‰ζ—Άζ‰δΌšε‡ΊηŽ°γ€‚ε½“εœ°θ‘¨δΈŠζœ‰δΈ€η‰‡ηŸΏη²’ζ—ΆοΌŒεƒδ»¬ηš„ε‡ δ½•δΈ­εΏƒηš„ζ­£δΈ‹ζ–ΉεΎˆε―θƒ½ε°±ζœ‰δΈ€ζ”―ηŸΏθ„‰γ€‚$(li)ζœ‰δΊ›ζ—Άε€™οΌŒηŸΏηŸ³δΉŸδΌšζš΄ιœ²εœ¨ζ–­ε΄–ζˆ–ζ°΄εΊ•οΌŒθΏ™η§ηŸΏθ„‰ε°±εΎˆε₯½ε‘ηŽ°δΊ†γ€‚" + }, + { + "type": "patchouli:spotlight", + "anchor": "propick", + "item": "tfc:metal/propick/copper", + "title": "ε‹˜ηŸΏι•", + "link_recipes": false, + "text": "θ‹₯δ½ ζ­£εœ¨ε―»ζ‰ΎηŸΏθ„‰οΌŒδΈ”ζ— ζ³•ι€šθΏ‡ζŽ¨ζ΅‹εšδ½ζ—ΆοΌŒδΎΏζ˜―取出$(item)ε‹˜ηŸΏι•$()ηš„ζ—Άε€™δΊ†γ€‚θ‹₯δ½ η†Ÿζ‚‰εŽŸη‰ˆ$(thing)羀峦传说$()δΈ­ηš„εŸΊη‘€ε‹˜ηŸΏι•οΌŒε―θƒ½δΌšζƒŠθΆεœ°ε‘ηŽ°εƒδ»¬εœ¨$(thing)TFG$()ζ•΄εˆεŒ…δΈ­ηš„θΏδ½œζœΊεˆΆε·²ε½»εΊ•ι‡ζž„γ€‚" + }, + { + "type": "patchouli:text", + "text": "在$(thing)TFG$()中右ι”δ½Ώη”¨ε‹˜ηŸΏι•ζ—ΆοΌŒδΌšζ²Ώδ½ θ§†ηΊΏζ–Ήε‘ζŠ•ε°„δΈ€ι“ζŽ’ζ΅‹ε°„ηΊΏγ€‚ε°„ηΊΏηš„ε½εΊ¦δΈŽζ·±εΊ¦ε–ε†³δΊŽι•ηš„η­‰ηΊ§οΌˆθ―¦θ§ε…Άε·₯ε…·ζη€ΊοΌ‰γ€‚δΈεŒη­‰ηΊ§ηš„ε‹˜ηŸΏι•θΏ˜θƒ½ζδΎ›ηŸΏηŸ³ζ•°ι‡η»Ÿθ‘οΌŒη”šθ‡³ε―ζ˜Ύη€ΊηŸΏθ„‰ηš„$(thing)Xε°„ηΊΏ$()ι€θ§†ζŒ‡η€Ίε™¨γ€‚" + }, + { + "type": "patchouli:text", + "text": "δ½Ώη”¨ε‹˜ηŸΏι•ζ—Άε―θƒ½ζ˜Ύη€Ίδ»₯δΈ‹δΏ‘ζ―οΌš$(br)$(li)εœ¨θŠε€©ζ‘†δΈ­ζ˜Ύη€ΊηŸΏθ„‰ηš„$(thing)总储量$()、$(thing)ηŸΏηŸ³ζˆεˆ†$()εŠε„η±»ηŸΏηŸ³ηš„$(thing)具体数量$()$(li)$(thing)彩钒$()ζŽ’ηŸΏι•θΏ˜θƒ½εœ¨ηŸΏθ„‰$(thing)δΈ­εΏƒ$()ζ˜Ύη€Ίε€§εž‹Xε°„ηΊΏι€θ§†η²’ε­οΌŒζˆ–δΈΊζ―δΈͺηŸΏηŸ³ζ–Ήε—η”Ÿζˆ$(thing)εšδ½η²’子$()" + }, + { + "type": "patchouli:image", + "title": "ε‹˜ζŽ’θ€…θ§†θ§’", + "images": [ + "tfg:textures/gui/field_guide/prospecting/tfg_prospectors_pick_xray.png" + ], + "border": true, + "text": "δ½Ώη”¨ε‹˜ηŸΏι•ζ—Άηš„ζ•ˆζžœε¦‚ε›Ύζ‰€η€Ίγ€‚ε€§εž‹$(bold)\"!\"$()ζ ‡θ―†η²’ε­δΈΊζ•΄ηŸΏθ„‰ι€θ§†ζ¨‘εΌοΌŒθΎƒε°ηš„η²’ε­εˆ™δΈΊι€ζ–Ήε—ι€θ§†ζ¨‘εΌγ€‚" + }, + { + "type": "tfc:knapping_recipe", + "recipe": "tfc:clay_knapping/propick_head_mold", + "text": "θ¦εˆΆδ½œε‹˜ηŸΏι•οΌŒδ½ ε―δ»₯η”¨ι»εœŸζŒ‰δΈŠε›Ύ$(l:getting_started/pottery)捏刢$()ζˆδΈ€δΈͺζœͺηƒ§εˆΆηš„ε‹˜ηŸΏι•ε€΄ζ¨‘ε…·γ€‚" + }, + { + "type": "tfc:heat_recipe", + "recipe": "tfc:heating/propick_head_mold", + "text": "樑具$(l:getting_started/pottery)捏刢$()εŒδΉ‹εŽθΏ˜ιœ€θ¦$(l:mechanics/heating)ηƒ§εˆΆ$()。$(br2)ε°†ζΆ²ζ€ι‡‘ε±žε€’ε…₯εˆ°ηƒ§εˆΆε₯½ηš„樑具中就能$(l:getting_started/finding_ores#casting)ι“Έι€ $()ε‡Ίε‹˜ηŸΏι•δΊ†γ€‚" + }, + { + "type": "tfc:anvil_recipe", + "recipe": "tfc:anvil/copper_propick_head", + "text": "ε‹˜ηŸΏι•ε€΄δΉŸε―δ»₯在$(l:mechanics/anvils)η §$()δΈŠδ½Ώη”¨δ»»δ½•ε―δ»₯εˆΆι€ ε·₯ε…·ηš„ι‡‘ε±ž$(thing)ι”­$()$(l:mechanics/anvils#working)ι”»ι€ $()θ€Œζˆγ€‚$(br2)ζœ€εŽη”¨ζœ¨ζ£ε’Œε·₯ε…·ε€΄εœ¨εˆζˆζ εˆζˆε°±θƒ½εšε‡Ίε‹˜ηŸΏι•δΊ†γ€‚" + }, + { + "type": "patchouli:text", + "text": "ε‹˜ηŸΏι•ηš„ε€§ιƒ¨εˆ†ζ•°ζε’Œη‰Ήζ€§ιƒ½ε―δ»₯εœ¨δ½ ηš„ζœεŠ‘ε™¨ι…η½ζ–‡δ»ΆδΈ­θΏ›θ‘Œθ°ƒζ•΄γ€‚" + }, + { + "type": "patchouli:spotlight", + "anchor": "prospector", + "item": "gtceu:prospector.lv", + "title": "ζ•°ε­—ε‹˜ηŸΏθ€…ηš„β€¦", + "link_recipes": false, + "text": "η§‘ζŠ€ζ—Άδ»£ε·²η„Άζ₯δΈ΄οΌιšδΉ‹θ€Œζ₯ηš„ζ˜―ζŽ’ε―»ηŸΏθ„‰ηš„ε…¨ζ–°ζ–ΉεΌοΌ$(br)$(item)排矿δ»ͺ$()是$(thing)ζ Όι›·η§‘ζŠ€$()ζδΎ›ηš„ηŸΏθ„‰δΈŽζ΅δ½“ηŸΏθ—ε‹˜ζŽ’ζ–Ήζ‘ˆγ€‚ε…ΆζŽ’ζ΅‹θŒƒε›΄δΈŽεŠŸθƒ½η”±$(#ff1100)η”΅εŽ‹η­‰ηΊ§$()决εšγ€‚" + }, + { + "type": "patchouli:image", + "title": "排矿δ»ͺ", + "images": [ + "tfg:textures/gui/field_guide/prospecting/tfg_luv_ore_prospector.png" + ], + "border": true, + "text": "θΏ™ζ˜―δ½ δ½Ώη”¨$(#e373ff)LuV 排矿δ»ͺ$()ζ—Άε―θƒ½δΌšηœ‹εˆ°ηš„δΈ€δΈͺ例子。" + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tfc:metal/propick/bismuth_bronze": 2, + "tfc:metal/propick/black_bronze": 2, + "tfc:metal/propick/bronze": 2, + "tfc:metal/propick/copper": 2, + "tfc:metal/propick/wrought_iron": 2, + "tfc:metal/propick/steel": 2, + "tfc:metal/propick/black_steel": 2, + "tfc:metal/propick/blue_steel": 2, + "tfc:metal/propick/red_steel": 2, + "gtceu:prospector.lv": 10, + "gtceu:prospector.hv": 10, + "gtceu:prospector.luv": 10 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/quern.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/quern.json new file mode 100644 index 000000000..0c0deddeb --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/quern.json @@ -0,0 +1,80 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "ζ‰‹ζŽ¨η£¨", + "category": "tfc:mechanics", + "icon": "tfc:quern", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)ζ‰‹ζŽ¨η£¨$()ζ˜―δΈ€η§η”¨δΊŽη ”η£¨η‰©ε“ηš„θ£…η½γ€‚εƒε―δ»₯η²‰η’Žη²—ηŸΏδ»₯η”¨δΊŽ$(l:tfg_ores/ore_basics#processing)加ε·₯$()οΌŒθΏ˜θƒ½εˆΆδ½œη²‰ζœ«γ€$(l:mechanics/dye)ζŸ“ζ–™$() δ»₯εŠε…Άδ»–η‰©ε“γ€‚εƒζ˜―η”±$(thing)εΊ•εΊ§$()ιƒ¨εˆ†ε’Œ$(thing)η£¨η›˜$()ιƒ¨εˆ†η»„εˆθ€Œζˆηš„γ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/quern", + "text": "εˆζˆεΊ•εΊ§ιœ€θ¦δΈ‰δΈͺ$(thing)εΉ³ζ»‘ε²©ηŸ³$()δ»₯εŠδ»»ζ„δΈ‰δΈͺ$(thing)岩石$()方块。$(br2)ηŸ³ε€΄ε―ι€šθΏ‡ $(l:getting_started/primitive_anvils#raw_rock)采集$() θŽ·εΎ—οΌŒθ€ŒεΉ³ζ»‘ε²©ηŸ³εˆ™ιœ€θ¦η”¨ $(l:mechanics/chisel)凿子$() 加ε·₯。" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/handstone", + "text": "ζ‰‹ζŽ¨η£¨θΏ˜ιœ€θ¦δΈ€δΈͺ$(thing)η£¨η›˜$()才能使用。" + }, + { + "type": "patchouli:image", + "images": [ + "tfc:textures/gui/book/tutorial/quern_empty.png" + ], + "text": "ε―Ήε‡†ζ‰‹ζŽ¨η£¨εΊ•εΊ§ηš„ι‘Άι’ζŒ‰$(item)$(k:key.use)$()ζ”ΎδΈŠη£¨η›˜γ€‚", + "border": true + }, + { + "type": "patchouli:image", + "images": [ + "tfc:textures/gui/book/tutorial/quern_add_item.png" + ], + "text": "ζ‰‹ζŒιœ€θ¦η ”η£¨ηš„η‰©ε“ε―Ήε‡†η£¨η›˜ι‘Άιƒ¨ηš„ε°ε­”ζŒ‰$(item)$(k:key.use)$()ζ”Ύε…₯。", + "border": true + }, + { + "type": "patchouli:image", + "images": [ + "tfc:textures/gui/book/tutorial/quern_handle.png" + ], + "text": "ε―Ήε‡†η£¨η›˜ηš„ζŠŠζ‰‹ζŒ‰$(item)$(k:key.use)$()旋转。", + "border": true + }, + { + "type": "patchouli:image", + "images": [ + "tfc:textures/gui/book/tutorial/quern_result.png" + ], + "text": "δΊ§ε“δΌšεœ¨ζ‰‹ζŽ¨η£¨εΊ•εΊ§ε‘¨ε›΄δΈ€εœˆε‡ΊηŽ°γ€‚$(item)$(k:key.use)$()点击底座就能取出。", + "border": true + }, + { + "type": "tfc:quern_recipe", + "title": "η²‰η’ŽηŸΏηŸ³", + "recipe": "tfg:quern/copper_crushed_ore_from_normal_raw_ore", + "text": "$(l:tfg_ores/ore_basics#processing)矿石$() ε―θ’«η²‰η’Žδ»₯θŽ·ε–ζ›΄ε€šηš„ι‡‘ε±žγ€‚" + }, + { + "type": "tfc:quern_recipe", + "title": "η²‰ζœ«", + "recipe": "tfg:quern/sulfur_powder", + "text": "ζ‰‹ζŽ¨η£¨ε―η”¨δΊŽε°†ηŸΏη²‰οΌˆε¦‚ $(thing)η‘«η£Ί$()οΌ‰εˆΆζˆε„η§ $(thing)η²‰ζœ«$()。$(thing)εηŸ³$() δΉŸε―θ’«η ”η£¨ζˆη²‰ζœ«γ€‚" + }, + { + "type": "tfc:quern_recipe", + "title": "ζŸ“ζ–™", + "recipe": "tfc:quern/red_dye", + "text": "$(l:mechanics/dye)ζŸ“ζ–™$()可δ»₯δ»ŽθŠ±δΈ­ζε–εΎ—εˆ°γ€‚" + }, + { + "type": "patchouli:spotlight", + "item": { + "tag": "tfc:foods/flour" + }, + "text": "$(thing)ε†œδ½œη‰©$() ε―η”¨εˆ€ε…·ζˆ–ζ‰‹ζŽ¨η£¨εŠ ε·₯成 $(thing)谷物$()οΌŒθΏ›δΈ€ζ­₯η ”η£¨ε―εΎ—εˆ° $(thing)青粉$()。" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/support_beams.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/support_beams.json new file mode 100644 index 000000000..ff85b5d33 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/support_beams.json @@ -0,0 +1,244 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "name": "ζ”―ζ’‘ζ’εŠε‘Œζ–Ή", + "category": "tfc:mechanics", + "icon": "tfc:wood/support/oak", + "pages": [ + { + "type": "patchouli:text", + "text": "ηΎ€ε³¦δΌ θ―΄δΈ­οΌŒε€©η„Άε²©ηŸ³εΉΆδΈη¨³εšοΌŒζœ‰ε‘η”Ÿ$(thing)ε‘Œζ–Ή$()ηš„ε±ι™©γ€‚ε¦‚ζžœδΈεŠ ι˜²θŒƒοΌŒ$(thing)ε€©η„Άε²©ηŸ³$()、$(thing)矿石$()、$(thing)εΉ³ζ»‘ε²©ηŸ³$()γ€ε’Œι’ŸδΉ³$(thing)石ι”₯$()η­‰ζ–Ήε—ιƒ½ε―θƒ½δ»Žε€©θ€Œι™οΌŒζŠŠδ½ η Έζˆθ‚‰ι₯ΌοΌ$(br2)δΈΊδΊ†ι˜²ζ­’ε‘η”ŸθΏ™η­‰ζƒ¨ε‰§οΌŒδ½ εΏ…ι‘»η‘δΏε‘¨ε›΄ηš„ζ–Ήε—ιƒ½$(thing)ε—εˆ°ζ”―ζ’‘$()。", + "title": "支撑撁" + }, + { + "type": "patchouli:text", + "text": "每欑玩εΆζŒ–ζŽ˜δ»»δ½•$(thing)ε€©η„Άε²©ηŸ³$()ζ—ΆοΌŒθ‹₯ι™„θΏ‘ε­˜εœ¨$(thing)ζœͺθ’«ζ”―ζ’‘ηš„$()ε€©η„Άε²©ηŸ³οΌŒε°±ζœ‰ε―θƒ½ε‘η”Ÿε‘Œζ–Ήγ€‚δΈ€ζ—¦ε‘Œζ–ΉεΌ€ε§‹οΌŒε³δΎΏζ˜―ε·²η»$(thing)ζœ‰ζ”―ζ’‘ηš„$()ε²©ηŸ³δΉŸε―θƒ½εΌ€ε§‹ε‘Œζ–Ήγ€‚$(br2)θ‡ͺη„Άη”Ÿζˆηš„ζ΄žη©΄ι‘Άιƒ¨ηš„ε²©ηŸ³$(thing)θ‡ͺ焢承重$()οΌŒζ— ιœ€δΊΊε·₯支撑。θ‹₯ε€©η„Άε²©ηŸ³ηš„ζ­£δΈ‹ζ–Ήε­˜εœ¨ζ— ζ³•ε‘η”Ÿε‘Œζ–Ήηš„ε›Ίδ½“ζ–Ήε—οΌŒι‚£δΉˆθΏ™δΈͺζ–Ήε—δΉŸθ’«η—δ½œζ˜―$(thing)θ’«ζ”―ζ’‘ηš„$()γ€‚ζ­€ε€–οΌŒδ½Ώη”¨$(thing)支撑撁$()可δ»₯δΈ€ζ¬‘ζ”―ζ’‘δΈ€ε€§η‰‡εŒΊεŸŸγ€‚" + }, + { + "type": "patchouli:text", + "text": "ζœ‰η­‰ηΊ§ηš„$(l:the_world/ores_and_minerals)矿石$()ε‘η”Ÿε‘Œζ–Ήζ—ΆοΌŒε…Άε“θ΄¨δΌšι™δ½ŽδΈ€ηΊ§β€”β€”ε―Œι›†ηŸΏδΌšε˜δΈΊζ™ι€šηŸΏοΌŒζ™ι€šηŸΏδΌšε˜δΈΊθ΄«η˜ ηŸΏοΌŒθ€Œθ΄«η˜ ηŸΏδΌšε˜δΈΊεœ†ηŸ³γ€‚ηŸΏη‰©εˆ™δΌšη›΄ζŽ₯θ½¬ε˜δΈΊεœ†ηŸ³γ€‚" + }, + { + "type": "patchouli:text", + "text": "ζ³₯εœŸγ€θ‰ζ–Ήε—γ€ι»εœŸγ€ζ²™η Ύγ€εœ†ηŸ³γ€ζ²™ε­η­‰ζ–Ήε—δΌšε—εˆ°ι‡εŠ›ε½±ε“γ€‚ε’ŒεŽŸη‰ˆδΈεŒοΌŒθΏ™δΊ›ζ–Ήε—δΈδ»…δΌšεž‚η›΄δΈ‹θ½οΌŒθΏ˜δΌšδ»ŽθΏ‡ι™‘ηš„ε‘δΈŠζ»‘θ½οΌŒι™€ιžε‘¨ε›΄ζœ‰ζ”―ζ’‘ζ–Ήε—γ€‚$(l:mechanics/sluices)ηŸΏηŸ³ζ²‰η§―η‰©$()δΉŸδΌšε‘η”Ÿζ»‘ε‘οΌŒδΈθΏ‡δΈδΌšε› ζ­€ζŸε€±ε“θ΄¨γ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "tfc:crafting/wood/oak_support", + "title": "支撑撁", + "text": "$(thing)支撑撁$()可δ»₯用$(thing)ι”―$()ε’Œδ»»ζ„η±»εž‹ηš„$(thing)原木$()εˆζˆγ€‚$(br2)εœ¨ε…Άδ»–ζ–Ήε—δΈŠζ”Ύη½$(thing)支撑撁$()就可δ»₯δΊ§η”ŸδΈ‰ζ Όι«˜ηš„εž‚η›΄ζ”―ζ’‘ζ’οΌŒεœ¨ζ’ηš„δΈ‹ζ–ΉεΏ…ι‘»ζœ‰ε›Ίδ½“ζ–Ήε—δ½œδΈΊζ”―ζ’‘γ€‚" + }, + { + "type": "tfc:multimultiblock", + "text": "ζ”Ύη½$(thing)ζ°΄εΉ³$()支撑撁可δ»₯连ζŽ₯距离不袅过 5 δΈͺζ–Ήε—ηš„δΈ€δΈͺ$(thing)εž‚η›΄$()ζ”―ζ’‘ζ’οΌˆε¦‚δΈŠε›Ύζ‰€η€ΊοΌ‰γ€‚", + "multiblocks": [ + { + "pattern": [ + [ + " ", + "CRD", + " " + ], + [ + " ", + "V W", + " " + ], + [ + " ", + "V W", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ], + [ + " ", + " ", + " " + ] + ], + "mapping": { + "R": "air", + "C": "air", + "D": "air", + "V": "air", + "W": "air", + "0": "tfc:rock/raw/andesite", + "G": "tfc:rock/raw/andesite" + } + }, + { + "pattern": [ + [ + " ", + "CRD", + " " + ], + [ + " ", + "V W", + " " + ], + [ + " ", + "V W", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ], + [ + " ", + " ", + " " + ] + ], + "mapping": { + "R": "air", + "C": "tfc:wood/vertical_support/oak", + "D": "air", + "V": "tfc:wood/vertical_support/oak", + "W": "air", + "0": "tfc:rock/raw/andesite", + "G": "tfc:rock/raw/andesite" + } + }, + { + "pattern": [ + [ + " ", + "CRD", + " " + ], + [ + " ", + "V W", + " " + ], + [ + " ", + "V W", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ], + [ + " ", + " ", + " " + ] + ], + "mapping": { + "R": "air", + "C": "tfc:wood/vertical_support/oak", + "D": "tfc:wood/vertical_support/oak", + "V": "tfc:wood/vertical_support/oak", + "W": "tfc:wood/vertical_support/oak", + "0": "tfc:rock/raw/andesite", + "G": "tfc:rock/raw/andesite" + } + }, + { + "pattern": [ + [ + " ", + "CRD", + " " + ], + [ + " ", + "V W", + " " + ], + [ + " ", + "V W", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ], + [ + " ", + " ", + " " + ] + ], + "mapping": { + "R": "tfc:wood/horizontal_support/oak[north=true,south=true]", + "C": "tfc:wood/vertical_support/oak[south=true]", + "D": "tfc:wood/vertical_support/oak[north=true]", + "V": "tfc:wood/vertical_support/oak", + "W": "tfc:wood/vertical_support/oak", + "0": "tfc:rock/raw/andesite", + "G": "tfc:rock/raw/andesite" + } + }, + { + "pattern": [ + [ + " ", + "CRD", + " " + ], + [ + " ", + "V W", + " " + ], + [ + " ", + "V W", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ], + [ + " ", + " ", + " " + ] + ], + "mapping": { + "R": "tfc:wood/horizontal_support/oak[north=true,south=true]", + "C": "tfc:wood/vertical_support/oak[south=true]", + "D": "tfc:wood/vertical_support/oak[north=true]", + "V": "tfc:wood/vertical_support/oak", + "W": "tfc:wood/vertical_support/oak", + "0": "tfc:rock/raw/andesite", + "G": "tfc:rock/raw/andesite" + } + } + ] + }, + { + "type": "patchouli:text", + "text": "εͺζœ‰$(thing)水平支撑撁$()ζ‰θƒ½θ΅·εˆ°$(thing)ζ”―ζ’‘$()ζ•ˆζžœοΌŒεž‚η›΄ηš„ε’Œθ½¬θ§’ηš„ιƒ½δΈθ‘Œγ€‚ζ―δΈ€ζ Ήζ°΄εΉ³ζ”―ζ’‘ζ’ε―δ»₯ζ”―ζ’‘δ»₯θ‡ͺθΊ«δΈΊδΈ­εΏƒοΌŒ$(bold)9 x 5 x 9$()θŒƒε›΄ε†…ηš„δ»»δ½•ζ–Ήε—γ€‚$(br2)陀了可δ»₯η”¨ζ”―ζ’‘ζ’δ½œδΈΊζ”―ζ’‘οΌŒε²©ηŸ³δΈ‹ι’ηš„ε…Άδ»–ε›Ίδ½“ζ–Ήε—οΌˆδΎ‹ε¦‚ε…Άδ»–ζœ‰ζ”―ζ’‘ηš„ε²©ηŸ³οΌ‰δΉŸδΌšζδΎ›ζ”―ζ’‘γ€‚δ½†ζ˜―ιœ€θ¦ζ³¨ζ„ηš„ζ˜―οΌŒ$(thing)ζ₯Όζ’―$()ε’Œ$(thing)台阢$()η­‰$(thing)ιžε›Ίδ½“ζ–Ήε—$(),δ»₯及$(thing)εΉ³ζ»‘ε²©ηŸ³$(),是$(bold)无法$()ζδΎ›ζ”―ζ’‘ηš„γ€‚" + }, + { + "type": "patchouli:text", + "text": "陀$(thing)ζœ¨θ΄¨ζ”―ζ’‘ζ’$()ε€–οΌŒ$(bold)TFG$()θΏ˜ζ–°ε’žδΊ†ζ›΄ι«˜ι˜Άηš„ζ”―ζ’‘ζ’η±»εž‹οΌŒεŒ…ζ‹¬$(thing)ηŸ³θ΄¨ζ”―ζ’‘ζ’$()、$(thing)ζ··ε‡εœŸζ”―ζ’‘ζ’$()与$(thing)钒质支撑撁$()γ€‚ζœ€ι«˜ι˜Άηš„ζ”―ζ’‘ζ’ε―ζ”―ζ’‘δ»₯ζ°΄εΉ³ζ’δΈΊδΈ­εΏƒγ€θŒƒε›΄ι«˜θΎΎ$(bold)33 x 13 x 33$()ζ–Ήε—ηš„εŒΊεŸŸοΌ" + }, + { + "type": "patchouli:text", + "text": "ζœ€εŽθ―·η‰Ήεˆ«ζ³¨ζ„οΌš$(l:mechanics/chisel)ε‡Ώεˆ»$()ε²©ηŸ³ε’ŒζŒ–ζŽ˜ε²©ηŸ³δΈ€ζ ·ε―θƒ½ε―Όθ‡΄ε‘Œζ–ΉοΌŒε°€ε…Άζ˜―εœ¨ε―Ήδ»»δ½•ε―θƒ½εΌ•ε‘εε‘Œηš„$(thing)ε€©η„Άε²©ηŸ³$()θΏ›θ‘Œε‡Ώεˆ»ζ—Άγ€‚$(br2)$(br2)孩子们请牒θ°οΌšι΅εˆε‰ε…¨ι‡‡ηŸΏε‡†εˆ™οΌ", + "title": "ε‡ΏεˆΆ" + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tag:tfc:support_beams": 0 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/surface_kaolin.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/surface_kaolin.json new file mode 100644 index 000000000..e7199957e --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/surface_kaolin.json @@ -0,0 +1,93 @@ +{ + "name": "高岭土", + "icon": "tfc:kaolin_clay", + "category": "tfc:mechanics", + "read_by_default": true, + "pages": [ + { + "type": "patchouli:text", + "anchor": "kaolinite", + "text": "刢作$(l:mechanics/fire_clay)θ€η«ι»εœŸ$()ιœ€θ¦ι«˜ε²­εœŸγ€‚εƒη”ŸζˆδΊŽY=75-110δΉ‹ι—΄ηš„ι«˜εŽŸγ€ε€θ€ε±±θ„‰γ€δΈ˜ι™΅δΈŽι«˜εœ°οΌŒθ¦ζ±‚$(l:the_world/climate#temperature)ζΈ©εΊ¦$()不低于18Β°C,$(l:the_world/climate#rainfall)降雨量$()不低于300mm。$(thing)η«ηƒθŠ±$()δΌšη”Ÿι•Ώεœ¨ι«˜ε²­εœŸδΈŠοΌŒε…Άδ½η½ε―θƒ½δ½Žθ‡³δΈ‹ζ–Ή 35 格。" + }, + { + "type": "tfc:multimultiblock", + "text": "ι€šεΈΈοΌŒε‘$(thing)δΈœε—ζ–Ήε‘$()θ‘ŒθΏ›ε―ζ‰Ύεˆ°ζ›΄ζΈ©ζš–ζΉΏζΆ¦ηš„εŒΊεŸŸγ€‚", + "multiblocks": [ + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:plant/blood_lily", + "Y": "tfc:kaolin_clay_grass" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:plant/blood_lily", + "Y": "tfc:red_kaolin_clay" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:plant/blood_lily", + "Y": "tfc:white_kaolin_clay" + } + }, + { + "pattern": [ + [ + "X" + ], + [ + "Y" + ], + [ + "0" + ] + ], + "mapping": { + "X": "tfc:plant/blood_lily", + "Y": "tfc:pink_kaolin_clay" + } + } + ] + }, + { + "type": "patchouli:spotlight", + "item": "tfc:powder/kaolinite", + "anchor": "powder", + "text": "εͺζœ‰$(thing)20%$()ηš„ι«˜ε²­εœŸθƒ½θ½¬εŒ–δΈΊ$(thing)ι«˜ε²­ηŸ³η²‰$(),建θ使用$(l:getting_started/pit_kiln)坑ηͺ‘$()ε°±εœ°ηƒ§εˆΆδ»₯θŠ‚ηœη‰©ε“ζ η©Ίι—΄γ€‚$(br2)εŒζ—Άθ―·εΈ¦ε›žηΊ¦20$(thing)块$()高岭土,δ»₯δΎ›εŽη»­$(l:mechanics/glassworking_applications)ηŽ»η’ƒεˆΆε“$()使用。" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/trowel.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/trowel.json new file mode 100644 index 000000000..91ec2fe9e --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/mechanics/trowel.json @@ -0,0 +1,18 @@ +{ + "name": "ζŠΉεˆ€", + "icon": "tfg:trowel", + "category": "tfc:mechanics", + "read_by_default": true, + "pages": [ + { + "type": "patchouli:crafting", + "title": "ζŠΉεˆ€", + "recipe": "tfg:shaped/trowel", + "text": "$(item)ζŠΉεˆ€$()允θΈε»Ίη­‘者右ι”η‚Ήε‡»θ‘¨ι’ζ—ΆοΌŒδ»Žε…ΆεΏ«ζ·ζ δΈ­ιšζœΊζ”Ύη½ζ–Ήε—。$(br2)ζŠΉεˆ€θΏ˜ε†…η½δΊ†ε―Ή$(item)ι“θ·―δΈŽε±‹ι‘Ά$()ζ¨‘η»„ηš„εŠŸθƒ½ζ”―ζŒβ€”β€”ζ„ε‘³η€εƒεŒζ ·ε―δ»₯ιšζœΊζ”Ύη½ε¦‚η –ε—ζˆ–ζΏε²©δΉ‹η±»ηš„ε‘«ε……η‰©γ€‚" + }, + { + "type": "patchouli:text", + "text": "η΅ζ„Ÿζ₯源于$(item)Quark$()ζ¨‘η»„δΈ­ηš„ζŠΉεˆ€ε·₯ε…·β€”β€”η”±Vazkii刢作" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/concrete_roads.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/concrete_roads.json new file mode 100644 index 000000000..83f85ba76 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/concrete_roads.json @@ -0,0 +1,71 @@ +{ + "name": "ζ··ε‡εœŸι“θ·―", + "category": "tfc:roadsandroofs", + "icon": "rnr:concrete_road_panel", + "pages": [ + { + "type": "patchouli:text", + "text": "ζ··ε‡εœŸι“θ·―ζ˜―ε―ε»Ίι€ ηš„ι€ŸεΊ¦ζœ€εΏ«ηš„ι“θ·―η±»εž‹οΌŒζ­£η‘建造既可提供30%η§»εŠ¨ι€ŸεΊ¦εŠ ζˆγ€‚δ½†ζ–½ε·₯ζ—Άιœ€η‘δΏζ··ε‡εœŸεœ¨ε‡ε›Ίε‰δΈθ’«θΈ©θΈζˆ–εΌ€θ£‚οΌŒε¦εˆ™ε°†ε€±εŽ»ι€ŸεΊ¦ε’žη›Šγ€‚" + }, + { + "type": "patchouli:image", + "title": "ζ··ε‡εœŸι“θ·―", + "images": [ + "rnr:textures/gui/book/concrete_road.png" + ], + "border": true + }, + { + "type": "patchouli:spotlight", + "anchor": "liquid_concrete", + "item": "gtceu:concrete_bucket", + "title": "εˆΆε€‡ζ··ε‡εœŸ", + "text": "ε»Ίι€ ζ··ε‡εœŸθ·―ηš„η¬¬δΈ€ζ­₯ζ˜―ι…εˆΆζΉΏζ··ε‡εœŸγ€‚δ½Ώη”¨$(thing)ζ…ζ‹ŒζœΊ$()ε°†ζ°΄δΈŽδ»»ζ„δΈ€η§ηŸ³η²‰οΌˆζ–Ήθ§£ηŸ³ζˆ–ε€§η†ηŸ³η²‰οΌ‰οΌŒδ»₯εŠηŸ³θ†η²‰ζ··εˆοΌ›ζˆ–θ€…η”¨δΈ‰η§ηŸ³η²‰εŠ ι»εœŸη²‰οΌŒζ₯刢作$(thing)ζΆ²ζ€ζ··ε‡εœŸ$()。" + }, + { + "type": "patchouli:spotlight", + "anchor": "wet_concrete", + "item": "rnr:bucket/concrete", + "title": "εˆΆε€‡ζ··ε‡εœŸ", + "text": "η„ΆεŽζŠŠ$(thing)ζ…ζ‹ŒζœΊ$()θΎη½δΈΊ$(thing)编程甡路 #7$(),加ε…₯ζ›΄ε€šζ°΄η¨€ι‡ŠζΆ²ζ€ζ··ε‡εœŸοΌŒεΎ—εˆ°$(thing)ζΉΏζ··ε‡εœŸζ··εˆη‰©$()。" + }, + { + "type": "patchouli:text", + "text": "δΈ€ζ—¦θŽ·εΎ—$(thing)ζΉΏζ··ε‡εœŸ$()οΌŒε³ε―η”¨ζ‘Άθˆ€ε–εΉΆε€Ύε€’εœ¨εŸΊε±‚ζ–Ήε—δΈŠοΌŒεƒδΌšθ‡ͺεŠ¨ε‘η›Έι‚»ζ–Ήε—θ”“ε»Άγ€‚ζ··ε‡εœŸιœ€δΈ€ε€©ζ—Άι—΄η‘¬εŒ–οΌŒεœ¨ζ­€ζœŸι—΄ιœ€ι˜²ζ­’η”Ÿη‰©θΈ©θΈζœͺε‡ε›Ίηš„ζ··ε‡εœŸοΌŒε¦εˆ™δΌšε½’ζˆδΈεΉ³ζ•΄θ‘¨ι’ε―Όθ‡΄ι€ŸεΊ¦εŠ ζˆε€±ζ•ˆγ€‚ε―η”¨ιΉ€ε˜΄ι”„ζŠΉεΉ³θ„šε°η—•θΏΉγ€‚" + }, + { + "type": "patchouli:image", + "title": "ζ΅‡η­‘ζ··ε‡εœŸι“θ·―", + "images": [ + "rnr:textures/gui/book/wet_concrete.png" + ], + "border": true + }, + { + "type": "patchouli:text", + "text": "ζ··ε‡εœŸεΉ²η‡₯θΏ‡η¨‹δΈ­θΏ˜δΌšε‘η”Ÿζ”ΆηΌ©εΌ€θ£‚ι—ι’˜γ€‚ε½“ζ΅‡η­‘εŒΊεŸŸδ»»ζ„ζ–Ήε‘ε½εΊ¦θΆ…θΏ‡4ζ Όζ—ΆοΌŒθ·η¦»ζ··ε‡εœŸ$(thing)边缘$()、$(thing)控刢缝$()ζˆ–$(thing)纹理ι₯°ι’$()θΆ…θΏ‡δΈ€ζ Όηš„ζ–Ήε—δΌšδΊ§η”Ÿθ£‚ηΌγ€‚ε―ι€šθΏ‡εˆ†εŒΊεŸŸζ΅‡η­‘γ€ζ―ιš”5格用$(thing)ιΉ€ε˜΄ι”„$()添加$(thing)控刢ζŽ₯缝$()ζˆ–ι‡‡η”¨$(thing)纹理ι₯°ι’$()ζ₯ι’„ι˜²εΌ€θ£‚γ€‚" + }, + { + "type": "patchouli:image", + "title": "控刢缝", + "images": [ + "rnr:textures/gui/book/control_joints.png" + ], + "border": true + }, + { + "type": "patchouli:text", + "text": "$(thing)纹理ι₯°ι’$()ι€šθΏ‡ε°†$(thing)砖块$()、$(thing)ι“Ίθ·―η –$()ζˆ–$(thing)εΉ³ζ»‘ηŸ³ζ–Ήε—$()εŽ‹ε…₯ζ­£εœ¨ε‡ε›Ίηš„ζ··ε‡εœŸδΈ­ε½’ζˆθ£…ι₯°ζ€§θ‘¨ι’οΌŒθΏ™δΊ›ζ–Ήε—εŒζ—Άε…Όε…·ι˜²ζ­’εΌ€θ£‚ηš„$(thing)控刢缝$()εŠŸθƒ½γ€‚ζ··ε‡εœŸεŒε…¨εΉ²η‡₯εŽε―η”¨$(thing)凿子$()εˆΆδ½œε°ι˜Άε’Œζ₯Όζ’―。" + }, + { + "type": "patchouli:image", + "title": "δ»ΏηŸ³η –θ·―", + "images": [ + "rnr:textures/gui/book/faux_sett.png" + ], + "border": true + } + ], + "read_by_default": true, + "sortnum": 20 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/gravel_roads.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/gravel_roads.json new file mode 100644 index 000000000..4f086b128 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/gravel_roads.json @@ -0,0 +1,24 @@ +{ + "name": "砾石路与璎石路", + "category": "tfc:roadsandroofs", + "icon": "rnr:rock/gravel_road/chert", + "pages": [ + { + "type": "patchouli:crafting", + "anchor": "gravel_fill", + "recipe": "rnr:crafting/gravel_fill/chert", + "title": "η’ŽηŸ³ζ··εˆη‰©", + "text": "εœ¨εŸΊε±‚ι“ΊθΎε°‘ι‡η ΎηŸ³ε―归成η€ζ˜“ε°ι“οΌŒζδΎ›10%ζ­₯θ‘Œι€ŸεΊ¦εŠ ζˆγ€‚θΏ½εŠ η ΎηŸ³ε‘«ζ–™εΉΆη”¨ιΉ€ε˜΄ι”„ε€―εžεŽοΌŒε―ε‡ηΊ§δΈΊη’ŽηŸ³θ·―οΌŒθŽ·εΎ—20%ι€ŸεΊ¦ε’žη›Šγ€‚" + }, + { + "type": "patchouli:image", + "title": "ε»ΊθΎη’ŽηŸ³θ·―", + "images": [ + "rnr:textures/gui/book/macadam.png" + ], + "border": true + } + ], + "read_by_default": true, + "sortnum": 8 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/hoggin.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/hoggin.json new file mode 100644 index 000000000..928d9ea8f --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/hoggin.json @@ -0,0 +1,20 @@ +{ + "name": "η’ŽηŸ³ε°ι“", + "category": "tfc:roadsandroofs", + "icon": "rnr:hoggin", + "pages": [ + { + "type": "patchouli:crafting", + "anchor": "hoggin_mix", + "recipe": "rnr:crafting/hoggin_mix", + "title": "η’ŽηŸ³ζ··εˆη‰©", + "text": "η’ŽηŸ³ζ–™ζ˜―δΈ€η§η”±ι»εœŸγ€ζ²™η Ύε’Œζ²™ε­ζ··εˆεˆΆζˆηš„εŽ‹εžεž‹εœ°ι’覆盖材料。铺θΎδΊŽεŸΊε±‚δΈŠε―归成η€ζ˜“θ·―εΎ„οΌŒζδΎ›10%ηš„θ‘Œθ΅°ι€ŸεΊ¦εŠ ζˆγ€‚" + }, + { + "type": "patchouli:text", + "text": "" + } + ], + "read_by_default": true, + "sortnum": 4 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/making_a_road.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/making_a_road.json new file mode 100644 index 000000000..f982c7039 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/making_a_road.json @@ -0,0 +1,34 @@ +{ + "name": "δΏη­‘道路", + "category": "tfc:roadsandroofs", + "icon": "rnr:metal/mattock/bismuth_bronze", + "pages": [ + { + "type": "patchouli:text", + "text": "ε»ΊθΎι“θ·―εŒ…ε«δΈ‰δΈͺ基本ζ­₯ιͺ€:η”¨ιΉ€ε˜΄ι”„ε€―εžεŽŸη”ŸεœŸε£€γ€ι“ΊθΎεŸΊε±‚、铺θΎι’ε±‚ζζ–™γ€‚δΈεŒη§η±»ηš„ι“θ·―ιœ€δ½Ώη”¨δΈεŒεŽŸζ–™οΌŒε…·δ½“ι…ζ―”θ―¦θ§ζœ¬ζ‰‹ε†Œε„ε―ΉεΊ”ι‘΅ι’γ€‚" + }, + { + "type": "patchouli:image", + "title": "建造小径", + "images": [ + "rnr:textures/gui/book/path_building.png" + ], + "border": true + }, + { + "type": "patchouli:text", + "text": "ιΉ€ε˜΄ι”„ε―εƒε‡Ώε­ι‚£ζ ·δ½œη”¨δΊŽζ³₯εœŸη±»ζ–Ήε—γ€‚ι»˜θ€ζ¨‘εΌδΈ‹δ½Ώη”¨ιΉ€ε˜΄ι”„δΌšε€―εžθΏ™δΊ›ζ–Ήε—。θ‹₯η”¨δΊŽε€―εžζ·€ζ³₯ζˆ–ηΌ ζ Ήζ·€ζ³₯οΌŒδΊ§η”Ÿηš„ε€―εžζ·€ζ³₯εΏ…ι‘»ι€šθΏ‡ι“ΊθΎη’ŽηŸ³εŸΊε±‚θΏ›θ‘ŒδΏε€γ€‚" + }, + { + "type": "patchouli:text", + "text": "ε€―εžεœŸε£€εŽοΌŒδΈ‹δΈ€ζ­₯ζ˜―ι“ΊθΎι“θ·―εŸΊε±‚γ€‚η’ŽηŸ³εŸΊε±‚ε―η”±ζ²™η Ύγ€ηŸ³ε­ε’Œι”€ε­εˆζˆοΌŒι€šθΏ‡ε³ι”点击铺θΎδΊŽεŽ‹εžζ–Ήε—δΈŠγ€‚θΏ™η§η’ŽηŸ³εŸΊε±‚θƒ½δΈΊζœ€η»ˆθ‘Œθ΅°ι’ζδΎ›εšε›Ίεœ°εŸΊγ€‚" + }, + { + "type": "patchouli:text", + "text": "δΏη­‘ι“θ·―ηš„ζœ€εŽδΈ€ζ­₯ζ˜―ι“ΊθΎθ·―ι’γ€‚ι€šθΏ‡εœ¨εŸΊε±‚δΈŠε³ι”η‚Ήε‡»δΈεŒη‰©ε“(εŒ…ζ‹¬η –ε—γ€η’ŽηŸ³ζ–™γ€ηŸ³ε­η­‰)ε―ε½’ζˆε―θ‘Œθ΅°ι“θ·―γ€‚δΈεŒζζ–™δΌšε½’ζˆδΈεŒη§η±»ηš„ι“θ·―οΌŒε„η±»ι“θ·―ζδΎ›ηš„θ‘Œθ΅°ι€ŸεΊ¦δΉŸδΈεŒγ€‚ε…·δ½“η±»εž‹θ―·ε‚ι˜…ζœ¬ζ‰‹ε†Œε„ε―ΉεΊ”ι‘΅ι’γ€‚" + } + + ], + "read_by_default": true, + "sortnum": 1 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/making_a_roof.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/making_a_roof.json new file mode 100644 index 000000000..eee5b2a6d --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/making_a_roof.json @@ -0,0 +1,32 @@ +{ + "name": "εˆΆδ½œε±‹ι‘Ά", + "category": "tfc:roadsandroofs", + "icon": "rnr:terracotta_roof_stairs", + "pages": [ + { + "type": "patchouli:text", + "text": "ε»Ίι€ ε±‹ι‘Άδ»Žζ‘†ζžΆεΌ€ε§‹γ€‚ε±‹ι‘Άζ‘†ζžΆζ–Ήε—ε―η”¨ζœ¨ζε’Œζœ¨ζ£εˆΆδ½œοΌŒεΉΆε―εˆΆζˆζ₯Όζ’―δΈŽε°ι˜Άε˜δ½“γ€‚θΏ™δΊ›ζ–Ήε—ε―η”¨δΊŽε‹Ύε‹’ε±‹ι‘Άθ½ε»“。" + }, + { + "type": "patchouli:crafting", + "anchor": "roof_frame", + "recipe": "rnr:crafting/roof_framing", + "title": "ε±‹ι‘Άζ‘†ζžΆ", + "text": "ε±‹ι‘Άζ‘†ζžΆζ˜―ε»Ίι€ ζ‰€ζœ‰ε±‹ι‘Άηš„θ΅·η‚Ήγ€‚" + }, + { + "type": "patchouli:text", + "text": "枢θΎε±‹ι‘Άζ‘†ζžΆεŽοΌŒη”¨δ»»δ½•屋鑢材料右ι”η‚Ήε‡»ε³ε―η”Ÿζˆε―ΉεΊ”ε±‹ι‘Άγ€‚ε±‹ι‘Άη±»εž‹εŒ…ζ‹¬ι€šθΏ‡ζ·»εŠ η¨»θ‰εˆΆδ½œηš„θŒ…θ‰ι‘ΆοΌŒθΏ˜ζœ‰ι™Άη“¦η‰‡γ€ζœ¨η“¦η‰‡η­‰ε€šη§ι€‰ζ‹©γ€‚" + }, + { + "type": "patchouli:image", + "title": "ι“ΊθΎθŒ…草屋鑢", + "images": [ + "rnr:textures/gui/book/thatching.png" + ], + "border": true + } + ], + "read_by_default": true, + "sortnum": 30 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/paving_cart.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/paving_cart.json new file mode 100644 index 000000000..03352247b --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/paving_cart.json @@ -0,0 +1,58 @@ +{ + "name": "铺路车", + "category": "tfc:roadsandroofs", + "icon": "tfg:rnr_plow", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)铺路车$()ζ˜―δΈ€η§η”¨δΊŽεΏ«ι€Ÿι«˜ζ•ˆι“ΊθΎθ·―ι’ηš„δΈ“η”¨ζŽ¨θ½¦γ€‚ε―ε‘«ε…₯θ·―ι’ζζ–™δΈŽ$(thing)η’ŽηŸ³εŸΊε±‚$()ζ₯δΏη­‘道路。θ―₯ζŽ¨θ½¦θΏ˜θƒ½δΈΊηŽ°ζœ‰εŸΊε±‚ζ–Ήε—εŒζˆε‘«ζ–™δ½œδΈšγ€‚" + }, + { + "type": "patchouli:image", + "title": "铺路车", + "images": [ + "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart.png" + ], + "border": true + }, + { + "type": "patchouli:image", + "title": "ε½εΊ¦θ°ƒθŠ‚ζ»‘ε—", + "images": [ + "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_width.png" + ], + "border": true, + "text": "ι€šθΏ‡ζ“δ½œη•Œι’δΈ­ηš„ζ»‘ε—ε―θ°ƒζ•΄ι“ΊθΎθ·―εΎ„ηš„ε½εΊ¦" + }, + { + "type": "patchouli:image", + "title": "可变ε½εΊ¦θ·―εΎ„", + "images": [ + "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_path_width.png" + ], + "border": true + }, + { + "type": "patchouli:image", + "title": "ιšζœΊζ¨‘εΌζŒ‰ι’", + "images": [ + "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_random.png" + ], + "border": true, + "text": "θΏ™θΎ†ζŽ¨θ½¦ζœ‰δΈ€η§ζ¨‘εΌοΌŒε―δ»₯δ»₯ιšζœΊζ¨‘εΌι“ΊθΎζζ–™γ€‚" + }, + { + "type": "patchouli:image", + "title": "ιšζœΊζζ–™θ·―εΎ„", + "images": [ + "tfg:textures/gui/field_guide/paving_cart/tfg_paving_cart_path_random.png" + ], + "border": true + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tfg:rnr_plow": 0 + }, + "sortnum": 20 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/stone_roads.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/stone_roads.json new file mode 100644 index 000000000..05c13ec76 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/roadsandroofs/stone_roads.json @@ -0,0 +1,35 @@ +{ + "name": "ηŸ³θ΄¨ι“θ·―", + "category": "tfc:roadsandroofs", + "icon": "rnr:rock/flagstones/basalt", + "pages": [ + { + "type": "patchouli:text", + "text": "εŸΊε±‚δΉ‹δΈŠε―ι“ΊθΎε€šη§ηŸ³θ΄¨θ·―ι’οΌŒε‡ζδΎ›20%ι€ŸεΊ¦εŠ ζˆγ€‚εœ†ηŸ³θ·―ι€šθΏ‡εœ¨εŸΊε±‚δΈŠι“ΊθΎηŸ³ε­θ€ŒζˆοΌ›ζ–ΉηŸ³θ·―ε―η”¨ηŸ³η –ζˆ–ι™Άη –ε»Ίι€ γ€‚" + }, + { + "type": "patchouli:crafting", + "anchor": "gneiss_flagstones", + "recipe": "rnr:crafting/flagstone/gneiss", + "title": "εˆΆδ½œι“Ίθ·―η –", + "text": "ι“Ίθ·―η –ε―η”±εΉ³ζ»‘ηŸ³ε€΄ζˆ–η ‚ε²©ζ–Ήε—εˆΆδ½œγ€‚" + }, + { + "type": "patchouli:crafting", + "anchor": "pink_sandstone_flagstones", + "recipe": "rnr:crafting/flagstone/pink_sandstone", + "title": "εˆΆδ½œι“Ίθ·―η –", + "text": "ι“Ίθ·―η –ε―η”±εΉ³ζ»‘ηŸ³ε€΄ζˆ–η ‚ε²©ζ–Ήε—εˆΆδ½œγ€‚" + }, + { + "type": "patchouli:image", + "title": "ηŽ„ζ­¦ε²©ζ–ΉηŸ³θ·―", + "images": [ + "rnr:textures/gui/book/sett_road.png" + ], + "border": true + } + ], + "read_by_default": true, + "sortnum": 12 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/burlap_sack.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/burlap_sack.json new file mode 100644 index 000000000..38147738a --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/burlap_sack.json @@ -0,0 +1,18 @@ +{ + "name": "ιΊ»θ’‹", + "category": "tfc:sacks_n_such", + "icon": "sns:burlap_sack", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:burlap_sack", + "text": "$(item)ιΊ»θ’‹$()ζ˜―δΈ€η§$(l:sns/item_containers)物品εΉε™¨$()οΌŒε―ζ―”$(item)ηšι©θ’‹$()ε€šθ£…δΈ€δΊ›η‰©ε“γ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/burlap_sack", + "text": "默θ€ε―εΉηΊ³θ‡³ε€š$(thing)ε°εž‹$()物品" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/frame_pack.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/frame_pack.json new file mode 100644 index 000000000..ffa012f16 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/frame_pack.json @@ -0,0 +1,18 @@ +{ + "name": "ε€§θƒŒεŒ…", + "category": "tfc:sacks_n_such", + "icon": "sns:frame_pack", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:frame_pack", + "text": "$(item)ε€§θƒŒεŒ…$()ζ˜―δΈ€η§$(l:sns/item_containers)物品εΉε™¨$(),εžθ΄¨δΈŠε°±εƒζŠŠηΎ€ε³¦δΌ θ―΄ηš„η±ε­θƒŒεœ¨θƒŒδΈŠγ€‚δΈŽη±ε­η›ΈεŒοΌŒεƒι΅εΎͺηΎ€ε³¦δΌ θ―΄ηš„$(l:getting_started/size_and_weight)ε°Ίε―ΈδΈŽι‡ι‡$()。" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/frame_pack", + "text": "默θ€ε―εΉηΊ³θ‡³ε€š$(thing)ε€§εž‹$()物品" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/hiking_boots.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/hiking_boots.json new file mode 100644 index 000000000..7fdb34706 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/hiking_boots.json @@ -0,0 +1,17 @@ +{ + "name": "登山靴", + "category": "tfc:sacks_n_such", + "icon": "sns:hiking_boots", + "pages": [ + { + "type": "patchouli:text", + "text": "ζ―δ½ζŽ’η΄’θ€…ιƒ½ιœ€θ¦δΈ€εŒε₯½ι΄ε­γ€‚εƒθƒ½θ©δ½ εΏ«ι€Ÿη©ΏθΏ‡ηŒζœ¨οΌŒεΉΆζδΎ›δΊ›θΈη§»ι€Ÿζε‡οΌŒεŒζ—Άη•₯εΎζι«˜ε‰ε…¨ε θ½ι«˜εΊ¦γ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/hiking_boots", + "text": "θΏ™εŒι΄ε­ε°±ζ˜―δΈΊθ‘Œθ΅°θ€Œη”Ÿγ€‚" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/horseshoes.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/horseshoes.json new file mode 100644 index 000000000..d90416c5e --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/horseshoes.json @@ -0,0 +1,30 @@ +{ + "name": "马蹄铁", + "category": "tfc:sacks_n_such", + "icon": "sns:metal/horseshoe/steel", + "pages": [ + { + "type": "patchouli:text", + "text": "$(item)马蹄铁$()ιœ€ε…ˆε•η‹¬ι”»ι€ οΌŒε†εœ¨ε·₯δ½œε°δΈ­η»„εˆγ€‚δ½ ιšΎι“δΈηŸ₯ι“ι©¬ζœ‰ε››εͺθ„šε—οΌŸ$(br)$(br)ι‘ΊεΈ¦δΈ€ζοΌŒη»™ι©¬η©Ώι«˜ηΊ§ι©¬θΉ„ι“ζ—ΆοΌŒζœ€ε₯½ζŠŠι©¬ζ‹΄ε₯½οΌŒζ™ι€šηš„ε‰ε…¨ε‘已经不η‘用了!" + }, + { + "type": "tfc:sns/better_anvil_recipe", + "recipe": "sns:anvil/metal/horseshoe/steel", + "recipe2": "sns:anvil/metal/horseshoe/black_steel", + "recipe3": "sns:anvil/metal/horseshoe/blue_steel", + "recipe4": "sns:anvil/metal/horseshoe/red_steel", + "text4": "ζ―εŒΉι©¬ιƒ½θ―₯ζœ‰εŒε₯½ιž‹" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/metal/horseshoes/steel", + "recipe2": "sns:crafting/metal/horseshoes/black_steel" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/metal/horseshoes/blue_steel", + "recipe2": "sns:crafting/metal/horseshoes/red_steel" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/item_containers.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/item_containers.json new file mode 100644 index 000000000..82c03d753 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/item_containers.json @@ -0,0 +1,21 @@ +{ + "name": "物品εΉε™¨", + "category": "tfc:sacks_n_such", + "icon": "sns:straw_basket", + "pages": [ + { + "type": "patchouli:text", + "text": "$(thing)物品εΉε™¨$()ζ˜―ζœ¬ζ¨‘η»„ζ–°ε’žηš„δΈ»θ¦η‰©ε“γ€‚εƒδ»¬ζœ‰6δΈͺδΈ»θ¦ε±žζ€§οΌŒε―εœ¨ιΌ ζ ‡ζ‚¬εœδΊŽη‰©ε“ε †εΉΆζŒ‰δ½$(3)Shift$(clear)ζ—ΆζŸ₯ηœ‹γ€‚$(li)$(thing)εΉι‡ζ Όζ•°$():ζ‹₯ζœ‰ηš„ζ Όε­ζ•°ι‡γ€‚$(li)$(thing)每格εΉι‡$():每格可εΉηΊ³ηš„物品数量。$(li)$(thing)允θΈε°Ίε―Έ$()οΌšζ Όε­δΈ­ε…θΈηš„ζœ€ε€§$(l:getting_started/size_and_weight)ε°Ίε―ΈδΈŽι‡ι‡$()。" + }, + { + "type": "patchouli:text", + "text": "$(li)$(thing)物品拾取$()οΌšθƒ½ε¦δ»ŽδΈ–η•ŒδΈ­ζ‹Ύε–η‰©ε“εžδ½“γ€‚ζŒ‰δ½Shift右ι”ζˆ–δ½Ώη”¨$(k:sns.key.pickup)εˆ‡ζ’γ€‚$(li)$(thing)物品清陀$()οΌšθƒ½ε¦ζΈ…ι™€δ»ŽδΈ–η•ŒδΈ­ζ‹Ύε–ηš„ε€šδ½™η‰©ε“γ€‚εˆ‡ζ’ζ–ΉεΌδΈΊ Ctrl + ε·¦ι”点击格子。$(li)$(thing)εΊ“ε­˜δΊ€δΊ’$()οΌšζ˜―ε¦ε―εƒηΎ€ε³¦δΌ θ―΄ηš„ε°ηΌΈζˆ–εŽŸη‰ˆζ”ΆηΊ³θ’‹ι‚£ζ ·οΌŒι€šθΏ‡η‚Ήε‡»η‰©ε“ε †ζ₯插ε…₯δΈŽε–ε‡Ίγ€‚$(br)ζ‰€ζœ‰$(thing)物品εΉε™¨$()ε‡ζ”―ζŒι€šθΏ‡$(k:pickItem)δ½Ώη”¨εŽŸη‰ˆη‚Ήι€‰ε€εˆΆγ€‚" + }, + { + "type": "patchouli:text", + "text": "δΎ›ζ•΄εˆεŒ…δ½œθ€…ζˆ–ιœ€θ¦ι…η½ηš„ηŽ©εΆε‚θ€ƒοΌšζ‰€ζœ‰$(thing)物品εΉε™¨$()ιƒ½ζœ‰δΈ€δΈͺβ€œι»‘εε•β€ζ ‡η­ΎοΌŒεŒ…ε«$(bold)sns:prevented_in_item_containers$()γ€‚ε‘½εθ§„εˆ™δΈΊ$(bold)prevented_in_$()οΌŒδΎ‹ε¦‚θ‰η―使用$(bold)sns:prevented_in_straw_basket$()γ€‚εΈ¦ζœ‰η‰ΉζŠβ€œη™½εε•β€ζ ‡η­Ύηš„$(thing)物品εΉε™¨$()δΌšεœ¨ε…ΆδΉ¦ι‘΅δΈ­εˆ—ε‡Ίγ€‚" + } + ], + "read_by_default": true +} + diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/leather_sack.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/leather_sack.json new file mode 100644 index 000000000..33aaf7edb --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/leather_sack.json @@ -0,0 +1,17 @@ +{ + "name": "ηšι©θ’‹", + "category": "tfc:sacks_n_such", + "icon": "sns:leather_sack", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:leather_sack", + "text": "$(item)ηšι©θ’‹$()ζ˜―δΈ€η§$(l:sns/item_containers)物品εΉε™¨$()οΌŒδΈŽε°ηΌΈη›ΈδΌΌδ½†εΉι‡η¨ι«˜γ€‚ι»˜θ€ε―εΉηΊ³θ‡³ε€š$(thing)ζ™ι€š$()物品" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/leather_sack" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/lunchbox.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/lunchbox.json new file mode 100644 index 000000000..098660e42 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/lunchbox.json @@ -0,0 +1,18 @@ +{ + "name": "εˆι€η›’", + "category": "tfc:sacks_n_such", + "icon": "sns:lunchbox", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:lunchbox", + "text": "$(item)εˆι€η›’$()ζ˜―δΈ€η§ι’‡δΈΊεžη”¨ηš„$(l:sns/item_containers)物品εΉε™¨$()γ€‚ι‘Ύεζ€δΉ‰οΌŒεƒδΈ“η”¨δΊŽη››θ£…ε„η±»ι£Ÿη‰©οΌŒη”šθ‡³ε…θΈδ½ η›΄ζŽ₯δ»ŽδΈ­ε–η”¨γ€‚ζŒ‰δΈ‹$(k:sneak)ι”+$(k:use)ι”εΌ€ε―εˆι€η›’οΌŒζŒ‰δ½$(k:sneak)ι”+ζ»šεŠ¨ιΌ ζ ‡ζ»‘θ½ι€‰ζ‹©θ¦ι£Ÿη”¨ηš„ε †ε η‰©ε“οΌŒζŒ‰δΈ‹$(k:use)ι”ε³ε―ι£Ÿη”¨ι€‰δΈ­ηš„ι£Ÿη‰©γ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/lunchbox", + "text": "ε―ΉδΊŽζ¨‘η»„εŒ…δ½œθ€…οΌŒζˆ–εΈŒζœ›ζ·»εŠ ι’ε€–ι£Ÿη‰©ηš„ηŽ©εΆοΌŒθ―·ε‚ι˜…η‰©ε“ζ ‡η­Ύ$(bold)sns:lunchbox_food$()β€”β€”ε€§ε€šζ•°ι™„εŠ ε†…εΉιƒ½εΊ”δΌšθ‡ͺεŠ¨θŽ·εΎ—ζ”―ζŒγ€‚" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/mob_net.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/mob_net.json new file mode 100644 index 000000000..6872bff82 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/mob_net.json @@ -0,0 +1,17 @@ +{ + "name": "捕捉网", + "category": "tfc:sacks_n_such", + "icon": "sns:mob_net", + "pages": [ + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/mob_net", + "text": "ζ•ζ‰η½‘εœ¨ζ•θŽ·ε°εž‹η”Ÿη‰©ζ–Ήι’ζžδΈΊεžη”¨γ€‚εƒδ»¬ζœ€εΈΈθ§ηš„η”¨ι€”ζ˜―θΏθΎ“θ―Έε¦‚ιΈŸη±»οΌŒζˆ–ζ˜―θΎƒε€§εž‹η”Ÿη‰©οΌˆε¦‚η‰›οΌ‰ηš„εΉΌε΄½η­‰η”Ÿη‰©γ€‚" + }, + { + "type": "patchouli:text", + "text": "ε―ΉδΊŽζ¨‘η»„εŒ…δ½œθ€…οΌŒζˆ–δ»…ζ˜―εΈŒζœ›ζ·»εŠ ι’ε€–η”Ÿη‰©ηš„ηŽ©εΆοΌŒθ―·ε‚ι˜…εžδ½“ζ ‡η­Ύ $(bold)sns:netable_mobs" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/ore_sack.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/ore_sack.json new file mode 100644 index 000000000..0fbb20f0e --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/ore_sack.json @@ -0,0 +1,18 @@ +{ + "name": "ηŸΏηŸ³θ’‹", + "category": "tfc:sacks_n_such", + "icon": "sns:ore_sack", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:ore_sack", + "text": "$(item)ηŸΏηŸ³θ’‹$()ζ˜―δΈ€η§$(l:sns/item_containers)物品εΉε™¨$()οΌŒζ—¨εœ¨εΉηΊ³ε€§ι‡ζŸε•δΈ€ηŸΏηŸ³η±»η‰©ε“οΌŒεœ¨ι‡‡ηŸΏδΈ­ζžε…Άεžη”¨γ€‚$(br2)默θ€ζ―ζ Όε―ε †ε ι«˜θΎΎ 512 δΈͺ矿石" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/ore_sack", + "text": "δΎ›ζ•΄εˆεŒ…δ½œθ€…ζˆ–εΈŒζœ›ζ·»εŠ ζ›΄ε€šηŸΏηŸ³ηš„ηŽ©εΆε‚θ€ƒοΌŒθ―·ζŸ₯ηœ‹η‰©ε“ζ ‡η­Ύ $(bold)sns:allowed_in_ore_sack$()οΌŒε€§ε€šζ•°ι™„εŠ ε†…εΉεΊ”δΌšθ’«θ‡ͺεŠ¨ζ”―ζŒ" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/quiver.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/quiver.json new file mode 100644 index 000000000..cbbb3c366 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/quiver.json @@ -0,0 +1,18 @@ +{ + "name": "η­η­’", + "category": "tfc:sacks_n_such", + "icon": "sns:quiver", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:quiver", + "text": "$(item)η­η­’$() ζ˜―ζ―δ½ε°„ζ‰‹ηš„δΌ™δΌ΄οΌŒζ— θΊδ½ ι’Ÿζƒ… $(item)ζ ‡ζžͺ$() θΏ˜ζ˜―ε–œζ¬’εΌ“γ€‚$(br)δ½Ώη”¨εΌ“ζ—ΆδΌšδΌ˜ε…ˆδ»Žη­η­’δΈ­ζΆˆθ€—β€œεΌΉθ―β€οΌŒζŠ•ζŽ·ζ ‡ζžͺζ—ΆδΉŸδΌšθ‘₯ε›žγ€‚" + }, + { + "type": "tfc:knapping_recipe", + "recipe": "sns:leather_knapping/quiver", + "text": "δΎ›ζ•΄εˆεŒ…δ½œθ€…ζˆ–εΈŒζœ›ζ”―ζŒι’ε€–β€œεΌΉθ―β€ηš„ηŽ©εΆε‚θ€ƒοΌšθ―·ζŸ₯ηœ‹η‰©ε“ζ ‡η­Ύ $(bold)sns:allowed_in_quiver$()γ€‚θ―·ζ³¨ζ„οΌŒζ ‡ζžͺηš„θ‘₯ε›žδ»…ε―Ή TFCοΌˆζˆ–ε…Άι™„εŠ οΌ‰ζ ‡ζžͺζœ‰ζ•ˆγ€‚" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/safety_toe_hiking_boots.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/safety_toe_hiking_boots.json new file mode 100644 index 000000000..e237d1b72 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/safety_toe_hiking_boots.json @@ -0,0 +1,22 @@ +{ + "name": "钒倴登山靴", + "category": "tfc:sacks_n_such", + "icon": "sns:steel_toe_hiking_boots", + "pages": [ + { + "type": "patchouli:text", + "text": "ε’Œ$(l:sns/hiking_boots)登山靴$()δΈ€ζ ·οΌŒδΈθΏ‡ε› δΈΊζ‹₯ζœ‰ι’’ε€΄θ€Œζ›΄ε‰ε…¨γ€‚ε―ζƒœθΏ˜ζ²‘ζœ‰δΊΊε‘ζ˜Žε‰ε…¨εΈ½γ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/steel_toe_hiking_boots", + "recipe2": "sns:crafting/black_steel_toe_hiking_boots" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/blue_steel_toe_hiking_boots", + "recipe2": "sns:crafting/red_steel_toe_hiking_boots" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/seed_pouch.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/seed_pouch.json new file mode 100644 index 000000000..e52219431 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/seed_pouch.json @@ -0,0 +1,18 @@ +{ + "name": "种子蒋", + "category": "tfc:sacks_n_such", + "icon": "sns:seed_pouch", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:seed_pouch", + "text": "$(item)种子蒋$()ζ˜―δΈ€η§$(l:sns/item_containers)物品εΉε™¨$()οΌŒη”¨δΊŽεΉηΊ³ε€šη§η§ε­οΌŒεœ¨εŠ‘ε†œζ—ΆιžεΈΈεžη”¨γ€‚$(br2)默θ€ζ‹₯ζœ‰ 27 δΈͺ格子,每格可εΉηΊ³ 64 钗种子" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/seed_pouch", + "text": "δΎ›ζ•΄εˆεŒ…δ½œθ€…ζˆ–εΈŒζœ›ζ·»εŠ ζ›΄ε€šη§ε­ηš„ηŽ©εΆε‚θ€ƒοΌŒθ―·ζŸ₯ηœ‹η‰©ε“ζ ‡η­Ύ$(bold)sns:allowed_in_seed_pouch$()οΌŒε€§ε€šζ•°ι™„εŠ ε†…εΉεΊ”δΌšθ’«θ‡ͺεŠ¨ζ”―ζŒ" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/straw_basket.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/straw_basket.json new file mode 100644 index 000000000..68ac2f945 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/sns/straw_basket.json @@ -0,0 +1,17 @@ +{ + "name": "草η―", + "category": "tfc:sacks_n_such", + "icon": "sns:straw_basket", + "pages": [ + { + "type": "patchouli:spotlight", + "item": "sns:straw_basket", + "text": "$(item)草η―$()ζ˜―δΈ€η§$(l:sns/item_containers)物品εΉε™¨$()οΌŒεŸΊζœ¬δΈŠε°±ζ˜―ζ›΄δΎΏεœηš„εΉε™¨γ€‚ι»˜θ€ε―εΉηΊ³θ‡³ε€š$(thing)ε°εž‹$()物品" + }, + { + "type": "patchouli:crafting", + "recipe": "sns:crafting/straw_basket" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfcchannelcasting/casting_chocolate.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfcchannelcasting/casting_chocolate.json new file mode 100644 index 000000000..3bae3cad0 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfcchannelcasting/casting_chocolate.json @@ -0,0 +1,40 @@ +{ + "name": "ε·§ε…‹εŠ›ζ΅‡ζ³¨", + "category": "tfc:tfcchannelcasting", + "icon": "tfcchannelcasting:food/milk_chocolate_heart", + "pages": [ + { + "type": "patchouli:text", + "text": "δΈ‹θΏ°ε†…εΉδ»…εœ¨ε‰θ£… Firmalife 既可用。$(thing)ε·§ε…‹εŠ›$()不必εͺζ˜―ζ— θŠηš„ε·§ε…‹εŠ›ζ£’οΌε°†$(thing)η™½ε·§ε…‹εŠ›$()、$(thing)牛ε₯Άε·§ε…‹εŠ›$()ζˆ–$(thing)ι»‘ε·§ε…‹εŠ›$()在$(thing)小缸$()ζˆ–$(thing)坩埚$()δΈ­η†”εŒ–εŽοΌŒζ΅‡ζ³¨θΏ›ζ¨‘ε…·ε³ε―εΎ—εˆ°ε·§ε…‹εŠ›η‚ΉεΏƒγ€‚η‚ΉεΏƒε…±ζœ‰δΈ‰η§οΌš$(thing)εΏƒεž‹$()、$(thing)ι’Ÿ$()与$(thing)εˆ€$()οΌŒεˆ†εˆ«η”±δΈεŒζ¨‘ε…·ζ΅‡ζ³¨θŽ·εΎ—γ€‚" + }, + { + "type": "tfc:knapping_recipe", + "recipe": "tfcchannelcasting:clay_knapping/unfired_heart_mold", + "text": "ζεˆΆδΈ€δΈͺ$(thing)εΏƒεž‹ζ¨‘ε…·$()οΌŒη”¨ζ₯刢作$(thing)εΏƒεž‹$()ε·§ε…‹εŠ›γ€‚" + }, + { + "type": "patchouli:text", + "text": "ε·§ε…‹εŠ›η‚ΉεΏƒζδΎ›δΈŽε·§ε…‹εŠ›ζ£’η›ΈεŒηš„θ₯ε…»οΌŒδ½†ι£Ÿη”¨ζ›΄εΏ«γ€‚θ‹₯εœ¨η‰Ήεšζœˆδ»½εˆΆδ½œοΌŒθΏ˜δΌšθŽ·εΎ—δ½Ώθ₯ε…»ηΏ»ε€ηš„η‰Ήθ΄¨οΌš$(thing)ε·§ε…‹εŠ›εΏƒεž‹$()εœ¨δΊŒζœˆθŽ·εΎ—$(thing)ζ΅ͺζΌ«$(),$(thing)ι»‘ε·§ε…‹εŠ›ε†¬ι“ƒ$()εœ¨εδΊŒζœˆθŽ·εΎ—$(thing)θŠ‚εΊ†$(),$(thing)ι»‘ε·§ε…‹εŠ›εˆ€$()εœ¨εζœˆθŽ·εΎ—$(thing)ζƒŠζ‚š$()。" + }, + { + "type": "patchouli:text", + "text": "ζ­€ε€–οΌŒη‚ΉεΏƒε―δ»₯做成$(thing)ε€ΉεΏƒ$()δ»₯θŽ·εΎ—ι’ε€–ζ”Άη›ŠοΌšε€ΉεΏƒ$(thing)ζžœι…±$()δΌšι’ε€–ζδΎ›$(thing)水果$()θ₯ε…»οΌŒε€ΉεΏƒ$(thing)ι…’η²Ύ$()δΌšη»™δΊˆζ­£ι’θ―ζ°΄ζ•ˆζžœγ€‚" + }, + { + "type": "tfc:sealed_barrel_recipe", + "recipe": "tfcchannelcasting:barrel/fill_with_sweet_liquor", + "text": "ι£Ÿη”¨$(thing)η”œι…’ε€ΉεΏƒ$()ε·§ε…‹εŠ›δΌšθŽ·εΎ—ι€ŸεΊ¦ζε‡γ€‚" + }, + { + "type": "tfc:sealed_barrel_recipe", + "recipe": "tfcchannelcasting:barrel/fill_with_strong_liquor", + "text": "ι£Ÿη”¨$(thing)ηƒˆι…’ε€ΉεΏƒ$()ε·§ε…‹εŠ›δΌšθŽ·εΎ—δΌ€ε³ζŠ—ζ€§γ€‚" + }, + { + "type": "tfc:sealed_barrel_recipe", + "recipe": "tfcchannelcasting:barrel/fill_with_whiskey", + "text": "ι£Ÿη”¨$(thing)ε¨ε£«εΏŒε€ΉεΏƒ$()ε·§ε…‹εŠ›δΌšθŽ·εΎ—ζ€₯θΏ«ζ•ˆζžœγ€‚" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfcchannelcasting/channel_casting.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfcchannelcasting/channel_casting.json new file mode 100644 index 000000000..3ec0c98b1 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfcchannelcasting/channel_casting.json @@ -0,0 +1,39 @@ +{ + "name": "桇注道铸造", + "category": "tfc:tfcchannelcasting", + "icon": "tfcchannelcasting:channel", + "pages": [ + { + "type": "patchouli:text", + "text": "你可δ»₯使用$(thing)桇注道$()与$(thing)樑具台$(),从$(thing)坩埚$()εŒζ—Άε‘ε€šδΈͺζ¨‘ε…·ζ΅‡ζ³¨ι‡‘ε±žγ€‚εͺιœ€η”¨$(thing)桇注道$()把$(thing)樑具台$()与$(thing)坩埚$()连ζŽ₯οΌŒη„ΆεŽε³ι”点击$(thing)坩埚$()ζ—θΎΉηš„$(thing)桇注道$()γ€‚ζ‰‹ζŒ$(l:getting_started/pottery#mold)樑具$()ε―Ή$(thing)樑具台$()ζŒ‰δ½ζ½œθ‘ŒεΉΆε³ι”δ»₯ζ”Ύη½ζˆ–移陀。" + }, + { + "type": "tfc:knapping_recipe", + "recipe": "tfcchannelcasting:fire_clay_knapping/unfired_channel_4", + "text": "ζεˆΆζ•°δΈͺ$(thing)ζœͺηƒ§εˆΆηš„ζ΅‡ζ³¨ι“$()。" + }, + { + "type": "tfc:knapping_recipe", + "recipe": "tfcchannelcasting:fire_clay_knapping/unfired_mold_table", + "text": "ζεˆΆδΈ€δΈͺ$(thing)ζœͺηƒ§εˆΆηš„ζ¨‘ε…·ε°$()。" + }, + { + "type": "tfc:heat_recipe", + "recipe": "tfcchannelcasting:heating/channel", + "text": "ζ΅‡ζ³¨ι“δΈŽζ¨‘ε…·ε°ζεˆΆεŒζˆεŽοΌŒιœ€θ¦εƒδ»»ζ„ι™Άε™¨δΈ€ζ ·θΏ›θ‘Œ$(thing)ηƒ§εˆΆ$()。" + }, + { + "type": "patchouli:multiblock", + "multiblock_id": "tfcchannelcasting:example", + "name": "桇注铸造瀺例", + "text": "", + "enable_visualize": false + }, + { + "type": "patchouli:text", + "text": "$(li)ε―Ή$(thing)樑具台$()δ½Ώη”¨ι£Žη±ε―ζ›΄εΏ«ε†·ε΄ι‡‘ε±žγ€‚$()$(li)η”¨ηΊ’ηŸ³θ„‰ε†²ζΏ€ζ΄»$(thing)桇注道$()δΌšεΌ€ε§‹ε€Ύε€’ι‡‘ε±žγ€‚$()$(li)$(thing)樑具台$()δΌšθΎ“ε‡Ίζ―”θΎƒε™¨δΏ‘ε·γ€‚", + "title": "θ‡ͺεŠ¨εŒ–" + } + ], + "read_by_default": true +} \ No newline at end of file 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 index d6c823865..3bb43fe46 100644 --- 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 @@ -14,42 +14,42 @@ }, { "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#normal_bismuthinite)9%$(/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)$()", + "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#normal_bismuthinite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)10%$(/l)$()$(li)ε‘”εŸΊε‰ηŸΏ: $(l:tfg_ores/earth_vein_index#normal_tarkianite)35%$(/l)$()$(li)倩焢璱: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l), $(l:tfg_ores/earth_vein_index#normal_tarkianite)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_beryllium)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)$()", "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)$()", + "text": "$(li)ζ™Άθ΄¨ι“€ηŸΏ: $(l:tfg_ores/earth_vein_index#deep_pitchblende)25%$(/l)$()$(li)ζœ±η ‚: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(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), $(l:tfg_ores/earth_vein_index#normal_tarkianite)35%$(/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)$()", "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)8%$(/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)$()", + "text": "$(li)η™½ι’¨ηŸΏ: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(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), $(l:tfg_ores/earth_vein_index#normal_cassiterite)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)10%$(/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_tarkianite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/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)$()", + "text": "$(li)η£ι“ηŸΏ: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)8%$(/l)$()$(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)$()", "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)72%$(/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)$()", + "text": "$(li)θ“ηŸ³: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l)$()$(li)θ“ι‡‘ηŸ³: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(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)80%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)70%$(/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_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)25%$(/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)10%$(/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)$()", + "text": "$(li)ι’•ηŸΏ: $(l:tfg_ores/earth_vein_index#normal_monazite)6%$(/l)$()$(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)$()", "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)$()", + "text": "$(li)ι“―ζ¦΄ηŸ³: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(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)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)35%$(/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)55%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)35%$(/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)$()", "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)$()", + "text": "$(li)ι»„ηŽ‰: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(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" } ], 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 index b73f09c02..c5d7b62a3 100644 --- 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 @@ -14,22 +14,22 @@ }, { "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)瑝石, η”΅ηŸ³$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_tarkianite)ε‘”εŸΊε‰ηŸΏ, ζ²Ήη ‚$()$()$(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)η‘…ι•ι•ηŸΏ, θΎ‰ι’΄ηŸΏ$()$()", "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)θ΅€ι“ηŸΏ, ι’ˆι“ηŸΏ, ηΊ’εηŸ³$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)瑝石, θ“ηŸ³$()$()$(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)θ΅€ι“ηŸΏ, θ€ι“ηŸΏ$()$()", "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)ι—ͺι”ŒηŸΏ, η‘«$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_hematite)θ΅€ι“ηŸΏ, ι’ˆι“ηŸΏ, ηΊ’εηŸ³$()$()$(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)ι”°ηŸΏ, ι’½ηŸΏ$()$()", "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)ι»ι“œηŸΏ (ζ™ι€š)$()$()", + "text": "$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)ι—ͺι”ŒηŸΏ, η‘«$()$()$(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" }, { @@ -37,6 +37,98 @@ "draw_filler": true, "type": "patchouli:empty" }, + { + "Type": "patchouli:text", + "text": "$(thing)η¨€ζœ‰εΊ¦$(): 140$(br)$(thing)ε―†εΊ¦$(): 0.35$(br)$(thing)η±»εž‹$(): η‘ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): 20 β€” 120$(br)$(thing)高度$(): 60$(br)$(thing)εŠεΎ„$(): 10$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 20$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): εƒζžšε²©, 倧理岩, ε‰ε±±ε²©, 板岩, 桁纹岩, η‡§ηŸ³, 片岩, 片麻岩, ηŽ„ζ­¦ε²©, 白云岩, η™½εž©ε²©, 石灰岩, ηŸ³θ‹±ε²©, 砾岩, 粘土岩, θŠ±ε²—ε²©, θ‹±ε‰ε²©, 辉长岩, ι—ͺ长岩, 鑡岩", + "title": "ε‘”εŸΊε‰ηŸΏ, ζ²Ήη ‚", + "type": "patchouli:text", + "anchor": "normal_tarkianite" + }, + { + "Type": "patchouli:multiblock", + "name": "ε‘”εŸΊε‰ηŸΏ", + "multiblock": { + "mapping": { + "0": "#forge:ores/tarkianite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)η™Ύεˆ†ζ―”$(): 35%$(br)$(thing)ζ₯源$(): ι“Ό, ι’Ό$(br)$(thing)εŒ–ε­¦εΌ$(): CuFeReβ‚„Moβ‚„Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ζ²Ήη ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)η™Ύεˆ†ζ―”$(): 35%$(br)$(thing)ζ₯源$(): θ‡ͺη”± \uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", + "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/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)η™Ύεˆ†ζ―”$(): 10%$(br)$(thing)ζ₯源$(): ι’ $(br)$(thing)εŒ–ε­¦εΌ$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆", + "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 坐标$(): -64 β€” -20$(br)$(thing)ε°Ίε―Έ$(): 19$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 20$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): εƒζžšε²©, 倧理岩, 板岩, 片岩, 片麻岩, ηŸ³θ‹±ε²©, θŠ±ε²—ε²©, 辉长岩, ι—ͺ长岩", @@ -61,7 +153,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 62%$(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" }, { @@ -81,7 +173,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 25%$(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" }, { @@ -1011,7 +1103,7 @@ { "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": "瑝石, η”΅ηŸ³", + "title": "瑝石, θ“ηŸ³", "type": "patchouli:text", "anchor": "normal_saltpeter" }, @@ -1057,7 +1149,7 @@ }, { "Type": "patchouli:multiblock", - "name": "η”΅ηŸ³", + "name": "θ“ηŸ³", "multiblock": { "mapping": { "0": "#forge:ores/electrotine" @@ -1328,7 +1420,7 @@ }, { "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)ε²©ηŸ³η±»εž‹$(): εƒζžšε²©, 倧理岩, 板岩, 片岩, 片麻岩, ηŸ³θ‹±ε²©, θŠ±ε²—ε²©, 辉长岩, ι—ͺ长岩", + "text": "$(thing)η¨€ζœ‰εΊ¦$(): 170$(br)$(thing)ε―†εΊ¦$(): 0.25$(br)$(thing)η±»εž‹$(): ε›’η°‡ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): 20 β€” 120$(br)$(thing)ε°Ίε―Έ$(): 34$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 60$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): εƒζžšε²©, 倧理岩, 板岩, 片岩, 片麻岩, ηŸ³θ‹±ε²©, θŠ±ε²—ε²©, 辉长岩, ι—ͺ长岩", "title": "磷灰石, ηƒ§η»ΏηŸ³", "type": "patchouli:text", "anchor": "normal_apatite" @@ -1601,7 +1693,7 @@ }, { "Type": "patchouli:multiblock", - "name": "ι’ηŸΏ", + "name": "ζ–Ήι’ηŸ³", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1616,7 +1708,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 15%$(br)$(thing)ζ₯源$(): 钍$(br)$(thing)εŒ–ε­¦εΌ$(): Th", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 15%$(br)$(thing)ζ₯源$(): 钍$(br)$(thing)εŒ–ε­¦εΌ$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1713,7 +1805,7 @@ }, { "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)ε²©ηŸ³η±»εž‹$(): ε‰ε±±ε²©, 桁纹岩, ηŽ„ζ­¦ε²©, θ‹±ε‰ε²©", + "text": "$(thing)η¨€ζœ‰εΊ¦$(): 180$(br)$(thing)ε―†εΊ¦$(): 0.35$(br)$(thing)η±»εž‹$(): η›˜ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): -64 β€” 32$(br)$(thing)ε°Ίε―Έ$(): 28$(br)$(thing)高度$(): 8$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 20$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): ε‰ε±±ε²©, 桁纹岩, ηŽ„ζ­¦ε²©, θ‹±ε‰ε²©, ι—ͺ长岩", "title": "蓝εηŸ³, ι“ι“ζ¦΄ηŸ³", "type": "patchouli:text", "anchor": "deep_sapphire" @@ -1805,7 +1897,7 @@ }, { "Type": "patchouli:text", - "text": "$(thing)η¨€ζœ‰εΊ¦$(): 190$(br)$(thing)ε―†εΊ¦$(): 0.25$(br)$(thing)η±»εž‹$(): ε›’η°‡ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): 0 β€” 210$(br)$(thing)ε°Ίε―Έ$(): 36$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 40$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): εƒζžšε²©, 倧理岩, 板岩, 片岩, 片麻岩, ηŸ³θ‹±ε²©, θŠ±ε²—ε²©, 辉长岩, ι—ͺ长岩", + "text": "$(thing)η¨€ζœ‰εΊ¦$(): 190$(br)$(thing)ε―†εΊ¦$(): 0.25$(br)$(thing)η±»εž‹$(): ε›’η°‡ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): 0 β€” 210$(br)$(thing)ε°Ίε―Έ$(): 36$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 60$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): εƒζžšε²©, 倧理岩, 板岩, 片岩, 片麻岩, ηŸ³θ‹±ε²©, θŠ±ε²—ε²©, 辉长岩, ι—ͺ长岩", "title": "θ“ζ™ΆηŸ³, 云母, ι“εœŸηŸΏ", "type": "patchouli:text", "anchor": "normal_mica" @@ -2302,7 +2394,27 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 85%$(br)$(thing)η†”εŒ–$(): ι“‹$(br)$(thing)εŒ–ε­¦εΌ$(): Bi", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 80%$(br)$(thing)η†”εŒ–$(): ι“‹$(br)$(thing)εŒ–ε­¦εΌ$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "εŽŸη”Ÿι“Ά", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)η™Ύεˆ†ζ―”$(): 10%$(br)$(thing)η†”εŒ–$(): ι“Ά$(br)$(thing)εŒ–ε­¦εΌ$(): Ag", "type": "patchouli:multiblock" }, { @@ -2325,26 +2437,6 @@ "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": "η‘«", @@ -2394,7 +2486,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 72%$(br)$(thing)η†”εŒ–$(): ι“‹$(br)$(thing)εŒ–ε­¦εΌ$(): Bi", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 70%$(br)$(thing)η†”εŒ–$(): ι“‹$(br)$(thing)εŒ–ε­¦εΌ$(): Bi", "type": "patchouli:multiblock" }, { @@ -2414,7 +2506,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 10%$(br)$(thing)η†”εŒ–$(): ι“…$(br)$(thing)εŒ–ε­¦εΌ$(): Pb$(br)$(thing)危ε³$(): $(c)$(t:ιœ€θ¦ι’η½©)εΌ±ζ―’ζ€§ (吸ε…₯)$(/t)$()", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 11%$(br)$(thing)η†”εŒ–$(): ι“…$(br)$(thing)εŒ–ε­¦εΌ$(): Pb$(br)$(thing)危ε³$(): $(c)$(t:ιœ€θ¦ι’η½©)εΌ±ζ―’ζ€§ (吸ε…₯)$(/t)$()", "type": "patchouli:multiblock" }, { @@ -2434,7 +2526,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 9%$(br)$(thing)η†”εŒ–$(): ι“Ά$(br)$(thing)εŒ–ε­¦εΌ$(): Ag", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 10%$(br)$(thing)η†”εŒ–$(): ι“Ά$(br)$(thing)εŒ–ε­¦εΌ$(): Ag", "type": "patchouli:multiblock" }, { @@ -2454,7 +2546,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 8%$(br)$(thing)ζ₯源$(): η‘«$(br)$(thing)εŒ–ε­¦εΌ$(): S", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 9%$(br)$(thing)ζ₯源$(): η‘«$(br)$(thing)εŒ–ε­¦εΌ$(): S", "type": "patchouli:multiblock" }, { @@ -2899,7 +2991,7 @@ }, { "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)ε²©ηŸ³η±»εž‹$(): η‡§ηŸ³, 白云岩, η™½εž©ε²©, 石灰岩, 砾岩, 粘土岩, 鑡岩", + "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" @@ -3187,7 +3279,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 60%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): SnOβ‚‚", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 55%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { @@ -3207,13 +3299,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 40%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): Sn", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 35%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): Sn", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", @@ -3239,7 +3346,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 60%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): Sn", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 55%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): Sn", "type": "patchouli:multiblock" }, { @@ -3259,13 +3366,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 40%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): SnOβ‚‚", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 35%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "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", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/hazards.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/hazards.json new file mode 100644 index 000000000..b1acd8911 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/hazards.json @@ -0,0 +1,95 @@ +{ + "name": "危险材料", + "icon": "createdeco:decal_skull", + "category": "tfc:tfg_ores", + "priority": true, + "sortnum": 1, + "read_by_default": true, + "pages": [ + { + "type": "patchouli:spotlight", + "title": "危险材料", + "item": "gtceu:cobaltite_dust", + "text": "ζŸδΊ›ηŸΏηŸ³ε’Œη²‰ε°˜ε…·ζœ‰ε±ι™©ζ€§οΌŒθ‹₯ε­˜ζ”Ύεœ¨η‰©ε“ζ δΈ­ε―θƒ½δΌšε―Ήδ½ ι€ ζˆθ΄Ÿι’ζ•ˆζžœη”šθ‡³θ‡΄ε‘½δΌ€ε³γ€‚$(br2)η‰Ήεšθ£…倇如$(thing)口罩$()、$(thing)手ε₯—$()δ»₯εŠεŽη»­ηš„$(thing)ι˜²εŒ–ζœ$()ε―η”¨δΊŽζŠ΅εΎ‘θΏ™δΊ›ζ•ˆζžœγ€‚" + }, + { + "type": "patchouli:crafting", + "title": "口罩", + "recipe": "gtceu:shaped/face_mask", + "text": "$(thing)口罩$()θƒ½ζŠ΅εΎ‘ζ‰€ζœ‰$(item)吸ε…₯ζ€§$()危ε³οΌŒδΎ‹ε¦‚砷中毒。" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:rubber_gloves", + "title": "橑胢手ε₯—", + "link_recipes": true, + "text": "橑胢手ε₯—可由$(l:mechanics/leather_making)ηšι©$()与$(l:arborfirmacraft/making_rubber)δΉ³θƒΆ$()εˆΆδ½œοΌŒζˆ–η›΄ζŽ₯δ½Ώη”¨ζ©‘θƒΆη‰‡εˆζˆγ€‚εƒδ»¬θƒ½ι˜²ζŠ€ζ‰€ζœ‰$(item)ηšθ‚€ζŽ₯触$()类危ε³οΌŒδΎ‹ε¦‚铍中毒。" + }, + { + "type": "tfc:knapping_recipe", + "recipe": "tfchotornot:leather_knapping/mittens", + "text": "ι¦–ε…ˆοΌŒζŠŠηšι©ε‰₯εˆΆζˆθΏžζŒ‡ζ‰‹ε₯—。" + }, + { + "type": "tfc:sealed_barrel_recipe", + "recipe": "tfg:sealed_barrel/prepared_leather_gloves", + "text": "ε°†θΏžζŒ‡ζ‰‹ε₯—ζ΅Έε…₯η”±ζ°΄ζžœδΈŽι…’η²Ύζ··εˆθ€Œζˆηš„$(thing)醋$()中。" + }, + { + "type": "patchouli:spotlight", + "item": "tfg:latex_soaked_gloves", + "text": "ε°†ε€„η†θΏ‡ηš„ηšι©ζ‰‹ε₯—δΈŽ$(thing)η‘«εŒ–δΉ³θƒΆ$()δΈ€εŒεœ¨$(thing)ι”…$()δΈ­εŠ ηƒ­οΌŒζ­€ζ—Άθ·εˆΆζˆζ©‘θƒΆζ‰‹ε₯—δ»…δΈ€ζ­₯δΉ‹ι₯。" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:rubber_gloves", + "text": "ζœ€εŽοΌŒε°†ζ΅ΈθƒΆζ‰‹ε₯—ζ”Ύε…₯$(l:firmalife/oven)烀炉$()δΈ­εŠ ηƒ­εšεž‹γ€‚" + }, + { + "type": "patchouli:spotlight", + "title": "ε²©ηŸ³η­–η•₯", + "item": { + "tag": "tfc:rock_knapping" + }, + "text": "避免危险物品进ε…₯η‰©ε“ζ ηš„ζœ€η€ε•ζ–Ήζ³•ε°±ζ˜―ζ Ήζœ¬δΈζ‹Ύε–εƒδ»¬γ€‚$(br)δΎ‹ε¦‚οΌŒη”¨$(thing)石倴$()ε‘«ζ»‘η‰©ε“ζ εŽοΌŒδ½ ε―δ»₯ι€‰ζ‹©ζ€§ζ‹Ύε–ζ‰€ιœ€η‰©ε“οΌŒη•™εΎ…δΉ‹εŽη»ŸδΈ€ε€„η†ε±ι™©η‰©θ΅„γ€‚" + }, + { + "type": "patchouli:spotlight", + "title": "εΉε™¨ιš”离", + "text": "ε±ι™©ζζ–™δ»…ε½“ε­˜ζ”Ύεœ¨$(thing)物品栏$()ζ—Άζ‰δΌšι€ ζˆδΌ€ε³οΌŒε…Άδ»–εΉε™¨εˆ™δΈε—歀影响!$(br)ε½“ε±ι™©ζζ–™ε­˜ζ”Ύεœ¨$(l:tfg_tips/inventory_management)θƒŒεŒ…$()ζˆ–$(l:getting_started/pottery#vessel)ε€§ηΌΈ$()η­‰εΉε™¨δΈ­ζ—ΆδΈδΌšι€ ζˆδΌ€ε³γ€‚ζ‰‹ζŒε€§ηΌΈζ—Ά$(thing)右ι”点击$()可直ζŽ₯与εΉε™¨θΏ›θ‘Œη‰©ε“θ½¬η§»γ€‚", + "item": "sophisticatedbackpacks:backpack,tfc:ceramic/vessel,tfc:ceramic/large_vessel" + }, + { + "type": "patchouli:spotlight", + "title": "ζΈ©ζ³‰η–—ζ„ˆ", + "item": "tfc:bucket/spring_water", + "text": "η«™η«‹δΊŽ$(thing)温泉$()δΈ­ε―θŽ·εΎ—ηΌ“ζ…’ηš„$(thing)η”Ÿε‘½ζ’ε€$()ζ•ˆζžœγ€‚" + }, + { + "type": "patchouli:spotlight", + "title": "ι™ˆι…Ώι…’", + "text": "$(thing)ι™ˆι…Ώι…’$()δΌšζδΎ›θ―ζ°΄ε’žη›Šζ•ˆζžœοΌŒε…ΆδΈ­ιƒ¨εˆ†ε―θƒ½ε―Ήδ½ ε€§ζœ‰θ£¨η›Šγ€‚$(br2)你可δ»₯使用$(l:getting_started/pottery#jug)ι™Άε£Ά$()ζˆ–$(l:waterflasks/recipes)ζ°΄ε£Ά$()ι₯用εƒδ»¬γ€‚", + "item": "tfcagedalcohol:bucket/aged_beer,tfcagedalcohol:bucket/aged_cider,tfcagedalcohol:bucket/aged_rum,tfcagedalcohol:bucket/aged_sake,tfcagedalcohol:bucket/aged_vodka,tfcagedalcohol:bucket/aged_whiskey,tfcagedalcohol:bucket/aged_corn_whiskey,tfcagedalcohol:bucket/aged_rye_whiskey" + }, + { + "type": "patchouli:text", + "text": "ι™ˆι…Ώε•€ι…’οΌšδΌ€ε³εΈζ”Ά II (20:00)$(br2)ι™ˆι…Ώθ‹Ήζžœι…’οΌšι€ŸεΊ¦ (5:20)$(br2)ι™ˆι…Ώζœ—ε§†ι…’οΌšι€ŸεΊ¦ II (2:40)$(br2)ι™ˆι…ΏζΈ…ι…’οΌšζŠ—ζ€§ζε‡ (5:20)$(br2)ι™ˆι…ΏδΌη‰ΉεŠ οΌšζŠ—ζ€§ζε‡ II (2:40)$(br2)ι™ˆι…ΏηŽ‰η±³ε¨ε£«εΏŒοΌšζ€₯θΏ« (5:20)$(br2)ι™ˆι…Ώι»‘ιΊ¦ε¨ε£«εΏŒοΌšζ€₯θΏ« (5:20)$(br2)ι™ˆι…Ώε¨ε£«εΏŒοΌšζ€₯θΏ« II (2:40)" + }, + { + "type": "patchouli:spotlight", + "item": { + "tag": "tfc:foods" + }, + "title": "θ₯养均葑", + "text": "ι£Ÿη”¨ζ›΄ι«˜$(l:getting_started/food_and_water#nutrients)θ₯ε…»δ»·ε€Ό$()ηš„δΌ˜θ΄¨ι£Ÿη‰©ε―ζ˜Ύθ‘—ζε‡η”Ÿε‘½ε€ΌδΈŠι™γ€‚$(br2)$(l:mechanics/pot#soup)ζ±€$()、$(l:mechanics/sandwiches)δΈ‰ζ˜Žζ²»$()与$(l:mechanics/salad)沙拉$()ζ˜―η»δ½³ι€‰ζ‹©γ€‚" + }, + { + "type": "patchouli:spotlight", + "title": "ιšθΊ«εΊŠι“Ί", + "item": { + "tag": "minecraft:beds" + }, + "text": "θ‹₯ζ‰€ζœ‰ι˜²ζŠ€ζŽͺζ–½ε‡ε€±ζ•ˆοΌŒιšθΊ«ζΊεΈ¦εΊŠι“Ίη”¨δΊŽι‡η”Ÿζ˜―δΈͺζ˜Žζ™ΊδΉ‹δΈΎγ€‚$(br2)θ‹₯ζ— ζ³•θŽ·ε–$(thing)ηΎŠζ―›$()ζˆ–$(thing)ηΊΏ$(),你也可δ»₯刢作$(l:getting_started/a_place_to_sleep)θŒ…θ‰εΊŠ$()。" + } + ] +} \ 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 index a00857e73..dc1f5f284 100644 --- 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 @@ -14,27 +14,32 @@ }, { "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#mars_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#mars_surface_tetrahedrite)19%$(/l)$()$(li)εŽŸη”Ÿι“Ά: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_nickel_galena)11%$(/l)$()$(li)倩焢璱: $(l:tfg_ores/mars_vein_index#mars_lubricant)35%$(/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#mars_surface_hematite)5%$(/l)$()$(li)ζ–Ήι“…ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_galena)40%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)7%$(/l)$()$(li)ζ»‘ηŸ³: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/l)$()$(li)ηƒ§η»ΏηŸ³: $(l:tfg_ores/mars_vein_index#mars_apatite)14%$(/l)$()", + "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#mars_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#mars_surface_tetrahedrite)19%$(/l)$()$(li)εŽŸη”Ÿι“Ά: $(l:tfg_ores/mars_vein_index#mars_galena)20%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_nickel_galena)11%$(/l)$()$(li)倩焢璱: $(l:tfg_ores/mars_vein_index#mars_lubricant)35%$(/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#mars_lapis)15%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_hematite)5%$(/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_lapis)25%$(/l)$()$(li)ζ–Ήι“…ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_galena)40%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)7%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)η…€η‚­: $(l:tfg_ores/mars_vein_index#mars_coal)70%$(/l), $(l:tfg_ores/mars_vein_index#mars_graphite)25%$(/l)$()$(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)21%$(/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#mars_surface_bismuthinite)20%$(/l)$()$(li)ηŸ³θ‹±ε²©: $(l:tfg_ores/mars_vein_index#mars_quartzite)41%$(/l)$()$(li)石咨: $(l:tfg_ores/mars_vein_index#mars_graphite)45%$(/l)$()$(li)η‘…ι•ι•ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_nickel)35%$(/l)$()$(li)瑝石: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)10%$(/l)$()$(li)η‘«: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)20%$(/l)$()$(li)η‘«ι“‚ηŸΏ: $(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)25%$(/l)$()", + "text": "$(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), $(l:tfg_ores/mars_vein_index#mars_graphite)25%$(/l)$()$(li)η‹¬ε±…ηŸ³: $(l:tfg_ores/mars_vein_index#mars_neodynium)29%$(/l)$()$(li)η™½ι’¨ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_tungsten)42%$(/l)$()$(li)ηš‚ηŸ³: $(l:tfg_ores/mars_vein_index#mars_lubricant)21%$(/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#mars_surface_bismuthinite)20%$(/l)$()$(li)ηŸ³θ‹±ε²©: $(l:tfg_ores/mars_vein_index#mars_quartzite)41%$(/l)$()$(li)石咨: $(l:tfg_ores/mars_vein_index#mars_graphite)45%$(/l)$()$(li)η‘…ι•ι•ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_nickel)35%$(/l)$()$(li)瑝石: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)10%$(/l)$()$(li)η‘«: $(l:tfg_ores/mars_vein_index#mars_sulfur)14%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)20%$(/l)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)磷灰石: $(l:tfg_ores/mars_vein_index#mars_apatite)47%$(/l)$()$(li)η£·ι…ΈδΈ‰ι’™: $(l:tfg_ores/mars_vein_index#mars_apatite)33%$(/l)$()$(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#mars_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#mars_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#mars_graphite)10%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)7%$(/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)42%$(/l)$()$(li)θΎ‰ι’΄ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_nickel_galena)11%$(/l)$()$(li)θΎ‰ι“‹ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)40%$(/l)$()$(li)θΎ‰ι”‘ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_stibnite)19%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)$()", + "text": "$(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)$()$(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#mars_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_sapphire)20%$(/l)$()$(li)θ“ι‡‘ηŸ³: $(l:tfg_ores/mars_vein_index#mars_lapis)35%$(/l)$()$(li)θ΅€ι“ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_hematite)50%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_graphite)10%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)7%$(/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)42%$(/l)$()$(li)θΎ‰ι’΄ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_nickel)28%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_nickel_galena)11%$(/l)$()$(li)θΎ‰ι“‹ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)40%$(/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_neodynium)5%$(/l)$()$(li)ι’™ι“ζ¦΄ηŸ³: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)ι’¨ι…Έι”‚: $(l:tfg_ores/mars_vein_index#mars_tungsten)33%$(/l)$()$(li)ι’»ηŸ³: $(l:tfg_ores/mars_vein_index#mars_graphite)20%$(/l)$()$(li)ι’½ι“ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_tantalite)36%$(/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)$()", + "text": "$(li)θΎ‰ι”‘ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_stibnite)19%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_neodynium)5%$(/l)$()$(li)ι’™ι“ζ¦΄ηŸ³: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/l)$()$(li)ι’¨ι…Έι”‚: $(l:tfg_ores/mars_vein_index#mars_tungsten)33%$(/l)$()$(li)ι’»ηŸ³: $(l:tfg_ores/mars_vein_index#mars_graphite)20%$(/l)$()$(li)ι’½ι“ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_tantalite)36%$(/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)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)ι”‚θΎ‰ηŸ³: $(l:tfg_ores/mars_vein_index#mars_salt)35%$(/l)$()$(li)ι”‘ηŸ³ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)55%$(/l)$()$(li)ι”‘ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)35%$(/l)$()$(li)ι”°ι“ζ¦΄ηŸ³: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/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#mars_surface_nickel_galena)23%$(/l)$()$(li)ι•ι»„ι“ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/l)$()$(li)ι—ͺι”ŒηŸΏ: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#mars_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#mars_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#mars_surface_tetrahedrite)57%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)47%$(/l)$()", + "text": "$(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#mars_surface_cassiterite)55%$(/l)$()$(li)ι”‘ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_surface_cassiterite)35%$(/l)$()$(li)ι”°ι“ζ¦΄ηŸ³: $(l:tfg_ores/mars_vein_index#mars_tantalite)10%$(/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#mars_surface_nickel_galena)23%$(/l)$()$(li)ι•ι»„ι“ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_lubricant)7%$(/l)$()$(li)ι—ͺι”ŒηŸΏ: $(l:tfg_ores/mars_vein_index#mars_sulfur)23%$(/l), $(l:tfg_ores/mars_vein_index#mars_surface_nickel_galena)17%$(/l)$()$(li)ι›„ι»„: $(l:tfg_ores/mars_vein_index#mars_beryllium)15%$(/l)$()$(li)ι’ι‡‘ηŸ³: $(l:tfg_ores/mars_vein_index#mars_lapis)25%$(/l)$()$(li)ι»„θ€ι“ηŸΏ: $(l:tfg_ores/mars_vein_index#mars_hematite)30%$(/l), $(l:tfg_ores/mars_vein_index#mars_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)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)ι»„ι“œηŸΏ: $(l:tfg_ores/mars_vein_index#mars_copper)65%$(/l)$()$(li)ι»ι“œηŸΏ: $(l:tfg_ores/mars_vein_index#mars_surface_tetrahedrite)57%$(/l), $(l:tfg_ores/mars_vein_index#mars_stibnite)47%$(/l)$()", "type": "patchouli:text" } ], 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 index 62de57648..f475de296 100644 --- 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 @@ -14,12 +14,12 @@ }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)ζ–‘ι“œηŸΏ, η‘«ι“‚ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_neodynium)ζ°Ÿη’³ι•§ι“ˆηŸΏ, η‹¬ε±…ηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)ζ²₯ι’ι“€ηŸΏ, ι’ηŸΏ, ζ™Άθ΄¨ι“€ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)ζ²₯ι’ι“€ηŸΏ, ι’ηŸΏ, θ΅€ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_coal)η…€η‚­, θ΅€ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)η™½ι’¨ηŸΏ, ι’¨ι…Έι”‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)ηš‚ηŸ³, ζ»‘ηŸ³, ζ΅·η»ΏηŸ³ηŸΏη ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_salt)盐, ι”‚θΎ‰ηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_quartzite)ηŸ³θ‹±ε²©, ηŸ³ζ£‰, ι‡ζ™ΆηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_graphite)石咨, ι’»ηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_nickel)η‘…ι•ι•ηŸΏ, θΎ‰ι’΄ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_apatite)磷灰石, ηƒ§η»ΏηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_chromite)纒石, ι“¬ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)η»ΏεηŸ³, ι“ηŸΏ$()$()", + "text": "$(li)$(l:tfg_ores/mars_vein_index#deep_mars_sheldonite)ζ–‘ι“œηŸΏ, η‘«ι“‚ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_neodynium)ζ°Ÿη’³ι•§ι“ˆηŸΏ, η‹¬ε±…ηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_pitchblende)ζ²₯ι’ι“€ηŸΏ, ζ–Ήι’ηŸ³, ζ™Άθ΄¨ι“€ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_pitchblende)ζ²₯ι’ι“€ηŸΏ, ζ–Ήι’ηŸ³, θ΅€ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_coal)η…€η‚­, θ΅€ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tungsten)η™½ι’¨ηŸΏ, ι’¨ι…Έι”‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lubricant)ηš‚ηŸ³, ζ»‘ηŸ³, ζ΅·η»ΏηŸ³ηŸΏη ‚$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_salt)盐, ι”‚θΎ‰ηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_quartzite)ηŸ³θ‹±ε²©, ηŸ³ζ£‰, ι‡ζ™ΆηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_graphite)石咨, ι’»ηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_nickel)η‘…ι•ι•ηŸΏ, θΎ‰ι’΄ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_apatite)磷灰石, ηƒ§η»ΏηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#deep_mars_chromite)纒石, ι“¬ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_beryllium)η»ΏεηŸ³, ι“ηŸΏ$()$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)θ΅€ι“ηŸΏ, θ€ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_hematite)θ΅€ι“ηŸΏ, θ€ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)θΎ‰ι“‹ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sapphire)ι‡‘ηŸΏ, η”΅ηŸ³, ι“εœŸηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_almandine)ι“ι“ζ¦΄ηŸ³, 蓝εηŸ³$()$()$(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_surface_cassiterite)ι”‘ηŸ³ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)ι”°ηŸΏ, ι’½ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_nickel_galena)ι—ͺι”ŒηŸΏ, ζ–Ήι“…ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sulfur)ι—ͺι”ŒηŸΏ, ι»„ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_tetrahedrite)ι»ι“œηŸΏ (地葨)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_stibnite)ι»ι“œηŸΏ (ζ™ι€š)$()$()", + "text": "$(li)$(l:tfg_ores/mars_vein_index#mars_hematite)θ΅€ι“ηŸΏ, θ€ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_hematite)θ΅€ι“ηŸΏ, θ€ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_bismuthinite)θΎ‰ι“‹ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sapphire)ι‡‘ηŸΏ, θ“ηŸ³, ι“εœŸηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_almandine)ι“ι“ζ¦΄ηŸ³, 蓝εηŸ³$()$()$(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_surface_cassiterite)ι”‘ηŸ³ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_tantalite)ι”°ηŸΏ, ι’½ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_nickel_galena)ι—ͺι”ŒηŸΏ, ζ–Ήι“…ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_sulfur)ι—ͺι”ŒηŸΏ, ι»„ι“ηŸΏ$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_lapis)ι’ι‡‘ηŸ³, θ“ι‡‘ηŸ³, ζ–Ήι’ ηŸ³$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_surface_tetrahedrite)ι»ι“œηŸΏ (地葨)$()$()$(li)$(l:tfg_ores/mars_vein_index#mars_stibnite)ι»ι“œηŸΏ (ζ™ι€š)$()$()", "type": "patchouli:text" }, { @@ -214,7 +214,7 @@ { "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": "ζ²₯ι’ι“€ηŸΏ, ι’ηŸΏ, ζ™Άθ΄¨ι“€ηŸΏ", + "title": "ζ²₯ι’ι“€ηŸΏ, ζ–Ήι’ηŸ³, ζ™Άθ΄¨ι“€ηŸΏ", "type": "patchouli:text", "anchor": "deep_mars_pitchblende" }, @@ -235,12 +235,12 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 52%$(br)$(thing)ζ₯源$(): ι“€, 钍, ι“…$(br)$(thing)εŒ–ε­¦εΌ$(): (UOβ‚‚)₃ThPb$(br)$(thing)危ε³$(): $(c)$(t:ιœ€θ¦ε…¨θΊ«ι˜²ζŠ€)θ‡΄η™Œ (任何ζŽ₯触)$(/t)$()", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 52%$(br)$(thing)ζ₯源$(): ι“€, 钍, ι“…$(br)$(thing)εŒ–ε­¦εΌ$(): (UOβ‚‚)₃ThPb$(br)$(thing)危ε³$(): $(c)$(t:ιœ€θ¦ε…¨θΊ«ι˜²ζŠ€)ζ”Ύε°„ζ€§ (任何ζŽ₯触)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "ι’ηŸΏ", + "name": "ζ–Ήι’ηŸ³", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -255,7 +255,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 26%$(br)$(thing)ζ₯源$(): 钍$(br)$(thing)εŒ–ε­¦εΌ$(): Th", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 26%$(br)$(thing)ζ₯源$(): 钍$(br)$(thing)εŒ–ε­¦εΌ$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -275,13 +275,13 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 21%$(br)$(thing)ζ₯源$(): ι“€$(br)$(thing)εŒ–ε­¦εΌ$(): UOβ‚‚$(br)$(thing)危ε³$(): $(c)$(t:ιœ€θ¦ε…¨θΊ«ι˜²ζŠ€)θ‡΄η™Œ (任何ζŽ₯触)$(/t)$()", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 21%$(br)$(thing)ζ₯源$(): ι“€$(br)$(thing)εŒ–ε­¦εΌ$(): UOβ‚‚$(br)$(thing)危ε³$(): $(c)$(t:ιœ€θ¦ε…¨θΊ«ι˜²ζŠ€)ζ”Ύε°„ζ€§ (任何ζŽ₯触)$(/t)$()", "type": "patchouli:multiblock" }, { "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": "ζ²₯ι’ι“€ηŸΏ, ι’ηŸΏ, θ΅€ι“ηŸΏ", + "title": "ζ²₯ι’ι“€ηŸΏ, ζ–Ήι’ηŸ³, θ΅€ι“ηŸΏ", "type": "patchouli:text", "anchor": "mars_pitchblende" }, @@ -302,12 +302,12 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 41%$(br)$(thing)ζ₯源$(): ι“€, 钍, ι“…$(br)$(thing)εŒ–ε­¦εΌ$(): (UOβ‚‚)₃ThPb$(br)$(thing)危ε³$(): $(c)$(t:ιœ€θ¦ε…¨θΊ«ι˜²ζŠ€)θ‡΄η™Œ (任何ζŽ₯触)$(/t)$()", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 41%$(br)$(thing)ζ₯源$(): ι“€, 钍, ι“…$(br)$(thing)εŒ–ε­¦εΌ$(): (UOβ‚‚)₃ThPb$(br)$(thing)危ε³$(): $(c)$(t:ιœ€θ¦ε…¨θΊ«ι˜²ζŠ€)ζ”Ύε°„ζ€§ (任何ζŽ₯触)$(/t)$()", "type": "patchouli:multiblock" }, { "Type": "patchouli:multiblock", - "name": "ι’ηŸΏ", + "name": "ζ–Ήι’ηŸ³", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -322,7 +322,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 29%$(br)$(thing)ζ₯源$(): 钍$(br)$(thing)εŒ–ε­¦εΌ$(): Th", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 29%$(br)$(thing)ζ₯源$(): 钍$(br)$(thing)εŒ–ε­¦εΌ$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -1494,7 +1494,7 @@ { "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": "ι‡‘ηŸΏ, η”΅ηŸ³, ι“εœŸηŸΏ", + "title": "ι‡‘ηŸΏ, θ“ηŸ³, ι“εœŸηŸΏ", "type": "patchouli:text", "anchor": "mars_sapphire" }, @@ -1540,7 +1540,7 @@ }, { "Type": "patchouli:multiblock", - "name": "η”΅ηŸ³", + "name": "θ“ηŸ³", "multiblock": { "mapping": { "0": "#forge:ores/electrotine" @@ -2232,6 +2232,98 @@ "draw_filler": true, "type": "patchouli:empty" }, + { + "Type": "patchouli:text", + "text": "$(thing)η¨€ζœ‰εΊ¦$(): 200$(br)$(thing)ε―†εΊ¦$(): 0.25$(br)$(thing)η±»εž‹$(): ε›’η°‡ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): 0 β€” 70$(br)$(thing)ε°Ίε―Έ$(): 30$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 20$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): ζ³₯板岩, η‡§ηŸ³, 白云岩, η™½εž©ε²©, 石灰岩, 鑡岩", + "title": "ι’ι‡‘ηŸ³, θ“ι‡‘ηŸ³, ζ–Ήι’ ηŸ³", + "type": "patchouli:text", + "anchor": "mars_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)η¨€ζœ‰εΊ¦$(): 140$(br)$(thing)ε―†εΊ¦$(): 0.25$(br)$(thing)η±»εž‹$(): ε›’η°‡ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): 80 β€” 180$(br)$(thing)ε°Ίε―Έ$(): 45$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 40$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): ζ³₯板岩, η‡§ηŸ³, ηŽ„ζ­¦ε²©, 白云岩, η™½εž©ε²©, 石灰岩, 砾岩, 粗青岩, 粘土岩, ηΊ’θŠ±ε²—ε²©, θŠ±ε²—ε²©, θ‹±ε‰ε²©, 辉长岩, ι—ͺ长岩, 鑡岩", 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 index 22bbfd0a7..119901031 100644 --- 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 @@ -14,22 +14,22 @@ }, { "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)25%$(/l), $(l:tfg_ores/moon_vein_index#moon_sphalerite)10%$(/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)$()", + "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)25%$(/l), $(l:tfg_ores/moon_vein_index#moon_sphalerite)10%$(/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_beryllium)0%$(/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)$()", "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)$()", + "text": "$(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)$()$(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_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)$()", + "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_saltpeter)37%$(/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)30%$(/l)$()$(li)ι’¨ι…Έι”‚: $(l:tfg_ores/moon_vein_index#moon_scheelite)50%$(/l)$()", + "text": "$(li)θ“ι»„ηŽ‰: $(l:tfg_ores/moon_vein_index#moon_topaz)35%$(/l)$()$(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_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)30%$(/l)$()$(li)ι’¨ι…Έι”‚: $(l:tfg_ores/moon_vein_index#moon_scheelite)50%$(/l)$()", "type": "patchouli:text" }, { 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 index 614cda701..0525d88cb 100644 --- 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 @@ -14,7 +14,7 @@ }, { "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)蓝εηŸ³, ι“ι“ζ¦΄ηŸ³$()$()", + "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" }, { @@ -669,13 +669,13 @@ { "Type": "patchouli:text", "text": "$(thing)η¨€ζœ‰εΊ¦$(): 210$(br)$(thing)ε―†εΊ¦$(): 0.3$(br)$(thing)η±»εž‹$(): ε›’η°‡ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): 0 β€” 90$(br)$(thing)ε°Ίε―Έ$(): 30$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 50$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): ε‰ε±±ε²©, 桁纹岩, 苏长岩, θ‹±ε‰ε²©", - "title": "瑝石, η”΅ηŸ³", + "title": "瑝石, θ“ηŸ³", "type": "patchouli:text", "anchor": "moon_saltpeter" }, { "Type": "patchouli:multiblock", - "name": "η”΅ηŸ³", + "name": "θ“ηŸ³", "multiblock": { "mapping": { "0": "#forge:ores/electrotine" @@ -1215,7 +1215,7 @@ }, { "Type": "patchouli:multiblock", - "name": "ι’ηŸΏ", + "name": "ζ–Ήι’ηŸ³", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1230,7 +1230,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 0%$(br)$(thing)ζ₯源$(): 钍$(br)$(thing)εŒ–ε­¦εΌ$(): Th", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 0%$(br)$(thing)ζ₯源$(): 钍$(br)$(thing)εŒ–ε­¦εΌ$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { 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 index 2b0db1dc7..c8a4018be 100644 --- 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 @@ -14,27 +14,27 @@ }, { "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)$()", + "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_beryllium)0%$(/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)$()", "type": "patchouli:text" }, { "Type": "patchouli:text", - "text": "$(li)ζ™Άθ΄¨ι“€ηŸΏ: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/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)62%$(/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)$()", + "text": "$(li)明矾石: $(l:tfg_ores/nether_vein_index#nether_saltpeter)15%$(/l)$()$(li)ζ™Άθ΄¨ι“€ηŸΏ: $(l:tfg_ores/nether_vein_index#nether_pitchblende)25%$(/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)62%$(/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_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)100%$(/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)$()", + "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)100%$(/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), $(l:tfg_ores/nether_vein_index#nether_cassiterite)9%$(/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)$()", + "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_saltpeter)25%$(/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)$()", + "text": "$(li)θ“ι‡‘ηŸ³: $(l:tfg_ores/nether_vein_index#nether_lapis)35%$(/l)$()$(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_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" }, { @@ -44,7 +44,7 @@ }, { "Type": "patchouli:text", - "text": "$(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_sheldonite)23%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/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)$()$(li)ι»„ι“œηŸΏ: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()", + "text": "$(li)ι”‘ηŸ³ηŸΏ: $(l:tfg_ores/nether_vein_index#nether_cassiterite)36%$(/l)$()$(li)ι”‘ηŸ³ηŸΏη ‚: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)ι”‘ηŸΏ: $(l:tfg_ores/nether_vein_index#nether_cassiterite)54%$(/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_sheldonite)23%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnierite)19%$(/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)$()$(li)ι»„ι“œηŸΏ: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()", "type": "patchouli:text" }, { 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 index 661a6f882..4bd56781e 100644 --- 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 @@ -14,7 +14,7 @@ }, { "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)η‘«, ι»„ι“ηŸΏ$()$()", + "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" }, { @@ -145,7 +145,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 62%$(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" }, { @@ -165,7 +165,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 25%$(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" }, { @@ -909,7 +909,7 @@ { "Type": "patchouli:text", "text": "$(thing)η¨€ζœ‰εΊ¦$(): 210$(br)$(thing)ε―†εΊ¦$(): 0.4$(br)$(thing)η±»εž‹$(): ε›’η°‡ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): 32 β€” 128$(br)$(thing)ε°Ίε―Έ$(): 50$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): 片岩, 片麻岩, θŠ±ε²—ε²©, θΎ‰ηŸ³ε²©, 辉长岩, ι—ͺ长岩", - "title": "瑝石, η”΅ηŸ³", + "title": "瑝石, θ“ηŸ³", "type": "patchouli:text", "anchor": "nether_saltpeter" }, @@ -955,7 +955,7 @@ }, { "Type": "patchouli:multiblock", - "name": "η”΅ηŸ³", + "name": "θ“ηŸ³", "multiblock": { "mapping": { "0": "#forge:ores/electrotine" @@ -1452,7 +1452,7 @@ }, { "Type": "patchouli:multiblock", - "name": "ι’ηŸΏ", + "name": "ζ–Ήι’ηŸ³", "multiblock": { "mapping": { "0": "#forge:ores/thorium" @@ -1467,7 +1467,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 0%$(br)$(thing)ζ₯源$(): 钍$(br)$(thing)εŒ–ε­¦εΌ$(): Th", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 0%$(br)$(thing)ζ₯源$(): 钍$(br)$(thing)εŒ–ε­¦εΌ$(): ThOβ‚‚", "type": "patchouli:multiblock" }, { @@ -2426,7 +2426,7 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 60%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): Sn", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 54%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): Sn", "type": "patchouli:multiblock" }, { @@ -2446,13 +2446,28 @@ ] }, "enable_visualize": false, - "text": "$(thing)η™Ύεˆ†ζ―”$(): 40%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): SnOβ‚‚", + "text": "$(thing)η™Ύεˆ†ζ―”$(): 36%$(br)$(thing)η†”εŒ–$(): ι”‘$(br)$(thing)εŒ–ε­¦εΌ$(): SnOβ‚‚", "type": "patchouli:multiblock" }, { - "Type": "patchouli:empty", - "draw_filler": true, - "type": "patchouli:empty" + "Type": "patchouli:multiblock", + "name": "瑝石", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)η™Ύεˆ†ζ―”$(): 9%$(br)$(thing)ζ₯源$(): ι’Ύ, ζ°$(br)$(thing)εŒ–ε­¦εΌ$(): KNO₃", + "type": "patchouli:multiblock" }, { "Type": "patchouli:text", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/ore_basics.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/ore_basics.json new file mode 100644 index 000000000..e57b38e59 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/ore_basics.json @@ -0,0 +1,47 @@ +{ + "name": "在TFGδΈ­ι‡‡ηŸΏ", + "icon": "minecraft:diamond_pickaxe", + "category": "tfc:tfg_ores", + "priority": true, + "sortnum": 0, + "pages": [ + { + "type": "patchouli:text", + "text": "εΌ€ι‡‡ηŸΏηŸ³ιœ€θ¦$(thing)镐子$()ζˆ–$(thing)ι‡‡ηŸΏι”€$()。$(br2)ζ™ι€š$(thing)销子$()δΉŸθƒ½εΏ«ι€Ÿη ΄εηŸ³θ΄¨ζ–Ήε—οΌŒδ½†δΈδΌšζŽ‰θ½ηŸΏηŸ³γ€‚δΈθΏ‡εƒεœ¨$(l:getting_started/primitive_anvils#raw_rock)提取$()ηŸ³ζζ–Ήι’δ»ζœ‰εžη”¨δ»·ε€Όγ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "gtceu:shaped/pickaxe_copper", + "recipe2": "gtceu:shaped/mining_hammer_copper" + }, + { + "type": "patchouli:spotlight", + "title": "镐子", + "text": "η”¨ι•η ΄εηŸΏηŸ³δΌšζŽ‰θ½$(thing)η²—ηŸΏηŸ³$()οΌˆθ΄«η˜ γ€ζ™ι€šζˆ–ε―Œι›†οΌ‰δ»₯εŠε°‘ι‡ηŸ³η²‰γ€‚ε•ζ¬‘δΊ§ε‡Ίθ™½δΈε€Όε€šε°‘mBοΌŒδΈ”ιœ€θ¦ε€šδ»½εŽŸζ–™ζ‰θƒ½εˆΆζˆδΈ€ε—ι”­οΌŒδ½†$(thing)η…€η‚­$()η­‰ηŸΏη‰©δ»…θƒ½δ»₯歀归态直ζŽ₯使用。", + "item": { + "tag": "minecraft:pickaxes" + } + }, + { + "type": "patchouli:spotlight", + "title": "ι‡‡ηŸΏι”€", + "text": "θΏ™ζœ¬θ΄¨δΈŠζ˜―ε…·ε€‡3x3θŒƒε›΄ι‡‡ι›†ηš„ι•οΌŒεŒζ ·δΌšδΊ§ε‡Ί$(thing)η²—ηŸΏηŸ³$()γ€‚εœ¨ζ•²θ½ηŸΏηŸ³εŽζΈ…η†ε²©ε±‚ζ—Άε°€ε…Άι«˜ζ•ˆοΌ$(br2)ζŒ‰δ½$(thing)潜葌$()ε―εˆ‡ζ’δΈΊε•ζ Όι‡‡ι›†ζ¨‘εΌγ€‚", + "item": { + "tag": "forge:tools/mining_hammers" + } + }, + { + "type": "patchouli:spotlight", + "title": "εŸΊη‘€ηŸΏηŸ³ε€„η†", + "anchor": "processing", + "item": "gtceu:crushed_copper_ore", + "text": "ε―ΉηŸΏηŸ³θΏ›θ‘ŒεŠ ε·₯θƒ½ε€§εΉ…ζε‡ε―η”¨ι‡‘ε±žδΊ§ι‡γ€‚ι¦–θ¦ζ­₯ιͺ€ζ˜―使用$(l:mechanics/quern)ζ‰‹ζŽ¨η£¨$()η²‰η’Žη²—ηŸΏηŸ³γ€‚εŽη»­ε―ι€šθΏ‡ε‡ηΊ§θΎε€‡εžηްθ‡ͺεŠ¨εŒ–ε€„η†οΌŒδΎ‹ε¦‚$(thing)石磨$()、$(thing)η²‰η’Žθ½$()、$(thing)η ”η£¨ζœΊ$()及$(thing)锻造销$()。" + }, + { + "type": "patchouli:crafting", + "title": "η²‰ε°˜ζηΊ―", + "recipe": "gtceu:shapeless/crushed_ore_to_dust_copper", + "text": "ζ¬²δ½Ώη²‰η’ŽεŽηš„ηŸΏηŸ³η†”η‚ΌδΊ§ε‡Ίζ›΄ε€šmBοΌŒιœ€ε…ˆε°†ε…ΆδΈŽ$(thing)销$()εœ¨εˆζˆζ Όε†…η»„εˆοΌŒεˆΆεΎ—$(thing)δΈηΊ―η²‰ε°˜$()γ€‚ιšεŽε°†η²‰ε°˜ζŠ•ε…₯ζ°΄δΈ­οΌŒζˆ–ε―Ήη››ζ°΄$(thing)ε€§ι”…$()ζŒ‰δΈ‹$(item)$(k:key.use)$()即可εŒζˆζηΊ―。" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/venus_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/venus_ore_index.json new file mode 100644 index 000000000..57bbc45ee --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/venus_ore_index.json @@ -0,0 +1,22 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "ι‡‘ζ˜ŸηŸΏη‰©η΄’εΌ•", + "icon": "vintageimprovements:sulfur", + "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/venus_vein_index#venus_manual_salt)10%$(/l)$()$(li)盐: $(l:tfg_ores/venus_vein_index#venus_manual_salt)80%$(/l)$()$(li)η‘«: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)80%$(/l)$()$(li)锂云母: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)ι”‚θΎ‰ηŸ³: $(l:tfg_ores/venus_vein_index#venus_manual_salt)5%$(/l)$()$(li)ι—ͺι”ŒηŸΏ: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)5%$(/l)$()$(li)ι»„ι“ηŸΏ: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)15%$(/l)$()", + "type": "patchouli:text" + } + ], + "sortnum": 8 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/venus_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/venus_vein_index.json new file mode 100644 index 000000000..1bd0290b4 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_ores/venus_vein_index.json @@ -0,0 +1,181 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "ι‡‘ζ˜ŸηŸΏθ„‰η΄’εΌ•", + "icon": "gtceu:venus_stone_sulfur_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/venus_vein_index#venus_manual_salt)盐, ι”‚θΎ‰ηŸ³$()$()$(li)$(l:tfg_ores/venus_vein_index#venus_manual_sulfur)η‘«, ι»„ι“ηŸΏ$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(thing)η¨€ζœ‰εΊ¦$(): 30$(br)$(thing)ε―†εΊ¦$(): 0.2$(br)$(thing)η±»εž‹$(): η›˜ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): 40 β€” 65$(br)$(thing)ε°Ίε―Έ$(): 20$(br)$(thing)高度$(): 6$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 30$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): ε‰ε±±ε²©, 桁纹岩, ηŽ„ζ­¦ε²©, 石灰华, 粗青岩, θ‹±ε‰ε²©", + "title": "盐, ι”‚θΎ‰ηŸ³", + "type": "patchouli:text", + "anchor": "venus_manual_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "盐", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)η™Ύεˆ†ζ―”$(): 80%$(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)η™Ύεˆ†ζ―”$(): 10%$(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)η™Ύεˆ†ζ―”$(): 5%$(br)$(thing)ζ₯源$(): ι’Ύ, ι”‚, 铝, 氟$(br)$(thing)εŒ–ε­¦εΌ$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ι”‚θΎ‰ηŸ³", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)η™Ύεˆ†ζ―”$(): 5%$(br)$(thing)ζ₯源$(): ι”‚, 铝$(br)$(thing)εŒ–ε­¦εΌ$(): LiAlSiβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)η¨€ζœ‰εΊ¦$(): 30$(br)$(thing)ε―†εΊ¦$(): 0.2$(br)$(thing)η±»εž‹$(): ε›’η°‡ηŠΆηŸΏθ„‰$(br)$(thing)Y 坐标$(): 40 β€” 65$(br)$(thing)ε°Ίε―Έ$(): 20$(br)$(thing)ζŒ‡η€Ίε™¨ζœ€ε€§ζ·±εΊ¦$(): 30$(br2)$(thing)ε²©ηŸ³η±»εž‹$(): ε‰ε±±ε²©, 桁纹岩, ηŽ„ζ­¦ε²©, 石灰华, 粗青岩, θ‹±ε‰ε²©", + "title": "η‘«, ι»„ι“ηŸΏ", + "type": "patchouli:text", + "anchor": "venus_manual_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "η‘«", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)η™Ύεˆ†ζ―”$(): 80%$(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)η™Ύεˆ†ζ―”$(): 15%$(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)η™Ύεˆ†ζ―”$(): 5%$(br)$(thing)η†”εŒ–$(): ι”Œ$(br)$(thing)εŒ–ε­¦εΌ$(): ZnS", + "type": "patchouli:multiblock" + } + ], + "sortnum": 9 +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/anvil_working_guide.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/anvil_working_guide.json new file mode 100644 index 000000000..dd70611b6 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/anvil_working_guide.json @@ -0,0 +1,174 @@ +{ + "name": "η §ε…·ι”»ι€ ζŒ‡ε—", + "icon": "gtceu:red_steel_hammer", + "category": "tfc:tfg_tips", + "read_by_default": true, + "priority": false, + "pages": [ + { + "type": "patchouli:text", + "title": "η §ε…·ι”»ι€ ", + "text": "在$(l:mechanics/anvils)η §ε…·$()δΈ­$(l:mechanics/anvils#working)ι”»ι€ $()是$(thing)羀峦格雷$()ζ•΄εˆεŒ…δΈ­ηš„δΈ€δΈͺζ ΈεΏƒζ΅η¨‹οΌŒδ½ εœ¨θΏˆε‘$(thing)θ’Έζ±½δΈŽζœΊζ’°ζ—Άδ»£$()θΏ‡η¨‹δΈ­ηš„ε€§ιƒ¨εˆ†ε·₯δ½œιƒ½ιœ€εœ¨$(l:mechanics/anvils)η §ε…·$()上εŒζˆγ€‚$(br)ζœ¬ζŒ‡ε—εˆ†δΈΊδΈ€ιƒ¨εˆ†οΌš$(l:tfg_tips/anvil_working_guide#ui_explained)η†θ§£η•Œι’$()与$(l:tfg_tips/anvil_working_guide#how_to_perfectly_forge)如何εŒηΎŽι”»ι€ $()。$(br2)ζ•΄εˆεŒ…ι…ζœ‰εδΈΊ$(l:https://www.curseforge.com/minecraft/texture-packs/tfc-anvil-helper)TFC Anvil Helper$()ηš„θ‡ͺεšδΉ‰$(thing)θ΅„ζΊεŒ…$()οΌŒθ―·εŠ‘εΏ…ε―η”¨δ»₯η‘δΏζœ¬ζŒ‡ε—ε†…εΉζ­£εΈΈζ˜Ύη€Ίγ€‚$()" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/anvil_working_guide/anvil_ui.png" + ], + "border": false, + "text": "启用TFC Anvil HelperεŽηš„η §ε…·η•Œι’" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/anvil_working_guide/anvil_ui_marked.png" + ], + "border": false, + "anchor": "ui_explained", + "tile": "η•Œι’θ―¦θ§£", + "text": "启用TFC Anvil HelperεŽηš„η §ε…·η•Œι’οΌˆι’œθ‰²ζ ‡θ―†η‰ˆοΌ‰γ€‚" + }, + { + "type": "patchouli:text", + "text": "$(#ff0000)1.$() δ½ εœ¨η §δΈŠι€‰ζ‹©εˆΆδ½œηš„η‰©ε“γ€‚ζ―δΈͺη‰©ε“ιƒ½ζœ‰η‰Ήεšηš„$(#be00ff)ζ­₯ιͺ€εΊεˆ—$()ε’Œ$(#ff6b00)η›ζ ‡εŠ ε·₯量$()要求。$(br)$(#ff00c6)2.$() 你正在加ε·₯ηš„θΎ“ε…₯物品。$(br)$(#be00ff)3.$() 物品εŒζˆε‰εΏ…ι‘»ζŒ‰ι‘ΊεΊζ‰§θ‘Œηš„ζ­₯ιͺ€εΊεˆ—γ€‚ε…±ζœ‰4η§εΊεˆ—η±»εž‹οΌˆθ―¦θ§δΈ‹ι‘΅οΌ‰οΌš" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/anvil_working_guide/anvil_ui_marked.png" + ], + "border": false + }, + { + "type": "patchouli:text", + "text": "(ζ³¨ζ„οΌšX ζ˜―δ»»ζ„ζ­₯ιͺ€ηš„ι€šι…η¬¦)$(br)$(li)x_任意: ζ­₯ιͺ€ε―δ»₯εœ¨ζœ€εŽ3δΈͺεŠ¨δ½œδΈ­ηš„δ»»ζ„δΈ€δΈͺε‘η”Ÿγ€‚$()$(li)x_末尾: εΏ…ι‘»ζ˜―ζœ€εŽδΈ€δΈͺζ‰§θ‘Œηš„ζ­₯ιͺ€γ€‚$()$(li)x_ιžζœ€ζœ«: ζ­₯ιͺ€δΈθƒ½ζ˜―ζœ€εŽδΈ€δΈͺζ‰§θ‘Œηš„ζ­₯ιͺ€γ€‚$()$(li)x_ε€’ζ•°η¬¬δΊŒ: εΏ…ι‘»ζ˜―ε€’ζ•°η¬¬δΊŒδΈͺζ­₯ιͺ€γ€‚$()$(li)x_倒数第三: εΏ…ι‘»ζ˜―ε€’ζ•°η¬¬δΈ‰δΈͺζ­₯ιͺ€$()" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/anvil_working_guide/anvil_ui_marked.png" + ], + "border": false + }, + { + "type": "patchouli:text", + "text": "$(#2e00ff)4.$()ζ­₯ιͺ€η±»εž‹γ€‚ζ―η§η±»εž‹ιƒ½δΌšε’žεŠ ζˆ–ε‡ε°‘ε½“ε‰εŠ ε·₯ε€Όγ€‚δ»Žε·¦θ‡³ε³γ€δ»ŽδΈŠεˆ°δΈ‹δΎζ¬‘δΈΊοΌš$(li)θ½»ε‡»οΌš-3$()$(li)δΈ­ε‡»οΌš-6$()$(li)ε†²εŽ‹οΌš+2$()$(li)εΌ―ζ›²οΌš+7$()$(li)ι‡ε‡»οΌš-9$()$(li)η‰΅ζ‹‰οΌš-15$()$(li)ι•¦ι”»οΌš+13$()$(li)ζ”ΆηΌ©οΌš+16$()" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/anvil_working_guide/anvil_ui_marked.png" + ], + "border": false + }, + { + "type": "patchouli:text", + "text": "$(#00a7ff)5.$() ζ”Ύη½ι”€ε­ε’ŒεŠ©η„Šε‰‚οΌˆη„ŠζŽ₯ζ—Άδ½Ώη”¨οΌ‰ηš„ζ§½δ½γ€‚$(br)$(#00ff26)6. $()η‰©ε“ε½“ε‰ηš„εŠ ε·₯ι‡γ€‚ζ‰§θ‘ŒδΈεŒζ­₯ιͺ€δΌšε’žεŠ ζˆ–ε‡ε°‘ζ­€ε€Όγ€‚$(br)$(#fff400)7. $()η›ζ ‡εŠ ε·₯值。$(#00ff26)ε½“ε‰εŠ ε·₯量$()εΏ…ι‘»$(bold)η²Ύη‘$()η­‰δΊŽη›ζ ‡ε€ΌοΌŒδΈ”εŒζˆζ‰€ζœ‰$(#ff00c6)εΏ…ιœ€ζ­₯ιͺ€$()οΌŒη‰©ε“ζ‰η—εˆΆδ½œεŒζˆγ€‚$(br)$(#ff6b00)8. $()加ε·₯ι‡θΏ›εΊ¦ζ‘οΌŒη”¨δΊŽζ―”ε―Ήε½“ε‰εŠ ε·₯ι‡δΈŽη›ζ ‡εŠ ε·₯量。" + }, + { + "type": "patchouli:text", + "anchor": "how_to_perfectly_forge", + "title": "如何εŒηΎŽι”»ι€ ", + "text": "$(thing)εŒηΎŽι”»ι€ $()δΈ€δΈͺδΌšζŸθ€—ηš„η‰©ε“οΌŒζ―”ε¦‚$(thing)ε·₯具倴$()、$(thing)武器$()ε’Œ$(thing)ζŠ€η”²$(),θ‹₯δ»₯ζ›΄ε°‘ηš„ζ­₯ιͺ€εŒζˆοΌŒζˆε“ε°†θŽ·εΎ—θ€δΉ…εΊ¦ε’Œζ•ˆηŽ‡δΈŠηš„εŠ ζˆγ€‚εœ¨ζžε°‘ζ­₯ιͺ€ε†…εŒζˆι”»ι€ ηš„η‰©ε“δΌšζˆδΈΊεŒηΎŽι”»ι€ ζˆε“οΌŒδΈδ»…ζε‡ζœ€η»ˆε“θ΄¨οΌŒθΏ˜θƒ½ε‡ε°‘ι”€ε­ζœ¬θΊ«ηš„η£¨ζŸγ€‚" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/anvil_working_guide/perfectly_forged_item.png" + ], + "border": false, + "text": "δΈ€δΈͺεŒηΎŽι”»ι€ ηš„锻铁镐倴" + }, + { + "type": "patchouli:spotlight", + "title": "ι”»ι€ ζŒ‡ε—", + "item": "gtceu:wrought_iron_pickaxe_head", + "text": "θΏ™ιƒ¨εˆ†ζŒ‡ε—ε°†δ»₯ι”»ι“ι•ε€΄δΈΊδΎ‹οΌŒδ»‹η»ε¦‚δ½•θΎΎζˆεŒηΎŽι”»ι€ γ€‚$(br2)$(bold)$(italic)ε…θ΄£ε£°ζ˜ŽοΌš$()$(br)θ™½η„Άεœ¨ηΎ€ε³¦ζ Όι›·ζ‰€ζœ‰δΈ–η•ŒδΈ­οΌŒη‰©ε“ηš„εΏ…ιœ€ζ­₯ιͺ€ε’ŒεΊεˆ—ζ˜―ε›Ίεšηš„οΌŒδ½†$(bold)η›ζ ‡εŠ ε·₯ε€Ό$()ε› δΈ–η•Œη§ε­θ€ŒεΌ‚γ€‚ε› ζ­€ζœ¬ζŒ‡ε—ε‡θΎι”»ι“ι•ε€΄ηš„η›ζ ‡εŠ ε·₯ε€Όζ˜―$(bold)83$()。" + }, + { + "type": "patchouli:empty" + }, + { + "type": "patchouli:text", + "title": "第一ζ­₯", + "text": "ι¦–ε…ˆοΌŒε°†ζ‰€ζœ‰εΏ…ιœ€ζ­₯ιͺ€ηš„ζ•°ε€Όη›ΈεŠ οΌŒεΎ—εˆ°ζˆ‘δ»¬η§°δΉ‹δΈΊ\"εΏ…ιœ€εŠ ε·₯量\"ηš„ε€Όγ€‚ι•ε€΄ιœ€θ¦δ»₯δΈ‹ζ­₯ιͺ€οΌš$(li)$(bold)ε†²εŽ‹$() 末尾$()$(li)$(bold)εΌ―ζ›²$() ιžζœ€ζœ«$()$(li)$(bold)牡拉$() ιžζœ€ζœ«$()。$(br)ε°†θΏ™δΊ›ζ­₯ιͺ€ηš„ζ•°ε€Όη›ΈεŠ οΌš$(br)$(bold)2 (ε†²εŽ‹) + 7 (εΌ―ζ›²) + (-15) (牡拉) = -6$()" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/anvil_working_guide/steps.png" + ], + "text": "εˆΆδ½œι•ε€΄ζ‰€ιœ€ηš„ζ­₯ιͺ€" + }, + { + "type": "patchouli:text", + "title": "第二ζ­₯", + "text": "ζˆ‘δ»¬ηš„δΈ»θ¦η›ζ ‡ζ˜―ε°†εŠ ε·₯量对齐η›ζ ‡ε€ΌοΌŒδ½†εŒζ—ΆεΏ…ι‘»ζ»‘θΆ³ζ­₯ιͺ€εΊεˆ—ηš„θ¦ζ±‚γ€‚ε› ζ­€οΌŒη›΄ζŽ₯对齐加ε·₯ι‡δΈŽη›ζ ‡ε€ΌεΉΆδΈε―θ‘Œγ€‚ζˆ‘δ»¬ιœ€θ¦ζ Ήζη›ζ ‡εŠ ε·₯ε€Όε’Œ\"εΏ…ιœ€εŠ ε·₯量\"θ‘η—ε‡ΊδΈ€δΈͺ中间值。" + }, + { + "type": "patchouli:text", + "text": "ζ­€ε€Όηš„θ‘η—ζ–Ήζ³•ε–ε†³δΊŽ\"εΏ…ιœ€εŠ ε·₯量\"ηš„ζ­£θ΄ŸοΌš$(li)θ‹₯\"εΏ…ιœ€εŠ ε·₯量\"δΈΊζ­£ε€Ό$()$(li2)从\"η›ζ ‡εŠ ε·₯ε€Ό\"δΈ­ε‡εŽ»\"εΏ…ιœ€εŠ ε·₯量\"ηš„η»ε―Ήε€Ό$()$(li3)83 - 6 == $(bold)77$()$()$(li)θ‹₯\"εΏ…ιœ€εŠ ε·₯量\"δΈΊθ΄Ÿε€Ό$()$(li2)ε°†\"εΏ…ιœ€εŠ ε·₯量\"ηš„η»ε―Ήε€ΌεŠ εˆ°\"η›ζ ‡εŠ ε·₯ε€Ό\"上$()$(li3)83 + 6 = $(bold)89$()$()" + }, + { + "type": "patchouli:text", + "text": "ζœ¬δΎ‹δΈ­\"εΏ…ιœ€εŠ ε·₯ε€Ό\"δΈΊ -6οΌŒζ•…δΈ­ι—΄ε€ΌδΈΊ $(bold)89$()。$(br)δ½ ε―θƒ½δΌšι—οΌŒε¦‚δ½•θŽ·ηŸ₯η²Ύη‘ηš„η›ζ ‡εŠ ε·₯ε€ΌοΌŸη §ε…·η•Œι’ηš„θΏ›εΊ¦ζ‘δΌšζ˜Ύη€Ίγ€‚εˆ»εΊ¦ηΊΏθ™½εͺ显瀺20ηš„ε€ζ•°οΌŒδ½†ε―ι€šθΏ‡ι’œθ‰²εˆ€ζ–­οΌš$(li)ζ΅…η°θ‰²οΌšδ»£θ‘¨5ηš„ε€ζ•°$()$(li)η°θ‰²οΌšδ»£θ‘¨ε₯‡ζ•°$()$(li)ζ·±η°θ‰²οΌšδ»£θ‘¨εΆζ•°$()" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/anvil_working_guide/work_bar_numbers.png", + "tfg:textures/gui/field_guide/anvil_working_guide/target_work_for_wrought_iron_pickaxe_head.png" + ] + }, + { + "type": "patchouli:text", + "title": "第三ζ­₯", + "text": "ζœ‰δΊ†δ»Ž\"η›ζ ‡εŠ ε·₯ε€Ό\"ε’Œ\"εΏ…ιœ€εŠ ε·₯ε€Ό\"ζŽ¨ε―Όε‡Ίηš„δΈ­ι—΄ε€ΌεŽοΌŒζˆ‘δ»¬ιœ€θ¦ι€šθΏ‡ι”»ι€ δ½ΏεŠ ε·₯ι‡θΎΎεˆ°θΏ™δΈͺ值。你可δ»₯ι€šθΏ‡ζ‰‹εŠ¨η΄―εŠ ε„ζ­₯ιͺ€ηš„ζ•°ε€Όζ₯εŒζˆοΌŒζˆ–η›΄ζŽ₯ε‚θ€ƒη•Œι’θΏ›εΊ¦ζ‘δΈŠηš„\"ι€ŸζŸ₯葨\"οΌˆζ―η§ι’œθ‰²ε―ΉεΊ”δΈ€η§ζ­₯ιͺ€η±»εž‹οΌ‰γ€‚$(br)δΎ‹ε¦‚οΌšηΊ’θ‰² = ζ”ΆηΌ© (+16)" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/anvil_working_guide/work_bar_cheat_sheet.png" + ], + "text": "16 + 16 + 16 + 16 + 16 + 7 + 2 = 89" + }, + { + "type": "patchouli:text", + "title": "第四ζ­₯", + "text": "δΊ†θ§£ζ­₯ιͺ€η»„εˆεŽοΌŒεΌ€ε§‹ε°†εŠ ε·₯ε€ΌζŽ¨θΏ›εˆ°δΈ­ι—΄ε€Όγ€‚ε―ΉδΊŽη›ζ ‡ε€ΌδΈΊ83ηš„ι•ε€΄οΌŒιœ€ε…ˆθΎΎεˆ°89γ€‚ε› ζ­€οΌŒζˆ‘δ»¬ζ‰§θ‘ŒοΌš(ζ”ΆηΌ© x 5) -> εΌ―ζ›² -> ε†²εŽ‹γ€‚$(br2)ε½“εŠ ε·₯ε€ΌθΎΎεˆ°δΈ­ι—΄ε€ΌεŽοΌŒδΈ₯ζ ΌζŒ‰εΏ…ιœ€ζ­₯ιͺ€εΊεˆ—ζ‰§θ‘ŒοΌšη‰΅ζ‹‰ -> εΌ―ζ›² -> ε†²εŽ‹γ€‚ζžεšοΌζˆ‘δ»¬ζˆεŠŸθŽ·εΎ—δΊ†εŒηΎŽι”»ι€ ηš„物品!" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/anvil_working_guide/wrought_iron_pickaxe_head_no_work.png", + "tfg:textures/gui/field_guide/anvil_working_guide/wrought_iron_pickaxe_head_some_work.png", + "tfg:textures/gui/field_guide/anvil_working_guide/wrought_iron_pickaxe_head_complete.png" + ], + "text": "ζœͺ加ε·₯ηš„ι”­ -> 达到η›ζ ‡δΈ­ι—΄ε€Ό -> ζ‰§θ‘Œη‰©ε“εΏ…ιœ€ζ­₯ιͺ€εŽηš„ζ•ˆζžœ" + }, + { + "type": "patchouli:text", + "title": "ε…Άδ»–η€ΊδΎ‹", + "text": "ζˆ‘δ»¬ε†ηœ‹ζΏζε’Œζ†ηš„δΎ‹ε­γ€‚θ―·ζ³¨ζ„οΌŒη›ζ ‡εŠ ε·₯ε€Όε› δΈ–η•Œη§ε­θ€ŒεΌ‚οΌŒδ½ εœ¨ζΈΈζˆδΈ­ηš„ζ•°ε€ΌδΌšζœ‰ζ‰€δΈεŒγ€‚$(br)板材η›ζ ‡ε€ΌοΌš$(bold)111$()$(br)εΏ…ιœ€ζ­₯ιͺ€οΌšθ½»ε‡» x 3οΌˆδ»»ζ„ι‘ΊεΊοΌ‰γ€‚$(br)\"εΏ…ι‘»εŠ ε·₯ε€Ό\": -3 x 3 = -9$(br)δΈ­ι—΄ε€ΌοΌš111 + 9 = 120。$(br)θΎΎζˆδΈ­ι—΄ε€ΌοΌš(ζ”ΆηΌ© x 5)->(镦锻 x 2)->(ε†²εŽ‹ x 2)$(br)εŒζˆη‰©ε“οΌš120 - (轻击 x 3) = $(bold)111$()。一鑹要求均已滑袳。" + }, + { + "type": "patchouli:text", + "text": "杆η›ζ ‡ε€ΌοΌš$(bold)78$()$(br)εΏ…ιœ€ζ­₯ιͺ€οΌšε»Άε±•->廢展->εΌ―ζ›²$(br)\"εΏ…ιœ€εŠ ε·₯ε€Ό\": (-15 x 2) + 7 = -23$(br)δΈ­ι—΄ε€ΌοΌš78 + 23 = 101。$(br)θΎΎζˆδΈ­ι—΄ε€ΌοΌš(ζ”ΆηΌ© x 5)->(εΌ―ζ›² x 3)$(br)εŒζˆη‰©ε“οΌš101 - 15 - 15 + 7 = 78。" + }, + { + "type": "patchouli:text", + "title": "兢他提瀺", + "text": "ε¦‚ζžœζŸδΈͺεΏ…ιœ€ζ­₯ιͺ€ζ˜Ύη€ΊδΈΊη©ΊοΌŒεˆ™θ‘¨η€ΊθΏ™ζ˜―δΈ€δΈͺι€šι…η¬¦οΌŒε―δ»₯使用任何ζ­₯ιͺ€γ€‚$(br2)ε¦‚ζžœθ‘η—ε€±θ――,你可δ»₯ιšζ—Άε°†η‰©ε“η†”εŒ–ζˆι”­οΌŒθΏ™ε°†η§»ι™€η‰©ε“ηš„\"已加ε·₯\"ζ ‡η­ΎοΌŒθ©δ½ ε―δ»₯重新尝试εŒηΎŽι”»ι€ γ€‚" + }, + { + "type": "patchouli:empty" + }, + { + "type": "patchouli:empty" + }, + { + "type": "patchouli:text", + "text": "ζ­ε–œδ½ ι˜…θ―»εŒζœ¬ζŒ‡ε—οΌε¦‚ζžœδ½ ζ˜―θ΄‘ηŒθ€…幢想重新ζˆͺε–ζœ¬ζŒ‡ε—ηš„ε›Ύη‰‡οΌŒηΌ–ε†™ζ—Άδ½Ώη”¨ηš„η§ε­ζ˜―οΌš$(bold)-7291708953208913102$()γ€‚δ½ δΉŸε―δ»₯εˆ›ε»ΊδΈ€δΈͺεˆ›ι€ ζ¨‘εΌδΈ–η•Œζ₯δΊ²θ‡ͺζ΅‹θ―•η—法!$(br2)$(br)ε¦ε€–β€¦β€¦ζ—’η„Άδ½ ιƒ½θ―»εˆ°θΏ™ι‡ŒδΊ†οΌŒε¦‚ζžœδΈζƒ³ζ‰‹εŠ¨θ‘η—οΌŒε―δ»₯ιšζ—Άδ½Ώη”¨θΏ™δΈͺ$(l:https://adrianmiller99.github.io/tfg-anvil-calculator/src/index.html)羀峦传说砧θ‘η—器$()……" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/blast_furnace_tips.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/blast_furnace_tips.json new file mode 100644 index 000000000..69ac4a0e3 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/blast_furnace_tips.json @@ -0,0 +1,42 @@ +{ + "name": "ι«˜η‚‰δ½Ώη”¨ζŠ€ε·§", + "icon": "tfc:blast_furnace", + "category": "tfc:tfg_tips", + "read_by_default": true, + "pages": [ + { + "type": "patchouli:text", + "title": "ηΎ€ε³¦δΌ θ―΄ι«˜η‚‰ζŠ€ε·§", + "text": "δ½ η»ˆδΊŽζ‰Ύεˆ°$(item)高岭土$()δΊ†οΌŒζ˜―δΈζ˜―ζ­£εœ¨ζΏ€εŠ¨εœ°ε‡†ε€‡ε»Ίι€ δΈ€εΊ§δΊ”ε±‚$(thing)ι«˜η‚‰$()δΊ†οΌŸεœ¨δ½ ε€§ε±•θΊ«ζ‰‹ε‰οΌŒθΏ™ι‡Œζœ‰δΊ›εžη”¨ε»Ίθ!" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:compressed_fireclay", + "text": "εœ¨ε°†θ€η«ι»εœŸε…¨ιƒ¨η”¨δΊŽεˆΆδ½œ20ε—θ€η«η –ε‰οΌŒθ―·ζ³¨ζ„οΌšθΏ›ε…₯θ’Έζ±½ζ—Άδ»£εŽοΌŒδ½ ε°±θƒ½δ»₯δ½ŽεΎ—ε€šηš„ζˆζœ¬εˆΆδ½œεƒγ€‚这能θ©δ½ θŠ‚ηœ$(item)高岭土$()与$(item)石咨$()η”¨δΊŽεˆΆδ½œ$(thing)铸造台$()。" + }, + { + "type": "patchouli:spotlight", + "title": "ι’„ηƒ­ι‡‘ε±ž", + "item": "tfc:firepit", + "text": "θ¦ζŠŠι“θ½¬εŒ–δΈΊι’’οΌŒι«˜η‚‰ιœ€ε°†ε†…ιƒ¨ι“ζ–™εŠ ηƒ­θ‡³$(thing)δΊη™½$()γ€‚ι¦–ζ¬‘θΏθ‘Œζ—ΆοΌŒι‡‘ε±žδΌšιšι«˜η‚‰δΈ€εŒε‡ζΈ©γ€‚δ½†εŽη»­ζ“δ½œε³δ½Ώη‚‰ζΈ©ε·²θΎΎζ ‡οΌŒδ»ιœ€ι‡ζ–°δ»Žε†·ζ€εŠ ηƒ­ι‡‘ε±žοΌŒε› ζ­€θ€—ζ—ΆεŸΊζœ¬δΈε˜γ€‚" + }, + { + "type": "patchouli:text", + "text": "θ‹₯ι‡‘ε±žεœ¨εŠ ε…₯ι«˜η‚‰ζ—Άε·²ι’„ηƒ­οΌŒεˆ™θΎΎεˆ°δΊη™½θ‰²ζ‰€ιœ€ζ—Άι—΄ε°†ηΌ©ηŸ­γ€‚ε»Ίθε°†ι‡‘ε±žε…ˆεœ¨$(l:tfc:mechanics/charcoal_forge)ζœ¨η‚­η‚‰$()δΈ­εŠ ηƒ­οΌŒε†ζŠ•ε…₯ε·²ι’„ηƒ­ηš„ι«˜η‚‰δ»₯θŠ‚ηœζ—Άι—΄β€”β€”ε―ΉδΊŽζ―ζ¬‘ε€„η†ι‡θΎƒε°ηš„ε°εž‹ι«˜η‚‰ε°€δΈΊζœ‰ζ•ˆγ€‚" + }, + { + "type": "patchouli:spotlight", + "title": "θ‡ͺεŠ¨εŒ–η”ŸδΊ§", + "item": "greate:steel_mechanical_pump", + "text": "你在$(thing)蒸汽既代$()与$(thing)δ½ŽεŽ‹ζ—Άδ»£$()ε°†ιœ€θ¦ε€§ι‡$(item)ι’’$()β€”β€”ιžεΈΈε€§ι‡ηš„ι’’γ€‚$(thing)η”΅εŠ›ι«˜η‚‰$()尚ι₯ι₯ζ— ζœŸοΌŒδΈε¦¨θ€ƒθ™‘δΌ˜εŒ–ε½“ε‰ηš„η‚Όι’’δΊ§ηΊΏγ€‚" + }, + { + "type": "patchouli:text", + "text": "你可δ»₯δ½Ώη”¨ζœΊζ’°εŠ¨εŠ›ηš„$(item)εŠ¨εŠ›ζ³΅$()η›΄ζŽ₯δ»Žι«˜η‚‰ζ³΅ε‡ΊζΆ²ζ€ι‡‘ε±žγ€‚ε°†ε…Άε―Όε…₯$(l:tfc:tfcchannelcasting/channel_casting)铸造台$()εŽοΌŒη”¨ζΌζ–—ζˆ–ζΊœζ§½ζε–ι”­β€”β€”θ½»ζΎεžηްθ‡ͺεŠ¨εŒ–οΌ$(br2)θΏ˜ε―δ½Ώη”¨$(item)ζœΊζ’°ζ‰‹$()θ‡ͺεŠ¨ζ‹‰εŠ¨ι£Žη±οΌδ½†ιœ€ζ³¨ζ„οΌšθΏ‡εΊ¦δ½Ώη”¨ι£Žη±δΌšεŠ ι€Ÿη‡ƒζ–™ζΆˆθ€—εΉΆεŠ εΏ«$(thing)吹风η‘$()ηš„ζŸει€ŸεΊ¦γ€‚$(br2)δΊ§ε‡Ίηš„$(item)η”Ÿι“$()与$(item)ι«˜η’³ι’’$()ε―ι€šθΏ‡$(thing)锻造销$()ζˆ–$(thing)杠杆销$()θΏ›θ‘ŒεŠ ε·₯。" + }, + { + "type": "patchouli:text", + "text": "你可δ»₯η”¨ζœε‘ι«˜η‚‰ηš„ζΌζ–—ζˆ–η‰©ε“η‘道θ‡ͺεŠ¨ζ›Ώζ’η ΄ζŸηš„ι£Žη‘。" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/faqs.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/faqs.json new file mode 100644 index 000000000..656bfcdf0 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/faqs.json @@ -0,0 +1,42 @@ +{ + "name": "常见ι—ι’˜θ§£η­”", + "icon": "minecraft:spyglass", + "category": "tfc:tfg_tips", + "read_by_default": true, + "priority": true, + "pages": [ + { + "type": "patchouli:text", + "title": "FAQs", + "text": "ε‘δ½δΊ†οΌŸθ―·ε…ˆζŸ₯ι˜…ζœ¬δΉ¦δΈŽδ»»εŠ‘θ―΄ζ˜ŽοΌŒθ‹₯仍ζœͺθ§£ε†³οΌŒζ¬’θΏŽεœ¨ζˆ‘δ»¬ηš„$(l:https://discord.com/invite/AEaCzCTUwQ)Discord$()ζˆ–$(l:https://www.reddit.com/r/TerraFirmaGreg)Subreddit$()提ι—!" + }, + { + "type": "patchouli:text", + "text": "$(li)$(l:tfg_tips/faqs#boats)ζˆ‘ηš„θˆΉδΈΊδ»€δΉˆδΌšζ²‰οΌŸ$()$(li)$(l:tfg_tips/faqs#dried_fruit)ε¦‚δ½•εˆΆδ½œι…΅η§οΌŸ$()$(li)$(l:tfg_tips/faqs#dried_fruit)ε¦‚δ½•εˆΆδ½œθ θηΊ€η»΄οΌŸ$()$(li)$(l:tfg_tips/faqs#resin)ε¦‚δ½•εˆΆδ½œζ©‘θƒΆοΌŸ$()$(li)$(l:tfg_tips/faqs#chunks)ε¦‚δ½•εΌΊεˆΆεŠ θ½½εŒΊε—ζˆ–ζε‡εŠ θ½½δΈŠι™οΌŸ$()" + }, + { + "type": "patchouli:text", + "anchor": "boats", + "text": "$(italic)ζˆ‘ηš„θˆΉδΈΊδ»€δΉˆδΌšζ²‰οΌŸ$()$(br2)θ―·εœ¨ι™†εœ°δΈŠε»Ίι€ θˆΉεͺοΌŒιšεŽζŽ¨εŠ¨ζˆ–δ½Ώη”¨$(item)ζ‹΄η»³$()将兢送ε…₯ζ°΄εŸŸγ€‚θ‹₯船εͺε·²ζ²‰ζ²‘οΌŒθŠ‚ε“€ι‘Ίε˜β€”β€”ι‡ι€ δΈ€θ‰˜ε§γ€‚" + }, + { + "type": "patchouli:text", + "anchor": "dried_fruit", + "text": "$(italic)ε¦‚δ½•εˆΆδ½œι…΅η§ζˆ–θ θηΊ€η»΄οΌŸ$()$(br2)θ―·ε…ˆδ½Ώη”¨$(item)εΉ²η‡₯垫$()ε°†ζ°΄ζžœζ™’εΉ²οΌŒιšεŽζŒ‰η…§$(l:firmalife/bread)ι’εŒ…$()ζˆ–$(l:firmalife/berry_bushes)菠萝布$()η« θŠ‚ηš„ζ­₯ιͺ€ζ“δ½œγ€‚" + }, + { + "type": "patchouli:text", + "anchor": "chunks", + "text": "$(italic)ε¦‚δ½•εΌΊεˆΆεŠ θ½½εŒΊε—οΌŸ$()$(br2)ζŒ‰δΈ‹$(item)$(k:key.ftbchunks.claim_manager)$()ζ‰“εΌ€εœ°ε›ΎοΌŒζŒ‰δ½Shiftε·¦ι”η‚Ήε‡»εŒΊε—ε³ε―申钆。Shift右ι”η‚Ήε‡»ε–ζΆˆη”³ι’†γ€‚$(br2)θ‹₯ιœ€ζε‡εΌΊεˆΆεŠ θ½½δΈŠι™οΌŒδ½Ώη”¨ζŒ‡δ»€$(item)/ftbchunks admin extra_force_load_chunks @p set X$()οΌŒε…ΆδΈ­XδΈΊζ–°δΈŠι™ε€Όγ€‚" + }, + { + "type": "patchouli:text", + "anchor": "resin", + "text": "$(italic)ε¦‚δ½•εˆΆδ½œζ©‘θƒΆοΌŸ$()$(br2)ι»ζ€§ζ ‘θ„‚δΈε†ζ˜―δ½ ηš„η›ζ ‡οΌθ―·ε…ˆη§ζ€θ‹₯εΉ²δΊ§$(thing)δΉ³θƒΆ$()ηš„ζ ‘ζœ¨εΉΆεˆΆδ½œ$(thing)树汁导η‘$()。将树汁导η‘ε‰θ£…εœ¨ζ ‘εΉ²δΈŠοΌˆε•ζ£΅ζ ‘ε‰θ£…ε€šδΈͺ树汁导η‘εͺδΌšεˆ†ζ΅δΊ§ι‡οΌ‰γ€‚ι€šθΏ‡$(l:mechanics/barrels)木摢$()ζ”Άι›†ζΈ—ε‡Ίηš„δΉ³θƒΆγ€‚" + }, + { + "type": "patchouli:text", + "text": "ζœ€εΏ«ηš„ζ–ΉεΌζ˜―εœ¨$(l:firmalife/oven_appliances#vat)ι”…$()δΈ­ηƒΉη‚ΌδΉ³θƒΆοΌšε°†δΉ³θƒΆδΈŽ$(item)瑫磺粉$()οΌˆε°†ζ Όι›·η§‘ζŠ€η‘«η²‰ζ”Ύε…₯ζ‰‹ζŽ¨η£¨θŽ·ε–οΌ‰ζ”Ύε…₯ι”…δΈ­οΌŒεŠ ηƒ­εŽδ½Ώη”¨$(item)$(k:sneak)$() + $(item)$(k:use)$()$(bold)η›–δΈŠι”…η›–$()γ€‚εΎ—εˆ°$(thing)η‘«εŒ–δΉ³θƒΆ$()εŽοΌŒζ”Ύε…₯$(thing)ηœŸη©Ίθ…”ε€$()ε€„η†ε³ε―θŽ·εΎ—ζœŸη›Όε·²δΉ…ηš„ζ©‘θƒΆοΌ$(br2)后续阢ζ΅οΌŒ$(thing)LVη¦»εΏƒζœΊ$()可直ζŽ₯δ»ŽδΊ§δΉ³θƒΆζ ‘ζœ¨ηš„εŽŸζœ¨δΈ­ζε–$(thing)η”Ÿζ©‘θƒΆζœ«$()。" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/inventory_management.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/inventory_management.json new file mode 100644 index 000000000..128fe04f9 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/inventory_management.json @@ -0,0 +1,52 @@ +{ + "name": "物品η‘理", + "category": "tfc:tfg_tips", + "icon": "minecraft:chest", + "read_by_default": true, + "pages": [ + { + "type": "patchouli:text", + "title": "物品η‘理", + "text": "δ½ ε·²η»ζœ‰ε‡ δΈͺ $(l:getting_started/pottery#vessel)小缸$() ε’ŒδΈ€δΊ› $(item)木刢η±ε­$()οΌŒδ½†θΏ˜ζ˜―ε †ζ»‘δΊ†δΈηŸ₯θ―₯ζ€ŽδΉˆε€„η†ηš„η‰©ε“γ€‚δΈ‹δΈ€ζ­₯θ―₯εšδ»€δΉˆοΌŸ$(br2)δΈ€δΈͺ $(thing)θƒŒεŒ…$() 可δ»₯εœ¨εŸΊη‘€η­‰ηΊ§ζ—Άθ©δ½ ηš„ιšθΊ«η‰©ε“ζ ηΏ»ε€οΌŒθ€ŒεŽη»­ε‡ηΊ§θΏ˜θƒ½θΏ›δΈ€ζ­₯咞加εΉι‡οΌ" + }, + { + "type": "patchouli:crafting", + "recipe": "tfg:sophisticated_backpacks/shaped/backpack", + "text": "θƒŒεŒ…ε―δ»₯携带倚δΈͺι‡εž‹η‰©ε“οΌŒδΉŸεŒ…ζ‹¬εƒεŽŸζœ¨ε †θΏ™ζ ·ε€§ηš„η‰©ε“οΌŒθ€ŒδΈδΌšθ©δ½ θ’«ι™εˆΆη§»εŠ¨ι€ŸεΊ¦γ€‚$(br2)δ½ η”šθ‡³ε―δ»₯用 $(thing)εˆζˆε‡ηΊ§ζ¨‘ε—$() ε°†δΈ€δΈͺε·₯作台随身携带,衰到ε“ͺη”¨εˆ°ε“ͺ。" + }, + { + "type": "patchouli:text", + "title": "板村η±", + "anchor": "crates", + "text": "εœ¨ε­˜ε‚¨ζ–Ήι’οΌŒζ Όι›·η§‘ζŠ€ζδΎ›δΊ†$(item)板村η±$(),可εΉηΊ³θƒŒεŒ…θƒ½ε­˜ζ”Ύηš„ζ‰€ζœ‰ε€§εž‹η‰©ε“οΌŒδΈ”δΈεŒη­‰ηΊ§ηš„ζΏζ‘η±εΉι‡ι€ηΊ§ζε‡γ€‚$(br2)θ‹₯ιœ€ζ­ε»ΊεŸΊη‘€εˆ†η±»η³»η»ŸοΌŒε―δΈΊζΏζ‘η±ε‰θ£…$(thing)物品过滀卑$()与$(thing)标签过滀卑$()。$(br2)ιœ€ζ³¨ζ„$(thing)物品η‘道$()δΈδΌšδΈ»εŠ¨ζŠ½ε–η‰©ε“οΌŒιœ€ι…εˆ$(thing)溜槽$()ζˆ–$(thing)漏斗$()ε°†η‰©ε“ζŽ¨ε…₯η‘道。" + }, + { + "type": "patchouli:crafting", + "recipe": "gtceu:shaped/wooden_crate", + "recipe2": "gtceu:shaped/bronze_crate" + }, + { + "type": "patchouli:text", + "title": "ζ‘Ά", + "anchor": "drums", + "text": "εœ¨ζ΅δ½“ε­˜ε‚¨ζ–Ήι’οΌŒζ Όι›·η§‘ζŠ€ζδΎ›δΊ†$(item)ζ‘Ά$()γ€‚δΈŽζΏζ‘η±η±»δΌΌοΌŒδΈεŒη­‰ηΊ§ηš„摢可εΉηΊ³ε•δΈ€ζ΅δ½“ηš„εΉι‡ι€ηΊ§ζε‡γ€‚$(br2)与板村η±δΈεŒηš„ζ˜―οΌŒζ‘Άθ’«η ΄εζ—Άε°†δΏη•™ε†…ιƒ¨ζ΅δ½“οΌŒιžεΈΈι€‚εˆθ½¬η§»ζ΅δ½“η‰©θ΅„γ€‚$(br2)使用$(thing)软木槌$()ζˆ–$(thing)θžΊδΈεˆ€$()右ι”点击摢可使兢θ‡ͺεŠ¨δ»ŽεΊ•ιƒ¨ι’θΎ“ε‡Ίζ΅δ½“γ€‚" + }, + { + "type": "patchouli:crafting", + "recipe": "gtceu:shaped/bronze_drum", + "text": "ζŠŠζ‘Άζ”Ύεœ¨εˆζˆζ ΌδΈ­ε―ζΈ…η©Ίε…Άε†…εΉη‰©γ€‚" + }, + { + "type": "patchouli:spotlight", + "item": "gtceu:lv_super_chest,gtceu:lv_super_tank", + "title": "θΆ…ηΊ§ε­˜ε‚¨", + "text": "你是否正在δ»₯ε·₯δΈšθ§„ζ¨‘η”ŸδΊ§ζŸη§η‰©ε“οΌŸζ Όι›·η§‘ζŠ€ηš„$(thing)θΆ…ηΊ§η±$()与$(thing)θΆ…ηΊ§ηΌΈ$()ε―ε­˜ε‚¨ζ΅·ι‡ηš„ε•η±»η‰©ε“οΌŒεΉΆθƒ½θ‡ͺεŠ¨ζΈ…ι™€ζΊ’ε‡Ίιƒ¨εˆ†γ€‚" + }, + { + "type": "patchouli:spotlight", + "title": "应用能源 2", + "item": "ae2:drive", + "text": "在 $(thing)HV$() 阢ζ΅εŽθ§£ι”οΌŒAE2 θƒ½ζδΎ›δ½ ζƒ³θ¦ηš„ζ‰€ζœ‰ε­˜ε‚¨ε’Œη‰©ζ΅θ§£ε†³ζ–Ήζ‘ˆγ€‚" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/space_crops.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/space_crops.json new file mode 100644 index 000000000..6f0d63e1b --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/space_crops.json @@ -0,0 +1,574 @@ +{ + "name": "ε€–ζ˜Ÿδ½œη‰©", + "category": "tfc:tfg_tips", + "icon": "betterend:textures/item/blossom_berry.png", + "pages": [ + { + "type": "patchouli:text", + "title": "ε€–ζ˜Ÿδ½œη‰©", + "text": "δΊ‹εžθ―ζ˜ŽοΌŒεœ°ηƒεΉΆδΈζ˜―ε”―δΈ€ζœ‰η”Ÿε‘½ηš„ε€©δ½“γ€‚εœ¨δ½ ηš„ζ—…ι€”δΈ­οΌŒδ½ ε―θƒ½δΌšι‡εˆ°ε…Άδ»–ε―δ»₯ι£Ÿη”¨ηš„η”Ÿη‰©γ€‚εœ¨εœ°ηƒδΈŠοΌŒεƒδ»¬ιƒ½ζœ‰δ½ ζ‰€η†Ÿζ‚‰ηš„η›ΈεŒζœΊεˆΆοΌˆζœ‰δΈ€δΊ›δΎ‹ε€–οΌ‰οΌŒε―δ»₯ζ Ήζδ½ ηš„ιœ€θ¦εœ¨ζ™ι€šε†œη”°γ€$(thing)Firmalife$() $(l:firmalife/greenhouse)ζΈ©ε€$()ζˆ–$(thing)ζ Όι›·η§‘ζŠ€$()η”΅εŠ›ζΈ©ε€δΈ­η§ζ€γ€‚" + }, + { + "type": "patchouli:text", + "text": "$(thing)η©Ίζ°”εˆ†ι…ε™¨$()δΉŸδΌšδ½ΏδΈ€δΈͺε°ι—­εŒΊεŸŸδΏζŒη¨³εšηš„15Β°Cγ€‚η”±δΊŽζŠ€ζœ―εŽŸε› οΌŒεœ¨ε…Άδ»–θ‘Œζ˜ŸδΈŠζ— ζ³•εœ¨JadeδΏ‘ζ―ζη€ΊδΈ­ζ˜Ύη€Ίζ­€ζΈ©εΊ¦οΌŒε› ζ­€δ½ εͺθƒ½δ½Ώη”¨η‰©ε“ζ ηš„ζ°”ε€™ζ ‡η­Ύζ₯ζŸ₯ηœ‹ζΈ©εΊ¦γ€‚$(br2)另一δΈͺι€‰ζ‹©ζ˜―δ½Ώη”¨$(thing)Firmalife$()ηš„ζΈ©ε€οΌŒεƒζ²‘ζœ‰ι‚£δΉˆε€šδΊ§ε‡ΊοΌŒδ½†δΉŸζ— θ§†ζ‰€ζœ‰ηš„ζ°”ε€™ζ‘δ»Άγ€‚" + }, + { + "type": "patchouli:text", + "title": "η΄«ι’‚ζžœ", + "text": "$(bold)位η½$()οΌšζœˆηƒ$(br)$(bold)η”Ÿη‰©ηΎ€η³»$()οΌšη΄«ι’‚ζ£ζž—, η΄«ι’‚ηŒζœ¨δΈ›$(br2)紫钂怍ζ ͺδ»₯ι«˜ε€§ηš„ε½’ζ€η”Ÿι•Ώγ€‚η ΄εθŒŽιƒ¨δΈδΌšδΊ§η”Ÿδ»»δ½•δΈœθ₯ΏοΌŒθ€Œη ΄ει‘Άιƒ¨ηš„θŠ±ζœ΅δΌšδΊ§η”Ÿη΄«ι’‚ζžœζˆ–η΄«ι’‚θŠ±γ€‚$(br)η΄«ι’‚ζžœε―δ»₯作为$(thing)水果$()ι£Ÿη”¨οΌŒηƒΉι₯ͺ后作为$(item)ηˆ†θ£‚η΄«ι’‚ζžœ$()ι£Ÿη”¨οΌŒζˆ–θ€…ε―δ»₯θ’Έι¦ζˆ$(thing)ζ°ζ°”$()。$(br)" + }, + { + "type": "patchouli:multiblock", + "multiblock": { + "pattern": [ + [ + "Z " + ], + [ + "V D" + ], + [ + "EXB" + ], + [ + " V " + ], + [ + " 0 " + ] + ], + "mapping": { + "0": "ad_astra:moon_sand", + "V": "tfg:lunar_chorus_plant[down=true,up=true]", + "E": "tfg:lunar_chorus_plant[south=true,up=true]", + "X": "tfg:lunar_chorus_plant[north=true,down=true,south=true]", + "B": "tfg:lunar_chorus_plant[north=true,up=true]", + "D": "tfg:lunar_chorus_flower[age=5]", + "Z": "tfg:lunar_chorus_flower[age=0]" + } + }, + "text": "$(thing)η΄«ι’‚θŠ±$() 也可δ»₯ι€šθΏ‡ζ‰‹εŠ¨η§εœ¨ζ²™η Ύζˆ–ζ²™ε­δΈŠη”Ÿι•Ώ", + "enable_visualize": false + }, + { + "type": "patchouli:text", + "title": "η₯珀根", + "text": "$(bold)位η½$():火星$(br)$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():-150 - 15 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():0 - 40 %$(br)$(bold)θ₯养物质$():磷$(br2)η₯η€ζ Ήζ˜―ε•ζ–Ήε—δ½œη‰©γ€‚η₯η€ζ–°θŠ½η§ε­ε―δ»₯η§ζ€εœ¨ε†œη”°δΈŠοΌŒδΌšδΊ§η”Ÿ$(item)η₯η€ζ–°θŠ½$(),可δ»₯作为$(thing)谷物$()ι£Ÿη”¨γ€‚" + }, + { + "type": "tfc:multimultiblock", + "multiblocks": [ + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:amber_root[age=0]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:amber_root[age=1]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:amber_root[age=2]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:amber_root[age=3]", + "Z": "tfg:grass/mars_farmland" + } + } + ], + "text": "$(thing)ι‡Žη”Ÿη₯珀根$() δΌšεœ¨ζ‰€ζœ‰ζ°”ε€™δΈ­οΌŒεœ¨η₯η€θŒδΈε’ŒηΊ’ι”ˆθŒδΈδΈŠη”Ÿι•Ώγ€‚", + "enable_visualize": false + }, + { + "type": "patchouli:text", + "text": "$(bold)位η½$():火星$(br)$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$():-150 - 15 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$():0 - 40 %$(br)$(bold)θ₯养物质$():磷$(br2)η™ΎθŠ±ζžœζ˜―ε•ζ–Ήε—δ½œη‰©γ€‚η™ΎθŠ±ζžœζ ‘η§ε―δ»₯η§ζ€εœ¨ε†œη”°δΈŠοΌŒδΌšδΊ§ε‡Ί$(item)η™ΎθŠ±ζžœ$(),可δ»₯作为$(thing)水果$()ι£Ÿη”¨γ€‚", + "title": "η™ΎθŠ±ζžœ" + }, + { + "type": "tfc:multimultiblock", + "multiblocks": [ + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:blossom_berry[age=0]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:blossom_berry[age=1]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:blossom_berry[age=2]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:blossom_berry[age=3]", + "Z": "tfg:grass/mars_farmland" + } + } + ], + "text": "$(thing)ι‡Žη”Ÿη™ΎθŠ±ζžœ$() δΌšεœ¨ζ‰€ζœ‰ζ°”ε€™δΈ­οΌŒεœ¨η₯η€θŒδΈγ€ηΊ’ι”ˆθŒδΈζˆ–θ΅€θ‘€θŒδΈδΈŠη”Ÿι•Ώγ€‚" + }, + { + "type": "patchouli:text", + "text": "$(bold)位η½$(): 火星$(br)$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$(): -150 - 15 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$(): 0 - 40 %$(br)$(bold)θ₯养物质$(): η£·$(br2)ζ³’ι²ε…‹ζ–―θŒ ζ˜―ε•ζ–Ήε—δ½œη‰©γ€‚ζ³’ι²ε…‹ζ–―θŒε­’ε­ε―δ»₯η§ζ€εœ¨ε†œη”°δΈŠοΌŒδΌšδΊ§ε‡Ί$(item)ζ³’ι²ε…‹ζ–―θŒ$(),可δ»₯作为$(thing)θ”¬θœ$()ι£Ÿη”¨γ€‚$(br2)ε»Ίθεœ¨ι£Ÿη”¨ε‰$(item)ηƒΉι₯ͺ$() ζ³’ι²ε…‹ζ–―θŒγ€‚", + "title": "ζ³’ι²ε…‹ζ–―θŒ" + }, + { + "type": "tfc:multimultiblock", + "multiblocks": [ + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:bolux_mushroom[age=0]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:bolux_mushroom[age=1]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:bolux_mushroom[age=2]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:bolux_mushroom[age=3]", + "Z": "tfg:grass/mars_farmland" + } + } + ], + "text": "$(thing)ι‡Žη”Ÿζ³’ι²ε…‹ζ–―θŒδΈ›$() δΌšεœ¨ζ‰€ζœ‰ζ°”ε€™δΈ­οΌŒεœ¨η₯η€θŒδΈγ€ηΊ’ι”ˆθŒδΈζˆ–θ΅€θ‘€θŒδΈδΈŠη”Ÿι•Ώγ€‚" + }, + { + "type": "patchouli:text", + "text": "$(bold)位η½$(): 火星$(br)$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$(): -100 - 30 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$(): 0 - 60 %$(br)$(bold)θ₯养物质$(): ζ°$(br2)ηƒθŒŽε—η“œ ζ˜―δΌšδΌΈε±•ηš„δ½œη‰©γ€‚ηƒθŒŽε—η“œη§ε­ε―δ»₯η§ζ€εœ¨ε†œη”°δΈŠοΌŒεΉΆδΈ”ε½“εƒζˆη†Ÿζ—ΆοΌŒδΌšεœ¨εƒζ—θΎΉηš„εœ°δΈŠζ”Ύη½ζœ€ε€šδΈ€δΈͺ$(item)ηƒθŒŽε—η“œζ–Ήε—$()γ€‚ε¦‚ζžœηƒθŒŽε—η“œζ–Ήε—θ’«ζ”ΆθŽ·οΌŒεΉΆδΈ”ηƒθŒŽθ—€ι‡ζ–°ζˆη†ŸοΌŒεƒε―δ»₯ι•Ώε‡Ίζ›΄ε€šηƒθŒŽε—η“œγ€‚ηƒθŒŽε—η“œε―δ»₯作为$(thing)水果$()ι£Ÿη”¨οΌŒζˆ–θ€…η”¨ζ₯η”ŸδΊ§θ€ηŸ³η²‰γ€‚", + "title": "ηƒθŒŽε—η“œ" + }, + { + "type": "tfc:multimultiblock", + "multiblocks": [ + { + "pattern": [ + [ + " ", + " C ", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfg:grass/mars_farmland", + "0": "tfg:grass/mars_farmland", + "C": "betterend:cave_pumpkin_plant[age=0]" + } + }, + { + "pattern": [ + [ + " ", + " C ", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfg:grass/mars_farmland", + "0": "tfg:grass/mars_farmland", + "C": "betterend:cave_pumpkin_plant[age=1]" + } + }, + { + "pattern": [ + [ + " ", + " C ", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfg:grass/mars_farmland", + "0": "tfg:grass/mars_farmland", + "C": "betterend:cave_pumpkin_plant[age=2]" + } + }, + { + "pattern": [ + [ + " ", + " C ", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfg:grass/mars_farmland", + "0": "tfg:grass/mars_farmland", + "C": "betterend:cave_pumpkin_plant[age=3]" + } + }, + { + "pattern": [ + [ + " ", + " CP", + " " + ], + [ + "GGG", + "G0G", + "GGG" + ] + ], + "mapping": { + "G": "tfg:grass/mars_farmland", + "0": "tfg:grass/mars_farmland", + "C": "betterend:cave_pumpkin_plant[age=3,south=true]", + "P": "betterend:cave_pumpkin" + } + } + ], + "text": "$(thing)ι‡Žη”ŸηƒθŒŽε—η“œ$() δΌšεœ¨ζ‰€ζœ‰ζ°”ε€™δΈ­οΌŒεœ¨η₯η€θŒδΈζˆ–θ΅€θ‘€θŒδΈδΈŠη”Ÿι•Ώγ€‚" + }, + { + "type": "patchouli:text", + "title": "ζŸ₯ε°”η±³θŒδΈ›", + "text": "$(bold)位η½$(): 火星$(br)$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$(): -150 - 15 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$(): 0 - 40 %$(br)$(bold)θ₯养物质$(): η£·$(br2)ζŸ₯ε°”η±³θŒδΈ›ζ˜―ε•ζ–Ήε—δ½œη‰©γ€‚ζŸ₯ε°”η±³θŒε­’ε­ε―δ»₯η§ζ€εœ¨ε†œη”°δΈŠοΌŒδΌšδΊ§ε‡Ί$(item)ζŸ₯ε°”η±³θŒ$(),可δ»₯作为$(thing)θ”¬θœ$()ι£Ÿη”¨γ€‚$(br2)ε»Ίθεœ¨ι£Ÿη”¨ε‰$(item)ηƒΉι₯ͺ$() ζ³’ι²ε…‹ζ–―θŒγ€‚" + }, + { + "type": "tfc:multimultiblock", + "multiblocks": [ + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:chorus_mushroom[age=0]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:chorus_mushroom[age=1]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:chorus_mushroom[age=2]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:chorus_mushroom[age=3]", + "Z": "tfg:grass/mars_farmland" + } + } + ], + "text": "$(thing)ι‡Žη”ŸζŸ₯ε°”η±³θŒδΈ›$() δΌšεœ¨ζ‰€ζœ‰ζ°”ε€™δΈ­οΌŒεœ¨η₯η€θŒδΈγ€ηΊ’ι”ˆθŒδΈε’Œθ΅€θ‘€θŒδΈδΈŠη”Ÿι•Ώγ€‚" + }, + { + "type": "patchouli:text", + "title": "ε€œε½±ζ΅†ζžœ", + "text": "$(bold)位η½$(): 火星$(br)$(bold)$(l:the_world/climate#temperature)ζΈ©εΊ¦$(): -80 - 30 Β°C$(br)$(bold)$(l:mechanics/hydration)ζΉΏεΊ¦$(): 50 - 100 %$(br)$(bold)θ₯养物质$(): η£·$(br2)ε€œε½±ζ΅†ζžœζ˜―ε•ζ–Ήε—δ½œη‰©γ€‚ε€œε½±ζ΅†ζžœη§ε­ε―δ»₯η§ζ€εœ¨ε†œη”°δΈŠοΌŒδΌšδΊ§ε‡Ί$(item)ε€œε½±ζ΅†ζžœ$(),可δ»₯作为$(thing)水果$()ι£Ÿη”¨γ€‚$(br2)ε»Ίθεœ¨ι£Ÿη”¨ε‰$(item)ηƒΉι₯ͺ$() ε€œε½±ζ΅†ζžœγ€‚" + }, + { + "type": "tfc:multimultiblock", + "multiblocks": [ + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:shadow_berry[age=0]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:shadow_berry[age=1]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:shadow_berry[age=2]", + "Z": "tfg:grass/mars_farmland" + } + }, + { + "pattern": [ + [ + "Y" + ], + [ + "Z" + ], + [ + "0" + ] + ], + "mapping": { + "Y": "betterend:shadow_berry[age=3]", + "Z": "tfg:grass/mars_farmland" + } + } + ], + "text": "$(thing)ι‡Žη”Ÿε€œε½±ζ΅†ζžœ$() δΌšεœ¨ζ‰€ζœ‰ζ°”ε€™δΈ­οΌŒεœ¨ηΊ’ι”ˆθŒδΈε’Œθ΅€θ‘€θŒδΈδΈŠη”Ÿι•Ώγ€‚" + } + ], + "read_by_default": true, + "extra_recipe_mappings": { + "tfg:lunar_chorus_flower": 2, + "minecraft:chorus_fruit": 2, + "betterend:amber_root_seeds": 4, + "betterend:amber_root_product": 4, + "betterend:blossom_berry_seeds": 6, + "betterend:blossom_berry_product": 6, + "betterend:bolux_mushroom_seeds": 8, + "betterend:bolux_mushroom_product": 8, + "betterend:cave_pumpkin_plant_seeds": 10, + "betterend:cave_pumpkin": 10, + "betterend:chorus_mushroom_seeds": 12, + "betterend:chorus_mushroom_product": 12, + "betterend:shadow_berry_seeds": 14, + "betterend:shadow_berry_product": 14 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/space_fauna.json b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/space_fauna.json new file mode 100644 index 000000000..8bbbb6f6a --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/zh_cn/entries/tfg_tips/space_fauna.json @@ -0,0 +1,194 @@ +{ + "name": "ε€–ζ˜ŸεŠ¨η‰©", + "category": "tfc:tfg_tips", + "icon": "minecraft:sniffer_egg", + "pages": [ + { + "type": "patchouli:text", + "title": "ε€–ζ˜ŸεŠ¨η‰©", + "text": "ε€ͺ空是θΈε€šε…Άδ»–εŠ¨η‰©ηš„εΆε›­οΌŒδ½ δΈδΌšεœ¨εœ°ηƒδΈŠζ‰Ύεˆ°εƒδ»¬γ€‚ε°‘ζ•°εŠ¨η‰©ζ˜―ζ•Œε―Ήηš„οΌŒδΌšζ”»ε‡»ηŽ©εΆοΌŒδ½†ε€§ε€šζ•°ζ˜―友ε₯½ηš„。εƒδ»¬εͺζœ‰δΈ€ε°ιƒ¨εˆ†ε―δ»₯εƒεœ°ηƒδΈŠηš„η‰²η•œδΈ€ζ ·$(l:mechanics/animal_husbandry)ι©―εŒ–$()。$(br)δ½ εœ¨ε…Άδ»–ζ˜ŸηƒδΈŠε‘ηŽ°ηš„εŠ¨η‰©ε―δ»₯εˆ†δΈΊδΈ€η±»οΌš$(item)ηƒ­ζ –$()ε’Œ$(item)ε†·ζ –$()γ€‚εŠ¨η‰©εͺθƒ½εœ¨ζ°”ε€™δΈŽε…Άζ―θ‘Œζ˜Ÿη›ΈδΌΌηš„θ‘Œζ˜ŸδΈŠη”Ÿε­˜οΌŒζˆ–θ€…εœ¨εƒεœ°ηƒθΏ™ζ ·ηš„$(thing)ζΈ©ε’Œ$()ηš„θ‘Œζ˜ŸδΈŠη”Ÿε­˜γ€‚" + }, + { + "type": "patchouli:text", + "text": "ε€ͺη©ΊεŠ¨η‰©δΈιœ€θ¦ε«ζ°§ηŽ―ε’ƒοΌŒδ½†εƒδ»¬δΌšε°†θ―₯εŒΊεŸŸθ§†δΈΊε―ΉδΊŽε…Άη”Ÿε­˜\"ζΈ©ε’Œ\"ηš„γ€‚δΎ‹ε¦‚οΌŒε¦‚ζžœδ½ ε°†ε†·ζ –εŠ¨η‰©οΌˆε¦‚ε—…ζŽ’ε…½οΌ‰εΈ¦εˆ°ηƒ­θ‘Œζ˜ŸοΌˆε¦‚ι‡‘ζ˜ŸοΌ‰οΌŒεƒδΌšη€η«οΌŒι™€ιžεƒεœ¨ε«ζ°§ηŽ―咃中。$(br)θΏ™δ½Ώεœ°ηƒζˆδΈΊε»Ίι€ εŠ¨η‰©ε›­ηš„η†ζƒ³εœΊζ‰€οΌŒε¦‚ζžœδ½ ζ„Ώζ„ηš„θ―γ€‚$(br)你可δ»₯使用$(thing)AE2$()ηš„η©Ίι—΄ε­˜ε‚¨η³»η»Ÿεœ¨θ‘Œζ˜ŸδΉ‹ι—΄θΏθΎ“εŠ¨η‰©γ€‚" + }, + { + "type": "patchouli:spotlight", + "item": "tfg:marker/moon", + "title": "ζœˆηƒεŠ¨η‰©", + "text": "$(item)ζœˆηƒ$()ε―θƒ½η›Έε½“θ’ε‡‰οΌŒδ½†εƒδ»η„Άζœ‰δΈ€δΊ›εŠ¨η‰©η§°ε…ΆδΈΊεΆγ€‚$(br2)ε°½η‘ζΈ©εΊ¦ζ³’εŠ¨η›Έε½“ζžη«―οΌŒεƒθ’«θ€δΈΊζ˜―$(thing)ε―’ε†·$()ηš„ζ˜Ÿηƒγ€‚", + "anchor": "moon" + }, + { + "type": "patchouli:entity", + "entity": "tfg:moon_rabbit{NoAI:1b,birth:-100000000L,oldDay:9223372036854775807L,geneticSize:16,MoonRabbitType:5}", + "scale": 1.3, + "offset": -0.3, + "name": "ζœˆε…”", + "text": "陀了εƒδ»¬ηš„ι’œθ‰²οΌŒ$(thing)ζœˆε…”$()δΈŽεœ°ηƒε…”ε­ζœ‰η›ΈεŒηš„ε±žζ€§γ€‚εƒδ»¬δΉŸεƒη΄«ι’‚ζžœγ€‚" + }, + { + "type": "patchouli:entity", + "entity": "species:limpet", + "scale": 0.8, + "name": "矿壳贝", + "text": "$(thing)矿壳贝$()ζ˜―δΈ€η§ε£³δΈŠζœ‰ηŸΏηŸ³ηš„θœ—η‰›γ€‚δ½ ε―δ»₯η”¨δ»»δ½•ι‡‡ηŸΏε·₯ε…·θŽ·εΎ—ηŸΏηŸ³γ€‚εƒδ»¬ζ˜―友ε₯½ηš„οΌŒε―δ»₯ι£Ÿη”¨γ€‚" + }, + { + "type": "patchouli:entity", + "entity": "ad_astra:star_crawler", + "scale": 0.4, + "name": "ζ˜Ÿι™…ηˆ¬θ‘Œθ€…", + "text": "$(thing)ζ˜Ÿι™…ηˆ¬θ‘Œθ€…$()ζ˜―δΈ€η§ζ΅·ζ˜Ÿγ€‚εƒδ»¬ζ˜―ζ•Œε―Ήηš„οΌŒε―δ»₯ι£Ÿη”¨γ€‚" + }, + { + "type": "patchouli:entity", + "entity": "species:birt", + "scale": 0.9, + "name": "ε“”η‰Ή", + "text": "$(thing)ε“”η‰Ή$()ζ˜―δΈ€η§ιΈŸη±»οΌŸεƒδ»¬εœ¨ε·’δΈ­δΊ§ε΅οΌŒι™€ιžθ’«ζ”»ε‡»ε¦εˆ™ζ˜―δΈ­η«‹ηš„οΌŒε―δ»₯ι£Ÿη”¨γ€‚εƒδ»¬ηš„蛋可δ»₯ζŠ•ζŽ·ζ₯δ½Ώη›ζ ‡ηœ©ζ™•。" + }, + { + "type": "patchouli:empty", + "draw_filler": true + }, + { + "type": "patchouli:spotlight", + "item": "tfg:marker/mars", + "title": "η«ζ˜ŸεŠ¨η‰©", + "text": "$(item)火星$()ζ˜―ηŽ―ε’ƒζœ€ζŽ₯θΏ‘εœ°ηƒηš„θ‘Œζ˜ŸοΌŒζ‹₯ζœ‰ε„η§ε„ζ ·ηš„εŠ¨η‰©ε―δ»₯δΊ’εŠ¨οΌŒδ»₯及可δ»₯ε–‚ε…»εƒδ»¬οΌˆε’Œδ½ θ‡ͺε·±οΌ‰ηš„δ½œη‰©β€¦β€¦ι™€δΊ†ε·¨ε€§ηš„ζ²™ζΌ οΌŒι‚£ι‡Œε‡ δΉŽζ²‘ζœ‰δ»»δ½•η”Ÿε‘½γ€‚$(br2)η«ζ˜Ÿζ˜―δΈ€δΈͺ$(thing)ε―’ε†·$()ηš„θ‘Œζ˜Ÿγ€‚", + "anchor": "mars" + }, + { + "type": "patchouli:image", + "images": [ + "tfg:textures/gui/field_guide/sandworm.png" + ], + "border": true, + "title": "ζ²™θ™«", + "text": "$(thing)ζ²™θ™«$()会蒫玩εΆθ„šζ­₯ε£°ζƒŠι†’γ€‚εƒδ»¬ζ˜―ζ²™ζΌ δΈ­ε‡ δΉŽζ²‘ζœ‰ε…Άδ»–η”Ÿε‘½ηš„εŽŸε› γ€‚$(br)" + }, + { + "type": "patchouli:text", + "title": "ε—…ζŽ’ε…½", + "text": "$(thing)ε—…ζŽ’ε…½$()是在-30到-102Β°CδΉ‹ι—΄ε‘ηŽ°ηš„ε―ι©―εŒ–εŠ¨η‰©γ€‚εƒδ»¬ιœ€θ¦ε€§εž‹ε·’η©΄ζ₯产卡,可δ»₯ε‰ͺζ―›θŽ·εΎ—$(item)ηŸΏη‰©ε―Œι›†η»’ζ―›$()。εƒδ»¬ηš„蛋可δ»₯ηƒΉι₯ͺζˆ–ζε–ε₯Άζ²Ήγ€‚εƒδ»¬εƒδ»»δ½•η«ζ˜Ÿδ½œη‰©γ€‚", + "anchor": "sniffer" + }, + { + "type": "patchouli:entity", + "entity": "tfg:sniffer{NoAI:1b,birth:-100000000L,oldDay:9223372036854775807L,geneticSize:16}", + "scale": 0.45, + "name": " ", + "text": "δΈ€ε€΄ε—…ζŽ’ε…½γ€‚" + }, + { + "type": "patchouli:text", + "title": "译恐鸟", + "text": "$(thing)译恐鸟$()是在-15到-100Β°CδΉ‹ι—΄ε‘ηŽ°ηš„ε―ι©―εŒ–εŠ¨η‰©γ€‚εƒδ»¬ιœ€θ¦ε€§εž‹ε·’η©΄ζ₯产卡,可δ»₯ε‰ͺζ―›θŽ·εΎ—$(item)θ―‘ζιΈŸηΎ½ζ―›$()。εƒδ»¬ηš„蛋可δ»₯ηƒΉι₯ͺζˆ–ζε–θ―‘ζιΈŸη³–γ€‚εƒδ»¬εƒδ»»δ½•η«ζ˜Ÿδ½œη‰©γ€‚", + "anchor": "wraptor" + }, + { + "type": "patchouli:entity", + "entity": "tfg:wraptor{NoAI:1b,birth:-100000000L,oldDay:9223372036854775807L,geneticSize:16}", + "scale": 0.8, + "name": " ", + "text": "δΈ€εͺθ―‘ζιΈŸγ€‚" + }, + { + "type": "patchouli:text", + "title": "霜原羊", + "text": "偏ε₯½δ½ŽδΊŽ-108Β°Cηš„ζžε†·ηŽ―ε’ƒοΌŒ$(thing)霜原羊$()ζ˜―ε―ι©―εŒ–εŠ¨η‰©γ€‚εƒδ»¬ε―δ»₯ε‰ͺζ―›θŽ·εΎ—$(item)ιœœεŽŸηΎŠζ―›$()οΌŒδΈ€η§η»δ½³ηš„η»ηΌ˜δ½“γ€‚εƒδ»¬εƒδ»»δ½•η«ζ˜Ÿδ½œη‰©γ€‚", + "anchor": "glacian_sheep" + }, + { + "type": "patchouli:entity", + "entity": "tfg:glacian_ram{NoAI:1b,birth:-100000000L,oldDay:9223372036854775807L,geneticSize:16}", + "scale": 0.7, + "name": " ", + "text": "δΈ€εͺιœœεŽŸε…¬ηΎŠ/母羊" + }, + { + "type": "patchouli:entity", + "entity": "wan_ancient_beasts:surfer", + "scale": 0.35, + "offset": 0.2, + "name": "η ΄ζ΅ͺε…½", + "text": "$(thing)η ΄ζ΅ͺε…½$()ζ˜―εŠζ°΄η”Ÿε‹ε₯½εŠ¨η‰©γ€‚δ½ ε―δ»₯用$(item)η”Ÿι±Ό$()驯服εƒδ»¬ζ₯εœ¨ζ°΄δΈ‹ιͺ‘δΉ˜γ€‚εƒδ»¬δΉŸε―δ»₯ι£Ÿη”¨γ€‚" + }, + { + "type": "patchouli:entity", + "entity": "wan_ancient_beasts:eater", + "scale": 0.5, + "name": "ε™¬ι’šε…½", + "text": "ι‘ΆηΊ§ζ•ι£Ÿθ€…οΌŒ$(thing)ε™¬ι’šε…½$()是在-109Β°Cδ»₯δΈŠε‘ηŽ°ηš„ζ•Œε―ΉεŠ¨η‰©γ€‚ε¦‚ζžœδ½ θƒ½θΎζ³•击θ΄₯δΈ€εͺ,εƒδ»¬ε―δ»₯ι£Ÿη”¨γ€‚" + }, + { + "type": "patchouli:entity", + "entity": "species:cruncher", + "scale": 0.7, + "name": "θ΄ͺε’€ε…½", + "text": "$(thing)θ΄ͺε’€ε…½$()ζ˜―ζœ‰ι’†εœ°θŒƒε›΄ηš„$(item)小boss$()ζ•ι£Ÿθ€…γ€‚ε–‚εƒδ»¬θ‚‰ζ₯阻歒εƒδ»¬ηš„ε›žθ‘€γ€‚εƒδ»¬δΉŸε―δ»₯ι£Ÿη”¨γ€‚" + }, + { + "type": "patchouli:entity", + "entity": "wan_ancient_beasts:soarer", + "scale": 0.4, + "offset": 1.0, + "name": "ηΏ±ηΏ”ιΈŸ", + "text": "$(thing)ηΏ±ηΏ”ιΈŸ$()是在-106Β°Cδ»₯δΈŠε‘ηŽ°ηš„ε‹ε₯½εŠ¨η‰©γ€‚δ½ ε―δ»₯用$(item)η”Ÿι±Ό$()驯服εƒδ»¬δ½œδΈΊι£žθ‘Œειͺ‘。εƒδ»¬δΉŸε―δ»₯ι£Ÿη”¨γ€‚" + }, + { + "type": "patchouli:entity", + "entity": "wan_ancient_beasts:glider", + "scale": 0.4, + "offset": 0.2, + "name": "ζ»‘ηΏ”ιΈŸ", + "text": "与εƒδ»¬ηš„εε­—δΈεŒοΌŒ$(thing)ζ»‘ηΏ”ιΈŸ$()δΈθƒ½θ’«ι©―ζœζˆ–ιͺ‘δΉ˜γ€‚εƒδ»¬ζ˜―友ε₯½ηš„οΌŒη”Ÿζ΄»εœ¨-105Β°Cδ»₯δΈŠηš„εŒΊεŸŸγ€‚εƒδ»¬ε–œζ¬’音乐,可δ»₯ι£Ÿη”¨γ€‚" + }, + { + "type": "patchouli:entity", + "entity": "wan_ancient_beasts:crusher", + "scale": 0.5, + "offset": 0.5, + "name": "η’Žε²©ε…½", + "text": "$(thing)η’Žε²©ε…½$()是在-100Β°Cδ»₯δΈŠεŒΊεŸŸζˆηΎ€η”Ÿζˆηš„εŠζ•Œε―ΉεŠ¨η‰©γ€‚εƒδ»¬ε―δ»₯θ’«ζ€ζ­»θŽ·εΎ—θ‚‰ε’Œη‘¬εˆΊγ€‚" + }, + { + "type": "patchouli:entity", + "entity": "species:springling", + "scale": 0.9, + "name": "η°§ι’ˆε…½", + "text": "$(thing)η°§ι’ˆε…½$()是在-108Β°Cδ»₯δΈŠε‘ηŽ°ηš„ι‡Žη”ŸεŠ¨η‰©γ€‚ε–‚εƒδ»¬$(item)ζ ‘θ‹—$()可δ»₯θ©δ½ ιͺ‘δΉ˜εƒδ»¬εΉΆδΌΈε±•εƒδ»¬ζžι•Ώηš„脖子。εƒδ»¬δΉŸε―δ»₯ι£Ÿη”¨γ€‚" + }, + { + "type": "patchouli:entity", + "entity": "species:goober", + "scale": 0.6, + "name": "黏梕兽", + "text": "$(thing)黏梕兽$()是在-109Β°Cδ»₯δΈŠε‘ηŽ°ηš„ζ‡’ζƒ°ι‡Žη”ŸεŠ¨η‰©γ€‚εƒδ»¬ζ˜―友ε₯½ηš„οΌŒε―δ»₯ι£Ÿη”¨γ€‚" + }, + { + "type": "patchouli:entity", + "entity": "wan_ancient_beasts:walker", + "scale": 0.6, + "offset": 2.2, + "name": "ε·¨θ‘Œε…½", + "text": "ε·¨ε€§ηš„$(thing)ε·¨θ‘Œε…½$()ζ –ζ―εœ¨-97Β°Cδ»₯δΈŠηš„εŒΊεŸŸγ€‚εƒδ»¬ζ˜―友ε₯½ηš„οΌŒε―δ»₯ι£Ÿη”¨γ€‚" + }, + { + "type": "patchouli:entity", + "entity": "wan_ancient_beasts:toxlacanth", + "scale": 0.35, + "name": "ζ―’ζ£˜ι±Ό", + "text": "$(thing)ζ―’ζ£˜ι±Ό$()ζ˜―ζ°΄η”ŸηŒŽι£Ÿθ€…γ€‚ε»Ίθδ»ŽθΏœε€„ζ€ζ­»εƒδ»¬οΌŒεΉΆεœ¨ι£Ÿη”¨ε‰ηƒΉι₯ͺεƒδ»¬ηš„肉。" + }, + { + "type": "patchouli:entity", + "entity": "species:stackatick", + "scale": 0.4, + "name": "ε θ‘Œθ™«", + "text": "ε°‘ζ•°θƒ½εœ¨η«ζ˜Ÿζ²™ζΌ δΈ­η”Ÿε­˜ηš„εŠ¨η‰©δΉ‹δΈ€οΌŒ$(thing)ε θ‘Œθ™«$()ζ˜―δΈ­η«‹ηŒŽι£Ÿθ€…γ€‚εƒδ»¬δΉŸε―δ»₯ι£Ÿη”¨γ€‚" + } + ], + "read_by_default": true +} \ No newline at end of file diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/coke_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/armalcolite_tfc.png similarity index 100% rename from kubejs/assets/tfc/textures/color_palettes/trims/coke_tfc.png rename to kubejs/assets/tfc/textures/color_palettes/trims/armalcolite_tfc.png diff --git a/kubejs/assets/tfc/textures/entity/horse_armor/bismuth_bronze.png b/kubejs/assets/tfc/textures/entity/horse_armor/bismuth_bronze.png new file mode 100644 index 000000000..6c7c5c834 Binary files /dev/null and b/kubejs/assets/tfc/textures/entity/horse_armor/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/entity/horse_armor/black_bronze.png b/kubejs/assets/tfc/textures/entity/horse_armor/black_bronze.png new file mode 100644 index 000000000..646fd93a4 Binary files /dev/null and b/kubejs/assets/tfc/textures/entity/horse_armor/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/entity/horse_armor/black_steel.png b/kubejs/assets/tfc/textures/entity/horse_armor/black_steel.png new file mode 100644 index 000000000..cb28eee1d Binary files /dev/null and b/kubejs/assets/tfc/textures/entity/horse_armor/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/entity/horse_armor/blue_steel.png b/kubejs/assets/tfc/textures/entity/horse_armor/blue_steel.png new file mode 100644 index 000000000..4dd984e35 Binary files /dev/null and b/kubejs/assets/tfc/textures/entity/horse_armor/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/entity/horse_armor/bronze.png b/kubejs/assets/tfc/textures/entity/horse_armor/bronze.png new file mode 100644 index 000000000..40a2a16a2 Binary files /dev/null and b/kubejs/assets/tfc/textures/entity/horse_armor/bronze.png differ diff --git a/kubejs/assets/tfc/textures/entity/horse_armor/copper.png b/kubejs/assets/tfc/textures/entity/horse_armor/copper.png new file mode 100644 index 000000000..1cac54271 Binary files /dev/null and b/kubejs/assets/tfc/textures/entity/horse_armor/copper.png differ diff --git a/kubejs/assets/tfc/textures/entity/horse_armor/red_steel.png b/kubejs/assets/tfc/textures/entity/horse_armor/red_steel.png new file mode 100644 index 000000000..806495fa0 Binary files /dev/null and b/kubejs/assets/tfc/textures/entity/horse_armor/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/entity/horse_armor/steel.png b/kubejs/assets/tfc/textures/entity/horse_armor/steel.png new file mode 100644 index 000000000..d6ab41174 Binary files /dev/null and b/kubejs/assets/tfc/textures/entity/horse_armor/steel.png differ diff --git a/kubejs/assets/tfc/textures/entity/horse_armor/wrought_iron.png b/kubejs/assets/tfc/textures/entity/horse_armor/wrought_iron.png new file mode 100644 index 000000000..c2fc89c9f Binary files /dev/null and b/kubejs/assets/tfc/textures/entity/horse_armor/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/item/blubber.png b/kubejs/assets/tfc/textures/item/blubber.png new file mode 100644 index 000000000..453a7ca59 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/blubber.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/andesite.png b/kubejs/assets/tfc/textures/item/brick/andesite.png new file mode 100644 index 000000000..14a11c6c0 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/andesite.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/basalt.png b/kubejs/assets/tfc/textures/item/brick/basalt.png new file mode 100644 index 000000000..803b2eff9 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/basalt.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/chalk.png b/kubejs/assets/tfc/textures/item/brick/chalk.png new file mode 100644 index 000000000..ffbe81567 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/chalk.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/chert.png b/kubejs/assets/tfc/textures/item/brick/chert.png new file mode 100644 index 000000000..3a4ba0638 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/chert.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/claystone.png b/kubejs/assets/tfc/textures/item/brick/claystone.png new file mode 100644 index 000000000..384c0c90f Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/claystone.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/conglomerate.png b/kubejs/assets/tfc/textures/item/brick/conglomerate.png new file mode 100644 index 000000000..075257065 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/conglomerate.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/dacite.png b/kubejs/assets/tfc/textures/item/brick/dacite.png new file mode 100644 index 000000000..b334a380e Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/dacite.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/diorite.png b/kubejs/assets/tfc/textures/item/brick/diorite.png new file mode 100644 index 000000000..0f8294f26 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/diorite.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/dolomite.png b/kubejs/assets/tfc/textures/item/brick/dolomite.png new file mode 100644 index 000000000..53e0294c6 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/dolomite.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/gabbro.png b/kubejs/assets/tfc/textures/item/brick/gabbro.png new file mode 100644 index 000000000..ade2ac9cb Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/gabbro.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/gneiss.png b/kubejs/assets/tfc/textures/item/brick/gneiss.png new file mode 100644 index 000000000..b9b3fbe15 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/gneiss.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/granite.png b/kubejs/assets/tfc/textures/item/brick/granite.png new file mode 100644 index 000000000..6d25e7ba1 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/granite.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/limestone.png b/kubejs/assets/tfc/textures/item/brick/limestone.png new file mode 100644 index 000000000..eec960652 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/limestone.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/marble.png b/kubejs/assets/tfc/textures/item/brick/marble.png new file mode 100644 index 000000000..b19973506 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/marble.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/phyllite.png b/kubejs/assets/tfc/textures/item/brick/phyllite.png new file mode 100644 index 000000000..761506b49 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/phyllite.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/quartzite.png b/kubejs/assets/tfc/textures/item/brick/quartzite.png new file mode 100644 index 000000000..bbcebecfe Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/quartzite.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/rhyolite.png b/kubejs/assets/tfc/textures/item/brick/rhyolite.png new file mode 100644 index 000000000..9b8c9010d Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/rhyolite.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/schist.png b/kubejs/assets/tfc/textures/item/brick/schist.png new file mode 100644 index 000000000..ae165bf0a Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/schist.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/shale.png b/kubejs/assets/tfc/textures/item/brick/shale.png new file mode 100644 index 000000000..926bdc878 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/shale.png differ diff --git a/kubejs/assets/tfc/textures/item/brick/slate.png b/kubejs/assets/tfc/textures/item/brick/slate.png new file mode 100644 index 000000000..afa4eaa88 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/brick/slate.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/andesite.png b/kubejs/assets/tfc/textures/item/loose_rock/andesite.png new file mode 100644 index 000000000..1db960bd7 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/andesite.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/basalt.png b/kubejs/assets/tfc/textures/item/loose_rock/basalt.png new file mode 100644 index 000000000..fa7940fc5 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/basalt.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/chalk.png b/kubejs/assets/tfc/textures/item/loose_rock/chalk.png new file mode 100644 index 000000000..4de21f8a4 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/chalk.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/chert.png b/kubejs/assets/tfc/textures/item/loose_rock/chert.png new file mode 100644 index 000000000..2f832a0e3 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/chert.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/claystone.png b/kubejs/assets/tfc/textures/item/loose_rock/claystone.png new file mode 100644 index 000000000..a1cae9f4b Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/claystone.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/conglomerate.png b/kubejs/assets/tfc/textures/item/loose_rock/conglomerate.png new file mode 100644 index 000000000..073b771db Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/conglomerate.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/dacite.png b/kubejs/assets/tfc/textures/item/loose_rock/dacite.png new file mode 100644 index 000000000..9512f732b Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/dacite.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/diorite.png b/kubejs/assets/tfc/textures/item/loose_rock/diorite.png new file mode 100644 index 000000000..a2c7b84de Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/diorite.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/dolomite.png b/kubejs/assets/tfc/textures/item/loose_rock/dolomite.png new file mode 100644 index 000000000..fa7f42986 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/dolomite.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/gabbro.png b/kubejs/assets/tfc/textures/item/loose_rock/gabbro.png new file mode 100644 index 000000000..bea40c9c3 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/gabbro.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/gneiss.png b/kubejs/assets/tfc/textures/item/loose_rock/gneiss.png new file mode 100644 index 000000000..7597a0ca6 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/gneiss.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/granite.png b/kubejs/assets/tfc/textures/item/loose_rock/granite.png new file mode 100644 index 000000000..40a31899f Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/granite.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/limestone.png b/kubejs/assets/tfc/textures/item/loose_rock/limestone.png new file mode 100644 index 000000000..0eb6148b0 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/limestone.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/marble.png b/kubejs/assets/tfc/textures/item/loose_rock/marble.png new file mode 100644 index 000000000..9fac9199d Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/marble.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/moss_igneous_extrusive.png b/kubejs/assets/tfc/textures/item/loose_rock/moss_igneous_extrusive.png new file mode 100644 index 000000000..7a96014ca Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/moss_igneous_extrusive.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/moss_igneous_intrusive.png b/kubejs/assets/tfc/textures/item/loose_rock/moss_igneous_intrusive.png new file mode 100644 index 000000000..3e98abc20 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/moss_igneous_intrusive.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/moss_metamorphic.png b/kubejs/assets/tfc/textures/item/loose_rock/moss_metamorphic.png new file mode 100644 index 000000000..f5164d30c Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/moss_metamorphic.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/moss_sedementary.png b/kubejs/assets/tfc/textures/item/loose_rock/moss_sedementary.png new file mode 100644 index 000000000..f012b6816 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/moss_sedementary.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/phyllite.png b/kubejs/assets/tfc/textures/item/loose_rock/phyllite.png new file mode 100644 index 000000000..687d991eb Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/phyllite.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/quartzite.png b/kubejs/assets/tfc/textures/item/loose_rock/quartzite.png new file mode 100644 index 000000000..04222dcdf Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/quartzite.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/rhyolite.png b/kubejs/assets/tfc/textures/item/loose_rock/rhyolite.png new file mode 100644 index 000000000..949109bff Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/rhyolite.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/schist.png b/kubejs/assets/tfc/textures/item/loose_rock/schist.png new file mode 100644 index 000000000..933ea1092 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/schist.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/shale.png b/kubejs/assets/tfc/textures/item/loose_rock/shale.png new file mode 100644 index 000000000..df6194290 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/shale.png differ diff --git a/kubejs/assets/tfc/textures/item/loose_rock/slate.png b/kubejs/assets/tfc/textures/item/loose_rock/slate.png new file mode 100644 index 000000000..3a1afc258 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/loose_rock/slate.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/boots/bismuth_bronze.png b/kubejs/assets/tfc/textures/item/metal/boots/bismuth_bronze.png new file mode 100644 index 000000000..44605842d Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/boots/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/boots/black_bronze.png b/kubejs/assets/tfc/textures/item/metal/boots/black_bronze.png new file mode 100644 index 000000000..434e77938 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/boots/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/boots/black_steel.png b/kubejs/assets/tfc/textures/item/metal/boots/black_steel.png new file mode 100644 index 000000000..041b02264 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/boots/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/boots/blue_steel.png b/kubejs/assets/tfc/textures/item/metal/boots/blue_steel.png new file mode 100644 index 000000000..424e6d8b5 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/boots/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/boots/bronze.png b/kubejs/assets/tfc/textures/item/metal/boots/bronze.png new file mode 100644 index 000000000..6d1db4778 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/boots/bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/boots/copper.png b/kubejs/assets/tfc/textures/item/metal/boots/copper.png new file mode 100644 index 000000000..8f6b62b39 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/boots/copper.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/boots/red_steel.png b/kubejs/assets/tfc/textures/item/metal/boots/red_steel.png new file mode 100644 index 000000000..ef3fe813c Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/boots/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/boots/steel.png b/kubejs/assets/tfc/textures/item/metal/boots/steel.png new file mode 100644 index 000000000..abed46031 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/boots/steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/boots/wrought_iron.png b/kubejs/assets/tfc/textures/item/metal/boots/wrought_iron.png new file mode 100644 index 000000000..6c88fdf6e Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/boots/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/chestplate/bismuth_bronze.png b/kubejs/assets/tfc/textures/item/metal/chestplate/bismuth_bronze.png new file mode 100644 index 000000000..e45276b7e Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/chestplate/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/chestplate/black_bronze.png b/kubejs/assets/tfc/textures/item/metal/chestplate/black_bronze.png new file mode 100644 index 000000000..cc801e37a Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/chestplate/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/chestplate/black_steel.png b/kubejs/assets/tfc/textures/item/metal/chestplate/black_steel.png new file mode 100644 index 000000000..be6bd1c23 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/chestplate/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/chestplate/blue_steel.png b/kubejs/assets/tfc/textures/item/metal/chestplate/blue_steel.png new file mode 100644 index 000000000..cb9d71597 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/chestplate/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/chestplate/bronze.png b/kubejs/assets/tfc/textures/item/metal/chestplate/bronze.png new file mode 100644 index 000000000..cee6095d5 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/chestplate/bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/chestplate/copper.png b/kubejs/assets/tfc/textures/item/metal/chestplate/copper.png new file mode 100644 index 000000000..60d31b62d Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/chestplate/copper.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/chestplate/red_steel.png b/kubejs/assets/tfc/textures/item/metal/chestplate/red_steel.png new file mode 100644 index 000000000..89c25f5db Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/chestplate/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/chestplate/steel.png b/kubejs/assets/tfc/textures/item/metal/chestplate/steel.png new file mode 100644 index 000000000..6b324ebdf Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/chestplate/steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/chestplate/wrought_iron.png b/kubejs/assets/tfc/textures/item/metal/chestplate/wrought_iron.png new file mode 100644 index 000000000..431a4e2e6 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/chestplate/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/greaves/bismuth_bronze.png b/kubejs/assets/tfc/textures/item/metal/greaves/bismuth_bronze.png new file mode 100644 index 000000000..efe4d9081 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/greaves/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/greaves/black_bronze.png b/kubejs/assets/tfc/textures/item/metal/greaves/black_bronze.png new file mode 100644 index 000000000..7a6fb697f Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/greaves/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/greaves/black_steel.png b/kubejs/assets/tfc/textures/item/metal/greaves/black_steel.png new file mode 100644 index 000000000..bb65f8ba2 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/greaves/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/greaves/blue_steel.png b/kubejs/assets/tfc/textures/item/metal/greaves/blue_steel.png new file mode 100644 index 000000000..8ea168c50 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/greaves/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/greaves/bronze.png b/kubejs/assets/tfc/textures/item/metal/greaves/bronze.png new file mode 100644 index 000000000..3451dc955 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/greaves/bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/greaves/copper.png b/kubejs/assets/tfc/textures/item/metal/greaves/copper.png new file mode 100644 index 000000000..0a9373c37 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/greaves/copper.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/greaves/red_steel.png b/kubejs/assets/tfc/textures/item/metal/greaves/red_steel.png new file mode 100644 index 000000000..404de3c12 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/greaves/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/greaves/steel.png b/kubejs/assets/tfc/textures/item/metal/greaves/steel.png new file mode 100644 index 000000000..489c2ec7a Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/greaves/steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/greaves/wrought_iron.png b/kubejs/assets/tfc/textures/item/metal/greaves/wrought_iron.png new file mode 100644 index 000000000..d88bbc252 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/greaves/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/helmet/bismuth_bronze.png b/kubejs/assets/tfc/textures/item/metal/helmet/bismuth_bronze.png new file mode 100644 index 000000000..fc4e36d53 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/helmet/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/helmet/black_bronze.png b/kubejs/assets/tfc/textures/item/metal/helmet/black_bronze.png new file mode 100644 index 000000000..4153b8c26 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/helmet/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/helmet/black_steel.png b/kubejs/assets/tfc/textures/item/metal/helmet/black_steel.png new file mode 100644 index 000000000..93ddfdb77 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/helmet/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/helmet/blue_steel.png b/kubejs/assets/tfc/textures/item/metal/helmet/blue_steel.png new file mode 100644 index 000000000..bfab6b027 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/helmet/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/helmet/bronze.png b/kubejs/assets/tfc/textures/item/metal/helmet/bronze.png new file mode 100644 index 000000000..6d58865df Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/helmet/bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/helmet/copper.png b/kubejs/assets/tfc/textures/item/metal/helmet/copper.png new file mode 100644 index 000000000..10db5d4d6 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/helmet/copper.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/helmet/red_steel.png b/kubejs/assets/tfc/textures/item/metal/helmet/red_steel.png new file mode 100644 index 000000000..ae1b0c745 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/helmet/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/helmet/steel.png b/kubejs/assets/tfc/textures/item/metal/helmet/steel.png new file mode 100644 index 000000000..13cdf7054 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/helmet/steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/helmet/wrought_iron.png b/kubejs/assets/tfc/textures/item/metal/helmet/wrought_iron.png new file mode 100644 index 000000000..b9710968c Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/helmet/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/horse_armor/bismuth_bronze.png b/kubejs/assets/tfc/textures/item/metal/horse_armor/bismuth_bronze.png new file mode 100644 index 000000000..ad38cb8c4 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/horse_armor/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/horse_armor/black_bronze.png b/kubejs/assets/tfc/textures/item/metal/horse_armor/black_bronze.png new file mode 100644 index 000000000..cec438010 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/horse_armor/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/horse_armor/black_steel.png b/kubejs/assets/tfc/textures/item/metal/horse_armor/black_steel.png new file mode 100644 index 000000000..ff11d5d5d Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/horse_armor/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/horse_armor/blue_steel.png b/kubejs/assets/tfc/textures/item/metal/horse_armor/blue_steel.png new file mode 100644 index 000000000..2ba2aaf90 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/horse_armor/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/horse_armor/bronze.png b/kubejs/assets/tfc/textures/item/metal/horse_armor/bronze.png new file mode 100644 index 000000000..525d3c426 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/horse_armor/bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/horse_armor/copper.png b/kubejs/assets/tfc/textures/item/metal/horse_armor/copper.png new file mode 100644 index 000000000..cf7115e5d Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/horse_armor/copper.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/horse_armor/red_steel.png b/kubejs/assets/tfc/textures/item/metal/horse_armor/red_steel.png new file mode 100644 index 000000000..ff80e59ce Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/horse_armor/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/horse_armor/steel.png b/kubejs/assets/tfc/textures/item/metal/horse_armor/steel.png new file mode 100644 index 000000000..6fbdf5a4a Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/horse_armor/steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/horse_armor/wrought_iron.png b/kubejs/assets/tfc/textures/item/metal/horse_armor/wrought_iron.png new file mode 100644 index 000000000..65812d7b6 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/horse_armor/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/shield/bismuth_bronze.png b/kubejs/assets/tfc/textures/item/metal/shield/bismuth_bronze.png new file mode 100644 index 000000000..736b882c9 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/shield/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/shield/black_bronze.png b/kubejs/assets/tfc/textures/item/metal/shield/black_bronze.png new file mode 100644 index 000000000..e114a2aa8 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/shield/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/shield/black_steel.png b/kubejs/assets/tfc/textures/item/metal/shield/black_steel.png new file mode 100644 index 000000000..df7ab888d Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/shield/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/shield/blue_steel.png b/kubejs/assets/tfc/textures/item/metal/shield/blue_steel.png new file mode 100644 index 000000000..be16ba298 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/shield/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/shield/bronze.png b/kubejs/assets/tfc/textures/item/metal/shield/bronze.png new file mode 100644 index 000000000..dd6d75ba6 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/shield/bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/shield/copper.png b/kubejs/assets/tfc/textures/item/metal/shield/copper.png new file mode 100644 index 000000000..58ad5ca42 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/shield/copper.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/shield/red_steel.png b/kubejs/assets/tfc/textures/item/metal/shield/red_steel.png new file mode 100644 index 000000000..2e272d947 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/shield/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/shield/steel.png b/kubejs/assets/tfc/textures/item/metal/shield/steel.png new file mode 100644 index 000000000..4468a882d Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/shield/steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/shield/wrought_iron.png b/kubejs/assets/tfc/textures/item/metal/shield/wrought_iron.png new file mode 100644 index 000000000..09deca10f Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/shield/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_boots/bismuth_bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/bismuth_bronze.png new file mode 100644 index 000000000..423be08e9 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_boots/black_bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/black_bronze.png new file mode 100644 index 000000000..cabd42503 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_boots/black_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/black_steel.png new file mode 100644 index 000000000..f6ba3d643 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_boots/blue_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/blue_steel.png new file mode 100644 index 000000000..47c9b5443 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_boots/bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/bronze.png new file mode 100644 index 000000000..bd4792b57 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_boots/copper.png b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/copper.png new file mode 100644 index 000000000..92bc672c0 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/copper.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_boots/red_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/red_steel.png new file mode 100644 index 000000000..0998e9072 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_boots/steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/steel.png new file mode 100644 index 000000000..8becf3ca4 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_boots/wrought_iron.png b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/wrought_iron.png new file mode 100644 index 000000000..a4e0f03c4 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_boots/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/bismuth_bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/bismuth_bronze.png new file mode 100644 index 000000000..d760c79a7 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/black_bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/black_bronze.png new file mode 100644 index 000000000..ab5fe77e9 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/black_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/black_steel.png new file mode 100644 index 000000000..2c3930302 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/blue_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/blue_steel.png new file mode 100644 index 000000000..6b3045fd4 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/bronze.png new file mode 100644 index 000000000..0a1f809ae Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/copper.png b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/copper.png new file mode 100644 index 000000000..b1474cf5b Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/copper.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/red_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/red_steel.png new file mode 100644 index 000000000..fd92f2f54 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/steel.png new file mode 100644 index 000000000..c688fc5c5 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/wrought_iron.png b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/wrought_iron.png new file mode 100644 index 000000000..20f4c6593 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_chestplate/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/bismuth_bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/bismuth_bronze.png new file mode 100644 index 000000000..f09a6216d Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/black_bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/black_bronze.png new file mode 100644 index 000000000..004dc9cdc Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/black_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/black_steel.png new file mode 100644 index 000000000..474536d35 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/blue_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/blue_steel.png new file mode 100644 index 000000000..fe8f7cdee Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/bronze.png new file mode 100644 index 000000000..bd28771da Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/copper.png b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/copper.png new file mode 100644 index 000000000..fc0609238 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/copper.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/red_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/red_steel.png new file mode 100644 index 000000000..a7c098218 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/steel.png new file mode 100644 index 000000000..2bbf9159a Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/wrought_iron.png b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/wrought_iron.png new file mode 100644 index 000000000..656cc28d2 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_greaves/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/bismuth_bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/bismuth_bronze.png new file mode 100644 index 000000000..b1acda302 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/bismuth_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/black_bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/black_bronze.png new file mode 100644 index 000000000..3b44c033a Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/black_bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/black_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/black_steel.png new file mode 100644 index 000000000..19814ec01 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/black_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/blue_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/blue_steel.png new file mode 100644 index 000000000..beef9de61 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/blue_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/bronze.png b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/bronze.png new file mode 100644 index 000000000..d077e54f3 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/bronze.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/copper.png b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/copper.png new file mode 100644 index 000000000..843389b10 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/copper.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/red_steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/red_steel.png new file mode 100644 index 000000000..7ac49b518 Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/red_steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/steel.png b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/steel.png new file mode 100644 index 000000000..e00aa2f7c Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/steel.png differ diff --git a/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/wrought_iron.png b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/wrought_iron.png new file mode 100644 index 000000000..619e5a7fa Binary files /dev/null and b/kubejs/assets/tfc/textures/item/metal/unfinished_helmet/wrought_iron.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/bismuth_bronze_layer_1.png b/kubejs/assets/tfc/textures/models/armor/bismuth_bronze_layer_1.png new file mode 100644 index 000000000..969c9092e Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/bismuth_bronze_layer_1.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/bismuth_bronze_layer_2.png b/kubejs/assets/tfc/textures/models/armor/bismuth_bronze_layer_2.png new file mode 100644 index 000000000..753ca4f48 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/bismuth_bronze_layer_2.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/black_bronze_layer_1.png b/kubejs/assets/tfc/textures/models/armor/black_bronze_layer_1.png new file mode 100644 index 000000000..22d0313e6 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/black_bronze_layer_1.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/black_bronze_layer_2.png b/kubejs/assets/tfc/textures/models/armor/black_bronze_layer_2.png new file mode 100644 index 000000000..ffc0d1ee5 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/black_bronze_layer_2.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/black_steel_layer_1.png b/kubejs/assets/tfc/textures/models/armor/black_steel_layer_1.png new file mode 100644 index 000000000..87c41ed73 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/black_steel_layer_1.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/black_steel_layer_2.png b/kubejs/assets/tfc/textures/models/armor/black_steel_layer_2.png new file mode 100644 index 000000000..e46c39104 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/black_steel_layer_2.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/blue_steel_layer_1.png b/kubejs/assets/tfc/textures/models/armor/blue_steel_layer_1.png new file mode 100644 index 000000000..b64f2509f Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/blue_steel_layer_1.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/blue_steel_layer_2.png b/kubejs/assets/tfc/textures/models/armor/blue_steel_layer_2.png new file mode 100644 index 000000000..0aa6f0bd0 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/blue_steel_layer_2.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/bronze_layer_1.png b/kubejs/assets/tfc/textures/models/armor/bronze_layer_1.png new file mode 100644 index 000000000..17f1a700a Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/bronze_layer_1.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/bronze_layer_2.png b/kubejs/assets/tfc/textures/models/armor/bronze_layer_2.png new file mode 100644 index 000000000..fea30c22d Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/bronze_layer_2.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/copper_layer_1.png b/kubejs/assets/tfc/textures/models/armor/copper_layer_1.png new file mode 100644 index 000000000..71dd22423 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/copper_layer_1.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/copper_layer_2.png b/kubejs/assets/tfc/textures/models/armor/copper_layer_2.png new file mode 100644 index 000000000..7e6fa4194 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/copper_layer_2.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/red_steel_layer_1.png b/kubejs/assets/tfc/textures/models/armor/red_steel_layer_1.png new file mode 100644 index 000000000..1ecd064a0 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/red_steel_layer_1.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/red_steel_layer_2.png b/kubejs/assets/tfc/textures/models/armor/red_steel_layer_2.png new file mode 100644 index 000000000..4740624d4 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/red_steel_layer_2.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/steel_layer_1.png b/kubejs/assets/tfc/textures/models/armor/steel_layer_1.png new file mode 100644 index 000000000..7725b5f14 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/steel_layer_1.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/steel_layer_2.png b/kubejs/assets/tfc/textures/models/armor/steel_layer_2.png new file mode 100644 index 000000000..ad57fe6a1 Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/steel_layer_2.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/wrought_iron_layer_1.png b/kubejs/assets/tfc/textures/models/armor/wrought_iron_layer_1.png new file mode 100644 index 000000000..4171aacfa Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/wrought_iron_layer_1.png differ diff --git a/kubejs/assets/tfc/textures/models/armor/wrought_iron_layer_2.png b/kubejs/assets/tfc/textures/models/armor/wrought_iron_layer_2.png new file mode 100644 index 000000000..0b36d0c5b Binary files /dev/null and b/kubejs/assets/tfc/textures/models/armor/wrought_iron_layer_2.png differ diff --git a/kubejs/assets/tfc_support_indicator/lang/zh_cn.json b/kubejs/assets/tfc_support_indicator/lang/zh_cn.json new file mode 100644 index 000000000..22cc23295 --- /dev/null +++ b/kubejs/assets/tfc_support_indicator/lang/zh_cn.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.", + "config.jade.plugin_tfc_support_indicator.support_indicator": "ηΎ€ε³¦δΌ θ―΄οΌšζ”―ζ’‘ζ˜Ύη€Ί", + "tfc_support_indicator.self_supported": "θ’«ζ”―ζ’‘δΈ­", + "tfc_support_indicator.self_unsupported": "ζœͺθ’«ζ”―ζ’‘", + "tfc_support_indicator.wont_trigger_collapse": "δΈδΌšεΌ•ε‘ε΄©ε‘Œ", + "tfc_support_indicator.might_trigger_collapse": "ε―θƒ½δΌšεΌ•ε‘ε΄©ε‘Œ" +} \ No newline at end of file diff --git a/kubejs/assets/tfc_textile/lang/ru_ru.json b/kubejs/assets/tfc_textile/lang/ru_ru.json index 4974b62e7..e8119c0cc 100644 --- a/kubejs/assets/tfc_textile/lang/ru_ru.json +++ b/kubejs/assets/tfc_textile/lang/ru_ru.json @@ -1,7 +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.tfc_textile.direwolf_fur": "Π¨ΠΊΡƒΡ€Π° Π»ΡŽΡ‚ΠΎΠ²ΠΎΠ»ΠΊΠ°", - "item.tfc_textile.black_bear_fur": "Π¨ΠΊΡƒΡ€Π° Ρ‡Π΅Ρ€Π½ΠΎΠ³ΠΎ мСдвСдя", + "item.tfc_textile.black_bear_fur": "Π¨ΠΊΡƒΡ€Π° Ρ‡Ρ‘Ρ€Π½ΠΎΠ³ΠΎ мСдвСдя", "item.tfc_textile.sabertooth_fur": "Π¨ΠΊΡƒΡ€Π° саблСзубого Ρ‚ΠΈΠ³Ρ€Π°", "item.tfc_textile.polar_bear_fur": "Π¨ΠΊΡƒΡ€Π° полярного мСдвСдя", "item.tfc_textile.grizzly_bear_fur": "Π¨ΠΊΡƒΡ€Π° Π±ΡƒΡ€ΠΎΠ³ΠΎ мСдвСдя", @@ -12,7 +12,7 @@ "item.tfc_textile.lion_fur": "Π¨ΠΊΡƒΡ€Π° льва", "item.tfc_textile.tiger_fur": "Π¨ΠΊΡƒΡ€Π° Ρ‚ΠΈΠ³Ρ€Π°", "item.tfc_textile.direwolf_boots": "Π‘ΠΎΡ‚ΠΈΠ½ΠΊΠΈ ΠΈΠ· Π»ΡŽΡ‚ΠΎΠ²ΠΎΠ»ΠΊΠ°", - "item.tfc_textile.black_bear_boots": "Π‘ΠΎΡ‚ΠΈΠ½ΠΊΠΈ ΠΈΠ· Ρ‡Π΅Ρ€Π½ΠΎΠ³ΠΎ мСдвСдя", + "item.tfc_textile.black_bear_boots": "Π‘ΠΎΡ‚ΠΈΠ½ΠΊΠΈ ΠΈΠ· Ρ‡Ρ‘Ρ€Π½ΠΎΠ³ΠΎ мСдвСдя", "item.tfc_textile.sabertooth_boots": "Π‘ΠΎΡ‚ΠΈΠ½ΠΊΠΈ ΠΈΠ· саблСзубого Ρ‚ΠΈΠ³Ρ€Π°", "item.tfc_textile.polar_bear_boots": "Π‘ΠΎΡ‚ΠΈΠ½ΠΊΠΈ ΠΈΠ· полярного мСдвСдя", "item.tfc_textile.grizzly_bear_boots": "Π‘ΠΎΡ‚ΠΈΠ½ΠΊΠΈ ΠΈΠ· Π±ΡƒΡ€ΠΎΠ³ΠΎ мСдвСдя", @@ -24,7 +24,7 @@ "item.tfc_textile.tiger_boots": "Π‘ΠΎΡ‚ΠΈΠ½ΠΊΠΈ ΠΈΠ· Ρ‚ΠΈΠ³Ρ€Π°", "item.tfc_textile.raw_socks": "ΠŸΠ΅Ρ€Π²ΠΎΠ±Ρ‹Ρ‚Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ", "item.tfc_textile.direwolf_pants": "Π¨Ρ‚Π°Π½Ρ‹ ΠΈΠ· Π»ΡŽΡ‚ΠΎΠ²ΠΎΠ»ΠΊΠ°", - "item.tfc_textile.black_bear_pants": "Π¨Ρ‚Π°Π½Ρ‹ ΠΈΠ· Ρ‡Π΅Ρ€Π½ΠΎΠ³ΠΎ мСдвСдя", + "item.tfc_textile.black_bear_pants": "Π¨Ρ‚Π°Π½Ρ‹ ΠΈΠ· Ρ‡Ρ‘Ρ€Π½ΠΎΠ³ΠΎ мСдвСдя", "item.tfc_textile.sabertooth_pants": "Π¨Ρ‚Π°Π½Ρ‹ ΠΈΠ· саблСзубого Ρ‚ΠΈΠ³Ρ€Π°", "item.tfc_textile.polar_bear_pants": "Π¨Ρ‚Π°Π½Ρ‹ ΠΈΠ· полярного мСдвСдя", "item.tfc_textile.grizzly_bear_pants": "Π¨Ρ‚Π°Π½Ρ‹ ΠΈΠ· Π±ΡƒΡ€ΠΎΠ³ΠΎ мСдвСдя", @@ -36,7 +36,7 @@ "item.tfc_textile.tiger_pants": "Π¨Ρ‚Π°Π½Ρ‹ ΠΈΠ· Ρ‚ΠΈΠ³Ρ€Π°", "item.tfc_textile.raw_pants": "ΠŸΠ΅Ρ€Π²ΠΎΠ±Ρ‹Ρ‚Π½Ρ‹Π΅ ΡˆΡ‚Π°Π½Ρ‹", "item.tfc_textile.direwolf_shirt": "ΠŸΠ°Ρ€ΠΊΠ° ΠΈΠ· Π»ΡŽΡ‚ΠΎΠ²ΠΎΠ»ΠΊΠ°", - "item.tfc_textile.black_bear_shirt": "Π ΡƒΠ±Π°ΡˆΠΊΠ° ΠΈΠ· Ρ‡Π΅Ρ€Π½ΠΎΠ³ΠΎ мСдвСдя", + "item.tfc_textile.black_bear_shirt": "Π ΡƒΠ±Π°ΡˆΠΊΠ° ΠΈΠ· Ρ‡Ρ‘Ρ€Π½ΠΎΠ³ΠΎ мСдвСдя", "item.tfc_textile.sabertooth_shirt": "Π ΡƒΠ±Π°ΡˆΠΊΠ° ΠΈΠ· саблСзубого Ρ‚ΠΈΠ³Ρ€Π°", "item.tfc_textile.polar_bear_shirt": "ΠŸΠ°Ρ€ΠΊΠ° ΠΈΠ· полярного мСдвСдя", "item.tfc_textile.grizzly_bear_shirt": "Π ΡƒΠ±Π°ΡˆΠΊΠ° ΠΈΠ· Π±ΡƒΡ€ΠΎΠ³ΠΎ мСдвСдя", @@ -48,7 +48,7 @@ "item.tfc_textile.tiger_shirt": "Π ΡƒΠ±Π°ΡˆΠΊΠ° ΠΈΠ· Ρ‚ΠΈΠ³Ρ€Π°", "item.tfc_textile.raw_shirt": "ΠŸΠ΅Ρ€Π²ΠΎΠ±Ρ‹Ρ‚Π½Π°Ρ Ρ€ΡƒΠ±Π°Ρ…Π°", "item.tfc_textile.direwolf_hat": "Π¨Π°ΠΏΠΊΠ° ΠΈΠ· Π»ΡŽΡ‚ΠΎΠ²ΠΎΠ»ΠΊΠ°", - "item.tfc_textile.black_bear_hat": "Π¨Π°ΠΏΠΊΠ° ΠΈΠ· Ρ‡Π΅Ρ€Π½ΠΎΠ³ΠΎ мСдвСдя", + "item.tfc_textile.black_bear_hat": "Π¨Π°ΠΏΠΊΠ° ΠΈΠ· Ρ‡Ρ‘Ρ€Π½ΠΎΠ³ΠΎ мСдвСдя", "item.tfc_textile.sabertooth_hat": "Π¨Π°ΠΏΠΊΠ° ΠΈΠ· саблСзубого Ρ‚ΠΈΠ³Ρ€Π°", "item.tfc_textile.polar_bear_hat": "Капюшон ΠΈΠ· полярного мСдвСдя", "item.tfc_textile.grizzly_bear_hat": "Π¨Π°ΠΏΠΊΠ° ΠΈΠ· Π±ΡƒΡ€ΠΎΠ³ΠΎ мСдвСдя", diff --git a/kubejs/assets/tfcambiental/lang/ru_ru.json b/kubejs/assets/tfcambiental/lang/ru_ru.json index c4dd402c4..7aaac6f1d 100644 --- a/kubejs/assets/tfcambiental/lang/ru_ru.json +++ b/kubejs/assets/tfcambiental/lang/ru_ru.json @@ -1,9 +1,10 @@ { "__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.frostbite": "%1$s Π·Π°ΠΌΡ‘Ρ€Π· Π½Π°ΡΠΌΠ΅Ρ€Ρ‚ΡŒ.", "death.attack.heatstroke": "%1$s ΡƒΠΌΠ΅Ρ€ ΠΎΡ‚ Ρ‚Π΅ΠΏΠ»ΠΎΠ²ΠΎΠ³ΠΎ ΡƒΠ΄Π°Ρ€Π°.", "effect.tfcambiental.cool.name": "ΠžΡ…Π»Π°ΠΆΠ΄Π΅Π½ΠΈΠ΅", "effect.tfcambiental.warm.name": "НагрСв", + "itemGroup.tfcambiental": "TFC Ambiental", "item.tfcambiental.house_tester": "ВСстСр Π΄ΠΎΠΌΠ°", "item.tfcambiental.snowshoes": "Зимняя ΠΎΠ±ΡƒΠ²ΡŒ", "item.tfcambiental.straw_hat": "БоломСнная шляпа", @@ -20,19 +21,21 @@ "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": "Π©Π΅Π»ΠΊΠ½ΠΈΡ‚Π΅ ПКМ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΈΡ‚ΡŒ, считаСтся Π»ΠΈ вашС Ρ‚Π΅ΠΊΡƒΡ‰Π΅Π΅ мСстополоТСниС Π²Π½ΡƒΡ‚Ρ€ΠΈ ΠΈΠ»ΠΈ снаруТи", + "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.sun_protection": "-20% Π½Π°Π³Ρ€Π΅Π²Π° ΠΎΡ‚ прямого воздСйствия солнца", "tfcambiental.tooltip.snowshoes": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ Ρ‚ΠΎΠ½ΡƒΡ‚ΡŒ Π² Ρ€Ρ‹Ρ…Π»ΠΎΠΌ снСгу", + "message.tfcambiental.cold_hungry": "Π₯ΠΎΠ»ΠΎΠ΄ истощаСт Π²Π°ΡˆΡƒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ.", + "message.tfcambiental.heat_thirsty": "Π₯ΠΎΠ»ΠΎΠ΄ ΠΎΠ±Π΅Π·Π²ΠΎΠΆΠΈΠ²Π°Π΅Ρ‚ вас.", "curios.identifier.clothes_hat": "ОдСТда (Π“ΠΎΠ»ΠΎΠ²Π°)", "curios.identifier.clothes_torso": "ОдСТда (Π’ΡƒΠ»ΠΎΠ²ΠΈΡ‰Π΅)", "curios.identifier.clothes_pants": "ОдСТда (Ноги)", diff --git a/kubejs/assets/tfcbetterbf/lang/zh_cn.json b/kubejs/assets/tfcbetterbf/lang/zh_cn.json index f3c42786c..f001f1f8e 100644 --- a/kubejs/assets/tfcbetterbf/lang/zh_cn.json +++ b/kubejs/assets/tfcbetterbf/lang/zh_cn.json @@ -1,5 +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": "ι«˜η‚‰δΏζΈ©ζΏ" + "block.tfcbetterbf.insulated_fire_bricks": "ιš”ηƒ­θ€η«η –", + "item.tfcbetterbf.insulation": "ι«˜η‚‰ιš”ηƒ­ζΏ" } \ No newline at end of file diff --git a/kubejs/assets/tfcchannelcasting/lang/ru_ru.json b/kubejs/assets/tfcchannelcasting/lang/ru_ru.json new file mode 100644 index 000000000..cbdda0cf0 --- /dev/null +++ b/kubejs/assets/tfcchannelcasting/lang/ru_ru.json @@ -0,0 +1,40 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.tfcchannelcasting.channel": "Π›ΠΈΡ‚Π΅ΠΉΠ½Ρ‹ΠΉ ΠΊΠ°Π½Π°Π»", + "block.tfcchannelcasting.mold_table": "Π‘Ρ‚ΠΎΠ» для Ρ„ΠΎΡ€ΠΌ", + "item.tfcchannelcasting.unfired_channel": "НСобоТТённый Π»ΠΈΡ‚Π΅ΠΉΠ½Ρ‹ΠΉ ΠΊΠ°Π½Π°Π»", + "item.tfcchannelcasting.unfired_mold_table": "НСобоТТённый стол для Ρ„ΠΎΡ€ΠΌ", + "item.tfcchannelcasting.heart_mold": "Π€ΠΎΡ€ΠΌΠ° Β«Π‘Π΅Ρ€Π΄Ρ†Π΅Β»", + "item.tfcchannelcasting.unfired_heart_mold": "НСобоТТённая Ρ„ΠΎΡ€ΠΌΠ° Β«Π‘Π΅Ρ€Π΄Ρ†Π΅Β»", + "metal.tfcchannelcasting.dark_chocolate": "Π’Ρ‘ΠΌΠ½Ρ‹ΠΉ шоколад", + "block.tfcchannelcasting.fluid.dark_chocolate": "Π’Ρ‘ΠΌΠ½Ρ‹ΠΉ шоколад", + "item.tfcchannelcasting.bucket.dark_chocolate": "Π’Π΅Π΄Ρ€ΠΎ Ρ‚Ρ‘ΠΌΠ½ΠΎΠ³ΠΎ шоколада", + "fluid.tfcchannelcasting.dark_chocolate": "Π’Ρ‘ΠΌΠ½Ρ‹ΠΉ шоколад", + "item.tfcchannelcasting.food.dark_chocolate_heart": "Π‘Π΅Ρ€Π΄Ρ†Π΅ ΠΈΠ· Ρ‚Ρ‘ΠΌΠ½ΠΎΠ³ΠΎ шоколада", + "item.tfcchannelcasting.food.dark_chocolate_bell": "ΠšΠΎΠ»ΠΎΠΊΠΎΠ»ΡŒΡ‡ΠΈΠΊ ΠΈΠ· Ρ‚Ρ‘ΠΌΠ½ΠΎΠ³ΠΎ шоколада", + "item.tfcchannelcasting.food.dark_chocolate_knife": "Вкусный Π½ΠΎΠΆΠΈΠΊ ΠΈΠ· Ρ‚Ρ‘ΠΌΠ½ΠΎΠ³ΠΎ шоколада", + "metal.tfcchannelcasting.milk_chocolate": "ΠœΠΎΠ»ΠΎΡ‡Π½Ρ‹ΠΉ шоколад", + "block.tfcchannelcasting.fluid.milk_chocolate": "ΠœΠΎΠ»ΠΎΡ‡Π½Ρ‹ΠΉ шоколад", + "item.tfcchannelcasting.bucket.milk_chocolate": "Π’Π΅Π΄Ρ€ΠΎ ΠΌΠΎΠ»ΠΎΡ‡Π½ΠΎΠ³ΠΎ шоколада", + "fluid.tfcchannelcasting.milk_chocolate": "ΠœΠΎΠ»ΠΎΡ‡Π½Ρ‹ΠΉ шоколад", + "item.tfcchannelcasting.food.milk_chocolate_heart": "Π‘Π΅Ρ€Π΄Ρ†Π΅ ΠΈΠ· ΠΌΠΎΠ»ΠΎΡ‡Π½ΠΎΠ³ΠΎ шоколада", + "item.tfcchannelcasting.food.milk_chocolate_bell": "ΠšΠΎΠ»ΠΎΠΊΠΎΠ»ΡŒΡ‡ΠΈΠΊ ΠΈΠ· ΠΌΠΎΠ»ΠΎΡ‡Π½ΠΎΠ³ΠΎ шоколада", + "item.tfcchannelcasting.food.milk_chocolate_knife": "Вкусный Π½ΠΎΠΆΠΈΠΊ ΠΈΠ· ΠΌΠΎΠ»ΠΎΡ‡Π½ΠΎΠ³ΠΎ шоколада", + "metal.tfcchannelcasting.white_chocolate": "Π‘Π΅Π»Ρ‹ΠΉ шоколад", + "block.tfcchannelcasting.fluid.white_chocolate": "Π‘Π΅Π»Ρ‹ΠΉ шоколад", + "item.tfcchannelcasting.bucket.white_chocolate": "Π’Π΅Π΄Ρ€ΠΎ Π±Π΅Π»ΠΎΠ³ΠΎ шоколада", + "fluid.tfcchannelcasting.white_chocolate": "Π‘Π΅Π»Ρ‹ΠΉ шоколад", + "item.tfcchannelcasting.food.white_chocolate_heart": "Π‘Π΅Ρ€Π΄Ρ†Π΅ ΠΈΠ· Π±Π΅Π»ΠΎΠ³ΠΎ шоколада", + "item.tfcchannelcasting.food.white_chocolate_bell": "ΠšΠΎΠ»ΠΎΠΊΠΎΠ»ΡŒΡ‡ΠΈΠΊ ΠΈΠ· Π±Π΅Π»ΠΎΠ³ΠΎ шоколада", + "item.tfcchannelcasting.food.white_chocolate_knife": "Вкусный Π½ΠΎΠΆΠΈΠΊ ΠΈΠ· Π±Π΅Π»ΠΎΠ³ΠΎ шоколада", + "tfc.recipe.barrel.tfcchannelcasting.barrel.fill_with_sweet_liquor": "НаполнСниС сладким Π»ΠΈΠΊΡ‘Ρ€ΠΎΠΌ", + "tfc.recipe.barrel.tfcchannelcasting.barrel.fill_with_strong_liquor": "НаполнСниС ΠΊΡ€Π΅ΠΏΠΊΠΈΠΌ Π»ΠΈΠΊΡ‘Ρ€ΠΎΠΌ", + "tfc.recipe.barrel.tfcchannelcasting.barrel.fill_with_whiskey": "НаполнСниС виски", + "tfcchannelcasting.tooltip.food_trait.festive": "ΠŸΡ€Π°Π·Π΄Π½ΠΈΡ‡Π½ΠΎΠ΅", + "tfcchannelcasting.tooltip.food_trait.scary": "Π–ΡƒΡ‚ΠΊΠΎΠ΅", + "tfcchannelcasting.tooltip.food_trait.romantic": "Π ΠΎΠΌΠ°Π½Ρ‚ΠΈΡ‡Π½ΠΎΠ΅", + "tfcchannelcasting.tooltip.food_trait.filled_with_jam": "Π‘ Π½Π°Ρ‡ΠΈΠ½ΠΊΠΎΠΉ ΠΈΠ· Π΄ΠΆΠ΅ΠΌΠ°", + "tfcchannelcasting.tooltip.food_trait.filled_with_sweet_liquor": "Π‘ Π½Π°Ρ‡ΠΈΠ½ΠΊΠΎΠΉ ΠΈΠ· сладкого Π»ΠΈΠΊΡ‘Ρ€Π°", + "tfcchannelcasting.tooltip.food_trait.filled_with_strong_liquor": "Π‘ Π½Π°Ρ‡ΠΈΠ½ΠΊΠΎΠΉ ΠΈΠ· ΠΊΡ€Π΅ΠΏΠΊΠΎΠ³ΠΎ Π»ΠΈΠΊΡ‘Ρ€Π°", + "tfcchannelcasting.tooltip.food_trait.filled_with_whiskey": "Π‘ Π½Π°Ρ‡ΠΈΠ½ΠΊΠΎΠΉ ΠΈΠ· виски" +} \ No newline at end of file diff --git a/kubejs/assets/tfcgroomer/lang/ru_ru.json b/kubejs/assets/tfcgroomer/lang/ru_ru.json index 7186a314a..d8a35d848 100644 --- a/kubejs/assets/tfcgroomer/lang/ru_ru.json +++ b/kubejs/assets/tfcgroomer/lang/ru_ru.json @@ -8,5 +8,11 @@ "block.tfcgroomer.steel_grooming_station": "ΠšΠΎΡ€ΠΌΡƒΡˆΠΊΠ° (Π‘Ρ‚Π°Π»ΡŒ)", "block.tfcgroomer.black_steel_grooming_station": "ΠšΠΎΡ€ΠΌΡƒΡˆΠΊΠ° (Чёрная ΡΡ‚Π°Π»ΡŒ)", "block.tfcgroomer.red_steel_grooming_station": "ΠšΠΎΡ€ΠΌΡƒΡˆΠΊΠ° (ΠšΡ€Π°ΡΠ½Π°Ρ ΡΡ‚Π°Π»ΡŒ)", - "block.tfcgroomer.blue_steel_grooming_station": "ΠšΠΎΡ€ΠΌΡƒΡˆΠΊΠ° (Биняя ΡΡ‚Π°Π»ΡŒ)" + "block.tfcgroomer.blue_steel_grooming_station": "ΠšΠΎΡ€ΠΌΡƒΡˆΠΊΠ° (Биняя ΡΡ‚Π°Π»ΡŒ)", + "tfcgroomer.grooming_station.range": "Радиус: %s", + "gui.tfcgroomer.enable_breeding": "Π Π°Π·Ρ€Π΅ΡˆΠΈΡ‚ΡŒ Ρ€Π°Π·ΠΌΠ½ΠΎΠΆΠ΅Π½ΠΈΠ΅", + "tfcgroomer.tooltip.toggleBreeding": "Π Π°Π·ΠΌΠ½ΠΎΠΆΠ΅Π½ΠΈΠ΅", + "tfcgroomer.tooltip.breedDisabled": "Π Π°Π·ΠΌΠ½ΠΎΠΆΠ΅Π½ΠΈΠ΅ Π·Π°ΠΏΡ€Π΅Ρ‰Π΅Π½ΠΎ", + "tfcgroomer.tooltip.breedEnabled": "Π Π°Π·ΠΌΠ½ΠΎΠΆΠ΅Π½ΠΈΠ΅ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½ΠΎ", + "config.jade.plugin_tfcgroomer.grooming_station": "Grooming Station" } \ No newline at end of file diff --git a/kubejs/assets/tfclunchbox/lang/ja_jp.json b/kubejs/assets/tfclunchbox/lang/ja_jp.json new file mode 100644 index 000000000..7eaf303f1 --- /dev/null +++ b/kubejs/assets/tfclunchbox/lang/ja_jp.json @@ -0,0 +1,32 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "item.tfclunchbox.cooling_lunchbox": "δΏε†·γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", + "item.tfclunchbox.lunchbox": "γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", + "item.tfclunchbox.electric_lunchbox": "ι›»ε‹•γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", + "gui.tfclunchbox.cooling_lunchbox": "δΏε†·γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", + "gui.tfclunchbox.lunchbox": "γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", + "gui.tfclunchbox.electric_lunchbox": "ι›»ε‹•γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", + "container.tfclunchbox.cooling_lunchbox": "δΏε†·γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", + "container.tfclunchbox.lunchbox": "γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", + "container.tfclunchbox.electric_lunchbox": "ι›»ε‹•γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", + "item.tfclunchbox.cooling_lunchbox.main": "δΈ­θΊ«γ‚’ζ–°ιγ«δΏγ£γ¦γγ‚Œγ‚‹γ€ε†’ι™ΊγγŠδΎ›", + "item.tfclunchbox.electric_lunchbox.main": "ι›»ζ°—γεŠ›γ§ι£Ÿε“γ‚’ε†·θ”΅δΏε­˜γ™γ‚‹ζœ€ε…ˆη«―γεΌε½“η±", + "tooltip.tfclunchbox.cooling_lunchbox.hold_shift": "Β§eShiftΒ§7で詳細を葨瀺", + "tooltip.tfclunchbox.cooling_lunchbox.shift_info": "Ctrl+γƒžγ‚¦γ‚Ήγ‚Ήγ‚―γƒ­γƒΌγƒ«γ§δΈ­θΊ«γ‚’ιΈζŠž", + "item.tfclunchbox.simple_lunchbox.main": "シンプルγͺγŠεΌε½“η±", + "tooltip.tfclunchbox.simple_lunchbox.hold_shift": "Β§eShiftΒ§7で詳細を葨瀺", + "tooltip.tfclunchbox.simple_lunchbox.shift_info": "Ctrl+γƒžγ‚¦γ‚Ήγ‚Ήγ‚―γƒ­γƒΌγƒ«γ§δΈ­θΊ«γ‚’ιΈζŠž", + "tooltip.tfclunchbox.lunchbox.shift": "Β§eShiftΒ§7で詳細を葨瀺", + "tooltip.tfclunchbox.lunchbox.contents": "中身:", + "tooltip.tfclunchbox.ice_slots_help": "δΏε†·ζγ‚Ήγƒ­γƒƒγƒˆ", + "tooltip.tfclunchbox.ice_slots_help.line1": "Β§7δ½Ώη”¨ε―θƒ½οΌš", + "tooltip.tfclunchbox.ice_slots_help.line2": "Β§bβ€’ζ°·γƒ–γƒ­γƒƒγ‚―ι‘ž", + "tooltip.tfclunchbox.ice_slots_help.line3": "Β§b‒ドラむをむス", + "tooltip.tfclunchbox.ice_slots_help.line4": "Β§bβ€’ζ°·ζ³₯ε…₯γ‚Šγ‚»γƒ«", + "tooltip.tfclunchbox.ice_slots_help.line5": "Β§7ε…₯γ‚Œγ‚‹γ¨γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ήε†…γι£Ÿζ–™γ‚’δΏε†·γ—γ¦γγ‚ŒγΎγ™", + "tooltip.tfclunchbox.battery_slot_help": "バッテγƒͺγƒΌγ‚Ήγƒ­γƒƒγƒˆ", + "tooltip.tfclunchbox.battery_slot_help.line1": "Β§7δ½Ώη”¨ε―θƒ½οΌš", + "tooltip.tfclunchbox.battery_slot_help.line2": "Β§eβ€’Gregtechγγƒγƒƒγƒ†γƒͺγƒΌ", + "tooltip.tfclunchbox.battery_slot_help.line3": "Β§7バッテγƒͺーは放電し、", + "tooltip.tfclunchbox.battery_slot_help.line4": "Β§7内部γι›»ζΊγ‚’充電する" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/active_power_transformer.json b/kubejs/assets/tfg/blockstates/active_power_transformer.json new file mode 100644 index 000000000..9a0e2d7bb --- /dev/null +++ b/kubejs/assets/tfg/blockstates/active_power_transformer.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "tfg:block/machines/active_power_transformer", + "y": 90 + }, + "facing=north": { + "model": "tfg:block/machines/active_power_transformer" + }, + "facing=south": { + "model": "tfg:block/machines/active_power_transformer", + "y": 180 + }, + "facing=west": { + "model": "tfg:block/machines/active_power_transformer", + "y": 270 + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/lava_source.json b/kubejs/assets/tfg/blockstates/lava_source.json new file mode 100644 index 000000000..53b3726e0 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/lava_source.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "tfg:block/lava_source" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/machine_casing_power_casing.json b/kubejs/assets/tfg/blockstates/machine_casing_power_casing.json new file mode 100644 index 000000000..4d1dfb56f --- /dev/null +++ b/kubejs/assets/tfg/blockstates/machine_casing_power_casing.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "tfg:block/casings/machine_casing_power_casing" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/ostrum_linear_accelerator.json b/kubejs/assets/tfg/blockstates/ostrum_linear_accelerator.json new file mode 100644 index 000000000..5c213dc91 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/ostrum_linear_accelerator.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "tfg:block/machines/ostrum_linear_accelerator", + "y": 90 + }, + "facing=north": { + "model": "tfg:block/machines/ostrum_linear_accelerator" + }, + "facing=south": { + "model": "tfg:block/machines/ostrum_linear_accelerator", + "y": 180 + }, + "facing=west": { + "model": "tfg:block/machines/ostrum_linear_accelerator", + "y": 270 + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/pile/volcanic_ash.json b/kubejs/assets/tfg/blockstates/pile/volcanic_ash.json new file mode 100644 index 000000000..e692796c4 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/pile/volcanic_ash.json @@ -0,0 +1,28 @@ +{ + "variants": { + "layers=1": { + "model": "tfg:block/pile/volcanic_ash/ash_height2" + }, + "layers=2": { + "model": "tfg:block/pile/volcanic_ash/ash_height4" + }, + "layers=3": { + "model": "tfg:block/pile/volcanic_ash/ash_height6" + }, + "layers=4": { + "model": "tfg:block/pile/volcanic_ash/ash_height8" + }, + "layers=5": { + "model": "tfg:block/pile/volcanic_ash/ash_height10" + }, + "layers=6": { + "model": "tfg:block/pile/volcanic_ash/ash_height12" + }, + "layers=7": { + "model": "tfg:block/pile/volcanic_ash/ash_height14" + }, + "layers=8": { + "model": "tfg:block/pile/volcanic_ash/ash_block" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/cobble_blackstone.json b/kubejs/assets/tfg/blockstates/rock/cobble_blackstone.json index 9322f89aa..9b2384d8b 100644 --- a/kubejs/assets/tfg/blockstates/rock/cobble_blackstone.json +++ b/kubejs/assets/tfg/blockstates/rock/cobble_blackstone.json @@ -1,7 +1,10 @@ { "variants": { - "": { - "model": "tfg:block/rock/cobble_blackstone" - } + "": [ + { "model": "tfg:block/rock/cobble_blackstone" }, + { "model": "tfg:block/rock/cobble_blackstone", "y": 90 }, + { "model": "tfg:block/rock/cobble_blackstone", "y": 180 }, + { "model": "tfg:block/rock/cobble_blackstone", "y": 270 } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/cobble_crackrack.json b/kubejs/assets/tfg/blockstates/rock/cobble_crackrack.json index a8af00981..2128313bc 100644 --- a/kubejs/assets/tfg/blockstates/rock/cobble_crackrack.json +++ b/kubejs/assets/tfg/blockstates/rock/cobble_crackrack.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/cobble_crackrack" - } + "": [ + { + "model": "tfg:block/rock/cobble_crackrack" + }, + { + "model": "tfg:block/rock/cobble_crackrack", + "y": 90 + }, + { + "model": "tfg:block/rock/cobble_crackrack", + "y": 180 + }, + { + "model": "tfg:block/rock/cobble_crackrack", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/cobble_dripstone.json b/kubejs/assets/tfg/blockstates/rock/cobble_dripstone.json index 7e4bb7c74..a50d1280f 100644 --- a/kubejs/assets/tfg/blockstates/rock/cobble_dripstone.json +++ b/kubejs/assets/tfg/blockstates/rock/cobble_dripstone.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/cobble_dripstone" - } + "": [ + { + "model": "tfg:block/rock/cobble_dripstone" + }, + { + "model": "tfg:block/rock/cobble_dripstone", + "y": 90 + }, + { + "model": "tfg:block/rock/cobble_dripstone", + "y": 180 + }, + { + "model": "tfg:block/rock/cobble_dripstone", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/cobble_moon_deepslate.json b/kubejs/assets/tfg/blockstates/rock/cobble_moon_deepslate.json index 4f72b9333..1ea0f8879 100644 --- a/kubejs/assets/tfg/blockstates/rock/cobble_moon_deepslate.json +++ b/kubejs/assets/tfg/blockstates/rock/cobble_moon_deepslate.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/cobble_moon_deepslate" - } + "": [ + { + "model": "tfg:block/rock/cobble_moon_deepslate" + }, + { + "model": "tfg:block/rock/cobble_moon_deepslate", + "y": 90 + }, + { + "model": "tfg:block/rock/cobble_moon_deepslate", + "y": 180 + }, + { + "model": "tfg:block/rock/cobble_moon_deepslate", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/cobble_permafrost.json b/kubejs/assets/tfg/blockstates/rock/cobble_permafrost.json index 56363869d..2b555c09d 100644 --- a/kubejs/assets/tfg/blockstates/rock/cobble_permafrost.json +++ b/kubejs/assets/tfg/blockstates/rock/cobble_permafrost.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/cobble_permafrost" - } + "": [ + { + "model": "tfg:block/rock/cobble_permafrost" + }, + { + "model": "tfg:block/rock/cobble_permafrost", + "y": 90 + }, + { + "model": "tfg:block/rock/cobble_permafrost", + "y": 180 + }, + { + "model": "tfg:block/rock/cobble_permafrost", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_blackstone.json b/kubejs/assets/tfg/blockstates/rock/gravel_blackstone.json index e769228fe..11a7e5568 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_blackstone.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_blackstone.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_blackstone" - } + "": [ + { + "model": "tfg:block/rock/gravel_blackstone" + }, + { + "model": "tfg:block/rock/gravel_blackstone", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_blackstone", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_blackstone", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_crackrack.json b/kubejs/assets/tfg/blockstates/rock/gravel_crackrack.json index c10b6e510..bfcb58199 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_crackrack.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_crackrack.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_crackrack" - } + "": [ + { + "model": "tfg:block/rock/gravel_crackrack" + }, + { + "model": "tfg:block/rock/gravel_crackrack", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_crackrack", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_crackrack", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_deepslate.json b/kubejs/assets/tfg/blockstates/rock/gravel_deepslate.json index 640736aee..d4e19d02d 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_deepslate.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_deepslate.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_deepslate" - } + "": [ + { + "model": "tfg:block/rock/gravel_deepslate" + }, + { + "model": "tfg:block/rock/gravel_deepslate", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_deepslate", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_deepslate", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_dripstone.json b/kubejs/assets/tfg/blockstates/rock/gravel_dripstone.json index 7a2db502e..7ad196329 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_dripstone.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_dripstone.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_dripstone" - } + "": [ + { + "model": "tfg:block/rock/gravel_dripstone" + }, + { + "model": "tfg:block/rock/gravel_dripstone", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_dripstone", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_dripstone", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_glacio.json b/kubejs/assets/tfg/blockstates/rock/gravel_glacio.json index e167ee620..3ab37165c 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_glacio.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_glacio.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_glacio" - } + "": [ + { + "model": "tfg:block/rock/gravel_glacio" + }, + { + "model": "tfg:block/rock/gravel_glacio", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_glacio", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_glacio", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_mars.json b/kubejs/assets/tfg/blockstates/rock/gravel_mars.json index 1185ce5ae..6f59bc48c 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_mars.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_mars.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_mars" - } + "": [ + { + "model": "tfg:block/rock/gravel_mars" + }, + { + "model": "tfg:block/rock/gravel_mars", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_mars", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_mars", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_mercury.json b/kubejs/assets/tfg/blockstates/rock/gravel_mercury.json index 8c62c0b65..b5fa5b871 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_mercury.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_mercury.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_mercury" - } + "": [ + { + "model": "tfg:block/rock/gravel_mercury" + }, + { + "model": "tfg:block/rock/gravel_mercury", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_mercury", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_mercury", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_moon.json b/kubejs/assets/tfg/blockstates/rock/gravel_moon.json index 9a5fa93f9..e321fda8d 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_moon.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_moon.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_moon" - } + "": [ + { + "model": "tfg:block/rock/gravel_moon" + }, + { + "model": "tfg:block/rock/gravel_moon", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_moon", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_moon", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_moon_deepslate.json b/kubejs/assets/tfg/blockstates/rock/gravel_moon_deepslate.json index 004ac267c..684c5dc26 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_moon_deepslate.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_moon_deepslate.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_moon_deepslate" - } + "": [ + { + "model": "tfg:block/rock/gravel_moon_deepslate" + }, + { + "model": "tfg:block/rock/gravel_moon_deepslate", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_moon_deepslate", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_moon_deepslate", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_permafrost.json b/kubejs/assets/tfg/blockstates/rock/gravel_permafrost.json index f8718974d..7c4c4ccf2 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_permafrost.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_permafrost.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_permafrost" - } + "": [ + { + "model": "tfg:block/rock/gravel_permafrost" + }, + { + "model": "tfg:block/rock/gravel_permafrost", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_permafrost", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_permafrost", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_red_granite.json b/kubejs/assets/tfg/blockstates/rock/gravel_red_granite.json index 4d87c4591..5f7507c0d 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_red_granite.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_red_granite.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_red_granite" - } + "": [ + { + "model": "tfg:block/rock/gravel_red_granite" + }, + { + "model": "tfg:block/rock/gravel_red_granite", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_red_granite", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_red_granite", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/gravel_venus.json b/kubejs/assets/tfg/blockstates/rock/gravel_venus.json index 6b76d8654..fbee5aaa5 100644 --- a/kubejs/assets/tfg/blockstates/rock/gravel_venus.json +++ b/kubejs/assets/tfg/blockstates/rock/gravel_venus.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/gravel_venus" - } + "": [ + { + "model": "tfg:block/rock/gravel_venus" + }, + { + "model": "tfg:block/rock/gravel_venus", + "y": 90 + }, + { + "model": "tfg:block/rock/gravel_venus", + "y": 180 + }, + { + "model": "tfg:block/rock/gravel_venus", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/halite.json b/kubejs/assets/tfg/blockstates/rock/halite.json new file mode 100644 index 000000000..5cda97198 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/rock/halite.json @@ -0,0 +1,40 @@ +{ + "variants": { + "": [ + { + "model": "tfg:block/rock/halite", + "weight": 6 + }, + { + "model": "tfg:block/rock/halite", + "weight": 6, + "y": 90 + }, + { + "model": "tfg:block/rock/halite", + "weight": 6, + "y": 180 + }, + { + "model": "tfg:block/rock/halite", + "weight": 6, + "y": 270 + }, + { + "model": "tfg:block/rock/halite2" + }, + { + "model": "tfg:block/rock/halite2", + "y": 90 + }, + { + "model": "tfg:block/rock/halite2", + "y": 180 + }, + { + "model": "tfg:block/rock/halite2", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_blackstone.json b/kubejs/assets/tfg/blockstates/rock/hardened_blackstone.json index 0153cfc28..ec66ea081 100644 --- a/kubejs/assets/tfg/blockstates/rock/hardened_blackstone.json +++ b/kubejs/assets/tfg/blockstates/rock/hardened_blackstone.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/hardened_blackstone" - } + "": [ + { + "model": "tfg:block/rock/hardened_blackstone" + }, + { + "model": "tfg:block/rock/hardened_blackstone", + "y": 90 + }, + { + "model": "tfg:block/rock/hardened_blackstone", + "y": 180 + }, + { + "model": "tfg:block/rock/hardened_blackstone", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_deepslate.json b/kubejs/assets/tfg/blockstates/rock/hardened_deepslate.json index 779a6b7dc..8bafc6278 100644 --- a/kubejs/assets/tfg/blockstates/rock/hardened_deepslate.json +++ b/kubejs/assets/tfg/blockstates/rock/hardened_deepslate.json @@ -1,7 +1,13 @@ { "variants": { - "": { - "model": "tfg:block/rock/hardened_deepslate" - } + "": [ + { + "model": "tfg:block/rock/hardened_deepslate" + }, + { + "model": "tfg:block/rock/hardened_deepslate", + "y": 180 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_dripstone.json b/kubejs/assets/tfg/blockstates/rock/hardened_dripstone.json index 385621096..09a4b5395 100644 --- a/kubejs/assets/tfg/blockstates/rock/hardened_dripstone.json +++ b/kubejs/assets/tfg/blockstates/rock/hardened_dripstone.json @@ -1,7 +1,13 @@ { "variants": { - "": { - "model": "tfg:block/rock/hardened_dripstone" - } + "": [ + { + "model": "tfg:block/rock/hardened_dripstone" + }, + { + "model": "tfg:block/rock/hardened_dripstone", + "y": 180 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_glacio_stone.json b/kubejs/assets/tfg/blockstates/rock/hardened_glacio_stone.json index 299b79753..c63dce8fc 100644 --- a/kubejs/assets/tfg/blockstates/rock/hardened_glacio_stone.json +++ b/kubejs/assets/tfg/blockstates/rock/hardened_glacio_stone.json @@ -1,7 +1,9 @@ { "variants": { - "": { - "model": "tfg:block/rock/hardened_glacio_stone" - } + "": [ + { + "model": "tfg:block/rock/hardened_glacio_stone" + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_mars_stone.json b/kubejs/assets/tfg/blockstates/rock/hardened_mars_stone.json index 195ba8628..2bbc0d6bb 100644 --- a/kubejs/assets/tfg/blockstates/rock/hardened_mars_stone.json +++ b/kubejs/assets/tfg/blockstates/rock/hardened_mars_stone.json @@ -1,7 +1,9 @@ { "variants": { - "": { - "model": "tfg:block/rock/hardened_mars_stone" - } + "": [ + { + "model": "tfg:block/rock/hardened_mars_stone" + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_mercury_stone.json b/kubejs/assets/tfg/blockstates/rock/hardened_mercury_stone.json index 7e73a534b..f1c60d3a8 100644 --- a/kubejs/assets/tfg/blockstates/rock/hardened_mercury_stone.json +++ b/kubejs/assets/tfg/blockstates/rock/hardened_mercury_stone.json @@ -1,7 +1,9 @@ { "variants": { - "": { - "model": "tfg:block/rock/hardened_mercury_stone" - } + "": [ + { + "model": "tfg:block/rock/hardened_mercury_stone" + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_moon_deepslate.json b/kubejs/assets/tfg/blockstates/rock/hardened_moon_deepslate.json index 7a7e2cfb0..b144fa91d 100644 --- a/kubejs/assets/tfg/blockstates/rock/hardened_moon_deepslate.json +++ b/kubejs/assets/tfg/blockstates/rock/hardened_moon_deepslate.json @@ -1,7 +1,9 @@ { "variants": { - "": { - "model": "tfg:block/rock/hardened_moon_deepslate" - } + "": [ + { + "model": "tfg:block/rock/hardened_moon_deepslate" + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_moon_stone.json b/kubejs/assets/tfg/blockstates/rock/hardened_moon_stone.json index b553dca3e..a715df8aa 100644 --- a/kubejs/assets/tfg/blockstates/rock/hardened_moon_stone.json +++ b/kubejs/assets/tfg/blockstates/rock/hardened_moon_stone.json @@ -1,7 +1,9 @@ { "variants": { - "": { - "model": "tfg:block/rock/hardened_moon_stone" - } + "": [ + { + "model": "tfg:block/rock/hardened_moon_stone" + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json b/kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json index ae062d2ae..cf33b0390 100644 --- a/kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json +++ b/kubejs/assets/tfg/blockstates/rock/hardened_red_granite.json @@ -1,7 +1,21 @@ { "variants": { - "": { - "model": "tfg:block/rock/hardened_red_granite" - } + "": [ + { + "model": "tfg:block/rock/hardened_red_granite" + }, + { + "model": "tfg:block/rock/hardened_red_granite", + "y": 90 + }, + { + "model": "tfg:block/rock/hardened_red_granite", + "y": 180 + }, + { + "model": "tfg:block/rock/hardened_red_granite", + "y": 270 + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/rock/hardened_venus_stone.json b/kubejs/assets/tfg/blockstates/rock/hardened_venus_stone.json index 9c3b52771..48a48bd71 100644 --- a/kubejs/assets/tfg/blockstates/rock/hardened_venus_stone.json +++ b/kubejs/assets/tfg/blockstates/rock/hardened_venus_stone.json @@ -1,7 +1,9 @@ { "variants": { - "": { - "model": "tfg:block/rock/hardened_venus_stone" - } + "": [ + { + "model": "tfg:block/rock/hardened_venus_stone" + } + ] } } \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/smoker_source.json b/kubejs/assets/tfg/blockstates/smoker_source.json new file mode 100644 index 000000000..1de3f05c2 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/smoker_source.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "tfg:block/smoker_source" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/smr_generator.json b/kubejs/assets/tfg/blockstates/smr_generator.json new file mode 100644 index 000000000..75bf94810 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/smr_generator.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "tfg:block/machines/smr_generator", + "y": 90 + }, + "facing=north": { + "model": "tfg:block/machines/smr_generator" + }, + "facing=south": { + "model": "tfg:block/machines/smr_generator", + "y": 180 + }, + "facing=west": { + "model": "tfg:block/machines/smr_generator", + "y": 270 + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/steam_bloomery.json b/kubejs/assets/tfg/blockstates/steam_bloomery.json new file mode 100644 index 000000000..c83f32133 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/steam_bloomery.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "tfg:block/machines/steam_bloomery", + "y": 90 + }, + "facing=north": { + "model": "tfg:block/machines/steam_bloomery" + }, + "facing=south": { + "model": "tfg:block/machines/steam_bloomery", + "y": 180 + }, + "facing=west": { + "model": "tfg:block/machines/steam_bloomery", + "y": 270 + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/steam_fuser.json b/kubejs/assets/tfg/blockstates/steam_fuser.json new file mode 100644 index 000000000..eff6ab041 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/steam_fuser.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "tfg:block/machines/steam_fuser", + "y": 90 + }, + "facing=north": { + "model": "tfg:block/machines/steam_fuser" + }, + "facing=south": { + "model": "tfg:block/machines/steam_fuser", + "y": 180 + }, + "facing=west": { + "model": "tfg:block/machines/steam_fuser", + "y": 270 + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/steam_presser.json b/kubejs/assets/tfg/blockstates/steam_presser.json new file mode 100644 index 000000000..30bb0ccd3 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/steam_presser.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "tfg:block/machines/steam_presser", + "y": 90 + }, + "facing=north": { + "model": "tfg:block/machines/steam_presser" + }, + "facing=south": { + "model": "tfg:block/machines/steam_presser", + "y": 180 + }, + "facing=west": { + "model": "tfg:block/machines/steam_presser", + "y": 270 + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/steam_squasher.json b/kubejs/assets/tfg/blockstates/steam_squasher.json new file mode 100644 index 000000000..f1a4f1e21 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/steam_squasher.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "tfg:block/machines/steam_squasher", + "y": 90 + }, + "facing=north": { + "model": "tfg:block/machines/steam_squasher" + }, + "facing=south": { + "model": "tfg:block/machines/steam_squasher", + "y": 180 + }, + "facing=west": { + "model": "tfg:block/machines/steam_squasher", + "y": 270 + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/steam_thermal_centrifuge.json b/kubejs/assets/tfg/blockstates/steam_thermal_centrifuge.json new file mode 100644 index 000000000..573435d86 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/steam_thermal_centrifuge.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "tfg:block/machines/steam_thermal_centrifuge", + "y": 90 + }, + "facing=north": { + "model": "tfg:block/machines/steam_thermal_centrifuge" + }, + "facing=south": { + "model": "tfg:block/machines/steam_thermal_centrifuge", + "y": 180 + }, + "facing=west": { + "model": "tfg:block/machines/steam_thermal_centrifuge", + "y": 270 + } + } +} \ 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 0948cbdf0..81e83566a 100644 --- a/kubejs/assets/tfg/lang/en_us.json +++ b/kubejs/assets/tfg/lang/en_us.json @@ -35,6 +35,15 @@ "biome.tfg.mars/sangnum_edge": "Sangnum Edge", "biome.tfg.mars/sangnum_plains": "Sangnum Prairie", "biome.tfg.mars/sangnum_hills": "Sangnum Moorland", + "biome.tfg.venus/arachnoids": "Venusian Arachnoids", + "biome.tfg.venus/fractured_pools": "Fractured Pools", + "biome.tfg.venus/fumaroles": "Gaseous Fumaroles", + "biome.tfg.venus/geysers": "Scalding Geysers", + "biome.tfg.venus/jagged_tablelands": "Jagged Tablelands", + "biome.tfg.venus/salt_flats": "Salt Flats", + "biome.tfg.venus/stromatolite_beach": "Stromatolite Beach", + "biome.tfg.venus/sulfuric_ravine": "Sulfuric Ravine", + "biome.tfg.venus/scorching_volcanoes": "Scorching Volcanoes", "block.tfg.piglin_disguise": "Piglin Disguise", "block.tfg.piglin_disguise_block": "Piglin Disguise", "block.tfg.dry_ice": "Dry Ice", @@ -242,20 +251,24 @@ "block.tfg.rock.aqueduct_nether": "Keratophyre Aqueduct", "block.tfg.rock.hardened_moon_stone": "Hardened Anorthosite", "block.tfg.rock.moon_stone_wall": "Raw Anorthosite Wall", - "block.tfg.rock.cobble_moon_stone_wall": "Anorthosite Cobble Wall", + "block.tfg.rock.cobble_moon_wall": "Anorthosite Cobble Wall", "block.tfg.rock.mossy_cobble_moon": "Anorthosite Mossy Cobble", "block.tfg.rock.mossy_cobble_moon_stairs": "Anorthosite Mossy Cobble Stairs", "block.tfg.rock.mossy_cobble_moon_slab": "Anorthosite Mossy Cobble Slab", "block.tfg.rock.mossy_cobble_moon_wall": "Anorthosite Mossy Cobble Wall", - "block.tfg.rock.mossy_bricks_moon_stone": "Mossy Anorthosite Bricks", - "block.tfg.rock.mossy_bricks_moon_stone_stairs": "Mossy Anorthosite Brick Stairs", - "block.tfg.rock.mossy_bricks_moon_stone_slab": "Mossy Anorthosite Brick Slab", - "block.tfg.rock.mossy_bricks_moon_stone_wall": "Mossy Anorthosite Brick Wall", + "block.tfg.rock.mossy_bricks_moon": "Mossy Anorthosite Bricks", + "block.tfg.rock.mossy_bricks_moon_stairs": "Mossy Anorthosite Brick Stairs", + "block.tfg.rock.mossy_bricks_moon_slab": "Mossy Anorthosite Brick Slab", + "block.tfg.rock.mossy_bricks_moon_wall": "Mossy Anorthosite Brick Wall", "block.tfg.rock.chiseled_bricks_moon_wall": "Chiseled Anorthosite Wall", "block.tfg.rock.gravel_moon": "Anorthosite Gravel", "block.tfg.spike.moon_stone_spike": "Anorthosite Spike", "block.tfg.loose.moon_stone": "Loose Anorthosite Rock", "block.tfg.rock.aqueduct_moon_stone": "Anorthosite Aqueduct", + "block.tfg.rock.polished_moon_wall": "Polished Anorthosite Wall", + "block.tfg.rock.cracked_bricks_moon_stairs": "Cracked Anorthosite Brick Stairs", + "block.tfg.rock.cracked_bricks_moon_slab": "Cracked Anorthosite Brick Slab", + "block.tfg.rock.cracked_bricks_moon_wall": "Cracked Anorthosite Brick Wall", "block.tfg.rock.hardened_moon_deepslate": "Hardened Norite", "block.tfg.rock.moon_deepslate_stairs": "Raw Norite Stairs", "block.tfg.rock.moon_deepslate_slab": "Raw Norite Slab", @@ -289,19 +302,25 @@ "block.tfg.spike.moon_deepslate_spike": "Norite Spike", "block.tfg.loose.moon_deepslate": "Loose Norite Rock", "block.tfg.rock.aqueduct_moon_deepslate": "Norite Aqueduct", + "block.tfg.rock.mossy_bricks_moon_deepslate": "Mossy Norite Bricks", + "block.tfg.rock.mossy_bricks_moon_deepslate_stairs": "Mossy Norite Brick Stairs", + "block.tfg.rock.mossy_bricks_moon_deepslate_slab": "Mossy Norite Brick Slab", + "block.tfg.rock.mossy_bricks_moon_deepslate_wall": "Mossy Norite Brick Wall", "block.tfg.rock.hardened_mars_stone": "Hardened Argillite", "block.tfg.rock.mars_stone_wall": "Raw Argillite Wall", - "block.tfg.rock.cobble_mars_stone_wall": "Argillite Cobble Wall", + "block.tfg.rock.cobble_mars_wall": "Argillite Cobble Wall", "block.tfg.rock.mossy_cobble_mars": "Argillite Mossy Cobble", "block.tfg.rock.mossy_cobble_mars_stairs": "Argillite Mossy Cobble Stairs", "block.tfg.rock.mossy_cobble_mars_slab": "Argillite Mossy Cobble Slab", "block.tfg.rock.mossy_cobble_mars_wall": "Argillite Mossy Cobble Wall", "block.tfg.rock.polished_mars_wall": "Polished Argillite Wall", - "block.tfg.rock.mossy_bricks_mars_stone": "Mossy Argillite Bricks", - "block.tfg.rock.mossy_bricks_mars_stone_stairs": "Mossy Argillite Brick Stairs", - "block.tfg.rock.mossy_bricks_mars_stone_slab": "Mossy Argillite Brick Slab", - "block.tfg.rock.mossy_bricks_mars_stone_wall": "Mossy Argillite Brick Wall", - "block.tfg.rock.cracked_bricks_mars_stone_wall": "Cracked Argillite Brick Wall", + "block.tfg.rock.mossy_bricks_mars": "Mossy Argillite Bricks", + "block.tfg.rock.mossy_bricks_mars_stairs": "Mossy Argillite Brick Stairs", + "block.tfg.rock.mossy_bricks_mars_slab": "Mossy Argillite Brick Slab", + "block.tfg.rock.mossy_bricks_mars_wall": "Mossy Argillite Brick Wall", + "block.tfg.rock.cracked_bricks_mars_stairs": "Cracked Argillite Brick Stairs", + "block.tfg.rock.cracked_bricks_mars_slab": "Cracked Argillite Brick Slab", + "block.tfg.rock.cracked_bricks_mars_wall": "Cracked Argillite Brick Wall", "block.tfg.rock.chiseled_bricks_mars_wall": "Chiseled Argillite Wall", "block.tfg.rock.gravel_mars": "Argillite Gravel", "block.tfg.spike.mars_stone_spike": "Argillite Spike", @@ -309,17 +328,19 @@ "block.tfg.rock.aqueduct_mars_stone": "Argillite Aqueduct", "block.tfg.rock.hardened_venus_stone": "Hardened Trachyte", "block.tfg.rock.venus_stone_wall": "Raw Trachyte Wall", - "block.tfg.rock.cobble_venus_stone_wall": "Trachyte Cobble Wall", + "block.tfg.rock.cobble_venus_wall": "Trachyte Cobble Wall", "block.tfg.rock.mossy_cobble_venus": "Trachyte Mossy Cobble", "block.tfg.rock.mossy_cobble_venus_stairs": "Trachyte Mossy Cobble Stairs", "block.tfg.rock.mossy_cobble_venus_slab": "Trachyte Mossy Cobble Slab", "block.tfg.rock.mossy_cobble_venus_wall": "Trachyte Mossy Cobble Wall", "block.tfg.rock.polished_venus_wall": "Polished Trachyte Wall", - "block.tfg.rock.mossy_bricks_venus_stone": "Mossy Trachyte Bricks", - "block.tfg.rock.mossy_bricks_venus_stone_stairs": "Mossy Trachyte Brick Stairs", - "block.tfg.rock.mossy_bricks_venus_stone_slab": "Mossy Trachyte Brick Slab", - "block.tfg.rock.mossy_bricks_venus_stone_wall": "Mossy Trachyte Brick Wall", - "block.tfg.rock.cracked_bricks_venus_stone_wall": "Cracked Trachyte Brick Wall", + "block.tfg.rock.mossy_bricks_venus": "Mossy Trachyte Bricks", + "block.tfg.rock.mossy_bricks_venus_stairs": "Mossy Trachyte Brick Stairs", + "block.tfg.rock.mossy_bricks_venus_slab": "Mossy Trachyte Brick Slab", + "block.tfg.rock.mossy_bricks_venus_wall": "Mossy Trachyte Brick Wall", + "block.tfg.rock.cracked_bricks_venus_stairs": "Cracked Trachyte Brick Stairs", + "block.tfg.rock.cracked_bricks_venus_slab": "Cracked Trachyte Brick Slab", + "block.tfg.rock.cracked_bricks_venus_wall": "Cracked Trachyte Brick Wall", "block.tfg.rock.chiseled_bricks_venus_wall": "Chiseled Trachyte Wall", "block.tfg.rock.gravel_venus": "Trachyte Gravel", "block.tfg.spike.venus_stone_spike": "Trachyte Spike", @@ -327,17 +348,19 @@ "block.tfg.rock.aqueduct_venus_stone": "Trachyte Aqueduct", "block.tfg.rock.hardened_mercury_stone": "Hardened Komatiite", "block.tfg.rock.mercury_stone_wall": "Raw Komatiite Wall", - "block.tfg.rock.cobble_mercury_stone_wall": "Komatiite Cobble Wall", + "block.tfg.rock.cobble_mercury_wall": "Komatiite Cobble Wall", "block.tfg.rock.mossy_cobble_mercury": "Komatiite Mossy Cobble", "block.tfg.rock.mossy_cobble_mercury_stairs": "Komatiite Mossy Cobble Stairs", "block.tfg.rock.mossy_cobble_mercury_slab": "Komatiite Mossy Cobble Slab", "block.tfg.rock.mossy_cobble_mercury_wall": "Komatiite Mossy Cobble Wall", "block.tfg.rock.polished_mercury_wall": "Polished Komatiite Wall", - "block.tfg.rock.mossy_bricks_mercury_stone": "Mossy Komatiite Bricks", - "block.tfg.rock.mossy_bricks_mercury_stone_stairs": "Mossy Komatiite Brick Stairs", - "block.tfg.rock.mossy_bricks_mercury_stone_slab": "Mossy Komatiite Brick Slab", - "block.tfg.rock.mossy_bricks_mercury_stone_wall": "Mossy Komatiite Brick Wall", - "block.tfg.rock.cracked_bricks_mercury_stone_wall": "Cracked Komatiite Brick Wall", + "block.tfg.rock.mossy_bricks_mercury": "Mossy Komatiite Bricks", + "block.tfg.rock.mossy_bricks_mercury_stairs": "Mossy Komatiite Brick Stairs", + "block.tfg.rock.mossy_bricks_mercury_slab": "Mossy Komatiite Brick Slab", + "block.tfg.rock.mossy_bricks_mercury_wall": "Mossy Komatiite Brick Wall", + "block.tfg.rock.cracked_bricks_mercury_stairs": "Cracked Komatiite Brick Stairs", + "block.tfg.rock.cracked_bricks_mercury_slab": "Cracked Komatiite Brick Slab", + "block.tfg.rock.cracked_bricks_mercury_wall": "Cracked Komatiite Brick Wall", "block.tfg.rock.chiseled_bricks_mercury_wall": "Chiseled Komatiite Wall", "block.tfg.rock.gravel_mercury": "Komatiite Gravel", "block.tfg.spike.mercury_stone_spike": "Komatiite Spike", @@ -345,17 +368,19 @@ "block.tfg.rock.aqueduct_mercury_stone": "Komatiite Aqueduct", "block.tfg.rock.hardened_glacio_stone": "Hardened Phonolite", "block.tfg.rock.glacio_stone_wall": "Raw Phonolite Wall", - "block.tfg.rock.cobble_glacio_stone_wall": "Phonolite Cobble Wall", + "block.tfg.rock.cobble_glacio_wall": "Phonolite Cobble Wall", "block.tfg.rock.mossy_cobble_glacio": "Phonolite Mossy Cobble", "block.tfg.rock.mossy_cobble_glacio_stairs": "Phonolite Mossy Cobble Stairs", "block.tfg.rock.mossy_cobble_glacio_slab": "Phonolite Mossy Cobble Slab", "block.tfg.rock.mossy_cobble_glacio_wall": "Phonolite Mossy Cobble Wall", "block.tfg.rock.polished_glacio_wall": "Polished Phonolite Wall", - "block.tfg.rock.mossy_bricks_glacio_stone": "Mossy Phonolite Bricks", - "block.tfg.rock.mossy_bricks_glacio_stone_stairs": "Mossy Phonolite Brick Stairs", - "block.tfg.rock.mossy_bricks_glacio_stone_slab": "Mossy Phonolite Brick Slab", - "block.tfg.rock.mossy_bricks_glacio_stone_wall": "Mossy Phonolite Brick Wall", - "block.tfg.rock.cracked_bricks_glacio_stone_wall": "Cracked Phonolite Brick Wall", + "block.tfg.rock.mossy_bricks_glacio": "Mossy Phonolite Bricks", + "block.tfg.rock.mossy_bricks_glacio_stairs": "Mossy Phonolite Brick Stairs", + "block.tfg.rock.mossy_bricks_glacio_slab": "Mossy Phonolite Brick Slab", + "block.tfg.rock.mossy_bricks_glacio_wall": "Mossy Phonolite Brick Wall", + "block.tfg.rock.cracked_bricks_glacio_stairs": "Cracked Phonolite Brick Stairs", + "block.tfg.rock.cracked_bricks_glacio_slab": "Cracked Phonolite Brick Slab", + "block.tfg.rock.cracked_bricks_glacio_wall": "Cracked Phonolite Brick Wall", "block.tfg.rock.chiseled_bricks_glacio_wall": "Chiseled Phonolite Wall", "block.tfg.rock.gravel_glacio": "Phonolite Gravel", "block.tfg.spike.glacio_stone_spike": "Phonolite Spike", @@ -369,15 +394,19 @@ "block.tfg.rock.cobble_permafrost_stairs": "Permafrost Cobble Stairs", "block.tfg.rock.cobble_permafrost_slab": "Permafrost Cobble Slab", "block.tfg.rock.cobble_permafrost_wall": "Permafrost Cobble Wall", - "block.tfg.rock.mossy_cobble_permafrost_stairs": "Permafrost Mossy Cobble Stairs", - "block.tfg.rock.mossy_cobble_permafrost_slab": "Permafrost Mossy Cobble Slab", - "block.tfg.rock.mossy_cobble_permafrost_wall": "Permafrost Mossy Cobble Wall", + "block.tfg.rock.mossy_cobble_permafrost": "Mossy Cobble Permafrost", + "block.tfg.rock.mossy_cobble_permafrost_stairs": "Mossy Cobble Permafrost Stairs", + "block.tfg.rock.mossy_cobble_permafrost_slab": "Mossy Cobble Permafrost Slab", + "block.tfg.rock.mossy_cobble_permafrost_wall": "Mossy Cobble Permafrost Wall", "block.tfg.rock.polished_permafrost_wall": "Polished Permafrost Wall", "block.tfg.rock.mossy_bricks_permafrost": "Mossy Permafrost Bricks", "block.tfg.rock.mossy_bricks_permafrost_stairs": "Mossy Permafrost Brick Stairs", "block.tfg.rock.mossy_bricks_permafrost_slab": "Mossy Permafrost Brick Slab", "block.tfg.rock.mossy_bricks_permafrost_wall": "Mossy Permafrost Brick Wall", - "block.tfg.rock.cracked_bricks_permafrost_stone_wall": "Cracked Permafrost Brick Wall", + "block.tfg.rock.cracked_bricks_permafrost_stairs": "Cracked Permafrost Brick Stairs", + "block.tfg.rock.cracked_bricks_permafrost_slab": "Cracked Permafrost Brick Slab", + "block.tfg.rock.cracked_bricks_permafrost_wall": "Cracked Permafrost Brick Wall", + "block.tfg.rock.chiseled_bricks_permafrost_wall": "Chiseled Permafrost Wall", "block.tfg.rock.gravel_permafrost": "Permafrost Gravel", "block.tfg.spike.permafrost_spike": "Permafrost Spike", "block.tfg.loose.permafrost": "Loose Permafrost Rock", @@ -416,15 +445,29 @@ "block.tfg.rock.cracked_bricks_stone_wall": "Cracked Reconstituted Stone Brick Wall", "block.tfg.rock.aqueduct_stone": "Reconstituted Stone Aqueduct", "block.tfg.rock.smooth_red_sandstone_wall": "Smooth Hematitic Sandstone Wall", + "block.tfg.rock.cut_red_sandstone_stairs": "Cut Hematitic Sandstone Stairs", "block.tfg.rock.cut_red_sandstone_wall": "Cut Hematitic Sandstone Wall", + "block.tfg.rock.bricks_venus_sandstone_wall": "Trachyte Sandstone Brick Wall", + "block.tfg.rock.cracked_bricks_venus_sandstone_stairs": "Cracked Trachyte Sandstone Brick Stairs", + "block.tfg.rock.cracked_bricks_venus_sandstone_slab": "Cracked Trachyte Sandstone Brick Slab", + "block.tfg.rock.cracked_bricks_venus_sandstone_wall": "Cracked Trachyte Sandstone Brick Wall", + "block.tfg.rock.quartz_wall": "Quartz Wall", + "block.tfg.rock.smooth_quartz_wall": "Smooth Quartz Wall", "block.tfg.rock.raw.stromatolite": "Raw Stromatolite", "block.tfg.rock.spike.stromatolite": "Stromatolite Spike", + "block.tfg.stromatolite_cluster_small": "Small Stromatolite Cluster", + "block.tfg.stromatolite_cluster_medium": "Large Stromatolite Cluster", "block.tfg.rock.raw.geyserite": "Raw Geyserite", "block.tfg.rock.spike.geyserite": "Geyserite Spike", + "block.tfg.geyser_source_small": "Small Steaming Geyser", + "block.tfg.geyser_source": "Steaming Geyser", + "block.tfg.smoker_source": "Volcanic Smoker", + "block.tfg.lava_source": "Lava Vent", + "block.tfg.rock.halite": "Halite", "block.tfg.mushroom_roots": "Mushroom Roots", "block.tfg.mushroom_sprouts": "Mushroom Sprouts", "block.tfg.charred_log": "Charred Log", - "block.tfg.ash_pile": "Ash Pile", + "block.tfg.ash_pile": "Wood Ash Pile", "block.tfg.pile.white_sand": "White Sand", "block.tfg.pile.black_sand": "Black Sand", "block.tfg.pile.brown_sand": "Brown Sand", @@ -439,6 +482,7 @@ "block.tfg.pile.venus_sand_covering": "Trachyte Sand", "block.tfg.pile.hematitic_sand": "Hematitic Sand", "block.tfg.pile.hematitic_sand_covering": "Hematitic Sand", + "block.tfg.pile.volcanic_ash": "Volcanic Ash Pile", "block.tfg.lunar_roots": "Lunar Lightblooms", "block.tfg.lunar_sprouts": "Lunar Lightgrass", "block.tfg.lunar_chorus_plant": "Chorus Plant", @@ -493,6 +537,8 @@ "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.fluid.sulfur_fumes": "Dense Sulfuric Fumes", + "block.tfg.fluid.geyser_slurry": "Super Heated Slurry", "block.tfg.grass.mars_dirt": "Martian Dirt", "block.tfg.grass.mars_clay_dirt": "Martian Clay Dirt", "block.tfg.grass.mars_farmland": "Martian Farmland", @@ -575,6 +621,8 @@ "block.tfg.casings.heat_pipe_casing": "Heat Pipe Casing", "block.tfg.glacian_wool_frame": "Framed Glacian Wool", "block.tfg.aes_insulation_frame": "Framed AES Insulation", + "block.tfg.machine_casing_power_casing": "Insulated Power Casing", + "block.tfg.active_power_transformer": "Active Energy Transformer", "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", @@ -654,17 +702,22 @@ "block.tfg.nuclear_turbine": "Nuclear Steam Turbine", "block.tfg.evaporation_tower": "Evaporation Tower", "block.tfg.cooling_tower": "Nuclear Cooling Tower", + "block.tfg.smr_generator": "Small Modular Turbine", + "block.tfg.casings.machine_casing_desh_ptfe": "Radiation-Safe Desh Casing", "block.tfg.growth_monitor": "Growth Monitor", "block.tfg.sample_rack": "Sample Rack", "block.tfg.casings.machine_casing_sterilizing_pipes": "Sterilizing Pipes", - "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", + "block.tfg.moderate_core": "Moderate Core", + "block.tfg.impure_moderate_core": "Impure Moderate Core", + "block.tfg.moderate_core_frame": "Moderate Core Frame", + "block.tfg.impure_moderate_core_frame": "Impure Moderate Core Frame", + "fluid.tfg.heavy_ammoniacal_water": "Heavy Ammoniacal Water", "fluid.tfg.semiheavy_ammoniacal_water": "Semiheavy Ammoniacal Water", - "fluid.tfg.sulfur_fumes": "Sulfur Fumes", - "fluid.tfg.super_heated_slurry": "Super Heated Slurry", + "fluid.tfg.sulfur_fumes": "Dense Sulfuric Fumes", + "fluid.tfg.geyser_slurry": "Super Heated Slurry", "fluid.tfg.cryogenized_fluix": "Cryogenized Fluix", + "fluid.tfg.bw_photographic_developer": "Black and White Photographic Developer", + "fluid.tfg.color_photographic_developer": "Color Photographic Developer", "item.tfg.antipoison_pill": "Antipoison Pill", "item.tfg.haste_pill": "Haste Pill", "item.tfg.night_vision_pill": "Night Vision Pill", @@ -689,6 +742,8 @@ "item.tfg.invisibility_salvo": "Invisibility Salvo", "item.tfg.luck_salvo": "Luck Salvo", "item.tfg.resistance_salvo": "Resistance Salvo", + "item.tfg.paracetamol_pill": "Paracetamol Pill", + "item.tfg.rad_away_pill": "RadAwayβ„’ Pill", "item.tfg.paraffin_wax": "Paraffin Wax", "item.tfg.flint_arrow_head": "Flint Arrow Head", "item.tfg.fletching": "Fletching", @@ -709,6 +764,7 @@ "item.tfg.conifer_rosin": "Conifer Rosin", "item.tfg.hardwood_strip": "Hardwood Strip", "item.tfg.soaked_hardwood_strip": "Soaked Hardwood Strip", + "item.tfg.soaked_unrefined_paper": "Soaked Unrefined Paper", "item.tfg.prepared_leather_gloves": "Prepared Leather Gloves", "item.tfg.latex_soaked_gloves": "Latex-Soaked Gloves", "item.tfg.unfired_chalk": "Unfired Chalk Stick", @@ -781,7 +837,6 @@ "item.tfg.food.cooked_limpet": "Cooked Limpet", "item.tfg.food.raw_moon_rabbit": "Raw Moon Rabbit", "item.tfg.food.cooked_moon_rabbit": "Cooked Moon Rabbit", - "item.tfg.spawn_egg.moon_rabbit": "Moon Rabbit Spawn Egg", "item.tfg.food.freeze_dried.red_grapes": "Freeze Dried Red Grapes", "item.tfg.food.freeze_dried.white_grapes": "Freeze Dried White Grapes", "item.tfg.food.freeze_dried.glow_berries": "Freeze Dried Glow Berries", @@ -819,10 +874,8 @@ "item.tfg.food.ice_soup": "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.food.raw_wraptor": "Raw Wraptor", "item.tfg.food.cooked_wraptor": "Cooked Wraptor", "item.tfg.food.raw_springling_collar": "Raw Springling Collar", @@ -848,11 +901,37 @@ "item.tfg.food.cooked_cruncher_ribs": "Cooked Cruncher Ribs", "item.tfg.food.raw_dino_nugget": "Prepared Dinosaur Nugget", "item.tfg.food.cooked_dino_nugget": "Beer Battered Dinosaur Nugget", + "item.tfg.food.raw_beer_battered_cheese_curds": "Beer Battered Cheese Curds", + "item.tfg.food.cooked_beer_battered_cheese_curds": "Fried Beer Battered Cheese Curds", + "item.tfg.food.raw_fries": "Raw French Fries", + "item.tfg.food.cooked_fries": "French Fries", + "item.tfg.food.poutine": "Poutine", + "item.tfg.food.brioche_dough": "Brioche Dough", + "item.tfg.food.brioche_bun": "Brioche Bun", + "item.tfg.food.raw_burger_patty": "Raw Burger Patty", + "item.tfg.food.cooked_burger_patty": "Burger Patty", + "item.tfg.food.slice_of_cheese": "Slice of \"Cheese\"", + "item.tfg.food.hamburger": "Hamburger", + "item.tfg.food.cheeseburger": "Cheeseburger", + "item.tfg.food.oatmeal": "Oatmeal", + "item.tfg.food.raw_instant_mac": "Uncooked Instant Mac & Cheese", + "item.tfg.food.cooked_instant_mac": "Instant Mac & Cheese", + "item.tfg.spice.bay_leaf": "Bay Leaf", + "item.tfg.spice.cardamom_pods": "Cardamom Pods", + "item.tfg.spice.cilantro_leaves": "Cilantro Leaves", + "item.tfg.spice.cumin_seeds": "Cumin Seeds", + "item.tfg.spice.oregano_leaves": "Oregano Leaves", + "item.tfg.spice.allspice": "Allspice", "item.tfg.roasted_sunflower_seeds": "Roasted Sunflower Seeds", "item.tfg.sunflower_seeds": "Sunflower Seed", "item.tfg.sunflower_product": "Sunflower Cap", "item.tfg.rapeseed_seeds": "Canola Seeds", "item.tfg.rapeseed_product": "Canola Ovules", + "item.tfg.spawn_egg.moon_rabbit": "Moon Rabbit Spawn Egg", + "item.tfg.spawn_egg.surfer": "Surfer Spawn Egg", + "item.tfg.spawn_egg.wraptor": "Wraptor Spawn Egg", + "item.tfg.spawn_egg.glacian_ram": "Glacian Spawn Egg", + "item.tfg.spawn_egg.sniffer": "Sniffer Spawn Egg", "item.tfg.flintlock_mechanism": "Flintlock Mechanism", "item.tfg.advanced_clockwork_mechanism": "Advanced Clockwork Mechanism", "item.tfg.certus_mechanism": "Certus Mechanism", @@ -874,8 +953,8 @@ "item.tfg.marker.mercury_orbit": "Mercury Orbit", "item.tfg.marker.glacio_orbit": "Europa 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.sulfur_fumes_bucket": "Dense Sulfuric Fumes Bucket", + "item.tfg.geyser_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", @@ -886,6 +965,7 @@ "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.heavy_ammoniacal_water_bucket": "Heavy Ammoniacal Water Bucket", "item.tfg.semiheavy_ammoniacal_water_bucket": "Semiheavy Ammoniacal Water Bucket", "item.tfg.harvest_basket": "Harvest Basket", "item.tfg.aluminium_harvest_basket": "Aluminium Harvest Basket", @@ -973,11 +1053,7 @@ "item.tfg.pure_graphite_rod": "Pure Graphite Rod", "item.tfg.impure_graphite_rod": "Impure Graphite Rod", "item.tfg.annealed_graphite_rod": "Annealed Graphite Rod", - "item.tfg.impure_annealed_graphite_row": "Impure Annealed Graphite Rod", - "item.tfg.moderate_core": "Moderate Core", - "item.tfg.impure_moderate_core": "Impure Moderate Core", - "item.tfg.moderate_core_frame": "Moderate Core Frame", - "item.tfg.impure_moderate_core_frame": "Impure Moderate Core Frame", + "item.tfg.impure_annealed_graphite_rod": "Impure Annealed Graphite Rod", "item.tfg.graphite_moderator": "Graphite Moderator", "item.tfg.impure_graphite_moderator": "Impure Graphite Moderator", "item.tfg.advanced_polymer_binder": "Advanced Polymer Binder", @@ -985,8 +1061,8 @@ "item.tfg.beaker.filled": "Beaker of %s", "item.tfg.flask": "Flask", "item.tfg.flask.filled": "Flask of %s", - "item.tfg.vial": "Vial", - "item.tfg.vial.filled": "Vial of %s", + "item.tfg.vial": "Pipette", + "item.tfg.vial.filled": "Pipette of %s", "item.tfg.lab_equipment": "Lab Equipment", "item.tfg.dirty_lab_equipment": "Dirty Lab Equipment", "item.tfg.wireless_card": "Interplanetary Wireless Card", @@ -1010,10 +1086,27 @@ "item.tfg.trapdoor_casting_mold": "Trapdoor Casting Mold", "item.tfg.chain_casting_mold": "Chain Casting Mold", "item.tfg.bell_casting_mold": "Bell Casting Mold", + "item.tfg.rnr_plow": "Paving Cart", + "item.tfg.cobalt_brass_wheel": "Cobalt Brass Wheel", + "item.tfg.cellulose_matrix": "Cellulose Matrix", + "item.tfg.smooth_endoplasmic_reticula": "Smooth Endoplasmic Reticula", + "item.tfg.rough_endoplasmic_reticula": "Rough Endoplasmic Reticula", + "item.tfg.alpha_keratin": "Ξ±-Keratin", + "item.tfg.progenitor_cells": "Progenitor Cells", + "item.tfg.catalyser_pt_re_zsm": "Platinum-Rhenium ZSM-5 Catalyzer", + "item.tfg.used_catalyser": "Used Platinum-Rhenium ZSM-5 Catalyzer", + "item.tfg.loaded_resin": "Rhenium-Loaded Resin", + "item.tfg.rod_mold": "Fire Rod Mold", + "item.tfg.small_gear_mold": "Fire Small Gear Mold", + "item.tfg.nugget_mold": "Nugget Mold", + "item.tfg.unfired_rod_mold": "Unfired Fire Rod Mold", + "item.tfg.unfired_small_gear_mold": "Unfired Fire Small Gear Mold", + "item.tfg.unfired_nugget_mold": "Unfired Nugget Mold", "material.tfg.latex": "Latex", "material.tfg.vulcanized_latex": "Vulcanized Latex", "material.tfg.fluix": "Fluix", "material.tfg.conifer_pitch": "Conifer Pitch", + "material.tfg.pyrogallol": "Pyrogallol", "material.gtceu.lactose": "Lactose", "material.tfg.gabbro": "Gabbro", "material.tfg.shale": "Shale", @@ -1099,6 +1192,80 @@ "material.tfg.cooked_mycelienzane": "1,3-Mycelienzane", "material.tfg.iodomethane": "Iodomethane", "material.tfg.trideuteroiodomethane": "Trideuteroiodomethane", + "material.tfg.lauryl_alcohol": "Lauryl Alcohol", + "material.tfg.chlorosulfuric_acid": "Chlorosulfuric Acid", + "material.tfg.sodium_dodecyl_sulfate": "Sodium Dodecyl Sulfate", + "material.tfg.sodium_hypochlorite": "Sodium Hypochlorite", + "material.tfg.mutative_yeast": "Mutative Yeast", + "material.tfg.proto_growth_medium": "Proto Growth Medium", + "material.tfg.fibroblast_feeder_cells": "Fibroblast Feeder Cells", + "material.tfg.gram_stain": "Gram Stain", + "material.tfg.crystal_violet": "Crystal Violet", + "material.tfg.n_n_dimethylaniline": "N,N-Dimethylaniline", + "material.tfg.triglyceride_oil": "Triglyceride Oil", + "material.tfg.cholesterol": "Cholesterol", + "material.tfg.butyric_acid": "Butyric Acid", + "material.tfg.citric_acid": "Citric Acid", + "material.tfg.sodium_dihydrogen_citrate": "Sodium Dihydrogen Citrate", + "material.tfg.light_stock": "Light Stock", + "material.tfg.rich_stock": "Rich Stock", + "material.tfg.brown_gravy": "Brown Gravy", + "material.tfg.zircon": "Zircon", + "material.tfg.silicon_tetrachloride": "Silicon Tetrachloride", + "material.tfg.zirconium_tetrachloride": "Zirconium Tetrachloride", + "material.tfg.zirconium_oxide": "Zirconia", + "material.tfg.zirconium_bromide": "Zirconium(IV) Bromide", + "material.tfg.zirconium_diboride": "Zirconium Diboride", + "material.tfg.boron_carbide": "Boron Carbide", + "material.tfg.syngas": "Syngas", + "material.tfg.raw_aromatic_mix": "Raw Aromatic Mix", + "material.tfg.aromatic_feedstock": "Aromatic Feedstock", + "material.tfg.reformed_aromatic_feedstock": "Reformed Aromatic Feedstock", + "material.tfg.reformate_gas": "Reformate Gas", + "material.tfg.cracker_off_gas": "Cracked Reformate Off-Gas", + "material.tfg.btx_fuel": "BTX Fuel", + "material.tfg.critical_steam": "Critical Steam", + "material.tfg.americium_241": "Americium 241", + "material.tfg.californium_252": "Californium 252", + "material.tfg.neptunium_237": "Neptunium 237", + "material.tfg.mixed_radioactive_fluid": "Mixed Radioactive Fluid", + "material.tfg.degraded_solvent_stream": "Degraded Solvent Stream", + "material.tfg.boron_enriched_coolant": "Boron Enriched Coolant", + "material.tfg.hot_boron_enriched_coolant": "Hot Boron Enriched Coolant", + "material.tfg.polyalkylene_lubricant": "Polyalkylene Lubricant", + "material.tfg.organic_degradation_slurry": "Organic Degradation Slurry", + "material.tfg.gas_fraction": "Gas Fraction", + "material.tfg.isotopic_solvent": "Isotopic Solvent", + "material.tfg.residual_sludge": "Residual Sludge", + "material.tfg.sodium_fluoride": "Sodium Fluoride", + "material.tfg.trace_catalyst_salt_e": "Trace Catalyst Salt E", + "material.tfg.copper_trace_catalyst_dust": "Copper Trace Catalyst", + "material.tfg.organic_stabilizer": "Organic Stabilizer", + "material.tfg.inert_dust_fraction": "Inert Fraction", + "material.tfg.recovered_ionic_complex": "Recovered Ionic Complex", + "material.tfg.glucose": "Glucose", + "material.tfg.galactose": "Galactose", + "material.tfg.fructose": "Fructose", + "material.tfg.sorbitol": "Sorbitol", + "material.tfg.14_sorbitan": "1,4-Sorbitan", + "material.tfg.isosorbide": "Isosorbide", + "material.tfg.linolenic_acid": "Ξ±-Linolenic Acid", + "material.tfg.isosorbide_ln": "Isosorbide Linolenate", + "material.tfg.epox_isosorbide_ln": "Epoxidized Isosorbide Linolenate", + "material.tfg.ozone": "Ozone", + "material.tfg.tin_chloride": "Stannous Chloride", + "material.tfg.cyclohexanone": "Cyclohexanone", + "material.tfg.cyclohex_diperoxide": "1,1-Cyclohexanediyl Dihydroperoxide", + "material.tfg.aciditic_waste": "Acidic Epoxy Waste", + "material.tfg.tpaoh": "Tetrapropylammonium Hydroxide", + "material.tfg.sodium_silicate": "Sodium Silicate", + "material.tfg.metal_rich_solution": "Leachate Metal-Rich Solution", + "material.tfg.crude_mixed_gas": "Crude Mixed Gas", + "material.tfg.zsm5_gel": "ZSM-5 Gel", + "material.tfg.leachate": "Rhenium Leachate", + "material.tfg.clean_powder": "Re-Silicate Clean", + "material.tfg.catalyser_powder": "Rhenium ZSM-5 Catalyzer", + "material.tfg.sodium_aluminium": "Sodium Aluminium", "ore_vein.tfg.deep_sheldonite": "Cooperite & Bornite", "ore_vein.tfg.deep_garnet_amethyst": "Amethyst & Garnet", "ore_vein.tfg.deep_garnet_opal": "Opal & Garnet", @@ -1120,6 +1287,8 @@ "ore_vein.tfg.normal_copper": "Copper & Chalcopyrite", "ore_vein.tfg.normal_garnet_tin": "Garnet & Cassiterite Sands", "ore_vein.tfg.normal_garnierite": "Garnierite & Cobaltite", + "ore_vein.tfg.normal_garnierite.emi.0": "Tip: Gabbro is always", + "ore_vein.tfg.normal_garnierite.emi.1": "underneath Basalt.", "ore_vein.tfg.normal_gold": "Gold, Limonite, & Hematite", "ore_vein.tfg.normal_graphite": "Graphite & Diamond", "ore_vein.tfg.normal_gypsum": "Gypsum & Calcite", @@ -1135,12 +1304,18 @@ "ore_vein.tfg.normal_olivine": "Bentonite & Olivine", "ore_vein.tfg.normal_quartz": "Quartzes", "ore_vein.tfg.normal_redstone": "Redstone, Cinnabar, & Ruby", + "ore_vein.tfg.normal_redstone.emi.0": "Tip: Granite is always", + "ore_vein.tfg.normal_redstone.emi.1": "underneath Rhyolite.", "ore_vein.tfg.normal_salt": "Salts & Borax", "ore_vein.tfg.normal_saltpeter": "Saltpeter & Electrotine", "ore_vein.tfg.normal_silver": "Silver, Galena, & Lead", "ore_vein.tfg.normal_sphalerite": "Sphalerite & Pyrite", "ore_vein.tfg.normal_spodumene": "Spodumene & Lepidolite", "ore_vein.tfg.normal_sulfur": "Sulfur & Pyrite", + "ore_vein.tfg.normal_tarkianite": "Tarkianite & Oilsands", + "ore_vein.tfg.normal_tarkianite.emi.0": "Only in dry climates.", + "ore_vein.tfg.normal_tarkianite.emi.1": "Min temp: 7Β°C", + "ore_vein.tfg.normal_tarkianite.emi.2": "Max rainfall: 100mm", "ore_vein.tfg.normal_tetrahedrite": "Tetrahedrite (Normal)", "ore_vein.tfg.surface_bismuthinite": "Bismuth (Surface)", "ore_vein.tfg.surface_cassiterite": "Cassiterite (Surface)", @@ -1148,7 +1323,7 @@ "ore_vein.tfg.surface_sphalerite": "Sphalerite & Sulfur", "ore_vein.tfg.surface_tetrahedrite": "Tetrahedrite (Surface)", "ore_vein.tfg.deep_mars_chromite": "Redstone & Chromite", - "ore_vein.tfg.deep_mars_pitchblende": "Pitchblende, Thorium, & Uraninite", + "ore_vein.tfg.deep_mars_pitchblende": "Pitchblende, Thorianite, & Uraninite", "ore_vein.tfg.deep_mars_sheldonite": "Bornite & Cooperite", "ore_vein.tfg.mars_almandine": "Almandine & Sapphire", "ore_vein.tfg.mars_apatite": "Apatite & Pyrochlore", @@ -1159,10 +1334,11 @@ "ore_vein.tfg.mars_sapphire": "Gold, Electrotine, & Bauxite", "ore_vein.tfg.mars_graphite": "Graphite & Diamond", "ore_vein.tfg.mars_hematite": "Hematite & Limonite", + "ore_vein.tfg.mars_lapis": "Lapis, Lazurite, & Sodalite", "ore_vein.tfg.mars_lubricant": "Trona, 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_pitchblende": "Pitchblende & Thorianite, & Hematite", "ore_vein.tfg.mars_quartzite": "Quartzite, Asbestos, & Barite", "ore_vein.tfg.mars_salt": "Salts & Spodumene", "ore_vein.tfg.mars_stibnite": "Tetrahedrite (Normal)", @@ -1237,6 +1413,10 @@ "ore_vein.tfg.nether_sylvite": "Sylvite", "ore_vein.tfg.nether_tetrahedrite": "Tetrahedrite", "ore_vein.tfg.nether_topaz": "Topaz & Chalcocite", + "ore_vein.tfg.venus_manual_salt": "Salts & Spodumene", + "ore_vein.tfg.venus_manual_salt.emi.0": "Only in Salt Flats.", + "ore_vein.tfg.venus_manual_sulfur": "Sulfur & Pyrite", + "ore_vein.tfg.venus_manual_sulfur.emi.0": "Only in Sulfuric Ravine.", "tfg.creative_tab.tfg": "TerraFirmaGreg", "tfg.disabled_portal": "Portal magic seems to be blocked by an unknown force, try reaching another dimension by going down or up", "tfg.tooltip.food_trait.refrigerating": "Β§bRefrigerating", @@ -1267,8 +1447,25 @@ "tfg.tooltip.surfer_variant.fire": "Sangnum Hide", "tfg.tooltip.surfer_variant.brain": "Glacian Hide", "tfg.tooltip.attribution.surfer": "Β§9Β§oCredit: Wan's Ancient Beasts", + "entity.tfg.rnr_plow": "Paving Cart", "effect.tfg.cooling": "Β§bCooling", "effect.tfg.warming": "Β§6Warming", + "effect.tfg.instant_radiation": "Instant Radiation", + "effect.tfg.chemical_burns_warning": "Suffering Chemical Burns", + "effect.tfg.poison_warning": "Poisonous Material", + "effect.tfg.weak_poison_warning": "Weakly Poisonous Material", + "effect.tfg.irritant_warning": "Irritant Material", + "effect.tfg.nausea_warning": "Nauseous Material", + "effect.tfg.carcinogen_warning": "Carcinogenic Material", + "effect.tfg.asbestosis_warning": "Asbestosis", + "effect.tfg.arsenicosis_warning": "Arsenicosis", + "effect.tfg.silicosis_warning": "Silicosis", + "effect.tfg.berylliosis_warning": "Berylliosis", + "effect.tfg.methanol_poisoning_warning": "Methanol Poisoning", + "effect.tfg.carbon_monoxide_poisoning_warning": "Carbon Monoxide Poisoning", + "effect.tfg.radioactive_warning": "Irradiated", + "gtceu.medical_condition.radioactive": "Β§4Radioactive", + "symptom.tfg.glowing": "Glowing", "tfg.greate.uls_limit": "Β§432Β§r (Β§8ULSΒ§r)", "tfg.greate.ls_limit": "Β§f128Β§r (Β§7LSΒ§r)", "tfg.greate.windmill_hint_1": "Windmills are affected by relative", @@ -1291,7 +1488,7 @@ "trim_material.tfc.salt_tfc": "salt", "trim_material.tfc.sapphire_tfc": "Sapphire", "trim_material.tfc.sodalite_tfc": "Sodalite", - "trim_material.tfc.coke_tfc": "Coke", + "trim_material.tfc.armalcolite_tfc": "Armalcolite", "trim_material.tfc.spessartine_tfc": "Spessartine", "trim_material.tfc.topaz_tfc": "Topaz", "trim_material.tfc.uvarovite_tfc": "Uvarovite", @@ -1325,10 +1522,14 @@ "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.y_ranges": "Y Level: %d to %d", "tfg.emi.ore_veins.size": "Size: %d", "tfg.emi.ore_veins.height": "Height: %d", "tfg.emi.ore_veins.radius": "Radius: %d", + "ore_vein.tfg.rose_quartz": "Rose Quartz", + "ore_vein.tfg.rose_quartz.emi.0": "Found in low-elevation", + "ore_vein.tfg.rose_quartz.emi.1": "biomes in climates", + "ore_vein.tfg.rose_quartz.emi.2": "below -10Β°C.", "emi.category.tfg.ore_vein_info": "Ore Veins", "tfg.emi.liquid_bb_burn_time": "Duration: %d secs", "tfg.emi.liquid_bb_superheat": "Β§lSuperheated", @@ -1385,10 +1586,31 @@ "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.hotornot_container": "Β§aSafely contains Β§6hotΒ§a, Β§bcoldΒ§a, and Β§elighter-than-airΒ§a items and fluids.Β§r", + "tfg.tooltip.hotornot_hot_equipment": "Β§7Provides protection from all Β§6hotΒ§7 items, fluids, and pipes.Β§r", + "tfg.tooltip.hotornot_cold_equipment": "Β§7Provides protection from all Β§bcoldΒ§7 items, fluids, and pipes.Β§r", + "tfg.tooltip.hotornot_floating_equipment": "Β§7Provides protection from all Β§elighter-than-airΒ§7 gases.Β§r", + "tfg.tooltip.machine.one_energy_hatch": "Accepts exactly Β§6OneΒ§r Energy Hatch.", + "tfg.tooltip.machine.two_energy_hatches": "Accepts up to Β§6TwoΒ§r Energy Hatches.", + "tfg.tooltip.machine.subtick": "This machine supports Β§2SubtickingΒ§r!", + "tfg.tooltip.machine.coil_energy_discount": "Every coil after Β§6CupronickelΒ§r reduces energy usage by 10%.", + "tfg.tooltip.machine.coil_speed_discount": "Β§6CupronickelΒ§r coils process 75% slower. Every coil after Β§3KanthalΒ§r increases processing speed by 50%.", + "tfg.tooltip.machine.bioreactor_1": "Β§7Chemistry meets BiologyΒ§r", + "tfg.tooltip.machine.bioreactor_2": "Β§7Combines organic and inorganic ingredients to produce synthetic biological products.Β§r", + "tfg.tooltip.machine.growth_chamber_1": "Β§7Growing new lifeΒ§r", + "tfg.tooltip.machine.growth_chamber_2": "Β§7Contains everything needed for Biological Engineering.Β§r", + "tfg.tooltip.machine.evaporation_tower_1": "Β§7Not to be confused with the Distillation TowerΒ§r", + "tfg.tooltip.machine.evaporation_tower_2": "Β§7Gets rid of excess solvent to condense solutions.Β§r", + "tfg.tooltip.machine.electric_greenhouse_1": "Β§7Putting the Factory in Factory FarmingΒ§r", + "tfg.tooltip.machine.electric_greenhouse_2": "Β§7Uses water to grow trees, crops, and other plants. Can be sped up with fertilizer. Faster and easier than other ways of growing plants, at the cost of energy.Β§r", + "tfg.tooltip.machine.cooling_tower_1": "Β§7Heating up the AtmosphereΒ§r", + "tfg.tooltip.machine.cooling_tower_2": "Β§7Cools the hot coolant by dissipitating excess heat to the atmosphere.Β§r", "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.antipoison_pill": "Β§9Cures Poison", + "tfg.tooltip.antipoison_tablet": "Β§9Cures All Active Harmful Effects", + "tfg.tooltip.dna_syringe.empty": "Β§7An empty syringe.Β§r", + "tfg.tooltip.dna_syringe.dirty1": "Β§7A used syringe.Β§r", + "tfg.tooltip.dna_syringe.dirty2": "Β§7Be careful not to poke anyone with this...Β§r", "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]", @@ -1408,11 +1630,32 @@ "tfg.tooltip.component.moderate_core_frame": "Can be placed inside a Fission Reactor to increase the maximum heat by Β§910Β§r", "tfg.tooltip.component.dry_ice": "Can be used as an input in the Fission Reactor to cool it down, requires a Material Holder", "tfg.tooltip.component.refrigerant_pellet": "Can be used as an input in the Fission Reactor to cool it down, requires a Material Holder", - "tfg.tooltip.component.nuclear_turbine_1": "Β§eBase Production:Β§r 4096 EU/t", + "tfg.tooltip.component.nuclear_turbine_1": "Β§eBase Production:Β§r 8192 EU/t", "tfg.tooltip.component.nuclear_turbine_2": "Each Rotor Holder above Β§5EVΒ§r Β§7addsΒ§r 10% efficiency and multiplies EU/t by 2.", + "tfg.tooltip.component.smr_generator_1": "Β§eBase Production:Β§r 4096 EU/t", + "tfg.tooltip.component.smr_generator_2": "Dedicated to produce power from sCO2 and the Small Modular Reactor.\n Use Lubricant and Booster to increase its efficiency and manage the cooling loop of the SMR.", "tfg.gui.refrigerator.unify_dates.enabled": "Expiration Date Unification is: Β§aOn", "tfg.gui.refrigerator.unify_dates.disabled": "Expiration Date Unification is: Β§cOff", "tfg.machine.food_refrigerator_power_usage": "Β§7ConsumesΒ§r %s EU/t Β§7while active to keep your food fresh.Β§r", + "tfg.gui.rnr_plow.random_mode": "Randomize Materials", + "tfg.gui.rnr_plow.width": "Path Width: %d Blocks", + "tfg.gui.rnr_plow.empty_crushed_base_course": "Β§cMissing Crushed Base Course!!", + "tfg.tooltip.progenitor_cells.mob": "Animal culture: ", + "tfg.tooltip.fake_nutrition_info_listener": "Β§7Β§oHold (Shift) for Nutrition Info", + "tfg.tooltip.fake_nutrition_info": "Β§7Nutrition:", + "tfg.tooltip.cheese_slice_microplastics": "Β§b- Microplastics: 1.9", + "tfg.gui.menu.field_guide_splash_text": "Tip: Read the field guide!!!", + "tfg.gui.menu.ram_usage": "RAM:", + "tfg.gui.menu.fps_count": "FPS:", + "tfg.gui.smr_generator.credit": "Credits to Frontiers Team", + "tfg.gui.smr_generator.lubricant_used": "Lubricant: %s", + "tfg.gui.smr_generator.booster_used": "Booster: %s", + "tfg.gui.max_energy_per_tick_amps.prefix": "Max EU/t:", + "tfg.gui.consumes": "Consumes: ", + "tfg.gui.per_cycle": "per cycle", + "tfg.gui.cycle_duration": "Cycle duration: ", + "tfg.emi.bacon_requirement": "Bacon - The Raw Pork must be smoked first", + "tag.item.tfg.dried_fruit": "Dried Fruit", "tfc.jei.flint_knapping": "Flint Knapping", "tfc.jei.straw_knapping": "Straw Knapping", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Dyeing", @@ -1465,6 +1708,7 @@ "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block": "Dyeing", "tfc.recipe.barrel.tfg.barrel.treated_chipboard_composite": "Treating Chipboard Composite", "tfc.recipe.barrel.tfg.barrel.soak_hardwood_strip": "Soaking Hardwood Strips", + "tfc.recipe.barrel.tfg.barrel.treated_wood_dust": "Treating Wood Dust", "tfc.recipe.barrel.tfg.barrel.treated_wood_planks": "Treating Wood Planks", "tfc.recipe.barrel.tfg.barrel.packed_ice": "Freezing Ice", "tfc.recipe.barrel.tfg.barrel.cooling_water_1": "Cooling Water", @@ -1476,6 +1720,8 @@ "tfc.recipe.barrel.tfg.barrel.sunflower_to_oil": "Extracting Sunflower Oil", "tfc.recipe.barrel.tfg.barrel.maple_syrup_to_sugar": "Making sugar", "tfc.recipe.barrel.tfg.barrel.birch_syrup_to_sugar": "Making sugar", + "tfc.recipe.barrel.tfg.barrel.develop_black_and_white_film": "Developing film", + "tfc.recipe.barrel.tfg.barrel.develop_color_film": "Developing film", "tfc.recipe.barrel.tfg.barrel.light_concrete": "Solidifying Concrete", "tfc.recipe.barrel.tfg.barrel.reinforced_light_concrete_support": "Solidifying Concrete", "tfc.recipe.barrel.tfg.barrel.dark_concrete": "Dyeing", @@ -1486,6 +1732,7 @@ "tfg.food_recipe.smoking": "Smoking", "tfg.food_recipe.drying": "Drying", "tfg.food_recipe.freeze_drying": "Desiccate", + "tfg.food_recipe.deep_frying": "Deep Frying", "tfg.recipe.macerator_warning": "Only outputs first slot until HV", "tfg.grapplemod.repair": "Repair recipe, keeps your upgrades. Β§lNEVER combine two grapples or you'll lose ALL your upgrades!Β§r", "tfg.grapplemod.upgrades.maxlen": "Increases Β§lMax LengthΒ§r by 20, up to 200.", @@ -1621,9 +1868,12 @@ "quests.ae2.wireless_access.desc": "Once you've made it to &5EV&r, you'll gain access to the ME Wireless Access Point, which basically acts like a WiFi Router for your ME network. Connect it to a central point in your base, shove as many Wireless Booster cards as you want to increase its range (and power draw), and then link a Wireless Terminal to it.\n\nOnce you have Epoxy and Rhodium, you'll be able to combine all of your Wireless Terminals together via a Universal Terminal!", "quests.ae2.interplanetary_wireless.subtitle": "Forgot something at home?", "quests.ae2.interplanetary_wireless.desc": "You can upgrade your Wireless Terminal with this special Card, allowing access to your network from any distance, even on different worlds! Sounds too good to be true? There's a major catch β€” transferring items uses a huge amount of energy.\n\nYou can sort of get around this with some Energy Cards and a battery in your inventory set to Discharge Mode, but it should work well enough for those times when you accidentally left something at your base on Earth and don't want to fly all the way back.\n\nFor proper automated transfer, you'll need a Railgun.", + "quests.ae2.universal_circuits.title": "Universal Circuits", + "quests.ae2.universal_circuits.subtitle": "Oh so THAT's what these are for!", + "quests.ae2.universal_circuits.desc": "Ever wondered what the point of the Universal Circuit items was? Besides nice quest icons, they're primarily used for AE2!\n\nAE2 doesn't handle item tags in patterns well, so the universal circuits are designed to be used in any patterns that require circuits. This way, whenever you unlock a new kind of circuit, you only need to add one pattern to convert the new circuit into the universal one, instead of updating &oall&r of your old patterns!", "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_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 &5two EV 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!", @@ -1638,7 +1888,7 @@ "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.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\nIt 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?", @@ -1648,9 +1898,72 @@ "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.cell_component_64m.desc": "The &c64M MEGA Storage Component&r is the biggest one you can make in &cTerraFirmaGreg&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.combat_tips.stone_main.title": "Stone Age", + "quests.combat_tips.hammer.title": "Hammers", + "quests.combat_tips.hammer.subtitle": "It's hammer time!", + "quests.combat_tips.hammer.description": "While combat may not be the first thing you think to do with your hammer, it can be surprisingly effective. Hammers deal &2Crushing&r damage which can help you against Skeletons. \n\nFor more information on &cDamage Types&r consult the &3Field Guide&r.", + "quests.combat_tips.hammer.task": "Any Hammer", + "quests.combat_tips.javelin.title": "Javelins", + "quests.combat_tips.javelin.subtitle": "Caveman's bow", + "quests.combat_tips.javelin.description": "If you want to keep your foes away from you, javelins are the weapon for you. They are the earliest ranged weapons you will have available to you. They deal &9Piercing&r damage, which can help you against Zombies. \n\nFor more information on &cDamage Types&r consult the &3Field Guide&r. \n\nOnce you acquire leather you will be able to craft a &5Quiver&r which allows you to have easy access to up to 8 javelins! ", + "quests.combat_tips.javelin.task": "Any Javelin", + "quests.combat_tips.axe.title": "Axes", + "quests.combat_tips.axe.subtitle": "Good for more than wood", + "quests.combat_tips.axe.description": "Until you can upgrade, an axe will be your most reliable weapon. Along with high damage, they deal &6Slashing&r damage, which will help you against Creepers. \n\nFor more information on &cDamage Types&r consult the &3Field Guide&r.", + "quests.combat_tips.axe.task": "Any Axe", + "quests.combat_tips.knife.title": "Knives", + "quests.combat_tips.knife.subtitle": "Stabby stabby", + "quests.combat_tips.knife.description": "Knives are most useful for crafting, but they can be a weapon in a pinch. They deal &9Piercing&r damage, which can help you against Zombies. \n\nFor more information on &cDamage Types&r consult the &3Field Guide&r.", + "quests.combat_tips.knife.task": "Any Knife", + "quests.combat_tips.club.title": "Flint Club", + "quests.combat_tips.club.subtitle": "Gronk Bonk", + "quests.combat_tips.club.description": "The flint clubs are rather unconventional weapons. Instead of dealing damage, they will break your target's bones, stopping them in their tracks.\n\nBoth the standard and fortified flint clubs can be crafted with primitive materials. The fortified flint club boasts a faster attack speed and more durability.", + "quests.combat_tips.mold_main.title": "Primitive Metallurgy", + "quests.combat_tips.wood_shield.title": "Wooden Shield", + "quests.combat_tips.wood_shield.subtitle": "Skeletons hurt, like a lot", + "quests.combat_tips.wood_shield.description": "A shield will protect you from most damage sources you point it at. Be warned, it will &4not&r protect you from explosions.", + "quests.combat_tips.leather.title": "Leather Armor", + "quests.combat_tips.leather.subtitle": "Clothes at last", + "quests.combat_tips.leather.description": "Once you have leather, you will be able to get your first true armor. It isn't great, but it will provide that extra protection you may need. \n\nThey also give you a slight resistance to &6Slashing&r damage.", + "quests.combat_tips.mold_weapons.title": "Molded Weapons", + "quests.combat_tips.mold_weapons.subtitle": "The power of metal", + "quests.combat_tips.mold_weapons.description": "Molds allow you to make copper and bronze versions of all weapons, including three new types: Swords, Scythes, and Maces. \n\nSwords: These well rounded weapons deal &6Slashing&r damage. \n\nScythes: They do more damage than swords, but are slower. They deal &6Slashing&r damage. \n\nMaces: They are the best weapons that deal &2Crushing&r damage.", + "quests.combat_tips.mold_weapons.task1": "Any Sword", + "quests.combat_tips.mold_weapons.task2": "Any Scythe", + "quests.combat_tips.mold_weapons.task3": "Any Mace", + "quests.combat_tips.bow.title": "Bow and Arrow", + "quests.combat_tips.bow.subtitle": "Then I took an arrow to the knee...", + "quests.combat_tips.bow.description": "While javelins are cool, it's hard to beat a bow and arrow. Arrows can be expensive, so setting up a bird farm isn't a bad idea. Arrows deal &9Piercing&r damage. \n\nOnce you have leather you will be able to craft a &5Quiver&r which allows you to have easy access to up to 8 stacks of arrows!", + "quests.combat_tips.bow.task2": "Any Arrow", + "quests.combat_tips.bronze_main.title": "Bronze Age", + "quests.combat_tips.forged_weapons.title": "Forged Weapons", + "quests.combat_tips.forged_weapons.subtitle": "To wrought iron and beyond!", + "quests.combat_tips.forged_weapons.description": "From wrought iron and above you will need the appropriate anvil to forge them. Additionally, the anvil unlocks butchery knives. \n\nButchery Knives: Faster than swords, but do less damage. They allow you to get &cdouble&r meat from mobs. This doesn't affect any other drops.", + "quests.combat_tips.forged_weapons.task": "Any Butchery Knife", + "quests.combat_tips.shield.title": "Metal Shield", + "quests.combat_tips.shield.subtitle": "Premium protection", + "quests.combat_tips.shield.description": "Now these are some real shields. Using one of these will protect you from any damage, including explosions. \n\nThey also come in a bunch of fun shapes!", + "quests.combat_tips.shield.task": "Any Metal Shield", + "quests.combat_tips.armor.title": "Metal Armor", + "quests.combat_tips.armor.subtitle": "Only the shiniest suit of armor", + "quests.combat_tips.armor.description": "Metal armor requires a two-step forging process, but don't be scared off by its difficulty. Metal armor will boost your survival chances going into the &dBeneath&r or if you fight off a group of &3Illagers&r.\n\nAll metal armor will give you bonus protection to &6Slashing&r, &9Piercing&r, and &2Crushing&r damage", + "quests.combat_tips.armor.task1": "Any Metal Helmet", + "quests.combat_tips.armor.task2": "Any Metal Chestplate", + "quests.combat_tips.armor.task3": "Any Metal Greaves", + "quests.combat_tips.armor.task4": "Any Metal Boots", + "quests.combat_tips.iron_main.title": "Iron Age", + "quests.combat_tips.crossbow.title": "Crossbow", + "quests.combat_tips.crossbow.subtitle": "It's like a manual gun", + "quests.combat_tips.crossbow.description": "Quite simply, it functions the same as the vanilla crossbow. Similar to the bow you can use a &5Quiver&r to hold up to 8 stacks of arrows.", + "quests.combat_tips.flintlock_mechanism.title": "Flintlock Mechanism", + "quests.combat_tips.flintlock_mechanism.subtitle": "Sparks on demand!", + "quests.combat_tips.flintlock_mechanism.description": "This is your first &2Gun Mechanism&r, which are the main crafting components of most guns. The &6Flintlock Mechanism&r allows you to make your first two guns! The first of which is the &9Flintlock Pistol&r.\n\nOnce you acquire steel you will be able to make a much cheaper &6Flintlock Mechanism&r.", + "quests.combat_tips.flintlock_gun.title": "Flintlock Pistol", + "quests.combat_tips.flintlock_gun.subtitle": "Eat Lead!", + "quests.combat_tips.flintlock_gun.description": "Well this is the moment you have been waiting for, it's a gun. Now it's not that good of a gun, but technology has to start somewhere. Guns have many advantages compared to other ranged weapons, useful to you now is that &3Glayzes&r and &2Klayzes&r cannot block bullets.\n\nFor more information on how TACZ guns work view the gun at the top of this quest chapter.", "quests.tasktype.checkmark": "Click here to complete this quest/task", "quests.tasktype.item.any": "Any Item of type:", "quests.tasktype.lookat": "Look at a:", @@ -1661,6 +1974,7 @@ "quests.groups.interstellar": "Interstellar Age", "quests.groups.technological_help": "Technological Help", "quests.groups.tips": "Tips", + "quests.groups.space_survival": "Space Survival", "quests.computer": "ComputerCraft", "quests.computer.subtitle": "A very powerful Lua scripting mod", "quests.create_logistics": "Create Logistics", @@ -1798,7 +2112,11 @@ "quests.extreme_voltage.cracker.desc": "The &3Cracker&r is a multiblock built with the sole purpose of cracking fluids. It comes with all the recipes of &3Chemical Reactor&r Cracking, but it is &6lossless&r.\n\nThis is a great way to save a lot of Fuel in the long term!\n\nHigher Coil tiers provide a small energy discount - up to 70%% with the best Coils available.", "quests.extreme_voltage.ev_components.title": "Extreme Voltage Components", "quests.extreme_voltage.ev_components.subtitle": "The \"Fun\" will never stop", - "quests.extreme_voltage.ev_components.desc": "&7By now, you should be getting used to the pattern with every new Energy Tier comes a fresh batch of components.&r\n\nThe &5EV&r tier comes with a few twists - first, &eNeodymium&r. You might already have some stored from your earlier mining trips, but you’ll also find it in large quantities when processing &eMonazite Ore&r.\n\nSecondly, Sensors and Emitters require &bCryogenized Fluix Pearls&r. Hopefully your &dMoon&r infrastructure is up and running to supply them efficiently.\n\nLastly, Motors require Kanthal wire. If you've been diligently upgrading your EBF, these should be significantly faster to craft than when you made them in MV (and you can recycle your old coils too!), but the Alloy Blast Smelter will be able to make this even faster.", + "quests.extreme_voltage.ev_components.desc": "&7By now, you should be getting used to the pattern: with every new Energy Tier comes a fresh batch of components.&r\n\nThe &5EV&r tier comes with a few twists - first, &eNeodymium&r. You might already have some stored from your earlier mining trips, but you’ll also find it in large quantities when processing &eMonazite Ore&r.\n\nSecondly, Sensors and Emitters require &bCryogenized Fluix Pearls&r. Hopefully your &dMoon&r infrastructure is up and running to supply them efficiently.\n\nLastly, Motors require Kanthal wire. If you've been diligently upgrading your EBF, these should be significantly faster to craft than when you made them in MV (and you can recycle your old coils too!), but the Alloy Blast Smelter will be able to make this even faster.", + "quests.extreme_voltage.assembler.title": "EV Assembler", + "quests.extreme_voltage.assembler.subtitle": "Last step before some Extreme power generation!", + "quests.extreme_voltage.assembler.desc.1": "You know what to do with this by now, but this is a good time to give you a heads up that now is the time to scale up your factory if you haven't already done so.\n\nTake your time to set up AE2 all over your base, making it print you dozens of new machines to keep your factory running at tip-top shape, because if you don't, the rest of EV is going to hit you like a brick wall.\n\nDon't wait to find out the hard way!", + "quests.extreme_voltage.assembler.desc.2": "At the very least, here's what we recommend before pushing further into EV:\n\n&9-&r Passive production of Rubber, Polyethylene, Oxygen, Hydrogen, Nitrogen, and Chlorine\n&9-&r At least two general-purpose EBFs, and a few LCRs\n&9-&r AE2 patterns for a circuit of every tier and most of the common crafting components like motors, pumps, plates, and wires\n&9-&r A dedicated ore processing setup\n&9-&r A couple EV amps worth of power generation (see the below quests)\n\nYou can do it, you've made it this far already!", "quests.extreme_voltage.t2_rocket.title": "Rocket 2: Titanium Boogaloo", "quests.extreme_voltage.t2_rocket.subtitle": "This one's purple", "quests.extreme_voltage.t2_rocket.desc": "This new rocket shouldn’t be too difficult to assemble, but you’ll notice a clear jump in material costs compared to your previous model.\n\nThe upgraded &6Rocket Alloys&r now require both &bDistilled Water&r and &bCryogenized Fluix&r for cooling.\n\nMake sure you've fully set up your &eTitanium&r production line, as you're going to need a lot of it going forward! A continuous production line will save you a lot of frustration down the road.", @@ -1819,7 +2137,7 @@ "quests.extreme_voltage.nuclear_turbine.desc": "With Fission, you gain access to a brand new &6Dedicated Turbine&r! (The normal Large Steam Turbine can only handle regular Steam.)\n\nIt works just like the previous turbines, but similar to the Gas Turbine, it requires at least an &5EV Rotor Holder&r to operate.\n\nThe coils inside this turbine must be &7Cupronickel&r, and they don’t affect performance in any way (but we have to admit, they look pretty good).\n\nIn this quest, we suggest two &aRotors&r that fit nicely for the turbine at this stage, but feel free to experiment and use any &brotor&r that suits your setup best.", "quests.extreme_voltage.reactor_components.title": "Reactor Heat Management", "quests.extreme_voltage.reactor_components.subtitle": "Active and Passive ways to cool your reactor", - "quests.extreme_voltage.reactor_components.desc.1": "One of the most interesting features of the Fission Reactor is its ability to have blocks added inside to modify its &emaximum heat capacity&r.\n\nYou can place certain &6Component Blocks&r within the corners of the reactor, allowing for up to &e20 blocks&r in total. As an example, you can use &9Item Holders&r and insert cooling items with input buses, which help manage heat buildup.\n\nIt’s also important to note that Item Holders are the &conly way&r to enable the &brecipe processing&r part of the Fission Reactor.\n\nSmart internal configuration will make the difference between a stable reactor and one on cooldown, so plan your layout carefully!", + "quests.extreme_voltage.reactor_components.desc.1": "One of the most interesting features of the Fission Reactor is its ability to have blocks added inside to modify its &emaximum heat capacity&r.\n\nYou can place certain &6Component Blocks&r within the corners of the reactor, allowing for up to &e20 blocks&r in total. As an example, you can use &9Material Holders&r and insert cooling items with input buses, which help manage heat buildup.\n\nIt’s also important to note that Material Holders are the &conly way&r to enable the &brecipe processing&r part of the Fission Reactor.\n\nSmart internal configuration will make the difference between a stable reactor and one on cooldown, so plan your layout carefully!", "quests.extreme_voltage.reactor_components.desc.2": "As discussed earlier, running three &eThorium Rods&r will push your reactor’s heat to around &c420&r, just above the default limit. However, you can safely reach that threshold by improving your &6reactor insulation&r.&r\n\nAdding &e10 Framed Glacial Wool&r or &e20 Framed AES Insulation&r blocks inside the structure will raise your reactor’s Max Heat to &e420&r, allowing you to operate with three Thorium Rods without triggering cooldown mode.&r\n\nKeep in mind, though, that increasing the number of active rods will also accelerate their &adurability loss&r. This means each rod will produce less steam per tick on average, reducing its &aefficiency&r, but on the other hand, it will &bspeed up fission material production&r significantly.\n\nWhether you prefer &aefficiency&r or &bthroughput&r is entirely up to you - that’s the balancing act at the heart of mastering the &6Fission Reactor&r.", "quests.extreme_voltage.heat_exchanger.title": "Heat Exchanger", "quests.extreme_voltage.heat_exchanger.subtitle": "All that heat's gotta go somewhere!", @@ -1830,8 +2148,8 @@ "quests.extreme_voltage.refrigerant_pellet.desc": "The &dPlutonium Fuel Rod&r runs at extremely high temperatures - so high, in fact, that you’ll need to use &bRefrigerant Pellets&r inside your reactor to prevent it from going into cooldown mode.\n\nThese pellets are quite expensive to produce, but you should still be able to mass-produce them early on, or at least enough to keep your first few plutonium rods operational. You need approximatively &9256&r to run a full Plutonium Rod.\n\nLater on, if you don’t like constantly crafting these consumables, you’ll gain access to &6advanced reactor components&r. With those installed, your reactor will be able to safely reach up to &e600 Max Heat&r, greatly improving efficiency and stability.\n\nInvest in better internal parts early, to spend less time babysitting your power core.", "quests.extreme_voltage.important_info.title": "Before starting", "quests.extreme_voltage.important_info.subtitle": "Not an easy place to start", - "quests.extreme_voltage.important_info.desc.1": "Before you start building your base on &cMars&r, here are a few important tips to help you settle in successfully.&r\n\nWhile exploring, you might come across &6Martian Ruins&r containing &eAtomic Casings&r and &eHigh Temperature Casings&r. These won’t replace the massive number you’ll need later, but they can give you a small head start while scouting for the perfect base location.&r", - "quests.extreme_voltage.important_info.desc.2": "When it comes to your Martian infrastructure, there are two main approaches:&r\n\nβ€’ &aPreparation-focused&r: Build everything required for your full &6Fission Line&r before establishing your base. This means an enormous material investment, but allows you to be self-sufficient once operational.\n\nβ€’ &aProgressive setup&r: Start smaller with your &6Nuclear Fuel Factory&r, your first &6Fission Reactor&r (running on &eThorium&r), and a &6Nuclear Turbine&r. This route is faster to start, but managing energy will be rough until your fission system stabilizes.\n\nEither way, we always recommend having an exploration mission before you start settling down!", + "quests.extreme_voltage.important_info.desc.1": "Before you start building your base on &cMars&r, here are a few important tips to help you settle in successfully.&r\n\nBefore crafting up an entire base to carry in your pocket, we always recommend having an exploration mission before you start setting down!", + "quests.extreme_voltage.important_info.desc.2": "When it comes to your Martian infrastructure, there are two main approaches:&r\n\nβ€’ &aPreparation-focused&r: Build everything required for your full &6Fission Line&r before establishing your base. This means an enormous material investment, but allows you to be self-sufficient once operational.\n\nβ€’ &aProgressive setup&r: Start smaller with your &6Nuclear Fuel Factory&r, your first &6Fission Reactor&r (running on &eThorium&r), and a &6Nuclear Turbine&r. This route is faster to start, but managing energy will be rough until your fission system stabilizes.", "quests.extreme_voltage.important_info.desc.3": "Because every kind of combustion-based energy won't work on Mars, you’ll want to bring a good stock of &bLapotron Crystals&r to power your first recipes and oxygen systems.\n\nWe also strongly recommend setting up a &6Distillation Tower&r. &eMartian Air&r can be processed into breathable &bAir&r and several other useful gases. Alternatively, everything for Compressed Nitrox can come from the local Semiheavy Ammoniacal Water.\n\nSurvival on Mars isn’t about luck, it’s about preparation!", "quests.extreme_voltage.important_info.task": "It's Marsing Time", "quests.extreme_voltage.dense_lead.title": "Faster Dense Lead Plates", @@ -1859,7 +2177,7 @@ "quests.extreme_voltage.uranium_line.desc": "To process &eUranium&r and its &eUranium 235&r &eIsotope&r, you’ll need to set up a dedicated small processing line. \n\nRest assured, you can &aloop the Fluorine&r, so the only input you’ll need is &eUraninite Dusts&r.\n\nYou can build this line on Earth, but it may be more convenient to operate it on Mars, where the majority of Uraninite Ore should be harvested.", "quests.extreme_voltage.radioactive_waste.title": "Radioactive Waste", "quests.extreme_voltage.radioactive_waste.subtitle": "One man's trash is another man's progression material", - "quests.extreme_voltage.radioactive_waste.desc": "Radioactive Waste is a &ccritical byproduct&r for crafting your next fuel rods, so always ensure there’s enough space to output it. If the Fission Reactor cannot find an available output, it will simply &cvoid the waste&r, losing valuable resources.\n\nWe recommend either:\n- Installing a dedicated Output Hatch in &blocked mode&r\n- Using a Super chest with an Advanced Fluid Detector Cover\n\nIf you have an &dME Network&r on Mars, another option is the recently unlocked &6ME Output Hatch&r.", + "quests.extreme_voltage.radioactive_waste.desc": "Radioactive Waste is a &ccritical byproduct&r for crafting your next fuel rods, so always ensure there’s enough space to output it. If the Fission Reactor cannot find an available output, it will simply &cvoid the waste&r, losing valuable resources.\n\nWe recommend either:\n- Installing a dedicated Output Hatch in &blocked mode&r\n- Using a Super Tank with an Advanced Fluid Detector Cover\n\nIf you have an &dME Network&r on Mars, another option is the recently unlocked &6ME Output Hatch&r.", "quests.extreme_voltage.uranium_rod.subtitle": "Finally, some real power!", "quests.extreme_voltage.uranium_rod.desc.1": "This is the second-generation reactor fuel - it offers &a4Γ— more durability&r and produces &a5Γ— more steam&r compared to a standard &eThorium Rod&r. However, there are important trade-offs you must plan for.\n\n&9Production cost and setup:&r\nβ€’ Producing this fuel consumes &eThorium Rods&r continuously, so it’s recommended to dedicate a separate &6Fission Reactor&r for each of these advanced rods, although if you're up for the challenge of juggling them in one reactor, that's an option too.", "quests.extreme_voltage.uranium_rod.desc.2": "Heat and mitigation options: A single Uranium Fuel Rod generates about &c435 Heat&r inside a standard reactor, far above the default limit. To handle this you have three main options:\n\n&7β†’&r &eInstall 20 Framed Glacial Wool&r blocks inside the reactor to raise &cMax Heat&r to &e440&r, allowing one rod to run safely.\n\n&7β†’&r &6Use Material Holders&r and pump large quantities of &bDry Ice&r to drop the reactor temperature. This requires a robust infrastructure and access to a &bLiquid CO2 fluid vein&r on Mars.\n\n&7β†’&r &bUse Refrigerant Pellets&r placed in Material Holders. They behave like Dry Ice but are far more potent. Note that Refrigerant Pellets consume a decent amount of &eFluorine&r to craft, and you do not have infinite Fluorine at this point.\n\nObviously, you can also make your own sauce and mix all of these options together.", @@ -1972,7 +2290,7 @@ "quests.extreme_voltage.nano_ev.desc": "These could actually be cheaper to make than the &bMicroprocessor&r equivalent if you manage to mass-produce &bNano CPU&r efficiently. Once your &cFission Line&r is fully automated, these circuits will become an extremely cost-effective option for your high-end builds.\n\nAlso, note that you can use advanced SMD components from now on!", "quests.extreme_voltage.nano_iv.subtitle": "Getting closer to LuV technology", "quests.extreme_voltage.nano_iv.desc": "These &1IV&r Circuits still require one &bNano CPU Chip&r, so in that regard they aren’t actually cheaper than the &bMicroprocessors&r.\n\nHowever, they will be essential for progressing toward the next tier of technology.", - "quests.extreme_voltage.nano_luv.subtitle": "Your first IV circuits", + "quests.extreme_voltage.nano_luv.subtitle": "Your first LuV circuits", "quests.extreme_voltage.nano_luv.desc": "Congrats on successfully reaching a new tier of circuits! These &dLuV&r Circuits won’t have much use just yet, as you can’t craft any &dLuV&r machines before completing the &bPlatline&r, but they’ll still be valuable for crafting new &dAE2&r tools and components.\n\nMost of these recipes will require an &1IV&r Assembler, so be sure you have one ready.", "quests.extreme_voltage.me_part.title": "ME Multiblock Parts", "quests.extreme_voltage.me_part.subtitle": "Connect GregTech directly to your AE2 network", @@ -1981,7 +2299,7 @@ "quests.extreme_voltage.tunsgten_line_step.title": "Looping Soda Ash", "quests.extreme_voltage.tunsgten_line_step.subtitle": "You may not want to mine it forever", "quests.extreme_voltage.tunsgten_line_step.desc.1": "Looping the &5Tungsten Line&r perfectly isn’t the easiest task, so we’ll use this quest to guide you in the right direction.\n\nThe &bSalt&r you obtain should be combined with &aCarbon Dioxide&r and &6Ammonia&r to produce &3Ammonium Chloride&r, which you can then electrolyze to recycle your &6Ammonia&r and obtain the &9Hydrochloric Acid&r needed for &eSodium Tungstate&r.\n\nThis process also produces &bSodium Bicarbonate&r, which you should electrolyze to recover your &dSoda Ash&r.", - "quests.extreme_voltage.tunsgten_line_step.desc.2": "Finally, to close the loop, you need to manage your &aCarbon Dioxide&r. You can either split a portion of your &dSoda Ash&r and electrolyze it to recover &aCarbon&r and &9Oxygen&r, allowing you to get back some &aCarbon Dioxide&r, or brute force it by using &bLiquid Air&r distillation to produce an infinite supply of &aCarbon Dioxide&r.", + "quests.extreme_voltage.tunsgten_line_step.desc.2": "Finally, to close the loop, you need to manage your &aCarbon Dioxide&r. You can electrolyze the &dSodium Bicarbonate&r and &aCarbon Dioxide&r and combine the the &bCarbon&r and &bOxygen&r you got from Calcilte and Lithium. Or brute force it by using &bLiquid Air&r distillation to produce an infinite supply of &aCarbon Dioxide&r.", "quests.extreme_voltage.tunsgten_line_step_1.title": "The new Tungsten Line", "quests.extreme_voltage.tunsgten_line_step_1.subtitle": "Why? Just why?", "quests.extreme_voltage.tunsgten_line_step_1.desc": "The &eTungsten Line&r in TerraFirmaGreg has been completely reworked and you’ll be happy (or not) to know that it’s now &cmuch harder&r.\n\nIt’s possible to &afully loop&r every material in the Tungsten Line, but doing so requires a lot of engineering. Alternatively, you can brute-force your way through by &cmass-producing&r the resources you need.\n\nA little tip: &4Mars&r has several &agood ore veins&r for &eSoda Ash&r and &eTungsten&r.\n\nTake your time, optimize, and the Tungsten Line will become the foundation of your mid-to-late game progress.", @@ -2006,8 +2324,8 @@ "quests.extreme_voltage.wood_distillation.desc.2": "These three are the important products from &aWood Vinegar&r Distillation:\n\n&9-&r Acetic Acid: useful to make more Acetone\n\n&9-&r Methanol: a moderately important hydrocarbon\n\n&9-&r Acetone: useful for Epoxy and Gasoline", "quests.extreme_voltage.wood_distillation.desc.3": "It's also possible to use a \"full combo\" of 4 &3DTs&r - input &aCharcoal Byproducts&r into a first tower, splitting into &aWood Tar&r, &aWood Gas&r and &aWood Vinegar&r.\n\nThis isn't the most efficient cost-to-production ratio, but the option is there if you get bored.", "quests.extreme_voltage.wood_distillation.task": "Any of these", - "quests.extreme_voltage.new_qol.title": "New QoL?", - "quests.extreme_voltage.new_qol.desc": "Here's some useful tools that you've unlocked with the EV Assembler.", + "quests.extreme_voltage.new_qol.title": "New quality of life tools?", + "quests.extreme_voltage.new_qol.desc": "Here's some useful gadgets that you've unlocked with the EV Assembler.", "quests.extreme_voltage.building_gadgets.title": "Building Gadgets", "quests.extreme_voltage.building_gadgets.subtitle": "Paving over beautiful landscapes with just one press of a button!", "quests.extreme_voltage.building_gadgets.desc": "Looking to expand your factory building even further? Want to just paste down another multiblock? Or is that mountain blocking your view?\n\nLook no further than Building Gadgets, a collection of tools that can do all that and more. These are your perfect building tools going forward, and they come with a manual too!", @@ -2015,7 +2333,7 @@ "quests.extreme_voltage.gasoline.desc": "&aGasoline&r is an extremely powerful Combustion Fuel. It's over &63 times&r as energy dense as &dDiesel&r!\n\n&9Note:&r This Combustion Fuel exists solely as a &echallenge&r for you to overcome if you desire to take on it.\n\nIt's completely &doptional&r, so we'll let you figure out how to obtain it, without any further tips.", "quests.extreme_voltage.radiation.title": "Dealing with Radiation", "quests.extreme_voltage.radiation.subtitle": "Extra Spicy Materials", - "quests.extreme_voltage.radiation.desc.1": "While GregTech doesn't have any sort of \"ambient radiation\" like some other mods do, &aradioactive materials&r are still dangerous to the player when held! This applies to any item that says it's &eCarcinogenic&r and is caused by &eAny Contact&r.\n\nThere's a few ways to mitigate this, and the easiest is to just avoid contact with the items in the first place - move them around with pipes, backpacks, or even Small Vessels. The less time you have them in your inventory, the better!", + "quests.extreme_voltage.radiation.desc.1": "While GregTech doesn't have any sort of \"ambient radiation\" like some other mods do, &aradioactive materials&r are still dangerous to the player when held! This applies to any item that says it's &4Radioactive&r and is caused by &eAny Contact&r.\n\nThere's a few ways to mitigate this, and the easiest is to just avoid contact with the items in the first place - move them around with pipes, backpacks, or even Small Vessels. The less time you have them in your inventory, the better!", "quests.extreme_voltage.radiation.desc.2": "Besides this, you'll want some other ways to protect yourself. Wearing equipment tagged as &e#ppe_armor&r in all four slots will protect you from radiation. However, this will still damage the equipment over time (at a rate equivalent to how much the radiation would affect you), &oexcept&r for the &6Hazardous Material Suit&r, which will never take damage from it.\n\nThe downside is that the hazmat suit isn't a space suit, so on Mars it's up to you whether you want to set up an enclosed Oxygenated base for the hazmat suit, or just take the durability damage on your space suit.", "quests.extreme_voltage.radiation.desc.3": "Lastly, you can check your radiation poisoning at any time with the &a/medical_condition query&r command. If it gets too high, you will start taking occasional damage or just suddenly die, so you want to prevent it.\n\nThe only other way to treat it is to craft and eat &bRad Away&r pills, which will each remove 50%% of the build-up.", "quests.extreme_voltage.radiation.task": "Safety First!", @@ -2027,6 +2345,19 @@ "quests.extreme_voltage.martian_sludge.desc": "Centrifuge the Hexafluorosilic Acid to get your Fluorine back, along with some &6Martian Sludge&r - required for Radon and Nuclear Residue.", "quests.extreme_voltage.large_generators.title": "Extreme Power Generation", "quests.extreme_voltage.large_generators.desc": "The various single-block generators only go up to HV, so from here on, you'll have to use multiblocks to generate more power. Two of the best options at EV are the &dLarge Gas Turbine&r and &dLarge Combustion Engine&r, so head over to the GregTech Energy chapter to learn more about them.", + "quests.extreme_voltage.large_centrifuge.subtitle": "Material Carousel", + "quests.extreme_voltage.large_centrifuge.desc": "The &6Large Centrifugal Unit&r is a mandatory multiblock for your Fission Line.\n\nIt supports up to &52x EV Energy Hatches&r, allowing it to process &1IV-tier&r recipes using the same mechanic as the EBF, so it should feel familiar.\n\nThis machine can operate in two modes: &bCentrifuge&r and &6Thermal Centrifuge&r. You can easily switch between them directly in the controller interface, but unfortunately can't be controlled with AE2 or other automation.\n\nWith this upgrade, you can finally bring your &aore processing&r to a whole new level of speed.", + "quests.extreme_voltage.btx.title": "BTX Fuel", + "quests.extreme_voltage.btx.subtitle": "Long lost cousin of Nitrobenzene", + "quests.extreme_voltage.btx.desc.1": "The &eBTX Fuel&r is an upgrade over &eReformate Gas&r, being around five times more potent per mB. The process is much more tedious, but it provides a significant upgrade for running your &6Large Gas Turbines&r. Like its predecessor, this fuel is fully renewable and can be produced entirely through &aTree Processing&r.\n\nTo explain how &eBTX Fuel&r is made, we divide its processing into three parts: the &bBTX Fuel crafting&r itself, the crafting of the &eCatalyst&r, and finally how to loop &eRhenium&r and &ePlatinum&r.", + "quests.extreme_voltage.btx.desc.2": "Let’s start with the &bBTX Fuel&r crafting. You will need to mix &eReformate Gas&r with the &eCatalyst&r and a small amount of &ePropene&r. A new processing path allows you to produce &eMethanol&r from &eSyngas&r, which can then be distilled into the required Propene. This is a good way to reuse the Syngas generated during &eReformate Gas&r production.\n\nOnce that is done, distilling &eWood Tar&r in a &6Distillation Tower&r will provide everything else you need to complete the mix. Simple enough. In the next quests, we will cover how to craft the &eCatalyst&r and how to recycle it efficiently.", + "quests.extreme_voltage.btx_catalyser.title": "Platinum-Rhenium ZSM-5 Catalyzer", + "quests.extreme_voltage.btx_catalyser.subtitle": "What a complex name", + "quests.extreme_voltage.btx_catalyser.desc": "To craft the &ePlatinum-Rhenium ZSM-5 Catalyzer&r, you will need to set up infinite sources of &aLye&r, &aSodium&r, and &dNether Quartz&r, as well as &aAmmonia&r and &aEthanol&r. The &bAluminum&r will be fully looped, while the other materials will only be partially recovered.\n\nIf you are unsure about &dNether Quartz&r, take a look at the recipe chain starting from &eSand&r. &aSodium&r, on the other hand, can be obtained easily from &bSea Water&r processing, and Lye can be from Wood Ash.\n\nFinally, mix everything together with some &5Platinum&r and &5Rhenium&r to obtain your &eCatalyst&r. The good news is that both Platinum and Rhenium are fully recycled in this process, so there is no need to worry - you will only have to mine them once.", + "quests.extreme_voltage.btx_loop.title": "Recycling the Used Catalyzer", + "quests.extreme_voltage.btx_loop.subtitle": "Getting back as much as you can", + "quests.extreme_voltage.btx_loop.desc.1": "The last part of this chain consists in recycling your Used Catalyzer. The overall process is fairly straightforward, and the main challenge will be maintaining a continuous supply of &aReinforced Epoxy Resin Plates&r and &eGlue&r.\n\nIf you still have your &2tapping system&r in place, it should be more than sufficient to produce all the resin required to craft your Glue. Alternatively, using an &bExtractor&r on logs is also a perfectly viable option. This method is slightly more &cpower-hungry&r, but the choice is entirely up to you depending on your infrastructure.", + "quests.extreme_voltage.btx_loop.desc.2": "A small remark regarding &9Diluted Hydrochloric Acid&r: it can be easily produced by reacting &bWater&r with &aChlorine&r. You could store your &dHypochlorous Acid&r, or &7Electrolyze&r it if you wish to recover &fhalf of your Chlorine&r.\n\nAs for &6Sulfuric Acid&r, you should already have access to an &ainfinite source of Sulfur&r through your &ePetrochemical Distillation&r setup. If this is not yet the case, we strongly advise you to address this as soon as possible. Alternatively, the &7Coal Tar&r obtained while producing &bReformate Gas&r can be reconverted into &2Hydrogen Sulfide&r and ultimately refined back into &6Sulfur&r.", "quests.gregtech_energy": "GregTech Energy", "quests.gregtech_energy.subtitle": "So how does all of that work?", "quests.gregtech_energy.start.title": "Let's do some explaining", @@ -2035,14 +2366,14 @@ "quests.gregtech_energy.start.subtitle": "It's not as bad as you think", "quests.gregtech_energy.moving.title": "Moving your Energy", "quests.gregtech_energy.moving.subtitle": "So, energy transfer, huh", - "quests.gregtech_energy.moving.desc": "Moving Energy in GregTech means understanding a few core mechanics.\n\nFirst, &bEnergy Tiers&r. From &aLV&r to &cUHV&r, everything in GregTech β€” wires, machines, recipes β€” is tied to a tier. You’ll need the &ecorrect cable material&r to move energy. For example:\n&8β€’&r Tin wire = &aLV&r\n&8β€’&r Copper wire= &bMV&r\n\nSecond, you’ve got the &bAmperage&r mechanic. Think of 1 Amp (or 1A) as &ea packet of energy&r. Machines request energy \"packets\", which then get sent down the wire.\n&8β€’&r 1A of LV = &a32 EU&r\n&8β€’&r 1A of HV = &e512 EU&r\n\nMost machines and energy hatches will only request &62A at maximum&r.\n\nMastering these two ideas is key before going further into energy distribution.", + "quests.gregtech_energy.moving.desc": "Moving Energy in GregTech means understanding a few core mechanics.\n\nFirst, &bEnergy Tiers&r. From &aLV&r to &cUHV&r, everything in GregTech β€” wires, machines, recipes β€” is tied to a tier. You’ll need the &ecorrect cable material&r to move energy. For example:\n&7β€’&r Tin wire = &aLV&r\n&7β€’&r Copper wire = &bMV&r\n\nSecond, you’ve got the &bAmperage&r mechanic. Think of 1 Amp (or 1A) as &ea packet of energy&r. Machines request energy \"packets\", which then get sent down the wire.\n&7β€’&r 1A of LV = &a32 EU&r\n&7β€’&r 1A of HV = &e512 EU&r\n\nMost machines and energy hatches will only request &62A at maximum&r.\n\nMastering these two ideas is key before going further into energy distribution.", "quests.gregtech_energy.moving.task": "I understand", "quests.gregtech_energy.transformer.title": "The Super Transformer", "quests.gregtech_energy.transformer.subtitle": "Better than Optimus Prime", - "quests.gregtech_energy.transformer.desc": "For every problem, GregTech has a multiblock solution. Enter the &dActive Transformer&r.\n\nThis beast is your ultimate transformer. It can channel energy between any tiers β€” from &aLV&r to &cUHV&r β€” with no explosions. But that's not even the best part.\n\nIt can transmit energy using Laser Pipes.\n&8β€’&r Lasers send absurd amounts of Amps.\n&8β€’&r No loss. No cables. Just pure energy.\n&8β€’&r Only one catch: it &chas to be in a perfectly straight line&r.\n\nWhen cables feel weak, &luse lasers.", + "quests.gregtech_energy.transformer.desc": "For every problem, GregTech has a multiblock solution. Enter the &dActive Transformer&r.\n\nThis beast is your ultimate transformer. It can transform energy between any tiers β€” from &aLV&r to &cUHV&r β€” without caring about amps or a mess of single block transformers.\n\nBut that's not even the best part: it can transmit energy using Laser Pipes.\n&7β€’&r Lasers send absurd amounts of Amps.\n&7β€’&r No loss. No cables. Just pure energy.\n&7β€’&r Only one catch: it &chas to be in a perfectly straight line&r.\n\nWhen cables feel weak, &luse lasers.", "quests.gregtech_energy.moving_wire.title": "Moving with wires", "quests.gregtech_energy.moving_wire.subtitle": "Funky to place", - "quests.gregtech_energy.moving_wire.desc": "Moving energy around in GregTech can be tricky β€” &bmost cables are lossy&r. For every block, for every amp, you might lose energy as it travels through your wires. But don’t worry, there are solutions:\n\n&8β€’&r Cover your wires with rubber. By doing so, you'll significantly reduce energy loss over distance. Just check the quest items for a reference.\n&8β€’&r Use higher-tier cables. Platinum cables, for example, only lose 1 EU per block β€” practically nothing when compared to the 8192 EU it can carry.\n&8β€’&r &bSuperconductors&r. These beauties are a bit pricier, but they have &9zero loss&r. They don’t need rubber covers, and won't zap you either. Just be aware that they're usually only craftable near the end of their tier.\n\nOptimize your energy flow β€” &breduce losses&r and make your systems more efficient.", + "quests.gregtech_energy.moving_wire.desc": "Moving energy around in GregTech can be tricky β€” &bmost cables are lossy&r. For every block, for every amp, you might lose energy as it travels through your wires. But don’t worry, there are solutions:\n\n&7β€’&r Cover your wires with rubber. By doing so, you'll significantly reduce energy loss over distance. Just check the quest items for a reference.\n\n&7β€’&r Use higher-tier cables. Platinum cables, for example, only lose 1 EU per block β€” practically nothing when compared to the 8192 EU it can carry.\n\n&7β€’&r &bSuperconductors&r. These beauties are a bit pricier, but they have &9zero loss&r. They don’t need rubber covers, and won't zap you either. Just be aware that they're usually only craftable near the end of their tier.\n\nOptimize your energy flow β€” &breduce losses&r and make your systems more efficient.", "quests.gregtech_energy.moving_wire.task": "I finished looking at wires", "quests.gregtech_energy.moving_amp.title": "Managing Amp", "quests.gregtech_energy.moving_amp.subtitle": "It burns?", @@ -2059,6 +2390,7 @@ "quests.gregtech_energy.lv_generator.desc.2": "&e1. Steam Power&r:\n\nThis is the most classic method. You can convert the steam produced by your High Pressure Boilers into EU using a Steam Turbine.\n\nIt generates &e32 EU/t&r with &e64 mB/t&r of steam. If you follow this path, we highly recommend making a Large Bronze Boiler, which can easily be fueled with Lava, Creosote, or other burnable solid fuels (check JEI!).", "quests.gregtech_energy.lv_generator.desc.3": "&e2. Rotational Power&r:\n\nYou can use Create's rotational power with an Alternator to generate RF, then convert it into EU using an &7LV&r Converter.\n\n(Check the Alternators quest in the LV Chapter for more details.)", "quests.gregtech_energy.lv_generator.desc.4": "&e3. Biodiesel Power (TFG Exclusive)&r:\n\nCanola and Sunflowers can be processed into large amounts of Seed Oil. Combine it with TFC Alcohol to produce Biodiesel.\n\nThis method may seem more complex, but Biodiesel is extremely powerful during &7LV&r and &bMV&r tiers. It scales well into &5EV&r with &eCetane-Boosted Diesel&r later on.\n\nTo use Biodiesel, you’ll need a &7LV&r Combustion Generator. While it may be slightly more expensive, every mB of Biodiesel provides a high amount of EU, making it easier to transport and store.\n\nIt's your choice how you want to start your energy production.", + "quests.gregtech_energy.lv_generator.desc.5": "&e4. Syngas Power (TFG Exclusive)&r:\n\nWith the help of the &6Coke Oven&r and a &6Vacuum Chamber&r, you can obtain this early-game gas. It is not the strongest option, but it is sufficient if you want to follow a &eGas-Only&r power path. A &6Create&r-based tree farm is highly recommended to get the best efficiency out of it.", "quests.gregtech_energy.lv_generator.task": "Any LV Generator", "quests.gregtech_energy.mv_generator.title": "The MV Generators", "quests.gregtech_energy.mv_generator.subtitle": "Basically the same as the LV ones", @@ -2083,7 +2415,7 @@ "quests.gregtech_energy.lgt.title": "The Large Gas Turbine", "quests.gregtech_energy.lgt.subtitle": "The fan favorite", "quests.gregtech_energy.lgt.desc.1": "The &6Large Gas Turbine&r β€” also known as &dLGT&r β€” is one of your two main sources of energy production for most of the modpack. You’ll be able to build your first one at &5EV&r using Stainless Steel. It can carry you from &5EV&r all the way to &dLuV&r, until you feel ready to upgrade to the Large Plasma Turbine.\n\nThat said, many players can finish TerraFirmaGreg using only these turbines β€” provided you have a strong infrastructure to handle the gas demands of high-tier LGTs.\n\nTo build the LGT, you’ll need the usual Maintenance Hatch and Input Hatch. This turbine requires a Muffler Hatch, but it does not use an Output Hatch.", - "quests.gregtech_energy.lgt.desc.2": "The default output is &e4096 EU/t&r. That output &cdoubles&r with each upgrade to the Rotor Holder after &5EV&r. For example, an LGT using an IV Rotor Holder (Γ—2) with a HSS-E Turbine Rotor (280%% power) will produce:\n4096 Γ— 2 Γ— 2.8 = &e22,937.6 EU/t&r β€” that's about &a2.8A of IV&r.\n\nTo fully extract that energy, you’ll need at least a IV 4A Dynamo Hatch, since a normal Dynamo Hatch only handles 2A.\n\nJust so you know: the Efficiency stat of a Turbine Rotor increases the duration of the recipe, which means you get more power from each mB of fuel.\n\nLastly, if the Dynamo Hatch fills up, the LGT will automatically slow down and pause fuel usage, gradually reducing rotor speed until it resumes again. So you won't lose any fuel during a backup.", + "quests.gregtech_energy.lgt.desc.2": "The default output is &e4096 EU/t&r. That output &cdoubles&r with each upgrade to the Rotor Holder after &5EV&r. For example, an LGT using an IV Rotor Holder (Γ—2) with a HSS-E Turbine Rotor (280%% power) will produce:\n4096 Γ— 2 Γ— 2.8 = &e22,937.6 EU/t&r β€” that's about &a2.8A of IV&r.\n\nTo fully extract that energy, you’ll need at least a IV 4A Dynamo Hatch, since a normal Dynamo Hatch only handles 2A.\n\nJust so you know: the Efficiency stat of a Turbine Rotor increases the duration of the recipe, which means you get more power from each mB of fuel.\n\nLastly, if the Dynamo Hatch fills up, the LGT will start voiding excess, so you'll want to turn your LGTs off when your battery buffer or substation starts getting full, via an Advanced Energy Detector Cover and Machine Controller Cover.", "quests.gregtech_energy.lst.title": "The Large Steam Turbine", "quests.gregtech_energy.lst.subtitle": "It... exists", "quests.gregtech_energy.lst.desc.1": "The &6Large Steam Turbine&r β€” or &dLST&r β€” might not be the most common Large Generator in standard GregTech, but thanks to its early unlock at &6HV&r and the fact that Large Boilers are stronger in TerraFirmaGreg, it definitely has its place.\n\nTo make it work, you’ll need an Input Hatch for steam, an Output Hatch for Distilled Water, and of course a Maintenance Hatch. That’s all you need!\n\nLike all Large Turbines, you’ll place a Rotor Holder on one side and a Dynamo Hatch on the other to extract power. For the LST, the Rotor Holder must be at least &6HV-tier&r. Each Rotor Holder upgrade &cdoubles&r the output and increases efficiency slightly.", @@ -2099,9 +2431,35 @@ "quests.gregtech_energy.lpt_fuel.task": "I don't want to make a bucket of Plasma", "quests.gregtech_energy.lgt_fuel.title": "Gas Fuels", "quests.gregtech_energy.lgt_fuel.subtitle": "Everyone's favorite", - "quests.gregtech_energy.lgt_fuel.desc.1": "When we speak about gas fuels, we’re really talking about just one β€” &eNitrobenzene&r.\n\nYou’ll be able to produce it once you reach &6HV&r, and we &astrongly recommend it&r if you’re planning to use the Large Gas Turbine.\n\nBefore reaching Nitrobenzene, &eBenzene&r is a solid option to get started. You can obtain it from a tree farm or by processing Heavy Oil, if you’re lucky enough to have some nearby.", - "quests.gregtech_energy.lgt_fuel.desc.2": "Making Nitrobenzene involves several steps β€” until you craft your first Large Chemical Reactor (LCR), which will let you skip many sub-steps and simplify the process.\n\nIt’s nothing too complicated: combine Hydrogen, Nitrogen, and Oxygen to make &eNitric Acid&r in infinite quantities. As for Sulfuric Acid, you probably already know it’s just Sulfur and Water β€” right?\n\nOnce you get this chain going, Nitrobenzene becomes one of the most powerful fuels for gas burning.", + "quests.gregtech_energy.lgt_fuel.desc.1": "All of these fuels are used for &2Gas Turbines&r β€” ranked here from the least efficient to the best.\n\nThe &bGas Turbine&r is overall a bit cheaper than its counterpart, the &bCombustion Generator&r, but &eGas Fuels&r are also less energy-dense than combustion fuels. This does not mean they are worse β€” only that you will need more millibuckets (mB) to achieve the same output. Later in progression, they can be used inside the &2Large Gas Turbine&r, a very powerful multiblock that requires a bit more management.", + "quests.gregtech_energy.lgt_fuel.desc.2": "In TerraFirmaGreg, &eGas Fuels&r have been widely rebalanced. &6We do not recommend relying on &eBenzene&r or &eNitrobenzene&r, as they have been heavily nerfed.&r At the start of &7LV&r, we advise using &eSyngas&r or &eLPG&r if you want to process your Oilsands. Later on, you can upgrade to &eReformate Gas&r at &bMV&r and further improve its production once you unlock the &2Cracker&r.", "quests.gregtech_energy.lgt_fuel.task": "Gas in a bucket?", + "quests.gregtech_energy.syngas.title": "Syngas", + "quests.gregtech_energy.syngas.subtitle": "I can get Gas fuel at LV?", + "quests.gregtech_energy.syngas.desc": "The &eSyngas&r is a new TFG gas fuel. You can unlock it very early at &8ULV&r and use it in your first &6Gas Turbines&r during &7LV&r. It is not a particularly strong fuel, but it can be transformed into valuable byproducts such as &eLubricant&r, &eMethane&r, and &eHydrogen&r.\n\nEven though it is not the most powerful option and can be difficult to scale, using only three &6Coke Ovens&r and one &6Brewery&r or &6Vacuum Chamber&r you can produce a steady supply that should be sufficient to reach &bMV&r and unlock the far stronger &eReformate Gas&r.", + "quests.gregtech_energy.reformate_gas.title": "Reformate Gas", + "quests.gregtech_energy.reformate_gas.subtitle": "Is that reformate Benzene?", + "quests.gregtech_energy.reformate_gas.desc.1": "The &9Reformate Gas&r is a strong and new gas fuel taking the usual role of Benzene at &bMV&r.\n\nTo produce it, you will need to build a &6Liquefaction Tower&r and obtain some &5Rhenium&r from the &6Tarkianite&r veins found only in dry and hot climates. Two &6Pyrolyse Ovens&r β€” one producing Creosote and the other Wood Tar β€” will provide all the materials required to generate this fuel. Remember that you can produce steam with a &6Fluid Heater&r if you want to simplify the setup.", + "quests.gregtech_energy.reformate_gas.desc.2": "It is also important to consider the improved yield available at &6HV&r when using a &6Cracker&r. This will allow you to loop most of your &5Rhenium&r, making Reformate Gas effectively an infinite fuel.\n\nAdding &9Nitrogen&r and &9Hydrogen&r to the process will further strengthen your production throughput.", + "quests.gregtech_energy.btx.title": "BTX Fuel", + "quests.gregtech_energy.btx.subtitle": "Not a Korean boy band", + "quests.gregtech_energy.btx.desc": "Obtaining the &5EV Energy Hatches&r means you can finally get &eBTX Fuel&r (Benzene-Toluene-Xylene) production started. This fuel will last you for a very long time and remains competitive in a &6Large Turbine&r well into the late game. Even if it looks like a massive undertaking at first, rest assured that it will be well worth the effort.\n\nThis production line requires a large number of wood-based products. Sap becomes relevant again due to the need for &eGlue&r β€” you can either tap your trees passively or extract it directly from logs. You will also need to distill &eWood Tar&r in a &6Distillation Tower&r. Beyond that, make sure you can produce infinite amounts of &eEthanol&r, &eNether Quartz&r, &eSodium&r, &eAmmonia&r, &eLye&r, and &eReinforced Epoxy Resin Sheets&r.\n\nIf you want a more detailed breakdown of the BTX Fuel production chain, refer to the &5EV&r Chapter.", + "quests.gregtech_energy.fission_rod.title": "Fission Fuels", + "quests.gregtech_energy.fission_rod.subtitle": "Don't get me too hot", + "quests.gregtech_energy.fission_rod.desc.1": "The Earth Fission materials are NYI but may come sooner than later", + "quests.gregtech_energy.fission_rod.desc.2": "", + "quests.gregtech_energy.fission_rod.task": "", + "quests.gregtech_energy.smr.title": "Small Modular Reactor", + "quests.gregtech_energy.smr.subtitle": "Finally Power for these far outposts", + "quests.gregtech_energy.smr.desc.1": "The Small Modular Reactor is NYI but may come sooner than later", + "quests.gregtech_energy.smr.desc.2": "", + "quests.gregtech_energy.smr.task": "", + "quests.gregtech_energy.gasoline.title": "Gasoline", + "quests.gregtech_energy.gasoline.subtitle": "The middle child", + "quests.gregtech_energy.gasoline.desc": "&aGasoline&r is a really strong combustion fuel that you unlock at &6HV&r, but realistically only begin to make when you build your first &6Distillation Towers&r. &7Toluene&r is easily made from &7Wood Tar&r or &7Heavy Fuel&r, while everything else you need is &dRefinery Gas&r, &eNaphtha&r, and a mix of &3Oxygen&r, &bHydrogen&r, and &1Carbon&r.\n\nIt's strong, quite easy to make, and even better, it can be upgraded into &cHigh Octane Gasoline&r.", + "quests.gregtech_energy.high_gasoline.title": "High Octane Gasoline (HOG)", + "quests.gregtech_energy.high_gasoline.subtitle": "Highly Powerful", + "quests.gregtech_energy.high_gasoline.desc": "The direct upgrade of &cGasoline&r is a &5two times more powerful fuel&r. As the name doesn't suggest, you have to add not only &dOctane&r but also other materials from &7Petrochem&r. At that point, we expect you to be able to navigate through &bEMI&r and begin the fabrication of this insanely strong fuel.", "quests.gregtech_energy.lst_fuel.title": "This is Steam", "quests.gregtech_energy.lst_fuel.subtitle": "Not much of a choice", "quests.gregtech_energy.lst_fuel.desc": "Steam isn’t complicated β€” just boil water.\n\nTo do it efficiently, we recommend using &6Large Boilers&r. There's four versions: one each for &8ULV&r, &bMV&r, &5EV&r, and &1IV&r. Each tier provides a strong increase in steam output.\n\nHowever, be aware: the scaling of the &dLarge Steam Turbine&r with these boilers is not the best compared to other power generation methods.\n\nMost players will skip the Titanium and Tungstensteel Boilers β€” they exist if you want them, but aren’t worth building. Steam just doesn't scale very well!\n\nAs a reminder: &e2 mB&r of steam = &e1 EU&r.", @@ -2109,11 +2467,11 @@ "quests.gregtech_energy.lst_fuel.task.1": "Large Boilers", "quests.gregtech_energy.lce_fuel.title": "Liquid Fuel", "quests.gregtech_energy.lce_fuel.subtitle": "The polluter's favourite", - "quests.gregtech_energy.lce_fuel.desc.1": "All of these fuels are used for &6Combustion Generators&r β€” ranked here from the least efficient to the best.\n\nDuring &bMV&r, we recommend starting with Diesel or Biodiesel. Later on, you can upgrade to Cetane-Boosted Diesel at &6HV&r by mixing it with Nitrogen, Hydrogen, and Oxygen.", + "quests.gregtech_energy.lce_fuel.desc.1": "All of these fuels are used for &6Combustion Generators&r β€” ranked here from the least efficient to the best.\n\nDuring the early game, we recommend starting with Diesel or Biodiesel. Later on, you can upgrade to Cetane-Boosted Diesel at &6HV&r by mixing it with Nitrogen, Hydrogen, and Oxygen.", "quests.gregtech_energy.lce_fuel.desc.2": "Once you reach &5EV&r and get your hands on a &6Distillation Tower&r, it's time to switch over to Gasoline and High Octane Gasoline. Don’t attempt this too early β€” oils need to be distilled properly, and doing it with a regular Distillery is not efficient at all.\n\nTo make this work, you'll need a combination of oil distillation and some organic compound processing. Thankfully, a Pyrolyse Oven and a Distillation Tower will handle it all smoothly.\n\nIf you manage a steady supply of High Octane Gasoline, you should be able to finish the entire modpack running only on Combustion Generators.", "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.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 Moon Dust Harvesters.\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 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.", @@ -2121,7 +2479,7 @@ "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 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.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 FE, so you’ll need a Converter to transform it into EU.\n\nYou can use up to 4 Solar Panels on an &bMV Converter&r.", "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.", @@ -2140,7 +2498,7 @@ "quests.gregtech_energy.pss.title": "The Power Substation", "quests.gregtech_energy.pss.subtitle": "All your eggs in one basket", "quests.gregtech_energy.pss.desc.1": "The &dPower Substation&r β€” also known as the &dPSS&r β€” is the &6ultimate custom battery multiblock&r. Once you're able to craft it in &1IV&r, it should easily serve as your base's central source of power, so it can be a good thing to focus towards.\n\nIt can store so much energy... you’d probably need multiple lifetimes to fill it.", - "quests.gregtech_energy.pss.desc.2": "&eHow it works&r:\n- Build the structure using &aPalladium Substation Casings&r.\n- Add at least &b1 Energy Hatch&r (input) and &b1 Dynamo Hatch&r (output).\n- It accepts &aany hatch&r β€” &8Amperage-based&r or &6Laser&r.\n- &cNo risk of explosion&r β€” transformers are &aintegrated&r.\n\n&eCapacitor Layers&r:\n- You can add up to &d17 layers&r of &9Capacitor Blocks&r on top of the structure.\n- Each layer must be &cfully filled&r β€” no gaps.\n- Mix &fempty&r and &6full&r capacitors however you like.\n\nSurround each layer with &bLaminated Glass&r.\n\nLet’s be honest: &cYou’ll never need 17 layers&r... but hey, it’s nice to dream big.\nIf you ever do build a full 17-layer PSS, &lplease send help&r β€” you’ve gone too far.", + "quests.gregtech_energy.pss.desc.2": "&eHow it works&r:\n- Build the structure using &aPalladium Substation Casings&r.\n- Add at least &b1 Energy Hatch&r (input) and &b1 Dynamo Hatch&r (output).\n- It accepts &aany hatch&r β€” &cAmperage-based&r or &6Laser&r.\n- &cNo risk of explosion&r β€” transformers are &aintegrated&r.\n\n&eCapacitor Layers&r:\n- You can add up to &d17 layers&r of &9Capacitor Blocks&r on top of the structure.\n- Each layer must be &cfully filled&r β€” no gaps.\n- Mix &fempty&r and &6full&r capacitors however you like.\n\nSurround each layer with &bLaminated Glass&r.\n\nLet’s be honest: &cYou’ll never need 17 layers&r... but hey, it’s nice to dream big.\nIf you ever do build a full 17-layer PSS, &lplease send help&r β€” you’ve gone too far.", "quests.gregtech_energy.batteries.title": "Super Batteries", "quests.gregtech_energy.batteries.subtitle": "Sci-Fi power storage", "quests.gregtech_energy.batteries.desc": "In &7LV&r and &bMV&r, you probably built your first batteries made of Sodium or Lithium.\n\nBut let’s be real β€” these are the weakest batteries GregTech has to offer.\n\nIn this quest, we’ll look at the powerful alternatives: the &acrystal batteries&r.\nThey are much more potent, store way more energy, and can help you push your factory to the next tier.\n\nAre they more expensive? Of course. But let’s be real...\nPower is Power. Who’s counting?", @@ -2148,15 +2506,15 @@ "quests.gregtech_energy.spending_energy.title": "Spending Energy", "quests.gregtech_energy.spending_energy.subtitle": "Oh you will spend energy", "quests.gregtech_energy.spending_energy.desc.1": "How to spend all this energy?\n\nUse your machines! Sounds simple, right?\nWell... not exactly. There are many small details that you should learn to help you on your quest to completing &3TerraFirmaGreg&r.\n\nBasic Machines:\n- These machines are simple.\n- They can request up to &a2A&r each.\n- If you input a higher tier of energy... &4\uD83D\uDCA5 they explode&r.\n\nGregTech Multiblocks:\nNow things get interesting. Multiblocks offer more flexibility and power β€” &eif&r you understand how they work.", - "quests.gregtech_energy.spending_energy.desc.2": "Standard Mechanics:\n- If a multiblock can accept two Energy Hatches (most of them), this allows you to use higher-tier recipes than the machine’s base tier.\n\nExample:\nIf you're using a Large Mixing Vessel and you install two IV Energy Hatches, it will be able to process &cLuV&r-tier Mixer recipes.\n\nThis is one of the key benefits of multiblocks over single-block machines β€” to upgrade them to the next tier, you only have to swap out their energy hatches instead of replacing the whole machine.", - "quests.gregtech_energy.spending_energy.desc.3": "Some multiblocks only accept one Energy Hatch, but that doesn't mean you're limited to 1A!\n\nYou can still use a 4A or 16A Energy Hatch. This will allow &bOverclocking&r of recipes but not the recipe tier.\n\nExample:\nThe Large Circuit Assembler only allows one Energy Hatch. If you install a 4A IV Energy Hatch, you will be able to overclock all IV and lower recipes.\n\nHowever, it cannot craft LuV-tier recipes because the machine doesn't support multiple hatches. That limitation is intentional, to prevent skipping the GregTech progression system.", + "quests.gregtech_energy.spending_energy.desc.2": "Standard Mechanics:\n- If a multiblock can accept two Energy Hatches (most of them), this allows you to use higher-tier recipes than the machine’s base tier.\n\nExample:\nIf you're building an Electric Blast Furnace and you install two &7LV&r Energy Hatches, it will be able to process &6MV&r-tier EBF recipes.\n\nThis is one of the key benefits of multiblocks over single-block machines β€” to upgrade them to the next tier, you only have to swap out their energy hatches instead of replacing the whole machine.", + "quests.gregtech_energy.spending_energy.desc.3": "Some multiblocks only accept one Energy Hatch, but that doesn't mean you're limited to 1 amp!\n\nYou can still use a 4A or 16A Energy Hatch. This will allow &bOverclocking&r of recipes, but not the recipe tier.\n\nExample:\nThe Large Circuit Assembler only allows one Energy Hatch. If you install a 4A IV Energy Hatch, you will be able to overclock all IV and lower recipes.\n\nHowever, it cannot craft LuV-tier recipes because the machine doesn't support multiple hatches. That limitation is intentional, to prevent skipping the GregTech progression system.", "quests.gregtech_energy.spending_energy.desc.4": "So remember: More amps on a single hatch means faster processing, but two hatches are required to unlock higher-tier recipes.", "quests.gregtech_energy.spending_energy.task": "I understand", "quests.gregtech_energy.overclock.title": "Overclock", "quests.gregtech_energy.overclock.subtitle": "Basic upgrade mechanic", "quests.gregtech_energy.overclock.desc.1": "Have you heard about Overclocking, but don't really understand what it is? Let's take some time to explain it.\n\nWe should start with the basics:\n&dLV&r represents a maximum of 32 EU/t β€” sometimes less, but never more.\n&dMV&r goes up to 128 EU/t.\n&dHV&r reaches 512 EU/t.\nBasically, every tier is a 4x increase in power usage.", - "quests.gregtech_energy.overclock.desc.2": "What happens when you run a lower-tier recipe in a higher-tier machine? That's what we call &eOverclocking&r!\n\nAn &dMV&r recipe (33–128 EU/t) run in an &dHV&r machine will both: 1) Use 4x more energy, and 2) Be 2x faster.\n\nThe same MV recipe in an &dEV&r machine? 8x the energy cost, but only 4x faster.\n\nAs you can see, it's more power efficient to use multiple machines rather than overclocking a single one.\nBut let's be real: in most setups, you’ll prefer overclocking to building a ton of the same machines.\n\nStill, it's good to know this early on, when energy is tight.", - "quests.gregtech_energy.overclock.desc.3": "There’s a special kind of overclocking exclusive to just a few multiblocks: &ePerfect Overclocking&r.\nHere, instead of 4x energy for 2x speed, you get &a4x energy&r for &a4x speed&r! This makes it just as efficient as running multiple machines.\n\nCurrently in TerraFirmaGreg, only the following multiblocks support this:\n- Electric Blast Furnace\n- Alloy Blast Smelter\n- Rotary Heat Furnace\n- Large Chemical Reactor\n- Electric Greenhouse", + "quests.gregtech_energy.overclock.desc.2": "What happens when you run a lower-tier recipe in a higher-tier machine? That's what we call &eOverclocking&r!\n\nAn &dMV&r recipe (33–128 EU/t) run in an &dHV&r machine will both: 1) Use 4x more energy, and 2) Be 2x faster.\n\nThe same MV recipe in an &dEV&r machine? 16x the energy cost, but only 4x faster.\n\nAs you can see, it's more power efficient to use multiple machines rather than overclocking a single one.\nBut let's be real: in most setups, you’ll prefer overclocking to building a ton of the same machines.\n\nStill, it's good to know this early on, when energy is tight.", + "quests.gregtech_energy.overclock.desc.3": "There’s a special kind of overclocking exclusive to just a few multiblocks: &ePerfect Overclocking&r.\nHere, instead of 4x energy for 2x speed, you get &a4x energy&r for &a4x speed&r! This makes it just as efficient as running multiple machines.\n\nCurrently in TerraFirmaGreg, only the following multiblocks support this:\n- Electric Blast Furnace\n- Alloy Blast Smelter\n- Rotary Hearth Furnace\n- Large Chemical Reactor\n- Electric Greenhouse\n- Heat Exchanger", "quests.gregtech_energy.overclock.task": "So the red ones go faster, got it", "quests.gregtech_energy.blast_oc.title": "The Blast Overclocking", "quests.gregtech_energy.blast_oc.subtitle": "You don't need to understand this one", @@ -2167,7 +2525,7 @@ "quests.gregtech_energy.subtick.title": "Subtick", "quests.gregtech_energy.subtick.subtitle": "Parallel?", "quests.gregtech_energy.subtick.desc.1": "Another hidden mechanic in GregTech Multiblocks: the &dSubtick&r.\n\nWhat is it? Subtick activates when a recipe becomes so fast it takes less than one tick to process. Normally, machines can’t go faster than one recipe per tick β€” but with Subtick, they can!\n\nHow does it work? Once a recipe hits 1 tick duration, upgrading the Energy Hatch further won’t make it faster.\nBut thanks to Subtick, instead of wasting power, the machine will &aparallel the recipe internally&r.", - "quests.gregtech_energy.subtick.desc.2": "For example: If your Large Chemical Reactor (LCR) runs a LuV recipe at 1 tick, then at ZPM, it will run &e2 recipes per tick&r. Even faster hatches mean more internal parallel.\n\n&dNote&r: As of now, all the Large Machines can subtick in a limited way, but &aonly the LCR&r supports both Subtick and Perfect Overclocking. That’s also why there's no IV multiblock with parallel hatches for the LCR: it’s already doing it... but better.", + "quests.gregtech_energy.subtick.desc.2": "For example: If your Large Chemical Reactor (LCR) runs a LuV recipe at 1 tick, then at ZPM, it will run &e2 recipes per tick&r. Even faster hatches mean more internal parallel.\n\n&dNote&r: As of now, all the Large Machines can subtick in a limited way, but &aonly the LCR&r and &eHeat Exchanger&r support both Subtick and Perfect Overclocking. That’s also why there's no IV multiblock with parallel hatches for the LCR: it’s already doing it... but better.", "quests.gregtech_energy.parallel_hatch.title": "Parallel Hatch", "quests.gregtech_energy.parallel_hatch.subtitle": "Parallel again?", "quests.gregtech_energy.parallel_hatch.desc.1": "The &dParallel Hatch&r is the main draw of the Large Multiblocks.\n\nWhat does it do?\nWhere allowed (mostly on the Multiblocks crafted from the Alloy Blast Smelter), it lets you run &amultiple recipes at the same time&r.\n\nIt does this by consuming more energy per tick, but massively increasing throughput. Perfect if you’re mass-producing alloys, circuits, or plates.", @@ -2176,14 +2534,14 @@ "quests.gregtech_energy.rotor.title": "Turbine Rotors", "quests.gregtech_energy.rotor.subtitle": "So many choices!", "quests.gregtech_energy.rotor.desc.1": "Rotor Holders naturally require a Rotor to use, but there's a lot of options and they all have different stats, so what do they all mean?\n\nHigher &9Efficiency&r will increase the time each mB of fuel is used for, effectively reducing fuel usage. Meanwhile, &9Power&r will increase how much EU the turbine will generate. Lastly, &9Durability&r should be obvious.", - "quests.gregtech_energy.rotor.desc.2": "Ideally, you'll want to maximize all three, but the choice will depend on how much fuel you're producing, how many turbines you have, and how often you want to replace them, so there's no definitive correct answer. &8(Besides neutronium, of course...)&r\n\nThat being said, if you're completely lost, we recommend Vanadium Steel in &6HV&r, Ultimet in &5EV&r, and HSS-S in &9IV&r.\n\nUnfortunately, you can't automatically pipe new rotors into rotor holders as they need the block in front of them to be completely empty, but a &aMechanical Arm&r will work!", + "quests.gregtech_energy.rotor.desc.2": "Ideally, you'll want to maximize all three, but the choice will depend on how much fuel you're producing, how many turbines you have, and how often you want to replace them, so there's no definitive correct answer. &7(Besides neutronium, of course...)&r\n\nThat being said, if you're completely lost, we recommend Vanadium Steel in &6HV&r, Ultimet in &5EV&r, and HSS-S in &9IV&r.\n\nUnfortunately, you can't automatically pipe new rotors into rotor holders as they need the block in front of them to be completely empty, but a &aMechanical Arm&r will work!", "quests.gregtech_energy.rotor.task": "Any Turbine Rotor", "quests.gregtech_energy.fission_reactor.title": "Fission Reactor MK I", "quests.gregtech_energy.fission_reactor.subtitle": "Strap yourself in, this is complicated", "quests.gregtech_energy.fission_reactor.desc.1": "The &dFission Reactor&r is certainly an uncommon sight in GregTech - both in theme, and how it works. But fear not, we are here to guide you with this multi-purpose big-brain multiblock!\n\nWe'll spare you the physics for now, &efellow engineer&r. The most important thing you should know is that the reactor is like a big thermal &dbattery-generator&r. You input proper fuel, and get &cheat&r (just like &6EU/t&r) that gets stored in the reactor as &crising temperature&r (stored &6EU&r).\n\nYou can then transfer this heat to &9coolant fluids&r for running turbines, or performing EBF-style crafting recipes. Sometimes you may even have &ctoo much&r of it. And oh, you also get new elements to make new fuels and circuits and stuff. Maybe explore the solar system a bit more? Boring stuff.", "quests.gregtech_energy.fission_reactor.desc.2": "To start off, get your hands on some &dThorium&r. Remember to wear all the relevant PPE - &eDeatek Intergalactic&r is not responsible for any bodily harm resulting from improper handling of fissile materials. We really shouldn't have to remind you at this point anymore. Check the hazards quest if you need a refresher.\n\nNext, craft some empty &dFuel Rods&r and fill them with the &dNuclear Fuel Processing Plant&r. The rods are reusable, so you don't have to make too many. In fact, you might want to make just a single one for now.\n\nYou'll of course need a completed reactor, too. Check the EMI preview. Note how there is a central column of Fuel Holders, and then some optional columns for Components and Material Holders - more of these later.\n\nWait. Why just a &osingle&r rod? Oh, are &ewe&r glad you asked. Let's delve deep into the reactor mechanics in the next page.", "quests.gregtech_energy.fission_reactor.desc.3": "The more fuel rods you have installed in the reactor, the &chotter&r it gets. And the hotter it is, the more heat it is able to transfer out to the coolant fluid and processable items. But physics has its limits, and the reactor can only ever get &cso hot&r, so don't install too many fuel cells.\n\nBut fear not! Unlike how the &0big-oil&r propaganda machine insists, nuclear energy is &aperfectly safe&r. Should the heat level of the reactor border dangerous territory, the reactor enters an &9automatic cooldown sequence&r, and won't start again until all heat has been &asafely dissipated&r. It's quite slow, though.\n\nThere has to be a way to make it hotter and faster? Once again, good thing you asked! &eOur brilliant engineers&r have a solution for you!", - "quests.gregtech_energy.fission_reactor.desc.4": "In addition to the 5 &dFuel Holders&r, you can install &oup to&r 20 &dComponents&r. The reactors from some other manufacturers require very exact positioning, but our reactor is smarter. The &6stats&r of all installed ones will simply be &6summed up&r, and that's it!\n\nCurrently, the reactor is able to utilize them in three&8*&r different ways:\n&e1)&r Max temperature &7(insulator)&r\n&e2)&r Efficiency &7(fuel lasts longer)&r\n&e3)&r Throttle &7(slows down the reactions)&r\n\n&8*)&r It's possible your local galaxy doesn't have the necessary materials for all of them. We estimate to find materials only for the first category.\n\nBut be wary. Rising the &ctemperature&r comes with a &cdownside&r.", + "quests.gregtech_energy.fission_reactor.desc.4": "In addition to the 5 &dFuel Holders&r, you can install &oup to&r 20 &dComponents&r. The reactors from some other manufacturers require very exact positioning, but our reactor is smarter. The &6stats&r of all installed ones will simply be &6summed up&r, and that's it!\n\nCurrently, the reactor is able to utilize them in three&7*&r different ways:\n&e1)&r Max temperature &7(insulator)&r\n&e2)&r Efficiency &7(fuel lasts longer)&r\n&e3)&r Throttle &7(slows down the reactions)&r\n\n&7*)&r It's possible your local galaxy doesn't have the necessary materials for all of them. We estimate to find materials only for the first category.\n\nBut be wary. Rising the &ctemperature&r comes with a &cdownside&r.", "quests.gregtech_energy.fission_reactor.desc.5": "While a &chotter&r reactor makes coolants and processing &cfaster&r, it is also more demaning for the fuel rods. Each fuel rod has limited durability, and this scales linearly with the temperature.\n\nAs you need more fuel rods for the higher heat, this in effect makes the damage scale &nquadratically&r. If you want to heat coolants the most efficiently, you'll use low temperature. But if you want faster fissile conversion, use as high a heat as the insulation allows.", "quests.gregtech_energy.fission_reactor.desc.6": "You are finally ready to take a look at the various recipes involving the reactor; check where the &dcontroller&r is used, and you'll find three &eEMI&r tabs:\n\n&e1)&r Fission Reactor &7(fuels and compatible coolants)&r\n&e2)&r Fission Heat Processing &7(think: EBF)&r\n&e3)&r Fission Products &7(when the fuel runs out)&r\n&e4)&r The multiblock preview\n\nVarious &afuels&r are only compatible with certain &9coolant fluids&r, so pay attention to this. And once a fuel rod is completely used up, statistical certainty can safely state it having &btra&dns&rf&dor&bmed&r into new elements.\n\nThe processing recipes on the other hand can run regardless of the fuel, as long as the temperature level is high enough.", "quests.gregtech_energy.fission_reactor.desc.7": "The simplified math is as follows: with sufficient coolant fluid and a &c100%%&r heat fuel rod, the reactor will reach a temperature of about &c200&r. This can also be referred to as heat level, or just heat. Having &dtwo&r &c100%%&r fuel cells is equal to &done&r &c200%%&r cell, and both lead to about &c400&r heat.\n\nThis is because the fuel rod generates &6200 HU/t&r (heat units). Coolant fluids are able to extract &61 HU/t&r per &c1&r degree of heat.\n\nIf the reactor's max heat is &c190&r, a &c100%%&r fuel cell will overheat it. You can increase this with the components, or alternatively &dactive coolants&r via the processing system. Each recipe has a heat impact.", @@ -2201,13 +2559,13 @@ "quests.high_voltage.chem_bath.desc": "The &3HV Chemical Bath&r is used to &ddye Lenses&r using &aChemical Dye&r. This will let you engrave more types of Wafers, and cool other kinds of Hot Ingots.", "quests.high_voltage.maintenance_hatches.title": "Advanced Maintenance", "quests.high_voltage.maintenance_hatches.subtitle": "I have become maintenance, eater of tape", - "quests.high_voltage.maintenance_hatches.desc.1": "You now have access to two &3new Maintenance Hatches&r. Both hatches &6do not require Maintenance&r when first placed in a Multiblock.\n\nThe &3Automatic Maintenance Hatch&r is pretty simple - it eliminates the need for Maintenance, &6forever&r.\n\nThe &3Configurable Maintenance Hatch&r is more interesting. You can configure it to cut off &a10%% duration&r on recipes, at the cost of making Maintenance happen three times as fast. That is &d16 real hours&r of activity. Additionally, you can use it on Multiblock Generators to increase the duration of the recipe, which indirectly increases their fuel efficiency by 10%!\n\n&9Reminder:&r You can put Tape in the maintenance Hatch to automatically fix problems.", + "quests.high_voltage.maintenance_hatches.desc.1": "You now have access to two &3new Maintenance Hatches&r. \n\nThe &3Automatic Maintenance Hatch&r is pretty simple - it eliminates the need for Maintenance, &6forever&r.\n\nThe &3Configurable Maintenance Hatch&r is more interesting. You can configure it to cut off &a10%% duration&r on recipes, at the cost of making Maintenance happen three times as fast. That is &d16 real hours&r of activity. Additionally, you can use it on Multiblock Generators to increase the duration of the recipe, which indirectly increases their fuel efficiency by 10%%!\n\n&9Reminder:&r You can put Tape in the maintenance Hatch to automatically fix problems.", "quests.high_voltage.maintenance_hatches.desc.2": "&l&3Lore:&r&o The Automatic Maintenance Hatch texture and mechanic comes from TecTech, an addon mod originally made for GregTech: New Horizons.\n\n&oYou'll see more from TecTech if you stick with us with the late game.", "quests.high_voltage.hv_components.title": "High Voltage Components", "quests.high_voltage.hv_components.subtitle": "We call this \"fun\"", "quests.high_voltage.hv_components.desc.1": "Just like &bMV&r, you'll need to make higher-tier components.\n\nThe painful &dFlawless Gems&r have been replaced with slightly-more-painful &dVitrified Ender Pearls&r. Also notice that the &aMotors&r require &d2x Silver Cables&r.\n&aHulls&r and &aMachines&r use &dGold Cables&r.\n\nFinally, a use for that stockpile of Gold!", "quests.high_voltage.hv_components.desc.2": "&9&lTips to make life less painful:&r\n\n- Use &dElectrotine decomposition&r and &dOre Processing&r for &eElectrum&r.\n- Use the &3Chemical Bath&r with &dMercury&r for &eGold&r and &eSilver&r from a wide variety of ores.", - "quests.high_voltage.assembler.title": "HV Assembling Machine", + "quests.high_voltage.assembler.title": "HV Assembler", "quests.high_voltage.assembler.desc": "The &3HV Assembler&r is the next step in progression, but also unlocks a handful of useful utilities - check around this quest for more.\n\nYou will need this &6HV Assembler&r to make your &dRocket&r.", "quests.high_voltage.lenses.title": "I see the world in colour", "quests.high_voltage.lenses.desc": "The &aSimple System on Chip&r will be used for the best &dULV Circuit&r recipe.\n\nWe'd also recommend going out of your way to make all the other useful colored Lenses ahead of time. They are listed here in an &eoptional&r task.", @@ -2215,7 +2573,7 @@ "quests.high_voltage.ulv_circuits.desc": "&8ULV&r Circuits are used in some &9AE2&r recipes and &aCreate&r recipes.", "quests.high_voltage.hv_energy_hatch.title": "Upgrade your EBF II", "quests.high_voltage.hv_energy_hatch.subtitle": "Noticing a pattern here?", - "quests.high_voltage.hv_energy_hatch.desc": "The &aLow Power Integrated Circuit&r requires an &3HV Cutting Machine&r inside your &3Cleanroom&r.\n\n&3HV Energy Hatches&r will be nice additions so you can run your Multiblocks (mainly your Electric Blast Furnace and Large Chemical Reactor) directly off a &6HV&r line.", + "quests.high_voltage.hv_energy_hatch.desc": "The &aLow Power Integrated Circuit&r requires an &3HV Cutter&r inside your &3Cleanroom&r.\n\n&3HV Energy Hatches&r will be nice additions so you can run your Multiblocks (mainly your Electric Blast Furnace and Large Chemical Reactor) directly off a &6HV&r line.", "quests.high_voltage.chem_reactor.title": "High Voltage Chemistry", "quests.high_voltage.chem_reactor.desc": "The &3HV Chemical Reactor&r unlocks a ton of new recipes. Ah, who doesn't love the ever-growing demand on more advanced Chemistry?\n\n&9Note:&r We've actually unlocked a ton of new content by reaching &6HV&r. However, not every processing line or item is crucial right now. It'd make the &6HV&r chapter far too dense if we included everything!\n\nYou could still check out the &5EV&r Chapter if you want to push yourself.", "quests.high_voltage.rutile_loop.title": "Almost Titanium", @@ -2240,13 +2598,14 @@ "quests.high_voltage.mv_superconductors.desc": "&a4A&r of &bMV&r energy transmission may be appealing, but you probably don't need these at this point. The option is always there if you need it.", "quests.high_voltage.circuit_assembler.title": "HV Circuit Assembler", "quests.high_voltage.circuit_assembler.subtitle": "You will need the Cleanroom before you can craft this one", - "quests.high_voltage.circuit_assembler.desc": "The next &3Circuit Assembler&r. This tier of Circuit Assembler is only required for one type of Circuit - your first ever &aMainframe&r. You may have only one use for them, the &5EV Circuit Assembler&r.\n\nYou can put this off until &5EV&r or simply just use it for faster circuits making.", + "quests.high_voltage.circuit_assembler.desc": "The next &3Circuit Assembler&r. This tier of Circuit Assembler is only required for one type of Circuit - your first ever &aMainframe&r, but you won't be able to craft that until Mars in &5EV&r. You may have only one use for them, the &5EV Circuit Assembler&r.\n\nOther than that, the &6HV&r Circuit Assembler is also required to make AE2's &eProcessors&r.\n\nYou can put this off until &5EV&r or simply just use it for faster circuit making.", "quests.high_voltage.microprocessor_mainframe.title": "Mainframes - first IV Circuits!", "quests.high_voltage.microprocessor_mainframe.desc": "The first &1IV&r circuit. Congratulations on making it this far!\n\nThis will be used when you get to &5EV&r, or you can use it right now to craft an Advanced Nanosuit Chestplate, a big upgrade to your jetpack!.\n\n&l&3Lore:&r&o The original texture for the Mainframes was taken from an image of an IBM zEnterprise mainframe.", "quests.high_voltage.cleanroom.title": "The Cleanroom", "quests.high_voltage.cleanroom.subtitle": "They put me in a room... a clean room", "quests.high_voltage.cleanroom.desc.1": "The &3Cleanroom&r is a hollow multiblock free of contaminants. Going forward, most new âuit-related recipes&r, as well as some unique blocks like &3Fusion Casings&r, will need to be run in machines inside a Cleanroom.\n\nCreating it will put your &aPolyethylene&r automation to the test for all the &dPlascrete&r and/or &dCleanroom Glass&r you will make.\n\nWe'll start you off with a 5x5x5 Cleanroom, but you should upgrade its size when you start feeling cramped.", "quests.high_voltage.cleanroom.desc.2": "&l&3Lore:&r&o The Cleanroom comes from GregTech 5, but as is often the case, the GT5 implementation is much more punishing. The recipes would run without regard to cleanliness, but had a %% chance of completion equal to the cleanliness of the Cleanroom. This caused a lot of accidental voiding.\n\n&oFurthermore, if the Cleanroom had a maintenance issue, the cleanliness would cap out at 90%%, which means 10%% of items would be voided.\n\n&oThe GTCEu Cleanroom will &6never void&f recipe outputs.", + "quests.high_voltage.cleanroom.task": "Maintenance Hatch or Auto Maintenance Hatch", "quests.high_voltage.prospector.title": "HV Prospector", "quests.high_voltage.prospector.desc.1": "This prospector boasts a &6higher range&r than its &7LV&r counterpart.\n\nSneak right-clicking with the Prospector in your hand will change its mode to &6Fluid Vein Mode&r. This will instead display the base &dyield&r of Fluid veins, along with how full they are.\n\nThis will be really useful to find &9Helium-3&r and &9Bedrock Veins&r on the moon.", "quests.high_voltage.prospector.desc.2": "&9Reminder:&r The yield of a &3Fluid Drilling Rig&r is directly proportional to the \"fullness\" of the vein. When low enough, the output will default to a yield that can be defined in the CEu config.\n\n&9Tip:&r When the fullness drops below 30%% (alright, rough estimate), you should consider moving to another vein for the sake of power-to-yield efficiency. Aiming for the &3Advanced Fluid Drilling Rig&r in &5EV&r may interest you, as not only does it significantly boost the output, but it also reduces the rate at which it drains the vein!\n\n&cCaution:&r Due to a bug, the Prospector display may be offset by one chunk, so avoid placing your Rig in the corners of a fluid vein, or you may end up pumping the wrong fluid!", @@ -2257,7 +2616,8 @@ "quests.high_voltage.ptfe.subtitle": "A.K.A - Teflon", "quests.high_voltage.ptfe.desc": "&aPolytetrafluoroethylene (PTFE)&r is a &7Carbon&r-&bFluorine&r polymer. Similarly to PVC, PTFE can be used to increase the yield of Plastic Circuit Boards and other crafts. Presently, it is used to make the walls of &3Large Chemical Reactors&r.\n\n&3Chlorine&r is required in the process, which is fully recycled if you electrolyze the &aHydrochloric Acid&r waste.\n\n&bFluorine&r will also be used in the &aUranium&r and &7Naquadah&r refinement processes.\n\n&9Tip:&r From this point onwards, you should be solidifying Polymers as &dBar&r (Ingot) form, as they can easily be shaped to whichever form you will need using the &3Extruder&r.", "quests.high_voltage.nitrobenzene.title": "Benzene Nitro", - "quests.high_voltage.nitrobenzene.desc": "Making &aNitrobenzene&r will boost the energy efficiency of &aBenzene&r roughly &6fourfold&r. You love to see it.\n\nThe catch here is that it takes &dDistilled Water&r, and consumes a bit of &dSulfur&r with every step.", + "quests.high_voltage.nitrobenzene.subtitle": "A shadow of its former self", + "quests.high_voltage.nitrobenzene.desc": "In TerraFirmaGreg, &aNitrobenzene&r and &aBenzene&r have been heavily nerfed. They can still be used as fuel, but now most of their use is as ingredients.\n\nNote that crafting Nitrobenzene consumes a bit of &dSulfur&r with every step.", "quests.high_voltage.lcr.title": "Large Chemical Reactor", "quests.high_voltage.lcr.desc.1": "The &3Large Chemical Reactor (LCR)&r is a multiblock &3Chemical Reactor&r with more input/output slots. Its Teflon casings allow it to process extra recipes.\n\nThe &3LCR&r can perform some exclusive reactions which allow you to combine multiple normal &3Chemical Reactor&r steps into a &6single step&r. Examples below:\n\n&9-&r &aNitrogen Dioxide&r (for Nitric Acid and Dinitrogen Tetroxide)\n&9-&r &aSulfuric Acid&r\n&9-&r &aPhenol&r\n&9-&r &aEpichlorohydrin&r (you need it for Epoxy!)\n&9-&r &aEpoxy&r", "quests.high_voltage.lcr.desc.2": "There are also &3LCR&r exclusive recipes. For example, &dRadon&r can only be made in the LCR right now.\n\nAll &dOverclocks&r in the &3LCR&r are &6100%% efficient&r (known as Perfect overclocks); each overclock will &5quadruple the speed&r, as opposed to doubling it.\n\nThe &3LCR&r has yet another &6advantage&r. You can use &32 Energy Hatches&r to allow it to run recipes of the &5next tier&r, similar to the &3Electric Blast Furnace&r.", @@ -2269,7 +2629,7 @@ "quests.high_voltage.tnt.desc.3": "We don't have any easy tips to give you for &aToluene&r. It's going to be tricky no matter which route you take.\n\nThat being said, don't miss out on the direct &aHeavy Fuel&r to &aToluene&r recipe in the single block &3Distillery&r.\n\n&aToluene&r can also optionally be used in &5EV&r to make &dGasoline&r.\n\n&cTNT&r is used in the &3Implosion Compressor&r to make Gems. It also blows stuff up.", "quests.high_voltage.ender_pearls.title": "Ender Pearls", "quests.high_voltage.ender_pearls.subtitle": "Sci-fi gemstones, or something", - "quests.high_voltage.ender_pearls.desc": "You won't find any Endermen dropping Ender Pearls in TFG.\nEven the ones lurking in the Beneath won’t help you there.\n\nInstead, your only option for now is to craft them yourself:\n\nCombine &2Beryllium Dust&r and &2Potassium Dust&r in a &6HV&r Mixer to create the elusive &5Ender Dust&r.\n\nOnce that's done, throw it into an &8Implosion Compressor&r and recreate the iconic Ender Pearl β€” GregTech style.", + "quests.high_voltage.ender_pearls.desc": "You won't find any Endermen dropping Ender Pearls in TFG.\nEven the ones lurking in the Beneath won’t help you there.\n\nInstead, your only option for now is to craft them yourself:\n\nCombine &2Beryllium Dust&r and &2Potassium Dust&r in a &6HV&r Mixer to create the elusive &5Ender Dust&r.\n\nOnce that's done, throw it into an &7Implosion Compressor&r and recreate the iconic Ender Pearl β€” GregTech style.", "quests.high_voltage.boules.title": "Phosphorus Boules", "quests.high_voltage.boules.subtitle": "That's dope, bro!", "quests.high_voltage.boules.desc": "Doping is the process of intentionally introducing impurities into semiconductors to alter their properties.\n\n&7Silicon&r can be doped with small amounts of &ePhosphorus&r to make a better &eSilicon Boule&r.\n\nPhosphorus-doped Silicon Boules typically yield &68 times&r more wafers than their non-doped counterparts. However, they are not strictly needed until &5EV&r, where they'll be used in more complex wafers.\n\n&9Note&r: All processing of Phosphorus Boules and Wafers will require a &dCleanroom&r.", @@ -2306,13 +2666,13 @@ "quests.high_voltage.hv_hull.subtitle": "Soon to be a minestronaut", "quests.high_voltage.hv_hull.desc.1": "&2We hope you're getting the hang of &9GregTech&r, because now it's time to push your skills a bit further.\nIn this chapter, you'll unlock &eadvanced multiblocks&r, &ecomplex processes&r, and even take your first steps onto the &fMoon&r!\n\n&6For this chapter, you have two main goals :&r\n- Craft your first &5EV&r Machine Hull\n- Begin your journey to the &fMoon&r\n\nUnlocking the Moon will also grant access to &bCertus Quartz&r, paving the way for &dApplied Energistics 2&r. You’re free to tackle these objectives in any order you prefer.", "quests.high_voltage.hv_hull.desc.2": "To craft the &5EV&r Machine Hull:\n- Build your first &aCleanroom&r\n- Construct a &bVacuum Freezer&r to cool hot ingots\n- Process &9Rutile&r into &7Titanium&r\n\nYou'll find plenty of &9Rutile&r on the &fMoon&r, but it can also be located in &eBauxite&r veins in the &aOverworld&r.", - "quests.high_voltage.hv_hull.desc.3": "To reach the Moon:\n- Craft a generous amount of &6Rocket Alloy&r\n- Create your first &eEnder Eye&r using the &3Chemical Bath&r and the &8Implosion Compressor&r\n- Prepare all the &bequipment&r you'll need to &bbreathe in space&r\n\nGetting the &bVacuum Freezer&r and &6better coils&r will speed up &6Rocket Alloy&r production, but they’re not mandatory.\n\n&dChoose your path!&r", + "quests.high_voltage.hv_hull.desc.3": "To reach the Moon:\n- Craft a generous amount of &6Rocket Alloy&r\n- Create your first &eEnder Eye&r using the &3Chemical Bath&r and the &7Implosion Compressor&r\n- Prepare all the &bequipment&r you'll need to &bbreathe in space&r\n\nGetting the &bVacuum Freezer&r and &6better coils&r will speed up &6Rocket Alloy&r production, but they’re not mandatory.\n\n&dChoose your path!&r", "quests.high_voltage.nichrome.title": "Nichrome Ingots", "quests.high_voltage.nichrome.subtitle": "It doesn't have much use", "quests.high_voltage.nichrome.desc": "Your third alloy is here and it's essential for your next set of coils in the &6EBF&r.\n\nAs usual you will need &9128 ingots&r but this time you’ll notice that you can’t use a &6Chemical Washer&r. Instead, you're required to use a &6Vacuum Freezer&r.\n\nGood news: it’s actually simpler and faster.\n\nYou’ll only be using &6Nichrome&r for these coils, but don’t get too comfortable β€” it will return later for the next set of &5RTM Coils&r.", "quests.high_voltage.rocket_t1.title": "Your First Rocket!", "quests.high_voltage.rocket_t1.subtitle": "The first of many", - "quests.high_voltage.rocket_t1.desc": "Wow, it's time to build your &6Rocket&r!\n\nAssemble all the parts with &d8 Dense Rocket Alloy&r. To finish the insulation, you'll need &b2304mb&r of &bLiquid Silicon&r (&b16 ingots&r) and &f16 pieces of dust&r.\n\nYou have two choices:\n&e-&r &eBorosilicate Glass Dust&r β€” crafted in a &6Mixer&r with &dBoron&r and &fGlass Dust&r\n\n&e-&r &5Vitrified Asbestos&r β€” obtained through a &6Pyrolysis Oven&r\n\nGo with whichever's easiest for you!", + "quests.high_voltage.rocket_t1.desc": "Wow, it's time to build your &6Rocket&r!\n\nAssemble all the parts with &d8 Dense Rocket Alloy&r. To finish the insulation, you'll need &b2304mb&r of &bLiquid Silicon&r (&b16 ingots&r) and &f16 pieces of dust&r.\n\nYou have two choices:\n&e-&r &eBorosilicate Glass Dust&r β€” crafted in a &6Mixer&r with &dBoron&r and &fGlass Dust&r\n\n&e-&r &5Vitrified Asbestos&r β€” obtained through a &6Pyrolyse Oven&r\n\nGo with whichever's easiest for you!", "quests.high_voltage.vitrified_pearl.title": "Vitrified Ender Pearl", "quests.high_voltage.vitrified_pearl.subtitle": "An Exotic Ceramic", "quests.high_voltage.vitrified_pearl.desc": "Heat the Ender Pearl in a &ePyrolyse Oven&r along with some appropriate insulation to properly vitrify it into something resembling a &3ceramic&r.\n\nYou won’t need many of these for now β€” at minimum, just one for your &6Rocket&r and another for your &6HV Circuit Assembler&r.\nBut be warned: from &5EV&r and beyond, the demand will rise quickly.", @@ -2340,7 +2700,7 @@ "quests.high_voltage.steel_engine.subtitle": "Blue Steel is back, baby", "quests.high_voltage.steel_engine.desc": "The &6Steel Engine&r is required so your rocket can &atravel to the Moon&r.\n\nThe recipe isn't too bad β€” we assume you're ready to tackle each part.\n\nTo get &91152mb of Liquid Blue Steel&r, you will need &78 ingots&r.", "quests.high_voltage.rocket_fins.subtitle": "So you reach the right destination", - "quests.high_voltage.rocket_fins.desc": "We made the &6Rocket Fins&r use an &bAlloy Smelter&r simply to remind you that you now have access to the &bMulti-Smelter&r β€” a wonderful small EBF that can be used both as a &eFurnace&r and an &bAlloy Smelter&r.\n\nThe quest to craft it is in the &bMV&r Chapter. We really advise you to think about it if you haven't yet.", + "quests.high_voltage.rocket_fins.desc": "Originally, we made the &6Rocket Fins&r use an &bAlloy Smelter&r simply to remind you that you now have access to the &bMulti-Smelter&r β€” a wonderful small EBF that can be used both as a &eFurnace&r and an &bAlloy Smelter&r.\n\nThe quest to craft it is in the &bMV&r Chapter.\n\nWe changed this recipe to the assembler because \"rocket fins\" aren't exactly an alloy.", "quests.high_voltage.rocket_nose_cone.subtitle": "The nose knows...", "quests.high_voltage.rocket_nose_cone.desc": "The &6Rocket Nose Cone&r is the hardest part of your Rocket.\nYou will need a hefty amount of &aPolyethylene&r β€” so we hope you already have it passively produced β€” and a &6HV&r Emitter.\nYou should be able to get your hands on &dChromium&r by electrolyzing &cRuby Dust&r.\n\nThe &aVitrified Ender Pearl&r is trickier and requires you to follow the quest unlocked by the &6HV Chemical Reactor&r.\nGet ready to make &cTNT&r, build an &5Implosion Compressor&r, and recreate the famous Enderman drop β€” since you won’t find Ender Pearls natively in &2TFG&r.", "quests.high_voltage.launch_pad.subtitle": "Ready for launch in T-10...", @@ -2360,7 +2720,7 @@ "quests.high_voltage.gun.subtitle": "And if that don't work, use more gun", "quests.high_voltage.gun.task1": "Any gun", "quests.high_voltage.gun.task2": "Any medicine or aged alcohol", - "quests.high_voltage.gun.desc": "Getting a little too comfortable on Earth? You won't be alone on the moon, so make sure you're well prepared to defend yourself - you'll need more than just a sword or some stone javelins.\n\n%4The Moon is dangerous%r and you wouldn't want to lose your precious Rocket right?\n\nPick out a nice gun (if you're not sure, we recommend the &o\"Clockwork\" Sniper&r), craft some ammo, and maybe try out some attachments if you're feeling fancy.\n\nIt's also a good idea to bring some nutritious food to raise your max HP (try the meal bags!) as well as some alcohol and medicine for buffs and healing.", + "quests.high_voltage.gun.desc": "Getting a little too comfortable on Earth? You won't be alone on the moon, so make sure you're well prepared to defend yourself - you'll need more than just a sword or some stone javelins.\n\n&4The Moon is dangerous&r and you wouldn't want to lose your precious Rocket right?\n\nPick out a nice gun (if you're not sure, we recommend the &o\"Clockwork\" Rifle&r), craft some ammo, and maybe try out some attachments if you're feeling fancy.\n\nIt's also a good idea to bring some nutritious food to raise your max HP (try the meal bags!) as well as some alcohol and medicine for buffs and healing.", "quests.high_voltage.space_survival.title": "Home away from home", "quests.high_voltage.space_survival.subtitle": "More than just a mining dimension", "quests.high_voltage.space_survival.desc": "If you haven't already, be sure to check out the &3Tips - Space Survival&r quest chapter! It contains all the information you'll need to establish a proper moon colony.", @@ -2375,24 +2735,26 @@ "quests.high_voltage.moon_harvester.desc": "The &7Moon&r is your first entry into &einfinite ores&r β€” but it’s a slow one.\nYou will need to harvest different kinds of &bRegolith Dust&r, each obtainable only in a specific biome.\nTo do this, you’ll rely on the &6Moon Harvester&r. There are two important things to remember when using it:\n\nβ€’ It requires an &9Input Bus&r so you can set the right &9circuit&r.\nβ€’ It supports &ecoils&r just like the &6Cracker&r β€” the higher the tier of your coils, the bigger the energy discount.\nThis is especially useful when harvesting Regolith far from your base.\n\nOf course, raw dust isn’t enough.\nYou’ll need a &asmall processing line&r to extract resources from the Regolith dust. So make sure to bring them to your &7Moon base&r for processing.", "quests.high_voltage.regolith_vapor.title": "Regolith Vapor", "quests.high_voltage.regolith_vapor.subtitle": "The little something to make dusts into ores", - "quests.high_voltage.regolith_vapor.desc": "To process your &bRegolith Dust&r, you’ll need &bRegolith Vapor&r β€” and setting it up is a bit more involved.\n\nHere’s what you’ll need:\n\nβ€’ &7Lunar Sand&r β€” obtainable infinitely with a &6Rock Breaker&r.\nβ€’ &eCarbon Dioxide&r β€” produced from &9Oxygen&r and &8Carbon Dust&r (easy, thanks to the infinite &bDiamond Dust&r you’ll be getting).\nβ€’ &9Nitrogen&r β€” acquired through the cultivation of &dChorus Fruits&r.\n\nTip: You can loop your &9Oxygen&r through &bSilicon Dioxide&r, which also gives you a steady bonus of &eSilicon Dust&r β€” a very useful side product.", + "quests.high_voltage.regolith_vapor.desc": "To process your &bRegolith Dust&r, you’ll need &bRegolith Vapor&r β€” and setting it up is a bit more involved.\n\nHere’s what you’ll need:\n\nβ€’ &7Lunar Sand&r β€” obtainable infinitely with a &6Rock Breaker&r.\nβ€’ &eCarbon Dioxide&r β€” produced from &9Oxygen&r and &7Carbon Dust&r (easy, thanks to the infinite &bDiamond Dust&r you’ll be getting).\nβ€’ &9Nitrogen&r β€” acquired through the cultivation of &dChorus Fruits&r.\n\nTip: You can loop your &9Oxygen&r through &bSilicon Dioxide&r, which also gives you a steady bonus of &eSilicon Dust&r β€” a very useful side product.", "quests.high_voltage.regolith_vapor.task": "Got it", "quests.high_voltage.regolith_dust.title": "Regolith for each biomes", "quests.high_voltage.regolith_dust.subtitle": "The three musketeers", "quests.high_voltage.regolith_dust.desc": "You can obtain &b4 different types of Regolith Dust&r, each producing unique resources.\n\nEach type is tied to a specific &7deep biome&r on the &7Moon&r. Keep in mind: these biomes are not directly connected to each other, so you’ll need to explore a bit.\n\nFinding the right biome is made much easier with the &aXaero Map&r β€” use it to quickly locate where each dust can be harvested.", "quests.high_voltage.dusty_ores.title": "Dusty Ores", "quests.high_voltage.dusty_ores.subtitle": "Are you telling more Ore Processing?", - "quests.high_voltage.dusty_ores.desc": "The &7Dusty Ore&r is an exclusive &dTerraFirmaGreg&r ore type. All the &cinfinite ores&r you’ll obtain on the &7Moon&r β€” and later on &4Mars&r β€” will appear as Dusty Ores.\n\nAt this stage, the only way to process them is by using a &6Centrifuge&r to extract their dusts.\n\nPretty limiting, right? Don’t worry β€” you’ll unlock far &ebetter processing&r options once you reach &eVenus&r!\n\nPro tip: You can already speed things up with a &6Large Chemical Reactor&r. Thanks to &bPerfect Overcloaking&r, it can handle Dusty Ores much faster than the basic recipe suggests.", + "quests.high_voltage.dusty_ores.desc": "The &7Dusty Ore&r is an exclusive &dTerraFirmaGreg&r ore type. All the &cinfinite ores&r you’ll obtain on the &7Moon&r β€” and later on &4Mars&r β€” will appear as Dusty Ores.\n\nAt this stage, the only way to process them is by using a &6Centrifuge&r to extract their dusts.\n\nPretty limiting, right? Don’t worry β€” you’ll unlock far &ebetter processing&r options once you reach &eVenus&r!\n\nPro tip: You can already speed things up with a &6Large Chemical Reactor&r. Thanks to &bPerfect Overclocking&r, it can handle Dusty Ores much faster than the basic recipe suggests.", "quests.high_voltage.dusty_ores.task": "All the Moon Dusty Ores", "quests.high_voltage.final_dust.title": "Infinite Dusts", "quests.high_voltage.final_dust.subtitle": "Finally infinite resources", "quests.high_voltage.final_dust.desc": "This is all the &cinfinite resources&r you can obtain on the &7Moon&r before unlocking the more advanced processing available on &eVenus&r.\n\nWith these, you should have everything you need to keep progressing through &dGregTech&r β€” especially to secure the &amaintenance&r of your Moon Base.\n\nThese resources are essential for:\nβ€’ Crafting &dAE2 components&r\nβ€’ Producing an &cinfinite&r supply of &6Railgun Ammo&r\n\nPassive automation is now within your reach β€” take the step and make it happen!", + "quests.high_voltage.titanium_greate.title": "Titanium-tier Greate", + "quests.high_voltage.titanium_greate.desc": "This is the final tier of Greate that's accessible in TerraFirmaGreg. The only \"extreme\" it's doing is being extremely optional.", "quests.low_voltage": "&7LV&r - Low Voltage", "quests.low_voltage.subtitle": "Tame electricity and begin your GregTech journey", "quests.low_voltage.lv_machine_hull.title": "Your second machine hull", "quests.low_voltage.lv_machine_hull.subtitle": "It's time to get into electricity", "quests.low_voltage.lv_machine_hull.desc.1": "You're getting real close to your &6first LV Machine&r and the beginning of the electric age! If you haven't made any &4Red Steel&r yet, you'll now have to, but in return you will get &6new ways&r to improve your production.\n\nThis is the GregTech philosophy: &6the further you progress, the better the new recipes become&r.\n\nTry to make at least 3 or 4 casings to begin.", - "quests.low_voltage.lv_machine_hull.desc.2": "For some players, reaching a new tier is marked by crafting the first &6circuit&r, for others it's the &6machine hull&r or the &6energy hatch&r. You can use whatever works best for you, but for the sake of organization, these quests will use the machine hull.", + "quests.low_voltage.lv_machine_hull.desc.2": "For some players, reaching a new tier is marked by crafting the first &6circuit&r, for others it's the &6machine hull&r or the &6energy hatch&r. You can use whatever works best for you, but for the sake of organization, these quests will use the machine hull.\n\nLost on where to start? We recommend looking for machines that will make everything else cheaper, starting with the thing you hate the most.", "quests.low_voltage.lv_machine_casing.title": "LV Machine Casing for Create?", "quests.low_voltage.lv_machine_casing.subtitle": "More options!", "quests.low_voltage.lv_machine_casing.desc": "To make getting into LV less intimidating, &5TFG&r gives you the option to use &6Create&r machines in place of some &6GregTech&r machines.\n\nWe introduced them &6last chapter&r, but just know that if there is an alternative to a GregTech machine, you will have the choice within the quest.", @@ -2403,14 +2765,20 @@ "quests.low_voltage.lv_age_progression.subtitle": "Too many options, too little time!", "quests.low_voltage.lv_age_progression.desc": "&7LV&r will require you to craft a lot of different machines! Here's a friendly tip if you're struggling to set goals: pick an item in a later quest and go backwards from there.\n\nWith that in mind... why don't we start with a &5Fusion Controller&r? Never mind, slightly too ambitious - let's check a closer goal instead. Ah, yes, the &3Electric Blast Furnace&r - the main end goal of &7LV&r - should be a good target.\n\nThe EBF is &aexpensive&r, which is why you should initially focus on machines to make components and materials cheaper. Our quests will try to will guide you in the right direction.\n\nOther important goals are crafting the &3LV Assembler&r, making your first &aMV Circuits&r and getting your first &bCircuit Assembler&r.", "quests.low_voltage.lv_age_progression.task": "I... might have some sense of direction now", - "quests.low_voltage.lv_steam_turbine.title": "Electricity Generation", + "quests.low_voltage.lost.title": "Lost?", + "quests.low_voltage.lost.subtitle": "This is all very overwhelming", + "quests.low_voltage.lost.desc.1": "Getting into &7LV&r opens up a LOT of options, so it's easy to get lost. Here's our recommendations:\n\n1) Set up a source of power. Check the quests on the bottom right, there's several options, all are viable. Don't cheap out, build multiple generators!\n\nBe sure to &eread the GregTech Energy quest chapter&r so you get a good understanding of how EU, Volts, Amps, and Cable Loss all work.", + "quests.low_voltage.lost.desc.2": "2) Focus on machines that make building more machines cheaper.\n\nThe Polarizer is a super cheap machine that can magnetize rods for basically free. If you didn't craft the Steam Age equivalents, set up a Bender, Wiremill, Lathe, and Cutter. These quests are all on the top left.\n\nAfter that, focus on making Rubber cheaper with a Chemical Reactor and Fluid Solidifier (left), and making electronic components cheaper with an Assembler (bottom).\n\nOnce everything's at its cheapest, make sure you craft components in batches to save you lots of time.", + "quests.low_voltage.lost.desc.3": "3) Build a canner and make some batteries (top right). Battery buffers will help a lot with the growth of your factory, and the Ore Prospector is an absolute game changer.\n\n4) &7LV&r has two main end goals, the &aCircuit Assembler&r and the &aElectric Blast Furnace&r. You should now be ready to tackle those.", + "quests.low_voltage.lost.task": "I know what to do now!", + "quests.low_voltage.lv_steam_turbine.title": "The Steam Turbine", "quests.low_voltage.lv_steam_turbine.subtitle": "You must construct additional turbines", "quests.low_voltage.lv_steam_turbine.desc.1": "The &3Steam Turbine&r is one of the only generators you can realistically use in &7LV&r. &2Later, you'll unlock more interesting Power options&r, such as natural gases or petrols.\n\nWhen provided Steam, the turbine will output EU at a ratio of &d2 mB = 1 EU&r.", "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\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.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, or if you have a lot of steam multiblocks.", "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 Polarizer", "quests.low_voltage.lv_polariser.subtitle": "The Polarizer polarizes!", @@ -2418,7 +2786,7 @@ "quests.low_voltage.link_chapter.title": "Explain energy to me", "quests.low_voltage.link_chapter.subtitle": "There is a whole chapter about energy", "quests.low_voltage.link_chapter.desc": "View the chapter by clicking here", - "quests.low_voltage.link_chapter.task": "Read it", + "quests.low_voltage.link_chapter.task": "I read it", "quests.low_voltage.lv_combuston_gen.title": "The Combustion Generator", "quests.low_voltage.lv_combuston_gen.subtitle": "It does boom and make energy", "quests.low_voltage.lv_combuston_gen.desc": "The &7LV Combustion Generator&r may be a bit more expensive to craft compared to other generators, but its fuels carry a lot of energy. This makes it easier to move, or if you need to power a generator far from your base, a drum filled with &2Bio Diesel&r can transport a large amount of EU.\n\nLike other &7LV Generators&r, it produces &a32 EU/t&r.", @@ -2432,6 +2800,15 @@ "quests.low_voltage.lv_seeds.subtitle": "These are tall plants", "quests.low_voltage.lv_seeds.desc": "If you come across these plants, you should pick them up and start a farm.\n\nThey will be your best source of &aSeed Oil&r, a liquid used for producing &eBio Diesel&r. Canola is a bit more resistant to lower temperatures, while Sunflowers are happier in warmer climates. You also could grow them in your Electric Greenhouse if you don't want to spend as much time farming, at the expense of having to spend a little power to grow them.", "quests.low_voltage.lv_seeds.task": "Canola or Sunflowers", + "quests.low_voltage.lv_gas_turbine.title": "The Gas Turbine", + "quests.low_voltage.lv_gas_turbine.subtitle": "It needs more circuits but less materials", + "quests.low_voltage.lv_gas_turbine.desc": "With the help of &7Syngas&r, you now have a viable way to use the &cGas Turbine&r at &7LV&r. They work exactly like the other &6generators&r but should be a tiny bit cheaper than the &6Combustion Generator&r.", + "quests.low_voltage.lv_gas_syngas.title": "Syngas", + "quests.low_voltage.lv_gas_syngas.subtitle": "Not Wood Gas", + "quests.low_voltage.lv_gas_syngas.desc": "Making &7Syngas&r is really easy. You simply need &b3 Coke Ovens&r for each &6Brewery&r or &6Vacuum Chamber&r. Then you collect &7wood&r with the help of a &bCreate Tree Farm&r to minimize the energy costs, and you can enjoy this weak but easy-to-make &7gas fuel&r.", + "quests.low_voltage.lv_naphtha_light.title": "Naphtha and Light Fuel", + "quests.low_voltage.lv_naphtha_light.subtitle": "You can make plastic with them", + "quests.low_voltage.lv_naphtha_light.desc": "If you really hate farming and prefer adventuring in the &6desert&r or mining massive amounts of &7Oilsands&r, then maybe &7Naphtha&r (better from &7Raw Oil&r) or &7Light Fuel&r (better from &7Oil&r) should be fuels you could look at.\n\nBeing quite good for how easy they are to produce, they need to be manually harvested at that point though.", "quests.low_voltage.lv_turbo_charge.title": "Turbo Charger", "quests.low_voltage.lv_turbo_charge.subtitle": "Useful to charge your electric tools faster", "quests.low_voltage.lv_turbo_charge.desc": "&oThis quest's subject is optional, but may still be of interest to you. We've put it here in the name of completeness.&r\n\nThe &3Turbo Charger&r charges &6RF and EU&r items such as &9Drills&r extremely quickly.\n\nIt accepts up to 4 Amps for every item it charges, making it &6twice as fast&r as the &3Battery Buffer&r. It cannot discharge, though.\n\n&eAny&r Charger will complete this Quest.", @@ -2465,9 +2842,9 @@ "quests.low_voltage.lv_lathe.task": "Any of these", "quests.low_voltage.universal_cell.title": "Better bucket", "quests.low_voltage.universal_cell.subtitle": "You can see inside, unlike those drums...", - "quests.low_voltage.universal_cell.desc.1": "Cells are an alternative form of Fluid storage. All Cell types with the same type and amount of Fluid inside them &6stack&r. They can be automatically filled with a &3Canning Machine&r.\n\nCells hold &done bucket&r of Fluid.", + "quests.low_voltage.universal_cell.desc.1": "Cells are an alternative form of Fluid storage. All Cell types with the same type and amount of Fluid inside them &6stack&r. They can be automatically filled with a &3Canning Machine&r.\n\nFluid Cells hold &done bucket&r of Fluid.\n\nNot sold on them yet? Unlike drums and buckets, cells &asafely contain&r their contents, preventing you from getting burnt, frozen, or floating.", "quests.low_voltage.universal_cell.desc.2": "Universal Cells hold up to &done bucket&r, but also can store &9fractions&r of Buckets. They're particularly ideal if you want to store leftover Fluid without crafting a whole Drum. \n\nCells made from higher tier materials can hold even more fluid, but &9Drums&r and &9Super Tanks&r will hold more by then.\n\nLike Drums, Cells can be placed into a crafting grid to clear their contents.", - "quests.low_voltage.universal_cell.task": "", + "quests.low_voltage.universal_cell.task": "Any cell", "quests.low_voltage.machine_auto_output_behaviour.title": "Machine Auto-Output Behaviour", "quests.low_voltage.machine_auto_output_behaviour.subtitle": "Let's learn.", "quests.low_voltage.machine_auto_output_behaviour.desc.1": "All machines typically have one &7Front Face&r, and one &9Output Face&r.\n\nThe &7Front Face&r should be obvious.\nThe &9Output Face&r is the face with a dot or hole on it. By default, this is at the back of the machine as you place it.\n\nMachines can &aauto-output&r through their output face. To enable auto-output, click the appropriate button in the GUI. Fluid and item auto-outputs are toggled separately. Further control over auto-outputs can be achieved with &dFilters&r and &dCovers&r, which are explained in the &dCover Behavior&r quest found in this chapter.", @@ -2538,7 +2915,7 @@ "quests.low_voltage.lv_electroliser.desc.3": "&cTake caution!&r Due to how ores work, directly smelting dusts into Ingots can give higher metal yields than electrolysis. However, it means you lose the other products in the dust. You will have to decide whether you want to prioritise direct value, or byproduct count.", "quests.low_voltage.lv_mixer.title": "Basic Mixer", "quests.low_voltage.lv_mixer.subtitle": "The Mixer mixes...", - "quests.low_voltage.lv_mixer.desc": "Using the mixer will &6significantly speed up&r the process of making colored steel, especially the &4red steel&r for your machine hulls. Even if you don't think you need it now, you'll find it &6essential&r later on.", + "quests.low_voltage.lv_mixer.desc": "Using the mixer will &6significantly speed up&r the process of making colored steel, especially the &4red steel&r for your machine hulls. Even if you don't think you need it now, you'll find it &6essential&r later on.\n\nYou're used to alloying things in a Crucible, but for any new alloys (as well as all of the old ones), the GregTech way of alloying is to &amix together dusts&r and then heat them into ingots or extract them into fluids. Don't look at the Alloy Blast Smelter in JEI, that's not until &5EV&r.", "quests.low_voltage.lv_mixer.task": "From Create or GregTech", "quests.low_voltage.soldering_alloy.title": "Soldering Alloy", "quests.low_voltage.soldering_alloy.subtitle": "I got soul but I'm not a solder", @@ -2556,7 +2933,7 @@ "quests.low_voltage.t2_circuit_board.desc.2": "&l&3Lore:&r&o Back in GTCEu 1.12.2, these circuit boards were called &2Good Circuit Boards&f. Not exactly a fitting name, as they're &4rather evil&f to craft.", "quests.low_voltage.lv_diode.title": "Diode", "quests.low_voltage.lv_diode.subtitle": "Don't be swayed by EMI!", - "quests.low_voltage.lv_diode.desc": "Don't let JEI fool you... there's only one possible recipe right now for this Primitive Diode -- the liquid glass one.\n\nDiodes have a infamously &4nasty recipe&r, but they will become cheaper and more convenient once you can obtain &ePolyethylene&r.\n\nThis is required for &dMV Circuits&r.", + "quests.low_voltage.lv_diode.desc": "Don't let JEI fool you... there's only two possible recipes right now for this Primitive Diode -- the liquid glass ones.\n\nDiodes have a infamously &4nasty recipe&r, but they will become cheaper and more convenient once you can obtain &ePolyethylene&r.\n\nThis is required for &dMV Circuits&r.", "quests.low_voltage.1_mv_circuit.title": "First MV Circuit!", "quests.low_voltage.1_mv_circuit.subtitle": "Does that mean we're at MV yet?", "quests.low_voltage.1_mv_circuit.desc": "Well... got any Aluminium Ingots yet?\n\nEach Electric Age has Circuits corresponding to its tier. The Good Electronic Circuit is the &dfirst MV Circuit&r you can make out of the three tiers of &bMV&r Circuitry.\n\nAlways be on the lookout for a cheaper way to make your circuits - new sets of recipes become available each time you make a new tier of &2Circuit Assembler&r. Conveniently, this tier of Circuit unlocks one now! Its recipes are far, far cheaper than the Deployers.\n\n&6Having this and Aluminium will grant access to MV Machines.&r\n\nIf you are having trouble understanding the mess that is GregTech circuits, check out the &6Progression Table&r chapter.", @@ -2598,7 +2975,7 @@ "quests.low_voltage.lv_nitrogen.task": "Nitrogen", "quests.low_voltage.lv_arc_furnace.title": "The Arc Furnace", "quests.low_voltage.lv_arc_furnace.subtitle": "The Arc Furnace has never been so good", - "quests.low_voltage.lv_arc_furnace.desc.1": "The &3Arc Furnace&r uses a lil' bit of &9Oxygen&r to smelt items in a different fashion than Furnaces.\n\nYou can use it to make easier &aWrought Iron&r, double your &aGlass&r, and gain access to &aAnnealed Copper&r for cheaper electronic components. It's also your new best way to make &4Red Steel&r and &1Blue Steel&r Ingots!\n\nIt can also recycle various components and machines back to their original materials.", + "quests.low_voltage.lv_arc_furnace.desc.1": "The &3Arc Furnace&r uses a lil' bit of &9Oxygen&r to smelt items in a different fashion than Furnaces.\n\nYou can use it to make easier &aWrought Iron&r, double your &aGlass&r, and gain access to &aAnnealed Copper&r for cheaper electronic components.\n\nIt can also recycle various components and machines back to their original materials.", "quests.low_voltage.lv_arc_furnace.desc.2": "&l&3Lore:&r&o Previous GregTech versions had both the Arc Furnace and the &bPlasma Arc Furnace&f. In that case, why not use one machine for both? Well, that's exactly what we thought - but we ultimately decided to remove one of the two &bplasma&f recipes. And then the other &bplasma&f recipe.\n\n&oIn short, the &bPlasma Arc Furnace&f is &4gone&f. RIP.", "quests.low_voltage.lv_extractor.title": "Basic Liquid Extraction", "quests.low_voltage.lv_extractor.subtitle": "The Extractor extracts...", @@ -2620,7 +2997,7 @@ "quests.low_voltage.mold_plate.desc": "Stop wasting your time with your &6Alloy Smelter&r. You're gonna need a lot of &6Rubber Sheets&r, and later on you will also use it for other kinds of plastics.\n\nYou may think you can use the Extruder to make rubber sheets instead, but the &6Fluid Solidifier&r can do so much more, while the Extruder is pretty useless until &bMV&r.", "quests.low_voltage.cupronickel_ingot.title": "Cupronickel Ingots", "quests.low_voltage.cupronickel_ingot.subtitle": "It's an alloy", - "quests.low_voltage.cupronickel_ingot.desc": "&7A big part of progression in GregTech revolves around gaining access to new materials\nthat you'll use to upgrade your machines or unlock advanced components.&r\n\nThe first alloy you'll encounter is &bCupronickel&r β€” the beginning of a long journey.\nThis material is used to upgrade your &6Electric Blast Furnace&r, an essential step in your industrial growth.\n\nLuckily, this first step is fairly simple: a basic &7LV Alloy Smelter&r will get the job done.\nSo even if the recipe asks for &b128 Cupronickel&r, don't worry β€” it's easier than it looks!&r\n\nLater on, their counterparts will become much more complex, so enjoy the simplicity while it lasts!", + "quests.low_voltage.cupronickel_ingot.desc": "A big part of progression in GregTech revolves around gaining access to new materials that you'll use to upgrade your machines or unlock advanced components.\n\nOne such material you'll encounter is &bCupronickel&r β€” the beginning of a long journey.\nThis material is used to build your first &6Electric Blast Furnace&r, an essential step in your industrial growth.\n\nLuckily, this first step is fairly simple: an Alloy Smelter will get the job done.\nSo even if the recipe asks for &b128 Cupronickel&r, don't worry β€” it's easier than it looks!&r\n\nLater on, their counterparts will become much more complex, so enjoy the simplicity while it lasts!", "quests.low_voltage.cupronickel_coil.title": "Cupronickel Coils", "quests.low_voltage.cupronickel_coil.subtitle": "Baby's first heating coil", "quests.low_voltage.cupronickel_coil.desc": "Prepare &a128 Cupronickel&r, &a32 Bronze&r and &a16 Tin Alloy&r to craft the Heating Coils required for your first Electric Blast Furnace.\n\nThis is still less than half (!) of the cost of the whole EBF in raw materials. You will also need about a stack each of Invar and Steel, so get mining.\n\nThe Cupronickel Coils will allow the EBF to perform recipes up to &d1,800K&r (ignoring Voltage bonuses). That's pretty hot if you ask us.\n\n&6Tutorial on Coils in the &lGregTech Energy&r&6 tab - check it out to learn more!&r", @@ -2628,6 +3005,7 @@ "quests.low_voltage.lv_ebf.subtitle": "One of the core machines of GregTech. We like it big.", "quests.low_voltage.lv_ebf.desc.1": "This quest explains the core mechanic of the &3Electric Blast Furnace&r, while the quest just over this one will explain the mechanics of the Multiblock Parts that you'll also need. Be sure to check this quest out.\n\nAnyway, the &3EBF&r is your &efirst electric multiblock&r! Congrats. It's used to process materials at high temperatures.\n\nYou'll become familiar with the EBF to make &aAluminium&r and progress to &d&bMV Age&r. It can also make &7Steel&r faster than the the &6Blast Furnace&r, which means you can finally tear down your old TFC smithy if you'd like.", "quests.low_voltage.lv_ebf.desc.2": "It's important to keep in mind that the EBF is a beefy boy. The minimum power cost to run a recipe is &9120 EU/t&r! That's slightly under 4 &7LV&r Generators or Alternators.\n\nYou may wish to consider building a separate power line, with separate Generators close to the EBF and Battery Buffer to run this. Be wary of the cable loss.", + "quests.low_voltage.lv_ebf.desc.3": "Is your EBF flickering and not getting enough power? You are likely encountering &ecable loss&r - read the GregTech Energy chapter to learn more about this mechanic.\n\nMake sure you have your generators as close to your EBF as possible, and use an appropriate cable - we recommend 2x Tin Cable, arranged like in the above picture.", "quests.low_voltage.multiblock_tech.title": "Multiblock Techniques", "quests.low_voltage.multiblock_tech.subtitle": "Oh we love multiblocks right?", "quests.low_voltage.multiblock_tech.desc": "This is the &6basics&r of what you need to build your first &bEBF&r, though it is highly customisable. Remember to use &6EMI&r, use &6U&r on the controller and don't hesitate to &6left click on the structure blocks&r to see what the possibilities are.\n\nAn important notice, each Energy Hatch can accept &a2A&r, which means that at &7LV&r they can each handle &a64 EU/t&r. With two of them, your &eEBF&r can run at &a128 EU/t&r.\n\nFor more details about this mechanic, refer to the &eGregTech Energy Chapter&r, specifically the &eSpending Energy&r section.\n\nMultiblocks bear a large variety of interesting mechanics that might seem daunting, but don't worry - you don't need to do anything fancy right yet. You'll learn more as you go!", @@ -2648,6 +3026,15 @@ "quests.low_voltage.mv_hull.subtitle": "This is going quite well, only 7 to go!", "quests.low_voltage.mv_hull.desc1": "Good job, you now have your &bMV Machine Hull&r, your first &bMV Circuit&r and your first &6Circuit Assembler&r.\n\nThis is the gist of &6GregTech&r, every tier you are going to make new &6machines&r using new &6materials&r and &6chemicals&r. You are going to have &5so much fun&r, we are kinda jealous!", "quests.low_voltage.mv_hull.desc2": "Before going further into &bMV&r, remember that in &6TFG&r you can use &6Create&r to reinforce your infrastructure if you don't want to use too much of GregTech. Aluminium Shafts and Cogwheels have 4x the stress capacity of steel ones, so you should be able to run all your machines much faster with them!", + "quests.low_voltage.aluminium_greate.title": "Aluminium-tier Greate", + "quests.low_voltage.aluminium_greate.subtitle": "Also known as Medium Stress", + "quests.low_voltage.aluminium_greate.desc": "It's been a while since your last upgrade, but now you have access to the next tier of Greate cogs and shafts. Like before, the aluminium ones have &bfour times&r the stress capacity of steel.\n\nContinuing with Greate beyond this point is very optional, and we encourage you to move over to GregTech, but the upgrade may help you de-spaghettify some of your old setups if you'd like to continue using them.\n\nYou can scale up your stress more with a &eSteam Engine&r, or convert EU into SU via the &9Create Additions&r &eElectric Motor&r.", + "quests.low_voltage.oil.title": "Found Oil early?", + "quests.low_voltage.oil.subtitle": "For LV overachievers", + "quests.low_voltage.oil.desc": "If you've found any Oilsands ores or Oil spouts (in deserts) in your travels, you can actually start using a little bit of it in LV.\n\nYou can either convert it into Heavy Fuel and put it in your boilers, or better yet, use it to make a little &bPolyethylene&r!\n\nThe details of this are in the MV chapter, but at this point you can use the polyethylene to make a few things such as cheaper Machine Hulls and Diodes.", + "quests.low_voltage.glowstone.title": "Permanent Lighting", + "quests.low_voltage.glowstone.subtitle": "A roundabout way of inventing light bulbs", + "quests.low_voltage.glowstone.desc": "Looking for some cheap, permanent light sources? Now that you've got an LV Extractor (and soon an LV Fluid Solidifer), you can put all that &6Glowstone Dust&r you found in The Beneath to work. Ran out? You can make more in a Mixer.\n\nCheck out JEI for all the new light sources you can make with both liquid glowstone and glowstone blocks. GregTech also has some made with glowstone dust in an assembler.\n\nAs a bonus, you can also use liquid glowstone as an infinite fuel for your lamps!", "quests.medium_voltage": "&bMV&r - Medium Voltage", "quests.medium_voltage.subtitle": "Venture into petrochemistry and refine electronics", "quests.medium_voltage.mv_machine_hull.title": "Welcome to MV!", @@ -2659,16 +3046,16 @@ "quests.medium_voltage.mv_miner.title": "Automatic Mining", "quests.medium_voltage.mv_miner.subtitle": "So are you bored of mining yourself?", "quests.medium_voltage.mv_miner.desc.1": "This kind soul&r will mine ores for you when placed above a vein.\n\nVertical range is unlimited below the miner. Horizontal range is displayed in the tooltip.\n\nThe &bMV&r variant may not have the range to mine a full vein, but the &6HV&r variant does, so you may wish hold off for now. Get &eeither&r to complete this Quest.", - "quests.medium_voltage.mv_miner.desc.2": "You will need &9Power&r. &aCharged Batteries&r may work, but they tend to run out of power, which is a bit inconvenient.\n\nOur top suggestion is to use a filled &3Drum&r of some kind of fuel &7(if you're using Steam, no dice!)&r and a &3Generator&r.\n\nPlace the Drum above your Generator and right-click it with a &5Soft Mallet&r to auto-output into the Generator.", - "quests.medium_voltage.mv_miner.desc.3": "&cNote:&r Do not forget to &dchunkload&r all 9 chunks of the ore vein &7(open the map, claim the chunks with ctrl left-click, and enable force loading after claiming them)&r.\n\n&9Tip:&r You can either use an &3ME Chest&r or a &3GT Create&r as the output inventory to make transporting the ores back home a simple task. The &3ME Chest&r can be powered with EU directly but that won't be before some time.", + "quests.medium_voltage.mv_miner.desc.2": "You will need &9Power&r. &aCharged Batteries&r may work, but they tend to run out of power, which is a bit inconvenient.\n\nOur top suggestion is to use a filled &3Drum&r of some kind of fuel &7(if you're using Steam, no dice!)&r and a &3Generator&r.\n\nPlace the Drum above your Generator and right-click it with a &5Soft Mallet&r or &5Screwdriver&r to auto-output into the Generator.", + "quests.medium_voltage.mv_miner.desc.3": "&cNote:&r Do not forget to &dchunkload&r all 9 chunks of the ore vein &7(open the map, claim the chunks with ctrl left-click, and enable force loading after claiming them)&r.\n\n&9Tip:&r You can either use an &3ME Chest&r, a &3Backpack&r, or a &3GT Crate&r as the output inventory to make transporting the ores back home a simple task. The &3ME Chest&r can be powered with EU directly, by the way.", "quests.medium_voltage.mv_miner.task": "Any miner", "quests.medium_voltage.mv_component.title": "The MV Components", - "quests.medium_voltage.mv_component_.subtitle": "Hated crafting these in previous tier?", + "quests.medium_voltage.mv_component_.subtitle": "Hated crafting these in the previous tier?", "quests.medium_voltage.mv_component.desc": "Here's a list of the components you will need in &bMV&r. To alleviate the pain, be sure to autocraft or &dbulk-craft&r these parts, especially &aMotors&r.\n\nFamiliar with the &aEmitter&r? This tier's Emitter requires a &dFlawless Emerald&r in its recipe, which'll be only attainable with the &3Sifting Machine&r for now.\n\nConveyors, Pumps and Robot Arms are objective upgrades to &7LV&r versions if you use them as covers.", "quests.medium_voltage.electrolyzer.title": "MV Electrolyzer", "quests.medium_voltage.electrolyzer.subtitle": "We made it to MV, and, well...", "quests.medium_voltage.electrolyzer.desc.1": "&bThis one should look familiar&rβ€”you’ve seen it before.\n&2We highly recommend crafting it as soon as possible,&r as it will unlock a wide range of new &7Aluminium&r sources.\n\nUntil now, your only method was &9electrolyzing Sapphire&r to obtain &7Aluminium Dust&r.\nBut with the &bMV&r Electrolyzer, a whole new world of resources opens up.", - "quests.medium_voltage.electrolyzer.desc.2": "&6Here are some key materials to look for:&r\n&9Ruby&r – Grants both &7Aluminium&r and &5Chromium&r.\n&9Pyrope&r – Often found alongside Sapphire veins.\n&9Lepidolite&r – Offers a generous selection of valuable byproducts.\n&9Sodalite&r – Comes with &3Chlorine&r and &bSilicon&r.\n&9Topaz&r – Yields both &3Fluorine&r and &7Aluminium&r in solid quantities.\n\n&2And that’s just the beginning!&r Use &aEMI&r to explore even more optionsβ€”we promise, there’s a lot to discover.\n\n&cOh, and by the way:&r Electrolyzing Clay is now gated behind &6HV&r. \n&8We’re not sorry.&r", + "quests.medium_voltage.electrolyzer.desc.2": "&6Here are some key materials to look for:&r\n&9Ruby&r – Grants both &7Aluminium&r and &5Chromium&r.\n&9Pyrope&r – Often found alongside Sapphire veins.\n&9Lepidolite&r – Offers a generous selection of valuable byproducts.\n&9Sodalite&r – Comes with &3Chlorine&r and &bSilicon&r.\n&9Topaz&r – Yields both &3Fluorine&r and &7Aluminium&r in solid quantities.\n\n&2And that’s just the beginning!&r Use &aEMI&r to explore even more optionsβ€”we promise, there’s a lot to discover.\n\n&cOh, and by the way:&r Electrolyzing Clay is now gated behind &6HV&r. \n&7We’re not sorry.&r", "quests.medium_voltage.mv_extruder.title": "Advanced Extruder", "quests.medium_voltage.mv_extruder.subtitle": "The biggest upgrade you'll make", "quests.medium_voltage.mv_extruder.desc": "We &lSINCERELY&r hope at &cno&r point you made the &7LV&r Extruder, because only the &bMV&r Extruder is actually useful. If you did, immediately &arecycle it&r through the Arc Furnace.\n\nThe Extruder shapes solid materials into (almost!) any form using &aIngots&r. This is a great way to reduce the amount of microcrafting, as well as keeping a high conversion ratio.\n\nThe Extruder can make &6Bolts&r, &6&6Small Gears&r, &6Gears&r, and &6&6Rings&r at the highest efficiency in a single step!\n\nYou may also like to use it for &dPipes&r, &dScrews&r, and &dRotors&r.", @@ -2680,7 +3067,7 @@ "quests.medium_voltage.mv_mixer.desc": "If you're wanting to dive into &bMV&r, start here.\n\nThe dusts created in an &3MV Mixer&r have great utility.", "quests.medium_voltage.mv_energy.title": "Electricity Generation in MV", "quests.medium_voltage.mv_energy.subtitle": "Things are 'boutta get rough", - "quests.medium_voltage.mv_energy.desc.1": "Hello there, and welcome to &bMV Energy Production&r.\n\nIn this quest, we’ll go over the different options available to keep your &bMV machines&r powered and running smoothly.\n\nWe won’t cover this in every chapter, so we highly recommend that you &aread the dedicated chapter on GregTech Energy&r for a deeper understanding of how everything works.\n\nFor now, here are your &athree main options&r:\n\n&8- &bUse an MV Generator&r to directly produce &bMV-level energy&r.\n\n&8- &bStep up your &7LV&r power by using transformers&r, with a &e4:1 ratio&r between &7LV&r and &bMV&r.\n\n&8- &bConvert RF&r using your &dAlternator&r to get &bMV energy&r directly.\n\n", + "quests.medium_voltage.mv_energy.desc.1": "Hello there, and welcome to &bMV Energy Production&r.\n\nIn this quest, we’ll go over the different options available to keep your &bMV machines&r powered and running smoothly.\n\nWe won’t cover this in every chapter, so we highly recommend that you &aread the dedicated chapter on GregTech Energy&r for a deeper understanding of how everything works.\n\nFor now, here are your &athree main options&r:\n\n&7- &bUse an MV Generator&r to directly produce &bMV-level energy&r.\n\n&7- &bStep up your &7LV&r power by using transformers&r, with a &e4:1 ratio&r between &7LV&r and &bMV&r.\n\n&7- &bConvert RF&r using your &dAlternator&r to get &bMV energy&r directly.\n\n", "quests.medium_voltage.mv_energy.desc.2": "Higher-tier Generators will increase their fuel consumption proportionally to their Generation rate, keeping the duration of fuels and the specific amount of energy from fuels the same. The &3Advanced Steam Turbine&r will use &d5,120 mB Steam&r per second, equivalent to &d256 mB/t&r.\n\nGet &eany&r of the generators to complete this quest, but you may prefer starting off with the &3Advanced Steam Turbine&r.", "quests.medium_voltage.mv_energy.desc.3": "There are a few new power options available for &bMV&r. Selecting the Generators and pressing &4U&r will let you see which fuels count as &aCombustion&r or &aGas&r.\n\nQuests in the top left corner of this Chapter are for the valuable Power options.\n\nIf you stick to &9Steam&r for your Power generation, you'll probably need a &3Large Boiler&r.", "quests.medium_voltage.mv_energy.desc.4": "&3Transformers&r allow you to step up and down safely between Voltage tiers. They convert the power they receive into an equivalent amount of power 1 voltage tier above or below the input voltage.\n\nApart from running machines on different voltage tiers, Transformers come in handy for transporting power across longer distances, as cable loss has less of an effect at higher voltages. Just like real life!", @@ -2695,7 +3082,7 @@ "quests.medium_voltage.mv_batteries.desc": "&bMV&r Batteries will appeal to you if you want to buffer Energy, just like &7LV&r.\n\nThe cost in &aSodium&r, &aLithium&r or &aCadmium&r jumps up to 8 dusts, so you should use whatever you have the most of. The difference in capacity isn't &7THAT&r huge, after all!\n\nGet &eeither&r Battery to complete the Quest.", "quests.medium_voltage.mv_steel_alloy.title": "Steel Alloys", "quests.medium_voltage.mv_steel_alloy.subtitle": "Steel Your Heart", - "quests.medium_voltage.mv_steel_alloy.desc": "Vanadiumsteel is required in small quantities in progression. It's &6nearly four times as durable&r as Steel if used in GregTech tools. The Vanadium comes from &aVanadium Magnetite&r, which you may have encountered in Magnetite veins.\n\nOther Steel alloys include Blue Steel, Red Steel, and Black Steel!\n\nTake some Blue Steel free of charge - it's twice as durable as Steel.", + "quests.medium_voltage.mv_steel_alloy.desc": "Vanadium steel is required in small quantities in progression. It's &6nearly four times as durable&r as Steel if used in GregTech tools. The Vanadium comes from &aVanadium Magnetite&r, which you may have encountered in Magnetite veins.", "quests.medium_voltage.pyrolyse.title": "Pyrolyse Oven", "quests.medium_voltage.pyrolyse.subtitle": "Thermal Decomposition", "quests.medium_voltage.pyrolyse.desc.1": "The &3Pyrolyse Oven&r is an electric equivalent to the &3Coke Oven&r. It can produce &9Coal Coke&r and &9Charcoal&r with a &9Creosote&r byproduct just as before, but also has additional &6Organic Byproducts&r, the most beneficial of these being &aWood Tar&r.\n\nAnother product is &aBiomass&r, which is more pertinent for your progression as of this moment.", @@ -2704,10 +3091,11 @@ "quests.medium_voltage.pyrolyse.desc.4": "&9&lNote:&r&l The Plant path is one path you can take towards &9&lEthylene&r&l, which is a necessary chemical in progressing to &6HV&r&l. The other path involves Oil.&r\n\nThe Pyrolyse Oven remains &doptional&r. However, it is very rewarding to construct one either for Power, or for the various Byproducts, and we highly recommend you give it a look.\n\n&l&3Lore:&r&o In GT5u, the structure for the Pyrolyse Oven was infamously a giant box with only 9 coils inside. Players usually spent several minutes debugging what is wrong due to a lack of a EMI preview.", "quests.medium_voltage.mv_fluid_rig.title": "Fluid Drilling Rigs", "quests.medium_voltage.mv_fluid_rig.subtitle": "Fluid Drilling Rigs in CEu!", - "quests.medium_voltage.mv_fluid_rig.desc.1": "It's quite the investment to own a &3Fluid Drilling Rig&r, but it is &oby far&r the most prominent &6source of Oil&r.\n\nIt pumps fluids from underneath Bedrock itself. Note that the fluids aren't actually there, instead being simulated.\n\nFluid veins are stored within &cchunk-sized regions&r. Each vein has a different fluid, but they are mostly types of Oil.\n\nYou can't carry out prospecting for fluid veins &oyet&r - this will come at &6HV&r.", - "quests.medium_voltage.mv_fluid_rig.desc.2": "Each vein generates with a different base yield. This is typically between &d150L&r to &d300L per second&r.\n\nWhen drained, fluid veins will slowly deplete. This will cause the fluid yield to decrease over time until it reaches its depletion yield. At that point, you should move the Rig to a different vein.\n\nA &3Basic Fluid Drilling Rig&r will last for 100,000 operations (with 1 second per operation) until depletion. This is enough for &6well over 10,000&r buckets of Oil. Higher tier Rigs will massively increase the yield, while also decreasing the depletion rate.", - "quests.medium_voltage.mv_fluid_rig.desc.3": "&lWhat you can find in the &2Overworld&r&l:&r\n\n&9Oil:&r richer in &aLight Fuel&r, the most appreciated variant.\n&9Light Oil:&r richer in &aRefinery Gas&r, usable for power.\n&9Heavy Oil:&r richer in &aHeavy Fuel&r, which has uses that are more niche but notably Toluene.\n&9Raw Oil:&r richer in &aNaphtha&r, the best source of the early-game oil products.\n&9Natural Gas:&r grants &aRefinery Gas&r with no distillation required.\n&9Sea Water:&r grants &aSodium&r and &aChlorine&r, useful later.", - "quests.medium_voltage.mv_fluid_rig.desc.4": "&lWhat you can find in the &cNether&r&l:&r\n\n&9Natural Gas:&r grants &aRefinery Gas&r but with higher yield than the Overworld vein.\n&9Lava:&r hopefully, you know what this is.\n\nWhen starting out, you may have to tap randomly until you find something you like. Remember that whatever you pump could also be used to refuel your Fluid Rig.", + "quests.medium_voltage.mv_fluid_rig.desc.1": "It's quite the investment to own a &3Fluid Drilling Rig&r, but it is &oby far&r the most prominent &6source of Oil&r.\n\nIt pumps fluids from underneath Bedrock itself. Note that the fluids aren't actually there, instead being simulated.\n\nFluid veins are stored within &cchunk-aligned regions&r. Each vein has a different fluid, but they are mostly types of Oil.\n\nYou can't carry out prospecting for fluid veins &oyet&r - this will come at &6HV&r.", + "quests.medium_voltage.mv_fluid_rig.desc.2": "Each vein generates with a different base yield. This is typically between &d150mB&r to &d300mB per second when using the &bAdvanced Fluid Drilling Rig&r also known as &bFluid Rig Mk1&r.\n\nWhen drained, fluid veins will slowly deplete. This will cause the fluid yield to decrease over time until it reaches its depletion yield. At that point, you should move the Rig to a different vein.\n\nA &3Basic Fluid Drilling Rig&r will last for 100,000 operations (with 1 second per operation) until depletion. This is enough for &6well over 10,000&r buckets of Oil. Higher tier Rigs will massively increase the yield based on the multiplier listed in their tooltip, while also decreasing the depletion rate.", + "quests.medium_voltage.mv_fluid_rig.desc.3": "&lWhat you can find in the &2Overworld&r&l:&r\n\n&9Oil:&r richer in &aLight Fuel&r, the most appreciated variant.\n&9Light Oil:&r richer in &aRefinery Gas&r, usable for power.\n&9Heavy Oil:&r richer in &aHeavy Fuel&r, which has uses that are more niche but notably Toluene.\n&9Raw Oil:&r richer in &aNaphtha&r, the best source of the early-game oil products.\n&9Natural Gas:&r grants &aRefinery Gas&r with no distillation required.\n&9Salt Water:&r grants &aSodium Hydroxide&r and &aChlorine&r, useful later.", + "quests.medium_voltage.mv_fluid_rig.desc.4": "&lWhat you can find in the &cBeneath&r&l:&r\n\n&9Natural Gas:&r grants &aRefinery Gas&r but with higher yield than the Overworld vein.\n&9Lava:&r hopefully, you know what this is.\n\nWhen starting out, you may have to tap randomly until you find something you like. Remember that whatever you pump could also be used to refuel your Fluid Rig.", + "quests.medium_voltage.mv_fluid_rig.desc.5": "An example of Fluid Regions on &9The Moon&r:", "quests.medium_voltage.mv_oilsands.title": "America Simulator", "quests.medium_voltage.mv_oilsands.subtitle": "This quest was sponsored by the US Military", "quests.medium_voltage.mv_oilsands.desc": "Underground, you may come across pure Oilsands ore veins. You can &3centrifuge&r the Dust to get &aOil&r.\n\n&9&lNote:&r&l The Oil path is one path towards &9&lEthylene&r&l. The other paths involve getting natural with some Ethanol.&r\n\nFor now, Oil is &doptional&r. It becomes mandatory much later when you get to &5EV&r.\n\nOil can also be refined in the form of &aLight Fuel&r, &aDiesel&r or even &aGasoline&r, which are excellent power options.\n\nIf you chose this path, you should use it for both Power and Ethylene.\n\nOilsands are a &6great starting point&r - they'll tide you over until you unlock Fluid Drilling Rigs.", @@ -2731,17 +3119,25 @@ "quests.medium_voltage.mv_distillery.desc.3": "This doesn't mean that the &3Distillery&r is the worse of the two. It is unlocked earlier, and it is &dsmaller&r, &dcheaper&r, and &dmore energy efficient&r per recipe.\n\nHell, in many cases, you won't even mind losing the other Fluids.\n\n&3Distilleries&r are an essential component for power generation, whether you pick &aDiesel&r or &aBenzene&r.\n\nYou'll probably want many of them at as low-tier as possible to avoid the energy losses from Overclocking.", "quests.medium_voltage.mv_distillery.task": "Either an LV or MV Distillery", "quests.medium_voltage.mv_benzene.title": "The Church of Benzene", - "quests.medium_voltage.mv_benzene.subtitle": "In the end, it's always Benzene", + "quests.medium_voltage.mv_benzene.subtitle": "In the end, it &lwas&r always Benzene", "quests.medium_voltage.mv_benzene.desc.1": "&aBenzene&r is a &9Gas Fuel&r. To skip some frustration, let's check out the two best ways to obtain it.\n\nThe first option is typically &dWood based&r. Put Logs in the &3Pyrolyse Oven&r for &9Wood Tar&r. The Charcoal you obtain can then be processed in &3Extractors&r for even more &9Wood Tar&r, which you &3distill&r for &aBenzene&r.\n\nYour second option is &dHeavy Oil based&r. Put Heavy Oil in a &3Distillery&r for &9Heavy Fuel&r, which you &aseverely steam-crack&r and &3distill&r again for &aBenzene&r.", - "quests.medium_voltage.mv_benzene.desc.2": "For information on how to process Oil, check the Light Fuel and Naphtha Quests.\n\nIn general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources.\n\n&aBenzene&r is burned in a &3Gas Turbine&r. This power source starts weaker than its &eDiesel&r cousin, but gets a big boost when refined to &6Nitrobenzene&r in &6HV&r. Ultimately, your power source is your choice.", + "quests.medium_voltage.mv_benzene.desc.2": "For information on how to process Oil, check the Light Fuel and Naphtha Quests.\n\nIn general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources.\n\n&aBenzene&r is burned in a &3Gas Turbine&r at a pretty terrible rate. This power source starts weaker than its &eDiesel&r cousin, but can be enhanced by being refined into &6Reformate Gas&r. Ultimately, your power source is your choice.", + "quests.medium_voltage.mv_benzene.desc.3": "&l&3Lore:&r&o Benzene has been one of the most powerful gas fuels since GTCEu - so good that it became a meme. Nowadays, its days are numbered everywhere.", + "quests.medium_voltage.reformate_gas.title": "The Reformate Church", + "quests.medium_voltage.reformate_gas.subtitle": "When one giant falls, a new one arises", + "quests.medium_voltage.reformate_gas.desc": "The &7Reformate Gas&r is your new go-to gas fuel at &bMV&r if that's the path you want to take. For perfect efficiency, you only need &61 Liquefaction Tower&r and &62 Pyrolyze Ovens&r, and you can start producing this precious gas non-stop.\n\nOh wait, first you need to find &5Rhenium&r, a new material only found within the hot and dry region of &7TerraFirmaCraft&r. The amounts consumed are so low that one vein should last you to the end of the modpack, or at the very least to &6HV&r, where - with the help of the &6Cracker&r - this gas can become truly infinite.", "quests.medium_voltage.mv_light_fuel.title": "Light Fuel", - "quests.medium_voltage.mv_light_fuel.subtitle": "Turn up the Lights in here, baby", + "quests.medium_voltage.mv_light_fuel.subtitle": "Turn up the lights in here, baby", "quests.medium_voltage.mv_light_fuel.desc": "Distillating &aOil&r will give you Fuel that you will need to desulfurize.\n\n&aHydrogen Sulfide&r is perfectly &drecycled&r in an &3Electrolyzer&r.\n\nTo automate this process, simply place your &3Chemical Reactor&r and your &3Electrolyzer&r next to each other. Be sure to use your &5Screwdriver&r to &4enable input from the output side&r.\n\n&aLight Fuel&r is a good &9Power&r option, but there's something even greater... check the Quest to the left.", "quests.medium_voltage.mv_diesel.title": "The Church of Diesel", "quests.medium_voltage.mv_diesel.subtitle": "Mother, how is diesel made?", "quests.medium_voltage.mv_diesel.desc.1": "&aDiesel&r is a &dOil-based &9Combustion Fuel&r.\n\nTo mix &aLight Fuel&r and &aHeavy Fuel&r, the right ratio for &3Distilleries&r is &63:2&r from &dOil&r or &dRaw Oil&r.\n\nThis would necessitate 3 Distilleries for Light Fuel, or 2 Distilleries for Heavy Fuel.", "quests.medium_voltage.mv_diesel.desc.2": "You can cut the amount of &dOil&r required &6drastically&r by using &dHeavy Oil&r for &aHeavy Fuel&r specifically. &dOilsands&r is a great option if you wish to go down this route!\n\n&o(For the math nerds, you go from 8.33 Oil -> 6 Diesel, to 5 Oil + 0.4 Heavy Oil -> 6 Diesel)&r\n\n&eNote:&r Do &cnot attempt&r to put Oil in the &3Distillation Tower&r You might think it's a good idea because it gives both Light Fuel and Heavy Fuel. However, this process requires a lot of overclocking to be worth your time, and you will lose more energy than what the byproducts are worth.", "quests.medium_voltage.mv_diesel.desc.3": "In general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources.\n\n&aDiesel&r is burned in a &3Combustion Generator&r. It can be further refined to &6Cetane-Boosted Diesel&r in &6HV&r. Compared to the other power sources, it is generally more efficient, but a more demanding processing line. If you take the &eOil&r route for &aPolyethylene&r, this can work great with existing infrastructure. Ultimately, the power source you want to use is your choice.", + "quests.medium_voltage.coal_tower.title": "Liquefaction Tower", + "quests.medium_voltage.coal_tower.subtitle": "Who doesn't love new Multiblocks", + "quests.medium_voltage.coal_tower.desc.1": "The &bLiquefaction Tower&r is a new &bmultiblock&r used in the process of making &aReformate Gas&r and its byproducts, &7Coal Tar&r and &7Syngas&r. Depending on the &9Coil&r you use, you will get a discount on the &7recipe duration&r of every recipe. Simply use shift-click while hovering on a coil to know its bonuses.\n\nNotice that the &9Liquefaction Tower&r can be boosted by using &7Hydrogen&r, reducing the duration and therefore the cost. Don't forget to set the right &6circuit&r so it works.\n\nBy the way, if you don't know, a second is 20 ticks. So the amount it consumes per tick has to be multiplied by 20 to know how much it consumes per second.", + "quests.medium_voltage.coal_tower.desc.2": "&l&3Lore:&r&o The same person who made the Fission Reactor also made the first design of the Liquefaction Tower, isn't it crazy.", "quests.medium_voltage.mv_jetpack.title": "I Believe I Can Fly", "quests.medium_voltage.mv_jetpack.subtitle": "...well, almost Fly", "quests.medium_voltage.mv_jetpack.desc": "This Jetpack takes most &aCombustion Fuels&r (excluding oils) to enable a primitive form of flight.\n\nFill it like you would fill a Drum, or with a &3Canning Machine&r.\n\nPress &4H&r (default) to enable Hover Mode.", @@ -2772,7 +3168,7 @@ "quests.medium_voltage.mv_aciditic.title": "It will Melt Your Flesh", "quests.medium_voltage.mv_aciditic.subtitle": "...if you don't read this quest.", "quests.medium_voltage.mv_aciditic.desc.1": "You may notice that some fluids say they are &aAcidic&r, with &9Sulfuric Acid&r being one of them.\n\nThis means that many fluid pipes will not be able to transport them safely!\n\nAt &bMV&r, the cheapest pipes for acid transportation are probably &aGold&r, with the more expensive &aVanadium Steel&r or &aChrome&r pipes taking second and third place.\n\n&aStainless Steel&r or &aPolytetrafluoroethylene&r (try saying that fast) will be valid options once you are in &6HV&r.", - "quests.medium_voltage.mv_aciditic.desc.2": "You have three options for acid storage at around this point: &dGlass Vials&r, &dGold Drums&r, or &dSuper Tanks&r. Glass Vials are like &9Fluid Cells&r, and are made to store acids. Gold Drums are self-explanatory. Super Tanks will be unlocked after &9Polyethylene&r, and can store any fluid without restriction.\n\n&cWARNING:&r Acids in the wrong pipes will cause &cvoiding&r, &cpipe burning&r, and high chance of &cdeath&r! Be careful!\n\n&l&3Lore:&r&o The acid transportation and storage mechanics originate from GregTech 6.", + "quests.medium_voltage.mv_aciditic.desc.2": "You have three practical options for acid storage at around this point: &dGlass Vials&r, &dGold Drums&r, or &dSuper Tanks&r. Glass Vials are like &9Fluid Cells&r, and are made to store acids. Gold Drums are self-explanatory. Super Tanks can store any fluid without restriction, but are the most expensive.\n\n&cWARNING:&r Acids in the wrong pipes will cause &cvoiding&r, &cpipe burning&r, and high chance of &cdeath&r! Be careful!\n\n&l&3Lore:&r&o The acid transportation and storage mechanics originate from GregTech 6.", "quests.medium_voltage.mv_aciditic.task": "I'm an acid professional, don't worry", "quests.medium_voltage.mv_hydrochloric.title": "Hydrochloric Acid", "quests.medium_voltage.mv_hydrochloric.subtitle": "You'll need a lot of this!", @@ -2793,9 +3189,6 @@ "quests.medium_voltage.mv_polyethylene.title": "Polyethylene", "quests.medium_voltage.mv_polyethylene.subtitle": "Baby's first polymer!", "quests.medium_voltage.mv_polyethylene.desc": "If you want to be less fancy, just call it plastic.\n\nFor the polymerization process, add &aOxygen&r, which gives better returns than Air, then solidify like you would with Rubber.\n\n&aPolyethylene (PE)&r is the key to unlocking &6many new things&r. It's commonly used as &dSheets&r, or in &dFluid&r form.\n\n&l&3Lore:&r&o The OreDict and fluid name for Polyethylene in 1.12.2 GTCEu was &bplastic&f, for cross-mod compatibility.", - "quests.medium_voltage.mv_tank.title": "Super Tank", - "quests.medium_voltage.mv_tank.subtitle": "Super Tanks are OP!", - "quests.medium_voltage.mv_tank.desc": "No, but seriously.\n\nThis is the &cu&6l&et&ai&bm&9a&5t&4e&r portable Fluid storage solution. &64,000 buckets of storage&r - in one single block without any regards to temperature or acidity!\n\nLike Drums, Super Tanks &6keep their fluids when broken&r, and can be cleared in the crafting grid.\n\nIf you hunger for &9even more&r storage, take a look at higher tier Super Tanks or AE2 Fluid Storage Cells.", "quests.medium_voltage.mv_pvc.title": "Polyvinyl Chloride", "quests.medium_voltage.mv_pvc.subtitle": "You've already made one polymer, what's two?", "quests.medium_voltage.mv_pvc.desc": "&aPolyvinyl Chloride (PVC)&r is the 3rd-most produced plastic in real life. Here in CEu, it can be substituted for Polyethylene in the production of &aPlastic Circuit Boards&r and other items to increase the yield. It is required from &5EV&r onwards to wrap Cables.\n\nPVC item pipes also have the &6highest throughput&r available for a while, but most of your setups right now won't need such speed. Still, it's good to keep this knowledge in your pocket.\n\n&9Pro tip:&r The fluid form of PVC is never used in base GTCEu, so feel free to solidify all of it into sheets.", @@ -2862,11 +3255,11 @@ "quests.medium_voltage.mv_cells.desc": "Aluminium Cells are a big upgrade over the Steel Cells or Universal Fluid Cells.\n\nThey can hold any fraction of Fluid - up to &d32 buckets&r!", "quests.medium_voltage.mv_jetpack_2.title": "I Believe I Can Fly II", "quests.medium_voltage.mv_jetpack_2.subtitle": "...still not quite there.", - "quests.medium_voltage.mv_jetpack_2.desc": "This jetpack enables flight, and requires energy.\n\nCharge it like you would charge a Battery.\n\nPress &4H&r (default) to enable Hover Mode.\n\n&o&8(Yeah, yeah, a jetpack is supposed to work off propellants. Y'all are always here to nitpick.)&r", + "quests.medium_voltage.mv_jetpack_2.desc": "This jetpack enables flight, and requires energy.\n\nCharge it like you would charge a Battery.\n\nPress &4H&r (default) to enable Hover Mode.\n\n&o&7(Yeah, yeah, a jetpack is supposed to work off propellants. Y'all are always here to nitpick.)&r", "quests.medium_voltage.mv_cutter.title": "Advanced Cutter", "quests.medium_voltage.mv_cutter.subtitle": "Upgrades, people, upgrades!", - "quests.medium_voltage.mv_cutter.desc": "The &3MV Cutter&r is required to cut &7Silicon Boules&r to prepare them for &aLaser Engraving&r.\n\nWe recommend you supply this machine with a steady stream of &dLubricant&r to cut down on the processing time.\n\nLubricant can be &3brewed&r from &eOil&r and &aTalc&r, &2Soapstone&r or &cRedstone&r.\n\n&7Note : You could use the &6Greate&r &7version, it has now a tank to fill with it fluid&r&r", - "quests.medium_voltage.mv_cutter.task": "Any Brewery", + "quests.medium_voltage.mv_cutter.desc": "The &3MV Cutter&r is required to cut &7Silicon Boules&r to prepare them for &aLaser Engraving&r.\n\nWe recommend you supply this machine with a steady stream of &dLubricant&r to cut down on the processing time.\n\nLubricant can be &3brewed&r from &eOil&r and &aTalc&r, &2Soapstone&r or &cRedstone&r.", + "quests.medium_voltage.mv_cutter.task": "Any Cutter", "quests.medium_voltage.mv_laser_engraver.title": "Laser Engraving", "quests.medium_voltage.mv_laser_engraver.subtitle": "This is peak technology, this is slow also", "quests.medium_voltage.mv_laser_engraver.desc": "The &3Laser Engraver&r engraves patterns into &9Silicon Wafers&r based on the type of &9Lens&r it is given. After the wafers are engraved, they must be passed through a &3Cutting Machine&r to turn them into components ready to be put into Circuits.\n\nHigher tier Engravers can etch more complex wafers for more efficient Circuits.", @@ -2874,7 +3267,7 @@ "quests.medium_voltage.mv_silicon_boule.subtitle": "These wafers are fully fungible", "quests.medium_voltage.mv_silicon_boule.desc": "&9Silicon Boules&r are made in the &3EBF&r with half a stack of &aSilicon Dust&r and a pinch of &aGallium Arsenide&r. Their primary purpose is engraving &6Circuit Wafers&r.\n\nAfter making the Boule, process it in the &3Cutter&r to get 16 Silicon Wafers ready for engraving.\n\n&cWarning:&r Each Silicon Boule takes &47.5 minutes&r to make at 120 EU/t, or 1,080,000 EU! If the EBF loses power midway, the recipe will start to &close progress&r.\n\nWith that being said, Silicon Boules take an absolute age to craft, so consider parallelizing the recipe in multiple &3EBF&rs and stockpiling them.", "quests.medium_voltage.mv_silicon.title": "Silicon Dust", - "quests.medium_voltage.mv_silicon.subtitle": "", + "quests.medium_voltage.mv_silicon.subtitle": "Sillycon", "quests.medium_voltage.mv_silicon.desc.1": "You’ll need to get used to it: in &dGregTech&r, there are always &amultiple ways&r to reach what you wantβ€”a philosophy we made sure to preserve in &aTerrafirmaGreg&r.\n\nTo obtain &5Silicon&r, we’ll suggest &ctwo main methods&r so you have clear directions. As always, it’s up to you to figure out what’s &abest for your situation&r.", "quests.medium_voltage.mv_silicon.desc.2": "First method: &amining silicon-rich ores&r. Look for &9Mica&r or &9Kyanite&r veinsβ€”they also contain &dAluminium&r. Alternatively, you can &aElectrolyze Zeolite Dust&r, found in &9Chalcopyrite&r and &dRealgar&r veins.\n\nSecond method: &eAdvanced but powerful&r. Although more expensive to set up and slower early on, it becomes the &ebest method&r at &6HV&r and beyond. Plus, it generates &9Oxygen&r as a bonus! The idea is simple: &aElectrolyze Silicon Dioxide Dust&r into &9Oxygen&r and &5Silicon&r. You can get &aSilicon Dioxide Dust&r by &9centrifuging Flint Dust&r, which itself comes from &9Flint&r collected by &asifting Gravel&r.\n\nThis setup can become &afully passive&r easily. Try using the &aEMI Recipe Tree&r tool (bottom left of your screen) to plan your buildsβ€”it really helps!", "quests.medium_voltage.mv_ulpic.title": "ULPIC Chips", @@ -2892,6 +3285,9 @@ "quests.medium_voltage.lsb.title": "Getting very steamy", "quests.medium_voltage.lsb.subtitle": "If you have unlimited fuel, it can still be good", "quests.medium_voltage.lsb.desc": "If you're &lstill&r running off the &3Large Bronze Boiler&r, you may want to upgrade to the &3Large Steel Boiler&r.\n\nIt's slightly more efficient than the &3LBB&r, and produces &d1800 mB/t of Steam&r.\n\nWe'd recommend you try other power options at this point.", + "quests.medium_voltage.stainless_greate.title": "Stainless Steel-tier Greate", + "quests.medium_voltage.stainless_greate.subtitle": "High Stress", + "quests.medium_voltage.stainless_greate.desc": "This quest is just here to let you know that Greate has another upgrade at this point.\n\nYou may find the next tier of Crushing Wheels useful, as they can give the full amount of byproducts, just like the HV Macerator, but also process multiple items at the same time!", "quests.metal_age": "Metallurgy Age", "quests.metal_age.subtitle": "Your First Technological Advancements.", "quests.metal_age.weld_bronze_ingots.title": "Welding Bronze", @@ -2923,11 +3319,11 @@ "quests.metal_age.wrought_iron_anvil.desc": "With the Wrought Iron Anvil you'll be able to work Wrought Iron Ingots into different items such as Sheets, Tool heads, etc.\n\nWrought Iron tools and armor isn't much of an improvement over Bronze, but it has far more durability.\n\nCreating the next anvil is going to be a significant step up in difficulty, so this is a good point to settle down and explore some of the other things this modpack has to offer.", "quests.metal_age.coke_oven.title": "Coke Oven", "quests.metal_age.coke_oven.subtitle": "Finally, No More Charcoal Piles", - "quests.metal_age.coke_oven.desc.1": "The Coke Oven is your first GregTech multiblock! It allows you to automatically create Charcoal and other powerful combustibles. The Coke Oven will burn one Log into one Charcoal and 250mb of Creosote, which is an important chemical used wood treating.\n\nIf you craft the main Coke Oven block and press the JEI 'Uses' key on it (defaults to \"U\"), you'll find the tab called \"Multiblock Info\", which shows you how to build the Coke Oven in the world.\n\nYou can also just place the Controller block in the world, and interact with it while sneaking to create a Hologram of blocks missing.", + "quests.metal_age.coke_oven.desc.1": "The Coke Oven is your first GregTech multiblock! It allows you to automatically create Charcoal and other powerful combustibles. The Coke Oven will burn one Log into one Charcoal and 250mb of Creosote, which is an important chemical used in wood treating and as an early fuel.\n\nIf you craft the main Coke Oven block and press the JEI 'Uses' key on it (defaults to \"U\"), you'll find the tab called \"Multiblock Info\", which shows you how to build the Coke Oven in the world.\n\nYou can also just place the Controller block in the world, and interact with it while sneaking to create a Hologram of blocks missing.", "quests.metal_age.coke_oven.desc.2": "Coke Ovens can be fully automated using a Coke Oven Hatch. The Hatch is placed on the sides of the Oven and work as both Inputs and Outputs for both Items and Liquids.\n\nYou can easly create a simple, one way Coke Oven by using a Crate for the input, a Chest for the output, and a Drum, Barrel, or Large Wooden Tank to collect the Creosote. Unlike Chests, Crates are able to store large objects such as Logs. You can also sneak and right-click GregTech pipes with a wrench to make them one-way.", "quests.metal_age.wrought_iron_goodies.title": "Wrought Iron level Mechanical Power", "quests.metal_age.wrought_iron_goodies.subtitle": "What's this \"Andesite Alloy\" you speak of?", - "quests.metal_age.wrought_iron_goodies.desc": "With Wrought Iron you've unlocked access to the Metal Casing, the foundation of many of Create's mechanical blocks such as Gearboxes. Some of the more advanced ones will require Steel, but it's possible to build a fully automatic tree and crop farm at this point.\n\nCreosote is used to create Treated Wood Planks, which can be crafted into Waterwheels and Windmills, a significant improvement over animal power.", + "quests.metal_age.wrought_iron_goodies.desc": "With Wrought Iron you've unlocked access to the Metal Casing, the foundation of many of Create's mechanical blocks such as Gearboxes. Some of the more advanced ones will require Steel, but it's possible to build a partially automatic tree and crop farm at this point.\n\nCreosote is used to create Treated Wood Planks, which can be crafted into Waterwheels and Windmills, a significant improvement over animal power.", "quests.metal_age.fire_clay_ingredients.title": "Fire Clay Ingredients", "quests.metal_age.fire_clay_ingredients.subtitle": "The TerraFirmaCraft Rite of Passage.", "quests.metal_age.fire_clay_ingredients.desc": "Fire Clay is a special clay made out of Kaolinite, Graphite and regular Clay, which is especially resistant to high temperatures. Its two main uses are the Crucible, which works as an improved version of a Vessel for Metal Smelting and Alloying, and the Blast Furance, which is required for the creation of the next anvil and metal tier, Steel.\n\nYou'll likely need to travel far, far away from your base to obtain both Graphite and Kaolin Clay, so preparation is key!", @@ -2963,7 +3359,7 @@ "quests.metal_age.crucible.desc": "The Crucible is placed on top of a Forge. It comes with 9 inventory slots and has a capacity for 4032mB of fluid, including an interface to check your alloying ratios. They also retain their contents when broken. They can also collect Pig Iron when placed below a Blast Furnace.\n\nKeep in mind that the crucible WILL try to alloy everything inside it - it does not keep metals separate like a TC Smeltery - so it's a good idea to keep it clean when you aren't using it.", "quests.metal_age.fire_bricks.title": "Fire Bricks", "quests.metal_age.fire_bricks.subtitle": "For the Blast Furnace", - "quests.metal_age.fire_bricks.desc": "Fire Bricks are used in the construction of the Blast Furnace, you need at the very least 4 Bricks to make the furnace.\n\nThe Bricks will require insulation to make sure the process of making steel is effective, you can either place 3 Wrought Iron Sheets around the Fire Bricks, or use Blast Furnace Insulation", + "quests.metal_age.fire_bricks.desc": "Fire Bricks are used in the construction of the Blast Furnace, you need at the very least 4 Bricks to make the furnace.\n\nThe Bricks will require insulation to make sure the process of making steel is effective, you can either place 3 Wrought Iron Plates around the Fire Bricks, or use Blast Furnace Insulation", "quests.metal_age.fully_stacked_blast_furnace.title": "Fully Stacked Blast Furnace", "quests.metal_age.fully_stacked_blast_furnace.subtitle": "The completed Blast Furnace", "quests.metal_age.fully_stacked_blast_furnace.desc": "A full size Blast Furnace is able to melt and process large amounts of iron at once. It's a good idea to make it bigger when you can, because you'll need a lot of steel for the future.\n\nAfter you've got your first Steam Alloy Smelter, you'll be able to create more Fire Bricks more cheaply.", @@ -2987,7 +3383,7 @@ "quests.metal_age.weak_steel.task3": "1 Part Black Bronze", "quests.metal_age.highcarb_black_steel.title": "Black Steel Ingredients", "quests.metal_age.highcarb_black_steel.subtitle": "Conservation of matter does not apply", - "quests.metal_age.highcarb_black_steel.desc": "The final two anvils are made out of complex alloys that will require a lot of metal to be created. Weak Steel and Pig Iron can be welded to create High Carbon Black Steel, which can then be worked on an anvil into Black Steel.", + "quests.metal_age.highcarb_black_steel.desc": "The final two anvils are made out of complex alloys that will require a lot of metal to be created. Weak Steel and Pig Iron can be welded to create High Carbon Black Steel, which can then be worked on an anvil into Black Steel.\n\nOnce you get a Steam Alloy Smelter, use that instead to &6double your output&r.", "quests.metal_age.black_steel_anvil.title": "T5 Anvil: Black Steel", "quests.metal_age.black_steel_anvil.subtitle": "Steam power is within your grasp", "quests.metal_age.black_steel_anvil.desc": "With the Black Steel Anvil you'll now be able to work Black Steel Ingots into different items.\n\nYou've also now opened up a massive new section in the Early Automation chapter related to high pressure Steam Power!\n\nFrom here, you can either dive straight into industrialization or finish up the last tier of anvils if you'd like. You can't avoid colored steel forever, though!", @@ -3012,23 +3408,27 @@ "quests.metal_age.weak_blue_steel.sterling_silver": "1 Part Sterling Silver", "quests.metal_age.weak_blue_steel.bismuth_bronze": "1 Part Bismuth Bronze", "quests.metal_age.highcarb_red_steel.title": "Red Steel Ingredients", - "quests.metal_age.highcarb_red_steel.subtitle": "Could deleting matter like this power a nuclear bomb?", - "quests.metal_age.highcarb_red_steel.desc": "Red Steel first starts as High Carbon Red Steel, which is made by welding Weak Red Steel and Black Steel. It needs to be worked on the Anvil to turn it into Red Steel", + "quests.metal_age.highcarb_red_steel.subtitle": "Minecraft is not a physics simulator", + "quests.metal_age.highcarb_red_steel.desc": "Red Steel first starts as High Carbon Red Steel, which is made by welding Weak Red Steel and Black Steel. It needs to be worked on the Anvil to turn it into Red Steel.\n\nIf you have a Steam Alloy Smelter, use that instead to &6double your output&r.", "quests.metal_age.highcarb_blu_steel.title": "Blue Steel Ingredients", "quests.metal_age.highcarb_blu_steel.subtitle": "Lavoisier is rolling in his grave", - "quests.metal_age.highcarb_blu_steel.desc": "Blue Steel first starts as High Carbon Blue Steel, which is made by welding Weak Blue Steel and Black Steel. It needs to be worked on the Anvil to turn it into Blue Steel", + "quests.metal_age.highcarb_blu_steel.desc": "Blue Steel first starts as High Carbon Blue Steel, which is made by welding Weak Blue Steel and Black Steel. It needs to be worked on the Anvil to turn it into Blue Steel.\n\nIf you have a Steam Alloy Smelter, use that instead to &6double your output&r.", "quests.metal_age.redblu_anvil.title": "T6 Anvil: Red or Blue Steel", "quests.metal_age.redblu_anvil.subtitle": "It's over", "quests.metal_age.redblu_anvil.desc": "The final tier of Anvil! With the Tier 6 Anvil you'll be able to work both Red and Blue Steel Ingots into different items.\n\nThis marks the end of TerraFirmaCraft's progression. Now it's time to finish the Industrial Age and create your very first Low Voltage circuitry.", "quests.metal_age.red_steel_flask.title": "Red Steel Flask", "quests.metal_age.red_steel_flask.subtitle": "This got nothing on the Iron Flask", - "quests.metal_age.red_steel_flask.desc": "The Red Steel Flask is the best Flask available. It may hold the same amount of liquid as an Iron Flask, but the Red Steel Flask never breaks.", + "quests.metal_age.red_steel_flask.desc": "The Red Steel Flask is the best Flask available. It may hold the same amount of liquid as an Iron Flask, but the Red Steel Flask never breaks.\n\nFor the Silk, Phantoms can be found all over the Beneath, but are more common in the bottom layer.", "quests.metal_age.redblu_buckets.title": "Bucket Components", "quests.metal_age.redblu_buckets.subtitle": "Bucket Fusion Reactor", "quests.metal_age.redblu_buckets.desc": "The final task in the Metallurgy Age is creating a Bucket. Unlike the wooden bucket and other fluid containers you've been using until now, the Bucket can be used to carry Lava and move around source blocks of other fluids.", "quests.metal_age.this_is_a_bucket.title": "This... is a Bucket.", "quests.metal_age.this_is_a_bucket.subtitle": "Dear God...", "quests.metal_age.this_is_a_bucket.desc": "Congratulations on crafting the Bucket. The Metallurgy Age is officially over.\n\nGo and start working on those Low Voltage components!", + "quests.metal_age.temperature_protection.title": "Colored Steel Equipment", + "quests.metal_age.temperature_protection.subtitle": "Permanent Temperature Protection", + "quests.metal_age.temperature_protection.desc": "Tired of holding tongs? The excellent thermal protection properties of colored steel carries over to their equipment!\n\n&9Blue Steel&r equipment can protect against extreme heat, such as holding hot ingots or stepping on pipes full of steam, while &cRed Steel&r equipment does the same but for the cold. Chestplate items protects your inventory, while boot items protect against pipes.\n\nCheck the &6#hot_protection_equipment&r and &b#cold_protection_equipment&r tags for a full list!", + "quests.metal_age.temperature_protection.task": "Any red or blue steel equipment", "quests.ore_proc": "Ore Processing", "quests.ore_proc.subtitle": "Everything you'll need to get the most out of your ores", "quests.ore_proc.native_ore.title": "Welcome to Ore Processing", @@ -3115,7 +3515,7 @@ "quests.ore_proc.macerator_separator.task": "Any Macerator", "quests.ore_proc.thermal_centrifuge.title": "The Thermal Centrifuge", "quests.ore_proc.thermal_centrifuge.subtitle": "The go-to for most purified ores", - "quests.ore_proc.thermal_centrifuge.desc": "For all your other Purified Ores that doesn't need special treatment, it's best to run them through the &dThermal Centrifuge&r. This machine can produce byproducts at a reliable rate, while only using electricity. It's quite slow, however, so we suggest making multiple machines.", + "quests.ore_proc.thermal_centrifuge.desc": "For all your other Purified Ores that doesn't need special treatment, it's best to run them through the &dThermal Centrifuge&r. This machine can produce byproducts at a reliable rate, without needing any other ingredients. It's quite slow, however, so we suggest either making multiple machines or the steam parallel multiblock.", "quests.ore_proc.thermal_centrifuge.task": "Any Thermal Centrifuge", "quests.ore_proc.sifter.title": "The Sifter", "quests.ore_proc.sifter.subtitle": "The Skyblock Simulator", @@ -3140,8 +3540,8 @@ "quests.ore_proc.gem_slurry.subtitle": "We... are the crystalβ€”hblrlrlr", "quests.ore_proc.gem_slurry.desc": "&6Gem Slurries&r are optional but short processing lines for Ruby, Sapphire, and Green Sapphire to squeeze a bit more resources out of them. Compared to electrolysis:\n\n- &cRuby Slurry&r returns almost 3x as much Aluminium and Chromium\n\n- &9Sapphire Slurry&r returns 2x as much Aluminium\n\n- &aGreen Sapphire Slurry&r returns 2x as much Aluminium and a little extra Beryllium\n\nAnd on top of that, they all have a small chance to return some extra Titanium, Iron, and Vanadium too!", "quests.ore_proc.gem_slurry.task": "Any Gem Slurry Ore", - "quests.space_survival": "Tips - Space Survival", - "quests.space_survival.subtitle": "The one place that hasn't been corrupted by capitalism... Space!", + "quests.moon": "The Moon", + "quests.moon.subtitle": "The one place that hasn't been corrupted by capitalism... Space!", "quests.space_survival.preparations.title": "Pre-Launch Preparations", "quests.space_survival.preparations.subtitle": "Make sure you're ready!", "quests.space_survival.preparations.desc": "Eager to launch into the final frontier? We totally get the enthusiasm but you can't just hurl yourself into space and hope to survive! &9Preparation&r is key to survival, or you'll just end up back in the Stone Age banging rocks together for a few seconds before suffocating to death.\n\nMake sure you have at least the following:\n- A Space Suit and a full drum of breathable gas\n- A Rocket with another full drum of spare Fuel\n- A Launch Pad so you can return\n- Plenty of food and water\n- A weapon and shield in case the Moon's haunted...", @@ -3165,10 +3565,11 @@ "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 &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.solar_panels.task": "Any FE to EU converter", "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!", - "quests.space_survival.stone_dust_centrifuging.desc.2": "2) Pump it out of the ground with a &9Fluid Rig&r This method is simpler, but doesn't come with any useful byproducts.\n\nHelium-3 is used for several things, of which the most important is making more air to breathe via &6Heliox-3&r! You can also use it as \"fertiliser\" for Chorus Fruit in the Electric Greenhouse, and eventually as another fuel for Fusion Power.", + "quests.space_survival.stone_dust_centrifuging.desc.2": "2) Pump it out of the ground with a &9Fluid Rig&r This method is simpler, but doesn't come with any useful byproducts.\n\nHelium-3 is used for several things, of which the most important is making more air to breathe via &6Heliox-3&r! You can also use it as \"fertilizer\" for Chorus Fruit in the Electric Greenhouse, and eventually as another fuel for Fusion Power.", "quests.space_survival.stone_dust_centrifuging.task": "Any ", "quests.space_survival.compressed_gases.title": "Compressed Breathable Gases", "quests.space_survival.compressed_gases.subtitle": "Because pure Oxygen is deadly", @@ -3232,6 +3633,8 @@ "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.mars": "Surviving Mars", + "quests.mars.subtitle": "The shifting sands await", "quests.space_survival.mars_desert.title": "The Martian Desert", "quests.space_survival.mars_desert.subtitle": "Sand, sand everywhere", "quests.space_survival.mars_desert.desc": "The majority of Mars is covered in a vast desert. Not much lives here except the occasional Stackatick, and of course the giant &6Sandworms&r. If this is your first time here, you'll want to find somewhere more hospitable! Otherwise, you'll want to keep searching...", @@ -3241,7 +3644,7 @@ "quests.space_survival.sandworm.desc": "If you make too much noise in the desert, you might attract the attention of the mighty &6Sandworm&r! It's more of an environmental hazard than a boss to kill, so your best way of surviving it is to run away!\n\nIf you manage to hit its head enough times with &bexplosion damage&r, it will leave you alone... for a while.\n\nThankfully, the Sandworm can only damage entities, not buildings, and is only attracted to the &6footsteps of players&r, so any way to keep &byour own feet&r off the ground won't anger it. The atmosphere is too thin for airplanes and hang gliders, but there are other tools...", "quests.space_survival.spice.title": "Ostrum Deposits", "quests.space_survival.spice.subtitle": "Spice Melange", - "quests.space_survival.spice.desc": "&dOstrum Deposits&r are immovable blocks that you can only find in the Martian Deep Desert, far away from any of the more lush areas. They spawn in small blobs, and can be broken to make space for your Ostrum Harvester if they're on a slope. Try using a &6Spyglass&r to find them from a distance!\n\nYou'll have to figure out some long-distance logistics to ship your Ostrum back to your base. (Try a train, Accumulators can transport power!)\n\nOstrum is a crucial resource for both &5EV&r progression and making infinite ores from Mars.", + "quests.space_survival.spice.desc": "&dOstrum Deposits&r are immovable blocks that you can only find in the Martian Deep Desert, far away from any of the more lush areas. They spawn in small blobs, and can be broken to make space for your Ostrum Harvester if they're on a slope. Try using a &6Spyglass&r to find them from a distance!\n\nYou'll have to figure out some long-distance logistics to ship your Ostrum back to your base. (Try a train!)\n\nOstrum is a crucial resource for both &5EV&r progression and making infinite ores from Mars.", "quests.space_survival.spice.task": "The spice must flow", "quests.space_survival.mars_islands.title": "The Martian Jungles", "quests.space_survival.mars_islands.subtitle": "Is that a dinosaur?!", @@ -3267,7 +3670,7 @@ "quests.space_survival.t2_space_suit.desc": "With this next space suit, you'll be able to survive both the &bcoldest&r and the &chottest&r environments that space can throw at you! It's required to stop you from immediately combusting as soon as you set foot on &6Venus&r and &5Mercury&r.\n\nAs a bonus, it also comes with some extra armor and air capacity!", "quests.space_survival.mars_tapping.title": "Crimsene and Warpane", "quests.space_survival.mars_tapping.subtitle": "You LOVE tree tapping!", - "quests.space_survival.mars_tapping.desc": "Crimson and Warped Mushrooms can be tree tapped for &4Crimsene&r and &3Warpane&r respectively.\n\nYou'll need both to get started on producing &9Iodine&r, but they don't often grow in the same place, so you might need to travel a bit. Crimson Mushrooms grow more on the East side of Mars, while Warped grow more on the West.\n\nDon't forget that you can tap directly into open GregTech fluid pipes!\n\n&9Tip:&r Want to show off? You can also build a canoe out of Crimson Stems, and build a Rowboat or Sloop out of Warped ones!", + "quests.space_survival.mars_tapping.desc": "Crimson and Warped Mushrooms can be tree tapped for &4Crimsene&r and &3Warpane&r respectively.\n\nYou'll need both to get started on producing &9Iodine&r, but they don't often grow in the same place, so you might need to travel a bit. Crimson Mushrooms grow more on the East side of Mars, while Warped grow more on the West. You can also obtain the saplings from the corresponding Endermen.\n\nDon't forget that you can tap directly into open GregTech fluid pipes!\n\n&9Tip:&r Want to show off? You can also build a canoe out of Crimson Stems, and build a Rowboat or Sloop out of Warped ones!", "quests.space_survival.iodine.title": "The Iodine Line", "quests.space_survival.iodine.subtitle": "Mushroom chemistry!", "quests.space_survival.iodine.desc": "Mix together the Crimsene and Warpane, along with some Krypton from Mars Air Distillation (it's looped) and the heat from your Fission Reactor, and you'll get Iodine!\n\nThis process is slow, but you shouldn't need a lot of it for now, and there will be better methods of obtaining Iodine on further planets.", @@ -3327,19 +3730,23 @@ "quests.steam_age.horse_crank.title": "Your First Power Source", "quests.steam_age.horse_crank.subtitle": "Make your livestock pay rent", "quests.steam_age.horse_crank.desc.1": "The &3Animal Crank&r is your first accessible source of mechanical power. To use it, place the crank on the center of a 7x7 cleared area and leash an animal to it. Different animals will provide different amounts of power, while the blocks underneath will increase the speed of the output power. The area of multiple cranks can overlap.\n\nYou may need to hold a second lead to attach an animal.", - "quests.steam_age.horse_crank.desc.2": "&3Small Animals (4 SU):&r\nWolf, Dog, Pig, Sheep, Goat, Alpaca\n\n&3Medium Animals (6 SU):&r\nCow, Donkey\n\n&3Large Animals (8 SU):&r\nHorse, Mule, Musk Ox, Yak", + "quests.steam_age.horse_crank.desc.2": "&3Small Animals (8 SU):&r\nWolf, Dog, Pig, Sheep, Goat, Alpaca\n\n&3Medium Animals (12 SU):&r\nCow, Donkey\n\n&3Large Animals (16 SU):&r\nHorse, Mule, Musk Ox, Yak", "quests.steam_age.poor_paths.title": "Poor Paths", "quests.steam_age.poor_paths.subtitle": "This is just dirt", - "quests.steam_age.poor_paths.desc": "This is the worst kind of road you could use. The animal crank will operate at 2 RPM.", + "quests.steam_age.poor_paths.desc": "This is the worst kind of road you could use. The animal crank will operate at 8 RPM.", "quests.steam_age.normal_paths.title": "Medium Paths", "quests.steam_age.normal_paths.subtitle": "Ok, you put a little effort in", - "quests.steam_age.normal_paths.desc": "Medium paths are a little better and will let your animals turn the crank at 4 RPM.\n\nNote: You can't have a Dirt Path block directly under the animal crank, so that one will have to be Gravel.", + "quests.steam_age.normal_paths.desc": "Medium paths are a little better and will let your animals turn the crank at 16 RPM.\n\nNote: You can't have a Dirt Path block directly under the animal crank, so that one will have to be Gravel.", "quests.steam_age.good_paths.title": "Great Paths", "quests.steam_age.good_paths.subtitle": "No horseshoes required!", - "quests.steam_age.good_paths.desc": "These are the best kind of paths you could use, letting your crank output at 8 RPM. These kinds of paths also increases the player's move speed too, so they're great to pave your base with!", + "quests.steam_age.good_paths.desc": "These are the best kind of paths you could use, letting your crank output at 32 RPM. These kinds of paths also increases the player's move speed too, so they're great to pave your base with!", "quests.steam_age.helve_hammer.title": "Helve Hammer", "quests.steam_age.helve_hammer.subtitle": "CLANG... CLANG... CLANG...", - "quests.steam_age.helve_hammer.desc": "Does crafting all those plates for a Bloomery look tedious? The &3Helve Hammer&r will automatically (but slowly) flatten double ingots into plates for you. You'll still have to do the welding yourself though. Simply place an anvil directly under the hammer and throw your double ingots onto it, then right-click the hammer to get your plates out.\n\nHigher tier anvils will also require fewer hits to make plates from the previous tier.", + "quests.steam_age.helve_hammer.desc.1": "Does crafting all those plates for a Bloomery look tedious? The &3Helve Hammer&r will automatically (but slowly) flatten double ingots into plates for you. You'll still have to do the welding yourself though. Simply place an anvil directly under the hammer and throw your double ingots onto it by pressing the &2Throw Item key (Default: Q)&r, then right-click the hammer to get your plates out.\n\nHigher tier anvils will also require fewer hits to make plates from the previous tier.", + "quests.steam_age.helve_hammer.desc.2": "Be sure to use cogs to increase its speed!\n\nIt may be unimpressive to start, but once you're able to increase its speed to 256 RPM with Steel cogs and shafts, the Helve Hammer will really start to shine.", + "quests.steam_age.multiblock_tank.title": "Multiblock Tanks", + "quests.steam_age.multiblock_tank.subtitle": "Huge amounts of fluid storage", + "quests.steam_age.multiblock_tank.desc": "Do you have a huge pile of wooden barrels as you try to store all that Creosote?\n\nLook no further than the Multiblock Tanks, where even the cheapest wooden one can hold a whopping 1,000 buckets. There's also Bronze and Steel versions if you need even more storage!\n\nTo automatically fill or drain the tanks, use a Valve.", "quests.steam_age.water_wheel.title": "Water Wheels", "quests.steam_age.water_wheel.subtitle": "Hope you set up your base near a river!", "quests.steam_age.water_wheel.desc": "Water wheels provide much more power than the Animal Crank, at the expense of requiring flowing water. You don't have the ability to move water sources yet, so you'll need to find a river to power these. Oceans and Lakes can also provide a little power, but if you're far inland, you're better off looking at building a windmill.\n\nYou can get treated wood by soaking any planks in creosote from your Coke Oven.", @@ -3387,11 +3794,11 @@ "quests.steam_age.mold_table.desc.2": "If you'd like, you can also use a Chute to drop your items into the top of the blast furnace, and a Deployer to automatically work the bellows. Excessive bellow blowing will quickly use up the durability of your Tuyere, though item pipes can push a new one in.\n\nYou could even have a pump pull from both your blast furnace and your crucible, using a Fluid Valve to stop the pump while you're alloying, and turn it back on once you're finished.", "quests.steam_age.fluid_pipes.title": "Fluid Pipes", "quests.steam_age.fluid_pipes.subtitle": "Liquids, gases... we don't discriminate", - "quests.steam_age.fluid_pipes.desc.1": "&bFluid Pipes&r will transport &7Steam&r between machines for you.\n\nEach Pipe has a certain throughput in mB/t, and a &6Temperature Limit&r. This is relevant right now, as Steam will burn Wooden Pipes. Some pipes have &bspecial&r attributes you don't need to worry about for now.\n\nEach material has several sizes for Pipes. The bigger the Pipe, the &ahigher&r the throughput, but the more &dexpensive&r the craft. For example, a normal &6Bronze Fluid Pipe&r transfers 120 mB/t. (It also has a 1,200 mB internal buffer!)\n\nTo start off, we recommend using Wood pipes for cold fluids, and Bronze ones for hot fluids.", + "quests.steam_age.fluid_pipes.desc.1": "&bFluid Pipes&r will transport &7Steam&r between machines for you.\n\nEach Pipe has a certain throughput in mB/t, and a &6Temperature Limit&r. This is relevant right now, as Steam will burn Wooden Pipes. Some pipes have &bspecial&r attributes you don't need to worry about for now.\n\nEach material has several sizes for Pipes. The bigger the Pipe, the &ahigher&r the throughput, but the more &dexpensive&r the craft. For example, a normal &6Bronze Fluid Pipe&r transfers 120 mB/t. (It also has a 1,200 mB internal buffer!)\n\nTo start off, we recommend using Wood pipes for room-temperature fluids, and Bronze ones for hot fluids.", "quests.steam_age.fluid_pipes.desc.2": "&aReminder:&r 1 second = 20 ticks... assuming the server isn't lagging.\n\n&dNote:&r GT6-style Pipes are enabled. It means that placing Pipes connects them only to the block they were placed against. To open more connections, use your Wrench on the pipe.\n\nYou can also shift-right click with your Wrench to disable input from a side. This can help counteract sloshing (liquids travelling in an undesired direction).", "quests.steam_age.fluid_drums.title": "Efficient Fluid Storage", "quests.steam_age.fluid_drums.subtitle": "I don't think a wooden barrel can hold molten steel", - "quests.steam_age.fluid_drums.desc.1": "&6TFG&r can quickly get &4overwhelming&r with the plethora of fluids it introduces, so you may be looking for a way to store them.\n\nIntroducing... &aDrums&r! They have large internal buffers, and any &aDrum&r can be broken and picked up and will &dkeep the fluid&r inside. A right-click with a Soft Mallet allows a Drum to drain its content into another container placed below it.", + "quests.steam_age.fluid_drums.desc.1": "&6TFG&r can quickly get &4overwhelming&r with the plethora of fluids it introduces, so you may be looking for a way to store them.\n\nIntroducing... &aDrums&r! They have large internal buffers, and any &aDrum&r can be broken and picked up and will &dkeep the fluid&r inside. A right-click with a Soft Mallet or Screwdriver allows a Drum to drain its content into another container placed below it.", "quests.steam_age.fluid_drums.desc.2": "&l&3Lore:&r&o These drums are actually ported from GregTech 6.", "quests.steam_age.boilers.title": "Steam Boilers", "quests.steam_age.boilers.subtitle": "Portable Steamroom", @@ -3400,12 +3807,12 @@ "quests.steam_age.boilers.tasks": "Any High Pressure Steam Boiler", "quests.steam_age.steam_bloomery.title": "Steam Bloomery", "quests.steam_age.steam_bloomery.subtitle": "The Bloomery's uncle", - "quests.steam_age.steam_bloomery.desc": "You're always going to need a lot of Wrought Iron, so why not automate your Bloomery? The next closest way to automate wrought iron is way off in LV. The Steam Bloomery is a new multiblock that'll automate your old TFC bloomery, and do it faster too! Like with the Coke Oven, you can press the JEI 'Uses' key (defaults to \"U\") to show the multiblock preview tab. Click on individual blocks to see what's valid in each location.", + "quests.steam_age.steam_bloomery.desc": "You're always going to need a lot of Wrought Iron, so why not automate your Bloomery? The next closest way to automate wrought iron is way off in LV.\n\nThe &3Steam Bloomery&r is a new multiblock that'll automate your old TFC bloomery, and do it faster too!\n\nLike with the Coke Oven, you can press the JEI 'Uses' key (defaults to \"U\") to show the multiblock preview tab. Click on individual blocks to see what's valid in each location.", "quests.steam_age.steam_furnace.title": "Steam Furnace", "quests.steam_age.steam_furnace.subtitle": "The Steam Furnace furnaces...", "quests.steam_age.steam_furnace.desc": "Want to quickly smelt something into an ingot? The &3Steam Furnace&r does just that! It can turn many ores and dusts quickly into their ingot form, at the expense of not getting any byproducts.", "quests.steam_age.steam_oven.title": "Steam Oven", - "quests.steam_age.steam_oven.subtitle": "The Steam Grinder's big brother", + "quests.steam_age.steam_oven.subtitle": "The Steam Furnace's big brother", "quests.steam_age.steam_oven.desc.1": "&o...or little brother. Don't let him know!&r\n\nThe &3Steam Oven&r is a great multiblock option if you need &6effortlessly smelt large quantities of items.&r No more lines of furnaces that you have to manually empty and refuel!\n\nIt effectively behaves as a parallel furnace, smelting up to 8 items at a time for a low cost of Steam.", "quests.steam_age.steam_oven.desc.2": "&l&3Lore:&r&o This Multiblock - despite being very similar to its brother, the Steam Grinder - isn't ported from a GregTech version or addon. Its actual progenitor is the Steam Oven from Railcraft, which dates back to 1.4.7!", "quests.steam_age.steam_macerator.title": "Steam Macerator", @@ -3437,7 +3844,7 @@ "quests.steam_age.extractor.desc": "Not many items are made in the &3Extractor&r during the &6Steam Age&r, as it lacks the capability to extract fluids.", "quests.steam_age.glass_tube.title": "Glass Tubes", "quests.steam_age.glass_tube.subtitle": "You'll want a lot of these", - "quests.steam_age.glass_tube.desc": "While you could make all of these by hand with glassblowing, it's much more time efficient to create them in your Alloy Smelter with the appropriate mold instead. Need a lot of glass dust? You can either glassblow 16 panes at once to macerate them, or use the Rock Crusher and Forge Hammer to get lots of sand, then add a little Flint dust to turn it into glass dust.", + "quests.steam_age.glass_tube.desc": "While you'll need to make your first glass tubes by hand with glassblowing, it'll soon be much more time efficient to create them in your Alloy Smelter with the appropriate mold instead. Need a lot of glass dust? You can either glassblow 16 panes at once to macerate them, or use the Rock Crusher and Forge Hammer to get lots of sand, then add a little Flint dust to turn it into glass dust.", "quests.steam_age.treated_planks.title": "Treated Planks", "quests.steam_age.treated_planks.subtitle": "Also known as Treated Plywood", "quests.steam_age.treated_planks.desc": "Hope you've been saving up your creosote, because making these pulped and compressed planks is another use for it.\n\n&l&3Lore:&r&o In earlier versions of TerraFirmaGreg, this was the point when you could actually start Create!", @@ -3503,7 +3910,7 @@ "quests.steam_age.lathe.desc": "The &3Belt Grinder&r can automatically turn a single ingot into two rods, single bolts into screws, polish gems, and a few other things. If you're needing a lot of rods and screws, and you will be, this machine will be a good investment.", "quests.steam_age.steel_saw.title": "Steel Mechanical Saw", "quests.steam_age.steel_saw.subtitle": "A stonecutter and LV Cutter in one!", - "quests.steam_age.steel_saw.desc": "It's an upgrade to your Basic Mechanical Saw that can also process some metal recipes, like turning rods into four bolts, and cutting blocks into plates. These recipes will all require a fluid to work, but you can just use water for now.\n\nYou can also use this for cheaper Rubber Sheets, if you first use an Alloy Smelter to turn your pulp into a block.", + "quests.steam_age.steel_saw.desc": "It's an upgrade to your Basic Mechanical Saw that can also process some metal recipes, like turning rods into four bolts, and cutting blocks into plates. These recipes will all require a fluid to work, but you can just use water for now.\n\nYou can also use this for cheaper Rubber Sheets, if you first use an Alloy Smelter to turn your pulp into a block.\n\nHaven't made Cobalt Brass before? You can either alloy it in a Crucible using anything that melts into Aluminium Silicate, or use a Mixer with Aluminium Dust from ore processing.", "quests.steam_age.rolling_mill.title": "Rolling Mill", "quests.steam_age.rolling_mill.subtitle": "The other half of the LV Bender", "quests.steam_age.rolling_mill.desc.1": "Of all the steam age machines you could make, the &3Rolling Mill&r is one of the best, for the simple reason that it makes single plates out of single ingots. It can also make thin sheets cheaper than by hand, as a bonus!", @@ -3530,7 +3937,7 @@ "quests.steam_age.what_next.desc": "If you rushed straight here, we suggest machines like the LV Bender, Wiremill, or Mixer first.\nOtherwise, if you made the kinetic machines below, we suggest the Assembler, Arc Furnace, Chemical Reactor, or Polarizer.", "quests.steam_age.alternator.title": "Alternators", "quests.steam_age.alternator.subtitle": "Turning stress into power", - "quests.steam_age.alternator.desc.1": "If you've got a big steam age set up, you probably don't want to immediately scrap it all just to go back to some boilers and LV Steam Turbines. Instead, the &3Alternator&r will convert the SU from your steam engines into electricity. Each steam engine + alternator should give you 1A of LV! Unfortunately, alternators convert stress into a different electricity system than the one GregTech uses, so you'll need an Energy Converter to turn it into usable LV energy.", + "quests.steam_age.alternator.desc.1": "If you've got a big steam age set up, you probably don't want to immediately scrap it all just to go back to some boilers and LV Steam Turbines. Instead, the &3Alternator&r will convert the SU from your steam engines into electricity. Each steam engine + alternator should give you 1A of LV!\n\nUnfortunately, alternators convert stress into a different electricity system (Forge Energy) than the one GregTech uses (Energy Units), so you'll need an Energy Converter to turn it into usable LV energy. Be sure to hit it with a Soft Mallet to convert it to FE to EU mode.", "quests.steam_age.alternator.desc.2": "An example of a steam engine producing 8 amps of LV!\n", "quests.steam_age.packager.title": "Create Logistics", "quests.steam_age.packager.subtitle": "\"We have AE2 at home\"", @@ -3542,6 +3949,19 @@ "quests.steam_age.steel_mech_press.subtitle": "Almost a Forge Hammer", "quests.steam_age.steel_mech_press.desc.1": "The High Pressure Steam Forge Hammer is right around the corner and can do almost everything that this machine can do, but if you're desperate for some higher tier automatic welding recipes, this is your ticket.\n\nIf you're unfamiliar with the Forge Hammer, both it and the Steel Mechanical Press can crush ores (without byproducts), turn rock into cobble into gravel into sand, and crack bricks. However, only the Forge Hammer can provide a &3cheaper recipe for metal plates&r...", "quests.steam_age.steel_mech_press.desc.2": "&l&3Lore:&r&o The Create Mechanical Press used to be a key piece of late steam age progression prior to version 0.9 of TerraFirmaGreg, because it produced plates at an even better ratio of 5 to 4. However, its implementation was actually \"20 percent of the time, you get nothing\", which caused many people to proclaim how much they loved gambling while using it.", + "quests.steam_age.supers.title": "Super Chests and Super Tanks", + "quests.steam_age.supers.subtitle": "Super Storage Drawers", + "quests.steam_age.supers.desc": "This is the &cu&6l&et&ai&bm&9a&5t&4e&r portable item and storage solution if you have a lot of single items or fluids. While these &dBasic&r (&8ULV&r) ones start out relatively small, higher tiers of Super chests and tanks can hold an insane amount of stuff - all in one single block without any regards to temperature or acidity!\n\nLike Drums, Super Tanks and Chests &6keep their contents when broken&r, can be cleared in the crafting grid, and can automatically void any overflow. Unlike drums, however, Super Tanks also &asafely contain&r their contents, preventing you from getting burnt, frozen, or floating.\n\nIf you hunger for &9even more&r storage, take a look at higher tier Quantum Chests and Tanks or AE2 Storage Cells.", + "quests.steam_age.supers.task": "Any super chest or tank", + "quests.steam_age.steam_presser.title": "Steam Presser", + "quests.steam_age.steam_presser.subtitle": "The Steam Forge Hammer's aunt", + "quests.steam_age.steam_presser.desc": "The &3Steam Presser&r is a multiblock parallel version of the Forge Hammer.\n\nIf you're doing something where the forge hammer is a bottleneck, this upgrade might be useful. Otherwise, skip it.", + "quests.steam_age.steam_fuser.title": "Steam Fuser", + "quests.steam_age.steam_fuser.subtitle": "The Steam Alloy Smelter's cousin (twice removed)", + "quests.steam_age.steam_fuser.desc": "The &3Steam Fuser&r is a bigger and badder version of the Steam Alloy Smelter. Making a lot of alloys and need them fast? You'd like one of these!", + "quests.steam_age.steam_squasher.title": "Steam Squasher", + "quests.steam_age.steam_squasher.subtitle": "The Steam Compressor's childhood friend", + "quests.steam_age.steam_squasher.desc": "Need a lot of things compressed at the same time? The &3Steam Squasher&r is a multiblock parallel Compressor that may prove useful.", "quests.stone_age": "Stone Age", "quests.stone_age.subtitle": "Humble Beginnings", "quests.stone_age.foods.title": "Hungry?", @@ -3700,6 +4120,11 @@ "quests.stone_age.hazards.subtitle": "Thought the surface was difficult? Think again.", "quests.stone_age.hazards.desc.1": "Besides the monsters, the biggest challenge when mining is dealing with cave-ins. If a Raw stone or ore block has air below it, it's considered 'unsupported' and has a chance to start a cave-in every time a nearby block is mined. Cave roofs are covered with Hardened stone, which won't cause a collapse. To mitigate this, the safest thing you can do is just mine the floor, but if you want to safely mine anything else you'll have to learn how to use support beams! These are crafted with logs and a saw.", "quests.stone_age.hazards.desc.2": "The Field Guide has more details and diagrams about how exactly support beams work, but the short version is you'll want to place them down like this within four blocks of each other. Only the top vertical beams will actually support anything, and they have a small radius.", + "quests.stone_age.medical_conditions.title": "Medical Conditions", + "quests.stone_age.medical_conditions.subtitle": "Don't eat the Asbestos", + "quests.stone_age.medical_conditions.desc.1": "Be careful what you pick up! Not all ores or dusts are safe to touch, and some will cause a buildup of a &6Medical Condition&r.\n\nEverything &cHazardous&r is written on its tooltip, so if you suddenly notice a debuff appearing, get that item out of your inventory! Putting it inside a container like a small vessel or backpack is safe.\n\nMost of these effects will slowly go away on their own, but if you let them build up long enough, you'll start getting a host of other nasty effects, up to and including &cdeath&r.", + "quests.stone_age.medical_conditions.desc.2": "You will eventually need to work with some of these materials, so you have ways to deal with them.\n\nThe best way is to avoid getting any conditions in the first place - a Face Mask and Rubber Gloves will prevent inhalation and contact hazards respectively.\n\nThe second-best way is a cure: check out some of the &aPills, Tablets, and Salvos&r you can craft - they all help cure certain effects (and provide helpful buffs!), though the stronger cures have more annoying side-effects.", + "quests.stone_age.medical_conditions.task": "I'm my own doctor", "quests.stone_age.copper_for_anvil.title": "Copper for the Anvil", "quests.stone_age.copper_for_anvil.subtitle": "You better get used to getting 14 ingots of something.", "quests.stone_age.copper_for_anvil.desc": "Anvils aren't cheap! Each anvil will require 14 ingots, which are then welded into 7 double ingots.\n\nYou might want to start mining at this point if you haven't already, gathering 126 pieces of small copper is difficult.", @@ -3729,7 +4154,7 @@ "quests.stone_age.flux.desc": "Flux is an item that is primarily used in metal working to weld things together, though it has some other uses too.\nCertain types of Rocks such as Chalk, Limestone and Marble can be crushed down to make Flux, as well as the shells of various ocean animals.", "quests.stone_age.weld_copper_ingots.title": "Welding Copper", "quests.stone_age.weld_copper_ingots.subtitle": "So close to the Copper Anvil", - "quests.stone_age.weld_copper_ingots.desc": "Light up your Forge and give it at least 2 Copper Ingots. Keep an eye on their tooltip as they heat up - once they get hot, it'll show \"Can Work\", but we need to wait until they get to \"Can Weld\", which is just before their melting point.\n\nOnce they reach it, quickly pull them out of the forge (while holding some wooden tongs in your off-hand!) and into the Rock Anvil's interface, along with a little bit of flux. Lastly, right-click the anvil while sneaking to weld the two ingots together while they're still hot. You can use water or snow to cool down your new double ingot faster.", + "quests.stone_age.weld_copper_ingots.desc": "Light up your Forge and give it at least 2 Copper Ingots. Keep an eye on their tooltip as they heat up - once they get hot, it'll show \"Can Work\", but we need to wait until they get to \"Can Weld\", which is just before their melting point.\n\nOnce they reach it, quickly pull them out of the forge (while holding some &ewooden tongs&r in your off-hand!) and into the Rock Anvil's interface, along with a little bit of flux. Lastly, right-click the anvil while sneaking to weld the two ingots together while they're still hot. You can use water or snow to cool down your new double ingot faster.", "quests.metal_age.copper_anvil.title": "T1 Anvil: Copper", "quests.metal_age.copper_anvil.subtitle": "It's all been building up to this!", "quests.metal_age.copper_anvil.desc": "Congratulations! You've officially finished the Stone Age and entered the Metallurgy Age! With your Copper Anvil, the next step is to climb up the Anvil Tiers, and each time you unlock a new Tier, new tools and possibilities will be available to make your life progressively easier. Now go and become a master smith!", @@ -3737,13 +4162,15 @@ "quests.tfg.subtitle": "Welcome to TerraFirmaGreg!", "quests.tfg.welcome.title": "Welcome to TerraFirmaGreg!", "quests.tfg.welcome.subtitle": "Survival Modpack As It Should've Been", - "quests.tfg.welcome.desc": "Thank you for starting TerraFirmaGreg Modern!\n\nIn this modpack, you will be put to the task of taking control of untouched wilderness and turning it to an industrial wonderland. Start from humble beginning picking up rocks, and end while traversing interstellar space!", + "quests.tfg.welcome.desc": "Thank you for starting TerraFirmaGreg Modern!\n\nIn this modpack, you will be put to the task of taking control of untouched wilderness and turning it to an industrial wonderland. Start from a humble beginning picking up rocks, and end while traversing interstellar space!", "quests.tfg.create_team.title": "How to create a team?", "quests.tfg.create_team.subtitle": "Do you play with friends?", "quests.tfg.create_team.desc": "You can create a team to complete quests together. To do this, open your inventory, then in the upper left corner select the button where 3 colorful people are drawn, then an interface will open in which you can create a team. Click the Β§aCreate a teamΒ§r button, then give it a name and possibly some other parameters, and after successfully creating a team, you can invite other players to it using the plus button in the green circle in the upper right corner. From this point onwards, your quests will be synchronized and any team member will be able to complete them. Good luck!", "quests.tfg.capture_territory.title": "How to capture territory?", "quests.tfg.capture_territory.subtitle": "And how to load chunks in your territory", - "quests.tfg.capture_territory.desc": "If you play on a server, you might want to claim your territory so other players can't interfere. Use the Open Claims key (default \"Ctrl+M\") to open the window, then left-click to claim a chunk and right-click to unclaim them. There is a limit to this, so you can't claim everything. You can shift-left-click on a chunk to forceload (aka \"chunk load\") it, and shift-right-click to un-forceload it. Claiming chunks will include your whole team, if you're using one.", + "quests.tfg.capture_territory.desc": "If you play on a server, you might want to claim your territory so other players can't interfere. Use the Open Claims key (default \"Ctrl+M\") to open the window, then left-click to claim a chunk and right-click to unclaim them.\n\nThere is a limit to this, so you can't claim everything. You can shift-left-click on a chunk to forceload (aka \"chunk load\") it, and shift-right-click to un-forceload it. Claiming chunks will include your whole team, if you're using one.", + "quests.tfg.chunk_limit.title": "How to increase my chunkload limit?", + "quests.tfg.chunk_limit.desc": "If you're playing on a server, by default you only have a small amount of forceload chunks available.\n\nServer owners can customize this (check the README.txt file!), but if you've got operator permissions (or have cheats enabled), you can also use &a/ftbchunks admin extra_force_load_chunks @p set X&r, where X is the new limit.", "quests.tfg.field_guide.title": "Important information about quests!", "quests.tfg.field_guide.subtitle": "I need to read more?", "quests.tfg.field_guide.desc": "The quests are still in development, and we're always working on improving them! A lot of information about specific mechanics are also in your Field Guide, accessible via the Book tab in your inventory.\n\nRemember that both JEI and the Field Guide are your friends, as not everything will be explained through quests.", @@ -3797,7 +4224,7 @@ "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", - "quests.tfg_tips.aluminium_backpack.title": "Aluminium Steel Backpack", + "quests.tfg_tips.aluminium_backpack.title": "Aluminium Backpack", "quests.tfg_tips.aluminium_backpack.subtitle": "Is it Aluminum or Aluminium?", "quests.tfg_tips.aluminium_backpack.desc": "An &bAluminium Backpack&r is your second proper backpack inventory upgrade. It has a total slot count of &c81&r and can hold &athree upgrades.&r", "quests.tfg_tips.titanium_backpack.title": "Titanium Backpack", @@ -3821,15 +4248,53 @@ "quests.tfg_tips.gt.title": "GregTech", "quests.tfg_tips.gt.subtitle": "One third of the modpack's name, after all.", "quests.tfg_tips.gt.desc": "&3GregTech&r can be quite intimidating, this quest branch should help you out.", + "quests.tfg_tips.gt_power_tools.title": "Power Tools", + "quests.tfg_tips.gt_power_tools.subtitle": "Men only want one thing and it's f&kuck&ring disgusting", + "quests.tfg_tips.gt_power_tools.desc.1": "As with any good tech mod, &5GregTech&r comes with a wide variety of &6tools&r you can use. To operate them, you'll need to &acharge them with energy&r β€” and there are several ways to do that: place the tool in a &6Battery Buffer&r, in an &denergy slot&r of a machine, or even better, use a &eTurbo Charger&r.\n\nJust remember: you can only charge an item using a power source of &7equal&r or &ahigher tier&r. &cLower-tier sources&r won’t work on higher-tier tools β€” but don’t worry, &cnothing should explode&r. Probably.", + "quests.tfg_tips.gt_power_tools.desc.2": "Most &5GregTech&r tools are crafted from a &6Tool Head&r. Try using &aEMI&r to explore what you can do with them β€” just remember two important things:\n\n- The &ehigher the Tool Head tier&r, the more &cpowerful&r the tool will be, and the &6larger the battery&r it will use.\n- Not every tool supports every Tool Head tier. For example, the &6Chainsaw&r can only be crafted with a &7LV Tool Head&r.", "quests.tfg_tips.nano_saber.title": "Nano Saber", "quests.tfg_tips.nano_saber.subtitle": "26 Attack Damage when active!", - "quests.tfg_tips.nano_saber.desc": "The &6Nano Saber&r is a powerful weapon you’ll be able to unlock once you reach &5EV&r. Simply use &dShift + Right-Click&r to activate the &cbzzzzz mode&r.", - "quests.tfg_tips.gt_tools.title": "GregTech Tools", - "quests.tfg_tips.gt_tools.subtitle": "", - "quests.tfg_tips.gt_tools.desc": "Most &5GregTech&r tools are crafted from a &6Tool Head&r. Try using &aEMI&r to explore what you can do with them β€” just remember two important things:\n\n- The &ehigher the Tool Head tier&r, the more &cpowerful&r the tool will be, and the &6larger the battery&r it will use.\n- Not every tool supports every Tool Head tier. For example, the &6Chainsaw&r can only be crafted with a &7LV Tool Head&r.", + "quests.tfg_tips.nano_saber.desc": "The &6Nano Saber&r is a powerful weapon you’ll be able to unlock once you reach late &5EV&r. Simply use &dShift + Right-Click&r to activate the &cbzzzzz mode&r.", "quests.tfg_tips.magnets.title": "Item Magnets", - "quests.tfg_tips.magnets.subtitle": "", + "quests.tfg_tips.magnets.subtitle": "2010 called, it wants its juggalo meme back", "quests.tfg_tips.magnets.desc": "The &6Item Magnet&r is exactly what you'd expect β€” a magnet that pulls nearby &6items&r straight to you. &aVery useful&r. What more could you ask for?", + "quests.tfg_tips.long_distance_items.title": "Long-Distance Item Pipes", + "quests.tfg_tips.long_distance_items.subtitle": "Wondering how to move those ores around?", + "quests.tfg_tips.long_distance_items.desc": "&3Long-Distance Item Pipes&r can be used to send items across great distances. Place one endpoint at each end, and connect them with pipeline blocks.\n\nThese pipes instantly transfer from the input side to the output side.\n\nThey also have a minimum distance between pipe endpoints, so you can't use these for short-range operations.", + "quests.tfg_tips.long_distance_fluids.title": "Long-Distance Fluid Pipes", + "quests.tfg_tips.long_distance_fluids.subtitle": "Wondering how to move that oil around?", + "quests.tfg_tips.long_distance_fluids.desc": "&3Long-Distance Fluid Pipes&r can be used to send fluids across great distances. Place one endpoint at each end, and connect them with pipeline blocks.\n\nThese pipes instantly transfer from the input side to the output side.\n\nThey also have a minimum distance between pipe endpoints, so you can't use these for short-range operations.\n\nThese pipes have a reputation of being &4buggy&r to set up. If they don't seem to work at first, try rotating the endpoints with a &eWrench&r.", + "quests.tfg_tips.crates.title": "GregTech Storage", + "quests.tfg_tips.crates.subtitle": "Earlygame buffering", + "quests.tfg_tips.crates.desc": "In theory, Crates are flat upgrades to Chests. A single block space that stores more items - what more could you ask for?\n\nThey're more expensive than regular Chests, and can't be attached to Create contraptions, but can hold any size of item and can &6accept Covers&r, making them perfect candidates for buffers in automation.", + "quests.tfg_tips.tape.title": "Tape for Crates", + "quests.tfg_tips.tape.subtitle": "Moving stuff around", + "quests.tfg_tips.tape.desc": "You can right-click a Crate with Tape, which will then make the crate keep its contents when broken, making it easy to move around. This only works once per tape, however.\n\nGood thing it's cheap!", + "quests.tfg_tips.terminal.subtitle": "Automatic Multiblock Builder", + "quests.tfg_tips.terminal.desc": "&bThe Terminal&r has one main purpose, and &awe highly encourage you to craft it&r.\n\nBuilding all these &eMultiblocks&r can be a bit &cintimidating&r, right? Well, here's a tip: use &dShift + Right-Click&r on any &6Multiblock Controller&r to &aautomatically assemble the entire structure&r!\n\nYou might need to &emove around some buses and hatches&r to suit your setup, but overall, this feature will save you a &alot of time&r.", + "quests.tfg_tips.memory_card.subtitle": "Copy and Paste", + "quests.tfg_tips.memory_card.desc": "When you try to &aparallelize your setup&r with more machines, it can be a bother to set all the &einputs&r and &eoutputs&r for each one. Yeah, we're thinking of you, &dSuper Chests&r and &dTanks&r.\n\nIf you ever find yourself needing this little tool, don't hesitate to use it.", + "quests.tfg_tips.portable_scanner.title": "Tricoder", + "quests.tfg_tips.portable_scanner.subtitle": "For the nosiest GregTech players", + "quests.tfg_tips.portable_scanner.desc.1": "The &aPortable Scanner&r, or &aTricorder&r, is GTCEu's debug tool.\n\nUsing it will show you a block's details, the details of the energy network, its current status and contents, and its impact on performance.\n\nIt'll also display a percentage of fluid remaining in the fluid vein for the &3Fluid Rigs&r.", + "quests.tfg_tips.portable_scanner.desc.2": "&l&3Lore:&r&o This little useful device comes from GregTech 5. It was extremely useful in the early days, because very little information (basically nothing) was given by GUIs or WAILA.", + "quests.tfg_tips.duct_tape.subtitle": "If you can't fix it with this, use more of it!", + "quests.tfg_tips.duct_tape.desc": "You may have realized that most &eMultiblocks&r require a &6Maintenance Hatch&r. Until &6HV&r, where you can get an &aAutomatic Maintenance Hatch&r, you can use this item to fix the hatch without needing to use all of your maintenance tools.\n\nIt can be really useful if you don't want to invest in an &aAuto Maintenance Hatch&r yet, or if you're simply &cnot there yet&r.", + "quests.tfg_tips.gt_filters.title": "Filters", + "quests.tfg_tips.gt_filters.desc": "With &5GregTech&r, you get access to various &6filters&r that help you ease into &aautomation&r. All of them are compatible with different &dCovers&r, which you'll learn more about during the &7LV&r Chapter.\n\nHere, we're introducing two more specific filters that you might find &bhandy&r in certain situations.\n\nTo use a filter, simply apply it as a &dCover&r on any &5GT Machine&r or &6pipe&r.", + "quests.tfg_tips.smart_item_filter.subtitle": "Knock, knock - who's that? It's MENSA!", + "quests.tfg_tips.smart_item_filter.desc.1": "In this quest, we'll bestow upon you &5cursed wisdom&r... the ability to easily automate the Electrolyzer.\n\nThe &9Smart Item Filter&r is a filter that recognises Recipe Maps. When placed on the side of a machine, you can set it to \"&3Electrolyzer&r\" to allow insertion of electrolyzable items specifically. You heard that right - no need to filter manually!\n\nOh, and it only gets &abetter&r. If you combine this bad boy with a &aRobot Arm&r, it'll only supply the &6exact amount&r of items required for a successful recipe to the machine.", + "quests.tfg_tips.smart_item_filter.desc.2": "Place the &aRobot Arm&r on your Electrolyzer, open its GUI, then place the &9Smart Filter&r inside. Ensure that the Smart Filter is set to Electrolyzer.\n\nNext, configure it to &d&lImport&r and &d&lSupply Exact&r. Finally, attach any inventory &7(a chest will do)&r onto the side where you placed the &aRobot Arm&r. Ta-dah! You've figured out how to handle &6all&r Electrolyzer recipes!\n\nWhat about the output of the &3Electrolyzer&r? You may want to route the Fluids to several Tanks - or even &3Super Tanks&r if you've gotten that far. We highly recommend that you avoid any methods involving voiding Fluids.&7.&7. except for Water for obvious reasons.", + "quests.tfg_tips.smart_item_filter.desc.3": "&9Note:&r The Robot Arm has to facilitate the item transfer for its filtering functionality to work! Inserting directly into the machine &7(for instance, pushing with a Hopper!)&r will ignore the Robot Arm's &dSupply Exact&r setting.", + "quests.tfg_tips.hazard_materials.title": "Hazardous Materials", + "quests.tfg_tips.hazard_materials.subtitle": "Choking Hazard, Ages 3+", + "quests.tfg_tips.hazard_materials.desc": "With the new version of &5Gregtech&r, a &chazard system&r has been introduced. By holding &dShift&r while hovering over &cHazardous Materials&r, you can see how they might affect you.\n\nWe strongly advise using proper &6protective equipment&r to keep your &corgans intact&r.", + "quests.tfg_tips.face_mask.desc": "The &6Face Mask&r will protect you from &cinhaling dangerous dust&r. It’s quite &aeasy to craft&r and should prevent issues when working with &5arsenic&r.", + "quests.tfg_tips.rubber_gloves.desc": "The &6Gloves&r will obviously protect you from &cskin contact hazards&r. You have two ways to make them: a &7longer and more involved path&r through &2TerrafirmaCraft&r, or a much &aeasier method&r using the &6High Pressure Steam Alloy Smelter&r.", + "quests.tfg_tips.hazmat.title": "Hazardous Materials Suit", + "quests.tfg_tips.hazmat.desc": "The &6Hazardous Materials Suit&r is the best way to protect yourself from &cany kind of harm&r. You’ll be able to craft it once you reach &bMV&r, and &ayou should definitely take the time to do so&r.", + "quests.tfg_tips.armor.title": "GregTech Armor", + "quests.tfg_tips.armor.desc": "With &5GregTech&r comes its own line of armor. Sure, it was cool to wear &7metal plates&r, but now that you're an &bindustrial maniac&r, maybe it's time to check out some &atechnological armor&r.\n\n&5GregTech&r provides two models. The first one becomes available around &6HV&r and offers better protection than anything you've worn before. It's equipped with &estrong insulation&r to withstand Earth's harsh climate, and it may even be upgraded with a &dJetpack&r.\n\nThe second model won't be available until much later β€” around &1IV&r and &dLuV&r. This one will allow you to &9breathe in space&r using &3oxygen&r.", "quests.tfg_tips.terrafirmacraft.title": "TerraFirmaCraft Addons", "quests.tfg_tips.terrafirmacraft.subtitle": "The other two thirds of the modpack's name", "quests.tfg_tips.terrafirmacraft.desc": "&3TerraFirmaCraft&r is one of the main mods in &2TerraFirmaGreg.&r This branch mostly focuses on some of its survival features and other &dAdd-Ons&r the modpack has, such as &4Aged Alcohol&r and &bCanes.&r", @@ -3841,6 +4306,14 @@ "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.feeding_troughs.title": "Feeding Troughs", + "quests.tfg_tips.feeding_troughs.subtitle": "Metallic Farmhand", + "quests.tfg_tips.feeding_troughs.desc": "Feeding Troughs (also known as Grooming Stations) are a way to automatically feed your animals every morning. It even comes with an option to avoid feeding animals that are already at maximum familiarity, in case you don't want to breed them.\n\nHigher tiers come with a higher range of effectiveness.\n\n&3&lTip:&r&o You might not want to put one right next to your fence, otherwise animals will try to use it to escape their pen!", + "quests.tfg_tips.feeding_troughs.task": "Any feeding trough", + "quests.tfg_tips.scraping_knives.title": "Scraping Knives", + "quests.tfg_tips.scraping_knives.subtitle": "The Cooler Scraping", + "quests.tfg_tips.scraping_knives.desc": "Tired of scraping each section of your hides, paper, or flax by hand? Try making a Scraping Knife!\n\nA basic copper or bronze scraping knife can scrape a full line of material at a time, with higher tier knives being capable of scraping more lines.", + "quests.tfg_tips.scraping_knives.task": "Any Scraping Knife", "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", @@ -3947,9 +4420,6 @@ "quests.tfg_tips.grappling_hook.title": "Grappling Hook", "quests.tfg_tips.grappling_hook.subtitle": "This is going to end poorly", "quests.tfg_tips.grappling_hook.desc": "By combining 2 pieces of &aRope Coil&r and a &bWrought Iron Pickaxe Head&r, you can create a &dGrappling Hook!&r An ideal tool for scaling big mountains, exploring large caves and traversing the world. It contains an &eupgrade system&r that allows you to combine and modify your &dHook&r to your leisure.", - "quests.tfg_tips.grapple_repair.title": "Grappling Hook Warnings", - "quests.tfg_tips.grapple_repair.subtitle": "READ ME, OR YOU MAY REGRET IT LATER!", - "quests.tfg_tips.grapple_repair.desc": "All your &dGrappling Hook&r &aupgrades&r are stored as NBT Data inside the item. This means trying to repair your hook using &canother&r Grappling Hook &l&cWILL destroy all your upgrades!&r\n\nInstead, you should place your &dGrappling Hook&r and some &bWrought Iron Dust&r in a &3Workbench&r to repair it.\n\nAlso, don't use your Grappling Hook when traveling between the Overworld and Beneath, it's rather deadly.", "quests.tfg_tips.grapple_upgrades.title": "Upgrading your Grappling Hook", "quests.tfg_tips.grapple_upgrades.subtitle": "Balanced around TFG, of course!", "quests.tfg_tips.grapple_upgrades.desc.1": "Upgrading your &dGrappling Hook&r consists of adding or removing items to it via the &3Workbench&r.&r\n\nTo see all the upgrades you can apply to your &dGrappling Hook&r, you can press the \"Usage\" key in &2EMI.&r\nEach of the custom recipes will contain text describing what changes are being applied.", @@ -4035,7 +4505,7 @@ "quests.tfg_tips.selfie.desc": "With your &bCamera&r open, you can press F5 to enable &bSelfie Mode&r, which as the name suggests, allows you to take selfies.", "quests.tfg_tips.camera_attachments.title": "Camera Attachments", "quests.tfg_tips.camera_attachments.subtitle": "Improve your Camera", - "quests.tfg_tips.camera_attachments.desc": "By interacting with the &dCamera&r while sneaking, you'll open the camera GUI. This not only allows you to place your desired &aFilm Roll&r, it allows you to attach addons to your camera with new functionalities.\n\n&dRedstone Lamp&r: Works as a flashlight, illuminating dark environments.\n&dSpyglass&r: Enables zooming, letting you take pictures of objects far away.", + "quests.tfg_tips.camera_attachments.desc": "By interacting with the &dCamera&r while sneaking, you'll open the camera GUI. This not only allows you to place your desired &aFilm Roll&r, it allows you to attach addons to your camera with new functionalities.\n\n&dToggleable Light Source&r: Works as a flash bulb, illuminating dark environments.\n&dSpyglass&r: Enables zooming, letting you take pictures of objects far away.", "quests.tfg_tips.camera_attachments.task": "A Redstone Lamp or a Spyglass", "quests.tfg_tips.filters.title": "Color Filters", "quests.tfg_tips.filters.subtitle": "Changing the look of your photos.", @@ -4049,7 +4519,7 @@ "quests.tfg_tips.film_rolls.desc": "To begin taking pictures you'll need to craft one of two kinds of film roll: &0Black and White Film&r, and &dColored Film.&r", "quests.tfg_tips.developing_film.title": "Developing Films", "quests.tfg_tips.developing_film.subtitle": "Pretend you're a printer", - "quests.tfg_tips.developing_film.desc": "Once you've taken your pictures you can begin &adevelopment&r by soaking the films in &bWater.&r Afterwards, you'll need to craft a &dLightroom&r.\n\nThe lightroom is used to develop film, needing a strong light source above the block, and the following four dyes: &3Cyan&r, &5Magenta&r, &eYellow&r and &0Black&r, known as CMYK.\n&0Black and White Film&r will only need &0Black Dye&r while &dColored Film&r will need the entire &3C&5M&eY&0K&r set.\n\nIf you fancy more interesting processing, you can work with the &cChromatic Process...&r", + "quests.tfg_tips.developing_film.desc": "Once you've taken your pictures you can begin &adevelopment&r by soaking the films in the appropriate &bDeveloper&r. Afterwards, you'll need to craft a &dLightroom&r.\n\nThe lightroom is used to develop film, needing a strong light source above the block, and the following four dyes: &3Cyan&r, &5Magenta&r, &eYellow&r and &0Black&r, known as CMYK.\n&0Black and White Film&r will only need &0Black Dye&r while &dColored Film&r will need the entire &3C&5M&eY&0K&r set.\n\nIf you fancy more interesting processing, you can work with the &cChromatic Process...&r", "quests.tfg_tips.photo.title": "Your first Photo", "quests.tfg_tips.photo.subtitle": "Congratulations!", "quests.tfg_tips.photo.desc": "You can do multiple things with it with your &dPhotograph.&r\n\nYou can &bCopy&r it by utilizing a blank sheet of &aPaper&r and the required &aDyes&r used to develop the original.\n\nYou can also &bStack&r pictures to keep them neatly organized in your inventory, check EMI to know how to.\n\nYou can also artificially &cage&r a picture by applying &6Brown Dye&r to it, making it look like it has gone through the years.", @@ -4098,7 +4568,7 @@ "quests.tfg_tips.create_tree_sugar.task": "Maple or Birch Sugar", "quests.tfg_tips.create_rubber_ingot.title": "Rubber Ingot", "quests.tfg_tips.create_rubber_ingot.subtitle": "Insulate them cables", - "quests.tfg_tips.create_rubber_ingot.desc": "Utilizing the &bVacuum Chamber&r and some additional heating, you can process &aLatex&r from various trees into &dRaw Rubber Pulp&r through a specific process. You can then smelt together 3 &dRaw Rubber Pulp&r with a bit of &eSulfur Dust&r in an &bAlloy Smelter&r to create &dRubber Ingots&r, perfect for insulating cables and very much necessary to advance in the &2Voltaic Age&r and beyond...", + "quests.tfg_tips.create_rubber_ingot.desc": "Utilizing the &bVacuum Chamber&r and some additional heating, you can process &aLatex&r from various trees into &dRaw Rubber Pulp&r through a specific process. You can then smelt together 3 &dRaw Rubber Pulp&r with a bit of &eSulfur Dust&r in an &bAlloy Smelter&r to create &dRubber Ingots&r, perfect for insulating cables and very much necessary to advance in the &2Voltaic Age&r and beyond...\n\n&9Tip:&r As you progress, there will be several ways to make this process cheaper and easier. Keep checking EMI! You'll be using Rubber for a long time, so it's well worth automating.", "quests.tfg_tips.transportation.title": "Transportation", "quests.tfg_tips.transportation.subtitle": "For travelling this vast world", "quests.tfg_tips.transportation.desc": "The world is a very big place, you may end up travelling great distances to find specific resources for survival and advancement. The mods in this section will provide with a variety of transportation options.", @@ -4106,8 +4576,8 @@ "quests.tfg_tips.glider.subtitle": "This is not Breath of the Wild", "quests.tfg_tips.glider.desc": "A &dHang Glider&r can be used to glide along the air. You &ccannot gain altitude&r with this but it can be useful to traverse long distances if you jump from high up.\nGreat synergy with &bJetpacks&r though!", "quests.tfg_tips.reinforced_glider.title": "Reinforced Glider", - "quests.tfg_tips.reinforced_glider.subtitle": "Elytra well spent...?", - "quests.tfg_tips.reinforced_glider.desc": "If you combine an &aElytra&r, made in &6HV&r, with a &aHang Glider&r, you'll obtain a &dReinforced Glider.&r It has greater durability and a higher velocity ceiling.", + "quests.tfg_tips.reinforced_glider.subtitle": "Light as a feather!", + "quests.tfg_tips.reinforced_glider.desc": "A &dReinforced Hang Glider&r is the improved version of a &aHang Glider&r. With an upgraded &aAluminium&r frame and a fabric made of either &aReinforced Fabric&r or &aLightweight Cloth&r, you can now soar through the skies at &cdouble the speed&r!\nIt also has &cmore durability&r than the normal hang glider, and can be &crepaired&r in an assembler.\n\n&3Pro tip:&r\nUsing either &aSilk Cloth&r or &aPhantom Silk&r obtained in the &4Beneath&r reduces the fabric cost by &e2/3rds&r for both crafting and repairing!\nOnce you enter &6HV&r, you can also use &aPolycaprolactam Fabric&r as one of the fabrics with a reduced cost.", "quests.tfg_tips.immersive_aircraft.title": "Immersive Aircraft", "quests.tfg_tips.immersive_aircraft.subtitle": "Fly across the skies, with style.", "quests.tfg_tips.immersive_aircraft.desc": "&2Immersive Aircraft&r is a mod all about aircrafts, allowing traversing large distances in the skies.", @@ -4116,7 +4586,7 @@ "quests.tfg_tips.aircraft_upgrades.desc": "&2Immersive Aircraft&r comes with &aAircraft Upgrades&r, which you can install in your to improve your aircraft stats, such as velocity, takeoff speed, fuel consumption, etc. There are two types of upgrades: &bregular&r and &dtiered.&r\n\nThe ones in this quest are the &bregular&r upgrades, think you can get them all?", "quests.tfg_tips.steam_upgrades.title": "Aircraft Upgrades: Steam", "quests.tfg_tips.steam_upgrades.subtitle": "Immersive Aircraft meets GregTech Tiering!", - "quests.tfg_tips.steam_upgrades.desc": "The second kind of aircraft upgrades are the &dTiered Upgrades.&r These are made to match the &3GregTech&r tiering system, going from &8Steam&r up to &5EV.&r\n\nSteam upgrades are the easiest and earliest to craft, requiring at the very least knowledge of &bBlack Steel.&r\n\n&dSteam-powered Aircraft Engines&r are used in the creation of more sophisticated aircrafts such as the &eBiplane&r and the &cWarship.&r", + "quests.tfg_tips.steam_upgrades.desc": "The second kind of aircraft upgrades are the &dTiered Upgrades.&r These are made to match the &3GregTech&r tiering system, going from &7Steam&r up to &5EV.&r\n\nSteam upgrades are the easiest and earliest to craft, requiring at the very least knowledge of &bBlack Steel.&r\n\n&dSteam-powered Aircraft Engines&r are used in the creation of more sophisticated aircrafts such as the &eBiplane&r and the &cWarship.&r", "quests.tfg_tips.steam_upgrades.task": "Any steam tier aircraft upgrade", "quests.tfg_tips.lv_upgrades.title": "Aircraft Upgrades: LV", "quests.tfg_tips.lv_upgrades.subtitle": "Red and Blue, certainly not clashing.", @@ -4160,7 +4630,7 @@ "quests.tfg_tips.biplane.desc": "The &3Biplane&r is a direct upgrade to the &bEconomy Plane&r, crafted using &aHulls, Steam-powered Aircraft Engines&r and an &aAluminium Plated Airplane Propeller.&r\n\nIt contains &b16 Inventory Slots&r, &a4 Upgrade Slots&r and &c1 Weapon Slot.&r Unlike the &dEconomy Plane&r, the &3Biplane&r can be &4boosted using rockets via a dedicated slot.&r", "quests.tfg_tips.scarlet_biplane.title": "Scarlet Biplane", "quests.tfg_tips.scarlet_biplane.subtitle": "What a sight to behold", - "quests.tfg_tips.scarlet_biplane.desc": "The &3Scarlet Biplane&r is one of the two final upgrades for &bPlanes&r, requiring &6HV&r components.\n\nIt contains &b27 Inventory Slots&r, &a4 Upgrade Slots&r, &c2 Weapon Slots&r, and also a &4Booster Slot&r, just like the regular biplane.\n\nWhile expensive, the &3Scarlet Biplane&r makes up for it with increased durability, increased max speed, and overall swag.", + "quests.tfg_tips.scarlet_biplane.desc": "The &3Scarlet Biplane&r is one of the two final upgrades for &bPlanes&r, requiring &bMV&r components.\n\nIt contains &b27 Inventory Slots&r, &a4 Upgrade Slots&r, &c2 Weapon Slots&r, and also a &4Booster Slot&r, just like the regular biplane.\n\nWhile expensive, the &3Scarlet Biplane&r makes up for it with increased durability, increased max speed, and overall swag.", "quests.tfg_tips.aluminium_hopper.title": "Aluminium Hopper", "quests.tfg_tips.aluminium_hopper.subtitle": "So light it floats on water!", "quests.tfg_tips.aluminium_hopper.desc": "The &3Aluminium Hopper&r is one of the two final upgrades for &bPlanes&r, requiring &6HV&r components.\n\nIt contains &b16 Inventory Slots&r, &a4 Upgrade Slots&r, &c2 Weapon Slots&r, 3 Seats, and also a &4Booster Slot&r, just like the regular biplane.\n\nWhile expensive, the &3Aluminium Hopper&r makes up for it with 3 total seats, and the ability to land on Water.", @@ -4172,7 +4642,7 @@ "quests.tfg_tips.firmaciv_info.desc": "&3Firma:Civ&r comes with 4 different navigational tools, each giving you important information about your position in the world.\nIncludes the &dSextant&r, &dNavigator's Timepiece&r, &dBarometer&r, and &dCompass&r; more information about the tools in the &2Field Guide.&r\n\n&3&lLore:&r&o: Firma:Civ by default removes coordinates to make you use its navigational tools. We can't do that here, so uh, use them if you want to LARP.", "quests.tfg_tips.warfare.title": "Sea Warfare", "quests.tfg_tips.warfare.subtitle": "FIRE ALL CANNONS!", - "quests.tfg_tips.warfare.desc": "You can outfit your &bSloop&r with firepower via the &dCannon&r and cannon balls, in case you want to blow something to smithereens.\nTo fire a cannon, you'll need to load it with some &aGunpowder, Unrefined Paper&r and your &aCannon Ball&r. Then light the wick with &cFlint and Steel.&r", + "quests.tfg_tips.warfare.desc": "You can outfit your &bSloop&r with firepower via the &dCannon&r and cannon balls, in case you want to blow something to smithereens.\nTo fire a cannon, you'll need to load it with some &aGunpowder, Unrefined Paper&r and your &aCannon Ball&r. Then light the wick with &cFlint and Steel.&r\n\nDon't have a &bSloop&r? Don't worry! Cannons can be placed and fired on the ground the same way you would fire one on a &bSloop&r.", "quests.tfg_tips.kayak_materials.title": "The Kayak", "quests.tfg_tips.kayak_materials.subtitle": "Get yourself that Kayak.", "quests.tfg_tips.kayak_materials.desc": "The &dKayak&r is the second most simple boat you can craft, requiring &bWaxes&r for the &aWaterproof Hides&r. It is also the &conly&r boat that can be picked up as an item. Despite having a &dsingle passenger&r slot, it is the fastest boat in the game until the steel age &dSloop!&r", @@ -4246,7 +4716,7 @@ "quests.tfg_tips.beehive.desc": "To begin your journey as a beekeeper, you'll need both a &bBeehive&r and a &aBeehive Frame.&r\nUnlike regular Minecraft, hives do not spawn naturally, instead bees only spawn in player-made &bBeehives&r with frames populated by &eQueens.&r The chance for a queen to populate your frame is tied to RNG, but you can increase your odds by placing &dflowers&r around the hive.\n\nOnce your frames is populated, it'll begin spawning bees which will produce honey.", "quests.tfg_tips.not_the_bees.title": "Beekeeper Armor", "quests.tfg_tips.not_the_bees.subtitle": "NOT THE BEES!", - "quests.tfg_tips.not_the_bees.desc": "Bees don't like it when people disrupt them and harvest their precious honey and wax. There are three ways to do it safely:\n\n* &dHarvesting at night time&r\n* &dUsing a campfire&r\n* &dUsing Beekeeper Armor&r", + "quests.tfg_tips.not_the_bees.desc": "Bees don't like it when people disrupt them and harvest their precious honey and wax or move their frames around. There are three ways to do it safely:\n\n* &dHarvesting at night time&r\n* &dUsing a campfire&r\n* &dUsing Beekeeper Armor&r", "quests.tfg_tips.not_the_bees.task": "I'll use either the Campfire or wait for Nightfall.", "quests.tfg_tips.honey.title": "Honey", "quests.tfg_tips.honey.subtitle": "Oh bother...", @@ -4404,7 +4874,7 @@ "quests.tfg_tips.tools_tips.subtitle": "How to tighten and loosen 101.", "quests.tfg_tips.tools_tips.tools.title": "Tools", "quests.tfg_tips.tools_tips.tools.subtitle": "It's all a hammer anyways.", - "quests.tfg_tips.tools_tips.tools.desc": "The only thing seperating man from animal is our use of &l&bTools&r&r. &8&oExcept for apes, monkeys, dolphins, crows, otters, octo.......&r&r Use your skills and tools to make the most of this world, and &5save yourself&r some effort.", + "quests.tfg_tips.tools_tips.tools.desc": "The only thing seperating man from animal is our use of &l&bTools&r&r. &7&oExcept for apes, monkeys, dolphins, crows, otters, octo.......&r&r Use your skills and tools to make the most of this world, and &5save yourself&r some effort.", "quests.tfg_tips.tools_tips.seed_oil.title": "Lamp Fuel: Seed Oil", "quests.tfg_tips.tools_tips.seed_oil.subtitle": "Smells good when it burns.", "quests.tfg_tips.tools_tips.seed_oil.desc": "&dSeed Oil&r will last you an impressive &c72&r days.", @@ -4423,5 +4893,27 @@ "quests.tfg_tips.tools_tips.harvest_basket.title": "Harvest Baskets", "quests.tfg_tips.tools_tips.harvest_basket.subtitle": "For competitive pie bakers.", "quests.tfg_tips.tools_tips.harvest_basket.task": "Any #tfg:harvester", - "quests.tfg_tips.tools_tips.harvest_basket.desc": "&l&2Harvest Baskets&r&r are a new tool made just for &5TFG&r! These baskets can be used to harvest whole trees and bushes of fruit in one right-click! A regular &6Harvest Basket&r has a base durability of &n128&r. But an &3Aluminium Harvest Basket&r takes no damage on use." + "quests.tfg_tips.tools_tips.harvest_basket.desc": "&l&2Harvest Baskets&r&r are a new tool made just for &5TFG&r! These baskets can be used to harvest whole trees and bushes of fruit in one right-click! A regular &6Harvest Basket&r has a base durability of &n128&r. But an &3Aluminium Harvest Basket&r takes no damage on use.", + "quests.tfg_tips.transportation_tips.rnr_plow.title": "Paving Cart", + "quests.tfg_tips.transportation_tips.rnr_plow.subtitle": "The Romans would be proud.", + "quests.tfg_tips.transportation_tips.rnr_plow.desc": "Roads are wonderful! But sometimes you get a little tired of right-clicking. Instead of building roads for your horse, &3let your horse build roads for you&r!\nThe &dPaving Cart&r is a unique &cAstikor Cart&r developed for TFG. This cart allows you to automatically build &cRnR roads&r with assignable road width and even a randomizer mode.", + "quests.tfg_tips.tools_tips.mattocks.title": "Mattocks", + "quests.tfg_tips.tools_tips.mattocks.subtitle": "A shovel just wont do.", + "quests.tfg_tips.tools_tips.mattocks.task0": "Any Mattock", + "quests.tfg_tips.tools_tips.mattocks.task1": "Any Road Material", + "quests.tfg_tips.tools_tips.mattocks.desc": "&cMattocks&r are your key to developing roads in TFG. They can acquired through casting into a mold like any other TFC tool. To use a mattock change its mode (default-key: &3&lN&r&r) to \"full-block\". \nThen you can right-click on dirt or grass to tamp it down. You can then apply &6crushed base course&r and finally the material of your choice after.", + "quests.tfg_tips.tools_tips.base_course.title": "Base Course", + "quests.tfg_tips.tools_tips.base_course.subtitle": "The foundation of all good roads.", + "quests.tfg_tips.tools_tips.base_course.task": "Look at Base Course", + "quests.tfg_tips.tools_tips.gravel_roads.title": "Gravel Roads", + "quests.tfg_tips.tools_tips.gravel_roads.subtitle": "A bumpy ride awaits.", + "quests.tfg_tips.tools_tips.gravel_roads.task": "Any Gravel Road Material", + "quests.tfg_tips.tools_tips.gravel_roads.desc": "These materialsβ€”when applied to base courseβ€”form roads which give a &b&l10%%&r&r boost to walking speed.", + "quests.tfg_tips.tools_tips.brick_roads.title": "Brick Roads", + "quests.tfg_tips.tools_tips.brick_roads.subtitle": "Skateboarders beware.", + "quests.tfg_tips.tools_tips.brick_roads.task": "Any Brick Road Material", + "quests.tfg_tips.tools_tips.brick_roads.desc": "These materialsβ€”when applied to base courseβ€”form roads which give a &b&l20%%&r&r boost to walking speed.", + "quests.tfg_tips.tools_tips.concrete_roads.title": "Concrete Roads", + "quests.tfg_tips.tools_tips.concrete_roads.subtitle": "Almost worth all the effort.", + "quests.tfg_tips.tools_tips.concrete_roads.desc": "&6Wet concrete mix&r can be applied to base course to create roads which give a &b&l30%%&r&r bonus to movement speed. \n\n&4Be careful&r when creating concrete roads. There are a lot of rules to follow to make sure you don't end up with cracked or ruined surfaces. Consult the &3Field Guide&r for detailed instructions." } \ No newline at end of file diff --git a/kubejs/assets/tfg/lang/es_es.json b/kubejs/assets/tfg/lang/es_es.json new file mode 100644 index 000000000..5d66edaa9 --- /dev/null +++ b/kubejs/assets/tfg/lang/es_es.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.", + "quests.tfg": "TerraFirmaGreg - Modern", + "quests.tfg.subtitle": "Bienvenid@ a TerraFirmaGreg!", + "quests.tfg.welcome.title": "Bienvenid@ a TerraFirmaGreg!", + "quests.tfg.welcome.subtitle": "Modpack de Supervivencia como deberΓ­a haber sido", + "quests.tfg.welcome.desc": "Gracias por comenzar en TerraFirmaGreg Modern!\n\nEn este modpack, tendrΓ‘s la tarea de tomar el control de la naturaleza salvaje y hacerla un paraΓ­so industrial. Inicia desde un humilde comienzo cogiendo rocas, y finaliza atravesando el espacio interestelar!", + "quests.tfg.create_team.title": "ΒΏCΓ³mo crear un equipo?", + "quests.tfg.create_team.subtitle": "ΒΏJuegas con amigos?", + "quests.tfg.create_team.desc": "Puedes crear un equipo para completar misiones juntos. Para hacerlo, abre tu inventario, luego en la esquina superior izquierda selecciona el botΓ³n donde hay 3 personas coloridas, luego una interfaz se abrirΓ‘ en la cual puedes crear un equipo. Dale click al botΓ³n Β§aCreate a teamΒ§r, luego dale un nombre y posiblemente otros parΓ‘metros, y luego de crear un equipo con Γ©xito, puedes invitar otros jugadores a este usando el botΓ³n de mΓ‘s en el circulo verde en la esquina superior derecha. Desde este punto, tus misiones serΓ‘n sincronizadas y cualquier miembro del equipo serΓ‘ capaz de completarlas. Β‘Buena suerte!", + "quests.tfg.capture_territory.title": "ΒΏCΓ³mo capturar territorio?", + "quests.tfg.capture_territory.subtitle": "Y cΓ³mo cargar chunks en tu territorio", + "quests.tfg.capture_territory.desc": "Si juegas en un servidor, querrΓ‘s reclamar tu territorio para que otros jugadores no interfieran. Usa la tecla de Open Claims (\"Ctrl+M\" por defecto) para abrir la pestaΓ±a, luego haz click izquierdo para reclamar un chunk y click derecho para abandonarlo.\n\nThere is a limit to this, so you can't claim everything. You can shift-left-click on a chunk to forceload (aka \"chunk load\") it, and shift-right-click to un-forceload it. Claiming chunks will include your whole team, if you're using one.", + "quests.tfg.chunk_limit.title": "ΒΏCΓ³mo incremento mi lΓ­mite de carga de chunks?", + "quests.tfg.chunk_limit.desc": "Si juegas en un servidor, por defecto solo tienes una pequeΓ±a cantidad de cargas de chunk disponibles.\n\nLos dueΓ±os de servidores pueden configurar esto (Β‘revisar el archivo README.txt!), pero si tienes permisos de operador (o tienes trucos activados), puedes tambiΓ©n usar Β§a/ftbchunks admin extra_force_load_chunks @p set XΒ§r, donde X es el nuevo lΓ­mite.", + "quests.tfg.field_guide.title": "Β‘InformaciΓ³n importante sobre las misiones!", + "quests.tfg.field_guide.subtitle": "ΒΏTengo que seguir leyendo?", + "quests.tfg.field_guide.desc": "Estas misiones siguen en desarrollo, y seguimos trabajando en mejorarlas! Montones de informaciΓ³n sobre mecΓ‘nicas especΓ­ficas se encuentran en tu GuΓ­a de Campo, accesible atravΓ©s de la pestaΓ±a del libro tab en tu inventario.\n\nRecuerda que JEI y la GuΓ­a de Campo son tus amigos, ya que no todo estarΓ‘ explΓ­cito en las misiones.", + "quests.tfg.books_again.title": "ΒΏNecesitas los libros de nuevo?", + "quests.tfg.books_again.desc": "AquΓ­ hay una misiΓ³n repetible si quieres copias fΓ­sicas del libro de misiones y la GuΓ­a de Campo de nuevo." +} \ No newline at end of file diff --git a/kubejs/assets/tfg/lang/fr_fr.json b/kubejs/assets/tfg/lang/fr_fr.json index 4c4918961..134f632d3 100644 --- a/kubejs/assets/tfg/lang/fr_fr.json +++ b/kubejs/assets/tfg/lang/fr_fr.json @@ -476,6 +476,8 @@ "block.tfg.zpm_gas_pressurizer": "Β§cPressuriseur de gaz d'Γ‰lite IIIΒ§r", "block.tfg.uv_gas_pressurizer": "Β§3Pressuriseur de gaz UltimeΒ§r", "block.tfg.fluid.semiheavy_ammoniacal_water": "Eau Ammoniacal Semilourde", + "block.tfg.fluid.sulfur_fumes": "Vapeurs SouffrΓ©es", + "block.tfg.fluid.geyser_slurry": "Boue SurchauffΓ©e", "block.tfg.grass.mars_dirt": "Terre Martienne", "block.tfg.grass.mars_clay_dirt": "Terre Martienne Argileuse", "block.tfg.grass.mars_farmland": "Terre Martienne LabourΓ©e", @@ -638,13 +640,11 @@ "block.tfg.growth_monitor": "Moniteur de Croissance", "block.tfg.sample_rack": "Plateau d'Γ‰chantillons", "block.tfg.casings.machine_casing_sterilizing_pipes": "Tuyaux StΓ©rilisants", - "fluid.tfg.nether_slurry": "Boue du Nether", - "fluid.tfg.enriched_nether_slurry": "Boue du Nether Enrichie", - "fluid.tfg.ender_slurry": "Boue de l'End", - "fluid.tfg.enriched_ender_slurry": "Boue de l'End Enrichie", + "fluid.tfg.heavy_ammoniacal_water": "Heavy Ammoniacal Water", "fluid.tfg.semiheavy_ammoniacal_water": "Eau Ammoniacal Semi-Lourde", "fluid.tfg.sulfur_fumes": "Vapeurs SouffrΓ©es", - "fluid.tfg.super_heated_slurry": "Boue SurchauffΓ©e", + "fluid.tfg.geyser_slurry": "Boue SurchauffΓ©e", + "fluid.tfg.cryogenized_fluix": "Cryogenized Fluix", "item.tfg.antipoison_pill": "Pillule Anti-poison", "item.tfg.haste_pill": "Pillule de CΓ©lΓ©ritΓ©", "item.tfg.night_vision_pill": "Pillule de Vision Nocturne", @@ -838,7 +838,7 @@ "item.tfg.marker.mercury_orbit": "Orbite de Mercure", "item.tfg.railgun_ammo_shell": "Munition de Cannon Γ‰lectro-magnΓ©tique", "item.tfg.sulfur_fumes_bucket": "Sceau de FumΓ©es Sulfureuses", - "item.tfg.super_heated_slurry_bucket": "Sceau de Boue SurchauffΓ©", + "item.tfg.geyser_slurry_bucket": "Sceau de Boue SurchauffΓ©", "item.tfg.cryogenized_fluix_bucket": "Sceau de Fluix CryogΓ¨ne", "item.tfg.fluix_bucket": "Sceau de Fluix Liquide", "item.tfg.latex_bucket": "Sceau de Latex", @@ -1039,6 +1039,8 @@ "ore_vein.tfg.normal_copper": "Copper & Chalcopyrite", "ore_vein.tfg.normal_garnet_tin": "Garnet & Cassiterite Sands", "ore_vein.tfg.normal_garnierite": "Garnierite & Cobaltite", + "ore_vein.tfg.normal_garnierite.emi.0": "Tip: Gabbro is always", + "ore_vein.tfg.normal_garnierite.emi.1": "underneath Basalt.", "ore_vein.tfg.normal_gold": "Gold, Limonite, & Hematite", "ore_vein.tfg.normal_graphite": "Graphite & Diamond", "ore_vein.tfg.normal_gypsum": "Gypsum & Calcite", @@ -1054,12 +1056,18 @@ "ore_vein.tfg.normal_olivine": "Bentonite & Olivine", "ore_vein.tfg.normal_quartz": "Quartzes", "ore_vein.tfg.normal_redstone": "Redstone, Cinnabar, & Ruby", + "ore_vein.tfg.normal_redstone.emi.0": "Tip: Granite is always", + "ore_vein.tfg.normal_redstone.emi.1": "underneath Rhyolite.", "ore_vein.tfg.normal_salt": "Salts & Borax", "ore_vein.tfg.normal_saltpeter": "Saltpeter & Electrotine", "ore_vein.tfg.normal_silver": "Silver, Galena, & Lead", "ore_vein.tfg.normal_sphalerite": "Sphalerite & Pyrite", "ore_vein.tfg.normal_spodumene": "Spodumene & Lepidolite", "ore_vein.tfg.normal_sulfur": "Sulfur & Pyrite", + "ore_vein.tfg.normal_tarkianite": "Tarkianite & Oilsands", + "ore_vein.tfg.normal_tarkianite.emi.0": "Only in dry climates.", + "ore_vein.tfg.normal_tarkianite.emi.1": "Min temp: 7Β°C", + "ore_vein.tfg.normal_tarkianite.emi.2": "Max rainfall: 100mm", "ore_vein.tfg.normal_tetrahedrite": "Tetrahedrite (Normal)", "ore_vein.tfg.surface_bismuthinite": "Bismuth (Surface)", "ore_vein.tfg.surface_cassiterite": "Cassiterite (Surface)", @@ -1067,7 +1075,7 @@ "ore_vein.tfg.surface_sphalerite": "Sphalerite & Sulfur", "ore_vein.tfg.surface_tetrahedrite": "Tetrahedrite (Surface)", "ore_vein.tfg.deep_mars_chromite": "Redstone & Chromite", - "ore_vein.tfg.deep_mars_pitchblende": "Pitchblende, Thorium, & Uraninite", + "ore_vein.tfg.deep_mars_pitchblende": "Pitchblende, Thorianite, & Uraninite", "ore_vein.tfg.deep_mars_sheldonite": "Bornite & Cooperite", "ore_vein.tfg.mars_almandine": "Almandine & Sapphire", "ore_vein.tfg.mars_apatite": "Apatite & Pyrochlore", @@ -1078,10 +1086,11 @@ "ore_vein.tfg.mars_sapphire": "Gold, Electrotine, & Bauxite", "ore_vein.tfg.mars_graphite": "Graphite & Diamond", "ore_vein.tfg.mars_hematite": "Hematite & Limonite", + "ore_vein.tfg.mars_lapis": "Lapis, Lazurite, & Sodalite", "ore_vein.tfg.mars_lubricant": "Trona, 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_pitchblende": "Pitchblende & Thorianite, & Hematite", "ore_vein.tfg.mars_quartzite": "Quartzite, Asbestos, & Barite", "ore_vein.tfg.mars_salt": "Salts & Spodumene", "ore_vein.tfg.mars_stibnite": "Tetrahedrite (Normal)", @@ -1156,6 +1165,10 @@ "ore_vein.tfg.nether_sylvite": "Sylvite", "ore_vein.tfg.nether_tetrahedrite": "Tetrahedrite", "ore_vein.tfg.nether_topaz": "Topaz & Chalcocite", + "ore_vein.tfg.venus_manual_salt": "Salts & Spodumene", + "ore_vein.tfg.venus_manual_salt.emi.0": "Only in Salt Flats.", + "ore_vein.tfg.venus_manual_sulfur": "Sulfur & Pyrite", + "ore_vein.tfg.venus_manual_sulfur.emi.0": "Only in Sulfuric Ravine.", "tfg.creative_tab.tfg": "TerraFirmaGreg", "tfg.disabled_portal": "Portal magic seems to be blocked by an unknown force, try reaching another dimension by going down or up", "tfg.tooltip.food_trait.refrigerating": "Β§bRefrigerating", @@ -1202,7 +1215,7 @@ "trim_material.tfc.salt_tfc": "salt", "trim_material.tfc.sapphire_tfc": "Sapphire", "trim_material.tfc.sodalite_tfc": "Sodalite", - "trim_material.tfc.coke_tfc": "Coke", + "trim_material.tfc.armalcolite_tfc": "Armalcolite", "trim_material.tfc.spessartine_tfc": "Spessartine", "trim_material.tfc.topaz_tfc": "Topaz", "trim_material.tfc.uvarovite_tfc": "Uvarovite", @@ -1511,7 +1524,7 @@ "quests.ae2.interplanetary_wireless.desc": "You can upgrade your Wireless Terminal with this special Card, allowing access to your network from any distance, even on different worlds! Sounds too good to be true? There's a major catch β€” transferring items uses a huge amount of energy.\n\nYou can sort of get around this with some Energy Cards and a battery in your inventory set to Discharge Mode, but it should work well enough for those times when you accidentally left something at your base on Earth and don't want to fly all the way back.\n\nFor proper automated transfer, you'll need a Railgun.", "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_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 &5two EV 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!", @@ -1526,7 +1539,7 @@ "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.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\nIt 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?", @@ -1536,7 +1549,7 @@ "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.cell_component_64m.desc": "The &c64M MEGA Storage Component&r is the biggest one you can make in &cTerraFirmaGreg&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", @@ -1684,14 +1697,14 @@ "quests.gregtech_energy.start.subtitle": "It's not as bad as you think", "quests.gregtech_energy.moving.title": "Moving your Energy", "quests.gregtech_energy.moving.subtitle": "So, energy transfer, huh", - "quests.gregtech_energy.moving.desc": "Moving Energy in GregTech means understanding a few core mechanics.\n\nFirst, &bEnergy Tiers&r. From &aLV&r to &cUHV&r, everything in GregTech β€” wires, machines, recipes β€” is tied to a tier. You’ll need the &ecorrect cable material&r to move energy. For example:\n&8β€’&r Tin wire = &aLV&r\n&8β€’&r Copper wire= &bMV&r\n\nSecond, you’ve got the &bAmperage&r mechanic. Think of 1 Amp (or 1A) as &ea packet of energy&r. Machines request energy \"packets\", which then get sent down the wire.\n&8β€’&r 1A of LV = &a32 EU&r\n&8β€’&r 1A of HV = &e512 EU&r\n\nMost machines and energy hatches will only request &62A at maximum&r.\n\nMastering these two ideas is key before going further into energy distribution.", + "quests.gregtech_energy.moving.desc": "Moving Energy in GregTech means understanding a few core mechanics.\n\nFirst, &bEnergy Tiers&r. From &aLV&r to &cUHV&r, everything in GregTech β€” wires, machines, recipes β€” is tied to a tier. You’ll need the &ecorrect cable material&r to move energy. For example:\n&7β€’&r Tin wire = &aLV&r\n&7β€’&r Copper wire= &bMV&r\n\nSecond, you’ve got the &bAmperage&r mechanic. Think of 1 Amp (or 1A) as &ea packet of energy&r. Machines request energy \"packets\", which then get sent down the wire.\n&7β€’&r 1A of LV = &a32 EU&r\n&7β€’&r 1A of HV = &e512 EU&r\n\nMost machines and energy hatches will only request &62A at maximum&r.\n\nMastering these two ideas is key before going further into energy distribution.", "quests.gregtech_energy.moving.task": "I understand", "quests.gregtech_energy.transformer.title": "The Super Transformer", "quests.gregtech_energy.transformer.subtitle": "Better than Optimus Prime", - "quests.gregtech_energy.transformer.desc": "For every problem, GregTech has a multiblock solution. Enter the &dActive Transformer&r.\n\nThis beast is your ultimate transformer. It can channel energy between any tiers β€” from &aLV&r to &cUHV&r β€” with no explosions. But that's not even the best part.\n\nIt can transmit energy using Laser Pipes.\n&8β€’&r Lasers send absurd amounts of Amps.\n&8β€’&r No loss. No cables. Just pure energy.\n&8β€’&r Only one catch: it &chas to be in a perfectly straight line&r.\n\nWhen cables feel weak, &luse lasers.", + "quests.gregtech_energy.transformer.desc": "For every problem, GregTech has a multiblock solution. Enter the &dActive Transformer&r.\n\nThis beast is your ultimate transformer. It can channel energy between any tiers β€” from &aLV&r to &cUHV&r β€” with no explosions. But that's not even the best part.\n\nIt can transmit energy using Laser Pipes.\n&7β€’&r Lasers send absurd amounts of Amps.\n&7β€’&r No loss. No cables. Just pure energy.\n&7β€’&r Only one catch: it &chas to be in a perfectly straight line&r.\n\nWhen cables feel weak, &luse lasers.", "quests.gregtech_energy.moving_wire.title": "Moving with wires", "quests.gregtech_energy.moving_wire.subtitle": "Funky to place", - "quests.gregtech_energy.moving_wire.desc": "Moving energy around in GregTech can be tricky β€” &bmost cables are lossy&r. For every block, for every amp, you might lose energy as it travels through your wires. But don’t worry, there are solutions:\n\n&8β€’&r Cover your wires with rubber. By doing so, you'll significantly reduce energy loss over distance. Just check the quest items for a reference.\n&8β€’&r Use higher-tier cables. Platinum cables, for example, only lose 1 EU per block β€” practically nothing when compared to the 8192 EU it can carry.\n&8β€’&r &bSuperconductors&r. These beauties are a bit pricier, but they have &9zero loss&r. They don’t need rubber covers, and won't zap you either. Just be aware that they're usually only craftable near the end of their tier.\n\nOptimize your energy flow β€” &breduce losses&r and make your systems more efficient.", + "quests.gregtech_energy.moving_wire.desc": "Moving energy around in GregTech can be tricky β€” &bmost cables are lossy&r. For every block, for every amp, you might lose energy as it travels through your wires. But don’t worry, there are solutions:\n\n&7β€’&r Cover your wires with rubber. By doing so, you'll significantly reduce energy loss over distance. Just check the quest items for a reference.\n&7β€’&r Use higher-tier cables. Platinum cables, for example, only lose 1 EU per block β€” practically nothing when compared to the 8192 EU it can carry.\n&7β€’&r &bSuperconductors&r. These beauties are a bit pricier, but they have &9zero loss&r. They don’t need rubber covers, and won't zap you either. Just be aware that they're usually only craftable near the end of their tier.\n\nOptimize your energy flow β€” &breduce losses&r and make your systems more efficient.", "quests.gregtech_energy.moving_wire.task": "I finished looking at wires", "quests.gregtech_energy.moving_amp.title": "Managing Amp", "quests.gregtech_energy.moving_amp.subtitle": "It burns?", @@ -1732,7 +1745,7 @@ "quests.gregtech_energy.lgt.title": "The Large Gas Turbine", "quests.gregtech_energy.lgt.subtitle": "The fan favorite", "quests.gregtech_energy.lgt.desc.1": "The &6Large Gas Turbine&r β€” also known as &dLGT&r β€” is one of your two main sources of energy production for most of the modpack. You’ll be able to build your first one at &5EV&r using Stainless Steel. It can carry you from &5EV&r all the way to &dLuV&r, until you feel ready to upgrade to the Large Plasma Turbine.\n\nThat said, many players can finish TerraFirmaGreg using only these turbines β€” provided you have a strong infrastructure to handle the gas demands of high-tier LGTs.\n\nTo build the LGT, you’ll need the usual Maintenance Hatch and Input Hatch. This turbine requires a Muffler Hatch, but it does not use an Output Hatch.", - "quests.gregtech_energy.lgt.desc.2": "The default output is &e4096 EU/t&r. That output &cdoubles&r with each upgrade to the Rotor Holder after &5EV&r. For example, an LGT using an IV Rotor Holder (Γ—2) with a HSS-E Turbine Rotor (280%% power) will produce:\n4096 Γ— 2 Γ— 2.8 = &e22,937.6 EU/t&r β€” that's about &a2.8A of IV&r.\n\nTo fully extract that energy, you’ll need at least a IV 4A Dynamo Hatch, since a normal Dynamo Hatch only handles 2A.\n\nJust so you know: the Efficiency stat of a Turbine Rotor increases the duration of the recipe, which means you get more power from each mB of fuel.\n\nLastly, if the Dynamo Hatch fills up, the LGT will automatically slow down and pause fuel usage, gradually reducing rotor speed until it resumes again. So you won't lose any fuel during a backup.", + "quests.gregtech_energy.lgt.desc.2": "The default output is &e4096 EU/t&r. That output &cdoubles&r with each upgrade to the Rotor Holder after &5EV&r. For example, an LGT using an IV Rotor Holder (Γ—2) with a HSS-E Turbine Rotor (280%% power) will produce:\n4096 Γ— 2 Γ— 2.8 = &e22,937.6 EU/t&r β€” that's about &a2.8A of IV&r.\n\nTo fully extract that energy, you’ll need at least a IV 4A Dynamo Hatch, since a normal Dynamo Hatch only handles 2A.\n\nJust so you know: the Efficiency stat of a Turbine Rotor increases the duration of the recipe, which means you get more power from each mB of fuel.\n\nLastly, if the Dynamo Hatch fills up, the LGT will start voiding excess, so you'll want to turn your LGTs off when your battery buffer or substation starts getting full, via an Advanced Energy Detector Cover and Machine Controller Cover.", "quests.gregtech_energy.lst.title": "The Large Steam Turbine", "quests.gregtech_energy.lst.subtitle": "It... exists", "quests.gregtech_energy.lst.desc.1": "The &6Large Steam Turbine&r β€” or &dLST&r β€” might not be the most common Large Generator in standard GregTech, but thanks to its early unlock at &6HV&r and the fact that Large Boilers are stronger in TerraFirmaGreg, it definitely has its place.\n\nTo make it work, you’ll need an Input Hatch for steam, an Output Hatch for Distilled Water, and of course a Maintenance Hatch. That’s all you need!\n\nLike all Large Turbines, you’ll place a Rotor Holder on one side and a Dynamo Hatch on the other to extract power. For the LST, the Rotor Holder must be at least &6HV-tier&r. Each Rotor Holder upgrade &cdoubles&r the output and increases efficiency slightly.", @@ -1789,7 +1802,7 @@ "quests.gregtech_energy.pss.title": "The Power Substation", "quests.gregtech_energy.pss.subtitle": "All your eggs in one basket", "quests.gregtech_energy.pss.desc.1": "The &dPower Substation&r β€” also known as the &dPSS&r β€” is the &6ultimate custom battery multiblock&r. Once you're able to craft it in &1IV&r, it should easily serve as your base's central source of power, so it can be a good thing to focus towards.\n\nIt can store so much energy... you’d probably need multiple lifetimes to fill it.", - "quests.gregtech_energy.pss.desc.2": "&eHow it works&r:\n- Build the structure using &aPalladium Substation Casings&r.\n- Add at least &b1 Energy Hatch&r (input) and &b1 Dynamo Hatch&r (output).\n- It accepts &aany hatch&r β€” &8Amperage-based&r or &6Laser&r.\n- &cNo risk of explosion&r β€” transformers are &aintegrated&r.\n\n&eCapacitor Layers&r:\n- You can add up to &d17 layers&r of &9Capacitor Blocks&r on top of the structure.\n- Each layer must be &cfully filled&r β€” no gaps.\n- Mix &fempty&r and &6full&r capacitors however you like.\n\nSurround each layer with &bLaminated Glass&r.\n\nLet’s be honest: &cYou’ll never need 17 layers&r... but hey, it’s nice to dream big.\nIf you ever do build a full 17-layer PSS, &lplease send help&r β€” you’ve gone too far.", + "quests.gregtech_energy.pss.desc.2": "&eHow it works&r:\n- Build the structure using &aPalladium Substation Casings&r.\n- Add at least &b1 Energy Hatch&r (input) and &b1 Dynamo Hatch&r (output).\n- It accepts &aany hatch&r β€” &7Amperage-based&r or &6Laser&r.\n- &cNo risk of explosion&r β€” transformers are &aintegrated&r.\n\n&eCapacitor Layers&r:\n- You can add up to &d17 layers&r of &9Capacitor Blocks&r on top of the structure.\n- Each layer must be &cfully filled&r β€” no gaps.\n- Mix &fempty&r and &6full&r capacitors however you like.\n\nSurround each layer with &bLaminated Glass&r.\n\nLet’s be honest: &cYou’ll never need 17 layers&r... but hey, it’s nice to dream big.\nIf you ever do build a full 17-layer PSS, &lplease send help&r β€” you’ve gone too far.", "quests.gregtech_energy.batteries.title": "Super Batteries", "quests.gregtech_energy.batteries.subtitle": "Sci-Fi power storage", "quests.gregtech_energy.batteries.desc": "In &7LV&r and &bMV&r, you probably built your first batteries made of Sodium or Lithium.\n\nBut let’s be real β€” these are the weakest batteries GregTech has to offer.\n\nIn this quest, we’ll look at the powerful alternatives: the &acrystal batteries&r.\nThey are much more potent, store way more energy, and can help you push your factory to the next tier.\n\nAre they more expensive? Of course. But let’s be real...\nPower is Power. Who’s counting?", @@ -1804,7 +1817,7 @@ "quests.gregtech_energy.overclock.title": "Overclock", "quests.gregtech_energy.overclock.subtitle": "Basic upgrade mechanic", "quests.gregtech_energy.overclock.desc.1": "Have you heard about Overclocking, but don't really understand what it is? Let's take some time to explain it.\n\nWe should start with the basics:\n&dLV&r represents a maximum of 32 EU/t β€” sometimes less, but never more.\n&dMV&r goes up to 128 EU/t.\n&dHV&r reaches 512 EU/t.\nBasically, every tier is a 4x increase in power usage.", - "quests.gregtech_energy.overclock.desc.2": "What happens when you run a lower-tier recipe in a higher-tier machine? That's what we call &eOverclocking&r!\n\nAn &dMV&r recipe (33–128 EU/t) run in an &dHV&r machine will both: 1) Use 4x more energy, and 2) Be 2x faster.\n\nThe same MV recipe in an &dEV&r machine? 8x the energy cost, but only 4x faster.\n\nAs you can see, it's more power efficient to use multiple machines rather than overclocking a single one.\nBut let's be real: in most setups, you’ll prefer overclocking to building a ton of the same machines.\n\nStill, it's good to know this early on, when energy is tight.", + "quests.gregtech_energy.overclock.desc.2": "What happens when you run a lower-tier recipe in a higher-tier machine? That's what we call &eOverclocking&r!\n\nAn &dMV&r recipe (33–128 EU/t) run in an &dHV&r machine will both: 1) Use 4x more energy, and 2) Be 2x faster.\n\nThe same MV recipe in an &dEV&r machine? 16x the energy cost, but only 4x faster.\n\nAs you can see, it's more power efficient to use multiple machines rather than overclocking a single one.\nBut let's be real: in most setups, you’ll prefer overclocking to building a ton of the same machines.\n\nStill, it's good to know this early on, when energy is tight.", "quests.gregtech_energy.overclock.desc.3": "There’s a special kind of overclocking exclusive to just a few multiblocks: &ePerfect Overclocking&r.\nHere, instead of 4x energy for 2x speed, you get &a4x energy&r for &a4x speed&r! This makes it just as efficient as running multiple machines.\n\nCurrently in TerraFirmaGreg, only the following multiblocks support this:\n- Electric Blast Furnace\n- Alloy Blast Smelter\n- Rotary Heat Furnace\n- Large Chemical Reactor\n- Electric Greenhouse", "quests.gregtech_energy.overclock.task": "So the red ones go faster, got it", "quests.gregtech_energy.blast_oc.title": "The Blast Overclocking", @@ -1825,7 +1838,7 @@ "quests.gregtech_energy.rotor.title": "Turbine Rotors", "quests.gregtech_energy.rotor.subtitle": "So many choices!", "quests.gregtech_energy.rotor.desc.1": "Rotor Holders naturally require a Rotor to use, but there's a lot of options and they all have different stats, so what do they all mean?\n\nHigher &9Efficiency&r will increase the time each mB of fuel is used for, effectively reducing fuel usage. Meanwhile, &9Power&r will increase how much EU the turbine will generate. Lastly, &9Durability&r should be obvious.", - "quests.gregtech_energy.rotor.desc.2": "Ideally, you'll want to maximize all three, but the choice will depend on how much fuel you're producing, how many turbines you have, and how often you want to replace them, so there's no definitive correct answer. &8(Besides neutronium, of course...)&r\n\nThat being said, if you're completely lost, we recommend Vanadium Steel in &6HV&r, Ultimet in &5EV&r, and HSS-S in &9IV&r.\n\nUnfortunately, you can't automatically pipe new rotors into rotor holders as they need the block in front of them to be completely empty, but a &aMechanical Arm&r will work!", + "quests.gregtech_energy.rotor.desc.2": "Ideally, you'll want to maximize all three, but the choice will depend on how much fuel you're producing, how many turbines you have, and how often you want to replace them, so there's no definitive correct answer. &7(Besides neutronium, of course...)&r\n\nThat being said, if you're completely lost, we recommend Vanadium Steel in &6HV&r, Ultimet in &5EV&r, and HSS-S in &9IV&r.\n\nUnfortunately, you can't automatically pipe new rotors into rotor holders as they need the block in front of them to be completely empty, but a &aMechanical Arm&r will work!", "quests.gregtech_energy.rotor.task": "Any Turbine Rotor", "quests.high_voltage": "&6HV&r - High Voltage", "quests.high_voltage.subtitle": "Upgrade your power, learn about the Cleanroom, make more chemicals, and get ready for Space", @@ -1908,7 +1921,7 @@ "quests.high_voltage.tnt.desc.3": "We don't have any easy tips to give you for &aToluene&r. It's going to be tricky no matter which route you take.\n\nThat being said, don't miss out on the direct &aHeavy Fuel&r to &aToluene&r recipe in the single block &3Distillery&r.\n\n&aToluene&r can also optionally be used in &5EV&r to make &dGasoline&r.\n\n&cTNT&r is used in the &3Implosion Compressor&r to make Gems. It also blows stuff up.", "quests.high_voltage.ender_pearls.title": "Ender Pearls", "quests.high_voltage.ender_pearls.subtitle": "Sci-fi gemstones, or something", - "quests.high_voltage.ender_pearls.desc": "You won't find any Endermen dropping Ender Pearls in TFG.\nEven the ones lurking in the Beneath won’t help you there.\n\nInstead, your only option for now is to craft them yourself:\n\nCombine &2Beryllium Dust&r and &2Potassium Dust&r in a &6HV&r Mixer to create the elusive &5Ender Dust&r.\n\nOnce that's done, throw it into an &8Implosion Compressor&r and recreate the iconic Ender Pearl β€” GregTech style.", + "quests.high_voltage.ender_pearls.desc": "You won't find any Endermen dropping Ender Pearls in TFG.\nEven the ones lurking in the Beneath won’t help you there.\n\nInstead, your only option for now is to craft them yourself:\n\nCombine &2Beryllium Dust&r and &2Potassium Dust&r in a &6HV&r Mixer to create the elusive &5Ender Dust&r.\n\nOnce that's done, throw it into an &7Implosion Compressor&r and recreate the iconic Ender Pearl β€” GregTech style.", "quests.high_voltage.boules.title": "Phosphorus Boules", "quests.high_voltage.boules.subtitle": "That's dope, bro!", "quests.high_voltage.boules.desc": "Doping is the process of intentionally introducing impurities into semiconductors to alter their properties.\n\n&7Silicon&r can be doped with small amounts of &ePhosphorus&r to make a better &eSilicon Boule&r.\n\nPhosphorus-doped Silicon Boules typically yield &68 times&r more wafers than their non-doped counterparts. However, they are not strictly needed until &5EV&r, where they'll be used in more complex wafers.\n\n&9Note&r: All processing of Phosphorus Boules and Wafers will require a &dCleanroom&r.", @@ -1945,13 +1958,13 @@ "quests.high_voltage.hv_hull.subtitle": "Soon to be a minestronaut", "quests.high_voltage.hv_hull.desc.1": "&2We hope you're getting the hang of &9GregTech&r, because now it's time to push your skills a bit further.\nIn this chapter, you'll unlock &eadvanced multiblocks&r, &ecomplex processes&r, and even take your first steps onto the &fMoon&r!\n\n&6For this chapter, you have two main goals :&r\n- Craft your first &5EV&r Machine Hull\n- Begin your journey to the &fMoon&r\n\nUnlocking the Moon will also grant access to &bCertus Quartz&r, paving the way for &dApplied Energistics 2&r. You’re free to tackle these objectives in any order you prefer.", "quests.high_voltage.hv_hull.desc.2": "To craft the &5EV&r Machine Hull:\n- Build your first &aCleanroom&r\n- Construct a &bVacuum Freezer&r to cool hot ingots\n- Process &9Rutile&r into &7Titanium&r\n\nYou'll find plenty of &9Rutile&r on the &fMoon&r, but it can also be located in &eBauxite&r veins in the &aOverworld&r.", - "quests.high_voltage.hv_hull.desc.3": "To reach the Moon:\n- Craft a generous amount of &6Rocket Alloy&r\n- Create your first &eEnder Eye&r using the &3Chemical Bath&r and the &8Implosion Compressor&r\n- Prepare all the &bequipment&r you'll need to &bbreathe in space&r\n\nGetting the &bVacuum Freezer&r and &6better coils&r will speed up &6Rocket Alloy&r production, but they’re not mandatory.\n\n&dChoose your path!&r", + "quests.high_voltage.hv_hull.desc.3": "To reach the Moon:\n- Craft a generous amount of &6Rocket Alloy&r\n- Create your first &eEnder Eye&r using the &3Chemical Bath&r and the &7Implosion Compressor&r\n- Prepare all the &bequipment&r you'll need to &bbreathe in space&r\n\nGetting the &bVacuum Freezer&r and &6better coils&r will speed up &6Rocket Alloy&r production, but they’re not mandatory.\n\n&dChoose your path!&r", "quests.high_voltage.nichrome.title": "Nichrome Ingots", "quests.high_voltage.nichrome.subtitle": "It doesn't have much use", "quests.high_voltage.nichrome.desc": "Your third alloy is here and it's essential for your next set of coils in the &6EBF&r.\n\nAs usual you will need &9128 ingots&r but this time you’ll notice that you can’t use a &6Chemical Washer&r. Instead, you're required to use a &6Vacuum Freezer&r.\n\nGood news: it’s actually simpler and faster.\n\nYou’ll only be using &6Nichrome&r for these coils, but don’t get too comfortable β€” it will return later for the next set of &5RTM Coils&r.", "quests.high_voltage.rocket_t1.title": "Your First Rocket!", "quests.high_voltage.rocket_t1.subtitle": "The first of many", - "quests.high_voltage.rocket_t1.desc": "Wow, it's time to build your &6Rocket&r!\n\nAssemble all the parts with &d8 Dense Rocket Alloy&r. To finish the insulation, you'll need &b2304mb&r of &bLiquid Silicon&r (&b16 ingots&r) and &f16 pieces of dust&r.\n\nYou have two choices:\n&e-&r &eBorosilicate Glass Dust&r β€” crafted in a &6Mixer&r with &dBoron&r and &fGlass Dust&r\n\n&e-&r &5Vitrified Asbestos&r β€” obtained through a &6Pyrolysis Oven&r\n\nGo with whichever's easiest for you!", + "quests.high_voltage.rocket_t1.desc": "Wow, it's time to build your &6Rocket&r!\n\nAssemble all the parts with &d8 Dense Rocket Alloy&r. To finish the insulation, you'll need &b2304mb&r of &bLiquid Silicon&r (&b16 ingots&r) and &f16 pieces of dust&r.\n\nYou have two choices:\n&e-&r &eBorosilicate Glass Dust&r β€” crafted in a &6Mixer&r with &dBoron&r and &fGlass Dust&r\n\n&e-&r &5Vitrified Asbestos&r β€” obtained through a &6Pyrolyse Oven&r\n\nGo with whichever's easiest for you!", "quests.high_voltage.vitrified_pearl.title": "Vitrified Ender Pearl", "quests.high_voltage.vitrified_pearl.subtitle": "An Exotic Ceramic", "quests.high_voltage.vitrified_pearl.desc": "Heat the Ender Pearl in a &ePyrolyse Oven&r along with some appropriate insulation to properly vitrify it into something resembling a &3ceramic&r.\n\nYou won’t need many of these for now β€” at minimum, just one for your &6Rocket&r and another for your &6HV Circuit Assembler&r.\nBut be warned: from &5EV&r and beyond, the demand will rise quickly.", @@ -1979,7 +1992,7 @@ "quests.high_voltage.steel_engine.subtitle": "Blue Steel is back, baby", "quests.high_voltage.steel_engine.desc": "The &6Steel Engine&r is required so your rocket can &atravel to the Moon&r.\n\nThe recipe isn't too bad β€” we assume you're ready to tackle each part.\n\nTo get &91152mb of Liquid Blue Steel&r, you will need &78 ingots&r.", "quests.high_voltage.rocket_fins.subtitle": "So you reach the right destination", - "quests.high_voltage.rocket_fins.desc": "We made the &6Rocket Fins&r use an &bAlloy Smelter&r simply to remind you that you now have access to the &bMulti-Smelter&r β€” a wonderful small EBF that can be used both as a &eFurnace&r and an &bAlloy Smelter&r.\n\nThe quest to craft it is in the &bMV&r Chapter. We really advise you to think about it if you haven't yet.", + "quests.high_voltage.rocket_fins.desc": "Originally, we made the &6Rocket Fins&r use an &bAlloy Smelter&r simply to remind you that you now have access to the &bMulti-Smelter&r β€” a wonderful small EBF that can be used both as a &eFurnace&r and an &bAlloy Smelter&r.\n\nThe quest to craft it is in the &bMV&r Chapter.\n\nWe changed this recipe to the assembler because \"rocket fins\" aren't exactly an alloy.", "quests.high_voltage.rocket_nose_cone.subtitle": "The nose knows...", "quests.high_voltage.rocket_nose_cone.desc": "The &6Rocket Nose Cone&r is the hardest part of your Rocket.\nYou will need a hefty amount of &aPolyethylene&r β€” so we hope you already have it passively produced β€” and a &6HV&r Emitter.\nYou should be able to get your hands on &dChromium&r by electrolyzing &cRuby Dust&r.\n\nThe &aVitrified Ender Pearl&r is trickier and requires you to follow the quest unlocked by the &6HV Chemical Reactor&r.\nGet ready to make &cTNT&r, build an &5Implosion Compressor&r, and recreate the famous Enderman drop β€” since you won’t find Ender Pearls natively in &2TFG&r.", "quests.high_voltage.launch_pad.subtitle": "Ready for launch in T-10...", @@ -2014,7 +2027,7 @@ "quests.high_voltage.moon_harvester.desc": "The &7Moon&r is your first entry into &einfinite ores&r β€” but it’s a slow one.\nYou will need to harvest different kinds of &bRegolith Dust&r, each obtainable only in a specific biome.\nTo do this, you’ll rely on the &6Moon Harvester&r. There are two important things to remember when using it:\n\nβ€’ It requires an &9Input Bus&r so you can set the right &9circuit&r.\nβ€’ It supports &ecoils&r just like the &6Cracker&r β€” the higher the tier of your coils, the bigger the energy discount.\nThis is especially useful when harvesting Regolith far from your base.\n\nOf course, raw dust isn’t enough.\nYou’ll need a &asmall processing line&r to extract resources from the Regolith dust. So make sure to bring them to your &7Moon base&r for processing.", "quests.high_voltage.regolith_vapor.title": "Regolith Vapor", "quests.high_voltage.regolith_vapor.subtitle": "The little something to make dusts into ores", - "quests.high_voltage.regolith_vapor.desc": "To process your &bRegolith Dust&r, you’ll need &bRegolith Vapor&r β€” and setting it up is a bit more involved.\n\nHere’s what you’ll need:\n\nβ€’ &7Lunar Sand&r β€” obtainable infinitely with a &6Rock Breaker&r.\nβ€’ &eCarbon Dioxide&r β€” produced from &9Oxygen&r and &8Carbon Dust&r (easy, thanks to the infinite &bDiamond Dust&r you’ll be getting).\nβ€’ &9Nitrogen&r β€” acquired through the cultivation of &dChorus Fruits&r.\n\nTip: You can loop your &9Oxygen&r through &bSilicon Dioxide&r, which also gives you a steady bonus of &eSilicon Dust&r β€” a very useful side product.", + "quests.high_voltage.regolith_vapor.desc": "To process your &bRegolith Dust&r, you’ll need &bRegolith Vapor&r β€” and setting it up is a bit more involved.\n\nHere’s what you’ll need:\n\nβ€’ &7Lunar Sand&r β€” obtainable infinitely with a &6Rock Breaker&r.\nβ€’ &eCarbon Dioxide&r β€” produced from &9Oxygen&r and &7Carbon Dust&r (easy, thanks to the infinite &bDiamond Dust&r you’ll be getting).\nβ€’ &9Nitrogen&r β€” acquired through the cultivation of &dChorus Fruits&r.\n\nTip: You can loop your &9Oxygen&r through &bSilicon Dioxide&r, which also gives you a steady bonus of &eSilicon Dust&r β€” a very useful side product.", "quests.high_voltage.regolith_vapor.task": "Got it", "quests.high_voltage.regolith_dust.title": "Regolith for each biomes", "quests.high_voltage.regolith_dust.subtitle": "The three musketeers", @@ -2237,7 +2250,7 @@ "quests.low_voltage.lv_nitrogen.task": "Nitrogen", "quests.low_voltage.lv_arc_furnace.title": "The Arc Furnace", "quests.low_voltage.lv_arc_furnace.subtitle": "The Arc Furnace has never been so good", - "quests.low_voltage.lv_arc_furnace.desc.1": "The &3Arc Furnace&r uses a lil' bit of &9Oxygen&r to smelt items in a different fashion than Furnaces.\n\nYou can use it to make easier &aWrought Iron&r, double your &aGlass&r, and gain access to &aAnnealed Copper&r for cheaper electronic components. It's also your new best way to make &4Red Steel&r and &1Blue Steel&r Ingots!\n\nIt can also recycle various components and machines back to their original materials.", + "quests.low_voltage.lv_arc_furnace.desc.1": "The &3Arc Furnace&r uses a lil' bit of &9Oxygen&r to smelt items in a different fashion than Furnaces.\n\nYou can use it to make easier &aWrought Iron&r, double your &aGlass&r, and gain access to &aAnnealed Copper&r for cheaper electronic components.\n\nIt can also recycle various components and machines back to their original materials.", "quests.low_voltage.lv_arc_furnace.desc.2": "&l&3Lore:&r&o Previous GregTech versions had both the Arc Furnace and the &bPlasma Arc Furnace&f. In that case, why not use one machine for both? Well, that's exactly what we thought - but we ultimately decided to remove one of the two &bplasma&f recipes. And then the other &bplasma&f recipe.\n\n&oIn short, the &bPlasma Arc Furnace&f is &4gone&f. RIP.", "quests.low_voltage.lv_extractor.title": "Basic Liquid Extraction", "quests.low_voltage.lv_extractor.subtitle": "The Extractor extracts...", @@ -2298,8 +2311,8 @@ "quests.medium_voltage.mv_miner.title": "Automatic Mining", "quests.medium_voltage.mv_miner.subtitle": "So are you bored of mining yourself?", "quests.medium_voltage.mv_miner.desc.1": "This kind soul&r will mine ores for you when placed above a vein.\n\nVertical range is unlimited below the miner. Horizontal range is displayed in the tooltip.\n\nThe &bMV&r variant may not have the range to mine a full vein, but the &6HV&r variant does, so you may wish hold off for now. Get &eeither&r to complete this Quest.", - "quests.medium_voltage.mv_miner.desc.2": "You will need &9Power&r. &aCharged Batteries&r may work, but they tend to run out of power, which is a bit inconvenient.\n\nOur top suggestion is to use a filled &3Drum&r of some kind of fuel &7(if you're using Steam, no dice!)&r and a &3Generator&r.\n\nPlace the Drum above your Generator and right-click it with a &5Soft Mallet&r to auto-output into the Generator.", - "quests.medium_voltage.mv_miner.desc.3": "&cNote:&r Do not forget to &dchunkload&r all 9 chunks of the ore vein &7(open the map, claim the chunks with ctrl left-click, and enable force loading after claiming them)&r.\n\n&9Tip:&r You can either use an &3ME Chest&r or a &3GT Create&r as the output inventory to make transporting the ores back home a simple task. The &3ME Chest&r can be powered with EU directly but that won't be before some time.", + "quests.medium_voltage.mv_miner.desc.2": "You will need &9Power&r. &aCharged Batteries&r may work, but they tend to run out of power, which is a bit inconvenient.\n\nOur top suggestion is to use a filled &3Drum&r of some kind of fuel &7(if you're using Steam, no dice!)&r and a &3Generator&r.\n\nPlace the Drum above your Generator and right-click it with a &5Soft Mallet&r or &5Screwdriver&r to auto-output into the Generator.", + "quests.medium_voltage.mv_miner.desc.3": "&cNote:&r Do not forget to &dchunkload&r all 9 chunks of the ore vein &7(open the map, claim the chunks with ctrl left-click, and enable force loading after claiming them)&r.\n\n&9Tip:&r You can either use an &3ME Chest&r, a &3Backpack&r, or a &3GT Crate&r as the output inventory to make transporting the ores back home a simple task. The &3ME Chest&r can be powered with EU directly, by the way.", "quests.medium_voltage.mv_miner.task": "Any miner", "quests.medium_voltage.mv_component.title": "The MV Components", "quests.medium_voltage.mv_component_.subtitle": "Hated crafting these in previous tier?", @@ -2307,7 +2320,7 @@ "quests.medium_voltage.electrolyzer.title": "MV Electrolyzer", "quests.medium_voltage.electrolyzer.subtitle": "We made it to MV, and, well...", "quests.medium_voltage.electrolyzer.desc.1": "&bThis one should look familiar&rβ€”you’ve seen it before.\n&2We highly recommend crafting it as soon as possible,&r as it will unlock a wide range of new &7Aluminium&r sources.\n\nUntil now, your only method was &9electrolyzing Sapphire&r to obtain &7Aluminium Dust&r.\nBut with the &bMV&r Electrolyzer, a whole new world of resources opens up.", - "quests.medium_voltage.electrolyzer.desc.2": "&6Here are some key materials to look for:&r\n&9Ruby&r – Grants both &7Aluminium&r and &5Chromium&r.\n&9Pyrope&r – Often found alongside Sapphire veins.\n&9Lepidolite&r – Offers a generous selection of valuable byproducts.\n&9Sodalite&r – Comes with &3Chlorine&r and &bSilicon&r.\n&9Topaz&r – Yields both &3Fluorine&r and &7Aluminium&r in solid quantities.\n\n&2And that’s just the beginning!&r Use &aEMI&r to explore even more optionsβ€”we promise, there’s a lot to discover.\n\n&cOh, and by the way:&r Electrolyzing Clay is now gated behind &6HV&r. \n&8We’re not sorry.&r", + "quests.medium_voltage.electrolyzer.desc.2": "&6Here are some key materials to look for:&r\n&9Ruby&r – Grants both &7Aluminium&r and &5Chromium&r.\n&9Pyrope&r – Often found alongside Sapphire veins.\n&9Lepidolite&r – Offers a generous selection of valuable byproducts.\n&9Sodalite&r – Comes with &3Chlorine&r and &bSilicon&r.\n&9Topaz&r – Yields both &3Fluorine&r and &7Aluminium&r in solid quantities.\n\n&2And that’s just the beginning!&r Use &aEMI&r to explore even more optionsβ€”we promise, there’s a lot to discover.\n\n&cOh, and by the way:&r Electrolyzing Clay is now gated behind &6HV&r. \n&7We’re not sorry.&r", "quests.medium_voltage.mv_extruder.title": "Advanced Extruder", "quests.medium_voltage.mv_extruder.subtitle": "The biggest upgrade you'll make", "quests.medium_voltage.mv_extruder.desc": "We &lSINCERELY&r hope at &cno&r point you made the &7LV&r Extruder, because only the &bMV&r Extruder is actually useful. If you did, immediately &arecycle it&r through the Arc Furnace.\n\nThe Extruder shapes solid materials into (almost!) any form using &aIngots&r. This is a great way to reduce the amount of microcrafting, as well as keeping a high conversion ratio.\n\nThe Extruder can make &6Bolts&r, &6Small Gears&r, &6Gears&r, and &6Rings&r at the highest efficiency in a single step!\n\nYou may also like to use it for &dPipes&r, &dScrews&r, and &dRotors&r.", @@ -2319,7 +2332,7 @@ "quests.medium_voltage.mv_mixer.desc": "If you're wanting to dive into &bMV&r, start here.\n\nThe dusts created in an &3MV Mixer&r have great utility.", "quests.medium_voltage.mv_energy.title": "Electricity Generation in MV", "quests.medium_voltage.mv_energy.subtitle": "Things are 'boutta get rough", - "quests.medium_voltage.mv_energy.desc.1": "Hello there, and welcome to &bMV Energy Production&r.\n\nIn this quest, we’ll go over the different options available to keep your &bMV machines&r powered and running smoothly.\n\nWe won’t cover this in every chapter, so we highly recommend that you &aread the dedicated chapter on GregTech Energy&r for a deeper understanding of how everything works.\n\nFor now, here are your &athree main options&r:\n\n&8- &bUse an MV Generator&r to directly produce &bMV-level energy&r.\n\n&8- &bStep up your &7LV&r power by using transformers&r, with a &e4:1 ratio&r between &7LV&r and &bMV&r.\n\n&8- &bConvert RF&r using your &dAlternator&r to get &bMV energy&r directly.\n\n", + "quests.medium_voltage.mv_energy.desc.1": "Hello there, and welcome to &bMV Energy Production&r.\n\nIn this quest, we’ll go over the different options available to keep your &bMV machines&r powered and running smoothly.\n\nWe won’t cover this in every chapter, so we highly recommend that you &aread the dedicated chapter on GregTech Energy&r for a deeper understanding of how everything works.\n\nFor now, here are your &athree main options&r:\n\n&7- &bUse an MV Generator&r to directly produce &bMV-level energy&r.\n\n&7- &bStep up your &7LV&r power by using transformers&r, with a &e4:1 ratio&r between &7LV&r and &bMV&r.\n\n&7- &bConvert RF&r using your &dAlternator&r to get &bMV energy&r directly.\n\n", "quests.medium_voltage.mv_energy.desc.2": "Higher-tier Generators will increase their fuel consumption proportionally to their Generation rate, keeping the duration of fuels and the specific amount of energy from fuels the same. The &3Advanced Steam Turbine&r will use &d5,120 mB Steam&r per second, equivalent to &d256 mB/t&r.\n\nGet &eany&r of the generators to complete this quest, but you may prefer starting off with the &3Advanced Steam Turbine&r.", "quests.medium_voltage.mv_energy.desc.3": "There are a few new power options available for &bMV&r. Selecting the Generators and pressing &4U&r will let you see which fuels count as &aCombustion&r or &aGas&r.\n\nQuests in the top left corner of this Chapter are for the valuable Power options.\n\nIf you stick to &9Steam&r for your Power generation, you'll probably need a &3Large Boiler&r.", "quests.medium_voltage.mv_energy.desc.4": "&3Transformers&r allow you to step up and down safely between Voltage tiers. They convert the power they receive into an equivalent amount of power 1 voltage tier above or below the input voltage.\n\nApart from running machines on different voltage tiers, Transformers come in handy for transporting power across longer distances, as cable loss has less of an effect at higher voltages. Just like real life!", @@ -2334,7 +2347,7 @@ "quests.medium_voltage.mv_batteries.desc": "&bMV&r Batteries will appeal to you if you want to buffer Energy, just like &7LV&r.\n\nThe cost in &aSodium&r, &aLithium&r or &aCadmium&r jumps up to 8 dusts, so you should use whatever you have the most of. The difference in capacity isn't &7THAT&r huge, after all!\n\nGet &eeither&r Battery to complete the Quest.", "quests.medium_voltage.mv_steel_alloy.title": "Steel Alloys", "quests.medium_voltage.mv_steel_alloy.subtitle": "Steel Your Heart", - "quests.medium_voltage.mv_steel_alloy.desc": "Vanadiumsteel is required in small quantities in progression. It's &6nearly four times as durable&r as Steel if used in GregTech tools. The Vanadium comes from &aVanadium Magnetite&r, which you may have encountered in Magnetite veins.\n\nOther Steel alloys include Blue Steel, Red Steel, and Black Steel!\n\nTake some Blue Steel free of charge - it's twice as durable as Steel.", + "quests.medium_voltage.mv_steel_alloy.desc": "Vanadium steel is required in small quantities in progression. It's &6nearly four times as durable&r as Steel if used in GregTech tools. The Vanadium comes from &aVanadium Magnetite&r, which you may have encountered in Magnetite veins.", "quests.medium_voltage.pyrolyse.title": "Pyrolyse Oven", "quests.medium_voltage.pyrolyse.subtitle": "Thermal Decomposition", "quests.medium_voltage.pyrolyse.desc.1": "The &3Pyrolyse Oven&r is an electric equivalent to the &3Coke Oven&r. It can produce &9Coal Coke&r and &9Charcoal&r with a &9Creosote&r byproduct just as before, but also has additional &6Organic Byproducts&r, the most beneficial of these being &aWood Tar&r.\n\nAnother product is &aBiomass&r, which is more pertinent for your progression as of this moment.", @@ -2346,7 +2359,7 @@ "quests.medium_voltage.mv_fluid_rig.desc.1": "It's quite the investment to own a &3Fluid Drilling Rig&r, but it is &oby far&r the most prominent &6source of Oil&r.\n\nIt pumps fluids from underneath Bedrock itself. Note that the fluids aren't actually there, instead being simulated.\n\nFluid veins are stored within &cchunk-sized regions&r. Each vein has a different fluid, but they are mostly types of Oil.\n\nYou can't carry out prospecting for fluid veins &oyet&r - this will come at &6HV&r.", "quests.medium_voltage.mv_fluid_rig.desc.2": "Each vein generates with a different base yield. This is typically between &d150L&r to &d300L per second&r.\n\nWhen drained, fluid veins will slowly deplete. This will cause the fluid yield to decrease over time until it reaches its depletion yield. At that point, you should move the Rig to a different vein.\n\nA &3Basic Fluid Drilling Rig&r will last for 100,000 operations (with 1 second per operation) until depletion. This is enough for &6well over 10,000&r buckets of Oil. Higher tier Rigs will massively increase the yield, while also decreasing the depletion rate.", "quests.medium_voltage.mv_fluid_rig.desc.3": "&lWhat you can find in the &2Overworld&r&l:&r\n\n&9Oil:&r richer in &aLight Fuel&r, the most appreciated variant.\n&9Light Oil:&r richer in &aRefinery Gas&r, usable for power.\n&9Heavy Oil:&r richer in &aHeavy Fuel&r, which has uses that are more niche but notably Toluene.\n&9Raw Oil:&r richer in &aNaphtha&r, the best source of the early-game oil products.\n&9Natural Gas:&r grants &aRefinery Gas&r with no distillation required.\n&9Sea Water:&r grants &aSodium&r and &aChlorine&r, useful later.", - "quests.medium_voltage.mv_fluid_rig.desc.4": "&lWhat you can find in the &cNether&r&l:&r\n\n&9Natural Gas:&r grants &aRefinery Gas&r but with higher yield than the Overworld vein.\n&9Lava:&r hopefully, you know what this is.\n\nWhen starting out, you may have to tap randomly until you find something you like. Remember that whatever you pump could also be used to refuel your Fluid Rig.", + "quests.medium_voltage.mv_fluid_rig.desc.4": "&lWhat you can find in the &cBeneath&r&l:&r\n\n&9Natural Gas:&r grants &aRefinery Gas&r but with higher yield than the Overworld vein.\n&9Lava:&r hopefully, you know what this is.\n\nWhen starting out, you may have to tap randomly until you find something you like. Remember that whatever you pump could also be used to refuel your Fluid Rig.", "quests.medium_voltage.mv_oilsands.title": "America Simulator", "quests.medium_voltage.mv_oilsands.subtitle": "This quest was sponsored by the US Military", "quests.medium_voltage.mv_oilsands.desc": "Underground, you may come across pure Oilsands ore veins. You can &3centrifuge&r the Dust to get &aOil&r.\n\n&9&lNote:&r&l The Oil path is one path towards &9&lEthylene&r&l. The other paths involve getting natural with some Ethanol.&r\n\nFor now, Oil is &doptional&r. It becomes mandatory much later when you get to &5EV&r.\n\nOil can also be refined in the form of &aLight Fuel&r, &aDiesel&r or even &aGasoline&r, which are excellent power options.\n\nIf you chose this path, you should use it for both Power and Ethylene.\n\nOilsands are a &6great starting point&r - they'll tide you over until you unlock Fluid Drilling Rigs.", @@ -2411,7 +2424,7 @@ "quests.medium_voltage.mv_aciditic.title": "It will Melt Your Flesh", "quests.medium_voltage.mv_aciditic.subtitle": "...if you don't read this quest.", "quests.medium_voltage.mv_aciditic.desc.1": "You may notice that some fluids say they are &aAcidic&r, with &9Sulfuric Acid&r being one of them.\n\nThis means that many fluid pipes will not be able to transport them safely!\n\nAt &bMV&r, the cheapest pipes for acid transportation are probably &aGold&r, with the more expensive &aVanadium Steel&r or &aChrome&r pipes taking second and third place.\n\n&aStainless Steel&r or &aPolytetrafluoroethylene&r (try saying that fast) will be valid options once you are in &6HV&r.", - "quests.medium_voltage.mv_aciditic.desc.2": "You have three options for acid storage at around this point: &dGlass Vials&r, &dGold Drums&r, or &dSuper Tanks&r. Glass Vials are like &9Fluid Cells&r, and are made to store acids. Gold Drums are self-explanatory. Super Tanks will be unlocked after &9Polyethylene&r, and can store any fluid without restriction.\n\n&cWARNING:&r Acids in the wrong pipes will cause &cvoiding&r, &cpipe burning&r, and high chance of &cdeath&r! Be careful!\n\n&l&3Lore:&r&o The acid transportation and storage mechanics originate from GregTech 6.", + "quests.medium_voltage.mv_aciditic.desc.2": "You have three practical options for acid storage at around this point: &dGlass Vials&r, &dGold Drums&r, or &dSuper Tanks&r. Glass Vials are like &9Fluid Cells&r, and are made to store acids. Gold Drums are self-explanatory. Super Tanks can store any fluid without restriction, but are the most expensive.\n\n&cWARNING:&r Acids in the wrong pipes will cause &cvoiding&r, &cpipe burning&r, and high chance of &cdeath&r! Be careful!\n\n&l&3Lore:&r&o The acid transportation and storage mechanics originate from GregTech 6.", "quests.medium_voltage.mv_aciditic.task": "I'm an acid professional, don't worry", "quests.medium_voltage.mv_hydrochloric.title": "Hydrochloric Acid", "quests.medium_voltage.mv_hydrochloric.subtitle": "You'll need a lot of this!", @@ -2501,7 +2514,7 @@ "quests.medium_voltage.mv_cells.desc": "Aluminium Cells are a big upgrade over the Steel Cells or Universal Fluid Cells.\n\nThey can hold any fraction of Fluid - up to &d32 buckets&r!", "quests.medium_voltage.mv_jetpack_2.title": "I Believe I Can Fly II", "quests.medium_voltage.mv_jetpack_2.subtitle": "...still not quite there.", - "quests.medium_voltage.mv_jetpack_2.desc": "This jetpack enables flight, and requires energy.\n\nCharge it like you would charge a Battery.\n\nPress &4H&r (default) to enable Hover Mode.\n\n&o&8(Yeah, yeah, a jetpack is supposed to work off propellants. Y'all are always here to nitpick.)&r", + "quests.medium_voltage.mv_jetpack_2.desc": "This jetpack enables flight, and requires energy.\n\nCharge it like you would charge a Battery.\n\nPress &4H&r (default) to enable Hover Mode.\n\n&o&7(Yeah, yeah, a jetpack is supposed to work off propellants. Y'all are always here to nitpick.)&r", "quests.medium_voltage.mv_cutter.title": "Advanced Cutter", "quests.medium_voltage.mv_cutter.subtitle": "Upgrades, people, upgrades!", "quests.medium_voltage.mv_cutter.desc": "The &3MV Cutter&r is required to cut &7Silicon Boules&r to prepare them for &aLaser Engraving&r.\n\nWe recommend you supply this machine with a steady stream of &dLubricant&r to cut down on the processing time.\n\nLubricant can be &3brewed&r from &eOil&r and &aTalc&r, &2Soapstone&r or &cRedstone&r.\n\n&7Note : You could use the &6Greate&r &7version, it has now a tank to fill with it fluid&r&r", @@ -2562,11 +2575,11 @@ "quests.metal_age.wrought_iron_anvil.desc": "With the Wrought Iron Anvil you'll be able to work Wrought Iron Ingots into different items such as Sheets, Tool heads, etc.\n\nWrought Iron tools and armor isn't much of an improvement over Bronze, but it has far more durability.\n\nCreating the next anvil is going to be a significant step up in difficulty, so this is a good point to settle down and explore some of the other things this modpack has to offer.", "quests.metal_age.coke_oven.title": "Coke Oven", "quests.metal_age.coke_oven.subtitle": "Finally, No More Charcoal Piles", - "quests.metal_age.coke_oven.desc.1": "The Coke Oven is your first GregTech multiblock! It allows you to automatically create Charcoal and other powerful combustibles. The Coke Oven will burn one Log into one Charcoal and 250mb of Creosote, which is an important chemical used wood treating.\n\nIf you craft the main Coke Oven block and press the JEI 'Uses' key on it (defaults to \"U\"), you'll find the tab called \"Multiblock Info\", which shows you how to build the Coke Oven in the world.\n\nYou can also just place the Controller block in the world, and interact with it while sneaking to create a Hologram of blocks missing.", + "quests.metal_age.coke_oven.desc.1": "The Coke Oven is your first GregTech multiblock! It allows you to automatically create Charcoal and other powerful combustibles. The Coke Oven will burn one Log into one Charcoal and 250mb of Creosote, which is an important chemical used in wood treating and as an early fuel.\n\nIf you craft the main Coke Oven block and press the JEI 'Uses' key on it (defaults to \"U\"), you'll find the tab called \"Multiblock Info\", which shows you how to build the Coke Oven in the world.\n\nYou can also just place the Controller block in the world, and interact with it while sneaking to create a Hologram of blocks missing.", "quests.metal_age.coke_oven.desc.2": "Coke Ovens can be fully automated using a Coke Oven Hatch. The Hatch is placed on the sides of the Oven and work as both Inputs and Outputs for both Items and Liquids.\n\nYou can easly create a simple, one way Coke Oven by using a Crate for the input, a Chest for the output, and a Drum, Barrel, or Large Wooden Tank to collect the Creosote. Unlike Chests, Crates are able to store large objects such as Logs. You can also sneak and right-click GregTech pipes with a wrench to make them one-way.", "quests.metal_age.wrought_iron_goodies.title": "Wrought Iron level Mechanical Power", "quests.metal_age.wrought_iron_goodies.subtitle": "What's this \"Andesite Alloy\" you speak of?", - "quests.metal_age.wrought_iron_goodies.desc": "With Wrought Iron you've unlocked access to the Metal Casing, the foundation of many of Create's mechanical blocks such as Gearboxes. Some of the more advanced ones will require Steel, but it's possible to build a fully automatic tree and crop farm at this point.\n\nCreosote is used to create Treated Wood Planks, which can be crafted into Waterwheels and Windmills, a significant improvement over animal power.", + "quests.metal_age.wrought_iron_goodies.desc": "With Wrought Iron you've unlocked access to the Metal Casing, the foundation of many of Create's mechanical blocks such as Gearboxes. Some of the more advanced ones will require Steel, but it's possible to build a partially automatic tree and crop farm at this point.\n\nCreosote is used to create Treated Wood Planks, which can be crafted into Waterwheels and Windmills, a significant improvement over animal power.", "quests.metal_age.fire_clay_ingredients.title": "Fire Clay Ingredients", "quests.metal_age.fire_clay_ingredients.subtitle": "The TerraFirmaCraft Rite of Passage.", "quests.metal_age.fire_clay_ingredients.desc": "Fire Clay is a special clay made out of Kaolinite, Graphite and regular Clay, which is especially resistant to high temperatures. Its two main uses are the Crucible, which works as an improved version of a Vessel for Metal Smelting and Alloying, and the Blast Furance, which is required for the creation of the next anvil and metal tier, Steel.\n\nYou'll likely need to travel far, far away from your base to obtain both Graphite and Kaolin Clay, so preparation is key!", @@ -2602,7 +2615,7 @@ "quests.metal_age.crucible.desc": "The Crucible is placed on top of a Forge. It comes with 9 inventory slots and has a capacity for 4032mB of fluid, including an interface to check your alloying ratios. They also retain their contents when broken. They can also collect Pig Iron when placed below a Blast Furnace.\n\nKeep in mind that the crucible WILL try to alloy everything inside it - it does not keep metals separate like a TC Smeltery - so it's a good idea to keep it clean when you aren't using it.", "quests.metal_age.fire_bricks.title": "Fire Bricks", "quests.metal_age.fire_bricks.subtitle": "For the Blast Furnace", - "quests.metal_age.fire_bricks.desc": "Fire Bricks are used in the construction of the Blast Furnace, you need at the very least 4 Bricks to make the furnace.\n\nThe Bricks will require insulation to make sure the process of making steel is effective, you can either place 3 Wrought Iron Sheets around the Fire Bricks, or use Blast Furnace Insulation", + "quests.metal_age.fire_bricks.desc": "Fire Bricks are used in the construction of the Blast Furnace, you need at the very least 4 Bricks to make the furnace.\n\nThe Bricks will require insulation to make sure the process of making steel is effective, you can either place 3 Wrought Iron Plates around the Fire Bricks, or use Blast Furnace Insulation", "quests.metal_age.fully_stacked_blast_furnace.title": "Fully Stacked Blast Furnace", "quests.metal_age.fully_stacked_blast_furnace.subtitle": "The completed Blast Furnace", "quests.metal_age.fully_stacked_blast_furnace.desc": "A full size Blast Furnace is able to melt and process large amounts of iron at once. It's a good idea to make it bigger when you can, because you'll need a lot of steel for the future.\n\nAfter you've got your first Steam Alloy Smelter, you'll be able to create more Fire Bricks more cheaply.", @@ -2807,7 +2820,7 @@ "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!", - "quests.space_survival.stone_dust_centrifuging.desc.2": "2) Pump it out of the ground with a &9Fluid Rig&r This method is simpler, but doesn't come with any useful byproducts.\n\nHelium-3 is used for several things, of which the most important is making more air to breathe via &6Heliox-3&r! You can also use it as \"fertiliser\" for Chorus Fruit in the Electric Greenhouse, and eventually as another fuel for Fusion Power.", + "quests.space_survival.stone_dust_centrifuging.desc.2": "2) Pump it out of the ground with a &9Fluid Rig&r This method is simpler, but doesn't come with any useful byproducts.\n\nHelium-3 is used for several things, of which the most important is making more air to breathe via &6Heliox-3&r! You can also use it as \"fertilizer\" for Chorus Fruit in the Electric Greenhouse, and eventually as another fuel for Fusion Power.", "quests.space_survival.stone_dust_centrifuging.task": "Any ", "quests.space_survival.compressed_gases.title": "Compressed Breathable Gases", "quests.space_survival.compressed_gases.subtitle": "Because pure Oxygen is deadly", @@ -2885,19 +2898,19 @@ "quests.steam_age.horse_crank.title": "Your First Power Source", "quests.steam_age.horse_crank.subtitle": "Make your livestock pay rent", "quests.steam_age.horse_crank.desc.1": "The &3Animal Crank&r is your first accessible source of mechanical power. To use it, place the crank on the center of a 7x7 cleared area and leash an animal to it. Different animals will provide different amounts of power, while the blocks underneath will increase the speed of the output power. The area of multiple cranks can overlap.\n\nYou may need to hold a second lead to attach an animal.", - "quests.steam_age.horse_crank.desc.2": "&3Small Animals (4 SU):&r\nWolf, Dog, Pig, Sheep, Goat, Alpaca\n\n&3Medium Animals (6 SU):&r\nCow, Donkey\n\n&3Large Animals (8 SU):&r\nHorse, Mule, Musk Ox, Yak", + "quests.steam_age.horse_crank.desc.2": "&3Small Animals (8 SU):&r\nWolf, Dog, Pig, Sheep, Goat, Alpaca\n\n&3Medium Animals (12 SU):&r\nCow, Donkey\n\n&3Large Animals (16 SU):&r\nHorse, Mule, Musk Ox, Yak", "quests.steam_age.poor_paths.title": "Poor Paths", "quests.steam_age.poor_paths.subtitle": "This is just dirt", - "quests.steam_age.poor_paths.desc": "This is the worst kind of road you could use. The animal crank will operate at 2 RPM.", + "quests.steam_age.poor_paths.desc": "This is the worst kind of road you could use. The animal crank will operate at 8 RPM.", "quests.steam_age.normal_paths.title": "Medium Paths", "quests.steam_age.normal_paths.subtitle": "Ok, you put a little effort in", - "quests.steam_age.normal_paths.desc": "Medium paths are a little better and will let your animals turn the crank at 4 RPM.\n\nNote: You can't have a Dirt Path block directly under the animal crank, so that one will have to be Gravel.", + "quests.steam_age.normal_paths.desc": "Medium paths are a little better and will let your animals turn the crank at 16 RPM.\n\nNote: You can't have a Dirt Path block directly under the animal crank, so that one will have to be Gravel.", "quests.steam_age.good_paths.title": "Great Paths", "quests.steam_age.good_paths.subtitle": "No horseshoes required!", - "quests.steam_age.good_paths.desc": "These are the best kind of paths you could use, letting your crank output at 8 RPM. These kinds of paths also increases the player's move speed too, so they're great to pave your base with!", + "quests.steam_age.good_paths.desc": "These are the best kind of paths you could use, letting your crank output at 32 RPM. These kinds of paths also increases the player's move speed too, so they're great to pave your base with!", "quests.steam_age.helve_hammer.title": "Helve Hammer", "quests.steam_age.helve_hammer.subtitle": "CLANG... CLANG... CLANG...", - "quests.steam_age.helve_hammer.desc": "Does crafting all those plates for a Bloomery look tedious? The &3Helve Hammer&r will automatically (but slowly) flatten double ingots into plates for you. You'll still have to do the welding yourself though. Simply place an anvil directly under the hammer and throw your double ingots onto it, then right-click the hammer to get your plates out.\n\nHigher tier anvils will also require fewer hits to make plates from the previous tier.", + "quests.steam_age.helve_hammer.desc": "Does crafting all those plates for a Bloomery look tedious? The &3Helve Hammer&r will automatically (but slowly) flatten double ingots into plates for you. You'll still have to do the welding yourself though. Simply place an anvil directly under the hammer and throw your double ingots onto it by pressing the &2Throw Item key (Default: Q)&r, then right-click the hammer to get your plates out.\n\nHigher tier anvils will also require fewer hits to make plates from the previous tier.", "quests.steam_age.water_wheel.title": "Water Wheels", "quests.steam_age.water_wheel.subtitle": "Hope you set up your base near a river!", "quests.steam_age.water_wheel.desc": "Water wheels provide much more power than the Animal Crank, at the expense of requiring flowing water. You don't have the ability to move water sources yet, so you'll need to find some sort of river or waterfall to power these.\n\nYou can get treated wood by soaking any planks in creosote from your Coke Oven.", @@ -2946,7 +2959,7 @@ "quests.steam_age.fluid_pipes.desc.2": "&aReminder:&r 1 second = 20 ticks... assuming the server isn't lagging.\n\n&dNote:&r GT6-style Pipes are enabled. It means that placing Pipes connects them only to the block they were placed against. To open more connections, use your Wrench on the pipe.\n\nYou can also shift-right click with your Wrench to disable input from a side. This can help counteract sloshing (liquids travelling in an undesired direction).", "quests.steam_age.fluid_drums.title": "Efficient Fluid Storage", "quests.steam_age.fluid_drums.subtitle": "I don't think a wooden barrel can hold molten steel", - "quests.steam_age.fluid_drums.desc.1": "&6TFG&r can quickly get &4overwhelming&r with the plethora of fluids it introduces, so you may be looking for a way to store them.\n\nIntroducing... &aDrums&r! They have large internal buffers, and any &aDrum&r can be broken and picked up and will &dkeep the fluid&r inside. A right-click with a Soft Mallet allows a Drum to drain its content into another container placed below it.", + "quests.steam_age.fluid_drums.desc.1": "&6TFG&r can quickly get &4overwhelming&r with the plethora of fluids it introduces, so you may be looking for a way to store them.\n\nIntroducing... &aDrums&r! They have large internal buffers, and any &aDrum&r can be broken and picked up and will &dkeep the fluid&r inside. A right-click with a Soft Mallet or Screwdriver allows a Drum to drain its content into another container placed below it.", "quests.steam_age.fluid_drums.desc.2": "&l&3Lore:&r&o These drums are actually ported from GregTech 6.", "quests.steam_age.boilers.title": "Steam Boilers", "quests.steam_age.boilers.subtitle": "Portable Steamroom", @@ -3352,7 +3365,7 @@ "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", - "quests.tfg_tips.aluminium_backpack.title": "Aluminium Steel Backpack", + "quests.tfg_tips.aluminium_backpack.title": "Aluminium Backpack", "quests.tfg_tips.aluminium_backpack.subtitle": "Is it Aluminum or Aluminium?", "quests.tfg_tips.aluminium_backpack.desc": "An &bAluminium Backpack&r is your second proper backpack inventory upgrade. It has a total slot count of &c81&r and can hold &athree upgrades.&r", "quests.tfg_tips.titanium_backpack.title": "Titanium Backpack", @@ -3378,7 +3391,7 @@ "quests.tfg_tips.gt.desc": "&3GregTech&r can be quite intimidating, this quest branch should help you out.", "quests.tfg_tips.nano_saber.title": "Nano Saber", "quests.tfg_tips.nano_saber.subtitle": "26 Attack Damage when active!", - "quests.tfg_tips.nano_saber.desc": "The &6Nano Saber&r is a powerful weapon you’ll be able to unlock once you reach &5EV&r. Simply use &dShift + Right-Click&r to activate the &cbzzzzz mode&r.", + "quests.tfg_tips.nano_saber.desc": "The &6Nano Saber&r is a powerful weapon you’ll be able to unlock once you reach late &5EV&r. Simply use &dShift + Right-Click&r to activate the &cbzzzzz mode&r.", "quests.tfg_tips.gt_tools.title": "GregTech Tools", "quests.tfg_tips.gt_tools.subtitle": "", "quests.tfg_tips.gt_tools.desc": "Most &5GregTech&r tools are crafted from a &6Tool Head&r. Try using &aEMI&r to explore what you can do with them β€” just remember two important things:\n\n- The &ehigher the Tool Head tier&r, the more &cpowerful&r the tool will be, and the &6larger the battery&r it will use.\n- Not every tool supports every Tool Head tier. For example, the &6Chainsaw&r can only be crafted with a &7LV Tool Head&r.", @@ -3502,9 +3515,6 @@ "quests.tfg_tips.grappling_hook.title": "Grappling Hook", "quests.tfg_tips.grappling_hook.subtitle": "This is going to end poorly", "quests.tfg_tips.grappling_hook.desc": "By combining 2 pieces of &aRope Coil&r and a &bWrought Iron Pickaxe Head&r, you can create a &dGrappling Hook!&r An ideal tool for scaling big mountains, exploring large caves and traversing the world. It contains an &eupgrade system&r that allows you to combine and modify your &dHook&r to your leisure.", - "quests.tfg_tips.grapple_repair.title": "Grappling Hook Warnings", - "quests.tfg_tips.grapple_repair.subtitle": "READ ME, OR YOU MAY REGRET IT LATER!", - "quests.tfg_tips.grapple_repair.desc": "All your &dGrappling Hook&r &aupgrades&r are stored as NBT Data inside the item. This means trying to repair your hook using &canother&r Grappling Hook &l&cWILL destroy all your upgrades!&r\n\nInstead, you should place your &dGrappling Hook&r and some &bWrought Iron Dust&r in a &3Workbench&r to repair it.\n\nAlso, don't use your Grappling Hook when traveling between the Overworld and Beneath, it's rather deadly.", "quests.tfg_tips.grapple_upgrades.title": "Upgrading your Grappling Hook", "quests.tfg_tips.grapple_upgrades.subtitle": "Balanced around TFG, of course!", "quests.tfg_tips.grapple_upgrades.desc.1": "Upgrading your &dGrappling Hook&r consists of adding or removing items to it via the &3Workbench&r.&r\n\nTo see all the upgrades you can apply to your &dGrappling Hook&r, you can press the \"Usage\" key in &2EMI.&r\nEach of the custom recipes will contain text describing what changes are being applied.", @@ -3590,8 +3600,8 @@ "quests.tfg_tips.selfie.desc": "With your &bCamera&r open, you can press F5 to enable &bSelfie Mode&r, which as the name suggests, allows you to take selfies.", "quests.tfg_tips.camera_attachments.title": "Camera Attachments", "quests.tfg_tips.camera_attachments.subtitle": "Improve your Camera", - "quests.tfg_tips.camera_attachments.desc": "By interacting with the &dCamera&r while sneaking, you'll open the camera GUI. This not only allows you to place your desired &aFilm Roll&r, it allows you to attach addons to your camera with new functionalities.\n\n&dRedstone Lamp&r: Works as a flashlight, illuminating dark environments.\n&dSpyglass&r: Enables zooming, letting you take pictures of objects far away.", - "quests.tfg_tips.camera_attachments.task": "A Redstone Lamp or a Spyglass", + "quests.tfg_tips.camera_attachments.desc": "By interacting with the &dCamera&r while sneaking, you'll open the camera GUI. This not only allows you to place your desired &aFilm Roll&r, it allows you to attach addons to your camera with new functionalities.\n\n&dToggleable Light Source&r: Works as a flash bulb, illuminating dark environments.\n&dSpyglass&r: Enables zooming, letting you take pictures of objects far away.", + "quests.tfg_tips.camera_attachments.task": "A Toggleable Light Source or a Spyglass", "quests.tfg_tips.filters.title": "Color Filters", "quests.tfg_tips.filters.subtitle": "Changing the look of your photos.", "quests.tfg_tips.filters.desc": "Using a &aGlass Pane&r, you can apply a &dFilter&r to a picture. Simply open your camera GUI and assign it to the camera filter slot. With &dFilters&r you can change the overall color composition of your pictures. For instance, you can make a picture look extra cold by applying a &3Cyan&r or &bLight Blue&r filter to it.", @@ -3604,7 +3614,7 @@ "quests.tfg_tips.film_rolls.desc": "To begin taking pictures you'll need to craft one of two kinds of film roll: &0Black and White Film&r, and &dColored Film.&r", "quests.tfg_tips.developing_film.title": "Developing Films", "quests.tfg_tips.developing_film.subtitle": "Pretend you're a printer", - "quests.tfg_tips.developing_film.desc": "Once you've taken your pictures you can begin &adevelopment&r by soaking the films in &bWater.&r Afterwards, you'll need to craft a &dLightroom&r.\n\nThe lightroom is used to develop film, needing a strong light source above the block, and the following four dyes: &3Cyan&r, &5Magenta&r, &eYellow&r and &0Black&r, known as CMYK.\n&0Black and White Film&r will only need &0Black Dye&r while &dColored Film&r will need the entire &3C&5M&eY&0K&r set.\n\nIf you fancy more interesting processing, you can work with the &cChromatic Process...&r", + "quests.tfg_tips.developing_film.desc": "Once you've taken your pictures you can begin &adevelopment&r by soaking the films in the appropriate &bDeveloper&r. Afterwards, you'll need to craft a &dLightroom&r.\n\nThe lightroom is used to develop film, needing a strong light source above the block, and the following four dyes: &3Cyan&r, &5Magenta&r, &eYellow&r and &0Black&r, known as CMYK.\n&0Black and White Film&r will only need &0Black Dye&r while &dColored Film&r will need the entire &3C&5M&eY&0K&r set.\n\nIf you fancy more interesting processing, you can work with the &cChromatic Process...&r", "quests.tfg_tips.photo.title": "Your first Photo", "quests.tfg_tips.photo.subtitle": "Congratulations!", "quests.tfg_tips.photo.desc": "You can do multiple things with it with your &dPhotograph.&r\n\nYou can &bCopy&r it by utilizing a blank sheet of &aPaper&r and the required &aDyes&r used to develop the original.\n\nYou can also &bStack&r pictures to keep them neatly organized in your inventory, check EMI to know how to.\n\nYou can also artificially &cage&r a picture by applying &6Brown Dye&r to it, making it look like it has gone through the years.", @@ -3668,7 +3678,7 @@ "quests.tfg_tips.aircraft_upgrades.desc": "&2Immersive Aircraft&r comes with &aAircraft Upgrades&r, which you can install in your to improve your aircraft stats, such as velocity, takeoff speed, fuel consumption, etc. There are two types of upgrades: &bregular&r and &dtiered.&r\n\nThe ones in this quest are the &bregular&r upgrades, think you can get them all?", "quests.tfg_tips.steam_upgrades.title": "Aircraft Upgrades: Steam", "quests.tfg_tips.steam_upgrades.subtitle": "Immersive Aircraft meets GregTech Tiering!", - "quests.tfg_tips.steam_upgrades.desc": "The second kind of aircraft upgrades are the &dTiered Upgrades.&r These are made to match the &3GregTech&r tiering system, going from &8Steam&r up to &5EV.&r\n\nSteam upgrades are the easiest and earliest to craft, requiring at the very least knowledge of &bBlack Steel.&r\n\n&dSteam-powered Aircraft Engines&r are used in the creation of more sophisticated aircrafts such as the &eBiplane&r and the &cWarship.&r", + "quests.tfg_tips.steam_upgrades.desc": "The second kind of aircraft upgrades are the &dTiered Upgrades.&r These are made to match the &3GregTech&r tiering system, going from &7Steam&r up to &5EV.&r\n\nSteam upgrades are the easiest and earliest to craft, requiring at the very least knowledge of &bBlack Steel.&r\n\n&dSteam-powered Aircraft Engines&r are used in the creation of more sophisticated aircrafts such as the &eBiplane&r and the &cWarship.&r", "quests.tfg_tips.steam_upgrades.task": "Any steam tier aircraft upgrade", "quests.tfg_tips.lv_upgrades.title": "Aircraft Upgrades: LV", "quests.tfg_tips.lv_upgrades.subtitle": "Red and Blue, certainly not clashing.", @@ -3798,7 +3808,7 @@ "quests.tfg_tips.beehive.desc": "To begin your journey as a beekeeper, you'll need both a &bBeehive&r and a &aBeehive Frame.&r\nUnlike regular Minecraft, hives do not spawn naturally, instead bees only spawn in player-made &bBeehives&r with frames populated by &eQueens.&r The chance for a queen to populate your frame is tied to RNG, but you can increase your odds by placing &dflowers&r around the hive.\n\nOnce your frames is populated, it'll begin spawning bees which will produce honey.", "quests.tfg_tips.not_the_bees.title": "Beekeeper Armor", "quests.tfg_tips.not_the_bees.subtitle": "NOT THE BEES!", - "quests.tfg_tips.not_the_bees.desc": "Bees don't like it when people disrupt them and harvest their precious honey and wax. There are three ways to do it safely:\n\n* &dHarvesting at night time&r\n* &dUsing a campfire&r\n* &dUsing Beekeeper Armor&r", + "quests.tfg_tips.not_the_bees.desc": "Bees don't like it when people disrupt them and harvest their precious honey and wax or move their frames around. There are three ways to do it safely:\n\n* &dHarvesting at night time&r\n* &dUsing a campfire&r\n* &dUsing Beekeeper Armor&r", "quests.tfg_tips.not_the_bees.task": "I'll use either the Campfire or wait for Nightfall.", "quests.tfg_tips.honey.title": "Honey", "quests.tfg_tips.honey.subtitle": "Oh bother...", @@ -3956,7 +3966,7 @@ "quests.tfg_tips.tools_tips.subtitle": "How to tighten and loosen 101.", "quests.tfg_tips.tools_tips.tools.title": "Tools", "quests.tfg_tips.tools_tips.tools.subtitle": "It's all a hammer anyways.", - "quests.tfg_tips.tools_tips.tools.desc": "The only thing seperating man from animal is our use of &l&bTools&r&r. &8&oExcept for apes, monkeys, dolphins, crows, otters, octo.......&r&r Use your skills and tools to make the most of this world, and &5save yourself&r some effort.", + "quests.tfg_tips.tools_tips.tools.desc": "The only thing seperating man from animal is our use of &l&bTools&r&r. &7&oExcept for apes, monkeys, dolphins, crows, otters, octo.......&r&r Use your skills and tools to make the most of this world, and &5save yourself&r some effort.", "quests.tfg_tips.tools_tips.seed_oil.title": "Lamp Fuel: Seed Oil", "quests.tfg_tips.tools_tips.seed_oil.subtitle": "Smells good when it burns.", "quests.tfg_tips.tools_tips.seed_oil.desc": "&dSeed Oil&r will last you an impressive &c72&r days.", diff --git a/kubejs/assets/tfg/lang/ja_jp.json b/kubejs/assets/tfg/lang/ja_jp.json index 2774441f1..9833c29f1 100644 --- a/kubejs/assets/tfg/lang/ja_jp.json +++ b/kubejs/assets/tfg/lang/ja_jp.json @@ -35,9 +35,9 @@ "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", + "block.tfg.piglin_disguise": "ピグγƒͺンγε€‰θ£…γƒžγ‚Ήγ‚―", + "block.tfg.piglin_disguise_block": "ピグγƒͺンγε€‰θ£…γƒžγ‚Ήγ‚―", + "block.tfg.dry_ice": "ドラむをむス", "block.tfg.decorative_vase.black": "Black Decorative Vase", "block.tfg.decorative_vase.gray": "Gray Decorative Vase", "block.tfg.decorative_vase.light_gray": "Light Gray Decorative Vase", @@ -87,70 +87,70 @@ "block.tfg.decorative_vase.generated.orange": "Orange Loot Vase", "block.tfg.decorative_vase.generated.red": "Red Loot Vase", "block.tfg.decorative_vase.generated.brown": "Brown Loot Vase", - "block.tfg.light_concrete_support": "Light Concreteγζ’", - "block.tfg.light_concrete_support_horizontal": "Light Concreteγζ’", - "block.tfg.dark_concrete_support": "Dark Concreteγζ’", - "block.tfg.dark_concrete_support_horizontal": "Dark Concreteγζ’", - "block.tfg.reinforced_light_concrete_support": "Reinforced Light Concreteγζ’", - "block.tfg.reinforced_light_concrete_support_horizontal": "Reinforced Light Concreteγζ’", - "block.tfg.reinforced_dark_concrete_support": "Reinforced Dark Concreteγζ’", - "block.tfg.reinforced_dark_concrete_support_horizontal": "Reinforced Dark Concreteγζ’", - "block.tfg.rebar_support": "Rebarγζ’", - "block.tfg.rebar_support_horizontal": "Rebarγζ’", - "block.tfg.steel_support": "Steelγζ’", - "block.tfg.steel_support_horizontal": "Steelγζ’", - "block.tfg.gabbro_support_horizontal": "Gabbroγζ’", - "block.tfg.gabbro_support": "Gabbroγζ’", - "block.tfg.shale_support_horizontal": "Shaleγζ’", - "block.tfg.shale_support": "Shaleγζ’", - "block.tfg.claystone_support_horizontal": "Claystoneγζ’", - "block.tfg.claystone_support": "Claystoneγζ’", - "block.tfg.limestone_support_horizontal": "Limestoneγζ’", - "block.tfg.limestone_support": "Limestoneγζ’", - "block.tfg.conglomerate_support_horizontal": "Conglomerateγζ’", - "block.tfg.conglomerate_support": "Conglomerateγζ’", - "block.tfg.dolomite_support_horizontal": "Dolomiteγζ’", - "block.tfg.dolomite_support": "Dolomiteγζ’", + "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": "Chalkγζ’", - "block.tfg.chalk_support": "Chalkγζ’", - "block.tfg.rhyolite_support_horizontal": "Rhyoliteγζ’", - "block.tfg.rhyolite_support": "Rhyoliteγζ’", - "block.tfg.dacite_support_horizontal": "Daciteγζ’", - "block.tfg.dacite_support": "Daciteγζ’", - "block.tfg.quartzite_support_horizontal": "Quartziteγζ’", - "block.tfg.quartzite_support": "Quartziteγζ’", - "block.tfg.slate_support_horizontal": "Slateγζ’", - "block.tfg.slate_support": "Slateγζ’", - "block.tfg.phyllite_support_horizontal": "Phylliteγζ’", - "block.tfg.phyllite_support": "Phylliteγζ’", - "block.tfg.schist_support_horizontal": "Schistγζ’", - "block.tfg.schist_support": "Schistγζ’", - "block.tfg.gneiss_support_horizontal": "Gneissγζ’", - "block.tfg.gneiss_support": "Gneissγζ’", - "block.tfg.marble_support_horizontal": "Marbleγζ’", - "block.tfg.marble_support": "Marbleγζ’", - "block.tfg.basalt_support_horizontal": "Basaltγζ’", - "block.tfg.basalt_support": "Basaltγζ’", - "block.tfg.diorite_support_horizontal": "Dioriteγζ’", - "block.tfg.diorite_support": "Dioriteγζ’", - "block.tfg.andesite_support_horizontal": "Andesiteγζ’", - "block.tfg.andesite_support": "Andesiteγζ’", - "block.tfg.granite_support_horizontal": "Graniteγζ’", - "block.tfg.granite_support": "Graniteγζ’", + "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.migmatite_support_horizontal": "混成岩γζ’", + "block.tfg.migmatite_support": "混成岩γζ’", "block.tfg.travertine_support_horizontal": "鍾乳石γζ’", "block.tfg.travertine_support": "鍾乳石γζ’", - "block.tfg.glacian_support": "Glacianγζ’", - "block.tfg.glacian_support_horizontal": "Glacianγζ’", - "block.tfg.strophar_support": "Stropharγζ’", - "block.tfg.strophar_support_horizontal": "Stropharγζ’", - "block.tfg.aeronos_support": "Aeronosγζ’", - "block.tfg.aeronos_support_horizontal": "Aeronosγζ’", + "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.deepslate_stairs": "混成岩γιšŽζ΅", "block.tfg.rock.deepslate_slab": "混成岩γγƒγƒΌγƒ•ブロック", @@ -172,6 +172,7 @@ "block.tfg.rock.gravel_deepslate": "混成岩γη ‚εˆ©", "block.tfg.spike.deepslate_spike": "混成岩γγ€γ‚‰γ‚‰ηŸ³", "block.tfg.loose.deepslate": "混成岩γε°ηŸ³", + "block.tfg.rock.aqueduct_deepslate": "混成岩γη”¨ζ°΄θ·―", "block.tfg.rock.hardened_blackstone": "瑬い輝岩", "block.tfg.rock.cobble_blackstone_stairs": "輝岩γδΈΈηŸ³γιšŽζ΅", "block.tfg.rock.cobble_blackstone_slab": "輝岩γδΈΈηŸ³γγƒγƒΌγƒ•ブロック", @@ -213,6 +214,7 @@ "block.tfg.rock.gravel_dripstone": "鍾乳石γη ‚εˆ©", "block.tfg.spike.dripstone_spike": "鍾乳石γγ€γ‚‰γ‚‰ηŸ³", "block.tfg.loose.dripstone": "鍾乳石γε°ηŸ³", + "block.tfg.rock.aqueduct_dripstone": "鍾乳石γη”¨ζ°΄θ·―", "block.tfg.rock.crackrack_stairs": "角斑岩γιšŽζ΅", "block.tfg.rock.crackrack_slab": "角斑岩γγƒγƒΌγƒ•ブロック", "block.tfg.rock.crackrack_wall": "角斑岩γε‘€", @@ -237,6 +239,7 @@ "block.tfg.rock.mossy_bricks_nether_wall": "θ‹”γ‚€γ—γŸθ§’ζ–‘ε²©γγƒ¬γƒ³γ‚¬γε‘€", "block.tfg.rock.gravel_crackrack": "角斑岩γη ‚εˆ©", "block.tfg.loose.crackrack": "角斑岩γε°ηŸ³", + "block.tfg.rock.aqueduct_nether": "角斑岩γη”¨ζ°΄θ·―", "block.tfg.rock.hardened_moon_stone": "η‘¬γ„ζ–œι•·ε²©", "block.tfg.rock.moon_stone_wall": "ζ–œι•·ε²©γε‘€", "block.tfg.rock.cobble_moon_stone_wall": "ζ–œι•·ε²©γδΈΈηŸ³γε‘€", @@ -252,6 +255,7 @@ "block.tfg.rock.gravel_moon": "ζ–œι•·ε²©γη ‚εˆ©", "block.tfg.spike.moon_stone_spike": "ζ–œι•·ε²©γγ€γ‚‰γ‚‰ηŸ³", "block.tfg.loose.moon_stone": "ζ–œι•·ε²©γε°ηŸ³", + "block.tfg.rock.aqueduct_moon_stone": "ζ–œι•·ε²©γη”¨ζ°΄θ·―", "block.tfg.rock.hardened_moon_deepslate": "η‘¬γ„γƒŽγƒΌγƒ©γ‚€γƒˆ", "block.tfg.rock.moon_deepslate_stairs": "γƒŽγƒΌγƒ©γ‚€γƒˆγιšŽζ΅", "block.tfg.rock.moon_deepslate_slab": "γƒŽγƒΌγƒ©γ‚€γƒˆγγƒγƒΌγƒ•ブロック", @@ -284,6 +288,7 @@ "block.tfg.rock.gravel_moon_deepslate": "γƒŽγƒΌγƒ©γ‚€γƒˆγη ‚εˆ©", "block.tfg.spike.moon_deepslate_spike": "γƒŽγƒΌγƒ©γ‚€γƒˆγγ€γ‚‰γ‚‰ηŸ³", "block.tfg.loose.moon_deepslate": "γƒŽγƒΌγƒ©γ‚€γƒˆγε°ηŸ³", + "block.tfg.rock.aqueduct_moon_deepslate": "γƒŽγƒΌγƒ©γ‚€γƒˆγη”¨ζ°΄θ·―", "block.tfg.rock.hardened_mars_stone": "η‘¬γ„η²˜εœŸθ³ͺ岩γ", "block.tfg.rock.mars_stone_wall": "粘土θ³ͺ岩γε‘€", "block.tfg.rock.cobble_mars_stone_wall": "粘土θ³ͺ岩γδΈΈηŸ³γε‘€", @@ -301,6 +306,7 @@ "block.tfg.rock.gravel_mars": "粘土θ³ͺ岩γη ‚εˆ©", "block.tfg.spike.mars_stone_spike": "粘土θ³ͺ岩γγ€γ‚‰γ‚‰ηŸ³", "block.tfg.loose.mars_stone": "粘土θ³ͺ岩γε°ηŸ³", + "block.tfg.rock.aqueduct_mars_stone": "粘土θ³ͺ岩γη”¨ζ°΄θ·―", "block.tfg.rock.hardened_venus_stone": "瑬い粗青岩", "block.tfg.rock.venus_stone_wall": "粗青岩γε‘€", "block.tfg.rock.cobble_venus_stone_wall": "粗青岩γδΈΈηŸ³γε‘€", @@ -318,6 +324,7 @@ "block.tfg.rock.gravel_venus": "粗青岩γη ‚εˆ©", "block.tfg.spike.venus_stone_spike": "粗青岩γγ€γ‚‰γ‚‰ηŸ³", "block.tfg.loose.venus_stone": "粗青岩γε°ηŸ³", + "block.tfg.rock.aqueduct_venus_stone": "粗青岩γη”¨ζ°΄θ·―", "block.tfg.rock.hardened_mercury_stone": "η‘¬γ„γ‚³γƒžγƒγ‚’γ‚€γƒˆ", "block.tfg.rock.mercury_stone_wall": "γ‚³γƒžγƒγ‚’γ‚€γƒˆγε‘€", "block.tfg.rock.cobble_mercury_stone_wall": "γ‚³γƒžγƒγ‚’γ‚€γƒˆγδΈΈηŸ³γε‘€", @@ -335,6 +342,7 @@ "block.tfg.rock.gravel_mercury": "γ‚³γƒžγƒγ‚’γ‚€γƒˆγη ‚εˆ©", "block.tfg.spike.mercury_stone_spike": "γ‚³γƒžγƒγ‚’γ‚€γƒˆγγ€γ‚‰γ‚‰ηŸ³", "block.tfg.loose.mercury_stone": "γ‚³γƒžγƒγ‚’γ‚€γƒˆγε°ηŸ³", + "block.tfg.rock.aqueduct_mercury_stone": "γ‚³γƒžγƒγ‚’γ‚€γƒˆγη”¨ζ°΄θ·―", "block.tfg.rock.hardened_glacio_stone": "η‘¬γ„ιŸΏε²©γ", "block.tfg.rock.glacio_stone_wall": "響岩γε‘€", "block.tfg.rock.cobble_glacio_stone_wall": "響岩γδΈΈηŸ³γε‘€", @@ -352,6 +360,7 @@ "block.tfg.rock.gravel_glacio": "響岩γη ‚εˆ©", "block.tfg.spike.glacio_stone_spike": "響岩γγ€γ‚‰γ‚‰ηŸ³", "block.tfg.loose.glacio_stone": "響岩γε°ηŸ³", + "block.tfg.rock.aqueduct_glacio_stone": "響岩γη”¨ζ°΄θ·―", "block.tfg.rock.hardened_permafrost": "η‘¬γ„ζ°ΈδΉ…ε‡εœŸ", "block.tfg.rock.permafrost_stairs": "ζ°ΈδΉ…ε‡εœŸγιšŽζ΅", "block.tfg.rock.permafrost_slab": "ζ°ΈδΉ…ε‡εœŸγγƒγƒΌγƒ•ブロック", @@ -372,6 +381,7 @@ "block.tfg.rock.gravel_permafrost": "ζ°ΈδΉ…ε‡εœŸγη ‚εˆ©", "block.tfg.spike.permafrost_spike": "ζ°ΈδΉ…ε‡εœŸγγ€γ‚‰γ‚‰ηŸ³", "block.tfg.loose.permafrost": "ζ°ΈδΉ…ε‡εœŸγε°ηŸ³", + "block.tfg.rock.aqueduct_permafrost": "ζ°ΈδΉ…ε‡εœŸγη”¨ζ°΄θ·―", "block.tfg.rock.hardened_red_granite": "η‘¬γ„θ΅€θ‰²θŠ±ε΄—ε²©", "block.tfg.rock.red_granite_stairs": "θ΅€θ‰²θŠ±ε΄—ε²©γιšŽζ΅", "block.tfg.rock.red_granite_slab": "θ΅€θ‰²θŠ±ε΄—ε²©γγƒγƒΌγƒ•ブロック", @@ -397,59 +407,63 @@ "block.tfg.rock.gravel_red_granite": "θ΅€θ‰²θŠ±ε΄—ε²©γη ‚εˆ©", "block.tfg.loose.red_granite": "θ΅€θ‰²θŠ±ε΄—ε²©γε°ηŸ³", "block.tfg.spike.red_granite_spike": "θ΅€θ‰²θŠ±ε΄—ε²©γγ€γ‚‰γ‚‰ηŸ³", + "block.tfg.rock.aqueduct_red_granite": "θ΅€θ‰²θŠ±ε΄—ε²©γη”¨ζ°΄θ·―", "block.tfg.rock.stone_wall": "石γε‘€", "block.tfg.rock.smooth_stone_stairs": "η£¨γ‹γ‚ŒγŸηŸ³γιšŽζ΅", "block.tfg.rock.smooth_stone_wall": "η£¨γ‹γ‚ŒγŸηŸ³γε‘€", "block.tfg.rock.cracked_bricks_stone_stairs": "γ²γ³ε‰²γ‚ŒγŸηŸ³γγƒ¬γƒ³γ‚¬γιšŽζ΅", "block.tfg.rock.cracked_bricks_stone_slab": "γ²γ³ε‰²γ‚ŒγŸηŸ³γγƒ¬γƒ³γ‚¬γγƒγƒΌγƒ•ブロック", "block.tfg.rock.cracked_bricks_stone_wall": "γ²γ³ε‰²γ‚ŒγŸηŸ³γγƒ¬γƒ³γ‚¬γε‘€", + "block.tfg.rock.aqueduct_stone": "ηŸ³γƒ¬γƒ³γ‚¬γη”¨ζ°΄θ·―", "block.tfg.rock.smooth_red_sandstone_wall": "滑らかγͺ血鉄θ³ͺγη ‚岩γε‘€", "block.tfg.rock.cut_red_sandstone_wall": "η ”γŒγ‚ŒγŸθ΅€ι‰„θ³ͺγη ‚岩γε‘€", - "block.tfg.rock.raw.stromatolite": "Raw Stromatolite", - "block.tfg.rock.spike.stromatolite": "Stromatoliteγγ€γ‚‰γ‚‰ηŸ³", - "block.tfg.rock.raw.geyserite": "Raw Geyserite", - "block.tfg.rock.spike.geyserite": "Geyseriteγγ€γ‚‰γ‚‰ηŸ³", - "block.tfg.mushroom_roots": "Mushroom Roots", - "block.tfg.mushroom_sprouts": "Mushroom Sprouts", - "block.tfg.charred_log": "Charred Log", - "block.tfg.ash_pile": "Ash Pile", - "block.tfg.pile.white_sand": "White Sand", - "block.tfg.pile.black_sand": "Black Sand", - "block.tfg.pile.brown_sand": "Brown Sand", - "block.tfg.pile.red_sand": "Red Sand", - "block.tfg.pile.yellow_sand": "Yellow Sand", - "block.tfg.pile.green_sand": "Green Sand", - "block.tfg.pile.pink_sand": "Pink Sand", - "block.tfg.pile.moon_sand": "Lunar Sand", - "block.tfg.pile.mars_sand": "Argillite Sand", - "block.tfg.pile.mars_sand_covering": "Argillite Sand", - "block.tfg.pile.venus_sand": "Trachyte Sand", - "block.tfg.pile.venus_sand_covering": "Trachyte Sand", - "block.tfg.pile.Hematitic_sand": "血鉄θ³ͺγη ‚", - "block.tfg.pile.Hematitic_sand_covering": "血鉄θ³ͺγη ‚", + "block.tfg.rock.raw.stromatolite": "γ‚Ήγƒˆγƒ­γƒžγƒˆγƒ©γ‚€γƒˆ", + "block.tfg.rock.spike.stromatolite": "γ‚Ήγƒˆγƒ­γƒžγƒˆγƒ©γ‚€γƒˆγγ€γ‚‰γ‚‰ηŸ³", + "block.tfg.stromatolite_cluster_small": "ε°γ•γ„γ‚Ήγƒˆγƒ­γƒžγƒˆγƒ©γ‚€γƒˆγε‘Š", + "block.tfg.stromatolite_cluster_medium": "ε€§γγ„γ‚Ήγƒˆγƒ­γƒžγƒˆγƒ©γ‚€γƒˆγε‘Š", + "block.tfg.rock.raw.geyserite": "γ‚¬γ‚€γ‚Άγƒ©γ‚€γƒˆ", + "block.tfg.rock.spike.geyserite": "γ‚¬γ‚€γ‚Άγƒ©γ‚€γƒˆγγ€γ‚‰γ‚‰ηŸ³", + "block.tfg.mushroom_roots": "γ‚­γƒŽγ‚³γζ Ή", + "block.tfg.mushroom_sprouts": "γ‚­γƒŽγ‚³γθн", + "block.tfg.charred_log": "η„¦γ’γŸδΈΈε€ͺ", + "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.mars_sand_covering": "粘土θ³ͺ岩γη ‚", + "block.tfg.pile.venus_sand": "粗青岩γη ‚", + "block.tfg.pile.venus_sand_covering": "粗青岩γη ‚", + "block.tfg.pile.hematitic_sand": "血鉄θ³ͺγη ‚", + "block.tfg.pile.hematitic_sand_covering": "血鉄θ³ͺγη ‚", "block.tfg.lunar_roots": "ζœˆε…‰γγƒ©γ‚€γƒˆγƒ–ルーム", "block.tfg.lunar_sprouts": "ζœˆε…‰γγƒ©γ‚€γƒˆγ‚°γƒ©γ‚Ή", "block.tfg.lunar_chorus_plant": "γ‚³γƒΌγƒ©γ‚Ήγƒ—γƒ©γƒ³γƒˆ", "block.tfg.lunar_chorus_flower": "コーラスフラワー", - "block.tfg.glacian_log": "Glacian Stem", - "block.tfg.glacian_log_stripped": "Stripped Glacian Stem", - "block.tfg.glacian_wood": "Glacian Hyphae", - "block.tfg.glacian_wood_stripped": "Stripped Glacian Hyphae", - "block.tfg.glacian_leaves": "Glacian Lamella", - "block.tfg.glacian_leaves_fallen": "Small Glacian Lamella", - "block.tfg.marker.moon": "The Moon", - "block.tfg.marker.mars": "Mars", - "block.tfg.marker.venus": "Venus", - "block.tfg.marker.mercury": "Mercury", - "block.tfg.marker.glacio": "Europa", - "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": "Β§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.glacian_log": "グラシをンγεΉΉ", + "block.tfg.glacian_log_stripped": "葨ηšγ‚’ε‰₯いだグラシをンγεΉΉ", + "block.tfg.glacian_wood": "グラシをンγθŒη³Έ", + "block.tfg.glacian_wood_stripped": "葨ηšγ‚’ε‰₯いだグラシをンγθŒη³Έ", + "block.tfg.glacian_leaves": "グラシをンγγ²γ ", + "block.tfg.glacian_leaves_fallen": "グラシをンγγ²γ ", + "block.tfg.marker.moon": "月", + "block.tfg.marker.mars": "火星", + "block.tfg.marker.venus": "ι‡‘ζ˜Ÿ", + "block.tfg.marker.mercury": "水星", + "block.tfg.marker.glacio": "エウロパ", + "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": "Β§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.electric_greenhouse": "ι›»ζ°—ζΈ©ε€", "block.tfg.lv_food_processor": "εŸΊζœ¬εž‹θ‡ͺε‹•θͺΏη†ζ©Ÿ", "block.tfg.mv_food_processor": "Β§bη™Ίε±•εž‹θ‡ͺε‹•θͺΏη†ζ©ŸΒ§r", @@ -480,63 +494,65 @@ "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.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.mars_path": "Martian Path", - "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.fluid.semiheavy_ammoniacal_water": "γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚ŠγεŠι‡ζ°΄", + "block.tfg.fluid.sulfur_fumes": "Dense Sulfuric Fumes", + "block.tfg.fluid.geyser_slurry": "Super Heated Slurry", + "block.tfg.grass.mars_dirt": "火星γεœŸ", + "block.tfg.grass.mars_clay_dirt": "火星γη²˜εœŸ", + "block.tfg.grass.mars_farmland": "火星γθ€•εœ°", + "block.tfg.grass.mars_path": "火星γι“", + "block.tfg.grass.amber_mycelium": "η₯珀色γθŒη³Έ", + "block.tfg.grass.amber_clay_mycelium": "η₯珀色γθŒη³Έη²˜εœŸ", + "block.tfg.grass.amber_kaolin_mycelium": "η₯珀色γθŒη³Έγ‚«γ‚ͺγƒͺγƒ³η²˜εœŸ", + "block.tfg.grass.rusticus_mycelium": "鉛丹色γθŒη³Έ", + "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": "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.mars_ice": "Semiheavy Ammoniacal Ice", - "block.tfg.mars_icicle": "Semiheavy Ammoniacal Icicle", - "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.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.mars_ice": "γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚ŠγεŠι‡ζ°΄γζ°·", + "block.tfg.mars_icicle": "γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚ŠγεŠι‡ζ°΄γγ€γ‚‰γ‚‰", + "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": "ζž―γ‚ŒγŸγƒ’γƒžγƒ―γƒͺ", @@ -546,128 +562,134 @@ "block.tfg.flax": "亜麻", "block.tfg.flax_wild": "ι‡Žη”ŸγδΊœιΊ»", "block.tfg.flax_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γη²‰-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", - "block.tfg.casings.machine_casing_ultraviolet": "Β§dUltraviolet Β§fMachine Casing", + "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_red_solar_panel": "η²Ύι‹­εž‹γ‚½γƒΌγƒ©γƒΌγƒ‘γƒγƒ«ε€–θ£…", + "block.tfg.machine_casing_aluminium_plated_steel": "γ‚’γƒ«γƒŸγƒ‘γƒƒγ‚­γ‚ΉγƒγƒΌγƒ«θ£½γƒžγ‚·γƒ³ε€–θ£…", + "block.tfg.casings.machine_casing_ultraviolet": "Β§dγ‚¦γƒ«γƒˆγƒ©γƒ΄γ‚‘γ‚€γ‚ͺγƒ¬γƒƒγƒˆΒ§fγƒžγ‚·γƒ³ε€–θ£…", "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.casings.machine_casing_ostrum_carbon": "Ostrum Machine Casing", - "block.tfg.casings.heat_pipe_casing": "Heat Pipe Casing", - "block.tfg.glacian_wool_frame": "Framed Glacian Wool", - "block.tfg.aes_insulation_frame": "Framed AES Insulation", - "block.tfg.sand.fluorapatite.blue": "Blue Fluorapatite Sand", - "block.tfg.sandstone.raw.fluorapatite.blue": "Raw Blue Fluorapatite砂岩", - "block.tfg.sandstone.wall.raw.fluorapatite.blue": "Raw Blue Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.raw.fluorapatite.blue": "Raw Blue Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.raw.fluorapatite.blue": "Raw Blue Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.smooth.fluorapatite.blue": "滑らかγͺBlue Fluorapatite砂岩", - "block.tfg.sandstone.wall.smooth.fluorapatite.blue": "滑らかγͺBlue Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.smooth.fluorapatite.blue": "滑らかγͺBlue Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.smooth.fluorapatite.blue": "滑らかγͺBlue Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.fluorapatite.blue": "η ”γŒγ‚ŒγŸBlue Fluorapatite砂岩", - "block.tfg.sandstone.smooth.chiseled.fluorapatite.blue": "樑様ε…₯γ‚ŠγBlue Fluorapatite砂岩", - "block.tfg.sand.fluorapatite.green": "Green Fluorapatite Sand", - "block.tfg.sandstone.raw.fluorapatite.green": "Raw Green Fluorapatite砂岩", - "block.tfg.sandstone.wall.raw.fluorapatite.green": "Raw Green Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.raw.fluorapatite.green": "Raw Green Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.raw.fluorapatite.green": "Raw Green Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.smooth.fluorapatite.green": "滑らかγͺGreen Fluorapatite砂岩", - "block.tfg.sandstone.wall.smooth.fluorapatite.green": "滑らかγͺGreen Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.smooth.fluorapatite.green": "滑らかγͺGreen Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.smooth.fluorapatite.green": "滑らかγͺGreen Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.fluorapatite.green": "η ”γŒγ‚ŒγŸGreen Fluorapatite砂岩", - "block.tfg.sandstone.smooth.chiseled.fluorapatite.green": "樑様ε…₯γ‚ŠγGreen Fluorapatite砂岩", - "block.tfg.sand.fluorapatite.brown": "Brown Fluorapatite Sand", - "block.tfg.sandstone.raw.fluorapatite.brown": "Raw Brown Fluorapatite砂岩", - "block.tfg.sandstone.wall.raw.fluorapatite.brown": "Raw Brown Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.raw.fluorapatite.brown": "Raw Brown Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.raw.fluorapatite.brown": "Raw Brown Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.smooth.fluorapatite.brown": "滑らかγͺBrown Fluorapatite砂岩", - "block.tfg.sandstone.wall.smooth.fluorapatite.brown": "滑らかγͺBrown Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.smooth.fluorapatite.brown": "滑らかγͺBrown Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.smooth.fluorapatite.brown": "滑らかγͺBrown Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.fluorapatite.brown": "η ”γŒγ‚ŒγŸBrown Fluorapatite砂岩", - "block.tfg.sandstone.smooth.chiseled.fluorapatite.brown": "樑様ε…₯γ‚ŠγBrown Fluorapatite砂岩", - "block.tfg.sand.fluorapatite.orange": "Orange Fluorapatite Sand", - "block.tfg.sandstone.raw.fluorapatite.orange": "Raw Orange Fluorapatite砂岩", - "block.tfg.sandstone.wall.raw.fluorapatite.orange": "Raw Orange Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.raw.fluorapatite.orange": "Raw Orange Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.raw.fluorapatite.orange": "Raw Orange Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.smooth.fluorapatite.orange": "滑らかγͺOrange Fluorapatite砂岩", - "block.tfg.sandstone.wall.smooth.fluorapatite.orange": "滑らかγͺOrange Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.smooth.fluorapatite.orange": "滑らかγͺOrange Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.smooth.fluorapatite.orange": "滑らかγͺOrange Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.fluorapatite.orange": "η ”γŒγ‚ŒγŸOrange Fluorapatite砂岩", - "block.tfg.sandstone.smooth.chiseled.fluorapatite.orange": "樑様ε…₯γ‚ŠγOrange Fluorapatite砂岩", - "block.tfg.sand.fluorapatite.white": "White Fluorapatite Sand", - "block.tfg.sandstone.raw.fluorapatite.white": "Raw White Fluorapatite砂岩", - "block.tfg.sandstone.wall.raw.fluorapatite.white": "Raw White Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.raw.fluorapatite.white": "Raw White Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.raw.fluorapatite.white": "Raw White Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.smooth.fluorapatite.white": "滑らかγͺWhite Fluorapatite砂岩", - "block.tfg.sandstone.wall.smooth.fluorapatite.white": "滑らかγͺWhite Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.smooth.fluorapatite.white": "滑らかγͺWhite Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.smooth.fluorapatite.white": "滑らかγͺWhite Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.fluorapatite.white": "η ”γŒγ‚ŒγŸWhite Fluorapatite砂岩", - "block.tfg.sandstone.smooth.chiseled.fluorapatite.white": "樑様ε…₯γ‚ŠγWhite Fluorapatite砂岩", - "block.tfg.sand.fluorapatite.yellow": "Yellow Fluorapatite Sand", - "block.tfg.sandstone.raw.fluorapatite.yellow": "Raw Yellow Fluorapatite砂岩", - "block.tfg.sandstone.wall.raw.fluorapatite.yellow": "Raw Yellow Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.raw.fluorapatite.yellow": "Raw Yellow Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.raw.fluorapatite.yellow": "Raw Yellow Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.smooth.fluorapatite.yellow": "滑らかγͺYellow Fluorapatite砂岩", - "block.tfg.sandstone.wall.smooth.fluorapatite.yellow": "滑らかγͺYellow Fluorapatite砂岩γε‘€", - "block.tfg.sandstone.slab.smooth.fluorapatite.yellow": "滑らかγͺYellow Fluorapatite砂岩γγƒγƒΌγƒ•ブロック", - "block.tfg.sandstone.stairs.smooth.fluorapatite.yellow": "滑らかγͺYellow Fluorapatite砂岩γιšŽζ΅", - "block.tfg.sandstone.fluorapatite.yellow": "η ”γŒγ‚ŒγŸYellow Fluorapatite砂岩", - "block.tfg.sandstone.smooth.chiseled.fluorapatite.yellow": "樑様ε…₯γ‚ŠγYellow Fluorapatite砂岩", - "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", - "block.tfg.titanium_concrete": "Titanium-Rebar Concrete", - "block.tfg.polished_titanium_concrete": "η£¨γ‹γ‚ŒγŸTitanium-Rebar Concrete", - "block.tfg.titanium_concrete_tile": "Titanium-Rebar Concreteタむル", - "block.tfg.titanium_concrete_tile_small": "Small Titanium-Rebar Concreteタむル", - "block.tfg.titanium_concrete_bricks": "Titanium-Rebar Concreteγγƒ¬γƒ³γ‚¬", - "block.tfg.titanium_concrete_bricks_small": "Small Titanium-Rebar Concreteγγƒ¬γƒ³γ‚¬", - "block.tfg.titanium_concrete_bricks_square": "Square Titanium-Rebar Concreteγγƒ¬γƒ³γ‚¬", - "block.tfg.nuclear_turbine": "Nuclear Steam Turbine", - "block.tfg.evaporation_tower": "Evaporation Tower", + "block.tfg.casings.machine_casing_ostrum_carbon": "γ‚ͺγ‚Ήγƒˆγƒ©γƒ θ£½γƒžγ‚·γƒ³ε€–θ£…", + "block.tfg.casings.heat_pipe_casing": "γƒ’γƒΌγƒˆγƒ‘γ‚€γƒ—ε€–θ£…", + "block.tfg.glacian_wool_frame": "ζ°·ε‘ŠηΎŠζ―›γθ€η†±γƒ•レーム", + "block.tfg.aes_insulation_frame": "AES断熱材γθ€η†±γƒ•レーム", + "block.tfg.machine_casing_power_casing": "Insulated Power Casing", + "block.tfg.active_power_transformer": "Active Energy Transformer", + "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.titanium_concrete": "チタン鉄筋コンクγƒͺγƒΌγƒˆ", + "block.tfg.polished_titanium_concrete": "η£¨γ‹γ‚ŒγŸγƒγ‚Ώγƒ³ι‰„η­‹γ‚³γƒ³γ‚―γƒͺγƒΌγƒˆ", + "block.tfg.titanium_concrete_tile": "チタン鉄筋コンクγƒͺγƒΌγƒˆγ‚Ώγ‚€γƒ«", + "block.tfg.titanium_concrete_tile_small": "チタン鉄筋コンクγƒͺγƒΌγƒˆε°γ‚Ώγ‚€γƒ«", + "block.tfg.titanium_concrete_bricks": "チタン鉄筋コンクγƒͺγƒΌγƒˆγγƒ¬γƒ³γ‚¬", + "block.tfg.titanium_concrete_bricks_small": "チタン鉄筋コンクγƒͺγƒΌγƒˆγε°γƒ¬γƒ³γ‚¬", + "block.tfg.titanium_concrete_bricks_square": "チタン鉄筋コンクγƒͺγƒΌγƒˆγε€§γƒ¬γƒ³γ‚¬", + "block.tfg.nuclear_turbine": "εŽŸε­εŠ›θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³", + "block.tfg.evaporation_tower": "θ’Έη™Ίε‘”", "block.tfg.cooling_tower": "Nuclear Cooling Tower", + "block.tfg.smr_generator": "Small Modular Turbine", + "block.tfg.casings.machine_casing_desh_ptfe": "Radiation-Safe Desh Casing", "block.tfg.growth_monitor": "Growth Monitor", "block.tfg.sample_rack": "Sample Rack", "block.tfg.casings.machine_casing_sterilizing_pipes": "Sterilizing Pipes", - "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.sulfur_fumes": "Sulfur Fumes", - "fluid.tfg.super_heated_slurry": "Super Heated Slurry", + "block.tfg.moderate_core": "γƒ’γƒ‡γƒ¬γƒΌγƒˆγ‚³γ‚’", + "block.tfg.impure_moderate_core": "不純γͺγƒ’γƒ‡γƒ¬γƒΌγƒˆγ‚³γ‚’", + "block.tfg.moderate_core_frame": "γƒ’γƒ‡γƒ¬γƒΌγƒˆγ‚³γ‚’γƒ•γƒ¬γƒΌγƒ ", + "block.tfg.impure_moderate_core_frame": "不純γͺγƒ’γƒ‡γƒ¬γƒΌγƒˆγ‚³γ‚’γƒ•γƒ¬γƒΌγƒ ", + "fluid.tfg.heavy_ammoniacal_water": "γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚Šγι‡ζ°΄", + "fluid.tfg.semiheavy_ammoniacal_water": "γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚ŠγεŠι‡ζ°΄", + "fluid.tfg.sulfur_fumes": "Dense Sulfuric Fumes", + "fluid.tfg.geyser_slurry": "Super Heated Slurry", + "fluid.tfg.cryogenized_fluix": "θΆ…δ½ŽζΈ©ζΆ²εŒ–γƒ•γƒ«γƒΌγ‚·γƒ₯", "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.speed_pill": "δΏŠζ•γδΈΈθ–¬", "item.tfg.water_breathing_pill": "水中呼吸γδΈΈθ–¬", "item.tfg.weakness_pill": "εΌ±δ½“εŒ–γδΈΈθ–¬", - "item.tfg.antipoison_tablet": "θ§£ζ―’γιŒ ε‰€", + "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.speed_tablet": "δΏŠζ•γιŒ ε‰€", "item.tfg.water_breathing_tablet": "水中呼吸γιŒ ε‰€", "item.tfg.weakness_tablet": "εΌ±δ½“εŒ–γιŒ ε‰€", "item.tfg.absorption_salvo": "θ‘ζ’ƒεΈεŽγθ»Ÿθ†", @@ -676,6 +698,8 @@ "item.tfg.invisibility_salvo": "ι€ζ˜ŽεŒ–γθ»Ÿθ†", "item.tfg.luck_salvo": "幸運γθ»Ÿθ†", "item.tfg.resistance_salvo": "耐性γθ»Ÿθ†", + "item.tfg.paracetamol": "γ‚’γ‚»γƒˆγ‚’γƒŸγƒŽγƒ•γ‚§γƒ³", + "item.tfg.rad_away_pill": "RadAwayβ„’ιŒ ", "item.tfg.paraffin_wax": "パラフィンワックス", "item.tfg.flint_arrow_head": "η«ζ‰“ηŸ³γηŸ’γ˜γ‚Š", "item.tfg.fletching": "矒羽根", @@ -696,16 +720,17 @@ "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": "Unfired Chalk Stick", - "item.tfg.armor_stand_arms": "Armor Stand with Arms", - "item.tfg.flint_club_head": "Flint Club Head", + "item.tfg.unfired_chalk": "チョークγη΄ δ½“", + "item.tfg.armor_stand_arms": "θ…•δ»˜γι˜²ε…·η«‹γ¦", + "item.tfg.flint_club_head": "η«ζ‰“ηŸ³γζ£ζ£’γι ­", "item.tfg.unfinished_electron_tube": "ζœͺεŒζˆγι›»ε­η‘", "item.tfg.unfinished_vacuum_tube": "ζœͺεŒζˆγηœŸη©Ίη‘", "item.tfg.unfinished_basic_electronic_circuit": "ζœͺεŒζˆγεŸΊζœ¬εž‹ι›»ε­ε›žθ·―", "item.tfg.unfinished_good_electronic_circuit": "ζœͺεŒζˆγζ”Ήθ‰―εž‹ι›»ε­ε›žθ·―", - "item.tfg.unfinished_inscriber_accumulation_press": "Unfinished Inscriber Accumulation Press", + "item.tfg.unfinished_inscriber_accumulation_press": "ζœͺεŒζˆγInscriber Accumulation Press", "item.tfg.brick.deepslate": "混成岩γγƒ¬γƒ³γ‚¬", "item.tfg.brick.dripstone": "鍾乳石γγƒ¬γƒ³γ‚¬", "item.tfg.loose.moon_stone": "ζ–œι•·ε²©γε°ηŸ³", @@ -760,239 +785,273 @@ "item.tfg.used_foil_pack": "δ½Ώη”¨ζΈˆγΏγƒ›γ‚€γƒ«γƒ‘γƒƒγ‚―", "item.tfg.clean_foil_pack": "ζ΄—ζ΅„ζΈˆγΏγƒ›γ‚€γƒ«γƒ‘γƒƒγ‚―", "item.tfg.dry_ice": "ドラむをむス", - "item.tfg.food.raw_birt": "Raw Birt", - "item.tfg.food.cooked_birt": "Cooked Birt", - "item.tfg.food.raw_crawlermari": "Raw Crawlermari", - "item.tfg.food.cooked_crawlermari": "Cooked Crawlermari", - "item.tfg.food.raw_limpet": "Raw Limpet", - "item.tfg.food.cooked_limpet": "Cooked Limpet", - "item.tfg.food.raw_moon_rabbit": "Raw Moon Rabbit", - "item.tfg.food.cooked_moon_rabbit": "Cooked Moon Rabbit", - "item.tfg.spawn_egg.moon_rabbit": "Moon Rabbit Spawn Egg", - "item.tfg.food.freeze_dried.red_grapes": "Freeze Dried Red Grapes", - "item.tfg.food.freeze_dried.white_grapes": "Freeze Dried White Grapes", - "item.tfg.food.freeze_dried.glow_berries": "Freeze Dried Glow Berries", - "item.tfg.food.freeze_dried.chorus_fruit": "Freeze Dried Chorus Fruit", - "item.tfg.food.freeze_dried.popped_chorus_fruit": "Freeze Dried Popped Chorus Fruit", - "item.tfg.food.freeze_dried.blackberry": "Freeze Dried Blackberries", - "item.tfg.food.freeze_dried.blueberry": "Freeze Dried Blueberries", - "item.tfg.food.freeze_dried.bunchberry": "Freeze Dried Bunchberries", - "item.tfg.food.freeze_dried.cloudberry": "Freeze Dried Cloudberries", - "item.tfg.food.freeze_dried.cranberry": "Freeze Dried Cranberries", - "item.tfg.food.freeze_dried.elderberry": "Freeze Dried Elderberries", - "item.tfg.food.freeze_dried.gooseberry": "Freeze Dried Gooseberries", - "item.tfg.food.freeze_dried.raspberry": "Freeze Dried Raspberries", - "item.tfg.food.freeze_dried.snowberry": "Freeze Dried Snowberries", - "item.tfg.food.freeze_dried.strawberry": "Freeze Dried Strawberries", - "item.tfg.food.freeze_dried.wintergreen_berry": "Freeze Dried Wintergreen Berries", - "item.tfg.food.freeze_dried.banana": "Freeze Dried Banana", - "item.tfg.food.freeze_dried.cherry": "Freeze Dried Cherries", - "item.tfg.food.freeze_dried.green_apple": "Freeze Dried Green Apple", - "item.tfg.food.freeze_dried.lemon": "Freeze Dried Lemon", - "item.tfg.food.freeze_dried.olive": "Freeze Dried Olives", - "item.tfg.food.freeze_dried.orange": "Freeze Dried Orange", - "item.tfg.food.freeze_dried.peach": "Freeze Dried Peach", - "item.tfg.food.freeze_dried.plum": "Freeze Dried Plum", - "item.tfg.food.freeze_dried.red_apple": "Freeze Dried Red Apple", - "item.tfg.food.freeze_dried.pumpkin_chunks": "Freeze Dried Pumpkin Chunks", - "item.tfg.food.freeze_dried.melon_slice": "Freeze Dried Melon Slice", - "item.tfg.food.freeze_dried.fig": "Freeze Dried Fig", - "item.tfg.food.freeze_dried.pineapple": "Freeze Dried Pineapple", - "item.tfg.food.freeze_dried.blossom_berry": "Freeze Dried Blossom Berry", - "item.tfg.food.freeze_dried.shadow_berry": "Freeze Dried Nox Berry", - "item.tfg.food.freeze_dried.cave_pumpkin": "Freeze Dried Bulbkin Chunks", - "item.tfg.food.calorie_paste": "Calorie Paste", - "item.tfg.food.meal_bag": "Meal Bag", - "item.tfg.food.ice_soup": "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.food.raw_wraptor": "Raw Wraptor", - "item.tfg.food.cooked_wraptor": "Cooked Wraptor", - "item.tfg.food.raw_springling_collar": "Raw Springling Collar", - "item.tfg.food.cooked_springling_collar": "Cooked Springling Collar", - "item.tfg.food.raw_walker_steak": "Raw Walker Steak", - "item.tfg.food.cooked_walker_steak": "Cooked Walker Steak", - "item.tfg.food.raw_glider_wings": "Raw Glider Wings", - "item.tfg.food.cooked_glider_wings": "Cooked Glider Wings", - "item.tfg.food.raw_whole_soarer": "Raw Whole Soarer", - "item.tfg.food.cooked_whole_soarer": "Cooked Whole Soarer", - "item.tfg.food.raw_crusher_meat": "Raw Crusher Meat", - "item.tfg.food.cooked_crusher_meat": "Cooked Crusher Meat", - "item.tfg.food.raw_goober_meat": "Raw Goober Meat", - "item.tfg.food.cooked_goober_meat": "Cooked Goober Meat", - "item.tfg.food.raw_long_pig_filet": "Raw Long Pig Filet", - "item.tfg.food.cooked_long_pig_filet": "Cooked Long Pig Filet", - "item.tfg.food.raw_surfer_steak": "Raw Surfer Steak", - "item.tfg.food.cooked_surfer_steak": "Cooked Surfer Steak", - "item.tfg.food.raw_stackatick_chunks": "Raw Stackatick Chunks", - "item.tfg.food.raw_stickastackatick": "Raw Stick'a'Stackatick", - "item.tfg.food.cooked_stickastackatick": "Cooked Stick'a'Stackatick", - "item.tfg.food.raw_cruncher_ribs": "Raw Cruncher Ribs", - "item.tfg.food.cooked_cruncher_ribs": "Cooked Cruncher Ribs", + "item.tfg.food.raw_birt": "η”ŸγBirt肉", + "item.tfg.food.cooked_birt": "η„Όγ„γŸBirt肉", + "item.tfg.food.raw_crawlermari": "η”ŸγCrawlermari", + "item.tfg.food.cooked_crawlermari": "η„Όγ„γŸCrawlermari", + "item.tfg.food.raw_limpet": "η”ŸγLimpet", + "item.tfg.food.cooked_limpet": "η„Όγ„γŸLimpet", + "item.tfg.food.raw_moon_rabbit": "η”Ÿγζœˆγ‚¦γ‚΅γ‚肉", + "item.tfg.food.cooked_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": "Blossom Berryγγƒ•γƒͺーズドラむ", + "item.tfg.food.freeze_dried.shadow_berry": "Nox 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.food.raw_sniffer_beef": "η”Ÿγγ‚Ήγƒ‹γƒƒγƒ•γ‚‘ー肉", + "item.tfg.food.cooked_sniffer_beef": "焼きスニッフゑー肉", + "item.tfg.food.raw_wraptor": "η”Ÿγγƒ©γƒ—ター肉", + "item.tfg.food.cooked_wraptor": "焼きラプター肉", + "item.tfg.food.raw_springling_collar": "η”ŸγSpringling Collar", + "item.tfg.food.cooked_springling_collar": "η„Όγ„γŸSpringling Collar", + "item.tfg.food.raw_walker_steak": "η”Ÿγγ‚¦γ‚©γƒΌγ‚«γƒΌθ‚‰", + "item.tfg.food.cooked_walker_steak": "ウォーカーステーキ", + "item.tfg.food.raw_glider_wings": "η”Ÿγγ‚°γƒ©γ‚€γƒ€γƒΌγζ‰‹ηΎ½ε…ˆ", + "item.tfg.food.cooked_glider_wings": "η„Όγ„γŸγ‚°γƒ©γ‚€γƒ€γƒΌγζ‰‹ηΎ½ε…ˆ", + "item.tfg.food.raw_whole_soarer": "η”Ÿγγ‚½γ‚’ラー肉", + "item.tfg.food.cooked_whole_soarer": "焼きソをラー肉", + "item.tfg.food.raw_crusher_meat": "η”Ÿγγ‚―ラッシャー肉", + "item.tfg.food.cooked_crusher_meat": "η„Όγ„γŸγ‚―γƒ©γƒƒγ‚·γƒ£γƒΌθ‚‰", + "item.tfg.food.raw_goober_meat": "η”Ÿγγ‚°γƒΌγƒγƒΌθ‚‰", + "item.tfg.food.cooked_goober_meat": "η„Όγ„γŸγ‚°γƒΌγƒγƒΌθ‚‰", + "item.tfg.food.raw_long_pig_filet": "ε₯‡ε¦™γͺ肉", + "item.tfg.food.cooked_long_pig_filet": "γ“γ‚“γŒγ‚Šε₯‡ε¦™γͺ肉", + "item.tfg.food.raw_surfer_steak": "η”Ÿγγ‚΅γƒΌγƒ•γ‚‘ー肉", + "item.tfg.food.cooked_surfer_steak": "ァーフゑーステーキ", + "item.tfg.food.raw_stackatick_chunks": "η”ŸγStackatick Chunks", + "item.tfg.food.raw_stickastackatick": "η”ŸγStick'a'Stackatick", + "item.tfg.food.cooked_stickastackatick": "η„Όγ„γŸStick'a'Stackatick", + "item.tfg.food.raw_cruncher_ribs": "η”ŸγCruncher Ribs", + "item.tfg.food.cooked_cruncher_ribs": "η„Όγ„γŸCruncher Ribs", + "item.tfg.food.raw_dino_nugget": "θ‘£γ‚’γ€γ‘γŸζη«œγƒŠγ‚²γƒƒγƒˆ", + "item.tfg.food.cooked_dino_nugget": "ζη«œγƒŠγ‚²γƒƒγƒˆγγƒ“γƒΌγƒ«θ‘£ζšγ’", + "item.tfg.food.raw_beer_battered_cheese_curds": "θ‘£γ‚’γ€γ‘γŸγƒγƒΌγ‚Ίγ‚«γƒΌγƒ‰", + "item.tfg.food.cooked_beer_battered_cheese_curds": "チーズカードγγƒ“γƒΌγƒ«θ‘£ζšγ’", + "item.tfg.food.raw_fries": "εˆ»γ‚“γ γ‚Έγƒ£γ‚¬γ‚€γƒ’", + "item.tfg.food.cooked_fries": "γƒ•γƒ©γ‚€γƒ‰γƒγƒ†γƒˆ", + "item.tfg.food.poutine": "プーティン", + "item.tfg.food.brioche_dough": "γƒ–γƒͺγ‚ͺッシγƒ₯γη”Ÿεœ°", + "item.tfg.food.brioche_bun": "γƒ–γƒͺγ‚ͺッシγƒ₯γγƒγƒ³γ‚Ί", + "item.tfg.food.raw_burger_patty": "η”Ÿγγƒ‘ティ", + "item.tfg.food.cooked_burger_patty": "バーガーパティ", + "item.tfg.food.slice_of_cheese": "γ‚Ήγƒ©γ‚€γ‚Ήγ€ŒγƒγƒΌγ‚Ίγ€", + "item.tfg.food.hamburger": "ハンバーガー", + "item.tfg.food.cheeseburger": "チーズバーガー", + "item.tfg.food.oatmeal": "γ‚ͺγƒΌγƒˆγƒŸγƒΌγƒ«", + "item.tfg.food.raw_instant_mac": "γ‚€γƒ³γ‚Ήγ‚Ώγƒ³γƒˆγγƒžγ‚«γƒ­γƒ‹οΌ†γƒγƒΌγ‚Ί", + "item.tfg.food.cooked_instant_mac": "γƒžγ‚«γƒ­γƒ‹οΌ†γƒγƒΌγ‚Ί", + "item.tfg.spice.bay_leaf": "γƒ­γƒΌγƒͺエγθ‘‰", + "item.tfg.spice.cardamom_pods": "カルダヒンγη¨ε­", + "item.tfg.spice.cilantro_leaves": "γ‚³γƒͺをンダーγθ‘‰", + "item.tfg.spice.cumin_seeds": "γ‚―γƒŸγƒ³γ‚·γƒΌγƒ‰", + "item.tfg.spice.oregano_leaves": "γ‚ͺγƒ¬γ‚¬γƒŽγθ‘‰", + "item.tfg.spice.allspice": "γ‚ͺールスパむス", "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": "Flintlock Mechanism", - "item.tfg.advanced_clockwork_mechanism": "Advanced Clockwork Mechanism", - "item.tfg.certus_mechanism": "Certus Mechanism", - "item.tfg.small_bullet_casing": "Small Bullet Casing", - "item.tfg.large_bullet_casing": "Large Bullet Casing", - "item.tfg.shell_bullet_casing": "Shell Bullet Casing", - "item.tfg.nitrocellulose": "Nitrocellulose", - "item.tfg.aes_wool": "Alkaline Earth Silicate Wool", - "item.tfg.aes_compressed_wool": "Compressed Alkaline Earth Silicate Wool", - "item.tfg.aes_insulation_sheet": "Sheet of Alkaline Earth Silicate Insulation", - "item.tfg.aes_insulation_roll": "Roll of Alkaline Earth Silicate Insulation", - "item.tfg.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.spawn_egg.moon_rabbit": "ζœˆγ‚¦γ‚΅γ‚γγ‚ΉγƒγƒΌγƒ³γ‚¨γƒƒγ‚°", + "item.tfg.spawn_egg.surfer": "ァーフゑーγγ‚ΉγƒγƒΌγƒ³γ‚¨γƒƒγ‚°", + "item.tfg.spawn_egg.wraptor": "ラプターγγ‚ΉγƒγƒΌγƒ³γ‚¨γƒƒγ‚°", + "item.tfg.spawn_egg.glacian_ram": "ζ°·η•Œγƒ’γƒ„γ‚Έγγ‚ΉγƒγƒΌγƒ³γ‚¨γƒƒγ‚°", + "item.tfg.spawn_egg.sniffer": "スニッフゑーγγ‚ΉγƒγƒΌγƒ³γ‚¨γƒƒγ‚°", + "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": "Earth Orbit", "item.tfg.marker.moon_orbit": "Moon Orbit", "item.tfg.marker.mars_orbit": "Mars Orbit", "item.tfg.marker.venus_orbit": "Venus Orbit", "item.tfg.marker.mercury_orbit": "Mercury Orbit", "item.tfg.marker.glacio_orbit": "Europa Orbit", - "item.tfg.railgun_ammo_shell": "Railgun Ammo Shell", + "item.tfg.railgun_ammo_shell": "レールガンγεΌΎ", "item.tfg.sulfur_fumes_bucket": "Sulfur Fumes Bucket", - "item.tfg.super_heated_slurry_bucket": "Super Heated Slurry Bucket", + "item.tfg.geyser_slurry_bucket": "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": "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.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.heavy_ammoniacal_water_bucket": "γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚Šγι‡ζ°΄ バケツ", + "item.tfg.semiheavy_ammoniacal_water_bucket": "γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚ŠγεŠι‡ζ°΄ バケツ", "item.tfg.harvest_basket": "εŽη©«γ‹γ”", "item.tfg.aluminium_harvest_basket": "γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½εŽη©«γ‹γ”", - "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.crimsene_gem": "Crimsene Rosin", - "item.tfg.warpane_gem": "Warpane Rosin", - "item.tfg.glacian_wool": "Glacian 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.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.crimsene_gem": "ζ·±η΄…γζ¨Ήθ„‚", + "item.tfg.warpane_gem": "ζ­ͺみγζ¨Ήθ„‚", + "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": "バむγ‚ͺ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": "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": "Extruder Mold (Spade Head)", - "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": "Basic Photovoltaic Cell", - "item.tfg.electric_extendo_grip": "Electric Extendo Grip", + "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": "ζŠΌε‡Ίε½’ζˆη”¨ι‡‘εž‹ (Whisk)", + "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.flax_seeds": "亜麻γη¨", "item.tfg.flax_product": "亜麻γθŒŽ", + "item.tfg.flax_bundle": "束ねた亜麻", "item.tfg.flax_line": "亜麻γηΉŠηΆ­", "item.tfg.flax_tow": "亜麻γηŸ­ηΉŠηΆ­", "item.tfg.flax_waste": "δΊœιΊ»ε±‘", + "item.tfg.bundled_scraped_flax": "ζŸγ­γŸδΊœιΊ»ε±‘", "item.tfg.linen_thread": "γƒͺネンγη³Έ", "item.tfg.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", - "item.tfg.empty_rod": "Empty Fissile Fuel Rod", - "item.tfg.thorium_rod": "Thorium Fuel Rod", - "item.tfg.uranium_rod": "Uranium Fuel Rod", - "item.tfg.plutonium_rod": "Plutonium Fuel Rod", - "item.tfg.tbu_232_rod": "TBU-232 Fuel Rod", - "item.tfg.refrigerant_pellet": "Refrigerant Pellet", - "item.tfg.graphite_compound": "Graphite Compound", - "item.tfg.raw_graphite_briquette": "Raw Graphite Briquette", - "item.tfg.faulty_graphite_briquette": "Faulty Graphite Briquette", - "item.tfg.washed_graphite_briquette": "Washed Graphite Briquette", - "item.tfg.pure_graphite_rod": "Pure Graphite Rod", - "item.tfg.impure_graphite_rod": "Impure Graphite Rod", - "item.tfg.annealed_graphite_rod": "Annealed Graphite Rod", - "item.tfg.impure_annealed_graphite_row": "Impure Annealed Graphite Rod", - "item.tfg.moderate_core": "Moderate Core", - "item.tfg.impure_moderate_core": "Impure Moderate Core", - "item.tfg.moderate_core_frame": "Moderate Core Frame", - "item.tfg.impure_moderate_core_frame": "Impure Moderate Core Frame", - "item.tfg.graphite_moderator": "Graphite Moderator", - "item.tfg.impure_graphite_moderator": "Impure Graphite Moderator", - "item.tfg.advanced_polymer_binder": "Advanced Polymer Binder", + "item.tfg.uv_led": "Β§dγ‚¦γƒ«γƒˆγƒ©γƒγ‚€γ‚ͺγƒ¬γƒƒγƒˆΒ§fLED", + "item.tfg.smd_uv_led": "Β§fSMDΒ§dγ‚¦γƒ«γƒˆγƒ©γƒγ‚€γ‚ͺγƒ¬γƒƒγƒˆΒ§fLED", + "item.tfg.empty_dna_syringe": "η©Ίγζ³¨ε°„器", + "item.tfg.filled_dna_syringe": "δΈ­θΊ«ε…₯γ‚Šγζ³¨ε°„器", + "item.tfg.dirty_dna_syringe": "ζ±šζŸ“γ•γ‚ŒγŸζ³¨ε°„ε™¨", + "item.tfg.clean_dna_syringe": "ζ΄—ζ΅„ζΈˆγΏζ³¨ε°„ε™¨", + "item.tfg.stainless_steel_needle": "ステンレスγι‡", + "item.tfg.empty_rod": "η©Ίγη‡ƒζ–™ζ£’", + "item.tfg.thorium_rod": "γƒˆγƒͺウム燃料棒", + "item.tfg.uranium_rod": "ウラン燃料棒", + "item.tfg.plutonium_rod": "γƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ η‡ƒζ–™ζ£’", + "item.tfg.tbu_232_rod": "TBU-232燃料棒", + "item.tfg.refrigerant_pellet": "ε†·εͺ’γƒšγƒ¬γƒƒγƒˆ", + "item.tfg.graphite_compound": "γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆζ··εˆη‰©", + "item.tfg.raw_graphite_briquette": "γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆζˆε½’η‚­", + "item.tfg.faulty_graphite_briquette": "ζ¬ γ‘γŸγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆζˆε½’η‚­", + "item.tfg.washed_graphite_briquette": "εŒ–ε­¦ε‡¦η†ζΈˆγΏγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆζˆε½’η‚­", + "item.tfg.pure_graphite_rod": "純粋γͺγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγƒ­γƒƒγƒ‰", + "item.tfg.impure_graphite_rod": "不純γͺγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγƒ­γƒƒγƒ‰", + "item.tfg.annealed_graphite_rod": "η„Όζˆγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγƒ­γƒƒγƒ‰", + "item.tfg.impure_annealed_graphite_rod": "不純γͺη„Όζˆγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγƒ­γƒƒγƒ‰", + "item.tfg.graphite_moderator": "γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγƒ’γƒ‡γƒ¬γƒΌγ‚ΏγƒΌ", + "item.tfg.impure_graphite_moderator": "不純γͺγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγƒ’γƒ‡γƒ¬γƒΌγ‚ΏγƒΌ", + "item.tfg.advanced_polymer_binder": "η™Ίε±•εž‹γƒγƒͺγƒžγƒΌγƒγ‚€γƒ³γƒ€γƒΌ", "item.tfg.beaker": "Beaker", "item.tfg.beaker.filled": "Beaker of %s", "item.tfg.flask": "Flask", "item.tfg.flask.filled": "Flask of %s", - "item.tfg.vial": "Vial", - "item.tfg.vial.filled": "Vial of %s", + "item.tfg.vial": "Pipette", + "item.tfg.vial.filled": "Pipette of %s", "item.tfg.lab_equipment": "Lab Equipment", "item.tfg.dirty_lab_equipment": "Dirty Lab Equipment", - "item.tfg.wireless_card": "Interplanetary Wireless Card", - "item.tfg.wet_magenta_chalk": "Wet Magenta Chalk", - "item.tfg.wet_pink_chalk": "Wet Pink Chalk", - "item.tfg.wet_green_chalk": "Wet Green Chalk", - "item.tfg.wet_lime_chalk": "Wet Lime Chalk", - "item.tfg.wet_light_gray_chalk": "Wet Light Gray Chalk", - "item.tfg.wet_yellow_chalk": "Wet Yellow Chalk", - "item.tfg.wet_black_chalk": "Wet Black Chalk", - "item.tfg.wet_light_blue_chalk": "Wet Light Blue Chalk", - "item.tfg.wet_brown_chalk": "Wet Brown Chalk", - "item.tfg.wet_cyan_chalk": "Wet Cyan Chalk", - "item.tfg.wet_orange_chalk": "Wet Orange Chalk", - "item.tfg.wet_red_chalk": "Wet Red Chalk", - "item.tfg.wet_gray_chalk": "Wet Gray Chalk", - "item.tfg.wet_white_chalk": "Wet White Chalk", - "item.tfg.wet_blue_chalk": "Wet Blue Chalk", - "item.tfg.wet_purple_chalk": "Wet Purple Chalk", - "item.tfg.lamp_casting_mold": "Lamp Casting Mold", - "item.tfg.trapdoor_casting_mold": "Trapdoor Casting Mold", - "item.tfg.chain_casting_mold": "Chain Casting Mold", - "item.tfg.bell_casting_mold": "Bell Casting Mold", + "item.tfg.wireless_card": "ζ˜Ÿι–“ε―ΎεΏœη„‘η·šγ‚«γƒΌγƒ‰", + "item.tfg.wet_magenta_chalk": "ζœͺη„Όζˆγθ΅€η΄«θ‰²γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_pink_chalk": "ζœͺη„Όζˆγζ‘ƒθ‰²γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_green_chalk": "ζœͺη„Όζˆγη·‘色γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_lime_chalk": "ζœͺη„Όζˆγι»„緑色γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_light_gray_chalk": "ζœͺη„Όζˆγθ–„灰色γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_yellow_chalk": "ζœͺη„Όζˆγι»„色γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_black_chalk": "ζœͺη„Όζˆγι»’色γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_light_blue_chalk": "ζœͺη„Όζˆγη©Ίθ‰²γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_brown_chalk": "ζœͺη„ΌζˆγθŒΆθ‰²γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_cyan_chalk": "ζœͺη„Όζˆγι’緑色γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_orange_chalk": "ζœͺη„Όζˆγζ©™θ‰²γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_red_chalk": "ζœͺη„Όζˆγθ΅€θ‰²γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_gray_chalk": "ζœͺη„Όζˆγη°θ‰²γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_white_chalk": "ζœͺη„Όζˆγη™½θ‰²γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_blue_chalk": "ζœͺη„Όζˆγι’色γγƒγƒ§γƒΌγ‚―", + "item.tfg.wet_purple_chalk": "ζœͺη„Όζˆγη΄«θ‰²γγƒγƒ§γƒΌγ‚―", + "item.tfg.lamp_casting_mold": "ι‡‘εž‹οΌˆγƒ©γƒ³γ‚Ώγƒ³οΌ‰", + "item.tfg.trapdoor_casting_mold": "ι‡‘εž‹οΌˆγƒˆγƒ©γƒƒγƒ—γƒ‰γ‚’οΌ‰", + "item.tfg.chain_casting_mold": "ι‡‘εž‹οΌˆιŽ–οΌ‰", + "item.tfg.bell_casting_mold": "ι‡‘εž‹οΌˆι˜οΌ‰", + "item.tfg.rnr_plow": "Paving Cart", + "item.tfg.cobalt_brass_wheel": "Cobalt Brass Wheel", + "item.tfg.cellulose_matrix": "γ‚»γƒ«γƒ­γƒΌγ‚Ήγƒžγƒˆγƒͺックス", + "item.tfg.smooth_endoplasmic_reticula": "ζ»‘ι’ε°θƒžδ½“", + "item.tfg.rough_endoplasmic_reticula": "η²—ι’ε°θƒžδ½“", + "item.tfg.alpha_keratin": "Ξ±-ケラチン", + "item.tfg.progenitor_cells": "ε‰ι§†η΄°θƒž", + "item.tfg.catalyser_pt_re_zsm": "Catalyser Pt-Re ZSM-5", + "item.tfg.used_catalyser": "Used Catalyser Pt-Re ZSM-5", + "item.tfg.loaded_resin": "Re-Loaded Resin", "material.tfg.latex": "ラテックス", "material.tfg.vulcanized_latex": "εŠ η‘«ε‡¦η†γƒ©γƒ†γƒƒγ‚―γ‚Ή", "material.tfg.fluix": "フルーシγƒ₯", @@ -1020,68 +1079,142 @@ "material.tfg.glacio_stone": "響岩", "material.gtceu.thermochemically_treated_hardwood": "η†±ε‡¦η†ζΈˆγΏγε …ζœ¨", "material.gtceu.hardwood": "ε …ζœ¨", - "material.gtceu.asurine": "Asurine", - "material.gtceu.ochrum": "Ochrum", - "material.gtceu.veridium": "Veridium", - "material.gtceu.crimsite": "Crimsite", - "material.gtceu.scoria": "Scoria", - "material.gtceu.scorchia": "Scorchia", + "material.gtceu.asurine": "瑠璃岩", + "material.gtceu.ochrum": "ι»„εœŸε²©", + "material.gtceu.veridium": "緑青岩", + "material.gtceu.crimsite": "ηœŸη΄…ε²©", + "material.gtceu.scoria": "γ‚Ήγ‚³γƒͺγ‚’", + "material.gtceu.scorchia": "スコーチを", "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.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-Tetrafluoroethane", + "material.tfg.1_1_1_2_tetrafluoroethane": "1,1,1,2-γƒ†γƒˆγƒ©γƒ•γƒ«γ‚ͺロエタン", "material.tfg.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.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", - "material.tfg.mars_air": "Mars Air", - "material.tfg.liquid_mars_air": "Liquid Mars Air", - "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", - "material.tfg.apt": "Ammonium Paratungstate", - "material.tfg.ammonium_tungstate": "Ammonium Tungstate", - "material.tfg.tungsten_bismuth_oxide_composite": "Tungsten-Bismuth Oxide Composite", - "material.tfg.tungsten_oxide": "Tungsten Oxide", - "material.tfg.sodium_tungstate": "Sodium Tungstate", - "material.tfg.tetrafluoroethane": "Tetrafluoroethane", - "material.tfg.thermally_conductive_fluid": "Thermally Conductive Fluid", - "material.tfg.crimsene": "Crimsene", - "material.tfg.warpane": "Warpane", + "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.heavy_water": "重水", + "material.tfg.semiheavy_water": "εŠι‡ζ°΄", + "material.tfg.nuclear_residue": "ζ Έεˆ†θ£‚ζ‹η•™η‰©", + "material.tfg.oxidized_nuclear_residue": "ι…ΈεŒ–ζ Έεˆ†θ£‚ζ‹η•™η‰©", + "material.tfg.refined_nuclear_residue": "η²Ύθ£½ζ Έεˆ†θ£‚ζ‹η•™η‰©", + "material.tfg.mars_air": "火星γη©Ίζ°—", + "material.tfg.liquid_mars_air": "火星γζΆ²δ½“η©Ίζ°—", + "material.tfg.certus_regolith": "水晢岩屑", + "material.tfg.goethe_regolith": "針鉄鉱岩屑", + "material.tfg.bright_regolith": "η…Œγ‚γε²©ε±‘", + "material.tfg.cassiterite_regolith": "ιŒ«ηŸ³ε²©ε±‘", + "material.tfg.regolith_mush": "ζœˆι’ε †η©η‰©", + "material.tfg.apt": "パラタングステン酸をンヒニウム", + "material.tfg.ammonium_tungstate": "タングステン酸をンヒニウム", + "material.tfg.tungsten_bismuth_oxide_composite": "ι…ΈεŒ–γ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³-γƒ“γ‚Ήγƒžγ‚Ήζ··εˆη‰©", + "material.tfg.tungsten_oxide": "ι…ΈεŒ–γ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³", + "material.tfg.sodium_tungstate": "γ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³ι…ΈγƒŠγƒˆγƒͺウム", + "material.tfg.tetrafluoroethane": "γƒ†γƒˆγƒ©γƒ•γƒ«γ‚ͺロエタン", + "material.tfg.thermally_conductive_fluid": "η†±δΌε°Žζ€§ζ΅δ½“", + "material.tfg.crimsene": "ζ·±η΄…", + "material.tfg.warpane": "ζ­ͺみ", "material.tfg.mycelienzene": "Mycelienzene", "material.tfg.cooked_mycelienzane": "1,3-Mycelienzane", - "material.tfg.iodomethane": "Iodomethane", - "material.tfg.trideuteroiodomethane": "Trideuteroiodomethane", + "material.tfg.iodomethane": "ヨードパタン", + "material.tfg.trideuteroiodomethane": "三重ヨードパタン", + "material.tfg.lauryl_alcohol": "ラウγƒͺルをルコール", + "material.tfg.chlorosulfuric_acid": "ε‘©εŒ–γ‚Ήγƒ«γƒ›γƒ³ι…Έ", + "material.tfg.sodium_dodecyl_sulfate": "γƒ‰γƒ‡γ‚·γƒ«η‘«ι…ΈγƒŠγƒˆγƒͺウム", + "material.tfg.sodium_hypochlorite": "ζ¬‘δΊœε‘©η΄ ι…ΈγƒŠγƒˆγƒͺウム", + "material.tfg.mutative_yeast": "倉異酡母", + "material.tfg.proto_growth_medium": "γƒ—γƒ­γƒˆη”Ÿθ‚²εŸΉεœ°", + "material.tfg.fibroblast_feeder_cells": "η·šηΆ­θŠ½γƒ•γ‚£γƒΌγƒ€γƒΌη΄°θƒž", + "material.tfg.gram_stain": "γ‚°γƒ©γƒ ζŸ“θ‰²ζΆ²", + "material.tfg.crystal_violet": "γ‚―γƒͺスタルバむγ‚ͺγƒ¬γƒƒγƒˆ", + "material.tfg.n_n_dimethylaniline": "N,N-ジパチルをニγƒͺン", + "material.tfg.triglyceride_oil": "γƒˆγƒͺγ‚°γƒͺγ‚»γƒͺドγ‚ͺむル", + "material.tfg.cholesterol": "コレステロール", + "material.tfg.butyric_acid": "ι…ͺι…Έ", + "material.tfg.citric_acid": "クエン酸", + "material.tfg.sodium_dihydrogen_citrate": "γ‚―γ‚¨γƒ³ι…ΈδΊŒζ°΄η΄ γƒŠγƒˆγƒͺウム", + "material.tfg.light_stock": "γ‚ΉγƒΌγƒ—γ‚Ήγƒˆγƒƒγ‚―", + "material.tfg.rich_stock": "高級γͺγ‚ΉγƒΌγƒ—γ‚Ήγƒˆγƒƒγ‚―", + "material.tfg.brown_gravy": "グレービーソース", + "material.tfg.zircon": "ジルコン", + "material.tfg.silicon_tetrachloride": "ε››ε‘©εŒ–γ‚±γ‚€η΄ ", + "material.tfg.zirconium_tetrachloride": "ε‘©εŒ–γ‚Έγƒ«γ‚³γƒ‹γ‚¦γƒ (IV)", + "material.tfg.zirconium_oxide": "ジルコニを", + "material.tfg.zirconium_bromide": "θ‡­εŒ–γ‚Έγƒ«γ‚³γƒ‹γ‚¦γƒ (IV)", + "material.tfg.zirconium_diboride": "δΊŒγƒ›γ‚¦εŒ–γ‚Έγƒ«γ‚³γƒ‹γ‚¦γƒ ", + "material.tfg.boron_carbide": "η‚­εŒ–γƒ›γ‚¦η΄ ", + "material.tfg.syngas": "εˆζˆγ‚¬γ‚Ή", + "material.tfg.raw_aromatic_mix": "ε€©η„ΆθŠ³ι¦™ζ—ζ··εˆη‰©", + "material.tfg.aromatic_feedstock": "θŠ³ι¦™ζ—εŽŸζ–™", + "material.tfg.reformed_aromatic_feedstock": "ζ”Ήθ³ͺθŠ³ι¦™ζ—εŽŸζ–™", + "material.tfg.reformate_gas": "ζ”Ήθ³ͺガス", + "material.tfg.cracker_off_gas": "ζŽ₯触改θ³ͺγ•γ‚ŒγŸγ‚ͺフガス", + "material.tfg.btx_fuel": "BTXガス", + "material.tfg.critical_steam": "Critical Steam", + "material.tfg.americium_241": "をパγƒͺシウム241", + "material.tfg.californium_252": "γ‚«γƒͺホルニウム252", + "material.tfg.neptunium_237": "ネプツニウム237", + "material.tfg.mixed_radioactive_fluid": "ζ”Ύε°„ζ€§ζ··εˆζΆ²δ½“", + "material.tfg.degraded_solvent_stream": "Degraded Solvent Stream", + "material.tfg.boron_enriched_coolant": "ζΏƒηΈγƒ›γ‚¦η΄ ε†·ε΄ζΆ²", + "material.tfg.hot_boron_enriched_coolant": "熱い濃ηΈγƒ›γ‚¦η΄ ε†·ε΄ζΆ²", + "material.tfg.polyalkylene_lubricant": "ポγƒͺをルキレン潀滑剀", + "material.tfg.organic_degradation_slurry": "ζœ‰ζ©Ÿεˆ†θ§£ζ³₯ζΌΏ", + "material.tfg.gas_fraction": "Gas Fraction", + "material.tfg.isotopic_solvent": "εŒδ½δ½“ζΊΆεͺ’", + "material.tfg.residual_sludge": "Residual Sludge", + "material.tfg.sodium_fluoride": "γƒ•γƒƒεŒ–γƒŠγƒˆγƒͺウム", + "material.tfg.trace_catalyst_salt_e": "Trace Catalyst Salt E", + "material.tfg.copper_trace_catalyst_dust": "Copper Trace Catalyst", + "material.tfg.organic_stabilizer": "Organic Stabilizer", + "material.tfg.inert_dust_fraction": "Inert Fraction", + "material.tfg.recovered_ionic_complex": "Recovered Ionic Complex", + "material.tfg.glucose": "グルコース", + "material.tfg.galactose": "γ‚¬γƒ©γ‚―γƒˆγƒΌγ‚Ή", + "material.tfg.fructose": "γƒ•γƒ«γ‚―γƒˆγƒΌγ‚Ή", + "material.tfg.sorbitol": "γ‚½γƒ«γƒ“γƒˆγƒΌγƒ«", + "material.tfg.14_sorbitan": "1,4-ソルビタン", + "material.tfg.isosorbide": "むソソルビド", + "material.tfg.linolenic_acid": "Ξ±-γƒͺγƒŽγƒ¬γƒ³ι…Έ", + "material.tfg.isosorbide_ln": "Isosorbide Linolenate", + "material.tfg.epox_isosorbide_ln": "Epoxidized Isosorbide Linolenate", + "material.tfg.ozone": "Ozone", + "material.tfg.tin_chloride": "Stannous Chloride", + "material.tfg.cyclohexanone": "Cyclohexanone", + "material.tfg.cyclohex_diperoxide": "1,1-Cyclohexanediyl Dihydroperoxide", + "material.tfg.aciditic_waste": "Acidic Epoxy Waste", + "material.tfg.tpaoh": "Tetrapropylammonium Hydroxide", + "material.tfg.sodium_silicate": "Sodium Silicate", + "material.tfg.metal_rich_solution": "Leachate Metal-Rich Solution", + "material.tfg.crude_mixed_gas": "Crude Mixed Gas", + "material.tfg.zsm5_gel": "ZSM-5 Gel", + "material.tfg.leachate": "Rhenium Leachate", + "material.tfg.clean_powder": "Re-Silicate Clean Powder", + "material.tfg.catalyser_powder": "Catalyser Re ZSM-5 Powder", + "material.tfg.sodium_aluminium": "Sodium Aluminium", "ore_vein.tfg.deep_sheldonite": "Cooperite & Bornite", "ore_vein.tfg.deep_garnet_amethyst": "Amethyst & Garnet", "ore_vein.tfg.deep_garnet_opal": "Opal & Garnet", @@ -1225,24 +1358,24 @@ "tfg.tooltip.food_trait.refrigerating": "Β§bε†·θ”΅δΏε­˜", "tfg.tooltip.foodtrait.freeze_dried": "フγƒͺーズドラむ", "tfg.tooltip.extraterrestrial_farming": "Β§4Temperature:Β§r An oxygenated environment provides 15Β°C", - "entity.tfg.moon_rabbit.male": "Moon Rabbit", - "entity.tfg.moon_rabbit.female": "Moon Rabbit", + "entity.tfg.moon_rabbit.male": "ζœˆγ‚¦γ‚΅γ‚", + "entity.tfg.moon_rabbit.female": "ζœˆγ‚¦γ‚΅γ‚", "tfg.tooltip.moon_rabbit_variant.pink": "Pink Fur", "tfg.tooltip.moon_rabbit_variant.white": "White Fur", "tfg.tooltip.moon_rabbit_variant.grey": "Stony Fur", "tfg.tooltip.moon_rabbit_variant.cyan": "Seafoam Fur", "tfg.tooltip.moon_rabbit_variant.purple": "Lavender Fur", "tfg.tooltip.moon_rabbit_variant.sofu": "Sundae Fur", - "entity.tfg.glacian_ram.male": "Glacian Ram", - "entity.tfg.glacian_ram.female": "Glacian Ewe", + "entity.tfg.glacian_ram.male": "ζ°·η•Œι›„γƒ’γƒ„γ‚Έ", + "entity.tfg.glacian_ram.female": "ζ°·η•Œι›Œγƒ’γƒ„γ‚Έ", "tfg.tooltip.attribution.glacian_ram": "Β§9Β§oCredit: Ad Astra", - "entity.tfg.sniffer.male": "Sniffer", - "entity.tfg.sniffer.female": "Sniffer", + "entity.tfg.sniffer.male": "スニッフゑー", + "entity.tfg.sniffer.female": "スニッフゑー", "tfg.tooltip.attribution.sniffer": "Β§9Β§oCredit: Minecraft", - "entity.tfg.wraptor.male": "Wraptor", - "entity.tfg.wraptor.female": "Wraptor", + "entity.tfg.wraptor.male": "ラプター", + "entity.tfg.wraptor.female": "ラプター", "tfg.tooltip.attribution.wraptor": "Β§9Β§oCredit: Species", - "entity.tfg.surfer": "Surfer", + "entity.tfg.surfer": "ァーフゑー", "tfg.tooltip.surfer_variant.base": "Teal Hide", "tfg.tooltip.surfer_variant.bubble": "Blossom Berry Hide", "tfg.tooltip.surfer_variant.horn": "Golden Hide", @@ -1250,8 +1383,22 @@ "tfg.tooltip.surfer_variant.fire": "Sangnum Hide", "tfg.tooltip.surfer_variant.brain": "Glacian Hide", "tfg.tooltip.attribution.surfer": "Β§9Β§oCredit: Wan's Ancient Beasts", + "entity.tfg.rnr_plow": "Paving Cart", "effect.tfg.cooling": "Β§bCooling", "effect.tfg.warming": "Β§6Warming", + "effect.tfg.instant_radiation": "Instant Radiation", + "effect.tfg.chemical_burns_warning": "Suffering Chemical Burns", + "effect.tfg.poison_warning": "Toxic Material", + "effect.tfg.weak_poison_warning": "Weakly Toxic Material", + "effect.tfg.irritant_warning": "Irritant Material", + "effect.tfg.nausea_warning": "Nauseous Material", + "effect.tfg.carcinogen_warning": "Carcinogenic Material", + "effect.tfg.asbestosis_warning": "Asbestosis", + "effect.tfg.arsenicosis_warning": "Arsenicosis", + "effect.tfg.silicosis_warning": "Silicosis", + "effect.tfg.berylliosis_warning": "Berylliosis", + "effect.tfg.methanol_poisoning_warning": "Methanol Poisoning", + "effect.tfg.carbon_monoxide_poisoning_warning": "Carbon Monoxide Poisoning", "tfg.greate.uls_limit": "Β§432Β§r (Β§8ULSΒ§r)", "tfg.greate.ls_limit": "Β§f128Β§r (Β§7LSΒ§r)", "tfg.greate.windmill_hint_1": "Windmills are affected by relative", @@ -1274,7 +1421,7 @@ "trim_material.tfc.salt_tfc": "salt", "trim_material.tfc.sapphire_tfc": "Sapphire", "trim_material.tfc.sodalite_tfc": "Sodalite", - "trim_material.tfc.coke_tfc": "Coke", + "trim_material.tfc.armalcolite_tfc": "Armalcolite", "trim_material.tfc.spessartine_tfc": "Spessartine", "trim_material.tfc.topaz_tfc": "Topaz", "trim_material.tfc.uvarovite_tfc": "Uvarovite", @@ -1308,10 +1455,14 @@ "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.y_ranges": "Y Level: %d to %d", "tfg.emi.ore_veins.size": "Size: %d", "tfg.emi.ore_veins.height": "Height: %d", "tfg.emi.ore_veins.radius": "Radius: %d", + "ore_vein.tfg.rose_quartz": "Rose Quartz", + "ore_vein.tfg.rose_quartz.emi.0": "Found in low-elevation", + "ore_vein.tfg.rose_quartz.emi.1": "biomes in climates", + "ore_vein.tfg.rose_quartz.emi.2": "below -10Β°C.", "emi.category.tfg.ore_vein_info": "Ore Veins", "tfg.emi.liquid_bb_burn_time": "Duration: %d secs", "tfg.emi.liquid_bb_superheat": "Β§lSuperheated", @@ -1368,10 +1519,30 @@ "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.hotornot_container": "Β§aSafely contains Β§6hotΒ§a, Β§bcoldΒ§a, and Β§elighter-than-airΒ§a items and fluids.Β§r", + "tfg.tooltip.hotornot_hot_equipment": "Β§7Provides protection from all Β§6hotΒ§7 items, fluids, and pipes.Β§r", + "tfg.tooltip.hotornot_cold_equipment": "Β§7Provides protection from all Β§bcoldΒ§7 items, fluids, and pipes.Β§r", + "tfg.tooltip.hotornot_floating_equipment": "Β§7Provides protection from all Β§elighter-than-airΒ§7 gases.Β§r", + "tfg.tooltip.machine.one_energy_hatch": "Accepts exactly Β§6OneΒ§r Energy Hatch", + "tfg.tooltip.machine.two_energy_hatches": "Accepts up to Β§6TwoΒ§r Energy Hatches", + "tfg.tooltip.machine.subtick": "This machine supports Β§2SubtickingΒ§r!", + "tfg.tooltip.machine.coil_energy_discount": "Every coil after Β§6CupronickelΒ§r reduces energy usage by Β§r10%Β§7.Β§r", + "tfg.tooltip.machine.bioreactor_1": "Β§7Chemistry meets BiologyΒ§r", + "tfg.tooltip.machine.bioreactor_2": "Β§7Combines organic and inorganic ingredients to produce synthetic biological products.Β§r", + "tfg.tooltip.machine.growth_chamber_1": "Β§7Growing new lifeΒ§r", + "tfg.tooltip.machine.growth_chamber_2": "Β§7Contains everything needed for Biological Engineering.Β§r", + "tfg.tooltip.machine.evaporation_tower_1": "Β§7Not to be confused with the Distillation TowerΒ§r", + "tfg.tooltip.machine.evaporation_tower_2": "Β§7Gets rid of excess solvent to condense solutions.Β§r", + "tfg.tooltip.machine.electric_greenhouse_1": "Β§7Putting the Factory in Factory FarmingΒ§r", + "tfg.tooltip.machine.electric_greenhouse_2": "Β§7Uses water to grow trees, crops, and other plants. Can be sped up with fertilizer. Faster and easier than other ways of growing plants, at the cost of energy.Β§r", + "tfg.tooltip.machine.cooling_tower_1": "Β§7Heating up the AtmosphereΒ§r", + "tfg.tooltip.machine.cooling_tower_2": "Β§7Cools the hot coolant by dissipitating excess heat to the atmosphere.Β§r", "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.antipoison_pill": "Β§9Cures Poison", + "tfg.tooltip.antipoison_tablet": "Β§9Cures All Active Harmful Effects", + "tfg.tooltip.dna_syringe.empty": "Β§7An empty syringe.Β§r", + "tfg.tooltip.dna_syringe.dirty1": "Β§7A used syringe.Β§r", + "tfg.tooltip.dna_syringe.dirty2": "Β§7Be careful not to poke anyone with this...Β§r", "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]", @@ -1391,9 +1562,30 @@ "tfg.tooltip.component.moderate_core_frame": "Can be placed inside a Fission Reactor to increase the maximum heat by Β§910Β§r", "tfg.tooltip.component.dry_ice": "Can be used as an input in the Fission Reactor to cool it down, requires a Material Holder", "tfg.tooltip.component.refrigerant_pellet": "Can be used as an input in the Fission Reactor to cool it down, requires a Material Holder", - "tfg.tooltip.component.nuclear_turbine_1": "Β§eBase Production:Β§r 4096 EU/t", + "tfg.tooltip.component.nuclear_turbine_1": "Β§eBase Production:Β§r 8192 EU/t", "tfg.tooltip.component.nuclear_turbine_2": "Each Rotor Holder above Β§5EVΒ§r Β§7addsΒ§r 10% efficiency and multiplies EU/t by 2.", + "tfg.tooltip.component.smr_generator_1": "Β§eBase Production:Β§r 4096 EU/t", + "tfg.tooltip.component.smr_generator_2": "Dedicated to produce power from sCO2 and the Small Modular Reactor.\n Use Lubricant and Booster to increase its efficiency and manage the cooling loop of the SMR.", + "tfg.gui.refrigerator.unify_dates.enabled": "Expiration Date Unification is: Β§aOn", + "tfg.gui.refrigerator.unify_dates.disabled": "Expiration Date Unification is: Β§cOff", "tfg.machine.food_refrigerator_power_usage": "Β§7ConsumesΒ§r %s EU/t Β§7while active to keep your food fresh.Β§r", + "tfg.gui.rnr_plow.random_mode": "Randomize Materials", + "tfg.gui.rnr_plow.width": "Path Width: %d Blocks", + "tfg.gui.rnr_plow.empty_crushed_base_course": "Β§cMissing Crushed Base Course!!", + "tfg.tooltip.progenitor_cells.mob": "Animal culture: ", + "tfg.tooltip.fake_nutrition_info_listener": "Β§7Β§oHold (Shift) for Nutrition Info", + "tfg.tooltip.fake_nutrition_info": "Β§7Nutrition:", + "tfg.tooltip.cheese_slice_microplastics": "Β§b- Microplastics: 1.9", + "tfg.gui.menu.field_guide_splash_text": "Tip: Read the field guide!!!", + "tfg.gui.menu.ram_usage": "RAM:", + "tfg.gui.menu.fps_count": "FPS:", + "tfg.gui.smr_generator.credit": "Credits to Frontiers Team", + "tfg.gui.smr_generator.lubricant_used": "Lubricant: %s", + "tfg.gui.smr_generator.booster_used": "Booster: %s", + "tfg.gui.max_energy_per_tick_amps.prefix": "Max EU/t:", + "tfg.gui.consumes": "Consumes: ", + "tfg.gui.per_cycle": "per cycle", + "tfg.gui.cycle_duration": "Cycle duration: ", "tfc.jei.flint_knapping": "Flint Knapping", "tfc.jei.straw_knapping": "Straw Knapping", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Dyeing", @@ -1518,120 +1710,120 @@ "tfg.grapplemod.upgrades.angle": "Increases the Β§lHorizontal AngleΒ§r for throwing your Β§lDouble HooksΒ§r by 5Β°, up to 90Β°.\nOnly accessible with a Β§lDouble HookΒ§r installed.", "tfg.grapplemod.downgrades.angle": "Decreases the Β§lHorizontal AngleΒ§r for throwing your Β§lDouble HooksΒ§r by 5Β°, down to 5°°.\nOnly accessible with a Β§lDouble HookΒ§r installed.", "quests.ae2": "Applied Energistics 2", - "quests.ae2.subtitle": "The strongest tool to help you with GregTech, unlocked after your first trip to the moon", - "quests.ae2.certus_quartz.title": "Certus Quartz", - "quests.ae2.certus_quartz.subtitle": "One small step for you, one giant leap for logistics", - "quests.ae2.certus_quartz.desc": "With your first step on the Moon comes access to your first &bCertus Quartz&r vein.\nDon't worry, they're quite common and should be easy to locate, though having a decent Ore Prospector wouldn't hurt.\n\nWhether you decide to set up a miner or manually dig out a full vein, make sure to gather a hefty amount, as you'll need it to progress through AE2.", + "quests.ae2.subtitle": "ζœˆγ«ε‘γ‹γ„γ€GregTechγι Όγ‚Œγ‚‹η›Έζ–Ήγ‚’見぀け出そう", + "quests.ae2.certus_quartz.title": "ケルタスクォーツ", + "quests.ae2.certus_quartz.subtitle": "γ“γ‚Œγ―γ‚Ήγƒ†γ‚£γƒΌγƒ–γ«γ¨γ£γ¦γ―ε°γ•γͺδΈ€ζ­©γ γŒγ€θ‡ͺε‹•εŒ–γ«γŠγ„γ¦γ―ε‰ε€§γͺ一歩である", + "quests.ae2.certus_quartz.desc": "ζœˆγ«γ―γ€AE2γ‚’ι€²γ‚γ¦γ„γδΈŠγ§γι‡θ¦γͺ資源である&bケルタスクォーツ&rγι‰±θ„ˆγŒγ‚γ‚ŠγΎγ™γ€‚\nγ‚±γƒ«γ‚Ώγ‚Ήγ‚―γ‚©γƒΌγƒ„ι‰±θ„ˆγ―ζ―”θΌƒηš„ε€šγεˆ†εΈƒγ—γ¦γ„γ‚‹γŸγ‚γ€ι‰±ηŸ³ζŽ’ηŸ₯ζ©ŸγŒγ‚γ‚Œγ°γ¨γ¦γ‚‚η°‘ε˜γ«θ¦‹γ€γ‘γ‚‰γ‚ŒγΎγ™γ€‚\n\nζŽ‘ζŽ˜ζ©Ÿγ§ζŽ˜γ‚‹γ‹γ€θ‡ͺεŠ›γ§ζŽ˜γ‚‹γ‹γ―θ‡ͺη”±γ§γ™γŒγ€γ‚γ‚‹η¨‹εΊ¦γι‡γ―η’ΊδΏγ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚AE2を進めていくには、倧量に必要にγͺγ‚ŠγΎγ™γ€‚", "quests.ae2.certus_quartz.task": "Certus Quartz Ore", - "quests.ae2.polarizer.title": "Polarizer", - "quests.ae2.polarizer.subtitle": "Redstone isn't enough", - "quests.ae2.polarizer.desc": "One of your main resources for Applied Energistics 2 will be &bCharged Certus Quartz&r.\n\nTo obtain it, there’s really only one method: the &6HV&r Polarizer.\n\nYou’ll quickly notice how long this recipe takes, so it’s strongly recommended to dedicate a Polarizer exclusively to this task.\n\nIt may seem expensive or daunting at first, but don't worryβ€”it’s absolutely worth it.\n\nAlso, remember not to charge all your Certus Quartz!\nYou’ll need some uncharged ones for items like the Annihilation Core, so always keep a small reserve on hand.", - "quests.ae2.hv_machines.title": "The Three Musketeers", - "quests.ae2.hv_machines.subtitle": "Or is it four?", - "quests.ae2.hv_machines.desc": "The &eSifter&r is used for ore processing to increase your yield of Certus Quartz, Quartzite, Nether Quartz, Ruby, and Armalcoliteβ€”all of which are essential for AE2. Alternatively, you can smelt the ores directly in a Furnace if you're in a rush, but you'll lose out on a lot of free resources by doing that.\n\nThe second machine, the &eMixer&r, is your only method to create &dFluix Crystals&r (more about that in the next quest). Don’t forget that you can also use the Greate Mixer as a &6HS&r-tier machine.\n\nThirdly, a &eLaser Engraver&r can combine lesser quality gems together into Exquisite, which will give you better Fluix yields.\n\nLastly, keep in mind that an &eAutoclave&r can help you generate even more gems from dusts. Once you have the resources, crafting one will make your life significantly easier.", + "quests.ae2.polarizer.title": "η™Ίε±•εž‹η£εŒ–θ£…η½", + "quests.ae2.polarizer.subtitle": "γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³γ˜γ‚ƒγ γ‚γͺγγ‹", + "quests.ae2.polarizer.desc": "&bγƒγƒ£γƒΌγ‚ΈζΈˆγΏγ‚±γƒ«γ‚Ώγ‚Ήγ‚―γ‚©γƒΌγƒ„&rは、AE2γ«γŠγ‘γ‚‹δΈ»θ¦γͺ素材γγ²γ¨γ€γ§γ™γ€‚\n\nγ“γ‚Œγ‚’ε…₯ζ‰‹γ™γ‚‹γŸγ‚γ«γ―&6HV&rη£εŒ–θ£…η½γŒεΏ…要です。こγγƒ¬γ‚·γƒ”γ―ιžεΈΈγ«ζ™‚ι–“γŒγ‹γ‹γ‚ŠγΎγ™γ€‚γγγŸγ‚γ€ε°‚η”¨γ«η£εŒ–θ£…η½γ‚’η”¨ζ„γ™γ‚‹γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚\n\nζœ€εˆγ―δ½œγ‚‹γγŒε€§ε€‰γ™γŽγ‚‹γγ§γ―γͺγ„γ‹γ¨ζ€γ†γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€ζ‘ˆε€–ε•ι‘Œγ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nζ³¨ζ„οΌšγ™γΉγ¦γγ‚±γƒ«γ‚Ώγ‚Ήγ‚―ォーツを帯電させてしまわγͺγ„γ‚ˆγ†γ«γ—γ¦γγ γ•γ„οΌ\nζΆˆζ»…γ‚³γ‚’γͺど一部γγ‚’γ‚€γƒ†γƒ γ«γ―ιžεΈ―ι›»γγ‚±γƒ«γ‚Ώγ‚Ήγ‚―ォーツも必要にγͺγ‚‹γŸγ‚γ€ε°‘ι‡γ§γ‚‚δΊˆε‚™γ¨γ—γ¦ζ‹γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.ae2.hv_machines.title": "ζ°΄ζ™ΆεŠ ε·₯γδΈ‰ιŠƒε£«", + "quests.ae2.hv_machines.subtitle": "ε››ε€©ηŽ‹γ§γ―οΌŸ", + "quests.ae2.hv_machines.desc": "選εˆ₯機&rγ―ι‰±ηŸ³ε‡¦η†η”¨γζ©Ÿζ’°γ§γ€γ‚±γƒ«γ‚Ώγ‚Ήγ‚―γ‚©γƒΌγƒ„γ€γ‚―γ‚©γƒΌγƒ„γ‚‘γ‚€γƒˆγ€γƒγ‚ΆγƒΌγ‚―γ‚©γƒΌγƒ„γ€γƒ«γƒ“γƒΌγ€γ‚’γƒΌγƒžγƒ«γ‚³γƒ©γ‚€γƒˆγ¨γ„γ£γŸAE2に必要γͺ素材γεŽι‡γ‚’咗やせます。かまどで直ζŽ₯η²ΎιŒ¬γ—γŸε ΄εˆγ―ε‰―η”£η‰©γŒεΎ—γ‚‰γ‚ŒγšεŠΉηŽ‡γŒζ‚ͺくγͺγ‚ŠγΎγ™γ€‚\n\n&dフルーシγƒ₯γζ°΄ζ™Ά&rは&eγƒŸγ‚­γ‚΅γƒΌ&rγ‚’δ½Ώγ£γ¦δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚οΌˆθ©³η΄°γ―ζ¬‘γγ‚―γ‚¨γ‚Ήγƒˆγ§οΌ‰\n\nι«˜ε“θ³ͺγͺフルーシγƒ₯γŒεΏ…θ¦γͺε ΄εˆγ―γ€&eγƒ¬γƒΌγ‚ΆγƒΌεˆ»ε°ζ©Ÿ&rγ‚’δ½Ώγ£γ¦γ€δ½Žε“θ³ͺγεηŸ³γ‚’εˆζˆγ—γ¦ι«˜ε“θ³ͺγεηŸ³γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&eγ‚ͺγƒΌγƒˆγ‚―γƒ¬γƒΌγƒ–&rγ‚’δ½Ώγˆγ°γ€η²‰ζœ«γ‹γ‚‰εηŸ³γ‚’ε½’ζˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.ae2.hv_machines.task": "Greate or GregTech?", "quests.ae2.fluix_crystal.subtitle": "Energetic Crystal", - "quests.ae2.fluix_crystal.desc": "As you can see, there are multiple ways to create Fluix Crystals using a Mixer.\n\nThe higher the purity of your input gems, the better the yield β€” that’s exactly why we recommended crafting a &eSifter&r earlier.\n\nYou’ll need a massive amount of Fluix Crystals, especially since the &5liquid version&r is used in most Applied Energistics 2 recipes.\n\nSo prepare yourselfβ€”you’re going to need a lot!", - "quests.ae2.extractor.title": "Fluid Extractor", - "quests.ae2.extractor.subtitle": "The precious fluix", - "quests.ae2.extractor.desc": "Most of your Fluix Crystals will be converted into &5Liquid Fluix&r.\nHowever, make sure to keep a few in their crystal form for the occasional recipe that specifically requires it.\n\nAny &eExtractor&r will do the job here β€” no need for anything fancy.", + "quests.ae2.fluix_crystal.desc": "フルーシγƒ₯γ‚’δ½œγ‚‹γƒ¬γ‚·γƒ”γ―δ½Ώγ†εηŸ³γε“θ³ͺγ«γ‚ˆγ£γ¦γ„γγ€γ‹γ‚γ‚ŠγΎγ™γ€‚\n\nεηŸ³γε“θ³ͺγŒι«˜γ„γ»γ©γ€δ½œζˆι‡γ‚‚ε€šγγͺγ‚‹γγ§γ€&e選εˆ₯機&rγ§ε‡ΊγŸι«˜ε“θ³ͺγεηŸ³γ‚’δ½Ώγ£γŸζ–ΉγŒγ‚ˆγ„γ§γ™γ€‚\n\nフルーシγƒ₯は倧量に必要にγͺγ‚ŠγΎγ™γ€‚η‰Ήγ«&5ζΆ²εŒ–&rγ—γŸγ‚‚γγ―AE2ι–’ι€£γγ»γ¨γ‚“どγγƒ¬γ‚·γƒ”γ§δ½Ώγ‚γ‚Œγ‚‹γŸγ‚γ€δ»ŠεΎŒγι€²θ‘Œγ«ζ¬ γ‹γ›γΎγ›γ‚“。\n\nε€§ι‡γ«η”¨ζ„γ—γ¦γŠγγΎγ—γ‚‡γ†οΌ", + "quests.ae2.extractor.title": "ζŠ½ε‡Ίζ©Ÿ", + "quests.ae2.extractor.subtitle": "η”ŸζΎγ‚Šγƒ•γƒ«γƒΌγ‚·γƒ₯", + "quests.ae2.extractor.desc": "フルーシγƒ₯γζ°΄ζ™Άγ―、&5ζΆ²εŒ–γƒ•γƒ«γƒΌγ‚·γƒ₯&rに加ε·₯γ—γ¦γ‹γ‚‰δ½Ώγ†γ“γ¨γŒε€šγ„γ§γ™γ€‚\nもけろん水晢γγΎγΎεΏ…要にγͺることもあるγγ§γ€ε°‘しはζ‹γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\n&eζŠ½ε‡Ίζ©Ÿ&rγŒγ‚γ‚Œγ°ζΆ²εŒ–γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚η‰Ήεˆ₯γͺθ£…η½γ‚’δ½Ώγ†εΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚", "quests.ae2.extractor.task": "Any Extractor", - "quests.ae2.fluix_liquid.title": "Liquid Fluix", - "quests.ae2.fluix_liquid.subtitle": "The Moon is so cheap", - "quests.ae2.fluix_liquid.desc": "We told you you'd need a vast quantity of Liquid Fluix… but we didn’t mention there’s a way to drastically increase your yield per Fluix Crystal.\n\nIntroducing: &bCryogenized Fluix&r, an ultra-cold fluid only craftable on the Moon using a &bVacuum Freezer&r. Simply combine Liquid Fluix with Helium-3!\n\nThis special fluid can be used as a substitute in nearly all recipes that require Liquid Fluixβ€”but only when you're crafting on the Moon.\n\nMoon-based AE2 recipes come with huge benefits: reduced energy costs, less components needed, or sometimes both! Investing in a proper Moon base for AE2 production will pay off massively, especially in early game.\n\nIt’s not strictly mandatory β€” yet. But setting up a second base now will ease your future progression, as planet-based infrastructure becomes essential later on. So… why not get ahead of the curve?", - "quests.ae2.ae_processor.title": "Processors", - "quests.ae2.ae_processor.subtitle": "AE2 Components", - "quests.ae2.ae_processor.desc": "All three &eProcessors&r will be used extensively across Applied Energistics 2 recipes.\n\nThis also gives you a great opportunity to see how effective the &3Moon&r recipes can be for crafting them.\n\nBut in the end, the choice is yours β€” build your infrastructure where it suits you best.", - "quests.ae2.forming_press.title": "Forming Press", - "quests.ae2.forming_press.subtitle": "Small is good too", - "quests.ae2.forming_press.desc": "To get the printed circuits, you'll need to craft the &6HV&r Forming Press.\n\nThe good news? It has multiple input slots, meaning you can insert all your circuit presses at once, so a single Forming Press is enough to handle every printed circuit type.", - "quests.ae2.ae_press.title": "Inscriber Press", - "quests.ae2.ae_press.subtitle": "Treasure hunt", - "quests.ae2.ae_press.desc": "One of the last things you’ll need before diving fully into Applied Energistics 2 is collecting the 4 &ePresses&r.\n\nTo obtain them, you must locate an &eAE2 Meteorite&r on the &3Moon&r β€” they will look like dark spheres at the bottom of large craters. Luckily, they aren't particularly rare, and a single meteorite will contain all four Presses.\n\n&cBe careful though&r β€” these meteorites are often guarded, so gear up, bring an ore prospector if you have one, and happy hunting!", - "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.fluix_liquid.title": "ζΆ²εŒ–γƒ•γƒ«γƒΌγ‚·γƒ₯", + "quests.ae2.fluix_liquid.subtitle": "ζœˆγ«δ½γ‚“γ§γ‚‹ζ–Ήι™εšοΌε€§η‰ΉδΎ‘セール!", + "quests.ae2.fluix_liquid.desc": "梲体フルーシγƒ₯γŒε€§ι‡γ«εΏ…θ¦γ«γͺγ‚‹γ¨θ¨€γ„γΎγ—γŸγŒγ€εŸγ―そγη”ŸζˆεŠΉηŽ‡γ‚’ε€§εΉ…γ«δΈŠγ’γ‚‹ζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγγ‚ŒγŒγ€Œ&bθΆ…δ½ŽζΈ©ζΆ²εŒ–γƒ•γƒ«γƒΌγ‚·γƒ₯&rγ€γ§γ™γ€‚γ“γ‚Œγ―ζœˆι’γ§γγΏδ½œγ‚Œγ‚‹θΆ…δ½ŽζΈ©γζΆ²δ½“で、&bηœŸη©Ίε†·ε΄ζ©Ÿ&rγ§γ€ζΆ²εŒ–γƒ•γƒ«γƒΌγ‚·γƒ₯γ¨γƒ˜γƒͺウム3γ‚’η΅„γΏεˆγ‚γ›γ¦ε†·ε΄γ™γ‚‹γ“γ¨γ§η”Ÿζˆγ§γγΎγ™γ€‚\n\nθΆ…δ½ŽζΈ©γƒ•γƒ«γƒΌγ‚·γƒ₯γ―γ€ζΆ²εŒ–γƒ•γƒ«γƒΌγ‚·γƒ₯を使うほとんどγγƒ¬γ‚·γƒ”γ§δ»£γ‚γ‚Šγ«δ½Ώγ†γ“γ¨γŒγ§γγΎγ™γ€‚γŸγ γ—γ€ζœˆι’でγγ‚―γƒ©γƒ•γƒˆι™εšγ§γ™γ€‚\n\nAE2γγƒ¬γ‚·γƒ”γ‚’ζœˆι’γ§θ‘Œγ†γ“γ¨γ«γ―ε€šγγγƒ‘γƒͺγƒƒγƒˆγŒγ‚γ‚ŠγΎγ™γ€‚ι›»εŠ›ζΆˆθ²»γŒζΈ›γ£γŸγ‚Šγ€εΏ…θ¦η΄ ζγŒε°‘γͺくγͺγ£γŸγ‚Šγ€γ‚γ‚‹γ„γ―γγδΈ‘ζ–Ήγε ΄εˆγ‚‚γ‚γ‚ŠγΎγ™γ€‚\nAE2専用γζœˆι’ζ‹ η‚Ήγ‚’ζ•΄γˆγ‚‹γ“γ¨γ―ε€§θ¦ζ¨‘γͺδΊ‹ζ₯­γ«γͺγ‚ŠγΎγ™γŒγ€ε‡ε™ζ™‚代γεˆζœŸγ§γ―η’ΊεŸγ«ε½Ήγ«η«‹γ£γ¦γγ‚Œγ‚‹γ§γ—ょう。\n\nηΎζ™‚η‚Ήγ§γ―εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ε°†ζ₯ηš„γ«ζƒ‘ζ˜Ÿθ¦ζ¨‘γζ–½θ¨­γŒι‡θ¦γ«γͺγ‚‹γŸγ‚γ€ζ—©γ‚γ«η¬¬2ζ‹ η‚Ήγ‚’δ½œγ£γ¦γŠγγ¨εΎŒγŒζ₯½γ«γͺγ‚ŠγΎγ™γ€‚β€•β€•ε…ˆε–γ‚Šγ—γ¦γŠγγγ‚‚ζ‚ͺくγͺγ„γ§γ—γ‚‡γ†οΌŸ", + "quests.ae2.ae_processor.title": "プロセッァ", + "quests.ae2.ae_processor.subtitle": "AE2γδΈ»θ¦ιƒ¨ε“", + "quests.ae2.ae_processor.desc": "3η¨γ&eプロセッァ&rは、AE2γγ‚γ‚‰γ‚†γ‚‹γƒ¬γ‚·γƒ”γ§ι »ηΉγ«δ½Ώγ‚γ‚ŒγΎγ™γ€‚\n\nγ“γ‚Œγ‚‰γ‚’δ½œγ‚‹ιŽη¨‹γ§γ€&3月青&rでγη”Ÿη”£γŒγ©γ‚Œγ»γ©εŠΉηŽ‡ηš„γ‹γ‚’δ½“ζ„Ÿγ§γγ‚‹γ§γ—γ‚‡γ†γ€‚\n\nγ¨γ―γ„γˆγ€ζœ€η΅‚ηš„γ«γ©γ“γ§η”Ÿη”£δ½“εˆΆγ‚’ζ•΄γˆγ‚‹γ‹γ―γ‚γͺたγθ‡ͺ由です。θ‡ͺεˆ†γγƒ—γƒ¬γ‚€γ‚Ήγ‚Ώγ‚€γƒ«γ«εˆγ£γŸε ΄ζ‰€γ§ζ‹ η‚Ήγ‚’δ½œγ‚ŠγΎγ—γ‚‡γ†γ€‚", + "quests.ae2.forming_press.title": "圧ηΈζˆεž‹", + "quests.ae2.forming_press.subtitle": "小さいことは良いことだ", + "quests.ae2.forming_press.desc": "AE2ε›žθ·―γ‚’δ½œγ‚‹γ«γ―γ€&6η™Ίε±•εž‹εœ§ηΈζˆεž‹ζ©Ÿ&rγ‚’δ½Ώγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nε–œγ°γ—γ„γ“γ¨γ«γ€γ“γζ©Ÿζ’°γ«γ―耇数γε…₯εŠ›γ‚Ήγƒ­γƒƒγƒˆγŒγ‚γ‚Šγ€γ™γΉγ¦γε›žθ·―γι‡‘εž‹γ‚’γΎγ¨γ‚γ¦γ‚»γƒƒγƒˆγ§γγΎγ™γ€‚γγγŸγ‚γ€1ε°γ‚γ‚Œγ°ε…¨η¨ι‘žγ«ε―ΎεΏœγ§γγΎγ™γ€‚", + "quests.ae2.ae_press.title": "ε›žθ·―γι‡‘εž‹", + "quests.ae2.ae_press.subtitle": "γƒˆγƒ¬γ‚Έγƒ£γƒΌγƒγƒ³γƒˆ", + "quests.ae2.ae_press.desc": "AE2γ‚’ε§‹γ‚γ‚‹ε‰γ«γ€γΎγš4η¨ι‘žγ&eι‡‘εž‹&rγ‚’ι›†γ‚γ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\nγ“γ‚Œγ‚‰γ―&3月青&rに落けている&eAE2γιš•ηŸ³&rからε…₯ζ‰‹γ§γγΎγ™γ€‚ιš•ηŸ³γ―γ‚―γƒ¬γƒΌγ‚ΏγƒΌγεΊ•γ«γ‚γ‚‹ι»’γ„ηƒηŠΆγε‘Šγ§γ™γ€‚εΉΈγ„γ€γγ‚Œγ»γ©ηγ—γγ―γͺく、1γ€θ¦‹γ€γ‘γ‚Œγ°4η¨ι‘žγ™γΉγ¦γγƒ—γƒ¬γ‚ΉγŒζ‰‹γ«ε…₯γ‚ŠγΎγ™γ€‚\n\n&cγŸγ γ—ζ²Ήζ–­γ―η¦η‰©γ§γ™&rβ€•β€•ιš•ηŸ³γε‘¨ε›²γ«γ―ζ•΅γŒγ„γ‚‹ε ΄εˆγŒγ‚γ‚‹γγ§γ€γ—γ£γ‹γ‚Šθ£…ε‚™γ‚’ζ•΄γˆγ€ι‰±ηŸ³ζŽ’ηŸ₯ζ©ŸγŒγ‚γ‚Œγ°ζŒγ£γ¦θ‘ŒγγΎγ—γ‚‡γ†γ€‚ε₯ι—˜γ‚’η₯ˆγ‚ŠγΎγ™οΌ", + "quests.ae2.ae_guide.title": "AE2γΈγ‚ˆγ†γ“γ", + "quests.ae2.ae_guide.subtitle": "MEγ‚¬γ‚€γƒ‰γ―δ»Šγ γ‘ε…¨θ©±η„‘ζ–™οΌ", + "quests.ae2.ae_guide.desc": "さあ、&bAE2&rでむンフラを整備しましょう!\n\nこγη« γ§γ―γ€δ½œγ‚Œγ‚‹γ‚‚γγ¨δ½œγ‚Œγͺいもγγ‚’中心に解θͺ¬γ—ます。特にε„ͺε…ˆγ—γ¦δ½œγ‚‹γΉγι‡θ¦γͺをむテムも紹介します。\n\nAE2を詳しく理解するには、&bG&rγ‚­γƒΌοΌˆCreateγPonderγ«δΌΌγŸζ©Ÿθƒ½οΌ‰γ‚’δ½Ώγ†γ‹γ€δ»Šε›žγγ‚―γ‚¨γ‚Ήγƒˆε ±ι…¬γ&bMEガむド&rγ‚’η’Ίθͺγ™γ‚‹γγŒγŠγ™γ™γ‚γ§γ™γ€‚γ“γ‚ŒγŒγ‚²γƒΌγƒ ε†…γ§γζœ€θ‰―γγƒγƒ₯γƒΌγƒˆγƒͺγ‚’γƒ«γ§γ™γ€‚γΎγŸγ€&61.20.1&r向けγAE2θ§£θͺ¬ε‹•η”»γ‚‚θ±Šε―Œγ«γ‚γ‚‹γγ§γ€εˆ†γ‹γ‚‰γͺγ„γ“γ¨γŒγ‚γ£γŸγ‚‰θͺΏγΉγ¦γΏγ¦γ‚‚いいでしょう。\n\n&dをドバむス&r:倚くγ&bAE2&rγƒ¬γ‚·γƒ”γ«γ―γ€ζœˆι’ι™εšγγƒ¬γ‚·γƒ”γŒγ‚γ‚Šγ€γγ‚Œγ‚’εˆ©η”¨γ™γ‚Œγ°εΏ…θ¦θ³‡ζΊγ‚’ε€§εΉ…γ«η―€η΄„γ§γγΎγ™γ€‚ζœˆι’ζ‹ η‚Ήγ«ζ•΄ε‚™γ—γ¦γŠγγ¨γ€γ‚²γƒΌγƒ ε…¨δ½“γ‚’ι€šγ—γ¦ε€§γγͺパγƒͺγƒƒγƒˆγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚", "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.hv.desc": "こγε…ˆγ§η΄Ήδ»‹γ•γ‚Œγ¦γ„γ‚‹γ‚‚γγ―全て&6HV&rγ‹γ‚‰εˆ©η”¨ε―θƒ½γ§γ™οΌ", + "quests.ae2.ae_controller.subtitle": "MEγƒγƒƒγƒˆγƒ―γƒΌγ‚―γεΏƒθ‡“部", + "quests.ae2.ae_controller.desc": "γΎγšε§‹γ‚γ«γ€&bMEγƒγƒƒγƒˆγƒ―γƒΌγ‚―&rγ«ι›»εŠ›γ‚’δΎ›η΅¦γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ“γ‚Œγ‚‰γ―γ€&bEU&rエネルγ‚γƒΌγ‚’η›΄ζŽ₯受けε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγ‚‹γ€&bAE2&rγ2぀γγƒ–ロックです。\n\nTerraFirmaGregでは&bチャンネル&rγŒζœ‰εŠΉγ«γͺγ£γ¦γ„γ‚‹γŸγ‚γ€&bMEγ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌ&rγ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚’εΌ·γγŠγ™γ™γ‚γ—γΎγ™γ€‚&bMEγ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌ&rは耇数γγƒγƒ£γƒ³γƒγƒ«γ‚’εŠΉηŽ‡ηš„γ«η‘η†γ™γ‚‹γŸγ‚γζœ€θ‰―γζ–Ήζ³•です。\n\n詳しくγͺγ„ζ–Ήγ―γ€γ‚²γƒΌγƒ ε†…γ‚¬γ‚€γƒ‰οΌˆ&bMEγ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌ&r上で&aG&rγ‚­γƒΌγ‚’ζŠΌγ™οΌ‰γ‚„γ€&bAE2&rに閒する動画でγεΊ§ε­¦γͺγ©γ§γ€ε‹‰εΌ·γ—γ¦γŠγγΎγ—γ‚‡γ†οΌ", + "quests.ae2.drive.subtitle": "MEγƒγƒƒγƒˆγƒ―γƒΌγ‚―γι ­θ„³", + "quests.ae2.drive.desc": "γ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚»γƒ«γη‘理方法に぀いて。\n\nζœ€εˆγ―&bMEドラむブ&rγ‚’δ½Ώγ„γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ―ζœ€ε€§&e10&r枚γγ‚»γƒ«γ‚’εŽη΄γ§γγΎγ™γ€‚ζΆˆθ²»ι›»εŠ›γ―&e4EU/t&rγ§γ™γ€‚γ“γ‚ŒγŒεŸΊζœ¬ηš„γͺγ‚Ήγƒˆγƒ¬γƒΌγ‚Έθ£…η½γ«γͺγ‚ŠγΎγ™γ€‚\n\nもう一぀γιΈζŠžθ‚’は&bMEセルドック&rです。こけらは&e1&r枚γγ‚»γƒ«γ—γ‹εŽη΄γ§γγΎγ›γ‚“γŒγ€&e1EU/t&rγ—γ‹ζΆˆθ²»γ›γšγ€γ‚±γƒΌγƒ–γƒ«δΈŠγ«γ‚«γƒγƒΌγγ‚ˆγ†γ«η›΄ζŽ₯θ¨­η½γ§γγΎγ™γ€‚そγγŸγ‚γ€&aγ‚΅γƒ–γƒγƒƒγƒˆ&rでγεˆ©η”¨γ«ιžεΈΈγ«δΎΏεˆ©γ§γ™γ€‚", + "quests.ae2.cell_housing.desc": "&bMEセル筐体&rには、&aをむテム&r用と&9梲体&r用γ2η¨ι‘žγŒγ‚γ‚ŠγΎγ™γ€‚\n\nγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚»γƒ«γδΈ­θΊ«γ§γ‚γ‚‹γ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ―、&eζ’±εŒ…ζ©Ÿ&rγ‚’δ½Ώγ†γ‹γ€γ‚»γƒ«γ‚’ζ‰‹γ«ζŒγ£γ¦γ‚Ήγƒ‹γƒΌγ‚―οΌ‹ε³γ‚―γƒͺγƒƒγ‚―γ™γ‚‹γ“γ¨γ§η°‘ε˜γ«ε–γ‚Šε€–γ›γΎγ™γ€‚", + "quests.ae2.cables.subtitle": "MEγƒγƒƒγƒˆγƒ―γƒΌγ‚―γθ‘€η‘", + "quests.ae2.cables.desc": "γ“γ‚Œγ―γ€&bME&rγƒγƒƒγƒˆγƒ―γƒΌγ‚―γ‚’ζŽ₯ηΆšγ™γ‚‹γŸγ‚γεŸΊζœ¬ηš„γͺケーブルです。\n\nι€šεΈΈγγ‚±γƒΌγƒ–ルは&e8チャンネル&rγΎγ§ε―ΎεΏœγ—γ¦γ„γΎγ™γŒγ€&6ι«˜ε―†εΊ¦γ‚±γƒΌγƒ–γƒ«&rγͺら&a32チャンネル&rγΎγ§ζ‰±γ†γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγͺんと、&2TFG&rでは&9γ‚ΉγƒžγƒΌγƒˆγ‚±γƒΌγƒ–γƒ«&rγγŸγ‚γ«γ‚γ–γ‚γ–γ‚±γƒΌγƒ–γƒ«γ‚’δ½œγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ›γ‚“οΌγ‚ΉγƒžγƒΌγƒˆγ‚±γƒΌγƒ–γƒ«γ―、使用中γγƒγƒ£γƒ³γƒγƒ«ζ•°γ‚’&eθ¦–θ¦šηš„γ«η’Ίθͺγ§γγ‚‹&rγŸγ‚γ€γƒγƒƒγƒˆγƒ―γƒΌγ‚―γη‘η†γŒγ¨γ¦γ‚‚η°‘ε˜γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.ae2.terminals.subtitle": "MEγƒγƒƒγƒˆγƒ―γƒΌγ‚―γ...ζ‰‹οΌŸζŒ‡οΌŸ", + "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": "MEγƒγƒƒγƒˆγƒ―γƒΌγ‚―γι ­θ„³...γ2぀η›...?", + "quests.ae2.crafting_unit.desc": "&dγ‚―γƒ©γƒ•γƒˆγƒ¦γƒ‹γƒƒγƒˆ&rは、&bMEセル筐体&rγ¨δΌΌγŸδ»•η΅„γΏγ‚’ζŒγ£γ¦γ„γΎγ™γ€‚\n\nζ©Ÿθƒ½γ‚’η™Ίζγ™γ‚‹γ«γ―&6ζ’±εŒ…ζ©Ÿ&rγ§γ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ‚’ε°Žε…₯γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ε˜δ½“γ§γ―δ½•γζ©Ÿθƒ½γ‚‚γ‚γ‚ŠγΎγ›γ‚“γŒγ€γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ§‹ι€ γδΈ€ιƒ¨γ¨γ—て硄み込むことは可能です。\n\nγ“γ‚Œγ―γ€&bAE2&rγθ‡ͺε‹•γ‚―γƒ©γƒ•γƒˆγ‚’θ‘Œγ†γŸγ‚γ«ζ¬ γ‹γ›γͺい重要γͺζ§‹ζˆθ¦η΄ γ§γ™γ€‚\n\n詳しくは、&bAE2&rγγ‚²γƒΌγƒ ε†…ガむドで&dクラフティングCPU&rγι …η›γ‚’η’Ίθͺγ—てみてください。", + "quests.ae2.crafting_storage.desc": "θ‡ͺε‹•γ‚―γƒ©γƒ•γƒˆγ‚’θ‘Œγ†γ«γ―γ€γ“γ‚Œγ‚‰γγƒ–γƒ­γƒƒγ‚―γŒεΏ…ι ˆγ§γ™γ€‚γ‚Ήγƒˆγƒ¬γƒΌγ‚ΈεΉι‡γŒε€§γγ„ほど、1ε›žγζ³¨ζ–‡γ§ε‡¦η†γ§γγ‚‹γ‚―γƒ©γƒ•γƒˆγθ¦ζ¨‘も倧きくγͺγ‚ŠγΎγ™γ€‚γΎγŸγ€γΎγ¨γ‚γ¦θ¨­η½γ™γ‚Œγ°γ€δΈ€γ€γε€§γγͺγ‚―γƒ©γƒ•γƒˆγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ¨γ—γ¦θͺθ­˜γ•γ‚ŒγΎγ™γ€‚\n\nθ©³γ—γ„δ»•η΅„γΏγ―γ‚²γƒΌγƒ ε†…γ‚¬γ‚€γƒ‰γ«γ—γ£γ‹γ‚Šζ›Έγ‹γ‚Œγ¦γ„γ‚‹γγ§γ€γœγ²γγ‘らを璺θͺγ—γ¦γγ γ•γ„γ€‚γ‚―γ‚¨γ‚Ήγƒˆγ‚ˆγ‚Šγ‚‚γšγ£γ¨εˆ†γ‹γ‚Šγ‚„γ™γθͺ¬ζ˜Žγ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nγ‚ˆγγ‚γ‹γ£γ¦γ„γͺγ‹γ£γŸγ‚‰γ€ζœ¬ε½“γ«θͺ­γ‚“γ ζ–ΉγŒγ„γ„γ§γ™γ‚ˆοΌ", + "quests.ae2.crafting_storage.task": "γ‚―γƒ©γƒ•γƒˆγ‚Ήγƒˆγƒ¬γƒΌγ‚Έ", + "quests.ae2.pattern_provider.subtitle": "MEγƒγƒƒγƒˆγƒ―γƒΌγ‚―γγ‚¦γƒΌγƒγƒΌγ‚€γƒΌγƒ„", + "quests.ae2.pattern_provider.desc": "&9パターンプロバむダー&rは、&bAE2&rγζœ€ζ–°ζ©Ÿε™¨γ§γ™γ€‚ζ˜”γAE2γ«ζ…£γ‚Œγ¦γ„γ‚‹ζ–Ήγ―γ€γ€Œγ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚Ήγ€γ«γƒ‘γ‚ΏγƒΌγƒ³γ‚’ε…₯γ‚Œγ¦γ„γŸγ¨ζ€γ„γΎγ™γŒγ€δ»Šγ§γ―γ“γγƒ–ロックにε…₯γ‚Œγ‚‹γ‚ˆγ†γ«γͺっています。\n\n注文を受けると、ζŽ₯ηΆšγ•γ‚ŒγŸγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ«γ‚’γ‚€γƒ†γƒ γ‚’ι€γ‚Šε‡Ίγ—γ€ι€†γ«γƒ‘γ‚ΏγƒΌγƒ³γƒ—γƒ­γƒ‘γ‚€γƒ€γƒΌγ«ζˆ»γ•γ‚ŒγŸγ‚’γ‚€γƒ†γƒ γ―MEγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ«ε…₯γ‚ŠγΎγ™γ€‚\n\nGregTechγζ©Ÿζ’°γ«ζŽ₯ηΆšγ™γ‚‹ιš›γ―γ€ζ©Ÿζ’°ε΄γθ¨­εšγ§γ€Œε‡ΊεŠ›ι’からγε…₯εŠ›γ‚’θ¨±ε―γ€γ‚’εΏ…γšζœ‰εŠΉγ«γ—γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ‚’γ‚ͺγƒ³γ«γ™γ‚‹γ¨γ€εŒγ˜ι’γ§ε…₯ε‡ΊεŠ›γŒγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\n詳しくは、&eG&rキーで開けるゲーム内ガむドを璺θͺγ—てみてください。", "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.pattern.subtitle": "注文レシピ", + "quests.ae2.pattern.desc": "パターンは、θ‡ͺε‹•γ‚―γƒ©γƒ•γƒˆγζ³¨ζ–‡γιš›γ«γγγƒ¬γ‚·γƒ”γ‚’ζŒ‡εšγ™γ‚‹γ‚‚γγ§γ™γ€‚1぀γγƒ¬γ‚·γƒ”に぀き1ζžšεΏ…θ¦γ«γͺγ‚‹γγ§γ€ε€§ι‡γ«η”Ÿη”£γ—γ¦γŠγγ¨γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚\n\nγƒ‘γ‚ΏγƒΌγƒ³γ‚’ζΆˆεŽ»γ—γŸγ„γ¨γγ―γ€γ‚Ήγƒ‹γƒΌγ‚―οΌ‹ε³γ‚―γƒͺックするだけいいです。\n\n使い方γθ©³γ—いθͺ¬ζ˜Žγ―ゲーム内ガむドに載っています。特に、GregTechγζ©Ÿζ’°γ§δ½Ώη”¨γ™γ‚‹γƒ¬γ‚·γƒ”γ‚’θ¨­εšγ™γ‚‹γ¨γγ―、パターンγη¨ι‘žγ‚’εΏ…γšγ€ŒProcessing_Patterns」で設εšγ™γ‚‹γ‚ˆγ†γ«ζ³¨ζ„γ—てください。", + "quests.ae2.interface.subtitle": "δ½“γ§δΎ‹γˆγ‚‹γγ―...γ‚„γ‚γ‚ˆγ†γ‹", + "quests.ae2.interface.desc": "&dMEむンターフェース&rγ―γ€γƒγƒƒγƒˆγƒ―γƒΌγ‚―γ¨ε€–ιƒ¨γι–“γ§γ‚’γ‚€γƒ†γƒ γ‚„ζΆ²δ½“γ‚’γ‚„γ‚Šε–γ‚Šγ™γ‚‹γŸγ‚γγ€ιžεΈΈγ«εŸΊζœ¬ηš„か぀重要γͺブロックです。\n\nζ˜”γAE2γ«ζ…£γ‚Œγ¦γ„γ‚‹ζ–Ήγ―ζ³¨ζ„γŒεΏ…θ¦γ§γ™γ€‚ηΎεœ¨γMEγ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚Ήγ―γ€γƒγƒƒγƒˆγƒ―γƒΌγ‚―γδΈ­θΊ«γ‚’γ€Œδ»–γζ©Ÿζ’°γŒεΌ•γε‡Ίγ›γ‚‹γ‚ˆγ†γ«γ™γ‚‹γ γ‘γ€γ§γ€θ‡ͺε‹•γ§γ‚’γ‚€γƒ†γƒ γ‚’ι€γ‚Šε‡Ίγ—γŸγ‚Šγ€γƒ‘γ‚ΏγƒΌγƒ³γ‚’δΏζŒγ—γŸγ‚Šγ―γ—γΎγ›γ‚“γ€‚γγ†γ—γŸε‹•δ½œγ‚’θ‘Œγ„γŸγ„ε ΄εˆγ―γ€&9パターンプロバむダー&rを使用してください。\n\nMEγ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚Ήγ«γ―ε€šγγδ½Ώγ„ι“γŒγ‚γ‚ŠγΎγ™γŒγ€γ“γ“γ§γ―すべてをθͺ¬ζ˜Žγ—γγ‚ŒγΎγ›γ‚“γ€‚θ©³γ—γηŸ₯γ‚ŠγŸγ„ζ–Ήγ―γ€&eG&rキーで開けるゲーム内ガむドを参照してください。", "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.interface_automation.desc": "MEγƒγƒƒγƒˆγƒ―γƒΌγ‚―γ‚’εˆ©η”¨γ—γ¦γƒ‘γƒƒγ‚·γƒ–γƒ©γ‚€γƒ³γ‚’ζ§‹η―‰γ™γ‚‹ε ΄εˆγ€&bMEむンターフェース&rγ‚’δ½Ώγ†γ¨γ„γ„γ§γ—γ‚‡γ†γ€‚γ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚Ήγ«γ―ζ¬ε‡Ίζ©Ÿθƒ½γŒγ€γ„γ¦γ„γͺγ„γŸγ‚γ€δ»–γζ–Ήζ³•γ§ζ¬ε‡Ίγ‚’θ‘Œγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nGregTechγζ©Ÿζ’°γ«ζŽ₯ηΆšγ™γ‚‹ιš›γ―γ€GUIγθ¨­εšγ§&eγ€Œε‡ΊεŠ›ι’γ‹γ‚‰γε…₯εŠ›γ‚’θ¨±ε―γ€&rγ‚’ζœ‰εŠΉγ«γ—γ¦γ€εŒγ˜ι’γ‹γ‚‰ζ¬ε…₯ε‡ΊγŒγ§γγ‚‹γ‚ˆγ†γ«γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\nγΎγŸγ€γ‚«γƒγƒΌγ«γƒ•γ‚£γƒ«γ‚ΏγƒΌγ‚’θ¨­εšγ™γ‚Œγ°γ€θ€‡ζ•°γζ©Ÿζ’°γŒ1぀γγ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚Ήγ‹γ‚‰ι©εˆ‡γ«γ‚’γ‚€γƒ†γƒ γ‚’ε–γ‚Šε‡Ίγ›γ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nγŸγ γ—γ€γ‚’γ‚€γƒ†γƒ ε…₯εŠ›γ‚Ήγƒ­γƒƒγƒˆγŒγ„γ£γ±γ„γ«γͺらγͺγ„γ‚ˆγ†ζ³¨ζ„γŒεΏ…θ¦γ§γ™γ€‚γ“γ‚Œγ‚’ι˜²γγ«γ―γ€&eδΏζŒγƒ’γƒΌγƒ‰&rに設εšγ—γŸγƒ­γƒœγƒƒγƒˆγ‚’ームカバーとフィルターを佡用するγγŒζœ€ι©γ§γ™γ€‚\n\n梲体γε…₯εŠ›γ«ι–’γ—γ¦γ―γ“γε•ι‘Œγ―γͺく、θ‡ͺε‹•ηš„γ«1γ‚Ήγƒ­γƒƒγƒˆεˆ†γ γ‘θ£œε……γ•γ‚Œγ‚‹γγ§ε‰εΏƒγ§γ™γ€‚", + "quests.ae2.crafting_accelerator.desc": "詳しくηŸ₯γ‚ŠγŸγ„ε ΄εˆγ―γ€γ‚²γƒΌγƒ ε†…γ‚¬γ‚€γƒ‰γ‚’θ¦‹γ‚‹γγŒδΈ€η•ͺγ§γ™γ€‚γ‚―γ‚¨γ‚Ήγƒˆγ‚ˆγ‚Šγ‚‚γšγ£γ¨δΈε―§γ§εˆ†γ‹γ‚Šγ‚„γ™γθͺ¬ζ˜Žγ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nγœγ²ζ™‚ι–“γ‚’ε–γ£γ¦γ˜γ£γγ‚Šθͺ­γ‚“γ§γΏγ¦γγ γ•γ„γ€‚γ¨γ¦γ‚‚ε½Ήη«‹γ€γ‚¬γ‚€γƒ‰γ§γ™γ‚ˆοΌ", + "quests.ae2.export_bus.desc": "&dMEε‡ΊεŠ›γƒγ‚Ή&rは、&dMEγƒγƒƒγƒˆγƒ―γƒΌγ‚―&rγ‹γ‚‰γ‚’γ‚€γƒ†γƒ γ‚„ζΆ²δ½“γ‚’ε€–ιƒ¨γ«ζ¬ε‡Ίγ™γ‚‹γŸγ‚γθ£…η½γ§γ™γ€‚\nγ‚―γƒ©γƒ•γƒˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ£γŸγ‚‰γ€η‰Ήγ«&eExtendedAE&rη‰ˆγε‡ΊεŠ›γƒγ‚Ήγ‚‚γƒγ‚§γƒƒγ‚―してみましょう。γͺんらかγθ‡ͺε‹•εŒ–γ«ε›°γ£γŸγ¨γγ«ε½Ήη«‹γ€γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚\n\n&c注意&rοΌšγ“γγƒ–ロックは、MEむンターフェースγͺどと比べて&4TPSοΌˆγ‚΅γƒΌγƒγƒΌθ² θ·οΌ‰&rへγε½±ιŸΏγŒε€§γγ„γŸγ‚γ€ε€šη”¨γ―ιΏγ‘γ‚‹γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚", "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.import_bus.desc": "&dMEε…₯εŠ›γƒγ‚Ή&rは、をむテムや梲体を&dMEγƒγƒƒγƒˆγƒ―γƒΌγ‚―&r内に搬ε…₯する装η½γ§γ™γ€‚γŸγ γ—γ€γ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚Ήγ‚„γƒ‘γ‚ΏγƒΌγƒ³γƒ—γƒ­γƒγ‚€γƒ€γƒΌγ«η›΄ζŽ₯をむテムや梲体を搬ε…₯するγγ¨ε€‰γ‚γ‚‰γͺγ„γŸγ‚γ€ε…₯εŠ›γƒγ‚Ήγη”¨ι€”はやや限εšηš„です。\n\n&c注意&rοΌšγ“γγƒ–ロックはMEむンターフェースγͺどと比べて&4TPSοΌˆγ‚΅γƒΌγƒγƒΌθ² θ·οΌ‰γΈγε½±ιŸΏ&rγŒε€§γγ„γŸγ‚γ€ε€šη”¨γ―ιΏγ‘γ‚‹γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚", + "quests.ae2.storage_bus.desc": "&bMEγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγƒγ‚Ή&rは、MEドラむブδ»₯倖に保η‘γ—γ¦γ„γ‚‹γ‚’γ‚€γƒ†γƒ γ‚„ζΆ²δ½“γ‚’γƒγƒƒγƒˆγƒ―γƒΌγ‚―γ«θͺθ­˜γ•γ›γ‚‹γŸγ‚γθ£…η½γ§γ™γ€‚γ‚ΉγƒΌγƒ‘γƒΌγ‚Ώγƒ³γ‚―γ‚„γ‚ΉγƒΌγƒ‘γƒΌγƒγ‚§γ‚Ήγƒˆγ¨η΅„γΏεˆγ‚γ›γ‚‹γ¨ιžεΈΈγ«δΎΏεˆ©γ§γ™γ€‚γ‚Ήγƒˆγƒ¬γƒΌγ‚Έγƒγ‚Ήγ&eε„ͺε…ˆεΊ¦&rγ‚’γƒ‰γƒ©γ‚€γƒ–γ‚ˆγ‚Šι«˜γθ¨­εšγ—、保η‘γ—γŸγ„γ‚’γ‚€γƒ†γƒ γ‚„ζΆ²δ½“γ‚’ε…₯γ‚Œγ¦γŠγγ“γ¨γ§γ€γƒγƒƒγƒˆγƒ―γƒΌγ‚―γŒγΎγšγγ“γ«ζ Όη΄γ™γ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγƒγ‚Ήγ―γ‚΅γƒ–γƒγƒƒγƒˆγζ§‹η―‰γ«γ‚‚不可欠です。仕硄みγθ©³η΄°γ―ゲーム内ガむドを参照してください。\n\nγΎγŸγ€&aExtendedAE&rには倚くγγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγƒγ‚Ήγη¨ι‘žγŒγ‚γ‚Šγ€εΎŒγ€…ε½Ήη«‹γ€γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚δΎ‹γˆγ°γ€γƒγƒƒγƒˆγƒ―γƒΌγ‚―ε†…γγ™γΉγ¦γ&6η†±γ„γ‚€γƒ³γ‚΄γƒƒγƒˆ&rγ‚’ηœŸη©Ίε†·ε΄ζ©Ÿγ«η›΄ζŽ₯γ€ŒδΏη‘γ€γ•γ›γ‚‹γ€γ¨γ„γ£γŸδ½Ώγ„ζ–ΉγŒε―θƒ½γ§γ™γ€‚", "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.cell_component_1k.desc": "&bγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ&rは、&aAE2&rγ‚’ι€²γ‚γ‚‹δΈŠγ§ιžεΈΈγ«ι‡θ¦γͺをむテムで、&bγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚»γƒ«&rγ‚’δ½œγ‚‹γŸγ‚γ«εΏ…γšεΏ…θ¦γ§γ™γŒγ€η΅ζ§‹γ‚³γ‚ΉγƒˆγŒγ‹γ‹γ‚ŠγΎγ™γ€‚\n\n&e1kMEγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ&rは月青ではγͺγγ¦γ‚‚ε•ι‘Œγͺγδ½œγ‚ŒγΎγ™γŒγ€γγε…ˆγγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ‚„そγη΄ ζγ―月青γζ–ΉγŒδ½œγ‚Šγ‚„すいγγ§γ€ζœ¬ζ Όηš„に運用するγͺγ‚‰ζœˆι’εŸΊεœ°γ‚’η«‹γ¦γŸζ–ΉγŒθ‰―γ„γ§γ—γ‚‡γ†γ€‚", + "quests.ae2.cell_component_4k.desc": "&e4kγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ&rは、&d月青&rγ γ¨ιžεΈΈγ«δ½œγ‚Šγ‚„γ™γγͺγ‚ŠγΎγ™γ€‚\nγΎγŸγ€ζœˆη”¨γγƒ¬γ‚·γƒ”γ―ι€šεΈΈγγƒ¬γ‚·γƒ”γ‚ˆγ‚Š1ζ΅ιšŽδΈ‹γζ©Ÿζ’°γ§γ‚‚δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγ“γ‚Œγ―γ“γε…ˆγ‚‚εŒγ˜γ§γ™γ€‚", + "quests.ae2.cell_component_16k.desc": "&e16kγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ&rγ‚’δ½œγ‚‹γ“γ‚γ«γ―γ€γ‹γͺγ‚Šγε·₯程を踏むことにγͺγ‚‹γγ§γ€γγεˆ†ζœˆι’でγγ‚³γ‚Ήγƒˆε‰ŠζΈ›γζ©ζ΅γ‚‚ε€§γγζ„Ÿγ˜γ¦γ„γ‚‹γ¨γ“γ‚γ§γ—γ‚‡γ†γ€‚\n\nγ‚‚γ‘γ‚γ‚“γ€ζ—’γ«ζœˆι’εŸΊεœ°γ―ζ•΄ε‚™γ•γ‚Œγ¦γ„γΎγ™γ‚ˆγ­οΌŸ", + "quests.ae2.p2p.title": "P2Pγƒˆγƒ³γƒγƒ«", + "quests.ae2.p2p.desc": "γƒγƒ£γƒ³γƒγƒ«γŒγƒ‡γƒ•γ‚©γƒ«γƒˆγ§ζœ‰εŠΉγ«γͺγ£γ¦γ„γ‚‹γŸγ‚γ€&dP2P&rγ«γ€γ„γ¦ε­¦γ‚“γ§γŠγγ¨δΎΏεˆ©γ§γ™γ€‚P2Pは、耇数γγƒγƒ£γƒ³γƒγƒ«γ‚’1ζœ¬γ«γΎγ¨γ‚γ¦γ€1本γγ‚±γƒΌγƒ–ルで拠点全体に何百もγγƒγƒ£γƒ³γƒγƒ«γ‚’ι€šγ›γ‚‹δ»•η΅„γΏγ§γ™γ€‚\n\nθ©³γ—γ„δ½Ώγ„ζ–Ήγ―γ‚²γƒΌγƒ ε†…γ‚¬γ‚€γƒ‰γ‚’ε‚η…§γ™γ‚‹γ¨εˆ†γ‹γ‚Šγ‚„γ™γγ€ε½Ήη«‹γ€ε‹•η”»γ‚‚ε€šγε…¬ι–‹γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nγΎγŸγ€&dBetter_P2P&rγ&bAdvanced_Memory_Card&rγ‚’ζ—©γ‚γ«δ½œγ‚‹γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚θ€‡ζ•°γP2Pγƒˆγƒ³γƒγƒ«γ‚’η‘η†γ™γ‚‹γ¨γγ«ιžεΈΈγ«ε½Ήη«‹γ‘γΎγ™γ€‚δΊ‹ε‰γ«&dMEP2Pγƒˆγƒ³γƒγƒ«&rγ‚’MEγ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌγ«εΌ΅γ‚Šδ»˜γ‘γ¦γŠγγ€εΏ…θ¦γͺγ¨γγ«ε‡ΊεŠ›γ¨ζŽ₯ηΆšγ™γ‚‹γ“γ¨γ‚‚ε―θƒ½γ§γ™γ€‚", "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.cell_workbench.desc": "&bγ‚»γƒ«δ½œζ₯­ε°&rγ―γ€γ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚»γƒ«γγ‚«γ‚Ήγ‚Ώγƒžγ‚€γ‚Ίγ«δ½Ώγ„ます。\n\n&aγƒ›γƒ―γ‚€γƒˆγƒͺγ‚Ήγƒˆ&r・&cブラックγƒͺγ‚Ήγƒˆ&rγγƒ•ィルターやパーティションを設εšγ—γŸγ‚Šγ€&4γ‚ͺーバーフロー破棄カード&rγͺどγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚’θΏ½εŠ γ™γ‚‹γ“γ¨γ‚‚ε―θƒ½γ§γ™γŒγ€γ“γγ‚«γƒΌγƒ‰γζ‰±γ„γ«γ―εεˆ†ζ³¨ζ„γ—γ¦γγ γ•γ„γ€‚\n\n&bε…₯ε‡ΊεŠ›γƒγƒΌγƒˆ&rは、耇数γγƒ‰γƒ©γ‚€γƒ–γ«εŒγ˜γ‚’γ‚€γƒ†γƒ γŒεˆ†ζ•£γ—γ¦γ„γ‚‹ε ΄εˆγ«γ€γ‚’γ‚€γƒ†γƒ γ‚’ζ•΄η†γ—γ¦γΎγ¨γ‚γ‚‹γ€Œγƒ‡γƒ•γƒ©γ‚°γ€η”¨ι€”γ§δ½Ώη”¨γ—γΎγ™γ€‚", + "quests.ae2.requester.desc.1": "&aMEγƒͺクエスター&rは、&eMEγƒγƒƒγƒˆγƒ―γƒΌγ‚―γθ‡ͺε‹•γ‚―γƒ©γƒ•γƒˆ&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は、&bAE2&rで&cγƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³&r俑号をη‘η†γ™γ‚‹γŸγ‚γθ£…η½γ§γ™γ€‚\n\nη‰Ήγ«γƒ¬γƒ™γƒ«γ‚¨γƒŸγƒƒγ‚ΏγƒΌγ―γ€GregTechγγƒžγ‚·γƒ³γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γ‚«γƒγƒΌγ¨η΅„γΏεˆγ‚γ›γ¦γ€γƒ‘γƒƒγ‚·γƒ–η”Ÿη”£γθ‡ͺε‹•εŒ–γ«ιžεΈΈγ«δΎΏεˆ©γ§γ™γ€‚\n\n詳しい使い方はゲーム内ガむドで璺θͺγ—てみてください。", + "quests.ae2.batteries.desc": "γ“γ‚Œγ‚‰γ―MEγƒγƒƒγƒˆγƒ―γƒΌγ‚―η”¨γθ“„ι›»ε™¨γ§γ™γ€‚εΊη›€γ§γ―γ‚γΎγ‚ŠεΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“γŒγ€εΎŒγ€…γ‚¨γƒγƒ«γ‚γƒΌζΆˆθ²»γŒζ€₯ι€Ÿγ«ε’—γˆγ‚‹γ¨εΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚γƒγƒƒγƒˆγƒ―γƒΌγ‚―γŒεœι›»γ™γ‚‹γ¨ιžεΈΈγ«ε«Œγͺζ°—ζŒγ‘γ«γͺγ‚‹γγ§γ€γ„γšγ‚Œγ―導ε…₯γ‚’ζ€œθ¨Žγ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.ae2.cutting_knife.title": "γ‚―γ‚ͺγƒΌγƒ„γƒŠγ‚€γƒ•", + "quests.ae2.cutting_knife.desc": "γ“γ‚Œγ―γ€MEζ©Ÿε™¨γεε‰γ‚’η°‘ε˜γ«ε€‰ζ›΄γ§γγ‚‹γƒ„γƒΌγƒ«γ§γ™γ€‚ε…·δ½“ηš„γͺη”¨ι€”γ¨γ—γ¦γ€γƒ‘γ‚ΏγƒΌγƒ³γƒ—γƒ­γƒγ‚€γƒ€γƒΌγ«εε‰γ‚’δ»˜γ‘γ‚‹γ“γ¨γ§γ€γγεε‰γŒγƒ‘γ‚ΏγƒΌγƒ³γ‚ΏγƒΌγƒŸγƒŠγƒ«γ«θ‘¨η€Ίγ•γ‚Œγ€γ©γγƒ—γƒ­γƒγ‚€γƒ€γƒΌγŒγ©γζ©Ÿζ’°γ«ζŽ₯ηΆšγ•γ‚Œγ¦γ„γ‚‹γ‹γ‚’η‘理しやすくすることγͺどに役立けます。\n\nγŸγ¨γˆγ°γ€γƒ‘γ‚ΏγƒΌγƒ³γƒ—γƒ­γƒγ‚€γƒ€γƒΌγ«γ€Œ&o小さγͺζ­―θ»Šη”¨ζŠΌε‡Ίζ©Ÿ&rγ€γ¨εε‰γ‚’δ»˜γ‘γ¦γŠγ‘γ°γ€γγζŠΌε‡Ίζ©Ÿγ«ε°γ•γͺ歯車γι‡‘εž‹γŒε…₯γ£γ¦γ„γ‚‹γ“γ¨γŒεˆ†γ‹γ‚Šγ€ε°γ•γͺζ­―θ»Šη”¨γγƒ‘ターンだけをε…₯γ‚Œγ‚‹γ‚ˆγ†γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.ae2.cutting_knife.task": "Either cutting knife", - "quests.ae2.pattern_box.desc": "The Pattern Box can carry around all your Blank and Encoded Patterns in one inventory slot, and they will be visible in any AE2 device UI as long as the box is somewhere in your inventory.", - "quests.ae2.wireless_access.title": "ME Wireless Network", - "quests.ae2.wireless_access.subtitle": "Get Free WiFi Anywhere You Go", - "quests.ae2.wireless_access.desc": "Once you've made it to &5EV&r, you'll gain access to the ME Wireless Access Point, which basically acts like a WiFi Router for your ME network. Connect it to a central point in your base, shove as many Wireless Booster cards as you want to increase its range (and power draw), and then link a Wireless Terminal to it.\n\nOnce you have Epoxy and Rhodium, you'll be able to combine all of your Wireless Terminals together via a Universal Terminal!", - "quests.ae2.interplanetary_wireless.subtitle": "Forgot something at home?", - "quests.ae2.interplanetary_wireless.desc": "You can upgrade your Wireless Terminal with this special Card, allowing access to your network from any distance, even on different worlds! Sounds too good to be true? There's a major catch β€” transferring items uses a huge amount of energy.\n\nYou can sort of get around this with some Energy Cards and a battery in your inventory set to Discharge Mode, but it should work well enough for those times when you accidentally left something at your base on Earth and don't want to fly all the way back.\n\nFor proper automated transfer, you'll need a Railgun.", + "quests.ae2.pattern_box.desc": "γƒ‘γ‚ΏγƒΌγƒ³γƒœγƒƒγ‚―γ‚Ήγ―γ€ε€§ι‡γη©Ίγγƒ‘γ‚ΏγƒΌγƒ³γ‚„γ‚¨γƒ³γ‚³γƒΌγƒ‰ζΈˆγΏγƒ‘γ‚ΏγƒΌγƒ³γ‚’1γ‚Ήγƒ­γƒƒγƒˆγ§ζŒγ‘ι‹γΆγ“γ¨γŒγ§γγΎγ™γ€‚γγ—γ¦γ€γγγƒœγƒƒγ‚―γ‚ΉγŒγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγγ©γ“かにε…₯γ£γ¦γ„γ‚‹ι™γ‚Šγ€γ™γΉγ¦γAE2デバむスγUIからそγδΈ­θΊ«γŒθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚", + "quests.ae2.wireless_access.title": "MEη„‘η·šγƒγƒƒγƒˆγƒ―γƒΌγ‚―", + "quests.ae2.wireless_access.subtitle": "電子レンジを使うγγ‚„めて!", + "quests.ae2.wireless_access.desc": "&5EV&rγ«εˆ°ι”γ™γ‚‹γ¨γ€MEη„‘η·šγ‚’γ‚―γ‚»γ‚Ήγƒγ‚€γƒ³γƒˆγ«γ‚’γ‚―γ‚»γ‚Ήγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γ“γ‚Œγ―εŸΊζœ¬ηš„γ«γ€MEγƒγƒƒγƒˆγƒ―γƒΌγ‚―γWiFiルーターγγ‚ˆγ†γͺγ‚‚γγ§γ™γ€‚εŸΊεœ°γδΈ­εΏƒγ«ζŽ₯ηΆšγ—γ€η―„ε›²οΌˆγŠγ‚ˆγ³ι›»εŠ›ζΆˆθ²»οΌ‰γ‚’ε’—γ‚„γ™γŸγ‚γ«γ€ε₯½γγͺγ γ‘η„‘η·šγƒ–γƒΌγ‚Ήγ‚ΏγƒΌγ‚’ζŒΏε…₯し、そγεΎŒη„‘η·šγ‚ΏγƒΌγƒŸγƒŠγƒ«γ‚’γƒͺンクします。\n\nγ‚¨γƒγ‚­γ‚·γ¨γƒ­γ‚Έγ‚¦γƒ γŒγ‚γ‚Œγ°γ€γ™γΉγ¦γη„‘η·šγ‚ΏγƒΌγƒŸγƒŠγƒ«γ‚’γƒ¦γƒ‹γƒγƒΌγ‚΅γƒ«γ‚ΏγƒΌγƒŸγƒŠγƒ«γ‚’ι€šγ˜γ¦η΅±εˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌ", + "quests.ae2.interplanetary_wireless.subtitle": "γ©γ†γ—γŸγοΌŸεΏ˜γ‚Œη‰©οΌŸ", + "quests.ae2.interplanetary_wireless.desc": "こγη‰Ήεˆ₯γͺγ‚«γƒΌγƒ‰γ‚’δ½Ώγ£γ¦η„‘η·šγ‚ΏγƒΌγƒŸγƒŠγƒ«γ‚’γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ™γ‚‹γ“γ¨γ§γ€γ©γ‚“γͺ距雒からでも、さらにはεˆ₯γζƒ‘ζ˜Ÿγ‚„εˆ₯ζ¬‘ε…ƒγ‹γ‚‰γ§γ‚‚γƒγƒƒγƒˆγƒ―γƒΌγ‚―γ«γ‚’γ‚―γ‚»γ‚Ήγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌ\nまるで倒γγ‚ˆγ†γͺθ©±γ§γ™γŒγ€γ²γ¨γ€ε€§γγͺε•ι‘ŒγŒγ‚γ‚ŠγΎγ™β€”β€”γ‚’γ‚€γƒ†γƒ γθ»’送には膨倧γͺ量γγ‚¨γƒγƒ«γ‚γƒΌγŒεΏ…θ¦γ§γ™γ€‚\n\nγ“γ‚Œγ‚’γ‚γ‚‹η¨‹εΊ¦ε›žιΏγ™γ‚‹γŸγ‚γ«γ―γ€γ‚¨γƒŠγ‚ΈγƒΌγ‚«γƒΌγƒ‰γ‚’ε°Žε…₯し、放電ヒードに設εšγ—γŸγƒγƒƒγƒ†γƒͺγƒΌγ‚’γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺにε…₯γ‚Œγ¦γŠγγ“γ¨γŒγ§γγΎγ™γ€‚\nγ€Œεœ°ηƒγ«εΏ˜γ‚Œγ‚‚γγ‚’γ—γŸοΌγ€γ¨γ„γ†γ¨γγͺγ©γ«γ―εεˆ†γ«ε½Ήη«‹γ€γ§γ—γ‚‡γ†γ€‚\n\nγŸγ γ—γ€ζœ¬ζ Όηš„γͺζƒ‘ζ˜Ÿι–“θΌΈι€γ‚’θ‘Œγ„γŸγ„ε ΄εˆγ―γ€γƒ¬γƒΌγƒ«γ‚¬γƒ³γŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚", "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.iv.desc": "こγε…ˆγ§η΄Ήδ»‹γ•γ‚Œγ¦γ„γ‚‹γ‚‚γγ―全て&1IV&rγ‹γ‚‰εˆ©η”¨ε―θƒ½γ§γ™οΌ", + "quests.ae2.accumulation_press.desc": "&eこγζ–°γ—γ„ι‡‘εž‹&rγγŸγ‚γ«γ―ε€šε°‘γζΊ–ε‚™γ¨θ³‡ζΊγŒεΏ…θ¦γ§γ™γ€‚\n\nγΎγšγ―ε†…η ΄εœ§ηΈζ©Ÿγ«&1IVγγ‚¨γƒγƒ«γ‚ーハッチを&rε–γ‚Šδ»˜γ‘γ¦γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ—γ¦γγ γ•γ„γ€‚\n\nζ¬‘γ«γ€γΎγ ζŒγ£γ¦γ„γͺγ‘γ‚Œγ°IVδ»₯上γγƒ¬γƒΌγ‚ΆγƒΌεˆ»ε°ζ©Ÿγ‚’用意してください。\n\nζœ€εΎŒγ«ε€§ι‡γε·₯ζ₯­TNTγ‚’ζƒγˆγ¦γγ γ•γ„γ€‚δ½Ώγˆγ‚‹γγ―&cε·₯ζ₯­TNTだけ&rです。\n\nζ‰‹ι–“γ¨θ³‡ζγŒγ‹γ‹γ‚‹ε·₯程ですγγ§γ€εŸθ‘Œε‰γ«γ—γ£γ‹γ‚Šθ¨ˆη”»γ‚’η«‹γ¦γ¦γγ γ•γ„γ€‚", + "quests.ae2.accumulation_processor.desc": "&eAccumulation_Processor&rγ‚’δ½œγ‚‹γ«γ―γ€γ‹γͺγ‚Šγι‡γγ‚±γ‚€η΄ γŒεΏ…要です。\n\nγ‚±γ‚€η΄ γη”Ÿη”£γƒ»η²ΎιŒ¬δ½“εˆΆγ‚’ζ•΄ε‚™γ—γ¦γŠγγ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚\n\nとにかく倧量に使うγγ§γ€δΊ‹ε‰γ«γ—γ£γ‹γ‚ŠζΊ–ε‚™γ—γ¦γŠγγΎγ—γ‚‡γ†οΌ", + "quests.ae2.mega_crafting.desc": "γ“γ‚Œγ―&bクラフティングCPU&rγδΎΏεˆ©γͺεΌ·εŒ–γƒ‘γƒΌγƒ„γ§γ™γ€‚\n\nθ‡ͺε‹•γ‚―γƒ©γƒ•γƒˆγε‡¦η†ι€ŸεΊ¦γ‚’ι«˜γ‚γ€ε€§γγͺγ‚―γƒ©γƒ•γƒˆδ½œζ₯­γ‚‚スムーズにこγͺγ›γ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.ae2.mega_battery.desc": "&e倧きい蓄電器&rγ―ε€§γγ„γƒγƒƒγƒˆγƒ―γƒΌγ‚―γγŸγ‚γ«γ€‚γγ‚Œγ γ‘γγ“とです。", + "quests.ae2.extended_pattern_access.desc": "&eζ‹‘εΌ΅εž‹γƒ‘γ‚ΏγƒΌγƒ³γ‚’γ‚―γ‚»γ‚Ήγ‚ΏγƒΌγƒŸγƒŠγƒ«&rは、パターンη‘理を格ζ΅γ«ζ₯½γ«γ—γ¦γγ‚Œγ‚‹ε„ͺη§€γͺをップグレードです。\n\nパターンγ&6ζ€œη΄’ζ©Ÿθƒ½γŒεΌ·εŒ–&rγ•γ‚Œγ€ε€§ι‡γγƒ‘ターンを扱いやすくγͺγ‚ŠγΎγ™γ€‚\n\nγ€Œγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ€γ‚’δ½œγ‚Œγ°γ€ζ—’ε­˜γγƒ‘γ‚ΏγƒΌγƒ³γ‚’γ‚―γ‚»γ‚Ήγ‚ΏγƒΌγƒŸγƒŠγƒ«γ‚’γ‚Ήγƒ‹γƒΌγ‚―ε³γ‚―γƒͺックするだけで、η½γζ›γˆγ‚‹ζ‰‹ι–“γͺくそγγΎγΎεΌ·εŒ–できます。", "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.desc": "γ“γ‚ŒγŒζ‹‘εΌ΅η‰ˆγ&bむンターフェース&rです。η½γζ›γˆγ‚‹εΏ…要はγͺくそγγΎγΎγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ§γγ‚‹γ‚ˆγ†γ«γͺっています。\n\nδ½œγ‚Œγ°γƒγƒƒγƒ”γƒΌγ«γͺγ‚Œγ‚‹γ“γ¨θ«‹γ‘εˆγ„γ§γ™οΌ", "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.desc": "&eζ‹‘εΌ΅εž‹γƒ‘γ‚ΏγƒΌγƒ³γƒ—γƒ­γƒ‘γ‚€γƒ€γƒΌ&rは、パターンプロパむダーγδΈŠδ½η‰ˆγ§γ™γ€‚\n\nパターンγ&6εΉι‡γŒζ‹‘εΌ΅&rγ•γ‚Œγ¦γŠγ‚Šγ€ε€šγγη¨ι‘žγγƒ¬γ‚·γƒ”γ‚’ζ‰±γ†γ¨γγ«δΎΏεˆ©γ§γ™γ€‚\n\nγ€Œγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ€γ‚’δ½œγ‚Œγ°γ€ζ—’ε­˜γγƒ‘ターンプロバむダーをスニーク右クγƒͺックするだけで、η½γζ›γˆγ‚‹ζ‰‹ι–“γͺくそγγΎγΎεΌ·εŒ–できます。", "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.desc": "&dMEζ‹‘εΌ΅εž‹γƒ‰γƒ©γ‚€γƒ–&rは、γͺんと&eγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚»γƒ«&rγεΉι‡γŒ&62倍&rです!\n\n&eをップグレード&rγ‚’δ½œγ‚Œγ°γ€ζ—’ε­˜γMEドラむブをη½γζ›γˆγ‚‹ζ‰‹ι–“γͺく&a右クγƒͺック&rγ™γ‚‹γ γ‘γ§εΌ·εŒ–ε―θƒ½γ§γ™γ€‚", "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.desc": "ι€šεΈΈγγ‚‚γγ¨ζ―”べて8倍γγ‚Ήγƒ”γƒΌγƒ‰γ§ε‹•δ½œγ—γΎγ™γ€‚γ‚΅γ‚€γ‚³γƒΌγ§γ™γ­οΌ", "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.extended_io_port.desc": "こγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚’θ£…η€γ™γ‚‹γ¨γ€θ»’ι€ι€ŸεΊ¦γŒ&aε‘δΈŠ&rγ—γ€γ•γ‚‰γ«εΏ…θ¦γ«εΏœγ˜γ¦&6追加γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&rγ‚‚δ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.ae2.extended_molecular_assembler.desc": "γ“γ‚Œγ―&bεˆ†ε­η΅„η«‹ζ©Ÿ&rγδΈŠδ½η‰ˆγ§γ™γ€‚\n\nεŒζ™‚γ«&68぀γγ‚―γƒ©γƒ•γƒˆδ½œζ₯­&rγ‚’ε‡¦η†γ§γγ€ι€ŸεΊ¦γ‚‚&62倍&rにγͺγ‚ŠγΎγ™γ€‚\n\nεΎŒγ€…δ½œγ‚‹γ“γ¨γŒγ§γγ‚‹&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": "&c256kMEγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ&rγ―γ€ι€šεΈΈγη΅„η«‹ζ©Ÿγ§δ½œγ‚Œγ‚‹ζœ€ε€§γ‚΅γ‚€γ‚Ίγ§γ™γ€‚γγε€§γγ•γ―εεˆ†γͺγγ§γ€γ“γ‚Œδ»₯上倧きγͺγ‚΅γ‚€γ‚Ίγ‚’δ½œγ‚‹εΏ…θ¦γŒγͺγ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚\n\nγ‚‚γ‘γ‚γ‚“γ€γ‚ˆγ‚Šε€§γγͺζŒ‘ζˆ¦γ«ζŒ‘γΏγŸγ„ε ΄εˆγ―εˆ₯γ§γ™γŒγ€‚", "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.ae2.luv.desc": "こγε…ˆγ§η΄Ήδ»‹γ•γ‚Œγ¦γ„γ‚‹γ‚‚γγ―全て&dLuV&rγ‹γ‚‰εˆ©η”¨ε―θƒ½γ§γ™οΌ", + "quests.ae2.cell_component_1m.desc": "&3MEGAγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ&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": "&c64MMEGAγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ&rは、&7TerraFirmaGreg&rγ«γŠγ‘γ‚‹ζœ€ε€§γγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ§γ™γ€‚εŸιš›γ«γ―ほとんど必要γͺγ„γ¨ζ€γ„γΎγ™γŒγ€ζ¬²γ—γγͺγ‚‹δΊΊγ‚‚γ„γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚", + "quests.ae2.oversize_interface.desc": "&dME特倧むンターフェース&rは、&dME拑弡むンターフェース&rγγ•らγͺγ‚‹εΌ·εŒ–η‰ˆγ§γ€ε„γ‚Ήγƒ­γƒƒγƒˆγ«16倍γγ‚’γ‚€γƒ†γƒ γ‚„ζΆ²δ½“γ‚’ζ Όη΄γ§γγΎγ™γ€‚ε€§ι‡ε‡¦η†γ‚’θ‘Œγ†ε ΄εˆγ«ιžεΈΈγ«δΎΏεˆ©γ§γ™γ€‚", + "quests.ae2.assembler_matrix.desc": "&6η΅„η«‹γƒžγƒˆγƒͺックス&rγ―γ€γ‚«γ‚Ήγ‚Ώγƒžγ‚€γ‚Ίε―θƒ½γͺγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ε½’εΌγεˆ†ε­η΅„η«‹ζ©Ÿγ§γ™γ€‚γ“γγ‚―γ‚¨γ‚ΉγƒˆγTasksγ«ζ²Ώγˆγ°γ€εεˆ†γ«εΌ·εŠ›γͺγ‚‚γγ‚’η΅„γΏη«‹γ¦γ‚‰γ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚εΏ…θ¦γ«εΏœγ˜γ¦&bパターンコを&rγ‚„&aγ‚―γƒ©γƒ•γƒˆγ‚³γ‚’&rγ‚’θΏ½εŠ γ—γ¦ζ‹‘εΌ΅γ™γ‚‹γ“γ¨γ‚‚ε―θƒ½γ§γ™γ€‚\n\n詳しい情報は、ゲーム内ガむドで璺θͺγ—てください。", "quests.tasktype.checkmark": "Click here to complete this quest/task", "quests.tasktype.item.any": "Any Item of type:", "quests.tasktype.lookat": "Look at a:", @@ -1685,7 +1877,7 @@ "quests.create_logistics.rose_quartz_lens.desc": "γƒ¬γƒ³γ‚Ίγ‚’δ½œγ‚‹γŸγ‚γ«γ―&3旋盀&rγŒεΏ…θ¦γ§γ™γ€‚γ‚‚γ—&dη²Ύε·§γͺローズクォーツ&rγ‹γ‚‰δ½œγ‚‹γͺら&7εŸΊζœ¬εž‹ζ—‹η›€&rγ§εεˆ†γ§γ™γŒγ€γƒ—γƒ¬γƒΌγƒˆγ‹γ‚‰δ½œγ‚ŠγŸγ„ε ΄εˆγ―&bη™Ίε±•εž‹ζ—‹η›€&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\nεŒζˆγ—γŸγƒ¬γƒ³γ‚Ίγ‚’&3γƒ¬γƒΌγ‚ΆγƒΌεˆ»ε°ζ©Ÿ&rγ«γ‚»γƒƒγƒˆγ—γ¦&d2枚γθ΅€εˆι‡‘γγƒ—γƒ¬γƒΌγƒˆ&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γ§γ™γ€‚γ“γ‚Œγ‚’δ½Ώγ†γ“γ¨γ§ &dη‰©ζ΅γƒγƒƒγƒˆγƒ―γƒΌγ‚―&rを構築できます。 γ“γ‚Œγ‚’&3ζ’±εŒ…ζ©Ÿ&rγε΄ι’γ«ε–γ‚Šδ»˜γ‘γ‚‹γ¨γ€&aζ’±εŒ…ζ©ŸγŒζŽ₯ηΆšγ—γ¦γ„γ‚‹γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚’γƒγƒƒγƒˆγƒ―γƒΌγ‚―δΈŠγ‹γ‚‰γ‚’γ‚―γ‚»γ‚Ήγ§γγ‚‹γ‚ˆγ†γ«γ—γ¦γγ‚ŒγΎγ™&r! γ“γ‚Œγ―ε˜δ½“γ§γ―γ‚γΎγ‚Šε½Ήη«‹γ‘γΎγ›γ‚“γŒγ€εΎŒγ§η™»ε ΄γ™γ‚‹γ•γΎγ–γΎγͺη‰©ζ΅ζ©Ÿζ’°γεŸΊζœ¬γ¨γͺる重要γͺパーツです。\n\nθ¨­η½γ™γ‚‹ε‰γ«γ€ζ—’γ«γ‚γ‚‹γ‚Ήγƒˆγƒƒγ‚―γƒͺンクを右クγƒͺγƒƒγ‚―γ—γ¦γŠγγ¨γ€2γ€γ‚’εŒγ˜γƒγƒƒγƒˆγƒ―γƒΌγ‚―γ«ζŽ₯ηΆšγ•γ›γ‚‰γ‚ŒγΎγ™γ€‚ζŽ₯ηΆšγ‚’θ§£ι™€γ—γŸγ„ε ΄εˆγ―γ€γ‚Ήγƒˆγƒƒγ‚―γƒͺγƒ³γ‚―γ‚’ε˜δ½“γ§γ‚―γƒ©γƒ•γƒˆγ™γ‚Œγ°γƒͺγ‚»γƒƒγƒˆγ§γγΎγ™γ€‚", + "quests.create_logistics.stock_link.desc": "ζœ€εˆγ«δ½œγ‚Œγ‚‹&2ι«˜εΊ¦η‰©ζ΅θ£…η½&rは&3γ‚Ήγƒˆγƒƒγ‚―γƒͺンク&rγ§γ™γ€‚γ“γ‚Œγ‚’δ½Ώγ†γ“γ¨γ§&dη‰©ζ΅γƒγƒƒγƒˆγƒ―γƒΌγ‚―&rを構築できます。 γ“γ‚Œγ‚’&3ζ’±εŒ…ζ©Ÿ&rγε΄ι’γ«ε–γ‚Šδ»˜γ‘γ‚‹γ¨γ€&aζ’±εŒ…ζ©ŸγŒζŽ₯ηΆšγ—γ¦γ„γ‚‹γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚’γƒγƒƒγƒˆγƒ―γƒΌγ‚―δΈŠγ‹γ‚‰γ‚’γ‚―γ‚»γ‚Ήγ§γγ‚‹γ‚ˆγ†γ«γ—γ¦γγ‚ŒγΎγ™&r! γ“γ‚Œγ―ε˜δ½“γ§γ―γ‚γΎγ‚Šε½Ήη«‹γ‘γΎγ›γ‚“γŒγ€εΎŒγ§η™»ε ΄γ™γ‚‹γ•γΎγ–γΎγͺη‰©ζ΅ζ©Ÿζ’°γεŸΊζœ¬γ¨γͺる重要γͺパーツです。\n\nθ¨­η½γ™γ‚‹ε‰γ«γ€ζ—’γ«γ‚γ‚‹γ‚Ήγƒˆγƒƒγ‚―γƒͺンクを右クγƒͺγƒƒγ‚―γ—γ¦γŠγγ¨γ€2γ€γ‚’εŒγ˜γƒγƒƒγƒˆγƒ―γƒΌγ‚―γ«ζŽ₯ηΆšγ•γ›γ‚‰γ‚ŒγΎγ™γ€‚ζŽ₯ηΆšγ‚’θ§£ι™€γ—γŸγ„ε ΄εˆγ―γ€γ‚Ήγƒˆγƒƒγ‚―γƒͺγƒ³γ‚―γ‚’ε˜δ½“γ§γ‚―γƒ©γƒ•γƒˆγ™γ‚Œγ°γƒͺγ‚»γƒƒγƒˆγ§γγΎγ™γ€‚", "quests.create_logistics.stock_ticker.title": "γ‚Ήγƒˆγƒƒγ‚―γƒ†γ‚£γƒƒγ‚«γƒΌ", "quests.create_logistics.stock_ticker.subtitle": "24ζ™‚ι–“ε―ΎεΏœε³ζ—₯配達!送料焑料!", "quests.create_logistics.stock_ticker.desc.1": "すでに&3γ‚Ήγƒˆγƒƒγ‚―γƒͺンク&rを使って&dη‰©ζ΅γƒγƒƒγƒˆγƒ―γƒΌγ‚―&rγ‚’ζ§‹η―‰γ—γ¦γ„γ‚‹ε ΄εˆγ€ζ¬‘γ―γγ‚Œγ‚’εˆ©η”¨γ—γ€ι ιš”γ‹γ‚‰γ‚’γ‚€γƒ†γƒ γ‚’ζ³¨ζ–‡γ™γ‚‹δ»•η΅„γΏγ‚’δ½œγ‚ŠγΎγ—γ‚‡γ†γ€‚&3γ‚Ήγƒˆγƒƒγ‚―γƒ†γ‚£γƒƒγ‚«γƒΌ&rはそγγŸγ‚γγ‚’むテムです。 εŸΊζœ¬ηš„γͺδ½Ώγ„ζ–Ήγ―γ‚Ήγƒˆγƒƒγ‚―γƒͺγƒ³γ‚―γ¨εŒγ˜γ§γ™γ€‚γΎγšζ—’ε­˜γγ‚Ήγƒˆγƒƒγ‚―γƒͺンクを右クγƒͺγƒƒγ‚―γ—γ¦γƒγƒƒγƒˆγƒ―γƒΌγ‚―γ«ζŽ₯ηΆšγ•γ›γΎγ™γ€‚ 欑に&3γ‚Ήγƒˆγƒƒγ‚―γƒ†γ‚£γƒƒγ‚«γƒΌ&rγιš£γ«&3γƒ–γƒ¬γ‚€γ‚ΊγƒγƒΌγƒŠγƒΌ&rか、&3γ‚·γƒΌγƒˆ&rγ«εΊ§γ£γŸγƒ’γƒ–γ‚’θ¨­η½γ™γ‚‹γ¨γ€γγγƒ’γƒ–(γΎγŸγ―γƒγƒΌγƒŠγƒΌ)が &3倉庫η•ͺ&rγ¨γ—γ¦εƒγ„γ¦γγ‚ŒγΎγ™γ€‚", @@ -1748,10 +1940,10 @@ "quests.development.hull_mv.title": "&bMV時代&rγ§δ½œζˆε―θƒ½", "quests.development.hull_mv.subtitle": "Integrated Dynamics", "quests.development.hull_mv.desc.1": "&9集積&rε›žθ·―γ―γ€γ‚³γ‚ΉγƒˆγŒζ”Ήε–„γ•γ‚Œγ‚‹γ‚γ‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ζ¬‘γγƒ†γ‚£γ‚’へγθΆ³γŒγ‹γ‚Šγ«γͺγ‚ŠγΎγ™γ€‚\n\n作成には&3η™Ίε±•εž‹γƒ¬γƒΌγ‚ΆγƒΌεˆ»ε°ζ©Ÿ&rと&3η™Ίε±•εž‹θ£ζ–­ζ©Ÿ&rγŒεΏ…θ¦γ§γ™γ€‚", - "quests.development.hull_mv.desc.2": "&l&3伝承では...&r&o OmnifactoryγŠγ‚ˆγ³δ»₯前γGregicalityでは、こγε›žθ·―ラむンは&9Refined&rγ¨ε‘Όγ°γ‚Œγ¦γ¦γ€γ‚‚γ£γ¨δΈŠδ½γγƒ†γ‚£γ‚’γγ‚ˆγ†γ«ζ¨™ζΊ–εŒ–γ•γ‚Œγ¦γ„γΎγ—γŸγ‚‰γ—γ„γ‚ˆ...と伝わっています。", + "quests.development.hull_mv.desc.2": "&l&3δ½™θ«‡οΌš&r&oOmnifactoryとかγδ»₯前γGregでは、こγε›žθ·―ラむンは&9Refined&rγ¨ε‘Όγ°γ‚Œγ¦γ¦γ€γ‚‚γ£γ¨δΈŠδ½γγƒ†γ‚£γ‚’γγ‚ˆγ†γ«ζ¨™ζΊ–εŒ–γ•γ‚Œγ¦γ„γŸγ‚‰γ—γ„γ‚ˆγ€‚", "quests.development.hull_hv.title": "&bMV&rγŠγ‚ˆγ³&6HV&rγ§δ½œζˆε―θƒ½", "quests.development.hull_hv.subtitle": "γ‚«γƒ³γƒˆγƒͺγƒΌγƒžγ‚’γƒ γ¨εŒγ˜ι“γ‚’θΎΏγ£γ¦γ„γΎγ™", - "quests.development.hull_hv.desc": "&eγƒžγ‚€γ‚―γƒ­&rε›žθ·―γ‹γ‚‰γ―γ€&3γ‚―γƒͺーンルーム&rγŒεΏ…θ¦γ«γͺってきます。\n\n&aパむンフレーム&rには&3η™Ίε±•εž‹ε›žθ·―η΅„η«‹ζ©Ÿ&rγŒεΏ…θ¦γ«γͺγ‚‹γγ§ζ³¨ζ„γ—てください。", + "quests.development.hull_hv.desc": "&eγƒžγ‚€γ‚―γƒ­&rε›žθ·―γ‹γ‚‰γ―γ€&3γ‚―γƒͺーンルーム&rγŒεΏ…θ¦γ«γͺってきます。\n\n&aパむンフレーム&rには&3HVε›žθ·―η΅„η«‹ζ©Ÿ&rγŒεΏ…θ¦γ«γͺγ‚‹γγ§ζ³¨ζ„γ—てください。", "quests.development.hull_ev.title": "&5EV&rγ§δ½œζˆε―θƒ½", "quests.development.hull_ev.subtitle": "ここまで小さくγͺγ‚ŠγΎγ—γŸ", "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パむンフレーム", @@ -1764,1116 +1956,1173 @@ "quests.development.hull_zpm.title": "&cZPM&rγ§δ½œζˆε―θƒ½", "quests.development.hull_zpm.subtitle": "γ‚¦γ‚£γƒƒγƒˆγ«ε―Œγ‚“γ ", "quests.development.hull_zpm.desc": "γ“γ‚Œγ―&9γ‚¦γ‚§γƒƒγƒˆγ‚¦γ‚§γ‚’&rε›žθ·―γƒ©γ‚€γƒ³γ§γ™γ€‚\n\nこγmodpackγ§η›΄ι’γ™γ‚‹ζœ€ε€§γθ‡ͺε‹•εŒ–γθͺ²ι‘Œγ«γͺγ‚ŠγΎγ™γ€‚ι ‘εΌ΅γ£γ¦γγ γ•γ„γ€‚", - "quests.extreme_voltage": "&5EV&r - Extreme Voltage", - "quests.extreme_voltage.subtitle": "Reach Mars, discover Nuclear Fission, and build new massive multiblocks", - "quests.extreme_voltage.welcome_to_ev.title": "This is Extreme Voltage", - "quests.extreme_voltage.welcome_to_ev.subtitle": "Let's go Nuclear on Mars", - "quests.extreme_voltage.welcome_to_ev.desc.1": "You’ve built new &6chemistry lines&r, manufactured advanced &balloys&r, and even launched a &dRocket&r to reach the Moon. We hope you enjoyed the ride, because now things get even more complex, with powerful new machines and demanding processes ahead.\n\nIn the &5EV Chapter&r, your main objective will be to craft your very first &1IV&r and &dLuV&r Circuits.", - "quests.extreme_voltage.welcome_to_ev.desc.2": "Along the way, several key challenges await you:\n\nβ€’ Build your first &6Alloy Blast Smelter&r, a faster version of the EBF, specialized for alloys. With it, you’ll be able to construct your first Large Machine: the &6Large Centrifuge&r, essential for the Nuclear Fission Line. It also lets you upgrade ore processing with a faster Thermal Centrifuge.\n\nβ€’ Master our original &eTungsten Line&r - looping all the required materials will test both your knowledge and your patience.\n\nβ€’ Prepare to fly to &4Mars&r where you’ll become an &aextraterrestrial farmer&r while also learning to harness the &cpower of the atom&r.\n\nGood luck, this is where GregTech begins to show its true depth!", - "quests.extreme_voltage.distillation_tower.title": "The Distillation Tower", - "quests.extreme_voltage.distillation_tower.subtitle": "Mr. President, another Distillation Tower has hit the factory floor", - "quests.extreme_voltage.distillation_tower.desc.1": "&6The Distillation Tower&r (DT) is a direct multiblock upgrade of the &6Distillery&r. You won't have to choose outputs any more as the DT will handle them all automatically, at an increased power cost.\n\nThis machine will be your future bread and butter for anything involving &ePetrochem&r or &eOrganic distillation.", - "quests.extreme_voltage.distillation_tower.desc.2": "Like the &6Cleanroom&r, the DT can be made taller, though not wider. Starting from the second layer, each added level requires an &9Output Hatch&r and grants one additional fluid output slot; if a level lacks its output hatch, the corresponding fluid will be voided. Count the number of outputs with &dEMI&r so you know how many layers you need. As always, use the Multiblock Preview tab in &dEMI&r and click the multiblock to see where you can place each part.", - "quests.extreme_voltage.distillation_tower.desc.3": "&cNote:&r Be careful not to over-overclock the DT when producing fuels! Excessive overclocking can reduce the overall power yield, especially for Diesel. Do the math and double-check your calculations.", - "quests.extreme_voltage.cracker.subtitle": "You Crack Me Up", - "quests.extreme_voltage.cracker.desc": "The &3Cracker&r is a multiblock built with the sole purpose of cracking fluids. It comes with all the recipes of &3Chemical Reactor&r Cracking, but it is &6lossless&r.\n\nThis is a great way to save a lot of Fuel in the long term!\n\nHigher Coil tiers provide a small energy discount - up to 70%% with the best Coils available.", - "quests.extreme_voltage.ev_components.title": "Extreme Voltage Components", - "quests.extreme_voltage.ev_components.subtitle": "The \"Fun\" will never stop", - "quests.extreme_voltage.ev_components.desc": "&7By now, you should be getting used to the pattern with every new Energy Tier comes a fresh batch of components.&r\n\nThe &5EV&r tier comes with a few twists - first, &eNeodymium&r. You might already have some stored from your earlier mining trips, but you’ll also find it in large quantities when processing &eMonazite Ore&r.\n\nSecondly, Sensors and Emitters require &bCryogenized Fluix Pearls&r. Hopefully your &dMoon&r infrastructure is up and running to supply them efficiently.\n\nLastly, Motors require Kanthal wire. If you've been diligently upgrading your EBF, these should be significantly faster to craft than when you made them in MV (and you can recycle your old coils too!), but the Alloy Blast Smelter will be able to make this even faster.", - "quests.extreme_voltage.t2_rocket.title": "Rocket 2: Titanium Boogaloo", - "quests.extreme_voltage.t2_rocket.subtitle": "This one's purple", - "quests.extreme_voltage.t2_rocket.desc": "This new rocket shouldn’t be too difficult to assemble, but you’ll notice a clear jump in material costs compared to your previous model.\n\nThe upgraded &6Rocket Alloys&r now require both &bDistilled Water&r and &bCryogenized Fluix&r for cooling.\n\nMake sure you've fully set up your &eTitanium&r production line, as you're going to need a lot of it going forward! A continuous production line will save you a lot of frustration down the road.", - "quests.extreme_voltage.mars.title": "I'm on &4Mars&r!", - "quests.extreme_voltage.mars.subtitle": "The Red Planet", - "quests.extreme_voltage.mars.desc.1": "Before landing on &4Mars&r, there are a few important things to keep in mind.\n\nFirst, like the Moon, &4Mars&r will have some hostile surface mobs as well. If you haven't already figured out how to make your Space Suit stay with you after dying or invested in new EV-tier weaponry, you'll have a rough time.\n\nThe planet is mostly a &edesert world&r, dotted with \"&aislands&r\" where you’ll find &bwater&r, lush fauna, and much safer places to build your first base. Meanwhile, the open desert is extremely dangerous if you don't watch your step, but contains some other crucial resources!", - "quests.extreme_voltage.mars.desc.2": "All &bfluid veins&r are spread across Mars, except for &eHeavy Ammoniacial Water&r which can only be found outside of the desert. That’s another good reason to set up your base there.\n\nEnergy-wise, &4Mars&r will not be kind to you at first.\n\nNearly every common &6energy generation method&r is disabled or worthless on the planet, which means you’ll have to rely almost entirely on &cFission&r to power your base.\n\nAt the very beginning, we recommend bringing along some &bfilled batteries&r such as &bLapotron Crystals&r to get started, and then look towards setting up Thorium Fuel Rods.\n\nAchieving energy stability on Mars will take time and effort, but once your systems are running smoothly, you’ll feel like &9unlimited power&r is right in the palm of your hand.", - "quests.extreme_voltage.mars.desc.3": "And one last tip: don’t kill everything you see. Some &aanimals&r can be &franched&r, and you’ll definitely need them later in your progression.\n\nBe sure to check out the &aSpace Survival&r chapter for more Mars-related tips too!\n\nStay alert, plan ahead, and Mars will reward your courage.", + "quests.extreme_voltage": "&5EV&r - θΆ…ι«˜ι›»εœ§ζ™‚δ»£ ", + "quests.extreme_voltage.subtitle": "δΊΊγ―ιŽγ‘γ‚’ηΉ°γ‚ŠθΏ”γ™", + "quests.extreme_voltage.welcome_to_ev.title": "EVζ™‚δ»£γŒε§‹γΎγ‚‹", + "quests.extreme_voltage.welcome_to_ev.subtitle": "η«ζ˜Ÿγ«θ‘Œγγ€εŽŸε­εŠ›γ‚’ζŽŒζ‘γ›γ‚ˆ", + "quests.extreme_voltage.welcome_to_ev.desc.1": "あγͺたは高度γͺ&bεˆι‡‘&rγ‚’θ£½ι€ γ—γ€ε…ˆι€²ηš„γͺ&6η§‘ε­¦ζŠ€θ‘“&rを発達させ、さらには&dγƒ­γ‚±γƒƒγƒˆ&rγ‚’ζ‰“γ‘δΈŠγ’γ¦γ€γ„γ«γ―ζœˆγ«γΎγ§εˆ°ι”γ—γΎγ—γŸγ€‚γ“γ“γΎγ§γζ—…θ·―γ‚’ζ₯½γ—γ‚“γ§γ„γŸγ γ‘γŸγͺら幸いです。\n\nγ“γ‚Œγ‹γ‚‰γ―γ•γ‚‰γ«θ€‡ι›‘γ•γŒε’—γ—γ€γ‚ˆγ‚ŠεΌ·εŠ›γͺζ©Ÿζ’°γ‚„θ¦ζ±‚γεŽ³γ—γ„εŠ ε·₯γŒεΎ…γ‘ε—γ‘γ¦γ„γΎγ™γ€‚&5EV&rでは、&1IV&rε›žθ·―γ¨&dLuV&rε›žθ·―γ‚’δ½œγ‚‹γ“γ¨γŒδΈ»γͺη›ζ¨™γ¨γͺγ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.welcome_to_ev.desc.2": "EVを進めていくには、いく぀もγι‡θ¦γͺθͺ²ι‘ŒγŒεΎ…け受けています。\n\nβ€’&6εˆι‡‘ι«˜η‚‰&rγ‚’δ½œγ‚ŠγΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ―ι«˜ι€Ÿγͺεˆι‡‘η²ΎιŒ¬γ«η‰ΉεŒ–γ—γŸε€§εž‹ζ©Ÿζ’°γ§γ™γ€‚γγ—γ¦&6ε€§εž‹ι εΏƒεˆ†ι›’ζ©Ÿ&rに必要γͺεˆι‡‘γŒδ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\nε€§εž‹ι εΏƒεˆ†ι›’ζ©Ÿγ―η†±ι εΏƒεˆ†ι›’γ¨ι εΏƒεˆ†ι›’γδΈ‘ζ–Ήγ«ε―ΎεΏœγ—γ¦γŠγ‚Šγ€δΈ¦εˆ—εˆΆεΎ‘γƒ¦γƒ‹γƒƒγƒˆγ‚„γ‚¨γƒγƒγƒƒγƒγ§γζ˜‡εœ§γ‚’εˆ©η”¨γ—γ¦ι«˜ι€Ÿγ§ε‡¦η†γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚EVγ‚’ι€²γ‚γ‚‹δΈŠγ§γ―ζ Έεˆ†θ£‚η‚‰γƒ©γ‚€γƒ³γ«εΏ…ι ˆγ§γ™γ€‚\n\nβ€’TFG独θ‡ͺγ&eタングステンラむン&rを構築しましょう。εŒε…¨γͺεΎͺη’°εž‹γƒ©γ‚€γƒ³γ‚’η΅„γ‚€γ«γ―γ‹γͺγ‚ŠγηŸ₯θ­˜γ¨θ³‡ζΊγŒθ¦ζ±‚γ•γ‚ŒγΎγ™γ€‚\n\nβ€’&4火星&rγΈε‘γ‹γ†ζΊ–ε‚™γ‚’ζ•΄γˆγΎγ—γ‚‡γ†γ€‚η«ζ˜Ÿγ§γ―&aε›Ίζœ‰γη”Ÿζ…‹η³»&rγη†θ§£γ‚’深め぀぀、&cεŽŸε­εŠ›&rγ‚’ζ‰±γ†ζŠ€θ‘“γ‚‚θΊ«γ«γ€γ‘γ‚‹γ“γ¨γ«γͺγ‚ŠγΎγ™γ€‚\n\n幸運をη₯ˆγ‚ŠγΎγ™γ€‚γ“γ“γ‹γ‚‰ε…ˆγ€GregTechγζœ¬ι ˜γŒη™Ίζγ•γ‚Œγ¦γ„γγΎγ™οΌ", + "quests.extreme_voltage.distillation_tower.title": "θ’Έη•™ε‘”", + "quests.extreme_voltage.distillation_tower.subtitle": "蒸留豆腐", + "quests.extreme_voltage.distillation_tower.desc.1": "&6θ’Έη•™ε‘”&rは、&6θ’Έη•™ζ©Ÿ&rγε€§εž‹η‰ˆγ§γ™γ€‚θ’Έη•™ε‘”γδ½•γ‚ˆγ‚Šγεˆ©η‚Ήγ―、耇数γθ’Έη•™ε…ˆγγ™γΉγ¦γ‚’εŒζ™‚γ«η”Ÿη”£γ™γ‚‹γ“γ¨γŒγ§γγ‚‹η‚Ήγ§γ™γ€‚γ‚‚γ£γ¨γ‚‚γ€γγεˆ†ζΆˆθ²»ι›»εŠ›γ―ε’—εŠ γ—γ¦γ—γΎγ„γΎγ™γŒγ€‚\n\nこγθ£…η½γ―、&eηŸ³ζ²ΉεŒ–ε­¦&rγ‚„&eζœ‰ζ©Ÿθ’Έη•™&rに閒するあらゆるε·₯程γδΈ­ζ Έγ‚’担います。", + "quests.extreme_voltage.distillation_tower.desc.2": "&6γ‚―γƒͺーンルーム&rγγ‚ˆγ†γ«γ€θ’Έη•™ε‘”はァむズγζ‹‘εΌ΅ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚γŸγ γ—γ€ε€‰γˆγ‚‰γ‚Œγ‚‹γγ―ι«˜γ•γ γ‘γ§γ™γ€‚\n\nθ’Έη•™ε‘”γι«˜γ•γ‚’1ζ΅ι‡γ­γ‚‹γŸγ³γ«γ€&9搬出ハッチ&rγ‚’1γ€θΏ½εŠ γ™γ‚‹γ“γ¨γŒγ§γγ€ζΆ²δ½“γε‡ΊεŠ›γ‚Ήγƒ­γƒƒγƒˆγŒ1γ€γšγ€ε’—γˆγ¦γ„γγΎγ™γ€‚ζ¬ε‡ΊγƒγƒƒγƒγŒθ¨­η½γ•γ‚Œγ¦γ„γͺγ„ε±€γŒγ‚γ‚‹γ¨γ€γγε±€γ«ε―ΎεΏœγ™γ‚‹ζΆ²δ½“γ―η”Ÿη”£γ•γ‚ŒγΎγ›γ‚“γ€‚\n\n&dEMI&rでレシピγε‡ΊεŠ›γ‚Ήγƒ­γƒƒγƒˆγζ•°γ‚’η’Ίθͺγ—、必要γͺιšŽε±€ζ•°γ‚’ζŠŠζ‘γ—γΎγ—γ‚‡γ†γ€‚γ„γ€γ‚‚γγ‚ˆγ†γ«γ€&dEMI&rγγƒžγƒ«γƒγƒ–ロック情報で、構造を璺θͺγ§γγΎγ™γ€‚そγιš›γ€ε³δΈŠγP:0γθ‘¨η€Ίγ‚’γ‚―γƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€ι«˜γ•γ‚’ε€‰γˆγŸιš›γζ§‹ι€ γ¨εΏ…要γͺ資材数を璺θͺγ§γγΎγ™", + "quests.extreme_voltage.distillation_tower.desc.3": "&cγƒ‘γƒ’οΌš&r燃料γη”Ÿη”£γ«εˆ©η”¨γ™γ‚‹ιš›γ€ιŽεΊ¦γ«γ‚ͺーバークロックしγͺγ„γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚γ‚ͺγƒΌγƒγƒΌγ‚―γƒ­γƒƒγ‚―γ§η·ζΆˆθ²»ι›»εŠ›γŒε’—γˆγ¦γ—γΎγ†γŸγ‚γ€η™Ίι›»γεŽζ”―γŒζΈ›ε°‘γ—γ¦γ—γΎγ„γΎγ™γ€‚θ΅€ε­—γ«γͺらγͺγ„γ‚ˆγ†γ«η™Ίι›»ι‡γ¨ζΆˆθ²»ι›»εŠ›γγƒγƒ©γƒ³γ‚Ήγ‚’θ¨ˆη—してみましょう。", + "quests.extreme_voltage.cracker.subtitle": "η‡ƒζ–™η”Ÿη”£γ‚‚γ‚‰γ£γγ‚‰γ", + "quests.extreme_voltage.cracker.desc": "&3クラッカー&rは、梲体γεˆ†θ§£οΌˆγ‚―γƒ©γƒƒγ‚­γƒ³γ‚°οΌ‰γ«η‰ΉεŒ–γ—γŸε€§εž‹ζ©Ÿζ’°γ§γ™γ€‚&3εŒ–ε­¦εεΏœε™¨&rγ§θ‘Œγ†γ‚―γƒ©γƒƒγ‚­γƒ³γ‚°γ‚’&6損倱γͺし&rγ§ε‡¦η†γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nι•·ζœŸηš„γ«θ¦‹γ‚Œγ°γ€η‡ƒζ–™γ‚’ε€§εΉ…γ«η―€η΄„γ§γγΎγ™γ€‚\n\nι«˜ε“θ³ͺγͺコむルを使用することで、エネルγ‚γƒΌζΆˆθ²»γ‚’ζŠ‘γˆγ‚‹γ“γ¨γŒγ§γγ€ζœ€δΈŠδ½γγ‚³γ‚€γƒ«γ§γ―ζœ€ε€§70οΌ…γŠεΎ—γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.ev_components.title": "EVγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ", + "quests.extreme_voltage.ev_components.subtitle": "ζ–°γŸγͺ刺ε’たけ", + "quests.extreme_voltage.ev_components.desc": "&7ここまでζ₯γ‚Œγ°γ€ι›»εœ§γŒδΈŠγŒγ‚‹γŸγ³γ«ζ–°γ—γ„γ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγŒη™»ε ΄γ™γ‚‹ζ΅γ‚Œγ«γ‚‚ζ…£γ‚Œγ¦γγŸγ“γ¨γ§γ—γ‚‡γ†γ€‚&r\n\n&5EV&rγƒ†γ‚£γ‚’γ§γ―ζ–°γ—γ„η΄ ζγŒθ¦ζ±‚γ•γ‚ŒγΎγ™γ€‚\nまずは&eネγ‚ͺγ‚Έγƒ &rγ§γ™γ€‚ι‰±θ„ˆγ‹γ‚‰ζŽ˜γ‚Šε‡Ίγ™γ“γ¨γ‚‚γ§γγΎγ™γ—γ€&eγƒ’γƒŠγ‚Άγ‚€γƒˆ&rを処理することでも倧量にε…₯手できます。\nγ‚»γƒ³γ‚΅γƒΌγ¨γ‚¨γƒŸγƒƒγ‚ΏγƒΌγ«γ―&bθΆ…δ½ŽζΈ©γƒ•γƒ«γƒΌγ‚·γƒ₯パール&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚&d月青&r基地γε»Ίι€ γŒεŒδΊ†γ—γ¦γ„γ‚Œγ°γ€ε›°γ‚‹γ“γ¨γ―γͺいと思います。\nγƒ’γƒΌγ‚ΏγƒΌγθ£½δ½œγ«γ―γ‚«γƒ³γ‚Ώγƒ«γƒ―γ‚€γƒ€γƒΌγŒεΏ…θ¦γ§γ™γ€‚EBFγ‚’γ—γ£γ‹γ‚Šγ¨γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ—γ¦γγŸγͺら、MVγγ¨γγ‚ˆγ‚Šγ‚‚γšγ£γ¨ζ—©γδ½œγ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚εˆι‡‘ι«˜η‚‰γŒγ‚γ‚Œγ°γ€εˆι‡‘η²ΎιŒ¬γ‚’ι«˜ι€Ÿγ§ε‡¦η†γ§γγΎγ™γ€‚", + "quests.extreme_voltage.t2_rocket.title": "2η­‰η΄šγƒ­γ‚±γƒƒγƒˆ", + "quests.extreme_voltage.t2_rocket.subtitle": "ε‡ε™θˆΉη«ζ˜Ÿε·", + "quests.extreme_voltage.t2_rocket.desc": "こγζ–°εž‹γƒ­γ‚±γƒƒγƒˆγ―、前γγƒ’γƒ‡γƒ«γ¨ζ―”γΉγ¦δ½œζˆγ‚³γ‚ΉγƒˆγŒε€§εΉ…γ«θ·³γ­δΈŠγŒγ‚ŠγΎγ™γ€‚\n\nζ–°γŸγͺ&6γƒ­γ‚±γƒƒγƒˆεˆι‡‘&rは、冷却γγŸγ‚γ«&bθ’Έη•™ζ°΄&rと&bθΆ…δ½ŽζΈ©ζΆ²εŒ–γƒ•γƒ«γƒΌγ‚·γƒ₯&rγδΈ‘方を必要とします。\n\n今後は&eチタン&rを倧量に使うことにγͺγ‚‹γŸγ‚γ€η”Ÿη”£γƒ©γ‚€γƒ³γθ‡ͺε‹•εŒ–γͺγ©γ«ζ³¨εŠ›γ™γ‚‹γγ‚‚いいでしょう。", + "quests.extreme_voltage.mars.title": "&4火星&rδΈŠι™Έ", + "quests.extreme_voltage.mars.subtitle": "γƒ†γƒ©γƒ•γ‚©γƒΌγƒžγƒΌγ‚―γƒ©γƒ•γƒˆ", + "quests.extreme_voltage.mars.desc.1": "&4火星&rγ«ι™γ‚Šη«‹γ€ε‰γ«γ€γ„γγ€γ‹ι‡θ¦γͺζ³¨ζ„η‚ΉγŒγ‚γ‚ŠγΎγ™γ€‚\n\nγΎγšγ€ζœˆγ¨εŒγ˜γ‚ˆγ†γ«&4火星&rγ§γ‚‚ζ•΅ε―Ύηš„γͺγƒ’γƒ–γŒε‡ΊηΎγ—γΎγ™γ€‚ε‡ε™ζœγ‚’ζ­»δΊ‘εΎŒγ‚‚δΏζŒγ§γγ‚‹γ‚ˆγ†γ«γ—γ¦γ„γͺγ‹γ£γŸγ‚Šγ€EVティを相当γζ–°γ—い武器を用意していγͺγ„ε ΄εˆγ―γ€γ‹γͺγ‚Šθ‹¦ζˆ¦γ™γ‚‹γ§γ—γ‚‡γ†γ€‚\n\nη«ζ˜Ÿγ―εŸΊζœ¬ηš„γ«&eη ‚εœ°γζƒ‘ζ˜Ÿ&rγ§γ™γŒγ€γγδΈ­γ«&aγ‚ͺγ‚’γ‚·γ‚Ή&rγ¨γ‚‚ε‘ΌγΉγ‚‹γ‚ˆγ†γͺ&bζ°΄&rγ¨θ±Šγ‹γͺε‹•ζ€η‰©γŒε­˜εœ¨γ™γ‚‹ε‰ε…¨γͺεœ°εŸŸγŒη‚Ήεœ¨γ—γ¦γ„γΎγ™γ€‚εŸΊεœ°γ‚’ε»Ίγ¦γ‚‹γ«γ―ζœ€ι©γ§γ™γ€‚\n\nδΈ€ζ–Ήγ§γ€η ‚ζΌ εœ°εΈ―γ―ιžεΈΈγ«ε±ι™Ίγ§γ€θΆ³ε…ƒγ«ζ³¨ζ„γ—γͺγ‘γ‚Œγ°ε‘½ε–γ‚Šγ«γͺγ‚‹γ“γ¨γ‚‚γ‚γ‚ŠγΎγ™γŒγ€γγ“γ«γ―ι‡θ¦γͺθ³‡ζΊγ‚‚ηœ γ£γ¦γ„γΎγ™οΌ", + "quests.extreme_voltage.mars.desc.2": "&bζΆ²δ½“ι‰±θ„ˆ&rγ―η«ζ˜Ÿε…¨δ½“γ«εˆ†εΈƒγ—γ¦γ„γΎγ™γŒγ€&eγ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚Šγι‡ζ°΄&rγ γ‘γ―η ‚ζΌ εœ°εΈ―γε€–γ§γ—γ‹θ¦‹γ€γ‹γ‚ŠγΎγ›γ‚“γ€‚γ“γ‚Œγ‚‚γΎγŸγ€εŸΊεœ°γ‚’η ‚ζΌ γε€–に建てるべき理由γδΈ€γ€γ§γ™γ€‚\n\n&4火星&rではエネルγ‚γƒΌι’γ«γŠγ„γ¦ζœ€εˆγ―γ‹γͺγ‚Šθ‹¦εŠ΄γ™γ‚‹γ§γ—γ‚‡γ†γ€‚δΈ€θˆ¬ηš„γͺ&6発電方法&rγγ»γ¨γ‚“γ©γŒγ“γζƒ‘ζ˜Ÿγ§γ―使えγͺγ„γ€γ‚‚γ—γγ―γΎγ£γŸγε½Ήγ«η«‹γŸγͺγ„γŸγ‚γ€η«ζ˜Ÿγ§γη™Ίι›»γ―ほぼεŒε…¨γ«&cζ Έεˆ†θ£‚η‚‰&rに頼ることにγͺγ‚ŠγΎγ™γ€‚\n&bγƒ©γƒγƒˆγƒ­γƒ³γ‚―γƒͺスタル&rγͺどγ&bε……ι›»ζΈˆγΏγƒγƒƒγƒ†γƒͺγƒΌ&rγ‚’εˆε‹•γι›»ζΊγ¨γ—γ¦ζŒγ£γ¦γ„γγ€γƒˆγƒͺウム燃料棒でγζ Έεˆ†θ£‚炉γι‹η”¨γ‚’η›ζŒ‡γ™γγŒγŠγ™γ™γ‚γ§γ™γ€‚\n\nη«ζ˜Ÿγ§ι›»εŠ›γ‚’ε‰εšδΎ›η΅¦γ§γγ‚‹γ‚ˆγ†γ«γ™γ‚‹γ«γ―ζ™‚ι–“γ¨ζ‰‹ι–“γŒγ‹γ‹γ‚ŠγΎγ™γŒγ€γ™γΉγ¦γγ‚·γ‚Ήγƒ†γƒ γŒι †θͺΏγ«η¨Όεƒγ—ε§‹γ‚γŸγ¨γγ€γ‚γͺγŸγ―γΎγ‚‹γ§&9焑限γεŠ›&rγ‚’ζ‰‹γ«γ—γŸγ‚ˆγ†γ«ζ„Ÿγ˜γ‚‹γ§γ—γ‚‡γ†γ€‚", + "quests.extreme_voltage.mars.desc.3": "ζœ€εΎŒγ«γ‚‚γ†δΈ€γ€γγ‚’ドバむスです。動物は倧事にしましょう。中には&aεΆη•œ&rとして&f飼いγͺらす&rγ“γ¨γŒγ§γγ‚‹ε‹•η‰©γ‚‚γŠγ‚Šγ€εΎŒγι€²θ‘Œγ§εΏ…γšεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€γ€Œ&aε‡ε™γγ‚γ‚‹γγ‹γŸ&r」γη« γ«γ‚‚η«ζ˜Ÿγ§γη”Ÿζ΄»γ«ι–’γ™γ‚‹ζƒ…ε ±γŒγ‚γ‚‹γγ§γ€γœγ²η’Ίθͺγ—てみてください。\n\nεΈΈγ«θ­¦ζˆ’γ‚’ζ€ γ‚‰γšγ€θ¨ˆη”»ηš„γ«θ‘Œε‹•γ™γ‚Œγ°γ€η«ζ˜Ÿγ―γ‚γͺたγε‹‡ζ°—γ«εΏ…γšε ±γ„γ¦γγ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚", "quests.extreme_voltage.mars.task": "Land on Mars", - "quests.extreme_voltage.nuclear_fuel_factory.title": "Nuclear Fuel Factory", - "quests.extreme_voltage.nuclear_fuel_factory.subtitle": "Hot Rod", - "quests.extreme_voltage.nuclear_fuel_factory.desc": "The &6Nuclear Fuel Factory&r has one purpose: producing fuel rods for your &cFission Reactor&r.\n\nIt supports &9Parallel Hatches&r which you’ll unlock soon but they aren’t mandatory yet. Functionally, it works much like the Pyrolyse Oven: the &ebetter the coils&r you install, the faster the recipes will run.\n\nSince fuel rod production is both &cslow&r and &cexpensive&r, we strongly recommend using the &ahighest tier coils&r available. Don’t waste your time with Cupronickel, you’ll only be nerfing yourself.", - "quests.extreme_voltage.heavy_water.title": "Heavy Water", - "quests.extreme_voltage.heavy_water.subtitle": "Water for the Hardcore", - "quests.extreme_voltage.heavy_water.desc": "To run your Fission Reactor, you’ll need a steady supply of &bHeavy Water&r, and there’s only one place to find it.\n\nIt’s located in &adeep fluid veins&r found exclusively beneath the &alush islands&r of Mars. Grab your &6Ore Prospector&r, switch it to &bFluid Mode&r, and start scanning.\n\nBecause the amount of &bHeavy Water&r required to keep your reactor running is enormous, you should seriously consider investing in a &6Large Centrifuge&r to produce it yourself.\n\nInstall a &516A EV Energy Hatch&r, and you’ll be ready for true mass production ensuring your reactor never runs dry.\n\nReliable cooling means reliable power - build smart!", - "quests.extreme_voltage.nuclear_turbine.title": "Nuclear Steam Turbine", - "quests.extreme_voltage.nuclear_turbine.subtitle": "Steam power's back, baby", - "quests.extreme_voltage.nuclear_turbine.desc": "With Fission, you gain access to a brand new &6Dedicated Turbine&r! (The normal Large Steam Turbine can only handle regular Steam.)\n\nIt works just like the previous turbines, but similar to the Gas Turbine, it requires at least an &5EV Rotor Holder&r to operate.\n\nThe coils inside this turbine must be &7Cupronickel&r, and they don’t affect performance in any way (but we have to admit, they look pretty good).\n\nIn this quest, we suggest two &aRotors&r that fit nicely for the turbine at this stage, but feel free to experiment and use any &brotor&r that suits your setup best.", - "quests.extreme_voltage.reactor_components.title": "Reactor Heat Management", - "quests.extreme_voltage.reactor_components.subtitle": "Active and Passive ways to cool your reactor", - "quests.extreme_voltage.reactor_components.desc.1": "One of the most interesting features of the Fission Reactor is its ability to have blocks added inside to modify its &emaximum heat capacity&r.\n\nYou can place certain &6Component Blocks&r within the corners of the reactor, allowing for up to &e20 blocks&r in total. As an example, you can use &9Item Holders&r and insert cooling items with input buses, which help manage heat buildup.\n\nIt’s also important to note that Item Holders are the &conly way&r to enable the &brecipe processing&r part of the Fission Reactor.\n\nSmart internal configuration will make the difference between a stable reactor and one on cooldown, so plan your layout carefully!", - "quests.extreme_voltage.reactor_components.desc.2": "As discussed earlier, running three &eThorium Rods&r will push your reactor’s heat to around &c420&r, just above the default limit. However, you can safely reach that threshold by improving your &6reactor insulation&r.&r\n\nAdding &e10 Framed Glacial Wool&r or &e20 Framed AES Insulation&r blocks inside the structure will raise your reactor’s Max Heat to &e420&r, allowing you to operate with three Thorium Rods without triggering cooldown mode.&r\n\nKeep in mind, though, that increasing the number of active rods will also accelerate their &adurability loss&r. This means each rod will produce less steam per tick on average, reducing its &aefficiency&r, but on the other hand, it will &bspeed up fission material production&r significantly.\n\nWhether you prefer &aefficiency&r or &bthroughput&r is entirely up to you - that’s the balancing act at the heart of mastering the &6Fission Reactor&r.", - "quests.extreme_voltage.heat_exchanger.title": "Heat Exchanger", - "quests.extreme_voltage.heat_exchanger.subtitle": "All that heat's gotta go somewhere!", - "quests.extreme_voltage.heat_exchanger.desc.1": "The &6Heat Exchanger&r is a critical component for the next step of your Fission Line - not only for cooling, but also for producing more &eHigh Pressure Steam&r, the steam that powers your Nuclear Turbine.\n\nIt features &bPerfect Overclocking&r and &bSubtick Processing&r. If these terms sound unfamiliar, we strongly recommend reviewing the &dGregTech Energy Chapter&r to fully understand how they affect performance.", - "quests.extreme_voltage.heat_exchanger.desc.2": "Don’t hold back! Install a &516A EV Energy Hatch&r right from the start so you’ll never have to worry about speed or throughput limitations.\n\nWe also provide you with a &9Machine Controller&r to attach to your Heat Exchanger’s main controller. We’ve noticed that the machine can sometimes disable itself unexpectedly, so be sure to enable &ePrevent Power Failing&r. This will counter the GregTech mechanic that shuts down machines when they momentarily lose power.", - "quests.extreme_voltage.refrigerant_pellet.title": "Refrigerant Pellets", - "quests.extreme_voltage.refrigerant_pellet.subtitle": "A temporary solution to extreme temperatures", - "quests.extreme_voltage.refrigerant_pellet.desc": "The &dPlutonium Fuel Rod&r runs at extremely high temperatures - so high, in fact, that you’ll need to use &bRefrigerant Pellets&r inside your reactor to prevent it from going into cooldown mode.\n\nThese pellets are quite expensive to produce, but you should still be able to mass-produce them early on, or at least enough to keep your first few plutonium rods operational. You need approximatively &9256&r to run a full Plutonium Rod.\n\nLater on, if you don’t like constantly crafting these consumables, you’ll gain access to &6advanced reactor components&r. With those installed, your reactor will be able to safely reach up to &e600 Max Heat&r, greatly improving efficiency and stability.\n\nInvest in better internal parts early, to spend less time babysitting your power core.", - "quests.extreme_voltage.important_info.title": "Before starting", - "quests.extreme_voltage.important_info.subtitle": "Not an easy place to start", - "quests.extreme_voltage.important_info.desc.1": "Before you start building your base on &cMars&r, here are a few important tips to help you settle in successfully.&r\n\nWhile exploring, you might come across &6Martian Ruins&r containing &eAtomic Casings&r and &eHigh Temperature Casings&r. These won’t replace the massive number you’ll need later, but they can give you a small head start while scouting for the perfect base location.&r", - "quests.extreme_voltage.important_info.desc.2": "When it comes to your Martian infrastructure, there are two main approaches:&r\n\nβ€’ &aPreparation-focused&r: Build everything required for your full &6Fission Line&r before establishing your base. This means an enormous material investment, but allows you to be self-sufficient once operational.\n\nβ€’ &aProgressive setup&r: Start smaller with your &6Nuclear Fuel Factory&r, your first &6Fission Reactor&r (running on &eThorium&r), and a &6Nuclear Turbine&r. This route is faster to start, but managing energy will be rough until your fission system stabilizes.\n\nEither way, we always recommend having an exploration mission before you start settling down!", - "quests.extreme_voltage.important_info.desc.3": "Because every kind of combustion-based energy won't work on Mars, you’ll want to bring a good stock of &bLapotron Crystals&r to power your first recipes and oxygen systems.\n\nWe also strongly recommend setting up a &6Distillation Tower&r. &eMartian Air&r can be processed into breathable &bAir&r and several other useful gases. Alternatively, everything for Compressed Nitrox can come from the local Semiheavy Ammoniacal Water.\n\nSurvival on Mars isn’t about luck, it’s about preparation!", + "quests.extreme_voltage.nuclear_fuel_factory.title": "ζ Έη‡ƒζ–™ε½’ζˆζ©Ÿ", + "quests.extreme_voltage.nuclear_fuel_factory.subtitle": "危険γͺ熱い棒", + "quests.extreme_voltage.nuclear_fuel_factory.desc": "&6ζ Έη‡ƒζ–™ε½’ζˆζ©Ÿ&rは、&cζ Έεˆ†θ£‚η‚‰&r用γη‡ƒζ–™ζ£’γ‚’δ½œγ‚‹γŸγ‚γζ©Ÿζ’°γ§γ™γ€‚\n\nε‹•δ½œγδ»•η΅„γΏγ―η†±εˆ†θ§£η‚‰γ¨γ»γΌεŒγ˜γ§γ€&eγ‚ˆγ‚Šι«˜ζ€§θƒ½γͺコむル&rγ‚’δ½Ώγ†γ»γ©ε‡¦η†ι€ŸεΊ¦γŒι€Ÿγγͺγ‚ŠγΎγ™γ€‚η‡ƒζ–™ζ£’γθ£½ι€ γ―&cιžεΈΈγ«ι…γ&r、&cζΆˆθ²»ι›»εŠ›γ‚‚ε€šγ„&rγŸγ‚γ€ε―θƒ½γͺι™γ‚Š&a上位γγ‚³γ‚€γƒ«&rγ‚’δ½Ώγ†γ“γ¨γ‚’εΌ·γγŠγ™γ™γ‚γ—γΎγ™γ€‚\n\nγ‚‚γ†γ™γθ§£η¦γ•γ‚Œγ‚‹&9δΈ¦εˆ—εˆΆεΎ‘γƒ¦γƒ‹γƒƒγƒˆ&rγ«γ‚‚ε―ΎεΏœγ—γ¦γ„γΎγ™γŒγ€ηΎζ™‚η‚Ήγ§γ―δ½Ώγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.extreme_voltage.heavy_water.title": "重水", + "quests.extreme_voltage.heavy_water.subtitle": "ι‡γŸγ„γŠζ°΄", + "quests.extreme_voltage.heavy_water.desc": "ζ Έεˆ†θ£‚η‚‰γ‚’ε‹•γ‹γ™γ«γ―γ€&b重水&rγ‚’ε‰εšγ—γ¦δΎ›η΅¦γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ—γ‹γ—γ€ι‡ζ°΄γ‚’η›΄ζŽ₯ζŽ‘ε–γ§γγ‚‹γγ―火星γ&alush_islands&rγζΆ²δ½“ι‰±θ„ˆγ γ‘γ§γ™γ€‚&6η™Ίε±•εž‹ι›»ε‹•ζŽ’ζŸ»ζ©Ÿ&rγ&bζΆ²δ½“ζŽ’ηŸ₯ヒード&rγ§θ¦‹γ€γ‘γ‚‰γ‚ŒγΎγ™γ€‚\n\nεŽŸε­η‚‰γ‚’η¨Όεƒγ•γ›ηΆšγ‘γ‚‹γŸγ‚γ«γ―θ†¨ε€§γͺ量γ&b重水&rγŒεΏ…θ¦γͺγγ§γ€&6ι εΏƒεˆ†ι›’&rでγη’ΊδΏγγŸγ‚γ«ε€§εž‹ι εΏƒεˆ†ι›’ζ©Ÿγ‚’ε°Žε…₯γ™γ‚‹γ“γ¨γ‚‚ζ€œθ¨Žγ—γΎγ—γ‚‡γ†γ€‚&5EV16Aエネルγ‚ーハッチ&rγ§η¨Όεƒγ•γ›γ‚Œγ°γ€ζœ¬ζ Όηš„γͺε€§ι‡η”Ÿη”£γŒγ§γγ€ζ Έεˆ†θ£‚η‚‰γε†·ε΄γŒι€”εˆ‡γ‚Œγ‚‹εΏƒι…γ‚‚γͺくγͺγ‚ŠγΎγ™γ€‚\n\nε†·ε΄γŒε‰εšγ™γ‚Œγ°γ€ι›»εŠ›γ‚‚ε‰εšγ—γΎγ™γ€‚θ¨ˆη”»ηš„γ«θ¨­ε‚™γ‚’ζ•΄γˆγΎγ—γ‚‡γ†οΌ", + "quests.extreme_voltage.nuclear_turbine.title": "εŽŸε­εŠ›θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³", + "quests.extreme_voltage.nuclear_turbine.subtitle": "θ’Έζ°—ζ™‚δ»£γŒεΈ°γ£γ¦γγŸγœ", + "quests.extreme_voltage.nuclear_turbine.desc": "ζ Έεˆ†θ£‚γƒ©γ‚€γƒ³γ§γη™Ίι›»γ§γ―&6専用γγ‚ΏγƒΌγƒ“ン&rγ‚’δ½Ώγ„γΎγ™γ€‚οΌˆζ™ι€šγε€§εž‹θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³γ§γ―ι€šεΈΈγθ’Έζ°—γ—γ‹ζ‰±γˆγΎγ›γ‚“γ€‚οΌ‰\n\nε‹•δ½œθ‡ͺδ½“γ―γ“γ‚ŒγΎγ§γγ‚ΏγƒΌγƒ“γƒ³γ¨εŒγ˜γ§γ™γŒγ€γ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³εŒζ§˜γ€ζœ€δ½Žγ§γ‚‚&5EVローターホルダー&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚ε†…ιƒ¨γγ‚³γ‚€γƒ«γ―&7γ‚­γƒ₯プロニッケル&rでγͺγ‘γ‚Œγ°γͺγ‚‰γšγ€ζ€§θƒ½γ«γ―ε½±ιŸΏγ—γΎγ›γ‚“(θ¦‹γŸη›γŒγ„いというだけですね)。\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€γ“γζ΅ιšŽγ§δ½Ώγ„やすい&aγƒ­γƒΌγ‚ΏγƒΌ&rγ‚’2η¨ι‘žη΄Ήδ»‹γ—γ¦γ„γΎγ™γŒγ€γ‚‚γ‘ろん他γθ‡ͺεˆ†γŒδ½Ώγ„γŸγ„&bγƒ­γƒΌγ‚ΏγƒΌ&rを使って構いません。", + "quests.extreme_voltage.reactor_components.title": "ζ Έεˆ†θ£‚η‚‰γη†±η‘理", + "quests.extreme_voltage.reactor_components.subtitle": "冷却手ζ΅γγ„ろは", + "quests.extreme_voltage.reactor_components.desc.1": "ζ Έεˆ†θ£‚η‚‰γ«γ―γ€ε†…ιƒ¨γ«η‰Ήεšγγƒ–ロックを硄み込んで&e耐熱許εΉι‡&rγ‚’θͺΏζ•΄γ§γγ‚‹γ¨γ„う独特γͺδ»•η΅„γΏγŒγ‚γ‚ŠγΎγ™γ€‚\n\n炉内γε››ιš…γιƒ¨εˆ†γ«γ―ζœ€ε€§&e20ブロック&rまで&6γ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγƒ–γƒ­γƒƒγ‚―&rγ‚’θ¨­η½γ§γγ€γŸγ¨γˆγ°&9Material_Holders&rγ«ε†·ε΄ζγ‚’ζŠ•ε…₯γ—γ¦ε†·ε΄γ™γ‚‹γ€γ¨γ„γ£γŸγ“γ¨γŒγ§γγΎγ™γ€‚Material_Holdersγ―γ€ζ Έεˆ†θ£‚η‚‰γ§γ&bレシピ処理&rγ‚’θ‘Œγ†γŸγ‚γ&cε”―δΈ€γζ‰‹ζ΅&rγ§γ‚‚γ‚γ‚ŠγΎγ™γ€‚\n\nε‰εšη¨ΌεƒγŒγ§γγ‚‹γ‹γ©γ†γ‹γ―内部γζ§‹ζˆζ¬‘第です。配η½γ―γ‚ˆγθ€ƒγˆγ¦θ‘Œγ†γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚", + "quests.extreme_voltage.reactor_components.desc.2": "&eγƒˆγƒͺウム燃料棒&rγ‚’3ζœ¬εŒζ™‚γ«δ½Ώγ†γ¨γ€η†±ι‡γ―η΄„&c420&rγ«ι”γ—γ€γƒ‡γƒ•γ‚©γƒ«γƒˆγδΈŠι™γ‚’ε°‘γ—θΆ…γˆγ¦γ—γΎγ„γΎγ™γ€‚γ—γ‹γ—γ€&6耐熱フレーム&rγ‚’η΅„γΏθΎΌγ‚€γ“γ¨γ§γ€ι«˜ζΈ©γ§γ‚‚ε‰ε…¨γ«ε‹•かせます。\n\n内部に&e10個γζ°·ε‘ŠηΎŠζ―›γθ€η†±γƒ•レーム&rγ€γΎγŸγ―&e20個γAESγθ€η†±γƒ•レーム&rγ‚’η΅„γΏθΎΌγ‚€γ“γ¨γ§ζœ€ε€§η†±δΈŠι™γŒ&e420&rγ«εΌ•γδΈŠγŒγ‚Šγ€3本でγη¨Όεƒγ§γ‚‚γ‚―γƒΌγƒ«γƒ€γ‚¦γƒ³γ«γ‚ˆγ‚‹η¨Όεƒεœζ­’γ—γͺくγͺγ‚ŠγΎγ™γ€‚\n\nγŸγ γ—γ€η‡ƒζ–™ζ£’γζœ¬ζ•°γŒε’—γˆγ‚‹γ¨&aθ€δΉ…ζΆˆθ€—&rγŒζ—©γι€²γ‚€γŸγ‚γ€1ζœ¬γ‚γŸγ‚Šγ‹γ‚‰γθ’Έζ°—η”Ÿη”£ι‡γ―ζΈ›γ‚Šγ€&aεŠΉηŽ‡&rは落けてしまいます。そγδ»£γ‚γ‚Šγ€&bζ Έεˆ†θ£‚η΄ ζγη”Ÿζˆι€ŸεΊ¦&rγ―ε€§εΉ…γ«ε‘δΈŠγ™γ‚‹γŸγ‚γ€γ©γ‘γ‚‰γ‚’ι‡θ¦–γ™γ‚‹γ‹γ―γƒ—γƒ¬γ‚€γ‚Ήγ‚Ώγ‚€γƒ«ζ¬‘η¬¬γ§γ™γ€‚\n\nεŠΉηŽ‡γ‹ι€ŸεΊ¦γ‹...こγθͺΏζ•΄γε¦™γ“γγŒγ€&6ζ Έεˆ†θ£‚η‚‰&rを使いこγͺγ™γ†γˆγ§ι‡θ¦γͺ点です。", + "quests.extreme_voltage.heat_exchanger.title": "η†±δΊ€ζ›ζ©Ÿ", + "quests.extreme_voltage.heat_exchanger.subtitle": "熱エネルγ‚γƒΌγη§»ε‹•", + "quests.extreme_voltage.heat_exchanger.desc.1": "&6η†±δΊ€ζ›ζ©Ÿ&rγ―γ€ζ Έεˆ†θ£‚η‚‰ι‹η”¨γ‚’ζ¬‘γζ΅ιšŽγΈι€²γ‚γ‚‹γ†γˆγ§ιžεΈΈγ«ι‡θ¦γͺζ©Ÿζ’°γ§γ™γ€‚ε†·ε΄γ«δ½Ώγˆγ‚‹γ γ‘γ§γͺγγ€εŽŸε­εŠ›θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³γ‚’ε‹•γ‹γ™γŸγ‚γ&eι«˜εœ§θ’Έζ°—&rγ‚’δ½œγ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγΎγŸγ€γ“γζ©Ÿζ’°γ―&bPOC&rと&bァブティック&rγ«ε―ΎεΏœγ—γ¦γŠγ‚Šγ€δ»•η΅„γΏγ‚’η†θ§£γ—γ¦γŠγγ“γ¨γ§ζ€§θƒ½γ‚’ζœ€ε€§ι™ζ΄»γ‹γ›γΎγ™γ€‚\n\nγ‚‚γ—γ“γ‚Œγ‚‰γζ¦‚εΏ΅γ«θ¦šγˆγŒγͺγ‘γ‚Œγ°γ€γ€Œ&dGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ &r」γη« γ‚’θͺ­γΏθΏ”γ—γ¦η†θ§£γ‚’ζ·±γ‚γ‚‹γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚", + "quests.extreme_voltage.heat_exchanger.desc.2": "γ“γ“γ―ζ€γ„εˆ‡γ£γ¦γ€&5EV16Aエネルγ‚ーハッチ&rγ‚’δ»˜γ‘γ¦γŠγγγŒγŠγ™γ™γ‚γ§γ™γ€‚γ“γ†γ—γ¦γŠγ‘γ°γ€ε‡¦η†ι€ŸεΊ¦γ‚„ε‡¦η†ι‡γδΈŠι™γ‚’ζ°—γ«γ›γšι‹η”¨γ§γγΎγ™γ€‚\n\nη†±δΊ€ζ›ζ©Ÿη”¨γ«&9γƒžγ‚·γƒ³γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©&rγ‚’ι…εΈƒγ—γ¦γŠγγΎγ™γ€‚γ“γζ©Ÿζ’°γ―γΎγ‚Œγ«ε‹ζ‰‹γ«εœζ­’γ™γ‚‹γ“γ¨γŒγ‚γ‚‹γŸγ‚γ€γƒžγ‚·γƒ³γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γ§&ePrevent_Power_Failing&rγ‚’γ‚ͺγƒ³γ«γ—γ¦γŠγγ¨ε‰εΏƒγ§γ™γ€‚γ“γ‚Œγ―γ€ηž¬ι–“ηš„γͺι›»εŠ›εˆ‡γ‚Œγ§ζ©Ÿζ’°γŒζ­’γΎγ£γ¦γ—γΎγ†GregTechη‰Ήζœ‰γζŒ™ε‹•γ‚’ι˜²γ„γ§γγ‚ŒγΎγ™γ€‚", + "quests.extreme_voltage.refrigerant_pellet.title": "ε†·εͺ’γƒšγƒ¬γƒƒγƒˆ", + "quests.extreme_voltage.refrigerant_pellet.subtitle": "θΆ…ι«˜ζΈ©γε―Ύε‡¦ζ³•", + "quests.extreme_voltage.refrigerant_pellet.desc": "&dγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ η‡ƒζ–™ζ£’&rγ―ιžεΈΈγ«ι«˜ζΈ©γ§ε‹•δ½œγ™γ‚‹γŸγ‚γ€γγγΎγΎγ§γ―すぐにクールダウンヒードにε…₯ってしまいます。そこで、炉内に&bε†·εͺ’γƒšγƒ¬γƒƒγƒˆ&rγ‚’ζŠ•ε…₯γ—γ¦ζΈ©εΊ¦γ‚’ζŠ‘γˆγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγƒšγƒ¬γƒƒγƒˆγ―γ‚„γ‚„ι«˜δΎ‘γ§γ™γŒγ€εΊη›€γ§γ‚‚εεˆ†ι‡η”£γ§γγ€ζ•°ζœ¬γγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ γƒ­γƒƒγƒ‰γ‚’ε‹•γ‹γ™εˆ†γ―ε•ι‘Œγͺγη’ΊδΏγ§γγΎγ™γ€‚γƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ γƒ­γƒƒγƒ‰1ζœ¬γ‚’δ½Ώγ„εˆ‡γ‚‹γ«γ―γ€γ γ„γŸγ„&9256個&rほど必要です。\n\nεΎŒγ€…γ€γ“γ†γ—γŸζΆˆθ€—ε“γ‚’δ½œγ‚ŠηΆšγ‘γ‚‹γγŒη…©γ‚γ—γ„γ¨ζ„Ÿγ˜γ‚‹γ‚ˆγ†γ«γͺγ£γŸγ‚‰γ€&6上位γθ€η†±γƒ•レーム&rγ‚’δ½œγ‚ŠγΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ‚‰γ‚’η΅„γΏθΎΌγ‚γ°γ€εŽŸε­η‚‰γ―ζœ€ε€§&e600Heat&rまでε‰ε…¨γ«θ€γˆγ‚‰γ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚Šγ€εŠΉηŽ‡γ‚‚ε‰εšζ€§γ‚‚ε€§γγε‘δΈŠγ—γΎγ™γ€‚\n\nζ—©γ„γ†γ‘γ‹γ‚‰γ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ‚’ζ”Ήε–„γ—γ¦γ€γ‚ˆγ‚Šζ₯½γͺζ Έεˆ†θ£‚γƒ©γ‚€γƒ•γ‚’ι€γ‚ŠγΎγ—γ‚‡γ†οΌ", + "quests.extreme_voltage.important_info.title": "火星でγζšγ‚‰γ—ζ–Ή", + "quests.extreme_voltage.important_info.subtitle": "η«ζ˜Ÿη§»δ½γƒ—γƒ­γ‚Έγ‚§γ‚―γƒˆ", + "quests.extreme_voltage.important_info.desc.1": "ここでは&c火星&rでγζ‹ η‚Ήγ₯γγ‚Šγ«ε½Ήη«‹γ€ζƒ…ε ±γ‚’γŠζ•™γˆγ—γΎγ™γ€‚\n\nζŽ’η΄’δΈ­γ«θ¦‹γ€γ‘γŸ&6火星γιΊθ·‘&rγδΈ­γ‹γ‚‰γ€&eεŽŸε­γƒžγ‚·γƒ³ε€–θ£…&rγ‚„&eι«˜ζΈ©η²ΎιŒ¬η”¨γƒžγ‚·γƒ³ε€–θ£…&rγͺどをε…₯ζ‰‹γ§γγ‚‹γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚γ“γ‚Œγ γ‘γ§εεˆ†γ«η’ΊδΏγ™γ‚‹γγ―εŽ³γ—γ„γ§γ™γŒγ€θ³‡ζΊγŒθΆ³γ‚Šγͺい時γγ‘γ‚‡γ£γ¨γ—γŸεŠ©γ‘γ«γͺるでしょう。&r", + "quests.extreme_voltage.important_info.desc.2": "η«ζ˜Ÿγ§γ‚€γƒ³γƒ•γƒ©γ‚’γ©γ†ζ•΄γˆγ‚‹γ‹γ«γ€γ„γ¦γ―γ€ε€§γγδΊŒγ€γζ–Ήι‡γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&rβ€’&aすべてを用意する&rοΌšζ‹ η‚Ήγ‚’ζ§‹γˆγ‚‹ε‰γ«γ€&6ζ Έεˆ†θ£‚γƒ©γ‚€γƒ³&rγ‚’εŒε…¨γ«ε‹•γ‹γ™γŸγ‚γ«εΏ…θ¦γͺθ¨­ε‚™γ‚’γ™γΉγ¦ζƒγˆγ¦γŠγζ–Ήζ³•γ§γ™γ€‚θ†¨ε€§γͺη΄ ζγ‚’εΏ…θ¦γ¨γ—γΎγ™γŒγ€η¨ΌεƒεΎŒγ―θ‡ͺ硦θ‡ͺθΆ³γŒε―θƒ½γ«γͺγ‚ŠγΎγ™γ€‚\n\nβ€’&aζ΅ιšŽηš„に進める&rοΌšζœ€εˆγ―γ€ζœ€δ½Žι™ζ Έεˆ†θ£‚γƒ©γ‚€γƒ³γ‚’ε‹•γ‹γ™γŸγ‚γγ€&6ζ Έη‡ƒζ–™ε½’ζˆζ©Ÿ&r、&eγƒˆγƒͺウム&r、&6ζ Έεˆ†θ£‚η‚‰&rそして&6εŽŸε­εŠ›θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³&rγγΏγ‚’用意する方法です。\nこγγ‚„γ‚Šζ–Ήγ―ζ—©γε§‹γ‚γ‚‰γ‚ŒγΎγ™γŒγ€ζ Έεˆ†θ£‚γ‚·γ‚Ήγƒ†γƒ γŒε‰εšγ™γ‚‹γΎγ§γ―エネルγ‚γƒΌη‘η†γŒγ‹γͺγ‚Šε€§ε€‰γ§γ™γ€‚\n\nγ©γ‘γ‚‰γ‚’ιΈγΆγ«γ—γ¦γ‚‚γ€ζ‹ η‚Ήε»Ίι€ ε‰γ«εΏ…γšη«ζ˜ŸγζŽ’η΄’γ‚’θ‘Œγ†γ“γ¨γ‚’εΌ·γγŠγ™γ™γ‚γ—γΎγ™οΌ", + "quests.extreme_voltage.important_info.desc.3": "火星ではどγη¨ι‘žγη‡ƒη„Όη³»η™Ίι›»γ‚‚δΈ€εˆ‡δ½Ώγˆγͺγ„γŸγ‚γ€ζœ€εˆγ«ζ©Ÿζ’°γ‚’η¨Όεƒγ•γ›γ‚‹γ¨γγ‚„ι…Έη΄ δΎ›η΅¦γ‚·γ‚Ήγƒ†γƒ γη¨ΌεƒγγŸγ‚γ«γ€&bγƒ©γƒγƒˆγƒ­γƒ³γ‚―γƒͺスタル&rγ‚’γ„γγ€γ‹ζŒγ‘θΎΌγ‚€εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€&6θ’Έη•™ε‘”&rγι‹η”¨γ‚‚εΌ·γγŠγ™γ™γ‚γ—γΎγ™γ€‚&e火星γη©Ίζ°—&rは処理することで、呼吸可能γͺ&bη©Ίζ°—&rや、ほかにもさまざまγͺζœ‰η”¨γ‚¬γ‚Ήγ«ε€‰ζ›γ§γγΎγ™γ€‚\n\nεˆ₯γζ–Ήζ³•γ¨γ—γ¦γ―γ€εœ§ηΈγƒŠγ‚€γƒˆγƒ­γƒƒγ‚―スに必要γͺζζ–™γ‚’γ™γΉγ¦γ€ηΎεœ°γ§ζŽ‘ε–γ§γγ‚‹γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚ŠγεŠι‡ζ°΄γ‹γ‚‰θͺΏι”することも可能です。\n\nη«ζ˜Ÿγ§η”Ÿγζ‹γ‚‹γγ«εΏ…要γͺγγ―運ではγͺく、準備です!", "quests.extreme_voltage.important_info.task": "It's Marsing Time", - "quests.extreme_voltage.dense_lead.title": "Faster Dense Lead Plates", - "quests.extreme_voltage.dense_lead.subtitle": "Don't expect it for other dense plates", - "quests.extreme_voltage.dense_lead.desc": "Because of the tremendous amount of Dense Lead Plates you will need for Atomic Casings, we offer a new, albeit less efficient, recipe with the help of the Implosion Compressor. Feel free to use it if you don't want to wait forever for your benders.", - "quests.extreme_voltage.thorium_rod.title": "Fuel Rods", - "quests.extreme_voltage.thorium_rod.subtitle": "Handle with care", - "quests.extreme_voltage.thorium_rod.desc.1": "Each &6Fuel Rod&r comes with its own set of properties including &adurability&r (how long it lasts in the reactor), &cheat generation&r (how much heat it produces), and even different &eproducts&r and &bsteam output levels&r. You can view all of this information directly in the &aEMI&r tabs for each rod.&r\n\nBefore diving into how the Fission Reactor functions, here are some key points to understand:&r", - "quests.extreme_voltage.thorium_rod.desc.2": "β€’ The &eHeat Percentage&r shown on a fuel rod translates to slightly less than double its value inside the reactor. For example, a &eThorium Rod&r with a &cHeat&r of 70%% will generate just under 140 heat when enough &bHeavy Water&r is pumped into your reactor. This heat increase is &aadditive&r, meaning that 2 Thorium Rods will raise your reactor’s total heat to around 280.&r", - "quests.extreme_voltage.thorium_rod.desc.3": "β€’ &aDurability&r decreases at the same base rate for all rods. However, the higher the reactor’s temperature, the faster the rods degrade. Because of this, even if a certain rod type has 4Γ— the durability of another, it doesn’t necessarily mean it will last 4Γ— longer, as &ctemperature directly impacts longevity&r.&r\n\nBalancing the amount of rods within the reactor will be your first challenge with Fission.", - "quests.extreme_voltage.fission_reactor.title": "Fission Reactor", - "quests.extreme_voltage.fission_reactor.subtitle": "Oh no, it's on cooldown again", - "quests.extreme_voltage.fission_reactor.desc.1": "To start off, if you’re looking for a deeper dive into &6Fission Reactor&r mechanics including formulas, detailed calculations, and system behavior, check out the quest in the &aGregTech Energy&r chapter. It covers everything you’ll need if you want to get into the math behind the heat and efficiency systems.&r\n\nFor now, let’s focus on your very first &6Thorium Reactor&r. Its base &cMax Heat&r is &e400&r. As explained in the previous quest, running two Thorium Rods will push your internal heat to around &e280&r, which is perfectly safe. However, adding a third rod raises the total to about &c420 Heat&r, exceeding the limit and triggering &ccooldown mode&r.", - "quests.extreme_voltage.fission_reactor.desc.2": "Don’t worry, there’s no explosion, but your reactor will shut down and won’t restart until it fully cools back to 0 Heat. This will completely halt both your &aenergy production&r and your &afission product&r generation - a major setback.\n\nManaging how many rods are active will therefore be your first &6challenge&r and the main minigame of Fission.\n\nThere are multiple ways to approach this, and experimentation is part of the fun.\n\nOne way is by attaching a &6Redstone Port&r to your reactor, and using a &aWrench&r on it switches its monitoring mode between &erod count&r and &cheat level&r.\n\nFinally, note that all rods are stored inside the &6Fuel Holder&r. That means limiting the number of active rods isn’t as simple as having 2 rods in the input bus, &cyou’ll need to control what enters the Input Bus&r to fine-tune your reactor’s operation.", - "quests.extreme_voltage.high_pressure_steam.title": "High Pressure Steam", - "quests.extreme_voltage.high_pressure_steam.subtitle": "Better steam, bigger turbine", - "quests.extreme_voltage.high_pressure_steam.desc": "&4Important Info&r: If the reactor doesn't have enough space to output High Pressure Steam, it will simply void.\n\nFor balancing (and pipe throughput) reasons, the &6Fission Reactor&r does not produce regular steam. Instead, it generates &bHigh Pressure Steam&r, which can only be used in a &6Nuclear Steam Turbine&r.\n\nAttempting to run it through a standard Steam Turbine will &cnot work&r.", - "quests.extreme_voltage.ev_superconductor.title": "EV Superconductors", - "quests.extreme_voltage.ev_superconductor.subtitle": "Bigger Amp ability", - "quests.extreme_voltage.ev_superconductor.desc": "Now that you've processed some &eUranium&r, you should check out the &5EV Superconductors&r.\n\nThese superconductors have higher amp capacity, helping you move energy efficiently across your base and ensuring your &6Nuclear Steam Turbines&r output reaches all your machines without loss.", - "quests.extreme_voltage.uraninite_dust.subtitle": "That's a lot of rods", - "quests.extreme_voltage.uraninite_dust.desc": "To craft your &eUranium Fuel Rods&r, you’ll need a substantial amount of &eUraninite&r - around &c240 Dust&r per rod. Start mining it early to keep up with demand later.\n\nThe largest veins can be found on Mars, where some deposits reach &aimpressive sizes&r. Later in your progression, you’ll be able to produce Pitchblende and Uraninite Dust &ainfinitely&r using the &6Ostrum Linear Accelerator&r, but we’ll cover that in more detail in a future quest.", - "quests.extreme_voltage.uranium_line.title": "The Uranium Line", - "quests.extreme_voltage.uranium_line.subtitle": "That's one more new processing line", - "quests.extreme_voltage.uranium_line.desc": "To process &eUranium&r and its &eUranium 235&r &eIsotope&r, you’ll need to set up a dedicated small processing line. \n\nRest assured, you can &aloop the Fluorine&r, so the only input you’ll need is &eUraninite Dusts&r.\n\nYou can build this line on Earth, but it may be more convenient to operate it on Mars, where the majority of Uraninite Ore should be harvested.", - "quests.extreme_voltage.radioactive_waste.title": "Radioactive Waste", - "quests.extreme_voltage.radioactive_waste.subtitle": "One man's trash is another man's progression material", - "quests.extreme_voltage.radioactive_waste.desc": "Radioactive Waste is a &ccritical byproduct&r for crafting your next fuel rods, so always ensure there’s enough space to output it. If the Fission Reactor cannot find an available output, it will simply &cvoid the waste&r, losing valuable resources.\n\nWe recommend either:\n- Installing a dedicated Output Hatch in &blocked mode&r\n- Using a Super chest with an Advanced Fluid Detector Cover\n\nIf you have an &dME Network&r on Mars, another option is the recently unlocked &6ME Output Hatch&r.", - "quests.extreme_voltage.uranium_rod.subtitle": "Finally, some real power!", - "quests.extreme_voltage.uranium_rod.desc.1": "This is the second-generation reactor fuel - it offers &a4Γ— more durability&r and produces &a5Γ— more steam&r compared to a standard &eThorium Rod&r. However, there are important trade-offs you must plan for.\n\n&9Production cost and setup:&r\nβ€’ Producing this fuel consumes &eThorium Rods&r continuously, so it’s recommended to dedicate a separate &6Fission Reactor&r for each of these advanced rods, although if you're up for the challenge of juggling them in one reactor, that's an option too.", - "quests.extreme_voltage.uranium_rod.desc.2": "Heat and mitigation options: A single Uranium Fuel Rod generates about &c435 Heat&r inside a standard reactor, far above the default limit. To handle this you have three main options:\n\n&7β†’&r &eInstall 20 Framed Glacial Wool&r blocks inside the reactor to raise &cMax Heat&r to &e440&r, allowing one rod to run safely.\n\n&7β†’&r &6Use Material Holders&r and pump large quantities of &bDry Ice&r to drop the reactor temperature. This requires a robust infrastructure and access to a &bLiquid CO2 fluid vein&r on Mars.\n\n&7β†’&r &bUse Refrigerant Pellets&r placed in Material Holders. They behave like Dry Ice but are far more potent. Note that Refrigerant Pellets consume a decent amount of &eFluorine&r to craft, and you do not have infinite Fluorine at this point.\n\nObviously, you can also make your own sauce and mix all of these options together.", - "quests.extreme_voltage.uranium_rod.desc.3": "&cImportant note for Uranium Fuel Rods:&r Reactors running &eUranium Rods&r require a drastically larger supply of &bHeavy Water&r for cooling. Ensure you have abundant Heavy Water production or storage before attempting to run these rods, or your reactor will quickly hit critical cooling limits.\n\nPlan your supply lines and cooling strategy carefully - these fuels are powerful, but they demand serious infrastructure.", - "quests.extreme_voltage.uranium_waste.title": "Uranium Waste and Radioactive Steam", - "quests.extreme_voltage.uranium_waste.subtitle": "You guessed it, more processing", - "quests.extreme_voltage.uranium_waste.desc.1": "The products from &eUranium Fuel Rods&r are a bit more involved than thorium.\n\n&6β€’ Uranium Waste&r is the feedstock that starts the &dPlutonium Line&r. It can be processed immediately.\n\n&6β€’ Radioactive Steam&r, unlike normal steam, will need to be handled by a &6Heat Exchanger&r. Send the radioactive steam through a Heat Exchanger to recover High Pressure Steam.", - "quests.extreme_voltage.uranium_waste.desc.2": "Additionally, your Radioactive Steam should heat &eAmmonium Formate&r into &eFormamide&r, a core precursor for producing plutonium fuels. This means that before you can reliably obtain High Pressure Steam from a Uranium Reactor for energy use, you must ensure a continuous supply of &eAmmonium Formate&r for the conversion chain.\n\n&cPractical note:&r Set up a dedicated, continuous line to produce &eAmmonium Formate&r. Without steady Ammonium Formate production, your plutonium workflow and your High Pressure Steam production will stall.", - "quests.extreme_voltage.ammonium_formate.title": "Ammonium Formate", - "quests.extreme_voltage.ammonium_formate.subtitle": "Always keep a backlog!", - "quests.extreme_voltage.ammonium_formate.desc": "Being able to make infinite &eAmmonium Formate&r is mandatory to ensure a constant energy production, as you won’t be able to process &bRadioactive Steam&r into High Pressure Steam without it. It's not very hard, though!\n\nFirst, to make &eFormic Acid&r, simply combine COβ‚‚ that you can get from Mars Air with Water from an Aqueous Accumulator.\n\nThen, for &eAmmonia&r, you can simply electrolyze the &eAmmonium Chloride Dust&r you got from centrifuging (Semi) Heavy Ammoniacal Water.\n\nAs you will get a surplus of &bOxygen&r and &bHydrochloric Acid&r, make sure to void these fluids above a threshold so they don’t clog your &eAmmonium Formate&r production.", - "quests.extreme_voltage.nuclear_residue_dust.title": "Nuclear Residue Dust", - "quests.extreme_voltage.nuclear_residue_dust.subtitle": "Oh, this is where Radon comes from", - "quests.extreme_voltage.nuclear_residue_dust.desc": "Obtaining &eNuclear Residue Dust&r is the first step in the &dPlutonium Line&r.\nIt requires a &5EV Gas Pressurizer&r on Mars to produce.\n\nThe process will also generate &bRadon&r as a byproduct, and even though you will need Radon for later steps, the surplus from this line will be significant. It will be your only reliable source of Radon for now.\n\nLuckily for you, &eNuclear Residue&r requires no complex loop: simply feed in the outputs from your Uranium Reactor and Heat Exchanger, add &eMartian Sludge&r, and the &6Gas Pressurizer&r will produce Nuclear Residue Dust. You’ll be ready to continue the Plutonium chain immediately.", - "quests.extreme_voltage.oxidized_nuclear_residue_dust.subtitle": "What is this weird concoction?", - "quests.extreme_voltage.oxidized_nuclear_residue_dust.desc.1": "This next step is the start of the many loops surrounding the &dPlutonium Line&r.\n\nTo make &bOxidized Nuclear Residue Dust&r you will require &bDioxygen Difluoride&r. Thankfully, we do not ask you to have an infinite amount of Fluorine, so for this recipe to run continuously you will recover Fluorine later as &bHydrofluoric Acid&r that you can electrolyze.", - "quests.extreme_voltage.oxidized_nuclear_residue_dust.desc.2": "Because the recipes take a long time, we still advise adding a good starter stock of Fluorine to kickstart the loop.\n\nAs always, during this loop, be wary of storage: a full tank or a blocked buffer can stop your entire line, and flying to Mars to fix it would be a bother. &aSuper Tanks&r or whitelisted &aAE2 disks&r with void upgrades are helpful solutions.\n\nNote that the recipe also produces &eResidual Radioactive Concoction&r. Try not to void this one, it will be a useful material for future systems such as the &6Ostrum Linear Accelerator&r (infinite ores from Mars), the &6Growth Chamber&r (first steps into Bioengineering) and even &6Fission Reactors&r outside of Mars.", - "quests.extreme_voltage.refined_nuclear_dust.subtitle": "Ah, this where my Fluorine went", - "quests.extreme_voltage.refined_nuclear_dust.desc": "The &eRefined Nuclear Residue Dust&r lets you recover Fluorine as Hydrofluoric Acid so you can loop it back into &bDioxygen Difluoride&r.\n\nYou should already know how to make Distilled Water, and don’t forget to void any surplus Oxygen if you have nowhere to store it.\n\nThis recipe is very slow. If you feel confident energy-wise, consider running it in a &6Large Centrifuge&r to speed things up. Be cautious, though, you don’t want to drain too much power early in your progression.", - "quests.extreme_voltage.plutonium.title": "Plutonium", - "quests.extreme_voltage.plutonium.subtitle": "Look at this massive atomic mass", - "quests.extreme_voltage.plutonium.desc": "You’ve finally reached Plutonium! Its only practical use right now is to craft &dPlutonium Fuel Rods&r, so don’t bother hoarding it.\n\nAny extra steam produced can be voided or used in a regular steam turbine, but the &6Nuclear Steam Turbine&r will not accept this steam&r.\n\nIf you want to recover energy, route the surplus to conventional steam turbines; otherwise safely void the excess to prevent backups.", - "quests.extreme_voltage.plutonium_rod.subtitle": "Once upon a time, I had power issues", - "quests.extreme_voltage.plutonium_rod.desc.1": "Let’s be clear: the &dPlutonium Fuel Rod&r may be a real bother to craft, but it’s an absolute &abeast of energy&r. It outputs nearly &e4Γ— more High Pressure Steam&r than the Uranium Rod, making it perfect for scaling your Martian infrastructure, even if you run it less frequently.", - "quests.extreme_voltage.plutonium_rod.desc.2": "However, its &cmassive heat&r poses a serious challenge. Reaching up to &6595 Heat&r, it’s impossible to run it safely for the time being without &bRefrigerant Pellets&r. Check the quest on the right for more details about this material, which you can insert into a &6Material Holder&r.\n\nThe good news? You can stabilize the reactor with just &61 Material Holder&r, bringing the temperature down to around &e430 Heat&r manageable with some &fFramed Glacial Wool&r. Otherwise, &62 Material Holders&r should keep it perfectly under control.", - "quests.extreme_voltage.tritiated_water.title": "Tritiated Water", - "quests.extreme_voltage.tritiated_water.subtitle": "Radioactive Water? Is everything radioactive?", - "quests.extreme_voltage.tritiated_water.desc": "This &bRadioactive Water&r is a key component for producing &eNano CPU Wafers&r and ultimately, your &6first IV Circuits&r.\n\nIt’s also used in the Ostrum Linear Accelerator and can be electrolyzed into &6Tritium&r, though you won’t need that for quite some time.\n\n&cBe extremely careful&r: &bTritiated Water&r is incredibly precious, so don’t lose a single drop of it!", - "quests.extreme_voltage.nano_cpu_wafer.subtitle": "That sounds like marketing", - "quests.extreme_voltage.nano_cpu_wafer.desc": "The &dNano CPU Wafer&r is your gateway to IV Circuits and also to the &bAE2 64k Storage Cells&r.\n\nYou’ll need a huge amount of these circuits, as they’re used in nearly every advanced circuit tier from now on, whether by &eupgrading the Wafer&r itself or crafting the &ahighest-end circuit versions&r.\n\nThey’re also required for your &6IV Batteries&r, the &dLapotronic Energy Orbs&r.\n\nFor reference, &b1 Plutonium Fuel Rod&r will produce enough Tritiated Water for &eexactly 9 Nano CPU Wafers&r.", - "quests.extreme_voltage.first_iv_circuit.title": "Mainframes - First IV Circuits!", - "quests.extreme_voltage.first_iv_circuit.subtitle": "Are we done with EV yet?", - "quests.extreme_voltage.first_iv_circuit.desc": "Finally, after all this time, you’ve obtained a new circuit and unlocked an entirely new tier. Many possibilities are now open to you, but your main focus should be the &6IV Assembler&r first, as it will allow you to craft the &eFramed Moderate Core&r which greatly increases your reactor’s &cMax Heat&r, eliminating the need for Refrigerant Pellets.\n\nYou can also build the &5EV Circuit Assembler&r to unlock &bNanoprocessor Circuits&r. Keep in mind, though, that these will require Nano CPU Chips, so you’ll need a well-established fission setup to support them.\n\nMore details will be provided in the &6IV Chapter&r, so you can finally feel fully comfortable progressing into this new tier.", - "quests.extreme_voltage.moderate_core.subtitle": "That's a big upgrade", - "quests.extreme_voltage.moderate_core.desc": "It’s time for a major upgrade to your &6Fission Reactor&r. The &eFramed Moderate Cores&r come in two versions, depending on your luck. The better version allows your &dPlutonium Reactor&r to run &aone rod fully passively&r, so you can say goodbye to constantly making &bRefrigerant Pellets&r! You could also experiment by combining them with the new framed components, potentially running &atwo Plutonium Rods&r simultaneously.\n\nAlso known as the &6Graphite Line&r, the processing line to craft these new blocks is somewhat random: you might fail the craft or get a lower-tier version. This can make full automation with &dAE2&r slightly trickier, though it’s still possible with careful setup.\n\nWe’ll leave it to you to experiment and figure out the most efficient way to produce these cores.", - "quests.extreme_voltage.abs.subtitle": "We love this heater", - "quests.extreme_voltage.abs.desc": "The &6Alloy Blast Smelter&r is a very special multiblock. It works similarly to the &6EBF&r, with better coils allowing for Perfect Overclocking (see the Energy Chapter), and it can process most EBF recipes &a25%% faster&r. Note that it outputs molten fluids instead of hot ingots!\n\nOne key feature of the &6ABS&r is its ability to craft the alloys needed for &6Large Multiblock Machines&r. Essentially, every basic machine like the Macerator or the Distillery has its own multiblock, offering extensive customization options such as multiple Input/Output Buses/Hatches or even adding a Parallel Hatch.\n\nFor more details about these multiblocks, refer to the &6Gregtech Energy Chapter&r.", - "quests.extreme_voltage.ev_mixer.title": "&5EV Mixer&r", - "quests.extreme_voltage.ev_mixer.subtitle": "Faster than your local bartender", - "quests.extreme_voltage.ev_mixer.desc": "Some machines are critical for progression, and the &6Mixer&r is one of them.\n\nIt unlocks several essential alloys required to move forward, notably the &6RTM Alloy&r, which you’ll need to upgrade the coils of your &6EBF&r. This alloy is gated behind both the Tungsten Line and part of the Platline, so don’t expect it to be an easy one.\n\nSoon, you’ll also unlock the &5Large Mixer&r, which allows you to install two Energy Hatches. This could be the last time you’ll need to build a single-block Mixer, though as always, the choice is yours.", - "quests.extreme_voltage.rtm.title": "RTM Alloy", - "quests.extreme_voltage.rtm.subtitle": "Ruthenium-Tungsten-Molybdenum Alloy", - "quests.extreme_voltage.rtm.desc": "To craft &6RTM Alloy&r, you’ll need both &dRuthenium&r, a product of the infamous &dPlatline&r and &aTungsten&r, which has been made a bit harder to obtain in TFG.\n\nBefore rushing into RTM production, make sure both of these lines are running smoothly.\n\nIn regular GregTech, RTM Alloy is often just a short stepping stone, but not here. In &bTerraFirmaGreg&r, you’ll require RTM Alloy for several parts of your upcoming Fission multiblocks. Since HSS-G Coils are still far down the line, we strongly recommend using &6RTM Coils&r as a powerful upgrade for many of your existing multiblocks.", - "quests.extreme_voltage.rtm_coil.subtitle": "How hot can it get?", - "quests.extreme_voltage.rtm_coil.desc": "The &6RTM Coils&r can reach an impressive &e4500 K&r, unlocking access to Tantalum Carbide, a key material for your progression. You’ll need it to craft the &5Alloy Blast Smelter&r, and it will also greatly speed up recipes in your EBF or Nuclear Fuel Factory.\n\nThese coils can even help reduce the cost of extracting &aLunar Regolith&r and &dOstrum&r, making them valuable beyond their primary purpose.\n\nNormally, you’d move on to HSS-G rather quickly, but in &bTFG&r you won’t be able to craft your &1IV Assembler&r until you’ve completed the &5Fission Progression&r, making &6RTM Coils&r a far more important and long-lasting upgrade.", - "quests.extreme_voltage.ruthenium.title": "Ruthenium", - "quests.extreme_voltage.ruthenium.subtitle": "A rare material", - "quests.extreme_voltage.ruthenium.desc": "To help you along, here’s an overview of all the steps required to obtain &dRuthenium&r through the Platline. Don’t worry, you don’t need to complete the entire &dPlatline&r yet.\n\n(Note that &7the platline may change with &4Venus&r later.)", - "quests.extreme_voltage.gcym_alloys.title": "Large Multiblock Alloys", - "quests.extreme_voltage.gcym_alloys.subtitle": "More alloys means more fun!", - "quests.extreme_voltage.gcym_alloys.desc": "Welcome to the world of &dLarge Multiblocks&r. All these alloys will be required for a lot of upcoming multiblocks, and they all start with the &eAlloy Blast Smelter&r. Some will also be required for the &eHigh Temperature Smelting Casings&r, which are essential components for the Nuclear Multiblocks.\n\n&o&6&lLore&r:&r &oGregicality Multiblocks originally began as a mod for GTCEu on Minecraft 1.12, adding the large versions of GregTech machines and the &6Parallel Hatch&r. &oWhen GTCEu was ported to 1.20, this mod was fully integrated into &dGTm&r - &osomething no one ever complained about&r. For the 1.12 enjoyers out there, you might remember them as the &dGCYM multis&r.", - "quests.extreme_voltage.tungsten_steel.title": "Tungstensteel", - "quests.extreme_voltage.tungsten_steel.subtitle": "The main material of IV", - "quests.extreme_voltage.tungsten_steel.desc": "You know the drill at this point. &6Tungstensteel&r will be your main material for &1IV&r, and you can expect to need a very large quantity of it. Make sure you have a dedicated &6Tungsten line&r running to sustain your production before moving further.\n\nIf you ever need more &aScheelite&r or &aTungstate&r, remember that Mars has some incredibly large veins you can mine. If you are concerned about the sand worm, investing in a &bLarge Miner&r could be very helpful, as it won’t attract the sandworm.\n\nMaybe it’s because of the drilling fluid?", - "quests.extreme_voltage.tungsten.title": "Tungsten", - "quests.extreme_voltage.tungsten.subtitle": "Fully self-sustaining, just like Titanium", - "quests.extreme_voltage.tungsten.desc": "Congrats on making your first &6Tungsten&r! We hope you enjoy this small increase in complexity. Remember that, at first, the small amount of &6Tungsten&r you require can be achieved by simply inputting the &aSoda Ash&r you mined. This may inspire you to fully loop the process so you can automate it peacefully.\n\nAlso remember that the further you progress, the more important it will be to build dedicated and passive lines for all these complex processes that will be required until the end of the pack. Don’t be afraid of lacking resources, be afraid of lacking time.", - "quests.extreme_voltage.iv_hull.subtitle": "IV Already?", - "quests.extreme_voltage.iv_hull.desc": "Even though you have already unlocked the &1IV&r Machine Hull, it may not be very useful until you complete the Fission line, as &1IV&r Circuits are gated behind the processing of &dPlutonium Rods&r. Still, you may find one or two uses for it, and at least you will be ready to build the &1IV Assembler&r as soon as you unlock your first &1IV&r Circuits.", - "quests.extreme_voltage.large_miner.title": "The Large Miner MK I", - "quests.extreme_voltage.large_miner.subtitle": "Your first actually good miner", - "quests.extreme_voltage.large_miner.desc": "The &bLarge Miner&r is a very impressive multiblock for mining the formidable veins you can encounter. It will output ores in their &acrushed forms&r, and rewarding an average of 50%% more resources! It does have some limitations, as you will need to keep it chunkloaded and provide it with a constant supply of drilling fluid.\n\nWe strongly advise moving it around using the &bCopy Paste Tool&r from Building Gadgets once you unlock it. You can add a battery buffer, a large reserve of drilling fluid, and adequate storage (such as a well-upgraded Backpack or ME Chest) to ensure it runs smoothly for a long time.", - "quests.extreme_voltage.ostrum_harvester.title": "Ostrum Harvester", - "quests.extreme_voltage.ostrum_harvester.subtitle": "Better coils means less energy usage", - "quests.extreme_voltage.ostrum_harvester.desc": "The &bOstrum Harvester&r is a close cousin of the &6Lunar Regolith Harvester&r. It can also be upgraded with better coils to reduce energy costs, but it does not require a specific biome. You will need to build it over an &aOstrum Deposit&r for the multiblock to form.\n\nOne more thing: unlike the moon version, this one requires drilling fluid to operate, so you'll want to set up some two-way automation to keep it running.", - "quests.extreme_voltage.ostrum_dust.title": "Ostrum Iodide", - "quests.extreme_voltage.ostrum_dust.subtitle": "I have to do what again?!", - "quests.extreme_voltage.ostrum_dust.desc": "There are many uses for &aOstrum&r, but right now there is one you should be especially concerned about: making &aOstrum Iodide&r, as it will be required to craft your Heat Exchanger.\n\nThere is nothing too complicated about it, except maybe obtaining the &eIodine&r you need. We will let you refer to the quest on the left to make the &l6&r Iodine required to complete the Fission Line.", - "quests.extreme_voltage.formamide.title": "Formamide", - "quests.extreme_voltage.formamide.subtitle": "Also a solvent with many IRL uses", - "quests.extreme_voltage.formamide.desc": "Get ready to void any surplus you produce if you don’t want your steam production to stop.", - "quests.extreme_voltage.radioactive_concoction.title": "Residual Radioactive Concoction", - "quests.extreme_voltage.radioactive_concoction.subtitle": "Don't void this one!", - "quests.extreme_voltage.radioactive_concoction.desc": "The &dResidual Radioactive Concoction&r is a very important byproduct of the Fission Line. Its main use is to produce infinite ores with the &bOstrum Linear Accelerator&r, but it is also required to unlock the &bGrowth Chamber&r.\n\nIf you want to build Fission Reactors outside of Mars, you will also need a continuous supply of it.", - "quests.extreme_voltage.ostrum_linear.subtitle": "Infinite but next level", - "quests.extreme_voltage.ostrum_linear.desc": "The &bOstrum Linear Accelerator&r allows you to create various materials using different products from the Fission Line. This multiblock supports a large number of &bInput Buses&r and &bInput Hatches&r, and since all of its recipes are quite fast, a single unit should be enough to cover all your needs.\n\nWe strongly recommend crafting some &eSpray Cans&r with different colors to organize your inputs and outputs. For example, if you color an Input Bus and an Input Hatch in &9blue&r, only those two will interact together, preventing recipe conflicts and ensuring smoother automation.", - "quests.extreme_voltage.pss.subtitle": "A glorified battery", - "quests.extreme_voltage.pss.desc": "The &ePower Substation&r was moved from &1IV&r to &5EV&r so you can build it directly on Mars, where energy management can be quite challenging with Fission Power. It’s not mandatory, so feel free to skip it if you prefer.\n\nIf you want to learn more about how this multiblock works, check out its detailed entry in the &aEnergy Chapter&r.", - "quests.extreme_voltage.liquid_air.title": "Earth Air", - "quests.extreme_voltage.liquid_air.subtitle": "So many gases", - "quests.extreme_voltage.liquid_air.desc": "Distilling &bLiquid Air&r is a core mechanic in &6GregTech&r to obtain an &oinfinite supply&r of certain rare gases.\n\nEarth Air Distillation is a good way to get your hands on &bArgon&r, &6Oxygen&r, &eHelium&r, &3Nitrogen&r and &aCarbon Dioxide&r.", - "quests.extreme_voltage.liquid_mars_air.title": "Martian Air", - "quests.extreme_voltage.liquid_mars_air.subtitle": "Even more gases", - "quests.extreme_voltage.liquid_mars_air.desc": "Distilling &bLiquid Air&r is a core mechanic in &6GregTech&r to obtain an &linfinite supply&r of certain rare materials. Since you can’t obtain Nether Air or Ender Air in TFG, we provide an alternative with &cMartian Air&r.\n\nIt’s highly rich in &bArgon&r and &aCarbon Dioxide&r, but it can also yield rare gases such as &eNeon&r, &3Krypton&r, and &9Xenon&r, all unavailable elsewhere.\n\nNote that future updates may move around some of these Noble Gases as we finish more planets. Always remember to check the &6changelogs&r for updates!", - "quests.extreme_voltage.epoxy.title": "Epoxy", - "quests.extreme_voltage.epoxy.subtitle": "Artificial Resin", - "quests.extreme_voltage.epoxy.desc.1": "&aEpoxy&r is the foundation for all future Circuit Boards in the game!\n\n&9&lNote:&r This Quest is quite complicated, so tackle everything else before trying to make Epoxy. You'll need all the help you can get!", - "quests.extreme_voltage.epoxy.desc.2": "There are several ways to obtain the ingredients for &aEpoxy&r.\n\nWe will ignore recipes related to Glycerol, as they're never worth it.\n\nTry and use &3Large Chemical Reactors&r to shortcut recipes.", - "quests.extreme_voltage.epoxy.desc.3": "&dChlorine&r is only partially recycled, so you'll need a constant supply. Feeding it manually will be sufficient at first.\n\nRecipes involving &dSodium Hydroxide&r could be looped by electrolyzing the &9Salt Water&r co-product.\n\nDoing this will probably require you to make some Quadruple Pipes, Pump Covers, Fluid Filters... or route everything using AE2.\n\nIn general, closed loop setups are nice to prevent overproduction or overconsumption, but go for whatever's more fun for you.", - "quests.extreme_voltage.epichlorohydrin.title": "Epichlorohydrin", - "quests.extreme_voltage.epichlorohydrin.desc": "You're going to want to use the &3LCR&r recipe for your first &aEpichlorohydrin&r.\n\nThis recipe requires &aPropene&r, which means that &dOil Processing&r and &dFuel Cracking&r are now necessary ventures. We're truly sorry if you've been dragging your heels!\n\nIt's quite important that you make your first &3Distillation Tower&r before progressing to the right.\n\nLast of all, if you haven't noticed, you can loop the &dSalt Water&r byproduct to bootstrap the &dSodium Hydroxide&r.", - "quests.extreme_voltage.phenol.title": "Phenol", - "quests.extreme_voltage.phenol.desc.1": "Obtain &aPhenol&r from:\n\n&91 -&r &aWood Tar&r distillation.\n\n&92 -&r Reacting &aBenzene&r with &dChlorine&r and &dSodium Hydroxide&r This should be performed in an &3LCR&r, and the Chlorine is perfectly looped.\n\n&93 -&r Shortcutting the above recipe by ignoring the &dSodium Hydroxide&r. This is net negative on &dChlorine&r.\n\n&94 -&r Reacting &aBenzene&r, &dPropene&r and &dOxygen&r using a small amount of &4Phosphoric Acid&r - normally a catalyst, but consumed here in small quantities. This is called the Cumene process.", - "quests.extreme_voltage.phenol.desc.2": "If you're having trouble deciding between the options presented, here's the appeal of each route:\n\n&91 -&r Great if you're willing to set up a &3Pyrolyse Oven&r + &3Distillation Tower&r combo.\n\n&92 -&r This one's our preference! You can use the &dSalt&r to make more &dSalt Water&r, then electrolyze to create a loop.\n\n&93 -&r Very appealing if you have an infinite supply of &dChlorine&r. You could achieve this by setting up a &3Fluid Drilling Rig&r on a Salt Water vein.\n\n&94 -&r ...&4Phosphoric Acid&r is a pain to produce. You'd be mad to consider this.", - "quests.extreme_voltage.phenol.desc.3": "&l&3Lore:&r&o The Benzene + Oxygen recipe was added in GTCE with the intent of fixing missing chemical recipes, as the Large Chemical Reactor didn't exist. Now that CEu provides more realistic options, we may remove the recipe in future.", - "quests.extreme_voltage.acetone.title": "Acetone", - "quests.extreme_voltage.acetone.desc.1": "While distilling &aWood Vinegar&r gives &aAcetone&r, the yield is low and might not meet your needs.\n\nYou might want to use the direct &3LCR&r recipe from &aAcetic Acid&r to obtain &aAcetone&r.\n\nIf you want to be fancy, you can also the good old &aAcetic Acid&r -> &dDissolved Calcium Acetate&r -> &aAcetone&r loop, which does not require a &3LCR&r, but still recycles the Calcium compound perfectly.", - "quests.extreme_voltage.acetone.desc.2": "We've been talking about Acetic Acid, but we're yet to tell you how to obtain it. Wouldn't that be great?\n\n&aAcetic Acid&r can be synthesized in the &3Chemical Reactor&r. Our favorite recipe is from &dEthylene&r.", - "quests.extreme_voltage.aes_insulation.title": "Alkaline Earth Silicate Insulation", - "quests.extreme_voltage.aes_insulation.subtitle": "Also known as Rockwool", - "quests.extreme_voltage.aes_insulation.desc": "A new tier means a new kind of insulation!\n\nTo get started with this one, you'll want to look at the mixer recipe for &dAlkaline Earth Silicate Mixture Dust&r. Eventually, you'll be able to make an infinite supply of this on Mars through Sniffer and Wraptor shearing, as it's used for more than just your next Rocket.", - "quests.extreme_voltage.epoxy_board.subtitle": "A new board, there is more to come", - "quests.extreme_voltage.epoxy_board.desc": "Epoxy Circuit Boards are a key component required to craft your &bNano Circuits&r, but they won’t have much use outside of that purpose.", - "quests.extreme_voltage.ev_circuit_assembler.title": "The &5EV&r Circuit Assembler", - "quests.extreme_voltage.ev_circuit_assembler.subtitle": "Less useful than the Assembler for now", - "quests.extreme_voltage.ev_circuit_assembler.desc": "The &5EV Circuit Assembler&r won’t be of much use until you have a steady supply of &bNano CPU Wafers&r. Still, it will allow you to craft microprocessor circuits much faster and eventually give you access to your first &dLuV Circuits&r, which will be useful once you have an &1IV Assembler&r.", - "quests.extreme_voltage.nano_hv_circuit.subtitle": "It doesn't &olook&r that much smaller...", - "quests.extreme_voltage.nano_hv_circuit.desc": "Your first &eNano Circuits&r! They will require &bNano CPUs&r and therefore a continuous line of &cFission Reactors&r burning Plutonium Rods to produce the necessary &dTritiated Water&r.\n\nAt first, &eNano Circuits&r will feel quite expensive, but once your &dFission Line&r becomes fully passive, they will turn into one of your cheapest ones!", - "quests.extreme_voltage.nano_ev.subtitle": "Back to the usual circuit progression", - "quests.extreme_voltage.nano_ev.desc": "These could actually be cheaper to make than the &bMicroprocessor&r equivalent if you manage to mass-produce &bNano CPU&r efficiently. Once your &cFission Line&r is fully automated, these circuits will become an extremely cost-effective option for your high-end builds.\n\nAlso, note that you can use advanced SMD components from now on!", - "quests.extreme_voltage.nano_iv.subtitle": "Getting closer to LuV technology", - "quests.extreme_voltage.nano_iv.desc": "These &1IV&r Circuits still require one &bNano CPU Chip&r, so in that regard they aren’t actually cheaper than the &bMicroprocessors&r.\n\nHowever, they will be essential for progressing toward the next tier of technology.", - "quests.extreme_voltage.nano_luv.subtitle": "Your first IV circuits", - "quests.extreme_voltage.nano_luv.desc": "Congrats on successfully reaching a new tier of circuits! These &dLuV&r Circuits won’t have much use just yet, as you can’t craft any &dLuV&r machines before completing the &bPlatline&r, but they’ll still be valuable for crafting new &dAE2&r tools and components.\n\nMost of these recipes will require an &1IV&r Assembler, so be sure you have one ready.", - "quests.extreme_voltage.me_part.title": "ME Multiblock Parts", - "quests.extreme_voltage.me_part.subtitle": "Connect GregTech directly to your AE2 network", + "quests.extreme_voltage.dense_lead.title": "ι«˜ε―†εΊ¦γͺι‰›γƒ—γƒ¬γƒΌγƒˆγι«˜ι€ŸεŒ–", + "quests.extreme_voltage.dense_lead.subtitle": "ι‰›γƒ—γƒ¬γƒΌγƒˆι™εšη‰Ήεˆ₯ァービス", + "quests.extreme_voltage.dense_lead.desc": "εŽŸε­γƒžγ‚·γƒ³ε€–θ£…γ‚’δ½œγ‚‹γ«γ―ε€§ι‡γι«˜ε―†εΊ¦γͺι‰›γƒ—γƒ¬γƒΌγƒˆγŒεΏ…θ¦γ«γͺγ‚‹γŸγ‚γ€εŽι‡γ―γ‚„γ‚„ζΈ›γ‚ŠγΎγ™γŒγ€&6ε†…η ΄εœ§ηΈζ©Ÿ&rγ‚’δ½Ώγ£γŸζ–°γ—γ„γƒ¬γ‚·γƒ”γ‚’η”¨ζ„γ—γΎγ—γŸγ€‚ι‡‘ε±žεŠ ε·₯機γδ½œζ₯­γ‚’ζ°Έι γ«εΎ…γ‘ηΆšγ‘γŸγγͺγ„ε ΄εˆγ―γ€γœγ²γ“γ‘γ‚‰γ‚’ζ΄»η”¨γ—γ¦γγ γ•γ„γ€‚", + "quests.extreme_voltage.thorium_rod.title": "燃料棒", + "quests.extreme_voltage.thorium_rod.subtitle": "ε–γ‚Šζ‰±γ„ζ³¨ζ„", + "quests.extreme_voltage.thorium_rod.desc.1": "γγ‚Œγžγ‚Œγ&6燃料棒&rγ«γ―ε›Ίζœ‰γη‰Ήζ€§γŒγ‚γ‚Šγ€&a耐久倀&rοΌˆη‚‰ε†…γ§γ©γ‚Œγ γ‘ι•·γζŒγ€γ‹οΌ‰γ€&c発熱量&rοΌˆγ©γ‚Œγ γ‘η†±γ‚’η”ŸγΏε‡Ίγ™γ‹οΌ‰γ€γ•γ‚‰γ«γ―&eη”Ÿζˆη‰©&rγ‚„&bθ’Έζ°—γη™Ίη”Ÿι‡&rまで異γͺγ‚ŠγΎγ™γ€‚\n\nγ“γ‚Œγ‚‰γζƒ…報は、各燃料棒γ&aEMI&rタブからすべて璺θͺγ§γγΎγ™γ€‚\n\nγ“γ“γ§γ―γ€ζ Έεˆ†θ£‚η‚‰γ‚’ι‹η”¨γ™γ‚‹δΈŠγ§γ€γΎγšη†θ§£γ—γ¦γŠγγΉγι‡θ¦γͺγƒγ‚€γƒ³γƒˆγ‚’η΄Ήδ»‹γ—γ¦γ„γγΎγ™γ€‚", + "quests.extreme_voltage.thorium_rod.desc.2": "γƒ»η‡ƒζ–™ζ£’γ«θ‘¨η€Ίγ•γ‚Œγ¦γ„γ‚‹&eHeatοΌšοΌ…&rは、炉内ではそγε€€γγŠγ‚ˆγ2ε€εΌ±γ¨γ—γ¦ζ‰±γ‚γ‚ŒγΎγ™γ€‚γŸγ¨γˆγ°γ€&eγƒˆγƒͺウム燃料棒&rγ&c熱量&rは70οΌ…γͺγγ§γ€η‚‰γ«εεˆ†γͺ&b重水&rγŒδΎ›η΅¦γ•γ‚Œγ¦γ„γ‚‹γ¨γγ―γ€η‚‰ε†…γη†±ι‡γ―140弱にγͺγ‚ŠγΎγ™γ€‚\n\nさらにこγη†±ι‡γ―&a加η—式&rγ§η©γΏδΈŠγŒγ‚‹γŸγ‚γ€γƒˆγƒͺウム燃料棒を2本ε…₯γ‚Œγ‚Œγ°γ€η‚‰ε†…γη·η†±ι‡γ―γŠγ‚ˆγ280γΎγ§δΈŠζ˜‡γ—γΎγ™γ€‚", + "quests.extreme_voltage.thorium_rod.desc.3": "・&a耐久倀&rはどγη‡ƒζ–™ζ£’γ§γ‚‚εŸΊζœ¬ηš„γ«γ―εŒγ˜ι€ŸεΊ¦γ§ζΈ›γ£γ¦γ„γγΎγ™γ€‚γ—γ‹γ—η‚‰γζΈ©εΊ¦γŒι«˜γ„γ»γ©ζ—©γθ€δΉ…γŒζΈ›γ‚ŠγΎγ™γ€‚γγγŸγ‚γ€γ‚γ‚‹η‡ƒζ–™ζ£’γŒεˆ₯γη‡ƒζ–™ζ£’γ4倍γθ€δΉ…ε€€γ‚’ζŒγ£γ¦γ„γŸγ¨γ—γ¦γ‚‚γ€εΏ…γšγ—γ‚‚4ε€ι•·ζŒγ‘γ™γ‚‹γ¨γ―ι™γ‚ŠγΎγ›γ‚“γ€‚&cζΈ©εΊ¦γŒε―Ώε‘½γ«η›΄ζŽ₯ε½±ιŸΏγ™γ‚‹&rγŸγ‚γ§γ™γ€‚\n\nζ Έεˆ†θ£‚η‚‰γ§γ―γ€η‚‰ε†…γ«ε…₯γ‚Œγ‚‹η‡ƒζ–™ζ£’γζœ¬ζ•°γ‚„η΅„γΏεˆγ‚γ›γ‚’γ©γ†θͺΏζ•΄γ™γ‚‹γ‹γŒγ€ζœ€εˆγε€§γγͺθͺ²ι‘Œγ¨γͺγ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.fission_reactor.title": "ζ Έεˆ†θ£‚η‚‰", + "quests.extreme_voltage.fission_reactor.subtitle": "δΈ–η•ŒδΈ€ε‰ε…¨γͺεŽŸε­η‚‰", + "quests.extreme_voltage.fission_reactor.desc.1": "γΎγšγ€&6ζ Έεˆ†θ£‚η‚‰&rγδ»•η΅„γΏγ‚’γ‚ˆγ‚Šζ·±γη†θ§£γ—γŸγ„ε ΄εˆβ€•β€•η†±ι‡θ¨ˆη—γ‚„θ©³η΄°γͺζŒ™ε‹•γ€εŠΉηŽ‡γ«ι–’γ™γ‚‹ζ•°ε­¦ηš„γͺιƒ¨εˆ†γΎγ§ηŸ₯γ‚ŠγŸγ„γͺγ‚‰γ€γ€Œ&aGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ &r」γη« γ«γ‚γ‚‹γ‚―γ‚¨γ‚Ήγƒˆγ‚’η’Ίθͺγ—γ¦γΏγ¦γγ γ•γ„γ€‚η†±γ‚·γ‚Ήγƒ†γƒ γ¨εŠΉηŽ‡γ‚·γ‚Ήγƒ†γƒ γ‚’η†θ§£γ™γ‚‹γŸγ‚γ«εΏ…θ¦γͺζƒ…ε ±γŒγ™γΉγ¦θΌ‰γ£γ¦γ„γΎγ™γ€‚\n\nγ“γ“γ§γ―γ€γ¨γ‚Šγ‚γˆγš&6γƒˆγƒͺウムでγζ Έεˆ†θ£‚&rγ«θ©±γ‚’η΅žγ‚ŠγΎγ—γ‚‡γ†γ€‚γ“γη‚‰γ&cεŸΊη€Žθ€η†±δΈŠι™&rは&e400&rです。前γγ‚―γ‚¨γ‚Ήγƒˆγ§γ‚‚θͺ¬ζ˜Žγ—γŸγ¨γŠγ‚Šγ€γƒˆγƒͺウム燃料棒2ζœ¬γ§ι‹θ»’γ™γ‚‹γ¨ε†…ιƒ¨η†±ι‡γ―γŠγ‚ˆγ&e280&rとγͺγ‚Šγ€ε‰ε…¨εœγ«εŽγΎγ‚ŠγΎγ™γ€‚しかし3本η›γ‚’θΏ½εŠ γ™γ‚‹γ¨γ€η·η†±ι‡γ―γŠγ‚ˆγ&c420&rγ«ι”γ—γ€δΈŠι™γ‚’θΆ…γˆγ‚‹γŸγ‚γ€&cクールダウンヒード&rγŒη™Ίε‹•γ—γΎγ™γ€‚", + "quests.extreme_voltage.fission_reactor.desc.2": "εΏƒι…γ―γ„γ‚ŠγΎγ›γ‚“γ€‚η†±γŒδΈŠι™γ‚’θΆ…γˆγ¦γ‚‚η‚‰εΏƒθžθ§£γ§ηˆ†η™Ίγ™γ‚‹γ“γ¨γͺγ©γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚γγδ»£γ‚γ‚Šγ«η‚‰γ―εœζ­’γ—γ€εŒε…¨γ«ε†·γˆγ‚‹γΎγ§ε†θ΅·ε‹•できγͺくγͺγ‚ŠγΎγ™γ€‚γγι–“は&aι›»εŠ›γη”Ÿη”£&rγ‚‚&aζ Έεˆ†θ£‚η”Ÿζˆη‰©&rγη”Ÿη”£γ‚‚すべて歒まってしまい、倧きγͺロスにγͺγ‚ŠγΎγ™γ€‚\n\nそγγŸγ‚γ€γ€Œδ½•ζœ¬γη‡ƒζ–™ζ£’を稼働させるか」をθͺΏζ•΄γ™γ‚‹γ“γ¨γŒγ€ζ Έεˆ†θ£‚η‚‰γ«γŠγ‘γ‚‹ζœ€εˆγ&6θͺ²ι‘Œ&rγ§γ‚γ‚Šγ€γ„γ‚γ°γ“γγƒŸγƒ‹γ‚²γƒΌγƒ γγƒ‘むンγιƒ¨εˆ†γ§γ™γ€‚\n\nγ‚„γ‚Šζ–Ήγ―γ„γγ€γ‚‚γ‚γ‚ŠγΎγ™γ€‚θ©¦θ‘ŒιŒ―θͺ€γ‚’ζ₯½γ—みましょう。\n\n一぀γδΎ‹γ¨γ—て、炉に&6γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³γƒγƒΌγƒˆ&rγ‚’ε–γ‚Šδ»˜γ‘γ¦γ€&aレンチ&rで、監視ヒードを&e燃料棒γζ•°&rか&c熱量&rγ«εˆ‡γ‚Šζ›Ώγˆγ‚‰γ‚ŒγΎγ™γ€‚\n\nζœ€εΎŒγ«ι‡θ¦γͺ点として、すべてγη‡ƒζ–™ζ£’は&6燃料棒格納部&rε†…γ«ζ Όη΄γ•γ‚ŒγΎγ™γ€‚γ€γΎγ‚Šγ€η¨ΌεƒδΈ­γη‡ƒζ–™ζ£’γζœ¬ζ•°γ‚’εˆΆι™γ™γ‚‹γ“γ¨γ―、搬ε…₯バス内に燃料棒を2本ε…₯γ‚Œγ‚‹γ¨γ„γ†γ γ‘γε˜η΄”γͺ話ではγͺく、&c搬ε…₯γƒγ‚Ήγ«δ½•γŒε…₯γ‚‹γ‹γ‚’εˆΆεΎ‘γ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹&rγ¨γ„γ†γ“γ¨γ§γ™γ€‚γ“γ‚Œγ«γ‚ˆγ£γ¦η‚‰γε‹•δ½œγ‚’η²Ύε―†γ«θͺΏζ•΄γ§γγΎγ™γ€‚", + "quests.extreme_voltage.high_pressure_steam.title": "ι«˜εœ§θ’Έζ°—", + "quests.extreme_voltage.high_pressure_steam.subtitle": "ULVγε†ζ₯", + "quests.extreme_voltage.high_pressure_steam.desc": "&4重要事項&rοΌšι«˜εœ§θ’Έζ°—γ‚’ζŽ’ε‡Ίγ™γ‚‹γŸγ‚γζ¬ε‡ΊγƒγƒƒγƒγŒεŸ‹γΎγ£γ¦γ„γ‚‹ε ΄εˆγ€γγθ’Έζ°—はそγγΎγΎζΆˆγˆγ¦γ—まいます。\n\nバランスθͺΏζ•΄οΌˆγŠγ‚ˆγ³γƒ‘γ‚€γƒ—γε‡¦η†θƒ½εŠ›οΌ‰γ‚’η†η”±γ«γ€&6ζ Έεˆ†θ£‚η‚‰&rγ―ι€šεΈΈγθ’Έζ°—γ‚’η”ŸγΏε‡Ίγ—γΎγ›γ‚“γ€‚γγδ»£γ‚γ‚Šγ€&bι«˜εœ§θ’Έζ°—&rγ‚’η”Ÿζˆγ—γ€γ“γ‚Œγ―&6εŽŸε­εŠ›θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³&rγ§γ—γ‹εˆ©η”¨γ§γγΎγ›γ‚“γ€‚&r\n\n標準γθ’Έζ°—タービンに桁そうとしても、&cε‹•δ½œγ—γΎγ›γ‚“&r。", + "quests.extreme_voltage.ev_superconductor.title": "EVγθΆ…δΌε°Žδ½“", + "quests.extreme_voltage.ev_superconductor.subtitle": "θΆ…ι«˜ι›»εœ§γƒ»ι«˜ι›»ζ΅δΈ‘ε―ΎεΏœ", + "quests.extreme_voltage.ev_superconductor.desc": "&eウラン&rγε‡¦η†γ‚’ι€²γ‚γŸγ‚‰γ€&5三白金ウランワむダー&rγ‚’δ½œγ£γ¦γΏγ¦γ‚‚γ„γ„γ§γ—γ‚‡γ†γ€‚\n\nこγθΆ…δΌε°Žγ‚±γƒΌγƒ–γƒ«γ―γ‚ˆγ‚Šε€šγγγ‚’γƒ³γƒšγ‚’γ‚’ζ΅γ›γ‚‹γŸγ‚γ€εŸΊεœ°ε…¨δ½“γ§γ‚¨γƒγƒ«γ‚γƒΌγ‚’εŠΉηŽ‡γ‚ˆγι€ι›»γ§γγ€&6εŽŸε­εŠ›θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³&rからγε‡ΊεŠ›γ‚’ζε€±γͺγε„ζ©Ÿζ’°γΈε±Šγ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.extreme_voltage.uraninite_dust.subtitle": "膨倧γͺζ•°γζ£’", + "quests.extreme_voltage.uraninite_dust.desc": "&eウラン燃料棒&rγ‚’δ½œγ‚‹γ«γ―ε€§ι‡γ&e閃ウラン鉱&rγ‚’ζŽ˜γ‚Šε‡Ίγ™γ“γ¨γŒεΏ…θ¦γ§γ€1ζœ¬γ‚γŸγ‚ŠγŠγ‚ˆγ&c240個&rほど使います。そγγŸγ‚γ€εΎŒγ§δΈθΆ³γ—γͺγ„γ‚ˆγ†ζ—©γ‚γ«ζŽ‘ζŽ˜γ‚’ε§‹γ‚γ¦γŠγγ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚\n\nη«ζ˜Ÿγ«γ―ζœ€ε€§θ¦ζ¨‘γι‰±θ„ˆγŒε­˜εœ¨γ™γ‚‹γŸγ‚γ€δΈ€γ€γι‰±θ„ˆγ‹γ‚‰ε€§ι‡γ«η’ΊδΏγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nゲームを進めると、&6Ostrum Linear Accelerator&rを使って瀝青ウラン鉱や閃ウラン鉱を&a焑限&rγ«η”Ÿη”£γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚θ©³γ—γ„θͺ¬ζ˜Žγ―ε…ˆγγ‚―γ‚¨γ‚Ήγƒˆγ§η’Ίθͺγ§γγΎγ™γ€‚", + "quests.extreme_voltage.uranium_line.title": "ウランラむン", + "quests.extreme_voltage.uranium_line.subtitle": "新しい処理ラむン", + "quests.extreme_voltage.uranium_line.desc": "&eウラン&rと、そγεŒδ½δ½“である&eウラン235&rを処理するには、専用γε°θ¦ζ¨‘γͺε‡¦η†γƒ©γ‚€γƒ³γ‚’η”¨ζ„γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nε‰εΏƒγ—て下さい、フッ素は&aループ可能&rγͺγγ§γ€εΏ…要γͺγ‚‚γγ―&e閃ウラン鉱γη²‰&rだけです。\n\nこγγƒ©γ‚€γƒ³γ―εœ°ηƒγ§γ‚‚η΅„γ‚γΎγ™γŒγ€ι–ƒγ‚¦γƒ©γƒ³ι‰±γε€§εŠγ―η«ζ˜Ÿγ§ζŽ‘ζŽ˜γ™γ‚‹γ“γ¨γ«γͺγ‚‹γŸγ‚γ€η«ζ˜Ÿγ§η¨Όεƒγ•γ›γŸζ–ΉγŒδΎΏεˆ©γͺε ΄εˆγ‚‚γ‚γ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.radioactive_waste.title": "放射性廃棄物", + "quests.extreme_voltage.radioactive_waste.subtitle": "ガラクタだっていう人もいるけど、俺はεη‰©γ£γ¦ε‘Όγ‚“でる", + "quests.extreme_voltage.radioactive_waste.desc": "放射性廃棄物は欑γη‡ƒζ–™ζ£’γ₯γγ‚Šγ«ζ¬ γ‹γ›γͺい&c重要資源&rγ§γ™γ€‚εΏ…γšζ¬ε‡Ίγƒγƒƒγƒγ«εεˆ†γͺ空きεΉι‡γ‚’η’ΊδΏγ—γ¦γŠγ„γ¦δΈ‹γ•γ„γ€‚ζ¬ε‡Ίε…ˆγŒγͺいと、&cζ”Ύε°„ζ€§ε»ƒζ£„η‰©γ―ζΆˆζ»…γ—γ¦γ—γΎγ„&rγ€ε€§εˆ‡γͺ資源を倱うことにγͺγ‚ŠγΎγ™γ€‚\n\n対策としてはδ»₯δΈ‹γŒγŠγ™γ™γ‚γ§γ™οΌš\n-&bζΆ²δ½“γƒ­γƒƒγ‚―γ‚’ζœ‰εŠΉ&rに設εšγ—γŸε°‚η”¨γζ¬ε‡Ίγƒγƒƒγƒγ‚’使う\n-γ‚ΉγƒΌγƒ‘γƒΌγ‚Ώγƒ³γ‚―γ¨η™Ίε±•εž‹ζΆ²δ½“ζ€œε‡Ίε™¨γη΅„γΏεˆγ‚γ›γ§η‘理する\n\n火星で&dMEγƒγƒƒγƒˆγƒ―γƒΌγ‚―&rγ‚’ζ§‹η―‰ζΈˆγΏγͺγ‚‰γ€ζ–°γŸγ«θ§£η¦γ•γ‚ŒγŸ&6ME搬出ハッチ&rを使ってみるγγ‚‚γ„γ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚", + "quests.extreme_voltage.uranium_rod.subtitle": "忡鑘γγ‚¦γƒ©γƒ³η‡ƒζ–™", + "quests.extreme_voltage.uranium_rod.desc.1": "γ“γ‚Œγ―γ“γ‚Œγ―ζ Έεˆ†θ£‚η‡ƒζ–™γη¬¬δΊŒδΈ–代で、&eγƒˆγƒͺウム燃料棒&rと比べて耐久は&a4倍&rγ€η™Ίη”Ÿγ•γ›γ‚‹θ’Έζ°—ι‡γ―&a5倍&rγ¨ε€§εΉ…γ«εΌ·εŒ–γ•γ‚Œγ¦γ„γΎγ™γ€‚γŸγ γ—γ€γγεˆ†γ€δΊ‹ε‰γ«θ€ƒζ…γ™γΉγζ³¨ζ„η‚Ήγ‚‚γ‚γ‚ŠγΎγ™γ€‚\n\n&9η”Ÿη”£γ‚³γ‚Ήγƒˆγ¨ι‹η”¨ζΊ–ε‚™:&r\n‒こγη‡ƒζ–™γθ£½ι€ γ«γ―&eγƒˆγƒͺウム燃料棒&rγ‚’ζΆˆθ²»γ™γ‚‹γŸγ‚γ€εŸΊζœ¬ηš„γ«γ―ι«˜ζ€§θƒ½η‡ƒζ–™ζ£’1本に぀き1基γ&6ζ Έεˆ†θ£‚η‚‰&rγ‚’ε‰²γ‚Šε½“γ¦γ‚‹γγŒγŠγ™γ™γ‚γ§γ™γ€‚もけろん、1基γζ Έεˆ†θ£‚η‚‰γ§θ€‡ζ•°ζœ¬γ‚’γ†γΎγεˆ‡γ‚Šζ›ΏγˆγͺγŒγ‚‰ι‹η”¨γ™γ‚‹γ¨γ„γ†ζ–Ήζ³•γ‚‚γ‚γ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.uranium_rod.desc.2": "ウラン燃料棒は1ζœ¬γ§η΄„&c435&rγη†±γ‚’η”ŸγΏε‡Ίγ™γŸγ‚γ€εˆζœŸηŠΆζ…‹γθ¨±εΉη―„ε›²γ‚’ε€§γγθΆ…γˆγ¦γ—γΎγ„γΎγ™γ€‚γγ“γ§γ€ζΈ©εΊ¦η‘理γγŸγ‚γ«ζ¬‘γ3぀γδΈ»θ¦γͺζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&7β†’&rεŽŸε­η‚‰γδΈ­γ«&e20個γζ°·ε‘ŠηΎŠζ―›γθ€η†±γƒ•レーム&rγ‚’ε…₯γ‚Œγ¦&cθ€η†±δΈŠι™&rγ‚’&e440&rγΎγ§εΌ•γδΈŠγ’γ‚Œγ°γ€1本γη‡ƒζ–™ζ£’γ‚’ε‰ε…¨γ«ι‹η”¨γ§γγΎγ™γ€‚\n\n&7β†’&r&6γƒžγƒ†γƒͺをルホルダー&rに倧量γ&bドラむをむス&rγ‚’ι€γ‚ŠθΎΌγΏγ€εΌ·εˆΆηš„γ«ζΈ©εΊ¦γ‚’δΈ‹γ’γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γŸγ γ—γ€γ“γζ–Ήζ³•γγŸγ‚γ«γ―γ€η«ζ˜Ÿγ&bζΆ²εŒ–CO2ι‰±θ„ˆ&rを璺保して、ドラむをむスγδΎ›η΅¦γƒ©γ‚€γƒ³γ‚’η΅„γ‚€εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&7β†’&r&bε†·εͺ’γƒšγƒ¬γƒƒγƒˆ&rγ‚’γƒžγƒ†γƒͺをルホルダーにε…₯γ‚Œγ¦ε†·ε΄γ™γ‚‹ζ–Ήζ³•γ‚‚γ‚γ‚ŠγΎγ™γ€‚γƒ‰γƒ©γ‚€γ‚’γ‚€γ‚Ήγ¨γ‚„γ‚Šζ–Ήγ―γ‚γΎγ‚Šε€‰γ‚γ‚ŠγΎγ›γ‚“γŒγ€ε†·ε΄θƒ½εŠ›γ―γ“γ‘γ‚‰γζ–ΉγŒγ―γ‚‹γ‹γ«ι«˜γ„γ§γ™γ€‚γŸγ γ—δ½œζˆγ«γ―γ‹γͺγ‚Šγι‡γ&eフッ素&rγ‚’δ½Ώγ†γŸγ‚γ€ηΎζ™‚η‚Ήγ§γ―δΉ±η”¨γ§γγΎγ›γ‚“γ€‚\n\nγ‚‚γ‘γ‚γ‚“γ€γ“γ‚Œγ‚‰γ‚’ηŠΆζ³γ«εΏœγ˜γ¦η΅„γΏεˆγ‚γ›γ‚‹γͺど、独θ‡ͺγζ–Ήζ³•で解決するγγ‚‚いいでしょう。", + "quests.extreme_voltage.uranium_rod.desc.3": "&eウラン燃料棒&rγ§ζ Έεˆ†θ£‚η‚‰γ‚’η¨Όεƒγ•γ‚Œγ‚‹γ«γ―γ€ε†·ε΄γγŸγ‚γ«θ†¨ε€§γͺ量γ&b重水&rγ‚’ζΆˆθ²»γ—γΎγ™γ€‚η¨Όεƒε‰γ«γ€ι‡ζ°΄γ‚’εεˆ†γ«η”Ÿη”£γƒ»η’ΊδΏγ§γγ‚‹δ½“εˆΆγŒζ•΄γ£γ¦γ„γͺγ‘γ‚Œγ°γ€εŽŸε­η‚‰γ―γ™γγ«γ‚―γƒΌγƒ«γƒ€γ‚¦γƒ³γƒ’γƒΌγƒ‰γ«γͺるでしょう。\n\n供硦碲や冷却方法はε…₯εΏ΅γ«θ¨ˆη”»γ—γ¦δΈ‹γ•γ„γ€‚γ“γ‚Œγ‚‰γη‡ƒζ–™γ―ιžεΈΈγ«εΌ·εŠ›γ§γ™γŒγ€γγγΆγ‚“η›ΈεΏœγγ‚€γƒ³γƒ•γƒ©ζ•΄ε‚™γŒεΏ…ι ˆγ¨γͺγ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.uranium_waste.title": "ウラニウムζ‹η•™η‰©γ¨ζ”Ύε°„ζ€§θ’Έζ°—", + "quests.extreme_voltage.uranium_waste.subtitle": "ζ‹γ‚Šη‰©γ«γ―η¦γŒγ‚γ‚‹", + "quests.extreme_voltage.uranium_waste.desc.1": "&eウラン燃料棒&rγ‚’δ½Ώγ£γŸε ΄εˆγ«ε‡Ίγ‚‹ε‰―η”£η‰©γ―γ€γƒˆγƒͺウムγγ¨γγ‚ˆγ‚Šε°‘し耇雑です。\n\n&6‒ウラニウムζ‹η•™η‰©&rは&dγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ γƒ©γ‚€γƒ³&rγθ΅·η‚Ήγ¨γͺる重要γͺ素材で、そγγΎγΎε³εΊ§γ«εŠ ε·₯γ«ε›žγ›γΎγ™γ€‚\n\n&6β€’ζ”Ύε°„ζ€§θ’Έζ°—&rはζ™ι€šγθ’Έζ°—とは違い、そγγΎγΎγ§γ―ζ‰±γˆγΎγ›γ‚“γ€‚&6η†±δΊ€ζ›ζ©Ÿ&rγ«ι€šγ™γ“γ¨γ§ε‰ε…¨γ«ε‡¦η†γ•γ‚Œγ€ι«˜εœ§θ’Έζ°—γ¨γ—γ¦εˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.uranium_waste.desc.2": "さらに、放射性蒸気は &eγ‚ι…Έγ‚’ンヒニウム&rγ‚’εŠ η†±γ—γ¦&eγƒ›γƒ«γƒ γ‚’γƒŸγƒ‰&rγ«ε€‰ζ›γ™γ‚‹ε½Ήε‰²γ‚‚ζ‹…γ„γΎγ™γ€‚γƒ›γƒ«γƒ γ‚’γƒŸγƒ‰γ―γƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ η‡ƒζ–™γ₯γγ‚Šγθ¦γ¨γͺる中間素材です。そγγŸγ‚γ€γ‚¦γƒ©γƒ³η‡ƒζ–™ζ£’γ§ι«˜εœ§θ’Έζ°—γ‚’γ‚¨γƒγƒ«γ‚ー源としてε‰εšεˆ©η”¨γ—γŸγ„ε ΄εˆγ€γΎγšγ―こγε·₯程γγŸγ‚γ«&eγ‚ι…Έγ‚’ンヒニウム&rγδΎ›η΅¦δ½“εˆΆγ‚’ζ•΄γˆγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&cγΎγ¨γ‚οΌš&rγ‚¦γƒ©γƒ³η‡ƒζ–™ζ£’γ‚’ι‹η”¨γ™γ‚‹ιš›γ«γ―&eγ‚ι…Έγ‚’ンヒニウム&rγ‚’η”Ÿη”£γ—ηΆšγ‘γ‚‹ε°‚η”¨γƒ©γ‚€γƒ³γ‚’εΏ…γšη”¨ζ„γ—γ¦δΈ‹γ•γ„γ€‚γ“γ“γŒζ­’γΎγ‚‹γ¨γ€γƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ ι–’ι€£γε·₯η¨‹γ‚‚ι«˜εœ§θ’Έζ°—γδΎ›η΅¦γ‚‚εŒε…¨γ«γ‚Ήγƒˆγƒƒγƒ—してしまいます。", + "quests.extreme_voltage.ammonium_formate.title": "γ‚ι…Έγ‚’ンヒニウム", + "quests.extreme_voltage.ammonium_formate.subtitle": "εΏ…ι ˆζ „ι€Šη΄ ", + "quests.extreme_voltage.ammonium_formate.desc": "ε‰εšγ—γ¦ι«˜εœ§θ’Έζ°—γ‚’η”Ÿη”£γ™γ‚‹γŸγ‚γ«γ―、&eγ‚ι…Έγ‚’ンヒニウム&rγ‚’η„‘ι™γ«η”Ÿη”£γ§γγ‚‹δ½“εˆΆγŒεΏ…ι ˆγ§γ™γ€‚γ“γ‚ŒγŒγͺいと&bζ”Ύε°„ζ€§θ’Έζ°—&rγ‚’ι«˜εœ§θ’Έζ°—γ«ε€‰ζ›γ§γγšγ€η™Ίι›»γŒζ­’γΎγ£γ¦γ—γΎγ„γΎγ™γ€‚γŸγ γ—γ€η”Ÿη”£δ½“εˆΆγζ§‹η―‰θ‡ͺδ½“γ―γγ“γΎγ§ι›£γ—γγ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nまず&eγ‚ι…Έ&rγ―γ€η«ζ˜Ÿγη©Ίζ°—γ‹γ‚‰ε–γ‚Šε‡Ίγ—γŸCOβ‚‚γ¨γ€ζ°΄γ‚’εˆγ‚γ›γ‚‹γ γ‘γ§η°‘ε˜γ«δ½œγ‚ŒγΎγ™γ€‚\n\nそして&eをンヒニを&rγ―γ€γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚ŠγεŠι‡ζ°΄γ‚’ι εΏƒεˆ†ι›’γ—γ¦ε‡ΊγŸ&eε‘©εŒ–γ‚’γƒ³γƒ’γƒ‹γ‚¦γƒ γη²‰&rγ‚’ι›»θ§£γ™γ‚Œγ°η”Ÿζˆγ§γγΎγ™γ€‚\n\nこγε·₯程では &bι…Έη΄ &rγ‚„&bε‘©ι…Έ&rγŒδ½™γ‚‹γŸγ‚γ€δ½™ε‰°γ‚’η ΄ζ£„γ—γ¦γƒ©γ‚€γƒ³γŒθ©°γΎγ‚‰γͺγ„γ‚ˆγ†γ«γ—γ€&eγ‚ι…Έγ‚’ンヒニウム&rγη”Ÿη”£γŒζ»žγ‚‰γͺγ„γ‚ˆγ†γ«γ—γ¦δΈ‹γ•γ„γ€‚", + "quests.extreme_voltage.nuclear_residue_dust.title": "ζ Έεˆ†θ£‚ζ‹η•™η‰©γη²‰", + "quests.extreme_voltage.nuclear_residue_dust.subtitle": "η©Ίγε€§ζ€ͺ獣γε΅", + "quests.extreme_voltage.nuclear_residue_dust.desc": "&eζ Έεˆ†θ£‚ζ‹η•™η‰©γη²‰&rは、&dγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ γƒ©γ‚€γƒ³&rγγŸγ‚γι‡θ¦γͺη΄ ζγ§γ™γ€‚η«ζ˜Ÿγ§&5EVγ‚¬γ‚Ήεœ§ηΈζ©Ÿ&rγ‚’δ½Ώγ†γ“γ¨γ§η”Ÿη”£γ§γγΎγ™γ€‚\n\nこγε‡¦η†γ§γ―副産物として&bラドン&rγ‚‚η”Ÿζˆγ•γ‚ŒγΎγ™γ€‚εΎŒγε·₯程でラドンを使う場青はあるもγγγ€ε½“青γι–“γ―γ“γ“γŒε”―δΈ€γε‰εšδΎ›η΅¦ζΊγ«γͺγ‚ŠγΎγ™γ€‚\n\n&eζ Έεˆ†θ£‚ζ‹η•™η‰©&rγη”Ÿη”£γ«γ―耇雑γͺεΎͺη’°ε·₯η¨‹γ‚’η΅„γ‚€εΏ…θ¦γŒγ‚γ‚ŠγΎγ›γ‚“γ€‚ζ Έεˆ†θ£‚η‚‰γ¨η†±δΊ€ζ›ζ©Ÿγ‹γ‚‰γη”Ÿη”£η‰©γ«&e火星γζ³₯ζΌΏ&rγ‚’ζ··γœγ¦&6γ‚¬γ‚Ήεœ§ηΈζ©Ÿ&rで加ε·₯γ™γ‚‹γ γ‘γ§ζ Έεˆ†θ£‚ζ‹η•™η‰©γη²‰γŒη”Ÿζˆγ•γ‚Œγ€γγγΎγΎζ¬‘γγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ γƒ©γ‚€γƒ³γ«εˆ©η”¨γ§γγΎγ™γ€‚", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.subtitle": "ζ‚ͺι­”γε΅", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.desc.1": "γ“γ“γ‹γ‚‰ε…ˆγ―γ€&dγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ γƒ©γ‚€γƒ³&rγγŸγ‚γθ€‡ι›‘γͺεΎͺη’°ε·₯η¨‹γ‚’η΅„γ‚€εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&bι…ΈεŒ–ζ Έεˆ†θ£‚ζ‹η•™η‰©γη²‰&rγ‚’δ½œγ‚‹γ«γ―&bδΊŒγƒ•γƒƒεŒ–δΊŒι…Έη΄ &rγŒεΏ…θ¦γ§γ™γ€‚\nそγιš›γ€γƒ•ッ素は&bγƒ•γƒƒεŒ–ζ°΄η΄ ι…Έ&rγ‚’ι›»θ§£γ—γ¦ε›žεŽγ™γ‚‹γ“γ¨γ§γ€γƒ«γƒΌγƒ—γ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.desc.2": "こγε·₯η¨‹γ―ε‡¦η†ζ™‚ι–“γŒι•·γ„γŸγ‚γ€γƒ«γƒΌγƒ—γ‚’ε‰εšγ—γ¦ε›žγ™γŸγ‚γ«γ€γ‚γ‚‹η¨‹εΊ¦γΎγ¨γΎγ£γŸι‡γγƒ•γƒƒη΄ γ‚’η’ΊδΏγ—γ¦γ‹γ‚‰ε§‹γ‚γ‚‹γ“γ¨γ‚’εΌ·γγŠγ™γ™γ‚γ—γΎγ™γ€‚\n\nγ‚Ώγƒ³γ‚―γŒδΈ€ζ―γ«γͺγ£γŸγ‚Šγƒγƒƒγƒ•γ‚‘γŒθ©°γΎγ£γŸγ‚Šγ™γ‚‹γ¨γ€γƒ©γ‚€γƒ³ε…¨δ½“γŒζ­’γΎγ£γ¦γ—γΎγ„γ€γ‚γ–γ‚γ–η«ζ˜ŸγΎγ§ι£›γ‚“γ§γ„γ£γ¦ε―Ύε‡¦γ™γ‚‹ηΎ½η›γ«γͺγ‚ŠγΎγ™γ€‚&aスーパータンク&rや、必要γͺ梲体だけ受けε…₯γ‚Œγ‚‹γ‚ˆγ†γƒ•γ‚£γƒ«γ‚Ώγƒͺγƒ³γ‚°γ¨δ½™ε‰°γ‚’ε»ƒζ£„γ™γ‚‹γ‚ˆγ†θ¨­εšγ—γŸ&aγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚»γƒ«&rγͺどでη‘理するとε‰ε…¨γ§γ™γ€‚\n\nさらに、こγγƒ¬γ‚·γƒ”では&eζ‹η•™ζ”Ύε°„ζ€§ζ··εˆη‰©&rγŒε‰―η”£η‰©γ¨γ—γ¦η”Ÿη”£γ•γ‚ŒγΎγ™γ€‚γ“γ‚Œγ―ε°†ζ₯ηš„γ«&6γ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒͺニををクセラレーター&r(火星でγη„‘ι™ι‰±ηŸ³η”ŸζˆοΌ‰γ‚„&6Growth Chamber&rοΌˆγƒγ‚€γ‚ͺエンジニをγƒͺγƒ³γ‚°ε°Žε…₯οΌ‰γ€γ•γ‚‰γ«η«ζ˜Ÿε€–γ &6Fission Reactors&rγ§γ‚‚εˆ©η”¨γ™γ‚‹ι‡θ¦θ³‡ζΊγ«γͺγ‚‹γŸγ‚γ€ζ₯΅εŠ›ζ¨γ¦γšγ«η’ΊδΏγ—γ¦γŠγγ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚", + "quests.extreme_voltage.refined_nuclear_dust.subtitle": "γƒ•γƒƒη΄ γ‚’ε€§εˆ‡γ«", + "quests.extreme_voltage.refined_nuclear_dust.desc": "&eη²Ύθ£½ζ Έεˆ†θ£‚ζ‹η•™η‰©γη²‰&rγ‚’δ½œγ‚‹ε·₯η¨‹γ§η™Ίη”Ÿγ™γ‚‹γƒ•γƒƒεŒ–ζ°΄η΄ ι…Έγ‹γ‚‰γƒ•γƒƒη΄ γ‚’ε–γ‚Šε‡Ίγ—γ€γγ‚Œγ‚’ε†γ³&bδΊŒγƒ•γƒƒεŒ–δΊŒι…Έη΄ &rγη”Ÿζˆγ«ε›žγ™γ“γ¨γ§γ€γƒ•γƒƒη΄ γ‚’γƒ«γƒΌγƒ—γ•γ›γ‚‰γ‚ŒγΎγ™γ€‚\n\nθ’Έη•™ζ°΄γ«γ€γ„γ¦γ―ε•ι‘Œγͺγ„γ§γ—γ‚‡γ†γ€‚ι…Έη΄ γŒδ½™γ£γŸε ΄εˆγ―γ€εΏ…θ¦γ«εΏœγ˜γ¦θ‡ͺε‹•γ§η ΄ζ£„γ™γ‚‹γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚\n\nこγγƒ¬γ‚·γƒ”γ―ε‡¦η†ι€ŸεΊ¦γŒιžεΈΈγ«ι…γ„γγ§γ€ι›»εŠ›γ«δ½™θ£•γŒγ‚γ‚‹γͺら &6ε€§εž‹ι εΏƒεˆ†ι›’ζ©Ÿ&rγ§ι«˜ι€ŸεŒ–γ—γ¦γ‚‚γ„γ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚γŸγ γ—γ€εΊη›€γ§ι›»εŠ›γ‚’ζ΅ͺθ²»γ—γ™γŽγ‚‹γ¨ε…¨δ½“γι€²θ‘Œγ«ε·ζ”―γˆγŒε‡Ίγ‚‹γŸγ‚γ€ι‹η”¨γ«γ―ζ…Žι‡γ•γŒζ±‚γ‚γ‚‰γ‚ŒγΎγ™γ€‚", + "quests.extreme_voltage.plutonium.title": "γƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ ", + "quests.extreme_voltage.plutonium.subtitle": "デーヒンコを", + "quests.extreme_voltage.plutonium.desc": "γ€γ„γ«γƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ γ«θΎΏγ‚Šγ€γγΎγ—γŸοΌδ»Šγγ¨γ“ろ用途は&dγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ η‡ƒζ–™ζ£’&rγδ½œζˆγ γ‘γͺγγ§γ€ε€§ι‡γ«θ²―θ”΅γ—γ¦γŠγεΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ η²Ύθ£½ζ™‚γ«η™Ίη”Ÿγ—γŸθ’Έζ°—γ―γγγΎγΎζ¨γ¦γ‚‹γ‹ι€šεΈΈγθ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³γ§δ½ΏγˆγΎγ™γ€‚ι€šεΈΈγθ’Έζ°—は&6εŽŸε­εŠ›θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³&rで使えγͺいγγ§ζ°—γ‚’δ»˜γ‘γ¦γγ γ•γ„&r。", + "quests.extreme_voltage.plutonium_rod.subtitle": "エネルγ‚γƒΌε•ι‘Œγ«η΅‚ζ­’符を打぀", + "quests.extreme_voltage.plutonium_rod.desc.1": "γ―γ£γγ‚Šγ¨η”³γ—δΈŠγ’γΎγ™γ€‚&dγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ η‡ƒζ–™ζ£’&rγ―δ½œζˆγ«ζ‰‹ι–“γ“γγ‹γ‹γ‚ŠγΎγ™γŒγ€γγζ€§θƒ½γ―まさに&aζ‚ͺι­”η΄š&rです。\nウラン燃料棒と比べて約&e4倍γι«˜εœ§θ’Έζ°—&rγ‚’η”ŸγΏε‡Ίγ™γŸγ‚γ€εΈΈζ™‚η¨Όεƒγ—γ¦γ„γͺγγ¨γ‚‚η«ζ˜ŸεŸΊεœ°γθ¨­ε‚™ε’—εΌ·γŒε―能にγͺるほどγεΌ·εŠ›γͺ燃料です。", + "quests.extreme_voltage.plutonium_rod.desc.2": "γŸγ γ—γ€γ“γη‡ƒζ–™ζ£’は&cとて぀もγͺい熱&rγ‚’η”ŸγΏε‡Ίγ™γŸγ‚ζ³¨ζ„γŒεΏ…θ¦γ§γ™γ€‚η†±ι‡γ―ζœ€ι«˜γ§&6595&rにもγͺγ‚‹γŸγ‚γ€ηΎηŠΆγ§γ―&bε†·εͺ’γƒšγƒ¬γƒƒγƒˆ&rを使わγͺγ„ι™γ‚Šε‰ε…¨ι‹θ»’はできません。\n右側γγ‚―γ‚¨γ‚Ήγƒˆγ«γ€γ“γζζ–™γθ©³γ—いθͺ¬ζ˜ŽγŒγ‚γ‚ŠγΎγ™γ€‚ε†·εͺ’γƒšγƒ¬γƒƒγƒˆγ―&6γƒžγƒ†γƒͺをルホルダー&rγ«ζŠ•ε…₯して使います。\n\nγ¨γ―γ„γˆγ€&6γƒžγƒ†γƒͺをルホルダー1぀&rで、炉内γη†±γ‚’&e430&rγΎγ§δΈ‹γ’γ‚‰γ‚Œγ‚‹γŸγ‚γ€&fζ°·ε‘ŠηΎŠζ―›γθ€η†±γƒ•レーム&rγ§εεˆ†γͺレベルにγͺγ‚ŠγΎγ™γ€‚\n&6γƒžγƒ†γƒͺをルホルダー&rγ‚’2γ€δ½Ώγˆγ°γ€η‚‰γ‚’εŒε…¨γͺε‰εšηŠΆζ…‹γ«δΏγ€γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.extreme_voltage.tritiated_water.title": "γƒˆγƒͺチウム水", + "quests.extreme_voltage.tritiated_water.subtitle": "ζ°΄η΄ ζ°΄γ3倍γεŠΉθƒ½οΌ", + "quests.extreme_voltage.tritiated_water.desc": "&bγƒˆγƒͺチウム水&rは、&eNanoCPUウェハー&rγδ½œζˆγ€γγ—γ¦ζœ€η΅‚ηš„γ«&6IVε›žθ·―&rγ‚’δ½œγ‚‹γŸγ‚γ«ζ¬ γ‹γ›γͺい重要素材です。\n\nさらに、γ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒͺニををクセラレーターでも必要にγͺγ£γŸγ‚Šγ€ι›»θ§£γ—γ¦&6三重水素ガス&rγ«ε€‰ζ›γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γŒγ€γγ‚ŒγŒεΏ…θ¦γ«γͺγ‚‹γγ―γΎγ γΎγ ε…ˆγ§γ™γ€‚\n\n&cγƒžγ‚Έ&rγζ³¨ζ„β€”β€”&bγƒˆγƒͺチウム水&rはζ₯΅γ‚γ¦θ²΄ι‡γͺγγ§γ€δΈ€ζ»΄γŸγ‚Šγ¨γ‚‚η„‘駄にしγͺγ„γ‚ˆγ†η΄°εΏƒγζ³¨ζ„γ‚’払って扱ってください!", + "quests.extreme_voltage.nano_cpu_wafer.subtitle": "γ“γ‘γ‚‰γŠι«˜γγͺγ£γ¦γŠγ‚ŠγΎγ™οΌ", + "quests.extreme_voltage.nano_cpu_wafer.desc": "&dNanoCPUウェハー&rは、IVε›žθ·―γ‚’δ½œγ‚‹γŸγ‚γζœ€εˆγι–’ι–€γ§γ‚γ‚Šγ€&b64kγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ&rγ‚’δ½œγ‚‹γŸγ‚γ«γ‚‚εΏ…ι ˆγ¨γͺる重要素材です。\n\nγ“γ‚Œγ‹γ‚‰ε…ˆγδΈŠδ½ε›žθ·―は、&eいかγͺγ‚‹ζ–Ήζ³•γ§δ½œγ‚‹ε ΄εˆγ§γ‚‚&r、こγγ‚¦γ‚§γƒγƒΌγ‚’ε€§ι‡γ«ζΆˆθ²»γ™γ‚‹γŸγ‚γ€ζœ¬ε½“γ«ε€§ι‡γη’ΊδΏγŒεΏ…要にγͺγ‚ŠγΎγ™γ€‚\n\nさらに、IV時代γγƒγƒƒγƒ†γƒͺーである&dγƒ©γƒγƒ©γƒˆγƒ‹γƒƒγ‚―γ‚¨γƒγƒ«γ‚γƒΌγ‚ͺγƒΌγƒ–&rγθ£½ι€ γ«γ‚‚θ¦ζ±‚γ•γ‚ŒγΎγ™γ€‚\n\nη›ε‰γ¨γ—て、&bγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ η‡ƒζ–™ζ£’1本&rγ‹γ‚‰η”Ÿζˆγ•γ‚Œγ‚‹ι‡γγƒˆγƒͺチウム水から、&eけょうど9枚γNanoCPUウェハー&rγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.extreme_voltage.first_iv_circuit.title": "パむンフレーム - 初γIVε›žθ·―", + "quests.extreme_voltage.first_iv_circuit.subtitle": "EVγ―γ‚‚γ†η΅‚γ‚γ‚Šγ‹οΌŸ", + "quests.extreme_voltage.first_iv_circuit.desc": "γ‚ˆγ†γ‚„γζ–°γ—γ„ε›žθ·―γ‚’ζ‰‹γ«ε…₯γ‚Œγ€ζ–°γŸγͺγ‚Ήγƒ†γƒΌγ‚ΈγΈγ¨ι€²γ‚€γ“γ¨γŒγ§γγΎγ™γ€‚ιΈζŠžθ‚’γ―δΈ€ζ°—γ«εΊƒγŒγ‚ŠγΎγ™γŒγ€γΎγšζœ€εˆγ«η›ζŒ‡γ™γΉγγ― &6IVη΅„η«‹ζ©Ÿ&r γ§γ™γ€‚γ“γ‚Œγ‚’δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺると、炉γγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ§γ‚γ‚‹&eγƒ’γƒ‡γƒ¬γƒΌγƒˆγ‚³γ‚’γθ€η†±γƒ•レーム&rγ‚’δ½œζˆγ§γγ€η‚‰γ&cθ€η†±δΈŠι™&rγŒε€§εΉ…γ«ε‘δΈŠγ—γ€ε†·εͺ’γƒšγƒ¬γƒƒγƒˆγ«ι Όγ‚‰γšγ«ε‰εšη¨Όεƒγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nさらに、&5EVε›žθ·―δ½œζˆζ©Ÿ&rγ‚’δ½œγ‚Œγ°&bγƒŠγƒŽγƒ—γƒ­γ‚»γƒƒγ‚΅γƒΌη³»η΅±γε›žθ·―&rγŒθ§£η¦γ•γ‚ŒγΎγ™γ€‚γ‚‚γ‘γ‚γ‚“γ€γ“γ‚Œγ‚‰γε›žθ·―にはNanoCPUγƒγƒƒγƒ—γŒεΏ…θ¦γ«γͺγ‚‹γŸγ‚γ€ε‰εšγ—γŸζ Έεˆ†θ£‚γ‚·γ‚Ήγƒ†γƒ γŒζ•΄γ£γ¦γ„γ‚‹γ“γ¨γŒε‰ζγ«γͺγ‚ŠγΎγ™γ€‚\n\n詳細は&6IV&rγη« γ§γ—γ£γ‹γ‚Šθͺ¬ζ˜Žγ•γ‚Œγ¦γ„γ‚‹γγ§γ€ζ–°γ—γ„γƒ†γ‚£γ‚’γΈι€²γ‚€γ«γ‚γŸγ‚Šε‰εΏƒγ—γ¦ζΊ–ε‚™γ‚’ι€²γ‚γ‚‰γ‚Œγ‚‹γ―γšγ§γ™γ€‚", + "quests.extreme_voltage.moderate_core.subtitle": "素晴らしいをップグレード", + "quests.extreme_voltage.moderate_core.desc": "γ“γ“γΎγ§γγ‚Œγ°&6ζ Έεˆ†θ£‚η‚‰&rγ‚’ζœ¬ζ Όηš„γ«εΌ·εŒ–γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&eγƒ’γƒ‡γƒ¬γƒΌγƒˆγ‚³γ‚’θ€η†±γƒ•γƒ¬γƒΌγƒ &rは2η¨ι‘žγ‚γ‚Šγ€γ©γ‘γ‚‰γ‚’δ½œγ‚Œγ‚‹γ‹γ―ι‹ζ¬‘η¬¬γ§γ™γ€‚\n\n性能γθ‰―い方γͺら、&dγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ η‡ƒζ–™ζ£’1本&rγζ Έεˆ†θ£‚炉を&a冷却材γδΎ›η΅¦γͺしで&rη¨Όεƒγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γ“γ‚Œγ§γ€ι’ε€’γͺ&bRε†·εͺ’γƒšγƒ¬γƒƒγƒˆ&rδ½œγ‚Šγ‹γ‚‰θ§£ζ”Ύγ•γ‚ŒγΎγ™γ€‚γ‚‚γ‘γ‚γ‚“γ€ε†·ε΄ζγ¨η΅„γΏεˆγ‚γ›γ‚Œγ°γ€&a2γƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ η‡ƒζ–™ζ£’2本&rγ§η¨Όεƒγ§γγ‚‹ε―θƒ½ζ€§γ‚‚γ‚γ‚ŠγΎγ™γ€‚\n\nこγγ‚³γ‚’γ‚’δ½œγ‚‹ε·₯η¨‹γ―γ€Œ&6γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγƒ©γ‚€γƒ³&rγ€γ¨ε‘Όγ°γ‚ŒγΎγ™γ€‚ε€±ζ•—γ—γŸγ‚Šζ€§θƒ½γŒδ½Žγ„γ‚³γ‚’γŒγ§γγ¦γ—γΎγ†γͺど、ランダム要素をζ₯½γ—γ‚€γ“γ¨γŒγ§γγΎγ™γ€‚γγγŸγ‚&dAE2&rγ«γ‚ˆγ‚‹ε…¨θ‡ͺε‹•εŒ–γ―ε°‘γ—ε·₯ε€«γŒθ¦γ‚ŠγΎγ™γŒγ€δΈε―θƒ½γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nζœ€ι©γͺγ‚„γ‚Šζ–Ήγ¨γ„γ†γγ―η’°ε’ƒγ«γ‚ˆγ£γ¦γ‚‚ε€‰γ‚γ‚‹γŸγ‚γ€γœγ²εŸιš›γ«ζ§‹η―‰γ—γͺγŒγ‚‰εŠΉηŽ‡γθ‰―い方法を見぀けてみてください。", + "quests.extreme_voltage.abs.subtitle": "ζΊΆγ‹γ—γ¦ζ··γœγ‘γ‚ƒγˆ", + "quests.extreme_voltage.abs.desc": "&6εˆι‡‘ι«˜η‚‰&rοΌˆι€šη§°οΌšABS)は、かγͺγ‚Šη‰Ήεˆ₯γͺγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ§γ™γ€‚&6EBF&rγ«δΌΌγŸδ»•η΅„γΏγ‚’γ—γ¦γŠγ‚Šγ€ι«˜ζ€§θƒ½γͺγ‚³γ‚€γƒ«γ‚’δ½Ώγˆγ°γ€ŒPOCγ€γŒε―θƒ½γ«γͺγ‚ŠγΎγ™γ€‚γΎγŸγ€EBFγγ»γ¨γ‚“どγγƒ¬γ‚·γƒ”γ‚’&aι€šεΈΈγ‚ˆγ‚Š25οΌ…ι€Ÿγ&r処理できるγγ‚‚倧きγͺ強みです。γͺγŠγ€γ‚€γƒ³γ‚΄γƒƒγƒˆγ§γ―γͺγγ€Œη†”θžζΆ²δ½“γ€γ«γͺる点はご注意ください。\n\nABSγζœ€ε€§γεˆ©η‚Ήγ―、&6ε€§εž‹ζ©Ÿζ’°&rγζ§‹η―‰γ«εΏ…要とγͺγ‚‹εˆι‡‘γ‚’δ½œγ‚Œγ‚‹γ“γ¨γ§γ™γ€‚η²‰η •ζ©Ÿγ‚„θ’Έη•™ζ©Ÿγγ‚ˆγ†γͺεŸΊζœ¬ζ©Ÿζ’°γ«γ―γ€γγ‚Œγžγ‚Œε€§εž‹η‰ˆοΌˆγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―η‰ˆοΌ‰γŒε­˜εœ¨γ—γ€ζ¬ε…₯・搬出ハッチγε’—θ¨­γ‚„δΈ¦εˆ—εˆΆεΎ‘γƒ¦γƒ‹γƒƒγƒˆγθΏ½εŠ γͺγ©γ€ζŸ”θ»Ÿγ«γ‚«γ‚Ήγ‚Ώγƒžγ‚€γ‚Ίγ§γγΎγ™γ€‚\n\nε€§εž‹ζ©Ÿζ’°γθ©³γ—γ„δ»•η΅„γΏγ«γ€γ„γ¦γ―γ€γ€Œ&6Gregtechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ &r」γη« γ‚’ご覧ください。", + "quests.extreme_voltage.ev_mixer.title": "&5EVγƒŸγ‚­γ‚΅γƒΌ&r", + "quests.extreme_voltage.ev_mixer.subtitle": "γƒγƒΌγƒ†γƒ³γƒ€γƒΌγ‚ˆγ‚Šζ··γœδΈŠζ‰‹", + "quests.extreme_voltage.ev_mixer.desc": "&6γƒŸγ‚­γ‚΅γƒΌ&rγ―ι€²θ‘Œγ«γŠγ„γ¦ιžεΈΈγ«ι‡θ¦γ§γ™γ€‚ζ–°γ—γ„εˆι‡‘γ‚’γ„γγ€γ‚‚ζ‰±γˆγ‚‹γ‚ˆγ†γ«γͺγ‚Šγ€γγδΈ­γ§γ‚‚&6RTMεˆι‡‘&rγ―εΏ…ι ˆγ§γ™γ€‚γ“γ‚Œγ―&6EBF&rγζ–°γ—γ„γ‚³γ‚€γƒ«γ«δ½Ώγ†εˆι‡‘γ§γ™γŒγ€γ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³γƒ©γ‚€γƒ³γ¨η™½ι‡‘ζ—γƒ©γ‚€γƒ³γδΈ‘方をある程度進めγͺγ„γ¨δ½œγ‚Œγͺγ„γŸγ‚γ€γ‚„γ‚„δ½œγ‚‹γγŒι›£γ—いです。\n\nγ„γšγ‚Œγ―&5ε€§εž‹ζ··εˆζ©Ÿ&rγ‚‚ι–‹ζ”Ύγ•γ‚Œγ€γ‚¨γƒγƒ«γ‚ーハッチを2εŸΊζ­θΌ‰γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚ε°εž‹γγƒŸγ‚­γ‚΅γƒΌγ‚’δ½œγ‚‹γγ―γ“γ‚ŒγŒζœ€εΎŒγ«γͺγ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚", + "quests.extreme_voltage.rtm.title": "RTMεˆι‡‘", + "quests.extreme_voltage.rtm.subtitle": "Ruthenium-Tungsten-Molybdenumεˆι‡‘", + "quests.extreme_voltage.rtm.desc": "&6RTMεˆι‡‘&rγ‚’δ½œγ‚‹γ«γ―γ€η™½ι‡‘ζ—γƒ©γ‚€γƒ³γ§η’ΊδΏγ§γγ‚‹&dルテニウム&rと、TFGではε…₯ζ‰‹ι›£εΊ¦γŒδΈŠγŒγ£γ¦γ„γ‚‹&aタングステン&rγδΈ‘ζ–ΉγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\nRTMγ‚’ι‡η”£γ—γŸγ„ε ΄εˆγ―γ€γΎγšγ“γδΊŒγ€γγƒ©γ‚€γƒ³γε‰εšη¨Όεƒγ‚’η›ζŒ‡γ—ましょう。\n\nι€šεΈΈγGregTechではRTMεˆι‡‘γ―γγ‚Œγ»γ©ι‡θ¦γ§γ―γͺγ„δΈ­ι–“η΄ ζγ§γ™γŒγ€TFGγ§γ―δΊ‹ζƒ…γŒη•°γͺγ‚ŠγΎγ™γ€‚γ“γ‚Œγ‹γ‚‰δ½œγ‚‹ζ Έεˆ†θ£‚ι–’ι€£γγƒžγƒ«γƒγƒ–ロックでRTMεˆι‡‘γ‚’ε€šη”¨γ™γ‚‹γ“γ¨γ«γͺγ‚‹γγ§γ™γ€‚\n\nγΎγŸγ€HSS-Gγ‚³γ‚€γƒ«γ‚’δ½œγ‚Œγ‚‹γγ―γ•γ‚‰γ«ε…ˆγ«γͺγ‚‹γγ§γ€δ»Šγ―&6RTMコむル&rを使うγγŒγŠγ™γ™γ‚γ§γ™γ€‚", + "quests.extreme_voltage.rtm_coil.subtitle": "RealTrainModγ˜γ‚ƒγͺγ„γ§γ™γ‚ˆ", + "quests.extreme_voltage.rtm_coil.desc": "&6RTMコむル&rγ―ζœ€ε€§&e4500K&rγι«˜ζΈ©γ‚’ζ‰±γˆγ‚‹γŸγ‚γ€γ‚²γƒΌγƒ ι€²θ‘Œγ«γ¨γ¦γ‚‚ι‡θ¦γͺη‚­εŒ–γ‚Ώγƒ³γ‚Ώγƒ«γθ£½ι€ γŒε―能にγͺγ‚ŠγΎγ™γ€‚&5εˆι‡‘ι«˜η‚‰&rγδ½œζˆγ«εΏ…ι ˆγ§γ€EBFγ‚„ζ Έη‡ƒζ–™ζˆε½’ζ©Ÿγε‡¦η†ι€ŸεΊ¦γ‚‚ε€§γγε‘δΈŠγ—γΎγ™γ€‚\n\nさらに、こγγ‚³γ‚€γƒ«γ―&aζœˆι’ε †η©η²‰ε‘΅&rγ‚„&dγ‚ͺγ‚Ήγƒˆγƒ©γƒ &rγζŠ½ε‡Ίγ‚³γ‚Ήγƒˆγ‚’δΈ‹γ’γ‚‹γ“γ¨γ«γ‚‚ε½Ήη«‹γ£γ¦γγ‚ŒγΎγ™\n\nι€šεΈΈγGregTechγͺらすぐ欑γHSS-Gγ‚’δ½œγ‚‹ζ΅γ‚Œγ§γ™γŒγ€TFGでは&5ζ Έεˆ†θ£‚ι–’ι€£γι€²θ‘Œ&rγ‚’η΅‚γˆγ‚‹γΎγ§&1IVη΅„η«‹ζ©Ÿ&rγ‚’δ½œγ‚Œγͺγ„γŸγ‚γ€&6RTMコむル&rγŒι•·γ„ι–“ζ΄»θΊγ—γ¦γγ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚", + "quests.extreme_voltage.ruthenium.title": "ルテニウム", + "quests.extreme_voltage.ruthenium.subtitle": "レをパタル", + "quests.extreme_voltage.ruthenium.desc": "白金族ラむンで&dルテニウム&rを手にε…₯γ‚Œγ‚‹γΎγ§γε…¨δ½“ηš„γͺζ΅γ‚Œγ‚’γΎγ¨γ‚γ¦γŠγγΎγ—γŸγ€‚\n\nγŸγ γ—γ€δ»Šγζ΅ιšŽγ§γ™γΉγ¦γ&d白金族ラむン&rγ‚’εŒζˆγ•せる必要はγͺいγγ§γ”ε‰εΏƒγγ γ•い。\n\n(γͺγŠγ€&7η™½ι‡‘ζ—γƒ©γ‚€γƒ³γ―δ»ŠεΎŒδΊˆεšγ•γ‚Œγ¦γ„γ‚‹&4ι‡‘ζ˜Ÿ&rをップグレードγιš›γ«ε€‰ζ›΄γ•γ‚Œγ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™&7。)", + "quests.extreme_voltage.gcym_alloys.title": "ε€§εž‹ζ©Ÿζ’°η”¨εˆι‡‘", + "quests.extreme_voltage.gcym_alloys.subtitle": "γΎγŸεˆι‡‘γ‹...οΌŸγΎγŸεˆι‡‘γͺγγ‹...!?", + "quests.extreme_voltage.gcym_alloys.desc": "&dε€§εž‹ζ©Ÿζ’°&rγι‹η”¨γŒγ€γ„γ«ε§‹γΎγ‚ŠγΎγ™οΌγ“γ‚Œγ‹γ‚‰δ½œγ‚‹ε€šγγε€§εž‹ζ©Ÿζ’°γ«γ―倧量γεˆι‡‘γŒεΏ…θ¦γ«γͺγ‚Šγ€γγε…₯口とγͺγ‚‹γγŒ&eεˆι‡‘ι«˜η‚‰&rγ§γ™γ€‚ζ Έεˆ†θ£‚η‚‰η³»γζ©Ÿζ’°γ«η”¨γ„γ‚‹&eι«˜ζΈ©θ£½ιŒ¬η”¨γƒžγ‚·γƒ³ε€–θ£…&rγη΄ ζγγŸγ‚γ«γ‚‚必要にγͺγ‚ŠγΎγ™γ€‚\n\n&o&6&l余談&r:&r &oγ€ŒGregicality Multiblocks」はMinecraft1.12γGTCEuγγŸγ‚γModγ§γ€ε€§εž‹η‰ˆγGT機撰と&6δΈ¦εˆ—εˆΆεΎ‘γƒ¦γƒ‹γƒƒγƒˆ&rγ‚’θΏ½εŠ γ—γŸγ‚“γ γ€‚γγ‚Œγ§γ€εΎŒγ«GTCEuが1.20γΈγ¨η§»ζ€γ•γ‚ŒγŸιš›γ«γ€γ“γModは&dGTm&rにそγγΎγΎη΅„γΏθΎΌγΎγ‚ŒγŸγ‚“γ γ€‚γ‚‚γ‘ろん、θͺ°γ‚‚ζ–‡ε₯γ‚’θ¨€γ£γŸγ‚Šγ—γͺγ‹γ£γŸγ‚ˆγ€‚1.12ζ™‚δ»£γ‚’ιŠγ‚“γ§γ„γŸδΊΊγ γ£γŸγ‚‰γ€ε½“ζ™‚γ―&dGCYMγƒžγƒ«γƒ&rγ¨ε‘Όγ°γ‚Œγ¦γ„γŸγγ‚’θ¦šγˆγ¦γ„γ‚‹γ‹γ‚‚γ­γ€‚", + "quests.extreme_voltage.tungsten_steel.title": "タングステンスチール", + "quests.extreme_voltage.tungsten_steel.subtitle": "IVγγƒ‘γ‚€γƒ³ι‡‘ε±ž", + "quests.extreme_voltage.tungsten_steel.desc": "あγͺたγζƒ³εƒι€šγ‚Šγ€&6タングステンスチール&rは&1IV&rγι€²θ‘Œγζ Έγ¨γͺγ‚‹η΄ ζγ§γ€γ¨γ«γ‹γε€§ι‡γ«δ½Ώγ„γΎγ™γ€‚ε…ˆγ«ι€²γ‚€ε‰γ«γ€ε‰εšη”Ÿη”£γ™γ‚‹γŸγ‚γ&6タングステンラむン&rγ‚’εΏ…γšζ•΄γˆγ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\nもし&aη°ι‡ηŸ³&rγ‚„&aタングステン酸呩&rγŒδΈθΆ³γ—γ¦γ„γ¦γ‚‚γ€η«ζ˜Ÿγ«γ―γ¨γ¦γ‚‚ε·¨ε€§γͺι‰±θ„ˆγŒηœ γ£γ¦γ„γ‚‹γγ§εΏƒι…γ‚γ‚ŠγΎγ›γ‚“γ€‚γ‚΅γƒ³γƒ‰γƒ―γƒΌγƒ γŒζ€–γ„ε ΄εˆγ―γ€&bε€§εž‹ζŽ‘ζŽ˜ζ©Ÿ&rを使うγγŒγŠγ™γ™γ‚γ§γ™γ€‚ε€§εž‹ζŽ‘ζŽ˜ζ©Ÿγ―γ‚΅γƒ³γƒ‰γƒ―γƒΌγƒ γ‚’ε‘Όγ³ε―„γ›γͺいγγ§ε‰ε…¨γ«ζŽ‘ζŽ˜γ§γγΎγ™γ€‚\n...ζŽ˜ε‰Šζ²Ήγ«θ™«ι™€γ‘εŠΉζžœγŒγ‚γ‚‹γ‚“γ§γ™γ‹γ­οΌŸ", + "quests.extreme_voltage.tungsten.title": "タングステン", + "quests.extreme_voltage.tungsten.subtitle": "γƒγ‚Ώγƒ³γ‚ˆγ‚ŠδΈŠδ½γι‡‘ε±žγ€‚γƒ†γƒ©γƒͺγ‚’γ―εΏ˜γ‚Œγ¦γγ γ•γ„", + "quests.extreme_voltage.tungsten.desc": "γΎγšγ―ε€§ε€‰γͺε·₯η¨‹γ‚’θΆ…γˆγ¦&6タングステン&rγ‚’θ£½ι€ γ—γŸγ“γ¨γ‚’η§°γˆγΎγ—γ‚‡γ†γ€‚ε…ƒγε·₯η¨‹γ‹γ‚‰ε°‘γ—γ γ‘ε€‰εŒ–γ—γ¦γ„γΎγ™γŒγ€γγ£γ¨γγ‚Œγ‚‚ζ₯½γ—γ‚“γ§γ„γŸγ γ‘γŸγ§γ—γ‚‡γ†γ€‚γ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³γ‚’ε°‘γ—γ γ‘δ½Ώγ„γŸγ„γ¨γ„γ†γ¨γγ―、&aη‚­ι…ΈγƒŠγƒˆγƒͺウム&rγ‚’η„‘η†γ«γƒ«γƒΌγƒ—γ•γ›γšγ€γγγΎγΎδ½Ώγ†γ γ‘γ§γ‚‚ζ§‹γ„γΎγ›γ‚“γ€‚γ“γ‚Œγ‚’γγ£γ‹γ‘γ«γ€ε·₯程をεŒε…¨γ«γƒ«γƒΌγƒ—させてθ‡ͺε‹•εŒ–γ—γŸγγͺγ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚\n\nε…ˆγ«ι€²γ‚€γ»γ©γ«γ€η΅‚η›€γθ€‡ι›‘γͺε·₯程γεŸΊη€Žγ‚’ζ”―γˆγ‚‹γŸγ‚γγ€γƒ‘γƒƒγ‚·γƒ–γƒ©γ‚€γƒ³γ‚’ζ•΄γˆγ‚‹ι‡θ¦ζ€§γŒε’—γ—γ¦γ„γγΎγ™γ€‚γγγ†γ‘γ€θ³‡ζΊγ‚ˆγ‚Šγ‚‚ζ™‚ι–“γŒθΆ³γ‚Šγͺくγͺってきますからね...", + "quests.extreme_voltage.iv_hull.subtitle": "IVεˆ°ι”οΌŸ", + "quests.extreme_voltage.iv_hull.desc": "すでに&1IV&rγƒžγ‚·γƒ³η­δ½“γ―δ½œγ‚ŒγŸγ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€&1IV&rε›žθ·―γ―&dγƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ η‡ƒζ–™ζ£’&rγεŠ ε·₯を進めるまでε…₯手できγͺγ„γŸγ‚γ€ζ Έεˆ†θ£‚γƒ©γ‚€γƒ³γŒεŒζˆγ™γ‚‹γΎγ§γ―γ‚γΎγ‚Šδ½Ώγ„ι“γ―γͺγ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚\nγ¨γ―γ„γˆγ€γ„γγ‚‰γ‹γδ½Ώγ„ι“γ―γ‚γ‚ŠγΎγ™γ—γ€&1IV&rε›žθ·―γ•γˆζ‰‹γ«ε…₯γ‚Œγ‚Œγ°γ€γγγΎγΎ&1IVη΅„η«‹ζ©Ÿ&rγ‚’γ™γγ«δ½œγ‚‹γ“γ¨γŒγ§γγ‚‹γ―γšγ§γ™γ€‚", + "quests.extreme_voltage.large_miner.title": "ε€§εž‹ζŽ‘ζŽ˜ζ©ŸMK I", + "quests.extreme_voltage.large_miner.subtitle": "今ζ—₯γ‹γ‚‰γ―γ“γ„γ€γ«δ»»γ›γ‚ˆγ†", + "quests.extreme_voltage.large_miner.desc": "&bε€§εž‹ζŽ‘ζŽ˜ζ©Ÿ&rは、巨倧γͺι‰±θ„ˆγ‚’θ‡ͺε‹•γ§ζŽ˜γ‚Šε°½γγ—γ¦γγ‚Œγ‚‹γ€γ¨γ¦γ‚‚ι Όγ‚‚γ—γ„ε€§εž‹ζ©Ÿζ’°γ§γ™γ€‚ι‰±ηŸ³γ―&aη²‰η •γ•γ‚ŒγŸηŠΆζ…‹&rγ§ε‡ΊεŠ›γ•γ‚Œγ€η”£ε‡Ίι‡γ―ι€šεΈΈγ50οΌ…ε’—γ§γ™οΌγŸγ γ—γ€γƒγƒ£γƒ³γ‚―γŒθͺ­γΏθΎΌγΎγ‚Œγ¦γ„γ‚‹γ“γ¨γ€γγ—γ¦ζŽ˜ε‰Šζ²Ήγ‚’η΅ΆγˆγšδΎ›η΅¦γ—ηΆšγ‘γ‚‹γ“γ¨γŒεΏ…θ¦γ§γ™γ€‚\n\n運用γιš›γ―γ€γ€ŒBuilding Gadgets」γγ€Œ&bCopy Paste Gadget&rγ€γ‚’δ½Ώγˆγ°η§»θ¨­γ‚‚η°‘ε˜γ§γ™γ€‚θ“„ι›»ε™¨γ€εεˆ†γͺ量γζŽ˜ε‰Šζ²Ήγ€γ•γ‚‰γ«εΌ·εŒ–γƒγƒƒγ‚―パックやMEγƒγ‚§γ‚Ήγƒˆγ¨γ„γ£γŸε€§εΉι‡γ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚’η΅„γΏεˆγ‚γ›γ‚Œγ°γ€ε‰εšγ—γ¦η¨Όεƒγ•γ›γ‚‰γ‚ŒγΎγ™γ€‚", + "quests.extreme_voltage.ostrum_harvester.title": "γ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒγƒΌγƒ™γ‚Ήγ‚ΏγƒΌ", + "quests.extreme_voltage.ostrum_harvester.subtitle": "θ‰―γ„γ‚³γ‚€γƒ«γ‚’δ½Ώγ£γ¦η―€ι›»γ—γ‚ˆγ†", + "quests.extreme_voltage.ostrum_harvester.desc": "&bγ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒγƒΌγƒ™γ‚Ήγ‚ΏγƒΌ&rは、&6ムーンハーベスター&rγ«ιžεΈΈγ«γ‚ˆγδΌΌγŸθ£…η½γ§γ™γ€‚θ‰―γ„γ‚³γ‚€γƒ«γ«δΊ€ζ›γ—γ¦ηœγ‚¨γƒεŒ–γ§γγ‚‹η‚Ήγ―ε…±ι€šγ—γ¦γ„γΎγ™γ€‚γ“γ‘γ‚‰γ―η‰Ήεšγƒγ‚€γ‚ͺームでγͺγγ¦γ‚‚ζ©Ÿθƒ½γ—γΎγ™γŒγ€γγδ»£γ‚γ‚Šγ€&aγ‚ͺγ‚Ήγƒˆγƒ©γƒ γŒζ··γ˜γ£γŸη ‚&rγηœŸδΈŠγ«ε»Ίγ¦γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€γƒ γƒΌγƒ³γƒγƒΌγƒ™γ‚Ήγ‚ΏγƒΌγ¨ι•γ£γ¦γ€γ“γ‘γ‚‰γ―η¨Όεƒγ«ζŽ˜ε‰Šζ²ΉγŒεΏ…θ¦γ§γ™γ€‚γγγŸγ‚γ€ζŽ˜ε‰ŠζΆ²γδΎ›η΅¦γƒ©γ‚€γƒ³γ‚‚η΅„γ‚“γ ζ–ΉγŒθ‰―いでしょう。", + "quests.extreme_voltage.ostrum_dust.title": "γƒ¨γ‚¦εŒ–γ‚ͺγ‚Ήγƒˆγƒ©γƒ ", + "quests.extreme_voltage.ostrum_dust.subtitle": "δ½•γ‚’γ©γ†γ™γ‚Œγ°γ„γ„γοΌŸ", + "quests.extreme_voltage.ostrum_dust.desc": "&aγ‚ͺγ‚Ήγƒˆγƒ©γƒ &rにはさまざまγͺδ½Ώγ„ι“γŒγ‚γ‚ŠγΎγ™γŒγ€δ»Šγζ΅ιšŽγ§ζœ€γ‚‚重要γͺγγ―&aγƒ¨γ‚¦εŒ–γ‚ͺγ‚Ήγƒˆγƒ©γƒ &rγθ£½ι€ γ§γ™γ€‚γ“γ‚Œγ―η†±δΊ€ζ›ζ©Ÿγ‚’δ½œγ‚‹γŸγ‚γ«εΏ…θ¦γͺ素材です。\n\nεŸΊζœ¬ηš„γ«ι›£γ—γ„ε·₯η¨‹γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€&eヨウ素&rγη’ΊδΏγ γ‘γ―ε°‘γ—θ‹¦εŠ΄γ™γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚ζ Έεˆ†θ£‚γƒ©γ‚€γƒ³γ‚’ι€²γ‚γ‚‹γ«γ―&l6&r個γγƒ¨γ‚¦η΄ γŒεΏ…θ¦γ§γ™γ€‚δ½œγ‚Šζ–Ήγ«γ€γ„γ¦γ―、左γγ‚―γ‚¨γ‚Ήγƒˆγ‚’ε‚η…§γ—γΎγ—γ‚‡γ†γ€‚", + "quests.extreme_voltage.formamide.title": "γƒ›γƒ«γƒ γ‚’γƒŸγƒ‰", + "quests.extreme_voltage.formamide.subtitle": "現εŸγ§γ‚‚γ‚ˆγδ½Ώγ‚γ‚Œγ¦γ„γΎγ™", + "quests.extreme_voltage.formamide.desc": "γƒγƒƒγƒ•γ‚‘γƒΌγŒθ©°γΎγ£γ¦θ’Έζ°—η”Ÿη”£γŒεœζ­’γ—γͺγ„γ‚ˆγ†γ€δ½™ε‰°γ―η ΄ζ£„γ™γ‚‹γ‚ˆγ†γ«θ¨­εšγ—γ¦γŠγγ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚", + "quests.extreme_voltage.radioactive_concoction.title": "ζ‹η•™ζ”Ύε°„ζ€§ζ··εˆη‰©", + "quests.extreme_voltage.radioactive_concoction.subtitle": "γ“γ‚Œγ‚’ζ¨γ¦γ‚‹γͺんてとんでもγͺい!", + "quests.extreme_voltage.radioactive_concoction.desc": "&dζ‹η•™ζ”Ύε°„ζ€§ζ··εˆη‰©&rγ―γ€ζ Έεˆ†θ£‚γƒ©γ‚€γƒ³γ§η™Ίη”Ÿγ™γ‚‹γ¨γ¦γ‚‚ι‡θ¦γͺ副産物です。主γͺ役割は、&bγ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒͺニををクセラレーター&rγ‚’δ½Ώγ£γ¦η„‘ι™ι‰±ηŸ³γ‚’δ½œγ‚Šε‡Ίγ™γ“γ¨γ§γ™γ€‚&bGrowth_Chamber&rγθ§£ζ”Ύγ«γ‚‚εΏ…ι ˆγ§γ™γ€‚\n\n火星δ»₯ε€–γ§ζ Έεˆ†θ£‚η‚‰γ‚’ι‹η”¨γ—γŸγ„ε ΄εˆγ€γ“γζΆ²δ½“γ‚’ι€”εˆ‡γ‚ŒγšδΎ›η΅¦γ—ηΆšγ‘γ‚‹δ»•η΅„γΏγŒζ¬ γ‹γ›γΎγ›γ‚“γ€‚", + "quests.extreme_voltage.ostrum_linear.subtitle": "さらγͺγ‚‹η„‘ι™εŒ–", + "quests.extreme_voltage.ostrum_linear.desc": "&bγ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒͺニををクセラレーター&rγ―γ€ζ Έεˆ†θ£‚γƒ©γ‚€γƒ³γ§δ½œγ‚‰γ‚Œγ‚‹γ•γΎγ–γΎγͺη΄ ζγ‚’εˆ©η”¨γ—γ¦γ€θ³‡ζΊγ‚’η”Ÿη”£γ™γ‚‹γ“γ¨γŒγ§γγ‚‹δΎΏεˆ©γͺθ£…η½γ§γ™γ€‚&b搬ε…₯バス&rγ‚„&b搬ε…₯ハッチ&rγ‚’ε€šγε–γ‚Šδ»˜γ‘γ‚‹γ“γ¨γŒγ§γγ€ε‡¦η†ι€ŸεΊ¦γ‚‚ιžεΈΈγ«ι€Ÿγ„γγ§γ€εŸΊζœ¬ηš„には1台で全レシピをまかγͺγˆγ‚‹ζ€§θƒ½γŒγ‚γ‚ŠγΎγ™γ€‚\n\nε…₯εŠ›γƒ»ε‡ΊεŠ›γζ··ι›‘γ‚’ι˜²γγŸγ‚γ«γ€θ‰²εˆ†γ‘η”¨γ&eスプレー缢&rγ‚’γ„γγ€γ‹δ½œγ£γ¦γŠγγγŒγŠγ™γ™γ‚γ§γ™γ€‚δΎ‹γˆγ°γ€ζ¬ε…₯バスと搬ε…₯γƒγƒƒγƒγ‚’εŒγ˜&9青色&rγ«ζŸ“γ‚γ‚Œγ°γ€γγγƒšγ‚’γ γ‘γŒγ€γͺγŒγ‚Šγ€γƒ¬γ‚·γƒ”γε–γ‚Šι•γˆγ‚„θ©°γΎγ‚Šγ‚’ι˜²γγ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.extreme_voltage.pss.subtitle": "εœ§ε€’ηš„θ“„ι›»ι‡", + "quests.extreme_voltage.pss.desc": "&eε€§εž‹θ“„ι›»ε™¨&rは、δ»₯前までは&1IV&rγ§θ§£ζ”Ύγ•γ‚ŒγΎγ—γŸγŒγ€ηΎεœ¨γ―&5EV&rγ‹γ‚‰δ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸγ€‚γγγŸγ‚γ€η«ζ˜Ÿγ«η―‰γδΈŠγ’γŸζ‹ η‚Ήγ§εˆ©η”¨γ™γ‚‹γ¨γ„γ†γ“γ¨γ‚‚γ§γγΎγ™γ€‚ζ Έεˆ†θ£‚η™Ίι›»γ―ε‰εšγ•せるγγŒι›£γ—γ„γŸγ‚γ€γ‹γͺγ‚Šε½Ήη«‹γ€γ¨ζ€γ„γΎγ™γ€‚γ‚‚γ‘γ‚γ‚“γ€εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€‚\n\nθ©³γ—γ„ε‹•δ½œγ‚„δ»•η΅„γΏγ‚’ηŸ₯γ‚ŠγŸγ„ε ΄εˆγ―γ€γ€Œ&aGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ &r」γη« γ«γ‚γ‚‹θ§£θͺ¬γ‚’参照しましょう。", + "quests.extreme_voltage.liquid_air.title": "εœ°ηƒγη©Ίζ°—", + "quests.extreme_voltage.liquid_air.subtitle": "あγͺたγε€§ε₯½η‰©", + "quests.extreme_voltage.liquid_air.desc": "&b梲体空気&rγθ’Έη•™γ«γ‚ˆγ£γ¦γ€εΈŒγ‚¬γ‚Ήγ‚’&o焑限に&rε‰εšη”Ÿη”£γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ―&6GregTech&rγ‚’ι€²γ‚γ‚‹γ†γˆγ§ιžεΈΈγ«ι‡θ¦γͺε·₯程です。\n\nη©Ίζ°—οΌˆεœ°ηƒη”£γγ‚‚γγ§γ™γ‚ˆοΌ‰γ‚’θ’Έη•™γ™γ‚Œγ°γ€&bをルゴン&r、&6ι…Έη΄ &r、&eγƒ˜γƒͺウム&r、&3ηͺ’η΄ &r、そして&aδΊŒι…ΈεŒ–η‚­η΄ &rγ¨γ„γ£γŸδΈ»θ¦γ‚¬γ‚Ήγ‚’γΎγ¨γ‚γ¦η’ΊδΏγ§γγ‚‹γγ§γ€γ¨γ¦γ‚‚δΎΏεˆ©γ§γ™γ€‚", + "quests.extreme_voltage.liquid_mars_air.title": "火星γη©Ίζ°—", + "quests.extreme_voltage.liquid_mars_air.subtitle": "あγͺたγιš£δΊΊγε€§ε₯½η‰©", + "quests.extreme_voltage.liquid_mars_air.desc": "&b梲体空気&rγθ’Έη•™γ―、特εšγεΈŒε°‘資源を&l焑限に&rε‰εšη”Ÿη”£γ™γ‚‹γŸγ‚γγ€&6GregTech&rでも特に重要γͺεŸΊζœ¬γ‚·γ‚Ήγƒ†γƒ γ§γ™γ€‚TFGではネアーγη©Ίζ°—やエンダーγη©Ίζ°—γŒζ‰‹γ«ε…₯らγͺγ„γŸγ‚γ€γγδ»£γ‚γ‚Šγ¨γ—て&cη«ζ˜Ÿη©Ίζ°—&rγŒη”¨ζ„γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\n火星γη©Ίζ°—には&bをルゴン&rと&aδΊŒι…ΈεŒ–η‚­η΄ &rγŒθ±Šε―Œγ«ε«γΎγ‚Œγ¦γ„γ‚‹γ»γ‹γ€&eネγ‚ͺン&r、&3γ‚―γƒͺγƒ—γƒˆγƒ³&r、&9γ‚­γ‚»γƒŽγƒ³&rγ¨γ„γ£γŸδ»–γε ΄ζ‰€γ§γ―璺保できγͺγ„εΈŒγ‚¬γ‚Ήγ‚‚ζŠ½ε‡Ίγ§γγΎγ™γ€‚\n\nζ³¨ζ„οΌšδ»ŠεΎŒγγ‚’γƒƒγƒ—γƒ‡γƒΌγƒˆγ§γ€γ“γ‚Œγ‚‰εΈŒγ‚¬γ‚Ήγε…₯ζ‰‹η΅Œθ·―γŒζ–°γ—γ„ζƒ‘ζ˜ŸγθΏ½εŠ γ«εˆγ‚γ›γ¦ε€‰ζ›΄γ•γ‚Œγ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚γ‚’γƒ—γƒ‡γιš›γ―&6倉更ε±₯ζ­΄&rγγƒγ‚§γƒƒγ‚―γ‚’γŠεΏ˜γ‚Œγͺく!", + "quests.extreme_voltage.epoxy.title": "エポキシ", + "quests.extreme_voltage.epoxy.subtitle": "δΊΊε·₯ζ¨Ήθ„‚", + "quests.extreme_voltage.epoxy.desc.1": "&aエポキシ&rγ―γ€γ“γ‚Œγ‹γ‚‰ε…ˆγ«η™»ε ΄γ™γ‚‹γ‚γ‚‰γ‚†γ‚‹ε›žθ·―εŸΊζΏγεœŸε°γ¨γͺる、とても重要γͺ素材です!\n\n&9&lζ³¨ζ„οΌš&rこγγ‚―γ‚¨γ‚Ήγƒˆγ―γ‚„γ‚„ζ‰‹ι–“γŒγ‹γ‹γ‚‹γŸγ‚γ€γΎγšγ―γ»γ‹γδ½œζ₯­γ‚’ι€²γ‚γ¦ζ§˜γ€…γͺθ³‡ζΊγ‚’ζƒγˆγ¦γ‹γ‚‰ζŒ‘γ‚“γ ζ–ΉγŒγ„γ„γ§γ™γ€‚θ³‡ζΊγ‚„θ¨­ε‚™γŒζ•΄γ£γ¦γ„γ‚‹γ»γ©γ‚Ήγƒ γƒΌγ‚Ίγ«ι€²γ‚γ‚‰γ‚ŒγΎγ™γ€‚", + "quests.extreme_voltage.epoxy.desc.2": "&aエポキシ&rγ‚’δ½œγ‚‹γŸγ‚γη΄ ζγ«γ―耇数γε…₯ζ‰‹η΅Œθ·―γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγ‚°γƒͺγ‚»γƒ­γƒΌγƒ«γ‚’δ½Ώγ†η΅Œθ·―γγƒ¬γ‚·γƒ”γ―γ‚³γ‚Ήγƒ‘γŒζ‚ͺいγγ§εŒε…¨γ«ι™€ε€–して構いません。\n\n&3ε€§εž‹εŒ–ε­¦εεΏœη‚‰&rを使うことで、いく぀かγγƒ¬γ‚·γƒ”γ‚’γ‚·γƒ§γƒΌγƒˆγ‚«γƒƒγƒˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.extreme_voltage.epoxy.desc.3": "&dε‘©η΄ &rはεŒε…¨γ«γƒ«γƒΌγƒ—γ•γ‚Œγ‚‹γ“γ¨γŒγ§γγͺいγγ§γ€ε€–部からγδΎ›η΅¦γŒεΏ…θ¦γ§γ™γ€‚ζœ€εˆγ―ζ‰‹ε‹•γ§γ€γŽθΆ³γ™γγ§γ‚‚εεˆ†γ§γ—γ‚‡γ†γ€‚\n\n&dζ°΄ι…ΈεŒ–γƒŠγƒˆγƒͺウム&rを使うレシピは、副産物γ&9ε‘©ζ°΄&rを電解することでループできます。\n\nζœ€ε–„γ‚’ε°½γγ™γͺら、四重パむプやポンプカバー、梲体フィルターγͺγ©γ‚’η”¨ζ„γ—γŸγ‚Šγ€ζ€γ„εˆ‡γ£γ¦AE2γ§ε…¨γƒ©γ‚€γƒ³γ‚’εˆΆεΎ‘γ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹γ§γ—γ‚‡γ†γ€‚\n\nι–‰ιŽ–γƒ«γƒΌγƒ—ζ§‹ζˆγ―η”Ÿη”£ιŽε€šγƒ»ζΆˆθ²»ιŽε€šγι˜²ζ­’γ«δΎΏεˆ©γ§γ™γ€‚ζœ€η΅‚ηš„γ«γ©γζ–Ήζ³•を選ぢかはθ‡ͺεˆ†γ§ιΈγ³γΎγ—γ‚‡γ†γ€‚", + "quests.extreme_voltage.epichlorohydrin.title": "エピクロロヒドγƒͺン", + "quests.extreme_voltage.epichlorohydrin.desc": "ζœ€εˆγ&aエピクロロヒドγƒͺン&rは、&3LCR&rγƒ¬γ‚·γƒ”γ§γ‚Ήγƒ γƒΌγ‚Ίγ«γ€γγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγŸγ γ—γ“γγƒ¬γ‚·γƒ”には&aγƒ—γƒ­γƒšγƒ³&rγŒεΏ…θ¦γ§γ™γ€‚γγγŸγ‚γ«γ―ζœ¬ζ Όηš„γ«&dεŽŸζ²Ήε‡¦η†&rγ‚„&dクラッキング&rγ«ζ‰‹γ‚’ε‡Ίγ™εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ‚‚γ—γ‚γͺγŸγŒεŽŸζ²Ήε‡¦η†γ‚’εΎŒε›žγ—γ«γ—ηΆšγ‘γ¦γ„γŸγγ γ¨γ—γŸγ‚‰γ€γ€γ„γ«ε‘γεˆγ†ζ™‚γŒζ₯γŸγ¨γ„γ†γ“γ¨γ§γ™γ‚ˆγ€‚\n\nγΎγŸγ€&3θ’Έη•™ε‘”&rγ―η΅Άε―Ύγ«ε»Ίγ¦γ¦γŠγγΎγ—γ‚‡γ†γ€‚εŽŸζ²Ήε‡¦η†γ«γŠγ„γ¦ιžεΈΈγ«ι‡θ¦γͺζ©Ÿζ’°γ§γ™γ€‚\n\nそして副産物γ&dε‘©ζ°΄&rはループさせることで&dζ°΄ι…ΈεŒ–γƒŠγƒˆγƒͺウム&rγ‚’θ‡ͺ硦できるγγ§γ€ζ°—γ₯いていγͺγ‹γ£γŸε ΄εˆγ―γœγ²ζ΄»η”¨γ—γ¦γγ γ•γ„γ€‚", + "quests.extreme_voltage.phenol.title": "γƒ•γ‚§γƒŽγƒΌγƒ«", + "quests.extreme_voltage.phenol.desc.1": "&aγƒ•γ‚§γƒŽγƒΌγƒ«&rγθ£½δ½œη΅Œθ·―γ―ε€šε²γ«ζΈ‘γ‚‹γŸγ‚γ€γ“γ“γ§γ―η‰Ήγ«δΈ»ζ΅γͺ4぀γζ–Ήζ³•γ‚’η΄Ήδ»‹γ—γΎγ™οΌš\n\n&9οΌˆοΌ‘οΌ‰&r&a木θ³ͺタール&rを蒸留する。もっともシンプルγͺ方法です。\n\n&9οΌˆοΌ’οΌ‰&r&aベンゼン&r、&dε‘©η΄ &r、&dζ°΄ι…ΈεŒ–γƒŠγƒˆγƒͺウム&rγεŒ–ε­¦εεΏœγ€‚&3LCR&rγ§θ‘Œγˆγ°ε‘©η΄ γ‚’εŒε…¨γ«εΎͺη’°γ§γγ‚‹γŸγ‚γ€γ¨γ¦γ‚‚ε‰εšγ—γŸδ½œγ‚Šζ–Ήγ§γ™γ€‚\n\n&9οΌˆοΌ“οΌ‰&r上γγƒ¬γ‚·γƒ”から&dζ°΄ι…ΈεŒ–γƒŠγƒˆγƒͺウム&rγ‚’ζŠœγ„γ¦ζ™‚ηŸ­γ™γ‚‹ζ–Ήζ³•γ€‚γŸγ γ—&dε‘©η΄ &rγŒζΈ›γ£γ¦γ„γγγ§γ‚³γ‚Ήγƒˆγ―ζ‚ͺめです。\n\n&9οΌˆοΌ”οΌ‰&r&aベンゼン&r、&dγƒ—γƒ­γƒšγƒ³&r、&dι…Έη΄ &rを少量γ&4γƒͺン酸&rγ¨εεΏœγ•γ›γ‚‹γ€Œγ‚―γƒ‘γƒ³ζ³•γ€γ€‚γƒͺγƒ³ι…Έγ―ζœ¬ζ₯触εͺ’γ§γ™γŒγ€γ“γγƒ¬γ‚·γƒ”γ§γ―ε°‘γ—γšγ€ζΆˆθ²»γ•γ‚ŒγΎγ™γ€‚", + "quests.extreme_voltage.phenol.desc.2": "どγιΈζŠžθ‚’γ«γ™γ‚‹γ‹ζ‚©γ‚“γ§γ„γ‚‹ζ–Ήγ«ε‘γ‘γ¦γ€γγ‚Œγžγ‚Œγι­…εŠ›γ‚’η΄Ήδ»‹γ—γΎγ™γ€‚\n\n&9οΌˆοΌ‘οΌ‰&rは&3η†±εˆ†θ§£η‚‰&rと&3θ’Έη•™ε‘”&rγ‚’γ‚»γƒƒγƒˆγ§η¨Όεƒγ•γ›γ‚‹δ½™θ£•γŒγ‚γ‚Œγ°γ€γ¨γ¦γ‚‚θ‰―γ„ζ–Ήζ³•γ§γ™γ€‚\n\n&9οΌˆοΌ’οΌ‰&rγ―η§γŸγ‘γŒγŠγ™γ™γ‚γ™γ‚‹ζ–Ήζ³•γ§γ™οΌε‰―η”£η‰©γ&dε‘©&rから&dε‘©ζ°΄&rγ‚’δ½œγ‚Šγ€γγ‚Œγ‚’ι›»θ§£γ™γ‚‹γ“γ¨γ§γƒ™γƒ³γ‚Όγƒ³δ»₯ε€–γ‚’εΎͺη’°γ•γ›γ‚‰γ‚Œγ‚‹γγ§ζ‰±γ„やすいです。\n\n&9οΌˆοΌ“οΌ‰&rは&dε‘©η΄ &rγ‚’η„‘ι™γ«η’ΊδΏγ§γγ¦γ„γ‚Œγ°ε„ͺη§€γͺζ–Ήζ³•γ§γ™γ€‚γŸγ¨γˆγ°ε‘©ζ°΄γι‰±θ„ˆγ«&3ε€§εž‹ζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿ&rγ‚’θ¨­η½γ™γ‚‹γͺどγζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&9οΌˆοΌ”οΌ‰&rは...&4γƒͺン酸&rγθ£½ι€ γ«γ―ζœ¬ε½“γ«ζ‰‹ι–“γŒγ‹γ‹γ‚‹γγ§...こγγƒ«γƒΌγƒˆγ―かγͺγ‚ŠεŽ³γ—γ„γ§γ™γ‚ˆγ€‚", + "quests.extreme_voltage.phenol.desc.3": "&l&3δ½™θ«‡οΌš&r&oζ˜”γ―ε€§εž‹εŒ–ε­¦εεΏœη‚‰γŒγͺγ‹γ£γŸγ‹γ‚‰γ€θΆ³γ‚Šγͺγ„εŒ–ε­¦γƒ¬γ‚·γƒ”γ‚’θ£œγ†η›ηš„でベンゼン+酸素γγƒ¬γ‚·γƒ”γŒGTCEγ«θΏ½εŠ γ•γ‚Œγ¦γŸγ‚“γ γ€‚γ§γ‚‚δ»Šγ―CEuで現εŸηš„γͺε‡¦η†ζ–Ήζ³•γŒη”¨ζ„γ•γ‚ŒγŸγ‹γ‚‰γ€γ“γγƒ¬γ‚·γƒ”は将ζ₯ε‰Šι™€γ•γ‚Œγ‚‹γ‹γ‚‚γ€‚", + "quests.extreme_voltage.acetone.title": "γ‚’γ‚»γƒˆγƒ³", + "quests.extreme_voltage.acetone.desc.1": "&aζœ¨ι…’&rγ‚’θ’Έη•™γ™γ‚Œγ°&aγ‚’γ‚»γƒˆγƒ³&rγ―δ½œγ‚ŒγΎγ™γŒγ€εŽηŽ‡γŒδ½Žγγ¦εΏ…θ¦ι‡γ«γ―ε±Šγ‹γͺγ„γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγ—γ£γ‹γ‚Šι‡γ‚’η’ΊδΏγ—γŸγ„γͺら、&aι…’ι…Έ&rから直ζŽ₯&3LCR&rγ§εˆζˆγ™γ‚‹γƒ¬γ‚·γƒ”γ‚’δ½Ώγ†γγŒγŠγ™γ™γ‚γ§γ™γ€‚\n\nさらにこだわるγͺら、&aι…’ι…Έ&rβ†’&d酒酸カルシウム溢梲&rβ†’&aγ‚’γ‚»γƒˆγƒ³&rというεΎͺη’°γƒ¬γ‚·γƒ”γ‚‚εˆ©η”¨γ§γγΎγ™γ€‚&3LCR&r不要で、焑駄γͺくεΎͺ環できるε„ͺη§€γͺ方法です。", + "quests.extreme_voltage.acetone.desc.2": "ここまで&aι…’ι…Έ&rγθ©±γ‚’γ—γ¦γγΎγ—γŸγŒγ€θ‚εΏƒγδ½œγ‚Šζ–Ήγ‚’まだθͺ¬ζ˜Žγ—γ¦γ„γΎγ›γ‚“γ§γ—γŸγ­γ€‚γγ‚γγ‚ηŸ₯γ‚ŠγŸγ„γ¨γ“γ‚γ§γ―γͺいでしょうか。\n\n&aι…’ι…Έ&rは&3εŒ–ε­¦εεΏœε™¨&rγ§η²Ύθ£½γ§γγΎγ™γ€‚η§γŸγ‘γ¨γ—γ¦γ―&dエチレン&rγ‚’δ½Ώγ†γƒ¬γ‚·γƒ”γŒζœ€γ‚‚γŠγ™γ™γ‚γ§γ™γ€‚", + "quests.extreme_voltage.aes_insulation.title": "をルカγƒͺγ‚’γƒΌγ‚Ήγ‚·γƒͺγ‚±γƒΌγƒˆζ–­η†±ζ", + "quests.extreme_voltage.aes_insulation.subtitle": "またγεγ‚’ロックウール", + "quests.extreme_voltage.aes_insulation.desc": "γƒ†γ‚£γ‚’γŒδΈŠγŒγ‚‹γ¨γ€ζ–°γ—γ„γ‚Ώγ‚€γƒ—γζ–­η†±ζγŒεΏ…要にγͺγ‚ŠγΎγ™οΌ\n\nγΎγšγ―γƒŸγ‚­γ‚΅γƒΌγ§&dをルカγƒͺγ‚’γƒΌγ‚Ήγ‚·γƒͺγ‚±γƒΌγƒˆζ··εˆη‰©γη²‰&rγγƒ¬γ‚·γƒ”γ‚’η’Ίθͺγ—てみましょう。\n\n進めていけば、スニッフゑーやラプターγζ―›γ‚’εˆˆγ‚‹γ“γ¨γ§η«ζ˜Ÿγ«γ¦γ“γη²‰ζœ«γ‚’η„‘ι™γ«η”Ÿη”£γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γ“γ‚Œγ―ζ¬‘γγƒ­γ‚±γƒƒγƒˆγ γ‘でγͺく、さまざまγͺ用途で使う重要γͺ素材です。", + "quests.extreme_voltage.epoxy_board.subtitle": "ε°†ζ₯ζ€§γγ‚γ‚‹ε›žθ·―基板", + "quests.extreme_voltage.epoxy_board.desc": "γ‚¨γƒγ‚­γ‚·ζ¨Ήθ„‚ε›žθ·―εŸΊζΏγ―&bγƒŠγƒŽε›žθ·―&rγ‚’δ½œζˆγ™γ‚‹γŸγ‚γι‡θ¦η΄ ζγ§γ™γŒγ€γγ‚Œδ»₯ε€–γ§δ½Ώγ†ε ΄ι’γ―γ»γ¨γ‚“γ©γ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.extreme_voltage.ev_circuit_assembler.title": "&5EV&rε›žθ·―δ½œζˆζ©Ÿ", + "quests.extreme_voltage.ev_circuit_assembler.subtitle": "ε°†ζ₯ζ€§γγ‚γ‚‹ε›žθ·―作成機", + "quests.extreme_voltage.ev_circuit_assembler.desc": "&5EVε›žθ·―δ½œζˆζ©Ÿ&rは、&bNanoCPUウェハー&rγ‚’εεˆ†γ«η’ΊδΏγ§γγ‚‹γ‚ˆγ†γ«γͺるまでは倧きγͺζ΄»θΊγ―γ—γΎγ›γ‚“γ€‚γ¨γ―γ„γˆγ€γ“γ‚Œγ‚’δ½Ώγˆγ°γƒžγ‚€γ‚―γƒ­γƒ—γƒ­γ‚»γƒƒγ‚΅γƒΌη³»γε›žθ·―γ‚’ι«˜ι€Ÿγ§δ½œζˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚Šγ€γ‚„γŒγ¦γ―&dLuVε›žθ·―&rγ‚’δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γ‚‚γͺγ‚ŠγΎγ™γ€‚&1IVη΅„η«‹ζ©Ÿ&rγ‚’ε…₯ζ‰‹γ—γŸγ‚γ¨γ‹γ‚‰γ―γ¨γ¦γ‚‚ε½Ήη«‹γ€γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.nano_hv_circuit.subtitle": "こんγͺγδ½œγ‚Œγͺγ„γ‚ˆοΌ", + "quests.extreme_voltage.nano_hv_circuit.desc": "぀いに&eγƒŠγƒŽε›žθ·―&rγεˆΆδ½œζ΅ιšŽγ«ε…₯γ‚ŠγΎγ—γŸοΌγ“γ‚Œγ‚’δ½œγ‚‹γ«γ―&bNanoCPUチップ&rγŒεΏ…θ¦γ§γ€γγγŸγ‚γ«γ―γƒ—γƒ«γƒˆγƒ‹γ‚¦γƒ γƒ­γƒƒγƒ‰γ‹γ‚‰&dγƒˆγƒͺチウム水&rγ‚’η”Ÿη”£γ™γ‚‹γŸγ‚γ&cζ Έεˆ†θ£‚η‚‰&rγεΈΈζ™‚η¨Όεƒγƒ©γ‚€γƒ³γŒεΏ…ι ˆγ§γ™γ€‚\n\nδ½œγ‚Šε§‹γ‚γι ƒγ―&eNanoε›žθ·―&rγŒγ©γ†γ—γ‚ˆγ†γ‚‚γͺγ„γ»γ©ι«˜γ‚³γ‚Ήγƒˆγ«ζ€γ†γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€&dζ Έεˆ†θ£‚γƒ©γ‚€γƒ³&rγ‚’εŒε…¨θ‡ͺε‹•εŒ–γ—γ¦γ—γΎγˆγ°γ€δΈ€ζ°—γ«ζœ€ε‰γ‚―ラスγε›žθ·―γΈγ¨ε€‰θ²Œγ—γΎγ™οΌ", + "quests.extreme_voltage.nano_ev.subtitle": "ε›žθ·―γŒε°γ•γ™γŽγ‚‹", + "quests.extreme_voltage.nano_ev.desc": "&bNanoCPU&rγι‡η”£δ½“εˆΆγ•γˆζ•΄γˆγ°γ€γ“γ‚Œγ‚‰γε›žθ·―は&bγƒžγ‚€γ‚―γƒ­γƒ—γƒ­γ‚»γƒƒγ‚΅γƒΌ&rη³»γ‚ˆγ‚Šη°‘ε˜γ«δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ£γ¦γ—γΎγ†γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚&cζ Έεˆ†θ£‚γƒ©γ‚€γƒ³&rγεŒε…¨θ‡ͺε‹•εŒ–γ•γˆζΈˆγΎγ›γ‚Œγ°γ€δΈŠδ½γζ©Ÿζ’°γ‚’δ½œγ‚‹γγ‚‚かγͺγ‚Šζ₯½γ«γͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€γ“γ“γ‹γ‚‰ε…ˆγ―δΈŠδ½γSMDιƒ¨ε“γ‚‚δ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚‹γ“γ¨γ‚‚θ¦šγˆγ¦γŠγ„γ¦γγ γ•γ„οΌ", + "quests.extreme_voltage.nano_iv.subtitle": "LuVγζŠ€θ‘“εŠ›γ«ζŽ₯近し぀぀ある", + "quests.extreme_voltage.nano_iv.desc": "こけらγ&1IV&rε›žθ·―γ‚‚&bNanoCPUチップ&rγ‚’1぀使うという点では&bγƒžγ‚€γ‚―γƒ­γƒ—γƒ­γ‚»γƒƒγ‚΅γƒΌγƒ‘γ‚€γƒ³γƒ•γƒ¬γƒΌγƒ &rγ¨εŒη­‰γγ‚³γ‚Ήγƒˆγ¨θ¨€γˆγΎγ™γ€‚γ¨γ―γ„γˆγ€γ“γ‘γ‚‰γ―ζ¬‘γζ΅ιšŽγΈι€²γ‚€γŸγ‚γ«ζ¬ γ‹γ›γͺい重要γͺε›žθ·―γ§γ‚‚γ‚γ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.nano_luv.subtitle": "εˆγ‚γ¦γIVε›žθ·―", + "quests.extreme_voltage.nano_luv.desc": "&dLuV&rε›žθ·―γδ½œζˆγ€γŠγ‚γ§γ¨γ†γ”ざいます!&b白金族ラむン&rγ‚’εŒι‚するまでは&dLuV&rζ©Ÿζ’°γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ›γ‚“γŒγ€γγ‚ŒγΎγ§γ―&dAE2&rγζ–°γ—γ„εΌ·εŠ›γͺθ£…η½γŸγ‘γ‚’δ½œγ‚‹γγ«δ½ΏγˆγΎγ™γ€‚\n\n倚くγγƒ¬γ‚·γƒ”で&1IV&rη΅„η«‹ζ©ŸγŒεΏ…θ¦γ«γͺγ‚‹γγ§γ€δΊ‹ε‰γ«η”¨ζ„γ—γ¦γŠγγ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚", + "quests.extreme_voltage.me_part.title": "MEγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γƒ‘γƒΌγƒ„", + "quests.extreme_voltage.me_part.subtitle": "GregTechとAE2γ‚’η›΄ζŽ₯ζŽ₯碚", "quests.extreme_voltage.me_part.task": "Any ME Bus or Hatch", - "quests.extreme_voltage.me_part.desc": "These blocks can replace your usual Input and Output Buses/Hatches in multiblocks. The &bOutput&r versions are particularly useful as they can store a massive amount of items or fluids, more than enough to handle most setups. This makes them perfect for sharing resources between multiblocks, or avoiding output clogging.\n\nThey connect directly to &dAE2&r cables, letting you skip the use of Storage Buses or Interfaces. However, be careful because they behave like Interfaces, not as actual storage. This means you can’t access their contents through another Interface.", - "quests.extreme_voltage.tunsgten_line_step.title": "Looping Soda Ash", - "quests.extreme_voltage.tunsgten_line_step.subtitle": "You may not want to mine it forever", - "quests.extreme_voltage.tunsgten_line_step.desc.1": "Looping the &5Tungsten Line&r perfectly isn’t the easiest task, so we’ll use this quest to guide you in the right direction.\n\nThe &bSalt&r you obtain should be combined with &aCarbon Dioxide&r and &6Ammonia&r to produce &3Ammonium Chloride&r, which you can then electrolyze to recycle your &6Ammonia&r and obtain the &9Hydrochloric Acid&r needed for &eSodium Tungstate&r.\n\nThis process also produces &bSodium Bicarbonate&r, which you should electrolyze to recover your &dSoda Ash&r.", - "quests.extreme_voltage.tunsgten_line_step.desc.2": "Finally, to close the loop, you need to manage your &aCarbon Dioxide&r. You can either split a portion of your &dSoda Ash&r and electrolyze it to recover &aCarbon&r and &9Oxygen&r, allowing you to get back some &aCarbon Dioxide&r, or brute force it by using &bLiquid Air&r distillation to produce an infinite supply of &aCarbon Dioxide&r.", - "quests.extreme_voltage.tunsgten_line_step_1.title": "The new Tungsten Line", - "quests.extreme_voltage.tunsgten_line_step_1.subtitle": "Why? Just why?", - "quests.extreme_voltage.tunsgten_line_step_1.desc": "The &eTungsten Line&r in TerraFirmaGreg has been completely reworked and you’ll be happy (or not) to know that it’s now &cmuch harder&r.\n\nIt’s possible to &afully loop&r every material in the Tungsten Line, but doing so requires a lot of engineering. Alternatively, you can brute-force your way through by &cmass-producing&r the resources you need.\n\nA little tip: &4Mars&r has several &agood ore veins&r for &eSoda Ash&r and &eTungsten&r.\n\nTake your time, optimize, and the Tungsten Line will become the foundation of your mid-to-late game progress.", - "quests.extreme_voltage.tunsgten_line_step_2.title": "Last part of the Tungsten Line", - "quests.extreme_voltage.tunsgten_line_step_2.subtitle": "This part loops itself", - "quests.extreme_voltage.tunsgten_line_step_2.desc": "Once you’ve obtained the &bTungstic Acid&r and looped the &cSoda Ash&r, you’ve completed the hardest part. From here, you’ll only need an &6Evaporation Tower&r to fully loop the &aHydrogen&r required for the &6Arc Furnace&r, and a &6Pyrolyse Oven&r to recover the &3Ammonia&r you used at the start.\n\nNothing too difficult, so enjoy your &5Tungsten&r!", - "quests.extreme_voltage.advanced_fluid_rig.title": "Extreme Fluid Drilling", - "quests.extreme_voltage.advanced_fluid_rig.subtitle": "Extreme is an apt descriptor", - "quests.extreme_voltage.advanced_fluid_rig.desc.1": "At the cost of 4x the drilling Power, the &3Advanced Fluid Drilling Rig&r gains &616x the output&r in Fluid.\n\nThe depletion of veins is also halved. This means you will get a total of &632x&r as much Oil (or whatever fluid) from a bedrock fluid vein until depletion!\n\nEven when depleted, you can still use this and be firmly power positive.\n\nOne single &3Advanced Fluid Drilling Rig&r should be enough to supply Power for a base up to &dLuV&r... and possibly beyond!", - "quests.extreme_voltage.advanced_fluid_rig.desc.2": "As a &9reminder&r, since this last appeared in &bMV&r:\n\n&9-&r &aLight Oil&r can be used for &dLPG&r and &dMethane&r to run in &3Large Gas Turbines&r.\n\n&9-&r &aOil&r can be used for &dDiesel&r and &dCetane-Boosted Diesel&r to run in &3Large Combustion Engines&r.\n\n&9-&r &aHeavy Oil&r can be used for &dNitrobenzene&r to run in &3Large Gas Turbines&r.", + "quests.extreme_voltage.me_part.desc": "γ“γ‚Œγ‚‰γγƒ–γƒ­γƒƒγ‚―γ―γ€γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ‚’η΅„γΏη«‹γ¦γ‚‹ιš›γ«ζ™ζ΅δ½Ώγ£γ¦γ„る搬ε…₯・搬出バス/ハッチγδ»£γ‚γ‚Šγ¨γ—て使用できます。特に&b搬出&rη‰ˆγ―ιžεΈΈγ«δΎΏεˆ©γ§γ€ε€§ι‡γγ‚’むテムや梲体を保η‘でき、ほとんどγγƒ¬γ‚·γƒ”を処理するγγ«εεˆ†γ™γŽγ‚‹γ»γ©γεΉι‡γŒγ‚γ‚ŠγΎγ™γ€‚γγγŸγ‚γ€γƒžγƒ«γƒγƒ–ロックγε…±ζœ‰γ‚„γ€ζŽ’ε‡Ίθ©°γΎγ‚Šγ‚’ι˜²γ„γ γ‚Šγ™γ‚‹γγ«ζœ€ι©γ§γ™γ€‚\n\nγ•γ‚‰γ«γ€γ“γ‚Œγ‚‰γ―&dAE2&rケーブルに直ζŽ₯ζŽ₯ηΆšγ§γγ‚‹γŸγ‚γ€γ‚Ήγƒˆγƒ¬γƒΌγ‚Έγƒγ‚Ήγ‚„γ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚Ήγ‚’ζŒŸγ‚€εΏ…θ¦γŒγ‚γ‚ŠγΎγ›γ‚“γ€‚γŸγ γ—ζ³¨ζ„η‚Ήγ¨γ—γ¦γ€εŸιš›γγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ¨γ—てγεΉι‡γ―ε­˜εœ¨γ—γͺγ„γŸγ‚γ€γƒ‘γ‚ΏγƒΌγƒ³γƒ—γƒ­γƒ‘γ‚€γƒ€γƒΌγ‚„ζ‰‹ε‹•γ§γζ¬ε‡Ίε…₯γͺどで内εΉη‰©γΈγ‚’クセスすることはできません。", + "quests.extreme_voltage.tunsgten_line_step.title": "η‚­ι…ΈγƒŠγƒˆγƒͺウムγεΎͺη’°ζ§‹ζˆ", + "quests.extreme_voltage.tunsgten_line_step.subtitle": "γ‚‚γ†ζŽ‘ζŽ˜γ―εΏ…θ¦γͺし!", + "quests.extreme_voltage.tunsgten_line_step.desc.1": "&5タングステンラむン&rγ‚’εŒε…¨γ«εΎͺ環させるγγ―簑単ではγͺγ„γŸγ‚γ€γ“γγ‚―γ‚¨γ‚Ήγƒˆγ§γ―ζ­£γ—γ„ι€²γ‚ζ–Ήγ‚’ζ‘ˆε†…γ—γΎγ™γ€‚\n\nまず&bε‘©&r、&aδΊŒι…ΈεŒ–η‚­η΄ &r、&6をンヒニを&rγ‚’η΅„γΏεˆγ‚γ›γ¦&3ε‘©εŒ–γ‚’γƒ³γƒ’γƒ‹γ‚¦γƒ &rγ‚’δ½œγ‚ŠγΎγ™γ€‚γγεΎŒγ€γ“γ‚Œγ‚’ι›»θ§£γ™γ‚‹γ“γ¨γ§&6をンヒニを&rγ‚’ε†εˆ©η”¨γ§γγ€γ•γ‚‰γ«&eγ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³ι…ΈγƒŠγƒˆγƒͺウム&rγδ½œζˆγ«εΏ…要γͺ&9ε‘©ι…Έ&rγ‚’εΎ—γ‚‰γ‚ŒγΎγ™γ€‚γΎγŸγ€γ“γε·₯程では &bη‚­ι…Έζ°΄η΄ γƒŠγƒˆγƒͺウム&rγ‚‚η”Ÿζˆγ•γ‚Œγ‚‹γŸγ‚γ€ι›»θ§£γ—γ¦&dη‚­ι…ΈγƒŠγƒˆγƒͺウム&rγ‚’ε›žεŽγ—γΎγ—γ‚‡γ†γ€‚", + "quests.extreme_voltage.tunsgten_line_step.desc.2": "εŒε…¨γͺι–‰ιŽ–γƒ«γƒΌγƒ—γ‚’δ½œγ‚‹γ«γ―γ€&aδΊŒι…ΈεŒ–η‚­η΄ &rγη‘η†γŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚&dη‚­ι…Έζ°΄η΄ γƒŠγƒˆγƒͺウム&rγι›»θ§£γ‹γ‚‰ε‡Ίγ‚‹δΊŒι…ΈεŒ–η‚­η΄ γ γ‘γ§γ―θΆ³γ‚Šγͺγ„γŸγ‚γ€ζ–Ήθ§£ηŸ³γι›»θ§£γΎγŸγ―γƒͺγƒγ‚¦γƒ γ¨δΈ€η·’γ«ε‡ΊγŸ&bη‚­η΄ &rと&bι…Έη΄ &rγ‚’η΅„γΏεˆγ‚γ›γ¦ε‡¦η†γ™γ‚‹ζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚\n\nεŠ›ζŠ€γ§γ™γŒγ€&b梲体空気&rγθ’Έη•™γ§η„‘ι™η”Ÿη”£γ—γŸ&aδΊŒι…ΈεŒ–η‚­η΄ &rγ‚’δΎ›η΅¦γ—ηΆšγ‘γ‚‹γ¨γ„γ†ζ–Ήζ³•γ‚‚γ‚γ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.tunsgten_line_step_1.title": "新しいタングステンラむン", + "quests.extreme_voltage.tunsgten_line_step_1.subtitle": "どうしてそんγͺことするγοΌŸ", + "quests.extreme_voltage.tunsgten_line_step_1.desc": "TerraFirmaGregγ&eタングステンラむン&rγ―ε…¨ι’ηš„γ«ζ”ΉδΏγ•γ‚Œγ¦γŠγ‚Šγ€δ»₯ε‰γ‚ˆγ‚Š&cかγͺγ‚Šι›£θ§£&rにγͺγ£γ¦γ„γΎγ™γ€‚ε¬‰γ—γ„γ§γ™γ­οΌοΌˆε¬‰γ—γ„γ§γ™γ‚ˆγ­οΌŸοΌ‰\n\nγ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³γƒ©γ‚€γƒ³γ«ε«γΎγ‚Œγ‚‹ε…¨γ¦γη΄ ζγ―&aεŒε…¨γ«γƒ«γƒΌγƒ—&rγ•γ›γ‚‹γ“γ¨γŒε―θƒ½γ§γ™γŒγ€γγγŸγ‚γ«γ―高度γͺラむン構築γζŠ€θ‘“γŒεΏ…θ¦γ§γ™γ€‚δΈ€ζ–Ήγ§γ€εΏ…θ¦γͺ資源を&cε€§ι‡η”Ÿη”£&rしてゴγƒͺζŠΌγ—γ§ι€²γ‚γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\nγ‘γ‚‡γ£γ¨γ—γŸγƒ’γƒ³γƒˆγ§γ™γŒγ€&4火星&rには&eη‚­ι…ΈγƒŠγƒˆγƒͺウム&rと&eタングステン&rγγŸγ‚γ&aε€§γγ„ι‰±θ„ˆ&rγŒγ„γγ€γ‹ε­˜εœ¨γ—γ¦γ„γΎγ™γ€‚\n\nタングステンラむンは中盀から硂盀にかけてγι€²θ‘ŒγεœŸε°γ¨γͺγ‚‹γŸγ‚γ€ζ™‚ι–“γ‚’γ‹γ‘γ¦γ§γ‚‚ζœ€ι©εŒ–γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.extreme_voltage.tunsgten_line_step_2.title": "γ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³γƒ©γ‚€γƒ³ζœ€η΅‚ε·₯程", + "quests.extreme_voltage.tunsgten_line_step_2.subtitle": "γŠθ†³η«‹γ¦γ•γ‚ŒγŸγƒ«γƒΌγƒ—ζ§‹ι€ ", + "quests.extreme_voltage.tunsgten_line_step_2.desc": "&bタングステン酸γη²‰&rγ‚’δ½œζˆγ—γ€&cη‚­ι…ΈγƒŠγƒˆγƒͺウム&rγεΎͺη’°ζ©Ÿζ§‹γŒεŒζˆγ™γ‚Œγ°γ€ζœ€γ‚‚倧倉γͺιƒ¨εˆ†γ―γ‚‚γ†η΅‚γ‚γ‚Šγ§γ™γ€‚γ“γ“γ‹γ‚‰ε…ˆγ―γ€&6をーク炉&rで必要とγͺγ‚‹&aζ°΄η΄ &rγ‚’εŒε…¨γ«εΎͺη’°γ•γ›γ‚‹γŸγ‚γ&6θ’Έη™Ίε‘”&rγ¨γ€ζœ€εˆγ«δ½Ώη”¨γ—γŸ&3をンヒニを&rγ‚’ε›žεŽγ™γ‚‹γŸγ‚γ&6η†±εˆ†θ§£η‚‰&rを用意するだけです。\n\nあとはもう、倒γ&5タングステン&rγ«ε‘γ‘γ¦δΈ€η›΄η·šγ§γ™οΌ", + "quests.extreme_voltage.advanced_fluid_rig.title": "θΆ…ι«˜ζ€§θƒ½ζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿ", + "quests.extreme_voltage.advanced_fluid_rig.subtitle": "θΆ…ι«˜ζ€§θƒ½γ¨θ¨€γ£γ¦γ‚‚ιŽθ¨€γ˜γ‚ƒγͺい", + "quests.extreme_voltage.advanced_fluid_rig.desc.1": "&3η™Ίε±•εž‹ζΆ²δ½“ζŽ‘ζŽ˜ζ©ŸII&rは1぀前γγƒ’γƒ‡γƒ«γ¨ζ―”γΉγ¦ζΆˆθ²»ι›»εŠ›γŒ4ε€ε’—εŠ γ—γΎγ™γŒγ€ζΆ²δ½“γη”£ε‡Ίι‡γŒ&616倍&rγ‚‚ε’—εŠ γ—γ¦γ—γΎγ„γΎγ™γ€‚\n\nγ•γ‚‰γ«γ€ι‰±θ„ˆγζž―ζΈ‡ι€ŸεΊ¦γ‚‚εŠεˆ†γ«γͺγ‚‹γŸγ‚γ€ζž―ζΈ‡γ™γ‚‹γΎγ§γ«εΎ—γ‚‰γ‚Œγ‚‹ζœ€η΅‚ηš„γͺζŽ‘ε–ι‡γ―γͺんと&632倍&rにもγͺγ‚ŠγΎγ™οΌ\n\nε‰δΈ–δ»£γ¨ζ―”γΉγ¦ζΆˆθ²»ι›»εŠ›γ«ε―Ύγ™γ‚‹η”£ε‡Ίι‡γζ―”ηŽ‡γŒεœ§ε€’ηš„γ«ζ”Ήε–„γ•γ‚Œγ¦γ„γ‚‹γŸγ‚γ€ζž―ζΈ‡εΎŒγ«η¨Όεƒγ•γ›ηΆšγ‘γ¦γ‚‚γ€ι›»εŠ›εŽζ”―γ―γ—γ£γ‹γ‚Šγƒ—γƒ©γ‚Ήγ«γͺγ‚ŠγΎγ™γ€‚\n\n&3η™Ίε±•εž‹ζΆ²δ½“ζŽ‘ζŽ˜ζ©ŸII&r1εŸΊγ γ‘γ§γ€&dLuV&rγ©γ“γ‚γ‹γ€γγ‚Œδ»₯上γθ¦ζ¨‘γζ‹ η‚Ήγ«εΏ…要γͺι›»εŠ›γ‚’γΎγ‹γͺうこともできます!", + "quests.extreme_voltage.advanced_fluid_rig.desc.2": "&bMV&rγ&9εΎ©ηΏ’&r:\n\n&9-&r&aθ»½ζ²Ή&rは、&dLPG&rγ‚„&dパタン&rに加ε·₯して、&3ε€§εž‹γ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³&rγη‡ƒζ–™γ¨γ—γ¦δ½ΏγˆγΎγ™γ€‚\n\n&9-&r&aεŽŸζ²ΉοΌˆεŽŸζ–™ζ²ΉοΌ‰&rは、&dディーゼル&rγ‚„&dγ‚»γ‚Ώγƒ³ζ·»εŠ γƒ‡γ‚£γƒΌγ‚Όγƒ«&rに加ε·₯して、&3ε€§εž‹η‡ƒη„Όγ‚¨γƒ³γ‚Έγƒ³&rγη‡ƒζ–™γ¨γ—γ¦δ½ΏγˆγΎγ™γ€‚\n\n&9-&r&a重油&rは、&dγƒ‹γƒˆγƒ­γƒ™γƒ³γ‚Όγƒ³&rに加ε·₯して、&3ε€§εž‹γ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³&rγη‡ƒζ–™γ¨γ—γ¦δ½ΏγˆγΎγ™γ€‚", "quests.extreme_voltage.mpic_chip.title": "Power Integrated Circuit", - "quests.extreme_voltage.mpic_chip.desc": "New Cutting Machine? &aβœ“&r\n\nNew Lens? &aβœ“&r\n\nNew Power Circuit? &aβœ“&r\n\nNew EBF Metal required? &aβœ“&r\n\nNew Coil for Energy Hatch? &aβœ“&r", - "quests.extreme_voltage.ev_energy_hatch.desc": "Another tier, another energy hatch. You know what to do with this!", - "quests.extreme_voltage.ev_dynamo_hatch.title": "EV Dynamo Hatch", - "quests.extreme_voltage.ev_dynamo_hatch.desc": "If you haven't encountered them yet, Dynamo Hatches are essentially the Output equivalent of Energy Hatches. You'll want to use these on your new Large Generators for some proper EV power, covered in the next quests.", + "quests.extreme_voltage.mpic_chip.desc": "ζ–°θ£ζ–­ζ©ŸοΌŸ&aβœ“&r\n\nζ–°γƒ¬γƒ³γ‚ΊοΌŸ&aβœ“&r\n\nζ–°PICγƒγƒƒγƒ—οΌŸ&aβœ“&r\n\nEBFθ£½ζ–°ι‡‘ε±žοΌŸ&aβœ“&r\n\nエネルγ‚ーハッチγγŸγ‚γζ–°γ‚³γ‚€γƒ«οΌŸ&aβœ“&r", + "quests.extreme_voltage.ev_energy_hatch.desc": "ζ–°γ—γ„ι›»εœ§γ«εˆ°ι”γ™γ‚‹γ¨γ„γ†γ“γ¨γ―ζ–°γ—γ„γ‚¨γƒγƒ«γ‚γƒΌγƒγƒƒγƒγ‚’δ½œγ‚‹γ¨γ„γ†γ“γ¨γ§γ™γ€‚δ»Šζ›΄θ¨€γ†γΎγ§γ‚‚γͺいですね。", + "quests.extreme_voltage.ev_dynamo_hatch.title": "EVγƒ€γ‚€γƒŠγƒ’γƒγƒƒγƒ", + "quests.extreme_voltage.ev_dynamo_hatch.desc": "γ”ε­˜ηŸ₯γͺい方γγŸγ‚γ«θͺ¬ζ˜Žγ™γ‚‹γ¨γ€γƒ€γ‚€γƒŠγƒ’ハッチはエネルγ‚ーハッチγγ€Œε‡ΊεŠ›η‰ˆγ€γγ‚ˆγ†γͺγ‚‚γγ§γ™γ€‚欑γγ‚―γ‚¨γ‚Ήγƒˆγ§ζ‰±γ†ζ–°γ—γ„ε€§εž‹η™Ίι›»ζ©Ÿγ§γ€η›Έε½“γι›»εŠ›γ‚’ε‡ΊεŠ›γ™γ‚‹γŸγ‚γ«γ€γ“γ‚Œγ‚‰γ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ«γͺるでしょう。", "quests.extreme_voltage.ev_dynamo_hatch.task": "Any EV Dynamo Hatch", - "quests.extreme_voltage.oil_distillation.title": "True Oil Distillation", - "quests.extreme_voltage.oil_distillation.desc": "Here are the four most relevant &dHydrocarbons&r you will be obtaining from distilling Steam-Cracked Fuels.\n\nYou will want to set this up &lbefore&r moving to &1IV&r.\n\n&aSteam-Cracked Light Fuel&r as input is probably the most favorable, but you are free to experiment.\n\nIf you don't want the Carbon output, feel free to slap a Voiding Cover on it.", + "quests.extreme_voltage.oil_distillation.title": "真γηŸ³ζ²Ήθ’Έη•™", + "quests.extreme_voltage.oil_distillation.desc": "γ“γ‘γ‚‰γŒγ€θ’Έζ°—εˆ†θ§£οΌˆγ‚―γƒ©γƒƒγ‚―οΌ‰γ‚’γ‚ˆγεˆ©η”¨γ™γ‚‹γ€δΈ»θ¦γͺ4η¨γ&dη‚­εŒ–ζ°΄η΄ &rι‘žγ§γ™γ€‚\n\nγ“γ‚Œγ‚‰γε‡¦η†γƒ©γ‚€γƒ³&1IV&rに進む&l前&rγ«ζ•΄γˆγ¦γŠγγ“γ¨γ‚’εΌ·γγŠγ™γ™γ‚γ—γΎγ™γ€‚\n\n&aθ’Έζ°—γ§εˆ†θ§£γ•γ‚ŒγŸθ»½θ³ͺ燃料&rを使うγγŒζœ€γ‚‚ζ‰±γ„γ‚„γ™γ„γ¨ζ€γ‚γ‚ŒγΎγ™γŒγ€γ‚‚γ‘ろんθ‡ͺη”±γ«θ©¦γ—γ¦ε•ι‘Œγ‚γ‚ŠγΎγ›γ‚“γ€‚\n\n副産物γη‚­η΄ γŒδΈθ¦γ§γ‚γ‚Œγ°γ€ζΆˆεŽ»γ‚«γƒγƒΌγͺγ©γ§ε»ƒζ£„γ—γ¦γ—γΎγ£γ¦γ‚‚γ„γ„γ‚“γ˜γ‚ƒγͺいでしょうか。", "quests.extreme_voltage.oil_distillation.task": "Any oil", - "quests.extreme_voltage.wood_distillation.title": "True Organic Distillation", - "quests.extreme_voltage.wood_distillation.desc.1": "This Quest requires the &3Pyrolyse Oven&r and is &doptional&r, yet convenient.\n\nThese four fluids are the important products of &aWood Tar&r Distillation:\n\n&9-&r Phenol: useful for Epoxy and PBI\n&9-&r Benzene: an important hydrocarbon\n&9-&r Toluene: useful for TNT\n&9-&r Dimethylbenzene: useful for PBI\n\nUnlike Oil, putting &aWood Tar&r in the &3Distillation Tower&r for the byproducts, and using &dNitrobenzene&r for power is arguably worth it.", - "quests.extreme_voltage.wood_distillation.desc.2": "These three are the important products from &aWood Vinegar&r Distillation:\n\n&9-&r Acetic Acid: useful to make more Acetone\n\n&9-&r Methanol: a moderately important hydrocarbon\n\n&9-&r Acetone: useful for Epoxy and Gasoline", - "quests.extreme_voltage.wood_distillation.desc.3": "It's also possible to use a \"full combo\" of 4 &3DTs&r - input &aCharcoal Byproducts&r into a first tower, splitting into &aWood Tar&r, &aWood Gas&r and &aWood Vinegar&r.\n\nThis isn't the most efficient cost-to-production ratio, but the option is there if you get bored.", + "quests.extreme_voltage.wood_distillation.title": "真γζœ‰ζ©Ÿθ’Έη•™", + "quests.extreme_voltage.wood_distillation.desc.1": "ζœ‰ζ©Ÿθ’Έη•™γ§γ―&3η†±εˆ†θ§£η‚‰&rγ‚’δ½Ώη”¨γ—γΎγ™γ€‚εŸΊζœ¬ηš„γ«εΏ…ι ˆγε·₯η¨‹γ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ζ§˜γ€…γͺγ¨γ“γ‚γ§ε½Ήη«‹γ£γ¦γγ‚ŒγΎγ™γ€‚\n\nδ»₯δΈ‹γ4η¨ι‘žγζΆ²δ½“は、&a木θ³ͺタール&rγθ’Έη•™γ§εΎ—γ‚‰γ‚Œγ‚‹ι‡θ¦γͺη”Ÿζˆη‰©γ§γ™οΌš\n\n&9-&rγƒ•γ‚§γƒŽγƒΌγƒ«οΌšγ‚¨γƒγ‚­γ‚·γ‚„PBIγζζ–™\n&9-&rγƒ™γƒ³γ‚Όγƒ³οΌšι‡θ¦γͺη‚­εŒ–ζ°΄η΄ \n&9-&rγƒˆγƒ«γ‚¨γƒ³οΌšTNTγζζ–™\n&9-&rγ‚Έγƒ‘γƒγƒ«γƒ™γƒ³γ‚Όγƒ³οΌšPBIに使用\n\nηŸ³ζ²Ήγ¨γ―ι•γ„γ€&a木θ³ͺタール&rγ‚’&3θ’Έη•™ε‘”&rで処理し副産物を得぀぀、&dγƒ‹γƒˆγƒ­γƒ™γƒ³γ‚Όγƒ³&rγ‚’η™Ίι›»γ«εˆ©η”¨γ™γ‚‹γ¨γ„γ†γ€η΄ ζ•΅γͺιΈζŠžθ‚’γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.extreme_voltage.wood_distillation.desc.2": "こけらγ3぀は、&aζœ¨ι…’&rγθ’Έη•™γ§εΎ—γ‚‰γ‚Œγ‚‹ι‡θ¦γͺη”Ÿζˆη‰©γ§γ™οΌš\n\n&9-&rι…’ι…ΈοΌšγ‚’γ‚»γƒˆγƒ³γθΏ½εŠ η”Ÿη”£\n\n&9-&rγƒ‘γ‚ΏγƒŽγƒΌγƒ«οΌšγγ“γγ“ι‡θ¦γͺη‚­εŒ–ζ°΄η΄ \n\n&9-&rγ‚’γ‚»γƒˆγƒ³οΌšγ‚¨γƒγ‚­γ‚·γ‚„γ‚¬γ‚½γƒͺンγζζ–™γ€‚", + "quests.extreme_voltage.wood_distillation.desc.3": "4基γ&3θ’Έη•™ε‘”&rγ‚’δ½Ώγ£γŸγ€Œγƒ•γƒ«γ‚³γƒ³γƒœγ€ζ§‹ζˆγ‚‚ε―θƒ½γ§γ™γ€‚&aζœ¨η‚­ε‰―η”Ÿζˆη‰©&rを一぀η›γε‘”γ«ζŠ•ε…₯し、&a木θ³ͺタール&r、&a木θ³ͺガス&r、&aζœ¨ι…’&rγ«εˆ†ι›’γ™γ‚‹ζ–ΉεΌγ§γ™γ€‚\n\nγ‚³γ‚Ήγƒˆγ«ε―Ύγ™γ‚‹η”Ÿη”£εŠΉηŽ‡γ―ζœ€ι©γ¨γ―θ¨€γˆγΎγ›γ‚“γŒγ€ζš‡γ€γΆγ—γ¨γ—γ¦γ„γ‹γŒγ§γ—γ‚‡γ†γ‹γ€‚", "quests.extreme_voltage.wood_distillation.task": "Any of these", - "quests.extreme_voltage.new_qol.title": "New QoL?", - "quests.extreme_voltage.new_qol.desc": "Here's some useful tools that you've unlocked with the EV Assembler.", + "quests.extreme_voltage.new_qol.title": "新しいQoL?", + "quests.extreme_voltage.new_qol.desc": "EVη΅„η«‹ζ©Ÿγ‚’θ§£η¦γ—γŸγ“γ¨γ§γ€ζ–°γŸγ«εˆ©η”¨γ§γγ‚‹δΎΏεˆ©γͺγƒ„γƒΌγƒ«γŒγ„γγ€γ‹γ‚γ‚ŠγΎγ™γ€‚", "quests.extreme_voltage.building_gadgets.title": "Building Gadgets", - "quests.extreme_voltage.building_gadgets.subtitle": "Paving over beautiful landscapes with just one press of a button!", - "quests.extreme_voltage.building_gadgets.desc": "Looking to expand your factory building even further? Want to just paste down another multiblock? Or is that mountain blocking your view?\n\nLook no further than Building Gadgets, a collection of tools that can do all that and more. These are your perfect building tools going forward, and they come with a manual too!", - "quests.extreme_voltage.gasoline.title": "Gasoline", - "quests.extreme_voltage.gasoline.desc": "&aGasoline&r is an extremely powerful Combustion Fuel. It's over &63 times&r as energy dense as &dDiesel&r!\n\n&9Note:&r This Combustion Fuel exists solely as a &echallenge&r for you to overcome if you desire to take on it.\n\nIt's completely &doptional&r, so we'll let you figure out how to obtain it, without any further tips.", - "quests.extreme_voltage.radiation.title": "Dealing with Radiation", - "quests.extreme_voltage.radiation.subtitle": "Extra Spicy Materials", - "quests.extreme_voltage.radiation.desc.1": "While GregTech doesn't have any sort of \"ambient radiation\" like some other mods do, &aradioactive materials&r are still dangerous to the player when held! This applies to any item that says it's &eCarcinogenic&r and is caused by &eAny Contact&r.\n\nThere's a few ways to mitigate this, and the easiest is to just avoid contact with the items in the first place - move them around with pipes, backpacks, or even Small Vessels. The less time you have them in your inventory, the better!", - "quests.extreme_voltage.radiation.desc.2": "Besides this, you'll want some other ways to protect yourself. Wearing equipment tagged as &e#ppe_armor&r in all four slots will protect you from radiation. However, this will still damage the equipment over time (at a rate equivalent to how much the radiation would affect you), &oexcept&r for the &6Hazardous Material Suit&r, which will never take damage from it.\n\nThe downside is that the hazmat suit isn't a space suit, so on Mars it's up to you whether you want to set up an enclosed Oxygenated base for the hazmat suit, or just take the durability damage on your space suit.", - "quests.extreme_voltage.radiation.desc.3": "Lastly, you can check your radiation poisoning at any time with the &a/medical_condition query&r command. If it gets too high, you will start taking occasional damage or just suddenly die, so you want to prevent it.\n\nThe only other way to treat it is to craft and eat &bRad Away&r pills, which will each remove 50%% of the build-up.", + "quests.extreme_voltage.building_gadgets.subtitle": "γ‚Έγƒ£γƒ³γ‚°γƒ«γŒγƒœγ‚Ώγƒ³δΈ€γ€γ§γ‚³γƒ³γ‚―γƒͺγƒΌγƒˆγ‚Έγƒ£γƒ³γ‚°γƒ«γ«οΌ", + "quests.extreme_voltage.building_gadgets.desc": "ε·₯ε ΄γ‚’γ‚‚γ£γ¨ζ‹‘εΌ΅γ—γŸγ„οΌŸγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ‚’γγγΎγΎγ‚³γƒ”ーして設η½γ—γŸγ„οΌŸγγ‚Œγ¨γ‚‚η›γε‰γε±±γŒι‚ͺι­”γ§ζ™―θ‰²γŒθ¦‹γˆγͺγ„οΌŸ\n\nそんγͺζ‚©γΏγ―γ€ŒBuilding Gadgetsγ€γ§ε…¨ιƒ¨θ§£ζ±ΊοΌε»Ίη―‰γ‚’δΎΏεˆ©γ«γ—γ¦γγ‚Œγ‚‹ε„ͺη§€γͺγ‚¬γ‚Έγ‚§γƒƒγƒˆγŒδΈ€εΌγγ‚γ£γ¦γ„γ¦γ€δ½Ώγ„ζ–Ήγγƒžγƒ‹γƒ₯γ‚’γƒ«γΎγ§δ»˜γ„γ¦γ„γΎγ™γ€‚γ“γ‚Œγ‹γ‚‰γε»Ίη―‰δ½œζ₯­γŒδΈ€ζ°—にζ₯½γ«γͺγ‚ŠγΎγ™οΌ", + "quests.extreme_voltage.gasoline.title": "ガソγƒͺン", + "quests.extreme_voltage.gasoline.desc": "&aガソγƒͺン&rはとんでもγͺγεΌ·εŠ›γͺ燃焼燃料で、γͺんと&dディーゼル&rγ3倍δ»₯上γη‡ƒζ–™δΎ‘γ‚’θͺ‡γ‚ŠγΎγ™οΌ\n\n&9補袳:&rガソγƒͺンγη²Ύθ£½γ―γ€ηŸ³ζ²Ήε‡¦η†γζ„›ε₯½εΆγ‚„εΌ·εŠ›γͺη‡ƒζ–™γ‚’ζ¬²γ™γ‚‹ζŒ‘ζˆ¦θ€…γ«ε‘γ‘γŸι«˜ι›£ζ˜“εΊ¦γƒγƒ£γƒ¬γƒ³γ‚Έγ§γ™γ€‚\n\nεŒε…¨γ«δ»»ζ„γθ¦η΄ γͺγγ§γ€δ½œζˆε·₯η¨‹γ―γ‚γˆγ¦γƒŽγƒΌγƒ’γƒ³γƒˆγ§γ™γ€‚γ‚γͺγŸγ―γ„γ£γŸγ„γ©γ†ζ”»η•₯するγγ§γ—γ‚‡γ†γ‹οΌοΌŸ", + "quests.extreme_voltage.radiation.title": "放射性物θ³ͺγε–γ‚Šζ‰±γ„ζ–Ή", + "quests.extreme_voltage.radiation.subtitle": "γͺかγͺγ‹εˆΊζΏ€ηš„γͺ物θ³ͺ", + "quests.extreme_voltage.radiation.desc.1": "GregTechでは、他γMODγγ‚ˆγ†γ«γ€Œζ”Ύε°„η·šγŒε‘¨ε›²γ«ζΌ‚γ†γ€γ¨γ„γ£γŸγ“γ¨γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€&aζ”Ύε°„ζ€§γγ‚’むテム&rは危険です!\n\nθͺ¬ζ˜Žζ¬„に&eγ€Œη™ΊγŒγ‚“ζ€§γ€&rγ¨ζ›Έγ‹γ‚Œγ¦γ„γ¦γ€&eγ€ŒζŽ₯ηΆšε…ˆγ€&rとあるもγγ―すべて対豑にγͺγ‚ŠγΎγ™γ€‚\n\nε―Ύη­–γ―γ„γγ€γ‹γ‚γ‚ŠγΎγ™γŒγ€δΈ€η•ͺζ‰‹γ£ε–γ‚Šζ—©γη’ΊεŸγͺγγ―ζŒγ‘ζ­©γ‹γͺγ„γ“γ¨γ§γ™γ€‚γƒ‘γ‚€γƒ—γ§ζ΅γ—γŸγ‚Šγ€γƒγƒƒγ‚―γƒ‘γƒƒγ‚―γ‚„ε°εž‹εΉε™¨γ«ε…₯γ‚Œγ¦ι‹γ‚“γ γ‚Šγ—γ¦γ€θ‡ͺθΊ«γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺ内にε…₯っている時間をζ₯΅εŠ›ζΈ›γ‚‰γ—γΎγ—γ‚‡γ†οΌ", + "quests.extreme_voltage.radiation.desc.2": "γ©γ†γ—γ¦γ‚‚ζŒγ‘ζ­©γ‹γͺくてはγͺらγͺいという時もあるでしょう、そγγŸγ‚γζ–Ήζ³•γ‚‚θͺ¬ζ˜Žγ—ます。\n\n4぀γγ‚Ήγƒ­γƒƒγƒˆγ™γΉγ¦γ«&e#ppe_armor&rγ¨γ‚Ώγ‚°δ»˜γ‘γ•γ‚ŒγŸθ£…ε‚™γ‚’η€η”¨γ™γ‚‹γ¨γ€ζ”Ύε°„η·šγ‹γ‚‰θΊ«γ‚’εˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ—γ‹γ—γ€γ“γ‚Œγ―時間とともに装備γθ€δΉ…ε€€γ«γƒ€γƒ‘γƒΌγ‚ΈγŒε…₯γ£γ¦γ—γΎγ„γΎγ™οΌˆζ”Ύε°„η·šγŒγ‚γͺγŸγ«δΈŽγˆγ‚‹ε½±ιŸΏι‡γ¨εŒη­‰γι€ŸεΊ¦γ§οΌ‰γ€‚γŸγ γ—γ€&6危険物用スーツ&rοΌˆγƒγ‚Ίγƒžγƒƒγƒˆγ‚ΉγƒΌγƒ„γ¨γ‚‚ε‘Όγ°γ‚ŒγΎγ™οΌ‰γ γ‘γ―δΎ‹ε€–γ§γ€ε±ι™Ίη‰©γ‹γ‚‰γε½±ιŸΏγ‚’δΈ€εˆ‡ε—γ‘γͺくγͺγ‚ŠγΎγ™γ€‚\n\nγŸγ γ—γ€γƒγ‚Άγƒžγƒƒγƒˆγ‚ΉγƒΌγƒ„γ―ε‡ε™ζœγ§γ―γͺγ„γŸγ‚γ€η«ζ˜Ÿγ§γ―γƒγ‚Άγƒžγƒƒγƒˆγ‚ΉγƒΌγƒ„γη€η”¨γŒε―能γͺε―†ι–‰γ•γ‚ŒγŸι…Έη΄ δΎ›η΅¦εŸΊεœ°γ‚’θ¨­η½γ™γ‚‹γ‹γ€ε‡ε™ζœγθ€δΉ…ε€€γ‚’γ™γ‚ŠζΈ›γ‚‰γ™γ‹γ‚’ιΈγ³γΎγ—γ‚‡γ†γ€‚", + "quests.extreme_voltage.radiation.desc.3": "ζœ€εΎŒγ«γ€&a/medical_condition query&rγ‚³γƒžγƒ³γƒ‰γ‚’δ½Ώγˆγ°γ€γ„γ€γ§γ‚‚θ‡ͺεˆ†γζ”Ύε°„θƒ½ζ±šζŸ“εΊ¦γ‚’η’Ίθͺγ§γγΎγ™γ€‚ζ•°ε€€γŒι«˜γγͺγ‚Šγ™γŽγ‚‹γ¨γ€δΈ€εšι–“ιš”γ§γƒ€γƒ‘γƒΌγ‚Έγ‚’ε—γ‘γŸγ‚Šγ€γ„γγͺγ‚Šζ­»δΊ‘γ—γ¦γ—γΎγ†γ“γ¨γ‚‚γ‚γ‚‹γŸγ‚γ€δΊ‹ε‰γ«ε―Ύη­–γ—γ¦γŠγγ“γ¨γŒε€§εˆ‡γ§γ™γ€‚\n\nもう1぀γε―Ύε‡¦ζ–Ήζ³•として、&bRadAway&rιŒ γ‚’θ£½δ½œγ—ζ‘‚ε–γ™γ‚‹ζ‰‹ζ΅γŒγ‚γ‚ŠγΎγ™γ€‚γ“γ‚Œγ‚’1γ€δ½Ώη”¨γ™γ‚‹γ¨γ€θ“„η©γ—γ¦γ„γ‚‹ζ”Ύε°„θƒ½ζ±šζŸ“γŒ50οΌ…γšγ€ζΈ›ε°‘γ—γΎγ™γ€‚", "quests.extreme_voltage.radiation.task": "Safety First!", - "quests.extreme_voltage.hexafluorosilic_acid.title": "Hexafluorosilic Acid", - "quests.extreme_voltage.hexafluorosilic_acid.subtitle": "There's something in the water...", - "quests.extreme_voltage.hexafluorosilic_acid.desc": "Hexafluorosilic Acid is obtained by bathing Red Granite, Trachyte, or Argillite Dust in Hydrofluoric acid. You can get an infinite amount of this dust from a Rock Crusher.", - "quests.extreme_voltage.martian_sludge.title": "Martian Sludge", - "quests.extreme_voltage.martian_sludge.subtitle": "The Slop Line", - "quests.extreme_voltage.martian_sludge.desc": "Centrifuge the Hexafluorosilic Acid to get your Fluorine back, along with some &6Martian Sludge&r - required for Radon and Nuclear Residue.", - "quests.extreme_voltage.large_generators.title": "Extreme Power Generation", - "quests.extreme_voltage.large_generators.desc": "The various single-block generators only go up to HV, so from here on, you'll have to use multiblocks to generate more power. Two of the best options at EV are the &dLarge Gas Turbine&r and &dLarge Combustion Engine&r, so head over to the GregTech Energy chapter to learn more about them.", - "quests.gregtech_energy": "GregTech Energy", - "quests.gregtech_energy.subtitle": "So how does all of that work?", - "quests.gregtech_energy.start.title": "Let's do some explaining", - "quests.gregtech_energy.start.desc": "We know that GregTech isn’t the easiest mod to get into β€” especially when it comes to the &cenergy system&r. That’s why we’ll take our time in this chapter to explain as much as we can.\n\nSome things here might not make full sense until later in your progression, so don’t stress yourself. Just try to understand what you can for now, and feel free to &dcome back to this chapter&r whenever you have questions.\n\nWe’ve split this chapter into &efour categories&r, each one covering a topic related to the GregTech Energy System. We’ll provide as many examples as possible to help you understand how it all works.", + "quests.extreme_voltage.hexafluorosilic_acid.title": "ε…­γƒ•γƒƒεŒ–γ‚±γ‚€ι…Έ", + "quests.extreme_voltage.hexafluorosilic_acid.subtitle": "フッ酸γδΈ­γ«γ€ηŸ³γŒγ€γ‚る!", + "quests.extreme_voltage.hexafluorosilic_acid.desc": "ε…­γƒ•γƒƒεŒ–γ‚±γ‚€ι…Έγ―γ€θ΅€θ‰²θŠ±ε΄—ε²©γ€η²—ι’ε²©γ€γΎγŸγ―η²˜εœŸθ³ͺ岩γη²‰ζœ«γ‚’εŒ–ε­¦ζ§½γ§γƒ•γƒƒεŒ–ζ°΄η΄ ι…Έγ«ζ΅Έγ™γ“γ¨γ§δ½œγ‚ŒγΎγ™γ€‚γ“γ‚Œγ‚‰γη²‰ζœ«γ―γ€η ΄η •ζ©Ÿγ‚’δ½Ώγˆγ°η„‘ι™γ«ε…₯手可能です。", + "quests.extreme_voltage.martian_sludge.title": "火星γζ³₯ζΌΏ", + "quests.extreme_voltage.martian_sludge.subtitle": "べけゃべけゃγͺε·₯程", + "quests.extreme_voltage.martian_sludge.desc": "ε…­γƒ•γƒƒεŒ–γ‚±γ‚€ι…Έγ‚’ι εΏƒεˆ†ι›’γ™γ‚‹γ¨γ€γƒ•γƒƒη΄ γ‚’ε›žεŽγ§γγ‚‹γ»γ‹γ€&6火星γζ³₯ζΌΏ&rγ‚‚εΎ—γ‚‰γ‚ŒγΎγ™γ€‚γ“γ‚Œγ―γƒ©γƒ‰γƒ³γ‚„ζ Έεˆ†θ£‚ζ‹η•™η‰©γη”Ÿζˆγ«εΏ…要γͺ素材です。", + "quests.extreme_voltage.large_generators.title": "ε€§εž‹η™Ίι›»ζ©Ÿ", + "quests.extreme_voltage.large_generators.desc": "シングルブロックγη™Ίι›»ζ©Ÿγ―HVγΎγ§γ—γ‹ε―ΎεΏœγ—γ¦γ„γͺγ„γŸγ‚γ€γ“γ‚Œδ»₯ι™γ―γ‚ˆγ‚Šε€§γγͺη™Ίι›»ι‡γ‚’η’ΊδΏγ™γ‚‹γ«γ―ε€§εž‹γη™Ίι›»ζ©Ÿγ‚’δ½Ώγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚EV帯で特にε„ͺη§€γͺγγ―、&dε€§εž‹γ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³&rと&dε€§εž‹η‡ƒη„Όγ‚¨γƒ³γ‚Έγƒ³&rγ2぀です。\n\n詳しくηŸ₯γ‚ŠγŸγ„ε ΄εˆγ―γ€γ€ŒGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ γ€γη« γ‚’ご覧ください。", + "quests.extreme_voltage.large_centrifuge.subtitle": "素材γγƒ‘γƒͺーゴーランド", + "quests.extreme_voltage.large_centrifuge.desc": "&6ε€§εž‹ι εΏƒεˆ†ι›’ζ©Ÿ&rγ―ζ Έεˆ†θ£‚γƒ©γ‚€γƒ³γγŸγ‚γ«εΏ…ι ˆγͺε€§εž‹ζ©Ÿζ’°γ§γ™γ€‚\n\nこγθ£…η½γ―&5EVエネルγ‚ーハッチ2぀&rε–γ‚Šδ»˜γ‘γ‚‹γ“γ¨γ§γ€EBFγ¨εŒγ˜γ‚ˆγ†γ«&1IV-tier&rγγƒ¬γ‚·γƒ”γ‚’ε‡¦η†γ§γγΎγ™γ€‚δ½Ώγ„ε‹ζ‰‹γŒγ„γ„γ§γ™γ­γ€‚\n\nこγζ©Ÿζ’°γ―&bι εΏƒεˆ†ι›’γƒ’γƒΌγƒ‰&rと&6η†±ι εΏƒεˆ†ι›’γƒ’γƒΌγƒ‰&rγ2぀γγƒ’γƒΌγƒ‰γ‚’εˆ©η”¨γ§γγΎγ™γ€‚γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌγγ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚Ήγ‹γ‚‰η°‘ε˜γ«εˆ‡γ‚Šζ›Ώγˆγ‚‰γ‚ŒγΎγ™γŒγ€ζ‹εΏ΅γͺγŒγ‚‰AE2γͺどγθ‡ͺε‹•εŒ–γ‚·γ‚Ήγƒ†γƒ γ‚’η΅Œη”±γ—γ¦ζ“δ½œγ™γ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“γ€‚\n\nこγζ©Ÿζ’°γŒγ‚γ‚Œγ°ι©ζ–°ηš„γͺスピードで&aι‰±ηŸ³ε‡¦η†&rγ‚’η΅‚γ‚γ‚‰γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.gregtech_energy": "GregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ ", + "quests.gregtech_energy.subtitle": "第一η¨ι›»ζ°—δΈ»δ»»ζŠ€θ‘“θ€…γ‚’η›ζŒ‡γ—て", + "quests.gregtech_energy.start.title": "θͺ¬ζ˜Žγ—γ‚ˆγ†", + "quests.gregtech_energy.start.desc": "GregTechγ―ζ±Ίγ—γ¦η°‘ε˜γͺModγ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚η‰Ήγ«&cι›»εŠ›γ‚·γ‚Ήγƒ†γƒ &rγη†θ§£γ―γ€ε€šγγδΊΊγŒγ€γΎγšγιƒ¨εˆ†γ§γ™γ€‚だからこそ、こγη« γ§γ―そγδ»•η΅„γΏγ‚’γ˜γ£γγ‚ŠδΈε―§γ«θ§£θͺ¬γ—ていきます。\n\n中には、ゲームγι€²θ‘ŒγŒι€²γΎγͺいとピンとこγͺい内εΉγ‚‚γ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚η„¦γ‚‰γšγ€δ»Šγ‚γ‹γ‚‹η―„ε›²γ§η†θ§£γ—γ¦γŠγ‘γ°ε€§δΈˆε€«γ§γ™γ€‚η–‘ε•γŒε‡ΊγŸγ¨γγ―、い぀でも&dこγη« γ«ζˆ»γ£γ¦&rη’Ίθͺγ—てみてください。\n\nこγη« γ―&e4぀γγ‚«γƒ†γ‚΄γƒͺγƒΌ&rγ«εˆ†γ‹γ‚Œγ¦γŠγ‚Šγ€γγ‚Œγžγ‚ŒγŒGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ γ«ι–’γ™γ‚‹γƒ†γƒΌγƒžγ‚’ζ‰±γ£γ¦γ„γΎγ™γ€‚η†θ§£γ‚’ζ·±γ‚γ‚„γ™γ„γ‚ˆγ†γ«γ€γ§γγ‚‹ι™γ‚Šε€šγγεŸδΎ‹γ‚‚紹介していきます。", "quests.gregtech_energy.start.task": "Welcome aboard", - "quests.gregtech_energy.start.subtitle": "It's not as bad as you think", - "quests.gregtech_energy.moving.title": "Moving your Energy", - "quests.gregtech_energy.moving.subtitle": "So, energy transfer, huh", - "quests.gregtech_energy.moving.desc": "Moving Energy in GregTech means understanding a few core mechanics.\n\nFirst, &bEnergy Tiers&r. From &aLV&r to &cUHV&r, everything in GregTech β€” wires, machines, recipes β€” is tied to a tier. You’ll need the &ecorrect cable material&r to move energy. For example:\n&8β€’&r Tin wire = &aLV&r\n&8β€’&r Copper wire= &bMV&r\n\nSecond, you’ve got the &bAmperage&r mechanic. Think of 1 Amp (or 1A) as &ea packet of energy&r. Machines request energy \"packets\", which then get sent down the wire.\n&8β€’&r 1A of LV = &a32 EU&r\n&8β€’&r 1A of HV = &e512 EU&r\n\nMost machines and energy hatches will only request &62A at maximum&r.\n\nMastering these two ideas is key before going further into energy distribution.", + "quests.gregtech_energy.start.subtitle": "δΈ€εΊ¦η†θ§£γ™γ‚Œγ°η°‘ε˜γ§γ™", + "quests.gregtech_energy.moving.title": "送電に぀いて", + "quests.gregtech_energy.moving.subtitle": "ι›»εŠ›γι‹ζ¬", + "quests.gregtech_energy.moving.desc": "GregTechγ§ι›»εŠ›γ‚’ι‹ζ¬γ‚’θ‘Œγ†γ«γ―γ€γ„γγ€γ‹γεŸΊζœ¬ηš„γͺδ»•η΅„γΏγ‚’η†θ§£γ—γ¦γŠγεΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nまずは&bι›»εœ§γγƒ†γ‚£γ‚’&rに぀いて。GregTechγγ‚らゆるもγ(γƒ―γ‚€γƒ€γƒΌγ€ζ©Ÿζ’°γ€γƒ¬γ‚·γƒ”)は&aLV&rから&cUHV&rまでγγƒ†γ‚£γ‚’γ«εˆ†ι‘žγ•γ‚Œγ¦γ„γΎγ™γ€‚ι›»εŠ›γ‚’ζ­£γ—γδΌγˆγ‚‹γ«γ―γ€&eι›»εœ§γ«εˆγ£γŸη΄ ζγι›»η·š&rγ‚’δ½Ώγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nδΎ‹οΌš\n&7β€’&rιŒ«γƒ―γ‚€γƒ€γƒΌ=&aLV&r\n&7β€’&rιŠ…γƒ―γ‚€γƒ€γƒΌ=&bMV&r\n\n欑に重要γͺγγŒ&bγ‚’γƒ³γƒšγ‚’(A)&rγδ»•硄みです。1γ‚’γƒ³γƒšγ‚’(1A)は&eエネルγ‚γƒΌγ1γƒ‘γ‚±γƒƒγƒˆ&rγγ‚ˆγ†γͺγ‚‚γγ§γ€ζ©Ÿζ’°γ―εΏ…θ¦γ«εΏœγ˜γ¦γ“γγ€Œγƒ‘γ‚±γƒƒγƒˆγ€γ‚’θ¦ζ±‚γ—γ€ι›»η·šγ‚’ι€šγ—γ¦ε—γ‘ε–γ‚ŠγΎγ™γ€‚\n1γ‚’γƒ³γƒšγ‚’γ”γ¨γι›»εŠ›ι‡γ―ι›»εœ§γ«γ‚ˆγ£γ¦η•°γͺγ‚ŠγΎγ™γ€‚ι›»εœ§γ”γ¨γ«4ε€γšγ€δΈŠζ˜‡γ—γΎγ™\nδΎ‹οΌš\n&7β€’&rLVγ1A=&a32EU&r\n&7β€’&rMVγ1A=&e128EU&r\n\nほとんどγζ©Ÿζ’°γ‚„エネルγ‚γƒΌγƒγƒƒγƒγ―γ€ζœ€ε€§γ§γ‚‚&62A&rまでしか要求できません。\n\nι›»εœ§γ¨γ‚’γƒ³γƒšγ‚’γ‚’η†θ§£γ™γ‚‹γ“γ¨γŒγ€GregTechγι›»εŠ›γζ‰±γ„γ‚’γƒžγ‚Ήγ‚ΏγƒΌγ™γ‚‹γŸγ‚γη¬¬δΈ€ζ­©γ§γ™γ€‚", "quests.gregtech_energy.moving.task": "I understand", - "quests.gregtech_energy.transformer.title": "The Super Transformer", - "quests.gregtech_energy.transformer.subtitle": "Better than Optimus Prime", - "quests.gregtech_energy.transformer.desc": "For every problem, GregTech has a multiblock solution. Enter the &dActive Transformer&r.\n\nThis beast is your ultimate transformer. It can channel energy between any tiers β€” from &aLV&r to &cUHV&r β€” with no explosions. But that's not even the best part.\n\nIt can transmit energy using Laser Pipes.\n&8β€’&r Lasers send absurd amounts of Amps.\n&8β€’&r No loss. No cables. Just pure energy.\n&8β€’&r Only one catch: it &chas to be in a perfectly straight line&r.\n\nWhen cables feel weak, &luse lasers.", - "quests.gregtech_energy.moving_wire.title": "Moving with wires", - "quests.gregtech_energy.moving_wire.subtitle": "Funky to place", - "quests.gregtech_energy.moving_wire.desc": "Moving energy around in GregTech can be tricky β€” &bmost cables are lossy&r. For every block, for every amp, you might lose energy as it travels through your wires. But don’t worry, there are solutions:\n\n&8β€’&r Cover your wires with rubber. By doing so, you'll significantly reduce energy loss over distance. Just check the quest items for a reference.\n&8β€’&r Use higher-tier cables. Platinum cables, for example, only lose 1 EU per block β€” practically nothing when compared to the 8192 EU it can carry.\n&8β€’&r &bSuperconductors&r. These beauties are a bit pricier, but they have &9zero loss&r. They don’t need rubber covers, and won't zap you either. Just be aware that they're usually only craftable near the end of their tier.\n\nOptimize your energy flow β€” &breduce losses&r and make your systems more efficient.", + "quests.gregtech_energy.transformer.title": "ε€§εž‹ε€‰εœ§ε™¨", + "quests.gregtech_energy.transformer.subtitle": "IMEγδΊˆζΈ¬ε€‰ζ›γ‚ˆγ‚Šγ‚‚ε„ͺ秀です", + "quests.gregtech_energy.transformer.desc": "GregTechでは、どんγͺε•ι‘Œγ‚‚γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γŒθ§£ζ±Ίγ—γ¦γγ‚ŒγΎγ™γ€‚&dε€§εž‹ε€‰εœ§ε™¨&rもきっとあγͺたγζŠ±γˆγ¦γ„γ‚‹ε•ι‘Œγ‚’θ§£ζ±Ίγ—γ¦γγ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚\n\nこγθ£…η½γ―、まさに穢ζ₯΅γε€‰εœ§ε™¨γ§γ™γ€‚&aLV&rから&cUHV&rまで、どんγͺι›»εœ§γ«γ‚‚ε―ΎεΏœγ—γ¦ε‰ε…¨γ«ι›»εŠ›γ‚’ι€γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ—γ‹γ‚‚γ€γγ‚Œγ γ‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nこγε€‰εœ§ε™¨γ―γƒ¬γƒΌγ‚ΆγƒΌγƒ‘γ‚€γƒ—γ‚’δ½Ώγ£γ¦ι›»εŠ›γ‚’θ»’ι€γ§γγΎγ™γ€‚γƒ¬γƒΌγ‚ΆγƒΌγƒ‘γ‚€γƒ—γη‰ΉεΎ΄γ¨γ—γ¦οΌš\n&7β€’&rι©šγγ»γ©ε€§ι‡γγ‚’γƒ³γƒšγ‚’γ‚’ι€δΏ‘ε―θƒ½\n&7β€’&rι›»εŠ›ζε€±γŒγ‚Όγƒ­γ€‚γ‚±γƒΌγƒ–γƒ«γ‚‚δΈθ¦γ€‚\n&7β€’&rγŸγ γ—γ€&cレーアーはεŒε…¨γ«η›΄η·šγ§ι…η½γ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹&r。\n\nγ‚±γƒΌγƒ–γƒ«γ«ι™η•Œγ‚’ζ„Ÿγ˜γŸγ‚‰&lレーアーを使いましょう。", + "quests.gregtech_energy.moving_wire.title": "ι›»η·šγ«γ‚ˆγ‚‹ι€ι›»", + "quests.gregtech_energy.moving_wire.subtitle": "ε°‘γ€…γ‚―γ‚»γŒγ‚γ‚ŠγΎγ™", + "quests.gregtech_energy.moving_wire.desc": "GregTechでは、他γε·₯ζ₯­Modγ¨γ―ι•γ„γ€ι€ι›»γ«εˆΆι™γ‚’γ‹γ‘γ‚‹θ¦η΄ γŒγ„γγ€γ‹γ‚γ‚ŠγΎγ™γ€‚\nδΎ‹γˆγ°γ€&b倚くγγ‚±γƒΌγƒ–γƒ«γ«γ―ι›»εŠ›γζε€±γŒγ‚γ‚Š&rγ€γƒ–γƒ­γƒƒγ‚―γ”γ¨γƒ»γ‚’γƒ³γƒšγ‚’γ”γ¨γ«ε°‘γ—γšγ€ι›»εŠ›γŒε€±γ‚γ‚Œγ¦γ„γγΎγ™γ€‚γ§γ™γŒε‰εΏƒγ—γ¦γγ γ•γ„γ€ε―Ύη­–γ―γ‚γ‚ŠγΎγ™γ€‚\n\n&7β€’&rγ‚±γƒΌγƒ–γƒ«γ‚’γ‚΄γƒ γ§θ’«θ¦†γ—γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ γ‘γ§γ‚‚γ‚¨γƒγƒ«γ‚γƒΌζε€±γ‚’ε€§εΉ…γ«ζŠ‘γˆγ‚‰γ‚ŒγΎγ™γ€‚γ‚―γ‚¨γ‚Ήγƒˆγ‚’γ‚€γƒ†γƒ γ‚’η’Ίθͺγ—てみてください。\n&7β€’&r長距雒γδΌι€γ«γ―ι«˜ι›»εœ§γγ‚±γƒΌγƒ–ルを使うγγ‚‚εŠΉζžœηš„γ§γ™γ€‚γŸγ¨γˆγ°γƒ—γƒ©γƒγƒŠγ‚±γƒΌγƒ–γƒ«γͺら、8192EUγ‚‚δΌγˆγ‚‰γ‚Œγ‚‹γͺかで、1γƒ–γƒ­γƒƒγ‚―γ‚γŸγ‚Šγζε€±γ―たった1EUγͺγγ§γ»γ¨γ‚“どθͺ€ε·γγ‚ˆγ†γͺγ‚‚γγ§γ™γ€‚\n&7β€’&rγγ—γ¦ζœ€ι«˜γζ‰‹ζ΅γ―&bθΆ…δΌε°Žδ½“&rγ‚’δ½Ώγ†γ“γ¨γ§γ™γ€‚γ‚³γ‚Ήγƒˆγ―γ‹γ‹γ‚ŠγΎγ™γŒγ€&9εŒε…¨γ«ζε€±γŒγ‚Όγƒ­&rγ§γ™γ€‚θ’«θ¦†γ‚‚δΈθ¦γ§γ€ζ„Ÿι›»γεΏƒι…γ‚‚γ‚γ‚ŠγΎγ›γ‚“γ€‚γŸγ γ—γ€εŸΊζœ¬ηš„γ«γγγƒ†γ‚£γ‚’γη΅‚盀にγͺらγͺγ„γ¨δ½œζˆγ§γγΎγ›γ‚“γ€‚\n\nι€ι›»γ‚’ζœ€ι©εŒ–γ—γ€&bζε€±γ‚’ζŠ‘γˆγ¦&rγ€γ‚ˆγ‚ŠεŠΉηŽ‡ηš„γ«ι‹η”¨γ—γΎγ—γ‚‡γ†γ€‚", "quests.gregtech_energy.moving_wire.task": "I finished looking at wires", - "quests.gregtech_energy.moving_amp.title": "Managing Amp", - "quests.gregtech_energy.moving_amp.subtitle": "It burns?", - "quests.gregtech_energy.moving_amp.desc.1": "You’ll notice each wire has its own &eMax Amperage&r β€” that’s the amount of amps a cable can safely carry before burning.\nTo know how many amps will flow through a cable, you must consider two things:\n\n- A Generator or Battery outputs a specific amount of Amps:\nBattery Buffers will output as many amps as they have batteries inside.\nEvery single-block generator outputs &e1A&r.\nFor multiblock generators, it depends on the &aDynamo Energy Hatch&r β€” the value is shown in its tooltip.\n\nAmperage output is also based on what is needed: each machine connected to a power line will request amps to fill its internal buffer.", - "quests.gregtech_energy.moving_amp.desc.2": "Let’s look at an example:\nYou have &e6 machines&r connected to an &e8x Battery Buffer&r filled with 8 batteries.\nThe buffer will try to send &e1A&r to each machine β€” that’s &e6A&r total.\nThe amps are delivered in order: the closest machines get power first, and the furthest ones last.\nIf your cables only support &c4A&r, they’ll &cBURN&r. You’ll need &a8A cables&r in this case.\n\n&bTip:&r The first machine in the line might need a cable that handles &e8A&r,\nbut the last machine may only need &e1A&r, as it’s only receiving what’s left.\n&c⚠ Be careful:&r adding another machine at the end could cause the cable to burn if it exceeds the limit.", + "quests.gregtech_energy.moving_amp.title": "γ‚’γƒ³γƒšγ‚’γζ‰±γ„", + "quests.gregtech_energy.moving_amp.subtitle": "γ†γ‚γ£οΌη‡ƒγˆγŸοΌοΌŸ", + "quests.gregtech_energy.moving_amp.desc.1": "γγ‚Œγžγ‚Œγγƒ―むダーには&eζœ€ε€§γ‚’γƒ³γƒšγ‚’ζ•°&rが設εšγ•γ‚Œγ¦γ„γΎγ™γ€‚γ“γ‚Œγ―、そγγ‚±γƒΌγƒ–γƒ«γŒη„Όγεˆ‡γ‚Œγšγ«ε‰ε…¨γ«ζ΅γ›γ‚‹ι›»ζ΅ι‡(γ‚’γƒ³γƒšγ‚’)γδΈŠι™γ§γ™γ€‚\nεŸιš›γ«γ‚±γƒΌγƒ–γƒ«γ‚’γ©γ‚Œγ γ‘γγ‚’γƒ³γƒšγ‚’γŒζ΅γ‚Œγ‚‹γ‹γ‚’ηŸ₯るには、欑γ2点を考ζ…γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n- η™Ίι›»ζ©Ÿγ‚„γƒγƒƒγƒ†γƒͺγƒΌγε‡ΊεŠ›γ‚’γƒ³γƒšγ‚’ζ•°οΌš\n蓄電器は、中にε…₯っているバッテγƒͺγƒΌγζ•°γ γ‘γ‚’γƒ³γƒšγ‚’γ‚’ε‡ΊεŠ›γ—γΎγ™γ€‚\n1ブロックγη™Ίι›»ζ©Ÿγ―γ€γ©γ‚Œγ‚‚ε‡ΊεŠ›γŒ&e1A&rです。\nγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γη™Ίι›»ζ©Ÿγε ΄εˆγ―、&aγƒ€γ‚€γƒŠγƒ’γ‚¨γƒγƒ«γ‚ーハッチ&rγ«γ‚ˆγ£γ¦ε‡ΊεŠ›γŒζ±ΊγΎγ‚Šγ€γγε€€γ―γƒ„γƒΌγƒ«γƒγƒƒγƒ—γ«θ‘¨η€Ίγ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nγΎγŸγ€ε‡ΊεŠ›γ•γ‚Œγ‚‹γ‚’γƒ³γƒšγ‚’ζ•°γ―γ€Œζ©Ÿζ’°γ‹γ‚‰γθ¦ζ±‚γ€γ«γ‚‚ε·¦ε³γ•γ‚ŒγΎγ™γ€‚ι›»η·šγ«γ€γͺγŒγ£γ¦γ„γ‚‹ε„ζ©Ÿζ’°γ―γ€θ‡ͺεˆ†γε†…部εΉι‡γ‚’ζΊ€γŸγ™γŸγ‚γ«εΏ…θ¦γͺεˆ†γγ‚’γƒ³γƒšγ‚’γ‚’θ¦ζ±‚γ—γΎγ™γ€‚", + "quests.gregtech_energy.moving_amp.desc.2": "ε…·δ½“ηš„γͺ例を見てみましょう。\nあγͺたは&e8個γγƒγƒƒγƒ†γƒͺγƒΌ&rγ‚’ε…₯γ‚ŒγŸ&e8γ‚Ήγƒ­γƒƒγƒˆθ“„ι›»ε™¨&rに、&e6台γζ©Ÿζ’°&rγ‚’ζŽ₯ηΆšγ—γ¦γ„γΎγ™γ€‚\nこγθ“„ι›»ε™¨γ―ε„ζ©Ÿζ’°γ«&e1A&rγšγ€ι€γ‚‹γγ§γ€εˆθ¨ˆγ§&e6A&rγι›»ζ΅γ‚’桁そうとします。\nι›»εŠ›γ―γ€ζœ€γ‚‚θΏ‘γ„ζ©Ÿζ’°γ‹γ‚‰ι †η•ͺγ«ι€γ‚‰γ‚Œγ€ζœ€εΎŒγζ©Ÿζ’°γŒδΈ€η•ͺι…γε—γ‘ε–γ‚ŠγΎγ™γ€‚\nこγε ΄εˆγ€γ‚‚γ—γ‚±γƒΌγƒ–γƒ«γŒ&c4A&rγΎγ§γ—γ‹ε―ΎεΏœγ—γ¦γ„γͺγ‘γ‚Œγ°γ€γ‚±γƒΌγƒ–γƒ«γ―&cη„Όγεˆ‡γ‚Œγ¦γ—γΎγ„γΎγ™&r。こγε ΄εˆγ―&a8Aε―ΎεΏœγ‚±γƒΌγƒ–γƒ«&rγ‚’δ½Ώγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&bγƒ’γƒ³γƒˆοΌš&rδΈ€η•ͺζœ€εˆγζ©Ÿζ’°γ«ζŽ₯ηΆšγ™γ‚‹γ‚±γƒΌγƒ–γƒ«γ―&e8A&rγ‚’ζ‰±γˆγ‚‹γ‚‚γγŒεΏ…θ¦γ§γ™γŒγ€ζœ€εΎŒγζ©Ÿζ’°γιƒ¨εˆ†γ§γ―&e1A&rγ—γ‹ζ΅γ‚Œγͺいγγ§γ€η΄°γ„γ‚±γƒΌγƒ–γƒ«γ§γ‚‚ε•ι‘Œγͺγ‹γ£γŸγ‚Šγ—γΎγ™γ€‚\n&cβš ζ³¨ζ„οΌš&rγŸγ γ—γ€γ‚γ¨γ‹γ‚‰ζ©Ÿζ’°γ‚’θΏ½εŠ γ™γ‚‹γ¨γ€γ‚±γƒΌγƒ–γƒ«γŒθ¨±εΉι‡γ‚’θΆ…γˆγ¦η„Όζγ™γ‚‹γŠγγ‚ŒγŒγ‚γ‚ŠγΎγ™γ€‚", "quests.gregtech_energy.moving_amp.task": "I got it", - "quests.gregtech_energy.produce_energy.title": "Producing Energy", - "quests.gregtech_energy.produce_energy.subtitle": "Gas or Oil?", - "quests.gregtech_energy.produce_energy.desc": "It’s all about making energy, right? This part won’t be the most complicated one, since &eproducing energy&r in &2TerraFirmaGreg&r works pretty much like in &5standard GregTech&r.\n\nYou’ll learn about the various &6methods to generate energy&r, as well as some of the &afuels&r you can use to get the most out of your setup.", + "quests.gregtech_energy.produce_energy.title": "発電に぀いて", + "quests.gregtech_energy.produce_energy.subtitle": "ι›»εŠ›γη”Ÿη”£", + "quests.gregtech_energy.produce_energy.desc": "硐局γγ¨γ“γ‚γ€ι›»εŠ›γŒγͺγ‘γ‚Œγ°δ½•γ‚‚γ§γγΎγ›γ‚“γ€‚&2TerraFirmaGreg&rでγ&e発電方法&rは、&5標準γGregTech&rγ¨γ»γ¨γ‚“γ©εŒγ˜δ»•η΅„γΏγͺγγ§γ€γγ“γΎγ§ι›£γ—γγ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nγ‚―γ‚¨γ‚Ήγƒˆγγ“けら側では、さまざまγͺ&6発電方法&rや、そγγŸγ‚γ&a燃料&rγ«γ€γ„γ¦ε­¦γΆγ“γ¨γŒγ§γγΎγ™γ€‚", "quests.gregtech_energy.produce_energy.task": "Let's go!", - "quests.gregtech_energy.lv_generator.title": "Let's make energy", - "quests.gregtech_energy.lv_generator.subtitle": "Welcome to LV", - "quests.gregtech_energy.lv_generator.desc.1": "All of these are your basic &61-block Generators&r. They have a single &9input&r for their fuel β€” whether it’s &esteam&r, &agas&r, or &6liquid fuel&r β€” and they output exactly &e1A&r of power at their energy tier.\n\nThey’re simple to work with and will be your &ofirst source of power&r in &5GregTech&r until you reach the &dlarge multiblock generators&r later on.\n\nTo know what fuels can be used, &aEMI&r is your best friend β€” or you can check the &bquests on the left&r, where we’ve listed the most &aoptimal inputs&r. For now here are the <hree ways&r to begin your power production, all of them are &aviable&r the choice is yours.", - "quests.gregtech_energy.lv_generator.desc.2": "&e1. Steam Power&r:\n\nThis is the most classic method. You can convert the steam produced by your High Pressure Boilers into EU using a Steam Turbine.\n\nIt generates &e32 EU/t&r with &e64 mB/t&r of steam. If you follow this path, we highly recommend making a Large Bronze Boiler, which can easily be fueled with Lava, Creosote, or other burnable solid fuels (check JEI!).", - "quests.gregtech_energy.lv_generator.desc.3": "&e2. Rotational Power&r:\n\nYou can use Create's rotational power with an Alternator to generate RF, then convert it into EU using an &7LV&r Converter.\n\n(Check the Alternators quest in the LV Chapter for more details.)", - "quests.gregtech_energy.lv_generator.desc.4": "&e3. Biodiesel Power (TFG Exclusive)&r:\n\nCanola and Sunflowers can be processed into large amounts of Seed Oil. Combine it with TFC Alcohol to produce Biodiesel.\n\nThis method may seem more complex, but Biodiesel is extremely powerful during &7LV&r and &bMV&r tiers. It scales well into &5EV&r with &eCetane-Boosted Diesel&r later on.\n\nTo use Biodiesel, you’ll need a &7LV&r Combustion Generator. While it may be slightly more expensive, every mB of Biodiesel provides a high amount of EU, making it easier to transport and store.\n\nIt's your choice how you want to start your energy production.", + "quests.gregtech_energy.lv_generator.title": "発電を学ぼう!", + "quests.gregtech_energy.lv_generator.subtitle": "LVγΈγ‚ˆγ†γ“γ", + "quests.gregtech_energy.lv_generator.desc.1": "γ“γ‚Œγ‚‰γ―εŸΊζœ¬εž‹γ&61γƒ–γƒ­γƒƒγ‚―η™Ίι›»ζ©Ÿ&rγ§γ™γ€‚γγ‚Œγžγ‚Œε˜δΈ€γη‡ƒζ–™γ‚’&9ε…₯εŠ›&rγ™γ‚‹γ“γ¨γŒγ§γγ€&eθ’Έζ°—&r、&aガス&r、&6梲体燃料&rγͺγ©γ‚’ζΆˆθ²»γ—γ¦γ€γγι›»εœ§γ«ε―ΎεΏœγ™γ‚‹&e1A&rεˆ†γι›»εŠ›γ‚’ε‡ΊεŠ›γ—γΎγ™γ€‚\n\n&oε€§εž‹η™Ίι›»ζ©Ÿ&rγ«εˆ°ι”γ™γ‚‹γΎγ§γ―γ€γ“γγ‚ˆγ†γͺシンプルγͺη™Ίι›»ζ©Ÿγ‚’ι‹η”¨γ—γ¦γ„γγ“γ¨γ«γͺγ‚ŠγΎγ™γ€‚\n\nどγη‡ƒζ–™γŒδ½Ώγˆγ‚‹γ‹γ―&aEMI&rに載っています。あるいは左側γ&bγ‚―γ‚¨γ‚Ήγƒˆ&rで、&aそγζ™‚δ»£γ«γŠγ™γ™γ‚γͺ燃料&rγ‚’η’Ίθͺγ§γγΎγ™γ€‚γ¨γ‚Šγ‚γˆγšγ―、&l3぀γζ–Ήζ³•&rγ§η™Ίι›»γ‚’ε§‹γ‚γ‚‹γ“γ¨γŒγ§γγ€γ©γ‚Œγ‚’ιΈγ‚“γ§γ‚‚ζ§‹γ„γΎγ›γ‚“γ€‚ιΈζŠžγ―γ‚γͺγŸζ¬‘η¬¬γ§γ™γ€‚", + "quests.gregtech_energy.lv_generator.desc.2": "&e1.θ’Έζ°—εŠ›&r:\n\nζœ€γ‚‚εŸΊζœ¬ηš„γ§δΌη΅±ηš„γͺη™Ίι›»ζ–Ήζ³•γ§γ™γ€‚γƒœγ‚€γƒ©γƒΌγ§δ½œγ£γŸθ’Έζ°—γ‚’θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³γ«ι€γ‚‹γ“γ¨γ§ι›»εŠ›γΈγ¨ε€‰ζ›γ§γγΎγ™γ€‚&e64mB/t&rγθ’Έζ°—から&e32EU/t&rを発電可能です。\n\nこγζ–ΉεΌγ§ι€²γ‚γ‚‹γͺγ‚‰γ€γƒ–γƒ­γƒ³γ‚Ίθ£½ε€§εž‹γƒœγ‚€γƒ©γƒΌγ‚’δ½œγ‚‹γγŒγŠγ™γ™γ‚γ§γ™γ€‚溢岩やクレγ‚ͺγ‚½γƒΌγƒˆγ€γγδ»–γε›Ίδ½“燃料γͺγ©γ§η°‘ε˜γ«ε‹•γ‹γ›γΎγ™(δ½Ώγˆγ‚‹η‡ƒζ–™γ―EMIで璺θͺγ§γγΎγ™)。", + "quests.gregtech_energy.lv_generator.desc.3": "&e2.ε›žθ»’εŠ›&r:\n\nCreateγε›žθ»’ε‹•εŠ›γ‚’γ‚ͺルタネーターに繋げてRFγ‚’η™Ίι›»γ—γ€γγ‚Œγ‚’&7LV&rエネルγ‚γƒΌε€‰ζ›ζ©Ÿγ§EUγ«ε€‰ζ›γ§γγΎγ™γ€‚θ©³γ—γγ―γ€γ€ŒLV」γη« γδΈ­γγ‚ͺルタネーターγγ‚―γ‚¨γ‚Ήγƒˆγ‚’γƒγ‚§γƒƒγ‚―γ—γΎγ—γ‚‡γ†γ€‚", + "quests.gregtech_energy.lv_generator.desc.4": "&e3.バむγ‚ͺγƒ‡γ‚£γƒΌγ‚Όγƒ«η‡ƒζ–™οΌˆTFG限εšοΌ‰&r:\n\nγ‚­γƒ£γƒŽγƒΌγƒ©γ‚„γƒ’γƒžγƒ―γƒͺから倧量γη¨ζ²Ήγ‚’δ½œγ‚ŒγΎγ™γ€‚γ“γ‚Œγ‚’γ‚’γƒ«γ‚³γƒΌγƒ«ι‘žγ¨θͺΏεˆγ™γ‚‹γ“とでバむγ‚ͺディーゼルを精製できます。\n\nこγζ–Ήζ³•γ―ε°‘γ—ζ‰‹ι–“γŒγ‹γ‹γ‚ŠγΎγ™γŒγ€γƒγ‚€γ‚ͺディーゼルは&7LV&r~&bMV&rまでγι–“γ§δ½Ώγˆγ‚‹ε„ͺη§€γͺ燃料にγͺγ‚ŠγΎγ™γ€‚γ•γ‚‰γ«γ€&eγ‚»γ‚Ώγƒ³ζ·»εŠ γƒ‡γ‚£γƒΌγ‚Όγƒ«&rγ«γ™γ‚Œγ°&5EV&rγΎγ§δ½Ώγˆγ‚‹ιžεΈΈγ«ε„ͺη§€γͺ燃料にγͺγ‚ŠγΎγ™γ€‚\n\n使用するには&7LV&rη‡ƒη„Όη™Ίι›»ζ©ŸγŒεΏ…θ¦γ§γ™γ€‚γ“γ‚Œγ―γ‚„γ‚„ι«˜δΎ‘γͺδ»£γ‚γ‚Šγ«1mBγ‚γŸγ‚Šγη™Ίι›»ι‡γŒε€šγγ€η‡ƒζ–™γι‹ζ¬γ‚„保η‘γŒγ¨γ¦γ‚‚εŠΉηŽ‡ηš„γ§γ™γ€‚γ©γη™Ίι›»ζ–Ήζ³•から始めるかはあγͺたγθ‡ͺ由です。", + "quests.gregtech_energy.lv_generator.desc.5": "&e4.εˆζˆγ‚¬γ‚Ήη™Ίι›»οΌˆTFG限εšοΌ‰&r:\n\n&6コークス炉&rと&6Vacuum Chamber&rγ‚’εˆ©η”¨γ™γ‚‹γ“γ¨γ§γ€εΊη›€γ‹γ‚‰γ“γγ‚¬γ‚Ήη‡ƒζ–™γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ζ€§θƒ½γ―γΎγšγΎγšγ§γ™γŒγ€&eガス発電&rγ“γ γ‚γ‚‹ζ–Ήγ«γ¨γ£γ¦γ―εεˆ†εŸη”¨ηš„γ§γ™γ€‚ζœ€ε€§ι™γεŠΉηŽ‡γ‚’εΌ•γε‡Ίγ™γŸγ‚γ«γ€&6Create&rγ‚’ζ΄»η”¨γ—γŸθ‡ͺε‹•ζ€ζž—ε ΄γζ§‹η―‰γ‚’εΌ·γζŽ¨ε₯¨γ—ます。", "quests.gregtech_energy.lv_generator.task": "Any LV Generator", - "quests.gregtech_energy.mv_generator.title": "The MV Generators", - "quests.gregtech_energy.mv_generator.subtitle": "Basically the same as the LV ones", - "quests.gregtech_energy.mv_generator.desc": "To run your &bMV&r machines, you will need to upgrade your power production.\n\nIf an &7LV&r Generator produces &e32 EU/t&r, the &bMV&r Generator runs at &e128 EU/t&r.\nIt consumes four times more fuel to produce four times more energy.\n\nTo better understand power generation at &bMV&r, we strongly recommend checking the dedicated quest in the &bMV&r chapter, located right at the beginning.\n\nAt &bMV&r, you also gain access to more options:\n\n- Oil-based fuels like Diesel or Light Fuel\n- Gas-based fuels like Benzene, LPG, or Methane\n- You can continue using Biodiesel or Steam, though you may need larger pipes (Aluminium, Steel, or Potin can handle it)\n\nExplore your options carefully to optimize your energy setup.", + "quests.gregtech_energy.mv_generator.title": "MVγη™Ίι›»ζ–Ήζ³•", + "quests.gregtech_energy.mv_generator.subtitle": "LVγ¨ε€§δ½“εŒγ˜γ§γ™", + "quests.gregtech_energy.mv_generator.desc": "&bMV&rγζ©Ÿζ’°γ‚’ε‹•γ‹γ™γ«γ―γ€η™Ίι›»θƒ½εŠ›γ‚’εΌ·εŒ–γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚&7LV&rη™Ίι›»ζ©Ÿγη™Ίι›»εŠ›γŒ&e32EU/t&rγͺγγ«ε―Ύγ—、&bMV&rη™Ίι›»ζ©Ÿγ―&e128EU/t&rγ‚’η”ŸγΏε‡Ίγ—γΎγ™γ€‚γ€γΎγ‚Šγ€η‡ƒζ–™ζΆˆθ²»γ‚‚η™Ίι›»ι‡γ‚‚4倍にγͺγ‚ŠγΎγ™γ€‚\n\n&bMV&rでγη™Ίι›»γ«γ€γ„て詳しくηŸ₯γ‚ŠγŸγ„ε ΄εˆγ―γ€γ€Œ&bMV&r」γη« γε†’ι ­γγ‚―γ‚¨γ‚Ήγƒˆγ‚’η’Ίθͺγ—ましょう。\n\n&bMV&rγ§γ―εˆ©η”¨γ§γγ‚‹η‡ƒζ–™γεΉ…γ‚‚εΊƒγŒγ‚ŠγΎγ™γ€‚γŸγ¨γˆγ°γ€γƒ‡γ‚£γƒΌγ‚Όγƒ«γ‚„θ»½θ³ͺ燃料γͺどγγ‚ͺむル系燃料、ベンゼン・LPGγƒ»γƒ‘γ‚Ώγƒ³γ¨γ„γ£γŸγ‚¬γ‚Ήη³»η‡ƒζ–™γ€γγ—γ¦εΌ•γηΆšγγƒγ‚€γ‚ͺγƒ‡γ‚£γƒΌγ‚Όγƒ«γ‚„θ’Έζ°—γ‚‚δ½Ώη”¨ε―θƒ½γ§γ™γ€‚γŸγ γ—εΎŒθ€…γ―γ‚ˆγ‚Šε„ͺη§€γͺパむプ(γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γ€γ‚ΉγƒγƒΌγƒ«γ€γƒγƒ†γ‚£γƒ³θ£½γͺど)γŒεΏ…θ¦γ«γͺγ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚\n\nθ‡ͺεˆ†γθ¨­ε‚™γ«εˆγ£γŸζœ€ι©γͺ発電方法を見぀けましょう。", "quests.gregtech_energy.mv_generator.task": "Any MV Generator", - "quests.gregtech_energy.hv_single_generator.title": "The last single block generators", - "quests.gregtech_energy.hv_single_generator.subtitle": "Third time's the charm?", - "quests.gregtech_energy.hv_single_generator.desc": "If you don’t want to build the &eLarge Steam Turbine&r, these are your only options for &6HV&r.\n\nHowever, keep in mind that they won’t be available for &5EV&r and beyond.\n\nStill, they remain strong choices for energy generation at the &6HV&r tier.", + "quests.gregtech_energy.hv_single_generator.title": "ζœ€εΎŒγε°εž‹η™Ίι›»ζ©Ÿ", + "quests.gregtech_energy.hv_single_generator.subtitle": "3εΊ¦η›γζ­£η›΄", + "quests.gregtech_energy.hv_single_generator.desc": "&eε€§εž‹θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³&rγ‚’δ½œγ‚‰γͺγ„ε ΄εˆγ€&6HV&rγ§γ―γ“γ‚Œγ‚‰γζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚&5EV&rδ»₯ι™γ§δ½Ώγ£γ¦γ„γγ«γ―εŽ³γ—γ„ζ€§θƒ½γ§γ™γŒγ€&6HV&r帯でγη™Ίι›»ζ–Ήζ³•γ¨γ—γ¦γ―εεˆ†γ«ι Όγ‚Œγ‚‹ιΈζŠžθ‚’γ§γ™γ€‚", "quests.gregtech_energy.hv_single_generator.task": "Any HV Generator", - "quests.gregtech_energy.hv_fuel.title": "The obtainable HV fuels", - "quests.gregtech_energy.hv_fuel.subtitle": "To each their own", - "quests.gregtech_energy.hv_fuel.desc": "These are the three fuels respectively used for the Combustion, Steam, and Gas Generators.\n\nIf you have reached &6HV&r, we highly recommend choosing one of these three options.\n\nHowever, don’t worryβ€”other fuels are not necessarily bad.\n\nYou should always pick the solution that works best for your setup and playstyle.", + "quests.gregtech_energy.hv_fuel.title": "ζœ€ι©γͺHV燃料", + "quests.gregtech_energy.hv_fuel.subtitle": "おε₯½γγͺγγ‚’γ©γ†γž", + "quests.gregtech_energy.hv_fuel.desc": "γ“γ‚Œγ‚‰3η¨ι‘žγη‡ƒζ–™γ―γ€γγ‚Œγžγ‚Œη‡ƒη„Όη™Ίι›»ζ©Ÿγƒ»θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³η™Ίι›»ζ©Ÿγƒ»γ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³η™Ίι›»ζ©Ÿγ§δ½Ώγ‚γ‚ŒγΎγ™γ€‚\n\n&6HV&rでは、こγδΈ­γ‹γ‚‰γ©γ‚Œγ‹γ‚’選ぢγγŒγŠγ™γ™γ‚γ§γ™γ€‚もけろん、他γη‡ƒζ–™γŒδ½Ώγˆγͺγ„γ‚γ‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚θ‡ͺεˆ†γθ¨­ε‚™ζ§‹ζˆγ‚„γƒ—γƒ¬γ‚€γ‚Ήγ‚Ώγ‚€γƒ«γ«εˆγ£γŸζœ€ι©γͺ燃料を選びましょう。", "quests.gregtech_energy.hv_fuel.task": "I got it", - "quests.gregtech_energy.hv_choice.title": "Producing at HV", - "quests.gregtech_energy.hv_choice.subtitle": "Your choice", - "quests.gregtech_energy.hv_choice.desc": "By reaching &6HV&r, you now have access to your first multiblock for power generation.\n\nIt’s also considered the worst one… but it can still work well if you really want to use it.\n\nYour other option is to continue using the previous generatorsβ€”you now have access to new and better fuels.", + "quests.gregtech_energy.hv_choice.title": "HVγη™Ίι›»ζ–Ήζ³•", + "quests.gregtech_energy.hv_choice.subtitle": "選択欑第", + "quests.gregtech_energy.hv_choice.desc": "&6HV&rεΈ―γ«εˆ°ι”γ™γ‚‹γ¨γ€η™Ίι›»η”¨γεˆγ‚γ¦γγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ§‹ι€ γ‚’ζ‰±γˆγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚ζ€§θƒ½ηš„γ«γ―β€œζœ€εΌ±β€γ¨θ©•γ•γ‚Œγ‚‹γ“γ¨γ‚‚γ‚γ‚ŠγΎγ™γŒγ€δ½Ώγ„ζ–Ήζ¬‘η¬¬γ§γ―γ—γ£γ‹γ‚Šεƒγ„γ¦γγ‚ŒγΎγ™γ€‚\n\nもう一぀γιΈζŠžθ‚’γ¨γ—γ¦γ€γ“γ‚ŒγΎγ§γη™Ίι›»ζ©Ÿγ‚’δ½Ώγ„ηΆšγ‘γ‚‹γγ‚‚γ‚γ‚Šγ§γ™γ€‚δ»Šγͺγ‚‰γ€γ‚ˆγ‚Šι«˜ζ€§θƒ½γͺζ–°γ—γ„η‡ƒζ–™γ‚’δ½Ώγ†γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.gregtech_energy.hv_choice.task": "I understand", - "quests.gregtech_energy.lpt.title": "The Large Plasma Turbine", - "quests.gregtech_energy.lpt.subtitle": "You need a Fusion Reactor", - "quests.gregtech_energy.lpt.desc.1": "The &6Large Plasma Turbine&r β€” also known as &dLPT&r β€” is a real powerhouse. Not in size (it’s fairly standard), but in capacity. You’ll need LuV Circuits, a LuV Machine Hull, and tons of Tungstensteel to craft it. It’s considered the most powerful generator in TerraFirmaGreg.\n\nSo, how does it work? You’ll need Plasma produced by a Fusion Reactor. That plasma is cooled down inside the LPT while generating energy. You will need an output hatch to get the cooled plasma out.", - "quests.gregtech_energy.lpt.desc.2": "By default, the LPT starts at &e16384 EU/t&r, which doesn't look like much, but that energy output &cdoubles&r with each increase in the Rotor Holder after &1IV&r.\n\nFor example, using a LuV Rotor Holder (x2) with an HSS-E Turbine Rotor (x2.8) will give you a staggering &e91750 EU/t&r β€” that’s about &a2.8A of LuV&r power!\n\nLike other turbines, it will slow down and stop if the Dynamo Hatch is full so you won't waste plasma, but unlike the others, this one doesn’t require a Muffler Hatch.", - "quests.gregtech_energy.lgt.title": "The Large Gas Turbine", - "quests.gregtech_energy.lgt.subtitle": "The fan favorite", - "quests.gregtech_energy.lgt.desc.1": "The &6Large Gas Turbine&r β€” also known as &dLGT&r β€” is one of your two main sources of energy production for most of the modpack. You’ll be able to build your first one at &5EV&r using Stainless Steel. It can carry you from &5EV&r all the way to &dLuV&r, until you feel ready to upgrade to the Large Plasma Turbine.\n\nThat said, many players can finish TerraFirmaGreg using only these turbines β€” provided you have a strong infrastructure to handle the gas demands of high-tier LGTs.\n\nTo build the LGT, you’ll need the usual Maintenance Hatch and Input Hatch. This turbine requires a Muffler Hatch, but it does not use an Output Hatch.", - "quests.gregtech_energy.lgt.desc.2": "The default output is &e4096 EU/t&r. That output &cdoubles&r with each upgrade to the Rotor Holder after &5EV&r. For example, an LGT using an IV Rotor Holder (Γ—2) with a HSS-E Turbine Rotor (280%% power) will produce:\n4096 Γ— 2 Γ— 2.8 = &e22,937.6 EU/t&r β€” that's about &a2.8A of IV&r.\n\nTo fully extract that energy, you’ll need at least a IV 4A Dynamo Hatch, since a normal Dynamo Hatch only handles 2A.\n\nJust so you know: the Efficiency stat of a Turbine Rotor increases the duration of the recipe, which means you get more power from each mB of fuel.\n\nLastly, if the Dynamo Hatch fills up, the LGT will automatically slow down and pause fuel usage, gradually reducing rotor speed until it resumes again. So you won't lose any fuel during a backup.", - "quests.gregtech_energy.lst.title": "The Large Steam Turbine", - "quests.gregtech_energy.lst.subtitle": "It... exists", - "quests.gregtech_energy.lst.desc.1": "The &6Large Steam Turbine&r β€” or &dLST&r β€” might not be the most common Large Generator in standard GregTech, but thanks to its early unlock at &6HV&r and the fact that Large Boilers are stronger in TerraFirmaGreg, it definitely has its place.\n\nTo make it work, you’ll need an Input Hatch for steam, an Output Hatch for Distilled Water, and of course a Maintenance Hatch. That’s all you need!\n\nLike all Large Turbines, you’ll place a Rotor Holder on one side and a Dynamo Hatch on the other to extract power. For the LST, the Rotor Holder must be at least &6HV-tier&r. Each Rotor Holder upgrade &cdoubles&r the output and increases efficiency slightly.", - "quests.gregtech_energy.lst.desc.2": "The base output of the LST is &e1024 EU/t&r. Let’s take an example: with an IV Rotor Holder (Γ—4) and a HSS-E Turbine Rotor (280%% power), you’ll get:\n1024 Γ— 4 Γ— 2.8 = &e11,468.8 EU/t&r β€” that’s about &a1.4A of IV&r.\n\nTo extract that energy, you’d need either an IV Dynamo Hatch or an EV 16A Dynamo Hatch.\n\nWhile the LST isn’t the best turbine out there, if you have plenty of Large Boilers or access to a large amount of fuel, these steel-based, affordable turbines could absolutely serve you well.", - "quests.gregtech_energy.lce.title": "The Large Combustion Generator", - "quests.gregtech_energy.lce.subtitle": "Don't belive its GUI", - "quests.gregtech_energy.lce.desc.1": "These two &6bad boys&r are your champions if you’re into transforming Oils into fuels. The &6Large Combustion Engine&r (&dLCE&r) and the &5Extreme Combustion Engine&r (&dECE&r) share the same fuel types and even look alike β€” but they require different materials to build.\n\nTo craft the LCE, you’ll need to reach &5EV&r and unlock Titanium, along with at least one IV Circuit. For the ECE, it’ll be Tungstensteel and a LuV Circuit β€” something you should be able to build comfortably during &1IV&r.", - "quests.gregtech_energy.lce.desc.2": "Both machines require an Input Hatch for fuel and also Lubricant. For the &dECE&r, adding Oxygen or Liquid Oxygen will grant you a &cmassive energy boost&r. Check the tooltip of your fuel to compare how much extra energy you get with oxidizers β€” it's well worth it.\n\nKeep in mind: both engines need a Muffler Hatch.", - "quests.gregtech_energy.lpt_fuel.title": "Plasma Fuels", - "quests.gregtech_energy.lpt_fuel.subtitle": "It's very hot", - "quests.gregtech_energy.lpt_fuel.desc.1": "&6Large Plasma Turbines&r require high-tech fuels to run, and we recommend two strong options:\n\nThe first option becomes available with your MK1 Fusion Reactor: &eHelium Plasma&r.\nYou can create it using Deuterium and Tritium Gas β€” both gases are obtained by distilling &aLiquid Ender Air&r.\nThis fuel isn't the most powerful, but it's by far the easiest and earliest to produce.", - "quests.gregtech_energy.lpt_fuel.desc.2": "The second option requires a MK3 Fusion Reactor and allows you to generate &eNickel Plasma&r.\nTo make it, you’ll need Liquid Potassium β€” which you can extract from various ores β€” and the infamous Fluorine, which you should already know how to produce by now.\n\n⚠ Don’t forget: Helium Gas and Liquid Nickel should be collected and returned to your storage for future reuse.\n\nThese two fuels are your best candidates for powering the &dLPT&r, depending on how far you've progressed in your industrial madness.", + "quests.gregtech_energy.lpt.title": "ε€§εž‹γƒ—γƒ©γ‚Ίγƒžγ‚ΏγƒΌγƒ“γƒ³", + "quests.gregtech_energy.lpt.subtitle": "ζ Έθžεˆη‚‰γ‚‚γ‚»γƒƒγƒˆγ§", + "quests.gregtech_energy.lpt.desc.1": "&6ε€§εž‹γƒ—γƒ©γ‚Ίγƒžγ‚ΏγƒΌγƒ“γƒ³&r(ι€šη§°οΌš&dLPT&r)は、そγεγ«γ΅γ•γ‚γ—γ„θΆ…ι«˜ε‡ΊεŠ›η™Ίι›»ζ©Ÿγ§γ™γ€‚γ‚΅γ‚€γ‚Ίγ―ζ¨™ζΊ–ηš„γ§γ™γŒγ€η™Ίι›»θƒ½εŠ›γ―ηΎ€γ‚’ζŠœγ„γ¦γ„γΎγ™γ€‚\n作成にはLuVε›žθ·―γ€LuVγƒžγ‚·γƒ³η­δ½“γ€γγ—γ¦ε€§ι‡γγ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³γ‚ΉγƒγƒΌγƒ«γŒεΏ…要です。\nγ“γ‚Œγ―TerraFirmaGregγδΈ­γ§γ‚‚ζœ€εΌ·γ‚―ラスγη™Ίι›»ζ©Ÿγ¨γ„γˆγ‚‹γ§γ—γ‚‡γ†γ€‚\n\nδ»•η΅„γΏγ―γ‚·γƒ³γƒ—γƒ«γ§γ€ζ Έθžεˆη‚‰γ§η”Ÿζˆγ•γ‚ŒγŸγƒ—γƒ©γ‚Ίγƒžγ‚’εˆ©η”¨γ—γΎγ™γ€‚γ“γγƒ—γƒ©γ‚Ίγƒžγ‚’LPTε†…γ§ε†·ε΄γ™γ‚‹ιŽη¨‹γ§γ‚¨γƒγƒ«γ‚γƒΌγ‚’η”ŸγΏε‡Ίγ—γ€ε†·ε΄εΎŒγγƒ—γƒ©γ‚Ίγƒžγ―ζ¬ε‡Ίγƒγƒƒγƒγ‹γ‚‰ε€–γ«ε‡Ίγ™εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.gregtech_energy.lpt.desc.2": "εˆζœŸηŠΆζ…‹γLPTは&e16384EU/t&rγε‡ΊεŠ›γ‹γ‚‰γ‚Ήγ‚ΏγƒΌγƒˆγ—γΎγ™γ€‚\n\nδΈ€θ¦‹ζŽ§γˆγ‚γ§γ™γŒγ€&1IV&rεΈ―δ»₯ι™γ§γƒ­γƒΌγ‚ΏγƒΌγƒ›γƒ«γƒ€γƒΌγ‚’γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ™γ‚‹γŸγ³γ«ε‡ΊεŠ›γŒ&c倍々に&rε’—γˆγ¦γ„γγΎγ™γ€‚\n\nδΎ‹γˆγ°γ€LuVローターホルダー(x2)にHSS-Eタービンローター(x2.8)γ‚’η΅„γΏεˆγ‚γ›γ‚‹γ¨γ€γͺんと&e91750EU/t&rβ€•β€•γŠγ‚ˆγ&aLuVでγ2.8A&rγ‚‚γι›»εŠ›γ‚’η”ŸγΏε‡Ίγ›γΎγ™γ€‚\n\nδ»–γγ‚ΏγƒΌγƒ“γƒ³γ¨εŒγ˜γγ€γƒ€γ‚€γƒŠγƒ’γƒγƒƒγƒγŒζΊ€ζ―γ«γͺるとθ‡ͺε‹•γ§εœζ­’γ—γ¦γƒ—γƒ©γ‚Ίγƒžγη„‘ι§„γ‚’ι˜²γŽγΎγ™γŒγ€γ“γγ‚ΏγƒΌγƒ“γƒ³γ―δ»–γ¨ι•γ£γ¦γƒžγƒ•γƒ©γƒΌγƒγƒƒγƒγ‚’εΏ…θ¦γ¨γ—γΎγ›γ‚“γ€‚", + "quests.gregtech_energy.lgt.title": "ε€§εž‹γ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³", + "quests.gregtech_energy.lgt.subtitle": "η™Ίι›»ζ©Ÿγεšη•ͺ", + "quests.gregtech_energy.lgt.desc.1": "&6ε€§εž‹γ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³&r(ι€šη§°οΌš&dLGT&r)は、主要γͺδΊŒε€§η™Ίι›»ζ‰‹ζ΅γδΈ€γ€γ§γ™γ€‚\n\nδ½Ώγˆγ‚‹γγ―&5EV&rにε…₯ってからです。\nこγγ‚ΏγƒΌγƒ“ンは&5EV&rから&dLuV&rγΎγ§δ½Ώγˆγ‚‹η™Ίι›»ζ©Ÿγ§γ€ε€§εž‹γƒ—γƒ©γ‚Ίγƒžγ‚ΏγƒΌγƒ“γƒ³γΈγ‚’δ½Ώγ†γΎγ§γι Όγ‚Šγ«γͺγ‚ŠγΎγ™γ€‚\n\nεŸιš›γ€γ“γγ‚ΏγƒΌγƒ“ンだけでTerraFirmaGregγ‚’γ‚―γƒͺをすることもできγͺくはγͺγ„γ§γ™γ€‚γŸγ γ—γ€δΈŠδ½γLGTγγ‚¬γ‚ΉζΆˆθ²»γ«θ€γˆγ‚‰γ‚Œγ‚‹γ—γ£γ‹γ‚Šγ—γŸγ‚€γƒ³γƒ•γƒ©γŒεΏ…θ¦γ§γ™γ€‚\n\nLGTγγŸγ‚γ«γ―γ€γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒγƒƒγƒγ¨ζ¬ε…₯γƒγƒƒγƒγ€γƒžγƒ•γƒ©γƒΌγƒγƒƒγƒγŒεΏ…θ¦γ§γ™γ€‚ζ¬ε‡Ίγƒγƒƒγƒγ―δΈθ¦γ§γ™γ€‚", + "quests.gregtech_energy.lgt.desc.2": "γƒ‡γƒ•γ‚©γƒ«γƒˆγε‡ΊεŠ›γ―&e4096EU/t&rγ§γ‚γ‚Šγ€&5EV&rδ»₯降にローターホルダーををップグレードするごとに倍咗していきます。\n\nγŸγ¨γˆγ°γ€IVローターホルダー(Γ—2)とHSS-E製タービンローター(タービンパワー280οΌ…)を使用するLGTは、欑γγ‚ˆγ†γ«η™Ίι›»γ—γΎγ™οΌš\n4096Γ—2Γ—2.8=&e22,937.6EU/t&rβ€•γ“γ‚Œγ―&aIVでγ2.8A&rに相当します。\n\nそγγ‚¨γƒγƒ«γ‚γƒΌγ‚’εŒε…¨γ«ε–γ‚Šε‡Ίγ™γŸγ‚γ«γ―、少γͺくともIV4Aγƒ€γ‚€γƒŠγƒ’γƒγƒƒγƒγŒεΏ…θ¦γ§γ™γ€‚γͺγŠγ€ι€šεΈΈγγƒ€γ‚€γƒŠγƒ’ハッチでは2AγΎγ§γ—γ‹ζ‰±γˆγΎγ›γ‚“γ€‚\n\nけγͺγΏγ«γ€γ‚ΏγƒΌγƒ“γƒ³γƒ­γƒΌγ‚ΏγƒΌγ«γ‚γ‚‹γ‚ΏγƒΌγƒ“γƒ³εŠΉηŽ‡γ‚Ήγƒ†γƒΌγ‚Ώγ‚Ήγ―γƒ¬γ‚·γƒ”γη¨Όεƒζ™‚ι–“γ‚’ε»Άγ°γ™εŠΉζžœγŒγ‚γ‚ŠγΎγ™γ€‚γ€γ€γΎγ‚Š1mBγ‚γŸγ‚Šγη‡ƒζ–™γ‹γ‚‰γ‚ˆγ‚Šε€šγγι›»εŠ›γ‚’η”Ÿη”£γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nζœ€εΎŒγ«γ€γƒ€γ‚€γƒŠγƒ’γƒγƒƒγƒγŒζΊ€γ‚Ώγƒ³γ«γͺると、LGTはθ‡ͺε‹•ηš„γ«ζΈ›ι€Ÿγ—η‡ƒζ–™ζΆˆθ²»γ‚’δΈ€ζ™‚εœζ­’γ—γΎγ™γ€‚γƒ­γƒΌγ‚ΏγƒΌγε›žθ»’ι€ŸεΊ¦γ―εΎγ€…γ«δ½ŽδΈ‹γ—γ€ε†γ³δ½™θ£•γŒγ§γγ‚‹γ¨ε†ι–‹γ—γΎγ™γ€‚γγγŸγ‚γ€θ©°γΎγ‚ŠγŒη™Ίη”Ÿγ—γ¦γ‚‚η‡ƒζ–™γ‚’η„‘ι§„γ«γ™γ‚‹γ“γ¨γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.gregtech_energy.lst.title": "ε€§εž‹θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³", + "quests.gregtech_energy.lst.subtitle": "εΈΈθ»Œγ‚’ι€Έγ—γͺい発電", + "quests.gregtech_energy.lst.desc.1": "&6ε€§εž‹θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³&r(η•₯して&dLST&r)γ―γ€ι€šεΈΈγGregTechγ§γ―γ‚γΎγ‚Šθ¦‹γ‹γ‘γͺいタむプγε€§εž‹η™Ίι›»ζ©Ÿγ§γ™γ€‚しかし、&6HV&rζ΅ιšŽγ§ζ—©γ„ζ΅ιšŽγ‹γ‚‰δ½Ώγˆγ‚‹γ“とや、TerraFirmaGregγ§γ―ε€§εž‹γƒœγ‚€γƒ©γƒΌγŒη‰Ήγ«εΌ·εŠ›γ§γ‚γ‚‹γ“γ¨γ‹γ‚‰γ€εεˆ†γ«ζ΄»θΊγε ΄γŒγ‚γ‚ŠγΎγ™γ€‚\n\n動かすには、蒸気をε…₯γ‚Œγ‚‹ζ¬ε…₯γƒγƒƒγƒγ€θ’Έη•™ζ°΄γ‚’ε‡Ίγ™ζ¬ε‡Ίγƒγƒƒγƒγ€γγ—γ¦γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚ΉγƒγƒƒγƒγŒεΏ…θ¦γ§γ™γ€‚\n\nδ»–γε€§εž‹γ‚ΏγƒΌγƒ“γƒ³γ¨εŒζ§˜γ«γ€η‰‡ι’γ«γƒ­γƒΌγ‚ΏγƒΌγƒ›γƒ«γƒ€γƒΌγ€γ‚‚γ†η‰‡ι’γ«γƒ€γ‚€γƒŠγƒ’γƒγƒƒγƒγ‚’θ¨­η½γ—γ¦ι›»εŠ›γ‚’ε‡ΊεŠ›γ—γΎγ™γ€‚\n\nLSTγε ΄εˆγ€γƒ­γƒΌγ‚ΏγƒΌγƒ›γƒ«γƒ€γƒΌγ―ζœ€δ½Žγ§γ‚‚&6HV-tier&rでγͺγ‘γ‚Œγ°γͺγ‚ŠγΎγ›γ‚“γ€‚γƒ­γƒΌγ‚ΏγƒΌγƒ›γƒ«γƒ€γƒΌγ‚’γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ™γ‚‹γŸγ³γ«γ€ε‡ΊεŠ›γŒ&c2倍&rにγͺγ‚Šγ€εŠΉηŽ‡γ‚‚ε°‘γ—δΈŠγŒγ‚ŠγΎγ™γ€‚", + "quests.gregtech_energy.lst.desc.2": "LSTγεŸΊζœ¬ε‡ΊεŠ›γ―&e1024EU/t&rγ§γ™γ€‚γŸγ¨γˆγ°γ€IVローターホルダー(ε‡ΊεŠ›Γ—4)とHSS-Eタービンローター(ε‡ΊεŠ›280οΌ…)γ‚’η΅„γΏεˆγ‚γ›γ‚‹γ¨γ€\n1024Γ—4Γ—2.8=&e11,468.8EU/t&rγ€γŠγ‚ˆγ&a1.4AγIV&r相当γι›»εŠ›γ‚’εΎ—γ‚‰γ‚ŒγΎγ™γ€‚\n\nこγι›»εŠ›γ‚’ε–γ‚Šε‡Ίγ™γ«γ―、IV発電ハッチかEVγ16Aη™Ίι›»γƒγƒƒγƒγŒεΏ…θ¦γ§γ™γ€‚\n\nLSTγ―ζœ€ι©γͺ発電手ζ΅γ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ε€§εž‹γƒœγ‚€γƒ©γƒΌγ‚’θ€‡ζ•°δ½Ώγ£γ¦γ„γŸγ‚Šγ€η‡ƒζ–™γ‚’θ±Šε―Œγ«η’ΊδΏγ§γγ‚‹η’°ε’ƒγ§γ‚γ‚Œγ°γ€γ“γγ‚ΏγƒΌγƒ“γƒ³γ―εεˆ†γ«ζ΄»θΊγ—γ¦γγ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚", + "quests.gregtech_energy.lce.title": "ε€§εž‹η‡ƒη„Όγ‚¨γƒ³γ‚Έγƒ³", + "quests.gregtech_energy.lce.subtitle": "GUIγ‚’δΏ‘γ˜γ‚‹γͺ", + "quests.gregtech_energy.lce.desc.1": "γ“γ‚Œγ‚‰&6ε€§εž‹γ‚¨γƒ³γ‚Έγƒ³&rγŸγ‘γ―γ€ηŸ³ζ²Ήγθ’Έη•™γ‚’愛してやまγͺγ„ζ–Ήγ«γ¨γ£γ¦ι Όγ‚Œγ‚‹η›Έζ£’γ«γͺγ‚ŠγΎγ™γ€‚&5εΌ·εŒ–εž‹ε€§εž‹η‡ƒη„Όγ‚¨γƒ³γ‚Έγƒ³&r(ι€šη§°οΌš&dECE&r)は&6ε€§εž‹η‡ƒη„Όγ‚¨γƒ³γ‚Έγƒ³&r(ι€šη§°οΌš&dLCE&r)γεΌ·εŒ–η‰ˆγ§γ™γ€‚δ½Ώγ†η‡ƒζ–™γ‚‚θ¦‹γŸη›γ‚‚γ»γ¨γ‚“γ©εŒγ˜γ§γ™γŒγ€δ½œζˆγ«δ½Ώγ†η΄ ζγŒι•γ„γΎγ™γ€‚\n\nLCEγ‚’δ½œγ‚‹γ«γ―γ€&5EV&rζ΅ιšŽγ«εˆ°ι”してチタンとEVε›žθ·―γ‚’η”¨ζ„γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ECEγ‚’δ½œγ‚‹γ«γ―γ€γ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³γ‚ΉγƒγƒΌγƒ«γ¨LuVε›žθ·―γŒεΏ…θ¦γ§γ€γ“γ‚Œγ―&1IV&rζ΅ιšŽγι ƒγ«γ―εεˆ†γ«δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ£γ¦γ„γ‚‹γ―γšγ§γ™γ€‚", + "quests.gregtech_energy.lce.desc.2": "どけらγγ‚¨γƒ³γ‚Έγƒ³γ‚‚、燃料と潀滑油をε…₯γ‚Œγ‚‹γŸγ‚γζ¬ε…₯γƒγƒƒγƒγŒεΏ…θ¦γ§γ™γ€‚\n&dε€§εž‹γ‚¨γƒ³γ‚Έγƒ³&rγ―γ€ι…Έη΄ γΎγŸγ―ζΆ²δ½“ι…Έη΄ γ‚’δΎ›η΅¦γ™γ‚‹γ¨γ€&cη‡ƒζ–™εŠΉηŽ‡γŒε€§εΉ…γ«ε‘δΈŠ&rします。ツールチップを璺θͺγ—γ¦γ€ι…Έη΄ γ‚’δ½Ώγ£γŸε ΄εˆγ«γ©γ‚Œγγ‚‰γ„γ‚¨γƒγƒ«γ‚γƒΌγŒε’—γˆγ‚‹γ‹γ‚’η’Ίθͺγ—てみましょう。\n\nε‚™θ€ƒοΌšδΈ‘ζ–Ήγγ‚¨γƒ³γ‚Έγƒ³γ«γ―γƒžγƒ•γƒ©γƒΌγƒγƒƒγƒγŒεΏ…θ¦γ§γ™γ€‚", + "quests.gregtech_energy.lpt_fuel.title": "γƒ—γƒ©γ‚Ίγƒžη‡ƒζ–™", + "quests.gregtech_energy.lpt_fuel.subtitle": "温かみγγ‚γ‚‹η™Ίι›»", + "quests.gregtech_energy.lpt_fuel.desc.1": "&6ε€§εž‹γƒ—γƒ©γ‚Ίγƒžγ‚ΏγƒΌγƒ“γƒ³&rを動かすには特ζŠγͺη‡ƒζ–™γŒεΏ…θ¦γ§γ™γ€‚γŠγ™γ™γ‚γεΌ·εŠ›γͺ燃料は2η¨ι‘žγ‚γ‚ŠγΎγ™γ€‚\n\n一぀η›γ―γ€ζ Έθžεˆη‚‰MK1γ§γ‚‚δ½œγ‚Œγ‚‹η‡ƒζ–™γ§γ‚γ‚‹&eγƒ˜γƒͺγ‚¦γƒ γƒ—γƒ©γ‚Ίγƒž&rです。\nι‡ζ°΄η΄ γ‚¬γ‚Ήγ¨δΈ‰ι‡ζ°΄η΄ γ‚¬γ‚Ήγ‹γ‚‰δ½œγ‚‹γ“γ¨γŒγ§γγ€γ©γ‘γ‚‰γ‚‚&aエンドγζΆ²δ½“η©Ίζ°—&rを蒸留することで手にε…₯γ‚ŠγΎγ™γ€‚\nη™Ίι›»εŠ›γ¨γ—γ¦γ―γγ‚Œγͺγ‚Šγ§γ™γŒγ€ζœ€γ‚‚η°‘ε˜γ§ζ—©γδ½œγ‚Œγ‚‹η‡ƒζ–™γ§γ™γ€‚", + "quests.gregtech_energy.lpt_fuel.desc.2": "二぀η›γιΈζŠžθ‚’γ―γ€ζ Έθžεˆη‚‰MK3γ§δ½Ώγˆγ‚‹&eγƒ‹γƒƒγ‚±γƒ«γƒ—γƒ©γ‚Ίγƒž&rです。\nδ½œγ‚‹γ«γ―ζΆ²δ½“γ‚«γƒͺγ‚¦γƒ γŒεΏ…θ¦γ§γ€γ“γ‚Œγ―ζ§˜γ€…γͺι‰±ηŸ³γ‹γ‚‰ε–γ‚Šε‡Ίγ›γΎγ™γ€‚γΎγŸγ€ζ‚ͺει«˜γ„γƒ•γƒƒη΄ γ‚‚εΏ…θ¦γ§γ™γŒγ€δ»Šγ•γ‚‰ε›°γ‚Šγ―γ—γͺいでしょう。\n\nβš ζ³¨ζ„οΌšδ½Ώη”¨εΎŒγ«ε‡ΊγŸγƒ˜γƒͺγ‚¦γƒ γ‚¬γ‚Ήγ¨ζΆ²δ½“γƒ‹γƒƒγ‚±γƒ«γ―ε›žεŽγ—γ¦γ€ε°†ζ₯γη‡ƒζ–™η”¨γ«δΏη‘γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\nこγ2η¨ι‘žγη‡ƒζ–™γ―、あγͺたγι€²θ‘Œε…·εˆγ«εΏœγ˜γ¦γ€&dε€§εž‹γƒ—γƒ©γ‚Ίγƒžγ‚ΏγƒΌγƒ“γƒ³&rを動かすγγ«δ½Ώγ£γ¦γγ γ•い。", "quests.gregtech_energy.lpt_fuel.task": "I don't want to make a bucket of Plasma", - "quests.gregtech_energy.lgt_fuel.title": "Gas Fuels", - "quests.gregtech_energy.lgt_fuel.subtitle": "Everyone's favorite", - "quests.gregtech_energy.lgt_fuel.desc.1": "When we speak about gas fuels, we’re really talking about just one β€” &eNitrobenzene&r.\n\nYou’ll be able to produce it once you reach &6HV&r, and we &astrongly recommend it&r if you’re planning to use the Large Gas Turbine.\n\nBefore reaching Nitrobenzene, &eBenzene&r is a solid option to get started. You can obtain it from a tree farm or by processing Heavy Oil, if you’re lucky enough to have some nearby.", - "quests.gregtech_energy.lgt_fuel.desc.2": "Making Nitrobenzene involves several steps β€” until you craft your first Large Chemical Reactor (LCR), which will let you skip many sub-steps and simplify the process.\n\nIt’s nothing too complicated: combine Hydrogen, Nitrogen, and Oxygen to make &eNitric Acid&r in infinite quantities. As for Sulfuric Acid, you probably already know it’s just Sulfur and Water β€” right?\n\nOnce you get this chain going, Nitrobenzene becomes one of the most powerful fuels for gas burning.", + "quests.gregtech_energy.lgt_fuel.title": "ガス燃料", + "quests.gregtech_energy.lgt_fuel.subtitle": "みんγͺε€§ε₯½γ", + "quests.gregtech_energy.lgt_fuel.desc.1": "γ“γ‚Œγ‚‰γη‡ƒζ–™γ―すべて &2γ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³η™Ίι›»ζ©Ÿ&rγ§δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚γ“γ“γ§γ―γ€εŠΉηŽ‡γŒδ½Žγ„γ‚‚γγ‹γ‚‰ι«˜γ„γ‚‚γγΎγ§γ‚’順に並べています。\n\n&bγ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³η™Ίι›»ζ©Ÿ&rγ―γ€εŒγ˜ζ™‚ζœŸγ«δ½œγ‚Œγ‚‹&bη‡ƒη„Όη™Ίι›»ζ©Ÿ&rと比べてε‰δΎ‘γ«δ½œγ‚ŒγΎγ™γŒγ€&eガス燃料&rγ―η‡ƒη„Όη³»η‡ƒζ–™γ‚ˆγ‚Šγ‚‚ε…¨δ½“ηš„γ«η‡ƒζ–™δΎ‘γŒδ½Žγγͺγ£γ¦γ„γΎγ™γ€‚γŸγ γ—γ€γ“γ‚Œγ―εŠ£γ£γ¦γ„γ‚‹γ¨γ„γ†ζ„ε‘³γ§γ―γͺγγ€εŒγ˜ε‡ΊεŠ›γ‚’εΎ—γ‚‹γŸγ‚γ«εΏ…θ¦γͺι‡οΌˆmBοΌ‰γŒε€šγγͺγ‚‹γ¨γ„γ†γ γ‘γ§γ™γ€‚ι€²θ‘ŒγŒι€²γ‚€γ¨γ€γ‚ˆγ‚Šε€šγγη‘η†γ‚’εΏ…θ¦γ¨γ™γ‚‹ιžεΈΈγ«εΌ·εŠ›γͺγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ§γ‚γ‚‹ &2ε€§εž‹γ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³&rγ§γ‚‚δ½Ώη”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.gregtech_energy.lgt_fuel.desc.2": "TerraFirmaGregγ«γŠγ„γ¦γ€&eガス燃料&rγ―ε…¨δ½“ηš„γͺバランスθͺΏζ•΄γŒθ‘Œγ‚γ‚Œγ¦γ„ます。&eベンゼン&rγ‚„&eγƒ‹γƒˆγƒ­γƒ™γƒ³γ‚Όγƒ³&rγ―ε€§εΉ…γ«εΌ±δ½“εŒ–γ•γ‚Œγ¦γ„γ‚‹γŸγ‚γ€γ“γ‚Œγ‚‰γ«δΎε­˜γ™γ‚‹γ“γ¨γ―&6推ε₯¨γ—ません&r。&7LV&rγεΊη›€γ§γ€γ‚ͺγ‚€γƒ«γ‚΅γƒ³γƒ‰γ‚’ε‡¦η†γ™γ‚‹ιš›γͺどには&eεˆζˆγ‚¬γ‚Ή&rγ‚„&eLPG&rγ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚γγεΎŒγ€&bMV&rで&eζ”Ήθ³ͺガス&rにをップグレードでき、さらに&2クラッカー&rγŒθ§£η¦γ•γ‚Œγ‚‹γ¨η”Ÿη”£εŠΉηŽ‡γ―γ‚ˆγ‚ŠδΈ€ε±€ι«˜γΎγ‚ŠγΎγ™γ€‚", "quests.gregtech_energy.lgt_fuel.task": "Gas in a bucket?", - "quests.gregtech_energy.lst_fuel.title": "This is Steam", - "quests.gregtech_energy.lst_fuel.subtitle": "Not much of a choice", - "quests.gregtech_energy.lst_fuel.desc": "Steam isn’t complicated β€” just boil water.\n\nTo do it efficiently, we recommend using &6Large Boilers&r. There's four versions: one each for &8ULV&r, &bMV&r, &5EV&r, and &1IV&r. Each tier provides a strong increase in steam output.\n\nHowever, be aware: the scaling of the &dLarge Steam Turbine&r with these boilers is not the best compared to other power generation methods.\n\nMost players will skip the Titanium and Tungstensteel Boilers β€” they exist if you want them, but aren’t worth building. Steam just doesn't scale very well!\n\nAs a reminder: &e2 mB&r of steam = &e1 EU&r.", + "quests.gregtech_energy.syngas.title": "εˆζˆγ‚¬γ‚Ή", + "quests.gregtech_energy.syngas.subtitle": "LVγ§γ‚‚γ‚¬γ‚Ήη™Ίι›»γŒγ—γŸγ„οΌ", + "quests.gregtech_energy.syngas.desc": "&eεˆζˆγ‚¬γ‚Ή&rは、TFGγ«γ¦ζ–°γ—γθΏ½εŠ γ•γ‚ŒγŸγ‚¬γ‚Ήη‡ƒζ–™γ§γ™γ€‚&8ULV&rγ¨γ„γ†ιžεΈΈγ«ζ—©γ„ζ΅ιšŽγ§θ§£η¦γ§γγ€&7LV&rでは&6εŸΊζœ¬εž‹γ‚¬γ‚Ήγ‚ΏγƒΌγƒ“γƒ³η™Ίι›»ζ©Ÿ&rに使用できます。特εˆ₯γ«εΌ·εŠ›γͺη‡ƒζ–™γ¨γ„γ†γ‚γ‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€&e潀滑剀&r、&eパタン&r、&eζ°΄η΄ &rγ¨γ„γ£γŸδΎ‘ε€€γι«˜γ„ε‰―η”£η‰©γΈγ¨ε€‰ζ›γ™γ‚‹γ“γ¨γŒε―θƒ½γ§γ™γ€‚\n\nζœ€εΌ·γη™Ίι›»ζ–Ήζ³•!...というわけではγͺく、倧規樑γͺ発電には向いていγͺγ„γ§γ™γŒγ€&6コークス炉&rγ‚’3εŸΊγ¨γ€&6ι†Έι€ ζ©Ÿ&rまたは&6Vacuum Chamber&rγ‚’1εŸΊγ γ‘δ½Ώη”¨γ™γ‚Œγ°ε‰εšγ—γ¦η”Ÿη”£γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&bMV&rγ«εˆ°ι”γ—γ€γ•γ‚‰γ«εΌ·εŠ›γͺ&eζ”Ήθ³ͺガス&rを解禁するまでγγ€γͺγŽγ«γ―εεˆ†γ§γ—γ‚‡γ†γ€‚", + "quests.gregtech_energy.reformate_gas.title": "ζ”Ήθ³ͺガス", + "quests.gregtech_energy.reformate_gas.subtitle": "ベンゼンを返して", + "quests.gregtech_energy.reformate_gas.desc.1": "&9ζ”Ήθ³ͺガス&rは、&bMV&rγ«γŠγ‘γ‚‹εΎ“ζ₯γγƒ™γƒ³γ‚Όγƒ³γε½Ήε‰²γ‚’ζ‹…γ†γ€εΌ·εŠ›γ§ζ–°γ—γ„γ‚¬γ‚Ήη‡ƒζ–™γ§γ™γ€‚\n\nγ“γ‚Œγ‚’η”Ÿη”£γ™γ‚‹γ«γ―γ€&6ζΆ²εŒ–ε‘”&rを建設し、乾η‡₯γ—γ¦ι«˜ζΈ©γͺ気候にγγΏη”Ÿζˆγ•γ‚Œγ‚‹&6タキをン鉱&rγι‰±θ„ˆγ‹γ‚‰&5レニウム&rγ‚’ε…₯ζ‰‹γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚&6η†±εˆ†θ§£η‚‰&rγ‚’2εŸΊη”¨ζ„γ—γ€δΈ€ζ–Ήγ§γ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγ€γ‚‚γ†δΈ€ζ–Ήγ§ζœ¨θ³ͺγ‚ΏγƒΌγƒ«γ‚’η”Ÿη”£γ™γ‚‹γ“γ¨γ§γ€γ“γη‡ƒζ–™γ‚’η”Ÿζˆγ™γ‚‹γŸγ‚γ«εΏ…θ¦γͺη΄ ζγŒγ™γΉγ¦ζƒγ„γΎγ™γ€‚\n\nζ§‹ζˆγ‚’η°‘η•₯εŒ–γ—γŸγ„ε ΄εˆγ―γ€&6ζΆ²δ½“εŠ η†±ζ©Ÿ&rγ‚’δ½Ώγ£γ¦θ’Έζ°—γ‚’η”Ÿη”£γ§γγ‚‹γ¨γ„γ†η‚Ήγ‚‚θ¦šγˆγ¦γŠγ„γ¦γγ γ•γ„γ€‚", + "quests.gregtech_energy.reformate_gas.desc.2": "&6HV&rγ§θ§£η¦γ•γ‚Œγ‚‹&6クラッカー&rγ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ§ε€§εΉ…γ«η”Ÿη”£εŠΉηŽ‡γŒε‘δΈŠγ—γΎγ™γ€‚γ•γ‚‰γ«&5レニウム&rγ‚’εΎͺη’°εˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚‹γŸγ‚γ€ζ”Ήθ³ͺガスは事εŸδΈŠγ€η„‘ι™γ«δ½Ώγˆγ‚‹η‡ƒζ–™γ¨γͺγ‚ŠγΎγ™γ€‚\n\nさらに &9ηͺ’η΄ &rと&9ζ°΄η΄ &rγ‚’ε·₯η¨‹γ«θΏ½εŠ γ™γ‚‹γ“γ¨γ§γ€η”Ÿη”£ι€ŸεΊ¦γ‚’δΈ€ε±€εΌ·εŒ–γ§γγΎγ™γ€‚", + "quests.gregtech_energy.btx.title": "BTX", + "quests.gregtech_energy.btx.subtitle": "Not a korean band", + "quests.gregtech_energy.btx.desc": "The BTX Fuel is NYI", + "quests.gregtech_energy.fission_rod.title": "Fission Fuels", + "quests.gregtech_energy.fission_rod.subtitle": "Don't get me too hot", + "quests.gregtech_energy.fission_rod.desc.1": "The Earth Fission materials are NYI but may come sooner than later", + "quests.gregtech_energy.fission_rod.desc.2": "", + "quests.gregtech_energy.fission_rod.task": "", + "quests.gregtech_energy.smr.title": "Small Modular Reactor", + "quests.gregtech_energy.smr.subtitle": "Finally Power for these far outposts", + "quests.gregtech_energy.smr.desc.1": "The Small Modular Reactor is NYI but may come sooner than later", + "quests.gregtech_energy.smr.desc.2": "", + "quests.gregtech_energy.smr.task": "", + "quests.gregtech_energy.gasoline.title": "ガソγƒͺン", + "quests.gregtech_energy.gasoline.subtitle": "η‡ƒζ–™η•Œγγ‚ΉγƒΌγƒ‘γƒΌγ‚Ήγ‚ΏγƒΌ", + "quests.gregtech_energy.gasoline.desc": "&aガソγƒͺン&rは&6HV&rγ§θ§£η¦γ•γ‚Œγ‚‹ιžεΈΈγ«εΌ·εŠ›γͺη‡ƒη„Όη‡ƒζ–™γ§γ™γŒγ€&6θ’Έη•™ε‘”&rγ‚’ε»Ίθ¨­γ—γ¦γ‹γ‚‰ζœ¬ζ Όηš„γͺη”Ÿη”£γ‚’ε§‹γ‚γ‚‹γγŒηΎεŸηš„です。&7γƒˆγƒ«γ‚¨γƒ³&rは&7木θ³ͺタール&rγ‚„&7重θ³ͺ燃料&rγ‹γ‚‰η°‘ε˜γ«δ½œζˆγ§γγ€γγ‚Œδ»₯倖に必要γͺγ‚‚γγ―&d精製ガス&r、&7γƒŠγƒ•γ‚΅&r、そして&3ι…Έη΄ &r・&bζ°΄η΄ &r・&1η‚­η΄ &rγεŒ–εˆη‰©γŸγ‘です。\n\nι«˜γ„ζ€§θƒ½γ‚’ζŒγ‘γ€ζ―”θΌƒηš„η°‘ε˜γ«θ£½ι€ γ§γγ‚‹γ†γˆγ€γ•γ‚‰γ«&c高γ‚ͺクタン侑ガソγƒͺン&rへとをップグレードすることも可能です。", + "quests.gregtech_energy.high_gasoline.title": "高γ‚ͺクタン侑ガソγƒͺン(ハむγ‚ͺγ‚―)", + "quests.gregtech_energy.high_gasoline.subtitle": "ハむγ‚ͺク満タンで", + "quests.gregtech_energy.high_gasoline.desc": "&cガソγƒͺン&rγη›΄ζŽ₯ηš„γͺをップグレードで、&5ζ€§θƒ½γŒ2ε€γ«εΌ·εŒ–γ•γ‚ŒγŸη‡ƒζ–™&rγ§γ™γ€‚εε‰γ‹γ‚‰γ―εˆ†γ‹γ‚Šγ«γγ„γ§γ™γŒγ€&dγ‚ͺクタン&rだけでγͺく、&7ηŸ³ζ²ΉεŒ–ε­¦&rη”±ζ₯γδ»–γη΄ ζγ‚‚θΏ½εŠ γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nこγζ΅ιšŽγΎγ§ζ₯γ‚ŒγŸγ‚γͺたγͺら、&bEMI&rγ‚’δ½Ώγ£γ¦γƒ¬γ‚·γƒ”γ‚’ζŠŠζ‘γ—γ€γ“γιžεΈΈγ«εΌ·εŠ›γͺ燃料をθ‡ͺεŠ›γ§θ£½ι€ γ§γγ‚‹γ‚ˆγ†γ«γͺっていることでしょう。", + "quests.gregtech_energy.lst_fuel.title": "θ’Έζ°—", + "quests.gregtech_energy.lst_fuel.subtitle": "γ‚γ‚‹ζ„ε‘³ζ°΄εŠ›η™Ίι›»", + "quests.gregtech_energy.lst_fuel.desc": "θ’Έζ°—γ‚’δ½œγ‚‹γγ―η°‘ε˜γ§γ™γ€‚γŸγ ζ°΄γ‚’ζ²Έγ‹γ™γ γ‘γ§γ™γ‹γ‚‰γ€‚\n\n倧量γθ’Έζ°—γ‚’η”Ÿη”£γ™γ‚‹γͺら&6ε€§εž‹γƒœγ‚€γƒ©γƒΌ&rγδ½Ώη”¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚γƒγƒΌγ‚Έγƒ§γƒ³γ―4η¨ι‘žγ§γ€γγ‚Œγžγ‚Œ&8ULV&r、&bMV&r、&5EV&r、&1IV&r用γγ‚‚γγŒγ‚γ‚ŠγΎγ™γ€‚γƒ†γ‚£γ‚’γŒδΈŠγŒγ‚‹γ”γ¨γ«θ’Έζ°—γη”Ÿη”£ι‡γ‚‚ε€§εΉ…γ«ε’—γˆγΎγ™γ€‚\n\nζ³¨ζ„οΌšγ“γ‚Œγ‚‰γγƒœγ‚€γƒ©γƒΌγ‚’δ½Ώγ£γŸγ¨γ—γ¦γ‚‚γ€&dε€§εž‹θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³&rγζ€§θƒ½γ―δ»–γη™Ίι›»ζ–Ήζ³•γ»γ©γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nほとんどγγƒ—γƒ¬γ‚€γƒ€γƒΌγ―γƒγ‚Ώγƒ³γ‚„γ‚Ώγƒ³γ‚°γ‚Ήγƒ†γƒ³γ‚ΉγƒγƒΌγƒ«γƒœγ‚€γƒ©γƒΌγ‚’δ½Ώγ†γ“γ¨γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚δ½œγ‚Œγ―γ—γΎγ™γŒγ€γγδΎ‘ε€€γŒγ»γ¨γ‚“γ©γ‚γ‚ŠγΎγ›γ‚“γ€‚θ’Έζ°—γ―ε˜η΄”γ§γ™γŒγ€ζ€§θƒ½γŒι ­ζ‰“γ‘γ«γͺγ‚ŠγŒγ‘γ§γ™γ€‚\n\nε‚θ€ƒγΎγ§γ«οΌš&e2mB&rγθ’Έζ°—=&e1EU&r。", "quests.gregtech_energy.lst_fuel.task": "I will switch to a denser fuel", - "quests.gregtech_energy.lce_fuel.title": "Liquid Fuel", - "quests.gregtech_energy.lce_fuel.subtitle": "The polluter's favourite", - "quests.gregtech_energy.lce_fuel.desc.1": "All of these fuels are used for &6Combustion Generators&r β€” ranked here from the least efficient to the best.\n\nDuring &bMV&r, we recommend starting with Diesel or Biodiesel. Later on, you can upgrade to Cetane-Boosted Diesel at &6HV&r by mixing it with Nitrogen, Hydrogen, and Oxygen.", - "quests.gregtech_energy.lce_fuel.desc.2": "Once you reach &5EV&r and get your hands on a &6Distillation Tower&r, it's time to switch over to Gasoline and High Octane Gasoline. Don’t attempt this too early β€” oils need to be distilled properly, and doing it with a regular Distillery is not efficient at all.\n\nTo make this work, you'll need a combination of oil distillation and some organic compound processing. Thankfully, a Pyrolyse Oven and a Distillation Tower will handle it all smoothly.\n\nIf you manage a steady supply of High Octane Gasoline, you should be able to finish the entire modpack running only on Combustion Generators.", + "quests.gregtech_energy.lst_fuel.task.1": "Large Boilers", + "quests.gregtech_energy.lce_fuel.title": "梲体燃料", + "quests.gregtech_energy.lce_fuel.subtitle": "η’°ε’ƒη ΄ε£Šγ‚’ζ₯½γ—もう", + "quests.gregtech_energy.lce_fuel.desc.1": "γ“γ‚Œγ‚‰γζΆ²δ½“燃料は&6η‡ƒη„Όη™Ίι›»ζ©Ÿ&rγ§δ½ΏγˆγΎγ™γ€‚εΌ±γ„γ‚‚γγ‹γ‚‰ι †γ«δΈ¦γΉγΎγ—γŸγ€‚\n\nεΊη›€γ―γ€γΎγšγƒ‡γ‚£γƒΌγ‚Όγƒ«γ‹γƒγ‚€γ‚ͺディーゼルを使うγγŒγŠγ™γ™γ‚γ§γ™γ€‚\n&6HV&rに進んだら、ηͺ’η΄ γƒ»ζ°΄η΄ γƒ»ι…Έη΄ γ‚’ζ··γœγ¦γ‚»γ‚Ώγƒ³ζ·»εŠ γƒ‡γ‚£γƒΌγ‚Όγƒ«γ«γ‚’ップグレードできます。", + "quests.gregtech_energy.lce_fuel.desc.2": "&5EV&rγ«εˆ°ι”γ—γ¦&6θ’Έη•™ε‘”&rγ‚’ζœ¬ζ Όηš„γ«ι‹η”¨γ—ε§‹γ‚γŸγ‚‰γ€γ‚¬γ‚½γƒͺγƒ³γΎγŸγ―γƒγ‚€γ‚ͺクガソγƒͺγƒ³γ«εˆ‡γ‚Šζ›Ώγˆγ‚‹γ‚Ώγ‚€γƒŸγƒ³γ‚°γ§γ™γ€‚\nζ—©γ¨γ‘γ‚Šγ—γͺγ„γ§γγ γ•γ„γ€‚εŽŸζ²Ήγ―γγ‘γ‚“γ¨θ’Έη•™γ™γ‚‹εΏ…θ¦γŒγ‚γ‚Šγ€ι€šεΈΈγθ’Έη•™ζ©Ÿγ§γ―εŠΉηŽ‡γŒιžεΈΈγ«ζ‚ͺいです。\n\nδ½œγ‚‹γ«γ―γ€εŽŸζ²Ήγθ’Έη•™γ¨γ„く぀かγζœ‰ζ©ŸεŒ–εˆη‰©ε‡¦η†γ‚’η΅„γΏεˆγ‚γ›γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚η†±εˆ†θ§£η‚‰γ¨θ’Έη•™ε‘”γ‚’δ½Ώγˆγ°γ‚Ήγƒ γƒΌγ‚Ίγ«ε‡¦η†γ§γγΎγ™γ€‚\n\nハむγ‚ͺクガソγƒͺンをε‰εšδΎ›η΅¦γ§γγ‚Œγ°γ€η‡ƒη„Όη™Ίι›»ζ©Ÿγ γ‘でクγƒͺγ‚’γ™γ‚‹γ“γ¨γ‚‚ε€’γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚", "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 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 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.", + "quests.gregtech_energy.large_solar.subtitle": "パガソーラー", + "quests.gregtech_energy.large_solar.desc.1": "ε€§εž‹γ‚½γƒΌγƒ©γƒΌγ‚’γƒ¬γ‚€MK_Iγ―γ€ζœˆι’γ«ε€§θ¦ζ¨‘γͺεŸΊεœ°γ‚’δ½œγ‚‹γ¨γγι Όγ‚Œγ‚‹ι›»εŠ›ζΊγ§γ™γ€‚\n\n特に&bAE2&rγγƒ©γ‚€γƒ³γη¨Όεƒγ‚„Moon_dust_Harvesterγε‰εšη¨Όεƒγ«δΎΏεˆ©γ§γ™γ€‚\n\nGregTechγγ‚ΏγƒΌγƒŸγƒŠγƒ«γ‚’ζŒγ£γ¦γ€γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌγ‚’γ‚Ήγƒ‹γƒΌγ‚―右クγƒͺγƒƒγ‚―γ™γ‚‹γ γ‘γ§γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ‚’ηž¬ζ™‚γ«η΅„γΏη«‹γ¦γ‚‰γ‚ŒγΎγ™γ€‚\n\nγΎγŸγ€γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌγ§&eU&rγ‚’ζŠΌγ™γ¨γ€EMIでどγγ‚ˆγ†γͺζ§‹ζˆγ‹η°‘ε˜γ«η’Ίθͺγ§γγΎγ™γ€‚", + "quests.gregtech_energy.large_solar.desc.2": "&6ε€§εž‹γ‚½γƒΌγƒ©γƒΌγ‚’γƒ¬γ‚€MK_I&rには&92η¨ι‘žγε‹•δ½œ&rγŒγ‚γ‚ŠγΎγ™οΌš\n\n&9‒パッシブヒード&rβ€”\nこγγƒ’ードでは&dε€ͺι™½ι›»ζ± &rγ‚’γ‚†γ£γγ‚ŠζΆˆθ²»γ—γΎγ™γ€‚θ£œε……γ‚’ζ¬ γ‹γ•γͺγ‘γ‚Œγ°ε•ι‘Œγ‚γ‚ŠγΎγ›γ‚“γŒγ€η„‘ι™γ«γ―δ½ΏγˆγΎγ›γ‚“γ€‚ζ˜Όγι–“だけ&6HVでγ2A&rεˆ†γι›»εŠ›γ‚’η”Ÿζˆγ—γΎγ™γ€‚εŸΊζœ¬ηš„γ«γ―εεˆ†γ§γ™γŒγ€ζœ€ε€§εŠΉηŽ‡γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\n&9‒をクティブヒード&rβ€”\nこγγƒ’ードではエネルγ‚γƒΌε‡ΊεŠ›γ‚’ζœ€ε€§εŒ–γ§γγΎγ™γŒγ€ε†·ε΄ζγη‘η†γŒεΏ…θ¦γ§γ™γ€‚ε‰εšη¨Όεƒγ«γ―ζΊ–ε‚™γŒθ¦γ‚ŠγΎγ™γŒγ€γγδ»£γ‚γ‚Šγ«&5EVでγ2A&rεˆ†γι›»εŠ›γ‚’η”Ÿζˆγ—γΎγ™οΌ\n\nγ•γ‚‰γ«γ€δΈŠδ½η‰ˆγMK_IIとMK_IIIγ‚‚γ‚γ‚Šγ€γ‚ˆγ‚Šι«˜εΊ¦γͺε†·ε΄ζγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.gregtech_energy.large_solar_t2.subtitle": "γ‚γ‚¬γ‚½γƒΌγƒ©γƒΌοΌŸ", + "quests.gregtech_energy.large_solar_t2.desc.1": "月青に&dAE2用γζ‹ η‚Ή&rγ‚’ε»Ίθ¨­γ™γ‚‹γ¨γ€ε€šγγγ‚¨γƒγƒ«γ‚γƒΌγŒεΏ…θ¦γ«γͺるでしょう。そんγͺζ™‚γ«ι Όγ‚Œγ‚‹γγŒ&6ε€§εž‹γ‚½γƒΌγƒ©γƒΌγ‚’γƒ¬γ‚€MK_II&rです!\n\nMK_Iと同様に2η¨ι‘žγγƒ¬γ‚·γƒ”γŒγ‚γ‚ŠγΎγ™γŒγ€δ»Šε›žγ―どけらもεŒε…¨γͺγƒ‘γƒƒγ‚·γƒ–ζ–ΉεΌγ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.gregtech_energy.large_solar_t2.desc.2": "&bソーラー冷却剀&rと&bθΆ…δ½ŽζΈ©ζΆ²εŒ–γƒ•γƒ«γƒΌγ‚·γƒ₯&rγ―γ€δΈ‘ζ–Ήγ¨γ‚‚ζœˆι’γ§εŒε…¨γ«η”Ÿη”£ε―能です。ソーラーγε†·ε΄ε‡¦η†γ§γ―&eフッ素&rと&eε‘©η΄ &rγ‚’γƒ«γƒΌγƒ—γ•γ›γ‚‹γ“γ¨γŒγ§γγ‚‹γŸγ‚γ€εΏ…θ¦γͺγγ―欑γ2γ€γ§γ™οΌš\n\nβ€’γƒ˜γƒͺウム3β€”&aζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿ&rγ§ζŽ‘ε–ε―θƒ½\nβ€’ζ°΄β€”&aζ°΄η”Ÿζˆζ©Ÿ&rγ§η”Ÿη”£ε―θƒ½\n\n&cγƒˆγƒ©γƒ–γƒ«γŒθ΅·γ“γ£γŸγ‚‰οΌš&r\nもし梲体γδΎ›η΅¦γŒι€”η΅Άγˆγ¦γ‚‚γ€ε€ͺι™½ι›»ζ± γ‚’ζΆˆθ€—γ—γ¦η¨Όεƒγ—ηΆšγ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγͺγ«γ‹γƒˆγƒ©γƒ–γƒ«γŒθ΅·γ“γ£γŸζ™‚γ«γ―γ€γ“γζ–Ήζ³•γ§δΈ€ζ™‚ηš„γ«ζ‹ η‚Ήγ‚’η¨Όεƒγ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nζœ¬ζ Όηš„γͺζœˆι’ζ‹ η‚Ήγι‹η”¨γ«ζ¬ γ‹γ›γͺγ„ε­˜εœ¨γ§γ™γ€‚", + "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は上位ε‡ε™ζœγθ£½ι€ γͺγ©γ«γ‚‚δ½Ώγˆγ‚‹η΄ ζγ§γ™γ€‚ζœˆι’γ§γ―η”Ÿη”£γŒι›£γ—γγ€&aεœ°ηƒ&rからγεšζœŸηš„γͺθ£œη΅¦γŒεΏ…θ¦γ«γͺγ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚\n\nε‰εšδΎ›η΅¦γγŸγ‚γ«γ―、どうにかしてθ‡ͺε‹•εŒ–γ§ε‡¦η†γ™γ‚‹γ‹γ€ζƒ‘ζ˜Ÿι–“θΌΈι€γ«εŠ›γ‚’ε…₯γ‚Œγ‚‹γ‹γ€γͺγ©θ€ƒγˆγ¦γΏγ¦γγ γ•γ„γ€‚\n\n&e高度γͺエネルγ‚γƒΌ&rγ‚’ζ‰±γ†γ«γ―γ€γγ‚Œγ«θ¦‹εˆγ£γŸ&c高度γͺむンフラ&rγŒδΈε―ζ¬ γ§γ™γ€‚γ—γ£γ‹γ‚Šγ¨θ¨ˆη”»γ‚’η«‹γ¦γΎγ—γ‚‡γ†οΌ", + "quests.gregtech_energy.solar_panel.subtitle": "γ‚­γƒ­γ‚½γƒΌγƒ©γƒΌοΌŸ", + "quests.gregtech_energy.solar_panel.desc": "ε€ͺι™½ε…‰η™Ίι›»ζ©Ÿγ―γ€ζœˆι’γ§γεˆζœŸγι›»εŠ›ζΊγ¨γͺるでしょう。\n\nζ˜Όι–“γ«γ―32EU/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γ«γ―ζ§˜γ€…γͺ蓄電手ζ΅γŒγ‚γ‚ŠγΎγ™γ€‚θ“„ι›»θ¨­ε‚™γ―γ€ι›»εŠ›γγƒγƒƒγƒ•γ‚‘γ¨γ—γ¦ζ©Ÿθƒ½γŒδ½•γ‚ˆγ‚Šγ‚‚ε€§γγ„γ§γ™γ€‚\n\nζ Έθžεˆη‚‰γ‚„LCRγι‹η”¨γ€γ‚るいはHVγ€œIV規樑γγƒ‘γƒƒγ‚·γƒ–γƒ©γ‚€γƒ³γ‚’ζ§‹η―‰γ—γŸε ΄εˆγ€ε‰εšη¨Όεƒγ•γ›γ‚‹γŸγ‚γ«γ―倧きめγι›»εŠ›γγƒγƒƒγƒ•γ‚‘γŒεΏ…θ¦γ§γ—γ‚‡γ†γ€‚\n\nθ“„ι›»γι‡θ¦ζ€§γ‚’δΎγ£γ¦γ―いけません——円滑γͺι€²θ‘ŒγγŸγ‚γ«ιžεΈΈγ«ε½Ήη«‹γ£γ¦γγ‚Œγ‚‹γ§γ—ょう。", "quests.gregtech_energy.storage.task": "I understand", - "quests.gregtech_energy.tank.title": "Storing Fuel", - "quests.gregtech_energy.tank.subtitle": "There's more kinds of batteries than just electric ones", - "quests.gregtech_energy.tank.desc.1": "Obviously, storing energy can also mean storing the fuel that makes it.\n\nFor this scenario, while Drums and Crates are decent early options, you should not overlook the &dSuper Tank&r and the &dSuper Chest&r.", - "quests.gregtech_energy.tank.desc.2": "These beasts are capable of storing tremendous amounts of fluid or items β€” perfect for automated energy setups, especially when you want to generate power far away from your main base without having to build an entire cable network.\n\nJust load them up with gas, fuel, steam or even plasma, and let them handle the rest. With proper planning, your outposts can be fully operational with no live connection to your central grid.\n\nEnergy doesn’t always come in wires β€” sometimes, it comes in barrels.", + "quests.gregtech_energy.tank.title": "燃料貯蔡", + "quests.gregtech_energy.tank.subtitle": "ι©šη•°ηš„γͺεŽη΄γƒ†γ‚―γƒ‹γƒƒγ‚―", + "quests.gregtech_energy.tank.desc.1": "η‡ƒζ–™γ‚’θ“„γˆγ‚‹γ¨γ„γ†γ“γ¨γ―γ€εŸθ³ͺηš„γ«ι›»εŠ›γ‚’θ“„γˆγ‚‹γ“γ¨γ«γ‚‚γͺγ‚ŠγΎγ™γ€‚\n\n序盀γͺγ‚‰γ€γƒ‰γƒ©γƒ γ‚„γƒγ‚§γ‚Ήγƒˆγ§εεˆ†γ§γ™γŒγ€γ‚ˆγ‚ŠεΌ·εŠ›γͺγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚’ζ±‚γ‚γ‚‹γγͺら&dスーパータンク&rと&dγ‚ΉγƒΌγƒ‘γƒΌγƒγ‚§γ‚Ήγƒˆ&rを使いましょう。", + "quests.gregtech_energy.tank.desc.2": "γ“γ‚Œγ‚‰γγ€ŒεŒ–γ‘η‰©η΄šγ€γ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ―、1γƒ–γƒ­γƒƒγ‚―γ§ι©šγγ»γ©ε€§ι‡γζΆ²δ½“γ‚„γ‚’γ‚€γƒ†γƒ γ‚’θ“„γˆγ‚‰γ‚ŒγΎγ™γ€‚η™Ίι›»γθ‡ͺε‹•εŒ–γ«γ‚‚γ‚‚γ‘γ‚γ‚“ε½Ήγ«η«‹γ£γ¦γγ‚ŒγΎγ™γ€‚ι›’γ‚ŒγŸε ΄ζ‰€γ§ι›»η·šγ‚’γ€γͺげるγγŒζ‰‹ι–“γ γ¨ζ„Ÿγ˜γŸγ‚‰γ“γ‚Œγ‚’δ½Ώγ„γΎγ—γ‚‡γ†γ€‚\n\nγ‚¬γ‚Ήγ‚„ζΆ²δ½“η‡ƒζ–™γ€θ’Έζ°—γ€γƒ—γƒ©γ‚Ίγƒžγͺどγη‡ƒζ–™γ‚’θ©°γ‚θΎΌγ‚“γ§γŠγ‘γ°γ€η™Ίι›»ζ©Ÿγ¨γ‚»γƒƒγƒˆγ§η°‘単に倧規樑γͺ発電をすることを可能にします。\n\nエネルγ‚ーというγγ―いろんγͺ姿をしているγγ§γ™γ€‚", "quests.gregtech_energy.tank.task": "Any Super Tank", - "quests.gregtech_energy.battery_buffer.title": "Battery Buffer", - "quests.gregtech_energy.battery_buffer.subtitle": "The basic battery buffer beckons batteries", - "quests.gregtech_energy.battery_buffer.desc.1": "Battery Buffers are your basic machines to store and manage energy β€” though technically, they don’t store energy on their own. They simply serve as a housing for your batteries.\n\n&c⚠ If you don’t want them to explode&r:\n- &4Never input higher-tier energy&r into a lower-tier Battery Buffer.\n- Batteries can only be charged if they are of &cequal or lower tier&r than the Battery Buffer.", - "quests.gregtech_energy.battery_buffer.desc.2": "A Battery Buffer can accept up to 2x its output amperage.\nSo for example, a 4x Battery Buffer can take in &a8A&r β€” but will only output &e4A&r max (1A per battery slot).\n\n&eReminder&r:\n- No batteries = no output.\n- The number of batteries determines the number of Amps it outputs. (That means a &68x Battery Buffer&r with only &e3 batteries&r will only output &e3A&r.)\n\nUse them wisely β€” they are the foundation of any stable energy network.", + "quests.gregtech_energy.battery_buffer.title": "蓄電器", + "quests.gregtech_energy.battery_buffer.subtitle": "バッテγƒͺγƒΌε…¨ε“‘ι›†εˆ", + "quests.gregtech_energy.battery_buffer.desc.1": "θ“„ι›»ε™¨γ―γ€ι›»εŠ›γεŸΊζœ¬ηš„γͺ貯蔡とη‘η†γ‚’θ‘Œγ†θ£…η½γ§γ™γ€‚εŽ³ε―†γ«γ―θ‡ͺεˆ†γ§ι›»εŠ›γ‚’θ“„γˆγ‚‹γ‚γ‘γ§γ―γͺく、バッテγƒͺγƒΌγ‚’ζ Όη΄γ—γ¦ε‹•δ½œγ•γ›γ‚‹γ€Œγƒγƒƒγƒ†γƒͺーケース」γγ‚ˆγ†γͺε­˜εœ¨γ§γ™γ€‚\n\n&cβš ηˆ†η™ΊδΊ‹ζ•…γ‚’ι˜²γγŸγ‚γ«εΏ…γšεˆγ‚‹γ“と!&r\n-&4δΈŠδ½ι›»εœ§&rγι›»εŠ›γ‚’δΈ‹δ½γθ“„電器にε…₯γ‚Œγ¦γ―γ„γ‘γΎγ›γ‚“γ€‚\n-蓄電器には&cεŒγ˜γΎγŸγ―γγ‚Œδ»₯δΈ‹γι›»εœ§&rγγƒγƒƒγƒ†γƒͺーだけをε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.gregtech_energy.battery_buffer.desc.2": "θ“„ι›»ε™¨γ―γ€ε‡ΊεŠ›γ§γγ‚‹ι›»ζ΅γ2倍までε…₯εŠ›γ‚’ε—γ‘ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nたとえば4γ‚Ήγƒ­γƒƒγƒˆθ“„ι›»ε™¨γͺら&a8A&rまでε…₯εŠ›γ§γγΎγ™γŒγ€ε‡ΊεŠ›γ―&eζœ€ε€§4A&r(γ‚Ήγƒ­γƒƒγƒˆ1぀に぀き1A)γΎγ§γ«ι™γ‚‰γ‚ŒγΎγ™γ€‚\n\n&eまとめ&r:\n-蓄電にはバッテγƒͺγƒΌγŒεΏ…θ¦γ§γ™γ€‚\n-ε‡ΊεŠ›γ‚’γƒ³γƒšγ‚’ζ•°γ―ε…₯γ‚ŒγŸγƒγƒƒγƒ†γƒͺγƒΌγζ•°γ§ζ±ΊγΎγ‚ŠγΎγ™γ€‚οΌˆγ€γΎγ‚Šγ€&68γ‚Ήγƒ­γƒƒγƒˆθ“„ι›»ε™¨&rに&e3個&rしかバッテγƒͺγƒΌγ‚’ε…₯γ‚Œγ¦γ„γͺγ‘γ‚Œγ°γ€ε‡ΊεŠ›γ―&e3A&rにγͺγ‚ŠγΎγ™γ€‚οΌ‰\n\n使い方を理解し、ε‰εšγ—γŸι›»εŠ›ηΆ²γ‚’ζ”―γˆγΎγ—γ‚‡γ†γ€‚", "quests.gregtech_energy.battery_buffer.task.1": "Any battery buffer", "quests.gregtech_energy.battery_buffer.task.2": "Another one", - "quests.gregtech_energy.pss.title": "The Power Substation", - "quests.gregtech_energy.pss.subtitle": "All your eggs in one basket", - "quests.gregtech_energy.pss.desc.1": "The &dPower Substation&r β€” also known as the &dPSS&r β€” is the &6ultimate custom battery multiblock&r. Once you're able to craft it in &1IV&r, it should easily serve as your base's central source of power, so it can be a good thing to focus towards.\n\nIt can store so much energy... you’d probably need multiple lifetimes to fill it.", - "quests.gregtech_energy.pss.desc.2": "&eHow it works&r:\n- Build the structure using &aPalladium Substation Casings&r.\n- Add at least &b1 Energy Hatch&r (input) and &b1 Dynamo Hatch&r (output).\n- It accepts &aany hatch&r β€” &8Amperage-based&r or &6Laser&r.\n- &cNo risk of explosion&r β€” transformers are &aintegrated&r.\n\n&eCapacitor Layers&r:\n- You can add up to &d17 layers&r of &9Capacitor Blocks&r on top of the structure.\n- Each layer must be &cfully filled&r β€” no gaps.\n- Mix &fempty&r and &6full&r capacitors however you like.\n\nSurround each layer with &bLaminated Glass&r.\n\nLet’s be honest: &cYou’ll never need 17 layers&r... but hey, it’s nice to dream big.\nIf you ever do build a full 17-layer PSS, &lplease send help&r β€” you’ve gone too far.", - "quests.gregtech_energy.batteries.title": "Super Batteries", - "quests.gregtech_energy.batteries.subtitle": "Sci-Fi power storage", - "quests.gregtech_energy.batteries.desc": "In &7LV&r and &bMV&r, you probably built your first batteries made of Sodium or Lithium.\n\nBut let’s be real β€” these are the weakest batteries GregTech has to offer.\n\nIn this quest, we’ll look at the powerful alternatives: the &acrystal batteries&r.\nThey are much more potent, store way more energy, and can help you push your factory to the next tier.\n\nAre they more expensive? Of course. But let’s be real...\nPower is Power. Who’s counting?", + "quests.gregtech_energy.pss.title": "ε€§εž‹θ“„ι›»ε™¨", + "quests.gregtech_energy.pss.subtitle": "γ¨γ“γ‚γŒγ©γ£γ“γ„...ε€’γ˜γ‚ƒγ‚γ‚ŠγΎγ›γ‚“οΌ", + "quests.gregtech_energy.pss.desc.1": "&dε€§εž‹θ“„ι›»ε™¨&rοΌˆι€šη§°οΌš&dPSS&r)は、&6θΆ…εΌ·εŠ›γͺ蓄電用γγƒžγƒ«γƒγƒ–ロック&rです。\n\nEVγ‹γ‚‰δ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚‹γγ§γ€γ‚‚γ—γ€ι›»εŠ›γ«δΈε‰γ‚’ζŠ±γˆγ¦γ„γŸγ‚‰γ™γγ«γ§γ‚‚δ½œγ‚ŠγΎγ—γ‚‡γ†γ€‚γ‚γͺたγδΈε‰γ‚’ζΆˆγ—ι£›γ°γ™γ»γ©γθŽ«ε€§γͺ蓄電量をθͺ‡γ‚ŠγΎγ™γ€‚\n\nζ‘ε€–γ‚Œγθ“„ι›»εΉι‡γ γ‘でγͺく、そγγ»γ‹γ«γ‚‚ι›»εŠ›γη‘η†γ‚’ιžεΈΈγ«ζ₯½γ«γ—γ¦γγ‚Œγ‚‹θ¦η΄ γ‚’ζŒγ£γ¦γ„γΎγ™γ€‚", + "quests.gregtech_energy.pss.desc.2": "&e扱い方&r:\n-まず&aγƒ‘γƒ©γ‚Έγ‚¦γƒ θ£½ε€§εž‹θ“„ι›»ε™¨η”¨ε€–θ£…&rγ§ζœ¬δ½“γ‚’η΅„γΏη«‹γ¦γΎγ—γ‚‡γ†γ€‚\n-ε…₯εŠ›η”¨γ«&bエネルγ‚ーハッチ&rγ‚’1γ€γ€ε‡ΊεŠ›η”¨γ«&bγƒ€γ‚€γƒŠγƒ’γƒγƒƒγƒ&rγ‚’1぀δ»₯上設η½γ—ます。\n-ε―ΎεΏœγƒγƒƒγƒγ―θ‡ͺ由で、&7γ‚’γƒ³γƒšγ‚’εž‹&rでも&6γƒ¬γƒΌγ‚ΆγƒΌεž‹&rでもOK。\n-&cηˆ†η™ΊγεΏƒι…γ―不要&rγ§γ™β€”β€”δ½Ώγ£γŸθ“„ι›»γƒ–γƒ­γƒƒγ‚―γ«γ‹γ‹γ‚γ‚‰γš&aどんγͺι›»εœ§γ§γ‚‚&r受けε…₯γ‚ŒγΎγ™γ€‚\n\n&e蓄電局に぀いて&r:\n-δΈŠιƒ¨γ«γ―ζœ€ε€§&d17ε±€&rまでγ&9蓄電ブロック&rγ‚’η©γΏι‡γ­γ‚‰γ‚ŒγΎγ™γ€‚\n-各局は&cιš™ι–“γͺく&rθ¨­η½γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n-&fη©Ί&rγγ‚‚γγ¨&6バッテγƒͺγƒΌγŒε…₯っている&rγ‚‚γγŒζ··γ–っていても構いません。\n\nそして蓄電局を&bεˆγ‚γ›γ‚¬γƒ©γ‚Ή&rで囲めばεŒζˆγ§γ™γ€‚\n\n正直言って、&c17局も積む必要γͺγ‚“γ¦γΎγšγ‚γ‚ŠγΎγ›γ‚“&r...γƒ­γƒžγƒ³γ‚’θΏ½γ„ζ±‚γ‚γ‚‹γͺらεˆ₯γ§γ™γŒγ€‚\nγ‚‚γ—ζœ¬ε½“γ«17局フルγPSSγ‚’δ½œγ£γŸγͺら、&lSNSでθ‡ͺ慒しましょう&r。", + "quests.gregtech_energy.batteries.title": "εΌ·εŠ›γͺバッテγƒͺγƒΌ", + "quests.gregtech_energy.batteries.subtitle": "IC2γγγε…ˆγΈ", + "quests.gregtech_energy.batteries.desc": "&7LV&rγ‚„&bMV&rγι ƒγ«γ€γƒŠγƒˆγƒͺウム電池やγƒͺγƒγ‚¦γƒ ι›»ζ± γ‚’εˆγ‚γ¦δ½œγ£γŸγ¨ζ€γ„γΎγ™γ€‚\n\nそγι ƒγ―、バッテγƒͺγƒΌγζ€§θƒ½γ«ζΊ€θΆ³γ§γγͺγ„γ“γ¨γ‚‚γ‚γ£γŸγ¨ζ€γ„γΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€γγγ‚ˆγ†γͺバッテγƒͺーとは比べ物にγͺらγͺγ„γ»γ©εΌ·εŠ›γͺγ€Œ&aγ‚―γƒͺスタルバッテγƒͺγƒΌ&r」系硱を紹介します。\nエネルγ‚γƒΌεΉι‡γ‚‚ε‡ΊεŠ›γ‚‚ζ΅ι•いで、きっとバッテγƒͺγƒΌγ§δΈζΊ€γ‚’ζ„Ÿγ˜γ‚‹γ“γ¨γ―γͺくγͺるでしょう。\n\nγ‚‚γ‘γ‚γ‚“γ‚³γ‚Ήγƒˆγ―γ‚„γ‚„ι«˜γ‚γ§γ™γ€‚γ§γ™γŒγ€γγ‚“γͺγε•ι‘Œγ˜γ‚ƒγ‚γ‚ŠγΎγ›γ‚“γ€‚\nι›»εŠ›γ―ζ­£ηΎ©γ€‚η΄°γ‹γ„γ“γ¨γ‚’ζ°—γ«γ™γ‚‹εΏ…θ¦γ―γͺいγγ§γ™", "quests.gregtech_energy.batteries.task": "Any crystal battery", - "quests.gregtech_energy.spending_energy.title": "Spending Energy", - "quests.gregtech_energy.spending_energy.subtitle": "Oh you will spend energy", - "quests.gregtech_energy.spending_energy.desc.1": "How to spend all this energy?\n\nUse your machines! Sounds simple, right?\nWell... not exactly. There are many small details that you should learn to help you on your quest to completing &3TerraFirmaGreg&r.\n\nBasic Machines:\n- These machines are simple.\n- They can request up to &a2A&r each.\n- If you input a higher tier of energy... &4\uD83D\uDCA5 they explode&r.\n\nGregTech Multiblocks:\nNow things get interesting. Multiblocks offer more flexibility and power β€” &eif&r you understand how they work.", - "quests.gregtech_energy.spending_energy.desc.2": "Standard Mechanics:\n- If a multiblock can accept two Energy Hatches (most of them), this allows you to use higher-tier recipes than the machine’s base tier.\n\nExample:\nIf you're using a Large Mixing Vessel and you install two IV Energy Hatches, it will be able to process &cLuV&r-tier Mixer recipes.\n\nThis is one of the key benefits of multiblocks over single-block machines β€” to upgrade them to the next tier, you only have to swap out their energy hatches instead of replacing the whole machine.", - "quests.gregtech_energy.spending_energy.desc.3": "Some multiblocks only accept one Energy Hatch, but that doesn't mean you're limited to 1A!\n\nYou can still use a 4A or 16A Energy Hatch. This will allow &bOverclocking&r of recipes but not the recipe tier.\n\nExample:\nThe Large Circuit Assembler only allows one Energy Hatch. If you install a 4A IV Energy Hatch, you will be able to overclock all IV and lower recipes.\n\nHowever, it cannot craft LuV-tier recipes because the machine doesn't support multiple hatches. That limitation is intentional, to prevent skipping the GregTech progression system.", - "quests.gregtech_energy.spending_energy.desc.4": "So remember: More amps on a single hatch means faster processing, but two hatches are required to unlock higher-tier recipes.", + "quests.gregtech_energy.spending_energy.title": "ι›»εŠ›ι‹η”¨γ«γ€γ„γ¦", + "quests.gregtech_energy.spending_energy.subtitle": "ι›»εŠ›γζΆˆθ²»", + "quests.gregtech_energy.spending_energy.desc.1": "ι›»εŠ›γ―γ‚γ‚‹γ‘γ‚Œγ©γ€δ½•γ«δ½Ώγˆγ°γ„γ„γ‚“γ γ‚γ†οΌŸ\n\nζ©Ÿζ’°γ‚’δ½Ώγ„γΎγ—γ‚‡γ†οΌγ¨γ―γ„γˆγ€εŸιš›γγ¨γ“γ‚γγ†ε˜η΄”γͺ話ではγͺいγγ§γ™...\n&3TerraFirmaGreg&rγ‚’ζ”»η•₯γ™γ‚‹γŸγ‚γ«γ€ηŸ₯γ£γ¦γŠγγΉγι›»εŠ›γεŸΊζœ¬ηŸ₯θ­˜γ‚’γŠζ•™γˆγ—γΎγ™γ€‚\n\nεŸΊζœ¬ηš„γͺ機撰:\n-ε„ζ©Ÿζ’°γ―ζœ€ε€§γ§&a2A&rまで要求できます\n-上位γι›»εœ§γ‚’桁すと...&4\uD83D\uDCA5ηˆ†η™Ίγ—γΎγ™&r。\n\nε€§εž‹ζ©Ÿζ’°:\nγ“γ“γ‹γ‚‰γŒζœ¬η•ͺγ§γ™γ€‚γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γζ§‹ι€ γ―γ€δ»•η΅„γΏγ‚’η†θ§£γ—γ¦γ€γ†γΎγζ‰±γ†γ“γ¨γŒι‡θ¦γ§γ™γ€‚", + "quests.gregtech_energy.spending_energy.desc.2": "ζ¨™ζΊ–ηš„γͺδ»•η΅„γΏοΌš\n-γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γŒ2぀γγ‚¨γƒγƒ«γ‚γƒΌγƒγƒƒγƒγ‚’η΅„γΏθΎΌγ‚γ‚‹ε ΄εˆ(ほとんどγζ©Ÿζ’°γŒγγ†γ§γ™)、そγζ©Ÿζ’°γεŸΊζœ¬ι›»εœ§γ‚ˆγ‚Šγ‚‚1぀上位γι›»εœ§γγƒ¬γ‚·γƒ”を使用できます。\n\nδΎ‹οΌš\nEBFγ‚’η΅„γΏη«‹γ¦γ‚‹ιš›γ«γ€LVエネルγ‚ーハッチを2γ€ε–γ‚Šδ»˜γ‘γ‚‹γ¨γ€&cMV&rγγƒ¬γ‚·γƒ”γ‚’ε‡¦η†γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nγ“γ‚Œγ―γ€ε€§εž‹ζ©Ÿζ’°γε€§γγͺεˆ©η‚Ήγ1γ€γ§γ™γ€‚γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ—γŸγ„ε ΄εˆγ―γ€ζ©Ÿζ’°ε…¨δ½“γ‚’δΊ€ζ›γ™γ‚‹γγ§γ―γͺく、エネルγ‚ーハッチを亀換するだけで欑γγƒ†γ‚£γ‚’γ«εΌ•γδΈŠγ’γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.gregtech_energy.spending_energy.desc.3": "一部γε€§εž‹ζ©Ÿζ’°γ―エネルγ‚ーハッチを1γ€γΎγ§γ—γ‹η΅„γΏθΎΌγ‚€γ“γ¨γŒγ§γγΎγ›γ‚“γ€‚γγε ΄εˆγ‚‚4Aγ‚„16Aγγ‚¨γƒγƒ«γ‚ーハッチを使用することで、レシピγ&bγ‚ͺーバークロック&rγ―ε―θƒ½γ§γ™γ€‚γŸγ γ—γ€γƒ¬γ‚·γƒ”γγƒ†γ‚£γ‚’θ‡ͺδ½“γ―ε€‰γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nδΎ‹οΌš\nε€§εž‹ε›žθ·―δ½œζˆζ©Ÿγ―1぀γγ‚¨γƒγƒ«γ‚γƒΌγƒγƒƒγƒγ—γ‹ε–γ‚Šδ»˜γ‘γ‚‰γ‚ŒγΎγ›γ‚“γ€‚γ—γ‹γ—γ€4AγIVエネルγ‚ーハッチを設η½γ™γ‚Œγ°γ€IVγŠγ‚ˆγ³γγ‚Œδ»₯δΈ‹γγƒ¬γ‚·γƒ”をすべてγ‚ͺγƒΌγƒγƒΌγ‚―γƒ­γƒƒγ‚―γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγŸγ γ—γ€θ€‡ζ•°γγƒγƒƒγƒγ‚’γ‚΅γƒγƒΌγƒˆγ—γ¦γ„γͺγ„γŸγ‚γ€LuVティをγγƒ¬γ‚·γƒ”γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ―できません。こγεˆΆι™γ―ζ„ε›³ηš„γͺγ‚‚γγ§γ€GregTechγι€²θ‘Œγ‚·γ‚Ήγƒ†γƒ γ‚’ι£›γ°γ™γ“γ¨γ‚’ι˜²γγŸγ‚γθ¨­θ¨ˆγ§γ™γ€‚", + "quests.gregtech_energy.spending_energy.desc.4": "要するに、1぀γγ‚¨γƒγƒ«γ‚γƒΌγƒγƒƒγƒγ«ε€šγγγ‚’γƒ³γƒšγ‚’γ‚’ζ΅γ›γ°ε‡¦η†γ―ι€Ÿγγͺγ‚ŠγΎγ™γŒγ€δΈŠδ½γƒ†γ‚£γ‚’γγƒ¬γ‚·γƒ”γ‚’δ½Ώγ„γŸγ„ε ΄εˆγ―エネルγ‚ーハッチを2γ€ε–γ‚Šδ»˜γ‘γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.gregtech_energy.spending_energy.task": "I understand", - "quests.gregtech_energy.overclock.title": "Overclock", - "quests.gregtech_energy.overclock.subtitle": "Basic upgrade mechanic", - "quests.gregtech_energy.overclock.desc.1": "Have you heard about Overclocking, but don't really understand what it is? Let's take some time to explain it.\n\nWe should start with the basics:\n&dLV&r represents a maximum of 32 EU/t β€” sometimes less, but never more.\n&dMV&r goes up to 128 EU/t.\n&dHV&r reaches 512 EU/t.\nBasically, every tier is a 4x increase in power usage.", - "quests.gregtech_energy.overclock.desc.2": "What happens when you run a lower-tier recipe in a higher-tier machine? That's what we call &eOverclocking&r!\n\nAn &dMV&r recipe (33–128 EU/t) run in an &dHV&r machine will both: 1) Use 4x more energy, and 2) Be 2x faster.\n\nThe same MV recipe in an &dEV&r machine? 8x the energy cost, but only 4x faster.\n\nAs you can see, it's more power efficient to use multiple machines rather than overclocking a single one.\nBut let's be real: in most setups, you’ll prefer overclocking to building a ton of the same machines.\n\nStill, it's good to know this early on, when energy is tight.", - "quests.gregtech_energy.overclock.desc.3": "There’s a special kind of overclocking exclusive to just a few multiblocks: &ePerfect Overclocking&r.\nHere, instead of 4x energy for 2x speed, you get &a4x energy&r for &a4x speed&r! This makes it just as efficient as running multiple machines.\n\nCurrently in TerraFirmaGreg, only the following multiblocks support this:\n- Electric Blast Furnace\n- Alloy Blast Smelter\n- Rotary Heat Furnace\n- Large Chemical Reactor\n- Electric Greenhouse", + "quests.gregtech_energy.overclock.title": "γ‚ͺーバークロック", + "quests.gregtech_energy.overclock.subtitle": "ι›»εœ§γ¨ε‡¦η†ζ™‚ι–“γι–’δΏ‚", + "quests.gregtech_energy.overclock.desc.1": "γ€Œγ‚ͺγƒΌγƒγƒΌγ‚―γƒ­γƒƒγ‚―γ€γ£γ¦γ‚ˆγθžγγ‘γ©γ€εŸιš›γ©γ†γ„う意味γͺγγ‹εˆ†γ‹γ‚‰γͺγ„γ§γ™γ‹οΌŸ γγ‚Œγͺγ‚‰γ€γ“γ“γ§γ—γ£γ‹γ‚Šε‹‰εΌ·γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\n基瀎ηŸ₯識:\n&dLV&rγ―ζœ€ε€§γ§32EU/tγ§γ™γ€‚ηŠΆζ³γ«γ‚ˆγ£γ¦γ―γγ‚Œδ»₯下にγͺγ‚‹γ“γ¨γ‚‚γ‚γ‚ŠγΎγ™γŒγ€θΆ…γˆγ‚‹γ“γ¨γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\n&dMV&rは128EU/t、\n&dHV&rは512EU/tγΎγ§ε‡ΊεŠ›γ§γγΎγ™γ€‚\nγ€γΎγ‚Šγ€ι›»εœ§γγƒ†γ‚£γ‚’が1ζ΅ιšŽδΈŠγŒγ‚‹γ”とに必要γͺι›»εŠ›γ―γŠγ‚ˆγ4倍にγͺる、という仕硄みです。", + "quests.gregtech_energy.overclock.desc.2": "δΈ‹δ½ι›»εœ§γγƒ¬γ‚·γƒ”γ‚’δΈŠδ½ι›»εœ§γζ©Ÿζ’°γ§ε‹•かすとどうγͺγ‚‹γ§γ—γ‚‡γ†οΌŸ\nγγ‚ŒγŒγ€γ„γ‚γ‚†γ‚‹&eγ‚ͺーバークロック&rです!\n\nδΎ‹γˆγ°γ€&dMV&rレシピ(33γ€œ128EU/t)γ‚’&dHV&rζ©Ÿζ’°γ§ε‡¦η†γ™γ‚‹γ¨γ€ζΆˆθ²»ι›»εŠ›γ―4ε€γ€ι€ŸεΊ¦γ―2倍にγͺγ‚ŠγΎγ™γ€‚\n\n同じMVレシピを&dEV&rζ©Ÿζ’°γ§ε‹•γ‹γ™γ¨γ€ζΆˆθ²»ι›»εŠ›γ―16倍にもγͺγ‚‹γγ«γ€ι€ŸεΊ¦γ―4ε€γ—γ‹δΈŠγŒγ‚ŠγΎγ›γ‚“γ€‚\n\nγ€γΎγ‚Šγ€ι›»εŠ›εŠΉηŽ‡γι’では、1台をγ‚ͺγƒΌγƒγƒΌγ‚―γƒ­γƒƒγ‚―γ™γ‚‹γ‚ˆγ‚Šγ‚‚θ€‡ζ•°γζ©Ÿζ’°γ‚’ε‹•γ‹γ—γŸζ–ΉγŒεΎ—γͺγγ§γ™γ€‚\nγ¨γ―γ„γˆγ€ηΎεŸηš„γ«γ―εŒγ˜ζ©Ÿζ’°γ‚’ε€§ι‡γ«δΈ¦γΉγ‚‹γ‚ˆγ‚Šγ€γ‚ͺγƒΌγƒγƒΌγ‚―γƒ­γƒƒγ‚―γ—γ¦γ‚Ήγƒ”γƒΌγƒ‰γ‚’γƒƒγƒ—γ™γ‚‹ζ–ΉγŒδΎΏεˆ©γͺγ“γ¨γŒε€šγ„γ¨ζ€γ„γΎγ™γ€‚\n\nエネルγ‚γƒΌγŒθ²΄ι‡γͺ序盀γγ†γ‘は、こγδ»•η΅„γΏγ‚’η†θ§£γ—γ¦γŠγ„γŸζ–ΉγŒγ‚ˆγ„γ§γ—γ‚‡γ†γ€‚", + "quests.gregtech_energy.overclock.desc.3": " η‰Ήεšγε€§εž‹ζ©Ÿζ’°γ γ‘γŒζŒγ€η‰Ήεˆ₯γͺζ©Ÿθƒ½γ€γγ‚ŒγŒ&eγƒ‘γƒΌγƒ•γ‚§γ‚―γƒˆγ‚ͺーバークロック&r(ι€šη§°οΌšPOC)です。\nι€šεΈΈγγ‚ͺγƒΌγƒγƒΌγ‚―γƒ­γƒƒγ‚―γ§γ―γ€Œ4倍γι›»εŠ›γ§2倍γι€ŸεΊ¦γ€γ§γ™γŒγ€POCγ§γ―γ€Œ&a4倍γι›»εŠ›&rで&a4倍γι€ŸεΊ¦&r」にγͺγ‚ŠγΎγ™γ€‚γ€γΎγ‚Šγ€θ€‡ζ•°ε°γζ©Ÿζ’°γ‚’動かすγγ¨εŒγ˜εŠΉηŽ‡γ§ε‹•δ½œγ™γ‚‹γ¨γ„γ†γ‚γ‘γ§γ™γ€‚\n\n現時点でTerraFirmaGreg内でPOCγ«ε―ΎεΏœγ—γ¦γ„γ‚‹ε€§εž‹ζ©Ÿζ’°γ―δ»₯δΈ‹γι€šγ‚Šγ§γ™οΌš\n-ε·₯ζ₯­η”¨ι›»ζ°—炉(EBF)...ι«˜ζΈ©η¨Όεƒζ™‚γγΏ\n-εˆι‡‘ι«˜η‚‰(ABS)...ι«˜ζΈ©η¨Όεƒζ™‚γγΏ\n-ε›žθ»’εΌη‚‰εΊŠη‚‰(RHF)...ι«˜ζΈ©η¨Όεƒζ™‚γγΏ\n-ε€§εž‹εŒ–ε­¦εεΏœη‚‰(LCR)\n-ι›»ζ°—ζΈ©ε€", "quests.gregtech_energy.overclock.task": "So the red ones go faster, got it", - "quests.gregtech_energy.blast_oc.title": "The Blast Overclocking", - "quests.gregtech_energy.blast_oc.subtitle": "You don't need to understand this one", - "quests.gregtech_energy.blast_oc.desc.1": "If you haven't learnt about Perfect Overclocking yet, you should read the quest right above this one first.\n\nThese three multiblocks share a special ability: they can &ePerfect Overclock&r recipes depending on the &ctemperature of the machine&r. You can check the current temperature by clicking on the controller.\n\nThere are two ways to increase the temperature:\n1) Use higher-tier energy inputs\n2) Upgrade the coils", - "quests.gregtech_energy.blast_oc.desc.2": "To see the temperature of a coil, simply &3hold Shift&r while hovering over it.\n\nOnce you know your machine's temperature, you’ll need the temperature of the recipe. The easiest way to find it is to use EMI.\n\nWith both values, you can do a quick calculation to see if Perfect Overclocking applies:\n&bYour machine must be at least 1800K hotter per overclock tier than the recipe requires.&r", - "quests.gregtech_energy.blast_oc.desc.3": "Example:\n- Stainless Steel recipe requires &c1700K&r and is &aHV&r tier.\n- Your EBF is at &bLuV&r and has a temperature of &c5900K&r.\n- HV to LuV is &a3 overclock tiers&r.\n- 1800 x 3 = &c5400K&r β†’ Add the recipe's base: 5400 + 1700 = &c7100K&r needed for full Perfect Overclock.\n- Since your machine is only at &c5900K&r, you will Perfect Overclock from HV to EV and EV to IV, but only a normal overclock from IV to LuV.\n\nSo the recipe will take 1.7 seconds instead of 0.85 seconds if it were fully overclocked.\n\nFeeling overwhelmed? Just remember this: better coils = faster and cheaper recipes.", + "quests.gregtech_energy.blast_oc.title": "ζ©Ÿζ’°ι«˜η‚‰γδ»•硄みに぀いて", + "quests.gregtech_energy.blast_oc.subtitle": "εŒε…¨γ«η†θ§£γ—ろとは言いません", + "quests.gregtech_energy.blast_oc.desc.1": "まだPOCに぀いて学んでいγͺγ„ε ΄εˆγ―γ€1぀上γγ‚―γ‚¨γ‚Ήγƒˆγ‚’ε…ˆγ«θͺ­γ‚“でください。\n\nγ“γ‚Œγ‚‰3぀γε€§εž‹ζ©Ÿζ’°γ«γ―ε…±ι€šγη‰Ήεˆ₯γͺδ»•ζ§˜γŒγ‚γ‚ŠγΎγ™γ€‚γγ‚Œγ―γ€&c機撰γζΈ©εΊ¦&rに応じて&ePOC&rにγͺるというもγγ§γ™γ€‚ηΎεœ¨γζΈ©εΊ¦γ―γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌγ‚’γ‚―γƒͺックすることで璺θͺγ§γγΎγ™γ€‚\n\nζΈ©εΊ¦γ‚’δΈŠγ’γ‚‹ζ–Ήζ³•γ―2γ€γ‚γ‚ŠγΎγ™:\n1)ι«˜ι›»εœ§γι›»εŠ›γ‚’δ½Ώη”¨γ™γ‚‹\n2)コむルををップグレードする", + "quests.gregtech_energy.blast_oc.desc.2": "コむルγζ€§θƒ½γ―γ€γ‚«γƒΌγ‚½γƒ«γ‚’εˆγ‚γ›γ¦&3Shiftγ‚­γƒΌ&rγ‚’ζŠΌγ™γ¨η’Ίθͺγ§γγΎγ™γ€‚\n\n機撰γζΈ©εΊ¦γŒεˆ†γ‹γ£γŸγ‚‰γ€ζ¬‘はレシピγθ¦ζ±‚ζΈ©εΊ¦γ‚’η’Ίθͺγ—γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ―EMIから璺θͺγ§γγΎγ™γ€‚\n\nδΈ‘ζ–Ήγε€€γŒεˆ†γ‹γ‚Œγ°γ€POCγŒι©η”¨γ•γ‚Œγ‚‹γ‹γ©γ†γ‹γ‚’η°‘ε˜γ«θ¨ˆη—できます:\n&b機撰γζΈ©εΊ¦γ―γ€γƒ¬γ‚·γƒ”γŒθ¦ζ±‚γ™γ‚‹ζΈ©εΊ¦γ‚ˆγ‚Šγ‚‚γ‚ͺーバークロックティをごとに少γͺくとも1800K高くγͺγ‘γ‚Œγ°γͺγ‚ŠγΎγ›γ‚“γ€‚", + "quests.gregtech_energy.blast_oc.desc.3": "δΎ‹:\n-ステンレスγθ¦ζ±‚ζΈ©εΊ¦&c1700K&rで、&aHV&rティをです。\n-EBFは&bLuV&rティをで、温度は&c5900K&rだとします。\n-HVからLuVまでは&a3ζ΅ιšŽγγ‚ͺーバークロック&rです。\n- 1800x3=&c5400K&rβ†’γƒ¬γ‚·γƒ”εŸΊζΊ–γζΈ©εΊ¦γ‚’εŠ γˆγ‚‹γ¨...5400+1700=&c7100K&rがPOCに必要γͺ温度です。\n-γ—γ‹γ—γ€ζ©Ÿζ’°γζΈ©εΊ¦γ―&c5900K&rしかγͺいγγ§γ€HVβ†’EVγŠγ‚ˆγ³EVβ†’IVγγ¨γγ―POCにγͺγ‚ŠγΎγ™γŒγ€IVβ†’LuVγ―ι€šεΈΈγγ‚ͺーバークロックにγͺγ‚ŠγΎγ™γ€‚\n\nそγη΅ζžœγ€γƒ¬γ‚·γƒ”γε‡¦η†ζ™‚間は、εŒε…¨γ«POCγε ΄εˆγ―0.85η§’γ§γ™γŒγ€δ»Šε›žγδΊ‹δΎ‹γ§γ―1.7η§’γ‹γ‹γ‚ŠγΎγ™γ€‚\n\nθ¦šγˆγ«γγ„γ§γ™γ‹οΌŸγ¨γ«γ‹γγ“γ‚Œγ γ‘θ¦šγˆγ¦γŠγ‘γ°OKγ§γ™οΌšγ‚³γ‚€γƒ«γ‚’γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ™γ‚Œγ°γ€γƒ¬γ‚·γƒ”γ―γ‚ˆγ‚Šι€Ÿγγ€γ‚ˆγ‚Šηœγ‚¨γƒγ§δ½œγ‚ŒγΎγ™γ€‚", "quests.gregtech_energy.blast_oc.task": "Better coils more gooder, got it", - "quests.gregtech_energy.subtick.title": "Subtick", - "quests.gregtech_energy.subtick.subtitle": "Parallel?", - "quests.gregtech_energy.subtick.desc.1": "Another hidden mechanic in GregTech Multiblocks: the &dSubtick&r.\n\nWhat is it? Subtick activates when a recipe becomes so fast it takes less than one tick to process. Normally, machines can’t go faster than one recipe per tick β€” but with Subtick, they can!\n\nHow does it work? Once a recipe hits 1 tick duration, upgrading the Energy Hatch further won’t make it faster.\nBut thanks to Subtick, instead of wasting power, the machine will &aparallel the recipe internally&r.", - "quests.gregtech_energy.subtick.desc.2": "For example: If your Large Chemical Reactor (LCR) runs a LuV recipe at 1 tick, then at ZPM, it will run &e2 recipes per tick&r. Even faster hatches mean more internal parallel.\n\n&dNote&r: As of now, all the Large Machines can subtick in a limited way, but &aonly the LCR&r supports both Subtick and Perfect Overclocking. That’s also why there's no IV multiblock with parallel hatches for the LCR: it’s already doing it... but better.", - "quests.gregtech_energy.parallel_hatch.title": "Parallel Hatch", - "quests.gregtech_energy.parallel_hatch.subtitle": "Parallel again?", - "quests.gregtech_energy.parallel_hatch.desc.1": "The &dParallel Hatch&r is the main draw of the Large Multiblocks.\n\nWhat does it do?\nWhere allowed (mostly on the Multiblocks crafted from the Alloy Blast Smelter), it lets you run &amultiple recipes at the same time&r.\n\nIt does this by consuming more energy per tick, but massively increasing throughput. Perfect if you’re mass-producing alloys, circuits, or plates.", - "quests.gregtech_energy.parallel_hatch.desc.2": "Just place a Parallel Hatch on the Multiblock and make sure it’s fed with enough energy and input materials. Most multiblocks that allow it will show so in EMI or in the questbook.\n\n&dNote&r: The Large Chemical Reactor does not use Parallel Hatches β€” it already comes with something better called &bSubtick&r β€” read the nearby quest to find out more.", + "quests.gregtech_energy.subtick.title": "ァブティック", + "quests.gregtech_energy.subtick.subtitle": "δΈ¦εˆ—ε‡¦η†οΌŸ", + "quests.gregtech_energy.subtick.desc.1": "ε€§εž‹ζ©Ÿζ’°γ«γ―γ‚‚γ†γ²γ¨γ€ιš γ‚ŒγŸδ»•η΅„γΏγŒγ‚γ‚ŠγΎγ™γ€‚γγ‚Œγ―&dァブティック(Subtick)&rです。\n\nァブティックは、レシピγε‡¦η†ι€ŸεΊ¦γŒζ₯΅η«―γ«ι€Ÿγγͺγ‚Šγ€γ“γ‚Œδ»₯上γ‚ͺーバークロックできγͺくγͺγ£γŸζ™‚γ«η™Ίε‹•γ—γΎγ™γ€‚ι€šεΈΈγ€ζ©Ÿζ’°γ―1ティックに1レシピδ»₯δΈŠε‡¦η†γ§γγΎγ›γ‚“γŒγ€γ‚΅γƒ–γƒ†γ‚£γƒƒγ‚―γ‚’δ½Ώγˆγ°ε―θƒ½γ«γͺγ‚ŠγΎγ™οΌ\n\n本ζ₯、レシピγε‡¦η†ζ™‚ι–“γŒ1γƒ†γ‚£γƒƒγ‚―γ«ι”γ™γ‚‹γ¨γ€γ•γ‚‰γ«δΈŠδ½γγ‚¨γƒγƒ«γ‚ーハッチでγ‚ͺγƒΌγƒγƒΌγ‚―γƒ­γƒƒγ‚―γ—γ¦γ‚‚γγ‚Œδ»₯δΈŠζ—©γε‡¦η†γ™γ‚‹γ“γ¨γŒγ§γγΎγ›γ‚“γ€‚γγε―Ύη­–γ¨γ—γ¦γ€γ‚΅γƒ–γƒ†γ‚£γƒƒγ‚―γŒη™Ίε‹•γ—γƒ¬γ‚·γƒ”γ‚’&aδΈ¦εˆ—ε‡¦η†&rγ™γ‚‹γ“γ¨γ§γ€ι©εˆ‡γ«ε‡¦η†ι€ŸεΊ¦γ‚’δΈŠζ˜‡γ•γ›γΎγ™γ€‚", + "quests.gregtech_energy.subtick.desc.2": "δΎ‹γˆγ°γ€ε€§εž‹εŒ–ε­¦εεΏœη‚‰(LCR)がLuVγγƒ¬γ‚·γƒ”γ‚’1γƒ†γ‚£γƒƒγ‚―γ§ε‡¦η†γ™γ‚‹ε ΄εˆγ€ZPMエネルγ‚ーハッチを使うと&e1γƒ†γ‚£γƒƒγ‚―γ‚γŸγ‚Š2レシピ&rγ‚’εŒζ™‚γ«ε‡¦η†γ—γΎγ™γ€‚γ•γ‚‰γ«ι«˜ι›»εœ§γγƒγƒƒγƒγ‚’δ½Ώγˆγ°γ€ε†…ιƒ¨γ§γδΈ¦εˆ—ε‡¦η†γ―γ•γ‚‰γ«ε’—γˆγΎγ™γ€‚\n\n&d補袳&r:ηΎηŠΆγ§γ―γ™γΉγ¦γε€§εž‹ζ©Ÿζ’°γ―γ‚΅γƒ–γƒ†γ‚£γƒƒγ‚―γ«ε―ΎεΏœγ—γ¦γ„γΎγ™γŒγ€γγδΈ­γ§γ‚‚&aLCRだけ&rはァブティックとPOCγδΈ‘ζ–Ήγζ©Ÿθƒ½γ‚’ζŒγ‘ます。そγγŸγ‚γ€LCRにはIVティをγδΈ¦εˆ—γƒγƒƒγƒγŒε­˜εœ¨γ—γΎγ›γ‚“γ€‚γ™γ§γ«ε†…ιƒ¨γ§εŠΉηŽ‡γ‚ˆγδΈ¦εˆ—ε‡¦η†γ‚’θ‘Œγ£γ¦γ„γ‚‹γ‹γ‚‰γ§γ™γ€‚", + "quests.gregtech_energy.parallel_hatch.title": "δΈ¦εˆ—εˆΆεΎ‘γƒ¦γƒ‹γƒƒγƒˆ", + "quests.gregtech_energy.parallel_hatch.subtitle": "γΎγŸδΈ¦εˆ—ε‡¦η†οΌŸ", + "quests.gregtech_energy.parallel_hatch.desc.1": "&dδΈ¦εˆ—εˆΆεΎ‘γƒ¦γƒ‹γƒƒγƒˆ&rγ―ε€§εž‹ζ©Ÿζ’°γζœ€ε€§γι­…εŠ›γ§γ™γ€‚\n\nη‰Ήεšγε€§εž‹ζ©Ÿζ’°(δΈ»γ«εˆι‡‘ι«˜η‚‰δ»₯ι™γ«θ§£ζ”Ύγ•γ‚Œγ‚‹γ‚‚γ)では、&a耇数γγƒ¬γ‚·γƒ”γ‚’δΈ¦εˆ—γ§&rε‡¦η†γ™γ‚‹γ“γ¨γŒε―θƒ½γ§γ™γ€‚\n\nそγεˆ†γ€1γƒ†γ‚£γƒƒγ‚―γ‚γŸγ‚ŠγζΆˆθ²»ι›»εŠ›γ―ε’—γˆγΎγ™γŒγ€η”Ÿη”£ι€ŸεΊ¦γ―ε€§εΉ…γ«ε‘δΈŠγ—γΎγ™γ€‚εˆι‡‘γ‚„ε›žθ·―γ€γƒ—γƒ¬γƒΌγƒˆγͺγ©ε€§ι‡η”Ÿη”£γ—γŸγ„ε ΄εˆγ«η†ζƒ³ηš„γͺζ©Ÿθƒ½γ§γ™γ€‚", + "quests.gregtech_energy.parallel_hatch.desc.2": "ε€§εž‹ζ©Ÿζ’°γ«δΈ¦εˆ—εˆΆεΎ‘γƒ¦γƒ‹γƒƒγƒˆγ‚’ε–γ‚Šδ»˜γ‘γ¦γ€εεˆ†γͺι›»εŠ›γ¨η΄ ζγŒζ¬ε…₯γ•γ‚Œγ¦γ„γ‚‹γ“γ¨γ‚’η’Ίθͺγ—γΎγ—γ‚‡γ†γ€‚ε―ΎεΏœγ—γ¦γ„γ‚‹γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ§γ‚γ‚Œγ°γ€EMIγ‚„γ‚―γ‚¨γ‚Ήγƒˆγƒ–γƒƒγ‚―γ«γγζƒ…ε ±γŒθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚\n\n&d補袳&r:ε€§εž‹εŒ–ε­¦εεΏœη‚‰γ§γ―γƒ‘γƒ©γƒ¬γƒ«γƒγƒƒγƒγ―δ½ΏγˆγΎγ›γ‚“γ€‚δ»£γ‚γ‚Šγ«γ€&bァブティック&rγ¨γ„γ†γ‚ˆγ‚Šι«˜ζ€§θƒ½γͺδ»•η΅„γΏγŒη΅„γΏθΎΌγΎγ‚Œγ¦γ„γΎγ™γ€‚θ©³γ—γγ―ηœŸδΈŠγγ‚―γ‚¨γ‚Ήγƒˆγ‚’ε‚η…§γ—γ¦γγ γ•γ„γ€‚", "quests.gregtech_energy.parallel_hatch.task": "Any Parallel Hatch", - "quests.gregtech_energy.rotor.title": "Turbine Rotors", - "quests.gregtech_energy.rotor.subtitle": "So many choices!", - "quests.gregtech_energy.rotor.desc.1": "Rotor Holders naturally require a Rotor to use, but there's a lot of options and they all have different stats, so what do they all mean?\n\nHigher &9Efficiency&r will increase the time each mB of fuel is used for, effectively reducing fuel usage. Meanwhile, &9Power&r will increase how much EU the turbine will generate. Lastly, &9Durability&r should be obvious.", - "quests.gregtech_energy.rotor.desc.2": "Ideally, you'll want to maximize all three, but the choice will depend on how much fuel you're producing, how many turbines you have, and how often you want to replace them, so there's no definitive correct answer. &8(Besides neutronium, of course...)&r\n\nThat being said, if you're completely lost, we recommend Vanadium Steel in &6HV&r, Ultimet in &5EV&r, and HSS-S in &9IV&r.\n\nUnfortunately, you can't automatically pipe new rotors into rotor holders as they need the block in front of them to be completely empty, but a &aMechanical Arm&r will work!", + "quests.gregtech_energy.rotor.title": "タービンローター", + "quests.gregtech_energy.rotor.subtitle": "豊富γͺε“ζƒγˆ", + "quests.gregtech_energy.rotor.desc.1": "γƒ­γƒΌγ‚ΏγƒΌγƒ›γƒ«γƒ€γƒΌγ‚’δ½Ώγ†γ«γ―γƒ­γƒΌγ‚ΏγƒΌγŒεΏ…θ¦γ§γ™γŒγ€η¨ι‘žγŒε€šγγ€γγ‚Œγžγ‚Œζ€§θƒ½γŒη•°γͺγ‚ŠγΎγ™γ€‚γ§γ―γ€ε…·δ½“ηš„γ«δ½•γŒι•γ†γγ§γ—γ‚‡γ†γ‹οΌŸ\n\n&9γ‚ΏγƒΌγƒ“γƒ³εŠΉηŽ‡&rγŒι«˜γ„γ»γ©γ€εŒγ˜η‡ƒζ–™ι‡γ§γ‚ˆγ‚Šι•·γη™Ίι›»ζ©Ÿγ‚’η¨Όεƒγ§γγ€η‡ƒθ²»γŒθ‰―γγͺγ‚ŠγΎγ™γ€‚&9タービンパワー&rγŒι«˜γ„γ»γ©γ€η™Ίι›»γ§γγ‚‹EUγι‡γŒε’—γˆγΎγ™γ€‚γγ—γ¦&9耐久倀&rは、そγγƒ­γƒΌγ‚ΏγƒΌγŒγ©γ‚Œγγ‚‰γ„ι•·ζŒγ‘するかを瀺しています。", + "quests.gregtech_energy.rotor.desc.2": "γ‚‚γ‘γ‚γ‚“γ€εŠΉηŽ‡γƒ»γƒ‘γƒ―γƒΌγƒ»θ€δΉ…ε€€γ3γ€γ‚’γ™γΉγ¦γŒι«˜γ„ζ–ΉγŒγ„γ„γ§γ™γŒγ€ηΎεŸηš„γ«γ―γ€Œη‡ƒζ–™η”Ÿη”£ι‡γ€γ€Œγ‚ΏγƒΌγƒ“γƒ³γζ•°γ€γ€Œγƒ­γƒΌγ‚ΏγƒΌδΊ€ζ›γζ‰‹ι–“」γͺγ©γ«γ‚ˆγ£γ¦ζœ€ι©θ§£γ―ε€‰γ‚γ‚ŠγΎγ™γ€‚γ€γΎγ‚Šγ€γ“γ‚Œγ¨γ„γ£γŸζ­£θ§£γ―γͺいγγ§γ™γ€‚&7(まあ、ニγƒ₯γƒΌγƒˆγƒ­γƒ‹γ‚¦γƒ γ‚’ι™€γ‘γ°γ§γ™γŒ...)&r\n\nθΏ·γ£γŸε ΄εˆγ―γ€&6HV&rεΈ―γ§γ―γƒγƒŠγ‚Έγ‚¦γƒ ι‹Όγ€&5EV&rγ§γ―γ‚’γƒ«γƒ†γ‚£γƒ‘γƒƒγƒˆγ€&9IV&rではHSS-Sを使うγγŒγŠγ™γ™γ‚γ§γ™γ€‚\n\n\n\nγͺγŠγ€γƒ­γƒΌγ‚ΏγƒΌγƒ›γƒ«γƒ€γƒΌγ―ζ­£ι’γŒε‘žγŒγ£γ¦γ„γ‚‹γ¨ε‹•δ½œγ—γͺγ„γŸγ‚γ€ζ–°γ—γ„γƒ­γƒΌγ‚ΏγƒΌγ‚’γƒ‘γ‚€γƒ—γͺどでθ‡ͺε‹•θ£œε……γ™γ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“γŒγ€&aパカニカルをーム&rγ§γ‚γ‚Œγ°ε•ι‘Œγͺく亀換できます!", "quests.gregtech_energy.rotor.task": "Any Turbine Rotor", - "quests.gregtech_energy.fission_reactor.title": "Fission Reactor MK I", - "quests.gregtech_energy.fission_reactor.subtitle": "Strap yourself in, this is complicated", - "quests.gregtech_energy.fission_reactor.desc.1": "The &dFission Reactor&r is certainly an uncommon sight in GregTech - both in theme, and how it works. But fear not, we are here to guide you with this multi-purpose big-brain multiblock!\n\nWe'll spare you the physics for now, &efellow engineer&r. The most important thing you should know is that the reactor is like a big thermal &dbattery-generator&r. You input proper fuel, and get &cheat&r (just like &6EU/t&r) that gets stored in the reactor as &crising temperature&r (stored &6EU&r).\n\nYou can then transfer this heat to &9coolant fluids&r for running turbines, or performing EBF-style crafting recipes. Sometimes you may even have &ctoo much&r of it. And oh, you also get new elements to make new fuels and circuits and stuff. Maybe explore the solar system a bit more? Boring stuff.", - "quests.gregtech_energy.fission_reactor.desc.2": "To start off, get your hands on some &dThorium&r. Remember to wear all the relevant PPE - &eDeatek Intergalactic&r is not responsible for any bodily harm resulting from improper handling of fissile materials. We really shouldn't have to remind you at this point anymore. Check the hazards quest if you need a refresher.\n\nNext, craft some empty &dFuel Rods&r and fill them with the &dNuclear Fuel Processing Plant&r. The rods are reusable, so you don't have to make too many. In fact, you might want to make just a single one for now.\n\nYou'll of course need a completed reactor, too. Check the EMI preview. Note how there is a central column of Fuel Holders, and then some optional columns for Components and Material Holders - more of these later.\n\nWait. Why just a &osingle&r rod? Oh, are &ewe&r glad you asked. Let's delve deep into the reactor mechanics in the next page.", - "quests.gregtech_energy.fission_reactor.desc.3": "The more fuel rods you have installed in the reactor, the &chotter&r it gets. And the hotter it is, the more heat it is able to transfer out to the coolant fluid and processable items. But physics has its limits, and the reactor can only ever get &cso hot&r, so don't install too many fuel cells.\n\nBut fear not! Unlike how the &0big-oil&r propaganda machine insists, nuclear energy is &aperfectly safe&r. Should the heat level of the reactor border dangerous territory, the reactor enters an &9automatic cooldown sequence&r, and won't start again until all heat has been &asafely dissipated&r. It's quite slow, though.\n\nThere has to be a way to make it hotter and faster? Once again, good thing you asked! &eOur brilliant engineers&r have a solution for you!", - "quests.gregtech_energy.fission_reactor.desc.4": "In addition to the 5 &dFuel Holders&r, you can install &oup to&r 20 &dComponents&r. The reactors from some other manufacturers require very exact positioning, but our reactor is smarter. The &6stats&r of all installed ones will simply be &6summed up&r, and that's it!\n\nCurrently, the reactor is able to utilize them in three&8*&r different ways:\n&e1)&r Max temperature &7(insulator)&r\n&e2)&r Efficiency &7(fuel lasts longer)&r\n&e3)&r Throttle &7(slows down the reactions)&r\n\n&8*)&r It's possible your local galaxy doesn't have the necessary materials for all of them. We estimate to find materials only for the first category.\n\nBut be wary. Rising the &ctemperature&r comes with a &cdownside&r.", - "quests.gregtech_energy.fission_reactor.desc.5": "While a &chotter&r reactor makes coolants and processing &cfaster&r, it is also more demaning for the fuel rods. Each fuel rod has limited durability, and this scales linearly with the temperature.\n\nAs you need more fuel rods for the higher heat, this in effect makes the damage scale &nquadratically&r. If you want to heat coolants the most efficiently, you'll use low temperature. But if you want faster fissile conversion, use as high a heat as the insulation allows.", - "quests.gregtech_energy.fission_reactor.desc.6": "You are finally ready to take a look at the various recipes involving the reactor; check where the &dcontroller&r is used, and you'll find three &eEMI&r tabs:\n\n&e1)&r Fission Reactor &7(fuels and compatible coolants)&r\n&e2)&r Fission Heat Processing &7(think: EBF)&r\n&e3)&r Fission\nProducts &7(when the fuel runs out)&r\n&e4)&r The multiblock preview\n\nVarious &afuels&r are only compatible with certain &9coolant fluids&r, so pay attention to this. And once a fuel rod is completely used up, statistical certainty can safely state it having &btra&dns&rf&dor&bmed&r into new elements.\n\nThe processing recipes on the other hand can run regardless of the fuel, as long as the temperature level is high enough.", - "quests.gregtech_energy.fission_reactor.desc.7": "The simplified math is as follows: with sufficient coolant fluid and a &c100%%&r heat fuel rod, the reactor will reach a temperature of about &c200&r. This can also be referred to as heat level, or just heat. Having &dtwo&r &c100%%&r fuel cells is equal to &done&r &c200%%&r cell, and both lead to about &c400&r heat.\n\nThis is because the fuel rod generates &6200 HU/t&r (heat units). Coolant fluids are able to extract &61 HU/t&r per &c1&r degree of heat.\n\nIf the reactor's max heat is &c190&r, a &c100%%&r fuel cell will overheat it. You can increase this with the components, or alternatively &dactive coolants&r via the processing system. Each recipe has a heat impact.", - "quests.gregtech_energy.fission_reactor.desc.8": "For example, if the recipe's temperature is &c100&r, and impact &6-10 HU/t&r, it is able to cool down the reactor by &619 HU/t &rat &c190&r degrees.\n\nThat makes it possible to run the reactor with lower max heat, and not overheat! If the temperature is below &c100&r, it won't run at all - just like EBF recipes have limits.\n\nThis is all &ewe&r can teach you for now. Come back later to see if there was been any advancements, &efellow nuclear engineer&r!", - "quests.high_voltage": "&6HV&r - High Voltage", - "quests.high_voltage.subtitle": "Upgrade your power, learn about the Cleanroom, make more chemicals, and get ready for Space", - "quests.high_voltage.energium_crystals.title": "Super Batteries", - "quests.high_voltage.energium_crystals.subtitle": "Science-fiction batteries!", - "quests.high_voltage.energium_crystals.desc": "&aEnergium Crystals&r store a significant amount of &9EU&r. They're also arguably cheaper.", - "quests.high_voltage.autoclave.title": "HV Autoclave", - "quests.high_voltage.autoclave.subtitle": "Home-grown batteries", - "quests.high_voltage.autoclave.desc": "The &3HV Autoclave&r - despite being optional - is a machine you'll definitively want to grab.\n\nThis unlocks unique Batteries that are &6far superior&r to their standard counterparts.", - "quests.high_voltage.chem_bath.title": "High Voltage Bathing", - "quests.high_voltage.chem_bath.subtitle": "Please don't bathe with your toaster...", - "quests.high_voltage.chem_bath.desc": "The &3HV Chemical Bath&r is used to &ddye Lenses&r using &aChemical Dye&r. This will let you engrave more types of Wafers, and cool other kinds of Hot Ingots.", - "quests.high_voltage.maintenance_hatches.title": "Advanced Maintenance", - "quests.high_voltage.maintenance_hatches.subtitle": "I have become maintenance, eater of tape", - "quests.high_voltage.maintenance_hatches.desc.1": "You now have access to two &3new Maintenance Hatches&r. Both hatches &6do not require Maintenance&r when first placed in a Multiblock.\n\nThe &3Automatic Maintenance Hatch&r is pretty simple - it eliminates the need for Maintenance, &6forever&r.\n\nThe &3Configurable Maintenance Hatch&r is more interesting. You can configure it to cut off &a10%% duration&r on recipes, at the cost of making Maintenance happen three times as fast. That is &d16 real hours&r of activity. Additionally, you can use it on Multiblock Generators to increase the duration of the recipe, which indirectly increases their fuel efficiency by 10%!\n\n&9Reminder:&r You can put Tape in the maintenance Hatch to automatically fix problems.", - "quests.high_voltage.maintenance_hatches.desc.2": "&l&3Lore:&r&o The Automatic Maintenance Hatch texture and mechanic comes from TecTech, an addon mod originally made for GregTech: New Horizons.\n\n&oYou'll see more from TecTech if you stick with us with the late game.", - "quests.high_voltage.hv_components.title": "High Voltage Components", - "quests.high_voltage.hv_components.subtitle": "We call this \"fun\"", - "quests.high_voltage.hv_components.desc.1": "Just like &bMV&r, you'll need to make higher-tier components.\n\nThe painful &dFlawless Gems&r have been replaced with slightly-more-painful &dVitrified Ender Pearls&r. Also notice that the &aMotors&r require &d2x Silver Cables&r.\n&aHulls&r and &aMachines&r use &dGold Cables&r.\n\nFinally, a use for that stockpile of Gold!", - "quests.high_voltage.hv_components.desc.2": "&9&lTips to make life less painful:&r\n\n- Use &dElectrotine decomposition&r and &dOre Processing&r for &eElectrum&r.\n- Use the &3Chemical Bath&r with &dMercury&r for &eGold&r and &eSilver&r from a wide variety of ores.", - "quests.high_voltage.assembler.title": "HV Assembling Machine", - "quests.high_voltage.assembler.desc": "The &3HV Assembler&r is the next step in progression, but also unlocks a handful of useful utilities - check around this quest for more.\n\nYou will need this &6HV Assembler&r to make your &dRocket&r.", - "quests.high_voltage.lenses.title": "I see the world in colour", - "quests.high_voltage.lenses.desc": "The &aSimple System on Chip&r will be used for the best &dULV Circuit&r recipe.\n\nWe'd also recommend going out of your way to make all the other useful colored Lenses ahead of time. They are listed here in an &eoptional&r task.", - "quests.high_voltage.ulv_circuits.title": "Best ULV circuits!", - "quests.high_voltage.ulv_circuits.desc": "&8ULV&r Circuits are used in some &9AE2&r recipes and &aCreate&r recipes.", - "quests.high_voltage.hv_energy_hatch.title": "Upgrade your EBF II", - "quests.high_voltage.hv_energy_hatch.subtitle": "Noticing a pattern here?", - "quests.high_voltage.hv_energy_hatch.desc": "The &aLow Power Integrated Circuit&r requires an &3HV Cutting Machine&r inside your &3Cleanroom&r.\n\n&3HV Energy Hatches&r will be nice additions so you can run your Multiblocks (mainly your Electric Blast Furnace and Large Chemical Reactor) directly off a &6HV&r line.", - "quests.high_voltage.chem_reactor.title": "High Voltage Chemistry", - "quests.high_voltage.chem_reactor.desc": "The &3HV Chemical Reactor&r unlocks a ton of new recipes. Ah, who doesn't love the ever-growing demand on more advanced Chemistry?\n\n&9Note:&r We've actually unlocked a ton of new content by reaching &6HV&r. However, not every processing line or item is crucial right now. It'd make the &6HV&r chapter far too dense if we included everything!\n\nYou could still check out the &5EV&r Chapter if you want to push yourself.", - "quests.high_voltage.rutile_loop.title": "Almost Titanium", - "quests.high_voltage.rutile_loop.subtitle": "...means it WASN'T Titanium!", - "quests.high_voltage.rutile_loop.desc": "Titanium requires a slightly more &binvolved&r process than the previous materials to process. To get started, you'll need &aRutile&r, which can be obtained by processing &aBauxite&r, &aIlmenite&r, &aAluminium&r, &aArmalcolite&r and &aDesh&r, which can only be found on &dThe Moon&r.\n\nOnce you've gotten enough &5Rutile&r, your journey to &6Titanium&r continues in the next quest. There's no need to rush things.\n\n&9Tip:&r Ore processing for &aBauxite&r is ridiculously good! Including the &3Thermal Centrifuge&r step easily &6triples&r your &aRutile&r yield.", - "quests.high_voltage.rutile_loop_2.title": "Almost TitaniumΒ²", - "quests.high_voltage.rutile_loop_2.subtitle": "Is it titanium yet?", - "quests.high_voltage.rutile_loop_2.desc.1": "To get your grubby hands on some Titanium, &aRutile&r must first be reduced to &aTitanium Tetrachloride&r in an &3HV Chemical Reactor&r, then reduced again in an &3EBF&r with &dMagnesium&r to finally arrive at Titanium.\n\nThe &dCarbon&r, &dChlorine&r, &dOxygen&r, and &dMagnesium&r used in the process can be &6perfectly recovered&r from the byproduct &dCarbon Monoxide&r and &dMagnesium Chloride&r with no loss. If you set up a system to recover them, &athe only material&r that you'll need to provide for Titanium is &dRutile&r!", - "quests.high_voltage.rutile_loop_2.desc.2": "&aTitanium Tetrachloride&r also acts as a catalyst in the production of plastics. A touch of &aTiClβ‚„&r in the polymerisation process can increase the polymer yield to &6133%%&r&r. Naturally, this is completely optional.", - "quests.high_voltage.superconductors.title": "HV Superconductors", - "quests.high_voltage.superconductors.desc": "By this point, normal Cables have such insignificant loss that superconductors aren't a requirement. That being said, they're still useful for being able to split and combine cables on the fly, and these ones are half oxygen so they're cheap too!\n\nSuperconductors are still required to craft &aField Generators&r.", - "quests.high_voltage.nichrome_coils.title": "Nichrome Coils", - "quests.high_voltage.nichrome_coils.subtitle": "A long way to go before we beat the Sun", - "quests.high_voltage.nichrome_coils.desc.1": "&3Nichrome Heating Coils&r increase the temperature of your &3Blast Furnace&r to &d3,600K&r.\n\nDespite not being required &oyet&r, it still is a good idea to upgrade your primary &3EBF&r for those sweet, sweet &6Coil bonuses&r.", - "quests.high_voltage.nichrome_coils.desc.2": "&l&3Lore:&r&o In the original GregTech 5, there were only three types of coils. This was the last tier.", - "quests.high_voltage.titanium.title": "Titanium", - "quests.high_voltage.titanium.desc": "&aTitanium&r has the highest corrosion resistance and strength-to-density ratio of any metallic element, so it's only natural that we'll be using it as the main material in our &5EV&r machinery.\n\nConfirm that your closed loop for &aRutile&r is up to standard, and prepare to run a dedicated &3EBF&r for hours.\n\nA quick aside - now we're at &5EV&r, single block generators are about to fall out of style! You'll need to run several &3HV Generators&r to keep up - later, upgrades to Multiblock Generators will be required.\n\nWhile Multiblock generators are much more expensive, you'll find them to be much more energy efficient! Have a look at the &dEnergy Chapter&r for more infos!", - "quests.high_voltage.vacuum_freezer.title": "Ice Cold", - "quests.high_voltage.vacuum_freezer.subtitle": "Did you know vacuums actually make things hotter?", - "quests.high_voltage.vacuum_freezer.desc": "The &3Vacuum Freezer&r is a multiblock used to cool down &eHot Ingots&r. All ingots made in the EBF with a temperature above &d1750K&r will need it.\n\nMost of the time, your &3Electric Blast Furnace&r will be the bottleneck, so you don't need to worry about overclocking your freezer.\n\nSince &eHot Ingots&r &churt you&r when held, item routing will be very useful.", - "quests.high_voltage.mv_superconductors.title": "MV Superconductors", - "quests.high_voltage.mv_superconductors.desc": "&a4A&r of &bMV&r energy transmission may be appealing, but you probably don't need these at this point. The option is always there if you need it.", - "quests.high_voltage.circuit_assembler.title": "HV Circuit Assembler", - "quests.high_voltage.circuit_assembler.subtitle": "You will need the Cleanroom before you can craft this one", - "quests.high_voltage.circuit_assembler.desc": "The next &3Circuit Assembler&r. This tier of Circuit Assembler is only required for one type of Circuit - your first ever &aMainframe&r. You may have only one use for them, the &5EV Circuit Assembler&r.\n\nYou can put this off until &5EV&r or simply just use it for faster circuits making.", - "quests.high_voltage.microprocessor_mainframe.title": "Mainframes - first IV Circuits!", - "quests.high_voltage.microprocessor_mainframe.desc": "The first &1IV&r circuit. Congratulations on making it this far!\n\nThis will be used when you get to &5EV&r, or you can use it right now to craft an Advanced Nanosuit Chestplate, a big upgrade to your jetpack!.\n\n&l&3Lore:&r&o The original texture for the Mainframes was taken from an image of an IBM zEnterprise mainframe.", - "quests.high_voltage.cleanroom.title": "The Cleanroom", - "quests.high_voltage.cleanroom.subtitle": "They put me in a room... a clean room", - "quests.high_voltage.cleanroom.desc.1": "The &3Cleanroom&r is a hollow multiblock free of contaminants. Going forward, most new âuit-related recipes&r, as well as some unique blocks like &3Fusion Casings&r, will need to be run in machines inside a Cleanroom.\n\nCreating it will put your &aPolyethylene&r automation to the test for all the &dPlascrete&r and/or &dCleanroom Glass&r you will make.\n\nWe'll start you off with a 5x5x5 Cleanroom, but you should upgrade its size when you start feeling cramped.", - "quests.high_voltage.cleanroom.desc.2": "&l&3Lore:&r&o The Cleanroom comes from GregTech 5, but as is often the case, the GT5 implementation is much more punishing. The recipes would run without regard to cleanliness, but had a %% chance of completion equal to the cleanliness of the Cleanroom. This caused a lot of accidental voiding.\n\n&oFurthermore, if the Cleanroom had a maintenance issue, the cleanliness would cap out at 90%%, which means 10%% of items would be voided.\n\n&oThe GTCEu Cleanroom will &6never void&f recipe outputs.", - "quests.high_voltage.prospector.title": "HV Prospector", - "quests.high_voltage.prospector.desc.1": "This prospector boasts a &6higher range&r than its &7LV&r counterpart.\n\nSneak right-clicking with the Prospector in your hand will change its mode to &6Fluid Vein Mode&r. This will instead display the base &dyield&r of Fluid veins, along with how full they are.\n\nThis will be really useful to find &9Helium-3&r and &9Bedrock Veins&r on the moon.", - "quests.high_voltage.prospector.desc.2": "&9Reminder:&r The yield of a &3Fluid Drilling Rig&r is directly proportional to the \"fullness\" of the vein. When low enough, the output will default to a yield that can be defined in the CEu config.\n\n&9Tip:&r When the fullness drops below 30%% (alright, rough estimate), you should consider moving to another vein for the sake of power-to-yield efficiency. Aiming for the &3Advanced Fluid Drilling Rig&r in &5EV&r may interest you, as not only does it significantly boost the output, but it also reduces the rate at which it drains the vein!\n\n&cCaution:&r Due to a bug, the Prospector display may be offset by one chunk, so avoid placing your Rig in the corners of a fluid vein, or you may end up pumping the wrong fluid!", - "quests.high_voltage.fluorine.title": "Fluorine", - "quests.high_voltage.fluorine.subtitle": "Have you brushed your teeth today?", - "quests.high_voltage.fluorine.desc": "Fluorine is the rarest gas to obtain from electrolysis in this game.\n\nYou can obtain it from &aLepidolite&r, &aBastnatite&r, and &aMica&r, but the best source is from &aTopaz&r.", - "quests.high_voltage.ptfe.title": "Polytetrafluoroethylene", - "quests.high_voltage.ptfe.subtitle": "A.K.A - Teflon", - "quests.high_voltage.ptfe.desc": "&aPolytetrafluoroethylene (PTFE)&r is a &7Carbon&r-&bFluorine&r polymer. Similarly to PVC, PTFE can be used to increase the yield of Plastic Circuit Boards and other crafts. Presently, it is used to make the walls of &3Large Chemical Reactors&r.\n\n&3Chlorine&r is required in the process, which is fully recycled if you electrolyze the &aHydrochloric Acid&r waste.\n\n&bFluorine&r will also be used in the &aUranium&r and &7Naquadah&r refinement processes.\n\n&9Tip:&r From this point onwards, you should be solidifying Polymers as &dBar&r (Ingot) form, as they can easily be shaped to whichever form you will need using the &3Extruder&r.", - "quests.high_voltage.nitrobenzene.title": "Benzene Nitro", - "quests.high_voltage.nitrobenzene.desc": "Making &aNitrobenzene&r will boost the energy efficiency of &aBenzene&r roughly &6fourfold&r. You love to see it.\n\nThe catch here is that it takes &dDistilled Water&r, and consumes a bit of &dSulfur&r with every step.", - "quests.high_voltage.lcr.title": "Large Chemical Reactor", - "quests.high_voltage.lcr.desc.1": "The &3Large Chemical Reactor (LCR)&r is a multiblock &3Chemical Reactor&r with more input/output slots. Its Teflon casings allow it to process extra recipes.\n\nThe &3LCR&r can perform some exclusive reactions which allow you to combine multiple normal &3Chemical Reactor&r steps into a &6single step&r. Examples below:\n\n&9-&r &aNitrogen Dioxide&r (for Nitric Acid and Dinitrogen Tetroxide)\n&9-&r &aSulfuric Acid&r\n&9-&r &aPhenol&r\n&9-&r &aEpichlorohydrin&r (you need it for Epoxy!)\n&9-&r &aEpoxy&r", - "quests.high_voltage.lcr.desc.2": "There are also &3LCR&r exclusive recipes. For example, &dRadon&r can only be made in the LCR right now.\n\nAll &dOverclocks&r in the &3LCR&r are &6100%% efficient&r (known as Perfect overclocks); each overclock will &5quadruple the speed&r, as opposed to doubling it.\n\nThe &3LCR&r has yet another &6advantage&r. You can use &32 Energy Hatches&r to allow it to run recipes of the &5next tier&r, similar to the &3Electric Blast Furnace&r.", - "quests.high_voltage.lcr.desc.3": "&9Tip:&r Given the amount of LCRs you may end up using, why not try utilising &dwallsharing&r to its full potential?\n\nYou could share one 2A (standard) &3Energy Hatch&r between 2 LCRs.\n\nYou might want to share &3Input/Output Hatches&r, but make sure each LCR is running the correct recipe.\n\nKeep in mind Maintenance hatches are not sharable.", + "quests.gregtech_energy.fission_reactor.title": "ζ Έεˆ†θ£‚η‚‰MK I", + "quests.gregtech_energy.fission_reactor.subtitle": "ここで一発ドカンと理解してしまいましょう!", + "quests.gregtech_energy.fission_reactor.desc.1": "&dζ Έεˆ†θ£‚η‚‰&rは、GregTechγδΈ­γ§γ‚‚ηγ—γ„ε­˜εœ¨γ§γ€γγγ‚³γƒ³γ‚»γƒ—γƒˆγ‚‚δ»•η΅„γΏγ‚‚ε°‘γ—η‰ΉζŠγ§γ™γ€‚γ§γ‚‚εΏƒι…γ―γ„γ‚ŠγΎγ›γ‚“γ€‚γ“γι‡θ¦γ§ε€šη”¨ι€”γͺε€§εž‹ζ©Ÿζ’°γδ½Ώγ„ζ–Ήγ«γ€γ„γ¦γ€γ—γ£γ‹γ‚Šγ¨θͺ¬ζ˜Žγ—ます!\n\n難解γͺ物理学γθ©±γ―γ•γ¦γŠγγ€&eエンジニを&rγ¨γ—γ¦γΎγšηŸ₯γ£γ¦γŠγγΉγγ“γ¨γ―γ€γ€Œγ“γη‚‰γ―ε·¨ε€§γͺ熱エネルγ‚γƒΌγ‚’εˆ©η”¨γ—γŸ&d蓄電・発電装η½&rγγ‚ˆγ†γͺγ‚‚γγ€γ γ¨γ„うことです。\nι©εˆ‡γͺη‡ƒζ–™γ‚’ζŠ•ε…₯すると、&c熱量&r(&6EU/t&rγγ‚ˆγ†γͺγ‚‚γ)というエネルγ‚γƒΌγ‚’η™Ίη”Ÿγ•γ›γ€γγ‚Œγ‚’η‚‰ε†…γ«&c熱&rとして蓄積します(γ€γΎγ‚Šγ€&6EU&rを貯めているγγ§γ™)。\n\nそγη†±γ‚’&9冷却梲&rγ«η§»γ—γ¦γ‚ΏγƒΌγƒ“γƒ³γ‚’ε›žγ—γŸγ‚Šγ€η†±γŒδ½™γ£γ¦γ„γŸγ‚‰η†±γ‚’εˆ©η”¨γ—γŸγ‚―γƒ©γƒ•γƒˆγ«δ½Ώγ†γ“γ¨γͺどもできます。\n\n副産物として新しい元素をε…₯ζ‰‹γ—γ€ζ–°γ—γ„ζ Έη‡ƒζ–™γ‚„δΈŠδ½γε›žθ·―γͺγ©γ‚’δ½œγ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚γ€γ„γ§γ«ε€ͺι™½η³»γζŽ’ζ€œγ§γ‚‚γ—γ¦γΏγΎγ™γ‹οΌŸγΎγ‚γγ‚“γͺγ“γ¨γ«θˆˆε‘³γ―γͺγ„γ§γ™γ‚ˆγ­γ€‚", + "quests.gregtech_energy.fission_reactor.desc.2": "まずは&dγƒˆγƒͺウム&rを用意してください。取扱いは危険ですγγ§εΏ…γšδΏθ­·ε…·γ‚’η€η”¨γ—γ¦γγ γ•γ„γ€‚(&eディーテックε‡ε™ζŠ€θ‘“η€Ύ&rγ―δΈ€εˆ‡γδΊ‹ζ•…γθ²¬δ»»γ‚’θ² γ„γΎγ›γ‚“γ€‚ε±ι™Ίι˜²ζ­’γ‚―γ‚¨γ‚Ήγƒˆγ§ε‰ε…¨γͺ手順を璺θͺγ—てください。)\n\n欑に、空γ&d燃料棒&rγ‚’δ½œγ£γ¦&dζ Έη‡ƒζ–™ε½’ζˆζ©Ÿ&rで燃料を注ε…₯γ—γ¦γγ γ•γ„γ€‚η‡ƒζ–™ζ£’γ―ε†εˆ©η”¨γ§γγΎγ™γ‹γ‚‰ε€§ι‡γ«δ½œγ‚‹εΏ…θ¦γ―γͺγγ€ζœ€εˆγ―1ζœ¬γ γ‘δ½œγ‚Œγ°εεˆ†γ§γ™γ€‚\n\nζ¬‘γ«γ€ζ Έεˆ†θ£‚η‚‰γ‚’εŒζˆγ•せてください。構造はEMIで璺θͺγ§γγΎγ™γ€‚\nδΈ­ε€γ«γ―燃料をε…₯γ‚Œγ‚‹γŸγ‚γγ€Œη‡ƒζ–™ζ£’ζ Όη΄ιƒ¨γ€γ‚’η«‹γ¦γ¦γ€ε‘¨ε›²γ«θ€η†±γƒ•γƒ¬γƒΌγƒ γ‚„γƒžγƒ†γƒͺをルホルダーγͺどγγ€Œγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ€γ‚’θΏ½εŠ γ§γγ‚‹ζ§‹ζˆγ«γͺっています(θ©³γ—γγ―εΎŒγ»γ©)。\n\nγ€Œγͺぜ1ζœ¬γ γ‘οΌŸγ€γ¨η–‘ε•γ«ζ€γ„γΎγ—γŸγ‹γ€‚θ‰―γ„η–‘ε•γ§γ™γ€‚ζ¬‘γγƒšγƒΌγ‚Έγ§ζ Έεˆ†θ£‚炉γδ»•η΅„γΏγ‚’γ˜γ£γγ‚Šθ§£θͺ¬γ„γŸγ—γΎγ™γ€‚", + "quests.gregtech_energy.fission_reactor.desc.3": "炉内にε…₯γ‚Œγ‚‹&d燃料棒&rγŒε€šγ„γ»γ©γ€&cζΈ©εΊ¦γ―δΈŠζ˜‡γ—γ‚„γ™γ&rγͺγ‚ŠγΎγ™γ€‚γγ—γ¦ζΈ©εΊ¦γŒι«˜γ„γ»γ©γ€γ‚ˆγ‚Šε€šγγη†±γ‚’冷却梲γͺγ©γΈγ¨η§»γ™γ“γ¨γŒγ§γγΎγ™γ€‚γ—γ‹γ—θ€γˆγ‚‰γ‚Œγ‚‹η†±γ«γ―ι™η•ŒγŒγ‚γ‚Šγ€η‚‰γ―&cδΈ€εšγζΈ©εΊ¦&rまでにしか達しγͺγ„γŸγ‚γ€γ‚γΎγ‚Šε€šγγη‡ƒζ–™ζ£’γ‚’ε…₯γ‚Œγ™γŽγͺγ„γ‚ˆγ†γ«γ—γ¦γγ γ•γ„γ€‚\n\nγ¨γ―γ„γˆγ”ε‰εΏƒγγ γ•い!&0Mekθ‡³δΈŠδΈ»ηΎ©θ€…&rγε–§δΌγ―θͺ€γ‚Šγ§γ‚γ‚Šγ€ζ Έεˆ†θ£‚γ¨γ„γ†γγ―&aεŒη’§γ«ε‰ε…¨&rです!\n炉内γζΈ©εΊ¦γŒε±ι™ΊεŸŸγ«θΏ‘γ₯くと、炉は&9θ‡ͺε‹•ηš„γ«γ‚―γƒΌγƒ«γƒ€γ‚¦γƒ³γƒ’γƒΌγƒ‰&rにε…₯γ‚Šγ€γ™γΉγ¦γη†±γŒ&aε‰ε…¨εŸŸγΎγ§η™Ίζ•£&rγ•γ‚Œγ‚‹γΎγ§ε†η¨Όεƒγ—γΎγ›γ‚“γ€‚γŸγ γ—γ‚―γƒΌγƒ«γƒ€γ‚¦γƒ³ζœŸι–“γ―γ‹γͺγ‚Šι•·γ„γ§γ™γ€‚\n\nγ‚‚γ£γ¨ι«˜ζΈ©γ‹γ€ι«˜ι€Ÿγ«γ™γ‚‹ζ–Ήζ³•γ―γ‚γ‚‹γγ‹γ€ζ°—にγͺγ£γ¦γγΎγ—γŸγ‹οΌŸ&eζˆ‘γ€…γŒθͺ‡γ‚‹η΄ ζ™΄γ‚‰γ—γιƒ¨ιšŠ&rγŒγ‚γͺたγγŸγ‚γθ§£ζ±Ίη­–を用意しています。", + "quests.gregtech_energy.fission_reactor.desc.4": "5぀γ&d燃料棒格納部&rγγ»γ‹γ«γ€ζœ€ε€§γ§&o20個&rγγ€Œ&dγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ&rγ€γ‚’η΅„γΏθΎΌγ‚€γ“γ¨γŒγ§γγΎγ™γ€‚δ»–η€Ύγζ Έεˆ†θ£‚η‚‰γ―εŽ„δ»‹γͺζ§‹ι€ γͺγ‚‚γγ‚‚ε€šγγ‚γ‚ŠγΎγ™γŒγ€ε½“η€Ύθ£½γζ Έεˆ†θ£‚η‚‰γ―γ¨γ¦γ‚‚γ‚ΉγƒžγƒΌγƒˆγ§γ™γ€‚θ¨­η½γ—γŸγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ&6ステータス&rγ―ε˜η΄”γ«&6合η—&rγ•γ‚Œγ€γγη΅ζžœγŒεζ˜ γ•γ‚ŒγΎγ™γ€‚\n\n現時点γζ Έεˆ†θ£‚η‚‰γ§εˆ©η”¨γ§γγ‚‹γ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγεŠΉζžœγ―欑γ3η¨ι‘žγ§γ™οΌš\n&e1)&rζœ€ε€§ζΈ©εΊ¦δΈŠζ˜‡&7οΌˆθ€η†±ζ€§εΌ·εŒ–οΌ‰&r\n&e2)&rεŠΉηŽ‡ε‘δΈŠ&7οΌˆη‡ƒζ–™γζΆˆθ²»γ‚’ζŠ‘γˆγ‚‹οΌ‰&r\n&e3)&rγ‚Ήγƒ­γƒƒγƒˆγƒ«θͺΏζ•΄&7οΌˆεεΏœι€ŸεΊ¦γ‚’εˆΆεΎ‘οΌ‰&r\n\n&7*)&rγŸγ γ—γ€γ‚γͺたγζ‰‹γε±Šγε ΄ζ‰€γ«γ‚る素材では、まだすべてγγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ‚’δ½œγ‚‹γ“γ¨γ―できγͺγ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚ηΎεœ¨γγ¨γ“γ‚γ€εˆζ­©ηš„γͺγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆη”¨γη΄ ζγ—か璺θͺγ•γ‚Œγ¦γ„γͺγ„γ‚ˆγ†γ§γ™γ€‚\n\nγγ‚Œγ‹γ‚‰ζ³¨ζ„η‚Ήγ¨γ—γ¦&cζΈ©εΊ¦&rγ‚’δΈŠγ’γ‚‹γ“γ¨γ«γ―&cデパγƒͺγƒƒγƒˆ&rも伴います。", + "quests.gregtech_energy.fission_reactor.desc.5": "炉内γ&cζΈ©εΊ¦γŒδΈŠζ˜‡&rするほど冷却梲γεŠ η†±γͺどγε‡¦η†ι€ŸεΊ¦γ―&cε‘δΈŠ&rγ—γΎγ™γŒγ€&d燃料棒&rγζΆˆθ€—γŒζΏ€γ—γγͺγ‚ŠγΎγ™γ€‚ε„η‡ƒζ–™ζ£’γθ€δΉ…γ―ζΈ©εΊ¦γ«ζ―”δΎ‹γ—γ¦ζΈ›ε°‘γ—γ€γΎγŸι«˜ζΈ©γ«γ™γ‚‹γŸγ‚γ«γ―γ€εΏ…θ¦ζœ¬ζ•°γ‚‚ε’—γˆγ‚‹γŸγ‚γ€ε…¨δ½“γζθ€—は&nδΊŒζ¬‘ηš„&rγ«ε’—εŠ γ—γΎγ™γ€‚\n\nη‡ƒζ–™εŠΉηŽ‡γ‚’θ€ƒγˆγ‚‹γͺγ‚‰γ°δ½ŽζΈ©ι‹θ»’γŒζœ‰εˆ©γ§γ™γ—γ€η‡ƒζ–™γ‚’γ‚ˆγ‚Šζ—©γζΆˆθ²»γ—γ€ε‰―η”£η‰©γ«ε€‰ζ›γ—γŸγ„γͺγ‚‰θ€η†±ζ€§θƒ½γŒθ¨±γ™ι™γ‚Šι«˜ζΈ©γ«γ™γ‚‹γγŒγ‚ˆγ„でしょう。", + "quests.gregtech_energy.fission_reactor.desc.6": "γ“γ‚Œγ§ζ Έεˆ†θ£‚η‚‰γ‚’ι‹η”¨γ™γ‚‹ιš›γδΊ‹ε‰ηŸ₯θ­˜γ―ζƒγ„γΎγ—γŸγ€‚γγ‚Œγ§γ―γ€ε…·δ½“ηš„γ«γ©γγ‚ˆγ†γͺレシピをεŸθ‘Œγ§γγ‚‹γγ‹η’Ίθͺγ—ましょう。&dζ Έεˆ†θ£‚η‚‰MK_I&rγ‚’&eEMI&rでθͺΏγΉγ‚‹γ¨γ€3぀γγƒ¬γ‚·γƒ”γŒθ‘¨η€Ίγ•γ‚ŒγΎγ™οΌš\n\n&e1)&rFission_Reactor&7οΌˆε―ΎεΏœγ—γ¦γ„γ‚‹η‡ƒζ–™γ¨ε†·ε΄ζΆ²γδΈ€θ¦§οΌ‰&r\n&e2)&rFission_Heat_Processing&7οΌˆδΎ‹οΌšEBFγγ‚ˆγ†γͺι«˜ζΈ©ε‡¦η†οΌ‰&r\n&e3)&rFission_Products&7οΌˆη‡ƒζ–™γŒδ½Ώγ„εˆ‡γ‚‰γ‚ŒγŸγ¨γγε‰―産物)&r\n&e4)&rγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζƒ…ε ±\n\nγγ‚Œγžγ‚Œγ&a燃料&rは特εšγ&9冷却梲&rγ¨γ—γ‹η΅„γΏεˆγ‚γ›γ‚‰γ‚Œγͺγ„γŸγ‚γ€ε―ΎεΏœι–’δΏ‚γ‚’γ‚ˆγη’Ίθͺγ—てください。\nγΎγŸη‡ƒζ–™ζ£’γŒε―Ώε‘½γ‚’θΏŽγˆγ‚‹γ¨γ€ζ–°γŸγͺ元素へと遷移します。\n\nδΈ€ζ–Ήγ§γ€ε‡¦η†γƒ¬γ‚·γƒ”γ―εεˆ†γͺζΈ©εΊ¦γŒγ‚γ‚Œγ°η‡ƒζ–™γη¨ι‘žγ«ι–’δΏ‚γͺγε‹•δ½œγ—γΎγ™γ€‚", + "quests.gregtech_energy.fission_reactor.desc.7": "η°‘η•₯εŒ–γ—γŸθ¨ˆη—は欑γι€šγ‚Šγ§γ™γ€‚εεˆ†γͺ量γε†·ε΄ζΆ²γ¨&cHeat:100οΌ…&rγη‡ƒζ–™ζ£’を使用すると、炉内は約&c200&rγζΈ©εΊ¦γ«ι”γ—γΎγ™γ€‚γ“γ‚Œγ―η†±ι‡γƒ¬γƒ™γƒ«γ€γΎγŸγ―ε˜γ«γ€Œη†±γ€γ¨γ‚‚ε‘Όγ°γ‚ŒγΎγ™γ€‚&d2&r本γ&c100οΌ…&r燃料棒を使用することは、&d1&r本γ&c200οΌ…&r燃料棒を使用するγγ¨εŒγ˜γ§γ€γ©γ‘らも約&c400&rγHeatγ‚’η”ŸγΏε‡Ίγ—γΎγ™γ€‚\n\nγ“γ‚Œγ―η‡ƒζ–™ζ£’γŒ1ζœ¬γ‚γŸγ‚Š&6200HU/t&r(Heat_UnitsοΌ‰γ‚’η”Ÿζˆγ™γ‚‹γŸγ‚γ§γ™γ€‚ε†·ε΄ζΆ²γ―&c1&rεΊ¦γ‚γŸγ‚Š&61HU/t&rγη†±γ‚’εΈεŽγ§γγΎγ™γ€‚\n\n炉γθ€η†±θ¨±εΉι‡γŒ&c190&rγε ΄εˆγ€&c100οΌ…&rγη‡ƒζ–™ζ£’γ§γ‚‚ιŽη†±ηŠΆζ…‹γ«γͺγ£γ¦γ—γΎγ„γΎγ™γ€‚γ“γ‚Œγ‚’ε›žιΏγ™γ‚‹γ«γ―γ€γ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ‚’θΏ½εŠ γ—γ¦θ€η†±θ¨±εΉι‡γ‚’δΈŠγ’γ‚‹γ‹γ€γ‚γ‚‹γ„γ―&d冷却材&rγ‚’δ½Ώη”¨γ—γΎγ™γ€‚δ½Ώγ†ε†·ε΄ζγ«γ‚ˆγ£γ¦ε†·ε΄ζ€§θƒ½γ―η•°γͺγ‚ŠγΎγ™γ€‚", + "quests.gregtech_energy.fission_reactor.desc.8": "γŸγ¨γˆγ°γ€γƒ¬γ‚·γƒ”γζΈ©εΊ¦γŒ&c100K&rγ§γ€ε½±ιŸΏγŒ&6Heat:-10HU/t&rγε ΄εˆγ€η‚‰γζΈ©εΊ¦γŒ&c190&rγγ¨γγ«&619HU/t&rεˆ†γ γ‘ε†·ε΄γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ“γ‚Œγ«γ‚ˆγ‚Šγ€η‚‰γ‚’γ‚ˆγ‚Šδ½Žγ„ζœ€ε€§ζΈ©εΊ¦γ§η¨Όεƒγ•γ›γ€ιŽη†±γ‚’ι˜²γγ“γ¨γŒε―θƒ½γ«γͺγ‚ŠγΎγ™γ€‚ζΈ©εΊ¦γŒ&c100&rζœͺζΊ€γε ΄εˆγ€EBFγγƒ¬γ‚·γƒ”γ¨εŒζ§˜γ«η¨Όεƒγ—γΎγ›γ‚“γ€‚\n\nδ»ŠγŠζ•™γˆγ§γγ‚‹γγ―ここまでです。さらγͺγ‚‹η ”η©Άγ‚„ζ”Ήθ‰―γŒι€²γ‚“γ γ‚‰γ€γœγ²γΎγŸζˆ»γ£γ¦γγ¦γγ γ•γ„γ€‚&e核エンジニをγεŒθƒžγ‚ˆγ‚Š&r", + "quests.high_voltage": "&6HV&r - ι«˜ι›»εœ§ζ™‚δ»£", + "quests.high_voltage.subtitle": "γ•γγ€ζœˆγΈε‡Ίγ‹γ‘γ‚ˆγ†", + "quests.high_voltage.energium_crystals.title": "スーパーバッテγƒͺγƒΌ", + "quests.high_voltage.energium_crystals.subtitle": "γ™γ“γ—γ΅γ—γŽγͺバッテγƒͺγƒΌ", + "quests.high_voltage.energium_crystals.desc": "&aエネルγ‚γƒΌγ‚―γƒͺスタル&rには倧量γ&9EU&rγ‚’θ“„γˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ζ―”θΌƒηš„δ½Žγ‚³γ‚Ήγƒˆγ§δ½œζˆγ§γγΎγ™γ€‚", + "quests.high_voltage.autoclave.title": "HVγ‚ͺγƒΌγƒˆγ‚―γƒ¬γƒΌγƒ–", + "quests.high_voltage.autoclave.subtitle": "θ‡ͺεΆθ£½γƒγƒƒγƒ†γƒͺγƒΌ", + "quests.high_voltage.autoclave.desc": "&3η™Ίε±•εž‹γ‚ͺγƒΌγƒˆγ‚―γƒ¬γƒΌγƒ–II&rγ―εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€γœγ²δ½œγ£γ¦γŠγγŸγ„ζ©Ÿζ’°γ§γ™γ€‚\n\nγ“γ‚Œγ‚’δ½Ώγˆγ°γ€ι€šεΈΈγγ‚‚γγ‚ˆγ‚Š&6ζ Όζ΅γ«ζ€§θƒ½γι«˜γ„&rη‰Ήεˆ₯γͺバッテγƒͺγƒΌγ‚’δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.high_voltage.chem_bath.title": "HVεŒ–ε­¦ζ§½", + "quests.high_voltage.chem_bath.subtitle": "レンズγγŸγ‚γε†’ι™Ίγ―γŠγ—γΎγ„", + "quests.high_voltage.chem_bath.desc": "&3η™Ίε±•εž‹εŒ–ε­¦ζ§½II&rは、&aεŒ–ε­¦ζŸ“ζ–™&rを使ってレンズを&d着色する&rγ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ«γ‚ˆγ£γ¦γ€ζ‰±γˆγ‚‹γ‚¦γ‚§γƒγƒΌγη¨ι‘žγŒε’—γˆγΎγ™γ€‚γγγ»γ‹γη”¨ι€”γ¨γ—γ¦γ€η†±γ„γ‚€γƒ³γ‚΄γƒƒγƒˆγε†·ε΄γ«γ‚‚εˆ©η”¨γ§γγΎγ™γ€‚", + "quests.high_voltage.maintenance_hatches.title": "δΈŠδ½η‰ˆγƒ‘γƒ³γƒ†γƒŠγ‚Ήγƒγƒƒγƒ", + "quests.high_voltage.maintenance_hatches.subtitle": "ζ”Ύδ»»γ‹ιŽδΏθ­·γ‹", + "quests.high_voltage.maintenance_hatches.desc.1": "ζ–°γŸγ«2η¨ι‘žγ&3γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒγƒƒγƒ&rγŒδ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸγ€‚γ©γ‘γ‚‰γ‚‚θ¨­η½η›΄εΎŒγ―&6γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚ΉδΈθ¦&rγͺγγŒη‰ΉεΎ΄γ§γ™γ€‚\n\nγΎγšγ€&3θ‡ͺε‹•γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒγƒƒγƒ&rはとてもシンプルで、一度設η½γ™γ‚Œγ°&6ζ°Έι γ«γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚ΉγŒδΈθ¦&rにγͺγ‚ŠγΎγ™γ€‚\n\nもう一方γ&3εˆΆεΎ‘ε―θƒ½γͺγƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒγƒƒγƒ&rは少し特ζŠγ§γ€θ¨­εšγ«γ‚ˆγ£γ¦γƒ¬γ‚·γƒ”γε‡¦η†ζ™‚ι–“γ‚’&a10οΌ…ηŸ­ηΈ&rγ§γγΎγ™γŒγ€γγδ»£ε„Ÿγ¨γ—γ¦γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγη™Ίη”ŸγŒ3倍γι€ŸεΊ¦γ«γͺγ‚ŠγΎγ™οΌˆηΎεŸζ™‚間で約&d16ζ™‚ι–“&rη¨Όεƒγ—γΎγ™οΌ‰γ€‚γ•γ‚‰γ«γ€γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―η™Ίι›»ζ©Ÿγ«δ½Ώγ†γ“γ¨γ§γ€γƒ¬γ‚·γƒ”γε‹•δ½œζ™‚ι–“γ‚’ε»Άγ°γ—γ¦η‡ƒζ–™εŠΉηŽ‡γ‚’10οΌ…ε‘δΈŠγ•γ›γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\n&9補袳:&rγƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒγƒƒγƒγ«γƒ†γƒΌγƒ—γ‚’ε…₯γ‚Œγ¦γŠγγ¨γ€ε•ι‘ŒγŒη™Ίη”Ÿγ—γ¦γ‚‚θ‡ͺ動でδΏη†γ—γ¦γγ‚ŒγΎγ™γ€‚", + "quests.high_voltage.maintenance_hatches.desc.2": "&l&3δ½™θ«‡οΌš&r&o θ‡ͺε‹•γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒγƒƒγƒγθ¦‹γŸη›γ¨ζ©Ÿθƒ½γ―、GregTech:New_Horizons用γγ‚’ドγ‚ͺンModγ€ŒTecTechγ€γ‹γ‚‰ε–γ‚Šε…₯γ‚ŒγŸγ‚“γ γ€‚\n\n&o硂盀にε…₯ると、TecTechγθ¦η΄ γŒγ•らに登場するからζ₯½γ—γΏγ«γ—γ¦γŠγ„γ¦γ­γ€‚", + "quests.high_voltage.hv_components.title": "HVγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ", + "quests.high_voltage.hv_components.subtitle": "ただγδΈ­ι–“素材だと油断できγͺくγͺγ£γ¦γγΎγ—γŸ", + "quests.high_voltage.hv_components.desc.1": "&bMV&rγγ¨γγ¨εŒγ˜γ‚ˆγ†γ«γ€γΎγŸδΈŠδ½γγ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆγ‚’δ½œγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγ“γ‚ŒγΎγ§γ―&dε‚·γγͺいεηŸ³&rγ‚’δ½Ώγ£γ¦γ„γΎγ—γŸγŒγ€δ»ŠεΊ¦γ―&dγ‚¬γƒ©γ‚ΉεŒ–γ—γŸγ‚¨γƒ³γƒ€γƒΌγƒ‘γƒΌγƒ«&rを使います。&aγƒ’γƒΌγ‚ΏγƒΌ&rには&d2ε€ιŠ€γ‚±γƒΌγƒ–γƒ«γŒ2本&r必要にγͺγ‚ŠγΎγ™γ€‚\n&aγƒžγ‚·γƒ³η­δ½“&rγ‚„&a各η¨ζ©Ÿζ’°&rγͺどには&d金ケーブル&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\nγ‚ˆγ†γ‚„γγ€θ²―γ‚θΎΌγ‚“γ§γ„γŸι‡‘γδ½Ώγ„ι“γŒγ§γγΎγ—γŸγ­οΌ", + "quests.high_voltage.hv_components.desc.2": "&9&lζšγ‚‰γ—γηŸ₯恡:&r\n\n-&dγ‚¨γƒ¬γ‚―γƒˆγƒ­γƒγƒ³&rγ‚’εˆ†θ§£γ—γŸγ‚Šγ€&dι‰±ηŸ³ε‡¦η†&rγ‚’θ‘Œγ†γ“γ¨γ§&eγ‚¨γƒ¬γ‚―γƒˆγƒ©γƒ &rγ‚’εŠΉηŽ‡γ‚ˆγε…₯手できます。\n-&3εŒ–ε­¦ζ§½&rで&dζ°΄ιŠ€&rγ‚’δ½Ώγˆγ°γ€γ•γΎγ–γΎγͺι‰±ηŸ³γ‹γ‚‰&e金&rγ‚„&eιŠ€&rγ‚’ζŠ½ε‡Ίγ§γγ‚‹γγ§γ¨γ¦γ‚‚δΎΏεˆ©γ§γ™γ€‚", + "quests.high_voltage.assembler.title": "HVη΅„η«‹ζ©Ÿ", + "quests.high_voltage.assembler.desc": "&3η™Ίε±•εž‹η΅„η«‹ζ©ŸII&rγ―γ€ζŠ€θ‘“γη™Ίε±•γγŸγ‚γ«ζ¬ γ‹γ›γͺい重要γͺζ©Ÿζ’°γ§γ™γ€‚γ„γγ€γ‹γδΎΏεˆ©γͺθ£…η½γ‚„ζ©Ÿθƒ½γ‚‚γ‚’γƒ³γƒ­γƒƒγ‚―γ•γ‚Œγ‚‹γγ§γ€γ“γγ‚―γ‚¨γ‚Ήγƒˆε‘¨θΎΊγ‚‚γƒγ‚§γƒƒγ‚―γ—γ¦γΏγ¦γγ γ•γ„γ€‚\n\n&dγƒ­γ‚±γƒƒγƒˆ&rγθ£½δ½œγ«γ‚‚、&6HVη΅„η«‹ζ©Ÿ&rγŒεΏ…ι ˆγ«γͺγ‚ŠγΎγ™γ€‚", + "quests.high_voltage.lenses.title": "新しいレンズ", + "quests.high_voltage.lenses.desc": "&aSoCチップ&rγ―γ€ζœ€ι«˜εŠΉηŽ‡γ&dULVε›žθ·―&rγƒ¬γ‚·γƒ”γ§θ¦ζ±‚γ•γ‚ŒγΎγ™γ€‚\n\nγΎγŸγ€δ»–γθ‰²γγƒ¬γƒ³γ‚Ίγ‚‚γ€εΎŒγ€…εΏ…θ¦γ«γͺγ‚‹γγ§δ»Šγγ†γ‘に全η¨ι‘žδ½œγ£γ¦γŠγγγŒγŠγ™γ™γ‚γ§γ™γ€‚γ“γ‚Œγ‚‰γ―こγγ‚―γ‚¨γ‚Ήγƒˆε†…γ&e任意タスク&rとして一覧で璺θͺγ§γγΎγ™γ€‚", + "quests.high_voltage.ulv_circuits.title": "ζœ€ι©εŒ–γ•γ‚ŒγŸULVε›žθ·―", + "quests.high_voltage.ulv_circuits.desc": "&8ULV&rε›žθ·―γ―γ€&9AE2&rγ‚„&aCreate&rι–’ι€£γδΈ€ιƒ¨γƒ¬γ‚·γƒ”γ§θ¦ζ±‚γ•γ‚Œγ‚‹ι‡θ¦γͺ素材です。", + "quests.high_voltage.hv_energy_hatch.title": "EBFγ‚’EBF IIγ«γ—γ‚ˆγ†", + "quests.high_voltage.hv_energy_hatch.subtitle": "EBF2γ§γ―γ•γ‚‰γ«ε€šγγγƒ¬γ‚·γƒ”γŒη™»ε ΄", + "quests.high_voltage.hv_energy_hatch.desc": "&aLPICチップ(Low Power Integrated Circuit)&rγ‚’θ£½δ½œγ™γ‚‹γ«γ―γ€&3γ‚―γƒͺーンルーム&r内で&3HVθ£ζ–­ζ©Ÿ&rγ‚’δ½Ώγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€&3HVエネルγ‚ーハッチ&rγ‚’ε–γ‚Šδ»˜γ‘γ‚‹γ“γ¨γ§γ€&6HV&rラむンから直ζŽ₯γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―οΌˆη‰Ήγ«EBFγ‚„ε€§εž‹εŒ–ε­¦εεΏœη‚‰οΌ‰γ‚’ε‹•γ‹γ›γ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.high_voltage.chem_reactor.title": "HVεŒ–ε­¦εεΏœε™¨", + "quests.high_voltage.chem_reactor.desc": "&3η™Ίε±•εž‹εŒ–ε­¦εεΏœε™¨II&rγ‚’δ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺると、倧量γζ–°γƒ¬γ‚·γƒ”γŒθ§£η¦γ•γ‚ŒγΎγ™γ€‚γ©γ‚“γ©γ‚“θ€‡ι›‘γ«γͺγ£γ¦γ„γεŒ–ε­¦ε·₯η¨‹β€•β€•ε«Œγ„γ˜γ‚ƒγͺγ„γ§γ™γ‚ˆγ­οΌŸ\n\n&9補袳:&r &6HV&rγ«εˆ°ι”γ—γŸγ“γ¨γ§γ€γ§γγ‚‹γ“γ¨γŒδΈ€ζ°—γ«ε’—γˆγΎγ—γŸγŒγ€δ»Šγζ™‚η‚Ήγ§γ™γΉγ¦γ«ζ‰‹γ‚’ε‡Ίγγ†γ¨γ™γ‚‹εΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚ε…¨γ¦γ‚’ηΆ²ηΎ…γ—γŸε ΄εˆγ€γ“γη« γ«γ―εŽγΎγ‚Šγγ‚‰γͺγ„γ§γ™γ‚ˆοΌ\n\nδ½™θ£•γŒγ‚γ‚‹ζ–Ήγ‚„γ•γ‚‰γ«ε…ˆγ‚’η›ζŒ‡γ—γŸγ„ζ–Ήγ―、&5EV&rγη« γ‚‚チェックしてみましょう。", + "quests.high_voltage.rutile_loop.title": "ほぼチタニウム", + "quests.high_voltage.rutile_loop.subtitle": "早くチタニウムにγͺγ‚ŠγŸγ„οΌ", + "quests.high_voltage.rutile_loop.desc": "チタンγη²Ύθ£½γ«γ―γ€γ“γ‚ŒγΎγ§γι‡‘ε±žγŸγ‘γ‚ˆγ‚Šγ‚‚ε°‘γ—&b手γθΎΌγ‚“だ&rε·₯η¨‹γŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\nまずは&aルチル&rを集めましょう。&aγƒœγƒΌγ‚­γ‚΅γ‚€γƒˆ&r、&aチタン鉄鉱&r、&aγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &r、&aγ‚’γƒΌγƒžγƒ«γ‚³γƒ©γ‚€γƒˆ&rγ€γΎγŸγ―&aデッシγƒ₯&rι‰±ηŸ³γ‚’ε‡¦η†γ™γ‚‹γ“γ¨γ§ε…₯ζ‰‹γ§γγΎγ™γŒγ€γ“γ‚Œγ‚‰γ―γ»γ¨γ‚“γ©&d月&rγ§γ—γ‹θ¦‹γ€γ‹γ‚ŠγΎγ›γ‚“γ€‚\n\nεεˆ†γͺ&5ルチル&rγ‚’ι›†γ‚γŸγ‚‰γ€&6チタン&rへγζœ¬ζ Όηš„γͺθ£½ι€ γŒγ―γ˜γΎγ‚ŠγΎγ™γ€‚θ©³η΄°γ―ζ¬‘γγ‚―γ‚¨γ‚Ήγƒˆγ§γ€‚η„¦γ‚‰γšζΊ–ε‚™γ‚’ζ•΄γˆγ¦γγ γ•γ„γ€‚\n\n&9Tips&r &aγƒœγƒΌγ‚­γ‚΅γ‚€γƒˆ&rγι‰±ηŸ³ε‡¦η†γ―ιžεΈΈγ«εŠΉηŽ‡γŒθ‰―γγ€&3η†±ι εΏƒεˆ†ι›’ζ©Ÿ&rγ‚’δ½Ώγˆγ°&aルチル&rγη”£ε‡Ίι‡γ‚’&63倍&rγ«ε’—γ‚„γ™γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.high_voltage.rutile_loop_2.title": "ほぼほぼチタニウム", + "quests.high_voltage.rutile_loop_2.subtitle": "ζœ¬ε½“γ«γ“γ‚Œγ§γƒγ‚Ώγƒ‹γ‚¦γƒ γ«γͺγ‚Œγ‚‹γ‚“γ§γ™γ‹οΌŸ", + "quests.high_voltage.rutile_loop_2.desc.1": "γƒγ‚Ώγƒ³γ‚’δ½œγ‚‹γ«γ―γ€γΎγš&aルチル&rγ‚’&3HVεŒ–ε­¦εεΏœε™¨&rで&aε››ε‘©εŒ–γƒγ‚Ώγƒ³&rに倉換し、欑に&3EBF&rで&dγƒžγ‚°γƒγ‚·γ‚¦γƒ &rγ¨εεΏœγ•γ›γ¦ι‚„ε…ƒγ—γ€γƒγ‚Ώγƒ³γ‚’εΎ—γΎγ™γ€‚\n\nこγιŽη¨‹γ§δ½Ώγ†&dη‚­η΄ &r、&dε‘©η΄ &r、&dι…Έη΄ &r、そして&dγƒžγ‚°γƒγ‚·γ‚¦γƒ &rは、副産物γ&dδΈ€ι…ΈεŒ–η‚­η΄ &rγ‚„&dε‘©εŒ–γƒžγ‚°γƒγ‚·γ‚¦γƒ &rから&6εŒε…¨γ«ι‚„ε…ƒ&rγ§γγ‚‹γŸγ‚γ€ζε€±γ―δΈ€εˆ‡γ‚γ‚ŠγΎγ›γ‚“γ€‚εΎͺ環システムをうまく硄めば、εŸθ³ͺηš„γ«γƒγ‚Ώγƒ³γεŽŸζ–™γ¨γ—γ¦εΏ…θ¦γͺγγ―&aルチル&rだけにγͺγ‚ŠγΎγ™οΌ", + "quests.high_voltage.rutile_loop_2.desc.2": "&aε››ε‘©εŒ–γƒγ‚Ώγƒ³&rγ―γ€γƒ—γƒ©γ‚Ήγƒγƒƒγ‚―η”Ÿζˆζ™‚γθ§¦εͺ’γ¨γ—γ¦γ‚‚εˆ©η”¨γ§γγΎγ™γ€‚θ©³γ—γθͺ¬ζ˜Žγ™γ‚‹γ¨γ€ι‡εˆεεΏœγ«ε°‘しだけ&aTiClβ‚„&rγ‚’εŠ γˆγ‚‹γ“γ¨γ§γ€γƒγƒͺγƒžγƒΌγη”Ÿζˆι‡γ‚’&6133οΌ…&r&rγΎγ§ι«˜γ‚γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ‚‚γ‘γ‚γ‚“γ€εΏ…ι ˆγε·₯η¨‹γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.high_voltage.superconductors.title": "HVθΆ…δΌε°Žδ½“", + "quests.high_voltage.superconductors.desc": "こγζ΅ιšŽγ«γͺγ‚‹γ¨γ€ι€šεΈΈγγ‚±γƒΌγƒ–γƒ«γ§γ‚‚ζε€±γŒγ»γ¨γ‚“γ©γͺγ„γŸγ‚γ€θΆ…δΌε°Žδ½“γ―εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚γŸγ γ—γ€γ‚±γƒΌγƒ–γƒ«γ‚’θ‡ͺη”±γ«εˆ†ε²γƒ»η΅εˆγ§γγ‚‹εˆ©δΎΏζ€§γŒγ‚γ‚Šγ€γΎγŸγ“γι‡‘ε±žγ―εŽŸζζ–™γεŠεˆ†γŒι…Έη΄ γ§γ§γγ¦γ„γ‚‹γŸγ‚ζ―”θΌƒηš„ε‰δΎ‘γ«δ½œγ‚ŒγΎγ™γ€‚\n\nγ©γ‘γ‚‰γ«γ›γ‚ˆγ€&aη©Ίι–“η™Ίη”Ÿε™¨&rγθ£½δ½œγ«γ―θΆ…δΌε°Žδ½“γŒεΏ…θ¦γͺγγ§γ€γ„γšγ‚Œγ―η”¨ζ„γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.high_voltage.nichrome_coils.title": "ニクロムコむル", + "quests.high_voltage.nichrome_coils.subtitle": "輝くあγζ˜Ÿγ‚’η›ζŒ‡γ—て", + "quests.high_voltage.nichrome_coils.desc.1": "&3ニクロムコむル&rを使うことで、&3EBF&rγζœ€ι«˜ζΈ©εΊ¦γ‚’&d3,600K&rγΎγ§δΈŠγ’γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n現時点では&oεΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“&rγŒγ€γƒ‘γ‚€γƒ³γ&3EBF&rγ‚’γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ—γ¦γŠγγ¨γ€&6γ‚³γ‚€γƒ«γƒœγƒΌγƒŠγ‚Ή&rγ«γ‚ˆγ‚‹ζ€§θƒ½ε‘δΈŠγ‚’εŸζ„Ÿγ§γγ‚‹γγ§γŠγ™γ™γ‚γ§γ™γ€‚", + "quests.high_voltage.nichrome_coils.desc.2": "&l&3δ½™θ«‡οΌš&r&oε…ƒγGT5γ γ¨γ€γ‚³γ‚€γƒ«γŒ3η¨ι‘žγ—かγͺくて、こγγƒ‹γ‚―γƒ­γƒ γ‚³γ‚€γƒ«γŒδΈ€η•ͺ上γγ γ£γŸγ‚“γ γ‚ˆγ€‚γ“γ‚Œγ§γ€‚", + "quests.high_voltage.titanium.title": "チタニウム", + "quests.high_voltage.titanium.desc": "&aチタン&rγ―γ€ε…¨ι‡‘ε±žγδΈ­γ§γ‚‚ζœ€ι«˜γθ€ι£Ÿζ€§γ¨εΌ·εΊ¦ε―Ύι‡ι‡ζ―”γ‚’θͺ‡γ‚‹ε„ͺγ‚ŒγŸη΄ ζγ§γ™γ€‚γγγŸγ‚γ€&5EV&rでは主要素材として使用することにγͺγ‚ŠγΎγ™γ€‚\n\n&aルチル&rγε†εˆ©η”¨γƒ«γƒΌγƒ—γŒγ—γ£γ‹γ‚Šζ©Ÿθƒ½γ—γ¦γ„γ‚‹γ‹η’Ίθͺγ—、専用γ&3EBF&rγ‚’ε‰εšη¨Όεƒγ•γ›γ‚‹ζΊ–ε‚™γ‚’ζ•΄γˆγΎγ—γ‚‡γ†γ€‚\n\nけγͺみに、&5EV&rγ«εˆ°ι”γ™γ‚‹γ¨ε°εž‹η™Ίι›»ζ©Ÿγ―ζ™‚δ»£ι…γ‚Œγ«γͺγ‚ŠγΎγ™γ€‚ζœ€εˆγ―θ€‡ζ•°γ&3HVη™Ίι›»ζ©Ÿ&rγ‚’δ½΅η”¨γ—γ¦ι›»εŠ›γ‚’η’ΊδΏγ™γ‚‹εΏ…θ¦γŒγ‚γ‚Šγ€γ„γšγ‚Œγ―ε€§εž‹η™Ίι›»ζ©ŸγΈγεˆ‡γ‚Šζ›ΏγˆγŒεΏ…ι ˆγ«γͺγ‚ŠγΎγ™γ€‚\n\nε€§εž‹η™Ίι›»ζ©Ÿγ―δ½œγ‚‹γγ«ζ‰‹ι–“γŒγ‹γ‹γ‚ŠγΎγ™γŒγ€γγεˆ†&6ιžεΈΈγ«ι«˜εŠΉηŽ‡&rγ§γ™γ€‚θ©³γ—γγ―γ€Œ&dGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ &r」γη« γ‚’η’Ίθͺγ—てみましょう。", + "quests.high_voltage.vacuum_freezer.title": "冷却", + "quests.high_voltage.vacuum_freezer.subtitle": "ζœ¬ε½“γ―ηœŸη©ΊηŠΆζ…‹γ γ¨η†±γγͺるってηŸ₯ってた?", + "quests.high_voltage.vacuum_freezer.desc": "&3ηœŸη©Ίε†·ε΄ζ©Ÿ&rは、&eη†±γ„γ‚€γƒ³γ‚΄γƒƒγƒˆ&rγ‚’ε†·ε΄γ™γ‚‹γŸγ‚γγƒžγƒ«γƒγƒ–ロック装η½γ§γ™γ€‚EBFで&d1750K&rδ»₯上γζΈ©εΊ¦γ‹γ‚‰δ½œγ‚‰γ‚Œγ‚‹γ‚€γƒ³γ‚΄γƒƒγƒˆγ―、すべてこγθ£…η½γ§ε†·ε΄γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγŸγ„γ¦γ„γ€γ“γε·₯程は&3EBF&rでγε·₯η¨‹γ‚ˆγ‚Šγ‚‚ζ™‚ι–“γŒγ‹γ‹γ‚‹γ“γ¨γ―γͺいγγ§γ€ηœŸη©Ίε†·ε΄ζ©Ÿγ‚’γ‚ͺγƒΌγƒγƒΌγ‚―γƒ­γƒƒγ‚―γ™γ‚‹εΏ…θ¦γ―γ»γ¨γ‚“γ©γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\n&eη†±γ„γ‚€γƒ³γ‚΄γƒƒγƒˆ&rγ―ζ‰‹γ«ζŒγ€γ¨&c火傷する&rγγ§γ€θ‡ͺε‹•ι‹ζ¬ζ©Ÿζ§‹γ‚’δ½Ώγ£γ¦ε‰ε…¨γ«θ‡ͺε‹•ηš„γ«ε‡¦η†γ™γ‚‹γγŒγŠγ™γ™γ‚γ§γ™γ€‚", + "quests.high_voltage.mv_superconductors.title": "MVθΆ…δΌε°Žδ½“", + "quests.high_voltage.mv_superconductors.desc": "&a4A&rγ&bMV&rι›»εŠ›γ‚’ι€γ‚Œγ‚‹ζ€§θƒ½γ―ι­…εŠ›ηš„γ§γ™γŒγ€δ»Šγζ΅ιšŽγ§γ―η‰Ήγ«εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“γ€‚γ‚‚γ‘γ‚γ‚“γ€δ½œγ£γŸγ£γ¦γ‹γΎγ„γΎγ›γ‚“γ‚ˆγ€‚", + "quests.high_voltage.circuit_assembler.title": "HVε›žθ·―δ½œζˆζ©Ÿ", + "quests.high_voltage.circuit_assembler.subtitle": "γΎγšγ―γ‚―γƒͺーンルームを用意しましょう", + "quests.high_voltage.circuit_assembler.desc": "ζ–°γ—γ„εž‹γ&3ε›žθ·―δ½œζˆζ©Ÿ&rです。&aγƒžγ‚€γ‚―γƒ­γƒ—γƒ­γ‚»γƒƒγ‚΅γƒΌγƒ‘γ‚€γƒ³γƒ•γƒ¬γƒΌγƒ &r(ζœ€γ‚‚εˆζ­©ηš„γͺIVε›žθ·―)γ‚’δ½œγ‚‹γŸγ‚γ«εΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚δΈ»γ«&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パむンフレームγη”»εƒγ‚’もとにしています。", + "quests.high_voltage.cleanroom.title": "γ‚―γƒͺーンルーム", + "quests.high_voltage.cleanroom.subtitle": "あγͺγŸγ―η™½γ„ιƒ¨ε±‹γŒε₯½γγ§γ™γ‹οΌŸ", + "quests.high_voltage.cleanroom.desc.1": "&3γ‚―γƒͺーンルーム&rは、内部γη©Ίι–“γ‚’ζΈ…ζ½”γ«δΏγ€γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ§γ™γ€‚γ“γ‚Œγ‹γ‚‰ε…ˆγ€γ»γ¨γ‚“γ©γ&aε›žθ·―ι–’ι€£γƒ¬γ‚·γƒ”&rや、&3ζ Έθžεˆη‚‰γƒžγ‚·γƒ³ε€–θ£…&rγͺどγη‰ΉζŠγͺブロックは、クγƒͺーンルームγδΈ­γ§γ—γ‹δ½œγ‚Œγͺくγͺγ‚ŠγΎγ™γ€‚\n\n建設には倧量γ&dプラスクγƒͺγƒΌγƒˆ&rγ‚„&dγ‚―γƒͺーンルームガラス&rγŒεΏ…θ¦γ«γͺγ‚‹γŸγ‚γ€&aポγƒͺエチレン&rγι‡η”£δ½“εˆΆγ‚’ζ•΄γˆγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nζœ€εˆγ―5x5x5γεŸΊζœ¬ηš„γͺγ‚―γƒͺーンルームから始めましょう。ηͺε±ˆγ«ζ„Ÿγ˜ε§‹γ‚γŸγ‚‰γ€γ©γ‚“γ©γ‚“ζ‹‘εΌ΅γ—γ¦γ„γ‘γ°γ„γ„γγ§γ™γ€‚", + "quests.high_voltage.cleanroom.desc.2": "&l&3δ½™θ«‡οΌš&r&oγ‚―γƒͺーンルームγδ»•硄みはGT5γ‹γ‚‰εΌ•γηΆ™γŒγ‚ŒγŸγ‚‚γγͺんだけど、そγι ƒγ―δ»Šγ‚ˆγ‚Šγ‚‚γšγ£γ¨ε€§ε€‰γͺδ»•ζ§˜γ γ£γŸγ‚“γ γ€‚ζΈ…ζ½”εΊ¦γ«ι–’δΏ‚γͺγγ‚―γƒ©γƒ•γƒˆγ―γ§γγŸγ‚“γ γ‘γ©γ€γ‚―γƒͺーンルームγζΈ…桄度に比例してεŒζˆη’ΊηŽ‡γŒε€‰γ‚γ£γ¦γŸγ‹γ‚‰γ€γ‘ゃんとしてγͺγ„γ¨γ‚’γ‚€γƒ†γƒ γŒζΆˆγˆγŸγ‚Šγ—γŸγ‚“γ γ‚ˆοΌ\n\n&oあと、クγƒͺγƒΌγƒ³γƒ«γƒΌγƒ γ«γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγ•γ‚Œγ¦γͺいと清潔度γδΈŠι™γŒ90οΌ…γ«εˆΆι™γ•γ‚Œγ‚‹γ‹γ‚‰γ€γ„γ€γγΎγ«γ‹10οΌ…γη’ΊηŽ‡γ§ζˆζžœη‰©γŒζΆˆγˆγ‚‹γ‚ˆγ†γ«γͺγ£γŸγ‚Šγ—γ¦γŸγ‚“γ γ€‚η†δΈε°½γ γ­γ€‚\n\n&oGTCEuη‰ˆγγ‚―γƒͺーンルームγͺγ‚‰γ€γ‚’γ‚€γƒ†γƒ γŒ&6梈倱&fγ™γ‚‹γ“γ¨γ―γΎγšγͺいからε‰εΏƒγ—てね。", + "quests.high_voltage.prospector.title": "η™Ίε±•εž‹ι›»ε‹•ζŽ’ηŸ₯機", + "quests.high_voltage.prospector.desc.1": "こγζŽ’ηŸ₯ζ©Ÿγ―γ€&7LV&rη‰ˆγ‚ˆγ‚Šγ‚‚&6排ηŸ₯η―„ε›²γŒεΊƒγŒγ£γ¦γ„γΎγ™&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&9Tips:&rεŸ‹θ”΅ι‡γŒ30οΌ…δ»₯下にγͺγ£γŸε ΄εˆγ€ι›»εŠ›εŠΉηŽ‡γ‚’θ€ƒγˆγ¦ζŽ‘ε–ε ΄ζ‰€γ‚’η§»γ—γŸζ–ΉγŒθ‰―γ„γ§γ™γ‚ˆγ€‚γΎγŸ&5EV&rγ‹γ‚‰δ½Ώγ†γ“γ¨γŒγ§γγ‚‹&3η™Ίε±•εž‹ζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿ&rγ‚’η›ζ¨™γ«γ™γ‚‹γγ‚‚θ‰―γ„γ§γ—γ‚‡γ†γ€‚γ“γ‚Œγ«γ‚ˆγ‚Šε‡ΊεŠ›γŒθΆ…ε€§εΉ…γ«ε’—εŠ γ—γ€ι‰±θ„ˆγζΆˆθ€—ι€ŸεΊ¦γ‚‚δ½ŽδΈ‹γ—γΎγ™γ€‚\n\n&cζ³¨ζ„οΌš&rγƒγ‚°γ«γ‚ˆγ‚Šγ€ζŽ’ι‰±ζ©Ÿγθ‘¨η€ΊγŒ1γƒγƒ£γƒ³γ‚―γšγ‚Œγ‚‹γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚ζΆ²δ½“ι‰±θ„ˆγη«―γ§ζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿγ‚’η¨Όεƒγ™γ‚‹γγ―避けてください。狙っていγͺγ„ζΆ²δ½“γ‚’ζ±²γΏδΈŠγ’γ¦γ—γΎγ†γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“οΌ", + "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です。", + "quests.high_voltage.ptfe.title": "ポγƒͺγƒ†γƒˆγƒ©γƒ•γƒ«γ‚ͺロエチレン", + "quests.high_voltage.ptfe.subtitle": "またγεγ‚’テフロン", + "quests.high_voltage.ptfe.desc": "&aポγƒͺγƒ†γƒˆγƒ©γƒ•γƒ«γ‚ͺγƒ­γ‚¨γƒγƒ¬γƒ³οΌˆι€šη§°οΌšPTFEοΌ‰&rは、&7η‚­η΄ &rと&bフッ素&rからγͺγ‚‹ι«˜εˆ†ε­εŒ–εˆη‰©γ§γ™γ€‚PVCγ¨εŒζ§˜γ«γ€PTFEγ―γƒ—γƒ©γ‚Ήγƒγƒƒγ‚―θ£½ε›žθ·―εŸΊζΏγͺどγθ£½δ½œεŠΉηŽ‡γ‚’ε‘δΈŠγ•γ›γ‚‹η”¨ι€”γ«δ½ΏγˆγΎγ™γ€‚ηΎεœ¨γ§γ―、&3ε€§εž‹εŒ–ε­¦εεΏœη‚‰&rγη΄ ζγ¨γ—γ¦γ‚‚δ½Ώη”¨γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nこγη”ŸζˆιŽη¨‹γ§γ―&3ε‘©η΄ &rγ‚‚θ¦ζ±‚γ•γ‚Œγ¦γ„γΎγ™γŒγ€η”Ÿζˆγ•γ‚Œγ‚‹&aε‘©εŒ–ζ°΄η΄ &rγ‚’ι›»θ§£γ™γ‚Œγ°γ€&6εŒε…¨γ«γƒ«γƒΌγƒ—&rγ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&bフッ素&rγ―γ€δ»ŠεΎŒ&aウラン&rγ‚„&7γƒŠγ‚―γ‚’γƒ€&rγη²Ύθ£½γ«γ‚‚使います。\n\n&9Tips:&rγ“γ‚Œδ»₯降は、ポγƒͺγƒžγƒΌι‘žγ―&dγ‚€γƒ³γ‚΄γƒƒγƒˆ&rγε½’で保η‘γ—γ¦γŠγγγŒγŠγ™γ™γ‚γ§γ™γ€‚&3ζŠΌε‡Ίζ©Ÿ&rγ‚’δ½Ώγ£γ¦γ€η°‘ε˜γ«ζˆε½’γ§γγΎγ™γ€‚", + "quests.high_voltage.nitrobenzene.title": "γƒ‹γƒˆγƒ­γƒ™γƒ³γ‚Όγƒ³", + "quests.high_voltage.nitrobenzene.subtitle": "か぀てγζ „光は見る影もγͺく", + "quests.high_voltage.nitrobenzene.desc": "TerraFirmaGregでは、&aγƒ‹γƒˆγƒ­γƒ™γƒ³γ‚Όγƒ³&rと&aベンゼン&rγ―ε€§εΉ…γ«εΌ±δ½“εŒ–γ•γ‚Œγ¦γ„γΎγ™γ€‚η‡ƒζ–™γ¨γ—γ¦δ½Ώγ†γ“γ¨γ‚‚γ§γγΎγ™γŒγ€εŸΊζœ¬ηš„γ«γ―η΄ ζγ¨γ—γ¦εˆ©η”¨γ™γ‚‹γ“γ¨γ«γͺるでしょう。\n\nγΎγŸγ€γƒ‹γƒˆγƒ­γƒ™γƒ³γ‚Όγƒ³γ―γ€δ½œγ‚‹ιŽη¨‹γ§ε°‘γ—γšγ€&dη‘«ι»„&rγ‚’ζΆˆθ²»γ—γ¦γ„γγŸγ‚ζ³¨ζ„γ—γ¦γγ γ•γ„γ€‚", + "quests.high_voltage.lcr.title": "ε€§εž‹εŒ–ε­¦εεΏœη‚‰", + "quests.high_voltage.lcr.desc.1": "&3ε€§εž‹εŒ–ε­¦εεΏœη‚‰οΌˆι€šη§°οΌšLCRοΌ‰&rγ―γ€ι€šεΈΈγ&3εŒ–ε­¦εεΏœε™¨&rγε€§εž‹ζ©Ÿζ’°γ§γ‚γ‚Šγ€γ‚ˆγ‚Šε€šγγζ¬ε…₯γƒ»ζ¬ε‡Ίγ‚Ήγƒ­γƒƒγƒˆγ‚’ε‚™γˆγ¦γ„γΎγ™γ€‚ε€–θ£…γ«γ―PTFEοΌˆγƒ†γƒ•γƒ­γƒ³οΌ‰γŒδ½Ώγ‚γ‚Œγ¦γŠγ‚Šγ€γ“γ‚Œγ«γ‚ˆγ£γ¦ι€šεΈΈγεŒ–ε­¦εεΏœε™¨γ§γ―ζ‰±γˆγͺいレシピも処理できます。\n\n&3LCR&rでは、一部γ&3εŒ–ε­¦εεΏœε™¨&rγγƒ¬γ‚·γƒ”γ‚’&6δΈ€ζ°—γ«ε‡¦η†γ™γ‚‹γ“γ¨γŒγ§γγΎγ™&r。δ»₯δΈ‹γŒγγδΎ‹γ§γ™οΌš\n\n&9-&r&aδΊŒι…ΈεŒ–ηͺ’η΄ &rοΌˆη‘ι…Έγ‚„ε››ι…ΈεŒ–δΊŒηͺ’η΄ γθ£½ι€ η”¨οΌ‰\n&9-&r&aη‘«ι…Έ&r\n&9-&r&aγƒ•γ‚§γƒŽγƒΌγƒ«&r\n&9-&r&aエピクロロヒドγƒͺン&rοΌˆγ‚¨γƒγ‚­γ‚·ζ¨Ήθ„‚γθ£½ι€ γ«εΏ…要)\n&9-&r&aエポキシ&r", + "quests.high_voltage.lcr.desc.2": "&3LCR&rγ«γ―ε°‚η”¨γƒ¬γ‚·γƒ”γ‚‚ε­˜εœ¨γ—γΎγ™γ€‚γŸγ¨γˆγ°γ€&d直留ガソγƒͺン&rはLCRγ§γ—γ‹δ½œγ‚‹γ“γ¨γŒγ§γγΎγ›γ‚“γ€‚\n\nLCRγ&dγ‚ͺーバークロック&rはεŒε…¨γ«&6100οΌ…εŠΉηŽ‡&rγ€γ„γ‚γ‚†γ‚‹γ€Œγƒ‘γƒΌγƒ•γ‚§γ‚―γƒˆγ‚ͺーバークロック」(POC)γ§γ™γ€‚γ€γΎγ‚Šγ€ε„ζ΅ιšŽγ§ε‡¦η†ι€ŸεΊ¦γŒ&54倍&rγšγ€ε‘δΈŠγ—γ¦γ„γγΎγ™οΌˆι€šεΈΈγ―2倍です)。\n\nさらにもう一぀γ&6εˆ©η‚Ή&rとして、&32基γγ‚¨γƒγƒ«γ‚ーハッチ&rγ‚’ε–γ‚Šδ»˜γ‘γ‚‹γ“γ¨γ§γ€&5δΈŠδ½ι›»εœ§&rγγƒ¬γ‚·γƒ”γ‚’εˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γ“γ‚Œγ―&3EBF&rと同様γδ»•硄みです。", + "quests.high_voltage.lcr.desc.3": "&9Tip:&r耇数γLCRを使用することにγͺγ‚‹ε ΄εˆγ€&dγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γε…±ζœ‰&rγ‚’ζœ€ε€§ι™ζ΄»η”¨γ™γ‚‹γγŒγŠγ™γ™γ‚γ§γ™γ€‚\n\nγŸγ¨γˆγ°γ€1぀γ&3エネルγ‚γƒΌγƒγƒƒγƒοΌˆ2AοΌ‰&rγ‚’2台γLCRγ§ε…±ζœ‰γ§γγΎγ™γ€‚\n\nγΎγŸγ€&3搬ε…₯・搬出ハッチ&rγ‚’ε…±ζœ‰γ™γ‚‹γ“γ¨γ‚‚ε―θƒ½γ§γ™γŒγ€γγε ΄εˆγγ‚Œγžγ‚ŒγLCRγŒζ­£γ—γε‹•δ½œγ—γ¦γ„γ‚‹γ‹γ‚’η’Ίθͺγ—γŸγ»γ†γŒθ‰―いです。\n\nγͺγŠγ€γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒγƒƒγƒγ―ε…±ζœ‰γ§γγͺいγγ§ζ³¨ζ„γ—ましょう。", "quests.high_voltage.tnt.title": "TNT", "quests.high_voltage.tnt.task": "Any explosive", - "quests.high_voltage.tnt.desc.1": "Get ready to make some explosives, as they will be required for the &cImplosion Compressor&r. You have four options, from easy to hardest, but we advise you to work towards the &dIndustrial TNT&r whenever you can.", - "quests.high_voltage.tnt.desc.2": "&cTNT&r (Trinitrotoluene) can't be prepared with the usual Gunpowder and Sand anymore. Instead, you'll have to produce &aGelled Toluene&r and react it with Sulfuric Acid to make TNT.\n\nUsing the &3HV Chemical Reactor&r recipe will double the yield of &aGelled Toluene&r at the cost of requiring additional inputs.", - "quests.high_voltage.tnt.desc.3": "We don't have any easy tips to give you for &aToluene&r. It's going to be tricky no matter which route you take.\n\nThat being said, don't miss out on the direct &aHeavy Fuel&r to &aToluene&r recipe in the single block &3Distillery&r.\n\n&aToluene&r can also optionally be used in &5EV&r to make &dGasoline&r.\n\n&cTNT&r is used in the &3Implosion Compressor&r to make Gems. It also blows stuff up.", - "quests.high_voltage.ender_pearls.title": "Ender Pearls", - "quests.high_voltage.ender_pearls.subtitle": "Sci-fi gemstones, or something", - "quests.high_voltage.ender_pearls.desc": "You won't find any Endermen dropping Ender Pearls in TFG.\nEven the ones lurking in the Beneath won’t help you there.\n\nInstead, your only option for now is to craft them yourself:\n\nCombine &2Beryllium Dust&r and &2Potassium Dust&r in a &6HV&r Mixer to create the elusive &5Ender Dust&r.\n\nOnce that's done, throw it into an &8Implosion Compressor&r and recreate the iconic Ender Pearl β€” GregTech style.", - "quests.high_voltage.boules.title": "Phosphorus Boules", - "quests.high_voltage.boules.subtitle": "That's dope, bro!", - "quests.high_voltage.boules.desc": "Doping is the process of intentionally introducing impurities into semiconductors to alter their properties.\n\n&7Silicon&r can be doped with small amounts of &ePhosphorus&r to make a better &eSilicon Boule&r.\n\nPhosphorus-doped Silicon Boules typically yield &68 times&r more wafers than their non-doped counterparts. However, they are not strictly needed until &5EV&r, where they'll be used in more complex wafers.\n\n&9Note&r: All processing of Phosphorus Boules and Wafers will require a &dCleanroom&r.", - "quests.high_voltage.implosion_compressor.title": "Implosion Compressor", - "quests.high_voltage.implosion_compressor.desc": "The &3Implosion Compressor&r turns the Dust form of Gems into their Gem form.\n\nIt's required to get &aEnder Pearls&r.\n\n&cTNT&r can be used for the Implosion.", - "quests.high_voltage.nitric_acid.title": "Nitric Acid", - "quests.high_voltage.nitric_acid.subtitle": "This won't eat your skin", - "quests.high_voltage.nitric_acid.desc.1": "Nitric Acid's fumes are extremely toxic! It's also a very potent oxidizer.\n\n&aNitric Acid&r is used in:\n\n&9-&r Cetane-Boosted Diesel, a better Diesel fuel that you'll get to soon.\n&9-&r Nitrobenzene, a better Gas fuel that we're not far off making.\n&9-&r The optional gem slurry chains.\n&9-&r The Platinum Group Sludge chain in &1IV&r.\n&9-&r Polybenzimidazole (try saying that ten times fast!) in &1IV&r.", - "quests.high_voltage.nitric_acid.desc.2": "There are two main ways to make &aNitric Acid&r - &othe &agood&f way and the &4bad&f ways!&r\n\nTherefore, we'll point you towards the best method:\n\nGet a &3Large Chemical Reactor&r and use it to make &aNitrogen Dioxide&r. From there, react it in a regular &3Chemical Reactor&r with more &dOxygen&r and &dWater&r and you got yourself some &aNitric Acid&r!\n\nThis requires a lot of &dOxygen&r. Refer to its own Quest in &7LV&r for the most efficient ways to obtain in large amount. Notice that this is Hydrogen free!", - "quests.high_voltage.cetane_diesel.title": "Cetane-boosted Diesel", - "quests.high_voltage.cetane_diesel.subtitle": "This is to go further beyond", - "quests.high_voltage.cetane_diesel.desc": "Now that you unlocked the &6HV&r Mixer and have access to &eNitric Acid&r, it becomes possible to make &aCetane Boosted Diesel&r, granting a &e180%%&r increase in potency.\n\nThe only tricky part is obtaining &bTetranitromethane&r. We recommend producing it by mixing &9Nitric Acid&r and &dEthenone&r. Ethenone itself isn’t hard to make if you combine &9Sulfuric Acid&r - which you should have plenty of by now - and &cAcetic Acid&r, easily produced from &3Oxygen&r and &5Ethylene&r.\n\n&cDon’t forget&r to set your machine on Circuit 2, or else you’ll end up producing &6Polyethylene&r instead!", - "quests.high_voltage.smd_components.title": "SMD Components", - "quests.high_voltage.smd_components.subtitle": "Alternate components!", - "quests.high_voltage.smd_components.desc": "The &eSMD&r (surface-mount device) &aComponents&r are CEu-exclusive components that are required for the next tier of circuits (&5Nano&r). They can also be used in place of their non-SMD counterparts in most Circuit recipes.\n\nOf course they're more complicated to make, this is GregTech! What did you expect?\n\nInvest in automation for these - you won't stop needing them.", - "quests.high_voltage.smd_components_2.title": "More SMD Components", - "quests.high_voltage.smd_components_2.desc": "&aPlatinum&r (needed for SMD Diodes) has its own dedicated Quest in the &5EV&r tab. But you could also get Platinium directly from Platinium vein or Chemical Washer processing.\n\n&l&3Lore:&r&o The SMD Inductors make an appearance in GTCEu for the first time. It's more consistent and convenient to have all Circuit components receive an SMD counterpart.", - "quests.high_voltage.hv_macerator.title": "Universal Macerator", - "quests.high_voltage.hv_macerator.subtitle": "Shredding your Ores with byproducts", - "quests.high_voltage.hv_macerator.desc.1": "The &3HV Macerator&r finally unlocks more of the slots shown in JEI. With this, &9all&r of the slots are now available. This also allows you to receive the &6unique ore Byproduct&r from macerating &dThermal &dCentrifuged Ore&r.\n\nMacerating Ores costs &a32 EU/t&r with &5two overclocks&r, which makes this machine able to fit in &7LV&r lines - very, very convenient.\n\nDespite the signicant improvements this machine provides, it still isn't completely worth it to set up advanced processing for every single ore. Energy and time are still things to consider!", - "quests.high_voltage.hv_macerator.desc.2": "&l&3Lore:&r&o In GregTech 5u, the &6HV&r&o Macerator only gave two slots. Urgh... we weren't planning on using that Stone Dust, anyway...", - "quests.high_voltage.ammonia.title": "Ammonia", - "quests.high_voltage.ammonia.desc": "&aAmmonia&r is &doptional&r in &6HV&r.\n\nYou may use it in the production of:\n&9-&r Nitric Acid, although we don't recommend this.\n&9-&r Rocket Fuel, required to leave this planet.\n&9-&r Polybenzimidazole (now THAT'S a tongue twister!) in &1IV&r.\n\nThe \"least painful\" recipe should be the one in the &3HV Chemical Reactor&r. Make sure your &aHydrogen&r production (mostly from &aWater electrolysis&r) is enough to support the demand.\n\nYou could also obtain &aAmmonia&r as a waste product from &dPlatinum Group Sludge&r processing.", - "quests.high_voltage.hv_mixer.title": "High Voltage Mixer", - "quests.high_voltage.hv_mixer.subtitle": "Mixing never got so good", - "quests.high_voltage.hv_mixer.desc": "You will need the &6HV&r Mixer to make the &6Rocket Alloy&r, but that's not its only useful recipe.\n\nIt also unlocks:\n- &dIndium&r\n- &eCetane Boosted Diesel&r\n- The valuable &6Ultimet Alloy&r used for &9Turbine Rotors&r\n- &dFluix Crystals&r, which is absolutely essential for &dAE2&r", - "quests.high_voltage.blue_alloy.title": "Blue Alloy", - "quests.high_voltage.blue_alloy.subtitle": "You're blue now... that's my alloy", - "quests.high_voltage.blue_alloy.desc": "&aBlue Alloy&r is an excellent Cable material for &6HV&r power.\n\nNothing is preventing you from using it for &bMV&r power too! Make sure that you don't overvolt your machines, though.\n\nSuperconductors for &6HV&r are unlocked... later.\n\n&aElectrotine&r is obtained as an ore, so don't craft it in the Mixer!\n\nFurthermore, &aElectrotine&r can be separated for &dElectrum&r and &dRedstone&r.", - "quests.high_voltage.ev_circuits.title": "First EV Circuits!", - "quests.high_voltage.ev_circuits.subtitle": "Standing out amongst the rest", - "quests.high_voltage.ev_circuits.desc": "Your first &5EV&r Circuit gets a unique texture. If you still consider yourself to be in &bMV&r, &ahold off&r on making too many of these, as they won't benefit you right now. We can't stop you from making these if you &djust wanna flex&r on us, though.", - "quests.high_voltage.hv_hull.title": "Welcome to HV!", - "quests.high_voltage.hv_hull.subtitle": "Soon to be a minestronaut", - "quests.high_voltage.hv_hull.desc.1": "&2We hope you're getting the hang of &9GregTech&r, because now it's time to push your skills a bit further.\nIn this chapter, you'll unlock &eadvanced multiblocks&r, &ecomplex processes&r, and even take your first steps onto the &fMoon&r!\n\n&6For this chapter, you have two main goals :&r\n- Craft your first &5EV&r Machine Hull\n- Begin your journey to the &fMoon&r\n\nUnlocking the Moon will also grant access to &bCertus Quartz&r, paving the way for &dApplied Energistics 2&r. You’re free to tackle these objectives in any order you prefer.", - "quests.high_voltage.hv_hull.desc.2": "To craft the &5EV&r Machine Hull:\n- Build your first &aCleanroom&r\n- Construct a &bVacuum Freezer&r to cool hot ingots\n- Process &9Rutile&r into &7Titanium&r\n\nYou'll find plenty of &9Rutile&r on the &fMoon&r, but it can also be located in &eBauxite&r veins in the &aOverworld&r.", - "quests.high_voltage.hv_hull.desc.3": "To reach the Moon:\n- Craft a generous amount of &6Rocket Alloy&r\n- Create your first &eEnder Eye&r using the &3Chemical Bath&r and the &8Implosion Compressor&r\n- Prepare all the &bequipment&r you'll need to &bbreathe in space&r\n\nGetting the &bVacuum Freezer&r and &6better coils&r will speed up &6Rocket Alloy&r production, but they’re not mandatory.\n\n&dChoose your path!&r", - "quests.high_voltage.nichrome.title": "Nichrome Ingots", - "quests.high_voltage.nichrome.subtitle": "It doesn't have much use", - "quests.high_voltage.nichrome.desc": "Your third alloy is here and it's essential for your next set of coils in the &6EBF&r.\n\nAs usual you will need &9128 ingots&r but this time you’ll notice that you can’t use a &6Chemical Washer&r. Instead, you're required to use a &6Vacuum Freezer&r.\n\nGood news: it’s actually simpler and faster.\n\nYou’ll only be using &6Nichrome&r for these coils, but don’t get too comfortable β€” it will return later for the next set of &5RTM Coils&r.", - "quests.high_voltage.rocket_t1.title": "Your First Rocket!", - "quests.high_voltage.rocket_t1.subtitle": "The first of many", - "quests.high_voltage.rocket_t1.desc": "Wow, it's time to build your &6Rocket&r!\n\nAssemble all the parts with &d8 Dense Rocket Alloy&r. To finish the insulation, you'll need &b2304mb&r of &bLiquid Silicon&r (&b16 ingots&r) and &f16 pieces of dust&r.\n\nYou have two choices:\n&e-&r &eBorosilicate Glass Dust&r β€” crafted in a &6Mixer&r with &dBoron&r and &fGlass Dust&r\n\n&e-&r &5Vitrified Asbestos&r β€” obtained through a &6Pyrolysis Oven&r\n\nGo with whichever's easiest for you!", - "quests.high_voltage.vitrified_pearl.title": "Vitrified Ender Pearl", - "quests.high_voltage.vitrified_pearl.subtitle": "An Exotic Ceramic", - "quests.high_voltage.vitrified_pearl.desc": "Heat the Ender Pearl in a &ePyrolyse Oven&r along with some appropriate insulation to properly vitrify it into something resembling a &3ceramic&r.\n\nYou won’t need many of these for now β€” at minimum, just one for your &6Rocket&r and another for your &6HV Circuit Assembler&r.\nBut be warned: from &5EV&r and beyond, the demand will rise quickly.", - "quests.high_voltage.kaolinite_powder.title": "High-Temperature Refractory Fire Clay", - "quests.high_voltage.kaolinite_powder.subtitle": "You didn't miss me, right?", - "quests.high_voltage.kaolinite_powder.desc": "So the bad news is you've got an upcoming reunion with an old friend. The good news is the reunion is at your own house!\n\nIf you've got any &4kaolinite&r left over from forever ago, time to dig it out of your old forge building and put it to use. And if you don't, well, now you can just make it at home!\n\nKaolinite will be used again in some upcoming recipes for industrial ceramics and heat shielding.", - "quests.high_voltage.linked_quest_energy.title": "More information about energy", + "quests.high_voltage.tnt.desc.1": "&cε†…η ΄εœ§ηΈζ©Ÿ&rに必要とγͺγ‚‹ηˆ†θ–¬γ‚’δ½œγ‚‹ζΊ–ε‚™γ‚’γ—γΎγ—γ‚‡γ†γ€‚η°‘ε˜γͺγ‚‚γγ‹γ‚‰ι›£γ—いもγγΎγ§4η¨ι‘žγιΈζŠžθ‚’γŒγ‚γ‚ŠγΎγ™γŒγ€ε―θƒ½γ§γ‚γ‚Œγ°&dε·₯ζ₯­TNT&rγ‚’η›ζŒ‡γ™γγŒγŠγ™γ™γ‚γ§γ™γ€‚", + "quests.high_voltage.tnt.desc.2": "&cTNT&rοΌˆγƒˆγƒͺγƒ‹γƒˆγƒ­γƒˆγƒ«γ‚¨γƒ³οΌ‰γ―γ€η ‚γ¨η«θ–¬γ‹γ‚‰δ½œγ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“γ€‚&aγ‚²γƒ«ηŠΆγƒˆγƒ«γ‚¨γƒ³&rγ‚’η”Ÿζˆγ—γ€γγ‚Œγ‚’η‘«ι…Έγ¨εεΏœγ•γ›γ¦TNTγ‚’δ½œγ‚‰γͺγ‘γ‚Œγ°γͺγ‚ŠγΎγ›γ‚“γ€‚\n&3HVεŒ–ε­¦εεΏœε™¨&rγγƒ¬γ‚·γƒ”を使用すると、&aγ‚²γƒ«ηŠΆγƒˆγƒ«γ‚¨γƒ³&rγη”Ÿη”£ι‡γ―2倍にγͺγ‚ŠγΎγ™γŒγ€θΏ½εŠ γη΄ ζγŒεΏ…要にγͺγ‚ŠγΎγ™γ€‚", + "quests.high_voltage.tnt.desc.3": "&aγƒˆγƒ«γ‚¨γƒ³&rγ―εŸΊζœ¬ηš„γ«γ‚γ‚‹η¨‹εΊ¦δ½œγ‚‹γγŒι’倒です。\n\nそγδΈ­γ§γ‚‚&3θ’Έη•™ζ©Ÿ&rで&a重θ³ͺ燃料&rγ‚’η›΄ζŽ₯&aγƒˆγƒ«γ‚¨γƒ³&rγ«ε€‰ζ›γ™γ‚‹γƒ¬γ‚·γƒ”γ―ζœ‰η”¨γ§γ™γ€‚\n\nγƒˆγƒ«γ‚¨γƒ³γ―&dガソγƒͺン&rγη΄ ζγ¨γ—ても使います。\n\n&cTNT&rは&3ε†…η ΄εœ§ηΈζ©Ÿ&rγ§δ½Ώγ„γΎγ™γ—γ€η™Ίη ΄γ—γ¦ζŽ‘ζŽ˜γ™γ‚‹γͺどγη”¨ι€”γ‚‚γ‚γ‚ŠγΎγ™γ€‚", + "quests.high_voltage.ender_pearls.title": "エンダーパール", + "quests.high_voltage.ender_pearls.subtitle": "ιžη§‘ε­¦ηš„η΅ζ™Άδ½“", + "quests.high_voltage.ender_pearls.desc": "TFGγ§γ―γ€γ‚¨γƒ³γƒ€γƒΌγƒžγƒ³γŒη΄”ζ­£γγ‚¨γƒ³γƒ€γƒΌγƒ‘γƒΌγƒ«γ‚’θ½γ¨γ—γ¦γγ‚ŒγΎγ›γ‚“γ€‚\nγ€ŒBeneath」にいる連中も例倖ではγͺγγ€ι Όγ‚Šγ«γ―γͺγ‚ŠγΎγ›γ‚“γ€‚\n\nそγγŸγ‚γ€δ»Šγγ¨γ“ろエンダーパールを手にε…₯γ‚Œγ‚‹γ«γ―δ½œγ‚‹γ—γ‹γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\n&6HV&rγƒŸγ‚­γ‚΅γƒΌγ§&2ベγƒͺγƒͺウム&rと&2γ‚«γƒͺウム&rγ‚’ζ··εˆγ—γ€&5γ‚¨γƒ³γƒ€γƒΌγƒ€γ‚Ήγƒˆ&rγ‚’δ½œγ‚‹γ‹γ€γ‚¨γƒ³γƒ€γƒΌγƒžγƒ³γŒθ½γ¨γ™δΊœη¨γγ‚¨γƒ³γƒ€γƒΌγƒ‘ールを砕きます。\n\nγγ‚Œγ‚’&7ε†…η ΄εœ§ηΈζ©Ÿ&rにε…₯γ‚Œγ‚Œγ°γ€γ‚γγ‚¨γƒ³γƒ€γƒΌγƒ‘γƒΌγƒ«γ‚’η§‘ε­¦ζŠ€θ‘“γ«γ‚ˆγ£γ¦δ½œγ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.high_voltage.boules.title": "γƒͺγƒ³ζ·»εŠ γ‚·γƒͺγ‚³γƒ³ε˜η΅ζ™Ά", + "quests.high_voltage.boules.subtitle": "いいからドーピングだ!", + "quests.high_voltage.boules.desc": "γƒ‰γƒΌγƒ”γƒ³γ‚°γ¨γ―γ€εŠε°Žδ½“γζ€§θ³ͺγ‚’ε€‰γˆγ‚‹γŸγ‚γ«γ€ζ„ε›³ηš„γ«δΈη΄”η‰©γ‚’εŠ γˆγ‚‹ζŠ€θ‘“γ§γ™γ€‚\n\n&7γ‚·γƒͺコン&rに少量γ&eγƒͺン&rγ‚’ζ··γœγ¦γƒ‰γƒΌγƒ”γƒ³γ‚°γ™γ‚‹γ“γ¨γ§γ€ε“θ³ͺγι«˜γ„&eγ‚·γƒͺγ‚³γƒ³ε˜η΅ζ™Ά&rγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγƒͺγƒ³γ§γƒ‰γƒΌγƒ”γƒ³γ‚°γ—γŸγ‚·γƒͺγ‚³γƒ³ε˜η΅ζ™Άγ―γ€ι€šεΈΈγγ‚‚γγ«ζ―”γΉγ¦ζœ€ε€§&68倍&rγ‚‚γγ‚¦γ‚§γƒγƒΌγ‚’η”Ÿη”£γ§γγΎγ™γ€‚&5EV&rδ»₯ι™γ§γ―γ€γ‚ˆγ‚Šι«˜εΊ¦γͺウェハーγθ£½ι€ γ«γ‚‚δ½Ώγ‚γ‚ŒγΎγ™γ€‚\n\n&9注意&r:γƒͺγƒ³ζ·»εŠ γ‚·γƒͺコンウェハーγεŠ ε·₯は、&dγ‚―γƒͺーンルーム&rγδΈ­γ§γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.high_voltage.implosion_compressor.title": "ε†…η ΄εœ§ηΈζ©Ÿ", + "quests.high_voltage.implosion_compressor.desc": "&3ε†…η ΄εœ§ηΈζ©Ÿ&rは、εηŸ³γη²‰γ‚’εηŸ³γ«ε½’ζˆγ—γΎγ™γ€‚\n\n&aエンダーパール&rγ‚’εΎ—γ‚‹γŸγ‚γ«εΏ…θ¦γ§γ™γ€‚\n\n&cTNT&rγ―ε†…η ΄εεΏœγ«δ½Ώη”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.high_voltage.nitric_acid.title": "瑝酸", + "quests.high_voltage.nitric_acid.subtitle": "η§°θ³›γ‚’θ΄ˆγ‚γ†", + "quests.high_voltage.nitric_acid.desc.1": "&a瑝酸&rγ―ιžεΈΈγ«ζœ‰ε³γ§γ™οΌγγ‚Œγ¨εŒζ™‚γ«ιžεΈΈγ«εΌ·εŠ›γͺι…ΈεŒ–ε‰€γ§γ‚‚γ‚γ‚ŠγΎγ™γ€‚\n\n&a瑝酸&rにはδ»₯δΈ‹γγ‚ˆγ†γͺζ§˜γ€…γͺη”¨ι€”γŒγ‚γ‚ŠγΎγ™οΌš\n&9-&rγ‚»γ‚Ώγƒ³ζ·»εŠ γƒ‡γ‚£γƒΌγ‚Όγƒ«γ€‚γ‚ˆγ‚Šθ‰―γ„γƒ‡γ‚£γƒΌγ‚Όγƒ«η‡ƒζ–™γ§γ€γΎγ‚‚γͺγδ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n&9-&rγƒ‹γƒˆγƒ­γƒ™γƒ³γ‚Όγƒ³γ€‚γ‚ˆγ‚Šθ‰―γ„γ‚¬γ‚Ήη‡ƒζ–™γ§γ€γΎγ‚‚γͺγδ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n&9-&rεηŸ³ζ³₯漿ラむン処理。\n&9-&r&1IV&rγ«γŠγ‘γ‚‹η™½ι‡‘ζ—γƒ©γ‚€γƒ³ε‡¦η†γ€‚\n&9-&r&1IV&rでγγƒγƒͺγƒ™γƒ³γ‚Ίγ‚€γƒŸγƒ€γ‚ΎγƒΌγƒ«(ζ—©ε£θ¨€θ‘‰γ˜γ‚ƒγͺγ„γ§γ™γ‚ˆ)。", + "quests.high_voltage.nitric_acid.desc.2": "&a瑝酸&rγ‚’δ½œγ‚‹γ«γ―&o良い方法&fと&4ζ‚ͺい方法&fγŒγ‚γ‚ŠγΎγ™γ€‚\nγ“γ“γ§γ―γ€ζœ€θ‰―γζ–Ήζ³•γ‚’ζ‘ˆε†…γ—γΎγ™οΌš\n\nまず&3ε€§εž‹εŒ–ε­¦εεΏœη‚‰&rで&aδΊŒι…ΈεŒ–ηͺ’η΄ &rγ‚’δ½œγ£γ¦γγ γ•γ„γ€‚γγ‚Œγ‚’&3εŒ–ε­¦εεΏœε™¨&rでさらに&dι…Έη΄ &rと&dζ°΄&rγ¨εεΏœγ•γ›γ‚Œγ°γ€&a瑝酸&rγεŒζˆγ§γ™οΌ\n\nγ“γ‚Œγ«γ―ε€§ι‡γ&dι…Έη΄ &rγ‚’ζΆˆθ²»γ—γΎγ™γ€‚ι…Έη΄ γ‚’ε€§ι‡γ«η’ΊδΏγ™γ‚‹ζ–Ήζ³•γ―&7LV&rη« γγ‚―γ‚¨γ‚Ήγƒˆγ‚’ε‚η…§γ—γ¦γγ γ•γ„γ€‚γͺγŠγ€γ“γε·₯η¨‹γ§γ―ζ°΄η΄ γŒδΈθ¦γ§γ™οΌγ€‚", + "quests.high_voltage.cetane_diesel.title": "γ‚»γ‚Ώγƒ³ζ·»εŠ γƒ‡γ‚£γƒΌγ‚Όγƒ«", + "quests.high_voltage.cetane_diesel.subtitle": "ディーゼルγι€²εŒ–ε½’", + "quests.high_voltage.cetane_diesel.desc": "&6HV&rγƒŸγ‚­γ‚΅γƒΌγ¨&e瑝酸&rγŒζƒγˆγ°γ€η‡ƒζ–™δΎ‘γŒ+&e180οΌ…&rγ•γ‚Œγ‚‹&aγ‚»γ‚Ώγƒ³ζ·»εŠ γƒ‡γ‚£γƒΌγ‚Όγƒ«&rγ‚’δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n倧倉γͺγγ―&bγƒ†γƒˆγƒ©γƒ‹γƒˆγƒ­γƒ‘γ‚Ώγƒ³&rγδ½œζˆγ§γ€γ“γ‚Œγ―&9瑝酸&rと&dγ‚¨γ‚ΏγƒŽγƒ³&rγ‚’ζ··γœγ‚Œγ°δ½œγ‚ŒγΎγ™γ€‚\n\nγ‚¨γ‚ΏγƒŽγƒ³γ―&9η‘«ι…Έ&rと&cι…’ι…Έ&rγ‚’εεΏœγ•γ›γ¦δ½œγ‚‹γ“γ¨γŒγ§γγ€ι…’ι…Έγ―&3ι…Έη΄ &rと&5エチレン&rγ‹γ‚‰εˆζˆγ§γγΎγ™γ€‚\n\nζ³¨ζ„οΌšι…’ι…Έγ‚’γ“γγƒ¬γ‚·γƒ”γ§δ½œγ‚‹γ¨γγ―、&c機撰γε›žθ·―η•ͺ号を2に設εš&rするγγ‚’η΅Άε―Ύγ«εΏ˜γ‚Œγͺγ„γ§γγ γ•γ„οΌοΌˆγγ†γ—γͺいと&6ポγƒͺエチレン&rγŒε‡Ίζ₯δΈŠγŒγ£γ¦γ—γΎγ„γΎγ™οΌ‰γ€‚", + "quests.high_voltage.smd_components.title": "SMD 電子部品", + "quests.high_voltage.smd_components.subtitle": "ι›»ε­ιƒ¨ε“η¬¬δΊŒε½’ζ…‹", + "quests.high_voltage.smd_components.desc": "&eSMD&r(surface-mount device)&a電子部品&rは、GTCEuη‰Ήζœ‰γιƒ¨ε“γ§γ€ζ¬‘世代γε›žθ·―(&5γƒŠγƒŽ&rοΌ‰γ‚’δ½œγ‚‹γŸγ‚γ«εΏ…ι ˆγ§γ™γ€‚ε€šγγε›žθ·―γƒ¬γ‚·γƒ”γ§γ―γ€ι€šεΈΈγι›»ε­ιƒ¨ε“γδ»£γ‚γ‚Šγ¨γ—γ¦γ‚‚δ½ΏγˆγΎγ™γ€‚\n\nγ‚‚γ‘γ‚γ‚“γ€δ½œγ‚‹γγ―γ‚‚γ£γ¨ζ‰‹ι–“γŒγ‹γ‹γ‚ŠγΎγ™γ€‚γ γ£γ¦GregTechγ§γ™γ‹γ‚‰οΌη°‘ε˜γͺγ‚γ‘γŒγ‚γ‚ŠγΎγ›γ‚“γ‚ˆγ­οΌŸ\n\nγ“γ‚Œγ‚‰γιƒ¨ε“γ―δ»ŠεΎŒγ‚‚γšγ£γ¨εΏ…θ¦γ«γͺγ‚‹γγ§γ€θ‡ͺε‹•εŒ–γ—γ¦γŠγγ¨γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚", + "quests.high_voltage.smd_components_2.title": "SMDダむγ‚ͺード", + "quests.high_voltage.smd_components_2.desc": "SMDダむγ‚ͺードγη΄ ζγ§γ‚γ‚‹&aγƒ—γƒ©γƒγƒŠ&rγη’ΊδΏζ³•は、&5EV&rγη« γ«θΌ‰γ£γ¦γ„ます。そγζ–Ήζ³•γγ»γ‹γ«γ‚‚γ€ε˜η΄”γ«γƒ—γƒ©γƒγƒŠι‰±θ„ˆγ‹γ‚‰ζŽ˜γ‚Šε‡Ίγ™γ‹γ€εŒ–ε­¦ζ§½γ§ε‡¦η†γ™γ‚‹γ“γ¨γ§γ‚‚ε…₯手できます。\n\n&l&3δ½™θ«‡οΌš&r&oSMDむンダクタはGTCEuγ§εˆη™»ε ΄γ—γŸγ‚“γ γ€‚δ»Šγ―γ™γΉγ¦γι›»ε­ιƒ¨ε“γ«SMDη‰ˆγŒγ‚γ‚‹γ‹γ‚‰γ‚γ‹γ‚Šγ‚„γ™γ„γ­οΌ", + "quests.high_voltage.hv_macerator.title": "HVη²‰η •ζ©Ÿ", + "quests.high_voltage.hv_macerator.subtitle": "ε—šε‘Όγ€ζ„›γ—γε‰―産物...", + "quests.high_voltage.hv_macerator.desc.1": "&3η™Ίε±•εž‹η²‰η •ζ©ŸII&rγ§γ―γ€γ€γ„γ«γƒ¬γ‚·γƒ”γ§θ‘¨η€Ίγ•γ‚Œγ¦γ„γŸε‰―η”£η‰©γŒε‡Ίγ¦γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γ€γΎγ‚Šγ€&9ε…¨γ‚Ήγƒ­γƒƒγƒˆ&rγγ‚’γ‚€γƒ†γƒ γŒε‡Ίγ¦γγ‚‹γ‚ˆγ†γ«γͺるということです。&dη†±ι εΏƒεˆ†ι›’ζΈˆγΏι‰±ηŸ³&rγη²‰η •で&6η‰ΉζŠγͺ副産物&rγ‚’εΎ—γ‚‹γ“γ¨γŒγ§γγ‚‹γ‚ˆγ†γ«γ‚‚γͺγ‚ŠγΎγ™γ€‚\n\nι‰±ηŸ³γη²‰η •には&a32EU/t&rγ‚’ζΆˆθ²»γ—γ€HVι›»εŠ›γ§ε‹•γ‹γ™ε ΄εˆγ―&52ε›žγγ‚ͺーバークロック&rγ‚’θ‘Œγ†γ“γ¨γ«γͺγ‚ŠγΎγ™γŒγ€&7LV&rι›»εŠ›γ§γ‚‚δΈ€εΏœγ―ε‹•δ½œε―θƒ½γ§γ™γ€‚γ¨γ¦γ‚‚ζ‰±γ„γ‚„γ™γ„γ§γ™γ­γ€‚\n\nγ¨γ―γ„γˆγ€γ©γ‚“γͺι‰±ηŸ³γ«γ‚‚εŒε…¨γͺ処理ラむンを硄むγγŒεΈΈγ«εΎ—η­–γ¨γ―ι™γ‚ŠγΎγ›γ‚“γ€‚ι›»εŠ›ζΆˆθ²»γ‚„ε‡¦η†ζ™‚ι–“γγƒγƒ©γƒ³γ‚Ήγ‚’θ€ƒγˆγΎγ—γ‚‡γ†γ€‚", + "quests.high_voltage.hv_macerator.desc.2": "&l&3δ½™θ«‡οΌš&r&oεŸγ―GT5uγ&6HV&r&oη²‰η •ζ©Ÿγ«γ―γ€γŸγ£γŸ2぀γγ‚Ήγƒ­γƒƒγƒˆγ—かγͺγ‹γ£γŸγ‚“γ γ‚ˆγ€‚γΎγ‚...石γη²‰γͺんてどうせいらγͺいか...", + "quests.high_voltage.ammonia.title": "をンヒニを", + "quests.high_voltage.ammonia.desc": "&aをンヒニを&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γΎγŸγ€&d白金族ζ³₯&rγε‡¦η†δΈ­γ«ε‰―産物として&aをンヒニを&rγ‚’ε…₯手することも可能です。", + "quests.high_voltage.hv_mixer.title": "HVγƒŸγ‚­γ‚΅γƒΌ", + "quests.high_voltage.hv_mixer.subtitle": "εœ°ηƒγ‚’ζ··γœγ‚‹", + "quests.high_voltage.hv_mixer.desc": "&6HV&rγƒŸγ‚­γ‚΅γƒΌγ―&6γƒ­γ‚±γƒƒγƒˆη”¨γεˆι‡‘&rγθ£½ι€ γ«εΏ…θ¦γ§γ™γ€‚γ‚‚γ‘γ‚γ‚“γ€γγ‚Œδ»₯ε€–γη”¨ι€”γ‚‚γ‚γ‚ŠγΎγ™γ€‚\n\nこγζ©Ÿζ’°γ‚’δ½Ώγˆγ°γ€ζ¬‘γγ‚ˆγ†γͺ重要γͺγƒ¬γ‚·γƒ”γ‚‚ζ‰±γˆγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌš\n-&dζΏƒηΈγ‚€γƒ³γ‚Έγ‚¦γƒ &rγθ£½ι€ \n-&eγ‚»γ‚Ώγƒ³ζ·»εŠ γƒ‡γ‚£γƒΌγ‚Όγƒ«&rγη²Ύθ£½\n-&9タービンローター&rに使う&6γ‚’γƒ«γƒ†γ‚£γƒ‘γƒƒγƒˆ&rγ¨γ„γ†εˆι‡‘γθ£½ι€ \n-そして、&dAE2&rに欠かせγͺい&dフルーシγƒ₯γζ°΄ζ™Ά&rγδ½œζˆ", + "quests.high_voltage.blue_alloy.title": "ι’εˆι‡‘", + "quests.high_voltage.blue_alloy.subtitle": "ハむチγƒ₯ウソーダ味", + "quests.high_voltage.blue_alloy.desc": "&aι’εˆι‡‘&rは、&6HV&rγι€ι›»γ‚±γƒΌγƒ–ルとしてとてもε„ͺη§€γͺ素材です。\n\nεŸγ―、&bMV&rγι€ι›»γ«γ‚‚δ½ΏγˆγΎγ™οΌγŸγ γ—γ€ζ©Ÿζ’°γ«ιŽι›»εœ§γ‚’ι€γ‚‰γͺγ„γ‚ˆγ†ζ°—γ‚’γ€γ‘γΎγ—γ‚‡γ†γ€‚\n\n&6HV&r向けγθΆ…δΌε°Žδ½“γ―...γ‚‚γ†ε°‘γ—ι€²γ‚γŸζ΅ιšŽγ§θ§£η¦γ•γ‚ŒγΎγ™γ€‚\n\n&aγ‚¨γƒ¬γ‚―γƒˆγƒ­γƒγƒ³&rγ―ι‰±ηŸ³γ‹γ‚‰η›΄ζŽ₯手にε…₯γ‚‹γγ§γ€γƒŸγ‚­γ‚΅γƒΌγ§δ½œγ‚‹εΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nγΎγŸγ€&aγ‚¨γƒ¬γ‚―γƒˆγƒ­γƒγƒ³&rγ‚’ι εΏƒεˆ†ι›’γ™γ‚‹γ¨γ€&dγ‚¨γƒ¬γ‚―γƒˆγƒ©γƒ &rと&dγƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³&rにγͺγ‚ŠγΎγ™γ€‚", + "quests.high_voltage.ev_circuits.title": "ζœ€εˆγEVε›žθ·―", + "quests.high_voltage.ev_circuits.subtitle": "εˆγ‚γ¦γγ‚³γƒ³γƒ”γƒ₯γƒΌγ‚ΏγƒΌ", + "quests.high_voltage.ev_circuits.desc": "こんγͺθ¦‹γŸη›γε›žθ·―γ―θ¦‹γŸγ“γ¨γŒγͺいでしょう。&bMV&rγζ™‚η‚Ήγ§γ‚‚δ½œγ‚‹γ“γ¨γ―γ§γγΎγ™γŒγ€&aγ•γ™γŒγ«δ½œγ‚‹γ«γ―ζ—©γ„γ§γ™&r。\n\nHVにε…₯γ£γ¦γ‹γ‚‰δ½œγ‚ŠγΎγ—γ‚‡γ†γ€‚", + "quests.high_voltage.hv_hull.title": "HVγΈγ‚ˆγ†γ“γ!", + "quests.high_voltage.hv_hull.subtitle": "偉倧γͺ一歩を踏み出そう", + "quests.high_voltage.hv_hull.desc.1": "そろそろ&2&9GregTech&rγ«ζ…£γ‚Œγ¦γγΎγ—γŸγ‹οΌŸγ“γ“γ‹γ‚‰γ―γ€γ‚ˆγ‚ŠδΈ€ε±€γ§γγ‚‹γ“γ¨γŒε’—γˆγ¦γ„γγΎγ™γ€‚\nこγη« γ§γ―、&e高度γͺγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―&rγ‚„&e耇雑γͺε·₯程&rを扱い、そして぀いに&f月&rへと向かう準備を始めます!\n\n&6こγη« γδΈ»γͺη›ζ¨™γ―δ»₯δΈ‹γ2γ€γ§γ™οΌš&r\n-&5EV&rγƒžγ‚·γƒ³η­δ½“γ‚’δ½œγ‚‹γ“γ¨\n-&f月&rへγε†’険を始めること\n\nζœˆγΈεˆ°ι”γ™γ‚‹γ¨γ€&bケルタスクォーツ&rγŒζŽ‘ζŽ˜γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚Šγ€&dAE2&rγθ¦η΄ γŒθ§£η¦γ•γ‚ŒγΎγ™γ€‚γ©γ‘らをη›ζŒ‡γ™γγ‚‚θ‡ͺ由です。", + "quests.high_voltage.hv_hull.desc.2": "&5EV&rγƒžγ‚·γƒ³η­δ½“γ‚’δ½œγ‚‹γŸγ‚γ«γ―γ€ζ¬‘γζΊ–ε‚™γŒεΏ…θ¦γ§γ™οΌš\n-&aγ‚―γƒͺーンルーム&rを建造する\n-η†±γ„γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’ε†·γ‚„γ™γŸγ‚γ&bηœŸη©Ίε†·ε΄ζ©Ÿ&rを用意する\n-&9ルチル&rγ‚’εŠ ε·₯して&7チタン&rを精製する\n\n&f月&rでは&9ルチル&rγŒθ±Šε―Œγ«θ¦‹γ€γ‹γ‚ŠγΎγ™γŒγ€&aγ‚ͺーバーワールド&rγ&eγƒœγƒΌγ‚­γ‚΅γ‚€γƒˆ&rι‰±θ„ˆγͺγ©γ‹γ‚‰γ‚‚ε€šε°‘γ―ε…₯手可能です。", + "quests.high_voltage.hv_hull.desc.3": "ζœˆγ«θ‘ŒγγŸγ‚γ«γ―γ€δ»₯δΈ‹γε·₯η¨‹γ‚’θΈγΏγΎγ—γ‚‡γ†οΌš\n-倧量γ&6γƒ­γ‚±γƒƒγƒˆεˆι‡‘&rを用意する\n-&7ε†…η ΄εœ§ηΈζ©Ÿ&rと&3η†±εˆ†θ§£η‚‰&rで、&eエンダーパール&rγ‚’εŠ ε·₯する\n- ε‡ε™η©Ίι–“で&bη”Ÿε­˜γ§γγ‚‹&rγ‚ˆγ†γ«γ€εΏ…θ¦γͺ&bε‡ε™ζœ&rγ‚’ζƒγˆγ‚‹\n\n&bηœŸη©Ίε†·ε΄ζ©Ÿ&rγ‚„&6上位γγ‚³γ‚€γƒ«&rγ‚’δ½Ώγˆγ°&6γƒ­γ‚±γƒƒγƒˆεˆι‡‘&rγθ£½ι€ ι€ŸεΊ¦γ‚’δΈŠγ’γ‚‰γ‚ŒγΎγ™γŒγ€γͺγγ¦γ‚‚ε•ι‘Œγ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\n&dさあ、θ‡ͺεˆ†γι€²γ‚€ι“を選びましょう!&r", + "quests.high_voltage.nichrome.title": "γƒ‹γ‚―γƒ­γƒ γ‚€γƒ³γ‚΄γƒƒγƒˆ", + "quests.high_voltage.nichrome.subtitle": "δ½Ώγ„ι“γ―γγ†ε€šγγͺいです", + "quests.high_voltage.nichrome.desc": "γ“γ‚Œγ―3η•ͺη›γ&6EBF&rコむルγη΄ ζγ§γ™γ€‚\nγ“γ‚ŒγΎγ§γ¨εŒγ˜γ&9128個γγ‚€γƒ³γ‚΄γƒƒγƒˆ&rγŒεΏ…θ¦γ§γ™γ€‚\n冷却には&6εŒ–ε­¦ζ§½&rではγͺく、&6ηœŸη©Ίε†·ε΄ζ©Ÿ&rを使わγͺγ‘γ‚Œγ°γͺγ‚ŠγΎγ›γ‚“γ€‚ηœŸη©Ίε†·ε΄ζ©Ÿγͺγ‚‰ε†·ε΄ε‡¦η†γ‚’γ‚ˆγ‚ŠεŠΉηŽ‡ηš„γ«θ‘Œγ†γ“γ¨γŒγ§γγΎγ™γ€‚\n\nδ»Šε›žγ―&6ニクロム&rγγΏγ‚’δ½Ώγ£γ¦γ‚³γ‚€γƒ«γ‚’δ½œγ‚ŠγΎγ™γŒγ€γ“γη΄ ζγ―後γ&5RTMコむル&rγθ£½δ½œγ§γ‚‚再び必要にγͺγ‚ŠγΎγ™γγ§θ¦šγˆγ¦γŠγγΎγ—ょう。", + "quests.high_voltage.rocket_t1.title": "ζœˆι’ζŽ’ζŸ»η”¨γƒ­γ‚±γƒƒγƒˆ", + "quests.high_voltage.rocket_t1.subtitle": "γƒ­γ‚±γƒƒγƒˆγ§ηͺγζŠœγ‘γ‚οΌ", + "quests.high_voltage.rocket_t1.desc": "γ•γ‚γ€γ€γ„γ«εΏ΅ι‘˜γ&6γƒ­γ‚±γƒƒγƒˆ&rγεŒζˆγ§γ™οΌ\n\nζ©Ÿδ½“γ―ε…¨γ¦&dγƒ­γ‚±γƒƒγƒˆεˆι‡‘&rで構築し、断熱材として&b2304mb&rγ&bζΆ²εŒ–γ‚±γ‚€η΄ &r(&b16γ‚€γƒ³γ‚΄γƒƒγƒˆεˆ†&r)と16個γ&fγ‚¬γƒ©γ‚ΉεŒ–γ—γŸη²‰ζœ«&rγŒεΏ…θ¦γ§γ™γ€‚\n\nγ‚¬γƒ©γ‚ΉεŒ–γ—γŸη²‰ζœ«γ―2η¨ι‘žγ‚γ‚ŠγΎγ™οΌš\n&e-&r&eホウ素ケむ酸ガラスγη²‰&rβ€”&6γƒŸγ‚­γ‚΅γƒΌ&rで&dホウ素&rと&fガラスγη²‰&rγ‚’ζ··γœγ‚‹\n\n&e-&r&5γ‚¬γƒ©γ‚ΉεŒ–γ—γŸηŸ³ηΆΏ&rβ€”&6η†±εˆ†θ§£η‚‰&rγ§ηŸ³ηΆΏγ‚’εŠ η†±γ€‚\n\nγ©γ‘γ‚‰γ‚’ιΈγ‚“γ§γ‚‚ζ§‹γ„γΎγ›γ‚“γ€‚δ½œγ‚Šγ‚„γ™γ„ζ–Ήγ‚’γ©γ†γžγ€‚", + "quests.high_voltage.vitrified_pearl.title": "γ‚¬γƒ©γ‚ΉεŒ–γ—γŸγ‚¨γƒ³γƒ€γƒΌγƒ‘γƒΌγƒ«", + "quests.high_voltage.vitrified_pearl.subtitle": "ζ­»γ‚“γ γ‚ˆγ†γͺη›", + "quests.high_voltage.vitrified_pearl.desc": "エンダーパールといく぀かγη΄ ζγ‚’&eη†±εˆ†θ§£η‚‰&rにε…₯γ‚Œγ¦εŠ η†±γ—γ€&3院器&rγγ‚ˆγ†γ«γ‚¬γƒ©γ‚ΉεŒ–させましょう。\n\nδ»Šγ―γΎγ ε€§ι‡γ«δ½œγ‚‹εΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚ζœ€δ½Žι™γ€&6γƒ­γ‚±γƒƒγƒˆ&r用に1぀と、&6η™Ίε±•εž‹ε›žθ·―δ½œζˆζ©ŸII&r用にもう1γ€γ‚γ‚Œγ°εεˆ†γ§γ™γ€‚\nγŸγ γ—γ€&5EV&rδ»₯ι™γ§γ―ιœ€θ¦γŒδΈ€ζ°—γ«ε’—γˆγ¦γ„γγΎγ™γ€‚", + "quests.high_voltage.kaolinite_powder.title": "γ‚«γ‚ͺγƒͺγƒŠγ‚€γƒˆγε·₯ζ₯­ηš„η”Ÿη”£", + "quests.high_voltage.kaolinite_powder.subtitle": "γ‚‚γ†εΏ˜γ‚Œγ‘γ‚ƒγ£γ¦γŸοΌŸ", + "quests.high_voltage.kaolinite_powder.desc": "良いニγƒ₯ースとζ‚ͺいニγƒ₯γƒΌγ‚ΉγŒγ‚γ‚ŠγΎγ™γ€‚ζ‚ͺγ„ζ–Ήγ―γ€ζ˜”γγ€Œε‹δΊΊγ€γ¨ε†δΌšγ™γ‚‹ζ™‚γŒζ₯γŸγ“γ¨γ€‚θ‰―γ„ζ–Ήγ―γ€γγε†δΌšγε ΄ζ‰€γŒγ‚γͺたγθ‡ͺε…だということです!\n\n倉庫γε₯₯γζ–Ήγ§&4γ‚«γ‚ͺγƒͺγƒŠγ‚€γƒˆ&rγŒηœ γ£γ¦γ„γŸγ‚‰γ€εΌ•γ£εΌ΅γ‚Šε‡Ίγ—γ¦ε†εˆ©η”¨γ—γΎγ—γ‚‡γ†γ€‚γ‚‚γ—η„‘γ‘γ‚Œγ°γ€δ»Šγͺらθ‡ͺε…γ§η°‘ε˜γ«δ½œγ‚ŒγΎγ™γ€‚\n\nγ‚«γ‚ͺγƒͺγƒŠγ‚€γƒˆγ―γ€δ»ŠεΎŒη™»ε ΄γ™γ‚‹ε·₯ζ₯­η”¨γ‚»γƒ©γƒŸγƒƒγ‚―や耐熱素材γγƒ¬γ‚·γƒ”γ«ε†γ³δ½Ώγ‚γ‚Œγ‚‹δΊˆεšγ‚‰γ—いです。", + "quests.high_voltage.linked_quest_energy.title": "ι›»εŠ›γ«ι–’γ™γ‚‹θ©³η΄°ζƒ…ε ±", "quests.high_voltage.linked_quest_energy.subtitle": "GregTech Wiki", - "quests.high_voltage.linked_quest_energy.desc": "Still stuck using steam? Want to learn more about GregTech's energy system? Make sure you've look at the GregTech Energy quest chapter!", + "quests.high_voltage.linked_quest_energy.desc": "あγͺたγηŸ₯能は蒸気時代γγΎγΎγ§γ™γ‹οΌŸGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ γ‚’γ‚‚γ£γ¨η†θ§£γ—γŸγ„γͺγ‚‰γ€γ€ŒGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ γ€γη« γ‚’チェックしてみましょう!", "quests.high_voltage.linked_quest_energy.task": "Have a look at the Energy Chapter", - "quests.high_voltage.ev_machine_hull.title": "&5EV&r Machine Hull", - "quests.high_voltage.ev_machine_hull.subtitle": "That's half of the GregTech tiers done", - "quests.high_voltage.ev_machine_hull.desc": "Well, that was quite the experience! Between the &9Rutile Processing&r line, the &5Vacuum Chamber&r, and the &5Cleanroom&r, you’ve uncovered a lot of new mechanics. \n\nThat’s great β€” because this is probably only the halfway point of the modpack.\n\nDid you walk on the &fMoon&r yet? If not, we strongly encourage you to go. You’ll encounter &dessential mechanics&r for later stages of the modpack and unlock &bAE2&r, all while gaining access to &aricher ore veins&r.\n\nIf you’ve already made your lunar journey, then we hope your infrastructure is solid β€” because it’s time to enter &5EV&r. This complex chapter will introduce &7even more advanced systems&r and take your factory to the next level.", - "quests.high_voltage.250_iq.title": "250IQ", - "quests.high_voltage.250_iq.subtitle": "Stop burning your hands!", - "quests.high_voltage.250_iq.desc.1": "This is a guide on how to automatically route &lall&r your Hot Ingots to your Chemical Bath, while keeping everything automated in tip-top shape.\n\nThe cheap way would be to use filters, and manually add Hot Ingots one by one... which is so boring! Let's try the fun option.\n\nInstall an &aItem Tag Filter&r Cover on the side of your &3Chemical Bath&r, open it and set it to whitelist -&e&l*hot_ingots*&r-.\n\nFrom here, you can route with &9any logistics system&r of your choice.", - "quests.high_voltage.250_iq.desc.2": "Connect the output of your &3EBF(s)&r to the input of your &3Chemical Bath&r and the output dump (Chest or Crate). You can also have a &dRestrictive Pipe&r in front of the output dump to ensure the Chemical Bath will be prioritized.\n\n&l&9Note:&r If you wish to know more tags for more automation setups, they will display if you press Shift when hovering over an item. For instance, an item tagged with &e&o#forge:plates/copper&r would be filtered as &e&lplates/copper&r.\n\n&9&lOther Note:&r The Item Tag Filter partially supports &dregex&r. Hover over the info icon for more information.", - "quests.high_voltage.bedrock_miner.subtitle": "Unlimited ores?", - "quests.high_voltage.bedrock_miner.desc.1": "This may be the first time you encounter the &cBedrock Ore Miner&r, as it's rarely used in GregTech. \nIt functions similarly to the &bFluid Drilling Rig&r, except the veins it targets will &nnever deplete&r.\n\nIt doesn't consume much energy β€” running fine at &bMV&r or &6HV&r β€” and requires &ano input materials&r.\n\nSo, what's the catch?\nFinding the veins.", - "quests.high_voltage.bedrock_miner.desc.2": "You’ll need a &6HV&r Ore Prospector set to &oBedrock Ore Mode&r (&7Shift + Right Click&r), and a fair bit of patience. Once you find your target, you’ll also have to figure out how to bring the resources back to your outpost.\n\nOn the &fMoon&r, you can find your first bedrock ore veins, allowing you to passively obtain several essential elements completely for free, forever. Check JEI to see what's available! The higher the Weight, the more common the vein is.\n\nSince these will be so spread apart, this sounds like a great excuse to build a &7moon train&r!", - "quests.high_voltage.space_alloy.title": "R-Aluminosteel", - "quests.high_voltage.space_alloy.subtitle": "We made this one up", - "quests.high_voltage.space_alloy.desc.1": "To make your first &6Rocket Alloy&r, you will need to put &7Aluminium&r, &7Stainless Steel&r and &cLiquid Red Steel&r into your new &6HV&r Mixer.\n\nThe recipe takes some time, so expect to have your mixer fully dedicated to this step.\n\nAfter that, your dust will need to be smelted in your EBF at &bMV&r. If you already have &6Nichrome Coils&r and your EBF is running at &6HV&r, you will be able to &aPerfect Overclock&r the recipe! (check the GregTech Energy chapter if you don't understand)", - "quests.high_voltage.space_alloy.desc.2": "You can cool the ingots down with a &9Chemical Bath&r or, if you already have one, a &9Vacuum Freezer&r for a shorter processing time.\n\n&7144mb equals 1 ingot&r, so make sure not to extract too much &cRed Steel&r.\n\nYou will need &685 Rocket Alloy&r ingots total, which means:\n- &760 Aluminium&r\n- &720 Stainless Steel&r\n- &710 Red Steel&r\n\n&aNothing too bad!&r", - "quests.high_voltage.steel_engine.subtitle": "Blue Steel is back, baby", - "quests.high_voltage.steel_engine.desc": "The &6Steel Engine&r is required so your rocket can &atravel to the Moon&r.\n\nThe recipe isn't too bad β€” we assume you're ready to tackle each part.\n\nTo get &91152mb of Liquid Blue Steel&r, you will need &78 ingots&r.", - "quests.high_voltage.rocket_fins.subtitle": "So you reach the right destination", - "quests.high_voltage.rocket_fins.desc": "We made the &6Rocket Fins&r use an &bAlloy Smelter&r simply to remind you that you now have access to the &bMulti-Smelter&r β€” a wonderful small EBF that can be used both as a &eFurnace&r and an &bAlloy Smelter&r.\n\nThe quest to craft it is in the &bMV&r Chapter. We really advise you to think about it if you haven't yet.", - "quests.high_voltage.rocket_nose_cone.subtitle": "The nose knows...", - "quests.high_voltage.rocket_nose_cone.desc": "The &6Rocket Nose Cone&r is the hardest part of your Rocket.\nYou will need a hefty amount of &aPolyethylene&r β€” so we hope you already have it passively produced β€” and a &6HV&r Emitter.\nYou should be able to get your hands on &dChromium&r by electrolyzing &cRuby Dust&r.\n\nThe &aVitrified Ender Pearl&r is trickier and requires you to follow the quest unlocked by the &6HV Chemical Reactor&r.\nGet ready to make &cTNT&r, build an &5Implosion Compressor&r, and recreate the famous Enderman drop β€” since you won’t find Ender Pearls natively in &2TFG&r.", - "quests.high_voltage.launch_pad.subtitle": "Ready for launch in T-10...", - "quests.high_voltage.launch_pad.desc": "The Launch Pad is &6required&r to launch your Rocket β€” you can't just place it on any old block!\n\n&cTriple check&r that you bring a &csecond Launch Pad&r with you, as you will need another one for the return trip!", - "quests.high_voltage.rocket_fuel.title": "Rocket Fuel", - "quests.high_voltage.rocket_fuel.subtitle": "Easier than you think", - "quests.high_voltage.rocket_fuel.desc": "For each trip in your rocket, you will need &6three buckets of Rocket Fuel&r. It may look complicated (and to be fair, it does have a lot of steps) but all you need is &bChlorine&r, &bMethane&r, &bNitrogen&r, &bOxygen&r and &bWater&r. Nothing too bad!\n\nIf you already have a &5Large Chemical Reactor&r, you could even skip some steps!\n\nIf you haven't use it yet, this is a good point to check out the &7EMI Recipe Tree&r to have an easier time. Simply click on the small icon with 4 squares on the right of the crafting recipe, then hover over the question mark at the bottom right of your screen for full instructions!", - "quests.high_voltage.space_suit.title": "Space Suit", - "quests.high_voltage.space_suit.subtitle": "This may be the hardest part", - "quests.high_voltage.space_suit.desc.1": "We know you're eager to get going, but you'll need a space suit if you want to live for more than a few seconds on the moon, loaded with a &bbreathable gas&r β€” and if you want to refill it without taking it off, a &eGas Tank&r.\n\nThe hardest part will definitely be the &dPolycaprolactam Fabric&r (also known as Nylon).\n\nYou will need an EBF and an &6HV&r &eChemical Reactor&r.\n\nFrom there, you'll be able to craft it using &aBenzene&r, &bHydrogen&r, &9Chlorine&r, &bOxygen&r, and &3Ammonia&r.\n\nWe won't tell you every step, but you should be able to figure it out yourself through &aEMI&r now that you're a fierce GregTech player.", - "quests.high_voltage.space_suit.desc.2": "Once everything is ready, simply &eRight-Click&r a drum or tank filled with a breathable gas like &bCompressed Nitrox&r to fill them up, just like a bucket. 1000mB will last you for 20 minutes. Once you've got your space suit on, you can \"drink\" from the Gas Tank to fill up your suit.\n\nYou may also find it helpful to take a peek at the Space Survival quest chapter, in case there's anything else you'd like to bring with you!", + "quests.high_voltage.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γͺどγι‹η”¨γ‚’ι€šγ—γ¦γ€GregTechをかγͺγ‚Šη†θ§£γ—γ¦γγŸγ“γ¨γ§γ—γ‚‡γ†γ€‚\n\nγ„γ‚„ζœ¬ε½“γ«η΄ ζ™΄γ‚‰γ—γ„γ§γ™γ­...というγγ‚‚、εŸγ―ここはまだModPackγ«γŠγ‘γ‚‹δΈ­ι–“εœ°η‚Ήγ«γ™γŽγͺいγγ§γ™γ€‚\n\n&f月&rγ«γ―θ‘ŒγγΎγ—γŸγ‹οΌŸγΎγ γͺγ‚‰γ€γγ‚Œγ‚’η›ζŒ‡γ—γΎγ—γ‚‡γ†γ€‚δ»ŠεΎŒγι€²θ‘Œγ«ζ¬ γ‹γ›γͺい&d重要γͺ仕硄み&rを学べるほか、&aγ‚ˆγ‚Šθ±Šε―Œγͺι‰±θ„ˆ&rγ‚’ζŽ˜γ‚Šε‡Ίγ›γ‚‹γ‚ˆγ†γ«γͺγ‚Šγ€γͺγ«γ‚ˆγ‚Š&bAE2&rγŒθ§£ζ”Ύγ•γ‚ŒγΎγ™γ€‚\n\nγ‚‚γ—γ™γ§γ«ζœˆγΈεˆ°ι”γ—γ¦γ„γ‚‹γͺら、むンフラγζ•΄ε‚™γ«γ‚‚ζ³¨εŠ›γ—γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ‹γ‚‰&5EV&rζ΅ιšŽγΈγ¨ηͺε…₯し、&7さらγͺγ‚‹ηŸ₯識&rを学び、ε·₯場を欑γγƒ¬γƒ™γƒ«γΈζŠΌγ—δΈŠγ’γ‚‹ζ™‚γŒζ₯ます。", + "quests.high_voltage.250_iq.title": "IQ250", + "quests.high_voltage.250_iq.subtitle": "δ»–γγ“γ¨γ«η†±δΈ­γ—γŸγ„γ§γ—γ‚‡γ†", + "quests.high_voltage.250_iq.desc.1": "γ“γ‚Œγ―γ€&lε…¨η¨ι‘žγ&rη†±γ„γ‚€γƒ³γ‚΄γƒƒγƒˆγ«ε―ΎεΏœγ—γŸθ‡ͺε‹•ε†·ε΄ζ©Ÿζ§‹γ‚’δ½œγ‚‹γŸγ‚γγ‚¬γ‚€γƒ‰γ§γ™γ€‚\n\nδ½•γ‚‚θ€ƒγˆγšγ€γƒ•γ‚£γƒ«γ‚ΏγƒΌγ«γγ‚Œγžγ‚Œγγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’1γ€γšγ€ζ‰‹ε‹•η™»ιŒ²γ™γ‚‹ζ‰‹γ‚‚γ‚γ‚ŠγΎγ™γŒ...そんγͺγι’ε€’γ§γ™γ‚ˆγ­οΌγ‚‚γ£γ¨εŠΉηŽ‡ηš„γ§ι’η™½γ„γ‚„γ‚Šζ–Ήγ‚’θ©¦γ—γΎγ—γ‚‡γ†γ€‚\n\nγΎγšγ€&3εŒ–ε­¦ζ§½&rγε΄ι’に&aをむテムタグフィルター&rγ‚«γƒγƒΌγ‚’ε–γ‚Šδ»˜γ‘γΎγ™γ€‚γƒ•γ‚£γƒ«γ‚ΏγƒΌγθ¨­εšγ§γƒ›γƒ―γ‚€γƒˆγƒͺγ‚Ήγƒˆγ‚’-&e&lhot_ingots&r-に設εšγ—てください。\n\nあとは、θ‡ͺε‹•ι‹ζ¬ζ©Ÿζ§‹γ‚’η΅„γ‚€γ γ‘γ§γ™γ€‚", + "quests.high_voltage.250_iq.desc.2": "&3EBF&rγ‚’&3εŒ–ε­¦ζ§½&rとそγγ»γ‹γγ‚Ήγƒˆγƒ¬γƒΌγ‚Έ(γƒγ‚§γ‚Ήγƒˆγͺど)γδΈ‘ζ–Ήγ«ζ¬ε‡Ίγ™γ‚‹γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚γγιš›γ€γƒγ‚§γ‚Ήγƒˆγͺどには&dεˆΆι™γƒ‘γ‚€γƒ—&rを぀γͺγŽγΎγ—γ‚‡γ†γ€εŒ–ε­¦ζ§½γΈγζ¬ε…₯がε„ͺε…ˆγ•γ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\n&l&9補袳:&rθ‡ͺε‹•εŒ–γ§δ½Ώγˆγ‚‹γ‚’γ‚€γƒ†γƒ γ‚Ώγ‚°γ‚’γ‚‚γ£γ¨ηŸ₯γ‚ŠγŸγ„ε ΄εˆγ―γ€γ‚’γ‚€γƒ†γƒ γ«γ‚«γƒΌγ‚½γƒ«γ‚’εˆγ‚γ›γŸηŠΆζ…‹γ§Shiftγ‚­γƒΌγ‚’ζŠΌγ™γ¨θ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚δΎ‹γˆγ°γ€&e&o#forge:plates/copper&rγ¨θ‘¨η€Ίγ•γ‚Œγ¦γ„γ‚‹γ‚’γ‚€γƒ†γƒ γ―γ€&e&lplates/copper&rとしてフィルター設εšγ§γγΎγ™γ€‚\n\n&9&l補袳2:&r をむテムタグフィルターは一部&d正規葨現(regexοΌ‰&rγ«γ‚‚ε―ΎεΏœγ—γ¦γ„γΎγ™γ€‚θ©³γ—γγ―ζƒ…ε ±γ‚’γ‚€γ‚³γƒ³γ«γ‚«γƒΌγ‚½γƒ«γ‚’εˆγ‚γ›γ¦η’Ίθͺγ—てください。", + "quests.high_voltage.bedrock_miner.subtitle": "η„‘ι™ι‰±ηŸ³οΌŸ", + "quests.high_voltage.bedrock_miner.desc.1": "γŠγγ‚‰γγ€γ“γ‚ŒγŒεˆγ‚γ¦&cε²©η›€ι‰±ηŸ³ζŽ‘ζŽ˜ζ©Ÿ&rγ«ε‡ΊδΌšγ†γ‚Ώγ‚€γƒŸγƒ³γ‚°γ§γ—γ‚‡γ†γ€‚GregTechγ§γ‚‚ζ»…ε€šγ«δ½Ώγ‚γ‚Œγͺいレをγͺθ£…η½γ§γ™γ€‚\n仕硄みは&bζΆ²δ½“ζŽ˜ε‰Šθ£…η½&rγ«δΌΌγ¦γ„γΎγ™γŒγ€ζŽ‘ζŽ˜γ™γ‚‹ι‰±θ„ˆγ―&nζž―ζΈ‡γ™γ‚‹γ“γ¨γŒγ‚γ‚ŠγΎγ›γ‚“&r。\n\nエネルγ‚γƒΌζΆˆθ²»γ‚‚ε°‘γͺく、&bMV&rγ‚„&6HV&rγ§γ‚‚εεˆ†η¨Όεƒε―θƒ½γ§γ™γ€‚γ•γ‚‰γ«&aεŽŸζ–™γζŠ•ε…₯も不要&rというε„ͺγ‚Œγ‚‚γγ§γ™γ€‚\n\nでは、唯一γι›£η‚Ήγ―?\nγγ†γ€ι‰±θ„ˆγ‚’γ€Œθ¦‹γ€γ‘γ‚‹γ“γ¨γ€γͺγγ§γ™γ€‚", + "quests.high_voltage.bedrock_miner.desc.2": "&6HV&rγι‰±ηŸ³ζŽ’ζŸ»ζ©Ÿγ‚’&oε²©η›€ι‰±ηŸ³γƒ’γƒΌγƒ‰&r(&7Shift + 右クγƒͺック&r)に設εšγ—γ€ζ°—ι•·γ«ζŽ’していきましょう。η›ηš„γι‰±θ„ˆγ‚’θ¦‹γ€γ‘γŸγ‚‰γ€θ³‡ζΊγ‚’γ©γ†γ‚„γ£γ¦ε‰ε“¨εŸΊεœ°γΎγ§ι‹γΆγ‹γ‚‚θ¨ˆη”»γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&f月&rγ§γ―γ€ζœ€εˆγεŸΊε²©ι‰±ηŸ³ι‰±θ„ˆγ‚’発見でき、そこから耇数γι‡θ¦γͺε…ƒη΄ γ‚’γ€Œζ°ΈηΆšηš„γ‹γ€η„‘ζ–™γ€γ§ε…₯ζ‰‹γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γ©γ‚“γͺι‰±θ„ˆγŒγ‚γ‚‹γ‹γ―JEIで璺θͺγ—γ¦γΏγΎγ—γ‚‡γ†γ€‚ι‡γΏοΌˆWeightοΌ‰γŒι«˜γ„γ»γ©γ€θ¦‹γ€γ‹γ‚Šγ‚„γ™γ„ι‰±θ„ˆγ§γ™γ€‚\n\nι‰±θ„ˆεŒε£«γŒγ‹γͺγ‚Šι›’γ‚Œγ¦γ„γ‚‹γγ§γ€&7ζœˆι’εˆ—θ»Š&rを建設するいい口εŸγ«γ‚‚γͺγ‚ŠγΎγ™γ­οΌ", + "quests.high_voltage.space_alloy.title": "R-AS γƒ­γ‚±γƒƒγƒˆεˆι‡‘", + "quests.high_voltage.space_alloy.subtitle": "δΈŠγ‚’η›ζŒ‡γ™γŸγ‚γεˆι‡‘", + "quests.high_voltage.space_alloy.desc.1": "&6R-AS(R-Aluminosteel)γƒ­γ‚±γƒƒγƒˆεˆι‡‘&rγ‚’δ½œγ‚‹γ«γ―γ€&6HV&rγƒŸγ‚­γ‚΅γƒΌγ§&7γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &r、&7ステンレス&r、そして&cζΆ²εŒ–γƒ¬γƒƒγƒ‰γ‚ΉγƒγƒΌγƒ«&rγ‚’ζ··εˆγ—γΎγ—γ‚‡γ†γ€‚\n\nこγγƒ¬γ‚·γƒ”γ―ε‡¦η†γ«ζ™‚ι–“γŒγ‹γ‹γ‚‹γŸγ‚γ€γ—γ°γ‚‰γγι–“γƒŸγ‚­γ‚΅γƒΌγ―こγδ½œζ₯­ε°‚用にγͺるでしょう。\n\nεŒζˆγ—γŸη²‰γ―EBFγ§η²ΎιŒ¬γ—γΎγ™γ€‚γ‚‚γ—&6ニクロムコむル&rγ‚’ε°Žε…₯済みでEBFγ‚’&6HV&rで稼働させているγͺら、&aPOC&rγ§ι«˜ι€Ÿε‡¦η†γŒε―θƒ½γ§γ™οΌ(POCγŒγ‚ˆγεˆ†γ‹γ‚‰γͺγ„ε ΄εˆγ―γ€γ€ŒGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ γ€γη« γ‚’チェックしてみましょう)", + "quests.high_voltage.space_alloy.desc.2": "こγι‡‘ε±žγε†·ε΄γ«γ―&9εŒ–ε­¦ζ§½&rγ‚’δ½Ώγ†γ“γ¨γŒγ§γγΎγ™γŒγ€&9ηœŸη©Ίε†·ε΄ζ©Ÿ&rγŒγ‚γ‚Œγ°ε‡¦η†ζ™‚ι–“γ‚’ε€§εΉ…γ«ηŸ­ηΈγ§γγΎγ™γ€‚\n\n&7144mbで1γ‚€γƒ³γ‚΄γƒƒγƒˆ&rにγͺγ‚ŠγΎγ™γ€‚&cθ΅€ι‹Ό&rを溢かす量には気を぀けましょう。\n\n必要γͺ&6γƒ­γ‚±γƒƒγƒˆεˆι‡‘&rγγ‚€γƒ³γ‚΄γƒƒγƒˆγ―合計で85個です。そγγŸγ‚γ«εΏ…要γͺγγ―:\n-&760個γγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &r\n-&720個γγ‚Ήγƒ†γƒ³γƒ¬γ‚Ή&r\n-&710個γθ΅€ι‹Ό&r\n\n&aγγ“γΎγ§ε€§ε€‰γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ­οΌ&r", + "quests.high_voltage.steel_engine.subtitle": "青鋼γεΈ°ι‚„", + "quests.high_voltage.steel_engine.desc": "&6γ‚ΉγƒγƒΌγƒ«γƒ­γ‚±γƒƒγƒˆγ‚¨γƒ³γ‚Έγƒ³&rγ―γ€γƒ­γ‚±γƒƒγƒˆγ‚’&aζœˆγΈι£›γ°γ™&rγŸγ‚γ«ζ¬ γ‹γ›γͺいパーツです。\n\nγƒ¬γ‚·γƒ”γ―γγ“γΎγ§θ€‡ι›‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚γ“γ“γΎγ§ζ₯γŸγ‚γͺたγͺら、各パーツγθ£½δ½œγ‚‚ε•ι‘Œγͺγε–γ‚Šη΅„γ‚γ‚‹γ―γšγ§γ™γ€‚\n\n&91152mbγζΆ²εŒ–ブルースチール&rは、&7ι’ι‹Όγ‚€γƒ³γ‚΄γƒƒγƒˆ8ε€‹εˆ†&rです。", + "quests.high_voltage.rocket_fins.subtitle": "ヒレ", + "quests.high_voltage.rocket_fins.desc": "&6γƒ­γ‚±γƒƒγƒˆγƒ•γ‚£γƒ³&rγθ£½δ½œγ§&bεˆι‡‘η²ΎιŒ¬η‚‰&rγ‚’δ½Ώγ£γŸγγ―、あγͺたが&bγƒžγƒ«γƒγ‚Ήγƒ‘γƒ«γ‚ΏγƒΌ&rγ‚’εˆ©η”¨γ§γγ‚‹γ“γ¨γ‚’ζ€γ„ε‡Ίγ—γ¦γ‚‚γ‚‰γ†γŸγ‚γ§γ™γ€‚γ“γε°εž‹EBFは、&eかまど&rとしても、&bεˆι‡‘η²ΎιŒ¬η‚‰&rγ¨γ—γ¦γ‚‚ζ©Ÿθƒ½γ—γΎγ™γ€‚\n\nそγγ‚―γ‚¨γ‚Ήγƒˆγ―&bMV&rη« γ«γ‚γ‚ŠγΎγ™γ€‚γΎγ δ½œγ£γ¦γ„γͺγ„ε ΄εˆγ―γ€γ“γζ©ŸδΌšγ«γœγ²ζ€œθ¨Žγ—てみてください。", + "quests.high_voltage.rocket_nose_cone.subtitle": "ズコーンバコーン", + "quests.high_voltage.rocket_nose_cone.desc": "&6γƒ­γ‚±γƒƒγƒˆγƒŽγƒΌγ‚Ίγ‚³γƒΌγƒ³&rγ―γ€γƒ­γ‚±γƒƒγƒˆιƒ¨ε“γγͺγ‹γ§γ‚‚η‰Ήγ«δ½œγ‚‹γγŒε€§ε€‰γ§γ™γ€‚\nまず&aポγƒͺエチレン&rγŒγ„γγ‚‰γ‹εΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚ι‡η”£δ½“εˆΆγ―ζ•΄γˆγ¦γŠγγΎγ—γ‚‡γ†γ€‚γγ—γ¦εŽ„δ»‹γͺγγ―&6HVγ‚¨γƒŸγƒƒγ‚Ώ&rです。\n\nHVγ‚¨γƒŸγƒƒγ‚Ώγ«γ―&aγ‚¬γƒ©γ‚ΉεŒ–γ—γŸγ‚¨γƒ³γƒ€γƒΌγƒ‘γƒΌγƒ«&rγŒεΏ…θ¦γ§γ™γ€‚γγγŸγ‚γε·₯η¨‹γŒθ€‡ι›‘γͺγγ§γ€&6HVγƒŸγ‚­γ‚΅γƒΌ&rγε…ˆγγ‚―γ‚¨γ‚Ήγƒˆγζ‰‹ι †γ«εΎ“いましょう。\n&cTNT&rγ‚’δ½œγ‚Šγ€&5ε†…η ΄εœ§ηΈζ©Ÿ&rで、あγζœ‰εγͺγ‚¨γƒ³γƒ€γƒΌγƒžγƒ³γθ½γ¨γ—η‰©γ‚’δ½œγ£γ¦γ—γΎγ„γΎγ—γ‚‡γ†γ€‚&2TFG&rではエンダーパールはドロップしγͺいγγ§γ™γ€‚", + "quests.high_voltage.launch_pad.subtitle": "ζ‰“γ‘δΈŠγ’δΌšε ΄", + "quests.high_voltage.launch_pad.desc": "γƒ­γ‚±γƒƒγƒˆγη™Ίε°„γγŸγ‚γ«γ―η™Ίε°„ε°γŒ&6εΏ…ι ˆ&rγ§γ™γ€‚γ©γ“γ§γ‚‚ζ‰“γ‘δΈŠγ’γ‚‰γ‚Œγ‚‹γ‚γ‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“οΌ\n\n&c帰還用γη™Ίε°„台&rγ‚’ζŒγ£γ¦θ‘Œγγ“γ¨γ‚’η΅Άε―Ύγ«εΏ˜γ‚Œγͺいでください。&c忡には忡をε…₯γ‚Œγ¦&r、何度も璺θͺγ—γŸγ»γ†γŒγ„γ„γ§γ™γ‚ˆ", + "quests.high_voltage.rocket_fuel.title": "γƒ­γ‚±γƒƒγƒˆη‡ƒζ–™", + "quests.high_voltage.rocket_fuel.subtitle": "γ‚³γ‚«γƒ»γ‚³γƒΌγƒ©γ‚’δ½œγ‚‹γ‚ˆγ‚Šγ‚‚η°‘ε˜γ§γ™", + "quests.high_voltage.rocket_fuel.desc": "γƒ­γ‚±γƒƒγƒˆγ‚’δΈ€ε›žη™Ίε°„γ™γ‚‹γŸγ‚γ«γ―γ€&6γƒ­γ‚±γƒƒγƒˆη‡ƒζ–™&rが3γƒγ‚±γƒ„εˆ†εΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚δΈ€θ¦‹δ½œγ‚‹γγŒε€§ε€‰γγ†γ«θ¦‹γˆγΎγ™γŒγ€εŸιš›γ«εΏ…要γͺγγ― &bε‘©η΄ &r、&bパタン&r、&bηͺ’η΄ &r、&bι…Έη΄ &r、そして&bζ°΄&rだけγͺγγ§γ€ζ„ε€–γ¨η°‘ε˜γ§γ™οΌ\n\nもし&5ε€§εž‹εŒ–ε­¦εεΏœη‚‰&rγŒγ‚γ‚Œγ°γ€γ„γγ€γ‹γε·₯程をスキップすることもできます。\n\nEMIγ&7レシピツγƒͺγƒΌ&rγ¨γ„γ†ζ©Ÿθƒ½γ‚’ηŸ₯γ£γ¦γΎγ™γ‹οΌŸγ‚―γƒ©γƒ•γƒˆγƒ¬γ‚·γƒ”γε³δΈ‹γ«γ‚γ‚‹4぀γε››θ§’いをむコンをクγƒͺックし、画青右下γγ€ŒοΌŸγ€γ«γ‚«γƒΌγ‚½γƒ«γ‚’εˆγ‚γ›γ‚‹γ¨γ€ζ“δ½œζ–Ήζ³•γŒθ©³γ—γθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚", + "quests.high_voltage.space_suit.title": "ε‡ε™ζœ", + "quests.high_voltage.space_suit.subtitle": "ε‡ε™γγƒ‰γƒ¬γ‚Ήγ‚³γƒΌγƒ‰", + "quests.high_voltage.space_suit.desc.1": "ζ™ζ΅ζœθ£…に焑頓着γͺあγͺγŸγ‚‚γ€ε‡ε™γ«ε‡Ίγ‹γ‘γ‚‹ιš›γ«γ―そγγΎγΎγ§γ―γ„γ‚‰γ‚ŒγΎγ›γ‚“γ€‚\nζœˆγ§ζ•°η§’δ»₯δΈŠη”Ÿγε»Άγ³γ‚‹γŸγ‚γ«γ―γ€&b呼吸可能γͺη©Ίζ°—&rγ‚’ε…₯γ‚ŒγŸε‡ε™ζœγŒεΏ…θ¦γ§γ™γ€‚γŸγ γ—γƒ­γ‚±γƒƒγƒˆγ‚ˆγ‚Šγ‚‚δ½œγ‚‹γγ―ε€§ε€‰γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“...\n\nζœ€γ‚‚ε€§ε€‰γͺγγ―γ€γŠγγ‚‰γ&dポγƒͺカプロラクタム&rοΌˆγƒŠγ‚€γƒ­γƒ³γ¨ε‘Όγ°γ‚ŒγΎγ™οΌ‰γ¨γ„γ†η΄ ζγδ½œζˆγ§γ™γ€‚\n\nγ“γ‚Œγ‚’δ½œγ‚‹γ«γ―EBFと&6HV&rγ&eεŒ–ε­¦εεΏœε™¨&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\n素材として&aベンゼン&r、&bζ°΄η΄ &r、&9ε‘©η΄ &r、&bι…Έη΄ &r、そして&3をンヒニを&rを使います。\n\nθ©³γ—γ„ζ‰‹ι †γΎγ§γ―ζ•™γˆγΎγ›γ‚“γŒγ€δ»Šγγ‚γͺたγͺら&aEMI&rを活用してθ‡ͺεŠ›γ§γŸγ©γ‚Šη€γ‘γ‚‹γ―γšγ§γ™γ€‚γ‚γͺγŸγ―γ‚‚γ†η†Ÿη·΄γGregTechプレむダーですからね。", + "quests.high_voltage.space_suit.desc.2": "ζΊ–ε‚™γŒγ§γγŸγ‚‰γ€&b圧ηΈγƒŠγ‚€γƒˆγƒ­γƒƒγ‚―γ‚Ή&rγͺどγδΊΊε·₯η©Ίζ°—γŒε…₯γ£γŸγƒ‰γƒ©γƒ γ‚„γ‚Ώγƒ³γ‚―γ‚’ε‡ε™ζœγ§&e右クγƒͺック&rするだけで、バケツγγ‚ˆγ†γ«η°‘ε˜γ«η©Ίζ°—γ‚’ε……ε‘«γ§γγΎγ™γ€‚1000mBγγ‚¬γ‚Ήγ§η΄„20εˆ†ι–“ε‘ΌεΈγ§γγΎγ™γ€‚\nε‡ε™ζœγ‚’η€γ¦γ„γ‚‹ηŠΆζ…‹γͺγ‚‰γ€γ‚¬γ‚Ήγ‚Ώγƒ³γ‚―γ‚’γ€Œι£²γ‚€γ€ε‹•δ½œγ§γ‚ΉγƒΌγƒ„ε†…γ«γ‚¬γ‚Ήγ‚’θ£œε……γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n必要γͺ装備を見落とさγͺγ„γ‚ˆγ†γ«γ€Œε‡ε™γγ‚γ‚‹γγ‹γŸγ€γη« γ‚‚δΈ€εΊ¦η’Ίθͺγ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", "quests.high_voltage.space_suit.task": "Fill it and drink it", - "quests.high_voltage.welcome_moon.title": "I'm on the &3Moon&r!", - "quests.high_voltage.welcome_moon.subtitle": "Hope you have everything to come back", - "quests.high_voltage.welcome_moon.desc": "&2Congrats&r, you’ve successfully landed on the &7Moon&r!\nHere, you’ll find &bCertus Quartz&r veins and the meteors that allow you to begin unlocking &dAE2&r.\n\nBut that’s not all β€” some veins here have much higher density than those on Earth.\n\nFor instance, you can easily find &6Ilmenite&r, &7Bauxite&r, &7Aluminium&r, and &5Chromite&r veins on the Moon.\nEstablishing a small base here will be crucial to keep progressing.\n\nYour biggest challenge will be transporting resources, as there are no easy cross-dimensional tools like the &5Ender Chest&r or &dAE2 Quantum Link&r just yet.\n\nWe hope you're well prepared, unless you want to craft a second rocket and space suit just to go collect your corpse!", - "quests.high_voltage.gun.title": "Bring a gun", - "quests.high_voltage.gun.subtitle": "And if that don't work, use more gun", + "quests.high_voltage.welcome_moon.title": "&3月&rγ«ι™γ‚Šη«‹γ€", + "quests.high_voltage.welcome_moon.subtitle": "εΈ°γ‚‹γΎγ§γŒε‡ε™ζ—…θ‘Œ", + "quests.high_voltage.welcome_moon.desc": "&2γŠγ‚γ§γ¨γ†γ”γ–γ„γΎγ™οΌ&rあγͺγŸγ―γ€γ„γ«&7月&rγ«εˆ°ι”γ—γΎγ—γŸοΌ\nここでは、&bケルタスクォーツ&rγι‰±θ„ˆγ‚„、&dAE2&rγι–‹ε§‹γ«εΏ…要γͺιš•ηŸ³γ‚’θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ•γ‚‰γ«γ€ζœˆγ«γ―εœ°ηƒγ§γ―θ²΄ι‡γͺι‰±ηŸ³γε€§θ¦ζ¨‘γͺι‰±θ„ˆγŒε­˜εœ¨γ—γΎγ™γ€‚\n\nδΎ‹γˆγ°γ€&6チタン鉄鉱&r、&7γƒœγƒΌγ‚­γ‚΅γ‚€γƒˆ&r、&7γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &r、&5γ‚―γƒ­γƒžγ‚€γƒˆ&rγͺどγι‰±θ„ˆγ‚’ζ―”θΌƒηš„η°‘ε˜γ«θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n今後γη™Ίε±•γγŸγ‚γ«γ‚‚、こγεœ°γ«ε°γ•γͺζ‹ η‚Ήγ‚’θ¨­γ‘γ‚‹γ“γ¨γŒιžεΈΈγ«ι‡θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\nζœ€γ‚‚ε€§γγͺε•ι‘Œγ―θ³‡ζΊγθΌΈι€γ§γ™γ€‚ζ‹εΏ΅γͺγŒγ‚‰γ€&5γ‚¨γƒ³γƒ€γƒΌγƒγ‚§γ‚Ήγƒˆ&rγ‚„&dAE2クをンタムγƒͺンク&rγγ‚ˆγ†γͺ欑元間輸送手ζ΅γ―γ€γΎγ εˆ©η”¨γ§γγΎγ›γ‚“γ€‚\n\nγ—γ£γ‹γ‚Šγ¨ζΊ–ε‚™γ‚’ζ•΄γˆγ¦γγ γ•γ„γ­γ€‚γ•γ‚‚γͺいと、θ‡ͺεˆ†γιΊδ½“γ‚’ε›žεŽγ™γ‚‹γŸγ‚γ«γ‚‚γ†δΈ€εΊ¦γƒ­γ‚±γƒƒγƒˆγ¨ε‡ε™ζœγ‚’δ½œγ‚‹ηΎ½η›γ«γͺγ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“β€¦οΌ", + "quests.high_voltage.gun.title": "ιŠƒγζΊεΈ―", + "quests.high_voltage.gun.subtitle": "いいセンスだ", "quests.high_voltage.gun.task1": "Any gun", "quests.high_voltage.gun.task2": "Any medicine or aged alcohol", - "quests.high_voltage.gun.desc": "Getting a little too comfortable on Earth? You won't be alone on the moon, so make sure you're well prepared to defend yourself - you'll need more than just a sword or some stone javelins.\n\n%4The Moon is dangerous%r and you wouldn't want to lose your precious Rocket right?\n\nPick out a nice gun (if you're not sure, we recommend the &o\"Clockwork\" Sniper&r), craft some ammo, and maybe try out some attachments if you're feeling fancy.\n\nIt's also a good idea to bring some nutritious food to raise your max HP (try the meal bags!) as well as some alcohol and medicine for buffs and healing.", - "quests.high_voltage.space_survival.title": "Home away from home", - "quests.high_voltage.space_survival.subtitle": "More than just a mining dimension", - "quests.high_voltage.space_survival.desc": "If you haven't already, be sure to check out the &3Tips - Space Survival&r quest chapter! It contains all the information you'll need to establish a proper moon colony.", - "quests.high_voltage.hypertubes.title": "Hypertubes", - "quests.high_voltage.hypertubes.subtitle": "The future is now, old man", - "quests.high_voltage.hypertubes.desc": "Looking for a cooler way to quickly get around your base? Try &3Hypertubes&r! Just stand near one end and you'll be sucked up and transported to the other, and they can go in any direction too!\n\nThese do require Stress Units to power, but if you don't have a Create setup any more, you can turn EU into SU with a GregTech Energy Converter and an Electric Motor from &9&oCreate Crafts and Additions&r.", - "quests.high_voltage.wand.title": "Infinity Construction Wand", - "quests.high_voltage.wand.subtitle": "Ultimate skyblock tool", - "quests.high_voltage.wand.desc": "This wand does exactly the same thing as the other wands, except with &3no durability&r. Do you like building lots of tall buildings or paving over acres of pristine grassland? This is the tool for you!\n\nKeep in mind that Building Gadgets is available soon in &5EV&r, which provides even more powerful tools for avid builders.", - "quests.high_voltage.moon_harvester.title": "The Moon Harvester", - "quests.high_voltage.moon_harvester.subtitle": "Remember Bedrock miner?", - "quests.high_voltage.moon_harvester.desc": "The &7Moon&r is your first entry into &einfinite ores&r β€” but it’s a slow one.\nYou will need to harvest different kinds of &bRegolith Dust&r, each obtainable only in a specific biome.\nTo do this, you’ll rely on the &6Moon Harvester&r. There are two important things to remember when using it:\n\nβ€’ It requires an &9Input Bus&r so you can set the right &9circuit&r.\nβ€’ It supports &ecoils&r just like the &6Cracker&r β€” the higher the tier of your coils, the bigger the energy discount.\nThis is especially useful when harvesting Regolith far from your base.\n\nOf course, raw dust isn’t enough.\nYou’ll need a &asmall processing line&r to extract resources from the Regolith dust. So make sure to bring them to your &7Moon base&r for processing.", - "quests.high_voltage.regolith_vapor.title": "Regolith Vapor", - "quests.high_voltage.regolith_vapor.subtitle": "The little something to make dusts into ores", - "quests.high_voltage.regolith_vapor.desc": "To process your &bRegolith Dust&r, you’ll need &bRegolith Vapor&r β€” and setting it up is a bit more involved.\n\nHere’s what you’ll need:\n\nβ€’ &7Lunar Sand&r β€” obtainable infinitely with a &6Rock Breaker&r.\nβ€’ &eCarbon Dioxide&r β€” produced from &9Oxygen&r and &8Carbon Dust&r (easy, thanks to the infinite &bDiamond Dust&r you’ll be getting).\nβ€’ &9Nitrogen&r β€” acquired through the cultivation of &dChorus Fruits&r.\n\nTip: You can loop your &9Oxygen&r through &bSilicon Dioxide&r, which also gives you a steady bonus of &eSilicon Dust&r β€” a very useful side product.", + "quests.high_voltage.gun.desc": "εœ°ηƒγ§γδΈ€δΊΊζšγ‚‰γ—γ―εΏ«ι©γ§γ—γŸγ‹οΌŸζœˆγ§γ―γ€γ‚γͺたγε­€η‹¬γ‚’εŸ‹γ‚γ¦γγ‚Œγ‚‹η΄ ζ•΅γͺζ•΅ε―Ύγƒ’γƒ–γŸγ‘γŒγ€γ‚γͺγŸγ‚’γŠε‡ΊθΏŽγˆγ—γ¦γγ‚ŒγΎγ™γ€‚\nθΏŽγˆζ’ƒγ‘γΎγ—γ‚‡γ†γ€‚γŸγ γ—γ€ε‰£γ‚„γ‚Έγƒ£γƒ™γƒͺンでは心もとγͺγ„γ§γ™γ‚ˆγ€‚\n\nご想像γι€šγ‚Šγ€&4ζœˆγ―γ¨γ¦γ‚‚ε±ι™Ίγͺ場所です&r。せっかくγγƒ­γ‚±γƒƒγƒˆγ‚’倱わγͺγ„γŸγ‚γ«γ―δ½•γŒεΏ…θ¦γ γ¨ζ€γ„γΎγ™γ‹οΌŸ\n\n&o\"Clockwork\"Sniper&rγͺγ©γŒγŠγ™γ™γ‚γ§γ™γ€‚εΌΎθ–¬γ‚’η”¨ζ„γ—γ€δ½™θ£•γŒγ‚γ‚Œγ°γ‚’γ‚Ώγƒƒγƒγƒ‘γƒ³γƒˆγ§γ‚«γ‚Ήγ‚Ώγƒžγ‚€γ‚Ίγ—γ¦γΏγ¦γ‚‚θ‰―γ„γ§γ—γ‚‡γ†γ€‚\n\nγ•γ‚‰γ«γ€ζ΄»εŠ›γ‚’δ»˜γ‘γ‚‹γŸγ‚γζ „ι€ŠζΊ€η‚Ήγͺι£ŸδΊ‹(フγƒͺγƒΌγ‚Ίγƒ‰γƒ©γ‚€ι£Ÿε“γͺど)γ‚„γ€γƒγƒ•γƒ»ε›žεΎ©η”¨γγŠθ–¬γ‚„γŠι…’γ‚‚ζΊεΈ―しているとε‰εΏƒγ§γγΎγ™γ€‚", + "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": "ζ‹ η‚Ήε†…γγ‚ΉγƒžγƒΌγƒˆγͺ移動手ζ΅γ‚’γŠζŽ’γ—γ§γ™γ‹οΌŸγ§γ—γŸγ‚‰&3Hypertubes&rをご紹介します!\nε–γ‚Šδ»˜γ‘γ―γ¨γ¦γ‚‚η°‘ε˜γ§γ€γ”εˆ©η”¨γιš›γ«η‰Ήεˆ₯γͺζ“δ½œγ‚‚εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“οΌ\n\nε‹•γ‹γ™γŸγ‚γ«γ―εΏœεŠ›γ‚’δΎ›η΅¦γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚&9&oCreate_CraftsοΌ†Additions&rγι›»ε‹•γƒ’γƒΌγ‚ΏγƒΌγ‚’δ½Ώγˆγ°ι›»εŠ›γ§ε‹•γ‹γ™γ“γ¨γ‚‚γ§γγΎγ™γγ§γ€η‰Ήεˆ₯にCreateγι’ε€’γͺζ©Ÿζ§‹γ‚’η΅„γ‚€εΏ…θ¦γ‚‚γ‚γ‚ŠγΎγ›γ‚“οΌ", + "quests.high_voltage.wand.title": "ε»Ίη―‰εΆγε€’", + "quests.high_voltage.wand.subtitle": "こγζ–γ―ε£Šγ‚Œγͺγ„γ€θ£εˆ‡γ‚‰γͺい", + "quests.high_voltage.wand.desc": "ι«˜ζ€§θƒ½γƒγ‚Ώγƒ‹γ‚¦γƒ γƒ―γƒ³γƒ‰γ―δ»ŠγΎγ§γγƒ―γƒ³γƒ‰γ¨γ―δΈ€η·šγ‚’η”»γ™ζ€§θƒ½γ‚’ζŒγ£γ¦γ„γΎγ™γ€‚γΎγšγ€εŒζ™‚γ«θ¨­η½γ§γγ‚‹ζ•°γŒδ»ŠγΎγ§γ¨γ―摁違いです!そして、γͺγ«γ‚ˆγ‚Š&3θ€δΉ…ε€€γŒζΈ›γ‚ŠγΎγ›γ‚“&r!\n\nι«˜ε±€γƒ“γƒ«γ‚’γŸγγ•γ‚“ε»Ίγ¦γŸγ„ζ–Ήγ‚„γ€εΊƒε€§γͺθ‰εŽŸγ‚’θˆ—θ£…γ—γŸγ„ζ–Ήγ«γ―γ΄γ£γŸγ‚Šγι“具です!\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γ‚’δ½Ώη”¨γ—γΎγ™γ€‚δ½Ώγ†ιš›γ«θ¦šγˆγ¦γŠγγΉγι‡θ¦γͺγƒγ‚€γƒ³γƒˆγŒ2γ€γ‚γ‚ŠγΎγ™οΌš\n\nβ€’&9ε›žθ·―&rγ‚’θ¨­εšγ™γ‚‹γŸγ‚γ«γ€&9搬ε…₯バス&rγŒεΏ…θ¦γ§γ™γ€‚\nβ€’&6クラッカー&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と&7η‚­η΄ &r(&bダむダヒンドγη²‰&rからε…₯ζ‰‹ε―θƒ½οΌ‰γ‹γ‚‰η”Ÿζˆγ§γγΎγ™γ€‚\nβ€’&9ηͺ’η΄ &rβ€”β€”&dコーラスフルーツ&rγζ ½εŸΉγ«γ‚ˆγ£γ¦η”Ÿζˆγ§γγΎγ™γ€‚\n\nTipsοΌšγ‚’&bδΊŒι…ΈεŒ–γ‚±γ‚€η΄ &rから&9ι…Έη΄ &rγ‚’ε–γ‚Šε‡Ίγ™ιŽη¨‹γ§γ€ε‰εšγ—γŸι‡γ&eγ‚±γ‚€η΄ &rγ‚’ε‰―η”£η‰©γ¨γ—γ¦εΎ—γ‚‰γ‚ŒγΎγ™γ€‚ιžεΈΈγ«δΎΏεˆ©γͺε‰―εŽε…₯源ですね。", "quests.high_voltage.regolith_vapor.task": "Got it", - "quests.high_voltage.regolith_dust.title": "Regolith for each biomes", - "quests.high_voltage.regolith_dust.subtitle": "The three musketeers", - "quests.high_voltage.regolith_dust.desc": "You can obtain &b4 different types of Regolith Dust&r, each producing unique resources.\n\nEach type is tied to a specific &7deep biome&r on the &7Moon&r. Keep in mind: these biomes are not directly connected to each other, so you’ll need to explore a bit.\n\nFinding the right biome is made much easier with the &aXaero Map&r β€” use it to quickly locate where each dust can be harvested.", - "quests.high_voltage.dusty_ores.title": "Dusty Ores", - "quests.high_voltage.dusty_ores.subtitle": "Are you telling more Ore Processing?", - "quests.high_voltage.dusty_ores.desc": "The &7Dusty Ore&r is an exclusive &dTerraFirmaGreg&r ore type. All the &cinfinite ores&r you’ll obtain on the &7Moon&r β€” and later on &4Mars&r β€” will appear as Dusty Ores.\n\nAt this stage, the only way to process them is by using a &6Centrifuge&r to extract their dusts.\n\nPretty limiting, right? Don’t worry β€” you’ll unlock far &ebetter processing&r options once you reach &eVenus&r!\n\nPro tip: You can already speed things up with a &6Large Chemical Reactor&r. Thanks to &bPerfect Overcloaking&r, it can handle Dusty Ores much faster than the basic recipe suggests.", + "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&b岩屑&rγ‚’ζŽ‘ε–γ§γγ‚‹ε ΄ζ‰€γ‚’ζŽ’γ™γ«γ―γ€&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ε›Ίζœ‰γι‰±ηŸ³γ§γ™γ€‚\n&7月&rγ‚„&4火星&rγ§η”Ÿζˆγ—γŸ&cη„‘ι™ι‰±ηŸ³&rγŸγ‘γ―γ€γ©γ‚Œγ‚‚η²‰γ£γ½γγͺγ‚ŠγΎγ™γ€‚ε…ƒγ€…γŒε‘΅γ§γ™γ‹γ‚‰γγ‚Šγ‚ƒγγ†γ§γ™γ‚ˆγ­γ€‚\n\n現ζ΅ιšŽγ§γε”―δΈ€γζ΄»η”¨ζ³•は、&6ι εΏƒεˆ†ι›’ζ©Ÿ&rγ‚’δ½Ώγ£γ¦ι‰±ηŸ³γη²‰γ‚’ζŠ½ε‡Ίγ™γ‚‹γ“γ¨γ§γ™γ€‚\n\nγšγ„γΆγ‚“γ¨ι™εšηš„γͺη”¨ι€”γ γ¨ζ€γ†γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚γ§γ™γŒε‰εΏƒγ—てください、ι₯γ‹ε…ˆγ«γ‚γ‚‹&eι‡‘ζ˜Ÿ&rγ«εˆ°ι”γ™γ‚Œγ°γ€γ―γ‚‹γ‹γ«&eε„ͺγ‚ŒγŸε‡¦η†ζ–Ήζ³•&rγŒθ§£η¦γ•γ‚ŒγΎγ™οΌ\n\nTips:&6ε€§εž‹εŒ–ε­¦εεΏœε™¨&rγ&bPOC&rγ‚’εˆ©η”¨γ™γ‚Œγ°γ€γ‹γͺγ‚Šι«˜ι€Ÿγ§ε‡¦η†γ§γγΎγ™γ€‚", "quests.high_voltage.dusty_ores.task": "All the Moon Dusty Ores", - "quests.high_voltage.final_dust.title": "Infinite Dusts", - "quests.high_voltage.final_dust.subtitle": "Finally infinite resources", - "quests.high_voltage.final_dust.desc": "This is all the &cinfinite resources&r you can obtain on the &7Moon&r before unlocking the more advanced processing available on &eVenus&r.\n\nWith these, you should have everything you need to keep progressing through &dGregTech&r β€” especially to secure the &amaintenance&r of your Moon Base.\n\nThese resources are essential for:\nβ€’ Crafting &dAE2 components&r\nβ€’ Producing an &cinfinite&r supply of &6Railgun Ammo&r\n\nPassive automation is now within your reach β€” take the step and make it happen!", - "quests.low_voltage": "&7LV&r - Low Voltage", - "quests.low_voltage.subtitle": "Tame electricity and begin your GregTech journey", - "quests.low_voltage.lv_machine_hull.title": "Your second machine hull", - "quests.low_voltage.lv_machine_hull.subtitle": "It's time to get into electricity", - "quests.low_voltage.lv_machine_hull.desc.1": "You're getting real close to your &6first LV Machine&r and the beginning of the electric age! If you haven't made any &4Red Steel&r yet, you'll now have to, but in return you will get &6new ways&r to improve your production.\n\nThis is the GregTech philosophy: &6the further you progress, the better the new recipes become&r.\n\nTry to make at least 3 or 4 casings to begin.", - "quests.low_voltage.lv_machine_hull.desc.2": "For some players, reaching a new tier is marked by crafting the first &6circuit&r, for others it's the &6machine hull&r or the &6energy hatch&r. You can use whatever works best for you, but for the sake of organization, these quests will use the machine hull.", - "quests.low_voltage.lv_machine_casing.title": "LV Machine Casing for Create?", - "quests.low_voltage.lv_machine_casing.subtitle": "More options!", - "quests.low_voltage.lv_machine_casing.desc": "To make getting into LV less intimidating, &5TFG&r gives you the option to use &6Create&r machines in place of some &6GregTech&r machines.\n\nWe introduced them &6last chapter&r, but just know that if there is an alternative to a GregTech machine, you will have the choice within the quest.", - "quests.low_voltage.lv_motor.title": "The First of Many Motors", - "quests.low_voltage.lv_motor.subtitle": "Low Voltage beckons...", - "quests.low_voltage.lv_motor.desc": "Remember that &2EMI is your friend&r if recipes are getting overwhelming. You can click the button with four stacked squares on the bottom right of any recipe, and EMI will show you a tree of all the crafting ingredients, and you can even have it add a \"shopping list\" to your favourites!\n\nGetting back on topic, set yourself up for &7LV&r by crafting six &aLV Electric Motors&r! This may seem like a lot, but that's the bare minimum required to get to the good stuff in &7LV&r.", - "quests.low_voltage.lv_age_progression.title": "LV Age Progression", - "quests.low_voltage.lv_age_progression.subtitle": "Too many options, too little time!", - "quests.low_voltage.lv_age_progression.desc": "&7LV&r will require you to craft a lot of different machines! Here's a friendly tip if you're struggling to set goals: pick an item in a later quest and go backwards from there.\n\nWith that in mind... why don't we start with a &5Fusion Controller&r? Never mind, slightly too ambitious - let's check a closer goal instead. Ah, yes, the &3Electric Blast Furnace&r - the main end goal of &7LV&r - should be a good target.\n\nThe EBF is &aexpensive&r, which is why you should initially focus on machines to make components and materials cheaper. Our quests will try to will guide you in the right direction.\n\nOther important goals are crafting the &3LV Assembler&r, making your first &aMV Circuits&r and getting your first &bCircuit Assembler&r.", + "quests.high_voltage.final_dust.title": "焑限γη²‰θ£½", + "quests.high_voltage.final_dust.subtitle": "をンγƒͺγƒŸγƒ†γƒƒγƒ‰γƒ€γ‚Ήγƒˆγƒ―γƒΌγ‚―γ‚Ή", + "quests.high_voltage.final_dust.desc": "&eι‡‘ζ˜Ÿ&rγ«εˆ°ι”γ™γ‚‹γΎγ§γ―γ€&7月&rで璺保できる&c焑限資源&rγ―γ“γ‚Œγ γ‘γ§γ™γ€‚\n\nγ“γ‚Œγ‚‰γθ³‡ζΊγŒη„‘ι™εŒ–γ•γ‚Œγ¦γ„γ‚Œγ°γ€&dGregTech&rをかγͺγ‚ŠεΏ«ι©γ«ι€²γ‚γ‚‰γ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚&a月青基地&rγηΆ­ζŒγ«γ‚‚欠かせません。\n\nε…·δ½“ηš„γͺη”¨ι€”οΌš\nβ€’&dAE2γ‚³γƒ³γƒγƒΌγƒγƒ³γƒˆ&rγδ½œζˆ\nβ€’&6レールガンγεΌΎ&rγ&c焑限&rη”Ÿη”£\n\nθ³‡ζΊγŒη„‘ι™εŒ–γ•γ‚ŒγŸγ“γ¨γ§γ€γ„γγ€γ‹γγƒ‘γƒƒγ‚·γƒ–γƒ©γ‚€γƒ³γ‚’η΅„γ‚€γ“γ¨γŒγ§γγ‚‹γ‚ˆγ†γ«γͺγ£γŸγ¨ζ€γ„γΎγ™γ€‚γγ‘γ‚‰γ«ζ³¨εŠ›γ—γ¦γ‚‚γ„γ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚", + "quests.high_voltage.titanium_greate.title": "Greate-チタニウムエディション", + "quests.high_voltage.titanium_greate.desc": "TerraFirmaGregγ«γŠγ„γ¦Greateγθ¦η΄ γ―γ“γ‚Œγ§ζœ€εΎŒγ§γ™γ€‚θΆ…ι«˜ι›»εœ§γ«γ΅γ•γ‚γ—γ„θΆ…ι«˜ζ€§θƒ½γ§γ―γ‚γ‚ŠγΎγ™γŒ...δ»Šγ•γ‚‰ζ­―θ»Šγ‚’ε›žγ—γŸγ„γ§γ™γ‹οΌŸ", + "quests.low_voltage": "&7LV&r - δ½Žι›»εœ§ζ™‚δ»£", + "quests.low_voltage.subtitle": "どんγͺ元素も焑駄にしγͺいε„ͺしいε·₯ζ₯­mod", + "quests.low_voltage.lv_machine_hull.title": "第二γγƒžγ‚·γƒ³η­δ½“", + "quests.low_voltage.lv_machine_hull.subtitle": "ι›»ζ°—γζ™‚代γεΉ•開け", + "quests.low_voltage.lv_machine_hull.desc.1": "あと少しで&6ζœ€εˆγLVγƒžγ‚·γƒ³&rγŒγ€γ„γ«εŒζˆγ—ます!\nもしもまだ&4レッドスチール&rγ‚’δ½œγ£γ¦γ„γͺいγͺら、ここで必要にγͺγ‚ŠγΎγ™γ€‚\nγ§γ™γŒε‰εΏƒγ—てください。こγε…ˆγ«ι€²γ‚€γ»γ©γƒ¬γƒƒγƒ‰γ‚ΉγƒγƒΌγƒ«γδ½œζˆγ―&6ζ₯½γ«γͺっていきます&r。\n\nGregTechでは、こγγ‚ˆγ†γ«&6ε…ˆγ«ι€²γ‚€γ»γ©γ€γ‚ˆγ‚ŠεŠΉηŽ‡γθ‰―γ„η”Ÿη”£ζ‰‹ζ΅γŒθ§£ζ”Ύγ•γ‚Œγ¦γ„γγΎγ™οΌ&r\n\nまずは3γ€œ4ε€‹γ»γ©γƒžγ‚·γƒ³ε€–θ£…γ‚’η”¨ζ„γ—γΎγ—γ‚‡γ†γ€‚", + "quests.low_voltage.lv_machine_hull.desc.2": "ζ–°γ—γ„γƒ†γ‚£γ‚’γ«εˆ°ι”γ—γŸγ¨γ™γ‚‹εŸΊζΊ–γ―δΊΊγγ‚Œγžγ‚Œγ§γ™γ€‚γγγƒ†γ‚£γ‚’γ&6ε›žθ·―&rγ‚’δ½œγ£γŸζ™‚γ γ¨γ™γ‚‹δΊΊγ‚‚γ„γ‚Œγ°γ€&6筐体&rγ‚„&6エネルγ‚ーハッチ&rγ‚’εŒζˆγ•γ›γŸζ™‚γ γ¨θ€ƒγˆγ‚‹δΊΊγ‚‚γ„γΎγ™γ€‚\nあγͺたγδΈ­γ§γ©γ‚Œγ‚’εŸΊζΊ–γ«γ—γ¦γ‚‚ζ§‹γ„γΎγ›γ‚“γŒγ€γ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ‚γ‹γ‚Šγ‚„γ™γγ™γ‚‹γŸγ‚γ€&6筐体&rγ‚’εŸΊζΊ–γ¨γ—γΎγ™γ€‚", + "quests.low_voltage.lv_machine_casing.title": "CreateでGregγ‚’ι€²γ‚γ‚‹οΌŸ", + "quests.low_voltage.lv_machine_casing.subtitle": "ιΈζŠžθ‚’γ―ε€šγ„ζ–ΉγŒγ„γ„γ§γ™γ‚ˆγ­", + "quests.low_voltage.lv_machine_casing.desc": "LV時代へγη§»θ‘Œγ‚’少しでもζ₯½γ«γ™γ‚‹γŸγ‚γ«γ€&5TFG&rでは一部γ&6GT&r機撰γδ»£γ‚γ‚Šγ«&6Create&rγζ©Ÿζ’°γ‚’δ½Ώγ†γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&6前γη« &rγ§η΄Ήδ»‹γ—γŸγ¨γŠγ‚Šγ€GregTechγζ©Ÿζ’°γ«δ»£γ‚γ‚‹γ‚‚γγŒγ‚γ‚‹ε ΄εˆγ―γ€γ‚―γ‚¨γ‚Ήγƒˆε†…γ§γ©γ‘γ‚‰γ‚’δ½Ώγ†γ‹ιΈγΉγ‚‹γ‚ˆγ†γ«γͺっています。", + "quests.low_voltage.lv_motor.title": "εˆγ‚γ¦γγƒ’γƒΌγ‚ΏγƒΌ", + "quests.low_voltage.lv_motor.subtitle": "LVγηœ·ε±žγŸγ‘", + "quests.low_voltage.lv_motor.desc": "γƒ¬γ‚·γƒ”γŒθ€‡ι›‘γ γ¨ζ„Ÿγ˜γ¦γγŸγ¨γγ―γ€&2EMIγŒεΏƒεΌ·γ„ε‘³ζ–Ή&rにγͺγ£γ¦γγ‚ŒγΎγ™γ€‚\nレシピγε³δΈ‹γ«γ‚γ‚‹ε››θ§’γŒ4γ€δΈ¦γ‚“γ γƒœγ‚Ώγƒ³γ‚’γ‚―γƒͺγƒƒγ‚―γ™γ‚Œγ°γ€γƒ¬γ‚·γƒ”γƒ„γƒͺγƒΌγŒθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚γΎγŸγ€γ‚―γƒ©γƒ•γƒˆγ«εΏ…θ¦γͺγ‚’γ‚€γƒ†γƒ γ‚’γŠζ°—γ«ε…₯γ‚Šγ«θΏ½εŠ γ—γ¦γŠγγ“γ¨γ‚‚γ§γγΎγ™οΌ\n\nζœ¬ι‘Œγ«ζˆ»γ‚ŠγΎγ™γ€‚&7LV&rζ™‚δ»£γ«ε‚™γˆγ¦γ€&aLVι›»ε‹•γƒ’γƒΌγ‚ΏγƒΌ&rγ‚’6ε€‹η”¨ζ„γ—γ¦γŠγ„γ¦γγ γ•γ„γ€‚γ“γ‚Œγ―γ€&7LV&rγ‚’ζœ¬ζ Όηš„γ«ι€²γ‚γ‚‹γŸγ‚γ«εΏ…θ¦γͺζœ€δ½Žι™γζ•°γ§γ™γ€‚", + "quests.low_voltage.lv_age_progression.title": "LV時代γι€²γ‚ζ–Ή", + "quests.low_voltage.lv_age_progression.subtitle": "必要γͺγγ―根気と時間です", + "quests.low_voltage.lv_age_progression.desc": "&7LV&rγ‹γ‚‰γ―γ€ε€šγγη¨ι‘žγζ©Ÿζ’°γ‚’γ‚―γƒ©γƒ•γƒˆγ—γ¦γ„γεΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌ\nγ‚‚γ—γ€Œγ©γ“γ‹γ‚‰ζ‰‹γ‚’δ»˜γ‘γ‚Œγ°γ„γ„γ‹εˆ†γ‹γ‚‰γͺγ„γ€γ¨ζ„Ÿγ˜γŸγ‚‰γ€εΎŒγγ‚―γ‚¨γ‚Ήγƒˆγγ‚’むテムを一぀選んで、そこから逆η—してη›ζ¨™γ‚’立ててみましょう。\n\nγ¨γ„γ†γ“γ¨γ§γ€γΎγšγ―δΈ€ζ—¦&5ζ Έθžεˆη‚‰γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌ&rγ‚’η›ζ¨™γ«γ—てみますか。\nγ•γ™γŒγ«ι γ™γŽγΎγ—γŸοΌŸγ§γ―γ€γ‚‚γ†ε°‘γ—ηΎεŸηš„γͺη›ζ¨™γ¨γ—て、&7LV&rγζœ€η΅‚η›ζ¨™γ¨γ‚‚θ¨€γˆγ‚‹&3ε·₯ζ₯­η”¨ι›»ζ°—炉&r(ι€šη§°οΌšEBF)γ‚’η›ζŒ‡γ—てみましょう。\n\nEBFは、現時点では&aιžεΈΈγ«γ‚³γ‚ΉγƒˆγŒι«˜γ„&rγŸγ‚γ€γΎγšγ―ιƒ¨ε“γ‚„η΄ ζγ‚’εŠΉηŽ‡γ‚ˆγη”Ÿη”£γ§γγ‚‹ζ©Ÿζ’°γι–‹η™Ίγ‹γ‚‰ε§‹γ‚γ‚‹γγŒγŠγ™γ™γ‚γ§γ™γ€‚\n\nLVでγγ€γγγ»γ‹γι‡θ¦γͺη›ζ¨™γ¨γ—ては、&3εŸΊζœ¬εž‹η΅„η«‹ζ©Ÿ&rγδ½œζˆγ€ζœ€εˆγ&aMVε›žθ·―&rγδ½œζˆγ€&bεŸΊζœ¬εž‹ε›žθ·―δ½œζˆζ©Ÿ&rγδ½œζˆγͺγ©γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.low_voltage.lv_age_progression.task": "I... might have some sense of direction now", - "quests.low_voltage.lv_steam_turbine.title": "Electricity Generation", - "quests.low_voltage.lv_steam_turbine.subtitle": "You must construct additional turbines", - "quests.low_voltage.lv_steam_turbine.desc.1": "The &3Steam Turbine&r is one of the only generators you can realistically use in &7LV&r. &2Later, you'll unlock more interesting Power options&r, such as natural gases or petrols.\n\nWhen provided Steam, the turbine will output EU at a ratio of &d2 Steam = 1 EU&r.", - "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\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 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.", - "quests.low_voltage.link_chapter.title": "Explain energy to me", - "quests.low_voltage.link_chapter.subtitle": "There is a whole chapter about energy", - "quests.low_voltage.link_chapter.desc": "View the chapte by clicking here", + "quests.low_voltage.lv_steam_turbine.title": "蒸気タービン発電", + "quests.low_voltage.lv_steam_turbine.subtitle": "γ‚ΏγƒΌγƒ“γƒ³γ‚’ε›žγ™γ‚“γ ", + "quests.low_voltage.lv_steam_turbine.desc.1": "&3θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³η™Ίι›»ζ©Ÿ&rは、&7LV&rでは数少γͺいεŸη”¨ηš„γͺη™Ίι›»ζ©ŸγδΈ€γ€γ§γ™γ€‚\n&2ε°†ζ₯ηš„γ«γ―&rγ€ε€©η„Άγ‚¬γ‚Ήγ‚„ηŸ³ζ²Ήγ‚’εˆ©η”¨γ—γŸγ€γ‚ˆγ‚Šι«˜εΊ¦γͺη™Ίι›»ζ–Ήζ³•γ‚‚δ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\n蒸気を供硦すると、こγη™Ίι›»ζ©Ÿγ―&dθ’Έζ°—2mbに぀き1EU&rγζ―”ηŽ‡γ§η™Ίι›»γ—γ¦γγ‚ŒγΎγ™γ€‚", + "quests.low_voltage.lv_steam_turbine.desc.2": "&3蒸気タービン&rγ‚’1εŸΊγ γ‘δ½Ώγ†ε ΄εˆγ―γ€ι›»εŠ›γθΌΈι€γ―&a1ε€ιŒ«γ‚±γƒΌγƒ–γƒ«&rγ‚’δ½Ώγˆγ°ε•ι‘Œγ‚γ‚ŠγΎγ›γ‚“γ€‚\nγŸγ γ—γ€&32基γθ’Έζ°—タービン&rγ«ε’—θ¨­γ—γŸγ¨γγ―γ€&a2ε€ιŒ«γ‚±γƒΌγƒ–γƒ«&rγ‚’δ½Ώγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γγ†γ—γͺγ„γ¨γ€γ‚±γƒΌγƒ–γƒ«γŒ&cιŽι›»ζ΅γ«γ‚ˆγ‚Šη„Όγ‘γ¦γ—γΎγ†&rγ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“\n\nγ“γ‚Œγ―&9γ‚’γƒ³γƒšγ‚’(電桁量)&rγ¨γ„γ†δ»•η΅„γΏγŒι–’δΏ‚γ—γ¦γ„γΎγ™γŒγ€γγγ‚γŸγ‚Šγθ©³γ—いθͺ¬ζ˜Žγ―γ‚‚γ†ε°‘γ—εΎŒγ§θ‘Œγ„γΎγ™γ€‚\nまずはε‰εΏƒγ—てプレむをζ₯½γ—んでください!", + "quests.low_voltage.lbb.title": "γƒ–γƒ­γƒ³γ‚Ίθ£½ε€§εž‹γƒœγ‚€γƒ©γƒΌ", + "quests.low_voltage.lbb.subtitle": "θ’Έζ°—ζ™‚δ»£γŒη΅‚γ‚γ‚‹γ¨γ©γ†γͺγ‚‹οΌŸ ηŸ₯らんγγ‹ θ’Έζ°—ζ™‚δ»£γŒε§‹γΎγ‚‹", + "quests.low_voltage.lbb.desc.1": "&3γƒ–γƒ­γƒ³γ‚Ίθ£½ε€§εž‹γƒœγ‚€γƒ©γƒΌ&r(ι€šη§°οΌšLBB)γ―γ€δ»ŠγΎγ§δ½Ώγ£γ¦γγŸε°εž‹γγƒœγ‚€γƒ©γƒΌγη™Ίε±•εž‹γ§γ‚γ‚Šγ€ε€§ι‡γθ’Έζ°—γ‚’η”Ÿη”£γ™γ‚‹γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γζ©Ÿζ’°γ§γ™γ€‚固体燃料・梲体燃料γγ©γ‘らでも稼働します。\n\nε‰εšγ—γ¦γ“γ‚Œγ‚’η¨Όεƒγ•γ›γ‚‹γ“γ¨γŒγ§γγ‚Œγ°γ€MVγΎγ§γ―ι€šη”¨γ™γ‚‹γ§γ—γ‚‡γ†γ€‚\n\nε°εž‹γƒœγ‚€γƒ©γƒΌγ¨εŒγ˜γγ€ζ°΄γδΎ›η΅¦γŒζ­’まらγͺγ„γ‚ˆγ†γ«ζ³¨ζ„γ—γΎγ—γ‚‡γ†γ€‚ζ°΄εˆ‡γ‚Œγ‚’θ΅·γ“γ™γ¨&cηˆ†η™Ί&rγ—γΎγ™γ‚ˆοΌ", + "quests.low_voltage.lbb.desc.2": "εŒε…¨γ«ζΈ©εΊ¦γŒδΈŠγŒγ‚Šγγ£γŸ&3LBB&rは、1γƒ†γ‚£γƒƒγ‚―γ‚γŸγ‚Š800mbγ‚‚γθ’Έζ°—γ‚’η”ŸγΏε‡Ίγ—γΎγ™γ€‚γ“γ‚Œγ―εŸΊζœ¬εž‹θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³η΄„12.5ε°εˆ†γ‚’ε‹•γ‹γ™γ“γ¨γŒγ§γγ€ι›»εŠ›ζ›η—では400EU/tにγͺγ‚ŠγΎγ™γ€‚\nε½“η„Άγ§γ™γŒγ€η‡ƒζ–™γ‚’γ‹γͺγ‚Šε€šγζΆˆθ²»γ—γΎγ™γ€‚γγγŸγ‚γ€GUIγ‹γ‚‰ε‡ΊεŠ›γ‚’25%にまで&9θͺΏζ•΄&rγ§γγ‚‹γ‚ˆγ†γ«γͺγ£γ¦γŠγ‚Šγ€γ“γθ¨­εšγ§γ―1γƒ†γ‚£γƒƒγ‚―γ‚γŸγ‚Š200mbγθ’Έζ°—(ι›»εŠ›ζ›η—&d100EU/t&rγ€εŸΊζœ¬εž‹θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³3ε°εˆ†εΌ·)γ‚’η”Ÿη”£γ—γΎγ™γ€‚\n\nこγγƒœγ‚€γƒ©γƒΌγ―ιžεΈΈγ«ι«˜ε‡ΊεŠ›γͺγγ§γ€EBF(ε·₯ζ₯­η”¨ι›»ζ°—炉)γ‚’ε‹•γ‹γ™ζΊ–ε‚™γŒζ•΄γ£γ¦γ‹γ‚‰ε°Žε…₯するγγŒγŠγ™γ™γ‚γ§γ™γ€‚", + "quests.low_voltage.lbb.desc.3": "η‡ƒζ–™γ‚’η’ΊδΏγ™γ‚‹ζ–Ήζ³•γ―γ„γγ€γ‹γ‚γ‚ŠγΎγ™γ€‚\nγŸγ¨γˆγ°γ€γƒ›γƒΌγ‚Ήγƒ—γƒΌγƒͺγƒΌγ‚’δ½Ώγ£γ¦εœ°δΈ‹γζΊΆε²©ζΉ–γ‹γ‚‰ζΊΆε²©γ‚’ζ±²γΏδΈŠγ’γ‚‹ζ–Ήζ³•γ‚„γ€θ‡ͺε‹•ζ€ζž—ε ΄γ‚’δ½œγ£γ¦δΈΈε€ͺγ‚’γ‚³γƒΌγ‚―γ‚Ήη‚‰γ«ι€γ‚Šγ€ζœ¨η‚­γ¨γ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγ‚’η”Ÿη”£γ™γ‚‹ζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚\nεœ°θ‘¨θΏ‘γγ«γ‚γ‚‹ε€§θ¦ζ¨‘γͺηŸ³η‚­ι‰±θ„ˆγ‚’θ‡ͺε‹•ζŽ‘ζŽ˜ζ©Ÿγͺγ©γ§ζŽ‘ζŽ˜γ—γ€γ‚³γƒΌγ‚―γ‚Ήγ¨ε€§ι‡γγ‚―レγ‚ͺγ‚½γƒΌγƒˆγ«γ™γ‚‹γ¨γ„γ†γγ‚‚γ„γ„γ§γ—γ‚‡γ†γ€‚γ“γ‚Œγ―ζœ¨η‚­γ‚ˆγ‚Šγ‚‚εŠΉηŽ‡ηš„γ§γ™γ€‚\n\nもしθ‡ͺε‹•ζ€ζž—γƒ«γƒΌγƒˆγ‚’ιΈγΆγͺら、LBBγ‚’γƒ•γƒ«η¨Όεƒγ•γ›γ‚‹γŸγ‚γ«γ‚³γƒΌγ‚―γ‚Ήη‚‰γ‚’3εŸΊη”¨ζ„γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.low_voltage.lv_polariser.title": "εŸΊζœ¬εž‹η£εŒ–θ£…η½", + "quests.low_voltage.lv_polariser.subtitle": "ε›žθ·―γ„γ‚‰γšγζ©Ÿζ’°", + "quests.low_voltage.lv_polariser.desc": "γ“γ‚Œγ―&7LV&rγδΈ­γ§γ‚‚η‰Ήγ«η°‘ε˜γ«δ½œγ‚Œγ‚‹ζ©Ÿζ’°γ§γ™γ€‚&6γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³γ‚’δ½Ώγ‚γšγ«&rι‡‘ε±žγ‚’γ€Œη£εŒ–γ€γ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγƒ’γƒΌγ‚ΏγƒΌγ‚’ε€§ι‡γ«δ½œζˆγ™γ‚‹ιš›γ«γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³γ‚’η―€η΄„γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.low_voltage.link_chapter.title": "ι›»θ¨­γ£γ¦οΌŸ", + "quests.low_voltage.link_chapter.subtitle": "ああ!", + "quests.low_voltage.link_chapter.desc": "Gregγι›»εŠ›γ«γ€γ„γ¦γζƒ…報はこけらに", "quests.low_voltage.link_chapter.task": "Read it", - "quests.low_voltage.lv_combuston_gen.title": "The Combustion Generator", - "quests.low_voltage.lv_combuston_gen.subtitle": "It does boom and make energy", - "quests.low_voltage.lv_combuston_gen.desc": "The &7LV Combustion Generator&r may be a bit more expensive to craft compared to other generators, but its fuels carry a lot of energy. This makes it easier to move, or if you need to power a generator far from your base, a drum filled with &2Bio Diesel&r can transport a large amount of EU.\n\nLike other &7LV Generators&r, it produces &a32 EU/t&r.", - "quests.low_voltage.lv_biodiesel.title": "Bio Diesel", - "quests.low_voltage.lv_biodiesel.subtitle": "Your first combustion fuel", - "quests.low_voltage.lv_biodiesel.desc": "You will need a &7LV Chemical Reactor&r to make &2Bio Diesel&r. Simply mix your &aSeed Oil&r with any &eAlcohol&r from &6TFC&r. Other recipes using &dEthanol&r will require you to reach &bMV&r.", - "quests.low_voltage.lv_seed_oil.title": "Seed Oil", - "quests.low_voltage.lv_seed_oil.subtitle": "The Real Power of Plants", - "quests.low_voltage.lv_seed_oil.desc": "You have two options to produce &aSeed Oil&r: either by using the &9Vacuum Chamber&r or, if you already have it, the &7LV Extractor&r will do a great job.\n\nAlso, note that &aSeed Oil&r isn't only used for making &2Bio Diesel&r.\n\nIt can also be processed into &6Lubricant&r or sent directly to your &cBlaze Burner&r for fuel.", - "quests.low_voltage.lv_seeds.title": "First, grab seeds", - "quests.low_voltage.lv_seeds.subtitle": "These are tall plants", - "quests.low_voltage.lv_seeds.desc": "If you come across these plants, you should pick them up and start a farm.\n\nThey will be your best source of &aSeed Oil&r, a liquid used for producing &eBio Diesel&r. Canola is a bit more resistant to lower temperatures, while Sunflowers are happier in warmer climates. You also could grow them in your Electric Greenhouse if you don't want to spend as much time farming, at the expense of having to spend a little power to grow them.", + "quests.low_voltage.lv_combuston_gen.title": "η‡ƒη„Όη™Ίι›»ζ©Ÿ", + "quests.low_voltage.lv_combuston_gen.subtitle": "γ‚‚γ£γ¨η‡ƒγˆγ‚‹γŒγ„γ„γ‚„οΌ", + "quests.low_voltage.lv_combuston_gen.desc": "&7εŸΊζœ¬εž‹η‡ƒη„Όη™Ίι›»ζ©Ÿ&rは、他γη™Ίι›»ζ©Ÿγ‚ˆγ‚Šγ‚‚ε°‘γ—ι«˜δΎ‘γ§γ™γŒγ€η‡ƒζ–™γζŒγ€γ‚¨γƒγƒ«γ‚ー量(燃料侑といいます)γŒε€šγ„γŸγ‚γ€γ¨γ¦γ‚‚εŠΉηŽ‡γθ‰―γ„η™Ίι›»ζ©Ÿγ§γ™γ€‚\nη‡ƒζ–™γŒζŒγ‘ι‹γ³γ‚„γ™γγ€γ‚³γƒ³γƒ‘γ‚―γƒˆγͺγŸγ‚γ€ζ‹ η‚Ήγε€–γ§η™Ίι›»ζ©Ÿγ‚’η¨Όεƒγ•γ›γ‚‹γ¨γγͺγ©γ«γ‚‚δΎΏεˆ©γ§γ™γ€‚γŸγ¨γˆγ°γ€&2バむγ‚ͺディーゼル&rでいっぱいにγͺγ£γŸγƒ‰γƒ©γƒ ηΌΆγ‚’δΈ€η·’γ«γ‚‚γ£γ¦γ„γ‘γ°γ€η°‘ε˜γ«η™Ίι›»γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nε‡ΊεŠ›γ―δ»–γ&7LVη™Ίι›»ζ©Ÿ&rγ¨εŒγ˜γγ€&a32EU/t&rです。", + "quests.low_voltage.lv_biodiesel.title": "バむγ‚ͺディーゼル", + "quests.low_voltage.lv_biodiesel.subtitle": "初期γζΆ²δ½“燃料", + "quests.low_voltage.lv_biodiesel.desc": "&2バむγ‚ͺディーゼル&rγ―γƒŸγ‚­γ‚΅γƒΌγ§γ‚‚δ½œγ‚ŒγΎγ™γŒγ€εŠΉηŽ‡γ‚ˆγδ½œγ‚‹γ«γ―&7LVεŒ–ε­¦εεΏœε™¨&rγŒεΏ…θ¦γ§γ™γ€‚\n何らかγ&aζ²Ή&rと&eをルコール&rι‘žγ«γ‚γšγ‹γͺζ°΄ι…ΈεŒ–γƒŠγƒˆγƒͺγ‚¦γƒ γ‚’ζ··γœγ‚‹γ“γ¨γ§δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ζ°΄ι…ΈεŒ–γƒŠγƒˆγƒͺウムは桷水γι›»θ§£γ‹η°ζ±γθ’Έη•™γ§η²Ύθ£½γ§γγΎγ™γ€‚\nγͺγŠγ€&dγ‚¨γ‚ΏγƒŽγƒΌγƒ«&rを使うレシピは、&bMV&rγθ¨­ε‚™γŒεΏ…要にγͺγ‚ŠγΎγ™γ€‚", + "quests.low_voltage.lv_seed_oil.title": "η¨ζ²Ή", + "quests.low_voltage.lv_seed_oil.subtitle": "怍物γεΊ•εŠ›", + "quests.low_voltage.lv_seed_oil.desc": "&aη¨ζ²Ή&rγ‚’ζ©Ÿζ’°γ§δ½œγ‚‹γͺら、&9Vacuum_Chamber&rを使うか、&7ζŠ½ε‡Ίζ©Ÿ&rを使うかγ2ι€šγ‚Šγ§γ™γ€‚\n\n&aη¨ζ²Ή&rは&2バむγ‚ͺディーゼル&rγεŽŸζ–™γ«γͺγ‚‹γ γ‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚&6ζ½€ζ»‘ζ²Ή&rに加ε·₯γ—γŸγ‚Šγ€&cγƒ–γƒ¬γ‚€γ‚ΊγƒγƒΌγƒŠγƒΌ&rγη‡ƒζ–™γ¨γ—て直ζŽ₯使うこともできます。", + "quests.low_voltage.lv_seeds.title": "η¨ζ²Ήη”¨γζ€η‰©", + "quests.low_voltage.lv_seeds.subtitle": "η¨γ γ‚‰γ‘γε ΄ζ‰€", + "quests.low_voltage.lv_seeds.desc": "γ‚­γƒ£γƒŽγƒΌγƒ©γΎγŸγ―γƒ’γƒžγƒ―γƒͺγ‚’θ¦‹γ€γ‘γŸγ‚‰γ€ζŽ‘ε–γ—γ¦ζ ½εŸΉγ‚’ε§‹γ‚γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ‚‰γ―&aη¨ζ²Ή&rδ½œγ‚Šγ«ζœ€ι©γͺ怍物です。\n\nγ‚­γƒ£γƒŽγƒΌγƒ©γ―ε―’γ•γ«εΌ·γγ€γƒ’γƒžγƒ―γƒͺγ―ζš–γ‹γ„η’°ε’ƒγ‚’ε₯½γΏγΎγ™γ€‚γ‚‚γ—θΎ²δ½œζ₯­γ«γ‚γΎγ‚Šζ™‚ι–“γ‚’γ‹γ‘γŸγγͺγ„ε ΄εˆγ―γ€ι›»ζ°—ζΈ©ε€γ‚’εˆ©η”¨γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", "quests.low_voltage.lv_seeds.task": "Canola or Sunflowers", - "quests.low_voltage.lv_turbo_charge.title": "Turbo Charger", - "quests.low_voltage.lv_turbo_charge.subtitle": "Useful to charge your electric tools faster", - "quests.low_voltage.lv_turbo_charge.desc": "&oThis quest's subject is optional, but may still be of interest to you. We've put it here in the name of completeness.&r\n\nThe &3Turbo Charger&r charges &6RF and EU&r items such as &9Drills&r extremely quickly.\n\nIt accepts up to 4 Amps for every item it charges, making it &6twice as fast&r as the &3Battery Buffer&r. It cannot discharge, though.\n\n&eAny&r Charger will complete this Quest.", + "quests.low_voltage.lv_gas_turbine.title": "ガスタービン発電", + "quests.low_voltage.lv_gas_turbine.subtitle": "γ‘γ‚‡γ£γ¨θƒŒδΌΈγ³γ—γŸη™Ίι›»", + "quests.low_voltage.lv_gas_turbine.desc": "&7εˆζˆγ‚¬γ‚Ή&rγŒγ‚γ‚Œγ°γ€&7LV&rでも&7ガスタービン&rγ‚’εŸη”¨ηš„γ«δ½Ώγ†γ“γ¨γŒγ§γγΎγ™γ€‚δ»–γ&6η™Ίι›»ζ©Ÿ&rγ¨ζ‰±γ„γ―γ»γ¨γ‚“γ©ε€‰γ‚γ‚ŠγΎγ›γ‚“γŒγ€&6η‡ƒη„Όη™Ίι›»ζ©Ÿ&rγ‚ˆγ‚Šγ‚‚γ‚γšγ‹γ«γ‚³γ‚Ήγƒˆγƒ‘γƒ•γ‚©γƒΌγƒžγƒ³γ‚Ήγι’でε„ͺγ‚Œγ¦γ„γΎγ™γ€‚", + "quests.low_voltage.lv_gas_syngas.title": "εˆζˆγ‚¬γ‚Ή", + "quests.low_voltage.lv_gas_syngas.subtitle": "木θ³ͺγ‚¬γ‚Ήγ˜γ‚ƒγͺγ„γ‚ˆ", + "quests.low_voltage.lv_gas_syngas.desc": "&7εˆζˆγ‚¬γ‚Ή&rγδ½œζˆγ―γ¨γ¦γ‚‚η°‘ε˜γ§γ™γ€‚&6ι†Έι€ ζ©Ÿ&rまたは&6Vacuum Chamber&r1台に぀き、&bコークス炉&rγ‚’3ε°η”¨ζ„γ™γ‚‹γ γ‘γ§εεˆ†γ§γ™γ€‚γγγ†γˆγ§γ€γ‚¨γƒγƒ«γ‚γƒΌζΆˆθ²»γδΈθ¦γͺ&bCreate式γθ‡ͺε‹•ζ€ζž—ζ–½θ¨­&rで&7原木&rγ‚’ι›†γ‚γ‚Œγ°γ€εˆζœŸγ‹γ‚‰&7ガス燃料&rγ‚’ζ°—θ»½γ«εˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.low_voltage.lv_naphtha_light.title": "γƒŠγƒ•γ‚΅γ¨θ»½θ³ͺ燃料", + "quests.low_voltage.lv_naphtha_light.subtitle": "プラスチックγ₯γγ‚Šγγ€γ„ででも", + "quests.low_voltage.lv_naphtha_light.desc": "もし農ζ₯­γŒζœ¬ε½“γ«ε«Œγ„γ§γ€&6η ‚ζΌ &rγ‚’ζŽ’ζ€œγ—γŸγ‚Šγ€ε€§ι‡γ&7γ‚ͺむルァンド&rγ‚’ζŽ‘ζŽ˜γ—γŸγ‚Šγ™γ‚‹ζ–ΉγŒζ€§γ«εˆγ†γγ§γ‚γ‚Œγ°γ€&7γƒŠγƒ•γ‚΅&r(&7εŽŸζ–™ζ²Ή&r向け)や、&7θ»½θ³ͺ燃料&r(&7原油&rε‘γ‘οΌ‰γ¨γ„γ£γŸη‡ƒζ–™γ‚’ζ€œθ¨Žγ™γ‚‹γ¨γ‚ˆγ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚\n\nγ©γ‘γ‚‰γ‚‚ζ―”θΌƒηš„η°‘ε˜γ«δ½œγ‚Œγ‚‹γ‚γ‚Šγ«ζ€§θƒ½γŒθ‰―γ„η‡ƒζ–™γ§γ™γŒγ€ηΎζ΅ιšŽγ§γ―ζ‰‹δ½œζ₯­γ§ζŽ‘ε–γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.low_voltage.lv_turbo_charge.title": "ι«˜ι€Ÿε……ι›»ε™¨", + "quests.low_voltage.lv_turbo_charge.subtitle": "ζ€₯ι€Ÿε……ι›»ε―ΎεΏœοΌ", + "quests.low_voltage.lv_turbo_charge.desc": "&oこγγ‚―γ‚¨γ‚Ήγƒˆγ―ι€²θ‘Œγ«εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚εΏ«ι©γͺε……ι›»γ«θˆˆε‘³γγ‚る人は参考にしてください。&r\n\n&3ι«˜ι€Ÿε……ι›»ε™¨&rは、&9ドγƒͺル&rγͺどγ&6ι›»εŠ›(RFγ‚„EU)&rγ‚’δ½Ώγ†γƒ„γƒΌγƒ«γ‚’ιžεΈΈγ«ι«˜ι€Ÿγ§ε……ι›»γ§γγ‚‹θ£…η½γ§γ™γ€‚\n\n1぀γγ‚’γ‚€γƒ†γƒ γ«γ€γζœ€ε€§4γ‚’γƒ³γƒšγ‚’γ§ε……ι›»γ™γ‚‹γ“γ¨γŒγ§γγ‚‹γŸγ‚γ€&3蓄電器&rγͺどγ&6η΄„2倍γγ‚Ήγƒ”ード&rで充電できます。\nγŸγ γ—γ€γŸγ‚γŸι›»εŠ›γ―γ€δ»–γζ©Ÿζ’°γ‚’ε‹•γ‹γ™γŸγ‚γ«γ―δ½ΏγˆγΎγ›γ‚“οΌ\n\n&eどγε……電器でも&rこγγ‚―γ‚¨γ‚Ήγƒˆγ―ι”ζˆγ§γγΎγ™γ€‚", "quests.low_voltage.lv_turbo_charge.task": "Any Turbo Charger will do", - "quests.low_voltage.lv_fisher.title": "Fishing Machine", - "quests.low_voltage.lv_fisher.subtitle": "Fully compatible with TFC!", - "quests.low_voltage.lv_fisher.desc": "&oThis quest's subject is optional, but may still be of interest to you. We've put it here in the name of completeness.&r\n\nThe &3Fisher&r catches fish from Water. It requires a 5x5 area of Water directly below to operate. It uses the same loot table as normal Fishing. Each operation consumes 1 String and EU equivalent to its tier (32 for &7LV&r, etc.). That's about it.\n\n&eFish Oil&r can be extracted from Fish, which can be used for &6Bio Diesel&r.", + "quests.low_voltage.lv_fisher.title": "ι­šι‡£γ‚Šζ©Ÿ", + "quests.low_voltage.lv_fisher.subtitle": "魚と糸γη­‰δΎ‘亀換", + "quests.low_voltage.lv_fisher.desc": "&oこγγ‚―γ‚¨γ‚Ήγƒˆγ―ι€²θ‘Œγ«εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚εΏ«ι©γͺι£Ÿζ–™δΎ›η΅¦γ«θˆˆε‘³γγ‚る人は参考にしてください。&r\n\n&3ι­šι‡£γ‚Šζ©Ÿ&rは、水γδΈŠγ§η¨Όεƒγ•せるとθ‡ͺε‹•ηš„γ«ι­šγ‚’ι‡£γ£γ¦γγ‚Œγ‚‹ζ©Ÿζ’°γ§γ™γ€‚ε…·δ½“ηš„γ«γ―ηœŸδΈ‹γ«5Γ—5γζ°΄εŸŸγŒγͺγ„γ¨ε‹•δ½œγ—γΎγ›γ‚“γ€‚\n出てくる内εΉγ―ι€šεΈΈγι‡£γ‚Šγ¨εŒγ˜γ§γ€1ε›žγε‹•δ½œγ”γ¨γ«η³Έγ‚’1ζœ¬γ¨γ€γγTierに応じたEU(&7LV&rγͺら32EU)γ‚’ζΆˆθ²»γ—γΎγ™γ€‚δ½Ώγ„ι“γ¨γ—γ¦γ―γγ‚Œγγ‚‰γ„γ§γ™γ€‚\n\nι­šγ‹γ‚‰γ―&e魚油&rγ‚’ζŠ½ε‡Ίγ™γ‚‹γ“γ¨γŒγ§γγ‚‹γŸγ‚γ€&6バむγ‚ͺディーゼル&rγεŽŸζ–™γ¨γ—γ¦γ‚‚εˆ©η”¨γ§γγΎγ™γ€‚", "quests.low_voltage.lv_fisher.task": "Any Fisher will do", - "quests.low_voltage.lv_rock_crusher.title": "Rock Crusher", - "quests.low_voltage.lv_rock_crusher.subtitle": "Cobble is Love, Cobble is Life", - "quests.low_voltage.lv_rock_crusher.desc.1": "&oThis quest's subject is optional, but may still be of interest to you. We've put it here in the name of completeness.&r\n\nThe &3Rock Breaker&r is effectively a Cobblestone Generator in a box. You can give it any raw rock or cobblestone block, and it will produce copies of it. Very handy if you want a lot of bricks fast!\n\n&eAny&r Rock Breaker will complete this Quest.", - "quests.low_voltage.lv_rock_crusher.desc.2": "&l&3Lore:&r&o Obsidian requiring Redstone to generate is in reference to an ancient Minecraft bug, &7MC-4239&f. Placing Redstone where the Cobblestone would go in a cobble generator would make it generate Obsidian instead. This bug was resolved in snapshot 14w25b for Minecraft 1.8, over 9 years ago at the time of writing!", + "quests.low_voltage.lv_rock_crusher.title": "η ΄η •ζ©Ÿ", + "quests.low_voltage.lv_rock_crusher.subtitle": "CobbleForDays", + "quests.low_voltage.lv_rock_crusher.desc.1": "&oこγγ‚―γ‚¨γ‚Ήγƒˆγ―ι€²θ‘Œγ«εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚εΏ«ι©γͺηŸ³ζι›†γ‚γ«θˆˆε‘³γγ‚る人は参考にしてください。\n\n&3η ΄η •ζ©Ÿ&rは、一ブロックγι›»ε‹•δΈΈηŸ³θ£½ι€ ζ©Ÿγ§γ™γ€‚γ©γ‚“γͺε²©γ‚„δΈΈηŸ³γ§γ‚‚δΈ€γ€ζŠ•ε…₯γ™γ‚Œγ°γ€γγ‚Œγ‚’θ€‡θ£½γ—γ¦ε’—γ‚„γ™γ“γ¨γŒγ§γγΎγ™γ€‚γƒ¬γƒ³γ‚¬γ‚’ε€§ι‡γ«δ½œγ‚ŠγŸγ„γ¨γγͺγ©γ«γ¨γ¦γ‚‚δΎΏεˆ©γ§γ™οΌ\n\n&eどγη ΄η •ζ©Ÿγ§γ‚‚&rこγγ‚―γ‚¨γ‚Ήγƒˆγ―ι”ζˆγ§γγΎγ™γ€‚", + "quests.low_voltage.lv_rock_crusher.desc.2": "&l&3余談:&r&oι»’ζ›œηŸ³γ‚’δ½œγ‚‹γγ«γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³γŒεΏ…要γͺη†η”±γ―γ€ε€§ζ˜”γMinecraftγγƒγ‚°γ€Œ&7MC-4239&f」に由ζ₯しているんだって。\nε½“ζ™‚γ―γ€δΈΈηŸ³θ£½ι€ ζ©Ÿγ§δΈΈηŸ³γŒγ§γγ‚‹ε ΄ζ‰€γ«γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³γ‚’η½γγ¨γ€δ»£γ‚γ‚Šγ«ι»’ζ›œηŸ³γŒγ§γγŸγ‚‰γ—γ„γ‚ˆοΌγ€‚\nこγγƒγ‚°γ―Minecraft1.8γγ‚ΉγƒŠγƒƒγƒ—γ‚·γƒ§γƒƒγƒˆγ€Œ14w25b」でδΏζ­£γ•γ‚ŒγŸγ‹γ‚‰γ€γ‚‚γ†9εΉ΄δ»₯δΈŠε‰γγƒγ‚°γͺんだね。", "quests.low_voltage.lv_rock_crusher.task": "Any Rock Crusher will do", - "quests.low_voltage.lv_aqueous_accumulator.title": "Aqueous Accumulator", - "quests.low_voltage.lv_aqueous_accumulator.subtitle": "Thermal Foundation is calling", - "quests.low_voltage.lv_aqueous_accumulator.desc": "The &3Aqueous Accumulator&r is basically a Rock Crusher but for fluids. Simply place the machine next to two source blocks of the appropriate fluid, set the circuit, and voila! It'll keep producing more of that fluid. It effectively does the same thing as a mechanical pump, but using electricity instead of mechanical power, so you may find it easier to fit into your factory. As a bonus, the HV one will make infinite lava too!\n\nYou can safely waterlog the source blocks to prevent them freezing in winter, and the machine will continue to work.", + "quests.low_voltage.lv_aqueous_accumulator.title": "ζ°΄γ¨γ‹η”Ÿζˆζ©Ÿ", + "quests.low_voltage.lv_aqueous_accumulator.subtitle": "Thermal Foundationγγ‚„γ€γ˜γ‚ƒγ‚“οΌ", + "quests.low_voltage.lv_aqueous_accumulator.desc": "&3ζ°΄γ¨γ‹η”Ÿζˆζ©Ÿ&rは、Thermalγγ‚„぀(ζ°΄η”Ÿζˆζ©Ÿ)とは少し違って水δ»₯ε€–γγ„く぀かγζΆ²δ½“γ‚‚η”Ÿζˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ„γ‚γ°ζΆ²δ½“η‰ˆγ&3η ΄η •ζ©Ÿ&rγγ‚ˆγ†γͺζ©Ÿζ’°γ§γ™γ€‚\nε―ΎεΏœγ™γ‚‹ζΆ²δ½“γ‚’δΈ‘ιš£γ«ι…η½γ—γ¦ε›žθ·―γ‚’θ¨­εšγ™γ‚‹γ“とで、そγζΆ²δ½“γ‚’θ‡ͺε‹•ηš„γ«ε’—γ‚„γ—ηΆšγ‘γΎγ™γ€‚\nγƒ‘γ‚«γƒ‹γ‚«γƒ«γƒγƒ³γƒ—γ«δΌΌγ¦γ„γΎγ™γŒγ€γ“γ‚Œγ―ι›»εŠ›γ§ε‹•γγŸγ‚γ€δ»–γζ©Ÿζ’°γ¨δΈ€η·’γ«ε‹•γ‹γ—γ‚„γ™γ„γ§γ™γ€‚γΎγŸγ€HVγ§γ―ζΊΆε²©γ‚‚η”Ÿζˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌ\n\nζ°΄ζΊγ‚’ε›²γ‚“γ§γŠγ‘γ°γ€ε†¬ε ΄γ«ζ°΄ζΊγŒε‡η΅γ—γ¦γ€ζ©Ÿζ’°γŒζ­’γΎγ£γ¦γ—γΎγ†γ“γ¨γ‚’ι˜²γ’γΎγ™γ€‚", "quests.low_voltage.lv_aqueous_accumulator.task": "Any Aqueous Accumulator", - "quests.low_voltage.lv_wiremill.title": "Basic Wiremill", - "quests.low_voltage.lv_wiremill.subtitle": "No more painful wires!", - "quests.low_voltage.lv_wiremill.desc.1": "You could make any other &7LV&r Machine, but it would be easiest to start with the most useful one. We know, we know... you wanna make some of the crazier stuff first, but trust us, this is the best starting point.\n\nThe Wiremill lets you make &6two Wires from one Ingot&r. That should be three times cheaper than what you were doing up until now!\n\nTo the right of this Quest, you'll find some important machines which will grant you cheaper intermediates.", - "quests.low_voltage.lv_wiremill.desc.2": "&9Note:&r Recipes inside &3LV Machines&r go up to a maximum usage of &a32 EU/t (LV)&r. Anything higher than that and you will need a &bMV&r (or better) Machine. Needless to say, we aren't quite there yet.\n\nYou will need a &dProgrammed Circuit&r for certain recipes. We're sure you don't want to spend a precious Circuit to craft one, so &6read the dedicated quest for important details&r.\n\nWith this machine safely crafted - welcome to the age of all things electric!", + "quests.low_voltage.lv_wiremill.title": "εŸΊζœ¬εž‹γƒ―γ‚€γƒ€γƒΌδ½œθ£½ζ©Ÿ", + "quests.low_voltage.lv_wiremill.subtitle": "γ‚‚γ†γƒ―γ‚€γƒ€γƒΌδ½œγ‚Šγ―ε«ŒγƒΌ", + "quests.low_voltage.lv_wiremill.desc.1": "もけろん、他γ&7LV&rζ©Ÿζ’°γ‹γ‚‰δ½œγ‚Šε§‹γ‚γ¦γ‚‚ζ§‹γ„γΎγ›γ‚“γŒγ€γΎγšγ―δΈ€η•ͺ役立぀もγγ‹γ‚‰ε§‹γ‚γ‚‹γγŒγŠγ™γ™γ‚γ§γ™γ€‚\nもっとド派手γͺζ©Ÿζ’°γ‹γ‚‰δ½œγ‚ŠγŸγ„οΌγ¨γ„γ†ζ°—ζŒγ‘γ‚‚γ‚γ‹γ‚ŠγΎγ™γ€‚γ‚γ‹γ‚ŠγΎγ™γŒγ€ζœ€εˆγ«γ“γ‚Œγ‚’δ½œγ‚‹γ¨ι€²γ‚γ‚‹γγŒγ¨γ¦γ‚‚ζ₯½γ«γͺγ‚ŠγΎγ™γ€‚\n\nγƒ―γ‚€γƒ€γƒΌδ½œθ£½ζ©Ÿγ‚’δ½Ώγ†γ¨γ€&6γ‚€γƒ³γ‚΄γƒƒγƒˆ1぀からワむダーを2本&rδ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγεˆ—では、中間素材γθ£½ι€ γ‚’担当する重要γͺζ©Ÿζ’°γŸγ‘γŒη΄Ήδ»‹γ•γ‚Œγ¦γ„γΎγ™γ€‚", + "quests.low_voltage.lv_wiremill.desc.2": "&9注意:&r &3LV機撰&rでεŸθ‘Œγ§γγ‚‹γƒ¬γ‚·γƒ”は当焢LVγγ‚‚γγΎγ§γ§γ™γ€‚LVγεŸΊζœ¬ζΆˆθ²»ι›»εŠ›(1AγζΆˆθ²»ι›»εŠ›)は&a32EU/t&rγ§γ™γ€‚γγ‚Œδ»₯上γγ‚¨γƒγƒ«γ‚ーを必要とするレシピには、&bMV&rδ»₯上γζ©Ÿζ’°γŒεΏ…要にγͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€γ„γγ€γ‹γγƒ¬γ‚·γƒ”では&dγƒ—γƒ­γ‚°γƒ©γƒ ε›žθ·―&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚ε›žθ·―γ‚’η„‘ι§„γ«γ—γͺγ„γŸγ‚γ«γ‚‚γ€&6ε°‚η”¨γ‚―γ‚¨γ‚Ήγƒˆγ§θ©³γ—γ„ζƒ…ε ±γ‚’η’Ίθͺγ—γ¦γŠγγΎγ—γ‚‡γ†&r。\n\nこγζ©Ÿζ’°γ‚’η„‘δΊ‹γ«δ½œγ‚ŒγŸγͺγ‚‰γ€γ“γ‚Œγ§γ‚γͺγŸγ‚‚ι›»ζ°—ζ™‚δ»£γδ»²ι–“ε…₯γ‚Šγ§γ™οΌ", "quests.low_voltage.lv_wiremill.task": "Any of these", - "quests.low_voltage.lv_bender.title": "Basic Bender", - "quests.low_voltage.lv_bender.subtitle": "The Bender bends!", - "quests.low_voltage.lv_bender.desc": "Arguably the second best &7LV&r machine to craft, but we're down if you want to argue otherwise.\n\nThis unlocks the ability to convert one &6Ingot into one Plate&r, which is a better ratio than the Forge Hammer.", + "quests.low_voltage.lv_bender.title": "εŸΊζœ¬εž‹ι‡‘ε±žεŠ ε·₯機", + "quests.low_voltage.lv_bender.subtitle": "γ²γ‚“ζ›²γŒγ£γ¦γ‚‹γƒžγ‚·γƒΌγƒ³γΏγŸγ„γͺや぀", + "quests.low_voltage.lv_bender.desc": "γ“γ‚Œγ―&7LV&rにε…₯ったζ΅ιšŽγ§2η•ͺη›γ«δ½œγ‚‹γΉγζ©Ÿζ’°γ§γ™γ€‚異論はθͺγ‚γΎγ™γ€‚\n\nこγζ©Ÿζ’°γ§γ―、぀いに&6γ‚€γƒ³γ‚΄γƒƒγƒˆ1γ€γ‹γ‚‰γƒ—γƒ¬γƒΌγƒˆ1枚&rγ‚’δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚ι›ι€ ζ©Ÿγ‚ˆγ‚Šγ‚‚γ•γ‚‰γ«εŠΉηŽ‡γŒγ„γ„γ§γ™γ€‚", "quests.low_voltage.lv_bender.task": "Any of these", - "quests.low_voltage.lv_lathe.title": "Basic Lathe", - "quests.low_voltage.lv_lathe.subtitle": "Get rid of your archaic tech", - "quests.low_voltage.lv_lathe.desc.1": "The Lathe is an important machine to help shape metals. Thanks to it, you can turn &6one Ingot into two Rods&r, and &6one Bolt into one screw&r. That's twice the efficiency on those recipes as opposed to crafting by hand.", - "quests.low_voltage.lv_lathe.desc.2": "&l&3Lore:&r&o The GregTech 5 Lathe produces one Rod and 2 small piles of Dust per Ingot. We also have a setting for this in GTCEu, but it's turned off by default.\n\n&oThe GT6 Lathe acts like GT5's, but Bolts lathe into one Screw and 1/72 of a pile of Dust. Disgusting!", + "quests.low_voltage.lv_lathe.title": "εŸΊζœ¬εž‹ζ—‹η›€", + "quests.low_voltage.lv_lathe.subtitle": "ι‡‘ε±žε·₯γεΏ…ιœ€ε“", + "quests.low_voltage.lv_lathe.desc.1": "ζ—‹η›€γ―γ€ι‡‘ε±žγεŠ ε·₯に欠かせγͺい重要γͺζ©Ÿζ’°γ§γ™γ€‚\nγ“γ‚Œγ‚’δ½Ώγˆγ°γ€&6γ‚€γƒ³γ‚΄γƒƒγƒˆ1個から棒を2本&rδ½œγ‚ŒγŸγ‚Šγ€&6γƒœγƒ«γƒˆ1個からスクγƒͺγƒ₯γƒΌγ‚’1本&rδ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ζ‰‹δ½œζ₯­γ§δ½œγ‚‹γ‚ˆγ‚Šγ‚‚εŠΉηŽ‡γŒ2倍にγͺγ‚ŠγΎγ™γ€‚", + "quests.low_voltage.lv_lathe.desc.2": "&l&3δ½™θ«‡οΌš&r&oGT5γζ—‹η›€γ―γ€γ‚€γƒ³γ‚΄γƒƒγƒˆ1個から棒1ζœ¬γ¨ε°γ•γͺ粉2ε€‹γ‚’δ½œγ‚ŠγΎγ™γ€‚GTCEuγ‚‚εŒγ˜γ‚ˆγ†γ«γ™γ‚‹θ¨­εšγŒγ‚γ‚ŠγΎγ™γŒγ€εˆζœŸηŠΆζ…‹γ§γ―γ‚ͺフにγͺっています。\n\n&o一方で、GT6γζ—‹η›€γ―GT5γ¨δΌΌγŸε‹•δ½œγ§γ™γŒγ€γƒœγƒ«γƒˆγ‚’εŠ ε·₯するとネジ1ζœ¬γ¨γ‚γšγ‹1/72ε€‹εˆ†γη²‰γ—か出ません。(ε‰Šγ‚Š)カスですね!", "quests.low_voltage.lv_lathe.task": "Any of these", - "quests.low_voltage.universal_cell.title": "Better bucket", - "quests.low_voltage.universal_cell.subtitle": "You can see inside, unlike those drums...", - "quests.low_voltage.universal_cell.desc.1": "Cells are an alternative form of Fluid storage. All Cell types with the same type and amount of Fluid inside them &6stack&r. They can be automatically filled with a &3Canning Machine&r.\n\nCells hold &done bucket&r of Fluid.", - "quests.low_voltage.universal_cell.desc.2": "Universal Cells hold up to &done bucket&r, but also can store &9fractions&r of Buckets. They're particularly ideal if you want to store leftover Fluid without crafting a whole Drum. \n\nCells made from higher tier materials can hold even more fluid, but &9Drums&r and &9Super Tanks&r will hold more by then.\n\nLike Drums, Cells can be placed into a crafting grid to clear their contents.", + "quests.low_voltage.universal_cell.title": "梲体セル", + "quests.low_voltage.universal_cell.subtitle": "δΈ­θΊ«γŒθ¦‹γ‚ŒγΎγ™γ€‚γ©γ“γžγγƒ‰γƒ©γƒ γ¨γ―違って", + "quests.low_voltage.universal_cell.desc.1": "γ‚»γƒ«γ―γ€γƒ‰γƒ©γƒ γ¨γ―ι•γ£γŸζΆ²δ½“γδΏε­˜ζ‰‹ζ΅γ§γ™γ€‚εŒγ˜η¨ι‘žγ§εŒγ˜ι‡γζΆ²δ½“γŒε…₯γ£γ¦γ„γ‚‹γ‚»γƒ«εŒε£«γ―γ€&6まとめてスタック&rγ§γγΎγ™γ€‚γΎγŸγ€&3缢詰機&rγ‚’δ½Ώγˆγ°θ‡ͺε‹•ηš„γ«ζΆ²δ½“γ‚’θ©°γ‚γ‚‹γ“γ¨γ‚‚ε―θƒ½γ§γ™γ€‚\n\nι€šεΈΈγγ‚»γƒ«1぀には、梲体を&dバケツ1ζ―εˆ†&r(1000mb)ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.low_voltage.universal_cell.desc.2": "ユニバーァルセルには&dバケツ1ζ―εˆ†&rまで梲体をε…₯γ‚Œγ‚‰γ‚ŒγΎγ™γŒγ€&9γγ‚Œδ»₯δΈ‹γι‡&rも細かく保η‘γ—γ¦γŠγγ“γ¨γŒγ§γγΎγ™γ€‚γγγŸγ‚γ€γ€Œγƒ‰γƒ©γƒ γ‚’δ½œγ‚‹γ»γ©γ˜γ‚ƒγͺいけど、少しだけ梲体をζ‹γ—γ¦γŠγγŸγ„γ€γ¨γγ«δΎΏεˆ©γ§γ™γ€‚\n\nδΈŠδ½η΄ ζγ§δ½œγ‚‰γ‚ŒγŸγ‚»γƒ«γ―γ•γ‚‰γ«ε€šγγζΆ²δ½“γ‚’ε…₯γ‚Œγ‚‰γ‚ŒγΎγ™γŒγ€&9ドラム&rγ‚„&9スーパータンク&rγζ–ΉγŒεΉι‡ηš„にはε„ͺγ‚Œγ¦γ„γΎγ™γ€‚\n\nγƒ‰γƒ©γƒ γ¨εŒγ˜γ‚ˆγ†γ«γ€γ‚―γƒ©γƒ•γƒˆγ‚°γƒͺッドにη½γγ¨γ‚»γƒ«γδΈ­θΊ«γ‚’η°‘ε˜γ«η©Ίγ«γ§γγΎγ™γ€‚", "quests.low_voltage.universal_cell.task": "", - "quests.low_voltage.machine_auto_output_behaviour.title": "Machine Auto-Output Behaviour", - "quests.low_voltage.machine_auto_output_behaviour.subtitle": "Let's learn.", - "quests.low_voltage.machine_auto_output_behaviour.desc.1": "All machines typically have one &7Front Face&r, and one &9Output Face&r.\n\nThe &7Front Face&r should be obvious.\nThe &9Output Face&r is the face with a dot or hole on it. By default, this is at the back of the machine as you place it.\n\nMachines can &aauto-output&r through their output face. To enable auto-output, click the appropriate button in the GUI. Fluid and item auto-outputs are toggled separately. Further control over auto-outputs can be achieved with &dFilters&r and &dCovers&r, which are explained in the quest to the upper left of this one.", - "quests.low_voltage.machine_auto_output_behaviour.desc.2": "Right-clicking a machine with a &5Wrench&r changes the output side, and shift-right-clicking changes the front side. Keep in mind that the front side &ccannot&r also be the output side! \n\nBy default, items and fluids cannot be inserted through the output side, but this can be toggled with a &5Screwdriver&r. Either right-click the output face directly, or shift-right-click on the grid corresponding to the side of the output.\n\nThere are unique machines that do not process recipes, such as the &3Pump&r, &3Miner&r, &3Fisher&r, &3Item Collector&r, etc. These machines will output on their &7Front Face&r (which is still marked as a dot).", - "quests.low_voltage.machine_auto_output_behaviour.task": "Hmm, how interesting!", - "quests.low_voltage.programmed_circuits.title": "Programmed Circuits", - "quests.low_voltage.programmed_circuits.subtitle": "Don't want to spend your circuits to select recipes?", - "quests.low_voltage.programmed_circuits.desc.1": "By clicking the &6Circuit Configuration Slot&r in machines, you can create a &bghost Programmed Circuit&r. \n\nThis is a fake circuit that allows you to select a given configuration for recipes! There's no need to spend your circuits crafting &bProgrammed Circuits&r anymore.\n\n&dElectric Machines&r and &dItem Input Buses&r will have a Ghost Circuit Slot.", - "quests.low_voltage.programmed_circuits.desc.2": "&l&3Lore:&r&o This feature is originally from GTNH.", + "quests.low_voltage.machine_auto_output_behaviour.title": "機撰γθ‡ͺ動搬出に぀いて", + "quests.low_voltage.machine_auto_output_behaviour.subtitle": "γ—γ£γ‹γ‚Šε­¦γ³γΎγ—γ‚‡γ†", + "quests.low_voltage.machine_auto_output_behaviour.desc.1": "ζ©Ÿζ’°γ«γ―εŸΊζœ¬ηš„γ«γ€&7γ€Œε‰ι’γ€&rと&9γ€Œε‡ΊεŠ›ι’γ€&rが1γ€γšγ€γ‚γ‚ŠγΎγ™γ€‚\n\n&7γ€Œε‰ι’γ€&rは機撰γι‘”とγͺγ‚‹ι’γ§γ‚γ‚Šγ€θ¦‹γŸη›γ§γ‚γ‹γ‚‹γ¨ζ€γ„ます。\n&9γ€Œε‡ΊεŠ›ι’γ€&rγ―γ€η©΄γŒγ‚γ„γŸγ‚ˆγ†γͺ葨瀺γι’γ§γ€γƒ‡γƒ•γ‚©γƒ«γƒˆγ§γ―θƒŒι’γ«γͺγ‚ŠγΎγ™γ€‚\n\nζ©Ÿζ’°γ―γ€γ“γγ€Œε‡ΊεŠ›ι’」から&aθ‡ͺε‹•ηš„γ«γ‚’γ‚€γƒ†γƒ γ‚„ζΆ²δ½“γ‚’ζ¬ε‡Ί&rできます。θ‡ͺε‹•ζ¬ε‡Ίγ‚’ζœ‰εŠΉγ«γ™γ‚‹γ«γ―γ€γƒ‰γƒ©γ‚€γƒγƒΌγ§ζ¬ε‡Ίι’γ‚’η›΄ζŽ₯右クγƒͺγƒƒγ‚―γ™γ‚‹γ‹γ€ζ©Ÿζ’°γGUIε†…γε―ΎεΏœγ—γŸγƒœγ‚Ώγƒ³γ‚’ζŠΌγ—γ¦γγ γ•γ„γ€‚ζΆ²δ½“γ¨γ‚’むテムγζ¬ε‡Ίγ―個εˆ₯に設εšγ§γγΎγ™γ€‚\n\nγΎγŸγ€&dフィルター&rγ‚„&dカバー&rを使うことで、θ‡ͺ動搬出γεˆΆεΎ‘γ‚’γ•γ‚‰γ«η΄°γ‹γθ‘Œγ†γ“γ¨γ‚‚γ§γγΎγ™γ€‚γγδ½Ώγ„方は、LVγ‚―γ‚¨γ‚Ήγƒˆγƒ©γ‚€γƒ³γε³δΈŠγ‚γŸγ‚Šγ«γ‚γ‚‹γ‚―γ‚¨γ‚ΉγƒˆηΎ€γ§θͺ¬ζ˜Žγ•γ‚Œγ¦γ„γΎγ™γ€‚", + "quests.low_voltage.machine_auto_output_behaviour.desc.2": "ζ©Ÿζ’°γ‚’&5レンチ&rで右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€Œε‡ΊεŠ›ι’γ€γ‚’ε€‰ζ›΄γ§γγ€γ‚Ήγƒ‹γƒΌγ‚―+右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€Œε‰ι’γ€γ‚’ε€‰ζ›΄γ§γγΎγ™γ€‚γŸγ γ—γ€ε‰ι’γ‚’ε‡ΊεŠ›ι’γ«γ™γ‚‹γ“γ¨γ―&cできγͺい&rγγ§ζ³¨ζ„γ—ましょう。\n\nγƒ‡γƒ•γ‚©γƒ«γƒˆγ§γ―γ€γ‚’γ‚€γƒ†γƒ γ‚„ζΆ²δ½“γ―ζ¬ε‡Ίι’γ‹γ‚‰ζ¬ε…₯γ™γ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“γŒγ€γ“γθ¨­εšγ―εˆ‡γ‚Šζ›Ώγˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&5ドラむバー&rで搬出青を直ζŽ₯スニーク+右クγƒͺγƒƒγ‚―γ™γ‚‹γ‹γ€ζ©Ÿζ’°γGUIε†…γ§ε―ΎεΏœγ—γŸγƒœγ‚Ώγƒ³γ‚’ζŠΌγ—γ¦γγ γ•γ„γ€‚\n\nγͺγŠγ€&3ポンプ&r・&3掑掘機&r・&3ι­šι‡£γ‚Šζ©Ÿ&r・&3γ‚’γ‚€γƒ†γƒ εŽι›†ζ©Ÿ&rγͺど、一部γη‰ΉζŠγͺζ©Ÿζ’°γ―γƒ¬γ‚·γƒ”ε‡¦η†γ‚’θ‘Œγ„γΎγ›γ‚“γ€‚γ“γ‚Œγ‚‰γζ©Ÿζ’°γ―δΎ‹ε€–ηš„γ«γ€θ¨­η½γ—γŸιš›γ&7前青&rγŒζ¬ε‡Ίι’γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.low_voltage.machine_auto_output_behaviour.task": "εŸγ«θˆˆε‘³ζ·±γ„", + "quests.low_voltage.programmed_circuits.title": "γƒ—γƒ­γ‚°γƒ©γƒ ε›žθ·―", + "quests.low_voltage.programmed_circuits.subtitle": "γƒ¬γ‚·γƒ”γ‚’ιΈγΆγŸγ‚γ γ‘γ«ε›žθ·―γ‚’δ½Ώγ†γͺんて!", + "quests.low_voltage.programmed_circuits.desc.1": "機撰γ&6ε›žθ·―θ¨­εš&rγ‚Ήγƒ­γƒƒγƒˆγ‚’γ‚―γƒͺックすると、&bγ‚΄γƒΌγ‚Ήγƒˆγƒ—γƒ­γ‚°γƒ©γƒ ε›žθ·―&rγ‚’δ½œζˆγ§γγΎγ™γ€‚\n\nこγγ‚΄γƒΌγ‚Ήγƒˆε›žθ·―は、レシピ設εšγ γ‘γ‚’εˆ‡γ‚Šζ›Ώγˆγ‚‹γŸγ‚γδ»ζƒ³ηš„γͺε›žθ·―γ§γ€εŸιš›γ«ε›žθ·―γ‚’ζΆˆθ²»γ™γ‚‹εΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚γ€γΎγ‚Šγ€&bγƒ—γƒ­γ‚°γƒ©γƒ ε›žθ·―&rγ‚’γ‚―γƒ©γƒ•γƒˆγ—γ¦δ½Ώγ†εΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nこγζ©Ÿθƒ½γ―、&d機撰&rγ‚„&dε…₯εŠ›γƒγ‚Ήγƒ»γƒγƒƒγƒ&rγ«γ‚γ‚‹ε°‚η”¨γ‚Ήγƒ­γƒƒγƒˆγ§εˆ©η”¨γ§γγΎγ™γ€‚", + "quests.low_voltage.programmed_circuits.desc.2": "&l&3δ½™θ«‡οΌš&r&oこγζ©Ÿθƒ½γ―ε…ƒγ€…GTNHで導ε…₯γ•γ‚ŒγŸγ‚‚γγ§γ™γ€‚", "quests.low_voltage.programmed_circuits.task": "I got it, I don't need to craft circuits", - "quests.low_voltage.lv_conveyor.title": "LV Conveyor Module", - "quests.low_voltage.lv_conveyor.subtitle": "A crafting component, but also a cover!", - "quests.low_voltage.lv_conveyor.desc": "Less common as a component, but used in a number of critical machines.\n\nWhen placed on a machine, conveyor modules will transfer items. You can configure them to import or export.\n\nThey can also accept various &9Item Filters&r.", - "quests.low_voltage.lv_robot_arm.title": "LV Robot Arm", - "quests.low_voltage.lv_robot_arm.subtitle": "You're going to hate making these", - "quests.low_voltage.lv_robot_arm.desc.1": "When placed on a machine, Robot Arms are a more configurable version of a Conveyor Module. They allow you to transfer items in specific batches, at specific rates, or keep a certain amount of items stocked.\n\nPractical uses for the Robot Arm will be explained in future Quests as a tutorial.\n\n&9Note:&r The functionalities provided by the Robot Arm work &lonly&r if it is &lrequired&r to perform the operation.", - "quests.low_voltage.lv_robot_arm.desc.2": "&l&3Lore:&r&o GregTech 5 had blocks such as the Buffer, Filter and Type Filter to allow fine control over items. In GTCE it's all been replaced by the almighty Robot Arm and various Filter Covers. Much more compact!", - "quests.low_voltage.lv_piston.title": "LV Electric Piston", - "quests.low_voltage.lv_piston.subtitle": "A crafting component - did you expect anything fancier?", - "quests.low_voltage.lv_piston.desc": "A specialized motor needed to make certain machines.\n\nOne of the more intricate crafting components, as it's made using a motor.", - "quests.low_voltage.lv_pump.title": "LV Electric Pump", - "quests.low_voltage.lv_pump.subtitle": "A crafting component, but also a cover!", - "quests.low_voltage.lv_pump.desc": "When placed on a machine, pumps will transfer fluid. You can configure them to import or export.\n\nIt can accept a &9Fluid Filter&r.", - "quests.low_voltage.lv_fluid_regulator.title": "LV Fluid Regulator", - "quests.low_voltage.lv_fluid_regulator.subtitle": "A cover that you may not use much", - "quests.low_voltage.lv_fluid_regulator.desc": "The &aFluid Regulator&r is sort of the equivalent to a &9Robot Arm&r for Fluids.\n\nIt can transfer fluids, but has two useful modes:\n\n&9-&r &dSupply Exact&r will transfer the amount of specified Fluid per tick if available. No more, no less.\n&9-&r &dKeep Exact&r will make sure the exact amount of Fluid in the attached machine is being kept.\n\nYou won't need it much, because natively GT machines will fill only one slot with the &6Pump Cover&r", - "quests.low_voltage.cover_behaviour.title": "Cover Behaviour", - "quests.low_voltage.cover_behaviour.subtitle": "Extra utility without taking up blockspace!", - "quests.low_voltage.cover_behaviour.desc.1": "Covers are placed by right-clicking with Cover in hand on a face of a machine, and removed with a &5Crowbar&r (or by mining the machine, but that's way slower).\n\nPretty much any GregTech Tile-Entity will accept Covers, even if they wouldn't provide any functionality.\n\nOpening a Cover is done by sneak-right-clicking it with an &5empty hand&r. You can also right-click with a &5Screwdriver&r, or sneak-right-click on another face using the grid.", - "quests.low_voltage.cover_behaviour.desc.2": "For Covers that transfer Items/Fluids, you will have a button to enable/disable other forms of transfer through the cover:\n\n&9- &rDisabled: only the cover will be allowed to transfer on this machine side.\n\n&9-&r Allow Filtered (only relevant with a filter!): other transfer will be enabled only if it matches the filter\n\n&9-&r Allow Unfiltered: any other transfer is allowed on this machine side.\n\nPlacing a cover of a lower voltage tier on a machine is &9safe&r.", + "quests.low_voltage.lv_conveyor.title": "LVコンベをーヒジγƒ₯ール", + "quests.low_voltage.lv_conveyor.subtitle": "Createγγ‚³γƒ³γƒ™γ‚’γƒΌγ¨γšγ„γΆγ‚“ι•γ†γͺ", + "quests.low_voltage.lv_conveyor.desc": "γ“γ‚Œγ―γ‚«γƒγƒΌγ¨γ—γ¦γε½Ήε‰²γŒγƒ‘むンにγͺγ‚ŠγΎγ™γŒγ€γ„γγ€γ‹γζ©Ÿζ’°γιƒ¨ε“γ«γ‚‚γͺγ‚ŠγΎγ™γ€‚\n\nζ©Ÿζ’°γ‚„γƒ‘γ‚€γƒ—γ‚„γ‚―γƒ¬γƒΌγƒˆγͺγ©γ«ε–γ‚Šδ»˜γ‘γ‚‹γ¨γ€γ‚’γ‚€γƒ†γƒ γζ¬ε‡Ίγ‚’γ—γ¦γγ‚ŒγΎγ™γ€‚ε–γ‚Šδ»˜γ‘γ‚‹γ¨γ€ζ¬ε‡Ίε…₯γθ¨­εšγ‚‚可能です。\n\nさらに、さまざまγͺ&9をむテムフィルター&rγ‚’ε–γ‚Šδ»˜γ‘γ¦εˆΆεΎ‘γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.low_voltage.lv_robot_arm.title": "LVγƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ ", + "quests.low_voltage.lv_robot_arm.subtitle": "Createγγ‚’γƒΌγƒ γ¨γšγ„γΆγ‚“ι•γ†γͺ", + "quests.low_voltage.lv_robot_arm.desc.1": "γƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ γ―γ€γ‚³γƒ³γƒ™γ‚’γƒ’γ‚Έγƒ₯ールγδΈŠδ½η‰ˆγ¨γ‚‚γ„γˆγ‚‹ιƒ¨ε“γ§γ€γ‚ˆγ‚Šη΄°γ‹γ„θ¨­εšγŒε―θƒ½γ§γ™γ€‚ζ©Ÿζ’°γ«ε–γ‚Šδ»˜γ‘γ‚‹γ“γ¨γ§γ€γ‚’γ‚€γƒ†γƒ γ‚’ζŒ‡εšγ—γŸζ•°γ”γ¨γ«θ»’ι€γ—γŸγ‚Šγ€θ»’ι€ι€ŸεΊ¦γ‚’θͺΏζ•΄γ—γŸγ‚Šγ€η‰Ήεšγζ•°ι‡γ‚’δΏζŒγ—γŸγ‚Šγ§γγΎγ™γ€‚\n\nγƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ γε…·δ½“ηš„γͺζ΄»η”¨ζ–Ήζ³•γ―γ€δ»ŠεΎŒγγ‚―γ‚¨γ‚Ήγƒˆε†…γ§γƒγƒ₯γƒΌγƒˆγƒͺγ‚’γƒ«γ¨γ—γ¦η΄Ήδ»‹γ•γ‚ŒγΎγ™γ€‚\n\n&9注意:&rγƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ γζ©Ÿθƒ½γ―、そγε‹•δ½œγŒ&l必要γͺ場合&rにγγΏ&r発動します&r。", + "quests.low_voltage.lv_robot_arm.desc.2": "&l&3δ½™θ«‡οΌš&r&oGT5γ§γ―γ€γ‚’γ‚€γƒ†γƒ εˆΆεΎ‘η”¨γ«γƒγƒƒγƒ•γ‚‘γƒΌγ‚„γƒ•γ‚£γƒ«γ‚ΏγƒΌγ€γ‚Ώγ‚€γƒ—γƒ•γ‚£γƒ«γ‚ΏγƒΌγ¨γ„γ£γŸε°‚η”¨γγƒ–γƒ­γƒƒγ‚―γŒδ½Ώγ‚γ‚Œγ¦γŸγ‚‰γ—γ„γ­γ€‚\nでもGTCEでは、そういうγγŒγ™γΉγ¦εΌ·εŠ›γͺγƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ γ¨ε„η¨γƒ•γ‚£γƒ«γ‚ΏγƒΌγ‚«γƒγƒΌγ«η΅±εˆγ•γ‚Œγ¦γ€γšγ£γ¨γ‚³γƒ³γƒ‘γ‚―γƒˆγ§δΎΏεˆ©γ«γͺγ£γŸγ‚“γ οΌ", + "quests.low_voltage.lv_piston.title": "LVι›»ε‹•γƒ”γ‚Ήγƒˆγƒ³", + "quests.low_voltage.lv_piston.subtitle": "Minecraftγγƒ”γ‚Ήγƒˆγƒ³γ¨γšγ„γΆγ‚“ι•γ†γͺ", + "quests.low_voltage.lv_piston.desc": "一部γζ©Ÿζ’°γ‚’δ½œγ‚‹ιš›γ«εΏ…θ¦γ¨γͺる、特ζŠγͺ部品です。\n\nζζ–™γ«γƒ’γƒΌγ‚ΏγƒΌγ‚’δ½Ώγ†γ€γ‚„γ‚„ι«˜γ‚³γ‚Ήγƒˆγͺ機撰γιƒ¨ε“γ§γ™γ€‚\nγγ‚Œδ»₯ε€–γδ½Ώγ„道はγͺγ„γ§γ™γ‚ˆ...οΌŸδ½•γ‚’ζƒ³εƒγ—γ¦γ„γ‚‹γ‚“γ§γ™γ‹...?", + "quests.low_voltage.lv_pump.title": "LV電動ポンプ", + "quests.low_voltage.lv_pump.subtitle": "GregTechγγƒγƒ³γƒ—γ¨γšγ„γΆγ‚“ι•...γ„γ‚„οΌŸ", + "quests.low_voltage.lv_pump.desc": "ι›»ε‹•γƒγƒ³γƒ—γ―ζ©Ÿζ’°γ‚„γƒ‘γ‚€γƒ—γ‚„γƒ‰γƒ©γƒ γͺγ©γ«ε–γ‚Šδ»˜γ‘γ‚‹γ¨γ€ζΆ²δ½“γζ¬ε‡Ίγ‚’γ—γ¦γγ‚ŒγΎγ™γ€‚ε–γ‚Šδ»˜γ‘γ‚‹γ¨γ€ζ¬ε‡Ίε…₯γθ¨­εšγ‚‚可能です。\n\nγΎγŸγ€γ•γΎγ–γΎγͺ&9梲体フィルター&rγ‚’ε–γ‚Šδ»˜γ‘γ¦εˆΆεΎ‘γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.low_voltage.lv_fluid_regulator.title": "LVζ΅ι‡εˆΆεΎ‘ε™¨", + "quests.low_voltage.lv_fluid_regulator.subtitle": "GregTechγζ΅ι‡εˆΆεΎ‘器です", + "quests.low_voltage.lv_fluid_regulator.desc": "&aζ΅ι‡εˆΆεΎ‘ε™¨&rγ―γ€ζΆ²δ½“η‰ˆγ&9γƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ &rγγ‚ˆγ†γͺカバーです。\n\n梲体γζ¬ε‡Ίγ«δ½Ώγˆγ‚‹γ γ‘でγͺく、δ»₯δΈ‹γ2぀γδΎΏεˆ©γͺε‹•δ½œγƒ’γƒΌγƒ‰γŒγ‚γ‚ŠγΎγ™οΌš\n\n-&d供硦ヒード&rοΌšζŒ‡εšγ—γŸι‡γζΆ²δ½“γ‚’ζ―Žγƒ†γ‚£γƒƒγ‚―過不袳γͺγζ­£η’Ίγ«ι€γ‚ŠγΎγ™γ€‚\n-&dδΏζŒγƒ’γƒΌγƒ‰&rοΌšε–γ‚Šδ»˜γ‘γŸε…ˆγ«γ€ζŒ‡εšγ—γŸι‡γζΆ²δ½“γ‚’εΈΈγ«ηΆ­ζŒγ™γ‚‹γ‚ˆγ†γ«γ—γΎγ™γ€‚\n\nγŸγ γ—γ€εŸιš›γ«γ―γγ‚Œγ»γ©δ½Ώγ†ζ©ŸδΌšγ―ε€šγγͺいでしょう。&6ポンプカバー&rを使うと、θ‡ͺε‹•ηš„γ«ζ©Ÿζ’°γ1γ‚Ήγƒ­γƒƒγƒˆεˆ†γζΆ²δ½“γ‚’ε……ε‘«γ—γ¦γγ‚Œγ‚‹γ‹γ‚‰γ§γ™γ€‚", + "quests.low_voltage.cover_behaviour.title": "カバーに぀いて", + "quests.low_voltage.cover_behaviour.subtitle": "ηœγ‚ΉγƒšγƒΌγ‚Ήγͺ搬送手ζ΅", + "quests.low_voltage.cover_behaviour.desc.1": "γ‚«γƒγƒΌγ―γ€ζ‰‹γ«ζŒγ£γŸηŠΆζ…‹γ§ζ©Ÿζ’°γͺどγδ»»ζ„γι’を右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨ε–γ‚Šδ»˜γ‘γ‚‰γ‚ŒγΎγ™γ€‚ε–γ‚Šε€–γ™γ¨γγ―&5バール&rを使いましょう(ζ©Ÿζ’°γ‚’ε£Šγ—γ¦ε€–γ™γ“γ¨γ‚‚γ§γγΎγ™γŒγ€ιžεŠΉηŽ‡γ§γ™).\n\nεŸΊζœ¬ηš„γ«γ€γ»γ¨γ‚“γ©γGregTechθ£½γγƒ–γƒ­γƒƒγ‚―γ―γ€γŸγ¨γˆζ©Ÿθƒ½γŒγͺγγ¦γ‚‚γ‚«γƒγƒΌγ‚’ε–γ‚Šδ»˜γ‘γ‚‹γ“γ¨γŒε―θƒ½γ§γ™γ€‚\n\n&5素手&rでスニーク+右クγƒͺックするか&5ドラむバー&rで右クγƒͺγƒƒγ‚―γ™γ‚Œγ°γ‚«γƒγƒΌγθ¨­εšγ‚’ι–‹γγ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.low_voltage.cover_behaviour.desc.2": "をむテムや桁体を搬送するタむプγγ‚«γƒγƒΌγ«γ―、他γζ¬ι€ζ–Ήζ³•γ‚’θ¨±ε―οΌη¦ζ­’γ™γ‚‹γŸγ‚γθ¨­εšγƒœγ‚Ώγƒ³γŒγ‚γ‚ŠγΎγ™οΌš\n\n&9-&rη„‘εŠΉοΌšγγι’γ§γ―γ€γ‚«γƒγƒΌη΅Œη”±γ§γγΏζ¬ι€γŒθ‘Œγ‚γ‚ŒγΎγ™γ€‚\n\n&9-&rγƒ•γ‚£γƒ«γ‚ΏγƒΌοΌšγƒ•γ‚£γƒ«γ‚ΏγƒΌγŒθ¨­εšγ•γ‚Œγ¦γ„γ‚‹ε ΄εˆγ€γγγƒ•γ‚£γƒ«γ‚ΏγƒΌγ«δΈ€θ‡΄γ™γ‚‹ζ¬ι€γ‚’ζœ‰εŠΉγ«γ—γΎγ™γ€‚\n\n&9-&rγƒžγƒ‹γƒ₯をルI/O:そγι’でγγ™γΉγ¦γζ¬ι€γ‚’ζœ‰εŠΉγ«γ—γΎγ™γ€‚\n\nγͺγŠγ€γ‚«γƒγƒΌγι›»εœ§γƒ†γ‚£γ‚’はそγζ€§θƒ½γŒε€‰γ‚γ‚‹γ γ‘γ§γ€γγ‚Œγ‚ˆγ‚Šγ‚‚δ½Žγ„γΎγŸγ―ι«˜γ„γƒ†γ‚£γ‚’γζ©Ÿζ’°γ«ε–γ‚Šδ»˜γ‘γ¦γ‚‚&9ε•ι‘Œγ―γ‚γ‚ŠγΎγ›γ‚“&r。", "quests.low_voltage.cover_behaviour.task": "I'm an expert on Covers now, don't you worry.", - "quests.low_voltage.lv_canner.title": "Basic Canner", - "quests.low_voltage.lv_canner.subtitle": "This machine does nothing exciting", - "quests.low_voltage.lv_canner.desc": "Make this machine when you feel like it's time you invested into Batteries.", - "quests.low_voltage.lv_battery.title": "Batteries!", - "quests.low_voltage.lv_battery.subtitle": "Batteries for storing energy!", - "quests.low_voltage.lv_battery.desc": "&aBatteries&r can be put into the energy slot at the bottom middle of machine GUIs, or in a &3Battery Buffer&r.\n\nWhen inside your inventory, they can be sneak-right-clicked to allow the batteries to &dcharge&r your EU items.\n\n&7LV&r, &bMV&r, and &6HV&r Batteries come in three forms, allowing you to pick the one you find the best depending on materials you have. &dLithium&r has the best capacity, followed by &dCadmium&r, then &dSodium&r.\n\nOur recommendation? Find a Salt vein, and either &aelectrolyze Salt&r for &dSodium&r, or &awash crushed Lepidolite&r for &dLithium&r.\n\nGet &eany&r &aBattery&r to complete this quest.", + "quests.low_voltage.lv_canner.title": "εŸΊζœ¬εž‹ηΌΆθ©°ζ©Ÿ", + "quests.low_voltage.lv_canner.subtitle": "η“Άθ©°γ‚γ«γ―δ½ΏγˆγΎγ›γ‚“", + "quests.low_voltage.lv_canner.desc": "バッテγƒͺγƒΌγεΏ…θ¦γ‚’ζ„Ÿγ˜γ¦γγŸγ‚‰γ€γ“γζ©Ÿζ’°γ‚’δ½œγ‚ŠγΎγ—γ‚‡γ†", + "quests.low_voltage.lv_battery.title": "バッテγƒͺγƒΌ", + "quests.low_voltage.lv_battery.subtitle": "キャッチャー", + "quests.low_voltage.lv_battery.desc": "&aバッテγƒͺγƒΌ&rγ―γ€ζ©Ÿζ’°GUIγδΈ­ε€δΈ‹γ«γ‚るエネルγ‚γƒΌγ‚Ήγƒ­γƒƒγƒˆγ€γΎγŸγ―&3蓄電器&rにε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n手にもってスニーク+右クγƒͺックすると、バッテγƒͺγƒΌγ‹γ‚‰γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺε†…γγ‚’むテムに&dθ‡ͺ動硦電&rγ—γ¦γγ‚ŒγΎγ™γ€‚\n\n&7LV&r・&bMV&r・&6HV&rγγƒγƒƒγƒ†γƒͺγƒΌγ«γ―γγ‚Œγžγ‚Œ3η¨ι‘žγδΈ­θΊ«γŒγ‚γ‚Šγ€δ½Ώγ†η΄ ζγ«γ‚ˆγ£γ¦εΉι‡γŒι•っています。\nεΉι‡γŒζœ€γ‚‚倧きいγγ―&dγƒͺチウム&rθ£½γ§γ€ζ¬‘γŒ&dγ‚«γƒ‰γƒŸγ‚¦γƒ &r、そして&dγƒŠγƒˆγƒͺウム&rγι †γ§γ™γ€‚\n\nγŠγ™γ™γ‚γ―γ€&aε‘©γ‚’ι›»θ§£&rして&dγƒŠγƒˆγƒͺウム&rγ‚’δ½œγ‚‹γ‹γ€γΎγŸγ―&aη²‰η •γ—γŸγƒͺチを雲母を洗桄&rして&dγƒͺチウム&rを手にε…₯γ‚Œγ‚‹ζ–Ήζ³•γ§γ™γ€‚\n\n&eγ©γ‚Œγ§γ‚‚γ„γ„γγ§&r&aバッテγƒͺγƒΌ&rγ‚’ε…₯ζ‰‹γ™γ‚Œγ°γ€γ“γγ‚―γ‚¨γ‚Ήγƒˆγ―εŒδΊ†γ§γ™γ€‚", "quests.low_voltage.lv_battery.task": "Any LV Battery", - "quests.low_voltage.lv_battery_preparation.title": "Battery Preparations!", - "quests.low_voltage.lv_battery_preparation.subtitle": "Batteries are great!", - "quests.low_voltage.lv_battery_preparation.desc": "Make some Battery Alloy, used for Battery Hulls.\n\nAntimony is found in &6Stibnite&r, look through your TFC Field Guide for more information on where to find it.\n\n&9Note:&r This quest does &lnot&r contain functional Batteries - head downwards for that.", - "quests.low_voltage.lv_battery_buffer_4x.title": "Battery Buffer", - "quests.low_voltage.lv_battery_buffer_4x.subtitle": "Useful if you don't want to build tons of generators", - "quests.low_voltage.lv_battery_buffer_4x.desc.1": "By itself, the Battery Buffer does nothing. However, if you place batteries inside its internal storage, it will act as a power buffer.\n\nThe &3Battery Buffer&r handles &9two Amps in&r, and &9one Amp out&r, &dper Battery&r. The output side has the dot, and all other sides are used as inputs.\n\n&6It'll also charge &lboth&r EU and RF Tools inside it&r.\n\nThis is a must have if you don't have unlimited power at hand. Get &eany&r &7LV&r Battery Buffer to finish the quest. However, the 16 slots variant is likely overkill at this stage.", - "quests.low_voltage.lv_battery_buffer_4x.desc.2": "&9Note:&r Don't loop your lossy Cables back to your Battery Buffer! If you think about it, you'll just end up voiding energy.\n\n&l&3Lore:&r&o To be frank with you, the GTCE Battery Buffer was... mediocre. It's been reworked in GTCEu to provide a mix between GT5 and GTCE's functionality. Energy now splits evenly across all batteries!", + "quests.low_voltage.lv_battery_preparation.title": "バッテγƒͺー筐体", + "quests.low_voltage.lv_battery_preparation.subtitle": "ピッチャー", + "quests.low_voltage.lv_battery_preparation.desc": "バッテγƒͺー筐体γη΄ ζγ«γ―バッテγƒͺγƒΌεˆι‡‘γŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\nをンチヒニーは&6輝ε‰ι‰±&rからε…₯ζ‰‹γ§γγΎγ™γ€‚ζŽ‘ζŽ˜ε ΄ζ‰€γͺどγθ©³γ—い情報はフィールドガむドをチェックしてください。\n\n&9注意:&rバッテγƒͺー筐体では蓄電できません。εŸιš›γ«δ½Ώγˆγ‚‹γƒγƒƒγƒ†γƒͺーに぀いては、下γγ‚―γ‚¨γ‚Ήγƒˆγ§ζ‰±γ„γΎγ™γ€‚", + "quests.low_voltage.lv_battery_buffer_4x.title": "蓄電器", + "quests.low_voltage.lv_battery_buffer_4x.subtitle": "バッター", + "quests.low_voltage.lv_battery_buffer_4x.desc.1": "θ“„ι›»ε™¨γ―γ€ε˜δ½“γ§η½γ„γŸγ γ‘γ§γ―δ½•γ‚‚γ§γγΎγ›γ‚“γ€‚ε†…ιƒ¨γ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ«γƒγƒƒγƒ†γƒͺγƒΌγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γ§γ€ι›»εŠ›γƒγƒƒγƒ•γ‚‘γ¨γ—γ¦ζ©Ÿθƒ½γ—γΎγ™γ€‚\n\n&3蓄電器&rには、&dバッテγƒͺγƒΌ&r1぀ε…₯γ‚Œγ‚‹γ”γ¨γ«γ€&92Aγε…₯εŠ›ι‡&rと&91Aγε‡ΊεŠ›ι‡&rγŒε’—γˆγ¦γ„γγΎγ™γ€‚\n1぀γι’γŒε‡ΊεŠ›ι’γ«γͺγ‚Šγ€γγ‚Œδ»₯ε€–γι’はすべてε…₯εŠ›ι’γ«γͺγ‚ŠγΎγ™γ€‚\n\n&6こγθ£…η½γ―中にε…₯γ‚ŒγŸγƒ„γƒΌγƒ«γε……電もできます。そγιš›γ€EUを使うツールとRFを使うツールγ&r&lδΈ‘ζ–Ή&r&rγ«ε―ΎεΏœγ—γ¦γ„γΎγ™γ€‚\n\nι›»εŠ›γε‰εšγ—γŸη’ΊδΏγŒγ§γγ¦γ„γͺγ„ε ΄εˆγ€γ“γ‚Œγ―εΏ…ι ˆγ¨γ‚‚γ„γˆγ‚‹θ£…η½γ§γ™γ€‚\n&eγ„γšγ‚Œγ‹&rγ&7LV&r蓄電器をε…₯ζ‰‹γ—γ¦γ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ•せましょう。", + "quests.low_voltage.lv_battery_buffer_4x.desc.2": "&9注意:&rι›»εŠ›ζε€±γŒγ‚γ‚‹γ‚±γƒΌγƒ–γƒ«γ§θ“„ι›»ε™¨γ«ι›»εŠ›γ‚’ζˆ»γ™γ‚ˆγ†γͺι…η·šγ‚’γ—γͺγ„γ§γγ γ•γ„οΌι›»εŠ›ζε€±γŒγƒ«γƒΌγƒ—γ—γ¦γ‚¨γƒγƒ«γ‚γƒΌγŒη„‘駄にγͺってしまいます!\n\n&l&3δ½™θ«‡οΌš&r&oγ―γ£γγ‚Šγ„γ£γ¦γ€GTCEγθ“„ι›»ε™¨γ―γ„γΎγ„γ‘γ γ£γŸγ‚“γ ...そこでGTCEuは、GT5とGTCEγθ“„電器γθ‰―γ„γ¨γ“γ©γ‚Šγ‚’γ—γ¦δ½œγ‚ŠγͺγŠγ—γŸγ‚“γ γ€‚γγγŠγ‹γ’γ§γ€ι›»εŠ›γŒγ™γΉγ¦γγƒγƒƒγƒ†γƒͺγƒΌγ«ε‡η­‰γ«εˆ†ι…γ•γ‚Œγ‚‹γ‚ˆγ†γ«γͺγ£γŸγ‚“γ γ‚ˆοΌη©γΏι‡γ­γ γ­οΌ", "quests.low_voltage.lv_battery_buffer_4x.task": "Any Battery Buffer", - "quests.low_voltage.lv_amp_explanation.title": "But what are Amps?", - "quests.low_voltage.lv_amp_explanation.subtitle": "Amps and You: a how-to", - "quests.low_voltage.lv_amp_explanation.desc": "This questline serves as a quick guide to &9GregTech Amperage&r. As for &dVoltage&r mechanics, we'll go over those once you reach &bMV&r.\n\n&6&lTL;DR:&r For safety, match the Amperage limit of your Cables with the max amount of Amps provided by your Energy Producers.\n\nStill confused? Check the &cGregTech Energy&r chapter for a full rundown on GregTech's electricity system!", - "quests.low_voltage.lv_ore_prospector.title": "This is Hacking", - "quests.low_voltage.lv_ore_prospector.subtitle": "The future of prospector", - "quests.low_voltage.lv_ore_prospector.desc": "The Prospector is an amazing tool that'll help you find veins in no time.\n\nIts GUI is interactive. Right-clicking will scan for ores, displaying them on a dynamic map.\n\n&l&3Lore:&r&o Back in OUR day, the portable Prospector was locked to &dLuV&f. Kids these days have it easy.", - "quests.low_voltage.lv_sprayer.title": "Spray Can", - "quests.low_voltage.lv_sprayer.subtitle": "Time for server tag wars", - "quests.low_voltage.lv_sprayer.desc": "Unfortunately, this is only an &lEmpty&r Spray Can, which you have to fill with Chemical Dye before using.\n\n&aSpray Cans&r do not provide any functionality involving machines, but can be quite &bvisually appealing and useful&r!\n\nAny (or almost any) GregTech tile entity (machine, pipe, cable...) can be &6painted&r to one of the 16 colors of your choosing. This is great for screenshots, or to separate different setups for convenience in a Multiplayer base. They also help with distinguishing between pipelines and cables.\n\nHolding the &aSpray Can&r in the offhand will automatically paint any block you place.", - "quests.low_voltage.other_machines.title": "But wait, there's more!", - "quests.low_voltage.other_machines.subtitle": "You can't escape Greg...", - "quests.low_voltage.other_machines.desc": "We won't go over the &dfull scale of regular Ore Processing&r. Why regular? Some ores require special treatment, but that's a topic for much later. Oh no, we're already getting carried away!\n\nSome machines like the &bChemical Bath&r or the &bElectrolyser&r could be useful.\n\nIntimidated by ore processing? Check the dedicated &cOre Processing&r chapter for a full walkthrough!", + "quests.low_voltage.lv_amp_explanation.title": "γ‚’γƒ³γƒšγ‚’γ£γ¦δ½•γͺγοΌŸ", + "quests.low_voltage.lv_amp_explanation.subtitle": "ε„ͺしいθͺ¬ζ˜Ž", + "quests.low_voltage.lv_amp_explanation.desc": "こγγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€&9GregTechγ«γŠγ‘γ‚‹γ‚’γƒ³γƒšγ‚’(電桁量)&rγεŸΊζœ¬γ‚’η°‘ε˜γ«η΄Ήδ»‹γ—γΎγ™γ€‚γͺγŠγ€&dι›»εœ§&rγδ»•硄みに぀いては、&bMV&r帯に進んだときに解θͺ¬γ—ます。\n\n&6&lθ¦η΄„οΌš&rεŸΊζœ¬ηš„γ«γ―γ€γ‚±γƒΌγƒ–γƒ«γŒθ€γˆγ‚‰γ‚Œγ‚‹γ‚’γƒ³γƒšγ‚’ζ•°γ¨γ€η™Ίι›»ζ©Ÿγͺどγγ‚¨γƒγƒ«γ‚ー供硦源からγζœ€ε€§γ‚’γƒ³γƒšγ‚’ζ•°γ‚’δΈ€θ‡΄γ•γ›γ‚‹γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚\n\nもっと深くηŸ₯γ‚ŠγŸγ„γ§γ™γ‹οΌŸγγε ΄εˆγ―、GregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ γ‚’θ©³γ—γθͺ¬ζ˜Žγ—γ¦γ„γ‚‹γ€Œ&cGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ &r」γη« γ‚’η’Ίθͺγ—てみてください!", + "quests.low_voltage.lv_ore_prospector.title": "ι›»ε‹•ζŽ’ηŸ₯機", + "quests.low_voltage.lv_ore_prospector.subtitle": "22δΈ–η΄€γζŽ’ι‰±ζ§Œ", + "quests.low_voltage.lv_ore_prospector.desc": "ι›»ε‹•ζŽ’ηŸ₯ζ©Ÿγ―γ€ι‰±θ„ˆζŽ’γ—γ‚’ι©šγγ»γ©η°‘ε˜γ«γ—γ¦γγ‚Œγ‚‹δΎΏεˆ©γͺツールです。\n\n右クγƒͺックすると周囲γι‰±ηŸ³γ‚’γ‚Ήγ‚­γƒ£γƒ³γ—γ€γƒžγƒƒγƒ—δΈŠγ«θ‘¨η€Ίγ—γ¦γγ‚ŒγΎγ™γ€‚\n\n&l&3余談:&r&oζ˜”γ―γ­γ€ζΊεΈ―εž‹γζŽ’ηŸ₯機γͺんて&dLuV&fにε…₯ってからでγͺγ„γ¨δ½Ώγˆγͺγ‹γ£γŸγ‚“γ γ‚ˆγ€‚δ»Šγε­γ―ζœ¬ε½“γ«ζ΅γΎγ‚Œγ¦γ‚‹γ­γ€‚", + "quests.low_voltage.lv_sprayer.title": "スプレー缢", + "quests.low_voltage.lv_sprayer.subtitle": "γ‚’γƒΌγƒ†γ‚£γ‚Ήγƒˆγ«γͺろう!", + "quests.low_voltage.lv_sprayer.desc": "ζ‹εΏ΅γͺγŒγ‚‰γ€γ“γ‚Œγ―&lη©Ίγ&rγ‚Ήγƒ—γƒ¬γƒΌηΌΆγ§γ™γ€‚δ½Ώη”¨γ™γ‚‹ε‰γ«εŒ–ε­¦ζŸ“ζ–™γ‚’ε…₯γ‚Œγ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\n&aスプレー缢&rγ―ζ©Ÿζ’°γ‚’ζ‰±γ†γ‚ˆγ†γͺζ©Ÿθƒ½γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€&bθ‰²γ‚’δ»˜γ‘γ¦θ¦‹γŸη›γ‚’γ‚«γ‚Ήγ‚Ώγƒžγ‚€γ‚Ίγ—γŸγ‚Š&rγ€γ‚γ‚‹γ„γ―θ¦‹εˆ†γ‘γ‚„γ™γγ—γŸγ‚Šγ™γ‚‹γγ«δΎΏεˆ©γ§γ™οΌ\n\nGregTechγγ‚Ώγ‚€γƒ«γ‚¨γƒ³γƒ†γ‚£γƒ†γ‚£(ζ©Ÿζ’°γ€γƒ‘γ‚€γƒ—γ€γ‚±γƒΌγƒ–γƒ«γͺど)は、ほぼすべて&6ε‘—θ£…&rγ™γ‚‹γ“γ¨γŒγ§γγ€16色γδΈ­γ‹γ‚‰ε₯½γγͺ色を選べます。\nγ“γ‚Œγ―γ‚€γ‚«γ—γŸε·₯場を建てるγγ«ζœ€ι©γ§γ™γŒγ€γƒžγƒ«γƒγƒ—レむγζ‹ η‚Ήγ§η•°γͺγ‚‹θ£…η½ηΎ€γ‚’εŒΊεˆ₯するγγ«γ‚‚δΎΏεˆ©γ§γ™γ€‚γƒ‘γ‚€γƒ—γ‚„γ‚±γƒΌγƒ–γƒ«γθ­˜εˆ₯にも役立けます。\n\n&aスプレー缢&rγ‚’γ‚ͺγƒ•γƒγƒ³γƒ‰γ«ζŒγ£γ¦γ„γ‚‹γ¨γ€θ¨­η½ζ™‚にθ‡ͺε‹•ηš„γ«ε‘—θ£…γ•γ‚ŒγΎγ™γ€‚", + "quests.low_voltage.other_machines.title": "ι‰±ηŸ³ε‡¦η†+", + "quests.low_voltage.other_machines.subtitle": "ι‰±ηŸ³ε‡¦η†η•Œγγ‚’γ‚¦γƒˆγƒ­γƒΌγŸγ‘", + "quests.low_voltage.other_machines.desc": "ここでは、&dι€šεΈΈγι‰±ηŸ³ε‡¦η†&rγ‹γ‚‰ε°‘γ—ε€–γ‚ŒγŸγ¨γ“γ‚γ‚’ζ‹…ε½“γ™γ‚‹ζ©Ÿζ’°γ‚’ζ‰±γ„γΎγ™γ€‚\n\nこγε…ˆγ§γ―&bεŒ–ε­¦ζ§½&rと&bι›»θ§£ζ§½&rに぀いて紹介します。\n\nι‰±ηŸ³ε‡¦η†γŒγ‚ˆγγ‚γ‹γ‚‰γͺγ„οΌŸγγ‚“γͺγ¨γγ―γ€Œ&cι‰±ηŸ³ε‡¦η†&r」γη« γ‚’γƒγ‚§γƒƒγ‚―γ™γ‚Œγ°γ€ε…¨δ½“γζ΅γ‚ŒγŒγ€γ‹γ‚γ‚‹γ§γ—ょう!", "quests.low_voltage.other_machines.task": "I agree to lose my sanity", - "quests.low_voltage.lv_chemical_bath.title": "Basic Chemical Bath", - "quests.low_voltage.lv_chemical_bath.subtitle": "The Chemical Bath bathes...", - "quests.low_voltage.lv_chemical_bath.desc.1": "&lOutside of Ore Processing:&r\n\nYou can use the Chemical Bath to replace recipes made with the &6sealed barrel&r, making paper and leather &6painless&r.\n\nThere are some other less important recipes, such as dyeing various items and blocks, or bleaching them.", - "quests.low_voltage.lv_chemical_bath.desc.2": "&lFor Ore Processing:&r\n\nSome &aCrushed Ores&r have alternate routes when washed into &aPurified Ore&r, involving bathing in either &aMercury&r or &aSodium Persulfate&r. This step isn't really important, unless you really want that special &6Byproduct&r. This can be a nice alternate source of Silver (hint, hint!).", - "quests.low_voltage.lv_electroliser.title": "Basic Electrolyzer", - "quests.low_voltage.lv_electroliser.subtitle": "It goes bzzz", - "quests.low_voltage.lv_electroliser.desc.1": "&lOutside of Ore Processing:&r\n\nSimilar to the Centrifuge, this machine does a lot of things - we can't hope to list them all! Fortunately, it's one of the cheapest &7LV&r machines, so grab it as soon as it becomes necessary.", - "quests.low_voltage.lv_electroliser.desc.2": "&lFor Ore Processing:&r\n\nOkay, we lied. It's not &oexactly&r used for Ore Processing, it's actually used in the &adecomposition of Dusts&r. However, most of the useful electrolysis recipes are locked at &bMV&r. You can peep at the &emolecular formula&r in a dust's tooltip to see what you can get from electrolysis.", - "quests.low_voltage.lv_electroliser.desc.3": "&cTake caution!&r Due to how ores work, directly smelting dusts into Ingots can give higher metal yields than electrolysis. However, it means you lose the other products in the dust. You will have to decide whether you want to prioritise direct value, or byproduct count.", - "quests.low_voltage.lv_mixer.title": "Basic Mixer", - "quests.low_voltage.lv_mixer.subtitle": "The Mixer mixes...", - "quests.low_voltage.lv_mixer.desc": "Using the mixer will &6significantly speed up&r the process of making colored steel, especially the &4red steel&r for your machine hulls. Even if you don't think you need it now, you'll find it &6essential&r later on.", + "quests.low_voltage.lv_chemical_bath.title": "εŸΊζœ¬εž‹εŒ–ε­¦ζ§½", + "quests.low_voltage.lv_chemical_bath.subtitle": "ι‰±ηŸ³γ—γ‚ƒγΆγ—γ‚ƒγΆ", + "quests.low_voltage.lv_chemical_bath.desc.1": "&lι‰±ηŸ³ε‡¦η†δ»₯ε€–γη”¨ι€”οΌš&r\n\nεŒ–ε­¦ζ§½γ―γ€&6樽&rを使うレシピをεŸθ‘Œγ—γ¦γγ‚Œγ‚‹γŸγ‚γ€ι©γͺめしγͺどγε·₯程を&6とてもζ₯½γ«&rγ—γ¦γγ‚ŒγΎγ™γ€‚\n\n他にも、をむテムやブロックγζŸ“θ‰²γ‚„ζΌ‚η™½γ¨γ„γ£γŸγ€γ‘γ‚‡γ£γ¨γ—γŸη”¨ι€”γ«γ‚‚δ½ΏγˆγΎγ™γ€‚", + "quests.low_voltage.lv_chemical_bath.desc.2": "&lι‰±ηŸ³ε‡¦η†γη”¨ι€”:&r\n\n一部γ&aη •γ„γŸι‰±ηŸ³&rは、&aζ΄—ζ΅„&rγε·₯程γιš›γ«γ€ζ°΄γ§γ―γͺく&aζ°΄ιŠ€&rまたは&aιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム&rγγ„γšγ‚Œγ‹γ§ε‡¦η†γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γε·₯程は、特εˆ₯γͺ&6副産物&rγŒζœ¬ε½“γ«ζ¬²γ—γ„ε ΄εˆγ«δ½ΏγˆγΎγ™γ€‚γ‘γͺγΏγ«γ€γ“γ‚Œγ―ιŠ€γ‚’η’ΊδΏγ™γ‚‹γŸγ‚γζ‰‹ζ΅γ«γ‚‚γͺγ‚ŠγΎγ™γ‚ˆγ€‚", + "quests.low_voltage.lv_electroliser.title": "εŸΊζœ¬εž‹ι›»θ§£ζ§½", + "quests.low_voltage.lv_electroliser.subtitle": "ι‰±ηŸ³γƒ“γƒͺビγƒͺ", + "quests.low_voltage.lv_electroliser.desc.1": "&lι‰±ηŸ³ε‡¦η†δ»₯ε€–γη”¨ι€”οΌš&r\n\nこγζ©Ÿζ’°γ―ι εΏƒεˆ†ι›’ζ©Ÿγ¨εŒγ˜γγ€δ½Ώγ„ι“γŒγ‹γͺγ‚Šε€šε²γ«γ‚γŸγ‚‹γŸγ‚γ€γ“γ“γ§γ™γΉγ¦γ‚’η΄Ήδ»‹γ—γγ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“\nγ€‚εΉΈγ„γ€γ“γ‚Œγ―&7LV&rγδΈ­γ§γ‚‚δ½œγ‚Šγ‚„γ™γ„ζ©Ÿζ’°γͺγγ§γ€εΏ…要にγͺγ£γŸγ‚‰γ™γγ«δ½œγ£γ¦γ—γΎγ„γΎγ—γ‚‡γ†γ€‚", + "quests.low_voltage.lv_electroliser.desc.2": "&lι‰±ηŸ³ε‡¦η†γη”¨ι€”οΌš&r\n\nγ•γ¦γ€γ“γ‚Œγ―εŽ³ε―†γ«γ―ι‰±ηŸ³ε‡¦η†γ«δ½Ώη”¨γ•γ‚Œγ‚‹γ‚γ‘γ§γ―γͺく、εŸιš›γ«γ―&a粉γεˆ†θ§£&rγ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚γŸγ γ—γ€ζœ‰η”¨γͺ電解レシピγγ»γ¨γ‚“どは&bMV&rγ§θ§£η¦γ•γ‚ŒγΎγ™γ€‚\nをむテムγγƒ„ールチップにある&eεˆ†ε­εΌ&rγ‚’θ¦‹γ‚Œγ°γ€ι›»θ§£γ«γ‚ˆγ£γ¦δ½•γŒεΎ—γ‚‰γ‚Œγ‚‹γ‹γŒγ‚γ‹γ‚ŠγΎγ™γ€‚", + "quests.low_voltage.lv_electroliser.desc.3": "&cζ³¨ζ„οΌš&rη²‰ζœ«γ‚’η›΄ζŽ₯γ‚€γƒ³γ‚΄γƒƒγƒˆγ«η²ΎιŒ¬γ™γ‚‹γ¨γ€ι›»θ§£γ™γ‚‹γ‚ˆγ‚Šγ‚‚ι‡‘ε±žγεŽι‡γŒε€šγγͺγ‚‹γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚γ—γ‹γ—γ€γγε ΄εˆγ―η²‰ζœ«γ«ε«γΎγ‚Œγ‚‹δ»–γε‰―産物を倱うことにγͺγ‚ŠγΎγ™γ€‚δΈ»η”£η‰©γ‚’ε„ͺε…ˆγ™γ‚‹γ‹γ€ε‰―η”£η‰©γ‚’ι‡θ¦–γ™γ‚‹γ‹γ«εΏœγ˜γ¦ε„θ‡ͺγ§ε―ΎεΏœγ—γ¦γγ γ•γ„", + "quests.low_voltage.lv_mixer.title": "εŸΊζœ¬εž‹γƒŸγ‚­γ‚΅γƒΌ", + "quests.low_voltage.lv_mixer.subtitle": "ζ··εˆγ€ζ’Ήζ‹Œ", + "quests.low_voltage.lv_mixer.desc": "γƒŸγ‚­γ‚΅γƒΌγ‚’δ½Ώγ†γ¨γ€θ΅€ι‹Όγƒ»ι’ι‹Όγθ£½ι€ γŒ&6ζ Όζ΅γ«ι€Ÿγ&rγͺγ‚ŠγΎγ™γ€‚η‰Ήγ«γ€&4θ΅€ι‹Ό&rは機撰γη­δ½“に使うγγ§γ€γ‹γͺγ‚Šζœ‰η”¨γͺη”Ÿη”£ζ‰‹ζ΅γ«γͺるでしょう。\nγ‚‚γ—γ€δ»Šγ―εΏ…θ¦γͺγ„γ¨ζ€γ£γ¦γ„γ¦γ‚‚γ€εΎŒγ€…&6εΏ…ι ˆ&rにγͺってきます。", "quests.low_voltage.lv_mixer.task": "From Create or GregTech", - "quests.low_voltage.soldering_alloy.title": "Soldering Alloy", - "quests.low_voltage.soldering_alloy.subtitle": "I got soul but I'm not a solder", - "quests.low_voltage.soldering_alloy.desc": "&aSoldering Alloy&r is used solely as a &9Fluid&r, and in most cases is &dinterchangeable&r in circuit recipes as a cheaper alternative to Tin&r.\n\nThe choice is yours. Save more materials? Make Soldering Alloy. Spend less time crafting materials? Tin is the way to go.", - "quests.low_voltage.gallium_arsenide.title": "Gallium Arsenide", - "quests.low_voltage.gallium_arsenide.subtitle": "I hate byproducts, they're awesome", - "quests.low_voltage.gallium_arsenide.desc": "Many materials going forward cannot be smelted directly from any Ores! They are instead obtained as byproducts from processing of other ores. Gallium and Arsenic are &4among&r these materials.\n\nFor &dGallium&r, you may, ranged from worst to best (compromising difficulty and yields):\n\n&9- &3Electrolyze &aSphalerite&r for a low chance of small dust. Note that you lose out on direct smelting value.\n\n&9-&r Put &aCrushed Bauxite&r in the &3Chemical Bath&r. Note that this requires &9Sodium Persulfate&r.\n\n&9-&r Obtain it as a Byproduct of &aSphalerite&r Ore Processing in the &3Thermal Centrifuge&r or &3Centrifuge&r.\n\nFor &dArsenic&r, you will have to mine and &3centrifuge&r &aRealgar&r, or put &aCobaltite&r through an EBF.", - "quests.low_voltage.lv_assembler.title": "Basic Assembler", - "quests.low_voltage.lv_assembler.subtitle": "This bad boy is assembling better than you and IKEA", - "quests.low_voltage.lv_assembler.desc.1": "While this is an extremely &9important&r machine for progression, this will &9&lnot help you immediately&r as it is &cexpensive.&r Most of the recipes you will want to pursue require &cfluids&r. Set up a little bit more infrastructure before rushing this.\n\nWith that out of the way, the &3Assembler&r is crucial to gameplay. Consider it as important as a Crafting Table, except... well, it's a machine, duh.", - "quests.low_voltage.lv_assembler.desc.2": "Once you have enough infrastructure you will be able to make use of better recipes for:\n\n&9-&r &6Vacuum Tubes&r, giving over double the previous yield\n\n&9-&r &6Resistors&r, granting 4 resistors per craft!\n\n&9-&r &6Circuit Boards&r, greatly reducing copper used\n\nWahoo!\n\n&l&3Lore:&r&o Back in the days of GregTech 2, the Assembling Machine only had two slots, and was only really used for alternate Circuit and Hull recipes.", + "quests.low_voltage.soldering_alloy.title": "γ―γ‚“γ εˆι‡‘", + "quests.low_voltage.soldering_alloy.subtitle": "η¬Ήγ‚’δΈŽγˆγ‚‹εΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“", + "quests.low_voltage.soldering_alloy.desc": "&aγ―γ‚“γ εˆι‡‘&rγ―γ€εŸΊζœ¬ηš„γ«&9梲体&rγηŠΆζ…‹γ§δ½Ώγ„γΎγ™γ€‚ε›žθ·―γ‚’δ½œγ‚‹γƒ¬γ‚·γƒ”γ§γ€ιŒ«γ&d代用品&rγ¨γ—γ¦δ½Ώγ†γ“γ¨γŒε€šγ„γ§γ™γ€‚\n\nどけらを選ぢかはあγͺγŸζ¬‘η¬¬γ§γ™γ€‚ζζ–™γ‚’η―€η΄„γ—γŸγ„γͺγ‚‰γ―γ‚“γ εˆι‡‘γ‚’δ½œγ‚Šγ€δ½œγ‚‹ζ‰‹ι–“γ‚’ζΈ›γ‚‰γ—γŸγ„γͺγ‚‰ιŒ«γ‚’δ½Ώγ†γγŒγ‚ͺススパです。", + "quests.low_voltage.gallium_arsenide.title": "γƒ’εŒ–γ‚¬γƒͺウム", + "quests.low_voltage.gallium_arsenide.subtitle": "副産物γη”£η‰©", + "quests.low_voltage.gallium_arsenide.desc": "δ»ŠεΎŒγ€ε€šγγη΄ ζγ―ι‰±ηŸ³γ‚’η²ΎιŒ¬γ™γ‚‹γ γ‘γ§γ―ε–εΎ—γ§γγͺくγͺγ‚ŠγΎγ™γ€‚δ»£γ‚γ‚Šγ«γ€δ»–γι‰±ηŸ³γ‚’ε‡¦η†γ—γŸγ¨γγε‰―産物として手にε…₯γ‚ŠγΎγ™γ€‚γ‚¬γƒͺウムやヒ素はそγ&4代葨例&rです。\n\n&dガγƒͺウム&rγ‚’ε…₯手する手ζ΅γ―γ€ι›£ζ˜“εΊ¦γ¨εŽι‡γ‹γ‚‰θ€ƒγˆγ¦γ€δ½ŽεŠΉηŽ‡γͺγ‚‚γγ‹γ‚‰ι †γ«δ»₯δΈ‹γι€šγ‚Šγ§γ™οΌš\n\n&9-&3ζœ€γ‚‚εŠΉηŽ‡γŒζ‚ͺい手ζ΅γ―、&aι–ƒδΊœι‰›ι‰±&rγ‚’&3ι›»θ§£&rγ—γ¦γ€δ½Žη’ΊηŽ‡γ§η²‰γ‚’ε…₯手する方法です。こγζ–Ήζ³•γ―δΊœι‰›γεŽι‡γ‚’減らしてしまいます。\n\n&9-&r欑に&aη •γ„γŸγƒœγƒΌγ‚­γ‚΅γ‚€γƒˆ&rγ‚’&3εŒ–ε­¦ζ§½&rで処理するという手ζ΅γŒγ‚γ‚ŠγΎγ™γ€‚γ“γζ–Ήζ³•には&9ιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\n&9-&rζœ€ι©γͺ手ζ΅γ¨γ—て&aι–ƒδΊœι‰›ι‰±&rγι‰±ηŸ³ε‡¦η†γδΈ­γ§&3η†±ι εΏƒεˆ†ι›’ζ©Ÿ&rまたは&3ι εΏƒεˆ†ι›’ζ©Ÿ&rを使い、副産物としてε…₯ζ‰‹γ™γ‚‹γ¨γ„γ†ζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&dγƒ’η΄ &rに぀いては、&aιΆε† ηŸ³γη²‰&rγ‚’&3ι εΏƒεˆ†ι›’&rするか、&aθΌγ‚³γƒγƒ«γƒˆι‰±&rγ‚’EBFγ«γ‹γ‘γ‚‹ζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.low_voltage.lv_assembler.title": "εŸΊζœ¬εž‹η΅„η«‹ζ©Ÿ", + "quests.low_voltage.lv_assembler.subtitle": "真γγ‚―ラフター", + "quests.low_voltage.lv_assembler.desc.1": "こγζ©Ÿζ’°γ―ι€²θ‘Œγ«γŠγ„γ¦γ¨γ¦γ‚‚ι‡θ¦γͺγ‚‚γγ§γ™γŒγ€δ»–γζ©Ÿζ’°γ¨ζ―”べて&cδ½œζˆγ‚³γ‚ΉγƒˆγŒι«˜γ„γ§γ™&r。\nη΅„η«‹ζ©Ÿγ‚’δ½Ώγ£γŸγ»γ¨γ‚“γ©γγƒ¬γ‚·γƒ”では&c梲体&rγ‚’ζ‰±γ„γΎγ™γ€‚θ¦ζ±‚γ•γ‚Œγ‚‹ζΆ²δ½“γ‚„η΄ ζγŒγγ‚γ£γ¦γ‹γ‚‰ι‹η”¨γ™γ‚‹γγŒγ‚ˆγ„でしょう。\n\nγ¨γ‚‚γ‚γ‚Œγ€&3η΅„η«‹ζ©Ÿ&rはGregγ‚’ι€²γ‚γ‚‹γ«γŠγ„γ¦ζ₯΅γ‚γ¦ι‡θ¦γͺζ©Ÿζ’°γ§γ™γ€‚γƒžγ‚€γ‚―γƒ©γ«γŠγ‘γ‚‹δ½œζ₯­ε°γ¨εŒγ˜γγ‚‰γ„重要γͺε­˜εœ¨γ γ¨θ€ƒγˆγ¦γγ γ•γ„γ€‚γŸγ γ—γ€εΏ…θ¦γͺγγ―木材4぀ではγͺγε›žθ·―4γ€γ§γ™γŒγ­γ€‚", + "quests.low_voltage.lv_assembler.desc.2": "εεˆ†γ«θ³‡ζγ‚„θ¨­ε‚™γŒζ•΄γ£γ¦γ„γ‚Œγ°γ€ζ¬‘γγ‚ˆγ†γͺγ‚’γ‚€γƒ†γƒ γ‚’γ‚ˆγ‚ŠεŠΉηŽ‡γ‚ˆγδ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌš\n\n-&6真空η‘&r:δ»₯前γ2倍δ»₯上γεŠΉηŽ‡γ§θ£½δ½œγ§γγΎγ™γ€‚\n\n&9-&rζŠ΅ζŠ—ε™¨οΌš1ε›žγγ‚―γƒ©γƒ•γƒˆγ§4ε€‹γ‚‚δ½œγ‚ŒγΎγ™γ€‚\n\n-&6ζ¨Ήθ„‚γƒ—γƒͺγƒ³γƒˆεŸΊζΏ&rοΌšδ½Ώη”¨γ™γ‚‹ιŠ…γι‡γ‚’ε€§εΉ…γ«ε‰ŠζΈ›γ§γγΎγ™γ€‚\n\nγŸγΎγ‚ŠγΎγ›γ‚“γ­οΌ\n\n&l&3δ½™θ«‡οΌš&r&oζ˜”γGregTech2γζ™‚δ»£γ γ¨γ€η΅„η«‹ζ©Ÿγ―γ‚Ήγƒ­γƒƒγƒˆγŒγŸγ£γŸ2぀しかγͺγγ¦γ€δΈ»γ«ε›žθ·―γδ»£ζ›Ώε“γ‚„筐体γγƒ¬γ‚·γƒ”γ«γ—γ‹δ½Ώγ‚γ‚Œγͺγ‹γ£γŸγ‚“γ γ‚ˆγ€‚γšγ„γΆγ‚“γ¨ζˆι•·γ—γŸγ­γ€‚", "quests.low_voltage.lv_assembler.task": "Basic Assembler", - "quests.low_voltage.t2_circuit_board.subtitle": "Yeah yeah it's wood but don't under estimate it", - "quests.low_voltage.t2_circuit_board.desc.1": "This Circuit Board is used to create &dMV Circuits&r!\n\n&9Note:&r You have <wo&r options when making the Phenolic Printed Circuit Board. If you use &aSodium Persulfate&r or &aIron III Chloride&r, making boards takes &6only a quarter of the Silver&r as opposed to the crafting recipe.\n\n&lHowever&r, given how painful it may be for you to obtain these chemicals &oright now&r, you can simply use more Silver by mining most of a Galena Vein...\n\nThe quest for &aSodium Persulfate&r is in the &bMV&r chapter, if you're down for some light reading.", - "quests.low_voltage.t2_circuit_board.desc.2": "&l&3Lore:&r&o Back in GTCEu 1.12.2, these circuit boards were called &2Good Circuit Boards&f. Not exactly a fitting name, as they're &4rather evil&f to craft.", - "quests.low_voltage.lv_diode.title": "Diode", - "quests.low_voltage.lv_diode.subtitle": "Don't be swayed by EMI!", - "quests.low_voltage.lv_diode.desc": "Don't let JEI fool you... there's only one possible recipe right now for this Primitive Diode -- the liquid glass one.\n\nDiodes have a infamously &4nasty recipe&r, but they will become cheaper and more convenient once you can obtain &ePolyethylene&r.\n\nThis is required for &dMV Circuits&r.", - "quests.low_voltage.1_mv_circuit.title": "First MV Circuit!", - "quests.low_voltage.1_mv_circuit.subtitle": "Does that mean we're at MV yet?", - "quests.low_voltage.1_mv_circuit.desc": "Well... got any Aluminium Ingots yet?\n\nEach Electric Age has Circuits corresponding to its tier. The Good Electronic Circuit is the &dfirst MV Circuit&r you can make out of the three tiers of &bMV&r Circuitry.\n\nAlways be on the lookout for a cheaper way to make your circuits - new sets of recipes become available each time you make a new tier of &2Circuit Assembler&r. Conveniently, this tier of Circuit unlocks one now! Its recipes are far, far cheaper than the Deployers.\n\n&6Having this and Aluminium will grant access to MV Machines.&r\n\nIf you are having trouble understanding the mess that is GregTech circuits, check out the &6Progression Table&r chapter.", - "quests.low_voltage.lv_circuit_assembler.title": "The Circuit Assembler", - "quests.low_voltage.lv_circuit_assembler.subtitle": "Hopefully, your first MV Circuit expense", - "quests.low_voltage.lv_circuit_assembler.desc.1": "From now on, all Circuits should be made in a &3Circuit Assembler&r. Use it now to enjoy &6far cheaper LV and MV circuits&r.\n\nEach time you upgrade to a new tier of &3Circuit Assembler&r, you will be able to craft more &dadvanced themes&r of circuit. These will use &ccomplex&r and &msometimes&r unfamiliar ingredients, but will be more efficient to craft overall.", - "quests.low_voltage.lv_circuit_assembler.desc.2": "&l&3Lore:&r&o The Circuit Assembler has made appearances in and out of GregTech versions. GT5 did not have it, and it was reimplemented in GT5 Unofficial. GTCE decided not to port it, and the tug-of-war continues with its inclusion in GTCEu.", - "quests.low_voltage.lv_greenhouse.title": "Electric Greenhouse", - "quests.low_voltage.lv_greenhouse.subtitle": "The power of KubeJS", - "quests.low_voltage.lv_greenhouse.desc.1": "The multiblock &3Electric Greenhouse&r can be your source of &aLogs&r and other plants if you prefer making GregTech machines over Create contraptions. It also has the unique property of being able to grow more of TFC's decorative plants!\n\nThis is one of the few machines that has &2Perfect Overclocking&r, which basically means each higher tier of EU input means x4 the recipe speed instead of the usual x2!", - "quests.low_voltage.lv_greenhouse.desc.2": "&9Note: &rWith recipes requiring more than 32 EU/t, the multiblock needs either 1 &bMV&r energy hatch or 2 &7LV&r energy hatches. Multiblocks will &cnot&r use 2A of one tier to reach the next one for recipe voltage minimums.\n\nIn other words, the controller needs to say at least &bMV&r in the GUI to run recipes which say &bMV&r in EMI, even if they can draw enough EU/t with a lower tier hatch configuration.\n\n&9Note:&r This structure requires a lot of &7Steel&r. Make sure you have an &3EBF&r for that.", - "quests.low_voltage.lv_greenhouse.desc.3": "&l&3Lore:&r&o This multiblock was originally created for the GTCEu Community Pack, but is also available on the GTCEu developer documentation. It's significantly slower than default to keep in line with TFC's slower tree growing speeds, but prior to TFG 0.9, it used to take almost an hour for each recipe!", - "quests.low_voltage.lv_centrifuge.title": "Basic Centrifuge", - "quests.low_voltage.lv_centrifuge.subtitle": "It does the opposite of the Mixer", - "quests.low_voltage.lv_centrifuge.desc.1": "&lOutside of Ore Processing:&r\n\nOh boy, what can't this machine do? Decomposition recipes to separate dust types, separating air, do your taxes, and many others...\n\nThe list is too long! Let's just say &cyou need the Centrifuge&r.", - "quests.low_voltage.lv_centrifuge.desc.2": "&lFor Ore Processing:&r\n\nThis takes &aImpure Dust&r or &aPurified Dust&r and turns them into clean Dust, plus an added tiny Dust &6Byproduct&r. This is outside of the optimal chain for Byproducts, but this is also the cheapest Ore Processing machine of the presented array to run and to setup on a small scale.", - "quests.low_voltage.lv_centrifuge.desc.3": "&l&3Lore:&r&o In base GTCE, this was objectively the strongest Ore Processing machine as it was fairly easy to use, and gave three tiny dusts, just like the Ore Washer or the Thermal Centrifuge. We tuned it down in favor of diversity.", + "quests.low_voltage.t2_circuit_board.subtitle": "η΄ ζ•΅γͺ木γεŸΊζΏ", + "quests.low_voltage.t2_circuit_board.desc.1": "γ“γ‚Œγ―γ€&dMVε›žθ·―&rγ‚’δ½œγ‚‹γŸγ‚γε›žθ·―εŸΊζΏγ§γ™οΌ\n\n&9γƒ‘γƒ’οΌš&rγƒ•γ‚§γƒŽγƒΌγƒ«ζ¨Ήθ„‚θ£½γƒ—γƒͺγƒ³γƒˆε›žθ·―εŸΊζΏγ‚’δ½œγ‚‹ζ–Ήζ³•γ―&l2η¨ι‘ž&rγ‚γ‚ŠγΎγ™γ€‚\n\n&aιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム&rまたは&aε‘©εŒ–ι‰„(III)&rγ‚’δ½Ώη”¨γ™γ‚‹γƒ¬γ‚·γƒ”γ§γ―γ€δ½œζ₯­ε°γ§γγƒ¬γ‚·γƒ”に比べて&6ιŠ€γδ½Ώη”¨ι‡γŒ4εˆ†γ1&rγ§ζΈˆγΏγΎγ™γ€‚\n\n&lγŸγ γ—&rγ€ηΎζ™‚η‚Ήγ§γ“γ‚Œγ‚‰γεŒ–学物θ³ͺを用意するγγ―かγͺγ‚Šε€§ε€‰γ γ¨ζ€γ„γΎγ™γ€‚γγε ΄εˆγ―γ€ζ–Ήι‰›ι‰±ι‰±θ„ˆγͺどから倧量γιŠ€γ‚’η’ΊδΏγ™γ‚‹γ“γ¨γ§δ»£η”¨γ§γγΎγ™γ€‚\n\n&aιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム&rγγ‚―γ‚¨γ‚Ήγƒˆγ―γ€&bMV&rγη« γ«γ‚γ‚ŠγΎγ™γ€‚ζ™‚ι–“γŒγ‚γ‚‹γ¨γγ«η›γ‚’ι€šγ—γ¦γΏγ¦γγ γ•γ„γ€‚", + "quests.low_voltage.t2_circuit_board.desc.2": "&l&3δ½™θ«‡οΌš&r&oGTCEu1.12.2γι ƒγ€γ“γε›žθ·―基板は&2Good_Circuit_Boards&fγ£γ¦εε‰γ γ£γŸγ‚“γ γ€‚γŸγ γ€Goodγ¨γ„γ†γ«γ―γƒ¬γ‚·γƒ”γŒγ‚γΎγ‚Šγ«γ‚‚&4ι‚ͺζ‚ͺ&fγ™γŽγŸ...", + "quests.low_voltage.lv_diode.title": "ダむγ‚ͺード", + "quests.low_voltage.lv_diode.subtitle": "EMIγ«ζƒ‘γ‚γ•γ‚Œγͺいで!", + "quests.low_voltage.lv_diode.desc": "EMIγ§γ―γ„γγ€γ‚‚γƒ¬γ‚·γƒ”γŒγ‚γ‚ŠγΎγ™γŒγ€δ»Šγγ¨γ“ろ、ダむγ‚ͺγƒΌγƒ‰γ‚’δ½œγ‚‹ζ–Ήζ³•γ―γ€ζΆ²δ½“γ‚¬γƒ©γ‚Ήγ‚’δ½Ώγ†γƒ¬γ‚·γƒ”1぀だけです。\n\nダむγ‚ͺードγγƒ¬γ‚·γƒ”は&4かγͺγ‚Šι’ε€’&rγͺことでηŸ₯γ‚‰γ‚Œγ¦γ„γΎγ™γŒγ€&eポγƒͺエチレン&rγŒη’ΊδΏγ§γγ‚Œγ°γ€γšγ£γ¨ζ‰‹θ»½γ§ε‰γδ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nこγη΄ ζγ―&dMVε›žθ·―&rγθ£½δ½œγ«εΏ…要です。", + "quests.low_voltage.1_mv_circuit.title": "εˆγ‚γ¦γMVε›žθ·―", + "quests.low_voltage.1_mv_circuit.subtitle": "MV時代γθ¨Όζ˜Žζ›Έ", + "quests.low_voltage.1_mv_circuit.desc": "γ•γ¦γ€γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γ‚€γƒ³γ‚΄γƒƒγƒˆγ―ζŒγ£γ¦γ„γΎγ™γ‹οΌŸ\n\nGregTechγ«γ―γ€γγ‚Œγžγ‚Œγζ΅ιšŽγ«ε―ΎεΏœγ™γ‚‹ε›žθ·―γŒγ‚γ‚ŠγΎγ™γ€‚\nγ€Œζ”Ήθ‰―εž‹ι›»ε­ε›žθ·―γ€γ―γ€3η¨ι‘žγ‚γ‚‹&bMV&rε›žθ·―γγ†γ‘、&dζœ€εˆγ«δ½œγ‚Œγ‚‹MVε›žθ·―&rです。\n\nε›žθ·―γ‚’γ‚‚γ£γ¨ε‰γδ½œγ‚‹γŸγ‚γ«γ€ζ–°γ—いティをγ&2ε›žθ·―δ½œζˆζ©Ÿ&rγ‚’δ½œγ‚Šγ€ζ–°γŸγͺレシピを解禁しましょう。MVε›žθ·―γŒγ‚γ‚Œγ°εˆγ‚γ¦γε›žθ·―δ½œζˆζ©Ÿγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™οΌγƒ‡γƒ—γƒ­γ‚€γƒ€γƒΌγ‚ˆγ‚Šγ‚‚γ‚ˆγ£γ½γ©ε„ͺη§€γ§γ™γ‚ˆγ€‚\n\n&6こγε›žθ·―γ¨γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γŒγ‚γ‚Œγ°γ€γ€γ„γ«MVζ©Ÿζ’°γ‚’γ€γγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&r\n\nもしGregTechγε›žθ·―γ‚·γ‚Ήγƒ†γƒ γŒθ€‡ι›‘γ™γŽγ¦ζ··δΉ±γ—γ¦γ„γ‚‹γͺγ‚‰γ€γ€Œ&6進捗葨&r」γη« γ‚’参考にすると良いでしょう。", + "quests.low_voltage.lv_circuit_assembler.title": "ε›žθ·―δ½œζˆζ©Ÿ", + "quests.low_voltage.lv_circuit_assembler.subtitle": "LVからγε‡Ίε£", + "quests.low_voltage.lv_circuit_assembler.desc.1": "γ“γ‚Œγ‹γ‚‰γ―γ€γ™γΉγ¦γε›žθ·―γ‚’&3ε›žθ·―δ½œζˆζ©Ÿ&rγ§δ½œγ‚‹γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚&6LVγ‚„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γ§γ―η™»ε ΄γ›γšγ€GT5Unofficialγ§ε†γ³θΏ½εŠ γ•γ‚ŒγŸγ€‚GTCEγ§γ―θ¦‹ι€γ‚‰γ‚Œγ¦γ€GTCEuγ§γ―γΎγŸη™»ε ΄γ—γ¦...η₯žε‡Ίι¬Όζ²‘だね。", + "quests.low_voltage.lv_greenhouse.title": "ι›»ζ°—ζΈ©ε€", + "quests.low_voltage.lv_greenhouse.subtitle": "KubeJSは全てを解決する", + "quests.low_voltage.lv_greenhouse.desc.1": "γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ©Ÿζ’°γ§γ‚γ‚‹&3ι›»ζ°—ζΈ©ε€&rは、Createγ«ι Όγ‚‰γšγ€ι›»ζ°—γεŠ›γ§&a木&rγ‚„δ½œη‰©γ‚’ε‰εšγ—γ¦η”Ÿη”£γ§γγ‚‹δΎΏεˆ©γͺ設備です。さらに、TFCγθ£…飾用怍物γͺγ©γ‚‚ζ ½εŸΉγ§γγΎγ™οΌ\n\nこγζ©Ÿζ’°γ―ζ•°ε°‘γͺい&2γƒ‘γƒΌγƒ•γ‚§γ‚―γƒˆγ‚ͺーバークロック(POC)&r対応γθ£…η½γγ²γ¨γ€γ§γ™γ€‚POCγε ΄εˆγ―ε…₯εŠ›ι›»εœ§γγƒ†γ‚£γ‚’γŒδΈŠγŒγ‚‹γŸγ³γ«εŸθ‘Œι€ŸεΊ¦γŒx4γšγ€δΈŠζ˜‡γ—γ¦γ„γγΎγ™(ι€šεΈΈγ―x2γšγ€γ§γ™)!", + "quests.low_voltage.lv_greenhouse.desc.2": "&9注意:&rMVレシピをεŸθ‘Œγ™γ‚‹γ«γ―、&bMV&rエネルγ‚ーハッチを1ε€‹γ€γΎγŸγ―&7LV&rエネルγ‚ーハッチを2個設η½γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ©Ÿζ’°γ―γ€εŒγ˜γƒ†γ‚£γ‚’γι›»εŠ›γ‚’4Aεˆ†εˆγ‚γ›γ‚‹γ“γ¨γ§1぀上位γγƒ†γ‚£γ‚’η›Έε½“γ¨γ—γ¦ζ‰±γ‚γ‚ŒγΎγ™γ€‚\n\nEMIγ§γƒ¬γ‚·γƒ”γŒ&bMV&rγ¨θ‘¨η€Ίγ•γ‚Œγ¦γ„γ‚‹ε ΄εˆγ€γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌη”»ι’γθ‘¨η€ΊγŒ&bMV&rδ»₯上にγͺっていγͺγ„γ¨ε‹•δ½œγ—γΎγ›γ‚“γ€‚\n\n&9ζ³¨ζ„οΌš&rこγθ£…η½γ‚’硄み立てるには倧量γ&7スチール&rγŒεΏ…θ¦γ§γ™γ€‚γ‚ΉγƒγƒΌγƒ«γ―&3EBF&rγ«γ‚ˆγ£γ¦η°‘ε˜γ«δ½œζˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.low_voltage.lv_greenhouse.desc.3": "&l&3δ½™θ«‡οΌš&r&oこγγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ©Ÿζ’°γ―γ€γ‚‚γ¨γ‚‚γ¨GTCEu_Community_Packη”¨γ«ι–‹η™Ίγ•γ‚ŒγŸγ‚‚γγ§γ€γ„まはGTCEuγι–‹η™Ίθ€…向けドキγƒ₯γƒ‘γƒ³γƒˆγ«γ‚‚ζŽ²θΌ‰γ•γ‚Œγ¦γ„γ‚‹γ‚ˆγ€‚TFCでγζ€η‰©γζˆι•·ι€ŸεΊ¦γ«εˆγ‚γ›γ¦ε‹•δ½œγŒγ‹γͺγ‚Šι…γ‚γ«θͺΏζ•΄γ•γ‚Œγ¦γ‚‹γ‚“γ γ‘γ©γ€TFGγ0.9δ»₯前γγƒγƒΌγ‚Έγƒ§γƒ³γ§γ―、γͺんと1レシピにほぼ1ζ™‚ι–“γ‚‚γ‹γ‹γ£γ¦γŸγ‚“γ οΌ", + "quests.low_voltage.lv_centrifuge.title": "εŸΊζœ¬εž‹ι εΏƒεˆ†ι›’ζ©Ÿ", + "quests.low_voltage.lv_centrifuge.subtitle": "ι€†γƒŸγ‚­γ‚΅γƒΌ", + "quests.low_voltage.lv_centrifuge.desc.1": "&lι‰±ηŸ³ε‡¦η†δ»₯倖でγη”¨ι€”οΌš&r\n\nこγζ©Ÿζ’°γ«γ§γγͺいことはあるγγ§γ—γ‚‡γ†γ‹οΌŸη²‰ζœ«γ‚’η¨ι‘žγ”γ¨γ«εˆ†ι›’、空気γεˆ†ι›’γ€η¨Žι‡‘γη”³ε‘Šγ€γγ‚Œδ»₯倖にも...\n\nγ¨γ«γ‹γγ€η”¨ι€”γŒε€šγ™γŽγΎγ™οΌγ€γΎγ‚Šγ―γ€&cι εΏƒεˆ†ι›’ζ©Ÿγ―εΏ…ι ˆοΌ&rということです。", + "quests.low_voltage.lv_centrifuge.desc.2": "&lι‰±ηŸ³ε‡¦η†γ§γη”¨ι€”οΌš&r\n\nこγζ©Ÿζ’°γ―&aζ±šγ‚ŒγŸη²‰ζœ«&rγ‚„&aほぼ確麗γͺη²‰ζœ«&rγ‚’γγ‚Œγ„γͺη²‰ζœ«γΈγ¨η²Ύθ£½γ—γ€γ•γ‚‰γ«ε°‘ι‡γ&6副産物&rγ‚’η”Ÿζˆγ—γΎγ™γ€‚ε‰―η”£η‰©γ‚’ζœ€ε€§ι™εΎ—γ‚‹γ«γ―ζœ€ι©γͺζ–Ήζ³•γ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€θ¨­η½γ‚³γ‚Ήγƒˆγƒ»ι‹η”¨γ‚³γ‚Ήγƒˆγ¨γ‚‚にε‰γγ€ε°θ¦ζ¨‘γͺ処理にはうって぀けです。", + "quests.low_voltage.lv_centrifuge.desc.3": "&l&3δ½™θ«‡οΌš&r&oGTCEだと、こγζ©Ÿζ’°γ―ζ‰±γ„γ‚„γ™γγ¦γ€ι‰±ηŸ³ζ΄—ζ΅„ζ©Ÿγ‚„η†±ι εΏƒεˆ†ι›’ζ©Ÿγ¨εŒγ˜γ‚ˆγ†γ«3぀γε°γ•γͺη²‰γ‚’η”ŸγΏε‡Ίγ›γŸγ‹γ‚‰γ€γ€Œζœ€εΌ·γι‰±ηŸ³ε‡¦η†ζ©Ÿγ€γ£γ¦θ¨€γˆγ‚‹γγ‚‰γ„ε„ͺη§€γ γ£γŸγ‚“γ γ€‚γ§γ‚‚γ€ι‰±ηŸ³ε‡¦η†γ«γ‚‚ε€šζ§˜ζ€§γŒγ‚γ£γŸγ»γ†γŒγ„γ„γ¨ζ€γ£γŸγ‹γ‚‰γ€δ»ŠγγƒγƒΌγ‚Έγƒ§γƒ³γ γ¨ζ€§θƒ½γ‚’ε°‘γ—ζŠ‘γˆγ¦γ‚‹γ‚“γ γ‚ˆγ€‚", "quests.low_voltage.lv_centrifuge.task": "", - "quests.low_voltage.lv_glue.title": "Glued", - "quests.low_voltage.lv_glue.subtitle": "What a sticky situation", - "quests.low_voltage.lv_glue.desc": "You can now &3centrifuge&r &aSticky Resin&r, which will give you &aGlue&r in fluid form (and the less useful Plantball, &6for now&r).\n\nGive yourself a headstart and get on producing Glue. You can use it to make &6cheaper Resistors&r, as well as &6cheaper Circuit Boards&r in the &3Assembler&r (and it is especially useful &oin the near future&r).\n\n&eNote:&r You can also centrifuge TFC's &aGlue&r or &aConifer Rosin&r, whichever's easiest!", + "quests.low_voltage.lv_glue.title": "γƒŽγƒͺ", + "quests.low_voltage.lv_glue.subtitle": "γ‚γ‚‰γ³γ£γγ‚ŠοΌ", + "quests.low_voltage.lv_glue.desc": "&aη²˜ζ€§ζ¨Ήθ„‚&rγ‚’&3ι εΏƒεˆ†ι›’&rγ™γ‚‹γ“γ¨γ§ζΆ²δ½“ηŠΆγ&aγƒŽγƒͺ&r(と、&6今γγ¨γ“ろ&rη‰Ήγ«δ½Ώγ„ι“γŒγͺγ„γƒ—γƒ©γƒ³γƒˆγƒœγƒΌγƒ«)γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγƒŽγƒͺγη”Ÿη”£γ―ζ—©γ‚γ«ι€²γ‚γ¦γŠγ„γ¦θ‰―γ„γ§γ—γ‚‡γ†γ€‚γƒŽγƒͺは&3η΅„η«‹ζ©Ÿ&rで&6ζŠ΅ζŠ—ε™¨&rγ‚„&6ε›žθ·―εŸΊζΏ&rγ‚’ε‰δΎ‘γ«δ½œζˆγ™γ‚‹γγ«δ½ΏγˆγΎγ™γ€‚(そして&o近い将ζ₯&rとても役立けます)。\n\n&e補袳:&rTFCγ&a針葉樹脂&rγ‚‚ι εΏƒεˆ†ι›’γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ε…₯手しやすい方を使いましょう!", "quests.low_voltage.lv_glue.task": "Glue", - "quests.low_voltage.lv_cutter.title": "Basic Cutter", - "quests.low_voltage.lv_cutter.subtitle": "The Cutter... cuts...", - "quests.low_voltage.lv_cutter.desc": "For now, you should use &9Water&r for its recipes instead of trying to acquire Lubricant.\n\nIf you don't have one yet, this machine will also cut &6Rods into four Bolts&r.\n\nThis machine is the only way to obtain &dGem Plates&r, which are needed to craft Filters, and by extension, the &3Gas Collector&r.", + "quests.low_voltage.lv_cutter.title": "εŸΊζœ¬εž‹θ£ζ–­ζ©Ÿ", + "quests.low_voltage.lv_cutter.subtitle": "こけら側γγ©γ“γ‹γ‚‰γ§γ‚‚εˆ‡γ‚ŒγΎγ™", + "quests.low_voltage.lv_cutter.desc": "今γζ΅ιšŽγ§γ―γ€ζ½€ζ»‘ζ²Ήγ‚’η„‘η†γ«δ½ΏγŠγ†γ¨γ›γšγ€γƒ¬γ‚·γƒ”γ«γ―&9ζ°΄&rを使うγγŒγŠγ™γ™γ‚γ§γ™γ€‚\n\nこγζ©Ÿζ’°γ‚’γΎγ δ½œγ£γ¦γ„γͺγ„γ§γ™γ‹οΌŸ&6ζ£’1ζœ¬γ‹γ‚‰4本γγƒœγƒ«γƒˆγ‚’δ½œγ‚‹&rことγͺγ©γ«γ€γ‹γˆγΎγ™γ‚ˆγ€‚\n\nさらに、こγζ©Ÿζ’°γ―&dεηŸ³γγƒ—γƒ¬γƒΌγƒˆ&rγ‚’δ½œγ‚‹γŸγ‚γ«εΏ…θ¦γ§γ‚γ‚Šγ€γƒ•γ‚£γƒ«γ‚ΏγƒΌγ‚„γγ‚ŒγŒη΄ ζγ«γͺγ‚‹&3γ‚¬γ‚ΉεŽι›†ζ©Ÿ&rγ‚’δ½œγ‚‹γŸγ‚γ«γ―ζ¬ γ‹γ›γΎγ›γ‚“γ€‚", "quests.low_voltage.lv_cutter.task": "Any cutter", - "quests.low_voltage.lv_gas_collector.title": "Basic Gas Collector", - "quests.low_voltage.lv_gas_collector.subtitle": "It'll take your breath away", - "quests.low_voltage.lv_gas_collector.desc": "The Gas Collector collects Air that can then be centrifuged into &aOxygen&r and &aNitrogen&r.\n\n&l&3Lore:&r&o GregTech 5 players remember when they had to use a Compressor with IC2 cells to get Compressed Air... here, cell chemistry is no more.", - "quests.low_voltage.lv_oxygen.title": "Breath of Fresh Oxygen", - "quests.low_voltage.lv_oxygen.subtitle": "Achtually, it's Dioxygen...", - "quests.low_voltage.lv_oxygen.desc.1": "You could waste &o&eprecious years of your life&r in JEI looking for the most optimal Oxygen recipe, given the many ways to obtain it. Various minerals will produce it when electrolyzed.\n\nIf only the quest book had more information!", - "quests.low_voltage.lv_oxygen.desc.2": "Surprise! The best source according to us (!) is &acentrifuging Air&r after making a &dGas Collector&r, which you might not be able to make just yet. This recipe also gives &aNitrogen&r, which is handy as it can speed up certain &3Electric Blast Furnace&r recipes&r.\n\nThe second best source according to us (!) is &aelectrolyzing Silicon Dioxide&r. Silicon Dioxide is obtained from various sources, such as Glass Dust and various Stone Dusts. We will come back to &6this method later&r because this one is actually &6god&r.", - "quests.low_voltage.lv_oxygen.desc.3": "The third best source according to us (!) is &aelectrolyzing Water&r. In reality, electrolysis of water is more suitable for &aHydrogen production&r due to the higher energy cost. &4Don't use this method as your main source of Oxygen&r, only for &1Hydrogen&r, once again we will help you later on to make Hydrogen.\n\nThe fourth best source according to us (!) is &ato not void&r it, EVER! Any Oxygen obtained from any source is worth something and should be stored in Tanks.\n\n&eNote:&r Submit a fluid by having it stored in &lany&r tank in your inventory. A bucket will also work.", + "quests.low_voltage.lv_gas_collector.title": "εŸΊζœ¬εž‹γ‚¬γ‚ΉεŽι›†ζ©Ÿ", + "quests.low_voltage.lv_gas_collector.subtitle": "η©Ίζ°—γε…₯手手ζ΅", + "quests.low_voltage.lv_gas_collector.desc": "γ‚¬γ‚ΉεŽι›†ζ©Ÿγ―ε€§ζ°—δΈ­γ‹γ‚‰η©Ίζ°—γ‚’ι›†γ‚γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γγ‚Œγ‚’ι εΏƒεˆ†ι›’γ™γ‚Œγ°γ€&aι…Έη΄ &rと&aηͺ’η΄ &rγ«εˆ†γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&l&3δ½™θ«‡οΌš&r&oGT5時代をηŸ₯っているプレむダーγͺら、IC2γγ‚»γƒ«γ‚’δ½Ώγ£γ¦γ‚³γƒ³γƒ—γƒ¬γƒƒγ‚΅γƒΌγ§εœ§ηΈη©Ίζ°—γ‚’δ½œγ£γ¦γ„γŸγ‚γζ‰‹ι–“γ‚’θ¦šγˆγ¦γ‚‹γ§γ—γ‚‡οΌŸγ§γ‚‚δ»Šγ―γ€γγ†γ„γ†γ‚»γƒ«εŒ–ε­¦γδ»•η΅„γΏγ―ε»ƒζ­’γ•γ‚Œγ¦γ‚‹γ‚ˆγ€‚", + "quests.low_voltage.lv_oxygen.title": "ι…Έη΄ γε…₯ζ‰‹η΅Œθ·―", + "quests.low_voltage.lv_oxygen.subtitle": "ι…Έη΄ γŒθΆ³γ‚Šγ¦γͺい方へ", + "quests.low_voltage.lv_oxygen.desc.1": "ι…Έη΄ γε…₯ζ‰‹η΅Œθ·―γ―ιžεΈΈγ«ε€šε²γ«γ‚γŸγ‚Šγ€εŠΉηŽ‡γθ‰―γ„γƒ¬γ‚·γƒ”γ‚’ζŽ’γγ†γ¨EMIγ‚’ε»Άγ€…γ¨ηœΊγ‚γ¦γ„γ‚‹γ†γ‘γ«γ€&o&eε€©ε―Ώγ‚’ε…¨γ†γ—γ¦γ—γΎγ†γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚&rεŸιš›γ€γ•まざまγͺι‰±ηŸ³γ‹γ‚‰ι›»θ§£γ«γ‚ˆγ£γ¦ι…Έη΄ γ‚’εΎ—γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ‚―γ‚¨γ‚Ήγƒˆγƒ–γƒƒγ‚―γ«γͺγ«γ‹ζƒ…ε ±γŒθΌ‰γ£γ¦γ„γ‚Œγ°γ„γ„γ‚“γ§γ™γ‘γ©γ­γˆ...", + "quests.low_voltage.lv_oxygen.desc.2": "γ¨γ„γ†γ‚γ‘γ§γ€η”¨ζ„γ—γ¦γŠγ„γŸγγŒγ“けらにγͺγ‚ŠγΎγ™γ€‚\n\nη§γŸγ‘γŒζœ€γ‚‚γŠγ™γ™γ‚γ™γ‚‹ζ–Ήζ³•γ―γ€&dγ‚¬γ‚ΉεŽι›†ζ©Ÿ&rγ§ι›†γ‚γŸ&aη©Ίζ°—γ‚’ι εΏƒεˆ†ι›’&rすることです。\nこγζ–Ήζ³•γ§γ―εŒζ™‚γ«&aηͺ’η΄ &rγ‚‚εΎ—γ‚‰γ‚Œγ‚‹γŸγ‚γ€&3EBF&rでγγ„く぀かγγƒ¬γ‚·γƒ”γι«˜ι€ŸεŒ–γ«δ½ΏγˆγΎγ™γ€‚γŸγ γ—γ€γΎγ γ‚¬γ‚ΉεŽι›†ζ©Ÿγ‚’δ½œγ‚Œγͺγ„ε ΄εˆγ‚‚γ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚\n\nζ¬‘γ«εŠΉηŽ‡γŒθ‰―γ„ζ–Ήζ³•γ―&aδΊŒι…ΈεŒ–γ‚±γ‚€η΄ γ‚’ι›»θ§£&rγ™γ‚‹γ“γ¨γ§γ™γ€‚δΊŒι…ΈεŒ–γ‚±γ‚€η΄ γ―γ€γ‚¬γƒ©γ‚Ήη²‰ζœ«γ‚„ζ§˜γ€…γͺ石γη²‰ζœ«γ‹γ‚‰ε…₯手できます。\nこγζ–Ήζ³•に぀いては後ほど&6詳しく紹介&rします。&6η₯ž&rといってもε·γ—ζ”―えγͺγ„γ»γ©η΄ ζ™΄γ‚‰γ—γ„ζ–Ήζ³•γ§γ™γ‚ˆοΌ", + "quests.low_voltage.lv_oxygen.desc.3": "3η•ͺη›γ«θ‰―い方法は&aζ°΄γ‚’ι›»θ§£&rすることです。水γι›»θ§£γ―ι›»εŠ›γ‚³γ‚ΉγƒˆγŒι«˜γ„γŸγ‚γ€&aζ°΄η΄ γη”Ÿζˆ&rに適しています。\n&4こγζ–Ήζ³•は酸素γδΈ»θ¦γͺ供硦源にはγͺγ‚ŠγΎγ›γ‚“&r、あくまで&1ζ°΄η΄ &rγη’ΊδΏγŒγƒ‘むンです。水素γδ½œγ‚Šζ–Ήγ«γ€γ„γ¦γ―εΎŒγ»γ©θ©³γ—γθͺ¬ζ˜Žγ—ます。\n\n4η•ͺη›γ«θ‰―い方法は&aγ‚³γƒ„γ‚³γƒ„θ²―γ‚γ¦γŠγ&rγ“γ¨γ§γ™οΌι…Έη΄ γ―ζ§˜γ€…γͺγ‚―γƒ©γƒ•γƒˆγ§ε‰―η”£η‰©γ¨γ—γ¦γ§γ¦γγ‚‹γγ§γ€γ‚Ώγƒ³γ‚―に保η‘γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\n&e補袳:&rγ‚―γ‚¨γ‚Ήγƒˆγ‚’γ‚―γƒͺをするには、こγζΆ²δ½“γŒε…₯った&l任意γ&rγ‚Ώγƒ³γ‚―γ‚’γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺにε…₯γ‚ŒγΎγ™γ€‚γƒγ‚±γƒ„γ§γ‚‚ζ§‹γ„γΎγ›γ‚“γ€‚", "quests.low_voltage.lv_oxygen.task": "Oxygen", - "quests.low_voltage.lv_nitrogen.title": "Nitrogen Gas", - "quests.low_voltage.lv_nitrogen.subtitle": "Your EBF booster", - "quests.low_voltage.lv_nitrogen.desc": "For now, your only use for Nitrogen will be to make your EBF &6faster&r, which may not sound like that big of a deal, but with how much you'll be using it, it's definitely worth setting up. Faster recipes mean less energy used too!", + "quests.low_voltage.lv_nitrogen.title": "ηͺ’η΄ ", + "quests.low_voltage.lv_nitrogen.subtitle": "EBFγƒ–γƒΌγ‚Ήγ‚ΏγƒΌ", + "quests.low_voltage.lv_nitrogen.desc": "現時点では、ηͺ’η΄ γδ½Ώγ„道はEBFγε‹•δ½œγ‚’&6ι«˜ι€ŸεŒ–&rγ™γ‚‹γ“γ¨γ γ‘γ§γ™γ€‚γ‚γΎγ‚Šι‡θ¦γ«ζ€γˆγͺγ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€δ»ŠεΎŒEBFγ―ι…·δ½Ώγ™γ‚‹γŸγ‚γ€γ‚γ£γ¦ζγ―γ—γΎγ›γ‚“γ€‚ε‡¦η†γŒι€Ÿγγͺγ‚Œγ°γ€γγεˆ†γ‚¨γƒγƒ«γ‚γƒΌζΆˆθ²»γ‚‚ζΈ›γ‚‹γ¨γ„γ†γƒ‘γƒͺγƒƒγƒˆγ‚‚γ‚γ‚ŠγΎγ™οΌ", "quests.low_voltage.lv_nitrogen.task": "Nitrogen", - "quests.low_voltage.lv_arc_furnace.title": "The Arc Furnace", - "quests.low_voltage.lv_arc_furnace.subtitle": "The Arc Furnace has never been so good", - "quests.low_voltage.lv_arc_furnace.desc.1": "The &3Arc Furnace&r uses a lil' bit of &9Oxygen&r to smelt items in a different fashion than Furnaces.\n\nYou can use it to make easier &aWrought Iron&r, double your &aGlass&r, and gain access to &aAnnealed Copper&r for cheaper electronic components. It's also your new best way to make &4Red Steel&r and &1Blue Steel&r Ingots!\n\nIt can also recycle various components and machines back to their original materials.", - "quests.low_voltage.lv_arc_furnace.desc.2": "&l&3Lore:&r&o Previous GregTech versions had both the Arc Furnace and the &bPlasma Arc Furnace&f. In that case, why not use one machine for both? Well, that's exactly what we thought - but we ultimately decided to remove one of the two &bplasma&f recipes. And then the other &bplasma&f recipe.\n\n&oIn short, the &bPlasma Arc Furnace&f is &4gone&f. RIP.", - "quests.low_voltage.lv_extractor.title": "Basic Liquid Extraction", - "quests.low_voltage.lv_extractor.subtitle": "The Extractor extracts...", - "quests.low_voltage.lv_extractor.desc.1": "Hm... didn't we make this joke already?\n\nThe reason we don't present &7LV&r versions of &6Steam&r machines is because they are &4NOT&r required. You might not want to invest into an upgrade that does next to nothing. Except for &othis one&r specifically, because it's a big improvement over the &6Steam Age&r.\n\nThe &3Basic Extractor&r gains Fluid capabilities, which enables &aFluid Extraction&r. Use it to melt Rubber that you previously solidified, to &dmelt Soldering Alloy&r for your circuits, and to &dmelt Red Alloy&r for the &6best Vacuum Tube recipe&r in the &3Assembler&r!", - "quests.low_voltage.lv_extractor.desc.2": "&l&3Lore:&r&o Did you notice this machine doubles as both an Extractor and a Fluid Extractor? The two of them were separate machines in previous versions of GregTech.", - "quests.low_voltage.lv_chemical_reactor.title": "Basic Chemical Reactor", - "quests.low_voltage.lv_chemical_reactor.subtitle": "Chemistry for dummies", + "quests.low_voltage.lv_arc_furnace.title": "をーク炉", + "quests.low_voltage.lv_arc_furnace.subtitle": "ζη«œγ‚’ι£Όγ„γͺらそう!", + "quests.low_voltage.lv_arc_furnace.desc.1": "&3をーク炉&rは、少量γ&9ι…Έη΄ &rγ‚’δ½Ώη”¨γ—γ¦γ€ι€šεΈΈγγ‹γΎγ©γ¨γ―η•°γͺγ‚‹ζ–Ήζ³•γ§γ‚’γ‚€γƒ†γƒ γ‚’η²ΎιŒ¬γ—γΎγ™γ€‚\n\nγ“γ‚Œγ‚’δ½Ώγ†γ“γ¨γ§γ€γ‚ˆγ‚Šη°‘ε˜γ«&aιŒ¬ι‰„&rγ‚’δ½œγ‚ŒγŸγ‚Šγ€&aガラス&rγ‚’2ε€ε€šγδ½œγ‚ŒγŸγ‚Šγ€ι›»ε­ιƒ¨ε“γε€§ι‡η’ΊδΏγγŸγ‚γ&aγͺγΎγ—ιŠ…&rγ‚’η²ΎιŒ¬γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγΎγŸγ€γ•γΎγ–γΎγͺιƒ¨ε“γ‚„ζ©Ÿζ’°γ‚’ε…ƒγη΄ ζγΈεˆ†θ§£γ—γ¦ε†εˆ©η”¨γ™γ‚‹γ“γ¨γ‚‚ε―能です。", + "quests.low_voltage.lv_arc_furnace.desc.2": "&l&3δ½™θ«‡οΌš&r&oδ»₯前γGregTechには、をーク炉と&bγƒ—γƒ©γ‚Ίγƒžγ‚’γƒΌγ‚―η‚‰&fγ2η¨ι‘žγŒγ‚γ£γŸγ‚“γ γ€‚γ§γ‚‚γ€Œγ“γ‚Œγ―一぀γζ©Ÿζ’°γ«γΎγ¨γ‚γ¦γ‚ˆγγ­οΌŸγ€γ£γ¦ζ€γ£γŸγ‚‰γ—くて...\n\n&oそうして、&bγƒ—γƒ©γ‚Ίγƒžγ‚’γƒΌγ‚―η‚‰&fは&4お云くγͺγ‚Šγ«γͺγ‚ŠγΎγ—γŸ&f。ごε†₯η¦γ‚’γŠη₯ˆγ‚Šγ—ます。", + "quests.low_voltage.lv_extractor.title": "εŸΊζœ¬εž‹ζŠ½ε‡Ίζ©Ÿ", + "quests.low_voltage.lv_extractor.subtitle": "ζŠ½ε‡ΊοΌŸθžθ§£γ§γ―οΌŸ", + "quests.low_voltage.lv_extractor.desc.1": "\n\n&6蒸気時代&rγ§η΄Ήδ»‹γ—γŸζ©Ÿζ’°γ&7LV&rη‰ˆγγ‚―γ‚¨γ‚Ήγƒˆγ―γ»γ¨γ‚“γ©η”¨ζ„γ—γ¦γ„γΎγ›γ‚“γ€‚γͺぜγͺγ‚‰ε˜γ«εΏ…θ¦γŒγͺγ„γ‹γ‚‰γ§γ™γ€‚γ»γ¨γ‚“γ©ζ€§θƒ½γŒε€‰γ‚γ‚‰γͺγ„γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ«θ³‡ζΊγ‚’δ½Ώγ„γŸγγ―γͺいでしょう。\nγŸγ γ—γ€γ“γζ©Ÿζ’°γ γ‘はεˆ₯γ§γ™γ€‚γ“γ‚Œγ―&6蒸気時代&rγ‹γ‚‰ε€§γγι€²εŒ–γ—γ¦γ„γ‚‹γγ§γ€ζ–°γ—γδ½œγ‚‹δΎ‘ε€€γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&3εŸΊζœ¬εž‹ζŠ½ε‡Ίζ©Ÿ&rは&aζΆ²δ½“ζŠ½ε‡Ί&rγŒγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚δΎ‹γˆγ°γ€γ‚΄γƒ γ‚’ζΊΆγ‹γ—γŸγ‚Šγ€ε›žθ·―η΄ ζγ&dγ―γ‚“γ εˆι‡‘&rγ‚’ζΊΆγ‹γ—γŸγ‚Šγ€&3η΅„η«‹ζ©Ÿ&rでγ&6ζœ€ι«˜γηœŸη©Ίη‘レシピ&rγγŸγ‚γ«&dθ΅€εˆι‡‘&rを溢かすことγͺγ©γ«εˆ©η”¨γ§γγΎγ™οΌ", + "quests.low_voltage.lv_extractor.desc.2": "&l&3δ½™θ«‡οΌš&r&oこγζ©Ÿζ’°γ€εŸγ―ζŠ½ε‡Ίζ©Ÿγ¨ζ΅δ½“ζŠ½ε‡Ίζ©ŸγδΈ‘方を兼ねているんだ。というγγ‚‚δ»₯前γGregTechγ§γ―γ€γγ‚Œγžγ‚ŒγŒεˆ₯γζ©Ÿζ’°γ¨γ—γ¦ε­˜εœ¨γ—γ¦γŸγ‚“γ γ‚ˆγ­γ€‚", + "quests.low_voltage.lv_chemical_reactor.title": "εŸΊζœ¬εž‹εŒ–ε­¦εεΏœε™¨", + "quests.low_voltage.lv_chemical_reactor.subtitle": "εŒ–ε­¦εŸΊη€Ž", "quests.low_voltage.lv_chemical_reactor.task": "Liquid Rubber", - "quests.low_voltage.lv_chemical_reactor.desc.1": "The &3Chemical Reactor&r will be required for &la lot&r of recipes.\n\nLet's give it a spin - why don't we use your freshly made Chemical Reactor to unlock a new, &6better recipe for Rubber&r? Rubber is &dunusable&r as a Fluid, so you will need to make another machine to process it further.", - "quests.low_voltage.lv_chemical_reactor.desc.2": "You can't make Rubber using the Chemical Reactor alone, so here are some &aother machines&r you might want to aim for: \n\nA &3Solidifier&r is useful to solidify your Rubber directly into &aRubber Sheets&r. You'll want these moving forward.\n\nYou could then make use of an &3Assembler&r to use your molten Rubber for &aCables&r. This isn't important for Tin Cables, but better cables will &eneed&r to be made in the Assembler.\n\n&eNote:&r Submit a fluid by having it stored in &lany&r tank in your inventory. A Drum is the perfect candidate.", - "quests.low_voltage.lv_fluid_solidifier.title": "Basic Fluid Solidifier", - "quests.low_voltage.lv_fluid_solidifier.subtitle": "The Fluid Solidifier solidifies...", - "quests.low_voltage.lv_fluid_solidifier.desc": "Build this machine next to your &3Chemical Reactor&r to automatically solidify Rubber into &aRubber Sheets&r.\n\nYou can make your Chemical Reactor auto-output if you &dwrench&r the side of your &3Chemical Reactor&r and enable Fluid &9auto-output&r.\n\nThere will be more Fluids to solidify, so you may re-purpose your &3Fluid Solidifier&r when not crafting Rubber - or make a second one!", - "quests.low_voltage.mold_rotor.title": "Combo!", - "quests.low_voltage.mold_rotor.subtitle": "Time to end the misery of hand crafting rotors!", - "quests.low_voltage.mold_rotor.desc": "Use both of your new machines to turn a material into a Fluid, and solidify it back to a Rotor! This combination makes Rotors far easier to craft - &6four Ingots per Rotor&r, as well.\n\nYou can also do the same for &6Gears&r and &6Small Gears&r, which will then be superseded when you make a &3MV Extruder&r.\n\n&9Note:&r Some metals require higher voltages than &7LV&r for Fluid Extraction, so make sure to keep an eye on the recipe tier in EMI.", - "quests.low_voltage.mold_plate.title": "Casting Mold and Rubber Sheets", - "quests.low_voltage.mold_plate.subtitle": "Even cheaper rubber", - "quests.low_voltage.mold_plate.desc": "Stop wasting your time with your &6Alloy Smelter&r. You're gonna need a lot of &6Rubber Sheets&r, and later on you will also use it for other kinds of plastics.\n\nYou may think you can use the Extruder to make rubber sheets instead, but the &6Fluid Solidifier&r can do so much more, while the Extruder is pretty useless until &bMV&r.", - "quests.low_voltage.cupronickel_ingot.title": "Cupronickel Ingots", - "quests.low_voltage.cupronickel_ingot.subtitle": "It's an alloy", - "quests.low_voltage.cupronickel_ingot.desc": "&7A big part of progression in GregTech revolves around gaining access to new materials\nthat you'll use to upgrade your machines or unlock advanced components.&r\n\nThe first alloy you'll encounter is &bCupronickel&r β€” the beginning of a long journey.\nThis material is used to upgrade your &6Electric Blast Furnace&r, an essential step in your industrial growth.\n\nLuckily, this first step is fairly simple: a basic &7LV Alloy Smelter&r will get the job done.\nSo even if the recipe asks for &b128 Cupronickel&r, don't worry β€” it's easier than it looks!&r\n\nLater on, their counterparts will become much more complex, so enjoy the simplicity while it lasts!", - "quests.low_voltage.cupronickel_coil.title": "Cupronickel Coils", - "quests.low_voltage.cupronickel_coil.subtitle": "Baby's first heating coil", - "quests.low_voltage.cupronickel_coil.desc": "Prepare &a128 Cupronickel&r, &a32 Bronze&r and &a16 Tin Alloy&r to craft the Heating Coils required for your first Electric Blast Furnace.\n\nThis is still less than half (!) of the cost of the whole EBF in raw materials. You will also need about a stack each of Invar and Steel, so get mining.\n\nThe Cupronickel Coils will allow the EBF to perform recipes up to &d1,800K&r (ignoring Voltage bonuses). That's pretty hot if you ask us.\n\n&6Tutorial on Coils in the &lGregTech Energy&r&6 tab - check it out to learn more!&r", - "quests.low_voltage.lv_ebf.title": "The Electric Blast Furnace", - "quests.low_voltage.lv_ebf.subtitle": "One of the core machines of GregTech. We like it big.", - "quests.low_voltage.lv_ebf.desc.1": "This quest explains the core mechanic of the &3Electric Blast Furnace&r, while the quest just over this one will explain the mechanics of the Multiblock Parts that you'll also need. Be sure to check this quest out.\n\nAnyway, the &3EBF&r is your &efirst electric multiblock&r! Congrats. It's used to process materials at high temperatures.\n\nYou'll become familiar with the EBF to make &aAluminium&r and progress to &d&bMV Age&r. It can also make &7Steel&r faster than the the &6Blast Furnace&r, which means you can finally tear down your old TFC smithy if you'd like.", - "quests.low_voltage.lv_ebf.desc.2": "It's important to keep in mind that the EBF is a beefy boy. The minimum power cost to run a recipe is &9120 EU/t&r! That's slightly under 4 &7LV&r Generators or Alternators.\n\nYou may wish to consider building a separate power line, with separate Generators close to the EBF and Battery Buffer to run this. Be wary of the cable loss.", - "quests.low_voltage.multiblock_tech.title": "Multiblock Techniques", - "quests.low_voltage.multiblock_tech.subtitle": "Oh we love multiblocks right?", - "quests.low_voltage.multiblock_tech.desc": "This is the &6basics&r of what you need to build your first &bEBF&r, though it is highly customisable. Remember to use &6EMI&r, use &6U&r on the controller and don't hesitate to &6left click on the structure blocks&r to see what the possibilities are.\n\nAn important notice, each Energy Hatch can accept &a2A&r, which means that at &7LV&r they can each handle &a64 EU/t&r. With two of them, your &eEBF&r can run at &a128 EU/t&r.\n\nFor more details about this mechanic, refer to the &eGregTech Energy Chapter&r, specifically the &eSpending Energy&r section.\n\nMultiblocks bear a large variety of interesting mechanics that might seem daunting, but don't worry - you don't need to do anything fancy right yet. You'll learn more as you go!", + "quests.low_voltage.lv_chemical_reactor.desc.1": "&3εŒ–ε­¦εεΏœε™¨&rは、&lιžεΈΈγ«ε€šη”¨ι€”γ§γ™γ€‚&r\n\nγ•γ£γγθ©¦γ—γ¦γΏγΎγ—γ‚‡γ†γ€‚γΎγšγ―&6ζ”Ήε–„γ•γ‚ŒγŸγ‚΄γƒ γγƒ¬γ‚·γƒ”&rを試してみますか。\n現時点だと、ゴムは梲体γηŠΆζ…‹γ§γ―γ‚γΎγ‚Š&dδ½Ώγ„ι“γŒγͺい&rγŸγ‚γ€γ‚‚γ†δΈ€ζ΅ιšŽγεŠ ε·₯γŒεΏ…θ¦γ§γ™γ€‚", + "quests.low_voltage.lv_chemical_reactor.desc.2": "&3εŒ–ε­¦εεΏœε™¨&rγ γ‘γ§γ―γ‚΄γƒ γ―δ½œγ‚ŒγΎγ›γ‚“γ€‚γγ“γ§γ€ζ¬‘γγ‚ˆγ†γͺ&a機撰&rγ‚’δ½œγ‚‹γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚\n\n&3ζΆ²δ½“ζˆεž‹ζ©Ÿ&rγ‚’δ½Ώγˆγ°γ€ζΆ²εŒ–γ‚΄γƒ γ‚’η›΄ζŽ₯&aγ‚΄γƒ γ‚·γƒΌγƒˆ&rγ«ε›Ίγ‚γ‚‰γ‚ŒγΎγ™γ€‚γ“γ‚Œγ‹γ‚‰ε…ˆγ€ε€šγγγ‚―γƒ©γƒ•γƒˆγ§εΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\n欑に&3η΅„η«‹ζ©Ÿ&rγ‚’δ½Ώγ†γ¨γ€ζΆ²εŒ–γ‚΄γƒ γ‚’&aケーブル&rγθ’«θ¦†γ«δ½Ώη”¨γ§γγΎγ™γ€‚ιŒ«γ‚±γƒΌγƒ–γƒ«γ«γ―δΈθ¦γ§γ™γŒγ€γ‚ˆγ‚ŠδΈŠδ½γγ‚±γƒΌγƒ–ルは&eこγγƒ¬γ‚·γƒ”γ§δ½œγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™&r。\n\n&e補袳:&rγ‚―γ‚¨γ‚Ήγƒˆγ‚’γ‚―γƒͺをするには、こγζΆ²δ½“γŒε…₯った&l任意γ&rγ‚Ώγƒ³γ‚―γ‚’γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺにε…₯γ‚ŒγΎγ™γ€‚γƒγ‚±γƒ„γ§γ‚‚ζ§‹γ„γΎγ›γ‚“γ€‚", + "quests.low_voltage.lv_fluid_solidifier.title": "εŸΊζœ¬εž‹ζΆ²δ½“ζˆεž‹ζ©Ÿ", + "quests.low_voltage.lv_fluid_solidifier.subtitle": "ε†Άι‡‘δ»£θ‘Œζ©Ÿ", + "quests.low_voltage.lv_fluid_solidifier.desc": "こγζ©Ÿζ’°γ‚’&3εŒ–ε­¦εεΏœε™¨&rγιš£γ«θ¨­η½γ™γ‚Œγ°γ€γ‚΄γƒ γ‚’θ‡ͺε‹•ηš„γ«&aγ‚΄γƒ γ‚·γƒΌγƒˆ&rγ«ε›Ίγ‚γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&3εŒ–ε­¦εεΏœε™¨&rγε΄ι’γ‚’&dレンチ&rで右クγƒͺックして、梲体γ&9θ‡ͺε‹•ε‡ΊεŠ›&rγ‚’γ‚ͺγƒ³γ«γ™γ‚Œγ°γ€ζΆ²δ½“ι‹ζ¬γ‚’θ‡ͺε‹•εŒ–γ§γγΎγ™γ€‚\n\nγ‚΄γƒ δ»₯ε€–γ«γ‚‚ζˆεž‹γŒεΏ…θ¦γͺζΆ²δ½“γ―δ»ŠεΎŒε’—γˆγ‚‹γγ§γ€&3ζΆ²δ½“ζˆεž‹ζ©Ÿ&rγ―γ‚΄γƒ γ‚’δ½œγ‚‰γͺいときにはεˆ₯γη΄ ζγ«δ½Ώγ„ε›žγ™γ‹γ€γ‚‚γ†1ε°η”¨ζ„γ—γ¦γŠγγγ‚‚γŠγ™γ™γ‚γ§γ™γ€‚", + "quests.low_voltage.mold_rotor.title": "コンビネーション", + "quests.low_voltage.mold_rotor.subtitle": "γƒ­γƒΌγ‚ΏγƒΌγ€ζ­―θ»ŠγŒγ€γ„γ«η°‘ε˜γ«οΌ", + "quests.low_voltage.mold_rotor.desc": "ζ–°γ—γδ½œγ£γŸ2台γζ©Ÿζ’°γ‚’η΅„γΏεˆγ‚γ›γ¦γ€η΄ ζγ‚’ζΆ²δ½“γ«γ—γ¦γ‹γ‚‰γƒ­γƒΌγ‚ΏγƒΌγεž‹γ§ζˆεž‹γ™γ‚‹γ“γ¨γ§γ€η°‘ε˜γ«γƒ­γƒΌγ‚ΏγƒΌγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™οΌ\nこγζ–Ήζ³•γͺらζ₯½γͺδΈŠγ«γ€&6γ‚€γƒ³γ‚΄γƒƒγƒˆ4ε€‹εˆ†γι‡‘ε±ž&rγ γ‘γ§γƒ­γƒΌγ‚ΏγƒΌγŒδ½œγ‚ŒγΎγ™γ€‚\n\nεŒγ˜γ‚„γ‚Šζ–Ήγ§&6歯車&rγ‚„&6小さγͺ歯車&rγ‚‚δ½œγ‚ŒγΎγ™γŒγ€&3MVζŠΌε‡Ίζ©Ÿ&rγ‚’δ½œγ‚‹γ¨γ€γγ‘γ‚‰γζ–Ήζ³•にη½γζ›γˆγ‚‰γ‚Œγ‚‹γ‚ˆγ†γ«γ‚‚γͺγ‚ŠγΎγ™γ€‚\n\n&9注意:&r一部γι‡‘ε±žγ―ζΆ²δ½“ζŠ½ε‡Ίγιš›γ«&7LV&rγ‚ˆγ‚Šγ‚‚ι«˜γ„ι›»εœ§γŒεΏ…θ¦γ«γͺγ‚‹ε ΄εˆγŒγ‚γ‚‹γγ§γ€EMIでレシピγε―ΎεΏœι›»εœ§γ‚’η’Ίθͺγ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.low_voltage.mold_plate.title": "ι‡‘εž‹γ¨γ‚΄γƒ γ‚·γƒΌγƒˆ", + "quests.low_voltage.mold_plate.subtitle": "γ‚΄γƒ γε€§ι‡η”Ÿη”£γγŸγ‚γ«", + "quests.low_voltage.mold_plate.desc": "&6εˆι‡‘η²ΎιŒ¬η‚‰&rを使うγγ―γ‚‚γ†γŠγ—γΎγ„γ§γ™γ€‚γ“γ‚Œγ‹γ‚‰ε€§ι‡γ&6γ‚΄γƒ γ‚·γƒΌγƒˆ&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ—γ€ε°†ζ₯γγƒ—ラスチックγζˆεž‹γ«γ‚‚δ½ΏγˆγΎγ›γ‚“γ€‚\n\nζŠΌε‡Ίζ©Ÿγ§γ‚΄γƒ γ‚·γƒΌγƒˆγ‚’δ½œγ‚γ†γ¨ζ€γ†γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€&6ζΆ²δ½“ζˆεž‹ζ©Ÿ&rγ―γγ‚Œδ»₯ε€–γζ§˜γ€…γͺ加ε·₯γ«γ‚‚δ½Ώγˆγ€ζŠΌε‡Ίζ©Ÿγ―&bMV&rγ«ι”γ™γ‚‹γΎγ§γ―γ»γ¨γ‚“γ©δ½Ώγ„ι“γŒγ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.low_voltage.cupronickel_ingot.title": "γ‚­γƒ₯γƒ—γƒ­γƒ‹γƒƒγ‚±γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆ", + "quests.low_voltage.cupronickel_ingot.subtitle": "簑単γͺεˆι‡‘γ•", + "quests.low_voltage.cupronickel_ingot.desc": "GregTechγ‚’ι€²γ‚γ¦γ„γγ«γ―γ€ζ–°γ—γ„η΄ ζγ‚’γ©γ†γ«γ‹γ—γ¦η’ΊδΏγ—γ€γγ‚Œγ«γ‚ˆγ£γ¦ζ©Ÿζ’°γ‚’γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ—γŸγ‚Šγ€ι«˜εΊ¦γͺζ©Ÿζ’°ιƒ¨ε“γ‚’θ§£η¦γ—γ¦γ„γγ“γ¨γŒδΈ»θ¦γͺζ΅γ‚Œγ«γͺγ‚ŠγΎγ™γ€‚\n\n長い旅路γε§‹γΎγ‚Šγ«γ€&bγ‚­γƒ₯プロニッケル&rγ¨γ„γ†εˆι‡‘γ«ε‡ΊδΌšγ„γΎγ™γ€‚γ“γεˆι‡‘は&6ε·₯ζ₯­η”¨ι›»ζ°—炉&r(ι€šη§°οΌšEBF)γ‚’εˆγ‚γ¦ζ§‹η―‰γ™γ‚‹ζ™‚γγŸγ‚γ«δ½Ώγ†γ‚‚γγ§γ‚γ‚Šγ€η”£ζ₯­η™Ίε±•には欠かせません。\n\n幸い、キγƒ₯プロニッケルγδ½œζˆγ―&7εˆι‡‘η²ΎιŒ¬η‚‰&rγ§εεˆ†γ«ε―ΎεΏœγ§γγΎγ™γ€‚EBFγγŸγ‚γ«γ―&b128個&r必要にγͺγ‚ŠγΎγ™γŒγ€ζ€γ£γŸγ‚ˆγ‚Šη°‘ε˜γ«δ½œγ‚ŒγΎγ™οΌ&r\n\nεΎŒγ«θ¦ζ±‚γ•γ‚Œγ‚‹εˆι‡‘γ―γ©γ‚“γ©γ‚“θ€‡ι›‘γ«γͺγ£γ¦γ„γγΎγ™γ€‚δ»Šγγ†γ‘にこγγ‚·γƒ³γƒ—ルさをζ₯½γ—γ‚“γ§γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.low_voltage.cupronickel_coil.title": "γ‚­γƒ₯プロニッケルコむル", + "quests.low_voltage.cupronickel_coil.subtitle": "コむルγθ΅€γ‘ゃん", + "quests.low_voltage.cupronickel_coil.desc": "ζœ€εˆγEBF用γγ‚³γ‚€γƒ«γ‚’δ½œγ‚‹γŸγ‚γ«γ€&aγ‚­γƒ₯プロニッケルを128個&r、&aブロンズを32個&r、&aιŒ«εˆι‡‘γ‚’16個&r用意しましょう。\n\nγ“γ‚Œγ―EBFγγ‚³γ‚€γƒ«γιƒ¨εˆ†γθ¦ζ±‚η΄ ζγ«ιŽγŽγΎγ›γ‚“γ€‚γ•γ‚‰γ«γ‚€γƒ³γƒγƒΌγ¨γ‚ΉγƒγƒΌγƒ«γ‚’γγ‚Œγžγ‚Œ1γ‚Ήγ‚Ώγƒƒγ‚―γšγ€η”¨ζ„γ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹γγ§γ€ζŽ‘ζŽ˜γ‚‚ι€²γ‚γ¦γγ γ•γ„γ€‚\n\nγ‚­γƒ₯プロニッケルコむルを使うことで、EBFγ―ζœ€ε€§&d1,800K&rγγƒ¬γ‚·γƒ”γ‚’ε‡¦η†γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™(ι›»εœ§γƒœγƒΌγƒŠγ‚Ήγ―η„‘θ¦–)。γͺかγͺかをツいですね。\n\nγ€Œ&6GregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ &r&6」γη« γ«γ‚γ‚‹ζ©Ÿζ’°ι«˜η‚‰γ«ι–’するθͺ¬ζ˜Žγ‚‚η’Ίθͺγ—て、さらに詳しく学んでください!&r", + "quests.low_voltage.lv_ebf.title": "ε·₯ζ₯­η”¨ι›»ζ°—炉", + "quests.low_voltage.lv_ebf.subtitle": "GregTechγδΈ­εΏƒγ§γ€ζ„›γ‚’叫ぢ", + "quests.low_voltage.lv_ebf.desc.1": "こγγ‚―γ‚¨γ‚Ήγƒˆγ§γ―&3ε·₯ζ₯­η”¨ι›»ζ°—炉&r(ι€šη§°οΌšEBF)γεŸΊζœ¬ηš„γͺδ»•η΅„γΏγ‚’ε­¦γΉγΎγ™γ€‚δΈ€γ€δΈŠγγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ§‹ι€ γδ»•硄みを解θͺ¬γ™γ‚‹γγ§γ€γγ‘γ‚‰γ‚‚εΏ˜γ‚Œγšγ«γƒγ‚§γƒƒγ‚―γ—γΎγ—γ‚‡γ†γ€‚\n\nさて、&3EBF&rはあγͺたにとって&eεˆγ‚γ¦γι›»ε‹•ε€§εž‹ζ©Ÿζ’°&rγ§γ™οΌγŠγ‚γ§γ¨γ†γ”γ–γ„γΎγ™οΌ\nEBFγ―ι«˜ζΈ©γ§η΄ ζγ‚’εŠ ε·₯γ™γ‚‹γŸγ‚γ«δ½Ώγ„γΎγ™γ€‚\n\nEBFγ‚’δ½Ώγˆγ°γ€&aγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &rγ‚’δ½œγ£γ¦&d&bMV時代&rγΈι€²γ‚γΎγ™γ€‚γΎγŸγ€&7スチール&rγ‚’&6TFCγι«˜η‚‰&rγ‚ˆγ‚Šγ‚‚ι€Ÿγδ½œγ‚Œγ‚‹γγ§γ€ζ„›η€γŒγͺγ‘γ‚Œγ°γ€γ‚‚γ†ζ™‚δ»£ι…γ‚ŒγͺTFCγι›ε†Άε ΄γ‚’ε–γ‚Šε£Šγ—γ¦γ‚‚ε•ι‘Œγ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.low_voltage.lv_ebf.desc.2": "EBFはかγͺγ‚Šγι›»εŠ›γ‚’εΏ…θ¦γ¨γ™γ‚‹ζ©Ÿζ’°γ§γ™γ€‚η¨Όεƒγ«γ―ζœ€δ½Ž&9120EU/t&rγŒεΏ…θ¦γ§γ€γ“γ‚Œγ―&7LV&rη™Ίι›»ζ©Ÿη΄„4εŸΊεˆ†γ«η›Έε½“γ—γΎγ™γ€‚\n\nEBFと蓄電器γθΏ‘γγ«ζ–°γ—γη™Ίι›»ζ©Ÿγ‚’η”¨ζ„γ—γ¦γ€ε°‚η”¨γη™Ίι›»γƒ©γ‚€γƒ³γ‚’δ½œγ‚‹γ“γ¨γ‚’ζ€œθ¨Žγ—γΎγ—γ‚‡γ†γ€‚γ‚±γƒΌγƒ–γƒ«γ«γ‚ˆγ‚‹ι›»εŠ›ζε€±γ«γ―注意してください。", + "quests.low_voltage.lv_ebf.desc.3": "EBFγŒη‚Ήζ»…γ—γŸγ‚Šγ€εΏ…θ¦γͺ量γι›»εŠ›γ‚’ε—γ‘ε–γ‚Œγ¦γ„γͺγ‹γ£γŸγ‚Šγ—γΎγ›γ‚“γ‹οΌŸγγε ΄εˆγ€γŠγγ‚‰γ&eγ‚±γƒΌγƒ–γƒ«γ«γ‚ˆγ‚‹ι›»εŠ›ζε€±&rγŒη™Ίη”Ÿγ—γ¦γ„γΎγ™γ€‚θ©³γ—γγ―γ€ŒGregTechγι›»εŠ›γ‚·γ‚Ήγƒ†γƒ γ€γη« γ‚’θͺ­γ‚“で、こγδ»•η΅„γΏγ‚’η†θ§£γ—γ¦γŠγγ¨θ‰―いでしょう。\n\nη™Ίι›»ζ©Ÿγ―γ§γγ‚‹γ γ‘EBFγθΏ‘くに配η½γ—γ€ι©εˆ‡γͺγ‚±γƒΌγƒ–γƒ«γ‚’δ½Ώγ£γ¦γγ γ•γ„γ€‚δΈŠγη”»εƒγγ‚ˆγ†γ«ι…η½γ—γŸ2ε€ιŒ«γ‚±γƒΌγƒ–γƒ«γ‚’δ½Ώγ†γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚", + "quests.low_voltage.multiblock_tech.title": "γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ§‹ι€ γ«γ€γ„γ¦", + "quests.low_voltage.multiblock_tech.subtitle": "デカいことはいいことだ", + "quests.low_voltage.multiblock_tech.desc": "γ“γ‚Œγ―γ€εˆγ‚γ¦&bEBF&rγ‚’δ½œγ‚‹ζ–Ήγ«ε‘γ‘γŸγ€γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ&6基本&rγθͺ¬ζ˜Žγ§γ™γ€‚\n\nγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γγ‚«γ‚Ήγ‚Ώγƒžγ‚€γ‚ΊγεΉ…γ―εΊƒγ„γ§γ™γ€‚γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γζœ¬δ½“とγͺるブロック(γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌγ¨γ„γ„γΎγ™)に&6U&rγ‚­γƒΌγ‚’ζŠΌγ—&6EMI&rγγƒžγƒ«γƒγƒ–ロック情報を開き、構造ブロックを&6ε·¦γ‚―γƒͺック&rしてどγη¨ι‘žγγƒ–γƒ­γƒƒγ‚―γŒδ½Ώγˆγ‚‹γ‹γ‚’η’Ίθͺγ—てみましょう。\n\n重要γͺγƒγ‚€γƒ³γƒˆγ¨γ—γ¦γ€γ‚¨γƒγƒ«γ‚γƒΌγƒγƒƒγƒγ―γγ‚Œγžγ‚ŒοΌ‘γ€γ§&a2A&rγΎγ§ε―ΎεΏœγ§γγ€&7LV&rでは&a64EU/t&rγ‚’ε—γ‘ε–γ‚ŒγΎγ™γ€‚γ€γΎγ‚Šγ€2γ€γ‚γ‚Œγ°&eEBF&rは&a128EU/t&r(MV相当γι›»εœ§)で動かせます。\n\nθ©³γ—γ„δ»•η΅„γΏγ―γ€Œ&eGregTechι›»εŠ›γ‚·γ‚Ήγƒ†γƒ &r」章γγ€Œ&eι›»εŠ›ι‹η”¨γ«γ€γ„γ¦&r」γι …η›γ‚’参照してください。\n\nγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ«γ―γ•γΎγ–γΎγͺι’η™½γ„δ»•η΅„γΏγŒγ‚γ‚ŠγΎγ™γŒγ€ζœ€εˆγ―ι›£γ—γθ€ƒγˆγ‚‹εΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚ι€²γ‚γͺγŒγ‚‰ε°‘γ—γšγ€η†θ§£γ—γ¦γ„γγΎγ—γ‚‡γ†γ€‚", "quests.low_voltage.multiblock_tech.task.1": "Input Bus", "quests.low_voltage.multiblock_tech.task.2": "Output Bus", "quests.low_voltage.multiblock_tech.task.3": "Input Hatch", - "quests.low_voltage.lv_superconductor.title": "LV Superconductor", - "quests.low_voltage.lv_superconductor.subtitle": "No loss no bzzz", - "quests.low_voltage.lv_superconductor.desc.1": "&6Superconductors&r are special Wires available for each Voltage tier. They don't come with a Cable counterpart, but that isn't necessary, as they have absolutely &6zero cable loss&r.\n\nThey also won't damage you when you touch them. This makes them the best choice for wiring, if not a little expensive in comparison to the other wires.\n\nIf you weren't already enamoured, the 1x variant also covers 2 Amps. Isn't that nice?\n\nNow is a good time to replace your crappy &aTin Cables&r. Recycle them in the &3Extractor&r to recover both the Tin and Rubber used to craft them.", - "quests.low_voltage.lv_superconductor.desc.2": "&l&3Lore:&r&o No version of GregTech has had actual Superconductors for &7LV&f up until Gregicality and GTCEu, though some modpacks had lossless cables.", - "quests.low_voltage.aluminium_dust.title": "Aluminium Dust", - "quests.low_voltage.aluminium_dust.subtitle": "Time for an adventure", - "quests.low_voltage.aluminium_dust.desc": "There's many minerals that can be electrolyzed into aluminium, but most of them are off-limits until &bMV&r. Sapphire is one exception, otherwise several ore processing recipes can also yield aluminium dust as a byproduct. Look through JEI for your options, and consult the &2Field Guide&r on where to find each ore.\n\nOnce you have enough aluminium, we recommend making the electrolyzer as your first MV machine to unlock all the other options.\n\nNow all you need is an EBF! You should've started to work towards one already, otherwise you'd better get started!", - "quests.low_voltage.aluminium_ingot.title": "Your first Aluminium Ingot", - "quests.low_voltage.aluminium_ingot.subtitle": "We're basically in MV now, right?", - "quests.low_voltage.aluminium_ingot.desc": "Well... can you show us an &bMV&r Circuit as well?\n\n&aAluminium&r is the main ingredient for &bMV&r machinery. Get ready to need a lot of it.\n\nThe process of smelting Aluminium can be cut down by about a third with &9Nitrogen&r, which is obtained by centrifuging &9Air&r from a &3Gas Collector&r.\n\n&6You will still need MV Circuits in order to make MV machines!&r", - "quests.low_voltage.mv_hull.title": "Your third machine hull", - "quests.low_voltage.mv_hull.subtitle": "This is going quite well, only 7 to go!", - "quests.low_voltage.mv_hull.desc1": "Good job, you now have your &bMV Machine Hull&r, your first &bMV Circuit&r and your first &6Circuit Assembler&r.\n\nThis is the gist of &6GregTech&r, every tier you are going to make new &6machines&r using new &6materials&r and &6chemicals&r. You are going to have &5so much fun&r, we are kinda jealous!", - "quests.low_voltage.mv_hull.desc2": "Before going further into &bMV&r, remember that in &6TFG&r you can use &6Create&r to reinforce your infrastructure if you don't want to use too much of GregTech. Aluminium Shafts and Cogwheels have 4x the stress capacity of steel ones, so you should be able to run all your machines much faster with them!", - "quests.medium_voltage": "&bMV&r - Medium Voltage", - "quests.medium_voltage.subtitle": "Venture into petrochemistry and refine electronics", - "quests.medium_voltage.mv_machine_hull.title": "Welcome to MV!", - "quests.medium_voltage.mv_machine_hull.subtitle": "More technology, more problems", - "quests.medium_voltage.mv_machine_hull.desc.1": "Every time you enter a new tier, things can get a bit overwhelming. You’ll be faced with lots of &enew machines&r to build and &echemicals&r to produce.\n\nAs you’ve probably seen in the quests, you have &2three main objectives&r to complete before progressing into &6HV&r. Let's break them down one by one.", - "quests.medium_voltage.mv_machine_hull.desc.2": "First, you'll need to upgrade your &dEBF&r with two new &bMV Energy Hatches&r. This will allow it to overclock and run &6HV recipes&r. That upgrade is key for producing &estainless steel&r, the main material for &6HV&r, and also &eKanthal&r, which you’ll need to upgrade your &dEBF coils&r.", - "quests.medium_voltage.mv_machine_hull.desc.3": "Your second objectiveβ€”although you can tackle it first if you preferβ€”involves diving into chemistry. Your first plastic, &ePolyethylene&r, is essential for future progress. There are two possible paths you can follow, and the quests will help guide you:\n\n- &ePetrochem route&r: extract oil from the ground or oilsands. This path also unlocks &eDiesel&r production for fuel combustion.\n\n- &eBiochem route&r: use a &6Pyrolyse Oven&r and wood (a Create-powered tree farm works great). This method gives you more &eBenzene&r and opens the door to using a &eGas Generator&r.\n\nEach path has its pros and cons, but eventually, you’ll need both anyway.", - "quests.medium_voltage.mv_machine_hull.desc.4": "The final step here is unlocking the &6second HV Circuit&r. It only requires &atwo steps&r, making it faster than crafting the &6first HV Circuit&r, which needs &cthree steps&r.\n\nTo achieve this, you'll need to get your hands on a &dLaser Engraver&r, which allows you to produce your first &dWafers&r. With those, you can craft an &6HV Circuit&r that you'll use to build the &bMV Circuit Assembler&r.\n\nIt's not strictly necessary to do this nowβ€”you can continue using the first HV Circuit for progressionβ€”but &ait will make your life much easier&r if you take care of it now. Trust us.", - "quests.medium_voltage.mv_miner.title": "Automatic Mining", - "quests.medium_voltage.mv_miner.subtitle": "So are you bored of mining yourself?", - "quests.medium_voltage.mv_miner.desc.1": "This kind soul&r will mine ores for you when placed above a vein.\n\nVertical range is unlimited below the miner. Horizontal range is displayed in the tooltip.\n\nThe &bMV&r variant may not have the range to mine a full vein, but the &6HV&r variant does, so you may wish hold off for now. Get &eeither&r to complete this Quest.", - "quests.medium_voltage.mv_miner.desc.2": "You will need &9Power&r. &aCharged Batteries&r may work, but they tend to run out of power, which is a bit inconvenient.\n\nOur top suggestion is to use a filled &3Drum&r of some kind of fuel &7(if you're using Steam, no dice!)&r and a &3Generator&r.\n\nPlace the Drum above your Generator and right-click it with a &5Soft Mallet&r to auto-output into the Generator.", - "quests.medium_voltage.mv_miner.desc.3": "&cNote:&r Do not forget to &dchunkload&r all 9 chunks of the ore vein &7(open the map, claim the chunks with ctrl left-click, and enable force loading after claiming them)&r.\n\n&9Tip:&r You can either use an &3ME Chest&r or a &3GT Create&r as the output inventory to make transporting the ores back home a simple task. The &3ME Chest&r can be powered with EU directly but that won't be before some time.", - "quests.medium_voltage.mv_miner.task": "Any miner", - "quests.medium_voltage.mv_component.title": "The MV Components", - "quests.medium_voltage.mv_component_.subtitle": "Hated crafting these in previous tier?", - "quests.medium_voltage.mv_component.desc": "Here's a list of the components you will need in &bMV&r. To alleviate the pain, be sure to autocraft or &dbulk-craft&r these parts, especially &aMotors&r.\n\nFamiliar with the &aEmitter&r? This tier's Emitter requires a &dFlawless Emerald&r in its recipe, which'll be only attainable with the &3Sifting Machine&r for now.\n\nConveyors, Pumps and Robot Arms are objective upgrades to &7LV&r versions if you use them as covers.", - "quests.medium_voltage.electrolyzer.title": "MV Electrolyzer", - "quests.medium_voltage.electrolyzer.subtitle": "We made it to MV, and, well...", - "quests.medium_voltage.electrolyzer.desc.1": "&bThis one should look familiar&rβ€”you’ve seen it before.\n&2We highly recommend crafting it as soon as possible,&r as it will unlock a wide range of new &7Aluminium&r sources.\n\nUntil now, your only method was &9electrolyzing Sapphire&r to obtain &7Aluminium Dust&r.\nBut with the &bMV&r Electrolyzer, a whole new world of resources opens up.", - "quests.medium_voltage.electrolyzer.desc.2": "&6Here are some key materials to look for:&r\n&9Ruby&r – Grants both &7Aluminium&r and &5Chromium&r.\n&9Pyrope&r – Often found alongside Sapphire veins.\n&9Lepidolite&r – Offers a generous selection of valuable byproducts.\n&9Sodalite&r – Comes with &3Chlorine&r and &bSilicon&r.\n&9Topaz&r – Yields both &3Fluorine&r and &7Aluminium&r in solid quantities.\n\n&2And that’s just the beginning!&r Use &aEMI&r to explore even more optionsβ€”we promise, there’s a lot to discover.\n\n&cOh, and by the way:&r Electrolyzing Clay is now gated behind &6HV&r. \n&8We’re not sorry.&r", - "quests.medium_voltage.mv_extruder.title": "Advanced Extruder", - "quests.medium_voltage.mv_extruder.subtitle": "The biggest upgrade you'll make", - "quests.medium_voltage.mv_extruder.desc": "We &lSINCERELY&r hope at &cno&r point you made the &7LV&r Extruder, because only the &bMV&r Extruder is actually useful. If you did, immediately &arecycle it&r through the Arc Furnace.\n\nThe Extruder shapes solid materials into (almost!) any form using &aIngots&r. This is a great way to reduce the amount of microcrafting, as well as keeping a high conversion ratio.\n\nThe Extruder can make &6Bolts&r, &6&6Small Gears&r, &6Gears&r, and &6&6Rings&r at the highest efficiency in a single step!\n\nYou may also like to use it for &dPipes&r, &dScrews&r, and &dRotors&r.", - "quests.medium_voltage.mv_chemical_reactor.title": "Advanced Chemical Reactor", - "quests.medium_voltage.mv_chemical_reactor.subtitle": "Stronger, better, faster", - "quests.medium_voltage.mv_chemical_reactor.desc": "You already know about the &dChemical Reactor&r from the &7LV Chapter&rβ€”but here’s a refresher.\n\nAt &bMV&r, you unlock &anew recipes&r and also gain the ability to &aoverclock your LV recipes&r. That means they can run &atwice as fast&r, but will consume &e4x the energy&r. It’s up to you to decide whether the trade-off is worth it.\n\nBut that’s not the only reason to build the &bMV Chemical Reactor&r. If you’re taking the &dorganic chemistry path&r, you’ll need it to run the &dEthylene&r recipe, which uses &dSulfuric Acid&r and &dEthanol&rβ€”this one requires &bMV power&r.\n\nIn any case, it’s a solid machine, and not too expensive. Go ahead and build it when you have a bit of spare time.", - "quests.medium_voltage.mv_mixer.title": "Advanced Mixer", - "quests.medium_voltage.mv_mixer.subtitle": "Mixing more complex alloys", - "quests.medium_voltage.mv_mixer.desc": "If you're wanting to dive into &bMV&r, start here.\n\nThe dusts created in an &3MV Mixer&r have great utility.", - "quests.medium_voltage.mv_energy.title": "Electricity Generation in MV", - "quests.medium_voltage.mv_energy.subtitle": "Things are 'boutta get rough", - "quests.medium_voltage.mv_energy.desc.1": "Hello there, and welcome to &bMV Energy Production&r.\n\nIn this quest, we’ll go over the different options available to keep your &bMV machines&r powered and running smoothly.\n\nWe won’t cover this in every chapter, so we highly recommend that you &aread the dedicated chapter on GregTech Energy&r for a deeper understanding of how everything works.\n\nFor now, here are your &athree main options&r:\n\n&8- &bUse an MV Generator&r to directly produce &bMV-level energy&r.\n\n&8- &bStep up your &7LV&r power by using transformers&r, with a &e4:1 ratio&r between &7LV&r and &bMV&r.\n\n&8- &bConvert RF&r using your &dAlternator&r to get &bMV energy&r directly.\n\n", - "quests.medium_voltage.mv_energy.desc.2": "Higher-tier Generators will increase their fuel consumption proportionally to their Generation rate, keeping the duration of fuels and the specific amount of energy from fuels the same. The &3Advanced Steam Turbine&r will use &d5,120 mB Steam&r per second, equivalent to &d256 mB/t&r.\n\nGet &eany&r of the generators to complete this quest, but you may prefer starting off with the &3Advanced Steam Turbine&r.", - "quests.medium_voltage.mv_energy.desc.3": "There are a few new power options available for &bMV&r. Selecting the Generators and pressing &4U&r will let you see which fuels count as &aCombustion&r or &aGas&r.\n\nQuests in the top left corner of this Chapter are for the valuable Power options.\n\nIf you stick to &9Steam&r for your Power generation, you'll probably need a &3Large Boiler&r.", - "quests.medium_voltage.mv_energy.desc.4": "&3Transformers&r allow you to step up and down safely between Voltage tiers. They convert the power they receive into an equivalent amount of power 1 voltage tier above or below the input voltage.\n\nApart from running machines on different voltage tiers, Transformers come in handy for transporting power across longer distances, as cable loss has less of an effect at higher voltages. Just like real life!", - "quests.medium_voltage.mv_energy.desc.5": "Transformers have 5 low voltage sides, and 1 high voltage side.\n\nThe &9normal&r Transformer can only do 1A <-> 4A conversion, but &9Adjustable&r Transformers can be changed between 1A <-> 4A, 2A <-> 8A, 4A <-> 16A, and 16A <-> 64A conversions.\n\nUse a &aSoft Hammer&r to change between transforming up and down, and a &aScrewdriver&r on Adjustable Transformers to change the amperage.\n\nHigher tier Transformers will require &9Coils&r.", - "quests.medium_voltage.mv_energy.desc.6": "Lastly, as you already know from the &7LV Chapter&r, you can use a &dConverter&r to, well... convert your &cRF&r directly into &bMV energy&r.", - "quests.medium_voltage.mv_battery.title": "MV Battery Buffer", - "quests.medium_voltage.mv_battery.subtitle": "Energy management", - "quests.medium_voltage.mv_battery.desc": "As always, we highly encourage you to use a &bBattery Buffer&r, so even if you use more &6energy&r than you produce, you won't run out of it right away, and you will be able to get the energy back while your machines aren't running.", - "quests.medium_voltage.mv_battery.task": "Any MV Battery Buffer", - "quests.medium_voltage.mv_batteries.title": "Better Batteries", - "quests.medium_voltage.mv_batteries.subtitle": "Baby Got Battery", - "quests.medium_voltage.mv_batteries.desc": "&bMV&r Batteries will appeal to you if you want to buffer Energy, just like &7LV&r.\n\nThe cost in &aSodium&r, &aLithium&r or &aCadmium&r jumps up to 8 dusts, so you should use whatever you have the most of. The difference in capacity isn't &7THAT&r huge, after all!\n\nGet &eeither&r Battery to complete the Quest.", - "quests.medium_voltage.mv_steel_alloy.title": "Steel Alloys", - "quests.medium_voltage.mv_steel_alloy.subtitle": "Steel Your Heart", - "quests.medium_voltage.mv_steel_alloy.desc": "Vanadiumsteel is required in small quantities in progression. It's &6nearly four times as durable&r as Steel if used in GregTech tools. The Vanadium comes from &aVanadium Magnetite&r, which you may have encountered in Magnetite veins.\n\nOther Steel alloys include Blue Steel, Red Steel, and Black Steel!\n\nTake some Blue Steel free of charge - it's twice as durable as Steel.", - "quests.medium_voltage.pyrolyse.title": "Pyrolyse Oven", - "quests.medium_voltage.pyrolyse.subtitle": "Thermal Decomposition", - "quests.medium_voltage.pyrolyse.desc.1": "The &3Pyrolyse Oven&r is an electric equivalent to the &3Coke Oven&r. It can produce &9Coal Coke&r and &9Charcoal&r with a &9Creosote&r byproduct just as before, but also has additional &6Organic Byproducts&r, the most beneficial of these being &aWood Tar&r.\n\nAnother product is &aBiomass&r, which is more pertinent for your progression as of this moment.", - "quests.medium_voltage.pyrolyse.desc.2": "The byproducts can be Distilled for an array of organic resources, with &odifferent&r byproducts giving &odifferent&r ratios of &odifferent&r chemicals.\n\nYou will need to take a peek at the &9Distillation&r Quest to get to grips with the power of distillation...", - "quests.medium_voltage.pyrolyse.desc.3": "There are recipes that can accept &bNitrogen&r to double the speed. This isn't quite worth pursuing right now, but Nitrogen will eventually be free and infinite.\n\nYou should be more than fine with a single &3LV Energy Hatch&r, and Superconductors to supply a steady &d64 EU/t&r. Additionally, &3Cupronickel Coils&r are perfect when you're getting used to the Pyrolyse Oven, but you may want to upgrade to &bKanthal&r eventually.", - "quests.medium_voltage.pyrolyse.desc.4": "&9&lNote:&r&l The Plant path is one path you can take towards &9&lEthylene&r&l, which is a necessary chemical in progressing to &6HV&r&l. The other path involves Oil.&r\n\nThe Pyrolyse Oven remains &doptional&r. However, it is very rewarding to construct one either for Power, or for the various Byproducts, and we highly recommend you give it a look.\n\n&l&3Lore:&r&o In GT5u, the structure for the Pyrolyse Oven was infamously a giant box with only 9 coils inside. Players usually spent several minutes debugging what is wrong due to a lack of a EMI preview.", - "quests.medium_voltage.mv_fluid_rig.title": "Fluid Drilling Rigs", - "quests.medium_voltage.mv_fluid_rig.subtitle": "Fluid Drilling Rigs in CEu!", - "quests.medium_voltage.mv_fluid_rig.desc.1": "It's quite the investment to own a &3Fluid Drilling Rig&r, but it is &oby far&r the most prominent &6source of Oil&r.\n\nIt pumps fluids from underneath Bedrock itself. Note that the fluids aren't actually there, instead being simulated.\n\nFluid veins are stored within &cchunk-sized regions&r. Each vein has a different fluid, but they are mostly types of Oil.\n\nYou can't carry out prospecting for fluid veins &oyet&r - this will come at &6HV&r.", - "quests.medium_voltage.mv_fluid_rig.desc.2": "Each vein generates with a different base yield. This is typically between &d150L&r to &d300L per second&r.\n\nWhen drained, fluid veins will slowly deplete. This will cause the fluid yield to decrease over time until it reaches its depletion yield. At that point, you should move the Rig to a different vein.\n\nA &3Basic Fluid Drilling Rig&r will last for 100,000 operations (with 1 second per operation) until depletion. This is enough for &6well over 10,000&r buckets of Oil. Higher tier Rigs will massively increase the yield, while also decreasing the depletion rate.", - "quests.medium_voltage.mv_fluid_rig.desc.3": "&lWhat you can find in the &2Overworld&r&l:&r\n\n&9Oil:&r richer in &aLight Fuel&r, the most appreciated variant.\n&9Light Oil:&r richer in &aRefinery Gas&r, usable for power.\n&9Heavy Oil:&r richer in &aHeavy Fuel&r, which has uses that are more niche but notably Toluene.\n&9Raw Oil:&r richer in &aNaphtha&r, the best source of the early-game oil products.\n&9Natural Gas:&r grants &aRefinery Gas&r with no distillation required.\n&9Sea Water:&r grants &aSodium&r and &aChlorine&r, useful later.", - "quests.medium_voltage.mv_fluid_rig.desc.4": "&lWhat you can find in the &cNether&r&l:&r\n\n&9Natural Gas:&r grants &aRefinery Gas&r but with higher yield than the Overworld vein.\n&9Lava:&r hopefully, you know what this is.\n\nWhen starting out, you may have to tap randomly until you find something you like. Remember that whatever you pump could also be used to refuel your Fluid Rig.", - "quests.medium_voltage.mv_oilsands.title": "America Simulator", - "quests.medium_voltage.mv_oilsands.subtitle": "This quest was sponsored by the US Military", - "quests.medium_voltage.mv_oilsands.desc": "Underground, you may come across pure Oilsands ore veins. You can &3centrifuge&r the Dust to get &aOil&r.\n\n&9&lNote:&r&l The Oil path is one path towards &9&lEthylene&r&l. The other paths involve getting natural with some Ethanol.&r\n\nFor now, Oil is &doptional&r. It becomes mandatory much later when you get to &5EV&r.\n\nOil can also be refined in the form of &aLight Fuel&r, &aDiesel&r or even &aGasoline&r, which are excellent power options.\n\nIf you chose this path, you should use it for both Power and Ethylene.\n\nOilsands are a &6great starting point&r - they'll tide you over until you unlock Fluid Drilling Rigs.", - "quests.medium_voltage.mv_lpg.title": "The Church of Natural Farts", - "quests.medium_voltage.mv_lpg.subtitle": "Whoever smelt it...", - "quests.medium_voltage.mv_lpg.desc.1": "&aRefinery Gas&r, &aLPG&r and &aMethane&r are &9Gas Fuels&r. LPG (Liquid Petroleum Gas) is a mix of hydrocarbons typically used in heating appliances.\n\nRefinery Gas is obtained either through &dNatural Gas&r or &dLight Oil&r, the latter yielding more, yet requiring an extra step of distillation.\n\nUse of a &3Centrifuge&r to separate into &aLPG&r and &aMethane&r should always be done, as it's practically free.", - "quests.medium_voltage.mv_lpg.desc.2": "&a&aLPG&r and &aMethane&r are burned in a &3Gas Turbine&r. Among the other fuel options, they are the easier to set up which makes them excellent to get started. Their drawback is that they cannot be refined further, so upgrading the &3Fluid Drilling Rig&r may be a top priority if you stick to this fuel source.\n\n&aMethane&r can also be obtained from a few &anatural sources&r. &eBetween us&r, they're memes, but you can explore them if you wish. Ultimately, your power source is your choice.", - "quests.medium_voltage.mv_brewery.title": "Local Brewery selling Booze", - "quests.medium_voltage.mv_brewery.subtitle": "*hic*... *hic*", - "quests.medium_voltage.mv_brewery.desc.1": "The Brewery can be used to make &aLubricant&r from &aRedstone&r and &aCreosote&r/&aOil&r. Lubricant has some niche uses, namely being used in the &3Cutter&r to significantly reduce the duration of its recipes.\n\nThe Brewery is a very, very slow machine, but it requires almost no power to run its recipes. Building &2many Breweries&r will help you obtain enough Biomass on your quest for plastic.\n\n&9Note:&r The Brewery unlocks the Biomass path towards &9Ethylene&r. The same can be done in the &3Pyrolyse Oven&r. The other path involves Oil.&r", - "quests.medium_voltage.mv_brewery.desc.2": "&l&3Lore:&r&o You could make your own Brewery if you want to build up a company and start selling Booze... in GregTech 6.&r", - "quests.medium_voltage.mv_biomass.title": "Biomass", - "quests.medium_voltage.mv_biomass.subtitle": "Plants aren't industrial enough!", - "quests.medium_voltage.mv_biomass.desc.1": "Welcome to the organic &dEthylene&r path! The goal here is to produce &dEthanol&r and mix it with &dSulfuric Acid&r to make &dEthylene&r.\n\nTo get &dEthanol&r, you'll need to distill it from &aBiomass&rβ€”so let's look at the different ways to produce that biomass.\n\nThe first method is simple: put &asaplings&r into a &dBrewery&r with water. The downside? &eIt's slow&r.", - "quests.medium_voltage.mv_biomass.desc.2": "The second method is more complex, but yields much better results. You’ll need to get &aBio Chaff&r, which comes from &amacerating Plant Balls&r. Note that you won't get any &aextra chance&r until you unlock &6HV Crushing&r.\n\n&bPlant Balls&r can be obtained by:\n-Centrifuging &9Sugarcane&r or &9Beets&r\n-Centrifuging every &awood&r that you can tap &9#afc:tappable_logs&r\n-Compressing &asaplings&r directly\n\nFinally, process your &aBio Chaff&r with water in a &dBrewery&r or go for a &dPyrolyse Oven&r for a &e66 percent boost&r in output.", - "quests.medium_voltage.mv_biomass.desc.3": "&l&3Lore:&r&o You may recognise Plantballs from IndustrialCraft2! In IC2 Experimental, there was this rather... obscure way to turn Biomass into Biogas for power, which sadly required too much investment to be really worth it.", - "quests.medium_voltage.mv_distillery.title": "Distillery", - "quests.medium_voltage.mv_distillery.subtitle": "The Illusion of Free Choice", - "quests.medium_voltage.mv_distillery.desc.1": "Before we start, here's some important information if you're aiming to make Ethylene:\n\nTaking the &aOil&r route will require &oat least&r a &3LV Distillery&r.\n\nWith the &aBiomass&r route, you will &lneed&r a &3MV Distillery&r.\n\nGet &eeither&r to complete this quest.", - "quests.medium_voltage.mv_distillery.desc.2": "Got all that? &6Alright&r! Let's discuss a complex topic: &9Distillation&r. We'll try to help you understand how and why the &aEMI&r recipes are the way they are, so stick with us.\n\nNearly all the &3Distillery&r recipes are duplicates from the &3Distillation Tower&r, except that they only have one Fluid output, and void everything else.\n\nIn other words, you could argue the &3Distillery&r is an &dinferior&r &3Distillation Tower&r.", - "quests.medium_voltage.mv_distillery.desc.3": "This doesn't mean that the &3Distillery&r is the worse of the two. It is unlocked earlier, and it is &dsmaller&r, &dcheaper&r, and &dmore energy efficient&r per recipe.\n\nHell, in many cases, you won't even mind losing the other Fluids.\n\n&3Distilleries&r are an essential component for power generation, whether you pick &aDiesel&r or &aBenzene&r.\n\nYou'll probably want many of them at as low-tier as possible to avoid the energy losses from Overclocking.", - "quests.medium_voltage.mv_distillery.task": "Either an LV or MV Distillery", - "quests.medium_voltage.mv_benzene.title": "The Church of Benzene", - "quests.medium_voltage.mv_benzene.subtitle": "In the end, it's always Benzene", - "quests.medium_voltage.mv_benzene.desc.1": "&aBenzene&r is a &9Gas Fuel&r. To skip some frustration, let's check out the two best ways to obtain it.\n\nThe first option is typically &dWood based&r. Put Logs in the &3Pyrolyse Oven&r for &9Wood Tar&r. The Charcoal you obtain can then be processed in &3Extractors&r for even more &9Wood Tar&r, which you &3distill&r for &aBenzene&r.\n\nYour second option is &dHeavy Oil based&r. Put Heavy Oil in a &3Distillery&r for &9Heavy Fuel&r, which you &aseverely steam-crack&r and &3distill&r again for &aBenzene&r.", - "quests.medium_voltage.mv_benzene.desc.2": "For information on how to process Oil, check the Light Fuel and Naphtha Quests.\n\nIn general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources.\n\n&aBenzene&r is burned in a &3Gas Turbine&r. This power source starts weaker than its &eDiesel&r cousin, but gets a big boost when refined to &6Nitrobenzene&r in &6HV&r. Ultimately, your power source is your choice.", - "quests.medium_voltage.mv_light_fuel.title": "Light Fuel", - "quests.medium_voltage.mv_light_fuel.subtitle": "Turn up the Lights in here, baby", - "quests.medium_voltage.mv_light_fuel.desc": "Distillating &aOil&r will give you Fuel that you will need to desulfurize.\n\n&aHydrogen Sulfide&r is perfectly &drecycled&r in an &3Electrolyzer&r.\n\nTo automate this process, simply place your &3Chemical Reactor&r and your &3Electrolyzer&r next to each other. Be sure to use your &5Screwdriver&r to &4enable input from the output side&r.\n\n&aLight Fuel&r is a good &9Power&r option, but there's something even greater... check the Quest to the left.", - "quests.medium_voltage.mv_diesel.title": "The Church of Diesel", - "quests.medium_voltage.mv_diesel.subtitle": "Mother, how is diesel made?", - "quests.medium_voltage.mv_diesel.desc.1": "&aDiesel&r is a &dOil-based &9Combustion Fuel&r.\n\nTo mix &aLight Fuel&r and &aHeavy Fuel&r, the right ratio for &3Distilleries&r is &63:2&r from &dOil&r or &dRaw Oil&r.\n\nThis would necessitate 3 Distilleries for Light Fuel, or 2 Distilleries for Heavy Fuel.", - "quests.medium_voltage.mv_diesel.desc.2": "You can cut the amount of &dOil&r required &6drastically&r by using &dHeavy Oil&r for &aHeavy Fuel&r specifically. &dOilsands&r is a great option if you wish to go down this route!\n\n&o(For the math nerds, you go from 8.33 Oil -> 6 Diesel, to 5 Oil + 0.4 Heavy Oil -> 6 Diesel)&r\n\n&eNote:&r Do &cnot attempt&r to put Oil in the &3Distillation Tower&r You might think it's a good idea because it gives both Light Fuel and Heavy Fuel. However, this process requires a lot of overclocking to be worth your time, and you will lose more energy than what the byproducts are worth.", - "quests.medium_voltage.mv_diesel.desc.3": "In general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources.\n\n&aDiesel&r is burned in a &3Combustion Generator&r. It can be further refined to &6Cetane-Boosted Diesel&r in &6HV&r. Compared to the other power sources, it is generally more efficient, but a more demanding processing line. If you take the &eOil&r route for &aPolyethylene&r, this can work great with existing infrastructure. Ultimately, the power source you want to use is your choice.", - "quests.medium_voltage.mv_jetpack.title": "I Believe I Can Fly", - "quests.medium_voltage.mv_jetpack.subtitle": "...well, almost Fly", - "quests.medium_voltage.mv_jetpack.desc": "This Jetpack takes most &aCombustion Fuels&r (excluding oils) to enable a primitive form of flight.\n\nFill it like you would fill a Drum, or with a &3Canning Machine&r.\n\nPress &4H&r (default) to enable Hover Mode.", - "quests.medium_voltage.mv_ethanol.title": "Ethanol", - "quests.medium_voltage.mv_ethanol.subtitle": "Yo, wait - that's alcohol!", - "quests.medium_voltage.mv_ethanol.desc": "Put your previously made &aBiomass&r into a &3MV Distillery&r to make &aEthanol&r.\n\nYou will need this for &dEthylene&r by reacting it with &aSulfuric Acid&r in a &3MV Chemical Reactor&r... unless you chose to go down the Oil path.\n\nOnce you have a hefty starting stock of Ethanol, consider making and distilling &9Fermented Biomass&r in a &3Distillation Tower&r (when you get there!) for extra chemicals.\n\n&cDo not try&r to use Ethanol as a Power source... it's quite possibly its worst use. If it's organic &9Power&r that you want, we suggest taking a look at &dBenzene&r instead!", - "quests.medium_voltage.mv_bio_diesel.title": "The Church of Bio Diesel", - "quests.medium_voltage.mv_bio_diesel.subtitle": "Flower Power", - "quests.medium_voltage.mv_bio_diesel.desc": "Want to try something plant-based but without a tree farm? Give &3Bio Diesel&r a shot! The best route for it is through &dSeed Oil&r from either Sunflowers or Canola. Just mix it with a little Ethanol and Sodium Hydroxide (from Sea Water!) in a Chemical Reactor and you're done! As a bonus, this route also outputs Glycerol which you can turn into &dEthylene&r!", - "quests.medium_voltage.mv_mutli_channel.title": "Multiple Channel Pipes", - "quests.medium_voltage.mv_mutli_channel.subtitle": "Is it already AE2?", - "quests.medium_voltage.mv_mutli_channel.desc": "Regular &o&dGregTech&r Fluid Pipes can only transport one fluid type at a time.\n\n&3Quadruple Fluid Pipes&r can transfer four different types of fluids. &3Nonuple Fluid Pipes&r can transfer nine different types! Useful for compact setups.\n\n&3Nonuple Fluid Pipes&r will be useful in &5EV&r for handling the many outputs of the &3Distillation Tower&r.\n\nGet &eeither&r to finish this quest.", - "quests.medium_voltage.mv_naphtha.title": "Naphtha or Light Fuel", - "quests.medium_voltage.mv_naphtha.subtitle": "We're still confused on how Naphtha is pronounced", - "quests.medium_voltage.mv_naphtha.desc": "Distillating &aOil&r or &aRaw Oil&r will give you Fuel that you will need to desulfurize.\n\n&aHydrogen Sulfide&r is perfectly &drecycled&r in an &3Electrolyzer&r.\n\nTo automate this process, simply place your &3Chemical Reactor&r and your &3Electrolyzer&r next to each other. Be sure to use your &5Screwdriver&r to &4enable input from the output side&r.\n\n&aNaphtha&r is a good &9Product&r source, surprsingly it's also a really good fuel (we heard nerf is coming) but if you are sitting on Oil sand or you don't have Raw Oil then Light Oil may be better. Keep following the quests to the right for more details.", - "quests.medium_voltage.mv_fuel_cracking.title": "Fuel Cracking", - "quests.medium_voltage.mv_fuel_cracking.subtitle": "Fuel and oil cracking can get complicated...", - "quests.medium_voltage.mv_fuel_cracking.desc.1": "Don't panic! We'll mostly be doing this to get hydrocarbons.\n\nThere are many ways to acquire &dEthylene&r from Oil processing. It's easy to get lost in all the options and recipes!\n\nThe best way is to steam-crack &aNaphtha&r in a &3Chemical Reactor&r. Be sure to make the &aSeverely Steam-Cracked&r version for a higher yield of Ethylene.", - "quests.medium_voltage.mv_fuel_cracking.desc.2": "Once in &6HV&r, you'll have the option to do this recipe in the &3Cracking Unit&r at 100 percent efficiency. Unfortunately, the recipes you are doing with the Chemical Reactor have a loss of &450 percent&r.\n\n&9Note:&r All of this looks and feels terribly inefficient - we hope that's strong motivation to tier up! The &3Distillation Tower&r will be a huge upgrade for petrochem, but you're not quite there... yet. Right now, you'll have to use a &3Distillery&r to get &dEthylene&r.", - "quests.medium_voltage.mv_ethylene.title": "Ethylene", - "quests.medium_voltage.mv_ethylene.subtitle": "One of many hydrocarbons", - "quests.medium_voltage.mv_ethylene.desc": "Our warmest congratulations on making it here.\n\nThe way you should obtain &aEthylene&r was described in the previous Quest, depending on the route you chose.\n\n&aEthylene&r will shortly be used in polymer production. It's also useful in a few other reactions.", - "quests.medium_voltage.mv_sulfuric_acid.title": "Sulfuric Acid", - "quests.medium_voltage.mv_sulfuric_acid.subtitle": "...what he thought was H2O was H2SO4!", - "quests.medium_voltage.mv_sulfuric_acid.desc.1": "EMI might look a little overwhelming here, so we'll go through the best path for Sulfuric Acid here.\n\nMaking &eSulfuric Acid&r is a three step process. It is used in many important reactions, so you should automate its production ASAP.", - "quests.medium_voltage.mv_sulfuric_acid.desc.2": "To automate it, you will need &3three LV Chemical Reactors&r. We would recommend building a dedicated setup somewhere with &3a single LV Generator&r to power all three machines. You can then spaghetti your pipes to handle input and output.\n\n&9-&r Step 1: React &aSulfur&r with &bOxygen&r to form &aSulfur Dioxide&r.\n&9-&r Step 2: React &aSulfur Dioxide&r with more &bOxygen&r to form &aSulfur Trioxide&r.\n&9-&r Step 3: React &aSulfur Trioxide&r with &bWater&r to form &eSulfuric Acid&r.", - "quests.medium_voltage.mv_sulfuric_acid.desc.3": "&l&3Lore:&r&o GregTech 5's Chemical Reactor only had one Fluid slot. To circumvent that, they would do &dcell chemistry&f. The way you would automate Sulfuric Acid was by having one cell travel from machine to machine and then loop back to its starting position. A somewhat fun and interesting automation challenge, but also a chore!", - "quests.medium_voltage.mv_aciditic.title": "It will Melt Your Flesh", - "quests.medium_voltage.mv_aciditic.subtitle": "...if you don't read this quest.", - "quests.medium_voltage.mv_aciditic.desc.1": "You may notice that some fluids say they are &aAcidic&r, with &9Sulfuric Acid&r being one of them.\n\nThis means that many fluid pipes will not be able to transport them safely!\n\nAt &bMV&r, the cheapest pipes for acid transportation are probably &aGold&r, with the more expensive &aVanadium Steel&r or &aChrome&r pipes taking second and third place.\n\n&aStainless Steel&r or &aPolytetrafluoroethylene&r (try saying that fast) will be valid options once you are in &6HV&r.", - "quests.medium_voltage.mv_aciditic.desc.2": "You have three options for acid storage at around this point: &dGlass Vials&r, &dGold Drums&r, or &dSuper Tanks&r. Glass Vials are like &9Fluid Cells&r, and are made to store acids. Gold Drums are self-explanatory. Super Tanks will be unlocked after &9Polyethylene&r, and can store any fluid without restriction.\n\n&cWARNING:&r Acids in the wrong pipes will cause &cvoiding&r, &cpipe burning&r, and high chance of &cdeath&r! Be careful!\n\n&l&3Lore:&r&o The acid transportation and storage mechanics originate from GregTech 6.", - "quests.medium_voltage.mv_aciditic.task": "I'm an acid professional, don't worry", - "quests.medium_voltage.mv_hydrochloric.title": "Hydrochloric Acid", - "quests.medium_voltage.mv_hydrochloric.subtitle": "You'll need a lot of this!", - "quests.medium_voltage.mv_hydrochloric.desc": "Obtain &9Hydrochloric Acid&r by mixing &aHydrogen&r and &aChlorine&r.\n\nThis acid is also obtained as waste from a lot of reactions involving &aChlorine&r. Depending on your setups, you may never need to produce it directly.", - "quests.medium_voltage.mv_hydrogen.title": "Hydrogen Gas", - "quests.medium_voltage.mv_hydrogen.subtitle": "You know about Hydrogen right?", - "quests.medium_voltage.mv_hydrogen.desc": "There are &amany ways&r to get your hands on &dHydrogen&rβ€”and it will often be a &abyproduct&r of other chemical reactions.\n\nIn &dPetrochem&r, you’ll produce a lot of &dMethane&r, which can be &aelectrolyzed&r into &dHydrogen&r. You could also electrolyze &9Water&r, but we recommend going for &9Seawater&r instead, as it gives more useful byproducts.\n\nLater on, the &ebest method&r will be reacting &9Water&r with &dMethane&r directlyβ€”but that’s &6HV-gated&r and will start off &erather slow&r.", - "quests.medium_voltage.mv_chlorine.title": "Chlorine Gas", - "quests.medium_voltage.mv_chlorine.subtitle": "Salty Gas", - "quests.medium_voltage.mv_chlorine.desc": "&dChlorine&r is a core component of your chemical toolkit. You’ll need &da lot of it&r for various reactions and crafting stepsβ€”the first one being &dHydrochloric Acid&r.\n\nThere are many ways to obtain &dChlorine&r, but the main source is &dsalt&r. It’s basically everywhere, so you won’t struggle to find it.\n\nWe recommend &aelectrolyzing seawater&r as an early method, but keep in mindβ€”it’s &eslow&r.", - "quests.medium_voltage.mv_seawater.title": "Sea Water", - "quests.medium_voltage.mv_seawater.subtitle": "As wide as an ocean...", - "quests.medium_voltage.mv_seawater.desc": "This quest is here to emphasize the presence of &9Sea Water&r in &aTerrafirmaCraft&r.\n\nYou can easily get an &ainfinite source&r with just two source blocks and either a Mechanical Pump or an Aqueous Accumulator. From there, you can &aelectrolyze it&r to get both &dChlorine&r and &dHydrogen&r.", - "quests.medium_voltage.mv_long_pipe.title": "Long-Distance Pipeline", - "quests.medium_voltage.mv_long_pipe.subtitle": "Wondering how to move these liquids around?", - "quests.medium_voltage.mv_long_pipe.desc.1": "&3Long-Distance Fluid Pipes&r can be used to send fluids across great distances. Place one endpoint at each end, and connect them with pipeline blocks.\n\nThese pipes instantly transfer from the input side to the output side.\n\nThey also have a minimum distance between pipe endpoints, so you can't use these for short-range operations.", - "quests.medium_voltage.mv_long_pipe.desc.2": "These pipes have a reputation of being &4buggy&r to set up. If they don't seem to work at first, try rotating the endpoints with a &eWrench&r.", - "quests.medium_voltage.mv_polyethylene.title": "Polyethylene", - "quests.medium_voltage.mv_polyethylene.subtitle": "Baby's first polymer!", - "quests.medium_voltage.mv_polyethylene.desc": "If you want to be less fancy, just call it plastic.\n\nFor the polymerization process, add &aOxygen&r, which gives better returns than Air, then solidify like you would with Rubber.\n\n&aPolyethylene (PE)&r is the key to unlocking &6many new things&r. It's commonly used as &dSheets&r, or in &dFluid&r form.\n\n&l&3Lore:&r&o The OreDict and fluid name for Polyethylene in 1.12.2 GTCEu was &bplastic&f, for cross-mod compatibility.", - "quests.medium_voltage.mv_tank.title": "Super Tank", - "quests.medium_voltage.mv_tank.subtitle": "Super Tanks are OP!", - "quests.medium_voltage.mv_tank.desc": "No, but seriously.\n\nThis is the &cu&6l&et&ai&bm&9a&5t&4e&r portable Fluid storage solution. &64,000 buckets of storage&r - in one single block without any regards to temperature or acidity!\n\nLike Drums, Super Tanks &6keep their fluids when broken&r, and can be cleared in the crafting grid.\n\nIf you hunger for &9even more&r storage, take a look at higher tier Super Tanks or AE2 Fluid Storage Cells.", - "quests.medium_voltage.mv_pvc.title": "Polyvinyl Chloride", - "quests.medium_voltage.mv_pvc.subtitle": "You've already made one polymer, what's two?", - "quests.medium_voltage.mv_pvc.desc": "&aPolyvinyl Chloride (PVC)&r is the 3rd-most produced plastic in real life. Here in CEu, it can be substituted for Polyethylene in the production of &aPlastic Circuit Boards&r and other items to increase the yield. It is required from &5EV&r onwards to wrap Cables.\n\nPVC item pipes also have the &6highest throughput&r available for a while, but most of your setups right now won't need such speed. Still, it's good to keep this knowledge in your pocket.\n\n&9Pro tip:&r The fluid form of PVC is never used in base GTCEu, so feel free to solidify all of it into sheets.", - "quests.medium_voltage.mv_boards.title": "Plastic Boards", - "quests.medium_voltage.mv_boards.subtitle": "It's a Casio on a Plastic Board", - "quests.medium_voltage.mv_boards.desc": "At this point, you have all the tools available to start making Plastic Boards. Higher-tier polymers in future will increase your PCB yields substantially.\n\nThe recipe chains are starting to get pretty long, so we recommend processing large batches in two dedicated &3Chemical Reactors&r.", - "quests.medium_voltage.mv_sodium_iron.title": "Sodium Persulfate / Iron III Chloride", - "quests.medium_voltage.mv_sodium_iron.subtitle": "Let's etch some Copper off Circuit Boards!", - "quests.medium_voltage.mv_sodium_iron.desc.1": "&aSodium Persulfate&r can be used in &9Ore Processing&r in the &3Chemical Bath&r to get various bonus outputs you would not normally obtain. It's completely optional, but pretty rewarding.\n\n&lWait, stop! That's only a distraction&r - the real topic of this Quest is...\n\n&aSodium Persulfate&r and &aIron III Chloride&r are used to make cheaper &9Good Circuit Boards&r, as their inclusion cuts Silver usage by a factor of four.\n\nThey're also &drequired&r to make &9Plastic Circuit Boards&r.", - "quests.medium_voltage.mv_sodium_iron.desc.2": "Making &aSodium Persulfate&r will yield &aHydrochloric Acid&r as a coproduct, which you may re-use to make &aIron III Chloride&r. This should the best approach right now, but the decision is entirely yours.\n\nThough if you are able to bring back Sea Water passively, Iron III Chloride will be the cheaper and more straight forward path.", - "quests.medium_voltage.mv_inductor.title": "Inductors", + "quests.low_voltage.lv_superconductor.title": "LVθΆ…δΌε°Žδ½“", + "quests.low_voltage.lv_superconductor.subtitle": "γ‚‚γ†δ½•γ‚‚ε€±γ„γŸγγͺい", + "quests.low_voltage.lv_superconductor.desc.1": "&6θΆ…δΌε°Žδ½“&rは、どγι›»εœ§γ«γ‚‚1η¨ι‘žγšγ€ε­˜εœ¨γ™γ‚‹η‰ΉζŠγͺι›»η·šγ§γ™γ€‚θ’«θ¦†γ™γ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“γŒγ€&6ι›»εŠ›ζε€±γŒγ‚Όγƒ­&rγͺγγ§ε•ι‘Œγ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nθ§¦γ‚Œγ¦γ‚‚γƒ€γƒ‘γƒΌγ‚Έγ‚’ε—γ‘γšε‰ε…¨γ«δ½ΏγˆγΎγ™γ€‚ε°‘γ—ι«˜δΎ‘γ§γ™γŒι…η·šγ«γ―ζœ€ι©γ§γ™γ€‚\n\nさらに、1倍ワむダーでも2γ‚’γƒ³γƒšγ‚’γΎγ§ε―ΎεΏœγ—γ¦γŠγ‚Šζ‰±γ„γ‚„γ™γ„γ§γ™γ€‚\n\nそろそろ叀くγͺった&aιŒ«γ‚±γƒΌγƒ–γƒ«&rγ‚’δΊ€ζ›γ™γ‚‹γ‚Ώγ‚€γƒŸγƒ³γ‚°γ§γ™γ€‚&3ζŠ½ε‡Ίζ©Ÿ&rでγƒͺγ‚΅γ‚€γ‚―γƒ«γ—γ¦γ€δ½Ώγ£γŸιŒ«γ¨γ‚΄γƒ γ‚’ε›žεŽγ—γΎγ—γ‚‡γ†γ€‚", + "quests.low_voltage.lv_superconductor.desc.2": "&l&3δ½™θ«‡οΌš&r&oGregicalityγ‚„GTCEuδ»₯前には、GregTechγγ©γγƒγƒΌγ‚Έγƒ§γƒ³γ«γ‚‚、&7LV&f用γζœ¬η‰©γθΆ…δΌε°Žδ½“γ―ε­˜εœ¨γ—γͺγ‹γ£γŸγ‚“γ γ‚ˆγ€‚δΈ€ιƒ¨γModPackに損倱ゼロγγ‚±γƒΌγƒ–γƒ«γŒγ‚γ£γŸγγ‚‰γ„γ γ­γ€‚", + "quests.low_voltage.aluminium_dust.title": "γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γη²‰", + "quests.low_voltage.aluminium_dust.subtitle": "必要γͺγγ―ι‰±ηŸ³ε‡¦η†γζŠ€θ‘“", + "quests.low_voltage.aluminium_dust.desc": "ι›»θ§£γ™γ‚‹γ“γ¨γ§γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γ‚’η”Ÿγ‚€γ“γ¨γŒγ§γγ‚‹ι‰±ηŸ³γ―γ„γγ€γ‹γ‚γ‚ŠγΎγ™γŒγ€γ»γ¨γ‚“γ©γ―&bMV&rにε…₯ってからです。\nδΎ‹ε€–γ¨γ—γ¦γ€ι‰±ηŸ³ε‡¦η†γιŽη¨‹γ§ε‰―η”£η‰©γ¨γ—γ¦γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ η²‰γŒεΎ—γ‚‰γ‚Œγ‚‹ι‰±ηŸ³γ‚‚γ‚γ‚ŠγΎγ™γ€‚EMIγ§εˆ©η”¨ε―θƒ½γͺ方法を璺θͺγ—、&2フィールドガむド&rγ§ε„ι‰±ηŸ³γζŽ‘ζŽ˜ε ΄ζ‰€γ‚’γƒγ‚§γƒƒγ‚―γ—γΎγ—γ‚‡γ†γ€‚\n\nεεˆ†γͺγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γŒι›†γΎγ£γŸγ‚‰γ€ζœ€εˆγMVζ©Ÿζ’°γ¨γ—γ¦ι›»θ§£ζ§½γ‚’δ½œγ‚‹γγŒγŠγ™γ™γ‚γ§γ™γ€‚γ“γ‚Œγ§γ€γ•γ‚‰γ«γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γ‚’η’ΊδΏγ—γ‚„γ™γγͺγ‚ŠγΎγ™γ€‚\n\nEBFがεŒζˆγ—γ¦γ„γ‚Œγ°γ€MVγΎγ§γ‚γ¨ε°‘γ—γ§γ™γ‚ˆοΌ", + "quests.low_voltage.aluminium_ingot.title": "γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γ‚€γƒ³γ‚΄γƒƒγƒˆ", + "quests.low_voltage.aluminium_ingot.subtitle": "MVγε…₯γ‚Šε£γγ‚«γ‚", + "quests.low_voltage.aluminium_ingot.desc": "さて、&bMV&rε›žθ·―γ‚‚δΈ€η·’γ«γ”ζη€Ίι‘˜γ„γΎγ™γ€‚\n\n&aγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &rは&bMV&rζ©Ÿζ’°γ‚’δ½œγ‚‹γŸγ‚γδΈ»θ¦η΄ ζγ§γ™γ€‚倧量に必要にγͺγ‚ŠγΎγ™γγ§γ€γ—γ£γ‹γ‚Šγ¨ζΊ–ε‚™γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\nγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γη²ΎιŒ¬γ―、&9ηͺ’η΄ &rを使うことで約3εˆ†γ1早くγͺγ‚ŠγΎγ™γ€‚ηͺ’素は&3γ‚¬γ‚ΉεŽι›†ζ©Ÿ&rγ§η’ΊδΏγ—γŸ&9η©Ίζ°—&rγ‚’ι εΏƒεˆ†ι›’γ™γ‚‹γ“γ¨γ§ε…₯手できます。\n\n&6MVζ©Ÿζ’°γ‚’δ½œγ‚‹γ«γ―γ€γ‚‚γ‘γ‚γ‚“MVε›žθ·―γ‚‚εΏ…θ¦γ§γ™γ‚ˆοΌ&r", + "quests.low_voltage.mv_hull.title": "第三γγƒžγ‚·γƒ³η­δ½“", + "quests.low_voltage.mv_hull.subtitle": "MVへγε…₯γ‚Šε£", + "quests.low_voltage.mv_hull.desc1": "γ‚ˆγγžγ“γ“γΎγ§ζ₯γΎγ—γŸγ­οΌ&bMVγƒžγ‚·γƒ³η­δ½“&r、&bζ”Ήθ‰―εž‹ι›»ε­ε›žθ·―&r、&6εŸΊζœ¬εž‹ε›žθ·―δ½œζˆζ©Ÿ&rγŒγ‚γ‚Œγ°γ€ζ­£ηœŸζ­£ιŠ˜γ€MVζ™‚δ»£γ«εˆ°ι”γ§γ™οΌ\n\nγ“γ‚ŒγŒ&6GregTech&rγεŸΊζœ¬ηš„γͺζ΅γ‚Œγ§γ™γ€‚ζ–°γ—γ„γƒ†γ‚£γ‚’γ«ι€²γ‚€γŸγ³γ«γ€ζ–°γŸγͺ&6素材&rγ‚„&6εŒ–ε­¦η‰©θ³ͺ&rγ‚’δ½Ώγ£γ¦γ€γ‚ˆγ‚Šι«˜εΊ¦γͺ&6機撰&rγ‚’δ½œγ£γ¦γ„γγ“γ¨γ«γͺγ‚ŠγΎγ™γ€‚\nこんγͺγ«γ™γ°γ‚‰γ—γ„δ½“ι¨“γ‚’γ™γ‚‹γ“γ¨γŒγ§γγ‚‹γͺγ‚“γ¦γ€ηΎ¨γΎγ—γ„ι™γ‚Šγ§γ™γ€‚", + "quests.low_voltage.mv_hull.desc2": "&bMV&rに進む前に、&6TFG&rでは、&6Create&rγγƒžγ‚·γƒ³γ‚’δ½Ώγ£γ¦γ‚€γƒ³γƒ•γƒ©γ‚’θ£œεΌ·γ™γ‚‹γ“γ¨γ‚‚ε―θƒ½γ§γ™γ€‚γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½γγ‚·γƒ£γƒ•γƒˆγ‚„ζ­―θ»Šγ―γ‚ΉγƒγƒΌγƒ«θ£½γγ‚‚γγ‚ˆγ‚Šθ¨±εΉεΏœεŠ›γŒ4倍あるγγ§γ€γγ‚Œγ‚‰γ‚’ζ΄»η”¨γ™γ‚Œγ°γƒžγ‚·γƒ³γ‚’γ‚ˆγ‚Šι«˜ι€Ÿγ«γ€ε‰ε…¨γ«η¨Όεƒγ•γ›γ‚‰γ‚ŒγΎγ™γ€‚", + "quests.low_voltage.aluminium_greate.title": "Greate-γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γδΈ–η•Œ", + "quests.low_voltage.aluminium_greate.subtitle": "δΈ­εΏœεŠ›οΌˆMedium StressοΌ‰γζ™‚代", + "quests.low_voltage.aluminium_greate.desc": "ε‰ε›žγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‹γ‚‰ε°‘γ—ζ™‚ι–“γŒη΅Œγ‘γΎγ—γŸγŒγ€γ“γ“γ§γ•γ‚‰γ«δΈŠδ½γGreateγζ©Ÿζ§‹γŒδ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚δ»₯ε‰γ¨εŒζ§˜γ«γ€γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½γγ‚‚γγ―スチール製γγ‚‚γγ‚ˆγ‚Šγ‚‚ &b4倍&rγεΏœεŠ›εΉι‡γŒγ‚γ‚ŠγΎγ™γ€‚\n\nこγε…ˆγ‹γ‚‰γ―、Greateγ«ε…¨γθ§¦γ‚Œγšγ¨γ‚‚ι€²γ‚γ‚‰γ‚ŒγΎγ™γŒγ€γ‚‚γ—Greateγ«ζ„›η€γŒγ‚γ‚‹ε ΄εˆγ―γ€γ“γζ©ŸδΌšγ«γ“γ‚ŒγΎγ§δ½Ώγ£γ¦γ„γŸζ©Ÿζ§‹γ‚’ε–γ‚Šζ›γˆγ‚‹γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚\n\nεΏœεŠ›δΎ›η΅¦γ‚’γ•γ‚‰γ«εΌ·εŒ–γ—γŸγ„γͺら&e蒸気エンジン&rγεˆ©η”¨γ‚„、&9Create Additions&rγ&eι›»ε‹•γƒ’γƒΌγ‚ΏγƒΌ&rを使ってEUγ‚’SUに倉換することγͺどもできます。", + "quests.low_voltage.oil.title": "Found Oil early?", + "quests.low_voltage.oil.subtitle": "For LV overachievers", + "quests.low_voltage.oil.desc": "ζ—…γι€”中でγ‚ͺむルァンドγι‰±ηŸ³γ‚„γ€η ‚ζΌ γ«γ‚γ‚‹εŽŸζ²Ήε™΄ε‡Ίε£γ‚’θ¦‹γ€γ‘γ¦γ„γ‚Œγ°γ€LVγζ΅ιšŽγ§γ‚‚εŽŸζ²Ήγζ΄»η”¨γŒγ§γγΎγ™γ€‚γΎγ γƒ•γƒ«ζ΄»η”¨γ―γ§γγΎγ›γ‚“γŒ...\n\n重θ³ͺη‡ƒζ–™γ«γ—γ¦γƒœγ‚€γƒ©γƒΌγη‡ƒζ–™γ¨γ—γ¦δ½Ώγ†γ“γ¨γ‚‚γ§γγΎγ™γŒγ€&bポγƒͺエチレン&rγδ½œζˆγ«δ½Ώγ†γγ‚‚γŠγ™γ™γ‚γ§γ™οΌ\n\nポγƒͺエチレンγζœ¬ζ Όηš„γͺ活用に぀いてはMVγη« γ§θͺ¬ζ˜Žγ—γΎγ™γŒγ€γ“γζ™‚η‚Ήγ§γ‚‚γƒžγ‚·γƒ³η­δ½“γ‚„γƒ€γ‚€γ‚ͺードγͺどをε‰δΎ‘γ«δ½œγ‚‹γŸγ‚γ«δ½Ώγ†γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.medium_voltage": "&bMV&r - δΈ­ι›»εœ§ζ™‚δ»£", + "quests.medium_voltage.subtitle": "ζ–°γŸγͺι›»ζ°—ζ©Ÿζ’°γ¨ηŸ³ζ²ΉεŒ–ε­¦γζ™‚代", + "quests.medium_voltage.mv_machine_hull.title": "MVγΈγ‚ˆγ†γ“γ", + "quests.medium_voltage.mv_machine_hull.subtitle": "ζ–°γ—γ„ζŠ€θ‘“γ€ζ–°γ—γ„θͺ²ι‘Œ", + "quests.medium_voltage.mv_machine_hull.desc.1": "上位γι›»εŠ›γ«ε…₯γ‚‹γ¨γ„γ†γ“γ¨γ―γ€γ‚ˆγ‚Šε€šγγγ“γ¨γ‚’θ¦šγˆγ­γ°γͺらγͺいということです。&eζ–°γ—γ„ζ©Ÿζ’°&rγ‚„&eεŒ–ε­¦η‰©θ³ͺ&rγŒγ‚γͺγŸγ‚’εΎ…γ£γ¦γ„γΎγ™γ€‚\n\n&6HV&rにε…₯γ‚‹γŸγ‚γ«εΏ…θ¦γͺγ‚‚γγ―全部で&23぀&r。順にみていきましょう。", + "quests.medium_voltage.mv_machine_hull.desc.2": "η›ζ¨™γγ1γ€γγ‚Œγ―&dEBF&rγεΌ·εŒ–γ§γ™γ€‚γγ‚Œγ«γ―&bMVエネルγ‚ーハッチ&rγŒεΏ…θ¦γ§γ™γ€‚MVγƒγƒƒγƒγŒγ‚γ‚Œγ°γ€&6HV&rγγƒ¬γ‚·γƒ”γŒδ½Ώη”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚&eステンレススチール&rγδ½œζˆγ«γ―γ“γ‚ŒγŒεΏ…θ¦γ¨γͺγ‚ŠγΎγ™γ€‚γΎγŸγ€&eカンタル&rγ‚‚&dEBFコむル&rγεΌ·εŒ–に必要とγͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_machine_hull.desc.3": "η›ζ¨™γγ2γ€γγ‚Œγ―γƒ—γƒ©γ‚Ήγƒγƒƒγ‚―γδ½œζˆγ§γ™γ€‚&bMV&rγ§δ½œζˆγ™γ‚‹γγ―&eポγƒͺエチレン&rです。εŸγ―LVγγ†γ‘γ‹γ‚‰θ§¦γ‚Œγͺいこともγͺγ„εˆ†ι‡Žγ γ£γŸγγ§γ™γŒγ€γ‚―γ‚¨γ‚ΉγƒˆδΈŠγ§γ―γ“γ“γ§ζ‰±γ„γΎγ™γ€‚γƒγƒͺエチレンγδ½œζˆζ–Ήζ³•には、δ»₯δΈ‹γ2η¨ι‘žγŒγ‚γ‚ŠγΎγ™γ€‚\n\n1.&eηŸ³ζ²Ήγƒ—γƒ©γ‚Ήγƒγƒƒγ‚―&r:γ‚ͺγ‚€γƒ«γ‚΅γƒ³γƒ‰γΎγŸγ―ζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿγ§ε…₯ζ‰‹γ—γŸηŸ³ζ²Ήγ‹γ‚‰δ½œζˆγ€‚η™Ίι›»γ«δ½Ώγˆγ‚‹&eディーゼル&r燃料も手にε…₯る。\n\n2.&e怍物由ζ₯プラスチック&r:&6η†±εˆ†θ§£η‚‰&rγ§ζœ¨γ‹γ‚‰δ½œζˆγ™γ‚‹γ€‚&eベンゼン&rγ‚’δ½Ώγ£γŸ&eガスタービン発電&rγ‚‚ε§‹γ‚γ‚‰γ‚Œγ‚‹γ€‚\n\nγ„γšγ‚Œγδ½œζˆζ–Ήζ³•γ«γ‚‚εˆ©η‚Ήγ¨ζ¬ η‚ΉγŒγ‚γ‚ŠγΎγ™γ€‚γΎγ‚γ€γ©γγΏγ‘δΈ‘ζ–Ήδ½œγ‚‹γ“γ¨γ«γͺγ‚‹γγ§γγ“γΎγ§ι–’δΏ‚γ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.medium_voltage.mv_machine_hull.desc.4": "ζœ€εΎŒγ«δ½œγ‚‹γ‚‚γγ€γγ‚Œγ―&6HVε›žθ·―&rγ§γ™γ€‚ζ­£η’Ίγ«θ¨€γˆγ°γ€2η•ͺη›γ«δ½œγ‚Œγ‚‹&6γƒžγ‚€γ‚―γƒ­ε‡¦η†ζΌ”η—θ£…η½&rγ§γ™γ€‚γƒžγ‚€γ‚―γƒ­ε‡¦η†ζΌ”η—θ£…η½γ―加ε·₯ε·₯η¨‹γŒ&a2ζ΅ιšŽ&rしかγͺγγ€ζœ€εˆγ«δ½œγ‚Œγ‚‹&6η™Ίε±•εž‹ι›†η©ε›žθ·―&rに比べてζ₯½γ«δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγƒžγ‚€γ‚―γƒ­ε‡¦η†ζΌ”η—θ£…η½γδ½œζˆγ«γ―、&dγƒ¬γƒΌγ‚ΆγƒΌεˆ»ε°ζ©Ÿ&rで&dウェハー&rγ‚’δ½œγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ‚¦γ‚§γƒγƒΌγ‹γ‚‰&6HVε›žθ·―&rγ‚’δ½œζˆγ—γ€γγ‚Œγ‚’ζζ–™γ«&bMVε›žθ·―η΅„η«‹ζ©Ÿ&rγ‚’δ½œζˆγ—γΎγ—γ‚‡γ†γ€‚\n\nεŸγγ¨γ“γ‚γƒžγ‚€γ‚―ロ処理演η—θ£…η½γ―εΏ…ι ˆγ§γ―γͺいγγ§γ™γŒγ€δ½œγ‚Œγ‚‹γ¨γ‚γ¨γŒγ¨γ¦γ‚‚ζ₯½γ«γͺγ‚ŠγΎγ™γ€‚γγ†γ„γ†ε™‚γ οΌˆεšεž‹ζ–‡οΌ‰", + "quests.medium_voltage.mv_miner.title": "θ‡ͺε‹•ζŽ‘ζŽ˜", + "quests.medium_voltage.mv_miner.subtitle": "ι‰±θ„ˆζŽ‘ζŽ˜γŒγ‚γ‚“ο½„γͺ人向け", + "quests.medium_voltage.mv_miner.desc.1": "ζŽ‘ζŽ˜ζ©Ÿγ―γ‚γͺたγδ»£γ‚γ‚Šγ«ι‰±ηŸ³γ‚’ζŽ˜γ£γ¦γγ‚ŒγΎγ™γ€‚\n\nζŽ‘ζŽ˜γ§γγ‚‹η―„ε›²γ«γ€γ„γ¦γ―γ€εž‚η›΄ζ–Ήε‘γ―η„‘εˆΆι™γ€ζ°΄εΉ³ζ–Ήε‘γ―γ‚’γ‚€γƒ†γƒ γθͺ¬ζ˜Žγ«ζ›Έγ„γ¦γ‚γ‚ŠγΎγ™γ€‚\n\n&bMV&r掑掘機γζŽ‘ζŽ˜η―„ε›²γ―γγ“γγ“γ€ι‰±θ„ˆε…¨δ½“γ‚’ζŽ˜γ‚‹γ«γ―θ‡³γ‚ŠγΎγ›γ‚“γŒγ€&6HV&r掑掘機γͺγ‚‰ι‰±θ„ˆε…¨δ½“γ‚’ζŽ˜γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ„γšγ‚Œγ‹γη¨ι‘žγζŽ‘ζŽ˜ζ©Ÿγ‚’δ½œζˆγ™γ‚‹γ“γ¨γ§γ€γ‚―γ‚¨γ‚Ήγƒˆγ‚―γƒͺをとγͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_miner.desc.2": "掑掘機γη¨Όεƒγ«γ―&9ι›»εŠ›&rγŒεΏ…θ¦γ§γ™γ€‚&aバッテγƒͺγƒΌ&rγ§γ‚‚θ‰―γ„γ§γ™γŒγ€ι›»ζ± εˆ‡γ‚Œγ«γͺγ‚ŠγŒγ‘γ§γ™γ€‚\n\nγŠγ™γ™γ‚γζ–Ήζ³•は、燃料をε…₯γ‚ŒγŸ&3ドラム&rと&3η™Ίι›»ζ©Ÿ&rγ‚’η½γ„γ¦γŠγγ“γ¨γ§γ™γ€‚\n\nη™Ίι›»ζ©ŸγδΈŠγ«η‡ƒζ–™γƒ‰γƒ©γƒ γ‚’η½γγ€&5γ‚½γƒ•γƒˆγƒžγƒ¬γƒƒγƒˆ&rまたは&5γ‚Ήγ‚―γƒͺγƒ₯ードラむバー&rでθ‡ͺ動搬出をγ‚ͺγƒ³γ«γ™γ‚Œγ°γ€γƒ‰γƒ©γƒ γ‹γ‚‰η‡ƒζ–™γ‚’δΎ›η΅¦γ—γ¦γγ‚ŒγΎγ™γ€‚", + "quests.medium_voltage.mv_miner.desc.3": "&c注:&r稼働γιš›γ«γ―γ€ζŽ‘ζŽ˜γ—γŸγ„η―„ε›²γ&dチャンクロード&rγ‚’εΏ˜γ‚Œγšγ«γ€‚FTBmapγγƒγƒ£γƒ³γ‚―γƒ­γƒΌγƒ‰ζ©Ÿθƒ½γ§θ‘Œγ†γγŒδΈ€η•ͺη°‘ε˜γ§γ™γ€‚\n\n&9まめけしき:&r&3MEγƒγ‚§γ‚Ήγƒˆ&rγ‚„&3γ‚―γƒ¬γƒΌγƒˆ&rγ‚’δ½Ώγ†γ“γ¨γ§γ€ζŽ‘ζŽ˜γ—γŸγ‚’γ‚€γƒ†γƒ γζŒγ‘εΈ°γ‚ŠγŒζ₯½γ«γͺγ‚ŠγΎγ™γ€‚&3MEγƒγ‚§γ‚Ήγƒˆ&rはEUι›»εŠ›γ§γ‚‚η¨Όεƒε‡Ίζ₯γΎγ™γŒγ€ηΎζ™‚η‚Ήγ§γ―δ½œγ‚ŒγΎγ›γ‚“γ€‚", + "quests.medium_voltage.mv_miner.task": "γ„γšγ‚Œγ‹γζŽ‘掘機", + "quests.medium_voltage.mv_component.title": "MVγδΈ­ι–“素材", + "quests.medium_voltage.mv_component_.subtitle": "γΎγŸδΈ­ι–“η΄ ζγ‹γ‚ˆοΌ", + "quests.medium_voltage.mv_component.desc": "δ»₯下は&bMV&rで使用する中間素材γδΈ€θ¦§γ§γ™γ€‚γ„γ‘γ„γ‘δ½œγ£γ¦γ„γ¦γ―ζ°—γŒη‹‚γ£γ¦γ—γΎγ†γγ§(特に&aγƒ’γƒΌγ‚ΏγƒΌ&r)、θ‡ͺε‹•γ‚―γƒ©γƒ•γƒˆγ‚’γ—γŸγ‚Šγ€ε€§ι‡γ«γΎγ¨γ‚γ¦δ½œγ£γŸγ‚Šγ™γ‚‹γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚\n\n&aγ‚¨γƒŸγƒƒγ‚Ώ&rに぀いて。MVγ‚¨γƒŸγƒƒγ‚Ώγ―&dε‚·γγͺいエパラルド&rγ‚’δ½œζˆγ«δ½Ώη”¨γ—γΎγ™γ€‚γ“γ‚Œγ―ηΎζ΅ιšŽγ§γ―&3選εˆ₯機&rでγγΏδ½œζˆγ§γγΎγ™γ€‚\n\nγ‚³γƒ³γƒ™γ‚’γ€γƒγƒ³γƒ—γ€γƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ γ3η¨γ―γ€ζ©Ÿζ’°γ«ε–γ‚Šδ»˜γ‘γ‚‹γ¨LVη‰ˆγδΈŠδ½δΊ’ζ›γ¨γ—γ¦ζ©Ÿθƒ½γ—γΎγ™γ€‚", + "quests.medium_voltage.electrolyzer.title": "MVι›»θ§£ζ§½", + "quests.medium_voltage.electrolyzer.subtitle": "γ“γ“ι€²η ”γ€‡γƒŸγ§γ‚„γ£γŸγ¨γ“γ‚γ οΌ", + "quests.medium_voltage.electrolyzer.desc.1": "&bγγ£γ¨θ¦‹γŸγ“γ¨γ‚γ‚‹ζ©Ÿζ’°&r\n&2何はγͺγγ¨γ‚‚γ€γΎγšγ“γζ©Ÿζ’°γ―γͺγ‚‹γΉγζ—©γδ½œγ£γ¦γγ γ•γ„γ€‚&rι›»θ§£ζ§½γ‚’δ½œγ‚‹γ“γ¨γ§γ€&7γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &rγε…₯手手ζ΅γŒε€§εΉ…γ«ε’—εŠ γ—γΎγ™γ€‚\n\nMVδ»₯ε‰γ§δ½Ώγˆγ‚‹ζ–Ήζ³•γ―γ€&9ァフゑむをγι›»εŒ–εˆ†θ§£&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他にもいろいろγͺ手ζ΅γŒγ‚γ‚‹γγ§γ€&aEMI&rで璺θͺγ—てみましょう。\n\nけγͺγΏγ«γ€η²˜εœŸγι›»ζ°—εˆ†θ§£γ«γ‚ˆγ‚‹γƒ¬γ‚·γƒ”γ―&6HV&rまで禁歒です。ズルいγγ§ζ‹ε½“。", + "quests.medium_voltage.mv_extruder.title": "η™Ίε±•εž‹ζŠΌε‡Ίζ©Ÿ", + "quests.medium_voltage.mv_extruder.subtitle": "袅パワーをップ", + "quests.medium_voltage.mv_extruder.desc": "こんγͺModpackγ‚’ιŠγ‚“γ§γ„γ‚‹ζ–Ήγͺγ‚‰εˆ†γ‹γ£γ¦γ„γ‚‹γ¨γ―ζ€γ„γΎγ™γŒγ€&7LV&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.subtitle": "εΌ·γγ€ι€Ÿγγ€γ‚ˆγ‚ŠδΎΏεˆ©γ«", + "quests.medium_voltage.mv_chemical_reactor.desc": "MVγ«γ‚‚εŒ–ε­¦εεΏœε™¨γ―ε­˜εœ¨γ—γΎγ™γ€‚\n\n&bMV&rεŒ–ε­¦εεΏœε™¨γ§γ―γ€ζ›΄γͺγ‚‹ι«˜εΊ¦γͺγƒ¬γ‚·γƒ”γŒθΏ½εŠ γ•γ‚Œγ‚‹γ»γ‹γ€LV時代γγƒ¬γ‚·γƒ”γ«γ‚ˆγ‚‹εŠ ε·₯γ‚’&aγ‚ˆγ‚Šι«˜ι€Ÿγ§&rθ‘Œγ†γ“γ¨γŒγ§γγΎγ™γ€‚γŸγ γ—γ€εŠ ε·₯ι€ŸεΊ¦γŒ&a2倍&rにγͺγ‚‹δΈ€ζ–Ήγ§γ€ζΆˆθ²»ι›»εŠ›γ―&e4倍&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.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δ»ŠεΎŒγ―ι›»εŠ›ζ™‚δ»£γγ‚―γ‚¨γ‚Ήγƒˆγ‚Ώγƒ–γ§η™Ίι›»ζ–Ήζ³•γ«γ€γ„γ¦θ§¦γ‚Œγ‚‹γ“γ¨γ―γ—γͺγ„δΊˆεšγͺγγ§γ€HVδ»₯降はGregtechエネルγ‚ーに぀いてγγ‚―γ‚¨γ‚Ήγƒˆγ‚Ώγƒ–γ‚’ε‚η…§γ—γ¦γγ γ•γ„γ€‚\n\nMVγ§ε–γ‚Œγ‚‹ζ–Ήζ³•γ―&a3η¨ι‘ž&rγ‚γ‚ŠγΎγ™γ€‚\n\n&71.&bMVη™Ίι›»ζ©Ÿ&rで&bMVι›»εŠ›&rγ‚’η”Ÿη”£γ™γ‚‹γ€‚\n\n&72.&b&7LV&rι›»εŠ›γ‚’ζ˜‡εœ§γ™γ‚‹&r。亀換比は&e4:1&r。\n\n&73.&bFE&rから&dエネルγ‚ー倉換器&rで倉換する。\n\n", + "quests.medium_voltage.mv_energy.desc.2": "上位γη™Ίι›»ζ©Ÿγ§γ―γ€η™Ίι›»ι‡γ«ζ―”δΎ‹γ—γ¦η‡ƒζ–™ζΆˆθ²»ι€ŸεΊ¦γŒδΈŠζ˜‡γ—γΎγ™γ€‚γ‚γγΎγ§ζΆˆθ²»ι€ŸεΊ¦γŒδΈŠγŒγ‚‹γ γ‘γ§γ€η‡ƒζ–™γ‚γŸγ‚Šγη™Ίι›»ι‡γ―εΈΈγ«εŒγ˜γ§γ™γ€‚&3η™Ίε±•εž‹θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³&rγ―γ€ζ―Žη§’&d5120mB&rγθ’Έζ°—γ‚’ζΆˆθ²»γ—γΎγ™γ€‚1tickγ‚γŸγ‚ŠγζΆˆθ²»ι‡γ§θ‘¨γ™γ¨γ€&d256mB/t&rです。\n\nγ„γšγ‚Œγ‹γη™Ίι›»ζ©Ÿγ‚’δ½œζˆγ™γ‚‹γ¨γ€γ‚―γ‚¨γ‚Ήγƒˆγ‚―γƒͺをとγͺγ‚ŠγΎγ™γ€‚γŠγγ‚‰γζœ€εˆγ«δ½œγ‚‹γγ―&3η™Ίε±•εž‹θ’Έζ°—γ‚ΏγƒΌγƒ“γƒ³&rにγͺるかと思います。", + "quests.medium_voltage.mv_energy.desc.3": "蒸気タービンδ»₯倖にも、&bMV&rγη™Ίι›»ζ©Ÿγ―γ„γγ€γ‹ε­˜εœ¨γ—γΎγ™γ€‚γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺε†…γ§η™Ίι›»ζ©Ÿγ«γ‚«γƒΌγ‚½γƒ«γ‚’εˆγ‚γ›γ€&4U&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": "ε€‰εœ§ε™¨γ6぀ある青γγ†γ‘、5぀γι’γ―δ½Žγ„ι›»εœ§γι›»ζ°—γ‚’ε—γ‘δ»˜γ‘γ€ζ‹γ‚Šγ²γ¨γ€γι’γ―ι«˜γ„ι›»εœ§γ‚’ε—γ‘δ»˜γ‘γΎγ™γ€‚\n\nι€šεΈΈγε€‰εœ§ε™¨γ―γ€ι«˜εœ§1Aと低圧4Aとγι–“γ§ε€‰ζ›γ‚’θ‘Œγ„γΎγ™γ€‚δ»–γ«γ‚‚2Aと8A、4Aと16A、16Aと64Aγι–“γ§ε€‰ζ›γ™γ‚‹ε€‰εœ§ε™¨γ‚‚ε­˜εœ¨γ—γΎγ™γ€‚\n\n上位γε€‰εœ§ε™¨γ‚’δ½œζˆγ™γ‚‹γ«γ―、&9コむル&rγŒεΏ…θ¦γ§γ™γ€‚", + "quests.medium_voltage.mv_energy.desc.6": "γΎγŸγ€LVζ™‚δ»£γ¨εŒζ§˜γ«γ€γ‚¨γƒγƒ«γ‚ー倉換器でFEからEUに倉換することも可能です。", + "quests.medium_voltage.mv_battery.title": "MVバッテγƒͺーバッフゑ", + "quests.medium_voltage.mv_battery.subtitle": "θ“„ι›»", + "quests.medium_voltage.mv_battery.desc": "LVζ™‚δ»£γ«γ‚‚θ¨€γ„γΎγ—γŸγŒγ€&bバッテγƒͺーバッフゑ&rは積ζ₯΅ηš„に使っていきましょう。バッテγƒͺγƒΌγƒγƒƒγƒ•γ‚‘γŒγ‚γ‚Œγ°γ€η™Ίι›»ι‡γ‚’θΆ…γˆγ‚‹ι‡γι›»ζ°—γ‚’δ½Ώγ£γ¦γ‚‚γ€γ™γγ«γ―ι›»εŠ›δΈθΆ³γ«ι™₯らγͺくγͺγ‚ŠγΎγ™γ€‚ε……ι›»γ―ζ©Ÿζ’°γ‚’ζ­’γ‚γ¦γ„γ‚‹ι–“γ«ε›žεΎ©γ™γ‚‹γγ§ε‰εΏƒγ§γ™γ€‚", + "quests.medium_voltage.mv_battery.task": "γ„γšγ‚Œγ‹γMVバッテγƒͺーバッフゑ", + "quests.medium_voltage.mv_batteries.title": "γ‚‚γ£γ¨εΌ·εŠ›γͺι›»ζ± γ‚’", + "quests.medium_voltage.mv_batteries.subtitle": "ζœ€εΌ·γƒγƒƒγƒ†γƒͺγƒΌn選!", + "quests.medium_voltage.mv_batteries.desc": "&7LV&rζ™‚δ»£γ¨εŒζ§˜γ«γ€&bMV&r時代γθ“„電にはMVバッテγƒͺγƒΌγŒεΏ…θ¦γ§γ™γ€‚\n\nγŸγ γ—γ€η”Ÿη”£γ«εΏ…θ¦γͺγƒͺチウムγͺどγζΆˆθ²»ι‡γ―8ε€‹γ«θ·³γ­δΈŠγŒγ£γ¦γ„γΎγ™γ€‚γγγŸγ‚γ€ζ•°γ«δ½™θ£•γŒγ‚γ‚‹ζζ–™γ‚’δ½Ώγ£γ¦δ½œγ‚‹γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚ζζ–™γŒι•γ£γ¦γ‚‚γ€θ“„ι›»ι‡γι•γ„γ―γ•γ»γ©ε€§γγγ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nγ„γšγ‚Œγ‹γMVバッテγƒͺγƒΌγ‚’δ½œζˆγ™γ‚‹γ¨γ€γ‚―γ‚¨γ‚Ήγƒˆγ‚―γƒͺをとγͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_steel_alloy.title": "γ‚ΉγƒγƒΌγƒ«εˆι‡‘", + "quests.medium_voltage.mv_steel_alloy.subtitle": "Hearts of Iron", + "quests.medium_voltage.mv_steel_alloy.desc": "γƒγƒŠγ‚Έγ‚¦γƒ ι‹Όγ―γ€ζ©Ÿζ’°γζζ–™γ¨γ—て使うことはほとんどγͺい一方で、ツールに使うと鋼鉄γ4倍もγθ€δΉ…εŠ›γ‚’ζŒγ€γƒ„γƒΌγƒ«γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γƒγƒŠγ‚Έγ‚¦γƒ γ―γ€η£ι‰„ι‰±ι‰±θ„ˆγ§γ‚ˆγζŽ‘γ‚Œγ‚‹γƒγƒŠγ‚Έγ‚¦γƒ η£ι‰„ι‰±γ‹γ‚‰ε…₯手できます。\n\n青鋼、血鋼、黒鋼も、スチール系γεˆι‡‘です。青鋼ツールは、鋼鉄γ2倍γθ€δΉ…γ‚’ζŒγ‘ます。", + "quests.medium_voltage.pyrolyse.title": "η†±εˆ†θ§£η‚‰", + "quests.medium_voltage.pyrolyse.subtitle": "η†±γ§εˆ†θ§£", + "quests.medium_voltage.pyrolyse.desc.1": "&3η†±εˆ†θ§£η‚‰&rとは、要するに電動γ&3コークス炉&rです。&9γ‚³γƒΌγ‚―γ‚Ή&rγ‚„&9ζœ¨η‚­&rγ‚’δ½œζˆγ—γ€&9クレγ‚ͺγ‚½γƒΌγƒˆ&rγ‚’ε‰―η”£η‰©γ¨γ—γ¦η”Ÿγ‚€εΎ“ζ₯γγƒ¬γ‚·γƒ”γ‚‚δ½ΏγˆγΎγ™γŒγ€δ»–γ«γ‚‚ζ§˜γ€…γͺ物θ³ͺγ‚’ε‰―η”£η‰©γ¨γ—γ¦εΎ—γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚η‰Ήγ«ε½Ήη«‹γ€γγŒ&a木θ³ͺタール&rです。\n\nδ»–γ«γ‚‚γ€η†±εˆ†θ§£η‚‰γ§δ½œγ‚Œγ‚‹&aバむγ‚ͺγƒžγ‚Ή&rは、怍物由ζ₯プラスチックγδ½œζˆγ«εΏ…要です。", + "quests.medium_voltage.pyrolyse.desc.2": "各η¨γε‰―η”£η‰©γ―γ€θ’Έη•™ζ©Ÿγ‚’η”¨γ„γ‚‹γ“γ¨γ§εˆ₯γεŒ–学物θ³ͺγ‚’ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚\n\nθ’Έη•™ζ©Ÿγ§δ½œγ‚Œγ‚‹εŒ–ε­¦η‰©θ³ͺγ«γ€γ„γ¦γ―γ€εΎŒγγ‚―γ‚¨γ‚Ήγƒˆγ§η΄Ήδ»‹γ—γ¦γ„γ‚‹γγ§γ€η’Ίθͺγ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.medium_voltage.pyrolyse.desc.3": "一部γγƒ¬γ‚·γƒ”は、&bηͺ’η΄ &rγ‚’δ½Ώγ†γ“γ¨γ§γ‚ˆγ‚Šι«˜ι€Ÿγ§γγ‚―γƒ©γƒ•γƒˆγŒε―θƒ½γ¨γͺγ‚ŠγΎγ™γ€‚ηΎζ™‚η‚Ήγ§γ―γ‚γ–γ‚γ–εŠ ι€Ÿγ™γ‚‹γ»γ©γδΎ‘ε€€γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ηͺ’素は焑限資源であるγγ§γ€γ„γšγ‚Œγ―δ½Ώγ†γ¨γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚\n\nη†±εˆ†θ§£η‚‰γη¨Όεƒγ«γ―、ε‰εšγ—て&d64EU/t&rγι›»εŠ›γ‚’ζ΅γ™εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ‚¨γƒγƒ«γ‚ーハッチを1εŸΊη”¨ζ„γ—γ€γγ“γ«θΆ…δΌε°Žγ‚±γƒΌγƒ–γƒ«γ§ι›»εŠ›γ‚’δΎ›η΅¦γ™γ‚Œγ°OKγ§γ™γ€‚γΎγŸγ€ηΎζ™‚η‚Ήγ§γ―γ‚­γƒ₯γƒ—γƒ­γƒ‹γƒƒγ‚±γƒ«γ§ζΈ©εΊ¦γŒθΆ³γ‚ŠγΎγ™γŒγ€ε°†ζ₯ηš„γ«γ―γ‚«γƒ³γ‚Ώγƒ«γ«εˆ‡γ‚Šζ›Ώγˆγ‚‹γΉγγ§γ—γ‚‡γ†γ€‚", + "quests.medium_voltage.pyrolyse.desc.4": "&9&lまめけしき1:&r&l&9&lエチレン&r&lγδ½œζˆζ–Ήζ³•γ«γ―γ€δ»–γ«γ‚‚ηŸ³ζ²Ήγ‚’δ½Ώγ£γŸζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚&r\n\nηŸ³ζ²Ήγ‚’δ½Ώγ†ε ΄εˆγ€η†±εˆ†θ§£η‚‰γ―εΏ…γšγ—γ‚‚εΏ…θ¦γ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€δ½œγ£γ¦γŠγ‘γ°η™Ίι›»ζ‰‹ζ΅γ‚„η‰ΉζŠγͺεŒ–ε­¦η‰©θ³ͺγη’ΊδΏγŒγ§γγ€γ¨γ¦γ‚‚ζœ‰η”¨γ§γ™γ€‚\n\n&l&3まめけしき2:&r&oGT5uζ™‚δ»£γ«γŠγ‘γ‚‹η†±εˆ†θ§£η‚‰γγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ―γ€ηΎεœ¨γ¨η•°γͺγ‚‹ζ§‹ι€ γ‚’γ—γ¦γ„γΎγ—γŸγ€‚ε½“ζ™‚γ―γ‚„γŸγ‚‰γ¨ε·¨ε€§γͺη±γ«9個γγ‚³γ‚€γƒ«γ‚’ε…₯γ‚Œγ‚‹ζ§‹ι€ γ§γ‚γ£γŸγ†γˆγ€δ»Šγγ‚ˆγ†γ«γƒžγƒ«γƒγƒ–ロックγζ§‹ι€ γ‚’η’Ίθͺγ™γ‚‹ζ‰‹ζ΅γŒδΉγ—γ‹γ£γŸγŸγ‚γ€η΅„γΏη«‹γ¦γ«γ¨γ¦γ‚‚θ‹¦εŠ΄γ—γ¦γ„γΎγ—γŸγ€‚", + "quests.medium_voltage.mv_fluid_rig.title": "ζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿ", + "quests.medium_voltage.mv_fluid_rig.subtitle": "ζΊδΌγ¨γ—γŸCEuγ«ζΆ²δ½“ζŽ‘ζŽ˜ζ©ŸγŒοΌ", + "quests.medium_voltage.mv_fluid_rig.desc.1": "&3ζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿ&rγγ‚³γ‚Ήγƒˆγ―ηŒ›ηƒˆγ«ι«˜γ„γ§γ™γ€‚γ—γ‹γ—γ€MVζ™‚η‚Ήγ§γ―ζœ€εΌ·γ&6石油ε…₯手手ζ΅&rγ§γ‚‚γ‚γ‚ŠγΎγ™γ€‚\n\nζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿγ―γ€εœ°εΊ•γε²©η›€γ‹γ‚‰ζΆ²δ½“γ‚’ζŽ˜γ‚Šε‡Ίγ™ζ©Ÿζ’°γ§γ™γ€‚ε²©η›€γ‹γ‚‰ζŽ˜γ‚Šε‡Ίγ™γ¨γ„γ£γ¦γ‚‚γ€εŸιš›γ«ζŽ˜γ£γ¦γ„γ‚‹γ‚γ‘γ§γ―γͺく、チャンクごとに設εšγ•γ‚Œγ¦γ„γ‚‹ζΆ²δ½“γ‚’η”Ÿζˆγ™γ‚‹γ€γ¨γ„γ†γγŒζ­£η’Ίγ§γ™γ€‚\n\nGT環咃ではチャンクごとに梲体γζ²Ήη”°γŒθ¨­εšγ•γ‚Œγ¦γ„γΎγ™γ€‚γγ‚Œγžγ‚Œγ«η•°γͺγ‚‹ζΆ²δ½“γŒθ¨­εšγ•γ‚Œγ¦γ„γΎγ™γŒγ€ε€§εŠγ―石油系γζΆ²δ½“です。\n\nMVγζ΅ιšŽγ§γ―γ€γƒγƒ£γƒ³γ‚―γ”γ¨γ«εŸ‹θ”΅γ•γ‚Œγ¦γ„γ‚‹ζΆ²δ½“γη¨ι‘žγ‚’事前に璺θͺγ™γ‚‹ζ‰‹ζ΅γ―ε­˜εœ¨γ—γΎγ›γ‚“γ€‚&6HV&rまで待けましょう。", + "quests.medium_voltage.mv_fluid_rig.desc.2": "ε„γƒγƒ£γƒ³γ‚―γ‹γ‚‰γ―γ€γŠγŠγ‚ˆγη§’ι–“&d150&r~&d300&rLη¨‹εΊ¦ζΆ²δ½“γŒη”Ÿζˆγ•γ‚ŒγΎγ™γ€‚\n\nζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿγη¨Όεƒγ‚’ηΆšγ‘γ‚‹γ¨γ€ζ¬‘第にこγη”Ÿζˆι‡γŒζΈ›ε°‘γ—γ¦γ„γγ€ζœ€η΅‚ηš„γ«γ―ζž―ζΈ‡γ—γΎγ™γ€‚ζž―ζΈ‡γ—γŸγ‚‰δ»–γε ΄ζ‰€γ«η§»ε‹•しましょう。\n\nMVγζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿγ―γ€1か所γζ²Ήη”°γ«γ€γγ€ζž―渇までに10万ァむクル(ζ―Žη§’1ァむクル)ζŽ‘ζŽ˜ε‡¦η†γ‚’θ‘Œγ„γΎγ™γ€‚γ“γ10万ァむクルγι–“γ«γ€εˆθ¨ˆγ§&6バケツ1δΈ‡ζ―εˆ†&rγ‚’γ‚†γ†γ«θΆ…γˆγ‚‹ι‡γζΆ²δ½“γ‚’ε…₯ζ‰‹γ§γγΎγ™γ€‚δΈŠδ½γγƒ’デルにγͺると、梲体γε…₯ζ‰‹ι€ŸεΊ¦γŒδΈŠζ˜‡γ™γ‚‹δΈ€ζ–Ήγ§γ€γ‚ˆγ‚Šζ—©γζΆ²δ½“γŒζž―ζΈ‡γ™γ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_fluid_rig.desc.3": "&l&2εœ°δΈŠδΈ–η•Œ&rで見぀かる油田&l:&r\n\n&9原油:&r&aθ»½θ³ͺ燃料&rγŒε€šγεΎ—γ‚‰γ‚Œγ‚‹γ€‚ζ±Žη”¨ζ€§γŒι«˜γ„γ€‚\n&9θ»½ζ²Ή:&r&a精製ガス&rγŒε€šγεΎ—γ‚‰γ‚Œγ‚‹γ€‚η™Ίι›»ζ‰‹ζ΅γ¨γ—γ¦ζœ‰η”¨γ€‚\n&9重油:&r&a重θ³ͺ燃料&rγŒε€šγεΎ—γ‚‰γ‚Œγ‚‹γ€‚γƒˆγƒ«γ‚¨γƒ³γζζ–™γ€‚\n&9εŽŸζ–™ζ²Ή:&r&aγƒŠγƒ•γ‚΅&rγŒε€šγεΎ—γ‚‰γ‚Œγ‚‹γ€‚ηŸ³ζ²ΉεŒ–ε­¦ε·₯ζ₯­γγŠδΎ›γ€‚\n&9倩焢ガス:&r&a精製ガス&rγŒη°‘ε˜γ«εΎ—γ‚‰γ‚Œγ‚‹γ€‚\n&9ζ΅·ζ°΄:&r&aγƒŠγƒˆγƒͺウム&rと&aε‘©η΄ &rγŒεΎ—γ‚‰γ‚Œγ‚‹γ€‚", + "quests.medium_voltage.mv_fluid_rig.desc.4": "&l&cεœ°δΈ‹δΈ–η•Œ&r(Beneath)で見぀かる油田&l:&r\n\n&9倩焢ガス:&r&a精製ガス&rγŒεΎ—γ‚‰γ‚Œγ‚‹γ€‚εœ°δΈŠδΈ–η•Œγ‚ˆγ‚Šη”£ε‡Ίι‡γŒε€šγ„γ€‚\n&9溢岩:&rθͺ¬ζ˜ŽδΈθ¦γ€‚\n\nζœ€εˆγ―γ¨γ‚Šγ‚γˆγšθ‰²γ€…γͺε ΄ζ‰€γ‚’ζŽ˜γ£γ¦γΏγ‚‹γγŒε‰γ§γ™γ€‚ε€šγγε ΄εˆγ€ε €γ£γŸζΆ²δ½“はそγγΎγΎζŽ‘掘機γη¨Όεƒγ«δ½ΏγˆγΎγ™γ€‚", + "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&r\n\n現ζ΅ιšŽγ§γ―ηŸ³ζ²Ήγ―δΈθ¦γ§γ™γŒγ€&5EV&rζ™‚δ»£γ«γ―εΏ…ι ˆγ¨γͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€ηŸ³ζ²Ήγ‹γ‚‰γ―&aθ»½θ³ͺ燃料&r&aディーゼル&r、&aガソγƒͺン&rγͺγ©ζœ‰η”¨γͺη‡ƒζ–™γŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚\n\nγ‚†γˆγ«γ€γƒ—γƒ©γ‚Ήγƒγƒƒγ‚―γδ½œζˆγ«ηŸ³ζ²Ήγ‚’使うγγ§γ‚γ‚Œγ°γ€ηŸ³ζ²Ήγ‚’δ½Ώγ£γŸη™Ίι›»γ‚‚ζ€œθ¨Žγ™γ‚‹γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚\n\nγ‚ͺむルァンドは、こγε…ˆζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿγ‚’δ½œζˆγ™γ‚‹γΎγ§γ€ι•·γγŠδΈ–θ©±γ«γͺるをむテムです。", + "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\nγΎγŸγ€&aパタン&rは&a怍物&rγ‹γ‚‰η”Ÿη”£γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚δ»–γ«γ‚‚ζ§˜γ€…γͺη‡ƒζ–™γŒγ‚γ‚‹γγ§γ€η’Ίθͺγ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.medium_voltage.mv_brewery.title": "η™Ίι…΅γζ™‚ι–“", + "quests.medium_voltage.mv_brewery.subtitle": "γ‹γ‚‚γ™γžγƒΌ", + "quests.medium_voltage.mv_brewery.desc.1": "ι†Έι€ ζ©Ÿγ―γ€&aζ½€ζ»‘ζ²Ή&rγδ½œζˆγ«δ½Ώγˆγ‚‹ζ©Ÿζ’°γ§γ™γ€‚材料には&aγƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³&rと&aクレγ‚ͺγ‚½γƒΌγƒˆ&rまたは&a石油&rを使用します。潀滑油γη”¨ι€”γ«γ―γ€γŸγ¨γˆγ°&3θ£ζ–­ζ©Ÿ&rγεŠ ε·₯ι€ŸεΊ¦γ‚’ε€§εΉ…γ«ε‘δΈŠγ•γ›γ‚‹γ€γͺγ©γŒγ‚γ‚ŠγΎγ™γ€‚\n\nι†Έι€ ζ©ŸγεŠ ε·₯ι€ŸεΊ¦γ―γ¨γ¦γ‚‚ι…γ„γ§γ™γŒγ€δ»£γ‚γ‚Šγ«ι›»εŠ›ζΆˆθ²»γŒγ¨γ¦γ‚‚ε°‘γͺいです。プラスチックに必要γͺεˆ†γγƒγ‚€γ‚ͺγƒžγ‚Ήγ‚’δ½œζˆγ™γ‚‹γ«γ―γ€θ€‡ζ•°ε°γι†Έι€ ζ©Ÿγ‚’θ¨­η½γ™γ‚‹γ¨γ‚ˆγ„でしょう。\n\n&9γƒ’γƒ³γƒˆ:&rι†Έι€ ζ©Ÿγ§γͺく、&3η†±εˆ†θ§£η‚‰&rでも&9エチレン&rγ‚’δ½œζˆγ™γ‚‹γ“γ¨γ―ε―θƒ½γ§γ™γ€‚γΎγŸγ€ηŸ³ζ²Ήγ‹γ‚‰δ½œζˆγ™γ‚‹ζ–Ήζ³•γ‚‚ε­˜εœ¨γ—γΎγ™γ€‚&r", + "quests.medium_voltage.mv_brewery.desc.2": "&l&3γŠγΎγ‘:&r&oGT6γ§γ―γ€ι†Έι€ ζ©Ÿγ‚’δ½Ώγ£γ¦ι…’γ‚’δ½œζˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&r", + "quests.medium_voltage.mv_biomass.title": "バむγ‚ͺγƒžγ‚Ή", + "quests.medium_voltage.mv_biomass.subtitle": "怍物からε·₯ζ₯­γΈ", + "quests.medium_voltage.mv_biomass.desc.1": "怍物由ζ₯γƒ—γƒ©γ‚Ήγƒγƒƒγ‚―γ‚’γ€γγ‚γ†οΌζœ¬γƒ«γƒΌγƒˆγη›ζ¨™γ―、&dエチレン&rγδ½œζˆγ«εΏ…要とγͺる、&dγ‚¨γ‚ΏγƒŽγƒΌγƒ«&rと&dη‘«ι…Έ&rγδ½œζˆγ§γ™γ€‚\n\n&dγ‚¨γ‚ΏγƒŽγƒΌγƒ«&rγδ½œζˆγ«γ―、&aバむγ‚ͺγƒžγ‚Ή&rγθ’Έη•™γŒεΏ…要とγͺγ‚ŠγΎγ™γ€‚γ§γ―γ€γ•γ£γγγƒγ‚€γ‚ͺγƒžγ‚Ήγδ½œζˆζ–Ήζ³•から見ていきましょう。\n\n方法1:&aθ‹—ζœ¨&rと水を&dι†Έι€ ζ©Ÿ&rにε…₯γ‚Œγ‚‹γ€‚γ“γζ–Ήζ³•γ―η°‘ε˜γ§γ™γŒγ€γ¨γ¦γ‚‚ζ™‚ι–“γŒγ‹γ‹γ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_biomass.desc.2": "方法2:&aバむγ‚ͺチャフ&rγ‹γ‚‰δ½œζˆγ™γ‚‹γ€‚γƒγ‚€γ‚ͺチャフは&aγƒ—γƒ©γƒ³γƒˆγƒœγƒΌγƒ«&rγ‚’η²‰η •γ™γ‚‹γ“γ¨γ§εΎ—γ‚‰γ‚ŒγΎγ™γ€‚γ“γ‘γ‚‰γ―θ‹₯εΉ²ζ‰‹ι †γŒε€šγ„γ§γ™γŒγ€η”Ÿη”£εŠΉηŽ‡γ«ε„ͺγ‚ŒγΎγ™γ€‚γͺγŠγ€&6HVη²‰η •ζ©Ÿ&rγŒθ§£η¦γ•γ‚Œγ‚‹γΎγ§γ―γ€ε‰―η”£η‰©γ―εΎ—γ‚‰γ‚ŒγΎγ›γ‚“γ€‚\n\n&bγƒ—γƒ©γƒ³γƒˆγƒœγƒΌγƒ«&rγε…₯手方法:\n-&9γ‚΅γƒˆγ‚¦γ‚­γƒ“&rγ‚„&9ビーツ&rγι εΏƒεˆ†ι›’\n-δΈ€ιƒ¨ζœ¨ζγι εΏƒεˆ†ι›’&9#afc:tappable_logs&r\n-&aθ‹—ζœ¨&rγεœ§ηΈ\n\n&aバむγ‚ͺチャフ&rγŒδ½œγ‚ŒγŸγ‚‰γ€γγ‚Œγ‚’&dι†Έι€ ζ©Ÿ&rまたは&dη†±εˆ†θ§£η‚‰&rにε…₯γ‚Œγ‚‹γ“γ¨γ§γ€γƒγ‚€γ‚ͺγƒžγ‚ΉγεŒζˆγ§γ™γ€‚η†±εˆ†θ§£η‚‰γ§δ½œζˆγ™γ‚‹ε ΄εˆγ€δ½œζˆι‡γŒ1.6倍にγͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_biomass.desc.3": "&l&3γŠγΎγ‘:&r&oεŸγ―γ€ζœ¬εΆIC2γ«γ‚‚γƒ—γƒ©γƒ³γƒˆγƒœγƒΌγƒ«γ―ε­˜εœ¨γ—γΎγ™γ€‚γŸγ γ—IC2exγγƒ—γƒ©γƒ³γƒˆγƒœγƒΌγƒ«γ―γ€η™Ίι›»γ«δ½Ώγˆγ‚‹γƒγ‚€γ‚ͺγ‚¬γ‚Ήγ«θ»’ζ›γ™γ‚‹γŸγ‚γζ‰‹ι †γŒε€šγγ€γ¨γ¦γ‚‚δΈδΎΏγ§γ—γŸγ€‚", + "quests.medium_voltage.mv_distillery.title": "θ’Έη•™ζ©Ÿ", + "quests.medium_voltage.mv_distillery.subtitle": "すべてγι“γ―θ’Έη•™ζ©Ÿγ«ι€šγš", + "quests.medium_voltage.mv_distillery.desc.1": "εΏ…γšδ»₯δΈ‹γ‚’θͺ­γ‚“でください。\n\n&aηŸ³ζ²Ήγƒ—γƒ©γ‚Ήγƒγƒƒγ‚―&rγ‚’δ½Ώη”¨γ™γ‚‹ε ΄εˆγ€εΏ…θ¦γ¨γͺγ‚‹γγ―&3LVθ’Έη•™ζ©Ÿ&rです。\n\n対して、&a怍物由ζ₯プラスチック&rγ‚’δ½Ώη”¨γ™γ‚‹ε ΄εˆγ―γ€&3MVθ’Έη•™ζ©Ÿ&rγŒεΏ…ι ˆγ¨γͺγ‚ŠγΎγ™γ€‚\n\nLVかMVγγ„γšγ‚Œγ‹δΈ€ζ–Ήγ‚’δ½œζˆγ™γ‚Œγ°γ€γ‚―γ‚¨γ‚Ήγƒˆγ‚―γƒͺをとγͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_distillery.desc.2": "では、&9θ’Έη•™ζ©Ÿ&rに぀いてみていきましょう。&aEMI&rγ‚’γΏγ‚Œγ°εˆ†γ‹γ‚‹γ‚ˆγ†γ«γ€θ’Έη•™ι–’ι€£γγƒ¬γ‚·γƒ”はとても耇雑です。\n\nεŸγ―、&3θ’Έη•™ζ©Ÿ&rγ«γ‚ˆγ‚‹γƒ¬γ‚·γƒ”γε€§εŠγ―、&3θ’Έη•™ε‘”&rγγγ‚Œγ¨ε…±ι€šγ§γ™γ€‚γŸγ γ—γ€θ’Έη•™ζ©Ÿγ§εŒζ™‚γ«δ½œγ‚Œγ‚‹η”Ÿζˆη‰©γ―1η¨ι‘žγγΏγ§γ€δ»–γη”Ÿζˆη‰©γ―η ΄ζ£„γ•γ‚ŒγΎγ™γ€‚\n\nこγη‚Ήγ«γŠγ„て、&3θ’Έη•™ζ©Ÿ&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.subtitle": "か぀てγζ „ε…‰", + "quests.medium_voltage.mv_benzene.desc.1": "&aベンゼン&rは&9ガス燃料&rγγ²γ¨γ€γ§γ™γ€‚θͺ¬ζ˜Žγ‚’θͺ­γ‚“γ§γ„γ‚‰γ‚Œγͺい人γγŸγ‚γ«γ€γΎγšγ―ε…₯手方法から紹介していきます。\n\n1぀η›γε…₯手方法は、&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γͺγŠγ€Gregtechγ«γŠγ„γ¦γ―γ€ε€šγγδΈ‹δ½ζ©Ÿζ’°γ§δΈ¦εˆ—δ½œζ₯­γ™γ‚‹ζ–ΉγŒγ€ε°‘ζ•°γδΈŠδ½ζ©Ÿζ’°γ§εŠ ε·₯γ™γ‚‹γ‚ˆγ‚Šγ‚‚θ‰―γ„γ“γ¨γŒε€šγ„γ§γ™γ€‚γ“γ‚Œγ―γ€δΈŠδ½ζ©Ÿζ’°γ«γͺγ‚‹γ»γ©ζΆˆθ²»ι›»εŠ›γŒε€šγ„γ‹γ‚‰γ§γ™γ€‚\n\n&aベンゼン&rは&3ガスタービン&rγ§δ½Ώη”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&eディーゼル&rに比べてベンゼンγη™Ίι›»εŠΉηŽ‡γ―ζ‚ͺγ„γ§γ™γŒγ€&6ζ”Ήθ³ͺガス&rγ«η²Ύθ£½γ™γ‚Œγ°ζ€§θƒ½γ‚’εΊ•δΈŠγ’γ§γγΎγ™γ€‚γ©γη™Ίι›»ζ–ΉεΌγ‚’ιΈγΆγ‹γ―γ€ζœ€η΅‚ηš„γ«γ―γƒ—γƒ¬γ‚€γƒ€γƒΌγ§γ‚γ‚‹γ‚γͺたγεˆ€ζ–­γ«ε§”γ­γ‚‰γ‚Œγ¦γ„γΎγ™γ€‚", + "quests.medium_voltage.mv_benzene.desc.3": "&l&3δ½™θ«‡οΌš&r&oベンゼンはGTCEuγι ƒγ‹γ‚‰γšγ£γ¨ζŠœηΎ€γ«εΌ·εŠ›γͺγ‚¬γ‚Ήη‡ƒζ–™γ§γ€γ‚γΎγ‚Šγ«γ‚‚εΌ·εŠ›γ γ£γŸγγ§γƒŸγƒΌγƒ γ«γΎγ§γͺγ£γ¦γŸγ‚“γ γ‚ˆγ€‚γ§γ‚‚δ»Šγ―γ€γγζ „光は見る影もγͺくγͺって...δ»₯前ほどγζ΄»θΊγ―見込めγͺいかもね。", + "quests.medium_voltage.reformate_gas.title": "ガス革命", + "quests.medium_voltage.reformate_gas.subtitle": "εΌ•ε°Žγ‚’ζΈ‘γ™", + "quests.medium_voltage.reformate_gas.desc": "&7ζ”Ήθ³ͺガス&rは、&bMV&rでγγ‚¬γ‚Ήη‡ƒζ–™γ¨γ—γ¦ιžεΈΈγ«ε„ͺ秀です。MVでガス発電を選ぢγͺγ‚‰γœγ²δΈ»εŠ›γ«γ—γŸγ„η‡ƒζ–™γ§γ™γ€‚ζœ€ι©γͺεŠΉηŽ‡γ§ι‹η”¨γ™γ‚‹γ«γ―γ€&61基γζΆ²εŒ–ε‘”&rと&62基γη†±εˆ†θ§£η‚‰&rγ‚’γγ‚γˆγ‚‹γ γ‘γ§γ‚ˆγγ€γγ“γ‹γ‚‰γ―γ“γε„ͺη§€γͺガスをε‰εšγ—γ¦η”Ÿη”£γ§γγΎγ™γ€‚\n\nγŸγ γ—γ€γγε‰γ«&5レニウム&rγ‚’η’ΊδΏγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ“γ‚Œγ―&7TerraFirmaCraft&rγζš‘く乾η‡₯γ—γŸγƒγ‚€γ‚ͺームでγγΏε…₯手できる新しい素材です。使用量はごく少γͺγ„γŸγ‚γ€ι‰±θ„ˆγ‚’1γ€θ¦‹γ€γ‘γ¦γ—γΎγˆγ°γ€γƒ’γƒƒγƒ‰γƒ‘γƒƒγ‚―γη΅‚盀まで、少γͺくとも&6HV&rγ«εˆ°ι”γ™γ‚‹γΎγ§γ―εεˆ†θΆ³γ‚Šγ‚‹γ§γ—γ‚‡γ†γ€‚&6HV&rγ«εˆ°ι”γ—γ€&6クラッカー&rγ‚’δ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚Œγ°γ€γ“γγ‚¬γ‚Ήγ―δΊ‹εŸδΈŠη„‘限供硦も可能にγͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_light_fuel.title": "θ»½θ³ͺ燃料", + "quests.medium_voltage.mv_light_fuel.subtitle": "とてもかるい", + "quests.medium_voltage.mv_light_fuel.desc": "石油γθ’Έη•™γ§εΎ—γ‚‰γ‚Œγ‚‹η‡ƒζ–™γ«γ―η‘«ι»„γŒε«γΎγ‚Œγ¦γ„γ‚‹γŸγ‚γ€γγ‚Œγ‚‰γ‚’ι™€εŽ»γ™γ‚‹γŸγ‚γζ‰‹ι †γŒεΏ…要です。\n\n水素とγεεΏœγ§δ½œγ‚‰γ‚Œγ‚‹&aη‘«εŒ–ζ°΄η΄ &rは、&3ι›»θ§£ζ§½&rγ‚’η”¨γ„γ‚‹γ“γ¨γ§ε†εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&3εŒ–ε­¦εεΏœε™¨&rと&3ι›»θ§£ζ§½&rγ‚’ιš£ζŽ₯させることで、こγγƒ—γƒ­γ‚»γ‚Ήγ‚’η°‘単にθ‡ͺε‹•εŒ–γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γζ–Ήζ³•γ‚’δ½Ώγ†ε ΄εˆγ€ζ©Ÿζ’°γθ¨­εšη”»ι’を開き、搬出青からγζ¬ε…₯γ‚’θ¨±ε―γ™γ‚‹γ‚ˆγ†γ«θ¨­εšγ—ましょう。\n\n&aθ»½θ³ͺ燃料&rγ―γ€γγ“γγ“ι«˜ζ€§θƒ½γͺη‡ƒζ–™γ§γ™γ€‚γŸγ γ—γ€ζ¬‘γγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ•γ‚‰γ«ι«˜ζ€§θƒ½γͺη‡ƒζ–™γŒη΄Ήδ»‹γ•γ‚Œγ¦γ„γΎγ™γ€‚", + "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εŸΊγ€εΎŒθ€…γ«2εŸΊη”¨γ„γ‚‹γ“γ¨γ§γ€γ‘γ‚‡γ†γ©γ‚ˆγ„ε‰²εˆγ«γͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_diesel.desc.2": "γΎγŸγ€&d重油&rから&a重θ³ͺ燃料&rγ‚’δ½œζˆγ™γ‚‹γ“γ¨γ§γ€γ‚³γ‚Ήγƒˆγ‚’ε€§εΉ…γ«ζΈ›γ‚‰γ™γ“γ¨γŒγ§γγΎγ™γ€‚γΎγŸγ€&dγ‚ͺむルァンド&rγ‹γ‚‰εΎ—γ‚‰γ‚Œγ‚‹ηŸ³ζ²Ήγ‚’δ½Ώγ†γγ‚‚ζœ‰εŠΉγ§γ™γ€‚\n\n&o(θ©³η΄°:原油8.33->ディーゼル6γ€εŽŸζ²Ή5+重油0.4->ディーゼル6)&r\n\n&eγƒ’γƒ³γƒˆ:&r&3θ’Έη•™ε‘”&rγδ½Ώη”¨γ―γŠγ™γ™γ‚γ—γΎγ›γ‚“γ€‚θ’Έη•™ε‘”γ§γ―ι‡θ³ͺ燃料と軽θ³ͺ燃料γδΈ‘ζ–ΉγŒδΈ€ζ°—γ«εΎ—γ‚‰γ‚ŒγΎγ™γŒγ€ζΆˆθ²»ι›»εŠ›γ«ε―Ύγ—γ¦εΎ—γ‚‰γ‚Œγ‚‹η‡ƒζ–™γι‡γŒε°‘γͺγγ€εŠΉηŽ‡γŒγ¨γ¦γ‚‚ζ‚ͺいです。", + "quests.medium_voltage.mv_diesel.desc.3": "γ—γŸγŒγ£γ¦γ€δΈ‹δ½γθ’Έη•™ζ©Ÿγ‚’ε€šζ•°δ½œζˆγ—γ¦εŠ ε·₯γ™γ‚‹ζ–ΉγŒγ€η΅ζžœηš„γ«γ―γŠεΎ—γ§γ™γ€‚\n\n&aディーゼル&rは&3η‡ƒη„Όη™Ίι›»ζ©Ÿ&rγ§δ½Ώη”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γΎγŸγ€&6HV&r時代にγͺると、&6γ‚»γ‚Ώγƒ³ζ·»εŠ γƒ‡γ‚£γƒΌγ‚Όγƒ«&rへγεŠ ε·₯γŒθ§£η¦γ•γ‚ŒγΎγ™γ€‚δ»–γη‡ƒζ–™γ«ζ―”γΉγ€γƒ‡γ‚£γƒΌγ‚Όγƒ«γ―γ‚ˆγ‚Šι«˜εŠΉηŽ‡γ§γ™γŒγ€εΌ•γζ›γˆγ«η²Ύθ£½γƒ—γƒ­γ‚»γ‚ΉγŒγ‚„γ‚„θ€‡ι›‘γ§γ™γ€‚&eηŸ³ζ²Ήγƒ—γƒ©γ‚Ήγƒγƒƒγ‚―&rγ‚’η›ζŒ‡γ™ε ΄εˆγ§γ‚γ‚Œγ°γ€ζ—’存γζ©Ÿζ’°γ§δ½œζˆγ§γγ‚‹γŸγ‚γ€ιΈζŠžθ‚’γ¨γ—γ¦ζœ‰εŠΉγ§γ—γ‚‡γ†γ€‚", + "quests.medium_voltage.coal_tower.title": "ζΆ²εŒ–ε‘”", + "quests.medium_voltage.coal_tower.subtitle": "γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γͺγ‚“γ¦γ‚γ‚Œγ°γ‚γ‚‹γ γ‘γ„γ„γ§γ™γ‹γ‚‰γ­", + "quests.medium_voltage.coal_tower.desc.1": "&bζΆ²εŒ–ε‘”&r は、&aζ”Ήθ³ͺガス&rγ‚’γ―γ˜γ‚γ€&7コールタール&rγ‚„&7εˆζˆγ‚¬γ‚Ή&rγͺどγε‰―η”£η‰©γ‚’δ½œγ‚‹γŸγ‚γζ–°γ—い&bγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ©Ÿζ’°&rです。使う&9コむル&rγη΄ ζγ«γ‚ˆγ£γ¦γ€&7EU/t&rγζΆˆθ²»ι‡γŒε‰²εΌ•γ•γ‚ŒγΎγ™γ€‚γ‚³γ‚€γƒ«γ«γ‚«γƒΌγ‚½γƒ«γ‚’εˆγ‚γ›γ¦shiftγ‚’ζŠΌγ›γ°γ€γγε‰²εΌ•εŠΉζžœγ‚’η’Ίθͺγ§γγΎγ™γ€‚\n\nγΎγŸγ€&9ζΆ²εŒ–ε‘”&rは&7ζ°΄η΄ &rγ‚’ζŠ•ε…₯γ™γ‚‹γ“γ¨γ§η¨Όεƒγ‚’γƒ–γƒΌγ‚Ήγƒˆγ§γγ€ε‡¦η†ζ™‚ι–“γŒηŸ­γγͺγ‚‹εˆ†γ€ζΆˆθ²»γ‚¨γƒγƒ«γ‚γƒΌγ‚‚ε‰ŠζΈ›γ•γ‚ŒγΎγ™γ€‚ε‹•γ‹γ™ιš›γ―γ€ι©εˆ‡γͺ&6ε›žθ·―η•ͺ号&rγθ¨­εšγ‚’εΏ˜γ‚Œγͺγ„γ‚ˆγ†γ«γ—γ¦γγ γ•γ„γ€‚\n\nθ£œθΆ³γ¨γ—γ¦γ€1秒=20tickです。そγγŸγ‚γ€tickごとγζΆˆθ²»ι‡γ«20γ‚’ζŽ›γ‘γ‚Œγ°γ€1η§’γ‚γŸγ‚ŠγζΆˆθ²»ι‡γŒζ±‚γ‚γ‚‰γ‚ŒγΎγ™γ€‚", + "quests.medium_voltage.coal_tower.desc.2": "&l&3δ½™θ«‡οΌš&r&oεŸγ―γ€ζ Έεˆ†θ£‚η‚‰γ‚’δ½œγ£γŸδΊΊγ¨γ€ζΆ²εŒ–ε‘”γεˆζœŸγƒ‡γ‚Άγ‚€γƒ³γ‚’δ½œγ£γŸδΊΊγ―同じγͺγ‚“γ γ‚ˆγ€‚γ™γ”γ„γͺ。", + "quests.medium_voltage.mv_jetpack.title": "ι³₯人間あらわる", + "quests.medium_voltage.mv_jetpack.subtitle": "ι³₯……ι³₯?", + "quests.medium_voltage.mv_jetpack.desc": "γ‚Έγ‚§γƒƒγƒˆγƒ‘γƒƒγ‚―γ¨&a梲体燃料&rγŒγ‚γ‚Œγ°γ€ι£›θ‘Œγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ‚Έγ‚§γƒƒγƒˆγƒ‘γƒƒγ‚―γ«η‡ƒζ–™γ‚’ε…₯γ‚Œγ‚‹γ«γ―γ€γƒ‰γƒ©γƒ γΎγŸγ―ηΌΆθ©°ζ©ŸγŒεΏ…θ¦γ§γ™γ€‚\n\n&4H&r(初期設εš)γ‚’ζŠΌγ™γ¨γ€γƒ›γƒγƒΌγƒ’γƒΌγƒ‰γΈγεˆ‡γ‚Šζ›ΏγˆγŒε―能です。", + "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γ¨εεΏœγ•γ›γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&9η™Ίι…΅γ—γŸγƒγ‚€γ‚ͺγƒžγ‚Ή&rγ‚’&3θ’Έη•™ε‘”&rで加ε·₯γ™γ‚‹γ¨γ€γ‚ˆγ‚Šε€šγγε‰―η”£η‰©γŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚\n\nη™Ίι›»ζ©Ÿγη‡ƒζ–™γ«γ‚¨γ‚ΏγƒŽγƒΌγƒ«γ‚’使用するγγ―硢対にやめましょう。エコγͺη‡ƒζ–™γŒζ¬²γ—γ„γγ§γ‚γ‚Œγ°γ€&dベンゼン&rγζ–ΉγŒγ―γ‚‹γ‹γ«ζœ‰η”¨γ§γ™γ€‚", + "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": "ε€šι‡ζΆ²δ½“γƒ‘γ‚€γƒ—", + "quests.medium_voltage.mv_mutli_channel.subtitle": "γ“γ‚Œγ‚‚γ†AE2では?", + "quests.medium_voltage.mv_mutli_channel.desc": "ι€šεΈΈγ&o&dGregTech&rζΆ²δ½“γƒ‘γ‚€γƒ—γ―γ€εŒζ™‚γ«1η¨ι‘žγζΆ²δ½“しか搬送できません。\n\nしかしγͺγŒγ‚‰γ€&3四重梲体パむプ&rを使うことで、4η¨ι‘žγζΆ²δ½“γ‚’εŒζ™‚γ«ζ¬ι€γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ•γ‚‰γ«γ―、9η¨ι‘žγζΆ²δ½“γ‚’εŒζ™‚γ«ζ¬ι€γ§γγ‚‹γ€&3九重梲体パむプ&rというもγγ‚‚ε­˜εœ¨γ—γΎγ™γ€‚γ“γ‚Œγ‚‰γ‚’δ½Ώγ†γ“γ¨γ§γ€γƒ‘γ‚€γƒ—ε‘¨γ‚Šγ‚’γ¨γ¦γ‚‚γ‚³γƒ³γƒ‘γ‚―γƒˆγ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nη‰Ήγ«γ€ε€šη¨γζΆ²δ½“γ‚’εŒζ™‚γ«η”Ÿη”£γ™γ‚‹&3θ’Έη•™ε‘”&rγŒθ§£η¦γ•γ‚Œγ‚‹&5EV&rζ™‚δ»£γ«γŠγ„γ¦γ€&3九重梲体パむプ&rγ―ιžεΈΈγ«ζœ‰η”¨γ§γ™γ€‚\n\nγ„γšγ‚Œγ‹γε€šι‡ζΆ²δ½“γƒ‘γ‚€γƒ—γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ§γ€γ‚―γ‚¨γ‚Ήγƒˆγ‚―γƒͺをとγͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_naphtha.title": "γƒŠγƒ•γ‚΅γ‹γ€θ»½θ³ͺ燃料か", + "quests.medium_voltage.mv_naphtha.subtitle": "γƒŠγƒ•γ‚΅γ¨γ―δ½•γ‚΅οΌŸ", + "quests.medium_voltage.mv_naphtha.desc": "石油γθ’Έη•™γ§εΎ—γ‚‰γ‚Œγ‚‹η‡ƒζ–™γ«γ―η‘«ι»„γŒε«γΎγ‚Œγ¦γ„γ‚‹γŸγ‚γ€γγ‚Œγ‚‰γ‚’ι™€εŽ»γ™γ‚‹γŸγ‚γζ‰‹ι †γŒεΏ…要です。\n\n水素とγεεΏœγ§δ½œγ‚‰γ‚Œγ‚‹&aη‘«εŒ–ζ°΄η΄ &rは、&3ι›»θ§£ζ§½&rγ‚’η”¨γ„γ‚‹γ“γ¨γ§ε†εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&3εŒ–ε­¦εεΏœε™¨&rと&3ι›»θ§£ζ§½&rγ‚’ιš£ζŽ₯させることで、こγγƒ—γƒ­γ‚»γ‚Ήγ‚’η°‘単にθ‡ͺε‹•εŒ–γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γζ–Ήζ³•γ‚’δ½Ώγ†ε ΄εˆγ€ζ©Ÿζ’°γθ¨­εšη”»ι’を開き、搬出青からγζ¬ε…₯γ‚’θ¨±ε―γ™γ‚‹γ‚ˆγ†γ«θ¨­εšγ—ましょう。\n\n&aγƒŠγƒ•γ‚΅&rγ―ηŸ³ζ²Ήθ£½ε“γδ½œζˆγ«γ¨γ¦γ‚‚ζœ‰η”¨γ§γ‚γ‚‹γ γ‘γ§γͺく、γͺγœγ‹η‡ƒζ–™γ¨γ—γ¦γ‚‚ι«˜ζ€§θƒ½γ§γ™(εΌ±δ½“εŒ–γ•γ‚Œγ‚‹δΊˆεšγ‚‰γ—い)γ€‚γŸγ γ—γ€γ‚ͺγ‚€γƒ«γ‚΅γƒ³γƒ‰γ‹γ‚‰εΎ—γ‚‰γ‚Œγ‚‹εŽŸζ²Ήγ‚’δ½Ώη”¨γ™γ‚‹ε ΄εˆγ€θ»½θ³ͺ燃料γζ–ΉγŒθ‰―γ„γ“γ¨γŒε€šγ„γ§γ™γ€‚θ©³η΄°γ―ηΆšγγ‚―γ‚¨γ‚Ήγƒˆγ‚’ε‚η…§γ—γ¦γγ γ•γ„γ€‚", + "quests.medium_voltage.mv_fuel_cracking.title": "燃料γεˆ†θ§£", + "quests.medium_voltage.mv_fuel_cracking.subtitle": "γͺんもわからん", + "quests.medium_voltage.mv_fuel_cracking.desc.1": "η‚­εŒ–ζ°΄η΄ γ‚’δ½œζˆγ™γ‚‹γ«γ―γ€η‡ƒζ–™γ‚’εˆ†θ§£γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nηŸ³ζ²Ήγ‹γ‚‰&dエチレン&rγ‚’δ½œζˆγ™γ‚‹γƒ¬γ‚·γƒ”γ―ε€§ε€‰γ«ε€šγ„γŸγ‚γ€ι€”δΈ­γ§ζ··δΉ±γ—γŒγ‘γ§γ™γ€‚\n\nエチレンγδ½œζˆγ«γŠγ„γ¦ζœ€ι©γͺ方法は、&aγƒŠγƒ•γ‚΅&rγ‚’&3εŒ–ε­¦εεΏœε™¨&rγ§θ’Έζ°—εˆ†θ§£γ™γ‚‹γ‚‚γγ§γ™γ€‚γ‚ˆγ‚ŠεŠΉηŽ‡ηš„γ«γ‚¨γƒγƒ¬γƒ³γ‚’δ½œζˆγ—γŸγ„γγ§γ‚γ‚Œγ°γ€&aεεˆ†γ«θ’Έζ°—γ§εˆ†θ§£γ•γ‚ŒγŸ&rγ¨ζ›Έγ‹γ‚Œγ¦γ„γ‚‹ζ–ΉγζΆ²δ½“を使いましょう。", + "quests.medium_voltage.mv_fuel_cracking.desc.2": "ηΎζ™‚η‚Ήγ§γ―γ€η‡ƒζ–™γ‚’εˆ†θ§£γ™γ‚‹γ¨ζΆ²δ½“γι‡γ―εŠεˆ†γ«γͺってしまいます。&6HV&r時代にγͺγ‚‹γ¨γ€γ“γ‚Œγ‚’γƒ­γ‚Ήη„‘γ—γ§θ‘Œγˆγ‚‹ζ‰‹ζ΅γŒθ§£η¦γ•γ‚ŒγΎγ™γ€‚\n\n&9γƒ’γƒ³γƒˆ:&rGregtechγ«γŠγ„γ¦γ―γ‚γ‚ŠγŒγ‘γ§γ™γŒγ€δΈ‹δ½ζ©Ÿζ’°γ«γ‚ˆγ‚‹γƒ¬γ‚·γƒ”γ―γ¨γ¦γ‚‚ιžεŠΉηŽ‡γ§γ™γ€‚&3θ’Έη•™ε‘”&rγŒθ§£η¦γ•γ‚Œγ‚‹γ¨γ€ηŸ³ζ²ΉγεŠ ε·₯γŒε€§εΉ…γ«ζ₯½γ«γͺγ‚ŠγΎγ™γŒγ€θ§£η¦γ•γ‚Œγ‚‹γγ―γšγ£γ¨ι…γ„γ§γ™γ€‚δ»Šγ―ζˆ‘ζ…’γ—γ¦ζ™ι€šγ&3θ’Έη•™ζ©Ÿ&rを使いましょう。", + "quests.medium_voltage.mv_ethylene.title": "エチレン", + "quests.medium_voltage.mv_ethylene.subtitle": "η‚­εŒ–ζ°΄η΄ γγ²γ¨γ€", + "quests.medium_voltage.mv_ethylene.desc": "ここはエチレン閒連γζœ€η΅‚γ‚―γ‚¨γ‚Ήγƒˆγ§γ™γ€‚\n\nエチレンγδ½œζˆζ–Ήζ³•に぀いては、手前γγ‚―γ‚¨γ‚ΉγƒˆηΎ€γ‚’ε‚η…§γ—γ¦γγ γ•γ„γ€‚\n\n&aエチレン&rγ‹γ‚‰γ―γƒ—γƒ©γ‚Ήγƒγƒƒγ‚―γŒδ½œζˆγ§γγ‚‹γ»γ‹γ€γ„γγ€γ‹γεŒ–ε­¦εεΏœγƒ¬γ‚·γƒ”γ«γ‚‚δ½Ώη”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.medium_voltage.mv_sulfuric_acid.title": "η‘«ι…Έ", + "quests.medium_voltage.mv_sulfuric_acid.subtitle": "H2SO4γŒγ‚„γ£γ¦γγŸ", + "quests.medium_voltage.mv_sulfuric_acid.desc.1": "η‘«ι…Έγγƒ¬γ‚·γƒ”γ‚’EMIで参照するγγ―とても倧倉γͺγγ§γ€γ“こでは一η•ͺ簑単γͺレシピを紹介します。\n\nγͺγŠγ€η‘«ι…Έγη”¨ι€”γ―γ¨γ¦γ‚‚ε€šγ„γ§γ™γ€‚γγγŸγ‚γ€γ§γγ‚‹γ γ‘早くθ‡ͺε‹•εŒ–γ™γ‚‹γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚", + "quests.medium_voltage.mv_sulfuric_acid.desc.2": "η‘«ι…Έγδ½œζˆγ‚’θ‡ͺε‹•εŒ–γ™γ‚‹γ«γ―γ€3機γLVεŒ–ε­¦εεΏœε™¨γŒεΏ…θ¦γ§γ™γ€‚δ½œζˆγ—γŸη‘«ι…Έγ‚’εˆ©η”¨γ—γ‚„γ™γ„γ‚ˆγ†γ«γ€γ“γ‚Œε°‚η”¨γη‹¬η«‹γ—γŸι›»εŠ›γƒγƒƒγƒˆγƒ―γƒΌγ‚―γ‚’δ½œγ£γ¦γŠγγ¨γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚\n\n&9-&r手順1:&aη‘«ι»„&rγ‚’&bι…Έη΄ &rγ¨εεΏœγ•γ›γ€&aδΊŒι…ΈεŒ–η‘«ι»„&rγ‚’δ½œζˆγ™γ‚‹γ€‚\n&9-&r手順2:&aδΊŒι…ΈεŒ–η‘«ι»„&rをさらに&bι…Έη΄ &rγ¨εεΏœγ•γ›γ€&aδΈ‰ι…ΈεŒ–η‘«ι»„&rγ‚’δ½œζˆγ™γ‚‹γ€‚\n&9-&r手順3:&aδΈ‰ι…ΈεŒ–η‘«ι»„&rと&bζ°΄&rγ‚’εεΏœγ•γ›γ€&eη‘«ι…Έ&rにする。", + "quests.medium_voltage.mv_sulfuric_acid.desc.3": "&l&3γŠγΎγ‘:&r&oGT5時代γεŒ–ε­¦εεΏœε™¨γ―ζΆ²δ½“γ‚Ήγƒ­γƒƒγƒˆγŒ1γ€γ—γ‹η„‘γ‹γ£γŸγŸγ‚γ€θ€‡ζ•°ζΆ²δ½“γεεΏœγ«γ―&dセル&fγŒεΏ…θ¦γ§γ—γŸγ€‚η‘«ι…Έγδ½œζˆγ‚‚δΎ‹ε€–γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ§γ—γŸγŒγ€γ‚»γƒ«1ε€‹γ‚’θ€‡ζ•°ζ©Ÿζ’°γ§γŸγ‚‰γ„ε›žγ—γ«γ™γ‚‹γ€γ¨γ¦γ‚‚ζ„‰εΏ«γͺζ‰‹ζ³•γ‚‚η”ŸγΏε‡Ίγ•γ‚Œγ¦γ„γΎγ—γŸγ€‚", + "quests.medium_voltage.mv_aciditic.title": "とても危険γͺ梲体", + "quests.medium_voltage.mv_aciditic.subtitle": "ァンダー!", + "quests.medium_voltage.mv_aciditic.desc.1": "&9η‘«ι…Έ&rγͺど、一部γζΆ²δ½“は&aι…Έζ€§&rです。\n\nι€šεΈΈγζΆ²δ½“γƒ‘γ‚€γƒ—γ§γ―γ€γ“γ†γ„γ£γŸι…Έζ€§γζΆ²δ½“γ‚’ζ¬ι€γ™γ‚‹γ“γ¨γŒε‡Ίζ₯ません。\n\n&bMV&rγζ΅ιšŽγ§γ―、&a金&rγγƒ‘γ‚€γƒ—γŒζœ€γ‚‚δ½Žγ‚³γ‚Ήγƒˆγ§δ½œζˆγ§γγΎγ™γ€‚γΎγŸγ€&aγƒγƒŠγ‚Έγ‚¦γƒ ι‹Ό&rγ‚„&aγ‚―γƒ­γƒ &rγγƒ‘むプも、酸性梲体を搬送出ζ₯ます。\n\n&6HV&r時代では、&aステンレス鋼&rγ‚„&aポγƒͺγƒ†γƒˆγƒ©γƒ•γƒ«γ‚ͺロエチレン&r(早口)γŒθ§£η¦γ•γ‚ŒγΎγ™γ€‚", + "quests.medium_voltage.mv_aciditic.desc.2": "酸性梲体γθ²―蔡方法は、現時点で3η¨ι‘žγ‚γ‚ŠγΎγ™γ€‚γ™γͺわけ&dガラス製バむをル&r、&d金γγƒ‰γƒ©γƒ &r、&dスーパータンク&rγ3぀です。ガラス製バむをルは、要するに酸性梲体用γ&9梲体セル&rです。金γγƒ‰γƒ©γƒ γ―θͺ¬ζ˜ŽδΈθ¦γ§γ—γ‚‡γ†γ€‚ε°‘γ€…δ½œγ‚‹γγ«ζ‰‹ι–“γŒγ‹γ‹γ‚ŠγΎγ™γŒγ€γ‚ΉγƒΌγƒ‘γƒΌγ‚Ώγƒ³γ‚―γ―γ¨γ¦γ‚‚εΌ·εŠ›γ§γ™γ€‚γ‚ΉγƒΌγƒ‘γƒΌγ‚Ώγƒ³γ‚―γ―ε€§εΉι‡γ§γ€γͺγŠγ‹γ€θ²―θ”΅γ§γγ‚‹ζΆ²δ½“γ«εˆΆι™γŒγ‚γ‚ŠγΎγ›γ‚“γ€‚\n\n&c注意:&rι€šεΈΈγγƒ‘γ‚€γƒ—γ«ι…Έγ‚’ζ΅γ—γŸε ΄εˆγ€&c梲体γζΆˆε€±&r、&cパむプ火災&rγͺγ©γŒη™Ίη”Ÿγ™γ‚‹δΈŠγ€ε€šγγε ΄εˆθ‡ͺεˆ†γ‚‚&c即死&rします。注意しましょう。\n\n&l&3γŠγΎγ‘:&r&oι…Έζ€§ζΆ²δ½“ε‘¨γ‚Šγδ»•ζ§˜γ―GT6から輸ε…₯γ•γ‚ŒγŸγ‚‚γγ§γ™γ€‚", + "quests.medium_voltage.mv_aciditic.task": "γ γ„γŸγ„γ‚γ‹γ£γŸ", + "quests.medium_voltage.mv_hydrochloric.title": "ε‘©ι…Έ", + "quests.medium_voltage.mv_hydrochloric.subtitle": "倧量に使う危険物", + "quests.medium_voltage.mv_hydrochloric.desc": "&9ε‘©ι…Έ&rは、&aι…Έη΄ &rと&aε‘©η΄ &rγ‚’εεΏœγ•γ›γ‚‹γ“γ¨γ§δ½œζˆγ§γγΎγ™γ€‚\n\nそγδ»–、&aε‘©η΄ &rι–’ι€£γεŒ–ε­¦εεΏœγ‚’θ‘Œγ†γ“γ¨γ§γ‚‚γ€ε‰―産物としてε…₯手できます。瑫酸と異γͺγ‚Šγ€ε°‚η”¨γη”Ÿη”£γƒ©γ‚€γƒ³γ‚’η΅„γ‚€εΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.medium_voltage.mv_hydrogen.title": "水素ガス", + "quests.medium_voltage.mv_hydrogen.subtitle": "γ‚γο½žζ°΄η΄ γιŸ³ο½žοΌ", + "quests.medium_voltage.mv_hydrogen.desc": "&dζ°΄η΄ &rγ―ζ§˜γ€…γͺ手ζ΅γ§ε…₯ζ‰‹γ§γγΎγ™γ€‚εŒ–ε­¦εεΏœγƒ¬γ‚·γƒ”γδΈ­γ«γ―γ€ζ°΄η΄ γŒε‰―η”£η‰©γ¨γͺγ‚‹εεΏœγ‚‚ε€šγ„γ§γ™γ€‚\n\n&dηŸ³ζ²ΉεŒ–ε­¦&rγ‚’γ‚„γ‚‹ε ΄εˆγ€ε€§ι‡γ&dパタン&rγ‚’ε…₯手することにγͺγ‚ŠγΎγ™γ€‚γƒ‘γ‚Ώγƒ³γ‚’&aι›»ζ°—εˆ†θ§£&rすることでも、&dζ°΄η΄ &rγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚γΎγŸγ€&9ζ°΄&rγι›»ζ°—εˆ†θ§£γ§γ‚‚εΎ—γ‚‰γ‚ŒγΎγ™γŒγ€γγε ΄εˆγ―δ»£γ‚γ‚Šγ«&9ζ΅·ζ°΄&rγ‚’δ½Ώγ†γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚ζ΅·ζ°΄γζ–ΉγŒγ€ζ°΄γ‚ˆγ‚Šγ‚‚ε‰―η”£η‰©γŒε€šγ„γ‹γ‚‰γ§γ™γ€‚\n\nζœ€ι©γͺγγ―&9ζ°΄&rと&dパタン&rγ‚’εεΏœγ•γ›γ‚‹ζ–Ήζ³•γ§γ™γŒγ€γ“γγƒ¬γ‚·γƒ”は&6HV&rγΎγ§θ§£η¦γ•γ‚Œγšγ€γΎγŸγ¨γ¦γ‚‚ζ™‚ι–“γŒγ‹γ‹γ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_chlorine.title": "呩素ガス", + "quests.medium_voltage.mv_chlorine.subtitle": "ε‘©γγ‚¬γ‚Ή", + "quests.medium_voltage.mv_chlorine.desc": "&dε‘©η΄ &rγ―γ¨γ¦γ‚‚ζœ‰η”¨γͺεŒ–ε­¦η‰©θ³ͺです。&dε‘©ι…Έ&rγͺγ©γ€ε€šγγη‰©θ³ͺγζζ–™γ¨γͺγ‚ŠγΎγ™γ€‚\n\n&dε‘©η΄ &rγ―ζ§˜γ€…γͺ手ζ΅γ§δ½œζˆγ§γγΎγ™γŒγ€η‰Ήγ«&dε‘©&rγ‹γ‚‰δ½œζˆγ•γ‚ŒγΎγ™γ€‚ε‘©γε…₯ζ‰‹γ―η°‘ε˜γͺγγ§γ€ε‘©η΄ γδ½œζˆγ«ε›°γ‚‹γ“とはγͺいでしょう。\n\nγΎγŸγ€&aζ΅·ζ°΄γι›»ζ°—εˆ†θ§£&rγ―εΊη›€γ«γŠγ‘γ‚‹η”Ÿη”£ζ‰‹ζ΅γ¨γ—γ¦γ¨γ¦γ‚‚εΌ·εŠ›γ§γ™γ€‚γŸγ γ—γ€εŠ ε·₯にかγͺγ‚Šγζ™‚間を要します。", + "quests.medium_voltage.mv_seawater.title": "ζ΅·ζ°΄", + "quests.medium_voltage.mv_seawater.subtitle": "そγεΎ‘ζ©γ―ε±±γ‚ˆγ‚Šγ‚‚ι«˜γζ΅·γ‚ˆγ‚Šγ‚‚ζ·±γβ€¦β€¦", + "quests.medium_voltage.mv_seawater.desc": "&9ζ΅·ζ°΄&rがθ‡ͺη„Άη”Ÿζˆγ•γ‚Œγ‚‹γγ§γ€&aTerrafirmaCraft&rは便利MODです(強弁)。こγγ“γ¨γ«γ‚ˆγ‚Šγ€&a焑限水源&rγ‚’δ½Ώγ†γ“γ¨γ§η°‘ε˜γ«ζ΅·ζ°΄γ‚’η„‘ι™εŒ–γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ‚γ¨γ―γ€η„‘ι™εŒ–γ—γŸζ΅·ζ°΄γ‚’&aι›»ζ°—εˆ†θ§£&rすることで、&dε‘©η΄ &rγ‚„&dζ°΄η΄ &rγ‚’ε…₯ζ‰‹γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.medium_voltage.mv_long_pipe.title": "長距雒梲体搬送", + "quests.medium_voltage.mv_long_pipe.subtitle": "梲体γζ¬ι€γ―倧倉!", + "quests.medium_voltage.mv_long_pipe.desc.1": "&3長距雒梲体パむプ&rを使うことで、袅長距雒γζΆ²δ½“ζ¬ι€γŒε―能とγͺγ‚ŠγΎγ™γ€‚ζŽ₯ηΆšε£γ‚’ε§‹η‚Ήγ¨η΅‚η‚Ήγ«θ¨­η½γ—、そγι–“をパむプラむンブロックで繋ぐことで、長距雒パむプを使用できます。\n\nζŽ₯碚口にε…₯γ£γŸζΆ²δ½“γ―γ€ηž¬ζ™‚γ«εε―Ύε΄γζŽ₯ηΆšε£γ«θ»’ι€γ•γ‚ŒγΎγ™γ€‚\n\nγŸγ γ—γ€γƒ‘γ‚€γƒ—γƒ©γ‚€γƒ³γ«γ―δ½Ώη”¨ε―θƒ½γͺζœ€ε°θ·ι›’γŒθ¨­εšγ•γ‚Œγ¦γ„γ‚‹γŸγ‚γ€ηŸ­θ·ι›’γζΆ²δ½“輸送に使用することはできません。", + "quests.medium_voltage.mv_long_pipe.desc.2": "γŸγ γ—γ€ι•·θ·ι›’ζΆ²δ½“γƒ‘γ‚€γƒ—γ―&4バグ&rγŒε€šγ„γ“γ¨γ§ηŸ₯γ‚‰γ‚Œγ¦γ„γΎγ™γ€‚δΈŠζ‰‹γη¨Όεƒγ—γͺγ„ε ΄εˆγ―γ€ζŽ₯ηΆšε£γ‚’&eレンチ&rγ§ε›žθ»’γ™γ‚‹γ¨η¨Όεƒγ—ε§‹γ‚γ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_polyethylene.title": "ポγƒͺエチレン", + "quests.medium_voltage.mv_polyethylene.subtitle": "γ―γ˜γ‚γ¦γγƒγƒͺγƒžγƒΌη΄ ζ", + "quests.medium_voltage.mv_polyethylene.desc": "要するにプラスチックです。\n\n&aι…Έη΄ &rを材料に使用することで、ζ™ι€šγη©Ίζ°—γ‚ˆγ‚Šγ‚‚ε€šγγγƒγƒͺγ‚¨γƒγƒ¬γƒ³γŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚ζΆ²δ½“γƒγƒͺγ‚¨γƒγƒ¬γƒ³γ―γ€γ‚΄γƒ γ¨εŒζ§˜γ«γ€ζΆ²δ½“ζˆεž‹ζ©Ÿγ§ε›Ίδ½“γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&aポγƒͺエチレン(PE)&rは倚くγγƒ¬γ‚·γƒ”γ§δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚η‰Ήγ«γ€&dγ‚·γƒΌγƒˆ&rγ‚„&d梲体ポγƒͺエチレン&rγŒδ½Ώγ‚γ‚Œγ‚‹γ“γ¨γŒε€šγ„γ§γ™γ€‚\n\n&l&3γŠγΎγ‘:&r&o1.12.2時代、ポγƒͺエチレンγι‰±ηŸ³θΎžζ›Έγ«γŠγ‘る名称は&bplastic&fγ§γ—γŸγ€‚γ“γ‚Œγ―δΊ’ζ›ζ€§γ‚’ι‡θ¦–γ—γŸγŸγ‚γ§γ™γ€‚", + "quests.medium_voltage.mv_pvc.title": "ポγƒͺε‘©εŒ–γƒ“γƒ‹γƒ«", + "quests.medium_voltage.mv_pvc.subtitle": "第二γγƒγƒͺγƒžγƒΌ", + "quests.medium_voltage.mv_pvc.desc": "&aポγƒͺε‘©εŒ–γƒ“γƒ‹γƒ«(PVC)&rは、現εŸδΈ–η•Œγ«γŠγ„γ¦3η•ͺη›γ«ε€šγθ£½ι€ γ•γ‚Œγ¦γ„γ‚‹γƒ—γƒ©γ‚Ήγƒγƒƒγ‚―です。ポγƒͺエチレンγδ»£γ‚γ‚Šγ«&aγƒ—γƒ©γ‚Ήγƒγƒƒγ‚―θ£½ε›žθ·―εŸΊζΏ&rγδ½œζˆγ«δ½Ώη”¨γ™γ‚‹γ“γ¨γ§γ€θ£½ι€ ζ•°γ‚’ε€γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&5EV&r時代δ»₯降では、ケーブルγθ’«θ¦†γ«γ‚‚必要にγͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€PVCγ‚’γ‚€γƒ†γƒ γƒ‘γ‚€γƒ—γ―ιžεΈΈγ«ι«˜ζ€§θƒ½γ§γ€γ“γ‚Œδ»₯上γγ‚‚γγ―ε½“ι’θ§£η¦γ•γ‚ŒγΎγ›γ‚“γ€‚MVζ™‚η‚Ήγ§γ―γγ‚Œγ»γ©γζ€§θƒ½γ‚’θ¦ζ±‚γ•γ‚Œγ‚‹ε ΄ι’γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€δ»ŠεΎŒγγŸγ‚γ«θ¦šγˆγ¦γŠγγΎγ—ょう。\n\n&9γƒ’γƒ³γƒˆ:&rGTCEuγ«γŠγ„γ¦PVCγ‚’ζΆ²δ½“γ§δ½Ώη”¨γ™γ‚‹ε ΄ι’γ―ε­˜εœ¨γ—γͺγ„γŸγ‚γ€γ™γΉγ¦γ‚·γƒΌγƒˆγ«εŠ ε·₯γ—γ¦γ—γΎγ£γ¦γ‚‚ε•ι‘Œγ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.medium_voltage.mv_boards.title": "γƒ—γƒ©γ‚Ήγƒγƒƒγ‚―θ£½ε›žθ·―εŸΊζΏ", + "quests.medium_voltage.mv_boards.subtitle": "γ¨γ¦γ‚‚ι Όγ‚Œγ‚‹γƒ€γƒ„", + "quests.medium_voltage.mv_boards.desc": "γ‚ˆγ†γ‚„γγƒ—γƒ©γ‚Ήγƒγƒƒγ‚―θ£½ε›žθ·―εŸΊζΏ(PCB)γδ½œζˆγ«η€ζ‰‹γ§γγΎγ™γ€‚γͺγŠγ€δΈŠδ½γγƒγƒͺγƒžγƒΌη΄ ζγ‚’δ½Ώγ†γ“γ¨γ§γ€PCBγδ½œζˆεŠΉηŽ‡γ―γ•γ‚‰γ«δΈŠζ˜‡γ—γΎγ™γ€‚\n\nγͺγŠγ€δ»₯降γγƒ¬γ‚·γƒ”はさらに耇雑にγͺγ‚‹γŸγ‚γ€2機γεŒ–ε­¦εεΏœε™¨γ‚’η”¨ζ„γ—γŸγ†γˆγ§γ€ε€§ι‡γγ‚’γ‚€γƒ†γƒ γ‚’δΈ€ζ°—γ«δ½œζˆγ™γ‚‹γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚", + "quests.medium_voltage.mv_sodium_iron.title": "ιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム/ε‘©εŒ–ι‰„(III)", + "quests.medium_voltage.mv_sodium_iron.subtitle": "えっけ(んぐ)だ……", + "quests.medium_voltage.mv_sodium_iron.desc.1": "&aιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム&rは、&9ι‰±ηŸ³εŠ ε·₯&rγ«δ½Ώγˆγ‚‹ζΆ²δ½“γ§γ™γ€‚&3εŒ–ε­¦ζ§½&rγ§δ½Ώη”¨γ™γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€η‰ΉζŠγͺε‰―η”£η‰©γ‚’εΎ—γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nβ€¦β€¦γγ‚Œγ―γ¨γ‚‚γ‹γγ€&aιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム&rγ‚„&aε‘©εŒ–ι‰„(III)&rγηœŸγη”¨ι€”γ€γγ‚Œγ―&9γƒ—γƒͺγƒ³γƒˆε›žθ·―εŸΊζΏ&rγδ½œζˆγ§γ™γ€‚γ“γ‚Œγ‚‰ζΆ²δ½“γ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ§γ€ε›žθ·―基板γδ½œζˆγ«εΏ…要γͺι‡‘ε±žγι‡γŒγͺんと4εˆ†γ1にγͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€&9プラスチック製プγƒͺγƒ³γƒˆε›žθ·―εŸΊζΏ&rγδ½œζˆγ«γ―εΏ…ι ˆγ§γ™γ€‚", + "quests.medium_voltage.mv_sodium_iron.desc.2": "&aιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム&rγδ½œζˆζ™‚には、副産物として&aε‘©ι…Έ&rがε…₯手できます。こγε‘©ι…Έγ―、&aε‘©εŒ–ι‰„(III)&rγζζ–™γ«γͺγ‚ŠγΎγ™γ€‚\n\nγŸγ γ—γ€ε‘©ι…Έγ―TFCγ«γŠγ„γ¦η„‘ι™θ³‡ζΊγ§γ‚γ‚‹ζ΅·ζ°΄γ‹γ‚‰δ½œζˆγ§γγ‚‹γŸγ‚γ€ζœ¬η’°ε’ƒγ§γ―ε‘©εŒ–ι‰„(III)γζ–ΉγŒγ‚ˆγ‚Šδ½Žγ‚³γ‚Ήγƒˆγ§δ½œζˆγ§γγΎγ™γ€‚", + "quests.medium_voltage.mv_inductor.title": "むンダクタ", "quests.medium_voltage.mv_inductor.subtitle": "Z = jwL", - "quests.medium_voltage.mv_inductor.desc": "A Circuit Component that you can now make thanks to the &3MV Assembler&r and &3Polyethylene&r.\n\nIf you want the cheapest recipe, &aNickel-Zinc Ferrite&r is the way to go.", - "quests.medium_voltage.mv_electronic_components.title": "Electronic Components", - "quests.medium_voltage.mv_electronic_components.subtitle": "A core piece of GT progression system", - "quests.medium_voltage.mv_electronic_components.desc": "Let's talk about the &dElectronic Components&r from &dGregTech&r. They are a &ccore part&r of the mod's progression and are used to make &aall circuits&r in the game.\n\nMost components have &amultiple recipes&r. Depending on the &9materials&r you choose, you can achieve &ebetter yields&r. We encourage you to browse through &aEMI&r and decide which ones fit your situation best.\n\nThese components can be crafted in &clarge stacks&rβ€”you'll need &ea lot&r of them for your future circuits!\n\nFor the &dTransistor&r, you’ll specifically need &5Silicon Ingots&r... but by now, you should be &cvery familiar&r with &chandling hot stuff&r, right?", - "quests.medium_voltage.mv_best_lv.title": "Best LV Circuits", - "quests.medium_voltage.mv_best_lv.subtitle": "It Feels Good to be the Best", - "quests.medium_voltage.mv_best_lv.desc": "&6The best LV Circuits&r! You can start to churn these guys out, as you'll be making them for the rest of the game.\n\nTry to keep a stockpile of these crafted at all times - making these on-demand can take a while.\n\nReaching &5EV&r will unlock methods to make them even cheaper.", - "quests.medium_voltage.mv_best_mv.title": "Best MV Circuits", - "quests.medium_voltage.mv_best_mv.subtitle": "MV has peaked", - "quests.medium_voltage.mv_best_mv.desc": "&6The best MV Circuits&r! You will be making these for the remainder of the game.\n\nEventually (in &9IV&r), they will become even cheaper.", - "quests.medium_voltage.mv_second_hv.title": "More HV Circuits", - "quests.medium_voltage.mv_second_hv.subtitle": "On that HV grind", - "quests.medium_voltage.mv_second_hv.desc": "Congrats finishing a major milestone of the &bMV Chapter&r.\n\nBetter &6HV&r Circuits - much &dcheaper&r and easier to make than before.\n\nYou should now be &aready to move on&r to the HV Chapter, unless you're yet to scale up your Power Production.", - "quests.medium_voltage.mv_circuit_assembler.title": "Your Second Circuit Assembler", - "quests.medium_voltage.mv_circuit_assembler.subtitle": "Yippee, yahoo", - "quests.medium_voltage.mv_circuit_assembler.desc": "As is common for every tier, the &3Circuit Assembler&r is an essential part of progression, always opening up a new Tier of circuits.\n\nAt this point you should be placing an &3Extractor&r next to your Circuit Assembler. Send off dozens of stacks of &aSoldering Alloy&r Ingots, and you won't have to worry about refilling again.", - "quests.medium_voltage.mv_more_lv.title": "More LV Circuits", - "quests.medium_voltage.mv_more_lv.subtitle": "You have unlocked a new tier of Circuits!", - "quests.medium_voltage.mv_more_lv.desc.1": "The Integrated Logic Circuit is an alternate &7LV &aCircuit&r, which is easier to mass-produce, and can be upgraded to &bMV&r (and then &6HV&r).\n\n&9Note:&r This is not a strict upgrade to the cost of Circuits - you would need to get to the next Tier for that. It is still an important upgrade, and is required to get to &6HV circuits&r.", - "quests.medium_voltage.mv_more_lv.desc.2": "&l&3Lore:&r&o The circuit progression in GTCEu is mostly based on GT5u's progression. It has been rebalanced to not be as painful. &lSpecifically&r&o this circuit tier, which was a trap!", - "quests.medium_voltage.mv_more_mv.title": "More MV Circuits", - "quests.medium_voltage.mv_more_mv.subtitle": "More... I demand more!", - "quests.medium_voltage.mv_more_mv.desc": "The &bMV&r Circuit for the Integrated Tier, this is one is kinda bad. Use it only to make your first HV Circuit", - "quests.medium_voltage.mv_first_hv.title": "First HV Circuits!", - "quests.medium_voltage.mv_first_hv.subtitle": "...but hold on before getting too giddy", - "quests.medium_voltage.mv_first_hv.desc": "Alright... technically, obtaining &6HV&r Circuits and Stainless Steel lets you progress to &6HV&r - but let's not rush things.\n\nThe first thing you should make with these is a &3MV Circuit Assembler&r to unlock the new tier of Circuits right away; cheaper recipes is the &dreal payoff&r here.", - "quests.medium_voltage.mv_multi_smelter.title": "Ultimate Smelter", - "quests.medium_voltage.mv_multi_smelter.subtitle": "Possibly the most powerful furnace you've seen", - "quests.medium_voltage.mv_multi_smelter.desc": "At its lowest power (Cupronickel coils and &7LV&r Voltage), the &dMulti Smelter&r smelts 32 items in just 12 seconds - equivalent to &926.7 Furnaces&r, or 3.3 Steam Ovens!\n\nIf that wasn't already enough to convince you, standard &aoverclocks&r can be applied with sufficient voltage.\n\nAnd even better - higher tier &3Coils&r increase the amount of items it can smelt in &dparallel&r!", - "quests.medium_voltage.hv_machine_hull.title": "The HV Machine Hull", - "quests.medium_voltage.hv_machine_hull.subtitle": "That's your fourth machine hull! This is progression", - "quests.medium_voltage.hv_machine_hull.desc": "This is itβ€”the &6HV Machine Hull&r! Congratulations on reaching this major milestone.\n\nYou had to manage &dchemicals&r, upgrade your &dEBF&r, mix a &cnew alloy&r, and learn about &aWafers&r and the &aLaser Engraver&r. We hope your &aunderstanding of GregTech&r is growing stronger every day.\n\nFrom now on, &ecomplexity will increase&r at each tier, but you’ll also gain access to &anew machines&r that will ease earlier processes and introduce &9interesting new mechanics&r.\n\nEven though you’ve just unlocked the &6HV Chapter&r, remember that this marks only &atwo&r of the &bMV Chapter&r’s main milestones.\n\nIf you haven’t unlocked the &6Second HV Circuit&r yet, we highly encourage you to do so before moving forward.\n\nOtherwise, &aWelcome to HV!&r", - "quests.medium_voltage.mv_stainless.title": "Stainless Steel", - "quests.medium_voltage.mv_stainless.subtitle": "HV is in your grasp", - "quests.medium_voltage.mv_stainless.desc.1": "Any Steel you encounter in day-to-day life is most likely &7Stainless Steel&r. It is extremely resilient against corrosion.&r\n\nStainless Steel is the material for &6HV&r components, like Aluminium for &bMV&r and Steel for &7LV&r. It is also used in high quantities for the &3Distillation Tower&r.\n\nIt requires &cChromium&r, obtained mainly from &cRuby&r or &cChromite&r, and &2Manganese&r, obtained from &2Pyrolusite&r and others in its vein.", - "quests.medium_voltage.mv_stainless.desc.2": "Smelting Stainless Steel requires &dHV Power&r, which you likely do not have at this point. Scaling Power Production is crucial.\n\nIf you &9haven't already&r, it would be a good idea to get a second EBF going. They can share blocks, so that means your second EBF only requires &a10 Cupronickel Coils&r instead of 16.\n\nHave one EBF run off &bMV&r for Aluminium and any other recipes requiring &bMV&r Power, and one running off &6HV&r with &32 MV Energy Hatches&r.", - "quests.medium_voltage.mv_energy_hatch.title": "Upgrade your EBF!", - "quests.medium_voltage.mv_energy_hatch.subtitle": "LV is so old-school!", - "quests.medium_voltage.mv_energy_hatch.desc": "A &7LV&r Battery Buffer and two &7LV&r Energy Hatches likely won't cut it anymore. Let's remedy that!\n\nUpgrade your Electric Blast Furnace with a &3MV Energy Hatch&r. Now, you can run it with &bMV&r Generators without having to mess around with &3Transformers&r.", - "quests.medium_voltage.mv_kanthal_coil.title": "Kanthal Coils", - "quests.medium_voltage.mv_kanthal_coil.subtitle": "Is it getting hot in here?", - "quests.medium_voltage.mv_kanthal_coil.desc": "&3Kanthal Heating Coils&r are the next major step in progression. They increase the temperature of your &3Blast Furnace&r to &d2,700K&r, allowing you to process new materials. They may also &eaccelerate&r less hot recipes - check the &aEnergy&r chapter to the top-left for details.\n\nRemember that you &ccannot&r mix coils in an EBF.", - "quests.medium_voltage.mv_kanthal_ingot.title": "Kanthal", - "quests.medium_voltage.mv_kanthal_ingot.subtitle": "This one is hot", - "quests.medium_voltage.mv_kanthal_ingot.desc.1": "Oh good lord 128 ingots, that’s a lot of &cKanthal&r needed here... And what the heck is this &chot ingot&r thing again? &cYes, again!&r\n\nHere we are with a mechanic you should remember from &aTerrafirmaCraft&rβ€”it hasn't been that long, right?\n\n&cHot ingots&r will &cburn you&r if you carry them around and you don't have &cany way&r to counter it using Tongs...\n\nAlso unlike &aTFC&r, &cthey don’t cool down naturally&r! You’ll need to actively &acool them&r down.", - "quests.medium_voltage.mv_kanthal_ingot.desc.2": "To do that, place them into a &dChemical Bath&r with &9Water&rβ€”or even better, &9Distilled Water&r for a &e50 percent faster&r cooling time.\n\nWe highly recommend you &aautomate&r this process to avoid carrying those hot ingots yourself. Use &apipes&r to send them directly from your &dEBF&r to your &dChem Bath&r.\n\nYou can also set up an &aItem Tag Filter&r to help with sorting the hot ingots &7#forge:hot_ingots*&r.", - "quests.medium_voltage.mv_assembler.title": "Advanced Assembler", - "quests.medium_voltage.mv_assembler.subtitle": "Assengers, Avemble", - "quests.medium_voltage.mv_assembler.desc": "The &3Assembler&r is a staple for every Tier; an important goal to unlock more recipes and progress further into the Age. Many in the community see crafting a voltage tier's Assembler as a sign of &oproperly&r reaching said voltage.\n\nThat being said, welcome to &bMV&r!\n\nThe &bMV &3Assembler&r unlocks &eTransistors&r, &eCapacitors&r and &eInductors&r, used for the next tiers of Circuits.", - "quests.medium_voltage.mv_cells.title": "Large Cells", - "quests.medium_voltage.mv_cells.subtitle": "Like cells... only larger!", - "quests.medium_voltage.mv_cells.desc": "Aluminium Cells are a big upgrade over the Steel Cells or Universal Fluid Cells.\n\nThey can hold any fraction of Fluid - up to &d32 buckets&r!", - "quests.medium_voltage.mv_jetpack_2.title": "I Believe I Can Fly II", - "quests.medium_voltage.mv_jetpack_2.subtitle": "...still not quite there.", - "quests.medium_voltage.mv_jetpack_2.desc": "This jetpack enables flight, and requires energy.\n\nCharge it like you would charge a Battery.\n\nPress &4H&r (default) to enable Hover Mode.\n\n&o&8(Yeah, yeah, a jetpack is supposed to work off propellants. Y'all are always here to nitpick.)&r", - "quests.medium_voltage.mv_cutter.title": "Advanced Cutter", - "quests.medium_voltage.mv_cutter.subtitle": "Upgrades, people, upgrades!", - "quests.medium_voltage.mv_cutter.desc": "The &3MV Cutter&r is required to cut &7Silicon Boules&r to prepare them for &aLaser Engraving&r.\n\nWe recommend you supply this machine with a steady stream of &dLubricant&r to cut down on the processing time.\n\nLubricant can be &3brewed&r from &eOil&r and &aTalc&r, &2Soapstone&r or &cRedstone&r.\n\n&7Note : You could use the &6Greate&r &7version, it has now a tank to fill with it fluid&r&r", - "quests.medium_voltage.mv_cutter.task": "Any Brewery", - "quests.medium_voltage.mv_laser_engraver.title": "Laser Engraving", - "quests.medium_voltage.mv_laser_engraver.subtitle": "This is peak technology, this is slow also", - "quests.medium_voltage.mv_laser_engraver.desc": "The &3Laser Engraver&r engraves patterns into &9Silicon Wafers&r based on the type of &9Lens&r it is given. After the wafers are engraved, they must be passed through a &3Cutting Machine&r to turn them into components ready to be put into Circuits.\n\nHigher tier Engravers can etch more complex wafers for more efficient Circuits.", - "quests.medium_voltage.mv_silicon_boule.title": "Silicon Lottery", - "quests.medium_voltage.mv_silicon_boule.subtitle": "These wafers are fully fungible", - "quests.medium_voltage.mv_silicon_boule.desc": "&9Silicon Boules&r are made in the &3EBF&r with half a stack of &aSilicon Dust&r and a pinch of &aGallium Arsenide&r. Their primary purpose is engraving &6Circuit Wafers&r.\n\nAfter making the Boule, process it in the &3Cutter&r to get 16 Silicon Wafers ready for engraving.\n\n&cWarning:&r Each Silicon Boule takes &47.5 minutes&r to make at 120 EU/t, or 1,080,000 EU! If the EBF loses power midway, the recipe will start to &close progress&r.\n\nWith that being said, Silicon Boules take an absolute age to craft, so consider parallelizing the recipe in multiple &3EBF&rs and stockpiling them.", - "quests.medium_voltage.mv_silicon.title": "Silicon Dust", + "quests.medium_voltage.mv_inductor.desc": "&3MVη΅„η«‹ζ©Ÿ&rと&3ポγƒͺエチレン&rγŒγ‚γ‚Œγ°γ€γ‚€γƒ³γƒ€γ‚―γ‚Ώγ‚’δ½œζˆγ§γγΎγ™γ€‚\n\nγ‚‚γ£γ¨γ‚‚δ½Žγ‚³γ‚Ήγƒˆγͺレシピは、&aγƒ‹γƒƒγ‚±γƒ«δΊœι‰›γƒ•γ‚§γƒ©γ‚€γƒˆ&rを使用するもγγ§γ™γ€‚", + "quests.medium_voltage.mv_electronic_components.title": "電子部品", + "quests.medium_voltage.mv_electronic_components.subtitle": "GTγζœ¬θ³ͺ", + "quests.medium_voltage.mv_electronic_components.desc": "ζœ¬γ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€&dGregTech&rγ«γŠγ‘γ‚‹&d電子部品&rに぀いて解θͺ¬γ—γ¦γ„γγΎγ™γ€‚γ“γ‚Œγ‚‰ι›»ε­ιƒ¨ε“γ―GTγζœ¬θ³ͺγ¨γ‚‚γ„γˆγ‚‹θ¦η΄ γ§γ€γ“γ‚Œγ‚‰γ‚’η΅„γΏεˆγ‚γ›γ‚‹γ“γ¨γ§γ€εŸεœ¨γ™γ‚‹γ‚γ‚‰γ‚†γ‚‹ι›»ε­ε›žθ·―γ‚’δ½œζˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n倧半γιƒ¨ε“γ«γ―耇数γγƒ¬γ‚·γƒ”γŒη”¨ζ„γ•γ‚Œγ¦γŠγ‚Šγ€δΈŠδ½γη΄ ζγ‹γ‚‰γ―γ‚ˆγ‚Šε€šγγιƒ¨ε“γŒδ½œζˆγ§γγΎγ™γ€‚ζ™‚ζŠ˜&aEMI&rγ‚’η’Ίθͺγ—γ€ηΎζ™‚η‚Ήγ§δ½œγ‚Œγ‚‹δΈ­γ§ζœ€ι©γγƒ¬γ‚·γƒ”γ‚’ιΈγΆγ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚\n\n1ε›žγ‚γŸγ‚Šγδ½œζˆζ•°γ―ε€šγ„γ‚ˆγ†γ«θ¦‹γˆγΎγ™γŒγ€γγ‚Œγ―γ™γͺわけ倧量に使用するということです。\n\n&dγƒˆγƒ©γƒ³γ‚Έγ‚Ήγ‚Ώ&rγδ½œζˆγ«γ―、&5γ‚±γ‚€η΄ γ‚€γƒ³γ‚΄γƒƒγƒˆ&rγŒεΏ…θ¦γ§γ™γ€‚γ¨γ¦γ‚‚η†±γ„γγ§γ€ε–γ‚Šζ‰±γ„γ«γ―注意しましょう。", + "quests.medium_voltage.mv_best_lv.title": "ζœ€εΌ·γLVε›žθ·―", + "quests.medium_voltage.mv_best_lv.subtitle": "ζœ€εΌ·γ¨γ„γ†γ“γ¨γ―γ€γ¨γ¦γ‚‚εΌ·γ„γ¨γ„γ†γ“γ¨", + "quests.medium_voltage.mv_best_lv.desc": "こγε›žθ·―γ―ζœ€εΌ·γͺγγ§γ€δ»ŠεΎŒγ―γ“γ‚Œγ‚’δ½Ώγ†γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚\n\nγΎγŸγ€εΈΈγ«ε›žθ·―γεœ¨εΊ«γ‚’η”¨ζ„γ—γ¦γŠγγ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚γ„γ‘γ„γ‘δ½œγ£γ¦γ„γ¦γ―ζ™‚ι–“γŒγ‹γ‹γ‚Šγ™γŽγΎγ™γ€‚\n\n&5EV&r時代にε…₯ると、さらにε‰δΎ‘γ«δ½œζˆγ™γ‚‹ζ–Ήζ³•γŒθ§£η¦γ•γ‚ŒγΎγ™γ€‚", + "quests.medium_voltage.mv_best_mv.title": "ζœ€εΌ·γMVε›žθ·―", + "quests.medium_voltage.mv_best_mv.subtitle": "MV時代γεŒζˆε½’", + "quests.medium_voltage.mv_best_mv.desc": "こγε›žθ·―γ―ζœ€εΌ·γͺγγ§γ€δ»ŠεΎŒγ―γ“γ‚Œγ‚’δ½Ώγ†γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚\n\n&9IV&r時代δ»₯降は、さらにε‰δΎ‘にγͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_second_hv.title": "ι‡η”£εž‹HVε›žθ·―", + "quests.medium_voltage.mv_second_hv.subtitle": "HV時代γγ―γ˜γΎγ‚Š", + "quests.medium_voltage.mv_second_hv.desc": "&bMV時代&rγ―γ“γ‚Œγ«γ¦γ»γΌη΅‚δΊ†γ§γ™γ€‚γŠγ‚γ§γ¨γ†οΌ\n\nγ“γ‚Œγ§γ€&6HV&rε›žθ·―γŒε‰δΎ‘γ‹γ€η°‘ε˜γ«δ½œζˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸγ€‚\n\nγ„γ‚ˆγ„γ‚ˆHV時代γε§‹γΎγ‚Šγ§γ™γ€‚発電手ζ΅γη’ΊδΏγ‚’γŠεΏ˜γ‚Œγͺく。", + "quests.medium_voltage.mv_circuit_assembler.title": "ε›žθ·―η΅„η«‹ζ©Ÿγ€ζ–°εž‹η™»ε ΄", + "quests.medium_voltage.mv_circuit_assembler.subtitle": "γ‚„γ£γŸγœοΌ", + "quests.medium_voltage.mv_circuit_assembler.desc": "&3ε›žθ·―η΅„η«‹ζ©Ÿ&rγ―ζœ€ι‡θ¦γ‚’γ‚€γƒ†γƒ γ§γ™γ€‚γ“γ‚Œδ»₯ι™γ€δΈŠδ½γε›žθ·―γ‚’δ½œζˆγ™γ‚‹γ«γ―εΏ…ι ˆγ¨γͺγ‚ŠγΎγ™γ€‚\n\nε›žθ·―η΅„η«‹ζ©Ÿγ―δ»ŠεΎŒε€šη”¨γ™γ‚‹γ“γ¨γ«γͺγ‚‹γŸγ‚γ€ιš£γ«&3ζŠ½ε‡Ίζ©Ÿ&rγ‚’η½γ„γ¦γŠγγ€δΈ­γ«&aγ―γ‚“γ εˆι‡‘&rγ‚’ε…₯γ‚Œγ¦γŠγγ¨γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚", + "quests.medium_voltage.mv_more_lv.title": "ζ–°εž‹γLVε›žθ·―", + "quests.medium_voltage.mv_more_lv.subtitle": "ε›žθ·―γ‚’ζ”Ήθ‰―γ—γ‚ˆγ†", + "quests.medium_voltage.mv_more_lv.desc.1": "εŸΊζœ¬εž‹ι›†η©ε›žθ·―γ―γ€LVε›žθ·―γδΈŠδ½η‰ˆγ§γ™γ€‚量産しやすいことや、&bMV&r・&6HV&rへγεΌ·εŒ–γŒε―θƒ½γ§γ‚γ‚‹γ¨γ„γ†εˆ©η‚ΉγŒγ‚γ‚ŠγΎγ™γ€‚\n\n&9γƒ’γƒ³γƒˆ:&rこγε›žθ·―γδ½œζˆγ‚³γ‚Ήγƒˆθ‡ͺ体は、従ζ₯γγ‚‚γγ¨ζ†γ©ε€‰γ‚γ‚ŠγΎγ›γ‚“γ€‚γŸγ γ—γ€&6HVε›žθ·―&rγδ½œζˆγ«γ―εΏ…ι ˆγ¨γͺγ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_more_lv.desc.2": "&l&3γŠγΎγ‘:&r&oGTCEuγ«γŠγ‘γ‚‹ι›»ε­ε›žθ·―ε‘¨γ‚Šγγƒ¬γ‚·γƒ”は、GT5γγγ‚Œγ«ζΊ–ζ‹ γ—γ¦γ„γΎγ™γ€‚γŸγ γ—γ€GT5γγγ‚Œγ‚ˆγ‚Šγ‚‚バランスθͺΏζ•΄γ•γ‚Œγ¦γŠγ‚Šγ€θ‹¦ε½ΉεΊ¦εˆγ„γ―δΈ‹γŒγ£γ¦γ„γΎγ™γ€‚", + "quests.medium_voltage.mv_more_mv.title": "ζ–°εž‹γMVε›žθ·―", + "quests.medium_voltage.mv_more_mv.subtitle": "いや、εΎε¦™β€¦β€¦", + "quests.medium_voltage.mv_more_mv.desc": "こγε›žθ·―γ―γ‚³γ‚Ήγƒ‘γŒζ‚ͺいγγ§γ€ζœ€εˆγ«HVε›žθ·―γ‚’δ½œγ‚‹ζ™‚δ»₯倖は使わγͺγ„γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚", + "quests.medium_voltage.mv_first_hv.title": "HVε›žθ·―γ€ηˆ†θͺ•!", + "quests.medium_voltage.mv_first_hv.subtitle": "HVγ«θ‘Œγγ«γ―γΎγ ζ—©γ„", + "quests.medium_voltage.mv_first_hv.desc": "γ“γ‚Œγ¨γ‚Ήγƒ†γƒ³γƒ¬γ‚Ήι‹ΌγŒγ‚γ‚Œγ°γ€&6HV&r時代にε…₯γ‚‹γ“γ¨γ―δΈ€εΏœε―θƒ½γ§γ™γ€‚γ—γ‹γ—γͺγŒγ‚‰γ€γΎγ MVγγ†γ‘γ«γ‚„γ‚‹γΉγγ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚\n\nこγHVε›žθ·―γ―γ€&3MVε›žθ·―η΅„η«‹ζ©Ÿ&rγδ½œζˆγ«δ½Ώγ„ましょう。γͺぜγͺγ‚‰γ€γ‚ˆγ‚Šε‰δΎ‘γ«δ½œγ‚Œγ‚‹γƒ¬γ‚·γƒ”γŒε­˜εœ¨γ™γ‚‹γ‹γ‚‰γ§γ™γ€‚", + "quests.medium_voltage.mv_multi_smelter.title": "ζœ€εΌ·γγ‹γΎγ©", + "quests.medium_voltage.mv_multi_smelter.subtitle": "とて぀もγͺγεΌ·εŠ›", + "quests.medium_voltage.mv_multi_smelter.desc": "&dγƒžγƒ«γƒγ‚Ήγƒ‘γƒ«γ‚ΏγƒΌ&rγ―γ€ζœ€ε°ζ§‹ζˆ(γ‚­γƒ₯プロニッケルコむル+&7LV&rι›»ζ°—)でも、32個γγ‚’γ‚€γƒ†γƒ γ‚’γ‚γšγ‹12η§’γ§η²ΎιŒ¬γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ―εŸγ«γƒγƒ‹γƒ©γ‹γΎγ©γ&926.7倍&r、蒸気式γ‚ͺーブンγ3.3倍に相当します。\n\nγ•γ‚‰γ«γ€ι›»εœ§γ‚’δΈŠγ’γ‚‹γ“γ¨γ§γƒžγƒ«γƒγ‚Ήγƒ‘γƒ«γ‚ΏγƒΌγ‚’γ•γ‚‰γ«εŠ ι€Ÿγ§γγ‚‹δΈŠγ€δΈŠδ½γ&3コむル&rγ‚’δ½Ώγˆγ°εŒζ™‚εŠ ε·₯ζ•°γŒε’—εŠ γ—γΎγ™γ€‚", + "quests.medium_voltage.hv_machine_hull.title": "HVγƒžγ‚·γƒ³η­δ½“", + "quests.medium_voltage.hv_machine_hull.subtitle": "第四γγƒžγ‚·γƒ³η­δ½“", + "quests.medium_voltage.hv_machine_hull.desc": "&6HVγƒžγ‚·γƒ³η­δ½“&r、぀いにεŒζˆοΌ\n\nここまでに、あγͺたは&dεŒ–ε­¦η‰©θ³ͺ&rγδ½Ώγ„方、&dEBF&rγεΌ·εŒ–、&cζ–°γŸγͺεˆι‡‘&rγδ½œζˆγ€&aウェハー&rと&aγƒ¬γƒΌγ‚ΆγƒΌεˆ»ε°ζ©Ÿ&rγζ‰±γ„γͺど、Gregtechγι‡θ¦γͺθ¦η΄ γ‚’γ„γγ€γ‚‚ε­¦γ‚“γ§γγΎγ—γŸγ€‚\n\nHVδ»₯降では、ますます耇雑γͺδΈ–η•ŒγŒγ‚γͺγŸγ‚’εΎ…γ£γ¦γ„γΎγ™γ€‚γγ—γ¦γ€γγ‚Œγ‚‰γ‚’η°‘ε˜γ«γ™γ‚‹γŸγ‚γζ©Ÿζ’°γ‚„システムも欑々と登場します。\n\n&6HV&rγγ‚―γ‚¨γ‚Ήγƒˆγ―γ“γ‚Œγ§θ§£η¦γ¨γͺγ‚ŠγΎγ™γŒγ€γΎγ 1぀、HVγ«θ‘ŒγγŸγ‚γ«εΏ˜γ‚Œγ¦γ―γͺらγͺいもγγŒγ‚γ‚ŠγΎγ™γ€‚\n\n特に、&6HV&rε›žθ·―γδΈŠδ½ε“γ―η΅Άε―Ύγ«δ½œγ£γ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\nγγ‚Œγ‚‰γ‚‚δ½œζˆγ—γŸγγ§γ‚γ‚Œγ°γ€εεŸγ¨γ‚‚にHV時代γε§‹γΎγ‚Šγ§γ™οΌ", + "quests.medium_voltage.mv_stainless.title": "ステンレス鋼", + "quests.medium_voltage.mv_stainless.subtitle": "HVまであと一歩", + "quests.medium_voltage.mv_stainless.desc.1": "εŸη”Ÿζ΄»γ§θ¦‹γ‚‹ι‹Όγε€§εŠγ―&7ステンレス鋼&rγ§γ™γ€‚γ‚Ήγƒ†γƒ³γƒ¬γ‚Ήι‹Όγ«γ―γ€θ…ι£Ÿγ«γ¨γ¦γ‚‚εΌ·γ„γ¨γ„γ†η‰ΉεΎ΄γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&6HV&r機撰γδ½œζˆγ«γ―γ€γ‚Ήγƒ†γƒ³γƒ¬γ‚Ήι‹ΌγŒεΏ…θ¦γ¨γͺγ‚ŠγΎγ™γ€‚γ‘γ‚‡γ†γ©&bMV&rγ«γŠγ‘γ‚‹γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γ€&7LV&rγ«γŠγ‘γ‚‹ι‹Όι‰„γγ‚ˆγ†γͺεƒγγ‚’γ—γΎγ™γ€‚γΎγŸγ€&3θ’Έη•™ε‘”&rγδ½œζˆγ«γ‚‚ε€§ι‡γ«θ¦ζ±‚γ•γ‚ŒγΎγ™γ€‚\n\nステンレス鋼γδ½œζˆγ«γ―、&cγ‚―γƒ­γƒ &rと&2γƒžγƒ³γ‚¬γƒ³&rγŒεΏ…θ¦γ§γ™γ€‚ε‰θ€…γ―γƒ«γƒ“γƒΌγ‚„γ‚―γƒ­γƒžγ‚€γƒˆγ€εΎŒθ€…γ―θ»Ÿγƒžγƒ³γ‚¬γƒ³ι‰±γ‹γ‚‰ε…₯手できます。", + "quests.medium_voltage.mv_stainless.desc.2": "ステンレス鋼γη²ΎιŒ¬γ«γ―、&dHVι›»εŠ›&rγŒεΏ…θ¦γ§γ™γ€‚ηΎζ™‚η‚Ήγ§γ―HVγη™Ίι›»γ―不可能γͺγγ§γ€ζ˜‡εœ§γ—γ¦γ€γγ‚ŠγΎγ—γ‚‡γ†γ€‚\n\nγΎγŸγ€γγ‚γγ‚EBFγ2基η›γ‚’δ½œγ‚‹γ¨γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚EBFγη­δ½“γ―ε…±ζœ‰γ§γγ‚‹γŸγ‚γ€εΏ…θ¦γͺγ‚³γ‚€γƒ«γ―ι€šεΈΈγ‚ˆγ‚Šγ‚‚6個少γͺい&a10&rε€‹γ§ζΈˆγΏγΎγ™γ€‚\n\nδΈ€ζ–Ήγ‚’&bMV&rγ§η²ΎιŒ¬ε―θƒ½γͺγ‚‚γγ«δ½Ώη”¨γ—、もう一方に&3MVエネルγ‚ーハッチ&rγ‚’δ»˜γ‘γ¦&6HV&rη”¨γ«γ™γ‚‹γ¨γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚", + "quests.medium_voltage.mv_energy_hatch.title": "EBFγεΌ·εŒ–", + "quests.medium_voltage.mv_energy_hatch.subtitle": "LV時代γη΅‚γ‚γ‚Š", + "quests.medium_voltage.mv_energy_hatch.desc": "&7LV&rバッテγƒͺーバッフゑと&7LV&rエネルγ‚ーハッチでは、もはや全くγεŠ›δΈθΆ³γ§γ™γ€‚\n\nそろそろ&3MVエネルγ‚ーハッチ&rγ«ζ›΄ζ–°γ—γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ§γ€&3ε€‰εœ§ε™¨&rγ‚’δ½Ώγ‚γšγ¨γ‚‚MVι›»εŠ›γ‚’δ½Ώη”¨γ§γγΎγ™γ€‚", + "quests.medium_voltage.mv_kanthal_coil.title": "カンタルコむル", + "quests.medium_voltage.mv_kanthal_coil.subtitle": "熱い!熱い!", + "quests.medium_voltage.mv_kanthal_coil.desc": "&3カンタルコむル&rは重要γͺγ‚’γ‚€γƒ†γƒ γ§γ™γ€‚γ“γ‚Œγ‚’η”¨γ„γ‚‹γ“γ¨γ§γ€&3EBF&rγζΈ©εΊ¦γ‚’&d2700K&rγΎγ§δΈŠγ’γ‚‰γ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚ζΈ©εΊ¦γŒδΈŠγŒγ‚‹γ“γ¨γ§γ€ζ–°γŸγͺγƒ¬γ‚·γƒ”γŒθ§£η¦γ•γ‚Œγ‚‹γ»γ‹γ€εΎ“ζ₯γη²ΎιŒ¬γ‚’&eι«˜ι€Ÿ&rγ§θ‘Œγ†γ“γ¨γŒε―θƒ½γ¨γͺγ‚ŠγΎγ™γ€‚θ©³γ—γγ―&aエネルγ‚γƒΌ&rι–’ι€£γγ‚―γ‚¨γ‚Ήγƒˆγ‚’ε‚η…§γ—γ¦γγ γ•γ„γ€‚\n\nγͺγŠγ€θ€‡ζ•°η¨ι‘žγγ‚³γ‚€γƒ«γ‚’ζ··γœγ¦δ½Ώγ†γ“γ¨γ―不可能です。", + "quests.medium_voltage.mv_kanthal_ingot.title": "カンタル", + "quests.medium_voltage.mv_kanthal_ingot.subtitle": "δ»Šγ€γ‚«γƒ³γ‚Ώγƒ«γŒγ‚’γƒ„γ„οΌ", + "quests.medium_voltage.mv_kanthal_ingot.desc.1": "Hot and Notが帰ってζ₯γŸοΌγ“γͺいで\n\n&aTerrafirmaCraft&rγ‚’γƒγ‚±γƒ„γΎγ§ι€²γ‚γŸηš†γ•γ‚“γͺγ‚‰γ€γγ£γ¨θ¦šγˆγ¦γ„γ‚‹γ―γšγ€‚\n\n&cη†±γ„β—‹β—‹γ‚€γƒ³γ‚΄γƒƒγƒˆ&rη³»γγ‚’γ‚€γƒ†γƒ γ―γ€γƒˆγƒ³γ‚°γͺどγε―Ύη­–γ‚’γ‚€γƒ†γƒ η„‘γ—γ«ζŒγ£γ¦γ„γ‚‹γ¨&cη‚ŽδΈŠηŠΆζ…‹&rにγͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€δ»Šε›žγ―&aTFC&rγγγ‚Œγ¨η•°γͺγ‚Šγ€&c温度がθ‡ͺη„Άδ½ŽδΈ‹γ—γΎγ›γ‚“&rγ€‚ζ©Ÿζ’°γ‚’η”¨ζ„γ—γ¦γ€θƒ½ε‹•ηš„γ«ε†·γ‚„γ™εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.medium_voltage.mv_kanthal_ingot.desc.2": "γ‚€γƒ³γ‚΄γƒƒγƒˆγε†·ε΄γ«γ―、&dεŒ–ε­¦ζ§½&rで&9ζ°΄&rγ«ζ™’γ™εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ“γζ™‚、&9θ’Έη•™ζ°΄&rγ‚’δ½Ώγ†γ¨γ€ε†·ε΄γ«ζŽ›γ‹γ‚‹ζ™‚ι–“γŒ&e3εˆ†γ2&rにγͺγ‚ŠγΎγ™γ€‚\n\nγ¨γ―γ„γˆγ€γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’ζ‰‹γ§ζŒγ‘ζ­©γεŠ΄εŠ›γ―γͺγ‚‹γΉγζΈ›γ‚‰γ—γŸγ„γγ§γ€&aθ‡ͺε‹•εŒ–&rしましょう。&aパむプ&rγ‚’δ½Ώγˆγ°γ€&dEBF&rから&dεŒ–ε­¦ζ§½&rに直ζŽ₯γ‚’γ‚€γƒ†γƒ γ‚’ζ¬ι€γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&aをむテムタグフィルター&rに&7#forge:hot_ingots*&rと設εšγ™γ‚Œγ°γ€η†±γ„γ‚€γƒ³γ‚΄γƒƒγƒˆγ γ‘γ‚’ζ¬ι€γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.medium_voltage.mv_assembler.title": "η™Ίε±•εž‹η΅„η«‹ζ©Ÿ", + "quests.medium_voltage.mv_assembler.subtitle": "8ζ™‚γ γƒ§οΌε…¨ε“‘ι›†εˆοΌ", + "quests.medium_voltage.mv_assembler.desc": "&3η΅„η«‹ζ©Ÿ&rγ―γ‚γ‚‰γ‚†γ‚‹ι›»ζ°—ζ™‚δ»£γ«γŠγ‘γ‚‹ζœ€ι‡θ¦γƒžγ‚·γƒ³γ§γ™γ€‚γ“γ‚Œγ‚’δ½œγ‚‹γ“γ¨γ§γ€γ‚ˆγ‚Šε€šγγγƒ¬γ‚·γƒ”γŒθ§£η¦γ•γ‚Œγ€ζ›΄γͺγ‚‹ι«˜εΊ¦γͺγ‚―γƒ©γƒ•γƒˆγŒε―θƒ½γ¨γͺγ‚ŠγΎγ™γ€‚GTγγ‚³γƒŸγƒ₯γƒ‹γƒ†γ‚£γ§γ―γ€η΅„η«‹ζ©Ÿγδ½œζˆγ‚’γ‚‚γ£γ¦γ€ηœŸγζ„ε‘³γ§γγι›»ζ°—時代にε…₯γ£γŸγ¨δΈ€θˆ¬γ«θ¦‹γͺγ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nということで、改めて……&bMV&rζ™‚δ»£γΈγ‚ˆγ†γ“γοΌ\n\n&bMV&3η΅„η«‹ζ©Ÿ&rγδ½œζˆγ«γ‚ˆγ‚Šγ€&eγƒˆγƒ©γƒ³γ‚Έγ‚Ήγ‚Ώ&r、&eキャパシター&r、&eむンダクタ&rγŒθ§£η¦γ•γ‚ŒγΎγ™γ€‚γ“γ‚Œγ‚‰γ―γ€δΈŠδ½γε›žθ·―γ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«εΏ…θ¦γ§γ™γ€‚", + "quests.medium_voltage.mv_cells.title": "ε€§εΉι‡γ‚»γƒ«", + "quests.medium_voltage.mv_cells.subtitle": "デカいセル", + "quests.medium_voltage.mv_cells.desc": "γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γ‚»γƒ«γ―γ€εΎ“ζ₯γγ‚»γƒ«γεΌ·εŒ–η‰ˆγ§γ™γ€‚γγεΉι‡γ―γͺんと&dバケツ32ζ―εˆ†&r!", + "quests.medium_voltage.mv_jetpack_2.title": "ι³₯人間あらわる そγ2", + "quests.medium_voltage.mv_jetpack_2.subtitle": "β€¦β€¦γΎγ‚γ€δΈ€εΏœι£›γΉγ‚‹γ‘γ©β€¦β€¦", + "quests.medium_voltage.mv_jetpack_2.desc": "ι›»ε‹•γ‚Έγ‚§γƒƒγƒˆγƒ‘γƒƒγ‚―γ―γ€ι›»εŠ›γ‚’ζΆˆθ²»γ—γ¦η©Ίγ‚’ι£›γΆγ“γ¨γŒγ§γγΎγ™γ€‚\n\n充電方法はζ™ι€šγγƒγƒƒγƒ†γƒͺγƒΌγ¨εŒγ˜γ§γ™γ€‚\n\n&4H&r(初期設εš)γ‚’ζŠΌγ™γ¨γ€γƒ›γƒγƒΌγƒ’γƒΌγƒ‰γΈγεˆ‡γ‚Šζ›ΏγˆγŒε―能です。\n\n&o&7(γ€Œγ‚Έγ‚§γƒƒγƒˆγ€γ¨θ¨€γ£γ¦γ„γ‚‹γγ«γ‚Έγ‚§γƒƒγƒˆζŽ¨ι€²γ˜γ‚ƒγͺγ„γ£γ¦οΌŸγγ†γ„γ†ι‡η±γιš…γ‚’ηͺγγγ―γ‚„γ‚γΎγ—γ‚‡γ†οΌŸγ­οΌŸ)&r", + "quests.medium_voltage.mv_cutter.title": "η™Ίε±•εž‹θ£ζ–­ζ©Ÿ", + "quests.medium_voltage.mv_cutter.subtitle": "εΌ·εŒ–οΌεΌ·εŒ–οΌγΎγŸεΌ·εŒ–οΌ", + "quests.medium_voltage.mv_cutter.desc": "&aγƒ¬γƒΌγ‚ΆγƒΌεˆ»ε°ζ©Ÿ&rγ‚’δ½Ώη”¨γ™γ‚‹γŸγ‚γ«γ―γ€&3MVθ£ζ–­ζ©Ÿ&rで&7γ‚·γƒͺγ‚³γƒ³ε˜η΅ζ™Ά&rγ‚’εˆ‡ζ–­γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&dζ½€ζ»‘ζ²Ή&rγŒγ‚γ‚Œγ°γ€εŠ ε·₯ζ™‚ι–“γŒε€§εΉ…γ«ηŸ­ηΈγ•γ‚Œγ‚‹γγ§γ€εΏ…γšη”¨ζ„γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚\n\n潀滑油は&3ι†Έι€ ζ©Ÿ&rで&e石油&r、&aζ»‘ηŸ³&r、&2石鹸石&r、&cγƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³&rγͺγ©γ‚’εŠ ε·₯γ—γ¦δ½œγ‚‰γ‚ŒγΎγ™γ€‚\n\n&7γƒ’γƒ³γƒˆ:&6Greate&r&7γγƒ‘γ‚«γƒ‹γ‚«γƒ«γ‚½γƒΌγ§γ‚‚γ€εŒγ˜εŠ ε·₯γŒγ§γγΎγ™γ€‚ζΆ²δ½“γ‚Ώγƒ³γ‚―γŒζ­θΌ‰γ•γ‚Œγ¦γ„γ‚‹γŸγ‚γ€ζ½€ζ»‘ζ²Ήγ«γ‚ˆγ‚‹εŠ ι€ŸγŒε―θƒ½γ§γ™γ€‚&r&r", + "quests.medium_voltage.mv_cutter.task": "γ„γšγ‚Œγ‹γθ£ζ–­ζ©Ÿ", + "quests.medium_voltage.mv_laser_engraver.title": "γƒ¬γƒΌγ‚ΆγƒΌεˆ»ε°ζ©Ÿ", + "quests.medium_voltage.mv_laser_engraver.subtitle": "ζŠ€θ‘“γη²‹γ€‚γŸγ γ—γ‚γ£γ‘ゃ遅い", + "quests.medium_voltage.mv_laser_engraver.desc": "&3γƒ¬γƒΌγ‚ΆγƒΌεˆ»ε°ζ©Ÿ&rは、&9γ‚·γƒͺコンウェハー&rへγεˆ»ε°γ‚’θ‘Œγ†ζ©Ÿζ’°γ§γ™γ€‚εˆ»ε°γε†…εΉγ―γ€ε–γ‚Šδ»˜γ‘γŸ&9レンズ&rγ«γ‚ˆγ£γ¦ζ±ΊγΎγ‚ŠγΎγ™γ€‚εˆ»ε°γ‚’θ‘Œγ£γŸγ‚¦γ‚§γƒγƒΌγ‚’&3θ£ζ–­ζ©Ÿ&rで加ε·₯γ™γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€ε›žθ·―γ«ζ­θΌ‰γ§γγ‚‹γƒ‘γƒΌγƒ„γ¨γͺγ‚ŠγΎγ™γ€‚\n\n上位γεˆ»ε°ζ©Ÿγ‚’δ½Ώγ†γ“γ¨γ§γ€γ‚ˆγ‚Šι«˜ζ€§θƒ½γͺε›žθ·―γγƒ‘γƒΌγƒ„γ‚’δ½œζˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.medium_voltage.mv_silicon_boule.title": "γ‚·γƒͺコンガチャ", + "quests.medium_voltage.mv_silicon_boule.subtitle": "ウェハーは代替可能", + "quests.medium_voltage.mv_silicon_boule.desc": "&9γ‚·γƒͺγ‚³γƒ³ε˜η΅ζ™Ά&rγδ½œζˆγ«γ―、&3EBF&rγŒεΏ…θ¦γ§γ™γ€‚γγζζ–™γ―、&aγ‚±γ‚€η΄ γη²‰&rγŒεŠγ‚Ήγ‚Ώγƒƒγ‚―γ¨γ€ε°‘ι‡γ&aγƒ’εŒ–γ‚¬γƒͺウム&rです。そγδΈ»γͺη”¨ι€”γ―γ€ε›žθ·―γζζ–™γ§γ‚γ‚‹&6ウェハー&rγδ½œζˆγ§γ™γ€‚\n\nγ‚·γƒͺγ‚³γƒ³ε˜η΅ζ™ΆγŒδ½œζˆγ§γγŸγ‚‰γ€&3θ£ζ–­ζ©Ÿ&rγ§γγ‚Œγ‚’εŠ ε·₯γ™γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€16個γγ‚·γƒͺコンウェハーをε…₯手できます。\n\n&c注意:&rγ‚·γƒͺγ‚³γƒ³ε˜η΅ζ™Άγη²ΎιŒ¬γ«γ―、γͺんと&47εˆ†εŠ&rγ‚‚γζ™‚ι–“γ‚’θ¦γ—γΎγ™γ€‚ζΆˆθ²»ι›»εŠ›γ―120EU/tγ§γ€εˆθ¨ˆγ™γ‚‹γ¨1,080,000EUγ«ι”γ—γΎγ™γ€‚ι€”δΈ­γ§ι›»ζ°—γŒθΆ³γ‚Šγͺくγͺγ£γŸε ΄εˆγ€η²ΎιŒ¬γ&cι€²ζ—γŒδ½ŽδΈ‹&rします。\n\nι›»ζ°—γŒθΆ³γ‚Šγ¦γ„γŸγ¨γ—γ¦γ‚‚γ€ζ‰€θ¦ζ™‚ι–“γŒηŒ›ηƒˆγ«ι•·γ„γŸγ‚γ€θ€‡ζ•°γEBFγ§εŒζ™‚γ«η²ΎιŒ¬γ‚’θ‘Œγ†γ“γ¨γ‚’γŠγ™γ™γ‚γ—γΎγ™γ€‚", + "quests.medium_voltage.mv_silicon.title": "γ‚±γ‚€η΄ γη²‰", "quests.medium_voltage.mv_silicon.subtitle": "", - "quests.medium_voltage.mv_silicon.desc.1": "You’ll need to get used to it: in &dGregTech&r, there are always &amultiple ways&r to reach what you wantβ€”a philosophy we made sure to preserve in &aTerrafirmaGreg&r.\n\nTo obtain &5Silicon&r, we’ll suggest &ctwo main methods&r so you have clear directions. As always, it’s up to you to figure out what’s &abest for your situation&r.", - "quests.medium_voltage.mv_silicon.desc.2": "First method: &amining silicon-rich ores&r. Look for &9Mica&r or &9Kyanite&r veinsβ€”they also contain &dAluminium&r. Alternatively, you can &aElectrolyze Zeolite Dust&r, found in &9Chalcopyrite&r and &dRealgar&r veins.\n\nSecond method: &eAdvanced but powerful&r. Although more expensive to set up and slower early on, it becomes the &ebest method&r at &6HV&r and beyond. Plus, it generates &9Oxygen&r as a bonus! The idea is simple: &aElectrolyze Silicon Dioxide Dust&r into &9Oxygen&r and &5Silicon&r. You can get &aSilicon Dioxide Dust&r by &9centrifuging Flint Dust&r, which itself comes from &9Flint&r collected by &asifting Gravel&r.\n\nThis setup can become &afully passive&r easily. Try using the &aEMI Recipe Tree&r tool (bottom left of your screen) to plan your buildsβ€”it really helps!", - "quests.medium_voltage.mv_ulpic.title": "ULPIC Chips", - "quests.medium_voltage.mv_ulpic.subtitle": "Pickin' up Chips", - "quests.medium_voltage.mv_ulpic.desc": "Using a Sapphire Lens, engrave a Silicon Wafer into an ULPIC Wafer.\n\nThis can be processed in a Cutter for ULPIC Chips, which are important for some multiblock components!\n\nMore specificaly ", - "quests.medium_voltage.mv_ic.title": "IC Chips", + "quests.medium_voltage.mv_silicon.desc.1": "&dGregTech&rγ«γŠγ„γ¦γ―γ€ε€§ζŠ΅γγ‚’むテムに぀いて耇数γγƒ¬γ‚·γƒ”γŒε­˜εœ¨γ—γΎγ™γ€‚&aTerrafirmaGreg&rγ§γ‚‚γ€γγ‚Œγ―εŒγ˜γ§γ™γ€‚\n\n&5γ‚±γ‚€η΄ &rγδΈ»γͺδ½œζˆζ–Ήζ³•γ―2η¨ι‘žγ‚γ‚ŠγΎγ™γ€‚γ©γ‚ŒγŒζœ€ι©γ‹γ―、θ‡ͺεˆ†γηŠΆζ³γ«εˆγ‚γ›γ¦θ€ƒγˆγΎγ—γ‚‡γ†γ€‚", + "quests.medium_voltage.mv_silicon.desc.2": "方法1:&aι‰±ηŸ³γ‹γ‚‰ε–γ‚Šε‡Ίγ™&r。&9雲母&rγ‚„&9θ—ζ™ΆηŸ³&rγι‰±θ„ˆγ‚’ζŽ’γ—γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ‚‰ι‰±θ„ˆγ§γ―γ€&dγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &rγι‰±ηŸ³γ‚‚ε…₯ζ‰‹γ§γγΎγ™γ€‚γΎγŸγ€&aγ‚Όγ‚ͺγƒ©γ‚€γƒˆ&rγ‚’ι εΏƒεˆ†ι›’γ™γ‚‹γ“γ¨γ§γ‚‚ε…₯手できます。ゼγ‚ͺγƒ©γ‚€γƒˆγ―&9ι»„ιŠ…ι‰±&rγι‰±θ„ˆγ«η”Ÿζˆγ•γ‚ŒγΎγ™γ€‚\n\n方法2:&aδΊŒι…ΈεŒ–γ‚±γ‚€η΄ &rγ‚’ι›»ζ°—εˆ†θ§£γ™γ‚‹γ€‚γ“γ‘γ‚‰γζ–ΉγŒδΎΏεˆ©γ§γ™γŒγ€ηΎζ™‚点では必要γͺζΊ–ε‚™γŒε€šγγ€γΎγŸεŠ ε·₯時間も遅いです。&6HV&rδ»₯ι™γ§γ‚γ‚Œγ°γ€γ“γ‘γ‚‰γŒζœ€θ‰―γζ–Ήζ³•とγͺγ‚ŠγΎγ™γ€‚εŠ γˆγ¦γ€γ“γζ–Ήζ³•γͺら&9ι…Έη΄ &rγŒε‰―η”£η‰©γ¨γ—γ¦εΎ—γ‚‰γ‚ŒγΎγ™γ€‚δΊŒι…ΈεŒ–γ‚±γ‚€η΄ γ―&9η«ζ‰“ηŸ³γη²‰&rγ‚’ι εΏƒεˆ†ι›’γ™γ‚‹γ“γ¨γ§ε…₯ζ‰‹γ§γγ€η«ζ‰“ηŸ³γ―&aη ‚εˆ©&rを選εˆ₯ζ©Ÿγ«γ‹γ‘γ‚‹γ“γ¨γ§ε…₯手できます。\n\nγ‚γ–γ‚γ–ε€–ε‡Ίγ›γšγ¨γ‚‚γ€ζ”Ύη½γ—γ¦γ„γ‚Œγ°γ‚±γ‚€η΄ γŒζ‰‹γ«ε…₯γ‚‹γγ§γ€ιžεΈΈγ«ζœ‰η”¨γ§γ™γ€‚", + "quests.medium_voltage.mv_ulpic.title": "ULPICチップ", + "quests.medium_voltage.mv_ulpic.subtitle": "ここでチップをひと぀まみ", + "quests.medium_voltage.mv_ulpic.desc": "ァフゑむをレンズでシγƒͺγ‚³γƒ³γ‚¦γ‚§γƒγƒΌγ«εˆ»ε°γ™γ‚‹γ“γ¨γ§γ€ULPICγ‚¦γ‚§γƒγƒΌγ‚’δ½œζˆγ§γγΎγ™γ€‚\n\nγ“γ‚Œγ‚’θ£ζ–­ζ©Ÿγ§γ•γ‚‰γ«εŠ ε·₯すると、ULPICチップにγͺγ‚ŠγΎγ™γ€‚ULPICγƒγƒƒγƒ—γ―γ€γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ©Ÿζ’°γγ¨γ‚γ‚‹γƒ‘γƒΌγƒ„γ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«εΏ…θ¦γ§γ™γ€‚γγγƒ‘ーツとは……(ζ¬‘γ‚―γ‚¨γ‚Ήγƒˆγ«γ€γ₯く)", + "quests.medium_voltage.mv_ic.title": "ICチップ", "quests.medium_voltage.mv_ic.subtitle": "I C U", - "quests.medium_voltage.mv_ic.desc": "Using a Ruby Lens, engrave a Silicon Wafer into an ILC Wafer.\n\nThis can be processed in a Cutter for IC Chips, which are important components that will be precious when improving upon your circuit crafting capabilities.", - "quests.medium_voltage.mv_ram.title": "Download more RAM", - "quests.medium_voltage.mv_ram.subtitle": "That's from the Daft Punk you know?", - "quests.medium_voltage.mv_ram.desc": "&aRandom Access Memory&r is required for many Circuits.", - "quests.medium_voltage.mv_cpu.title": "Get a better CPU", - "quests.medium_voltage.mv_cpu.subtitle": "Gamers usually prefer GPU", - "quests.medium_voltage.mv_cpu.desc": "&aThe &eCPU&r is one of the most important pieces of technology in your factory.\n\nThe &eCPU Wafer&r is a special oneβ€”it can be upgraded later through a &2Chemical Reaction&r.\n\nBut for now, you’ll need the &eCPU Chip&r to craft the best &bMV&r circuits available at this stage.\n\nMake sure to produce a few extra, as they’ll be essential for future upgrades.", - "quests.medium_voltage.lsb.title": "Getting very steamy", - "quests.medium_voltage.lsb.subtitle": "If you have unlimited fuel, it can still be good", - "quests.medium_voltage.lsb.desc": "If you're &lstill&r running off the &3Large Bronze Boiler&r, you may want to upgrade to the &3Large Steel Boiler&r.\n\nIt's slightly more efficient than the &3LBB&r, and produces &d1800 mB/t of Steam&r.\n\nWe'd recommend you try other power options at this point.", + "quests.medium_voltage.mv_ic.desc": "ルビーレンズでシγƒͺγ‚³γƒ³γ‚¦γ‚§γƒγƒΌγ«εˆ»ε°γ™γ‚‹γ“γ¨γ§γ€ICUγ‚¦γ‚§γƒγƒΌγ‚’δ½œζˆγ§γγΎγ™γ€‚\n\nγ“γ‚Œγ‚’θ£ζ–­ζ©Ÿγ§γ•γ‚‰γ«εŠ ε·₯すると、ICUチップにγͺγ‚ŠγΎγ™γ€‚ICUγƒγƒƒγƒ—γ―ιžεΈΈγ«ζœ‰η”¨γͺ中間素材です。とくに、特ζŠγͺε›žθ·―γ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«ε€šγδ½Ώγ„γΎγ™γ€‚", + "quests.medium_voltage.mv_ram.title": "RAMをダウンロード", + "quests.medium_voltage.mv_ram.subtitle": "Daft Punkγ€ŽRandom Access Memories』を聴こう!", + "quests.medium_voltage.mv_ram.desc": "&aRAM&rγ―ε›žθ·―γδ½œζˆγ«εΏ…要γͺ中間素材です。", + "quests.medium_voltage.mv_cpu.title": "γ‚ˆγ‚Šι«˜ζ€§θƒ½γͺCPUγ‚’", + "quests.medium_voltage.mv_cpu.subtitle": "GPUγζ–ΉγŒζ¬²γ—い!", + "quests.medium_voltage.mv_cpu.desc": "&a&eCPU&rγ―ζœ€γ‚‚ι‡θ¦γͺζŠ€θ‘“γγ²γ¨γ€γ§γ™γ€‚\n\n特に&eCPUウェハー&rは、&2εŒ–ε­¦εεΏœε™¨&rγ§γ•γ‚‰γ«εΌ·εŒ–γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ²γ¨γΎγšγ€δ»Šγ―&eCPUチップ&rγ‚’δ½Ώγ£γ¦γ€δΈŠδ½&bMV&rε›žθ·―γδ½œζˆγ‚’めざしましょう。\n\nγ„γγ‚‰γ‹δ½™γ‚‰γ›γ¦γŠγγ¨γ€ε°†ζ₯役に立けます。", + "quests.medium_voltage.lsb.title": "γ‚‚γ£γ¨γŸγγ•γ‚“γθ’Έζ°—γ‚’", + "quests.medium_voltage.lsb.subtitle": "ζœ‰η”¨(η‡ƒζ–™γŒεεˆ†γ«γ‚γ‚‹γͺら)", + "quests.medium_voltage.lsb.desc": "δ»ŠεΎŒγ‚‚&3θ’Έζ°—η™Ίι›»&rγ‚’δ½Ώγ„ηΆšγ‘γ‚‹γγ§γ‚γ‚Œγ°γ€γγ‚γγ‚&3γ‚ΉγƒγƒΌγƒ«θ£½ε€§εž‹θ’Έζ°—γƒœγ‚€γƒ©γƒΌ&rγ‚’δ½œζˆγ—γŸζ–ΉγŒγ‚ˆγ„γ§γ™γ€‚\n\nγƒ–γƒ­γƒ³γ‚Ίθ£½γ‚ˆγ‚Šγ‚‚γ‚„γ‚„ι«˜εŠΉηŽ‡γ§γ€ζœ€ε€§&d1800mB/t&rγθ’Έζ°—γ‚’η”Ÿζˆγ—γΎγ™γ€‚\n\nγ¨γ―γ„γˆγ€MVδ»₯降は他γη™Ίι›»ζ–Ήζ³•γ‚’δ½Ώγ£γŸζ–ΉγŒγ‚ˆγ„γ§γ™γ€‚", + "quests.medium_voltage.stainless_greate.title": "Greate-ステンレスバージョン", + "quests.medium_voltage.stainless_greate.subtitle": "HS - ι«˜εΏœεŠ›ζ™‚δ»£", + "quests.medium_voltage.stainless_greate.desc": "こγγ‚―γ‚¨γ‚Ήγƒˆγ―γ€δ»Šγγ‚Ώγ‚€γƒŸγƒ³γ‚°γ§Greateγ«ζ–°γŸγͺγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γŒθΏ½εŠ γ•γ‚Œγ¦γ„γ‚‹γ“γ¨γ‚’ηŸ₯γ‚‰γ›γ‚‹γŸγ‚γγ‚‚γγ§γ™γ€‚\n\n特に新しい破砕ホむールはかγͺγ‚Šε½Ήη«‹γ£γ¦γγ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚HVη²‰η •ζ©Ÿγ¨εŒγ˜γ‚ˆγ†γ«ε‰―η”£η‰©γ‚’ε›žεŽγ§γγ‚‹γ†γˆγ€θ€‡ζ•°γγ‚’γ‚€γƒ†γƒ γ‚’εŒζ™‚ε‡¦η†γ§γγ‚‹γγ§γ€δ½œζ₯­εŠΉηŽ‡γŒε€§εΉ…γ«δΈŠγŒγ‚ŠγΎγ™οΌ", "quests.metal_age": "ι‡‘ε±žζ™‚δ»£", - "quests.metal_age.subtitle": "ζŠ€θ‘“γε€œζ˜Žγ‘", + "quests.metal_age.subtitle": "ι‰±ηŸ³γ‚’ζ§γ’γ‚ˆ", "quests.metal_age.weld_bronze_ingots.title": "ブロンズγζΊΆζŽ₯", "quests.metal_age.weld_bronze_ingots.subtitle": "ηΏ’γ†γ‚ˆγ‚Šζ…£γ‚Œγ‚", "quests.metal_age.weld_bronze_ingots.desc": "γΎγšγ€γ©γη¨ι‘žγ§γ‚‚いいγγ§γ€γƒ–ロンズγγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’14個δ»₯δΈŠι›†γ‚γ€ιŠ…γι‡‘εΊŠγ§ζΊΆζŽ₯しましょう。\n\nη¬¬δΊŒη­‰η΄šγι‡‘εΊŠγ―γƒ“γ‚Ήγƒžγ‚Ήγƒ–γƒ­γƒ³γ‚Ίγ€γƒ–γƒ­γƒ³γ‚Ίγ€γΎγŸγ―γƒ–γƒ©γƒƒγ‚―γƒ–γƒ­γƒ³γ‚Ίγ§δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γŒγ€εˆ₯γι‡‘ε±žγ©γ†γ—γ‚’εˆγ‚γ›γ¦δ½Ώγ†γ“γ¨γ―できません。", @@ -2882,19 +3131,19 @@ "quests.metal_age.anvil_recycling.desc": "欑γη­‰η΄šγι‡‘εΊŠ(ιŠ…γ‹γ‚‰γƒ–γƒ­γƒ³γ‚Ίγ€γΎγŸγ―γƒ–γƒ­γƒ³γ‚Ίγ‹γ‚‰ιŒ¬ι‰„γͺど)γ‚’δ½œζˆγ™γ‚‹γ¨γ€ε‰γη­‰η΄šγι‡‘εΊŠγ―εŸΊζœ¬ηš„γ«δ½Ώγ„ι“γŒγͺくγͺγ‚ŠγΎγ™γ€‚\n\nγŸγ γ—γ€ι‡‘ε±žγ§γ§γγ¦γ„γ‚‹γγ§γ€ζΊΆγ‹γ—γ¦ε†εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ\n壺を炉γγ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚Ήγε³ε΄γ«η½γγ€ι‡‘εΊŠγ‚’ζΊΆγ‘γ‚‹ζΈ©εΊ¦γ«γͺγ‚‹γΎγ§γ‚†γ£γγ‚Šγ¨εŠ η†±γ—γΎγ™γ€‚ζΊΆγ‘γŸι‡‘ε±žγ―ε£ΊγδΈ­γ«γŸγΎγ‚‹γγ§γ€γγ‚Œγ‚’γ‚€γƒ³γ‚΄γƒƒγƒˆγͺγ©γ«ζˆ»γ™γ“γ¨γŒγ§γγΎγ™οΌ", "quests.metal_age.bronze_anvil.title": "第二γι‡‘εΊŠ:ブロンズ", "quests.metal_age.bronze_anvil.subtitle": "ζ©Ÿζ’°δ»•ζŽ›γ‘γζ™‚δ»£γŒζ₯ます", - "quests.metal_age.bronze_anvil.desc": "ι‡‘ε±žγ‚’γƒ€γƒ–γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆδ»₯ε€–γ«εŠ ε·₯γ™γ‚‹γ«γ―γ€εŒγ˜η­‰η΄šδ»₯上γι‡‘εΊŠγ‚’δ½Ώη”¨γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ι‡‘εΊŠγ§γδ½œζ₯­γ―γ‚„γ‚„θ€‡ι›‘γ§γ™γŒγ€γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γTFG_Infoγ«θ©³η΄°γŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nγγ—γ¦γ€γƒ–γƒ­γƒ³γ‚Ίγ«γ‚ˆγ£γ¦ζ©Ÿζ’°δ»•ζŽ›γ‘γ‚’εˆ©η”¨γ—γŸθ‡ͺε‹•εŒ–γŒγ€γ„γ«θ§£ζ”Ύγ•γ‚ŒγΎγ™οΌ", + "quests.metal_age.bronze_anvil.desc": "ι‡‘ε±žγ‚’γƒ€γƒ–γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆδ»₯ε€–γ«εŠ ε·₯γ™γ‚‹γ«γ―γ€εŒγ˜η­‰η΄šδ»₯上γι‡‘εΊŠγ‚’δ½Ώη”¨γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nι‡‘εΊŠγ§γδ½œζ₯­γ―γ‚„γ‚„θ€‡ι›‘γ§γ™γŒγ€γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γTFG_Infoγ«θ©³η΄°γŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nγγ—γ¦γ€γƒ–γƒ­γƒ³γ‚Ίγ«γ‚ˆγ£γ¦ζ©Ÿζ’°δ»•ζŽ›γ‘γ‚’εˆ©η”¨γ—γŸθ‡ͺε‹•εŒ–γŒγ€γ„γ«θ§£ζ”Ύγ•γ‚ŒγΎγ™οΌ", "quests.metal_age.bronze_goodies.title": "γƒ–γƒ­γƒ³γ‚Ίγ‚’εˆ©η”¨γ—γŸζ©Ÿζ’°", "quests.metal_age.bronze_goodies.subtitle": "時はζ₯た!", "quests.metal_age.bronze_goodies.desc": "γƒ–γƒ­γƒ³γ‚Ίγ―εˆζ­©ηš„γͺζ©Ÿζ’°δ»•ζŽ›γ‘γ‚’δ½œγ‚‹γγ«ι©γ—γŸεΌ·εΊ¦γ‚’ζŒγ€η΄ ζγ§γ™οΌ\n\nγ“γ‚Œγ‚’εˆ©η”¨γ™γ‚‹ιš›γ―γ€γ‚―γ‚¨γ‚Ήγƒˆγ&oγ€ŒεˆζœŸγθ‡ͺε‹•εŒ–γ€&rγη« γ‚’参考にしてください!", "quests.metal_age.copper_diving.title": "ιŠ…γζ½œζ°΄θ£…ε‚™", "quests.metal_age.copper_diving.subtitle": "そんγͺγ«ιŠ…γŒγ‚γ‚‹γ‚“γͺγ‚‰γ€γ“γ‚Œγ¨γ‹γ―γ©γ†οΌŸ", - "quests.metal_age.copper_diving.desc": "洞ηͺŸγεΈ―ζ°΄ε±€γ€δ½•γ¨γ‹γ—γŸγ„γ§γ™γ‚ˆγ­γ€‚ ιŠ…γζ½œζ°΄θ£…ε‚™γ‚’δ½œγ‚Œγ°ζœ€ε€§20εˆ†ι–“γζ½œζ°΄γŒε―能です!", + "quests.metal_age.copper_diving.desc": "洞ηͺŸγεΈ―ζ°΄ε±€γ€δ½•γ¨γ‹γ—γŸγ„γ§γ™γ‚ˆγ­γ€‚\nιŠ…γζ½œζ°΄θ£…ε‚™γ‚’δ½œγ‚Œγ°ζœ€ε€§20εˆ†ι–“γζ½œζ°΄γŒε―能です!", "quests.metal_age.bloomery.title": "ε‘Šι‰„η‚‰", "quests.metal_age.bloomery.subtitle": "鉄器時代をη›ζŒ‡γ—て。", - "quests.metal_age.bloomery.desc": "ε‘Šι‰„η‚‰γ―γ€ιŒ¬ι‰„γ‚’δ½œζˆγ™γ‚‹γŸγ‚γTerraFirmaCraftγγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ§γ™γ€‚η‚‰γ§ι‰„ι‰±ηŸ³γ‚’ζΊΆγ‹γ™γ¨ι‹³ι‰„γ«γͺγ‚ŠγΎγ™γ€‚γ“γ‚Œγ―θ„†γγ€ιŒ¬ι‰„γ»γ©γθ€δΉ…ζ€§γ‚‚γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nε‘Šι‰„η‚‰γ―ι«˜δΎ‘γͺγγ§γ€θ‡ͺε‹•γƒ—γƒ¬γƒΌγƒˆη”Ÿη”£γ¨ι‰±ηŸ³ε‡¦η†γθ¨­ε‚™γ‚’整備するγγ‚‚γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚\n\nγƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«γ―γ€ε‘Šι‰„η‚‰γδ»•硄みと必要γͺι‰„γ¨ζœ¨η‚­γζ­£γ—γ„ζ―”ηŽ‡γ«ι–’γ™γ‚‹θ©³γ—γ„ζƒ…ε ±γŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚", + "quests.metal_age.bloomery.desc": "ε‘Šι‰„η‚‰γ―γ€ιŒ¬ι‰„γ‚’δ½œζˆγ™γ‚‹γŸγ‚γTerraFirmaCraftγγƒžγƒ«γƒγƒ–ロックです。\nη‚‰γ§ι‰„ι‰±ηŸ³γ‚’ζΊΆγ‹γ™γ¨ι‹³ι‰„γ«γͺγ£γ¦γ—γΎγ„γΎγ™γ€‚γ“γ‚Œγ―θ„†γγ€ιŒ¬ι‰„γ»γ©γθ€δΉ…ζ€§γ‚‚γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nε‘Šι‰„η‚‰γ―ι«˜δΎ‘γͺγγ§γ€θ‡ͺε‹•γƒ—γƒ¬γƒΌγƒˆη”Ÿη”£γ¨ι‰±ηŸ³ε‡¦η†γθ¨­ε‚™γ‚’整備するγγ‚‚γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚\n\nγƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«γ―γ€ε‘Šι‰„η‚‰γδ»•硄みと必要γͺι‰„γ¨ζœ¨η‚­γζ­£γ—γ„ζ―”ηŽ‡γ«ι–’γ™γ‚‹θ©³γ—γ„ζƒ…ε ±γŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚", "quests.metal_age.mining.title": "ι‡‘ε±žζ™‚δ»£γζŽ‘掘", "quests.metal_age.mining.subtitle": "θͺ°γ«γ γ£γ¦ζ­’γ‚γ‚‰γ‚Œγ£γ“γͺいさ", - "quests.metal_age.mining.desc": "ζŽ‘ζŽ˜γ€γγ‚Œγ―γ“γModPackγι†ι†ε‘³γδΈ€γ€γ§γ™οΌι‡‘ε±žζ™‚δ»£γι€²θ‘Œγ«γ‚‚&l倧量γ&rι‡‘ε±žγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚ そこで役に立぀γγŒζŽ‘ζŽ˜η”¨γƒγƒ³γƒžγƒΌγ§γ™οΌγ“γ‚Œγ―γ€ζŽ‘ζŽ˜ι€ŸεΊ¦γŒε°‘γ—ι…γγͺγ‚‹δ»£γ‚γ‚Šγ«γ€3x3x1γη―„ε›²γγƒ–γƒ­γƒƒγ‚―γ‚’ζŽ‘ζŽ˜γ§γγ‚‹γƒ„γƒΌγƒ«γ§γ™γ€‚γ‚Ήγƒ‹γƒΌγ‚―γ—γ¦γ€δΈ€εΊ¦γ«1぀γγƒ–γƒ­γƒƒγ‚―γ‚’η ΄ε£Šγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.metal_age.mining.desc": "ζŽ‘ζŽ˜γ€γγ‚Œγ―γ“γModPackγι†ι†ε‘³γδΈ€γ€γ§γ™οΌι‡‘ε±žζ™‚δ»£γι€²θ‘Œγ«γ‚‚&l倧量γ&rι‡‘ε±žγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\nそこで役に立぀γγŒζŽ‘ζŽ˜η”¨γƒγƒ³γƒžγƒΌγ§γ™οΌγ“γ‚Œγ―γ€ζŽ‘ζŽ˜ι€ŸεΊ¦γŒε°‘γ—ι…γγͺγ‚‹δ»£γ‚γ‚Šγ«γ€3x3x1γη―„ε›²γγƒ–γƒ­γƒƒγ‚―γ‚’ζŽ‘ζŽ˜γ§γγ‚‹γƒ„γƒΌγƒ«γ§γ™γ€‚\nスニークして、一度に1぀γγƒ–γƒ­γƒƒγ‚―γ‚’η ΄ε£Šγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", "quests.metal_age.bellows.title": "ちいご", "quests.metal_age.bellows.subtitle": "もっと!熱くγͺγ‚Œγ‚ˆοΌ", "quests.metal_age.bellows.desc": "γ΅γ„γ”γ‚’δ½Ώγˆγ°γ€η‚‰γδΈ­γ«η©Ίζ°—γ‚’ι€γ‚ŠθΎΌγ‚€γ“γ¨γ§γ€η‡ƒζ–™γ‚’γ‚ˆγ‚Šζ—©γζΆˆθ²»γ—γ¦γ€η‚‰γε†…部γζΈ©εΊ¦γ‚’γ•γ‚‰γ«ι«˜γγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ“γ†γ—γ¦η”ŸγΏε‡Ίγ—γŸι«˜ζΈ©γ―γ€ζœ¨η‚­γ§ι™Άε™¨γ‚’η„Όγ„γŸγ‚Šγ€η‰Ήεšγι‡‘ε±žγ‚’ζΊΆγ‹γ—γŸγ‚Šγ™γ‚‹γŸγ‚γ«εΏ…θ¦γ§γ™γ€‚\n\nηŸ³η‚­γ‚„γ‚³γƒΌγ‚―γ‚Ήγͺら、ちいごを使わγͺγγ¦γ‚‚ι«˜ζΈ©γ«γͺγ‚ŠγΎγ™γ€‚", @@ -2903,31 +3152,31 @@ "quests.metal_age.wrought_iron_anvil.desc": "ιŒ¬ι‰„γι‡‘εΊŠγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ιŒ¬ι‰„γγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’γƒ—γƒ¬γƒΌγƒˆγ‚„γ€γƒ„γƒΌγƒ«γƒ˜γƒƒγƒ‰γͺどγγ•まざまγͺγ‚’γ‚€γƒ†γƒ γ«εŠ ε·₯できます。\n\nιŒ¬ι‰„γγƒ„γƒΌγƒ«γ¨ιŽ§γ―γƒ–γƒ­γƒ³γ‚Ίγ‚ˆγ‚Šγ‚‚ε€§εΉ…γ«ζ€§θƒ½γŒδΈŠγŒγ‚‹γ‚γ‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€θ€δΉ…ζ€§γŒγ―γ‚‹γ‹γ«ε„ͺγ‚Œγ¦γ„γΎγ™γ€‚\n\n欑γι‡‘εΊŠγδ½œζˆγ―ι›£ζ˜“εΊ¦γŒε€§εΉ…γ«δΈŠγŒγ‚‹γŸγ‚γ€θ…°γ‚’ζγˆγ¦γ“γModPackにある他γθ¦η΄ γζŽ’求をするγγ«γ„γ„ζ™‚ζœŸγ γ¨ζ€γ„γΎγ™γ€‚", "quests.metal_age.coke_oven.title": "コークス炉", "quests.metal_age.coke_oven.subtitle": "ζœ¨η‚­γε±±γ‹γ‚‰γε’ζ₯­", - "quests.metal_age.coke_oven.desc.1": "γ‚³γƒΌγ‚―γ‚Ήη‚‰γ―γ€ζœ€εˆγGregTechγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ§γ™οΌζœ¨η‚­γ‚„γγδ»–γεΌ·εŠ›γͺ燃料γθ‡ͺε‹•γ‚―γƒ©γƒ•γƒˆγ«δ½ΏγˆγΎγ™γ€‚ コークス炉は、1぀γδΈΈε€ͺから1぀γζœ¨η‚­γ¨250mbγγ‚―レγ‚ͺγ‚½γƒΌγƒˆγ‚’η”Ÿζˆγ—γΎγ™γ€‚γ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγ―γ€ζœ¨ζγι˜²θ…ε‡¦η†γ«δ½Ώη”¨γ•γ‚Œγ‚‹ι‡θ¦γͺεŒ–ε­¦η‰©θ³ͺです。\n\nパむンγγ‚³γƒΌγ‚―γ‚Ήη‚‰γƒ–γƒ­γƒƒγ‚―γ‚’δ½œζˆγ—γ€EMIγγ€Œη”¨ι€”」キー(γƒ‡γƒ•γ‚©γƒ«γƒˆγ―γ€ŒU」)γ‚’ζŠΌγ™γ¨γ€γ€Œγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζƒ…ε ±γ€γ¨γ„γ†γ‚Ώγƒ–γŒθ‘¨η€Ίγ•γ‚Œγ€γ‚³γƒΌγ‚―γ‚Ήη‚‰γζ§‹ζˆγŒθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚\n\nζœ¬δ½“γ¨γͺるブロックを設η½γ—、スニークしγͺγŒγ‚‰ε³γ‚―γƒͺγƒƒγ‚―γ™γ‚‹γ“γ¨γ§γ€θΆ³γ‚Šγͺいブロックγγƒ›γƒ­γ‚°γƒ©γƒ γ‚’葨瀺することもできます。", - "quests.metal_age.coke_oven.desc.2": "コークス炉は、コークス炉用ハッチを使用してεŒε…¨γ«θ‡ͺε‹•εŒ–γ§γγΎγ™γ€‚γƒγƒƒγƒγ―η‚‰γε΄ι’に配η½γ•γ‚Œγ€γ‚’むテムと梲体γδΈ‘ζ–Ήγε…₯εŠ›γ¨ε‡ΊεŠ›γŒε―θƒ½γ§γ™γ€‚\n\nε…₯εŠ›ε£γ«γ‚―γƒ¬γƒΌγƒˆγ€ε‡ΊεŠ›ε£γ«γƒγ‚§γ‚Ήγƒˆγ‚„γ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγ‚’εŽι›†γ™γ‚‹γŸγ‚γγƒ‰γƒ©γƒ γ€ζ¨½γ€γΎγŸγ―倧きγͺζœ¨θ£½γ‚Ώγƒ³γ‚―γ‚’θ¨­η½γ™γ‚Œγ°γ€ε…₯εŠ›γ¨ε‡ΊεŠ›γŒθ‡ͺ動にγͺγ£γŸγ‚³γƒΌγ‚―γ‚Ήη‚‰γ‚’η°‘ε˜γ«ζ§‹η―‰γ§γγΎγ™γ€‚\n\nθ£œθΆ³οΌšγƒγ‚§γ‚Ήγƒˆγ¨γ―η•°γͺγ‚Šγ€γ‚―γƒ¬γƒΌγƒˆγ―δΈΈε€ͺγͺどγγ‚΅γ‚€γ‚ΊγŒε€§γγͺをむテムをε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γΎγŸγ€γƒ¬γƒ³γƒγ§GregTechパむプをスニークして右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€δΈ€ζ–Ήι€šθ‘Œγ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.metal_age.coke_oven.desc.1": "γ‚³γƒΌγ‚―γ‚Ήη‚‰γ―γ€ζœ€εˆγGregTechγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ§γ™οΌζœ¨η‚­γ‚„γγδ»–γεΌ·εŠ›γͺ燃料γθ‡ͺε‹•γ‚―γƒ©γƒ•γƒˆγ«δ½ΏγˆγΎγ™γ€‚\nコークス炉は、1぀γδΈΈε€ͺから1぀γζœ¨η‚­γ¨250mbγγ‚―レγ‚ͺγ‚½γƒΌγƒˆγ‚’η”Ÿζˆγ—γΎγ™γ€‚γ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγ―γ€ζœ¨ζγι˜²θ…ε‡¦η†γ«δ½Ώη”¨γ•γ‚Œγ‚‹ι‡θ¦γͺεŒ–ε­¦η‰©θ³ͺです。\n\nパむンγγ‚³γƒΌγ‚―γ‚Ήη‚‰γƒ–γƒ­γƒƒγ‚―γ‚’δ½œζˆγ—γ€EMIγγ€Œη”¨ι€”」キー(γƒ‡γƒ•γ‚©γƒ«γƒˆγ―γ€ŒU」)γ‚’ζŠΌγ™γ¨γ€γ€Œγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζƒ…ε ±γ€γ¨γ„γ†γ‚Ώγƒ–γŒθ‘¨η€Ίγ•γ‚Œγ€γ‚³γƒΌγ‚―γ‚Ήη‚‰γζ§‹ζˆγŒθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚\n\nζœ¬δ½“γ¨γͺるブロックを設η½γ—、スニークしγͺγŒγ‚‰ε³γ‚―γƒͺγƒƒγ‚―γ™γ‚‹γ“γ¨γ§γ€θΆ³γ‚Šγͺいブロックγγƒ›γƒ­γ‚°γƒ©γƒ γ‚’葨瀺することもできます。", + "quests.metal_age.coke_oven.desc.2": "コークス炉は、コークス炉用ハッチを使用してεŒε…¨γ«θ‡ͺε‹•εŒ–γ§γγΎγ™γ€‚γƒγƒƒγƒγ―η‚‰γε΄ι’に配η½γ•γ‚Œγ€γ‚’むテムと梲体γδΈ‘ζ–Ήγε…₯εŠ›γ¨ε‡ΊεŠ›γŒε―θƒ½γ§γ™γ€‚\n\nε…₯εŠ›ε£γ«γ‚―γƒ¬γƒΌγƒˆγ€ε‡ΊεŠ›ε£γ«γƒγ‚§γ‚Ήγƒˆγ‚„γ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγ‚’εŽι›†γ™γ‚‹γŸγ‚γγƒ‰γƒ©γƒ γ€ζ¨½γ€γΎγŸγ―倧きγͺζœ¨θ£½γ‚Ώγƒ³γ‚―γ‚’θ¨­η½γ™γ‚Œγ°γ€ε…₯εŠ›γ¨ε‡ΊεŠ›γŒθ‡ͺ動にγͺγ£γŸγ‚³γƒΌγ‚―γ‚Ήη‚‰γ‚’η°‘ε˜γ«ζ§‹η―‰γ§γγΎγ™γ€‚\n\nθ£œθΆ³οΌšγƒγ‚§γ‚Ήγƒˆγ¨γ―η•°γͺγ‚Šγ€γ‚―γƒ¬γƒΌγƒˆγ―δΈΈε€ͺγͺどγγ‚΅γ‚€γ‚ΊγŒε€§γγͺをむテムをε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγΎγŸγ€γƒ¬γƒ³γƒγ§GregTechパむプをスニークして右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€δΈ€ζ–Ήι€šθ‘Œγ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.metal_age.wrought_iron_goodies.title": "ιŒ¬ι‰„γ‚’εˆ©η”¨γ—γŸζ©Ÿζ’°", "quests.metal_age.wrought_iron_goodies.subtitle": "ε‰ε±±ε²©εˆι‡‘οΌŸγͺγ‚“γγ“γ¨οΌŸ", - "quests.metal_age.wrought_iron_goodies.desc": "ιŒ¬ι‰„γ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ιŒ¬ι‰„γ‚±γƒΌγ‚·γƒ³γ‚°γ‚’δ½œζˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γ“γ‚Œγ―γ€γ‚γ‚’γƒœγƒƒγ‚―γ‚ΉγͺどγCreateγε€šγγγƒžγ‚·γƒ³γ‚„ζ©Ÿζ§‹γεŸΊη€Žγ«γͺγ‚ŠγΎγ™γ€‚γ‚ˆγ‚Šι«˜εΊ¦γͺγ‚‚γγδΈ­γ«γ―γ‚ΉγƒγƒΌγƒ«γŒεΏ…θ¦γͺγ‚‚γγ‚‚γ‚γ‚ŠγΎγ™γŒγ€γ“γζ™‚点でεŒε…¨γ«θ‡ͺε‹•εŒ–γ•γ‚ŒγŸζœ¨γ¨δ½œη‰©γθΎ²ε ΄γ‚’構築することだってできます。\n\nクレγ‚ͺγ‚½γƒΌγƒˆγ―γ€ι˜²θ…ζœ¨ζγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚γ“γ‚Œγ―γ€ζ°΄θ»Šγ‚„ι’¨θ»Šγ«εŠ ε·₯でき、動物γεŠ›γ‚ˆγ‚Šγ‚‚εΌ·εŠ›γͺε‹•εŠ›γ‚’ζ‰±γˆγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.metal_age.wrought_iron_goodies.desc": "ιŒ¬ι‰„γ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ιŒ¬ι‰„γ‚±γƒΌγ‚·γƒ³γ‚°γ‚’δ½œζˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\nγ“γ‚Œγ―γ€γ‚γ‚’γƒœγƒƒγ‚―γ‚ΉγͺどγCreateγε€šγγγƒžγ‚·γƒ³γ‚„ζ©Ÿζ§‹γεŸΊη€Žγ«γͺγ‚ŠγΎγ™γ€‚γ‚ˆγ‚Šι«˜εΊ¦γͺγ‚‚γγδΈ­γ«γ―γ‚ΉγƒγƒΌγƒ«γŒεΏ…θ¦γͺγ‚‚γγ‚‚γ‚γ‚ŠγΎγ™γŒγ€γ“γζ™‚点でεŒε…¨γ«θ‡ͺε‹•εŒ–γ•γ‚ŒγŸζœ¨γ¨δ½œη‰©γθΎ²ε ΄γ‚’構築することだってできます。\n\nクレγ‚ͺγ‚½γƒΌγƒˆγ―γ€ι˜²θ…ζœ¨ζγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚γ“γ‚Œγ―γ€ζ°΄θ»Šγ‚„ι’¨θ»Šγ«εŠ ε·₯でき、動物γεŠ›γ‚ˆγ‚Šγ‚‚εΌ·εŠ›γͺε‹•εŠ›γ‚’ζ‰±γˆγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", "quests.metal_age.fire_clay_ingredients.title": "θ€η«η²˜εœŸγζζ–™", "quests.metal_age.fire_clay_ingredients.subtitle": "TerraFirmaCraftγι€šιŽε„€η€Όγ€‚", - "quests.metal_age.fire_clay_ingredients.desc": "θ€η«η²˜εœŸγ―γ€γ‚«γ‚ͺγƒͺγƒŠγ‚€γƒˆγ€γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγ€ι€šεΈΈγη²˜εœŸγ‹γ‚‰δ½œγ‚‹η‰ΉζŠγͺη²˜εœŸγ§γ€η‰Ήγ«ι«˜η†±γ«θ€ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚η”¨ι€”γ―δΈ»γ«2γ€γ‚γ‚Šγ€1γ€γ―γ€ι‡‘ε±žθ£½ιŒ¬γ‚’ζ₯½γ«γ—γ€ε£Ίγ‚ˆγ‚Šε„ͺγ‚ŒγŸεˆι‡‘δ½œζˆζ‰‹ζ΅γ¨γ—γ¦ζ©Ÿθƒ½γ™γ‚‹γ€Œγ‚‹γ€γΌγ€γ§γ€γ‚‚γ†δΈ€γ€γ―、欑γι‡‘εΊŠγ«γ‚‚δ½Ώγ‚γ‚Œγ‚‹γ‚ΉγƒγƒΌγƒ«γδ½œζˆγ«εΏ…要γͺγ€Œι«˜η‚‰γ€γ§γ™γ€‚\n\nγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγ¨γ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγδΈ‘ζ–Ήγ‚’ε…₯手するには、倧規樑γͺε†’ι™Ίγ‚’γ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹γŸγ‚γ€ζΊ–ε‚™γ‚’γ—γ¦γŠγγΎγ—γ‚‡γ†οΌ", + "quests.metal_age.fire_clay_ingredients.desc": "θ€η«η²˜εœŸγ―γ€γ‚«γ‚ͺγƒͺγƒŠγ‚€γƒˆγ€γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγ€ι€šεΈΈγη²˜εœŸγ‹γ‚‰δ½œγ‚‹η‰ΉζŠγͺη²˜εœŸγ§γ€η‰Ήγ«ι«˜η†±γ«θ€ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚\n用途は主に2γ€γ‚γ‚Šγ€1γ€γ―γ€ι‡‘ε±žθ£½ιŒ¬γ‚’ζ₯½γ«γ—γ€ε£Ίγ‚ˆγ‚Šε„ͺγ‚ŒγŸεˆι‡‘δ½œζˆζ‰‹ζ΅γ¨γ—γ¦ζ©Ÿθƒ½γ™γ‚‹γ€Œγ‚‹γ€γΌγ€γ§γ€γ‚‚γ†δΈ€γ€γ―、欑γι‡‘εΊŠγ«γ‚‚δ½Ώγ‚γ‚Œγ‚‹γ‚ΉγƒγƒΌγƒ«γδ½œζˆγ«εΏ…要γͺγ€Œι«˜η‚‰γ€γ§γ™γ€‚\n\nγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγ¨γ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγδΈ‘ζ–Ήγ‚’ε…₯手するには、倧規樑γͺε†’ι™Ίγ‚’γ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹γŸγ‚γ€ζΊ–ε‚™γ‚’γ—γ¦γŠγγΎγ—γ‚‡γ†οΌ", "quests.metal_age.overworld_kaolin.title": "εœ°δΈŠδΈ–η•Œγγ‚«γ‚ͺγƒͺン源", "quests.metal_age.overworld_kaolin.subtitle": "ε†’ι™Ίγζ™‚ι–“", - "quests.metal_age.overworld_kaolin.desc": "γ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγ―γ€ζ¨™ι«˜γŒι«˜γγ€ζ°—ζΈ©γ―ε°‘γͺくとも18εΊ¦δ»₯δΈŠγ€γγ—γ¦ι™ζ°΄ι‡300㎜δ»₯上γεœ°εŸŸγ§γγΏθ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγη”Ÿζˆζ‘δ»Άγ¨γƒ’γƒ³γƒˆγθ©³η΄°γ―γ€γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«γ‚γ‚ŠγΎγ™γ€‚\n\n南東γι₯γ‹ι γγΎγ§γ€γŠγγ‚‰γζ΅·γ‚’θΆŠγˆγ¦η§»ε‹•γ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹γ§γ—γ‚‡γ†γ€‚ι‰„θ£½ζ°΄η­’γ€ε€§ι‡γι£Ÿζ–™γ€γ‚«γƒŒγƒΌγ€ζ‰‹ζΌ•γŽγƒœγƒΌγƒˆγ€γ‚«γƒ€γƒƒγ‚―γͺどγθˆΉγ€γγ—γ¦γ§γγ‚‹γ γ‘ε€šγγγ‚«γ‚ͺγƒͺγƒ³γ‚’ζŒγ‘εΈ°γ‚‹γŸγ‚γι‹ζ¬ζ‰‹ζ΅γ‚’用意してください。\n\nγ‚―γ‚¨γ‚Ήγƒˆγγ€ŒTips-移動手ζ΅γ€γη« γ«γ―γ€ζ§˜γ€…γͺ運搬手ζ΅γ¨θˆΉγ«ι–’γ™γ‚‹ζƒ…ε ±γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.metal_age.overworld_kaolin.desc": "γ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγ―γ€ζ¨™ι«˜γŒι«˜γγ€ζ°—ζΈ©γ―ε°‘γͺくとも18εΊ¦δ»₯δΈŠγ€γγ—γ¦ι™ζ°΄ι‡300㎜δ»₯上γεœ°εŸŸγ§γγΏθ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγη”Ÿζˆζ‘δ»Άγ¨γƒ’γƒ³γƒˆγθ©³η΄°γ―γ€γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«γ‚γ‚ŠγΎγ™γ€‚\n\n南東γι₯γ‹ι γγΎγ§γ€γŠγγ‚‰γζ΅·γ‚’θΆŠγˆγ¦η§»ε‹•γ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹γ§γ—γ‚‡γ†γ€‚ι‰„θ£½ζ°΄η­’γ€ε€§ι‡γι£Ÿζ–™γ€γ‚«γƒŒγƒΌγ€ζ‰‹ζΌ•γŽγƒœγƒΌγƒˆγ€γ‚«γƒ€γƒƒγ‚―γͺどγθˆΉγ€γγ—γ¦γ§γγ‚‹γ γ‘ε€šγγγ‚«γ‚ͺγƒͺγƒ³γ‚’ζŒγ‘εΈ°γ‚‹γŸγ‚γι‹ζ¬ζ‰‹ζ΅γ‚’用意してください。\n\nγ‚―γ‚¨γ‚Ήγƒˆγγ€ŒTips-移動手ζ΅γ€γη« γ«γ―γ€ζ§˜γ€…γͺ運搬手ζ΅γ¨θˆΉγ«ι–’γ™γ‚‹ζƒ…ε ±γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.metal_age.beneath_kaolin.title": "The Beneathγγ‚«γ‚ͺγƒͺン源", "quests.metal_age.beneath_kaolin.subtitle": "さらγͺる深みへ", - "quests.metal_age.beneath_kaolin.desc": "地γεΊ•ζ·±γγ€ε²©η›€γ‚’θΆŠγˆγŸε…ˆγ«γ―ιŽι…·γͺεœ°δΈ‹η©Ίι–“γ§γ‚γ‚‹The_BeneathγŒγ‚γ‚ŠγΎγ™γ€‚δΈŠε±€ιƒ¨γ«γ―γ€η·‘θ±Šγ‹γͺγ‚ͺγ‚’γ‚·γ‚Ήγ§γ‚γ‚Šγ€γ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγŒη”Ÿζˆγ•γ‚Œγ‚‹γ€ŒLush_Hollow」というバむγ‚ͺγƒΌγƒ γŒε­˜εœ¨γ—γΎγ™γ€‚γŸγ γ—γ€γγε ΄ζ‰€γ«γ―ε›Ίζœ‰γγƒ’γƒ³γ‚Ήγ‚ΏγƒΌγŒγ‚ΉγƒγƒΌγƒ³γ—γΎγ™γ€‚εεˆ†γ«ζ³¨ζ„γ—γΎγ—γ‚‡γ†γ€‚\n\nγ“γ“γ§γ―γ€γ‚ΉγƒγƒΌγƒ«γ‚’δ½œγ‚‹γγ«ζœ€ι©γͺ燃料であるAnthraciteγ‚’ζŽ‘ζŽ˜γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\nBeneathでγγ‚΅γƒγ‚€γƒγƒ«γ―ιŽι…·γ§γ™γ€‚γ‚―γ‚¨γ‚Ήγƒˆγγ€ŒTips-ァバむバル」とフィールドガむドで詳細を璺θͺγ—てください。", + "quests.metal_age.beneath_kaolin.desc": "地γεΊ•ζ·±γγ€ε²©η›€γ‚’θΆŠγˆγŸε…ˆγ«γ―ιŽι…·γͺεœ°δΈ‹η©Ίι–“γ§γ‚γ‚‹The_BeneathγŒγ‚γ‚ŠγΎγ™γ€‚\nδΈŠε±€ιƒ¨γ«γ―γ€η·‘θ±Šγ‹γͺγ‚ͺγ‚’γ‚·γ‚Ήγ§γ‚γ‚Šγ€γ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγŒη”Ÿζˆγ•γ‚Œγ‚‹γ€ŒLush_Hollow」というバむγ‚ͺγƒΌγƒ γŒε­˜εœ¨γ—γΎγ™γ€‚γŸγ γ—γ€γγε ΄ζ‰€γ«γ―ε›Ίζœ‰γγƒ’γƒ³γ‚Ήγ‚ΏγƒΌγŒγ‚ΉγƒγƒΌγƒ³γ—γΎγ™γ€‚εεˆ†γ«ζ³¨ζ„γ—γΎγ—γ‚‡γ†γ€‚\n\nγ“γ“γ§γ―γ€γ‚ΉγƒγƒΌγƒ«γ‚’δ½œγ‚‹γγ«ζœ€ι©γͺη‡ƒζ–™γ§γ‚γ‚‹η„‘η…™η‚­γ‚’ζŽ‘ζŽ˜γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\nBeneathでγγ‚΅γƒγ‚€γƒγƒ«γ―ιŽι…·γ§γ™γ€‚γ‚―γ‚¨γ‚Ήγƒˆγγ€ŒTips-ァバむバル」とフィールドガむドで詳細を璺θͺγ—てください。", "quests.metal_age.beneath_kaolin.task": "γ‚ͺーバーワールドγε²©η›€γ‚’ζ¨ͺ断してThe Beneathγ«εˆ°ι”γ™γ‚‹", "quests.metal_age.overworld_graphite.title": "εœ°δΈŠδΈ–η•Œγγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆζΊ", "quests.metal_age.overworld_graphite.subtitle": "η›ε°γ―γ©γ“οΌŸ", - "quests.metal_age.overworld_graphite.desc": "γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆι‰±θ„ˆγ―γ€εœ°δΈ‹ζ·±γγ«εΉ³γ‚‰γ§εΊƒγ„ε††η›€ηŠΆγ«η”Ÿζˆγ•γ‚ŒγΎγ™γ€‚\n\nθ¦‹γ€γ‘γ‚‹γŸγ‚γ«γ―γ€ζ΄žηͺŸζŽ’η΄’γ‚’γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌ γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆι‰±θ„ˆγ―γ€γ‚γ‚‰γ‚†γ‚‹η¨ι‘žγε²©ηŸ³γ«η”Ÿζˆγ•γ‚Œγ‚‹ε―θƒ½ζ€§γŒγ‚γ‚Šγ€ι‰±θ„ˆγ«γ―ηŸ³η‚­γ¨γƒ€γ‚€γƒ€γƒ’γƒ³γƒ‰γ‚‚ε«γΎγ‚Œγ¦γ„γΎγ™γ€‚γŸγ γ—γ€ι‰±θ„ˆγ―ζ·±γ„γ¨γ“γ‚γ«η”Ÿζˆγ•γ‚Œγ‚‹γŸγ‚εœ°δΈŠγ«η›ε°γŒηΎγ‚Œγ‚‹γ“γ¨γ―γ‚γ£γŸγ«γͺいです。 ι‡‘ε±žθ£½γη›Ύγ€Digger_Helmetγ€ζŽ’ι‰±ζ§Œγ€ζœ›ι ι‘γͺどγι“ε…·γŒγ‚γ‚Œγ°γγ£γ¨ε½Ήγ«η«‹γ€γ§γ—γ‚‡γ†οΌ", + "quests.metal_age.overworld_graphite.desc": "γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆι‰±θ„ˆγ―γ€εœ°δΈ‹ζ·±γγ«εΉ³γ‚‰γ§εΊƒγ„ε††η›€ηŠΆγ«η”Ÿζˆγ•γ‚ŒγΎγ™γ€‚\n\nθ¦‹γ€γ‘γ‚‹γŸγ‚γ«γ―γ€ζ΄žηͺŸζŽ’η΄’γ‚’γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌ γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆι‰±θ„ˆγ―γ€γ‚γ‚‰γ‚†γ‚‹η¨ι‘žγε²©ηŸ³γ«η”Ÿζˆγ•γ‚Œγ‚‹ε―θƒ½ζ€§γŒγ‚γ‚Šγ€ι‰±θ„ˆγ«γ―ηŸ³η‚­γ¨γƒ€γ‚€γƒ€γƒ’γƒ³γƒ‰γ‚‚ε«γΎγ‚Œγ¦γ„γΎγ™γ€‚γŸγ γ—γ€ι‰±θ„ˆγ―ζ·±γ„γ¨γ“γ‚γ«η”Ÿζˆγ•γ‚Œγ‚‹γŸγ‚εœ°δΈŠγ«η›ε°γŒηΎγ‚Œγ‚‹γ“γ¨γ―γ‚γ£γŸγ«γͺいです。\nι‡‘ε±žθ£½γη›Ύγ€Digger_Helmetγ€ζŽ’ι‰±ζ§Œγ€ζœ›ι ι‘γͺどγι“ε…·γŒγ‚γ‚Œγ°γγ£γ¨ε½Ήγ«η«‹γ€γ§γ—γ‚‡γ†οΌ", "quests.metal_age.beneath_graphite.title": "The Beneathγγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆζΊ", "quests.metal_age.beneath_graphite.subtitle": "さらγͺる深みへ", - "quests.metal_age.beneath_graphite.desc": "地γεΊ•ζ·±γγ€ε²©η›€γ‚’θΆŠγˆγŸε…ˆγ«γ―ιŽι…·γͺεœ°δΈ‹η©Ίι–“γ§γ‚γ‚‹The_BeneathγŒγ‚γ‚ŠγΎγ™γ€‚Beneathでは、特倧γγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆι‰±θ„ˆγ‚’θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γŒγ€ε›Ίζœ‰γγƒ’γƒ³γ‚Ήγ‚ΏγƒΌγŒγγ‚Œγ‚’εˆγ£γ¦γ„γ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚εεˆ†γ«ζ³¨ζ„γ—γΎγ—γ‚‡γ†γ€‚\n\nγ“γ“γ§γ―γ€γ‚ΉγƒγƒΌγƒ«γ‚’δ½œγ‚‹γγ«ζœ€ι©γͺ燃料であるAnthraciteγ‚’ζŽ‘ζŽ˜γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\nBeneathでγγ‚΅γƒγ‚€γƒγƒ«γ―ιŽι…·γ§γ™γ€‚γ‚―γ‚¨γ‚Ήγƒˆγγ€ŒTips-ァバむバル」とフィールドガむドで詳細を璺θͺγ—てください。", + "quests.metal_age.beneath_graphite.desc": "地γεΊ•ζ·±γγ€ε²©η›€γ‚’θΆŠγˆγŸε…ˆγ«γ―ιŽι…·γͺεœ°δΈ‹η©Ίι–“γ§γ‚γ‚‹The_BeneathγŒγ‚γ‚ŠγΎγ™γ€‚\nBeneathでは、特倧γγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆι‰±θ„ˆγ‚’θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γŒγ€ε›Ίζœ‰γγƒ’γƒ³γ‚Ήγ‚ΏγƒΌγŒγγ‚Œγ‚’εˆγ£γ¦γ„γ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚εεˆ†γ«ζ³¨ζ„γ—γΎγ—γ‚‡γ†γ€‚\n\nγ“γ“γ§γ―γ€γ‚ΉγƒγƒΌγƒ«γ‚’δ½œγ‚‹γγ«ζœ€ι©γͺη‡ƒζ–™γ§γ‚γ‚‹η„‘η…™η‚­γ‚’ζŽ‘ζŽ˜γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\nBeneathでγγ‚΅γƒγ‚€γƒγƒ«γ―ιŽι…·γ§γ™γ€‚γ‚―γ‚¨γ‚Ήγƒˆγγ€ŒTips-ァバむバル」とフィールドガむドで詳細を璺θͺγ—てください。", "quests.metal_age.beneath_graphite.task": "γ‚ͺーバーワールドγε²©η›€γ‚’ζ¨ͺ断してThe Beneathγ«εˆ°ι”γ™γ‚‹", "quests.metal_age.kaolin_clay.title": "γ‚«γ‚ͺγƒͺγƒ³η²˜εœŸ", "quests.metal_age.kaolin_clay.subtitle": "γ‚«γ‚ͺγƒͺγƒ³ζŽ’θ¨ͺ記", - "quests.metal_age.kaolin_clay.desc": "γ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγ‚’θ¦‹γ€γ‘γŸγ‚‰γ€γ§γγ‚‹γ γ‘ε€šγζŒγ‘εΈ°γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌ ζ‚²γ—γ„γ“γ¨γ«γ€η„Όγ„γŸιš›γ«γ‚«γ‚ͺγƒͺγƒŠγ‚€γƒˆγη²‰γ«γͺγ£γ¦γγ‚Œγ‚‹η’ΊηŽ‡γ―γ‚γšγ‹20οΌ…γ—γ‹γ‚γ‚ŠγΎγ›γ‚“γ€‚γ‚ˆγ‚Šε€šγγζˆζžœη‰©γ‚’ι‹γ³γŸγ„ε ΄εˆγ―、穴ηͺ―でそγε ΄γ§η„Όγ„γ¦γ—γΎγ†γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚\n\nγ‚‹γ€γΌγ¨ι«˜η‚‰γŒδ½œζˆγ§γγŸγ‚‰γ€γγ‚Œδ»₯δΈŠγ«εΏ…θ¦γ«γͺγ‚‹γ“γ¨γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ι•·γ„θ·ι›’γ‚’δ½•εΊ¦γ‚‚εΎ€εΎ©γ™γ‚‹γ“γ¨γ‚’ιΏγ‘γŸγ‘γ‚Œγ°γ€γ“γ‚“γͺγ«ε€šγγ―θ¦γ‚‰γͺγ„γ˜γ‚ƒγͺγ„γ‹γ£γ¦γγ‚‰γ„ε€šγζŒγ‘εΈ°γ‚‹γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚\n\nP.S.:γƒγ‚¨γƒžγƒ³γ‚΅γ‚Ή(Blood_Liiy)γ―θ¦‹γ€γ‹γ£γŸγŒγ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγŒθ¦‹γ€γ‹γ‚‰γͺγ„γ¨γ„γ†ε ΄εˆγ―γ€γ‚‚γ†ε°‘γ—ζ·±γζŽ˜γ£γ¦γΏγ¦γγ γ•γ„οΌεœ°δΈ‹γ«ε°‘γ—η”Ÿζˆγ•γ‚Œγ¦γ‚‹γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.metal_age.kaolin_clay.desc": "γ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγ‚’θ¦‹γ€γ‘γŸγ‚‰γ€γ§γγ‚‹γ γ‘ε€šγζŒγ‘εΈ°γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌ\nζ‚²γ—γ„γ“γ¨γ«γ€η„Όγ„γŸιš›γ«γ‚«γ‚ͺγƒͺγƒŠγ‚€γƒˆγη²‰γ«γͺγ£γ¦γγ‚Œγ‚‹η’ΊηŽ‡γ―γ‚γšγ‹20οΌ…γ—γ‹γ‚γ‚ŠγΎγ›γ‚“γ€‚γ‚ˆγ‚Šε€šγγζˆζžœη‰©γ‚’ι‹γ³γŸγ„ε ΄εˆγ―、穴ηͺ―でそγε ΄γ§η„Όγ„γ¦γ—γΎγ†γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚\n\nγ‚‹γ€γΌγ¨ι«˜η‚‰γŒδ½œζˆγ§γγŸγ‚‰γ€γγ‚Œδ»₯δΈŠγ«εΏ…θ¦γ«γͺγ‚‹γ“γ¨γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ι•·γ„θ·ι›’γ‚’δ½•εΊ¦γ‚‚εΎ€εΎ©γ™γ‚‹γ“γ¨γ‚’ιΏγ‘γŸγ‘γ‚Œγ°γ€γ“γ‚“γͺγ«ε€šγγ―θ¦γ‚‰γͺγ„γ˜γ‚ƒγͺγ„γ‹γ£γ¦γγ‚‰γ„ε€šγζŒγ‘εΈ°γ‚‹γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚\n\nP.S.:γƒγ‚¨γƒžγƒ³γ‚΅γ‚Ή(Blood_Liiy)γ―θ¦‹γ€γ‹γ£γŸγŒγ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγŒθ¦‹γ€γ‹γ‚‰γͺγ„γ¨γ„γ†ε ΄εˆγ―γ€γ‚‚γ†ε°‘γ—ζ·±γζŽ˜γ£γ¦γΏγ¦γγ γ•γ„οΌεœ°δΈ‹γ«ε°‘γ—η”Ÿζˆγ•γ‚Œγ¦γ‚‹γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.metal_age.graphite.title": "γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆ", "quests.metal_age.graphite.subtitle": "鉛筆はγͺγ„γ‚ˆ", "quests.metal_age.graphite.desc": "γ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆγ‚’θ¦‹γ€γ‘γŸγ‚‰γ€γ§γγ‚‹γ γ‘ε€šγζŒγ‘εΈ°γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌγ‚«γ‚ͺγƒͺγƒ³η²˜εœŸγ»γ©ε€šγγ―εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“γŒγ€‚\nγ‚°γƒ©γƒ•γ‚‘γ‚€γƒˆι‰±θ„ˆγ«γ―ηŸ³η‚­γ¨γƒ€γ‚€γƒ€γƒ’γƒ³γƒ‰γ‚‚θ±Šε―Œγ§γ€γ‚ΉγƒγƒΌγƒ«γ‚’δ½œγ‚‹γŸγ‚γ«γ―ηŸ³η‚­γŒεΏ…θ¦γ«γͺることでしょう。", @@ -2940,25 +3189,25 @@ "quests.metal_age.fire_clay_products.desc": "ι€šεΈΈγη²˜εœŸγ¨εŒζ§˜γ«γ€θ€η«η²˜εœŸγ‚‚ζ‰‹γ§ζˆε½’γ§γγΎγ™γ€‚ζœ€γ‚‚ι‡θ¦γͺδ½Ώγ„ι“γ―γ€γ‚‹γ€γΌγ¨θ€η«γƒ¬γƒ³γ‚¬γ§γ™γ€‚γ©γ‘γ‚‰γ‚‚ι«˜η‚‰γ«εΏ…θ¦γ§γ™γ€‚\n\nγΎγŸγ€ι‹³εž‹ε°γ¨ι‹³ι€ ζ¨‹γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚γ“γ‚Œγ«γ‚ˆγ‚Šγ€γ‚‹γ€γΌγ‹γ‚‰θ€‡ζ•°γεž‹γ«δΈ€εΊ¦γ«ι‡‘ε±žγ‚’ι‹³ι€ γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nζœ€εΎŒγ«γ€θ€η«γγ‚€γƒ³γ‚΄γƒƒγƒˆγεž‹γŒγ‚γ‚ŠγΎγ™γ€‚ι€šεΈΈγη²˜εœŸγ§δ½œγ£γŸεž‹γ―10οΌ…γ§η ΄ζγ—γΎγ™γŒγ€γ“γ‚Œγ―1οΌ…γη’ΊηŽ‡γ§η ΄ζγ—γΎγ™γ€‚", "quests.metal_age.crucible.title": "る぀ぼ", "quests.metal_age.crucible.subtitle": "γ“γ‚Œγ§γ‚γͺγŸγ‚‚ι‡‘ε±žγ‚’ζΊΆγ‹γ™γƒ—γƒ­γ§γ™γ­", - "quests.metal_age.crucible.desc": "る぀ぼは炉γδΈŠγ«θ¨­η½γ—ます。9぀γγ‚Ήγƒ­γƒƒγƒˆγ¨εˆι‡‘ζ―”ηŽ‡γ‚’η’Ίθͺγ™γ‚‹γŸγ‚γγ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚ΉγŒγ‚γ‚Šγ€ζΆ²δ½“εΉι‡γ―4032mBγ§γ™γ€‚γΎγŸγ€ε£Šγ—γŸγ¨γγ«ε†…εΉη‰©γ‚’δΏζŒγ—γ¦γγ‚ŒγΎγ™γ€‚γγ—γ¦γ€ι«˜η‚‰γδΈ‹γ«η½γγ¨γ€ιŠ‘ι‰„γŒζΊœγΎγ£γ¦γ„γγΎγ™γ€‚\n\nる぀ぼは内部γγ™γΉγ¦γ‚’ζ··γœεˆγ‚γ›γ¦εˆι‡‘εŒ–γ—γ‚ˆγ†γ¨γ™γ‚‹γγ§ζ³¨ζ„γ—てください。TiCγδΉΎεΌθ£½ιŒ¬η‚‰γγ‚ˆγ†γ«ι‡‘ε±žγ‚’εˆ†ι›’γ—γ¦γγ‚ŒγΎγ›γ‚“γ‚ˆοΌ 使用していγͺγ„γ¨γγ―δΈ­θΊ«γ‚’η©Ίγ«γ—γ¦γŠγγ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚", + "quests.metal_age.crucible.desc": "る぀ぼは炉γδΈŠγ«θ¨­η½γ—ます。9぀γγ‚Ήγƒ­γƒƒγƒˆγ¨εˆι‡‘ζ―”ηŽ‡γ‚’η’Ίθͺγ™γ‚‹γŸγ‚γγ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γƒΌγ‚ΉγŒγ‚γ‚Šγ€ζΆ²δ½“εΉι‡γ―4032mBです。\nγΎγŸγ€ε£Šγ—γŸγ¨γγ«ε†…εΉη‰©γ‚’δΏζŒγ—γ¦γγ‚ŒγΎγ™γ€‚γγ—γ¦γ€ι«˜η‚‰γδΈ‹γ«η½γγ¨γ€ιŠ‘ι‰„γŒζΊœγΎγ£γ¦γ„γγΎγ™γ€‚\n\nる぀ぼは内部γγ™γΉγ¦γ‚’ζ··γœεˆγ‚γ›γ¦εˆι‡‘εŒ–γ—γ‚ˆγ†γ¨γ™γ‚‹γγ§ζ³¨ζ„γ—てください。TiCγδΉΎεΌθ£½ιŒ¬η‚‰γγ‚ˆγ†γ«ι‡‘ε±žγ‚’εˆ†ι›’γ—γ¦γγ‚ŒγΎγ›γ‚“γ‚ˆοΌ\n使用していγͺγ„γ¨γγ―δΈ­θΊ«γ‚’η©Ίγ«γ—γ¦γŠγγ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚", "quests.metal_age.fire_bricks.title": "耐火レンガ", "quests.metal_age.fire_bricks.subtitle": "ι«˜η‚‰γγŸγ‚γ«", - "quests.metal_age.fire_bricks.desc": "θ€η«γƒ¬γƒ³γ‚¬γ―ι«˜η‚‰γε»Ίθ¨­γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚η‚‰γ‚’δ½œγ‚‹γ«γ―ε°‘γͺくとも4぀γθ€η«γƒ¬γƒ³γ‚¬γƒ–γƒ­γƒƒγ‚―γŒεΏ…θ¦γ§γ™γ€‚\n\n耐火レンガは、製鉄γγŸγ‚γ«η”¨γ„γ‚‹ε ΄εˆγ€ζ–­η†±ζγ‚’εΏ…θ¦γ¨γ—γΎγ™γ€‚θ€η«γƒ¬γƒ³γ‚¬γε‘¨γ‚Šγ«3぀γιŒ¬ι‰„γ‚·γƒΌγƒˆγ‚’εΌ΅γ‚Šδ»˜γ‘γ‚‹γ‹γ€ι«˜η‚‰ζ–­η†±ζγ‚’δ½Ώη”¨γ—γΎγ—γ‚‡γ†", + "quests.metal_age.fire_bricks.desc": "θ€η«γƒ¬γƒ³γ‚¬γ―ι«˜η‚‰γε»Ίθ¨­γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚η‚‰γ‚’δ½œγ‚‹γ«γ―ε°‘γͺくとも4぀γθ€η«γƒ¬γƒ³γ‚¬γƒ–γƒ­γƒƒγ‚―γŒεΏ…θ¦γ§γ™γ€‚\n\n耐火レンガは、製鉄γγŸγ‚γ«η”¨γ„γ‚‹ε ΄εˆγ€ζ–­η†±ζγ‚’εΏ…θ¦γ¨γ—γΎγ™γ€‚θ€η«γƒ¬γƒ³γ‚¬γε‘¨γ‚Šγ«3぀γιŒ¬ι‰„γƒ—γƒ¬γƒΌγƒˆγ‚’εΌ΅γ‚Šδ»˜γ‘γ‚‹γ‹γ€ι«˜η‚‰ζ–­η†±ζγ‚’δ½Ώη”¨γ—γΎγ—γ‚‡γ†", "quests.metal_age.fully_stacked_blast_furnace.title": "εŒε…¨γ«η©γΏι‡γ­γ‚‰γ‚ŒγŸι«˜η‚‰", "quests.metal_age.fully_stacked_blast_furnace.subtitle": "εŒε…¨δ½“ι«˜η‚‰", "quests.metal_age.fully_stacked_blast_furnace.desc": "フルァむズγι«˜η‚‰γ―、一度に倧量γι‰„γ‚’ζΊΆγ‹γ—γ¦ε‡¦η†γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ε°†ζ₯、倧量γγ‚ΉγƒγƒΌγƒ«γŒεΏ…要にγͺγ‚‹γŸγ‚γ€γ§γγ‚‹γ γ‘ε€§γγγ™γ‚‹γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚\n\nεˆι‡‘η²ΎιŒ¬ζ©Ÿγ‚’δ½œγ‚ŒγŸγ‚‰γ€γ‚ˆγ‚Šε‰δΎ‘γ«θ€η«γƒ¬γƒ³γ‚¬γ‚’δ½œζˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", "quests.metal_age.blast_furnace_fuel.title": "ι«˜η‚‰γη‡ƒζ–™", "quests.metal_age.blast_furnace_fuel.subtitle": "γ‚ˆγ‚ŠδΈŠθ³ͺγͺ燃料", - "quests.metal_age.blast_furance_fuel.desc": "ζœ¨η‚­γ§γ―γ€γ‚ΉγƒγƒΌγƒ«γι‹³ι€ γŒγ§γγ‚‹γ»γ©ι«˜ζΈ©γ«γ§γγΎγ›γ‚“γ€‚γ‚³γƒΌγ‚―γ‚ΉγΎγŸγ―Anthraciteγγ„γšγ‚Œγ‹γŒεΏ…θ¦γ§γ™γ€‚\n\nγ‚³γƒΌγ‚―γ‚Ήγ―ηŸ³η‚­γ‚’γ‚³γƒΌγ‚―γ‚Ήη‚‰γ«ε…₯γ‚Œγ‚‹γ“γ¨γ§δ½œζˆγ§γγΎγ™γŒγ€Anthraciteγ§γ‚γ‚Œγ°Beneathγ‹γ‚‰ζŽ‘ζŽ˜γ—γŸεΎŒγ€γγγΎγΎδ½Ώη”¨γ§γγΎγ™γ€‚", + "quests.metal_age.blast_furance_fuel.desc": "ζœ¨η‚­γ§γ―γ€γ‚ΉγƒγƒΌγƒ«γι‹³ι€ γŒγ§γγ‚‹γ»γ©ι«˜ζΈ©γ«γ§γγΎγ›γ‚“γ€‚γ‚³γƒΌγ‚―γ‚ΉγΎγŸγ―η„‘η…™η‚­γγ„γšγ‚Œγ‹γŒεΏ…θ¦γ§γ™γ€‚\n\nγ‚³γƒΌγ‚―γ‚Ήγ―ηŸ³η‚­γ‚’γ‚³γƒΌγ‚―γ‚Ήη‚‰γ«ε…₯γ‚Œγ‚‹γ“γ¨γ§δ½œζˆγ§γγΎγ™γŒγ€η„‘η…™η‚­γ§γ‚γ‚Œγ°Beneathγ‹γ‚‰ζŽ‘ζŽ˜γ—γŸεΎŒγ€γγγΎγΎδ½Ώη”¨γ§γγΎγ™γ€‚", "quests.metal_age.blast_furnace.title": "ι«˜η‚‰", "quests.metal_age.blast_furnace.subtitle": "η››γ‚ŠδΈŠγŒγ£γ¦γγŸι ƒεˆγ„γ‹γͺ", "quests.metal_age.blast_furnace.desc": "ι«˜η‚‰γ―γ€ιŠ‘ι‰„γ‚’δ½œζˆγ§γγ‚‹γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ§‹ι€ δ½“γ§γ™γ€‚ι‰„γ€θžε‰€γ€η‡ƒζ–™(隣ζŽ₯γ™γ‚‹γ‚―γ‚¨γ‚Ήγƒˆγ‚’ε‚η…§)γη΅„γΏεˆγ‚γ›γ‚’ι«˜η‚‰γδΈŠγ‹γ‚‰ζŠ•ε…₯γ—γ¦εŠ η†±γ™γ‚‹γ¨γ€ιŠ‘ι‰„γŒη”Ÿζˆγ•γ‚Œγ€γ“γ‚Œγ―γ‚ΉγƒγƒΌγƒ«γ«εŠ ε·₯できます。\n\nι«˜η‚‰γŒεΏ…θ¦γͺζΈ©εΊ¦γ«ι”γ™γ‚‹γŸγ‚γ«γ―γ€ι«˜η‚‰γ«γ΅γ„γ”γ‚’δ½Ώγ†γ“γ¨γŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚γ“γιš›γ€ι«˜η‚‰γδΈ­γ«γ‚»γƒƒγƒˆγ—γŸηΎ½ε£γ‚’ι€šγ—γ¦η©Ίζ°—γŒι€γ‚ŠθΎΌγΎγ‚ŒγΎγ™γ€‚\n\nγƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«γ―γ€ι«˜η‚‰γδ»•η΅„γΏγ¨ζ§‹η―‰ζ–Ήζ³•γ«ι–’γ™γ‚‹ζƒ…ε ±γŒθΌ‰γ£γ¦γΎγ™γ€‚", "quests.metal_age.steel_anvil.title": "第四γι‡‘εΊŠ:スチール(ι‹Ό)", "quests.metal_age.steel_anvil.subtitle": "ιŒ¬ι‰„γ‹γ‚‰γε€§θΊι€²", - "quests.metal_age.steel_anvil.desc": "ι‹Όγι‡‘εΊŠγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€γ‚ΉγƒγƒΌγƒ«γγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’さまざまγͺ归に加ε·₯できます。\n\nスチールγγƒ„γƒΌγƒ«γ¨θ£…ε‚™γ―γ€γƒ–γƒ­γƒ³γ‚Ίγ‚„ιŒ¬ι‰„γγ‚‚γγ‚ˆγ‚Šγ‚‚ε€§εΉ…γ«ζ€§θƒ½γŒε‘δΈŠγ—γ¦γ„γ‚‹γŸγ‚γ€γƒ„γƒΌγƒ«γ‚’ζ–°θͺΏγ™γ‚‹γ«γ―うって぀けです。 γ“γ‚Œγ‹γ‚‰ε€šγγεˆι‡‘γ‚’δ½œζˆγ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹γŸγ‚γ€ζŽ‘ζŽ˜ζ‰‹ζ΅γ‚’εΌ·εŒ–γ—γ¦γŠγγ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚", + "quests.metal_age.steel_anvil.desc": "ι‹Όγι‡‘εΊŠγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€γ‚ΉγƒγƒΌγƒ«γγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’さまざまγͺ归に加ε·₯できます。\n\nスチールγγƒ„γƒΌγƒ«γ¨θ£…ε‚™γ―γ€γƒ–γƒ­γƒ³γ‚Ίγ‚„ιŒ¬ι‰„γγ‚‚γγ‚ˆγ‚Šγ‚‚ε€§εΉ…γ«ζ€§θƒ½γŒε‘δΈŠγ—γ¦γ„γ‚‹γŸγ‚γ€γƒ„γƒΌγƒ«γ‚’ζ–°θͺΏγ™γ‚‹γ«γ―うって぀けです。\nγ“γ‚Œγ‹γ‚‰ε€šγγεˆι‡‘γ‚’δ½œζˆγ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹γŸγ‚γ€ζŽ‘ζŽ˜ζ‰‹ζ΅γ‚’εΌ·εŒ–γ—γ¦γŠγγ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚", "quests.metal_age.steel_goodies.title": "γ‚ΉγƒγƒΌγƒ«γ‚’εˆ©η”¨γ—γŸζ©Ÿζ’°", "quests.metal_age.steel_goodies.subtitle": "ι‹ΌγιŒ¬ι‡‘θ‘“εΈ«", - "quests.metal_age.steel_goodies.desc": "スチール製γGreateγγƒžγ‚·γƒ³γŸγ‘γ―γ€ζœ€ε€§θ¨±εΉεΏœεŠ›γŒε’—εŠ γ—γ¦γ„γΎγ™οΌγΎγŸγ€ι‰±ηŸ³ζ΄—ζ΅„γ‚’θ‡ͺε‹•εŒ–γ§γγ‚‹γ‚±γƒΌγ‚Ήε…₯γ‚Šγƒ•γ‚‘γƒ³γ‚„γ€ζΆ²δ½“ι‹ζ¬γεˆ©δΎΏζ€§γ‚’ε€§εΉ…γ«ε‘δΈŠγ•γ›γ‚‹γƒ‘カニカルポンプγͺγ©γ‚‚δ½œζˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸγ€‚\n\nγƒ‘γ‚«γƒ‹γ‚«γƒ«γƒγƒ³γƒ—γ―η‰Ήγ«δΎΏεˆ©γ§γ€γ†γΎγδ½Ώγˆγ°γ€ι«˜η‚‰γ‚’η°‘ε˜γͺθ‡ͺε‹•εŒ–γ«γ‚‚εˆ©η”¨γ§γγΎγ™γ€‚\n\nγ“γ‚Œγ‚‰γ«ε‹•εŠ›γ‚’δΎ›η΅¦γ™γ‚‹γŸγ‚γ«γ€η‡ƒζ–™γ¨ζ°΄γ‚’ε€§ι‡γεΏœεŠ›γ«ε€‰ζ›γ§γγ‚‹θ’Έζ°—γ‚¨γƒ³γ‚Έγƒ³γ‚’δ½œγ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ‚ˆοΌ", + "quests.metal_age.steel_goodies.desc": "スチール製γGreateγγƒžγ‚·γƒ³γŸγ‘γ―γ€ζœ€ε€§θ¨±εΉεΏœεŠ›γŒε’—εŠ γ—γ¦γ„γΎγ™οΌ\nγΎγŸγ€ι‰±ηŸ³ζ΄—ζ΅„γ‚’θ‡ͺε‹•εŒ–γ§γγ‚‹γ‚±γƒΌγ‚Ήε…₯γ‚Šγƒ•γ‚‘γƒ³γ‚„γ€ζΆ²δ½“ι‹ζ¬γεˆ©δΎΏζ€§γ‚’ε€§εΉ…γ«ε‘δΈŠγ•γ›γ‚‹γƒ‘カニカルポンプγͺγ©γ‚‚δ½œζˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸγ€‚\n\nγƒ‘γ‚«γƒ‹γ‚«γƒ«γƒγƒ³γƒ—γ―η‰Ήγ«δΎΏεˆ©γ§γ€γ†γΎγδ½Ώγˆγ°γ€ι«˜η‚‰γ‚’η°‘ε˜γͺθ‡ͺε‹•εŒ–γ«γ‚‚εˆ©η”¨γ§γγΎγ™γ€‚\n\nγ“γ‚Œγ‚‰γ«ε‹•εŠ›γ‚’δΎ›η΅¦γ™γ‚‹γŸγ‚γ«γ€η‡ƒζ–™γ¨ζ°΄γ‚’ε€§ι‡γεΏœεŠ›γ«ε€‰ζ›γ§γγ‚‹θ’Έζ°—γ‚¨γƒ³γ‚Έγƒ³γ‚’δ½œγ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ‚ˆοΌ", "quests.metal_age.weak_steel.title": "θ»Ÿι‹Όγζζ–™", "quests.metal_age.weak_steel.subtitle": "ζ•°ε­¦γŒε₯½γγ§γ‚γ‚‹γ“γ¨γ‚’ι‘˜γ£γ¦γ„γΎγ™", "quests.metal_age.weak_steel.desc": "θ»Ÿι‹Όγ―γ€ι»’ι‹Όγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«εΏ…θ¦γͺι‡‘ε±žγ§γ™γ€‚2぀γγ‚ΉγƒγƒΌγƒ«γ€1぀γγƒ‹γƒƒγ‚±γƒ«γ€1぀γγƒ–γƒ©γƒƒγ‚―γƒ–γƒ­γƒ³γ‚Ίγ‹γ‚‰δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n梲体γθ»Ÿι‹Όγγƒ¬γ‚·γƒ”γ‚’θ¦‹γ‚Œγ°γ€γ‚ˆγ‚Šζ­£η’Ίγͺεˆι‡‘εŒ–ζ―”ηŽ‡γ‚’η’Ίθͺγ§γγΎγ™γ€‚", @@ -2967,13 +3216,13 @@ "quests.metal_age.weak_steel.task3": "1぀γγƒ–ラックブロンズ", "quests.metal_age.highcarb_black_steel.title": "ι»’ι‹Όγζζ–™", "quests.metal_age.highcarb_black_steel.subtitle": "θ³ͺι‡δΏε­˜γζ³•ε‰‡γ―ι©η”¨γ•γ‚ŒγΎγ›γ‚“", - "quests.metal_age.highcarb_black_steel.desc": "ζœ€εΎŒγ2぀γι‡‘εΊŠγ―γ€δ½œζˆγ«ε€šγγι‡‘ε±žγ‚’εΏ…θ¦γ¨γ™γ‚‹θ€‡ι›‘γͺεˆι‡‘γ§δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚θ»Ÿι‹Όγ¨ιŠ‘ι‰„γ‚’ζΊΆζŽ₯γ—γ¦ι«˜η‚­η΄ ι»’ι‹Όγ‚’δ½œζˆγ—γ€γγ‚Œγ‚’ι‡‘εΊŠγ§ι›ι€ γ—γ¦ι»’ι‹Όγ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.metal_age.highcarb_black_steel.desc": "ζœ€εΎŒγ2぀γι‡‘εΊŠγ―γ€δ½œζˆγ«ε€šγγι‡‘ε±žγ‚’εΏ…θ¦γ¨γ™γ‚‹θ€‡ι›‘γͺεˆι‡‘γ§δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nθ»Ÿι‹Όγ¨ιŠ‘ι‰„γ‚’ζΊΆζŽ₯γ—γ¦ι«˜η‚­η΄ ι»’ι‹Όγ‚’δ½œζˆγ—γ€γγ‚Œγ‚’ι‡‘εΊŠγ§ι›ι€ γ—γ¦ι»’ι‹Όγ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nι«˜εœ§θ’Έζ°—εΌεˆι‡‘η²ΎιŒ¬η‚‰γŒγ‚γ‚Œγ°γ€ι»’ι‹Όγͺどγθ‰²γ€γι‹Όγ&6η”Ÿη”£εŠΉηŽ‡γŒ2倍&rにγͺγ‚ŠγΎγ™γ€‚", "quests.metal_age.black_steel_anvil.title": "第五γι‡‘εΊŠ:ι»’ι‹Ό", "quests.metal_age.black_steel_anvil.subtitle": "θ’Έζ°—γεŠ›γ‚’γγζ‰‹γδΈ­γ«οΌ", - "quests.metal_age.black_steel_anvil.desc": "ι»’ι‹Όγι‡‘εΊŠγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ι»’ι‹Όγγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’さまざまγͺγ‚’γ‚€γƒ†γƒ γ«εŠ ε·₯γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€γ€ŒεˆζœŸγθ‡ͺε‹•εŒ–γ€γη« γδΈ­γ§ι«˜εœ§θ’Έζ°—εŠ›γ«ι–’連する倧規樑γͺι …η›γŒθ§£ζ”Ύγ•γ‚ŒγΎγ—γŸοΌ\n\nここから、ε·₯ζ₯­εŒ–γ«ε‘γ‘γ¦γΎγ£γ™γι€²γ‚€γ“γ¨γ‚‚γ€γ‚γ‚‹γ„γ―εΏ…θ¦γ«εΏœγ˜γ¦ζœ€δΈŠδ½γι‡‘εΊŠγ‚’εŒζˆγ•γ›γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚γŸγ γ—γ€θ‰²γ€γγι‹Όγ‚’永遠に避けることはできません!", + "quests.metal_age.black_steel_anvil.desc": "ι»’ι‹Όγι‡‘εΊŠγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ι»’ι‹Όγγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’さまざまγͺγ‚’γ‚€γƒ†γƒ γ«εŠ ε·₯γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€γ€ŒεˆζœŸγθ‡ͺε‹•εŒ–γ€γη« γδΈ­γ§ι«˜εœ§θ’Έζ°—εŠ›γ«ι–’連する倧規樑γͺι …η›γŒθ§£ζ”Ύγ•γ‚ŒγΎγ—γŸοΌ\n\nここから、ε·₯ζ₯­εŒ–γ«ε‘γ‘γ¦γΎγ£γ™γι€²γ‚€γ“γ¨γ‚‚γ€γ‚γ‚‹γ„γ―εΏ…θ¦γ«εΏœγ˜γ¦ζœ€δΈŠδ½γι‡‘εΊŠγ‚’εŒζˆγ•せることもできます。\nγŸγ γ—γ€θ‰²γ€γγι‹Όγ‚’永遠に避けることはできません!", "quests.metal_age.black_steel_goodies.title": "黒鋼レベルγζ©Ÿζ’°εŠ›", "quests.metal_age.black_steel_goodies.subtitle": "産ζ₯­ι©ε‘½γŒγ‚‚γŸγ‚‰γ—γŸγ‚‚γ", - "quests.metal_age.black_steel_goodies.desc": "ι»’ι‹Όγ«γ‚ˆγ£γ¦ι«˜εœ§θ’Έζ°—εŠ›γ‚’εˆ©η”¨γ—γŸζ©Ÿζ’°γŒθ§£ζ”Ύγ•γ‚ŒγΎγ—γŸοΌγ“γεΌ·εŠ›γͺι‹ΌγγŠγ‹γ’γ§γ€γ‚ˆγ‚ŠεΌ·εŠ›γ§γ‚³γƒ³γƒ‘γ‚―γƒˆγͺθ’Έζ°—γƒœγ‚€γƒ©γƒΌγŒδ½œζˆε―θƒ½γ«γͺγ‚Šγ€ζœ€εˆγι›»ε­ζ©Ÿε™¨γ‚’δ½œζˆγ™γ‚‹γŸγ‚γζ–°γ—γ„ζ©Ÿζ’°γŸγ‘γ«ε‹•εŠ›γ‚’δΎ›η΅¦γ—γΎγ™γ€‚", + "quests.metal_age.black_steel_goodies.desc": "ι»’ι‹Όγ«γ‚ˆγ£γ¦ι«˜εœ§θ’Έζ°—εŠ›γ‚’εˆ©η”¨γ—γŸζ©Ÿζ’°γŒθ§£ζ”Ύγ•γ‚ŒγΎγ—γŸοΌ\nこγεΌ·εŠ›γͺι‹ΌγγŠγ‹γ’γ§γ€γ‚ˆγ‚ŠεΌ·εŠ›γ§γ‚³γƒ³γƒ‘γ‚―γƒˆγͺθ’Έζ°—γƒœγ‚€γƒ©γƒΌγŒδ½œζˆε―θƒ½γ«γͺγ‚Šγ€ζœ€εˆγι›»ε­ζ©Ÿε™¨γ‚’δ½œζˆγ™γ‚‹γŸγ‚γζ–°γ—γ„ζ©Ÿζ’°γŸγ‘γ«ε‹•εŠ›γ‚’δΎ›η΅¦γ—γΎγ™γ€‚", "quests.metal_age.red_blu.title": "血鋼と青鋼", "quests.metal_age.red_blu.subtitle": "γƒžγ‚€γƒ³γ‚―γƒ©γƒ•γƒˆγ«ζœ€ε€γ‹γ‚‰ε­˜εœ¨γ—γŸδΌθͺ¬γι‹Ό", "quests.metal_age.red_blu.desc": "ζœ€εΎŒγη­‰η΄šγι‡‘εΊŠγ―γ€θ΅€ι‹ΌγΎγŸγ―ι’ι‹Όγγ„γšγ‚Œγ‹γ§δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ©γ‘らもスチールと耇数γη•°γͺγ‚‹ι‡‘ε±žγθ€‡ι›‘γͺεˆι‡‘γ§γ™γ€‚\n\n青鋼は、そγε„ͺγ‚ŒγŸθ€η†±ζ€§γ¨ζŽ‘ζŽ˜ι€ŸεΊ¦γ«η§€γ§γ¦γŠγ‚Šγ€θ΅€ι‹Όγ―θ†¨ε€§γͺ強度と耐久性をθͺ‡γ£γ¦γ„ます。", @@ -2993,19 +3242,19 @@ "quests.metal_age.weak_blue_steel.bismuth_bronze": "1぀γγƒ“γ‚Ήγƒžγ‚Ήγƒ–γƒ­γƒ³γ‚Ί", "quests.metal_age.highcarb_red_steel.title": "θ΅€ι‹Όγζζ–™", "quests.metal_age.highcarb_red_steel.subtitle": "ζ Έεˆ†θ£‚εεΏœγ£γ¦γ“γ‚“γͺζ„Ÿγ˜γ γ£γ‘οΌŸ", - "quests.metal_age.highcarb_red_steel.desc": "θ΅€ι‹ΌγγŸγ‚γι«˜η‚­η΄ θ΅€ι‹Όγ―γ€θ»Ÿθ΅€ι‹Όγ¨ι»’ι‹Όγ‚’ζΊΆζŽ₯γ™γ‚‹γ“γ¨γ«γ‚ˆγ£γ¦δ½œγ‚‰γ‚ŒγΎγ™γ€‚γ“γ‚Œγ‚’θ΅€ι‹Όγ«γ™γ‚‹γ«γ―γ€ι‡‘εΊŠγ§ι›ι€ γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™", + "quests.metal_age.highcarb_red_steel.desc": "θ΅€ι‹ΌγγŸγ‚γι«˜η‚­η΄ θ΅€ι‹Όγ―γ€θ»Ÿθ΅€ι‹Όγ¨ι»’ι‹Όγ‚’ζΊΆζŽ₯γ™γ‚‹γ“γ¨γ«γ‚ˆγ£γ¦δ½œγ‚‰γ‚ŒγΎγ™γ€‚\nγ“γ‚Œγ‚’θ΅€ι‹Όγ«γ™γ‚‹γ«γ―γ€ι‡‘εΊŠγ§ι›ι€ γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nι«˜εœ§θ’Έζ°—εΌεˆι‡‘η²ΎιŒ¬η‚‰γŒγ‚γ‚Œγ°γ€θ΅€ι‹Όγͺどγθ‰²γ€γι‹Όγ&6η”Ÿη”£εŠΉηŽ‡γŒ2倍&rにγͺγ‚ŠγΎγ™γ€‚", "quests.metal_age.highcarb_blu_steel.title": "青鋼γζζ–™", "quests.metal_age.highcarb_blu_steel.subtitle": "こγγƒ¬γ‚·γƒ”γ€γƒ©γƒœγ‚’γ‚Έγ‚¨γŒγΏγŸγ‚‰γ©γ†ζ€γ†γ§γ—γ‚‡γ†", - "quests.metal_age.highcarb_blu_steel.desc": "青鋼γγŸγ‚γι«˜η‚­η΄ ι’ι‹Όγ―γ€θ»Ÿι’ι‹Όγ¨ι»’ι‹Όγ‚’ζΊΆζŽ₯γ™γ‚‹γ“γ¨γ«γ‚ˆγ£γ¦δ½œγ‚‰γ‚ŒγΎγ™γ€‚γ“γ‚Œγ‚’ι’ι‹Όγ«γ™γ‚‹γ«γ―γ€ι‡‘εΊŠγ§ι›ι€ γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™", + "quests.metal_age.highcarb_blu_steel.desc": "青鋼γγŸγ‚γι«˜η‚­η΄ ι’ι‹Όγ―γ€θ»Ÿι’ι‹Όγ¨ι»’ι‹Όγ‚’ζΊΆζŽ₯γ™γ‚‹γ“γ¨γ«γ‚ˆγ£γ¦δ½œγ‚‰γ‚ŒγΎγ™γ€‚\nγ“γ‚Œγ‚’ι’ι‹Όγ«γ™γ‚‹γ«γ―γ€ι‡‘εΊŠγ§ι›ι€ γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nι«˜εœ§θ’Έζ°—εΌεˆι‡‘η²ΎιŒ¬η‚‰γŒγ‚γ‚Œγ°γ€ι’ι‹Όγͺどγθ‰²γ€γι‹Όγ&6η”Ÿη”£εŠΉηŽ‡γŒ2倍&rにγͺγ‚ŠγΎγ™γ€‚", "quests.metal_age.redblu_anvil.title": "第六γι‡‘εΊŠ:血鋼・青鋼", "quests.metal_age.redblu_anvil.subtitle": "γŠγ—γΎγ„οΌŸγγ‚Œγ¨γ‚‚γ―γ˜γΎγ‚ŠοΌŸ", "quests.metal_age.redblu_anvil.desc": "ζœ€δΈŠη΄šγι‡‘εΊŠγ§γ‚γ‚‹θ΅€ι‹Όγƒ»ι’ι‹Όγι‡‘εΊŠγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€θ΅€ι‹Όγ¨ι’ι‹ΌγδΈ‘ζ–Ήγγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’さまざまγͺγ‚’γ‚€γƒ†γƒ γ«εŠ ε·₯できます。\n\nγ“γ‚Œγ―TerraFirmaCraftγι€²θ‘Œγη΅‚γ‚γ‚Šγ‚’η€Ίγ—γ¦γ„γΎγ™γ€‚γ“γ‚Œγ‹γ‚‰γ―ζœ¬ζ Όηš„γͺGregγι€²θ‘ŒγŒε§‹γΎγ‚ŠγΎγ™γ€‚", "quests.metal_age.red_steel_flask.title": "θ΅€ι‹Όθ£½ζ°΄η­’", "quests.metal_age.red_steel_flask.subtitle": "3倍はε…₯らγͺい", - "quests.metal_age.red_steel_flask.desc": "θ΅€ι‹Όθ£½ζ°΄η­’γ―γ€εˆ©η”¨ε―θƒ½γͺζœ€ι«˜γζ°΄η­’γ§γ™γ€‚ι‰„θ£½ζ°΄η­’γ¨εŒγ˜ι‡γζΆ²δ½“γ‚’δΏζŒγ§γγ€δ½•γ‚ˆγ‚Šθ΅€ι‹Όθ£½ζ°΄η­’γ―ζ±Ίγ—γ¦ε£Šγ‚ŒγΎγ›γ‚“γ€‚", + "quests.metal_age.red_steel_flask.desc": "θ΅€ι‹Όθ£½ζ°΄η­’γ―γ€εˆ©η”¨ε―θƒ½γͺζœ€ι«˜γζ°΄η­’です。\nι‰„θ£½ζ°΄η­’γ¨εŒγ˜ι‡γζΆ²δ½“γ‚’δΏζŒγ§γγ€δ½•γ‚ˆγ‚Šθ΅€ι‹Όθ£½ζ°΄η­’γ―ζ±Ίγ—γ¦ε£Šγ‚ŒγΎγ›γ‚“γ€‚", "quests.metal_age.redblu_buckets.title": "バケツγζζ–™", "quests.metal_age.redblu_buckets.subtitle": "バケツγζ Έθžεˆ", - "quests.metal_age.redblu_buckets.desc": "ι‡‘ε±žζ™‚δ»£γ«ζœ€εΎŒγ«γ‚„γ‚‹γΉγγ“γ¨γ―γ€γƒγ‚±γƒ„γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ§γ™γ€‚ζœ¨θ£½γγƒγ‚±γƒ„γ‚„γ“γ‚ŒγΎγ§δ½Ώη”¨γ—γ¦γ„γŸδ»–γζΆ²δ½“運搬をむテムとは異γͺγ‚Šγ€γƒγ‚±γƒ„γ―ζΊΆε²©γ‚’ι‹γ‚“γ γ‚Šγ€ζΆ²δ½“γζ°΄ζΊγ‚’η§»ε‹•γ—γŸγ‚Šγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚", + "quests.metal_age.redblu_buckets.desc": "ι‡‘ε±žζ™‚δ»£γ«ζœ€εΎŒγ«γ‚„γ‚‹γΉγγ“γ¨γ―γ€γƒγ‚±γƒ„γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ§γ™γ€‚\n木製γγƒγ‚±γƒ„γ‚„γ“γ‚ŒγΎγ§δ½Ώη”¨γ—γ¦γ„γŸδ»–γζΆ²δ½“運搬をむテムとは異γͺγ‚Šγ€γƒγ‚±γƒ„γ―ζΊΆε²©γ‚’ι‹γ‚“γ γ‚Šγ€ζΆ²δ½“γζ°΄ζΊγ‚’η§»ε‹•γ—γŸγ‚Šγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚", "quests.metal_age.this_is_a_bucket.title": "γ“γ‚Œγ―...バケツです。", "quests.metal_age.this_is_a_bucket.subtitle": "γ©γ†γ‚„γ£γ¦γ“γ“γΎγ§οΌŸ", "quests.metal_age.this_is_a_bucket.desc": "バケツγδ½œζˆγ€ζœ¬ε½“γ«γŠγ‚γ§γ¨γ†γ”γ–γ„γΎγ™γ€‚ι‡‘ε±žζ™‚δ»£γ―γ“γ‚Œγ«γ¦εΉ•γ‚’δΈ‹γ‚γ—γΎγ™γ€‚\n\nγ•γ‚οΌγ€γ„γ«ζ©Ÿζ’°γθ£½δ½œγ«γ€Gregγ«οΌε–γ‚ŠζŽ›γ‹γ‚‹ζ™‚γŒζ₯γΎγ—γŸγ‚ˆοΌ", @@ -3063,9 +3312,9 @@ "quests.ore_proc.macerator_byproduct.subtitle": "ι‰±ηŸ³γ‹γ‚‰γγ‚ˆγ‚Šε€šγγεŽη©«", "quests.ore_proc.macerator_byproduct.desc": "&bEMI&rでレシピを璺θͺγ™γ‚‹γ¨γ€&dη²‰η •ζ©Ÿ&rγ‚„&dηŸ³θ‡Ό&rγε‡ΊεŠ›ζ¬„γ«γ€εŸιš›γ‚ˆγ‚Šε€šγγγ‚’γ‚€γƒ†γƒ γŒθ‘¨η€Ίγ•γ‚Œγ¦γ„γ‚‹γ“γ¨γ«ζ°—γ₯γγ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚γ“γδ»•ζ§˜γ―εˆ†γ‹γ‚Šγ«γγ„γγ§γ™γŒγ€γ“γγ‚ˆγ†γͺθΏ½εŠ η”Ÿη”£η‰©γ―&6HV&rγζ©Ÿζ’°γ‹γ‚‰θ§£ζ”Ύγ•γ‚ŒγΎγ™γ€‚&6HV&rγη²‰η •ζ©ŸγŒδ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚‹γ¨γ€ι‰±ηŸ³1γ€γ‚γŸγ‚Šγ‹γ‚‰εΎ—γ‚‰γ‚Œγ‚‹ι‡γŒε€§εΉ…γ«ε’—γˆγΎγ™γ€‚", "quests.ore_proc.macerator_byproduct.task": "Either an HV Macerator or HS Crushing Wheels", - "quests.ore_proc.sodium_persuflate.title": "ιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム処理", - "quests.ore_proc.sodium_persuflate.subtitle": "ε›žθ·―εŸΊζΏδ»₯ε€–γδ½Ώγ„ζ–Ή", - "quests.ore_proc.sodium_persuflate.desc": "LV時代にγͺると、&bεŒ–ε­¦ζ§½&rで&dιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム&rγ‚’δ½Ώγ£γŸε‡¦η†γ«γ‚ˆγ£γ¦γ€ε‰―η”£η‰©γ‚’γ‚ˆγ‚Šε€šγεΎ—γ‚‹γ“γ¨γŒγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γ™γΉγ¦γι‰±ηŸ³γ«ε―ΎεΏœγ—γ¦γ―γ„γΎγ›γ‚“γŒγ€ε―ΎεΏœγ—γ¦γ„γ‚‹ι‰±ηŸ³γͺら、&bι‰±ηŸ³ζ΄—ζ΅„ζ©Ÿ&rでγη’Ίηއ&6(30οΌ…)&rγ‚ˆγ‚Šγ‚‚ι«˜γ„γ€&670οΌ…&rほどγη’ΊηŽ‡γ§ε‰―産物をε…₯手できます。\n\nιŽη‘«ι…ΈγƒŠγƒˆγƒͺウムγε€§ι‡η”Ÿη”£γ―γ‚„γ‚„ζ‰‹ι–“γŒγ‹γ‹γ‚ŠγΎγ™γŒγ€εŽŸζ–™γ¨γ—γ¦γ―&9ζ΅·ζ°΄&rから始めるγγŒη°‘ε˜γ§γŠγ™γ™γ‚γ§γ™γ€‚\n\nδΈ‹γγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€γ“γζ–Ήζ³•γ«ε‘γ„γ¦γ„γ‚‹ι‰±ηŸ³γ‚’η΄Ήδ»‹γ—γ¦γ„γΎγ™γ€‚", + "quests.ore_proc.sodium_persulfate.title": "ιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム処理", + "quests.ore_proc.sodium_persulfate.subtitle": "ε›žθ·―εŸΊζΏδ»₯ε€–γδ½Ώγ„ζ–Ή", + "quests.ore_proc.sodium_persulfate.desc": "LV時代にγͺると、&bεŒ–ε­¦ζ§½&rで&dιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム&rγ‚’δ½Ώγ£γŸε‡¦η†γ«γ‚ˆγ£γ¦γ€ε‰―η”£η‰©γ‚’γ‚ˆγ‚Šε€šγεΎ—γ‚‹γ“γ¨γŒγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γ™γΉγ¦γι‰±ηŸ³γ«ε―ΎεΏœγ—γ¦γ―γ„γΎγ›γ‚“γŒγ€ε―ΎεΏœγ—γ¦γ„γ‚‹ι‰±ηŸ³γͺら、&bι‰±ηŸ³ζ΄—ζ΅„ζ©Ÿ&rでγη’Ίηއ&6(30οΌ…)&rγ‚ˆγ‚Šγ‚‚ι«˜γ„γ€&670οΌ…&rほどγη’ΊηŽ‡γ§ε‰―産物をε…₯手できます。\n\nιŽη‘«ι…ΈγƒŠγƒˆγƒͺウムγε€§ι‡η”Ÿη”£γ―γ‚„γ‚„ζ‰‹ι–“γŒγ‹γ‹γ‚ŠγΎγ™γŒγ€εŽŸζ–™γ¨γ—γ¦γ―&9ζ΅·ζ°΄&rから始めるγγŒη°‘ε˜γ§γŠγ™γ™γ‚γ§γ™γ€‚\n\nδΈ‹γγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€γ“γζ–Ήζ³•γ«ε‘γ„γ¦γ„γ‚‹ι‰±ηŸ³γ‚’η΄Ήδ»‹γ—γ¦γ„γΎγ™γ€‚", "quests.ore_proc.sodium_ores.title": "ιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム処理γδΎ‹", "quests.ore_proc.sodium_ores.subtitle": "ζ™‚ι–“γη―€η΄„γγŸγ‚γ«", "quests.ore_proc.sodium_ores.desc": "δ»₯δΈ‹γι‰±ηŸ³γ―&bεŒ–ε­¦ζ§½&rでγ&dιŽη‘«ι…ΈγƒŠγƒˆγƒͺウム処理&rγ«ι©γ—γ¦γ„γΎγ™οΌš\n\n-&6η •γ„γŸγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ ι‰±ηŸ³&r:&dルチル&r(チタニウム)\n\n-&6η •γ„γŸγƒœγƒΌγ‚­γ‚΅γ‚€γƒˆι‰±ηŸ³&r:&dガγƒͺウム&r\n\n-&6η •γ„γŸγ‚³γƒγƒ«γƒˆι‰±ηŸ³&r:&dθΌγ‚³γƒγƒ«γƒˆι‰±&r(&dγƒ’η΄ &r)", @@ -3078,13 +3327,13 @@ "quests.ore_proc.mercury_ores.desc": "一部γι‰±ηŸ³γ―、&dζ°΄ιŠ€&rで処理することで貴重γͺε‰―η”£η‰©γ‚’εΎ—γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ™γΉγ¦γι‰±ηŸ³γ«ε―ΎεΏœγ—γ¦γ―γ„γΎγ›γ‚“γŒγ€ε―ΎεΏœγ—γ¦γ„γ‚‹ι‰±ηŸ³γͺら、&bι‰±ηŸ³ζ΄—ζ΅„ζ©Ÿ&rでγη’Ίηއ&6(30οΌ…)&rγ‚ˆγ‚Šγ‚‚ι«˜γ„γ€&670οΌ…&rほどγη’ΊηŽ‡γ§ε‰―産物をε…₯手できます。\n\n&dζ°΄ιŠ€&rは、&cγƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³&rγ‚„&cθΎ°η ‚&rγ‚’ι εΏƒεˆ†ι›’γ™γ‚‹γ“γ¨γ§η°‘ε˜γ«ζ‰‹γ«ε…₯γ‚ŠγΎγ™γ€‚\n\nδΈ‹γγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€ζ°΄ιŠ€ε‡¦η†γ«ε‘γ„γ¦γ„γ‚‹ι‰±ηŸ³γ‚’η΄Ήδ»‹γ—γ¦γ„γΎγ™γ€‚", "quests.ore_proc.mercury.title": "ζ°΄ιŠ€ε‡¦η†γδΎ‹", "quests.ore_proc.mercury.subtitle": "ι‡‘ε±žγε…₯桴剀", - "quests.ore_proc.mercury.desc": "δ»₯δΈ‹γι‰±ηŸ³γ―&bεŒ–ε­¦ζ§½&rでγ&dζ°΄ιŠ€ε‡¦η†&rに適しています:\n\n- &6η •γ„γŸη™½ι‡‘ι‰±ηŸ³&r:&dパラジウム&r\n\n&6η •γ„γŸγƒ‹γƒƒγ‚±γƒ«ι‰±ηŸ³&r:&dγƒ—γƒ©γƒγƒŠ&r\n\n-&6η •γ„γŸγ‚·γ‚§γƒ«γƒ‰γƒŠγ‚€γƒˆι‰±ηŸ³&r:&dパラジウム&r\n\n-&6η •γ„γŸι‡‘ι‰±ηŸ³&r:&dιŠ€&r", + "quests.ore_proc.mercury.desc": "δ»₯δΈ‹γι‰±ηŸ³γ―&bεŒ–ε­¦ζ§½&rでγ&dζ°΄ιŠ€ε‡¦η†&rに適しています:\n\n-&6η •γ„γŸη™½ι‡‘ι‰±ηŸ³&r:&dパラジウム&r\n\n&6-η •γ„γŸγƒ‹γƒƒγ‚±γƒ«ι‰±ηŸ³&r:&dγƒ—γƒ©γƒγƒŠ&r\n\n-&6η •γ„γŸγ‚·γ‚§γƒ«γƒ‰γƒŠγ‚€γƒˆι‰±ηŸ³&r:&dパラジウム&r\n\n-&6η •γ„γŸι‡‘ι‰±ηŸ³&r:&dιŠ€&r", "quests.ore_proc.indium.title": "むンジウムラむン", "quests.ore_proc.indium.subtitle": "ラむンとは言うもγγγ€εŸγ―2ε·₯程しかγͺいです", "quests.ore_proc.indium.desc": "&6むンジウムラむン&rγ―γ€εŸΊζœ¬ηš„γ«&9IV&rγ«εˆ°ι”γ™γ‚‹γΎγ§γ―δΈθ¦γ§γ™γ€‚η¨Όεƒγ«γ―ζ΄—ζ΅„γ—γŸ&bι–ƒδΊœι‰›ι‰±&rと&b方鉛鉱&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚", - "quests.ore_proc.platline.title": "ζ‚ͺει«˜γγƒ—γƒ©γƒγƒŠγƒ©γ‚€γƒ³", + "quests.ore_proc.platline.title": "ζ‚ͺει«˜γη™½ι‡‘ζ—γƒ©γ‚€γƒ³", "quests.ore_proc.platline.subtitle": "GregTechε―ΎMekanismγγ‚ͺγ‚ΉγƒŸγ‚¦γƒ γ‚’γ‚γγ‚‹δ»ηΎ©γͺγζˆ¦γ„", - "quests.ore_proc.platline.desc": "&6γƒ—γƒ©γƒγƒŠγƒ©γ‚€γƒ³&rは、あγͺγŸγŒη›΄ι’γ™γ‚‹ζœ€εˆγζœ¬ζ Όηš„γͺι‰±ηŸ³ε‡¦η†γΈγζŒ‘ζˆ¦γ§γ™γ€‚γ“γγƒ©γ‚€γƒ³γ§γ―、&bγƒ—γƒ©γƒγƒŠ&rγ‚’γ―γ˜γ‚γ€&bパラジウム&r、&bルテニウム&r、&bロジウム&r、&bγ‚€γƒͺジウム&r、&bγ‚ͺγ‚ΉγƒŸγ‚¦γƒ &rγ¨γ„γ£γŸγƒ—γƒ©γƒγƒŠζ—ι‡‘ε±žγ‚’η’ΊδΏγ§γγΎγ™γ€‚\n\n&bγƒ—γƒ©γƒγƒŠ&rγ‚„&bパラジウム&rθ‡ͺ体はεˆ₯γη°‘単γͺ手ζ΅γ§γ‚‚ε…₯ζ‰‹ε―θƒ½γ§γ™γŒγ€γγ‚Œδ»₯ε€–γεΈŒε°‘ι‡‘ε±žγ‚’ζ‰‹γ«ε…₯γ‚Œγ‚‹γ«γ―γ€γ“γγƒ©γ‚€γƒ³γ‚’ι€²γ‚γ‚‹γ“γ¨γŒη΅Άε―Ύζ‘仢にγͺγ‚ŠγΎγ™γ€‚\n\nγƒ—γƒ©γƒγƒŠγƒ©γ‚€γƒ³γ―&6HV&rζ΅ιšŽγ‹γ‚‰η€ζ‰‹γ§γγΎγ™γŒγ€εŒε…¨γ«η¨Όεƒγ•γ›γ‚‰γ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚‹γγ―&5EV&rζ΅ιšŽδ»₯降にγͺγ‚ŠγΎγ™γ€‚", + "quests.ore_proc.platline.desc": "&6白金族ラむン&rは、あγͺγŸγŒη›΄ι’γ™γ‚‹ζœ€εˆγζœ¬ζ Όηš„γͺι‰±ηŸ³ε‡¦η†γΈγζŒ‘ζˆ¦γ§γ™γ€‚γ“γγƒ©γ‚€γƒ³γ§γ―、&bγƒ—γƒ©γƒγƒŠ&rγ‚’γ―γ˜γ‚γ€&bパラジウム&r、&bルテニウム&r、&bロジウム&r、&bγ‚€γƒͺジウム&r、&bγ‚ͺγ‚ΉγƒŸγ‚¦γƒ &rγ¨γ„γ£γŸη™½ι‡‘ζ—ι‡‘ε±žγ‚’η’ΊδΏγ§γγΎγ™γ€‚\n\n&bγƒ—γƒ©γƒγƒŠ&rγ‚„&bパラジウム&rθ‡ͺ体はεˆ₯γη°‘単γͺ手ζ΅γ§γ‚‚ε…₯ζ‰‹ε―θƒ½γ§γ™γŒγ€γγ‚Œδ»₯ε€–γεΈŒε°‘ι‡‘ε±žγ‚’ζ‰‹γ«ε…₯γ‚Œγ‚‹γ«γ―γ€γ“γγƒ©γ‚€γƒ³γ‚’ι€²γ‚γ‚‹γ“γ¨γŒη΅Άε―Ύζ‘仢にγͺγ‚ŠγΎγ™γ€‚\n\n白金族ラむンは&6HV&rζ΅ιšŽγ‹γ‚‰η€ζ‰‹γ§γγΎγ™γŒγ€εŒε…¨γ«η¨Όεƒγ•γ›γ‚‰γ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚‹γγ―&5EV&rζ΅ιšŽδ»₯降にγͺγ‚ŠγΎγ™γ€‚", "quests.ore_proc.electro_separator.title": "ι›»η£εˆ†ι›’ζ©Ÿ", "quests.ore_proc.electro_separator.subtitle": "γŠγγ‚‰γγ€GregTechγδΈ­γ§ζœ€γ‚‚ε½Ήγ«η«‹γŸγͺγ„ζ©Ÿζ’°γ€‚", "quests.ore_proc.electro_separator.desc": "&6ι›»η£εˆ†ι›’ζ©Ÿ&rは、&dほぼ確麗γͺ粉&rγ‹γ‚‰ι‰„γ‚„ι‡‘γ¨γ„γ£γŸι‡‘ε±žζˆεˆ†γ‚’εˆ†ι›’γƒ»ζŠ½ε‡Ίγ§γγ‚‹θ£…η½γ§γ™γ€‚現時点では、主に&dγƒŠγ‚―γ‚’γƒ€&rγε‡¦η†γ«δ½Ώη”¨γ™γ‚‹γγŒγŠγ™γ™γ‚γ§γ™γ€‚γΎγŸγ€&aネγ‚ͺγ‚Έγƒ &rγŒδΈθΆ³γ—γ¦γ„γ‚‹ε ΄εˆγ―γ€&dγƒγ‚Ήγƒˆγƒγ‚ΉηŸ³&rγ‹γ‚‰ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚", @@ -3118,415 +3367,420 @@ "quests.ore_proc.bauxite.desc": "γƒœγƒΌγ‚­γ‚΅γ‚€γƒˆγ‚’γγγΎγΎι›»θ§£γ—ても、15ε€‹γ‹γ‚‰γ‚’γƒ«γƒŸγŒ6ε€‹γ¨γƒ«γƒγƒ«γŒ1個しか手にε…₯γ‚ŠγΎγ›γ‚“...でも、&6γƒœγƒΌγ‚­γ‚΅γ‚€γƒˆγƒ©γ‚€γƒ³&rγͺら話はεˆ₯です!\n\nこγζ–°γ—γ„ε‡¦η†γƒ«γƒΌγƒˆγ§γ―γ€γ‚’γƒ«γƒŸγ―η΄„2倍、ルチルは約3倍γεŠΉηŽ‡γ§ε›žεŽγ§γγΎγ™γ€‚γ—γ‹γ‚‚γ€γ‚¬γƒͺウム・鉄・ネγ‚ͺγ‚Έγƒ γƒ»γ‚―γƒ­γƒ γ¨γ„γ£γŸγŠγΎγ‘γη΄ ζγΎγ§ζ‰‹γ«ε…₯γ‚‹γ€ζœ¬ε½“γ«γŠγƒˆγ‚―γͺη²ΎιŒ¬γƒ©γ‚€γƒ³γ§γ™οΌ", "quests.ore_proc.gem_slurry.title": "εηŸ³γζ³₯ζΌΏ", "quests.ore_proc.gem_slurry.subtitle": "こんγͺγ«ηΎŽγ—γ„γ‚‚γγ‚’ドロドロに溢かすγͺγ‚“γ¦ζ­£ζ°—γ§γ™γ‹οΌŸ", - "quests.ore_proc.gem_slurry.desc": "εηŸ³γ&6ζ³₯漿処理&rは、ルビー・ァフゑむを・グγƒͺーンァフゑむを向けγη‰Ήεˆ₯γͺε‡¦η†γƒ«γƒΌγƒˆγ§γ™γ€‚εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€γ‘γ‚‡γ£γ¨γ—γŸζ‰‹ι–“γ§γ‚ˆγ‚Šε€šγγθ³‡ζΊγ‚’ε›žεŽγ§γγΎγ™γ€‚ ι›»θ§£ε‡¦η†γ¨ζ―”γΉγ¦οΌš\n\n-&cルビーζ³₯ζΌΏ&rγ§γ―γ‚’γƒ«γƒŸγ¨γ‚―γƒ­γƒ γŒγ»γΌ3倍に!\n\n- &9ァフゑむをζ³₯ζΌΏ&rγ§γ―γ‚’γƒ«γƒŸγŒ2倍に!\n\n- &aγ‚°γƒͺーンァフゑむをζ³₯ζΌΏ&rでは2倍γγ‚’γƒ«γƒŸγ¨γƒ™γƒͺγƒͺウムγγŠγΎγ‘δ»˜γοΌ\n\nそγγ†γˆγ€γ©γζ³₯漿処理でも少量γγƒγ‚Ώγƒ³γƒ»ι‰„γƒ»γƒγƒŠγ‚Έγ‚¦γƒ γ‚’θΏ½εŠ γ§εΎ—γ‚‰γ‚Œγ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.ore_proc.gem_slurry.desc": "εηŸ³γ&6ζ³₯漿処理&rは、ルビー・ァフゑむを・グγƒͺーンァフゑむを向けγη‰Ήεˆ₯γͺε‡¦η†γƒ«γƒΌγƒˆγ§γ™γ€‚εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€γ‘γ‚‡γ£γ¨γ—γŸζ‰‹ι–“γ§γ‚ˆγ‚Šε€šγγθ³‡ζΊγ‚’ε›žεŽγ§γγΎγ™γ€‚ ι›»θ§£ε‡¦η†γ¨ζ―”γΉγ¦οΌš\n\n-&cルビーζ³₯ζΌΏ&rγ§γ―γ‚’γƒ«γƒŸγ¨γ‚―γƒ­γƒ γŒγ»γΌ3倍に!\n\n-&9ァフゑむをζ³₯ζΌΏ&rγ§γ―γ‚’γƒ«γƒŸγŒ2倍に!\n\n-&aγ‚°γƒͺーンァフゑむをζ³₯ζΌΏ&rでは2倍γγ‚’γƒ«γƒŸγ¨γƒ™γƒͺγƒͺウムγγŠγΎγ‘δ»˜γοΌ\n\nそγγ†γˆγ€γ©γζ³₯漿処理でも少量γγƒγ‚Ώγƒ³γƒ»ι‰„γƒ»γƒγƒŠγ‚Έγ‚¦γƒ γ‚’θΏ½εŠ γ§εΎ—γ‚‰γ‚Œγ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.ore_proc.gem_slurry.task": "Any Gem Slurry Ore", - "quests.space_survival": "Tips - Space Survival", - "quests.space_survival.subtitle": "The one place that hasn't been corrupted by capitalism... Space!", - "quests.space_survival.preparations.title": "Pre-Launch Preparations", - "quests.space_survival.preparations.subtitle": "Make sure you're ready!", - "quests.space_survival.preparations.desc": "Eager to launch into the final frontier? We totally get the enthusiasm but you can't just hurl yourself into space and hope to survive! &9Preparation&r is key to survival, or you'll just end up back in the Stone Age banging rocks together for a few seconds before suffocating to death.\n\nMake sure you have at least the following:\n- A Space Suit and a full drum of breathable gas\n- A Rocket with another full drum of spare Fuel\n- A Launch Pad so you can return\n- Plenty of food and water\n- A weapon and shield in case the Moon's haunted...", - "quests.space_survival.food.title": "Space Food", - "quests.space_survival.food.subtitle": "Long lasting food for long journeys", - "quests.space_survival.food.desc": "Consider bringing along some &dSpace Food&r for the journey ahead! It's simple to make and comes with a long shelf life. &9Freeze-Dried Fruit&r are a tasty snack, &bMeal Bags&r can hold any normal kind of food you'd have on Earth, and there's also &aCalorie Paste&r for a nutritionally complete but gross meal. You can reuse the Foil Packs when you're finished, too!", - "quests.space_survival.food.task": "Any space food", - "quests.space_survival.satellite.title": "Space Stations", - "quests.space_survival.satellite.subtitle": "For when you really want to get away from it all", - "quests.space_survival.satellite.desc": "By keeping the above items in your inventory, you'll be able to build a &9Space Station&r in orbit once you launch! There's not really much to do up there, and they're totally optional, but if you want a void dimension with no gravity for whatever reason, or just &oreally&r like sky diving, they're an option.", - "quests.space_survival.flag.title": "Flag Planter", + "quests.space_survival": "ε‡ε™γγ‚γ‚‹γγ‹γŸο½žη„‘δΊ‹γ«η”Ÿι‚„γ™γ‚‹γŸγ‚γ«", + "quests.space_survival.subtitle": "δΊΊγζ‰‹γŒγΎγ εŠγ‚“でいγͺγ„γ€δΊΊι‘žζœ€εΎŒγη§˜ε’ƒβ€¦β€¦γγ‚Œγ―ε‡ε™οΌ", + "quests.space_survival.preparations.title": "ε‡Ίη™Ίγ«ε…ˆη«‹γ£γ¦", + "quests.space_survival.preparations.subtitle": "ε‡ε™ζ—…θ‘Œγ―ζΊ–ε‚™γŒγ™γΉγ¦οΌ", + "quests.space_survival.preparations.desc": "そんγͺγ“γ¨γ‚ˆγ‚Šζ—©γε‡Ίη™Ίγ—γŸγ„γ§γ™γ£γ¦οΌŸγγη†±ζ„γ―ε€§δΊ‹γ§γ™γŒγ€η†±ζ„γ γ‘γ§ε‡ε™γ‚’η”ŸγζŠœγγ“γ¨γ―ε‡Ίζ₯ません。何事にも&9ζΊ–ε‚™&rγŒεΏ…θ¦γ§γ™γ€‚γ•γ‚‚γͺγγ°γ€ηŸ³γ²γ¨γ€ζŒγ‘εΈ°γ‚‹γ“γ¨γ‚‚ε‡Ίζ₯γšγ«ζ­»γ‚“γ§γ—γΎγ„γΎγ™γ‚ˆοΌŸ\n\nε‡ε™ζ—…θ‘Œγ«ζœ€δ½Žι™εΏ…θ¦γͺγ‚‚γγ―δ»₯δΈ‹γι€šγ‚Šγ§γ™γ€‚\n・ε‡ε™ζœγ¨ε‘ΌεΈγγŸγ‚γη©Ίζ°—\nγƒ»γƒ­γ‚±γƒƒγƒˆγ¨γƒ‰γƒ©γƒ 1杯γη‡ƒζ–™\n・ε‡ε™γ‹γ‚‰εΈ°ι‚„γ™γ‚‹γŸγ‚γγƒ­γ‚±γƒƒγƒˆη™Ίε°„台\n・倧量γι£Ÿζ–™γ¨ζ°΄\n・θ‡ͺθ‘›γγŸγ‚γζ­¦ε™¨γ‚„ι˜²ε…·", + "quests.space_survival.food.title": "ε‡ε™ι£Ÿ", + "quests.space_survival.food.subtitle": "θ…ΉγŒζΈ›γ£γ¦γ―ε‡ε™ζ—…θ‘Œγ―できぬ", + "quests.space_survival.food.desc": "ε‡ε™ζ—…θ‘ŒγγŠδΎ›γ€γγ‚Œγ―&dε‡ε™ι£Ÿ&r!ε‡ε™ι£Ÿγ―θ£½ι€ γŒη°‘ε˜γ§γ€γ‹γ€γ¨γ¦γ‚‚ζ—₯ζŒγ‘γ™γ‚‹γ¨γ„γ†η‰Ήζ€§γŒγ‚γ‚ŠγΎγ™γ€‚&9フγƒͺγƒΌγ‚Ίγƒ‰γƒ©γ‚€ζžœη‰©&rγ―γ€γŠγ‚„γ€γ«ζœ€ι©γ§γ™γ€‚&bι£Ÿζ–™θ’‹&rγ―γ€εœ°δΈŠγ§ι£ŸγΉγ‚‹γ‚ˆγ†γͺι€šεΈΈγι£Ÿζ–™γ‚’ζΊθ‘Œγ™γ‚‹γŸγ‚γθ’‹γ§γ™γ€‚&aγ‚«γƒ­γƒͺγƒΌγƒšγƒΌγ‚Ήγƒˆ&rはいわゆるεŒε…¨ζ „ι€Šι£Ÿγ§γ™γŒγ€ε‘³γ«γ―ζœŸεΎ…γ—γͺγ„γ‚ˆγ†γ«γ€‚δ½œζˆγ«δ½Ώγ†θ’‹γ―γ€ι£ŸγΉγŸεΎŒγ«θΏ”γ£γ¦γγΎγ™γ€‚", + "quests.space_survival.food.task": "γ„γšγ‚Œγ‹γε‡ε™ι£Ÿ", + "quests.space_survival.satellite.title": "ε‡ε™γ‚Ήγƒ†γƒΌγ‚·γƒ§γƒ³", + "quests.space_survival.satellite.subtitle": "εΆε‡Ίγ—γŸγ„γ‚γͺたに", + "quests.space_survival.satellite.desc": "γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ«γ“γ‚Œγ‚‰γ‚’γ‚€γƒ†γƒ γ‚’ζŒγ£γŸηŠΆζ…‹γ§ε‡ε™γ«ε‡Ίη™Ίγ™γ‚‹γ¨γ€θ»Œι“δΈŠγ«&9ε‡ε™γ‚Ήγƒ†γƒΌγ‚·γƒ§γƒ³&rγ‚’ε»Ίθ¨­γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ε»Ίθ¨­γ―εΏ…ι ˆγ§γͺγγ€γΎγŸε‡ε™γ‚Ήγƒ†γƒΌγ‚·γƒ§γƒ³γ§ε‡Ίζ₯γ‚‹γ“γ¨γ‚‚γγ†ε€šγγ‚γ‚ŠγΎγ›γ‚“γ€‚γ—γ‹γ—γͺγŒγ‚‰γ€ζ–‡ε­—ι€šγ‚Šδ½•γ‚‚γͺい(ι‡εŠ›γ™γ‚‰)γƒ‡γ‚£γƒ‘γƒ³γ‚·γƒ§γƒ³γŒζ¬²γ—γ‘γ‚Œγ°γ€ε»Ίθ¨­γ™γ‚‹δΎ‘ε€€γ―γ‚γ‚‹γ§γ—γ‚‡γ†γ€‚&oスカむダむビング&rγ§ιŠγΆγ“γ¨γ‚‚γ§γγΎγ™γ‚ˆοΌ", + "quests.space_survival.flag.title": "εˆΆθ¦‡γθ¨Ό", "quests.space_survival.flag.subtitle": "LunaFirmaCraft", - "quests.space_survival.flag.desc": "Introduce yourself to the Moon by planting a flag with whatever image you like on it!", - "quests.space_survival.flag.task": "Any Flag", - "quests.space_survival.chorus.title": "Chorus Fruit", - "quests.space_survival.chorus.subtitle": "Is this the End?", - "quests.space_survival.chorus.desc": "&5Chorus Fruit&r serves a pretty crucial role on the Moon - it will be your main source of Nitrogen. To get started, find some Chorus Plants, parkour up to the top, and break the &5Chorus Flowers&r. Breaking the plant from the bottom will not get you any of the Chorus Flowers! Next up, grow the Chorus Flowers in an Electric Greenhouse to get a renewable source of Chorus Fruit, and from there, you can process them into Biomass and Nitrogen with a Brewery and Fermenter respectively. You can also distill the Biomass into Carbon for more Rocket Fuel!", - "quests.space_survival.rover.title": "Space Rover", - "quests.space_survival.rover.subtitle": "Your getaway vehicle", - "quests.space_survival.rover.desc": "You had to leave your fancy jetpack at home, there's no atmosphere for airplanes, and horses can't survive, so how are you supposed to get around?\n\nThe &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 &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!", - "quests.space_survival.stone_dust_centrifuging.desc.2": "2) Pump it out of the ground with a &9Fluid Rig&r This method is simpler, but doesn't come with any useful byproducts.\n\nHelium-3 is used for several things, of which the most important is making more air to breathe via &6Heliox-3&r! You can also use it as \"fertiliser\" for Chorus Fruit in the Electric Greenhouse, and eventually as another fuel for Fusion Power.", - "quests.space_survival.stone_dust_centrifuging.task": "Any ", - "quests.space_survival.compressed_gases.title": "Compressed Breathable Gases", - "quests.space_survival.compressed_gases.subtitle": "Because pure Oxygen is deadly", - "quests.space_survival.compressed_gases.desc": "Find yourself a little short of breath? You'll need something to breathe up in space, so you'll want to look at producing any of these compressed gases, based off real-world ones used for deep sea diving!\n\nYou can fill your space suit with them the same way you'd fill up a bucket, or if you bring along a &bGas Tank&r you'll be able to \"drink\" from it to replenish your suit without taking it off.\n\n&2Nitrox&r is probably the easiest to produce on Earth, while you can set up &eHeliox-3&r on the Moon.\n\nA full space suit (2500mB) will last about &c45 minutes&r.", - "quests.space_survival.compressed_gases.task": "Any compressed breathable gas", - "quests.space_survival.zip_gun.title": "Zip Gun", - "quests.space_survival.zip_gun.subtitle": "Like a jetpack in the palm of your hand", - "quests.space_survival.zip_gun.desc": "A Zip Gun can be filled up with any of the below Compressed Gases to shoot out air, pushing you around in low gravity environments. They're essential if you want to build anything in orbit!", - "quests.space_survival.air_distributor.title": "Setting up a permanent base", - "quests.space_survival.air_distributor.subtitle": "A holiday home", - "quests.space_survival.air_distributor.desc.1": "So far you may be surviving, but do you want to truly &othrive&r? If you're wanting to set up a more permanent base, look no further than the &6Air Distributor&r! Feed it one of the compressed gases from earlier and it will \"oxygenate\" a large enclosed area, letting you take your helmet off, grow crops, and place a water source without it freezing.\n\nAny solid block will work to build your base out of, but you'll want a proper airlock to ensure the gas doesn't all escape in a &cvortex&r.", - "quests.space_survival.air_distributor.desc.2": "The oxygenated area will be at a constant 15C for any crops you'd like to grow (though the Electric Greenhouse doesn't mind), and the water source staying liquid will also let you easily electrolyze it for a source of &bOxygen&r. You can also use a Diode block to transfer power through the walls while keeping them sealed, just like in a cleanroom.", - "quests.space_survival.oxygen_info.title": "More Moon base machines", - "quests.space_survival.oxygen_info.subtitle": "Home comforts", - "quests.space_survival.oxygen_info.desc": "The Oxygen Detector is a simple machine that emits a redstone signal whenever it's in an oxygenated area.\n\nThe Vent is a solid block that can also let breathable air through without causing a vortex.\n\nThe Gravity Normalizer can change the gravity of an area within an enclosed space similar to how an Air Distributor works, but is a little too expensive at the moment.", - "quests.space_survival.railgun.title": "Interplanetary Logistics", - "quests.space_survival.railgun.subtitle": "Ender chest? Never heard of her!", - "quests.space_survival.railgun.desc.1": "&7In &bTerraFirmaGreg&r, transporting items across dimensions or over long distances requires you to build special &6multiblock structures&r.\n\nThis system is &apowerful and flexible&r, offering multiple settings that let you customize logistics to perfectly suit your needs.\n\nThis is the perfect system to transport all of your &apassively-produced&r resources to exactly where they're needed on other planets! And it comes with a powerful &dconfiguration system&r to let you control everything from a single place.", - "quests.space_survival.railgun.desc.2": "To set it up, you'll need three components:\n\n&6β€’ Interplanetary Railgun&r β€” this is the &bsender&r that launches items across space.\n\n&6β€’ Interplanetary Receiver&r β€” this is the &breceiver&r that catches and stores incoming items.\n\n&6β€’ Interplanetary Logistics Monitor&r β€” this acts as the &9central control&r, where you define the rules and behavior of the entire transport system.\n\nWith these machines, you can automate large-scale transfers efficiently β€” even between planets!", - "quests.space_survival.railgun.task": "Let's dig into Interplanetary logistics", - "quests.space_survival.interplanetary_railgun.title": "Interplanetary Railgun", - "quests.space_survival.interplanetary_railgun.subtitle": "What we call the sender", - "quests.space_survival.raiinterplanetary_railgunlgun.desc.1": "&6The Interplanetary Railgun&r acts as your &bsender multiblock&r.\n\nIt’s the structure responsible for launching items toward distant &3receivers&r β€” but it can’t receive anything itself.", - "quests.space_survival.raiinterplanetary_railgunlgun.desc.2": "To function correctly, it requires several components:\n\n&9β€’ Energy Hatch&r β€” provides the power needed to launch items. Without energy, nothing moves.\n&9β€’ Railgun Ammo Loader&r β€” must be filled with ammo. One unit is consumed per launch.\n&9β€’ Input Buses&r β€” you can add as many as you can fit, to insert the items you want to send.\n\n&cImportant:&r This multiblock can only &osend&r items. Make sure your &6Interplanetary Railgun&r is always chunkloaded!", - "quests.space_survival.ammo_railgun.title": "Railgun Ammo", - "quests.space_survival.ammo_railgun.subtitle": "You didn't think it would be free?", - "quests.space_survival.ammo_railgun.desc.1": "&7Each &6Interplanetary Railgun&r requires a special type of &eammo&r β€” think of it as a package used to transport items.\nEach launch consumes exactly &cone unit&r of ammo and can send &dthree stacks&r of items.\n\nTo load it, you’ll need a &6Railgun Ammo Loader&r as part of your structure.\nYou can insert ammo manually or automate the process.\n\n&9We strongly recommend&r setting up a passive production line to keep your loader filled continuously β€” this ensures a smooth and reliable logistics chain.", - "quests.space_survival.ammo_railgun.desc.2": "There are multiple recipes available to craft ammo:\n\nβ€’ Lower-tier recipes are simpler but produce fewer units.\nβ€’ Higher-tier recipes yield &amuch more ammo&r, but require more advanced resources and machines.&r\nβ€’ Specialized ammo that you can only craft on certain planets. Check the recipes.\n\nPlan your production based on your &3logistics scale&r β€” interplanetary trade waits for no one!", - "quests.space_survival.input_bus_railgun.title": "Railgun Input Bus", - "quests.space_survival.input_bus_railgun.subtitle": "Sender only", - "quests.space_survival.input_bus_railgun.desc.1": "&cIf you haven't read the quest about the &6Interplanetary Logistics Monitor&r &con the left of this one, make sure to check it out first β€” this quest builds on that knowledge.&r\n\nWhen opening the &6Sender&r logistics screen on the &dInterplanetary Logistics Monitor&r, you'll notice the familiar &9Programmed Circuit&r from GregTech.\nThis circuit number is the core identifier for setting up routing rules.\n\nThe number you assign will apply a specific rule to all Input Buses in your Railgun structure that are configured with that same circuit number.\n\nThis allows you to fine-tune what items are sent where and with which rules, based on the circuit used.", - "quests.space_survival.input_bus_railgun.desc.2": "&2How to configure it:&r\nβ†’ Open the GUI of any &9Railgun Input Bus&r\nβ†’ Select the number you want β€” just like in any other GregTech machine\n\nThis lets you create powerful logic like:\n&7β€’ Circuit 1&r β†’ send to Moon base\n&7β€’ Circuit 2&r β†’ send to Mars\n&7β€’ Circuit 3&r β†’ send to Orbital Station\n\nWith proper circuit setup, you can automate interplanetary trade like a true industrial tycoon!\n\n&9Note&r: You cannot send anything with the &7#tfg:cannot_launch_in_railgun&r tag.", - "quests.space_survival.input_bus_railgun.task": "Any Railgun Input Bus", - "quests.space_survival.monitor_railgun.title": "Interplanetary Logistics Monitor", - "quests.space_survival.monitor_railgun.subtitle": "Super Computer", - "quests.space_survival.monitor_railgun.desc.1": "&6The Interplanetary Logistics Monitor&r is your logistics command center β€” the true bread and butter of interplanetary transport.\n\nIt’s a &asingle block&r, requires &ono energy&r, and will automatically detect every &6Railgun Sender&r and &3Receiver&r you’ve built.", - "quests.space_survival.monitor_railgun.desc.2": "It may look simple, but it hides powerful tools under the hood.\nLet’s go over the basics:\n\n&9β€’ When you open the Monitor&r, you'll see a list of all your Senders and Receivers.\nYou have to &ename each one&r.\n\n&9β€’ To create a logistic rule:&r\n β†’ Click the right arrow to select a Sender\n β†’ Press &a+&r to add a new rule\n β†’ Choose the destination Receiver from your list\n\nIf your &6Railgun&r has ammo and energy, and the &3Receiver&r has space β€” the shipment will launch instantly!\n\nNow that you've got the basics, let’s dive into the more advanced features in the next quests...", - "quests.space_survival.redstone_railgun.title": "Redstone Control", - "quests.space_survival.redstone_railgun.subtitle": "Redstone rules in Minecraft", - "quests.space_survival.redstone_railgun.desc": "&6The Redstone Rule&r is simple β€” but incredibly powerful when used well.\n\nIn the &6Sender&r rules interface, enabling this rule means that a &credstone signal&r must be present on the &9Input Bus&r for it to send items.\n\nIn the &3Receiver&r rules interface, you can configure the rule so that an &9Output Bus&r will only accept items based on the redstone signal on that specific block.\n\nTime to use your redstone logic skills!\nWhether it's with an &dAE2 Level Emitter&r, from &aCreate redstone utilities&r, or good old vanilla mechanisms β€” this rule lets you synchronize logistics with your factory state like a pro.", - "quests.space_survival.redstone_railgun.task": "Understood", - "quests.space_survival.robot_arm_railgun.title": "Supply Exact", - "quests.space_survival.robot_arm_railgun.subtitle": "It's a Gregtech pack you know", - "quests.space_survival.robot_arm_railgun.desc": "&6The Item Rule&r works similarly to a &9GregTech Robot Arm&r set to &eSupply Exact&r.\nIt can only be configured from the &6Sender&r rules interface.\n\nWith this rule active, the &9Railgun&r will only send the &aexact quantity&r when available in the &9Input Bus&r.\n\n&2How to set it up:&r\nβ†’ Drag items into the filter from your &dEMI&r interface\nβ†’ Use &aleft and right clicks&r to adjust the quantity\nβ†’ You can also bookmark items for quick access and configuration\n\nThis rule is perfect for precise automation β€” ideal for batch crafting or resource quotas.", - "quests.space_survival.robot_arm_railgun.task": "Understood", - "quests.space_survival.delay_railgun.title": "Delay", - "quests.space_survival.delay_railgun.subtitle": "Sometime you just want to wait", - "quests.space_survival.delay_railgun.desc": "&6The Delay Rule&r is simple, but useful for managing item flow timing.\n\n&2On the Sender side:&r\nItems will only be sent after the &9Input Bus&r hasn't received any new item for a set amount of time (in seconds).\nThis helps avoid sending items too frequently when inputs are constantly changing.\n\n&2On the Receiver side:&r\nThe rule defines a delay before an &9Output Bus&r can receive another batch of items.\nThis can be useful to prevent overflow or to pace item insertion into slower systems.\n\nIdeal for syncing with machines that need breathing room between operations, or to prevent unnecessary waste of ammo.", - "quests.space_survival.delay_railgun.task": "Understood", - "quests.space_survival.receiver_railgun.title": "Interplanetary Receiver", - "quests.space_survival.receiver_railgun.subtitle": "The Receiver", - "quests.space_survival.receiver_railgun.desc.1": "&6The Interplanetary Receiver&r, as its name suggests, is designed to &3receive items&r sent by the Railgun.\n\nIt’s a &asmall and simple multiblock&r that requires no energy or maintenance β€” just build it and you're ready to go!", - "quests.space_survival.receiver_railgun.desc.2": "Its flexibility lies in the number of &9Output Buses&r you can attach.\nThe more you add, the more items it can handle simultaneously.\n\n&2Setup is easy:&r\nβ€’ Build the structure\nβ€’ Add as many Output Buses as you need\nβ€’ Done β€” it’s ready to receive!\n\nNo fuel, no maintenance β€” just pure logistics power.\nMake sure it’s properly chunkloaded, and let the items rain in!", - "quests.space_survival.output_bus_railgun.title": "Railgun Output Bus", - "quests.space_survival.output_bus_railgun.subtitle": "Receiver only", - "quests.space_survival.output_bus_railgun.desc.1": "&cIf you haven't read the quest about the &6Railgun Input Bus&r &cabove this one, make sure to check it out first β€” this quest builds on that knowledge.&r\n\nJust like how your &6Railgun Input Buses&r can be assigned a &9circuit number&r, you can do the same with the &3Output Buses&r on your &3Receiver&r.", - "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.space_survival.mars_desert.title": "The Martian Desert", - "quests.space_survival.mars_desert.subtitle": "Sand, sand everywhere", - "quests.space_survival.mars_desert.desc": "The majority of Mars is covered in a vast desert. Not much lives here except the occasional Stackatick, and of course the giant &6Sandworms&r. If this is your first time here, you'll want to find somewhere more hospitable! Otherwise, you'll want to keep searching...", - "quests.space_survival.mars_desert.task": "Visit the Martian Deep Desert biome", - "quests.space_survival.sandworm.title": "The Sandworm", + "quests.space_survival.flag.desc": "ζœˆγ«η€γ„γŸγγͺら、旗を立てるγγŒγŠζ±ΊγΎγ‚Šγ§γ™γ­γ€‚いろいろγͺデアむンγζ——γŒγ‚γ‚‹γγ§γ€η’Ίθͺγ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.space_survival.flag.task": "γ„γšγ‚Œγ‹γζ——", + "quests.space_survival.chorus.title": "コーラスフルーツ", + "quests.space_survival.chorus.subtitle": "γ‚¨γƒ³γƒ‰οΌŸ", + "quests.space_survival.chorus.desc": "ζœˆι’γ«γŠγ„γ¦εΎ—γ‚‰γ‚Œγ‚‹δΈ­γ§γ€&5コーラスフルーツ&rはかγͺγ‚Šι‡θ¦γͺをむテムです。コーラスフルーツからは、ηͺ’η΄ γŒε…₯ζ‰‹γ§γγΎγ™γ€‚γ‚³γƒΌγƒ©γ‚Ήγƒ—γƒ©γƒ³γƒˆγ‚’θ¦‹γ€γ‘γŸγ‚‰γ€γ‹γͺγ‚‰γšι ‚δΈŠγθŠ±γ‚’η ΄ε£Šγ—γ¦ε›žεŽγ—γΎγ—γ‚‡γ†γ€‚γ•γ‚‚γͺくば、コーラスフラワーは手にε…₯γ‚ŠγΎγ›γ‚“γ€‚γ‚³γƒΌγƒ©γ‚Ήγƒ•γƒ©γƒ―γƒΌγ‚’ι›»ζ°—ζΈ©ε€γ§θ‚²γ¦γ‚‹γ“とで、コーラスフルーツを手にε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ‚’ι†Έι€ ζ©Ÿγ«ε…₯γ‚Œγ‚‹γ¨γƒγ‚€γ‚ͺγƒžγ‚ΉγŒγ€η™Ίι…΅ζ§½γ«ε…₯γ‚Œγ‚Œγ°ηͺ’η΄ γŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚γƒγ‚€γ‚ͺγƒžγ‚Ήγ―γ€θ’Έη•™γ™γ‚‹γ“γ¨γ§η‚­η΄ γ«γͺγ‚‹γŸγ‚γ€γƒ­γ‚±γƒƒγƒˆη‡ƒζ–™γζζ–™γ«γ‚‚γͺγ‚ŠγΎγ™γ€‚", + "quests.space_survival.rover.title": "γ‚ΉγƒšγƒΌγ‚Ήγƒ­γƒΌγƒγƒΌ", + "quests.space_survival.rover.subtitle": "脱出用ビークル", + "quests.space_survival.rover.desc": "ε‡ε™γ«γ―γ‚Έγ‚§γƒƒγƒˆγƒ‘γƒƒγ‚―γ‚’ζŒγ‘θΎΌγ‚γΎγ›γ‚“γ€‚ι£›θ‘Œζ©Ÿγ―ε€§ζ°—εœε€–γ§γ―ι£›γ³γΎγ›γ‚“γ€‚ι¦¬γ―η”Ÿε­˜γ§γγΎγ›γ‚“γ€‚γγ‚“γͺ中で、移動手ζ΅γŒγ‚γ‚‹γγ§γ—γ‚‡γ†γ‹οΌŸ\n\nεŸγ―γ‚γ‚ŠγΎγ™γ€‚&b排査車&rは梲体燃料で衰る2δΊΊδΉ—γ‚Šγγƒ“γƒΌγ‚―γƒ«γ§γ™γ€‚ε†…ιƒ¨γ«γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚’ε‚™γˆγ¦γŠγ‚Šγ€εŠ γˆγ¦γƒ©γ‚Έγ‚ͺも搭載。ラジγ‚ͺでは、現εŸδΈ–η•Œγγƒ©γ‚Έγ‚ͺγ‚’γ‚ΉγƒˆγƒͺγƒΌγƒŸγƒ³γ‚°ε†η”Ÿγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.space_survival.solar_panels.title": "ソーラーパネル", + "quests.space_survival.solar_panels.subtitle": "γŠε€©ι“ζ§˜γ―θ¦‹γ¦γ„γ‚‹γž", + "quests.space_survival.solar_panels.desc": "ζœˆι’γ§δ½Ώγˆγ‚‹η™Ίι›»ζ‰‹ζ΅γ―γ‚γΎγ‚Šε€šγγ‚γ‚ŠγΎγ›γ‚“γ€‚γγ‚“γͺ中で活躍するγγŒ&eソーラーパネル&rです。\n\nζ˜Όι–“ι™εšγ«γ―γͺγ‚ŠγΎγ™γŒγ€ζœˆι’γγ‚½γƒΌγƒ©γƒΌγƒ‘γƒγƒ«γ―γƒŽγƒΌγ‚³γ‚Ήγƒˆγ§&932EU/t&r相当γι›»εŠ›γ‚’η”ŸγΏε‡Ίγ—γΎγ™γ€‚εœ°ηƒδΈŠγ§γη™Ίι›»ι‡γ―γ€ζœˆι’γ8εˆ†γ1にγͺγ‚ŠγΎγ™γ€‚ε€§ι‡γ«η”¨ζ„γ—γ¦γ€ζœˆγ«δΈ¦γΉγ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.space_survival.solar_panels.task": "Any FE to EU converter", + "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γŒε­˜εœ¨γ—γΎγ™γ€‚ζœˆγηŸ³γζˆεˆ†γ¨γ—γ¦ε«γΎγ‚Œγ‚‹γƒ˜γƒͺウム3は、重要資源γγ²γ¨γ€γ§γ™γ€‚δΈ»γͺε…₯手方法は2η¨ι‘žγ‚γ‚ŠγΎγ™γ€‚\n\n1.ηŸ³γ‚’η²‰η •γ—γ€ι εΏƒεˆ†ι›’γ™γ‚‹γ€‚η •ηŸ³ζ©Ÿγ§γ―η”ŸηŸ³γ‚’η„‘ι™η”Ÿη”£γ™γ‚‹γ“γ¨γŒγ§γγ‚‹γγ§γ€γ“γ‚Œγ§εΎ—γ‚‰γ‚Œγ‚‹ηŸ³γ‚’δ½Ώγ„γΎγ—γ‚‡γ†γ€‚\n\nζœˆι’γ§η”Ÿη”£γ§γγ‚‹γγ―γ€ζ–œι•·ε²©γƒ»γƒŽγƒΌγƒ©γ‚€γƒˆγƒ»ιŸΏε²©γ3η¨γ§γ™γ€‚γ“γ‚Œγ‚‰γ‚’εŠ ε·₯γ™γ‚‹γ“γ¨γ§γ€γƒ˜γƒͺウム3は焑限資源にγͺγ‚ŠγΎγ™γ€‚", + "quests.space_survival.stone_dust_centrifuging.desc.2": "2.&9ζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿ&rγ§ζŽ˜γ‚‹γ€‚γ“γ‘γ‚‰γ―η°‘ε˜γ§γ™γŒγ€ε‰―η”£η‰©γ―η‰Ήγ«εΎ—γ‚‰γ‚ŒγΎγ›γ‚“γ€‚\n\nγƒ˜γƒͺウム3γη”¨ι€”γ―γ„γγ€γ‹ζŒ™γ’γ‚‰γ‚ŒγΎγ™γŒγ€η‰Ήγ«ι‡θ¦γͺγγ―ε‘ΌεΈγ™γ‚‹γŸγ‚γη©Ίζ°—γη’ΊδΏγ§γ—γ‚‡γ†γ€‚γΎγŸγ€γƒ˜γƒͺウム3は電気温ε€γθ‚₯料としても使用でき、コーラスフルーツγζˆι•·γ‚’εŠ ι€Ÿγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ•γ‚‰γ«γ―、将ζ₯ζ Έθžεˆη‚‰γŒεŒζˆγ™γ‚Œγ°γ€ζ Έθžεˆη™Ίι›»γη‡ƒζ–™γ«γ‚‚γͺγ‚ŠγΎγ™γ€‚", + "quests.space_survival.stone_dust_centrifuging.task": "γ„γšγ‚Œγ‹γγ‚’むテム", + "quests.space_survival.compressed_gases.title": "圧ηΈη©Ίζ°—", + "quests.space_survival.compressed_gases.subtitle": "純粋酸素を吸うγγ―やめましょう", + "quests.space_survival.compressed_gases.desc": "ζ―γŒε‡Ίζ₯γͺγ„οΌŸε‡ε™γ§ζ―γ‚’γ™γ‚‹γ«γ―γ€γ“γ“γ«ζŒ™γ’γŸζ°—δ½“γγ„γšγ‚Œγ‹γŒεΏ…θ¦γ§γ™γ€‚γ“γ‚Œγ‚‰ζ°—δ½“γ―、現εŸδΈ–η•Œγ§γ―γƒ€γ‚€γƒ“γƒ³γ‚°γ«γ‚‚δ½Ώγ‚γ‚Œγ¦γ„γΎγ™γ€‚\n\nε‡ε™ζœγ«ζ°—体をε…₯γ‚Œγ‚‹γγ―γ€γƒγ‚±γƒ„γ¨εŒγ˜θ¦ι ˜γ§θ‘ŒγˆγΎγ™γ€‚γΎγŸγ€γ‚¬γ‚Ήγ‚Ώγƒ³γ‚―γ«η©Ίζ°—γ‚’ε…₯γ‚Œγ€γγ‚Œγ‚’γ€Œι£²γ‚€γ€γ“γ¨γ§γ‚‚γ€ε‡ε™ζœγΈγθ£œε……γ―θ‘ŒγˆγΎγ™γ€‚\n\nεœ°ηƒδΈŠγ§γ‚‚γ£γ¨γ‚‚θ£½ι€ γ—γ‚„γ™γ„γγ―γ€γŠγγ‚‰γ&2γƒŠγ‚€γƒˆγƒ­γƒƒγ‚―γ‚Ή&rγ§γ™γ€‚ζœˆι’γ§δ½œγ‚‹γͺら、&eγƒ˜γƒͺγ‚ͺックス3&rγŒγŠγ™γ™γ‚γ§γ™γ€‚\n\nε‡ε™ζœγ«γ“γ‚Œγ‚‰γ‚’γƒ•γƒ«ε……ε‘«γ™γ‚‹γ¨γ€γŠγ‚ˆγ&c45εˆ†ι–“&rζ΄»ε‹•γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.space_survival.compressed_gases.task": "γ„γšγ‚Œγ‹γε‘ΌεΈη”¨γ‚¬γ‚Ή", + "quests.space_survival.zip_gun.title": "ε‡ε™ιŠƒ", + "quests.space_survival.zip_gun.subtitle": "ζ‰‹ζŒγ‘γγ‚Έγ‚§γƒƒγƒˆγƒ‘γƒƒγ‚―γ¨γ„γ£γŸγ¨γ“γ‚", + "quests.space_survival.zip_gun.desc": "ε‡ε™ιŠƒγ―圧ηΈγ‚¬γ‚Ήγ‚’ζ’ƒγ‘ε‡Ίγ™ιŠƒγ§γ™γ€‚δ½Žι‡εŠ›η’°ε’ƒγ«γŠγ„γ¦γ€γ“γιŠƒγ―移動に必要γͺζŽ¨ι€²εŠ›γ‚’η”ŸγΏγ γ—γΎγ™γ€‚ε‡ε™γ§δ½•か建設をするには、欠かせγͺいをむテムです。", + "quests.space_survival.air_distributor.title": "活動拠点を぀くろう", + "quests.space_survival.air_distributor.subtitle": "δΌ‘ζ—₯はγγ‚“γ³γ‚Šεˆ₯荘で", + "quests.space_survival.air_distributor.desc.1": "γŸγΎγ«γ―θ΄…ζ²’γŒγ—γŸγγ‚γ‚ŠγΎγ›γ‚“γ‹οΌŸεœ°ηƒε€–γ§εΈΈζ™‚δ½Ώγˆγ‚‹ζ‹ η‚Ήγ‚’δ½œγ‚ŠγŸγ„γγͺらば、&6ι…Έη΄ εˆ†ι…ζ©Ÿ&rγ‚’δ½œγ‚ŠγΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ«η©Ίζ°—γ‚’ζ¬ε…₯すると、密閉空間をそγζ°—δ½“γ§ζΊ€γŸγ—γ¦γγ‚ŒγΎγ™γ€‚γ“γδΈ­γ§γ―、ε‡ε™ζœγŒγͺγγ¨γ‚‚η”Ÿε­˜γ§γγ€ζ€η‰©γ‚‚θ‚²γ‘γ€θ¨­η½γ—γŸζ°΄γŒε‡γ‚‹γ“γ¨γ‚‚γ‚γ‚ŠγΎγ›γ‚“γ€‚\n\nε›Ίδ½“γƒ–γƒ­γƒƒγ‚―γ§γ‚γ‚Œγ°γ€γ„γ‹γͺるブロックも拠点γζζ–™γ¨γ—γ¦δ½Ώη”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γŸγ γ—γ€γ‚¨γ‚’γƒ­γƒƒγ‚―γ‚’δ½œζˆγ—γͺγ‘γ‚Œγ°γ€ε‡Ίε…₯γ‚Šγιš›γ«η©Ίζ°—γŒι€ƒγ’γ¦γ—γΎγ„γΎγ™γ€‚", + "quests.space_survival.air_distributor.desc.2": "εŠΉζžœη―„ε›²ε†…γη©Ίι–“内部は、常時15β„ƒγ«δΏγŸγ‚Œγ‚‹γŸγ‚γ€γ‚γ‚‰γ‚†γ‚‹ζ€η‰©γŒη”Ÿθ‚²γ§γγΎγ™(ι›»ζ°—ζΈ©ε€γŒγ‚γ‚‹γͺら焑閒係)。水源も凍硐しγͺいγγ§γ€ι›»ζ°—εˆ†θ§£γ«γ‚ˆγ‚ŠγŸγ‚„γ™γι…Έη΄ γ‚’δ½œζˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γƒ€γ‚€γ‚ͺードγγƒ–γƒ­γƒƒγ‚―γ‚’δ½Ώγˆγ°γ€ε†…ε€–γ§ι›»εŠ›γ‚’γ‚„γ‚Šε–γ‚Šγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚γ‘γ‚‡γ†γ©γ‚―γƒͺγƒΌγƒ³γƒ«γƒΌγƒ γ¨εŒγ˜γ‚ˆγ†γͺζŒ™ε‹•γ§γ™γ€‚", + "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.railgun.title": "ζ˜Ÿι–“η‰©θ³‡θΌΈι€", + "quests.space_survival.railgun.subtitle": "γ‚¨γƒ³γƒ€γƒΌγƒγ‚§γ‚ΉγƒˆοΌŸηŸ₯らγͺい子ですね……", + "quests.space_survival.railgun.desc.1": "&7&bTerraFirmaGreg&rγ§γ―γ€γƒ‡γ‚£γƒ‘γƒ³γ‚·γƒ§γƒ³ι–“γΎγŸγ―θΆ…ι•·θ·ι›’γη‰©θ³‡θΌΈι€γ«ε°‚用γγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ©Ÿζ’°γŒθ¦ζ±‚γ•γ‚ŒγΎγ™γ€‚\n\nγ“γ‚Œγ‚‰γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ©Ÿζ’°γ―ζ±Žη”¨ζ€§γ«ε„ͺγ‚Œγ¦γŠγ‚Šγ€η”¨ι€”γ«εΏœγ˜γ¦θ¨­εšγ‚’εˆ‡γ‚Šζ›Ώγˆγ‚‹γ“γ¨γ§γ€ζ§˜γ€…γͺγƒ‹γƒΌγ‚Ίγ«εΏœγˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n必要とあらば、他γζƒ‘ζ˜Ÿγ«ιƒ½εΊ¦εΏ…θ¦γͺθ³‡ζΊγ‚’θΌΈι€γ§γγ‚‹γ†γˆγ€γγ‚Œγ‚‰ζ©Ÿζ’°γη‘理も一か所で一元η‘η†γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.space_survival.railgun.desc.2": "必要γͺ設備はδ»₯δΈ‹γ3η¨ι‘žγ§γ™γ€‚\n\n&6ζ˜Ÿι–“γƒ¬γƒΌγƒ«γ‚¬γƒ³&r:をむテムγι€δΏ‘元とγͺる設備。\n\n&6ζ˜Ÿι–“η‰©θ³‡ε—ε–ζ©Ÿ&r:η™Ίε°„γ•γ‚ŒγŸγ‚’γ‚€γƒ†γƒ γ‚’ε—γ‘ε–γ‚Šγ€δΏη‘する設備。\n\n&6ζ˜Ÿι–“θΌΈι€γƒ’γƒ‹γ‚Ώ&r:各設備γ&9η‘理&rγ‚’θ‘Œγ†θ¨­ε‚™γ€‚ε„η¨θ¨­εšγε€‰ζ›΄γ‚‚ここから。\n\nγ“γ‚Œγ‚‰3η¨γθ¨­ε‚™γ‚’用いることで、倧量γη‰©θ³‡γ‚’γ¨γ¦γ‚‚εŠΉηŽ‡ηš„γ«θΌΈι€γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.space_survival.railgun.task": "欑γθ§£θͺ¬γ‚’θͺ­γ‚€", + "quests.space_survival.interplanetary_railgun.title": "ζ˜Ÿι–“γƒ¬γƒΌγƒ«γ‚¬γƒ³", + "quests.space_survival.interplanetary_railgun.subtitle": "送俑元γθ£…η½", + "quests.space_survival.raiinterplanetary_railgunlgun.desc.1": "&6ζ˜Ÿι–“γƒ¬γƒΌγƒ«γ‚¬γƒ³&rからは、物資を&b送俑&rγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n遠くγ&3ε—ε–ζ©Ÿ&rγ«γ‚’γ‚€γƒ†γƒ γ‚’ε°„ε‡Ίγ—γΎγ™γ€‚ε—γ‘ε–γ‚Šζ©Ÿθƒ½γ―ζŒγ‘γΎγ›γ‚“γ€‚", + "quests.space_survival.raiinterplanetary_railgunlgun.desc.2": "稼働には、δ»₯δΈ‹γζ©Ÿζ’°γŒεΏ…要です。:\n\n&9エネルγ‚ーハッチ&r:必要γͺι›»εŠ›γ‚’δΎ›η΅¦γ™γ‚‹θ£…η½γ€‚γƒ¬γƒΌγƒ«γ‚¬γƒ³γ―ι›»ζ°—γŒη„‘γ„γ¨η¨Όεƒγ—γΎγ›γ‚“γ€‚\n&9εΌΎδΈΈθ£…ε‘«ζ©Ÿ&r:稼働するには、ここに弾丸をε…₯γ‚Œγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚1ε›žγη™Ίε°„ごとに、1η™ΊζΆˆθ²»γ—γΎγ™γ€‚\n&9搬ε…₯バス&r:ε°„ε‡Ίγ—γŸγ„γ‚’γ‚€γƒ†γƒ γ―γ“γ“γ«ε…₯γ‚Œγ¦γγ γ•γ„γ€‚δ½•ε€‹γ§γ‚‚γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ«η΅„γΏθΎΌγ‚€γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&c注意:&rレールガンだけでは、をむテムγε°„ε‡Ίγ—γ‹θ‘ŒγˆγΎγ›γ‚“γ€‚γΎγŸγ€εΏ…γšγƒ¬γƒΌγƒ«γ‚¬γƒ³γŒγ‚γ‚‹γƒγƒ£γƒ³γ‚―γ‚’γƒ­γƒΌγƒ‰γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.space_survival.ammo_railgun.title": "レールガンγεΌΎ", + "quests.space_survival.ammo_railgun.subtitle": "ζ‹εΏ΅γͺγŒγ‚‰γƒŽγƒΌγ‚³γ‚Ήγƒˆγ§γ―γͺい", + "quests.space_survival.ammo_railgun.desc.1": "レールガンγη¨Όεƒγ«γ―γ€εΌΎδΈΈγŒεΏ…θ¦γ§γ™γ€‚θ¦γ™γ‚‹γ«γ€ε°„ε‡Ίγ™γ‚‹γ‚’γ‚€γƒ†γƒ γ‚’ε…₯γ‚Œγ‚‹γŸγ‚γη±γ¨ζ€γ£γ¦γγ γ•い。\n\n1ε›žγη™Ίε°„ごとに、1η™ΊγεΌΎδΈΈγ‚’ζΆˆθ²»γ—γ€εΌΎδΈΈ1η™Ίγ‚γŸγ‚Š&d3スタック&rγγ‚’γ‚€γƒ†γƒ γŒθΌΈι€γ•γ‚ŒγΎγ™γ€‚\n\n&6εΌΎδΈΈθ£…ε‘«ζ©Ÿ&rがγͺγ‘γ‚Œγ°γ€γƒ¬γƒΌγƒ«γ‚¬γƒ³γ«εΌΎδΈΈγ‚’θ£…ε‘«γ™γ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“γ€‚\nεΌΎδΈΈθ£…ε‘«ζ©ŸγΈγζ¬ε…₯γ―γ€ζ‰‹ε‹•γ§γ‚‚θ‘ŒγˆγΎγ™γŒγ€θ‡ͺε‹•εŒ–γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\nηΆ™ηΆšηš„γ«γ‚’γ‚€γƒ†γƒ γ‚’θΌΈι€γ—γ¦γ„γγŸγ„γγ§γ‚γ‚Œγ°γ€εΌΎδΈΈγθ£½ι€ γ―ε‡Ίζ₯γ‚‹ι™γ‚Šθ‡ͺε‹•εŒ–γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.space_survival.ammo_railgun.desc.2": "εΌΎδΈΈγγƒ¬γ‚·γƒ”は耇数η¨ε­˜εœ¨γ—ます。\n\nδ½Žγ‚³γ‚Ήγƒˆγ γŒθ£½ι€ ζ•°γŒε°‘γͺいもγγ€γ‚„γ‚„ι«˜γ‚³γ‚Ήγƒˆγ γŒε€§ι‡η”Ÿη”£γŒε―能γͺγ‚‚γγ€η‰Ήεšγζƒ‘ζ˜Ÿγ§γ—γ‹δ½Ώη”¨γ§γγͺいもγγ€‚\n\nどγγƒ¬γ‚·γƒ”を使うかは、輸送γθ¦ζ¨‘γ«εΏœγ˜γ¦ζ±Ίγ‚γΎγ—γ‚‡γ†γ€‚", + "quests.space_survival.input_bus_railgun.title": "レールガン搬ε…₯バス", + "quests.space_survival.input_bus_railgun.subtitle": "送俑元でγγΏδ½Ώγ†γ‚‚γ", + "quests.space_survival.input_bus_railgun.desc.1": "&cεΏ…γšε…ˆγ«&6ζ˜Ÿι–“θΌΈι€γƒ’γƒ‹γ‚Ώ&rγγ‚―γ‚¨γ‚Ήγƒˆγ‚’η’Ίθͺγ—γ¦γŠγ„γ¦γγ γ•γ„γ€‚δ»₯δΈ‹γ―ε½“θ©²γ‚―γ‚¨γ‚Ήγƒˆγζ–‡η« γ‚’θͺ­γ‚“γ§γ„γ‚‹ε‰ζγ§ζ›Έγ‹γ‚Œγ¦γ„γΎγ™γ€‚&r\n\n&dζ˜Ÿι–“θΌΈι€γƒ’γƒ‹γ‚Ώ&rγι€δΏ‘側画青γGUIには、Gregtechでおγͺじみγ&9γƒ—γƒ­γ‚°γƒ©γƒ ε›žθ·―&rγγƒœγ‚Ώγƒ³γŒε­˜εœ¨γ—ます。\n輸送時γε„η¨γƒ«γƒΌγƒ«γ―、こγγƒ—γƒ­γ‚°γƒ©γƒ ε›žθ·―γγƒœγ‚Ώγƒ³γ‚’使って設εšγ—ます。\n\nヒニタγη”»ι’γ§γƒ—γƒ­γ‚°γƒ©γƒ ε›žθ·―γη•ͺε·γ‚’ιΈγΆγ¨γ€εŒγ˜η•ͺ号に設εšγ•γ‚ŒγŸζ¬ε…₯バスに対する設εšγ‚’θ‘Œγ†γ“γ¨γŒγ§γγΎγ™γ€‚γ€‚\n\nすγͺわけ、搬ε…₯バスごとにをむテムγθ‘Œγε…ˆγ‚’倉更できるγγ§γ™γ€‚", + "quests.space_survival.input_bus_railgun.desc.2": "&2θ¨­εšζ–Ήζ³•:&r\n→搬ε…₯バスγGUIを開く\nβ†’γƒ—γƒ­γ‚°γƒ©γƒ ε›žθ·―γ‚’ιΈζŠžγ™γ‚‹(GTζ©Ÿζ’°γ¨εŒγ˜ζ“δ½œ)\n\nこγζ©Ÿθƒ½γ‚’δ½Ώγ†γ“γ¨γ§γ€δΎ‹γˆγ°ζ¬‘γγ‚ˆγ†γͺθ¨­εšγŒε―能です。:\n&71η•ͺ&rβ†’ζœˆι’ζ‹ η‚Ήθ‘Œγ\n&72η•ͺ&rβ†’η«ζ˜Ÿζ‹ η‚Ήθ‘Œγ\n&73η•ͺ&rβ†’ε‡ε™γ‚Ήγƒ†γƒΌγ‚·γƒ§γƒ³θ‘Œγ\n\nγ¨γ„γ†γ‚ˆγ†γ«γ€ε›žθ·―γθ¨­εšγ‚’γ—γ£γ‹γ‚Šθ‘Œγˆγ°γ€ζ˜Ÿι–“θΌΈι€γ‚’θ‡ͺη”±θ‡ͺεœ¨γ«θ‘Œγ†γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&9注意&r:&7#tfg:cannot_launch_in_railgun&rγγ‚Ώγ‚°γŒθ¨­εšγ•γ‚Œγ¦γ„γ‚‹γ‚’γ‚€γƒ†γƒ γ―γ€γƒ¬γƒΌγƒ«γ‚¬γƒ³γ§θΌΈι€γ™γ‚‹γ“γ¨γŒε‡Ίζ₯ません。", + "quests.space_survival.input_bus_railgun.task": "γ„γšγ‚Œγ‹γγƒ¬γƒΌγƒ«γ‚¬γƒ³ζ¬ε…₯バス", + "quests.space_survival.monitor_railgun.title": "ζ˜Ÿι–“θΌΈι€γƒ’γƒ‹γ‚Ώ", + "quests.space_survival.monitor_railgun.subtitle": "スーパーコンピγƒ₯γƒΌγ‚ΏγƒΌ", + "quests.space_survival.monitor_railgun.desc.1": "&6ζ˜Ÿι–“θΌΈι€γƒ’γƒ‹γ‚Ώ&rγ―γ€ζƒ‘ζ˜Ÿι–“γ§η‰©θ³‡θΌΈι€γ‚’θ‘Œγ†δΈŠγ§ζœ€ι‡θ¦γγƒžγ‚·γƒ³γ§γ™γ€‚\n\nι›»εŠ›ζΆˆθ²»γη„‘い1ブロックγζ©Ÿζ’°γ§γ€γƒ¬γƒΌγƒ«γ‚¬γƒ³γ¨ε—ε–ζ©ŸγŒγ‚γ‚Œγ°θ‡ͺε‹•ζ€œηŸ₯します。", + "quests.space_survival.monitor_railgun.desc.2": "δΈ€θ¦‹γ™γ‚‹γ¨ε€§γ—γŸγ“γ¨γŒη„‘γ„ζ©Ÿζ’°γ«θ¦‹γˆγΎγ™γŒγ€γγεŠ›γ―焑限倧。さっそく見ていきましょう。\n\nGUIγ‚’ι–‹γγ¨γ€γƒ¬γƒΌγƒ«γ‚¬γƒ³γ¨ε—δΏ‘ζ©ŸγδΈ€θ¦§γŒθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚\nθ‘¨η€Ίγ•γ‚Œγ¦γ„γ‚‹ζ©Ÿζ’°γ«γ―γ€εε‰γ‚’θ¨­εšγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n輸送ルールを設εšγ™γ‚‹γ«γ―:\nε³ηŸ’ε°γ‚’γ‚―γƒͺγƒƒγ‚―γ—γ€γƒ¬γƒΌγƒ«γ‚¬γƒ³γ‚’ιΈζŠžγ™γ‚‹γ€‚\nβ†’&a+&rγƒœγ‚Ώγƒ³γ‚’ζŠΌγ—γ¦γƒ«γƒΌγƒ«γ‚’θΏ½εŠ γ™γ‚‹\nβ†’δΈ€θ¦§γ‹γ‚‰θΌΈι€ε…ˆγε—ε–ζ©Ÿγ‚’ιΈζŠžγ™γ‚‹\n\nレールガンにエネルγ‚γƒΌγ¨εΌΎδΈΈγŒδΎ›η΅¦γ•γ‚Œγ¦γŠγ‚Šγ€ε—ε–ζ©Ÿγγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ«η©ΊγγŒγ‚γ‚Œγ°γ€θ‡ͺε‹•γ§γ‚’γ‚€γƒ†γƒ γŒη™Ίε°„γ•γ‚ŒγΎγ™γ€‚\n\n欑γγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€γ‚ˆγ‚Šι«˜εΊ¦γͺζ©Ÿθƒ½γ«γ€γ„γ¦γθ§£θͺ¬γ‚’θ‘Œγ„γΎγ™γ€‚", + "quests.space_survival.redstone_railgun.title": "γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³εˆΆεΎ‘", + "quests.space_survival.redstone_railgun.subtitle": "Minecraft桁γγƒ«γƒΌγƒ«εˆΆεΎ‘", + "quests.space_survival.redstone_railgun.desc": "&6γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³εˆΆεΎ‘&rγ―γ€ε˜η΄”γͺγŒγ‚‰γ¨γ¦γ‚‚δΎΏεˆ©γͺζ©Ÿθƒ½γ§γ™γ€‚\n\n&6送俑側&rルールγη”»ι’γ§γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³εˆΆεΎ‘γ‚’γ‚ͺンにすると、&9搬ε…₯バス&rγ«γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³δΏ‘ε·γŒι€γ‚‰γ‚Œγ¦γ„γ‚‹γ¨γγγΏη¨Όεƒγ™γ‚‹γ‚ˆγ†γ«θ¨­εšγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&3受俑側&rルールγη”»ι’では、&9搬出バス&rγŒγƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³δΏ‘ε·γ‚’ε—γ‘ε–γ£γ¦γ„γ‚‹γ¨γγγΏγ‚’γ‚€γƒ†γƒ γ‚’ε—γ‘ε–γ‚Œγ‚‹γ‚ˆγ†θ¨­εšγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nこγζ©Ÿθƒ½γ‚’使いこγͺすには、あγͺたγγƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³ε›žθ·―に閒するηŸ₯識γι‡γŒε•γ‚γ‚ŒγΎγ™γ€‚\nAE2γγƒ¬γƒ™γƒ«γ‚¨γƒŸγƒƒγ‚ΏγƒΌγ‚„、Createγ«γ‚ˆγ‚‹RSδΏ‘ε·εˆΆεΎ‘γ€γ‚γ‚‹γ„γ―γƒγƒ‹γƒ©γε›žθ·―に至るまであらゆるもγγ¨ι€£ζΊγ—γ€ηŠΆζ³γ«εΏœγ˜γŸγ‚’むテム輸送を可能とします。", + "quests.space_survival.redstone_railgun.task": "η†θ§£γ—γŸ", + "quests.space_survival.robot_arm_railgun.title": "ζ­£η’Ίγͺ輸送", + "quests.space_survival.robot_arm_railgun.subtitle": "εŸγ―……こγModpackはGregtechγŒγƒ‘γ‚€γƒ³γγƒ‘ックγͺγγ§γ™οΌ", + "quests.space_survival.robot_arm_railgun.desc": "&6をむテムルール&rγ―γ€γŠγŠγ‚ˆγ&9GTγγƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ &rγ«γŠγ‘γ‚‹θ¨­εšγ¨εŒγ˜γ‚‚γγ§γ™γ€‚\n&6送俑側&rルールγη”»ι’でγγΏθ¨­εšγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ“γ‚Œγ‚’γ‚ͺγƒ³γ«γ—γ¦γ„γ‚‹γ¨γ€γƒ¬γƒΌγƒ«γ‚¬γƒ³γ―εΏ…γšθ¨­εšγ—γŸε€‹ζ•°γšγ€γ‚’γ‚€γƒ†γƒ γ‚’ι€γ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\n&2θ¨­εšζ–Ήζ³•:&r\nβ†’&dEMI&rγη”»ι’γ‹γ‚‰γ‚’γ‚€γƒ†γƒ γ‚’ζž γ«γƒ‰γƒ©γƒƒγ‚°γ™γ‚‹\nβ†’&a左右クγƒͺック&rで個数を設εšγ™γ‚‹\nβ†’γƒ–γƒƒγ‚―γƒžγƒΌγ‚―ζ©Ÿθƒ½γ‚’δ½Ώγ†γ“γ¨γ§γ€θ¨­εšζ™‚γ«γ‚’γ‚€γƒ†γƒ γ‚’ζŽ’γ—γ‚„γ™γγͺγ‚ŠγΎγ™\n\nζ­£η’Ίγ•γŒθ¦ζ±‚γ•γ‚Œγ‚‹ε ΄ι’γ§γ€γ“γζ©Ÿθƒ½γ―γ¨γ¦γ‚‚ζœ‰η”¨γ§γ™γ€‚γŸγ¨γˆγ°γ€θ‡ͺε‹•γ‚―γƒ©γƒ•γƒˆγͺど。", + "quests.space_survival.robot_arm_railgun.task": "η†θ§£γ—γŸ", + "quests.space_survival.delay_railgun.title": "ζ™‚ι–“ε·θΌΈι€", + "quests.space_survival.delay_railgun.subtitle": "γ‘γ‚‡γ£γ¨εΎ…γ‘γŸγ„ζ™‚γγŸγ‚γ«", + "quests.space_survival.delay_railgun.desc": "&6遅廢ルール&rは、をむテム輸送γγ‚Ώγ‚€γƒŸγƒ³γ‚°γ‚’εˆΆεΎ‘γ—γŸγ„ζ™‚γ«δ½Ώγ†ζ©Ÿθƒ½γ§γ™γ€‚\n\n&2送俑側設εš:&r\n&9搬ε…₯バス&rγ«ζ–°γŸγͺγ‚’γ‚€γƒ†γƒ γŒε…₯らγͺくγͺってから、一εšζ™‚ι–“εΎŒγ«θΌΈι€γŒθ‘Œγ‚γ‚Œγ‚‹γ‚ˆγ†γ«γ§γγ‚‹γ€‚\nζ¬‘γ€…γ‚’γ‚€γƒ†γƒ γŒζ¬ε…₯γ•γ‚Œγ‚‹ε ΄εˆγ«γ€γ‚γΎγ‚Šγ«γ‚‚ι«˜γ„ι »εΊ¦γ§γ‚’γ‚€γƒ†γƒ γŒη™Ίε°„γ•γ‚Œγͺγ„γ‚ˆγ†γ«γ™γ‚‹γŸγ‚γθ¨­εšγ§γ™γ€‚\n\n&2受俑側設εš:&r\n搬ε…₯γƒγ‚Ήγ«η©ΊγγŒγ§γγ¦γ‹γ‚‰γ€δΈ€εšζ™‚ι–“εΎŒγ«γ‚’γ‚€γƒ†γƒ γŒι€γ‚‰γ‚Œγ¦γγ‚‹γ‚ˆγ†γ«θ¨­εšγ§γγ‚‹γ€‚\nε‹•δ½œγŒι…γ„γ‚·γ‚Ήγƒ†γƒ γ«ε―Ύγ™γ‚‹θΌΈι€γ‚’θ‘Œγ†ιš›γ«γ€γ‚’γ‚€γƒ†γƒ γŒζΊ’γ‚Œγͺγ„γ‚ˆγ†γ«γ™γ‚‹γŸγ‚γθ¨­εšγ§γ™γ€‚\n\nεΌΎδΈΈγζΆˆθ²»γ‚’ζŠ‘γˆγŸγ‚Šγ€η¨ΌεƒγŒι…γ„γ‚·γ‚Ήγƒ†γƒ γΈγγ‚’むテム搬ε…₯γ‚’ι…γ‚‰γ›γŸγ‚Šγ™γ‚‹ιš›γ«γ€γ¨γ¦γ‚‚ζœ‰η”¨γͺζ©Ÿθƒ½γ§γ™γ€‚", + "quests.space_survival.delay_railgun.task": "η†θ§£γ—γŸ", + "quests.space_survival.receiver_railgun.title": "ζ˜Ÿι–“η‰©θ³‡ε—ε–ζ©Ÿ", + "quests.space_survival.receiver_railgun.subtitle": "ε—δΏ‘ζ©Ÿ", + "quests.space_survival.receiver_railgun.desc.1": "&6ζ˜Ÿι–“η‰©θ³‡ε—ε–ζ©Ÿ&rγ§γ―γ€γƒ¬γƒΌγƒ«γ‚¬γƒ³γ‹γ‚‰ε°„ε‡Ίγ•γ‚ŒγŸγ‚’γ‚€γƒ†γƒ γ‚’ε—γ‘ε–γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ“γ‘γ‚‰γ―ε°εž‹γγƒžγƒ«γƒγƒ–ロックで、稼働にエネルγ‚ーを必要としません。", + "quests.space_survival.receiver_railgun.desc.2": "η‰©θ³‡ε—ε–ζ©Ÿγ«γ―&9搬出バス&rγ‚’θ‡ͺη”±γ«ε–γ‚Šδ»˜γ‘γ‚‹γ“γ¨γŒγ§γγ€γγεˆ†ε€§ι‡γγ‚’γ‚€γƒ†γƒ γ‚’εŒζ™‚γ«ε—γ‘ε–γ‚Šγƒ»ζ¬ε‡Ίγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nη΅„γΏη«‹γ¦γ‚‚η°‘ε˜γ§γ€ζœ¬δ½“γ¨εΏ…θ¦γͺ部品を設η½γ—γ€ζ¬ε‡Ίγƒγ‚Ήγ‚’ε–γ‚Šδ»˜γ‘γ‚‹γ γ‘γ§γ™γ€‚\n\nη¨Όεƒγ‚³γ‚Ήγƒˆ0γ§ε‹•γγΎγ™γŒγ€εΏ…γšθ¨­η½γ•γ‚Œγ¦γ„γ‚‹γƒγƒ£γƒ³γ‚―γ‚’γƒ­γƒΌγƒ‰γ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.space_survival.output_bus_railgun.title": "レールガン搬出バス", + "quests.space_survival.output_bus_railgun.subtitle": "受俑側でγγΏδ½Ώγ†γ‚‚γ", + "quests.space_survival.output_bus_railgun.desc.1": "&cεΏ…γšε…ˆγ«&6レールガン搬ε…₯バス&rγγ‚―γ‚¨γ‚Ήγƒˆγ‚’η’Ίθͺγ—γ¦γŠγ„γ¦γγ γ•γ„γ€‚δ»₯δΈ‹γ―ε½“θ©²γ‚―γ‚¨γ‚Ήγƒˆγζ–‡η« γ‚’θͺ­γ‚“γ§γ„γ‚‹ε‰ζγ§ζ›Έγ‹γ‚Œγ¦γ„γΎγ™γ€‚&r\n\n&6レールガン搬ε…₯バス&rγ¨εŒζ§˜γ«γ€&3搬出バス&rにも&9γƒ—γƒ­γ‚°γƒ©γƒ ε›žθ·―&rγη•ͺ号を設εšγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.space_survival.output_bus_railgun.desc.2": "こγζ©Ÿθƒ½γη”¨ι€”は主に2γ€γ‚γ‚ŠγΎγ™γ€‚&r\n\n&9θΌΈι€ε…ˆγθ¨­εš:\nどγζ¬ε‡Ίγƒγ‚Ήγ«γ‚’γ‚€γƒ†γƒ γŒι€γ‚‰γ‚Œγ‚‹γ‹θ¨­εšγ§γγ‚‹γ€‚\nθ¨­εšζ–Ήζ³•:\n搬出バスを開き、η•ͺ号を設εšγ™γ‚‹\nβ†’&6ζ˜Ÿι–“θΌΈι€γƒ’γƒ‹γ‚Ώ&rγι€δΏ‘側設εšγ§γ€ι€δΏ‘ε…ˆγ‚’θ¨­εšγ—γŸη•ͺ号に設εšγ™γ‚‹\n\n&9ηŠΆζ…‹γƒ«γƒΌγƒ«:&r\nζ‘δ»Άγ‚’ζΊ€γŸγ•γͺいときに、をむテムγθΌΈι€γ‚’&c停歒&rγ™γ‚‹γ‚ˆγ†θ¨­εšγ§γγ‚‹γ€‚\nこγθ¨­εšγ―γ€ζ˜Ÿι–“θΌΈι€γƒ’γƒ‹γ‚Ώγε—δΏ‘側設εšγ‹γ‚‰γγΏθ‘Œγ†γ“γ¨γŒγ§γγΎγ™γ€‚\nε›žθ·―γη•ͺ号ごとに、異γͺるルールを設εšγ§γγΎγ™γ€‚", + "quests.space_survival.output_bus_railgun.desc.3": "3぀上γγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€ε„η¨γƒ«γƒΌγƒ«γθ§£θͺ¬γ¨γ€γγ‚Œγ‚‰γη”¨ι€”γŒγΏγ‚‰γ‚Œγ‚‹γγ§γ€η’Ίθͺγ—γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.space_survival.output_bus_railgun.task": "γ„γšγ‚Œγ‹γγƒ¬γƒΌγƒ«γ‚¬γƒ³ζ¬ε‡Ίγƒγ‚Ή", + "quests.space_survival.soulbound.title": "ε‡ε™γ§ζ­»γ‚“γ§γ—γΎγ£γŸγ‚‰", + "quests.space_survival.soulbound.subtitle": "γ‚ΉγƒγƒΌγƒ³εœ°η‚Ήγ‚’ζ±‚γ‚γ¦δΈ‰εƒι‡Œ", + "quests.space_survival.soulbound.desc.1": "TerraFirmaGregでは、あらゆるディパンションをγƒͺγ‚ΉγƒγƒΌγƒ³εœ°η‚Ήγ«θ¨­εšγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ—γ‹γ—γ€ζœˆι’にγƒͺγ‚ΉγƒγƒΌγƒ³γ—γ¦γ—γΎγ£γŸε ΄εˆγ€θΏ‘γγ«δΊˆε‚™γε‡ε™ζœγŒη„‘γ‘γ‚Œγ°γ€ε€§ε€‰γͺことにγͺγ‚ŠγΎγ™γ€‚\n\nζœˆι’γ‚’γ‚ΉγƒγƒΌγƒ³εœ°η‚Ήγ«γ™γ‚‹ε ΄εˆγ―γ€εΏ…γšι…Έη΄ γγ‚る場所をγƒͺγ‚ΉγƒγƒΌγƒ³εœ°η‚Ήγ«θ¨­εšγ—ましょう。さもγͺγ‘γ‚Œγ°γ€εΎ©ζ΄»γ—γ¦γ‚‚ηͺ’息でγƒͺγ‚Ήγ‚­γƒ«γ•γ‚ŒηΆšγ‘γ‚‹γ“γ¨γ«γͺγ‚ŠγΎγ™γ€‚(δΈ€εΏœγ€ζ­»γ¬γΎγ§γ«ε€šε°‘ζ™‚ι–“γŒγ‚γ‚‹γŸγ‚γ€γƒ™γƒƒγƒ‰γ‚’η ΄ε£Šγ—γ¦εˆζœŸγ‚ΉγƒγƒΌγƒ³εœ°η‚Ήγ«ζˆ»γ‚‹γ“γ¨γ―ε―θƒ½γ§γ™)", + "quests.space_survival.soulbound.desc.2": "γΎγŸγ€&bソウルパール&rでε‡ε™ζœγ‚’εΌ·εŒ–γ™γ‚‹γ“γ¨γ§γ€ζ­»γ‚“γ§γ‚‚ε‡ε™ζœγŒζ‰‹ε…ƒγ«ζ‹γ‚‹γ‚ˆγ†γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nζœˆι’γ«γ„γ‚‹η‰ΉζŠγͺγ‚¨γƒ³γƒ€γƒΌγƒžγƒ³γ‚’ε€’γ™γ“γ¨γ§γ€γ‚½γ‚¦γƒ«γƒ‘γƒΌγƒ«γ‚’ε…₯手できます。\n\nTFGはε·₯ζ₯­γƒ‘ックγͺγγ«γ€ι­”θ‘“γΏγŸγ„γͺθ¦η΄ γŒγ‚γ‚ŠγΎγ™γ­γ€‚", + "quests.space_survival.mars_desert.title": "火星γη ‚ζΌ ", + "quests.space_survival.mars_desert.subtitle": "η ‚γδΈ–η•Œ", + "quests.space_survival.mars_desert.desc": "火星γε€§ιƒ¨εˆ†γ―η ‚ζΌ γ«θ¦†γ‚γ‚Œγ¦γŠγ‚Šγ€ε°θ™«γ¨&6ァンドワーム&rγ‚’ι™€γ‘γ°η”Ÿη‰©γ―γ»γ¨γ‚“γ©γ„γΎγ›γ‚“γ€‚γ©γ“γ‹ε‰ε…¨γͺε ΄ζ‰€γŒγ‚γ‚Œγ°γ‚γ‚Œγ°γ„γ„γγ§γ™γŒβ€¦β€¦", + "quests.space_survival.mars_desert.task": "η«ζ˜Ÿη ‚ζΌ γƒγ‚€γ‚ͺγƒΌγƒ γ«θ‘Œγ", + "quests.space_survival.sandworm.title": "ァンドワーム", "quests.space_survival.sandworm.subtitle": "SHAI-HULUD", - "quests.space_survival.sandworm.desc": "If you make too much noise in the desert, you might attract the attention of the mighty &6Sandworm&r! It's more of an environmental hazard than a boss to kill, so your best way of surviving it is to run away!\n\nIf you manage to hit its head enough times with &bexplosion damage&r, it will leave you alone... for a while.\n\nThankfully, the Sandworm can only damage entities, not buildings, and is only attracted to the &6footsteps of players&r, so wild animals, vehicles, or trains won't anger it.", - "quests.space_survival.spice.title": "Ostrum Deposits", - "quests.space_survival.spice.subtitle": "Spice Melange", - "quests.space_survival.spice.desc": "&dOstrum Deposits&r are immovable blocks that you can only find in the Martian Deep Desert, far away from any of the more lush areas. They spawn in small blobs, and can be broken to make space for your Ostrum Harvester if they're on a slope. Try using a &6Spyglass&r to find them from a distance!\n\nYou'll have to figure out some long-distance logistics to ship your Ostrum back to your base. (Try a train, Accumulators can transport power!)\n\nOstrum is a crucial resource for both &5EV&r progression as well as keeping your Fission Reactors fed.", - "quests.space_survival.spice.task": "The spice must flow", - "quests.space_survival.mars_islands.title": "The Martian Jungles", - "quests.space_survival.mars_islands.subtitle": "Is that a dinosaur?!", - "quests.space_survival.mars_islands.desc": "Dotted around the vast Martian deserts are small \"islands\" of life and vegetation, which are probably where you'll want to set up your base. Surviving here will be much easier than in the desert!", - "quests.space_survival.semiheavy_ammoniacal_water.title": "Semiheavy Ammoniacal Water", - "quests.space_survival.semiheavy_ammoniacal_water.subtitle": "Fancy a drink?", - "quests.space_survival.semiheavy_ammoniacal_water.desc": "The water on Mars is &bSemiheavy&r which means it contains one Deuterium atom, and is also full of &aAmmonia&r, a great antifreeze, which is how it can stay liquid despite the very low temperatures.\n\nIt's technically drinkable, but you'll likely want to distill it into normal Water first. You can also move source blocks of Semiheavy Ammoniacal Water around and get more of it via an Aqueous Accumulator, just like regular Water.\n\nYou can also centrifuge the Ammonium Chloride out from it and electrolyze it as a source of &3Nitrogen&r. Easy Nitrox from just one source!", - "quests.space_survival.heavy_ammoniacal_water.title": "Heavy Ammoniacal Water", - "quests.space_survival.heavy_ammoniacal_water.subtitle": "The Cooler Ammoniacal Water", - "quests.space_survival.heavy_ammoniacal_water.desc": "&2Heavy Ammoniacal Water&r is another kind of fluid that can only be found deep underground via a Fluid Drilling Rig. You can only find it in these lush areas of Mars, not the desert!\n\nYou can separate it into Heavy Water, which is important for Fission power.", - "quests.space_survival.mars_poles.title": "The Martian Poles", - "quests.space_survival.mars_poles.subtitle": "Cold enough for COβ‚‚ to freeze!", - "quests.space_survival.mars_poles.desc": "Is Mars not cold enough for you?\n\nHead up (or down) towards one of its poles at Z=+15000/-5000. If anything's able to live there, surely it must have amazing insulative properties...", - "quests.space_survival.glacian_ram.title": "Glacian Sheep", - "quests.space_survival.glacian_ram.subtitle": "Life at -110 C", - "quests.space_survival.glacian_ram.desc": "&dGlacian Rams&r and &dEwes&r can only be found on the Martian poles. You might want to bring a breeding couple back to your base.\n\nGot a long journey? Consider using an AE2 Spatial Storage Cell to carry them around in your pocket.", - "quests.space_survival.glacian_ram.task": "Find a Glacian Ram or Ewe", - "quests.space_survival.glacian_wool.title": "Glacian Wool", - "quests.space_survival.glacian_wool.subtitle": "What an incredible insulator!", - "quests.space_survival.glacian_wool.desc": "Unlike regular Sheep on Earth, killing a Glacian one will only give you normal Wool. You'll need to build up their familiarity and shear them if you want the special &dGlacian Wool&r.\n\nYou'll need 7 of it for a full Tungstensteel Space Suit, but you can also use it as a great component for your Fission Reactor to increase its maximum heat.\n\nYou can also turn it into regular Wool Yarn and Cloth if you want more of that for some reason.", - "quests.space_survival.t2_space_suit.title": "Tungstensteel Space Suit", - "quests.space_survival.t2_space_suit.subtitle": "Extremophilia!", - "quests.space_survival.t2_space_suit.desc": "With this next space suit, you'll be able to survive both the &bcoldest&r and the &chottest&r environments that space can throw at you! It's required to stop you from immediately combusting as soon as you set foot on &6Venus&r and &5Mercury&r.\n\nAs a bonus, it also comes with some extra armor and air capacity!", - "quests.space_survival.mars_tapping.title": "Crimsene and Warpane", - "quests.space_survival.mars_tapping.subtitle": "You LOVE tree tapping!", - "quests.space_survival.mars_tapping.desc": "Crimson and Warped Mushrooms can be tree tapped for &4Crimsene&r and &3Warpane&r respectively.\n\nYou'll need both to get started on producing &9Iodine&r, but they don't often grow in the same place, so you might need to travel a bit. Crimson Mushrooms grow more on the East side of Mars, while Warped grow more on the West.\n\nDon't forget that you can tap directly into open GregTech fluid pipes!\n\n&9Tip:&r Want to show off? You can also build a canoe out of Crimson Stems, and build a Rowboat or Sloop out of Warped ones!", - "quests.space_survival.iodine.title": "The Iodine Line", - "quests.space_survival.iodine.subtitle": "Mushroom chemistry!", - "quests.space_survival.iodine.desc": "Mix together the Crimsene and Warpane, along with some Krypton from Mars Air Distillation (it's looped) and the heat from your Fission Reactor, and you'll get Iodine!\n\nThis process is slow, but you shouldn't need a lot of it for now, and there will be better methods of obtaining Iodine on further planets.", - "quests.space_survival.mars_crops.title": "Martian Crops", - "quests.space_survival.mars_crops.subtitle": "They give HOW much nutrition?!", - "quests.space_survival.mars_crops.desc": "Mars is home to six new crops - three &afruit&r, two &2vegetable&r, and one &6grain&r. They're packed full of nutrients and can be used to prepare similar food to those on Earth, such as sandwiches, soups, and meal bags.\n\nA few of them are toxic if eaten raw, however, so be sure to cook it first!\n\nCheck the Field Guide for full details on how to grow each one. You can grow them in the dirt, in a Firmalife Greenhouse, or in an Electric Greenhouse.", - "quests.space_survival.mars_crops.task": "Any Martian Seed", - "quests.space_survival.bulbkin_pie.title": "Mars Cuisine", - "quests.space_survival.bulbkin_pie.subtitle": "Even more culinary atrocities at your disposal", - "quests.space_survival.bulbkin_pie.desc": "Wraptor Eggs can be extracted for a Sugar substitute, while Sniffer eggs are full of Cream.\n\n&eBulbkin Pie&r is probably the pinnacle of Mars' food, boasting high amounts of four different kinds of nutrition, at the expense of being a bit of a pain to craft.\n\n&9Tip:&r It's not really a food, but you can also mix together Bulbkin Chunks and Alphacene Mushroom Blocks to get Glowstone Dust.", - "quests.space_survival.soarer.title": "Soarer", - "quests.space_survival.soarer.subtitle": "Need a lift?", - "quests.space_survival.soarer.desc": "Airplanes don't work on Mars, and your space suit doesn't have a jetpack, so there's no other way to fly, right?\n\nIf you're able to find an elusive &4Soarer&r, you can tame them with raw fish and equip them with a Saddle to glide through the Martian skies with ease.\n\nThey can't fly forever though, indicated by the wing icons on the top left, and will need to land occasionally. Still, they're a great option for long-distance travel, and won't upset the sandworm either!\n\n&9Note&r: Soarers are unable to survive on particularly hot planets such as &6Venus&r.", - "quests.space_survival.soarer.task": "Find a Soarer", - "quests.space_survival.surfer.title": "Surfer", - "quests.space_survival.surfer.subtitle": "Need a swim?", - "quests.space_survival.surfer.desc": "&bSurfers&r can be found in the small bodies of water. You can tame them by sneaking up to them while they're lying on the shore, and feeding them raw fish. Once tamed, you can equip them with a saddle to swim quickly underwater too.\n\nThis doesn't sound particularly useful on Mars, but remember that you can transport entities around through AE2's Spatial Storage Disks, and there will be a certain oceanic icy moon in the future...\n\n&9Note&r: Surfers are unable to survive on particularly hot planets such as &6Venus&r.", - "quests.space_survival.surfer.task": "Find a Surfer", - "quests.space_survival.sniffer_or_wraptor.title": "Sniffers and Wraptors", - "quests.space_survival.sniffer_or_wraptor.subtitle": "Cow and Chicken", - "quests.space_survival.sniffer_or_wraptor.desc": "&2Sniffers&r and &dWraptors&r can be found all over Mars and can be domesticated for meat, eggs, and most importantly, their mineral-rich tufts and feathers.\n\nThey eat any Martian crops, and you can automatically breed and feed them with the Feeding Troughs just like on Earth.", - "quests.space_survival.sniffer_or_wraptor.task_1": "Find a Sniffer", - "quests.space_survival.sniffer_or_wraptor.task_2": "Find a Wraptor", - "quests.space_survival.mars_nest.title": "Large Thatch Nest", - "quests.space_survival.mars_nest.subtitle": "A big nest for big eggs", - "quests.space_survival.mars_nest.desc": "You remember how to gather thatch, right?\n\nWarped and Crimson Thatch can be gathered from various small plants, as well as any Warped and Crimson Lamella you happen to find.\n\nJust like birds on Earth, Sniffers and Wraptors require nests to lay their eggs. Only, y'know, much bigger.", - "quests.space_survival.mars_nest.task": "Either Nest", - "quests.space_survival.mineral_rich_wool.title": "Mineral-Rich Wool", - "quests.space_survival.mineral_rich_wool.subtitle": "Built up from years of dust storms", - "quests.space_survival.mineral_rich_wool.desc": "Once your Sniffers or Wraptors are familiar enough, you can shear them for mineral-rich tufts of fur or feathers.\n\nThese can be melted down in an EBF for an infinite and cheap source of Alkaline Earth Silicate, and are also a required component of &6Bio-AES Reinforced R-Polyurethane Foam.", - "quests.space_survival.aes_insulation.title": "Multi-Layer Insulated Shielding", - "quests.space_survival.aes_insulation.subtitle": "Not an ice cream sandwich", - "quests.space_survival.aes_insulation.desc": "This may not be used for much at the moment, but it will be a critical component of your &1IV&r rocket in the future.", - "quests.space_survival.mars_shields.title": "Advanced Shields", - "quests.space_survival.mars_shields.subtitle": "Isn't it about time you upgraded your old metal shield?", - "quests.space_survival.mars_shields.desc": "The &3Reinforced Shield&r deals damage back to attackers, like the Thorns enchant in normal Minecraft. Its crafting materials can be found from Crunchers and Eaters.\n\nThe &5Corrupted Shield&r randomly teleports attackers, which can be good for keeping them away from you... but it can also teleport them behind you. You can get the teeth from the Cave Endermen under the surface.\n\nThe &4Ricoshield&r absorbs an amount of damage before releasing a shockwave, hurting anything else nearby. You can find the Kinetic Core as a rare drop from the hostile golems in the Martian caves.", - "quests.space_survival.mras_shields.task": "Any Advanced Shield", - "quests.space_survival.mercury.title": "I'm on &5Mercury&r...?", - "quests.space_survival.mercury.subtitle": "Wait, what happened here?!", - "quests.space_survival.mercury.desc": "&5Mercury&r will be a secondary planet for the upcoming &1IV&r rework in TFG 0.12. Stay tuned!", - "quests.space_survival.mercury.task": "Land on Mercury", - "quests.space_survival.venus.title": "I'm on &6Venus&r!", - "quests.space_survival.venus.subtitle": "Cloudy with a chance of sulfuric acid rain", - "quests.space_survival.venus.desc": "&6Venus&r will be the primary planet for the upcoming &1IV&r rework in TFG 0.12. Stay tuned!", - "quests.space_survival.venus.task": "Land on Venus", + "quests.space_survival.sandworm.desc": "η ‚ζΌ γ§γ‚γΎγ‚Šε€§γγ„ιŸ³γ‚’η«‹γ¦γ‚‹γ¨γ€&6ァンドワーム&rγ¨γ„γ†εΌ·ζ•΅γŒηΎγ‚Œγ‚‹γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚γ“γ‚Œγ―γƒœγ‚Ήγ¨γ„γ†γ‚ˆγ‚Šγ‚‚η½ε³γ«θΏ‘いもγγ§γ‚γ‚‹γγ§γ€ι­ι‡γ—γ¦γ—γΎγ£γŸγ‚‰ι€ƒγ’γΎγ—γ‚‡γ†γ€‚\n\n頭に一εšε›žζ•°&bηˆ†η™Ίγƒ€γƒ‘γƒΌγ‚Έ&rγ‚’δΈŽγˆγ‚‹γ“γ¨γŒγ§γγ‚Œγ°γ€γ—γ°γ‚‰γγι–“ァンドワームは倧人しくγͺγ‚ŠγΎγ™γ€‚\n\nγͺγŠγ€γ‚΅γƒ³γƒ‰γƒ―γƒΌγƒ γ«γ―εœ°ε½’η ΄ε£Šθƒ½εŠ›γŒγͺく、&6プレむダーγθΆ³ιŸ³&rにγγΏεεΏœγ™γ‚‹γγ§γ€δ»–γι‡Žη”Ÿη”Ÿη‰©γ‚„γ€δΉ—γ‚Šη‰©γ€εˆ—θ»Šγͺγ©γ«ε―Ύγ—γ¦γ―εεΏœγ—γΎγ›γ‚“γ€‚", + "quests.space_survival.spice.title": "γ‚ͺγ‚Ήγƒˆγƒ©γƒ γŒζ··γ˜γ£γŸη ‚", + "quests.space_survival.spice.subtitle": "とても見぀けにくいをむテム", + "quests.space_survival.spice.desc": "η«ζ˜Ÿη ‚ζΌ γƒγ‚€γ‚ͺームには、&dγ‚ͺγ‚Ήγƒˆγƒ©γƒ γŒζ··γ˜γ£γŸη ‚&rγ¨γ„γ†ε›žεŽδΈε―γƒ–γƒ­γƒƒγ‚―γŒε­˜εœ¨γ—γΎγ™γ€‚γ“γ‚Œγ‚‰γ―ε°γ•γͺε‘Šγ¨γ—γ¦η ‚ζΌ γ«η”Ÿζˆγ•γ‚ŒγΎγ™γ€‚η ΄ε£Šγ™γ‚‹γ“γ¨γ―ε―θƒ½γͺγγ§γ€ε‚γͺγ©γ«η”Ÿζˆγ•γ‚Œγ¦γ„γ¦γ‚‚γ€γ‚ͺγ‚Ήγƒˆγƒ©γƒ γƒγƒΌγƒ™γ‚Ήγ‚ΏγƒΌγ‚’θ¨­η½γ™γ‚‹γŸγ‚γε ΄ζ‰€γ―η’ΊδΏγ§γγΎγ™γ€‚ζœ›ι ι‘γŒγ‚γ‚Œγ°γ€ζŽ’γ—γ‚„γ™γγͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€γ‚ͺγ‚Ήγƒˆγƒ©γƒ γ‚’εˆ©η”¨γ™γ‚‹γ«γ―γ€ζ‰‹γ«ε…₯γ‚ŒγŸγ‚ͺγ‚Ήγƒˆγƒ©γƒ γ‚’ζ‹ η‚Ήγ«ζŒγ‘εΈ°γ‚‹γŸγ‚γζ‰‹ζ΅γ‚‚η’ΊδΏγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγ‚ͺγ‚Ήγƒˆγƒ©γƒ γ―&5EV&r時代に必要とγͺγ‚‹θ³‡ζΊγ§γ‚γ‚‹γ»γ‹γ€ζ Έεˆ†θ£‚η‚‰γη¨Όεƒγ«γ‚‚必要です。", + "quests.space_survival.spice.task": "γ‚ͺγ‚Ήγƒˆγƒ©γƒ γŒζ··γ˜γ£γŸη ‚γ‚’θ¦‹γ€γ‘γ‚‹", + "quests.space_survival.mars_islands.title": "火星γζ£", + "quests.space_survival.mars_islands.subtitle": "γγ‚‡γ€ζη«œοΌοΌŸ", + "quests.space_survival.mars_islands.desc": "η ‚ζΌ γ«θ¦†γ‚γ‚ŒγŸη«ζ˜Ÿγ«γ―γ€ζ™‚ζŠ˜ε°γ•γͺγ‚ͺγ‚’γ‚·γ‚ΉγŒε­˜εœ¨γ—γ¦γŠγ‚Šγ€γγ“γ«γ―η”Ÿη‰©γ‚„ζœ¨γ€…γŒθ¦‹γ‚‰γ‚ŒγΎγ™γ€‚ζ‹ η‚Ήγ‚’δ½œγ‚‹γγ§γ‚γ‚Œγ°γ€γ“γ“γ«δ½œγ‚‹γ¨γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚η ‚ζΌ γ‚ˆγ‚Šγ‚‚γšγ£γ¨η”Ÿζ΄»γ—γ‚„γ™γ„γ§γ™γ€‚", + "quests.space_survival.semiheavy_ammoniacal_water.title": "γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚ŠγεŠι‡ζ°΄", + "quests.space_survival.semiheavy_ammoniacal_water.subtitle": "γ“γ‚Œγ€ι£²γ‚“γ§γ„γ„γοΌŸ", + "quests.space_survival.semiheavy_ammoniacal_water.desc": "火星γζ°΄γ―&bεŠι‡ζ°΄&r、すγͺγ‚γ‘ι‡ζ°΄η΄ γ‚’ε«γΏγΎγ™γ€‚γΎγŸγ€&aをンヒニを&rγ‚’ε€šγε«γ‚“γ§γ„γ‚‹γŸγ‚γ€η«ζ˜Ÿγδ½ŽζΈ©γ§γ‚‚梲体γγΎγΎε­˜εœ¨γ—ています。\n\nδΈ€εΏœι£²γ‚€γ“γ¨γ‚‚γ§γγΎγ™γŒγ€ε‡Ίζ₯γ‚Œγ°θ’Έη•™γ—γ¦ζ™ι€šγζ°΄γ«γ—γŸζ–ΉγŒγ‚ˆγ„γ§γ—γ‚‡γ†γ€‚γΎγŸγ€ζ°΄ζΊγƒ–γƒ­γƒƒγ‚―γ―γƒγ‚±γƒ„γ§η§»ε‹•γ§γγ€ι€šεΈΈγζ°΄γ¨εŒζ§˜γ«η„‘ι™εŒ–γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\nさらに、こγζ°΄γ‚’ι εΏƒεˆ†ι›’γ™γ‚‹γ“γ¨γ§ε‘©εŒ–γ‚’γƒ³γƒ’γƒ‹γ‚¦γƒ γŒεΎ—γ‚‰γ‚Œγ€γγ‚Œγ‚’γ•γ‚‰γ«ι›»θ§£ζ§½γ«ε…₯γ‚Œγ‚Œγ°ηͺ’η΄ γŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚γ™γͺわけ、こγζ°΄γ•γˆγ‚γ‚Œγ°γƒ‹γƒˆγƒ­γƒƒγ‚―γ‚ΉγŒδ½œζˆγ§γγ‚‹γγ§γ™γ€‚", + "quests.space_survival.heavy_ammoniacal_water.title": "γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚Šγι‡ζ°΄", + "quests.space_survival.heavy_ammoniacal_water.subtitle": "をンヒニを水γγ™γ”いや぀", + "quests.space_survival.heavy_ammoniacal_water.desc": "η«ζ˜Ÿγ§ζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿγ‚’δ½Ώγ†γ¨γ€&2γ‚’γƒ³γƒ’γƒ‹γ‚’δΊ€γ˜γ‚Šγι‡ζ°΄&rγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚γ“γζ°΄γ―η ‚ζΌ γ§γ―ζŽ‘ζŽ˜γ§γγšγ€ζ£ζž—εœ°εΈ―でγγΏε…₯手できます。\n\nこγζ°΄γ‹γ‚‰γ―ι‡ζ°΄γŒε…₯ζ‰‹γ§γγ€ι‡ζ°΄γ―ζ Έεˆ†θ£‚η‚‰γη¨Όεƒγ«δ½Ώη”¨γ§γγΎγ™γ€‚", + "quests.space_survival.mars_poles.title": "火星γζ₯΅η‚Ήγ«γ¦", + "quests.space_survival.mars_poles.subtitle": "δΊŒι…ΈεŒ–η‚­η΄ γ‚‚ε‡γ‚‹ζœ€ζžœγ¦", + "quests.space_survival.mars_poles.desc": "εŸγ―γ€η«ζ˜Ÿγ«γ―γ‚‚γ£γ¨ε―’γ„ε ΄ζ‰€γŒγ‚γ‚ŠγΎγ™γ€‚\n\nZεΊ§ζ¨™γŒ15000δ»₯δΈŠγ€γΎγŸγ―-5000δ»₯δΈ‹γε ΄ζ‰€γ«θ‘Œγ£γ¦γΏγΎγ—ょう。こんγͺε ΄ζ‰€γ«η”Ÿη‰©γŒγ„γŸγ¨γ—γŸγ‚‰γ€θˆˆε‘³ζ·±γ„η‰ΉεΎ΄γ‚’ζŒγ£γ¦γ„γ‚‹γ‹γ‚‚β€¦β€¦", + "quests.space_survival.glacian_ram.title": "ζ₯΅η‚Ήγγƒ’ツジ", + "quests.space_survival.glacian_ram.subtitle": "ι›ΆδΈ‹110εΊ¦γ‚’η”Ÿγγ‚‹η”Ÿη‰©", + "quests.space_survival.glacian_ram.desc": "&dζ°·η•Œι›„γƒ’γƒ„γ‚Έ&r、&dι›Œγƒ’γƒ„γ‚Έ&rγ2η¨ι‘žγε‹•η‰©γ―γ€η«ζ˜Ÿγζ₯΅εœ°ζ–Ήγ«γ—γ‹η”Ÿζ―しません。拠点に1ε―ΎζŒγ‘εΈ°γ‚ŠγŸγγ―γ‚γ‚ŠγΎγ›γ‚“γ‹οΌŸ\n\nγ¨γ―γ„γˆγ€θΆ…ι•·θ·ι›’η§»ε‹•γ«γͺγ‚‹γŸγ‚γ€ζŒγ‘εΈ°γ‚‹γγ‚‚δΈ€θ‹¦εŠ΄γ€‚γγ‚“γͺ時には、AE2γη©Ίι–“セルを使いましょう。", + "quests.space_survival.glacian_ram.task": "ζ°·η•Œγƒ’γƒ„γ‚Έγ‚’θ¦‹γ€γ‘γ‚‹", + "quests.space_survival.glacian_wool.title": "ζ°·ε‘ŠηΎŠζ―›", + "quests.space_survival.glacian_wool.subtitle": "すごい断熱材", + "quests.space_survival.glacian_wool.desc": "εœ°ηƒγγƒ’ツジと異γͺγ‚Šγ€ζ°·η•Œγƒ’γƒ„γ‚Έγ‚’ε€’γ—γ¦γ‚‚ζ™ι€šγηΎŠζ―›γ—γ‹εΎ—γ‚‰γ‚ŒγΎγ›γ‚“γ€‚ε‹ε₯½εΊ¦γ‚’δΈŠγ’γ€ζ―›εˆˆγ‚Šγ‚’γ™γ‚‹γ“γ¨γ§γγΏγ€&dζ°·ε‘ŠηΎŠζ―›&rγ‚’ε…₯ζ‰‹γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nタングステンスチールγε‡ε™ζœγ‚’δΈ€εΌδ½œγ‚‹γ«γ―γ€εˆθ¨ˆ7個γζ°·ε‘ŠηΎŠζ―›γŒεΏ…θ¦γ§γ™γ€‚γΎγŸγ€ζ Έεˆ†θ£‚η‚‰γιƒ¨ε“γ¨γ—γ¦δ½Ώγ†γ“γ¨γ§γ€ζœ€ι«˜ζΈ©εΊ¦γ‚’ε€§εΉ…γ«εΌ•γδΈŠγ’γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nδΈ€εΏœγ€η΄‘ιŒ˜γ‚’δ½Ώγˆγ°ζ™ι€šγη³Έγ‚‚ε–γ‚ŒγΎγ™γŒγ€γγ‚“γͺ使い方をする人は恐らくいγͺいでしょう。", + "quests.space_survival.t2_space_suit.title": "タングステンスチールγε‡ε™ζœ", + "quests.space_survival.t2_space_suit.subtitle": "ζœ€εΌ·γε‡ε™ζœ", + "quests.space_survival.t2_space_suit.desc": "こγε‡ε™ζœγŒγ‚γ‚Œγ°γ€&bζ₯΅δ½ŽζΈ©&r、&cζ₯΅ι«˜ζΈ©&rγγ„γšγ‚Œγ«γ‚‚ε―ΎεΏœγ§γγΎγ™γ€‚γ•γ‚‚γͺくば、&6ι‡‘ζ˜Ÿ&rγ‚„&5水星&rでは、袳を踏みε…₯γ‚ŒγŸι€”η«―γ«ζ­»γ‚“γ§γ—γΎγ†γ§γ—γ‚‡γ†γ€‚\n\nけγͺγΏγ«γ€ι˜²εΎ‘εŠ›γ¨ι…Έη΄ γεΉι‡γ‚‚δΈŠζ˜‡γ—γ¦γ„γΎγ™γ€‚", + "quests.space_survival.mars_tapping.title": "血い樹梲とζ­ͺんだ樹梲", + "quests.space_survival.mars_tapping.subtitle": "ζ¨ΉζΆ²ι›†γ‚γ―γŠε₯½γοΌŸ", + "quests.space_survival.mars_tapping.desc": "ηœŸη΄…γγ‚­γƒŽγ‚³γ€ζ­ͺγ‚“γ γ‚­γƒŽγ‚³γ‹γ‚‰γ―γ€γγ‚Œγžγ‚Œε°‚η”¨γζ¨ΉζΆ²γŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚\n\n&9ヨウ素&rγ‚’δ½œγ‚‹γ«γ―γ€δΈ‘ζ–Ήγζ¨ΉζΆ²γŒεΏ…θ¦γ§γ™γ€‚γŸγ γ—γ€δΈ‘θ€…γ―ε€šγγε ΄εˆεˆ₯γ€…γε ΄ζ‰€γ«η”Ÿγˆγ¦γ„γ‚‹γŸγ‚γ€γ‚γ‚‹η¨‹εΊ¦ζŽ’紒も必要にγͺγ‚‹γ§γ—γ‚‡γ†γ€‚ηœŸη΄…γγ‚­γƒŽγ‚³γ―主に東側で、ζ­ͺγ‚“γ γ‚­γƒŽγ‚³γ―θ₯Ώε΄γ§γΏγ‚‰γ‚ŒγΎγ™γ€‚γγ‚Œγ‚‰γ«ε―ΎεΏœγ—γŸγ‚¨γƒ³γƒ€γƒΌγƒžγƒ³γ‚’ε€’γ™γ“γ¨γ§γ‚‚ε…₯ζ‰‹γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nけγͺみに、樹梲はGregtechγγƒ‘γ‚€γƒ—γ§γ‚‚ι›†γ‚γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&9γŠγΎγ‘:&rηœŸη΄…γγ‚­γƒŽγ‚³γ‹γ‚‰γ―γ‚«γƒŒγƒΌγ‚’γ€ζ­ͺγ‚“γ γ‚­γƒŽγ‚³γ‹γ‚‰γ―γƒœγƒΌγƒˆγ‚„γ‚Ήγƒ«γƒΌγƒ—γ‚’δ½œζˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.space_survival.iodine.title": "ヨウ素", + "quests.space_survival.iodine.subtitle": "γ‚­γƒŽγ‚³εŒ–ε­¦γγ―γ˜γΎγ‚Š", + "quests.space_survival.iodine.desc": "ζ­ͺγ‚“γ γ‚­γƒŽγ‚³γ€ηœŸη΄…γγ‚­γƒŽγ‚³γζ¨ΉζΆ²γ‚’ζ··γœγŸγ‚‚γγ«γ€η«ζ˜Ÿγε€§ζ°—γ‚’θ’Έη•™γ—γ¦εΎ—γ‚‰γ‚Œγ‚‹γ‚―γƒͺγƒ—γƒˆγƒ³γ‚’εŠ γˆγ€γγ‚Œγ‚’ζ Έεˆ†θ£‚η‚‰γη†±γ§η†±γ™γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€γƒ¨γ‚¦η΄ γ‚’ζ‰‹γ«ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nこγεŠ ε·₯γ«γ―ζ™‚ι–“γŒγ‹γ‹γ‚ŠγΎγ™γŒγ€δ½Ώη”¨ι‡γ―ε€šγγͺいγγ§εΏƒι…γ”η„‘用。Ad Astraγ‚’γ•γ‚‰γ«ι€²γ‚γ‚Œγ°γ€γ‚‚γ£γ¨η°‘ε˜γ«γƒ¨γ‚¦η΄ γ‚’δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.space_survival.mars_crops.title": "火星γζ€η‰©", + "quests.space_survival.mars_crops.subtitle": "こんγͺγ‚‚γγ§ζ „ι€Šγ‚’οΌοΌŸ", + "quests.space_survival.mars_crops.desc": "火星では6η¨γζ–°γŸγͺδ½œη‰©γŒζ‰‹γ«ε…₯γ‚ŠγΎγ™γ€‚γ†γ‘3η¨γ―ζžœη‰©γ€2η¨γ―ι‡Žθœγ€1η¨γ―η©€η‰©γ§γ™γ€‚εœ°ηƒδΈŠγδ½œη‰©γ¨εŒζ§˜γζ „ι€Šη΄ γŒε«γΎγ‚Œγ¦γŠγ‚Šγ€εŒζ§˜γζ–™η†γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n一部γδ½œη‰©γ―η”Ÿγ§ι£ŸγΉγ‚‹γ¨ζ―’γŒγ‚γ‚‹γŸγ‚γ€εΏ…γšθͺΏη†γ—γ¦γ‹γ‚‰ι£ŸγΉγΎγ—γ‚‡γ†γ€‚\n\n詳しい育て方に぀いては、ガむドを参照してください。Firmalifeγ‚„GregtechγζΈ©ε€γ§γ‚‚ζ ½εŸΉγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.space_survival.mars_crops.task": "γ„γšγ‚Œγ‹γη¨", + "quests.space_survival.bulbkin_pie.title": "火星γι£ŸγΉη‰©", + "quests.space_survival.bulbkin_pie.subtitle": "ハンティングγζ™‚ι–“", + "quests.space_survival.bulbkin_pie.desc": "ラプターγε΅γ‹γ‚‰γ―、砂糖γδΈ€η¨γŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚γ‚Ήγƒ‹γƒƒγƒ•γ‚‘γƒΌγε΅γ‹γ‚‰γ―γ‚―γƒͺγƒΌγƒ γŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚\n\n&eγƒ’γ‚«γƒͺγ‚«γƒœγƒγƒ£γγƒ‘γ‚€&rγ―γ€η«ζ˜Ÿη³»ι£Ÿζ–™γδΈ­γ§γ―ζœ€θ‰―γγ‚‚γγ§γ™γ€‚4η¨γζ „ι€Šη΄ γ‚’ε€šγε«γΏγΎγ™γŒγ€γγεˆ†γ‚―γƒ©γƒ•γƒˆγ‚‚ε€§ε€‰γ§γ™γ€‚\n\n&9γŠγΎγ‘:&rγƒ’γ‚«γƒͺγ‚«γƒœγƒγƒ£γγΆγ€εˆ‡γ‚Šγ¨γ‚’γƒ«γƒ•γ‚‘γ‚­γƒŽγ‚³γγƒ–γƒ­γƒƒγ‚―γ‚’ζ··γœγ‚‹γ“γ¨γ§γ€γ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³γƒ€γ‚ΉγƒˆγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚γ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³γ―ι£ŸγΉγ‚‰γ‚ŒγΎγ›γ‚“γ€‚", + "quests.space_survival.soarer.title": "ソをラー", + "quests.space_survival.soarer.subtitle": "ι«˜γ„ζ‰€γ«θ‘ŒγγŸγ„δΊΊγΈ", + "quests.space_survival.soarer.desc": "ι£›θ‘Œζ©Ÿγ―η«ζ˜Ÿγ§γ―ι£›γ³γΎγ›γ‚“γ€‚ε‡ε™ζœγ«γ―γ‚Έγ‚§γƒƒγƒˆγƒ‘γƒƒγ‚―γ―ζ­θΌ‰γ§γγΎγ›γ‚“γ€‚γ§γ―γ€η©Ίγ‚’ι£›γΆγ«γ―γ©γ†γ™γ‚Œγ°θ‰―γ„γγ§γ—ょうか。\n\n火星には&4ソをラー&rγ¨γ„γ†η”Ÿγη‰©γŒη”Ÿζ―γ—γ¦γ„γΎγ™γ€‚γ“γ‚Œγ‚‰γ―η”Ÿι­šγ‚’δΈŽγˆγ‚‹γ“γ¨γ§ι£Όγ„γͺγ‚‰γ™γ“γ¨γŒγ§γγ€γ‚΅γƒ‰γƒ«γ‚’θ£…ε‚™γ•γ›γ‚‹γ“γ¨γ§γ€η©Ίγ‚’ι£›γΆδΉ—γ‚Šη‰©γ¨γ—γ¦δ½Ώγ†γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγŸγ γ—γ€γ‚½γ‚’γƒ©γƒΌγ―ι•·ζ™‚ι–“ι£›θ‘Œγ™γ‚‹γ“γ¨γŒε‡Ίζ₯γΎγ›γ‚“γ€‚η”»ι’ε·¦δΈŠγηΏΌεž‹γγ‚²γƒΌγ‚ΈγŒγ€ι£›θ‘Œγ§γγ‚‹ζ‹γ‚Šζ™‚ι–“γ‚’θ‘¨γ—γ¦γ„γΎγ™γ€‚γ‚½γ‚’γƒ©γƒΌγ―ι•·θ·ι›’η§»ε‹•γ«ι©γ—γ¦γŠγ‚Šγ€γΎγŸγ‚½γ‚’γƒ©γƒΌγ«δΉ—γ£γ¦γ„γ‚Œγ°γ‚΅γƒ³γƒ‰γƒ―γƒΌγƒ γ«γ‚‚θ₯²γ‚γ‚ŒγΎγ›γ‚“。\n\n&9注意&r:ソをラーは&6ι‡‘ζ˜Ÿ&rγγ‚ˆγ†γͺζ₯΅η«―γͺι«˜ζΈ©γ«γ―θ€γˆγ‚‰γ‚ŒγΎγ›γ‚“γ€‚", + "quests.space_survival.soarer.task": "ソをラーを見぀ける", + "quests.space_survival.surfer.title": "ァーフゑー", + "quests.space_survival.surfer.subtitle": "ζ³³γŽγŸγ„δΊΊγΈ", + "quests.space_survival.surfer.desc": "&bァーフゑー&rγ―ζ°΄ε ΄γ§θ¦‹γ‚‰γ‚Œγ‚‹η”Ÿη‰©γ§γ™γ€‚ι™Έγ§δΌ‘γ‚“γ§γ„γ‚‹γ¨γ“γ‚γ«εΏγ³ε―„γ‚Šγ€η”Ÿι­šγ‚’δΈŽγˆγ‚‹γ“γ¨γ§γ€ι£Όγ„γͺγ‚‰γ™γ“γ¨γŒγ§γγΎγ™γ€‚γ‚΅γƒ‰γƒ«γ‚’θ£…ε‚™γ•γ›γ‚Œγ°γ€ζ°΄δΈ­γ‚’ι«˜ι€Ÿγ§η§»ε‹•γ™γ‚‹δΉ—γ‚Šη‰©γ«γͺγ‚ŠγΎγ™γ€‚\n\nη«ζ˜Ÿγ§γ“γη‰Ήζ€§γŒζ΄»γ‹γ›γ‚‹ε ΄γ―ζ†γ©γ‚γ‚ŠγΎγ›γ‚“γŒγ€AEγη©Ίι–“セルを使うことで、こγη”Ÿη‰©γ‚’εˆ₯γƒ‡γ‚£γƒ‘γƒ³γ‚·γƒ§γƒ³γ«η§»ε‹•γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ„γšγ‚Œγ€γ“γη‰Ήζ€§γŒε½Ήη«‹γ€ζ˜Ÿγ«ε‘かうことにγͺるでしょう……\n\n&9注意&r:ァーフゑーは&6ι‡‘ζ˜Ÿ&rγγ‚ˆγ†γͺζ₯΅η«―γͺι«˜ζΈ©γ«γ―θ€γˆγ‚‰γ‚ŒγΎγ›γ‚“γ€‚", + "quests.space_survival.surfer.task": "ァーフゑーを見぀ける", + "quests.space_survival.sniffer_or_wraptor.title": "スニッフゑーとラプター", + "quests.space_survival.sniffer_or_wraptor.subtitle": "γ‚¦γ‚·γ¨γƒ‹γƒ―γƒˆγƒͺ", + "quests.space_survival.sniffer_or_wraptor.desc": "&2スニッフゑー&rと&dラプター&rは火星γε„εœ°γ«η”Ÿζ―γ—γ¦γŠγ‚Šγ€εΆη•œεŒ–γ™γ‚‹γ“γ¨γ§θ‚‰γ‚„ε΅γŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚γ•γ‚‰γ«γ€γγζ―›ηšγ‚„羽根は重要γͺ資源とγͺγ‚ŠγΎγ™γ€‚\n\nη«ζ˜Ÿζ€η‰©γͺらγͺγ‚“γ§γ‚‚γ‚¨γ‚΅γ«γ™γ‚‹γ“γ¨γŒγ§γγ€εœ°ηƒγη”Ÿη‰©γ¨εŒζ§˜γ«ζ©Ÿζ’°γ§ι€Œγ‚„γ‚Šγ‚’θ‡ͺε‹•εŒ–γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.space_survival.sniffer_or_wraptor.task_1": "スニッフゑーを見぀ける", + "quests.space_survival.sniffer_or_wraptor.task_2": "ラプターを見぀ける", + "quests.space_survival.mars_nest.title": "倧きγͺ藁γε·£η±", + "quests.space_survival.mars_nest.subtitle": "ε·¨ε€§γͺ卡には巨倧γͺε·£γ‚’", + "quests.space_survival.mars_nest.desc": "藁γι›†γ‚ζ–Ήγ―γ€ζ΅ηŸ³γ«θ¦šγˆγ¦γ„γΎγ™γ‚ˆγ­οΌŸ\n\n地葨γθ‰γ‚’εˆˆγ‚‹γ“γ¨γ§γ€ζ­ͺγ‚“γ θ—γƒ»ηœŸη΄…γθ—γŒζ‰‹γ«ε…₯γ‚ŠγΎγ™γ€‚\n\nεœ°ηƒδΈŠγι³₯γ¨εŒγ˜γ‚ˆγ†γ«γ€γ‚Ήγƒ‹γƒƒγƒ•γ‚‘γƒΌγ‚„γƒ©γƒ—γ‚ΏγƒΌγŒε΅γ‚’η”£γ‚€γ«γ―ε·£η±γŒεΏ…θ¦γ§γ™γ€‚γγ‚Œγ‚‚γ€γ¨γ³γγ‚Šε€§γγͺε·£η±γŒγ€‚", + "quests.space_survival.mars_nest.task": "γ„γšγ‚Œγ‹γε·£η±", + "quests.space_survival.mineral_rich_wool.title": "θ³‡ζΊθ±Šε―Œγͺζ―›ηš", + "quests.space_survival.mineral_rich_wool.subtitle": "永遠γη ‚塐γδΈ­γ§", + "quests.space_survival.mineral_rich_wool.desc": "スニッフゑー、ラプターγδΈ‘動物は、飼いγͺγ‚‰γ™γ“γ¨γ§ζ―›εˆˆγ‚ŠγŒε―θƒ½γ«γͺγ‚ŠγΎγ™γ€‚γ„γšγ‚Œγε‹•物からも、特ζŠγͺζ―›ηšγ‚’ε…₯ζ‰‹γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nι›»ζ°—ι«˜η‚‰γ§γ“γζ―›ηšγ‚’θ£½ιŒ¬γ™γ‚‹γ¨γ€γ‚’ルカγƒͺγ‚’γƒΌγ‚Ήγ‚·γƒͺγ‚±γƒΌγƒˆγŒε…₯ζ‰‹γ§γγΎγ™γ€‚γΎγŸγ€&6バむγ‚ͺAESεΌ·εŒ–Rポγƒͺウレタンフォーム&rγδ½œζˆγ«γ‚‚必要です。", + "quests.space_survival.aes_insulation.title": "ε€šε±€ζ–­η†±δΏθ­·ε‰€", + "quests.space_survival.aes_insulation.subtitle": "γ‚’γ‚€γ‚Ήγ‚―γƒͺγƒΌγƒ γ‚΅γƒ³γƒ‰γ‚€γƒƒγƒγ˜γ‚ƒγͺγ„γ‚ˆ", + "quests.space_survival.aes_insulation.desc": "現時点でγη”¨ι€”は少γͺγ„γ§γ™γŒγ€&1IV&rγƒ­γ‚±γƒƒγƒˆγζζ–™γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.space_survival.mars_shields.title": "εΌ·εŠ›γͺη›Ύ", + "quests.space_survival.mars_shields.subtitle": "ι‡‘ε±žη›Ύγζ™‚δ»£γ―η΅‚γ‚γ‚Š", + "quests.space_survival.mars_shields.desc": "&3εΌ·εŒ–γ‚·γƒΌγƒ«γƒ‰&rは、攻撃γγƒ€γƒ‘γƒΌγ‚Έγ‚’εε°„γ™γ‚‹εŠΉζžœγ‚’ζŒγ‘γΎγ™γ€‚γƒγƒ‹γƒ©γζ£˜γιŽ§γ‚¨γƒ³γƒγƒ£γƒ³γƒˆγ¨γŠγŠγ‚ˆγεŒγ˜εŠΉζžœγ§γ™γ€‚γ‚―ラッシャー、むーターγη΄ ζγ‹γ‚‰δ½œγ‚‰γ‚ŒγΎγ™γ€‚\n\n&5η©’γ‚ŒγŸη›Ύ&rγ―γ€ζ”»ζ’ƒθ€…γ‚’γƒ©γƒ³γƒ€γƒ γ«γƒ†γƒ¬γƒγƒΌγƒˆγ•γ›γ‚‹εŠΉζžœγ‚’ζŒγ‘γΎγ™γ€‚ζ•΅γ‹γ‚‰θ·ι›’γ‚’ε–γ‚Œγ‚‹η‚Ήγ§ζœ‰η”¨γ§γ™γŒγ€η§»ε‹•ε…ˆγŒγƒ©γƒ³γƒ€γƒ γͺγγ§γ€γŸγΎγ«ηœŸεΎŒγ‚γ«γƒ†γƒ¬γƒγƒΌγƒˆγ™γ‚‹ε ΄εˆγŒγ‚γ‚ŠγΎγ™γ€‚εœ°δΈ‹γ«γ„γ‚‹γ‚±γ‚€γƒ–γ‚¨γƒ³γƒ€γƒΌγƒžγƒ³γ‹γ‚‰γ€γ‚¨γƒ³γƒ€γƒΌγƒžγƒ³γζ­―はε…₯手できます。\n\n&4γƒͺコシールド&rは、攻撃γγƒ€γƒ‘γƒΌγ‚Έγ‚’εΈεŽγ—γ€γƒ€γƒ‘γƒΌγ‚ΈεŠΉζžœγγ‚る葝撃泒として周囲に放出する盾です。材料γε‹•εŠ›γ‚³γ‚’γ―γ€η«ζ˜Ÿγεœ°δΈ­γ«γ„γ‚‹γ‚΄γƒΌγƒ¬γƒ γ‹γ‚‰γ€δ½Žη’ΊηŽ‡γ§ε…₯手できます。", + "quests.space_survival.mras_shields.task": "γ„γšγ‚Œγ‹γη›Ύ", + "quests.space_survival.mercury.title": "γ“γ“γŒγ€&5水星&rβ€¦β€¦οΌŸ", + "quests.space_survival.mercury.subtitle": "ζœͺεŒζˆγε€§εœ°", + "quests.space_survival.mercury.desc": "&5水星&rγθ¦η΄ γ«γ€γ„ては、ver0.12γ&1IV&rγƒͺγƒ―γƒΌγ‚―γ‚’γŠεΎ…γ‘γγ γ•γ„γ€‚", + "quests.space_survival.mercury.task": "ζ°΄ζ˜Ÿγ«εˆ°ι”γ™γ‚‹", + "quests.space_survival.venus.title": "γ“γ“γŒγ€&6ι‡‘ζ˜Ÿ&rβ€¦β€¦οΌŸ", + "quests.space_survival.venus.subtitle": "ι…Έι™γ‚Šζ³¨γζΏƒι›²γδΈ–η•Œ", + "quests.space_survival.venus.desc": "&5ι‡‘ζ˜Ÿ&rγθ¦η΄ γ«γ€γ„ては、ver0.12γ&1IV&rγƒͺγƒ―γƒΌγ‚―γ‚’γŠεΎ…γ‘γγ γ•γ„γ€‚", + "quests.space_survival.venus.task": "ι‡‘ζ˜Ÿγ«εˆ°ι”γ™γ‚‹", "quests.steam_age": "初期γθ‡ͺε‹•εŒ–", - "quests.steam_age.subtitle": "θ’Έζ°—ζ©Ÿι–’γ§η”£ζ₯­ι©ε‘½", + "quests.steam_age.subtitle": "θ’Έζ°—ζ©Ÿι–’γ€ε§‹ε‹•", "quests.steam_age.basic_greate.title": "GreateγεŸΊζœ¬", "quests.steam_age.basic_greate.subtitle": "もうζ™ι€šγCreateγ˜γ‚ƒζΊ€θΆ³γ§γγͺγ„γ£γ¦οΌŸ γ γ£γŸγ‚‰γ“γ‚Œγ―γ©γ†γ ", - "quests.steam_age.basic_greate.desc": "Greateは&3Create&rと&3GregTech&rγγ‚·γ‚Ήγƒ†γƒ γ‚’ζ‚ͺι­”εˆδ½“γ•γ›γŸγ‚‚γγ§γ€Createγζ©Ÿζ’°γŒγγ‚Œγžγ‚Œη•°γͺγ‚‹ζ΅ιšŽγγƒγƒΌγ‚Έγƒ§γƒ³γ«ε€‰ζ›΄γ•γ‚ŒγΎγ™γ€‚ γΎγŸγ€γ‚·γƒ£γƒ•γƒˆγ¨ζ­―θ»Šγ«εΏœεŠ›γεˆΆι™γŒε°Žε…₯γ•γ‚Œγ‚‹γŸγ‚γ€ζ©Ÿζ’°γεΏœεŠ›δΎ›η΅¦ζ–Ήζ³•γ«γ€γ„γ¦γ€γ‚ˆγ‚Šθ¨ˆη”»ηš„γ«θ€ƒγˆγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nι€šεΈΈγCreateγγ‚ˆγ†γ«γ€ζ°΄θ»Šγε‘Šγ‚’1぀γγ‚·γƒ£γƒ•γƒˆγ«ζŽ₯ηΆšγ—γ¦εŸΊεœ°γ«ι€γ‚ŠθΎΌγ‚€γγ§γ―γͺく、一぀γζ©Ÿζ’°γ«ε―Ύγ—て個εˆ₯γε‹•εŠ›ζΊγ‚’ζŒγ€ε°γ•γͺζ©Ÿζ§‹γ‚’η΅„γ‚€εΏ…θ¦γŒγ‚γ‚‹γ‚“γ§γ™γ­γ€‚", + "quests.steam_age.basic_greate.desc": "Greateは&3Create&rと&3GregTech&rγγ‚·γ‚Ήγƒ†γƒ γ‚’ζ‚ͺι­”εˆδ½“γ•γ›γŸγ‚‚γγ§γ€Createγζ©Ÿζ’°γŒη΄ ζγ«γ‚ˆγ£γ¦ζ΅ιšŽεˆ†γ‘γ•γ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\nγΎγŸγ€γ‚·γƒ£γƒ•γƒˆγ¨ζ­―θ»Šγ«εΏœεŠ›γεˆΆι™γŒγ‹γ‹γ‚‹γ‚ˆγ†γ«γͺγ‚‹γŸγ‚γ€ζ©Ÿζ’°γ«εΏœεŠ›γ‚’δΎ›η΅¦γ™γ‚‹ζ–Ήζ³•γ‚’γ€γ‚ˆγ‚Šθ¨ˆη”»ηš„γ«θ€ƒγˆγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nε°‘γͺγγ¨γ‚‚εΊη›€γ―γ€ι€šεΈΈγCreateγγ‚ˆγ†γ«γ€ζ°΄θ»Šγε‘Šγ§ε…¨γ¦γζ©Ÿζ’°γ‚’動かすγγ§γ―γͺく、一぀γζ©Ÿζ’°γ«ε―Ύγ—て個εˆ₯γε‹•εŠ›ζΊγ‚’η”¨ζ„γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.steam_age.create_tools.title": "商売道具", "quests.steam_age.create_tools.subtitle": "使いこγͺしましょう", - "quests.steam_age.create_tools.desc": "γƒ¬γƒ³γƒγ‚’δ½Ώγˆγ°γ€γ‚Ήγƒ‹γƒΌγ‚―+右クγƒͺックでCreateγγƒ–γƒ­γƒƒγ‚―γ‚’η΄ ζ—©γε›žεŽγ§γγΎγ™γ€‚ζ–§γ‚„γƒ„γƒ«γƒγ‚·γ§γ‚‚ε›žεŽγ―γ§γγΎγ™γ€‚γ‚΄γƒΌγ‚°γƒ«γ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ζ©Ÿζ’°γŒη”ŸζˆγΎγŸγ―ζΆˆθ²»γ™γ‚‹εΏœεŠ›γι‡γͺγ©γ€ζ©Ÿζ’°γ«ι–’γ™γ‚‹γ‚ˆγ‚Šθ©³η΄°γͺζƒ…ε ±γ‚’η’Ίθͺγ§γγΎγ™γ€‚\n\nγ©γ‘γ‚‰γ‚‚εΏ…ι ˆγ§γ―γͺγ„γ§γ™γŒγ€ε½Ήγ«η«‹γ€γ“γ¨γ―ι–“ι•γ„γͺいでしょう。\n\nガラス細ε·₯に぀いては、TFGγTipsγη« γ‚’η’Ίθͺγ—てください。εŸγ―γ€γƒγƒ³γƒžγƒΌγ§δΈΈηŸ³γ‚’ε£Šγ™γ¨η ‚εˆ©γ«γͺγ‚Šγ€γγ‚Œγ‚’γ‚‚γ†δΈ€εΊ¦ε£Šγ™γ¨η ‚γ«γͺるんです。ηŸ₯γ£γ¦γΎγ—γŸγ‹...?", + "quests.steam_age.create_tools.desc": "γƒ¬γƒ³γƒγ‚’δ½Ώγˆγ°γ€γ‚Ήγƒ‹γƒΌγ‚―+右クγƒͺックでCreateγγƒ–γƒ­γƒƒγ‚―γ‚’η΄ ζ—©γε›žεŽγ§γγΎγ™γ€‚γ‚΄γƒΌγ‚°γƒ«γ‚’η€γ‘γ‚‹γ¨γ€η”ŸζˆγΎγŸγ―ζΆˆθ²»γ•γ‚Œγ¦γ„γ‚‹εΏœεŠ›γι‡γͺγ©γ€γ‚ˆγ‚Šθ©³η΄°γͺζƒ…ε ±γ‚’η’Ίθͺγ§γγΎγ™γ€‚\n\nγ©γ‘γ‚‰γ‚‚εΏ…ι ˆγ§γ―γͺγ„γ§γ™γŒγ€ε½Ήγ«η«‹γ€γ“γ¨γ―ι–“ι•γ„γͺいでしょう。\n\nガラス細ε·₯γ«γ€γ„γ¦γ―γ€γ€ŒTips-ツール」γη« γ‹γƒ•ィールドガむドを璺θͺγ—てください。 εŸγ―γ€γƒγƒ³γƒžγƒΌγ§δΈΈηŸ³γ‚’ε£Šγ™γ¨η ‚εˆ©γ«γͺγ‚Šγ€γγ‚Œγ‚’γ‚‚γ†δΈ€εΊ¦ε£Šγ™γ¨η ‚γ«γͺるんです。ηŸ₯γ£γ¦γΎγ—γŸγ‹...?", "quests.steam_age.basic_millstone.title": "θ‡ͺε‹•ι‰±ηŸ³ε‡¦η†", "quests.steam_age.basic_millstone.subtitle": "うすγγ‚γͺγ‚γ„γ€γ¨γ―γŠγ•γ‚‰γ°γ ", - "quests.steam_age.basic_millstone.desc": "&3Millstone&rは、臼γθ‡ͺε‹•γƒγƒΌγ‚Έγƒ§γƒ³γ§γ™γ€‚δΈŠιƒ¨γ«ε₯½γγͺγ‚‚γγ‚’ζŠ•γ’θΎΌγΏγ€ε³γ‚―γƒͺγƒƒγ‚―γ—γ¦η²‰η •γ•γ‚ŒγŸγ‚’γ‚€γƒ†γƒ γ‚’ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚γ‚’γƒ‹γƒžγƒ«γ‚―γƒ©γƒ³γ‚―γ«η›΄ζŽ₯γ€γ‘γŸγ γ‘γ γ¨ε‹•δ½œγ―ι…γ„γ§γ™γŒγ€γ‚γ‚’ζ―”γ‚’δ½Ώη”¨γ—γ¦ι€ŸεΊ¦γ‚’δΈŠγ’γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nレシピγζœ€εˆγγ‚Ήγƒ­γƒƒγƒˆγγ‚’むテム(主産物)γ γ‘ε‡ΊεŠ›γ•γ‚ŒγΎγ™γ€‚δ»–γγ‚Ήγƒ­γƒƒγƒˆγγ‚’むテム(副産物)γ―γ€γ―γ‚‹γ‹γ«εΎŒγ(&6HV&r)ζ™‚δ»£γΎγ§ε‡Ίγ¦γγΎγ›γ‚“γ€‚γ“γ‚Œγ―GregTechγδ»•ζ§˜γ§γ™γ€‚", + "quests.steam_age.basic_millstone.desc": "Greateγ&3ηŸ³θ‡Ό&rは、臼γθ‡ͺε‹•γƒγƒΌγ‚Έγƒ§γƒ³γ§γ™γ€‚δΈŠιƒ¨γ«γ‚’γ‚€γƒ†γƒ γ‚’ζŠ•γ’θΎΌγΏγ€η²‰η •γŒεŒδΊ†γ—γŸγ‚‰γ€ε³γ‚―γƒͺγƒƒγ‚―γ§ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚\nγ‚’γƒ‹γƒžγƒ«γ‚―γƒ©γƒ³γ‚―γ«η›΄ζŽ₯γ€γ‘γŸγ γ‘γ γ¨ε‹•δ½œγ―ι…γ„γ§γ™γŒγ€γ‚γ‚’ζ―”γ‚’εˆ©η”¨γ—γ¦ι€ŸεΊ¦γ‚’δΈŠγ’γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n現時点ではレシピγζœ€εˆγγ‚Ήγƒ­γƒƒγƒˆγγ‚’むテム(主産物)γ γ‘γŒε‡ΊεŠ›γ•γ‚ŒγΎγ™γ€‚δ»–γγ‚Ήγƒ­γƒƒγƒˆγγ‚’むテム(副産物)γ―γ€γ―γ‚‹γ‹γ«εΎŒγ(&6HV&r)ζ™‚δ»£γΎγ§ε‡Ίγ¦γγΎγ›γ‚“γ€‚γ“γ‚Œγ―GregTechγδ»•ζ§˜γ§γ™γ€‚", "quests.steam_age.horse_crank.title": "ζœ€εˆγε‹•εŠ›ζΊ", "quests.steam_age.horse_crank.subtitle": "24ζ™‚ι–“εƒγ‘γΎγ™γ‹οΌŸ", - "quests.steam_age.horse_crank.desc.1": "&3γ‚’γƒ‹γƒžγƒ«γ‚―γƒ©γƒ³γ‚―&rγ―γ€ζœ€εˆγ«εˆ©η”¨ε―θƒ½γͺ機撰γε‹•εŠ›ζΊγ§γ™γ€‚δ½Ώη”¨γ™γ‚‹γ«γ―、7x7γζ•΄εœ°γ•γ‚ŒγŸγ‚¨γƒͺγ‚’γδΈ­ε€γ«γ‚―ランクをη½γγ€ε‹•物をγƒͺードで぀γͺγŽγΎγ™γ€‚ε‹•η‰©γη¨ι‘žγ«γ‚ˆγ£γ¦δΎ›η΅¦γ•γ‚Œγ‚‹εΏœεŠ›γι‡γŒη•°γͺγ‚Šγ€δΈ‹γγƒ–γƒ­γƒƒγ‚―γ«γ‚ˆγ£γ¦ε›žθ»’ι€ŸεΊ¦γŒε‘δΈŠγ—γΎγ™γ€‚γγ‚Œγžγ‚Œγγ‚―ランクγι ˜εŸŸγ―重γͺγ£γ¦γ„γ¦γ‚‚ε•ι‘Œγ‚γ‚ŠγΎγ›γ‚“γ€‚\n\n注意:ε‹•η‰©γ‚’ε–γ‚Šδ»˜γ‘γ‚‹γ«γ―γ€γƒͺードを2ζœ¬ζŒγ£γ¦γ„γ‚‹εΏ…θ¦γŒγ‚γ‚‹ε ΄εˆγŒγ‚γ‚ŠγΎγ™γ€‚", - "quests.steam_age.horse_crank.desc.2": "&3ε°εž‹ε‹•η‰©(4 SU):&r\nγ‚ͺγ‚ͺγ‚«γƒŸγ€ηŠ¬γ€θ±šγ€ηΎŠγ€γƒ€γ‚、をルパカ\n\n&3δΈ­εž‹ε‹•η‰©(6 SU):&r\n牛、ロバ\n\n&3倧きγͺ動物(8 SU):&r\n馬、ラバ、ジャコウウシ、ダク", + "quests.steam_age.horse_crank.desc.1": "&3γ‚’γƒ‹γƒžγƒ«γ‚―γƒ©γƒ³γ‚―&rγ―γ€ζœ€εˆγ«εˆ©η”¨γ§γγ‚‹ε‹•εŠ›ζΊγ§γ™γ€‚δ½Ώη”¨γ™γ‚‹γ«γ―γ€7x7γζ•΄εœ°γ•γ‚ŒγŸγ‚¨γƒͺγ‚’γδΈ­ε€γ«θ¨­η½γ—、動物をγƒͺードで぀γͺγŽγΎγ™γ€‚\n動物γη¨ι‘žγ«γ‚ˆγ£γ¦ε‡ΊεŠ›γ•γ‚Œγ‚‹εΏœεŠ›γε€§γγ•γŒη•°γͺγ‚Šγ€δΈ‹γγƒ–γƒ­γƒƒγ‚―γ«γ‚ˆγ£γ¦ε›žθ»’ι€ŸεΊ¦γŒε‘δΈŠγ—γΎγ™γ€‚γγ‚Œγžγ‚Œγγ‚―γƒ©γƒ³γ‚―εŒε£«γι ˜εŸŸγ―重γͺγ£γ¦γ„γ¦γ‚‚ε•ι‘Œγ‚γ‚ŠγΎγ›γ‚“γ€‚\n\n注意:ε‹•η‰©γ‚’ε–γ‚Šδ»˜γ‘γ‚‹γ«γ―γ€γƒͺードを2ζœ¬ζŒγ£γ¦γ„γ‚‹εΏ…θ¦γŒγ‚γ‚‹ε ΄εˆγŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.steam_age.horse_crank.desc.2": "&3ε°εž‹ε‹•η‰©(8 SU):&r\nγ‚ͺγ‚ͺγ‚«γƒŸγ€ηŠ¬γ€θ±šγ€ηΎŠγ€γƒ€γ‚、をルパカ\n\n&3δΈ­εž‹ε‹•η‰©(12 SU):&r\n牛、ロバ\n\n&3倧きγͺ動物(16 SU):&r\n馬、ラバ、ジャコウウシ、ダク", "quests.steam_age.poor_paths.title": "θ²§εΌ±γͺ道", - "quests.steam_age.poor_paths.subtitle": "こんγͺところで働かせるγοΌοΌŸ", - "quests.steam_age.poor_paths.desc": "γ“γ‚Œγ―δ½Ώη”¨γ§γγ‚‹ζœ€ζ‚ͺγη¨ι‘žγι“θ·―γ§γ™γ€‚γ‚’γƒ‹γƒžγƒ«γ‚―γƒ©γƒ³γ‚―γ―2RPMγ§ε‹•δ½œγ—γΎγ™γ€‚", + "quests.steam_age.poor_paths.subtitle": "ε₯΄ιš·εŠ΄εƒ", + "quests.steam_age.poor_paths.desc": "γ“γ‚Œγ―δ½Ώη”¨γ§γγ‚‹δΈ­γ§ζœ€ζ‚ͺγι“θ·―γ§γ™γ€‚γ‚’γƒ‹γƒžγƒ«γ‚―γƒ©γƒ³γ‚―γ―2RPMγ§ε‹•δ½œγ—γΎγ™γ€‚", "quests.steam_age.normal_paths.title": "ζ™ι€šγι“", - "quests.steam_age.normal_paths.subtitle": "γ‚‚γ†ε°‘γ—εŠ΄εƒη’°ε’ƒγ‚’ζ•΄γˆγ¦γ‚γ’γ¦γ‚‚γ„γ„γ‚“γ˜γ‚ƒγͺγ„οΌŸ", - "quests.steam_age.normal_paths.desc": "ζ™ι€šγι“γ―ε°‘γ—γΎγ—γ§γ€ε‹•η‰©γŒ4RPMγ§γ‚―γƒ©γƒ³γ‚―γ‚’ε›žγ™γ“γ¨γŒγ§γγΎγ™γ€‚\n\n注意:γ‚’γƒ‹γƒžγƒ«γ‚―γƒ©γƒ³γ‚―γηœŸδΈ‹γ«εœŸγι“ブロックをη½γγ“とはできません。そγγŸγ‚γ€η ‚εˆ©γ‚’η½γ„γ¦γŠγγΎγ—γ‚‡γ†γ€‚", + "quests.steam_age.normal_paths.subtitle": "θ‡ͺθ»’θ»Šζ“ζ₯­", + "quests.steam_age.normal_paths.desc": "ζ™ι€šγι“γ―ε€šε°‘ζ”Ήε–„γ•γ‚Œγ¦γŠγ‚Šγ€ε‹•η‰©γŒ4RPMγ§γ‚―γƒ©γƒ³γ‚―γ‚’ε›žγ™γ“γ¨γŒγ§γγΎγ™γ€‚\n\n注意:γ‚’γƒ‹γƒžγƒ«γ‚―γƒ©γƒ³γ‚―γηœŸδΈ‹γ«εœŸγι“ブロックをη½γγ“とはできません。そγγŸγ‚γ€η ‚εˆ©γ‚’η½γ„γ¦γŠγγΎγ—γ‚‡γ†γ€‚", "quests.steam_age.good_paths.title": "素晴らしい道", "quests.steam_age.good_paths.subtitle": "γ‚’γƒƒγƒˆγƒ›γƒΌγƒ γͺ職場です!", - "quests.steam_age.good_paths.desc": "γ“γ‚Œγ‚‰γ―δ½Ώη”¨γ§γγ‚‹ζœ€ι«˜γη¨ι‘žγι“γ§γ‚γ‚Šγ€γ‚―ランクを8RPMγ§ε‡ΊεŠ›γ§γγΎγ™γ€‚γ“γ‚Œγ‚‰γη¨ι‘žγι“はプレむダーγη§»ε‹•ι€ŸεΊ¦γ‚‚ε‘δΈŠγ•γ›γ‚‹γŸγ‚γ€ζ‹ η‚Ήγ‚’θˆ—θ£…γ™γ‚‹γγ«γ‚‚ζœ€ι©γ§γ™οΌ", + "quests.steam_age.good_paths.desc": "γ“γ‚Œγ‚‰γ―δ½Ώη”¨γ§γγ‚‹δΈ­γ§ζœ€ι«˜γη¨ι‘žγι“γ§γ‚γ‚Šγ€γ‚―ランクを8RPMγ§ε‡ΊεŠ›γ§γγΎγ™γ€‚\nγ“γ‚Œγ‚‰γη¨ι‘žγι“はプレむダーγη§»ε‹•ι€ŸεΊ¦γ‚‚ε‘δΈŠγ•γ›γ‚‹γŸγ‚γ€ζ‹ η‚Ήγ‚’θˆ—θ£…γ™γ‚‹γγ«γ‚‚ζœ€ι©γ§γ™οΌ", "quests.steam_age.helve_hammer.title": "Helve Hammer", "quests.steam_age.helve_hammer.subtitle": "カーン... カーン... カーン...", - "quests.steam_age.helve_hammer.desc": "ε‘Šι‰„η‚‰γγŸγ‚γγƒ—γƒ¬γƒΌγƒˆγ‚’γ™γΉγ¦ζ‰‹δ½œζ₯­γ§δ½œγ‚‹γγ―εŽ³γ—γγͺγ„γ§γ™γ‹οΌŸ &3Helve_Hammer&rγ―γ€γƒ€γƒ–γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’θ‡ͺε‹•ηš„γ«(γ‚†γ£γγ‚Šγ¨)εΉ³γ‚‰γ«γ—γ¦γƒ—γƒ¬γƒΌγƒˆγ«γ—γΎγ™γ€‚γŸγ γ—γ€ζΊΆζŽ₯はθ‡ͺεˆ†γ§θ‘Œγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γƒγƒ³γƒžγƒΌγι ­γηœŸδΈ‹γ«ι‡‘εΊŠγ‚’η½γγ€γƒ€γƒ–γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’γγδΈŠγ«ζŠ•γ’θΎΌγΏγΎγ—γ‚‡γ†γ€‚ε–γ‚Šε‡Ίγ™γ¨γγ―γƒγƒ³γƒžγƒΌγ‚’ε³γ‚―γƒͺックしましょう。\n\n上位γι‡‘εΊŠγ§γ―γ€γƒ—γƒ¬γƒΌγƒˆγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«ε©γε›žζ•°γ‚‚ε°‘γͺくγͺγ‚ŠγΎγ™γ€‚", + "quests.steam_age.helve_hammer.desc": "ε‘Šι‰„η‚‰γγŸγ‚γγƒ—γƒ¬γƒΌγƒˆγ‚’γ™γΉγ¦ζ‰‹δ½œζ₯­γ§δ½œγ‚‹γγ―倧倉ではγͺγ„γ§γ™γ‹οΌŸ\n&3Helve_Hammer&rγ―γ€γƒ€γƒ–γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’ζ™‚ι–“γ‚’γ‹γ‘γ¦θ‡ͺε‹•ηš„γ«γƒ—γƒ¬γƒΌγƒˆγ«γ—γ¦γγ‚ŒγΎγ™γ€‚γγιš›γ€γƒ€γƒ–γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆγζΊΆζŽ₯は、まだθ‡ͺεˆ†γ§θ‘Œγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nγƒγƒ³γƒžγƒΌγι ­γηœŸδΈ‹γ«ι‡‘εΊŠγ‚’η½γγ€γƒ€γƒ–γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’γγδΈŠγ«ζŠ•γ’θΎΌγΏγΎγ—γ‚‡γ†γ€‚ε–γ‚Šε‡Ίγ™γ¨γγ―γƒγƒ³γƒžγƒΌγ‚’ε³γ‚―γƒͺックしましょう。\n\n上位γι‡‘εΊŠγ§γ―γ€γƒ—γƒ¬γƒΌγƒˆγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«ε©γε›žζ•°γ‚‚ε°‘γͺくγͺγ‚ŠγΎγ™γ€‚", "quests.steam_age.water_wheel.title": "水車", "quests.steam_age.water_wheel.subtitle": "川γθΏ‘γγ«ζ‹ η‚Ήγ‚’ε»Ίγ¦γ¦γ„γ‚Œγ°γ‚ˆγ„γγ§γ™γŒ", - "quests.steam_age.water_wheel.desc": "ζ°΄θ»Šγ―γ€ζ΅γ‚Œγ‚‹ζ°΄γ‚’εΏ…θ¦γ¨γ™γ‚‹δ»£γ‚γ‚Šγ«γ€γ‚’γƒ‹γƒžγƒ«γ‚―γƒ©γƒ³γ‚―γ‚ˆγ‚Šγ‚‚γ―γ‚‹γ‹γ«ε€šγγεΏœεŠ›γ‚’η”Ÿη”£γ—γΎγ™γ€‚γΎγ ζ°΄ζΊγ‚’η§»ε‹•γ™γ‚‹ζ©Ÿθƒ½γŒγͺγ„γŸγ‚γ€γ“γ‚Œγ‚‰γ«ε‹•εŠ›γ‚’δΎ›η΅¦γ™γ‚‹γ«γ―ε·γ‚’θ¦‹γ€γ‘γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ζ΅·γ‚„ζΉ–γ‚‚ε°‘γ—γ―ε‹•εŠ›γ‚’δΎ›η΅¦γ§γγΎγ™γŒγ€ε†…ι™Έιƒ¨γ«γ„γ‚‹ε ΄εˆγ―γ€ι’¨θ»Šγ‚’ε»Ίγ¦γ‚‹γ“γ¨γ‚’ζ€œθ¨Žγ—γŸζ–ΉγŒθ‰―γ„γ§γ—γ‚‡γ†γ€‚\n\nコークス炉γγ‚―レγ‚ͺγ‚½γƒΌγƒˆγ«ζΏζγ‚’ζ΅Έγ™γ¨γ€ι˜²θ…ζœ¨ζγ‚’εΎ—γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.steam_age.water_wheel.desc": "ζ°΄θ»Šγ―γ€ζ΅γ‚Œγ‚‹ζ°΄γ‚’εΏ…θ¦γ¨γ™γ‚‹δ»£γ‚γ‚Šγ«γ€γ‚’γƒ‹γƒžγƒ«γ‚―γƒ©γƒ³γ‚―γ‚ˆγ‚Šγ‚‚γ―γ‚‹γ‹γ«ε€šγγεΏœεŠ›γ‚’η”Ÿη”£γ—γΎγ™γ€‚\nγΎγ ζ°΄ζΊγ‚’η§»ε‹•γ™γ‚‹γ“γ¨γŒγ§γγͺγ„γŸγ‚γ€ζ°΄θ»Šγ‚’ε‹•δ½œγ•γ›γ‚‹γŸγ‚γ«γ―ε·γ‚’θ¦‹γ€γ‘γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ζ΅·γ‚„ζ± γ γ¨ζ€§θƒ½γŒθ½γ‘γ‚‹γŸγ‚γ€ε†…ι™Έιƒ¨γ«δ½γ‚“γ§γ„γ‚‹ε ΄εˆγ―γ€ι’¨θ»Šγ‚’δ½Ώγ£γŸζ–ΉγŒθ‰―γ„γ§γ—γ‚‡γ†γ€‚\n\nγ‚³γƒΌγ‚―γ‚Ήη‚‰γ‹γ‚‰ε‡ΊγŸγ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγ«ζΏζγ‚’ζ΅Έγ™γ¨γ€ι˜²θ…ζœ¨ζγŒγ§γγΎγ™γ€‚", "quests.steam_age.large_water_wheel.title": "倧きγͺ水車", "quests.steam_age.large_water_wheel.subtitle": "γƒ‡γ‚«γ„οΌεΌ·γ„οΌι«˜γ„οΌ", - "quests.steam_age.large_water_wheel.desc": "倧きγͺζ°΄θ»Šγ―γ€ε°εž‹ζ°΄θ»Šγ4倍γεΏœεŠ›γ‚’δΎ›η΅¦γ—γΎγ™γ€‚γ‚‚γ‘ろん川γζ΅γ‚Œγ‚‹ζ°΄γ―εΏ…θ¦γ§γ™γ€‚ζ΅·γ‚„ζΉ–γ‚‚ε°‘γ—ε‹•εŠ›γ‚’δΎ›η΅¦γ§γγΎγ™γŒγ€ε†…ι™Έιƒ¨γ«γ„γ‚‹ε ΄εˆγ―γ€ι’¨θ»ŠγΎγŸγ―θ’Έζ°—ζ©Ÿι–’γ‚’ε»Ίγ¦γ‚‹γ“γ¨γ‚’ζ€œθ¨Žγ—γŸζ–ΉγŒθ‰―γ„γ§γ—γ‚‡γ†γ€‚\n\nコークス炉γγ‚―レγ‚ͺγ‚½γƒΌγƒˆγ«ζΏζγ‚’ζ΅Έγ™γ¨γ€ι˜²θ…ζœ¨ζγ‚’εΎ—γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.steam_age.large_water_wheel.desc": "倧きγͺζ°΄θ»Šγ―γ€ε°εž‹ζ°΄θ»Šγ4倍γεΏœεŠ›γ‚’ε‡ΊεŠ›γ—γ¦γγ‚ŒγΎγ™γ€‚γ‚‚γ‘ろん川は必要です。\nι€šεΈΈγζ°΄θ»Šγ¨εŒγ˜γζ΅·γ‚„ζ± γ γ¨ζ€§θƒ½γŒθ½γ‘γ‚‹γŸγ‚γ€ε†…ι™Έιƒ¨γ«γ„γ‚‹ε ΄εˆγ―γ€ι’¨θ»ŠγΎγŸγ―θ’Έζ°—ζ©Ÿι–’γ‚’εˆ©η”¨γ—γŸζ–ΉγŒθ‰―γ„γ§γ—γ‚‡γ†γ€‚\n\nγ‚³γƒΌγ‚―γ‚Ήη‚‰γ‹γ‚‰ε‡ΊγŸγ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγ«ζΏζγ‚’ζ΅Έγ™γ¨γ€ι˜²θ…ζœ¨ζγŒγ§γγΎγ™γ€‚", "quests.steam_age.windmill.title": "钨車", "quests.steam_age.windmill.subtitle": "チγƒ₯γƒΌγƒͺγƒƒγƒ—γŒγ‚ˆγδΌΌεˆγ†", - "quests.steam_age.windmill.desc": "ζ΅γ‚Œγ‚‹ζ°΄γŒθΏ‘γγ«γͺγ„ε ΄εˆγ―γ€ι’¨θ»Šγ―θ‰―γ„ε‹•εŠ›ζΊγ«γͺγ£γ¦γγ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚ε€§γγͺι’¨θ»Šγ―γ€γ‚ˆγ‚Šε€šγγεΏœεŠ›γ¨γ‚ˆγ‚Šι€Ÿγ„ε›žθ»’ι€ŸεΊ¦γ‚’ζδΎ›γ—γΎγ™γ€‚\n\nコークス炉γγ‚―レγ‚ͺγ‚½γƒΌγƒˆγ«ζΏζγ‚’ζ΅Έγ™γ¨γ€ι˜²θ…ζœ¨ζγ‚’εΎ—γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", - "quests.steam_age.metal_casing.title": "ι‡‘ε±žγ‚±γƒΌγ‚·γƒ³γ‚°", - "quests.steam_age.metal_casing.subtitle": "εŽŸε§‹ηš„γͺ機撰γη­δ½“οΌŸ", - "quests.steam_age.metal_casing.desc": "γ“γ‚Œγ―γ€Createγ§ζ§‹η―‰γ§γγ‚‹ε˜η΄”γͺ機撰たけγεŸΊη€Žγ¨γͺγ‚‹γ‚‚γγ§γ™γ€‚JEIで、γ‚γ‚’γƒœγƒƒγ‚―γ‚Ήγ‚„γγδ»–γεΏœεŠ›γ‚’εˆΆεΎ‘γ™γ‚‹δ»•ζŽ›γ‘γͺγ©γ€γ“γ‚Œγ§δ½œζˆγ§γγ‚‹γ•γΎγ–γΎγͺγ‚‚γγ‚’η’Ίθͺγ—てみるといいでしょう。\n\nCreateγ―εˆγ‚γ¦γ§γ™γ‹οΌŸCreateγθ§£θͺ¬ε‹•η”»γ‚„θ§£θͺ¬γ‚΅γ‚€γƒˆγ―γ‚€γƒ³γ‚ΏγƒΌγƒγƒƒγƒˆδΈŠγ«γŸγγ•γ‚“γ‚γ‚ŠγΎγ™γ€‚γγ—γ¦γγ‚Œγ‚‰γ§ε­¦γ‚“γ γ»γ¨γ‚“γ©γγ“とはTFGでも役に立぀でしょう!(δΈΈηŸ³θ£½ι€ ζ©Ÿγ‚’ε«γ‚€γ‚‚γγ‚’陀く)", + "quests.steam_age.windmill.desc": "ε·γŒθΏ‘γγ«γͺγ„ε ΄εˆγ―γ€ι’¨θ»Šγ―θ‰―γ„ε‹•εŠ›ζΊγ«γͺγ£γ¦γγ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚\n倧きγͺι’¨θ»Šγ―γ€γ‚ˆγ‚Šε€šγγεΏœεŠ›γ¨γ‚ˆγ‚Šι€Ÿγ„ε›žθ»’ι€ŸεΊ¦γ‚’ζδΎ›γ—γΎγ™γ€‚\n\nγ‚³γƒΌγ‚―γ‚Ήη‚‰γ‹γ‚‰ε‡ΊγŸγ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγ«ζΏζγ‚’ζ΅Έγ™γ¨γ€ι˜²θ…ζœ¨ζγŒγ§γγΎγ™γ€‚", + "quests.steam_age.metal_casing.title": "ιŒ¬ι‰„γ‚±γƒΌγ‚·γƒ³γ‚°", + "quests.steam_age.metal_casing.subtitle": "εŽŸε§‹ηš„γͺγƒžγ‚·γƒ³η­δ½“οΌŸ", + "quests.steam_age.metal_casing.desc": "γ“γ‚Œγ―γ€Createγζ©Ÿζ’°γŸγ‘γεŸΊη€Žγ¨γͺγ‚‹γ‚‚γγ§γ™γ€‚\nEMIで、γ‚γ‚’γƒœγƒƒγ‚―γ‚Ήγ‚„γγδ»–γεΏœεŠ›γ‚’εˆΆεΎ‘γ™γ‚‹δ»•ζŽ›γ‘γͺγ©γ€γ“γ‚Œγ§δ½œζˆγ§γγ‚‹γ‚‚γγ‚’η’Ίθͺγ—てみるといいでしょう。\n\nCreateγ―εˆγ‚γ¦γ§γ™γ‹οΌŸCreateγθ§£θͺ¬ε‹•η”»γ‚„θ§£θͺ¬γ‚΅γ‚€γƒˆγ―γ‚€γƒ³γ‚ΏγƒΌγƒγƒƒγƒˆδΈŠγ«γŸγγ•γ‚“γ‚γ‚ŠγΎγ™γ€‚γγ—γ¦γγ‚Œγ‚‰γ§ε­¦γ‚“γ γ»γ¨γ‚“γ©γγ“とはTFGでも役に立぀でしょう!(δΈΈηŸ³θ£½ι€ ζ©Ÿγ‚’ε«γ‚€γ‚‚γγ‚’陀く)", "quests.steam_age.mechanical_harvester.title": "パカニカルハーベスター", "quests.steam_age.mechanical_harvester.subtitle": "γƒ­γƒœγƒƒγƒˆγγ‚΅γ‚―γƒ©γƒ³γƒœη‹©γ‚Š", - "quests.steam_age.mechanical_harvester.desc": "δ½œη‰©γ‚’εŽη©«γ—γ¦ζ€γˆζ›Ώγˆγ‚‹γγŒι’ε€’γ§γ™γ‹οΌŸ γ γ£γŸγ‚‰γ“γ‚Œγ«δ»»γ›γ‘γ‚ƒγ„γΎγ—γ‚‡γ†οΌγ‹γ‚‰γγ‚Šδ»•ζŽ›γ‘γ§ε›žθ»’γ•γ›γ‚Œγ°γ€γ‚γ¨γ―ε‹ζ‰‹γ«γ‚„γ£γ¦γγ‚ŒγΎγ™γ€‚γŸγ γ—γ€ζΈ©ε€ε†…γ«ζ€γˆγ‚‰γ‚ŒγŸδ½œη‰©γ«γ―ζ©Ÿθƒ½γ—γΎγ›γ‚“γ€‚\n\n豆ηŸ₯識:ε²©η›€γŒγ‚γ‚‹ι«˜γ•γ§γ―εΈΈγ«15Β°Cγͺγγ§γ€δΈ€εΉ΄δΈ­δ½œη‰©γ‚’θ‚²γ¦γ‚‰γ‚Œγ‚‹ζœ€ι«˜γθΎ²ε ΄γ«γͺγ‚ŠγΎγ™γ‚ˆοΌ", - "quests.steam_age.mechanical_saw.title": "機撰式γγ“γŽγ‚Š", + "quests.steam_age.mechanical_harvester.desc": "θΎ²ζ₯­γŒι’倒にγͺγ£γ¦γγΎγ—γŸγ‹οΌŸγ γ£γŸγ‚‰γ“γ‚Œγ«δ»»γ›γ‘γ‚ƒγ„γΎγ—γ‚‡γ†οΌ\nγ‹γ‚‰γγ‚Šδ»•ζŽ›γ‘γ§ε›žθ»’γ•γ›γ‚Œγ°γ€γ‚γ¨γ―ε‹ζ‰‹γ«εŽη©«γ¨ζ€γˆδ»˜γ‘γ‚’γ—γ¦γγ‚ŒγΎγ™γ€‚\nγŸγ γ—γ€ζΈ©ε€ε†…γ«ζ€γˆγ‚‰γ‚ŒγŸδ½œη‰©γ«γ―ζ©Ÿθƒ½γ—γΎγ›γ‚“γ€‚\n\n豆ηŸ₯識:ε²©η›€γŒγ‚γ‚‹ι«˜γ•γ§γ―εΈΈγ«15Β°Cγͺγγ§γ€δΈ€εΉ΄δΈ­δ½œη‰©γ‚’θ‚²γ¦γ‚‰γ‚Œγ‚‹ζœ€ι«˜γθΎ²ε ΄γ«γͺγ‚ŠγΎγ™γ‚ˆοΌ", + "quests.steam_age.mechanical_saw.title": "パカニカルソー", "quests.steam_age.mechanical_saw.subtitle": "ζœ¨ζγ¨ηŸ³γ¨ζŒ‡γ‚’εŠΉηŽ‡ηš„γ«εˆ‡γ£γ¦γγ‚ŒγΎγ™", - "quests.steam_age.mechanical_saw.desc": "ζœ¨γ‚’εˆ‡γ‚‹γγŒι’ε€’γ§γ™γ‹οΌŸ γ γ£γŸγ‚‰γ“γ‚Œγ«δ»»γ›γ‘γ‚ƒγ„γΎγ—γ‚‡γ†οΌ γ‹γ‚‰γγ‚Šδ»•ζŽ›γ‘γ§ε›žθ»’γ•γ›γ‚Œγ°γ€γ‚γ¨γ―ε‹ζ‰‹γ«γ‚„γ£γ¦γγ‚ŒγΎγ™γ€‚γŸγ γ€ζ‹εΏ΅γͺγŒγ‚‰γ€γƒ‡γƒ—γƒ­γ‚€γƒ€γƒΌγŒεˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚‹γΎγ§γ―γ€θ‹—ζœ¨γ‚’θ‡ͺεˆ†γ§ζ€γˆζ›Ώγˆγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγƒ‘γ‚«γƒ‹γ‚«γƒ«γ‚½γƒΌγ―ηŸ³εˆ‡γ‚Šγ¨γ—γ¦γ‚‚ζ©Ÿθƒ½γ—γ€γ„γ‚γ‚“γͺη¨ι‘žγηŸ³γƒ¬γƒ³γ‚¬γ‚’η°‘ε˜γ«δ½œζˆγ§γγΎγ™γ€‚ δΈΈε€ͺγ‚’ζœ¨ζγ«εˆ‡γ‚‹γŸγ‚γ«δ½Ώη”¨γ™γ‚Œγ°γ€γ•γ‚‰γ«εŠΉηŽ‡ηš„γ«γͺγ‚ŠγΎγ™γ‚ˆοΌ\n\nγΎγŸγ€γ“γ‚Œγ‚’δ½Ώη”¨γ—γ¦ζ£’γ‚’4本γγƒœγƒ«γƒˆγ«εˆ‡ζ–­γ™γ‚‹γ“ともできます!", + "quests.steam_age.mechanical_saw.desc": "ζœ¨γ“γ‚ŠγŒι’ε€’γ«γͺγ£γ¦γγΎγ—γŸγ‹οΌŸγ γ£γŸγ‚‰γ“γ‚Œγ«δ»»γ›γ‘γ‚ƒγ„γΎγ—γ‚‡γ†οΌ\nγ‹γ‚‰γγ‚Šδ»•ζŽ›γ‘γ§ε›žθ»’γ•γ›γ‚Œγ°γ€γ‚γ¨γ―ε‹ζ‰‹γ«ζœ¨γδΌζŽ‘γ‚’γ—γ¦γγ‚ŒγΎγ™γ€‚\nγŸγ γ—γ€ζ‹εΏ΅γͺγŒγ‚‰γ€γƒ‡γƒ—γƒ­γ‚€γƒ€γƒΌγŒγͺγ„γ¨ζ€ζž—γθ‡ͺε‹•εŒ–γ―γ§γγΎγ›γ‚“γ€‚\n\nγƒ‘γ‚«γƒ‹γ‚«γƒ«γ‚½γƒΌγ―ηŸ³εˆ‡γ‚Šγ¨γ—γ¦γ‚‚ζ©Ÿθƒ½γ—γ€γ„γ‚γ‚“γͺη¨ι‘žγηŸ³γƒ¬γƒ³γ‚¬γ‚’η°‘ε˜γ«δ½œζˆγ§γγΎγ™γ€‚ δΈΈε€ͺγ‚’ζΏγ«εŠ ε·₯γ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ™γ‚Œγ°γ€ζ‰‹δ½œζ₯­γ§γεŠ ε·₯γ‚ˆγ‚Šγ‚‚εŠΉηŽ‡ηš„γ«γͺγ‚ŠγΎγ™γ‚ˆοΌ\n\nγΎγŸγ€γ“γ‚Œγ‚’δ½Ώη”¨γ—γ¦ζ£’γ‚’4本γγƒœγƒ«γƒˆγ«εˆ‡ζ–­γ™γ‚‹γ“ともできます!", "quests.steam_age.chute.title": "初期γη‰©ζ΅", "quests.steam_age.chute.subtitle": "をむテムγε…¬ε…±δΊ€ι€šζ©Ÿι–’", - "quests.steam_age.chute.desc": "γ‚’γ‚€γƒ†γƒ γ‚’η§»ε‹•γ•γ›γ‚‹γ‚’γ‚€γƒ†γƒ γŸγ‘γ‚’εˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸοΌ γ‚·γƒ₯γƒΌγƒˆγ―γƒ›γƒƒγƒ‘γƒΌγ«δΌΌγ¦γŠγ‚Šγ€ε‰δΎ‘γ§γ™γŒγ€γ‚’γ‚€γƒ†γƒ γ‚’δΈ‹ε‘γγ«γ—γ‹η§»ε‹•γ§γγΎγ›γ‚“γ€‚γ©γ‘γ‚‰γ‚‚γ€γ‚’γ‚€γƒ†γƒ γƒ‘γ‚€γƒ—γ«ε―Ύγ—γ¦γ‚’γ‚€γƒ†γƒ γ‚’ζ¬ε‡Ίγ™γ‚‹γŸγ‚γζ‰‹ζ΅γ¨γ—て使うこともできます。\n\nγƒ•γ‚‘γƒ³γƒγƒ«γ‚‚δΌΌγ¦γ„γΎγ™γŒγ€γ‚’γ‚€γƒ†γƒ γƒ‘γ‚€γƒ—γδ»£γ‚γ‚Šγ«γƒ™γƒ«γƒˆγ‚³γƒ³γƒ™γ‚’γƒΌγ¨η΅„γΏεˆγ‚γ›γ‚‹γγŒζœ€ι©γ§γ™γ€‚", + "quests.steam_age.chute.desc": "をむテムγι‹ζ¬γ«δ½Ώγˆγ‚‹γ‚’γ‚€γƒ†γƒ γŸγ‘γ‚’εˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸοΌ\nγ‚·γƒ₯γƒΌγƒˆγ―γƒ›γƒƒγƒ‘γƒΌγ«δΌΌγ¦γŠγ‚Šγ€ε‰δΎ‘γ§γ™γŒγ€γ‚’γ‚€γƒ†γƒ γ‚’δΈ‹ε‘γγ«γ—γ‹η§»ε‹•γ§γγΎγ›γ‚“γ€‚γ©γ‘γ‚‰γ‚‚γ€γ‚’γ‚€γƒ†γƒ γƒ‘γ‚€γƒ—γ«ε―Ύγ—γ¦γ‚’γ‚€γƒ†γƒ γ‚’ζ¬ε‡Ίγ™γ‚‹γŸγ‚γζ‰‹ζ΅γ¨γ—て使うこともできます。\n\nフゑンネルは、をむテムパむプγδ»£γ‚γ‚Šγ«γƒ™γƒ«γƒˆγ‚³γƒ³γƒ™γ‚’γƒΌγ¨η΅„γΏεˆγ‚γ›γ‚‹γγŒζœ€ι©γ§γ™γ€‚", "quests.steam_age.item_pipes.title": "をむテムパむプ", "quests.steam_age.item_pipes.subtitle": "γ‚’γ‚€γƒ†γƒ γ‚³γƒ³γ‚Έγƒƒγƒˆγζ–ΉγŒγ‚€γ‚«γ—γ¦γ‚‹γ γ£γ¦οΌŸ", - "quests.steam_age.item_pipes.desc.1": "&3をむテムパむプ&rは、をむテムを&dηž¬ζ™‚γ«&rη§»ε‹•γ•γ›γ‚‹γŸγ‚γη°‘単γͺ手ζ΅γ§γ™γŒγ€γγι‹ζ¬θƒ½εŠ›γ«γ―εˆΆι™γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγ‚‚γ‘γ‚γ‚“δΈŠδ½γγƒ‘γ‚€γƒ—γ―γ€ι‹ζ¬θƒ½εŠ›γŒε‘δΈŠγ—γ€ζœ€η΅‚ηš„γ«γ―γ™γ”γ„γ“γ¨γ«γͺγ‚ŠγΎγ™γ‚ˆγ€‚γγ‚Œγ―γ‚‚γ†MODε…₯γ‚Šγƒžγ‚€γ‚―γƒ©γδΈ­γ§γ‚‚特にね!\n\nをむテムパむプは&9θ‡ͺεŠ›γ§γ‚’γ‚€γƒ†γƒ γ‚’εΌ•γε‡Ίγ™θƒ½εŠ›γ―γ‚γ‚ŠγΎγ›γ‚“&rγŒγ€γ©γ†γ«γ‹γ—γ¦γƒ‘γ‚€γƒ—γ«ζ¬ε…₯γ™γ‚Œγ°γ€γ‚’γ‚€γƒ†γƒ γ‚’δ»–γζŽ₯ηΆšγ•γ‚ŒγŸε€‰εΊ«γͺどに搬ε…₯γ—γ¦γγ‚ŒγΎγ™γ€‚ζœ€εˆγ«&9ζœ€γ‚‚θΏ‘γ„γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺ&rγ‚’ε„ͺε…ˆγ—γΎγ™γ€‚", + "quests.steam_age.item_pipes.desc.1": "&3をむテムパむプ&rは、をむテムを&dηž¬ζ™‚γ«&rη§»ε‹•γ•γ›γ‚‹γŸγ‚γη°‘単γͺ手ζ΅γ§γ™γŒγ€γγι‹ζ¬θƒ½εŠ›γ«γ―εˆΆι™γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγ‚‚γ‘γ‚γ‚“δΈŠδ½γγƒ‘γ‚€γƒ—γ―γ€ι‹ζ¬θƒ½εŠ›γŒε‘δΈŠγ—γ€ζœ€η΅‚ηš„γ«γ―γ™γ”γ„γ“γ¨γ«γͺγ‚ŠγΎγ™γ‚ˆγ€‚γγ‚Œγ―γ‚‚γ†MODε…₯γ‚Šγƒžγ‚€γ‚―γƒ©γδΈ­γ§γ‚‚特にね!\n\nをむテムパむプは&9θ‡ͺεŠ›γ§γ‚’γ‚€γƒ†γƒ γ‚’εΌ•γε‡Ίγ™θƒ½εŠ›γ―γ‚γ‚ŠγΎγ›γ‚“&rγŒγ€γ©γ†γ«γ‹γ—γ¦γƒ‘γ‚€γƒ—γΈγ¨ζ¬ε‡Ίγ™γ‚Œγ°γ€γ‚’γ‚€γƒ†γƒ γ‚’ι‹γ³γ€ζŽ₯ηΆšγ•γ‚Œγ¦γ„γ‚‹δ»–γε€‰εΊ«γͺどに搬ε…₯γ—γ¦γγ‚ŒγΎγ™γ€‚&9近くγγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺ&rγ‚’ε„ͺε…ˆγ—γ¦ζ¬ε…₯します。", "quests.steam_age.item_pipes.desc.2": "ε„ͺε…ˆι †δ½γγƒ‘カニズムはやや&o耇雑&rγ§γ™γ€‚θˆˆε‘³γŒγͺγ„ε ΄εˆγ―γ„γ£γŸγ‚“ι£›γ°γ—γ¦γ‚‚γ„γ„γ§γ™γ‚ˆ:\n\n&eι€γ‚Šε…ˆ&rγ«γ―γ€γγ‚Œγžγ‚Œ&dε„ͺε…ˆι †δ½&rγŒε‰²γ‚Šε½“γ¦γ‚‰γ‚ŒγΎγ™γ€‚γγ‚Œγ―γ€γγι€γ‚Šε…ˆγΈθ‡³γ‚‹γΎγ§γε€‹γ€…γγƒ‘γ‚€γƒ—γγ‚‚γ€γ€Œε„ͺε…ˆι †δ½γ€γε€€γεˆθ¨ˆγ«γ‚ˆγ£γ¦ζ±Ίγ‚γ‚‰γ‚ŒγΎγ™γ€‚そγδΈ­γ§&cε„ͺε…ˆι †δ½γε€€γŒ&dγ‚‚γ£γ¨γ‚‚δ½Žγ„&rι€γ‚Šε…ˆγŒγ€ζ¬ε…₯ε…ˆγ¨γ—γ¦ιΈγ°γ‚ŒγΎγ™γ€‚\n\n&3εˆΆι™δ»˜γγƒ‘γ‚€γƒ—&rは、ε„ͺε…ˆι †δ½γŒι«˜γ‚γ«θ¨­εšγ•γ‚Œγ¦γ„γ‚‹γŸγ‚γ€εŸΊζœ¬ηš„γ«ζ¬ε…₯γε„ͺε…ˆι †δ½γŒζœ€γ‚‚δ½Žγγͺγ‚ŠγΎγ™γ€‚", "quests.steam_age.item_pipes.desc.3": "現時点では、&6γ‚·γƒ₯γƒΌγƒˆ&rγŠγ‚ˆγ³&6ホッパー&rγ¨η΅„γΏεˆγ‚γ›γ‚Œγ°γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺからγζ¬ε‡ΊγŒγ§γγΎγ™γŒγ€LV時代にはコンベをヒジγƒ₯γƒΌγƒ«γ€ε‡ΊεŠ›γƒγ‚Ήγ€γŠγ‚ˆγ³ζ©Ÿζ’°γθ‡ͺε‹•ε‡ΊεŠ›γ§γ‚‚δ½Ώη”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\n&9注:&r GT6スタむルγγƒ‘むプは&dζœ‰εŠΉ&rにγͺγ£γ¦γ„γΎγ™γ€‚γ€γΎγ‚Šγ€γƒ‘γ‚€γƒ—γ‚’ι…η½γ™γ‚‹γ¨γ€γƒ‘γ‚€γƒ—γ‚’η½γ„γŸι’γγƒ–ロックにγγΏζŽ₯ηΆšγ•γ‚ŒγΎγ™γ€‚γ‚‚γ£γ¨γ„γ‚γ‚“γͺブロックに぀γͺγ’γŸγ„γͺら、&5レンチ&rγ‚’ζŒγ€γ¨γ‚°γƒͺγƒƒγƒ‰γŒθ‘¨η€Ίγ•γ‚Œγ‚‹γγ§γ€γγ‚Œγ‚’右クγƒͺックで぀γͺげましょう。\n\nζζ‘ˆγ•γ‚ŒγŸγ‚’γ‚€γƒ†γƒ γƒ‘γ‚€γƒ—γ&eγ„γšγ‚Œγ‹&rγ‚’ε…₯手して、こγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ—てください。", - "quests.steam_age.item_pipes.desc.4": "&l&3伝承では...&r&o Oooooh, YEAH!! εŸγ―γͺ、をむテムパむプはGregTech 5γ«γ‚‚γ‚γ£γŸγ‚“γ γ€‚γ§γ‚‚γ€γͺんでかηŸ₯らγͺいけどGTCEにはγͺγ‹γ£γŸγ‹γ‚‰γ€γγζ™‚は他γMODγ‚’δ½Ώη”¨γ—γ¦γ‚’γ‚€γƒ†γƒ γ‚’θΌΈι€γ™γ‚‹εΏ…θ¦γŒγ‚γ£γŸγ‚“γ γ£γ¦γ€‚γˆγ‡...?θͺ°γŒγγ‚“γͺことをするγοΌοΌŸ γΎγ‚γ„γ„γ‚„γ€γ¨γ«γ‹γγ€γ›γ£γ‹γεΈ°γ£γ¦γγŸγ‚’γ‚€γƒ†γƒ γƒ‘γ‚€γƒ—γ€γ†γΎγδ½Ώγˆγ‚ˆοΌ...といいます。", + "quests.steam_age.item_pipes.desc.4": "&l&3δ½™θ«‡οΌš&r&oγŠγ―γ“γ‚“γ°γ‚“γ«γ‘γ―οΌεŸγ―、をむテムパむプはGT5γ«γ‚‚γ‚γ£γŸγ‚“γ γ£γ¦γ€‚γ§γ‚‚γ€γͺんでかηŸ₯らγͺいけどGTCEにはγͺγ‹γ£γŸγ‹γ‚‰γ€γγζ™‚は他γMODγ‚’δ½Ώη”¨γ—γ¦γ‚’γ‚€γƒ†γƒ γ‚’θΌΈι€γ™γ‚‹εΏ…θ¦γŒγ‚γ£γŸγ‚“γ γ€‚γˆγ‡...?θͺ°γŒγγ‚“γͺことをするγοΌοΌŸγΎγ‚γ„γ„γ‚„γ€γ¨γ«γ‹γγ€γ›γ£γ‹γεΈ°γ£γ¦γγŸγ‚’γ‚€γƒ†γƒ γƒ‘γ‚€γƒ—γ€γ—γ£γ‹γ‚Šδ½Ώγ£γ¦γ‚γ’γ¦οΌ", "quests.steam_age.steel_greate.title": "鋼鉄γGreate", "quests.steam_age.steel_greate.subtitle": "Greateが倧ε₯½θ©•γ γ£γŸγγ§Greate 2γ‚’δ½œγ‚ŠγΎγ—γŸ", - "quests.steam_age.steel_greate.desc": "Greateγζ¬‘γζ΅ιšŽγΈγ‚ˆγ†γ“そ!スチール製γγ‚·γƒ£γƒ•γƒˆγ¨ζ­―θ»Šγ―γ€ε‰γγ¨ζ―”べて4倍γεΏœεŠ›γ«θ€γˆγ‚‰γ‚ŒγΎγ™γ€‚ζ­―θ»Šγ‚„γ‚·γƒ£γƒ•γƒˆγ§γ€γͺγŒγ£γ¦γ„γ‚‹ζ©Ÿζ§‹γζœ€ε€§θ¨±εΉεΏœεŠ›γ―、そγγ€γͺγŒγ£γ¦γ„γ‚‹δΈ­γ§ζœ€γ‚‚δ½Žγ„γ‚‚γγ«γ‚ˆγ£γ¦ζ±Ίεšγ•γ‚Œγ‚‹γŸγ‚γ€δ»ŠγΎγ§γζ©Ÿζ§‹γ‚’丸ごと新しいγγ«η½γζ›γˆγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ε€γ„ιƒ¨ε“γδΈ€ιƒ¨γ―γƒͺァむクルできます!", + "quests.steam_age.steel_greate.desc": "Greateγη¬¬2ζ΅ιšŽγΈγ‚ˆγ†γ“そ!スチール製γγ‚·γƒ£γƒ•γƒˆγ¨ζ­―θ»Šγ―γ€ε‰γγ¨ζ―”べて4倍γεΏœεŠ›γ«θ€γˆγ‚‰γ‚ŒγΎγ™γ€‚\nζ­―θ»Šγ‚„γ‚·γƒ£γƒ•γƒˆγ§γ€γͺγŒγ£γ¦γ„γ‚‹ζ©Ÿζ§‹γζœ€ε€§θ¨±εΉεΏœεŠ›γ―、そγγ€γͺγŒγ£γ¦γ„γ‚‹δΈ­γ§ζœ€γ‚‚δ½Žγ„γ‚‚γγ«γ‚ˆγ£γ¦ζ±Ίεšγ•γ‚Œγ‚‹γŸγ‚γ€δ»ŠγΎγ§γζ©Ÿζ§‹γ‚’丸ごと新しいγγ«η½γζ›γˆγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n叀い部品γδΈ€ιƒ¨γ―γƒͺァむクルできます!", "quests.steam_age.steel_encased_fan.title": "γ‚±γƒΌγ‚Ήε…₯γ‚Šγƒ•γ‚‘γƒ³", "quests.steam_age.steel_encased_fan.subtitle": "η†±η‹‚ηš„γͺフゑン", - "quests.steam_age.steel_encased_fan.desc": "&3γ‚±γƒΌγ‚Ήε…₯γ‚Šγƒ•γ‚‘γƒ³&rγ―γ€ζœ€εˆγεŒε…¨θ‡ͺε‹•ι‰±ηŸ³ε‡¦η†γƒ©γ‚€γƒ³γζœ€η΅‚γ‚Ήγƒ†γƒƒγƒ—γ§γ™γ€‚γ“γ‚Œγ«γ‚ˆγ£γ¦ζ±šγ‚ŒγŸη²‰γ‚’ζ‰‹δ½œζ₯­γ§ζ΄—ζ΅„γ™γ‚‹εΏ…θ¦γŒγͺくγͺγ‚ŠγΎγ—γŸγ€‚ フゑンを粉に向けて設η½γ—、そγι–“に水源をη½γγ¨γ€γ™γγ«ζ΄—ζ΅„γŒι–‹ε§‹γ—γΎγ™γ€‚γŠγΎγ‘γ¨γ—γ¦γ€ε‰―η”£η‰©γ‚‚εΎ—γ‚‰γ‚ŒγΎγ™οΌ 現時点では水源を移動するγγ―ι›£γ—γ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€ε·γ‚„ζ± γͺγ©γ‚‚γ¨γ‹γ‚‰γ‚γ‚‹ζ°΄ζΊγ‚’δ½Ώγ£γ¦ζ§‹η―‰γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.steam_age.steel_encased_fan.desc": "&3γ‚±γƒΌγ‚Ήε…₯γ‚Šγƒ•γ‚‘γƒ³&rγ―γ€ζœ€εˆγεŒε…¨θ‡ͺε‹•ι‰±ηŸ³ε‡¦η†γƒ©γ‚€γƒ³γζœ€η΅‚ε·₯η¨‹γ‚’ζ‹…ε½“γ—γΎγ™γ€‚γ“γ‚Œγ«γ‚ˆγ£γ¦ζ±šγ‚ŒγŸη²‰γ‚’ζ‰‹δ½œζ₯­γ§ζ΄—ζ΅„γ™γ‚‹εΏ…θ¦γŒγͺくγͺγ‚ŠγΎγ—γŸγ€‚\nγƒ•γ‚‘γƒ³γ¨ζ°΄ζΊγ§ζ°΄γ‚’ε«γ‚“γ ι’¨γŒε‡Ίγ‚‹γγ§γ€γγ‚Œγ‚’ζ±šγ‚ŒγŸη²‰γͺγ©γ«ε½“γ¦γ‚‹γ¨ζ΄—ζ΅„γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γŠγΎγ‘γ¨γ—γ¦γ€ε‰―η”£η‰©γ‚‚εΎ—γ‚‰γ‚ŒγΎγ™οΌ\n現時点では水源を移動させるγγŒι›£γ—いと思うγγ§γ€ε·γ‚„ζ± γͺどγζ°΄ζΊγ‚’うまく使いましょう。", "quests.steam_age.steel_millstone.title": "γ‚ΉγƒγƒΌγƒ«θ£½ηŸ³θ‡Ό", "quests.steam_age.steel_millstone.subtitle": "侑倀あるをップグレード", - "quests.steam_age.steel_millstone.desc": "γ―γ‚‹γ‹γ«ι«˜γ„θƒ½εŠ›γ‚’ε‚™γˆγŸγ‚ΉγƒγƒΌγƒ«θ£½ηŸ³θ‡Όγ―γ€εŸΊζœ¬εž‹ηŸ³θ‡Όγ‹γ‚‰γδΎ‘ε€€γγ‚γ‚‹γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ§γ‚γ‚Šγ€γ‚ˆγ‚Šι€Ÿγη²‰η •γ™γ‚‹γŸγ‚γ«ι«˜ι€Ÿγ§ε›žθ»’γ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ‹γ‚‰ζ‰‹γ«ε…₯るさまざまγͺζ–°γ—γ„ι‰±ηŸ³γε‡¦η†γ«ζœ€ι©γ§γ™γ‚ˆοΌ\n\nγŸγ γ—γ€γΎγ ε‰―η”£η‰©γ―ε‡Ίγ¦γγΎγ›γ‚“γ€‚", + "quests.steam_age.steel_millstone.desc": "γ‚ΉγƒγƒΌγƒ«θ£½ηŸ³θ‡Όγ―γ€εŸΊζœ¬εž‹ηŸ³θ‡Όγ‹γ‚‰ε€§εΉ…γ«ζ€§θƒ½γŒε‘δΈŠγ—γ¦γŠγ‚Šγ€γ‚ˆγ‚Šζ—©γε‹•δ½œγ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ‹γ‚‰ζ‰‹γ«ε…₯るさまざまγͺζ–°γ—γ„ι‰±ηŸ³γε‡¦η†γ«ζœ€ι©γ§γ™γ‚ˆοΌ\n\nγŸγ γ—γ€γΎγ ε‰―η”£η‰©γ―ε‡Ίγ¦γγΎγ›γ‚“γ€‚", "quests.steam_age.steel_pump.title": "梲体処理", "quests.steam_age.steel_pump.subtitle": "γŠγ„γ—γ„γ‚Ήγƒ‘γ‚²γƒƒγƒ†γ‚£γƒ‘γ‚€γƒ—", - "quests.steam_age.steel_pump.desc.1": "鋼鉄時代では、をむテムだけでγͺく梲体もθ‡ͺε‹•εŒ–γ§γγΎγ™οΌ &3パカニカルポンプ&rは、樽、る぀ぼ、さらには水源ブロックγͺど、ほとんどすべてγγ‚‚γγ‹γ‚‰ζΆ²δ½“γ‚’ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚CreateまたはGregTechγζΆ²δ½“パむプγγ©γ‘γ‚‰γ‚‚δ½Ώη”¨γ§γγΎγ™γŒγ€γγ‚Œγžγ‚Œε‹•δ½œγŒε°‘γ—η•°γͺγ‚ŠγΎγ™γ€‚", - "quests.steam_age.steel_pump.desc.2": "Createγγƒ‘むプには内部梲体εΉι‡γŒγͺγγ€δ»£γ‚γ‚Šγ«ζΆ²δ½“γ‚’ζ¬ε‡Ίε…ˆγ‹γ‚‰ζ¬ε…₯ε…ˆγ«η›΄ζŽ₯θΌΈι€γ—γΎγ™γ€‚ιŠ…γ‚±γƒΌγ‚·γƒ³γ‚°γ§ε³γ‚―γƒͺックすると、ζŽ₯ηΆšγ‚’γ€Œγƒ­γƒƒγ‚―γ€γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γƒ¬γƒ³γƒγ§ε³γ‚―γƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€δΈ­θΊ«γŒθ¦‹γˆγ‚‹γ‚ˆγ†γ«γͺγ‚Šγ€ζ¨ͺγγƒ‘むプと぀γͺγŒγ‚‰γͺくγͺγ‚‹γγ§γ€θ€‡ζ•°γγƒ‘γ‚€γƒ—γ‚’δΊ’γ„γ«ιš£ζŽ₯してεŸθ‘Œγ§γγΎγ™γ€‚Createγγƒ‘γ‚€γƒ—γ‚’δ½Ώη”¨γ™γ‚‹γ«γ―γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒγƒ³γƒ—γ‚‚εΏ…θ¦γ§γ‚γ‚Šγ€ε„γƒγƒ³γƒ—γη―„囲は16ブロックγγΏγ§γ™γŒγ€1぀γγƒγƒ³γƒ—で耇数γζ¬ε‡Ίε£γ‹γ‚‰δΈ€εΊ¦γ«ζΆ²δ½“γ‚’ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚\nγΎγŸγ€ζΈ©εΊ¦εˆΆι™γ‚‚γ‚γ‚ŠγΎγ›γ‚“οΌ", - "quests.steam_age.steel_pump.desc.3": "一方、GregTechγγƒ‘むプには独θ‡ͺγε†…部梲体εΉι‡γŒγ‚γ‚Šγ€ζΆ²δ½“γŒε†…ιƒ¨γ«γ‚γ‚‹γ¨γƒγƒ³γƒ—γ―εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“γ€‚γ‚’γ‚€γƒ†γƒ γƒ‘γ‚€γƒ—γ¨εŒζ§˜γ«γ€γƒ¬γƒ³γƒγ§γ‚Ήγƒ‹γƒΌγ‚―ε³γ‚―γƒͺγƒƒγ‚―γ™γ‚‹γ“γ¨γ§δΈ€ζ–Ήι€šθ‘Œγ«γ§γγΎγ™γ€‚γγ†γ—γͺγ„γ¨γ€ζΆ²δ½“γŒγ‚γ£γ‘γ“γ£γ‘γ«γ„γ£γ¦γ—γΎγ†γŸγ‚γ€γ™γΉγ¦γγƒ‘γ‚€γƒ—γ§γγ‚Œγ‚’θ‘Œγ†γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚\n\nパカニカルポンプとGregTechγƒ‘γ‚€γƒ—γŒζŽ₯ηΆšγ•γ‚Œγ¦γ„γΎγ›γ‚“γ‹οΌŸγƒγƒ³γƒ—γ‚’2ε›žεθ»’γ•γ›γ‚‹γ¨(レンチで右クγƒͺック)γ€θ§£ζ±Ίγ™γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚", + "quests.steam_age.steel_pump.desc.1": "γ‚ΉγƒγƒΌγƒ«γŒθ§£η¦γ•γ‚Œγ‚‹γ¨γ€γ‚’γ‚€γƒ†γƒ γ γ‘γ§γͺγζΆ²δ½“γ‚‚ι‹ζ¬γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌ\n&3パカニカルポンプ&rは、樽、る぀ぼ、さらには水源ブロックγͺど、ほとんどすべてγγ‚‚γγ‹γ‚‰ζΆ²δ½“γ‚’ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚CreateまたはGregTechγζΆ²δ½“パむプγγ©γ‘らにも぀γͺγŒγ‚ŠγΎγ™γŒγ€γγ‚Œγžγ‚Œε‹•δ½œγŒε°‘γ—η•°γͺγ‚ŠγΎγ™γ€‚", + "quests.steam_age.steel_pump.desc.2": "Createγγƒ‘むプには内部梲体εΉι‡γŒγͺγγ€δ»£γ‚γ‚Šγ«ζΆ²δ½“γ‚’ζ¬ε‡Ίε…ˆγ‹γ‚‰ζ¬ε…₯ε…ˆγ«η›΄ζŽ₯輸送します。\nιŠ…γ‚±γƒΌγ‚·γƒ³γ‚°γ§ε³γ‚―γƒͺックすると、ζŽ₯ηΆšγ‚’γ€Œγƒ­γƒƒγ‚―γ€γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nレンチで右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€δΈ­θΊ«γŒθ¦‹γˆγ‚‹γ‚ˆγ†γ«γͺγ‚Šγ€ζ¨ͺγγƒ‘むプと぀γͺγŒγ‚‰γͺくγͺγ‚‹γγ§γ€θ€‡ζ•°γγƒ‘γ‚€γƒ—γ‚’δΊ’γ„γ«ιš£ζŽ₯γ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nCreateγγƒ‘γ‚€γƒ—γ‚’δ½Ώη”¨γ™γ‚‹γ«γ―γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒγƒ³γƒ—γ‚‚εΏ…θ¦γ§γ‚γ‚Šγ€ε„γƒγƒ³γƒ—γη―„囲は16ブロックγγΏγ§γ™γŒγ€1぀γγƒγƒ³γƒ—で耇数γζ¬ε‡Ίε£γ‹γ‚‰δΈ€εΊ¦γ«ζΆ²δ½“γ‚’ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚\nγΎγŸγ€ζΈ©εΊ¦εˆΆι™γ‚‚γ‚γ‚ŠγΎγ›γ‚“οΌ", + "quests.steam_age.steel_pump.desc.3": "一方、GregTechγγƒ‘むプには独θ‡ͺγε†…部梲体εΉι‡γŒγ‚γ‚Šγ€ζΆ²δ½“γŒε†…ιƒ¨γ«γ‚γ‚‹γ¨γƒγƒ³γƒ—γ―εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“γ€‚\nγ‚’γ‚€γƒ†γƒ γƒ‘γ‚€γƒ—γ¨εŒζ§˜γ«γ€γƒ¬γƒ³γƒγ§γ‚Ήγƒ‹γƒΌγ‚―ε³γ‚―γƒͺγƒƒγ‚―γ™γ‚‹γ“γ¨γ§δΈ€ζ–Ήι€šθ‘Œγ«γ§γγΎγ™γ€‚γγ†γ—γͺγ„γ¨γ€ζΆ²δ½“γŒγ‚γ£γ‘γ“γ£γ‘γ«γ„γ£γ¦γ—γΎγ†γŸγ‚γ€γ™γΉγ¦γγƒ‘γ‚€γƒ—γ§γγ‚Œγ‚’θ‘Œγ†γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚\n\nパカニカルポンプとGregTechγƒ‘γ‚€γƒ—γŒζŽ₯ηΆšγ•γ‚ŒγΎγ›γ‚“γ‹οΌŸγƒγƒ³γƒ—γ‚’2ε›žεθ»’γ•γ›γ‚‹γ¨(レンチで右クγƒͺック)θ§£ζ±Ίγ™γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚", "quests.steam_age.mold_table.title": "ι«˜η‚‰γθ‡ͺε‹•εŒ–", - "quests.steam_age.mold_table.subtitle": "EBFγŒζ‹γ—γ„γ­", - "quests.steam_age.mold_table.desc.1": "しばらくγι–“、&3山ほどγ&rι‹Όι‰„γŒεΏ…θ¦γ«γͺγ‚‹γŸγ‚γ€ι«˜η‚‰γθ‡ͺε‹•εŒ–γ―γ—γ¦γŠγ„γŸζ–ΉγŒγ„γ„γ§γ—γ‚‡γ†γ€‚ γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒγƒ³γƒ—γ―γ€ι«˜η‚‰γ‹γ‚‰(γ‚‹γ€γΌγ«ζ»΄δΈ‹γ™γ‚‹γ‚ˆγ‚Šγ‚‚γ―γ‚‹γ‹γ«ι€Ÿγ)ι‡‘ε±žγ‚’η›΄ζŽ₯Mold_Tableγ«ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγ€γƒγƒ³γƒ—γ‚’ι€šγ£γŸι‡‘ε±žγ―εž‹γ«ζ΅γ•γ‚Œγ‚‹γ¨ηž¬ζ™‚γ«ε†·ε΄γ•γ‚ŒγΎγ™οΌ 欑に、シγƒ₯γƒΌγƒˆγΎγŸγ―γƒ›γƒƒγƒ‘γƒΌγ‚’Mold_TableγηœŸδΈ‹γ«η½γ„γ¦γ€γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚γγ“γ‹γ‚‰γ€ιŠ‘ι‰„γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’Helve_Hammerγ«ι€γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", - "quests.steam_age.mold_table.desc.2": "εΏ…θ¦γ«εΏœγ˜γ¦γ€γ‚·γƒ₯γƒΌγƒˆγ‚’δ½Ώη”¨γ—γ¦γ‚’γ‚€γƒ†γƒ γ‚’ι«˜η‚‰γδΈ­γ«γ„γ‚ŒγŸγ‚Šγ€γƒ‡γƒ—γƒ­γ‚€γƒ€γƒΌγ‚’δ½Ώη”¨γ—γ¦θ‡ͺε‹•ηš„γ«γ΅γ„γ”γ‚’δ½œε‹•γ•γ›γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚γ΅γ„γ”γ‚’δ½Ώγ„γ™γŽγ‚‹γ¨γ€ηΎ½ε£γθ€δΉ…εŠ›γŒγ”γ‚Šγ”γ‚Šε‰Šγ‚Œγ¦γ„γγΎγ™γŒγ€γ‚’むテムパむプで新しいもγγ‚’θ‡ͺ動搬ε…₯できます。\n\nγƒ‘γ‚«γƒ‹γ‚«γƒ«γƒγƒ³γƒ—γ‚’εˆ©η”¨γ—γŸζΆ²δ½“ζ¬ε‡Ίγ―γ€ζΆ²δ½“γƒγƒ«γƒ–γͺγ©γ§ζ¬ε‡Ίγ‚’εˆΆεΎ‘γ™γ‚‹γ“γ¨γ§γ€γ‚‹γ€γΌγ«δ½Ώγ†γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.steam_age.mold_table.subtitle": "EBFγŒζ‹γ—γ„γ‚ˆ...", + "quests.steam_age.mold_table.desc.1": "しばらくγι–“、&3山ほどγ&rι‹Όι‰„γŒεΏ…θ¦γ«γͺγ‚‹γŸγ‚γ€ι«˜η‚‰γθ‡ͺε‹•εŒ–γ―γ—γ¦γŠγ„γŸζ–ΉγŒγ„γ„γ§γ—γ‚‡γ†γ€‚\nγƒ‘γ‚«γƒ‹γ‚«γƒ«γƒγƒ³γƒ—γ‚’δ½Ώγˆγ°γ€ι«˜η‚‰γ‹γ‚‰(γ‚‹γ€γΌγ«ζ»΄δΈ‹γ™γ‚‹γ‚ˆγ‚Šγ‚‚γ―γ‚‹γ‹γ«ι€Ÿγ)ιŠ‘ι‰„γ‚’η›΄ζŽ₯ι‹³εž‹ε°γ«ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγ€γƒγƒ³γƒ—γ‚’ι€šγ£γŸι‡‘ε±žγ―εž‹γ«ζ΅γ•γ‚Œγ‚‹γ¨ηž¬ζ™‚γ«ε†·ε΄γ•γ‚ŒγΎγ™οΌ\nそして、シγƒ₯γƒΌγƒˆγΎγŸγ―γƒ›γƒƒγƒ‘γƒΌγ‚’ι‹³εž‹ε°γηœŸδΈ‹γ«η½γ„γ¦γ€γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’ε–γ‚Šε‡Ίγ™γ“γ¨γŒγ§γγΎγ™γ€‚γγ“γ‹γ‚‰γ€ιŠ‘ι‰„γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’Helve_Hammerに送ることで鋼鉄γθ‡ͺε‹•εŒ–γŒγ§γγΎγ™γ€‚", + "quests.steam_age.mold_table.desc.2": "εΏ…θ¦γ§γ‚γ‚Œγ°γ€γ‚·γƒ₯γƒΌγƒˆγ‚’δ½Ώη”¨γ—γ¦γ‚’γ‚€γƒ†γƒ γ‚’ι«˜η‚‰γδΈ­γ«γ„γ‚ŒγŸγ‚Šγ€γƒ‡γƒ—γƒ­γ‚€γƒ€γƒΌγ‚’δ½Ώη”¨γ—γ¦θ‡ͺε‹•ηš„γ«γ΅γ„γ”γ‚’δ½œε‹•γ•γ›γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\nγ΅γ„γ”γ‚’δ½Ώγ„γ™γŽγ‚‹γ¨γ€ηΎ½ε£γθ€δΉ…εŠ›γŒγ”γ‚Šγ”γ‚Šε‰Šγ‚Œγ¦γ„γγΎγ™γŒγ€γ‚’むテムパむプやホッパーで新しいもγγ‚’θ£œε……γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγƒ‘γ‚«γƒ‹γ‚«γƒ«γƒγƒ³γƒ—γ‚’εˆ©η”¨γ—γŸζΆ²δ½“ζ¬ε‡Ίγ―γ€ζΆ²δ½“γƒγƒ«γƒ–γͺγ©γ§ζ¬ε‡Ίγ‚’εˆΆεΎ‘γ™γ‚‹γ“γ¨γ§γ€γ‚‹γ€γΌγ«δ½Ώγ†γ“γ¨γ‚‚γ§γγΎγ™γ€‚", "quests.steam_age.fluid_pipes.title": "梲体パむプ", "quests.steam_age.fluid_pipes.subtitle": "ζΆ²δ½“γ€ζ°—δ½“γ€δΈ‘ε―ΎεΏœ", - "quests.steam_age.fluid_pipes.desc.1": "&b梲体パむプ&rγ―γ€ζ©Ÿζ’°ι–“γ§&7θ’Έζ°—&rを輸送します。\n\n各パむプには、mB/t単位γη‰Ήεšγι‹ζ¬ι€ŸεΊ¦εˆΆι™γ¨γ€&6ζΈ©εΊ¦εˆΆι™&rγŒγ‚γ‚ŠγΎγ™γ€‚δΎ‹γˆγ°γ€ζœ¨γγƒ‘むプは蒸気γη†±γ«θ€γˆγ‚‰γ‚ŒγΎγ›γ‚“。現時点では気にしγͺγγ¦γ‚‚γ„γ„γ§γ™γŒγ€δΈ€ιƒ¨γγƒ‘γ‚€γƒ—γ«γ―γ€ε„ζζ–™γ«εΏœγ˜γŸη‰Ήζœ‰γ&b耐性&rγŒγ‚γ‚ŠγΎγ™γ€‚\n\n各材料γγƒ‘むプにはいく぀かγγ‚΅γ‚€γ‚ΊγŒγ‚γ‚ŠγΎγ™γ€‚γƒ‘γ‚€γƒ—γŒε€ͺγ„γ»γ©γ€ι‹ζ¬ι€ŸεΊ¦γ―&a高く&rγͺγ‚ŠγΎγ™γŒγ€δ½œζˆγ‚³γ‚Ήγƒˆγ―&d高侑に&rγͺγ‚ŠγΎγ™γ€‚γŸγ¨γˆγ°γ€&6ι€šεΈΈγγƒ–ロンズ梲体パむプ&rは120mB/tを軒送します。(1,200mBγε†…ιƒ¨γƒγƒƒγƒ•γ‚‘γƒΌγ‚‚γ‚γ‚ŠγΎγ™οΌ)\n\nζœ€εˆγ―γ€ε†·γŸγ„ζΆ²δ½“γ«γ―ζœ¨θ£½γƒ‘γ‚€γƒ—γ€η†±γ„ζΆ²δ½“γ«γ―γƒ–γƒ­γƒ³γ‚Ίγƒ‘γ‚€γƒ—γ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚", - "quests.steam_age.fluid_pipes.desc.2": "&aパヒ:&r 1秒は20γƒ†γ‚£γƒƒγ‚―γ§γ™γ€‚γ“γ‚Œγ―γ‚΅γƒΌγƒγƒΌγ«ι…ε»ΆγŒη™Ίη”Ÿγ—γ¦γ„γͺいときγθ©±γ§γ™γŒ...\n\n&d注:&r GT6スタむルγγƒ‘γ‚€γƒ—γŒζœ‰εŠΉγ«γͺγ£γ¦γ„γΎγ™γ€‚γ€γΎγ‚Šγ€γƒ‘γ‚€γƒ—γ‚’ι…η½γ™γ‚‹γ¨γ€γƒ‘γ‚€γƒ—γ‚’η½γ„γŸι’γγƒ–ロックにγγΏζŽ₯ηΆšγ•γ‚ŒγΎγ™γ€‚γ‚‚γ£γ¨γ„γ‚γ‚“γͺブロックに぀γͺγ’γŸγ„γͺら、パむプにレンチを使用します。\n\nγƒ¬γƒ³γƒγ§γ‚·γƒ•γƒˆε³γ‚―γƒͺックして、側青からγε…₯εŠ›γ‚’η„‘εŠΉγ«γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚γ“γ‚Œγ―γ€ζΆ²δ½“γŒζœ›γΎγ—γγͺγ„ζ–Ήε‘γ«η§»ε‹•γ™γ‚‹γ“γ¨γ‚’ι˜²γγγ«ε½Ήη«‹γ‘ます。", + "quests.steam_age.fluid_pipes.desc.1": "&b梲体パむプ&rγ―γ€ζ©Ÿζ’°ι–“γ§&7θ’Έζ°—&rを輸送します。\n\n各パむプには、mB/t単位γη‰Ήεšγι‹ζ¬ι€ŸεΊ¦εˆΆι™γ¨γ€&6ζΈ©εΊ¦εˆΆι™&rγŒγ‚γ‚ŠγΎγ™γ€‚δΎ‹γˆγ°γ€ζœ¨γγƒ‘むプは蒸気γη†±γ«θ€γˆγ‚‰γ‚ŒγΎγ›γ‚“。\n現時点では気にしγͺγγ¦γ‚‚γ„γ„γ§γ™γŒγ€δΈ€ιƒ¨γγƒ‘γ‚€γƒ—γ«γ―γ€ε„ζζ–™γ«εΏœγ˜γŸη‰Ήζœ‰γ&b耐性&rγŒγ‚γ‚ŠγΎγ™γ€‚\n\n各材料γγƒ‘むプにはいく぀かγγ‚΅γ‚€γ‚ΊγŒγ‚γ‚ŠγΎγ™γ€‚γƒ‘γ‚€γƒ—γŒε€ͺγ„γ»γ©γ€ι‹ζ¬ι€ŸεΊ¦γ―&a高く&rγͺγ‚ŠγΎγ™γŒγ€δ½œζˆγ‚³γ‚Ήγƒˆγ―&d高侑に&rγͺγ‚ŠγΎγ™γ€‚γŸγ¨γˆγ°γ€&6ι€šεΈΈγγƒ–ロンズ梲体パむプ&rは120mB/tを軒送します。(1,200mBγε†…ιƒ¨γƒγƒƒγƒ•γ‚‘γƒΌγ‚‚γ‚γ‚ŠγΎγ™οΌ)\n\nζœ€εˆγ―γ€ε†·γŸγ„ζΆ²δ½“γ«γ―ζœ¨θ£½γƒ‘γ‚€γƒ—γ€η†±γ„ζΆ²δ½“γ«γ―γƒ–γƒ­γƒ³γ‚Ίγƒ‘γ‚€γƒ—γ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚", + "quests.steam_age.fluid_pipes.desc.2": "&aパヒ:&r1秒は20γƒ†γ‚£γƒƒγ‚―γ§γ™γ€‚γ“γ‚Œγ―γ‚΅γƒΌγƒγƒΌγ«ι…ε»ΆγŒη™Ίη”Ÿγ—γ¦γ„γͺいときγθ©±γ§γ™γŒ...\n\n&d注:&r GT6スタむルγγƒ‘γ‚€γƒ—γŒζœ‰εŠΉγ«γͺγ£γ¦γ„γΎγ™γ€‚γ€γΎγ‚Šγ€γƒ‘γ‚€γƒ—γ‚’ι…η½γ™γ‚‹γ¨γ€γƒ‘γ‚€γƒ—γ‚’η½γ„γŸι’γγƒ–ロックにγγΏζŽ₯ηΆšγ•γ‚ŒγΎγ™γ€‚γ‚‚γ£γ¨γ„γ‚γ‚“γͺブロックに぀γͺγ’γŸγ„γͺら、パむプにレンチを使用しましょう。\n\nパむプをレンチでスニーク右クγƒͺγƒƒγ‚―γ—γ¦γ€δΈ€ζ–Ήι€šθ‘Œγ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ―γ€ζΆ²δ½“γŒζœ›γΎγ—γγͺγ„ζ–Ήε‘γ«η§»ε‹•γ™γ‚‹γ“γ¨γ‚’ι˜²γγγ«ε½Ήη«‹γ‘ます。", "quests.steam_age.fluid_drums.title": "εŠΉηŽ‡ηš„γͺζΆ²δ½“γ‚Ήγƒˆγƒ¬γƒΌγ‚Έ", "quests.steam_age.fluid_drums.subtitle": "木γζ¨½γ«θžγ‘γŸι‹Όγ‚’ε…₯γ‚Œγ¦γŠγ‘γ‚‹γ¨ζ€γ„γΎγ™οΌŸ", - "quests.steam_age.fluid_drums.desc.1": "&6TFG&rをやっていて、扱う梲体γη¨ι‘žγε€šγ•に&4εœ§ε€’&rγ•γ‚Œγ¦γΎγ›γ‚“γ‹οΌŸ γγ‚Œγ‚‰γ‚’δΏη‘γ—γ¦γŠγζ–Ήζ³•γ‚’ζŽ’γ—γ¦γ„γŸγ‚‰θͺ­γ‚“でください。\n\nご紹介しましょう... &aドラム&rοΌγ“γ‚Œγ‚‰γ«γ―ε€§γγͺ内部εΉι‡γŒγ‚γ‚ŠγΎγ™γ€‚&aドラム&rγ―ε£Šγ•γ‚Œγ¦γ‚‚ε†…ιƒ¨γζΆ²δ½“γ‚’&dδΏζŒγ—γΎγ™&rγ€‚γ‚½γƒ•γƒˆγƒžγƒ¬γƒƒγƒˆγ§ε³γ‚―γƒͺックすると、ドラムは下方向に内εΉη‰©γ‚’θ‡ͺε‹•ζ¬ε‡Ίγ—γ¦γγ‚ŒγΎγ™γ€‚", - "quests.steam_age.fluid_drums.desc.2": "&l&3伝承では...&r&o こγγƒ‰γƒ©γƒ γŸγ‘は、εŸγ―GregTech6γ‹γ‚‰η§»ζ€γ•γ‚ŒγŸγ‚‚γγͺγ‚“γ γœγ€‚...といいます。", + "quests.steam_age.fluid_drums.desc.1": "&6TFG&rをやっていて、扱う梲体γη¨ι‘žγε€šγ•に&4εœ§ε€’&rγ•γ‚Œγ¦γΎγ›γ‚“γ‹οΌŸ γγ‚Œγ‚‰γ‚’δΏη‘γ—γ¦γŠγζ–Ήζ³•γ‚’ζŽ’γ—γ¦γ„γŸγ‚‰θͺ­γ‚“でください。\n\nご紹介しましょう... &aドラム&rοΌγ“γ‚Œγ‚‰γ«γ―ε€§γγͺ内部εΉι‡γŒγ‚γ‚ŠγΎγ™γ€‚&aドラム&rγ―ε£Šγ•γ‚Œγ¦γ‚‚ε†…ιƒ¨γζΆ²δ½“γ‚’&dδΏζŒγ—γΎγ™&rγ€‚γ‚½γƒ•γƒˆγƒžγƒ¬γƒƒγƒˆγΎγŸγ―γ‚Ήγ‚―γƒͺγƒ₯ードラむバーで右クγƒͺックすると、ドラムは下方向に内εΉη‰©γ‚’θ‡ͺε‹•ζ¬ε‡Ίγ—γ¦γγ‚ŒγΎγ™γ€‚", + "quests.steam_age.fluid_drums.desc.2": "&l&3δ½™θ«‡οΌš&r&oこγγƒ‰γƒ©γƒ γŸγ‘は、εŸγ―GregTech6γ‹γ‚‰η§»ζ€γ•γ‚ŒγŸγ‚‚γγͺγ‚“γ γœγ€‚", "quests.steam_age.boilers.title": "θ’Έζ°—γƒœγ‚€γƒ©γƒΌ", "quests.steam_age.boilers.subtitle": "γƒγƒΌγ‚Ώγƒ–γƒ«γ‚΅γ‚¦γƒŠ", - "quests.steam_age.boilers.desc.1": "θ’Έζ°—ζ©Ÿζ’°γ«γ―ε‹•εŠ›γ§γ‚γ‚‹θ’Έζ°—γ‚’δΎ›η΅¦γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌγγθ’Έζ°—γ‚’η”Ÿζˆγ™γ‚‹ζ–Ήζ³•γ―3γ€γ‚γ‚ŠγΎγ™γ€‚ &3ε›Ίε½’η‡ƒζ–™η”¨ι«˜εœ§γƒœγ‚€γƒ©γƒΌ&rγ―ηŸ³η‚­γ‚„ζœ¨η‚­γͺどγε›Ίε½’燃料を受けε…₯γ‚Œγ€&3ζΆ²δ½“η‡ƒζ–™η”¨ι«˜εœ§γƒœγ‚€γƒ©γƒΌ&rはクレγ‚ͺγ‚½γƒΌγƒˆγ‚„ζΊΆε²©γͺどγζΆ²δ½“を受けε…₯γ‚Œγ€&3ι«˜εœ§γ‚½γƒΌγƒ©γƒΌγƒœγ‚€γƒ©γƒΌ&rγ―η‡ƒζ–™γ‚’εΏ…θ¦γ¨γ—γΎγ›γ‚“γŒγ€ζ—₯δΈ­γγΏε‹•δ½œγ—γΎγ™γ€‚ γ©γ‚Œγ‚’ιΈγΆγ‹γ―γ‚γͺγŸζ¬‘η¬¬γ§γ™γŒγ€γ¨γ‚Šγ‚γˆγšγ―ζΆ²δ½“γƒœγ‚€γƒ©γƒΌγ‚’γŠε‹§γ‚γ—γΎγ™γ€‚\n\nθ’Έζ°—ζ©Ÿζ’°γ«γ―γ™γΉγ¦ζŽ’ζ°—ε£γŒγ‚γ‚Šγ€ζ­£εΈΈγ«ε‹•δ½œγ™γ‚‹γ«γ―γγ‚ŒγŒε‘žγŒγ£γ¦γ„γͺγ„εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", - "quests.steam_age.boilers.desc.2": "&aθ­¦ε‘Š:&r γƒœγ‚€γƒ©γƒΌγδΈ­θΊ«γŒη©Ίγ§ι«˜ζΈ©γ«γͺっているときに水をε…₯γ‚Œγ‚ˆγ†γ¨γ™γ‚‹γ¨γ€&bηˆ†η™Ίγ—γΎγ™&rγ€‚γƒγƒ³γƒ—γ§εΈΈγ«ζ°΄γ‚’δΎ›η΅¦γ—ηΆšγ‘γ‚‹γγŒζœ€ε–„γ§γ™γŒγ€γƒ–γƒ­γƒƒγ‚―γ‚’ε£Šγ—γ¦ε†θ¨­η½γ—て温度をγƒͺγ‚»γƒƒγƒˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.steam_age.boilers.desc.1": "θ’Έζ°—ζ©Ÿζ’°γ«γ―ε‹•εŠ›γ§γ‚γ‚‹θ’Έζ°—γ‚’δΎ›η΅¦γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌγγθ’Έζ°—γ‚’η”Ÿζˆγ™γ‚‹ζ–Ήζ³•γ―3γ€γ‚γ‚ŠγΎγ™γ€‚\n\n&3ε›Ίε½’η‡ƒζ–™η”¨ι«˜εœ§γƒœγ‚€γƒ©γƒΌ&rγ―ηŸ³η‚­γ‚„ζœ¨η‚­γͺどγε›Ίε½’燃料を受けε…₯γ‚Œγ€&3ζΆ²δ½“η‡ƒζ–™η”¨ι«˜εœ§γƒœγ‚€γƒ©γƒΌ&rはクレγ‚ͺγ‚½γƒΌγƒˆγ‚„ζΊΆε²©γͺどγζΆ²δ½“燃料を受けε…₯γ‚Œγ€&3ι«˜εœ§γ‚½γƒΌγƒ©γƒΌγƒœγ‚€γƒ©γƒΌ&rγ―η‡ƒζ–™γ‚’εΏ…θ¦γ¨γ—γΎγ›γ‚“γŒγ€ζ—₯δΈ­γγΏε‹•δ½œγ—γΎγ™γ€‚\nγ©γ‚Œγ‚’ιΈγΆγ‹γ―γ‚γͺγŸζ¬‘η¬¬γ§γ™γŒγ€γ¨γ‚Šγ‚γˆγšγ―ζΆ²δ½“γƒœγ‚€γƒ©γƒΌγ‚’γŠε‹§γ‚γ—γΎγ™γ€‚\n\nθ’Έζ°—ζ©Ÿζ’°γ«γ―γ™γΉγ¦ζŽ’ζ°—ε£γŒγ‚γ‚Šγ€ζ­£εΈΈγ«ε‹•δ½œγ™γ‚‹γ«γ―γγ‚ŒγŒε‘žγŒγ£γ¦γ„γͺγ„εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.steam_age.boilers.desc.2": "&aθ­¦ε‘ŠοΌš&rγƒœγ‚€γƒ©γƒΌγδΈ­θΊ«γŒη©Ίγ§ι«˜ζΈ©γ«γͺっているときに水をε…₯γ‚Œγ‚ˆγ†γ¨γ™γ‚‹γ¨γ€&bηˆ†η™Ίγ—γΎγ™&rγ€‚γƒγƒ³γƒ—γ§εΈΈγ«ζ°΄γ‚’δΎ›η΅¦γ—ηΆšγ‘γ‚‹γγŒζœ€ε–„γ§γ™γŒγ€γƒ–γƒ­γƒƒγ‚―γ‚’ε£Šγ—γ¦ε†θ¨­η½γ™γ‚‹γ“とで温度をγƒͺγ‚»γƒƒγƒˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", "quests.steam_age.boilers.tasks": "ι«˜εœ§θ’Έζ°—γƒœγ‚€γƒ©γƒΌ", "quests.steam_age.steam_bloomery.title": "θ’Έζ°—εΌε‘Šι‰„η‚‰", "quests.steam_age.steam_bloomery.subtitle": "ε‘Šι‰„η‚‰γε”ηˆΆ", - "quests.steam_age.steam_bloomery.desc": "ιŒ¬ι‰„γ―εΈΈγ«ε€§ι‡γ«εΏ…θ¦γ«θ¦ζ±‚γ•γ‚ŒγΎγ™γ€‚γγ“γ§γ€ε‘Šι‰„η‚‰γ‚’θ‡ͺε‹•εŒ–γ—γ¦γΏγΎγ›γ‚“γ‹οΌŸιŒ¬ι‰„γ‚’εŠΉηŽ‡ηš„γ«θ‡ͺε‹•εŒ–γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚‹γγ―、ι₯γ‹ε…ˆγLV時代γγ“γ¨γ§γ™γ€‚θ’Έζ°—εΌε‘Šι‰„η‚‰γ―、叀いTFCε‘Šι‰„η‚‰γ‚’θ‡ͺε‹•εŒ–γ—γ€γ‚ˆγ‚Šι«˜ι€Ÿγ«ε‡¦η†γ™γ‚‹ζ–°γ—γ„γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ§γ™οΌγ‚³γƒΌγ‚―γ‚Ήη‚‰γ¨εŒζ§˜γ«γ€EMIδΈŠγ§γ€γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζƒ…ε ±γ‚’θ‘¨η€Ίγ§γγΎγ™γ€‚ε€‹γ€…γγƒ–ロックをクγƒͺγƒƒγ‚―γ—γ¦γ€ε„ε ΄ζ‰€γ§ζœ‰εŠΉγͺγ‚‚γγ‚’η’Ίθͺγ—ましょう。", + "quests.steam_age.steam_bloomery.desc": "ιŒ¬ι‰„γ―εΈΈγ«ε€§ι‡γ«θ¦ζ±‚γ•γ‚ŒγΎγ™γ€‚γ¨γ„γ†γ“γ¨γ§γ€ε‘Šι‰„η‚‰γ‚’θ‡ͺε‹•εŒ–γ—γ¦γΏγΎγ›γ‚“γ‹οΌŸ\nιŒ¬ι‰„γ‚’εŠΉηŽ‡ηš„γ«θ‡ͺε‹•εŒ–γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚‹γγ―、ι₯γ‹ε…ˆγLV時代γγ“γ¨γ§γ™γ€‚θ’Έζ°—εΌε‘Šι‰„η‚‰γ―、叀いTFCε‘Šι‰„η‚‰γ‚’θ‡ͺε‹•εŒ–γ—γ€γ‚ˆγ‚Šι«˜ι€Ÿγ«ε‡¦η†γ—γ¦γγ‚Œγ‚‹ζ–°γ—γ„γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ§γ™οΌ\nγ‚³γƒΌγ‚―γ‚Ήη‚‰γ¨εŒζ§˜γ«γ€EMIδΈŠγ§γ€γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζƒ…ε ±γ‚’θ‘¨η€Ίγ§γγΎγ™γ€‚ε€‹γ€…γγƒ–ロックをクγƒͺγƒƒγ‚―γ—γ¦γ€ε„ε ΄ζ‰€γ§ζœ‰εŠΉγͺγ‚‚γγ‚’η’Ίθͺγ—ましょう。", "quests.steam_age.steam_furnace.title": "ι«˜εœ§θ’Έζ°—εΌγ‹γΎγ©", "quests.steam_age.steam_furnace.subtitle": "ι«˜εœ§θ’Έζ°—εΌγ‹γΎγ©γ―γ€γ‹γΎγ©γ§γ™", - "quests.steam_age.steam_furnace.desc": "γ‚€γƒ³γ‚΄γƒƒγƒˆγΈγθ£½ιŒ¬γ‚’ζ₯½γ«γ—γŸγ„γ§γ™γ‹οΌŸ&3ι«˜εœ§θ’Έζ°—εΌγ‹γΎγ©&rを使いましょう! 副産物γͺγ—γ§γ€ε€šγγι‰±ηŸ³γ‚„η²‰γ‚’ζ‰‹ζ—©γγ‚€γƒ³γ‚΄γƒƒγƒˆγε½’γ«ε€‰γˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.steam_age.steam_furnace.desc": "γ‚€γƒ³γ‚΄γƒƒγƒˆγΈγθ£½ιŒ¬γ‚’ζ₯½γ«γ—γŸγ„γ§γ™γ‹οΌŸ&3ι«˜εœ§θ’Έζ°—εΌγ‹γΎγ©&rを使いましょう!\n副産物γͺγ—γ§γ€ε€šγγι‰±ηŸ³γ‚„η²‰γ‚’ζ‰‹ζ—©γγ‚€γƒ³γ‚΄γƒƒγƒˆγε½’γ«ε€‰γˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.steam_age.steam_oven.title": "蒸気式γ‚ͺーブン", "quests.steam_age.steam_oven.subtitle": "θ’Έζ°—εΌη ΄η •ζ©ŸγγŠε…„けゃん", - "quests.steam_age.steam_oven.desc.1": "&o...γ„γ‚„γ€εΌŸγ‹οΌŸγΎγ‚γ„γ„γ‚„&r\n\n&3蒸気式γ‚ͺーブン&rは、&6倧量γγ‚’むテムをζ₯½γ«θ£½ιŒ¬γ—γŸγ„γ¨γγ«ζœ€ι©γͺγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ©Ÿζ’°γ§γ™γ€‚&rγ‹γΎγ©γ‚’δΈ¦γΉγ¦γ€ζ‰‹ε‹•γ§ε–γ‚Šε‡Ίγ—γŸγ‚Šγ€η‡ƒζ–™γ‚’θ£œη΅¦γ—γŸγ‚Šγ™γ‚‹εΏ…θ¦γ―γ€γ‚‚γ―γ‚„εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“οΌ\n\nθ’Έζ°—γ«γ‚ˆγ£γ¦δ½Žγ‚³γ‚Ήγƒˆγ§γ€δΈ€εΊ¦γ«ζœ€ε€§8぀γγ‚’γ‚€γƒ†γƒ γ‚’θ£½ιŒ¬γ™γ‚‹δΈ¦εˆ—γ‹γΎγ©γ¨γ—γ¦ζ©Ÿθƒ½γ—γ¦γγ‚ŒγΎγ™γ€‚", - "quests.steam_age.steam_oven.desc.2": "&l&3伝承では...&r&o こγγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ€ε…„εΌŸγθ’Έζ°—εΌη ΄η •ζ©Ÿγ«γ‚ˆγδΌΌγ¦γ‚‹γ γ‚οΌŸγ§γ‚‚εŸγ―GregTechとかをドγ‚ͺγƒ³γ‹γ‚‰η§»ζ€γ•γ‚ŒγŸγ‚‚γγ˜γ‚ƒγͺいんだって。εŸγθ¦ͺは、叀くは1.4.7γRailcraftγθ’Έζ°—γ‚ͺーブンγͺんだとさ!...といいます。", + "quests.steam_age.steam_oven.desc.1": "&o...γ„γ‚„γ€εΌŸγ‹οΌŸγΎγ‚γ„γ„γ‚„&r\n\n&3蒸気式γ‚ͺーブン&rは、&6倧量γγ‚’むテムをζ₯½γ«θ£½ιŒ¬γ—γŸγ„γ¨γγ«ζœ€ι©γͺγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ©Ÿζ’°γ§γ™&r。\nγ‹γΎγ©γ‚’δΈ¦γΉγ¦γ€ζ‰‹δ½œζ₯­γ§ε–γ‚Šε‡Ίγ—γŸγ‚Šγ€η‡ƒζ–™γ‚’θ£œη΅¦γ—γŸγ‚Šγ™γ‚‹εΏ…θ¦γ―γ€γ‚‚γ―γ‚„εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“οΌ\n\nθ’Έζ°—γ«γ‚ˆγ£γ¦δ½Žγ‚³γ‚Ήγƒˆγ§γ€δΈ€εΊ¦γ«ζœ€ε€§8぀γγ‚’γ‚€γƒ†γƒ γ‚’θ£½ιŒ¬γ™γ‚‹δΈ¦εˆ—γ‹γΎγ©γ¨γ—γ¦ζ©Ÿθƒ½γ—γ¦γγ‚ŒγΎγ™γ€‚", + "quests.steam_age.steam_oven.desc.2": "&l&3δ½™θ«‡οΌš&r&oこγγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ€ε…„εΌŸγθ’Έζ°—εΌη ΄η •ζ©Ÿγ«γ‚ˆγδΌΌγ¦γͺγ„οΌŸγ§γ‚‚εŸγ―GregTechとかをドγ‚ͺγƒ³γ‹γ‚‰η§»ζ€γ•γ‚ŒγŸγ‚‚γγ˜γ‚ƒγͺいんだって。εŸγθ¦ͺは、叀くは1.4.7γRailcraftγθ’Έζ°—γ‚ͺーブンγͺγ‚“γ γ¨οΌη―€ζ“γŒγͺいね!", "quests.steam_age.steam_macerator.title": "ι«˜εœ§θ’Έζ°—εΌη²‰η •ζ©Ÿ", "quests.steam_age.steam_macerator.subtitle": "ι«˜εœ§θ’Έζ°—εΌη²‰η •ζ©Ÿγ―γ€η²‰η •γ‚’γ—γΎγ™", - "quests.steam_age.steam_macerator.desc": "こγζ©Ÿζ’°γ―GreateγηŸ³θ‡Όγ¨γΎγ£γŸγεŒγ˜γ“γ¨γ‚’θ‘Œγ†γŸγ‚γ€γ™γ§γ«γγ‚Œγ‚’ζŒγ£γ¦γ„γ‚‹ε ΄εˆγ―、εŸγγ¨γ“γ‚γ“γ‚Œγ‚’ζ§‹η―‰γ™γ‚‹ζ„ε‘³γ―γ‚γΎγ‚Šγ‚γ‚ŠγΎγ›γ‚“γ€‚δΈ€εΏœγ€γ“γζ™‚η‚Ήγ§γ―ι€²θ‘Œγ«γ©γ‘γ‚‰γ‹δΈ€ζ–ΉγŒεΏ…θ¦γ§γ™γ€‚γ―γ„γ€γγ†γ§γ™γ€‚ε‰―η”£η‰©γ―ε‡ΊεŠ›γ—γΎγ›γ‚“γ€‚&6HV&rまで待けましょう。", + "quests.steam_age.steam_macerator.desc": "こγζ©Ÿζ’°γ―GreateγηŸ³θ‡Όγ¨ε½Ήε‰²γŒγΎγ£γŸγεŒγ˜γͺγŸγ‚γ€γ™γ§γ«γγ‚Œγ‚’ζŒγ£γ¦γ„γ‚‹ε ΄εˆγ―γ€εŸγγ¨γ“γ‚γ“γ‚Œγ‚’γ€γγ‚‹ζ„ε‘³γ―γ‚γΎγ‚Šγ‚γ‚ŠγΎγ›γ‚“γ€‚δΈ€εΏœγ€γ“γζ™‚η‚Ήγ§γ―ι€²θ‘Œγ«γ©γ‘γ‚‰γ‹δΈ€ζ–ΉγŒεΏ…θ¦γ§γ™γ€‚\nγ―γ„γ€γγ†γ§γ™γ€‚ε‰―η”£η‰©γ―ε‡ΊεŠ›γ—γΎγ›γ‚“γ€‚&6HV&rまで待けましょう。", "quests.steam_age.steam_grinder.title": "θ’Έζ°—εΌη ΄η •ζ©Ÿ", "quests.steam_age.steam_grinder.subtitle": "ι«˜εœ§θ’Έζ°—εΌη²‰η •ζ©Ÿγε¦Ή", "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": "ι«˜εœ§θ’Έζ°—εΌη ΄η •ζ©Ÿγ―δΈ€γƒ–γƒ­γƒƒγ‚―γδΈΈηŸ³η”Ÿη”£ζ©Ÿγ§γ™γ€‚ε²©γΎγŸγ―δΈΈηŸ³γ‚’ε…₯γ‚Œγ‚Œγ°γ€γ‚γšγ‹γͺθ’Έζ°—γγ‚³γ‚Ήγƒˆγ§ε€šγγηŸ³γ‚’η”Ÿζˆγ§γγΎγ™γ€‚\nι€²θ‘Œγ«γ―εΏ…θ¦γͺγ„γ§γ™γŒγ€γƒ¬γƒ³γ‚¬γ‚’γŸγγ•γ‚“δ½œγ‚ŠγŸγ„ε ΄εˆγͺどは、こγζ©Ÿζ’°γŒζœ€ι©γ§γ™γ€‚", "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γ‚’γ‚ˆγ‚Šδ½Žγ‚³γ‚Ήγƒˆγ«δ½œζˆγ—γΎγ™:&63぀γγ‚€γƒ³γ‚΄γƒƒγƒˆγ§2枚γγƒ—γƒ¬γƒΌγƒˆγŒοΌ&rγ€‚γŠεΎ—γ§γ™γ­οΌ\n\nγγ‚Œγ«εŠ γˆγ¦γ€ι›ι€ ζ©Ÿγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€Helve_Hammerγγ‚ˆγ†γ«γ€ε‘Šι‰„γ‚’ιŒ¬ι‰„γ«γ€γΎγŸγ―ιŠ‘ι‰„γ‚’ι‹Όι‰„γ«γ™γ‚‹δ½œζ₯­γ‚’(γ‚†γ£γγ‚Šγ¨)θ‘Œγ†γ“γ¨γŒγ§γγΎγ™οΌ", + "quests.steam_age.forge_hammer.desc": "こγζ©Ÿζ’°γ«γ‚ˆγ‚Šγ€γ“γ‚ŒγΎγ§ι›ι€ γŒεΏ…θ¦γ γ£γŸε€šγγγƒ¬γ‚·γƒ”γ‚’δ»»γ›γ‚‰γ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸοΌ\n\n&bδΈΈηŸ³γ‚’η ‚εˆ©γ«&r、&dη ‚εˆ©γ‚’η ‚γ«&rη²‰η •ε‡¦η†γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚γγ‚Œγ‚‚γ€ιžεΈΈγ«ι«˜ι€Ÿγ«γ€‚\n\nγͺγ«γ‚ˆγ‚Šι‡θ¦γͺこととして、&aγƒ—γƒ¬γƒΌγƒˆ&rγ‚’γ‚ˆγ‚Šδ½Žγ‚³γ‚Ήγƒˆγ«δ½œζˆγ§γγΎγ™γ€‚γͺんと&63぀γγ‚€γƒ³γ‚΄γƒƒγƒˆγ§2枚γγƒ—γƒ¬γƒΌγƒˆγŒοΌ&rγŠεΎ—γ§γ™γ­οΌ\n\nγγ‚Œγ«εŠ γˆγ¦γ€Helve_Hammerγγ‚ˆγ†γ«γ€ζ™‚ι–“γ‚’γ‹γ‘γ¦ε‘Šι‰„γ‚’ιŒ¬ι‰„γ«γ€ιŠ‘ι‰„γ‚’γ‚ΉγƒγƒΌγƒ«γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ", "quests.steam_age.alloy_smelter.title": "ι«˜εœ§θ’Έζ°—εΌεˆι‡‘θ£½ιŒ¬ζ©Ÿ", "quests.steam_age.alloy_smelter.subtitle": "ι«˜εœ§θ’Έζ°—εΌεˆι‡‘θ£½ιŒ¬ζ©Ÿγ―γ€εˆι‡‘η²ΎιŒ¬γ‚’γ—γΎγ™", - "quests.steam_age.alloy_smelter.desc": "&bι«˜εœ§θ’Έζ°—εΌεˆι‡‘θ£½ιŒ¬ζ©Ÿ&rγ―γ€γΎγ‚γ€εˆι‡‘η²ΎιŒ¬γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚εŠΉηŽ‡ηš„γͺ&6ブロンズ&rδ½œζˆγƒ¬γ‚·γƒ”γ¨γ€θΏ‘γ„ε°†ζ₯、&4θ΅€εˆι‡‘&rに必要にγͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€ι«˜η‚­η΄ η³»γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’γ‚ˆγ‚ŠεŠΉηŽ‡ηš„γͺι€ŸεΊ¦γ§ζΊΆζŽ₯することもできます!\n\nすべてγ&6蒸気時代γ&r機撰γδΈ­γ§γ€γ“γ‚Œγ―ζœ€γ‚‚θ’Έζ°—γ‚’ζΆˆθ²»γ—γΎγ™γ€‚θ’Έζ°—γŒγͺくγͺγ£γŸε ΄εˆγ―γ€ζ©Ÿζ’°γ‚’&aε„ͺしく、愛をこめて&r&dγ‚½γƒ•γƒˆγƒžγƒ¬γƒƒγƒˆγ§γΆγ£ε©γ„γ¦&rγ‚γ’γ‚‹γ¨γ€δΈ€ζ™‚εœζ­’γ—γΎγ™γ€‚", + "quests.steam_age.alloy_smelter.desc": "&bι«˜εœ§θ’Έζ°—εΌεˆι‡‘θ£½ιŒ¬ζ©Ÿ&rγ―γ€γΎγ‚γ€εˆι‡‘η²ΎιŒ¬γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚εŠΉηŽ‡ηš„γͺ&6ブロンズ&rδ½œζˆγƒ¬γ‚·γƒ”γ¨γ€θΏ‘γ„ε°†ζ₯、&4θ΅€εˆι‡‘&rγδ½œζˆγ«εΏ…要にγͺγ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€ι«˜η‚­η΄ η³»γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’γ‚ˆγ‚ŠεŠΉηŽ‡ηš„γ«δ½œγ‚‹γ“γ¨γ‚‚γ§γγΎγ™οΌ\n\nすべてγ&6蒸気時代γ&r機撰γδΈ­γ§γ€γ“γ‚Œγ―ζœ€γ‚‚θ’Έζ°—γ‚’ζΆˆθ²»γ—γΎγ™γ€‚θ’Έζ°—γŒγͺくγͺγ£γŸε ΄εˆγ―γ€ζ©Ÿζ’°γ‚’&aε„ͺしく、愛をこめて&r&dγ‚½γƒ•γƒˆγƒžγƒ¬γƒƒγƒˆγ§γΆγ£ε©γ„γ¦&rγ‚γ’γ‚‹γ¨γ€δΈ€ζ™‚εœζ­’γ—γΎγ™γ€‚", "quests.steam_age.compressor.title": "ι«˜εœ§θ’Έζ°—εΌεœ§ηΈζ©Ÿ", "quests.steam_age.compressor.subtitle": "ι«˜εœ§θ’Έζ°—εΌεœ§ηΈζ©Ÿγ―γ€εœ§ηΈγ‚’します", - "quests.steam_age.compressor.desc": "&3ι«˜εœ§θ’Έζ°—εΌεœ§ηΈζ©Ÿ&rγ―γ€γ‚€γƒ³γ‚΄γƒƒγƒˆγ¨εηŸ³γ‚’γƒ–γƒ­γƒƒγ‚―γ«γ€γƒŠγ‚²γƒƒγƒˆγ‚’γ‚€γƒ³γ‚΄γƒƒγƒˆγ«γ€γγ—γ¦ζœ€γ‚‚ι‡θ¦γͺγ“γ¨γ«γ€ζœ¨γγƒ‘ルプγͺγ©γ‚’ηΉŠηΆ­ζΏγ«ε€‰γˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ γͺγœι‡θ¦γͺγγ‹γ―γ™γγ«γ‚γ‹γ‚ŠγΎγ™οΌ", + "quests.steam_age.compressor.desc": "&3ι«˜εœ§θ’Έζ°—εΌεœ§ηΈζ©Ÿ&rγ―γ€γ‚€γƒ³γ‚΄γƒƒγƒˆγ¨εηŸ³γ‚’γƒ–γƒ­γƒƒγ‚―γ«γ€γƒŠγ‚²γƒƒγƒˆγ‚’γ‚€γƒ³γ‚΄γƒƒγƒˆγ«γ€γγ—γ¦ζœ€γ‚‚ι‡θ¦γͺγ“γ¨γ«γ€ζœ¨γγƒ‘ルプγͺγ©γ‚’ηΉŠηΆ­ζΏγ«ε€‰γˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγͺγœι‡θ¦γͺγγ‹γ―γ™γγ«γ‚γ‹γ‚ŠγΎγ™οΌ", "quests.steam_age.molding.title": "ζˆεž‹", "quests.steam_age.molding.subtitle": "ζˆεž‹γ«γ‚ˆγ£γ¦η”Ÿθ¨ˆγ‚’η«‹γ¦γ‚‹", - "quests.steam_age.molding.desc": "εˆι‡‘θ£½ιŒ¬η‚‰γ―γ€ι‡‘ε±žγ‚’εˆι‡‘εŒ–γ™γ‚‹γ“γ¨γ«εŠ γˆγ¦γ€&3ι‡‘εž‹&rを使用して材料をさまざまγͺε½’ηŠΆγ«ζˆεž‹γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\nε°†ζ₯γγŸγ‚γ«γ‚‚、こγγƒͺγ‚Ήγƒˆγ«γ‚γ‚‹ι‡‘εž‹γ―δ½œγ£γ¦γŠγγΎγ—γ‚‡γ†γ€‚\u3000&aγ€Œι‡‘εž‹γ€&rγζ–Ήγ‚’εΏ…γšδ½œζˆγ—γ¦γγ γ•γ„γ€‚&cγ€ŒζŠΌε‡Ίε½’ζˆη”¨ι‡‘εž‹γ€&rは、εˆ₯γζ©Ÿζ’°γ§δ½Ώη”¨γ•γ‚Œγ‚‹γ‚‚γγͺγγ§γ€γΎγ δ½œζˆγ—γͺいでください。\n\n歯車γι‡‘εž‹γ«γ‚‚θˆˆε‘³γŒγ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€γγ‚Œγ‚’δ½Ώγ£γ¦ζ­―θ»Šγ‚’δ½œγ‚‹γ¨γ€ζ‰‹δ½œζ₯­γ§δ½œγ‚‹γ‚ˆγ‚Šγ‚‚γ‚³γ‚ΉγƒˆγŒε’—γˆγ¦γ—γΎγ„γΎγ™γ€‚", + "quests.steam_age.molding.desc": "εˆι‡‘θ£½ιŒ¬η‚‰γ―γ€ι‡‘ε±žγ‚’εˆι‡‘εŒ–γ™γ‚‹γ“γ¨γ«εŠ γˆγ¦γ€&3ι‡‘εž‹&rを使用して素材をさまざまγͺε½’ηŠΆγ«ζˆεž‹γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\nε°†ζ₯γγŸγ‚γ«γ‚‚、こγγƒͺγ‚Ήγƒˆγ«γ‚γ‚‹ι‡‘εž‹γ―δ½œγ£γ¦γŠγγΎγ—γ‚‡γ†γ€‚\n&aγ€Œι‡‘εž‹γ€&rγζ–Ήγ‚’εΏ…γšδ½œζˆγ—γ¦γγ γ•γ„γ€‚&cγ€ŒζŠΌε‡Ίε½’ζˆη”¨ι‡‘εž‹γ€&rは、εˆ₯γζ©Ÿζ’°γ§δ½Ώη”¨γ•γ‚Œγ‚‹γ‚‚γγͺγγ§γ€γΎγ δ½œζˆγ—γͺいでください。\n\n歯車γι‡‘εž‹γ«γ‚‚θˆˆε‘³γŒγ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€γγ‚Œγ‚’δ½Ώγ£γ¦ζ­―θ»Šγ‚’δ½œγ‚‹γ¨γ€ζ‰‹δ½œζ₯­γ§δ½œγ‚‹γ‚ˆγ‚Šγ‚‚γ‚³γ‚ΉγƒˆγŒε’—γˆγ¦γ—γΎγ„γΎγ™γ€‚", "quests.steam_age.red_alloy.title": "θ΅€εˆι‡‘", "quests.steam_age.red_alloy.subtitle": "εŒε…¨γ«ζžΆη©Ίγεˆι‡‘", - "quests.steam_age.red_alloy.desc": "&4θ΅€εˆι‡‘&rγ―γ€ιŠ…γ¨γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³γεˆι‡‘γ§γ‚γ‚Šγ€γγε°Žι›»ζ€§γ«γ‚ˆγ£γ¦GregTechγδΈ–η•Œγ§ι«˜γθ©•δΎ‘γ•γ‚Œγ¦γ„γΎγ™γ€‚γ“γ‚Œγ―εˆι‡‘θ£½ιŒ¬η‚‰γΎγŸγ―γ‚‹γ€γΌγ§δ½œζˆγ§γγΎγ™γ€‚\n\n&9電子η‘&rにはいく぀か必要にγͺγ‚ŠγΎγ™γ€‚\n\n&l&3伝承では...&r&o γ“γ‚Œγ£γ¦ε…ƒγ―RedPowerγγ‚‚γγͺγ‚“γ γ‚ˆγ€‚ζ‡γ‹γ—γ„γͺ...といいます。", + "quests.steam_age.red_alloy.desc": "&4θ΅€εˆι‡‘&rγ―γ€ιŠ…γ¨γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³γεˆι‡‘γ§γ‚γ‚Šγ€γγε°Žι›»ζ€§γ«γ‚ˆγ£γ¦GregTechγδΈ–η•Œγ§ι«˜γθ©•δΎ‘γ•γ‚Œγ¦γ„γΎγ™γ€‚γ“γ‚Œγ―εˆι‡‘θ£½ιŒ¬η‚‰γΎγŸγ―γ‚‹γ€γΌγ§δ½œζˆγ§γγΎγ™γ€‚\n\n&9電子η‘&rにはいく぀か必要にγͺγ‚ŠγΎγ™γ€‚\n\n&l&3δ½™θ«‡οΌš&r&oγ“γ‚Œγ£γ¦ε…ƒγ―RedPowerγγ‚‚γγͺγ‚“γ γ‚ˆγ€‚ζ‡γ‹γ—γ„γͺ", "quests.steam_age.extractor.title": "ι«˜εœ§θ’Έζ°—εΌζŠ½ε‡Ίζ©Ÿ", "quests.steam_age.extractor.subtitle": "ι«˜εœ§θ’Έζ°—εΌζŠ½ε‡Ίζ©Ÿγ―γ€ζŠ½ε‡Ίγ‚’γ—γΎγ™", "quests.steam_age.extractor.desc": "&3ι«˜εœ§θ’Έζ°—εΌζŠ½ε‡Ίζ©Ÿ&rγ―γ€ζΆ²δ½“γ‚’ζŠ½ε‡Ίγ™γ‚‹ζ€§θƒ½γŒεΌ±γ„γŸγ‚γ€&6蒸気時代&rγ γ¨γΎγ δ½œγ‚Œγͺγ„γ‚’γ‚€γƒ†γƒ γŒε€šγγ‚γ‚ŠγΎγ™γ€‚", "quests.steam_age.glass_tube.title": "ガラスη‘", "quests.steam_age.glass_tube.subtitle": "γŸγγ•γ‚“η”¨ζ„γ—γ¦γŠγγΎγ—γ‚‡γ†", - "quests.steam_age.glass_tube.desc": "γ“γ‚Œγ‚‰γ™γΉγ¦γ‚’γ‚¬γƒ©γ‚ΉεΉγγ«γ‚ˆγ£γ¦ζ‰‹δ½œζ₯­γ§δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γŒγ€δ»£γ‚γ‚Šγ«ι©εˆ‡γͺι‡‘εž‹γ‚’δ½Ώη”¨γ—γ¦εˆι‡‘θ£½ιŒ¬η‚‰γ§δ½œζˆγ™γ‚‹ζ–ΉγŒγ―γ‚‹γ‹γ«ζ₯½γ§ζ™‚ηŸ­γ§γγΎγ™γ€‚ ガラスγη²‰γŒγŸγγ•γ‚“εΏ…θ¦γ§γ™γ‹οΌŸγ§γ—γŸγ‚‰γ€16枚γγ‚¬γƒ©γ‚ΉζΏγ‚’δΈ€εΊ¦γ«γ‚¬γƒ©γ‚ΉεΉγγ—γ¦η²‰η •γ™γ‚‹γ‹γ€ι«˜εœ§θ’Έζ°—εΌη ΄η •ζ©Ÿγͺγ©γ¨ι›ι€ ζ©Ÿγ‚’δ½Ώη”¨γ—γ¦ε€§ι‡γη ‚γ‚’ε…₯ζ‰‹γ—γ€γγ‚Œγ«ε°‘γ—η«ζ‰“ηŸ³γη²‰γ‚’ζ··γœγ¦γ‚¬γƒ©γ‚Ήη²‰γ«ε€‰γˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.steam_age.glass_tube.desc": "ガラスη‘γ―γ‚¬γƒ©γ‚ΉεΉγγ«γ‚ˆγ£γ¦ζ‰‹δ½œζ₯­γ§δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γŒγ€δ»£γ‚γ‚Šγ«ι©εˆ‡γͺι‡‘εž‹γ‚’δ½Ώη”¨γ—γ¦εˆι‡‘θ£½ιŒ¬η‚‰γ§δ½œζˆγ™γ‚‹ζ–ΉγŒγ―γ‚‹γ‹γ«ζ₯½γ§ζ™‚ηŸ­γ«γͺγ‚ŠγΎγ™γ€‚\n\nガラスγη²‰γŒε€§ι‡γ«εΏ…要にγͺγ‚ŠγΎγ™γ€‚γγγŸγ‚γ«γ―、16枚γγ‚¬γƒ©γ‚ΉζΏγ‚’一度にガラス吹きして粉砕するγγŒεŠΉηŽ‡ηš„γͺ方法です。\n\n真空η‘γ‚’δ½œγ£γ¦γ‹γ‚‰γ―γ€η ΄η •ζ©Ÿγ¨ι›ι€ ζ©Ÿγ‚’δ½Ώγ£γ¦ε€§ι‡γη ‚γ‚’η’ΊδΏγ—γ€γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒŸγ‚­γ‚΅γƒΌγ§ε°‘γ—γη«ζ‰“ηŸ³γη²‰γ‚’ζ··γœγ‚‹γ“γ¨γ§γ‚¬γƒ©γ‚Ήη²‰γ‚’ε€§ι‡η”Ÿη”£γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.steam_age.treated_planks.title": "ι˜²θ…ζœ¨ζγζΏ", - "quests.steam_age.treated_planks.subtitle": "a.k.aι˜²θ…ζœ¨ζγεˆζΏ", - "quests.steam_age.treated_planks.desc": "クレγ‚ͺγ‚½γƒΌγƒˆγŒζ‹γ£γ¦γ„γŸγ‚‰γ„γ„γγ§γ™γŒγ€‚εŸγ―、クレγ‚ͺγ‚½γƒΌγƒˆγ―ι˜²θ…ζœ¨ζγγƒ‘γƒ«γƒ—εŒ–γ¨γ€γγεœ§ηΈγ•γ‚ŒγŸζΏγ‚’δ½œγ‚‹γ“γ¨γ«γ‚‚δ½Ώγ‚γ‚Œγ‚‹γ‚“γ§γ™γ€‚\n\n&l&3伝承では...&r&o TerraFirmaGregγε‰γΎγ§γγƒγƒΌγ‚Έγƒ§γƒ³γ γ¨γ€γ“γ‚ŒγŒγͺいとCreateγ‚’ε§‹γ‚γ‚‰γ‚Œγͺγ‹γ£γŸγ‚“γ γ‚ˆγ­οΌ...といいます。", + "quests.steam_age.treated_planks.subtitle": "a.k.aι˜²θ…ζœ¨ζγηΉŠηΆ­ζΏ", + "quests.steam_age.treated_planks.desc": "クレγ‚ͺγ‚½γƒΌγƒˆγŒζ‹γ£γ¦γ„γŸγ‚‰γ„γ„γγ§γ™γŒ...εŸγ―、クレγ‚ͺγ‚½γƒΌγƒˆγ―ι˜²θ…ζœ¨ζγγƒ‘γƒ«γƒ—εŒ–γ¨γ€γγεœ§ηΈγ•γ‚ŒγŸζΏγ‚’δ½œγ‚‹γ“γ¨γ«γ‚‚δ½Ώγ‚γ‚Œγ‚‹γ‚“γ§γ™γ€‚\n\n&l&3δ½™θ«‡οΌš&r&oTerraFirmaGregγε‰γΎγ§γγƒγƒΌγ‚Έγƒ§γƒ³γ γ¨γ€γ“γ‚ŒγŒγͺいとCreateγ‚’ε§‹γ‚γ‚‰γ‚Œγͺγ‹γ£γŸγ‚“γ γ‚ˆγ­οΌ", "quests.steam_age.electron_tube.title": "電子η‘", "quests.steam_age.electron_tube.subtitle": "ULVγδΈ‹οΌŸ UULV?", "quests.steam_age.electron_tube.desc": "ζœ€εˆγ―δ½œγ‚‹γγŒε€§ε€‰γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€ζœ€εˆγζ•°ε€‹γ‚’デプロむダーγγƒ©γ‚€γƒ³ζ§‹η―‰γγŸγ‚γ«δ½Ώη”¨γ™γ‚Œγ°γ€ε€§εΉ…にε‰δΎ‘γ«δ½œζˆγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nデプロむダーδ»₯ε€–γ«γ‚‚γ€γ“γ‚Œγ―γ•γΎγ–γΎγͺ高度γͺCreateγγƒžγ‚·γƒ³γ«γ‚‚δ½Ώη”¨γ•γ‚ŒγΎγ™οΌ", "quests.steam_age.rotation_speed_controller.title": "ε›žθ»’ι€ŸεΊ¦γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌ", "quests.steam_age.rotation_speed_controller.subtitle": "γ‚‚γ†γ‚¬γƒγƒ£γ‚¬γƒγƒ£ζ­―θ»Šγ‚’η΅„γ‚€εΏ…θ¦γ―γͺいんだ!", - "quests.steam_age.rotation_speed_controller.desc": "&3ε›žθ»’ι€ŸεΊ¦γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌ&rを使用すると、すべてγζ­―θ»Šγ‚Ήγƒ‘γ‚²γƒƒγƒ†γ‚£γ‚’1぀γγƒ–ロックに簑η•₯εŒ–γ—γ€ζ‰‹θ»½γ«ε›žθ»’ι€ŸεΊ¦γ‚’θͺΏζ•΄γ§γγΎγ™γ€‚γ“γ‚Œγ―γ€εΏœεŠ›γθͺΏζ•΄γŒεΏ…要にγͺってきたときγͺどにも役立けます!", + "quests.steam_age.rotation_speed_controller.desc": "&3ε›žθ»’ι€ŸεΊ¦γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌ&rを使用すると、すべてγζ­―θ»Šγ‚Ήγƒ‘γ‚²γƒƒγƒ†γ‚£γ‚’1぀γγƒ–ロックに簑η•₯εŒ–γ—γ€ζ‰‹θ»½γ«ε›žθ»’ι€ŸεΊ¦γ‚’θͺΏζ•΄γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\nγ“γ‚Œγ―γ€εΏœεŠ›γθͺΏζ•΄γŒεΏ…要にγͺってきたときγͺどにも役立けます!", "quests.steam_age.mech_crafter.title": "パカニカルクラフター", "quests.steam_age.mech_crafter.subtitle": "γ‚―γƒ©γƒ•γƒˆγƒ¬γ‚·γƒ”γŒγƒ‡γ‚«γ™γŽγΎγ™οΌ", - "quests.steam_age.mech_crafter.desc": "心配しγͺγ„γ§γγ γ•γ„γ€‚γ“γ‚Œγ‚’δ½œγ‚‹γγ―εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γγ§γ€‚こγε…ˆγγ‚―γ‚¨γ‚Ήγƒˆγ§θ‘¨η€Ίγ•γ‚Œγ¦γ„γ‚‹2぀δ»₯ε€–γ«γ‚‚γ€ιžεΈΈγ«ζœ‰η”¨γͺをむテムγγ‚―γƒ©γƒ•γƒˆγ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚ζΆˆθ€—ε“γ§γ―γͺいγγ§δ½•εΊ¦γ‚‚γ‚―γƒ©γƒ•γƒˆγ™γ‚‹εΏ…θ¦γ―γͺいと思います。", + "quests.steam_age.mech_crafter.desc": "心配しγͺγ„γ§γγ γ•γ„γ€‚γ“γ‚Œγ‚’δ½œγ‚‹γγ―εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γγ§γ€‚\nこγε…ˆγγ‚―γ‚¨γ‚Ήγƒˆγ§θ‘¨η€Ίγ•γ‚Œγ¦γ„γ‚‹2぀δ»₯ε€–γ«γ‚‚γ€ιžεΈΈγ«ζœ‰η”¨γͺをむテムγγ‚―γƒ©γƒ•γƒˆγ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚\nζΆˆθ€—ε“γ§γ―γͺいγγ§δ½•εΊ¦γ‚‚γ‚―γƒ©γƒ•γƒˆγ™γ‚‹εΏ…θ¦γ―γͺいと思います。", "quests.steam_age.crushing_wheel.title": "破砕ホむール", "quests.steam_age.crushing_wheel.subtitle": "ηŸ³θ‡Όγε¦Ήγε€«", - "quests.steam_age.crushing_wheel.desc": "γ“γ‚Œγ‚‰γ―γ€η²‰η •ι–’ι€£γζ©Ÿζ’°γŸγ‘γ¨εŒγ˜γ“γ¨γ‚’γ‚ˆγ‚Šζ—©γγ‚ˆγ‚Šε€§ι‡γ«θ‘Œγ„γΎγ™γ€‚γγζ€§θƒ½γ―θ’Έζ°—εΌη ΄η •ζ©Ÿγ¨γ»γΌεŒη­‰γ§γ™γ€‚", + "quests.steam_age.crushing_wheel.desc": "破砕ホむールは、粉砕閒連γζ©Ÿζ’°γŸγ‘γ¨εŒγ˜γ“γ¨γ‚’γ‚ˆγ‚Šζ—©γγ€γ‚ˆγ‚Šε€§ι‡γ«θ‘Œγ„γΎγ™γ€‚\nそγζ€§θƒ½γ―θ’Έζ°—εΌη ΄η •ζ©Ÿγ¨γ»γΌεŒη­‰γ§γ™γ€‚", "quests.steam_age.centrifuge.title": "CreateεΌι εΏƒεˆ†ι›’ζ©Ÿ", "quests.steam_age.centrifuge.subtitle": "δΈ–η•ŒγŒε›žγ‚‹ ε›žγ‚‹γ‚ˆδΈ–η•Œ", - "quests.steam_age.centrifuge.desc": "ι‰±ηŸ³ε‡¦η†γ―εΈΈγ«γ“γModPackγι‡θ¦γͺιƒ¨εˆ†γ§γ‚γ‚Šγ€γ“γγƒžγ‚·γƒ³γ―そγγ‚ͺプションγιƒ¨εˆ†γ§γ™γ€‚Centrifugeγ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ§ι‰±ηŸ³γ‹γ‚‰ε‰―η”£η‰©γ‚’εΎ—γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ(EMIγι‰±ηŸ³ε‡¦η†ε·₯程図を参考にしてください) 欑γι‰±ηŸ³ε‡¦η†γγ‚’γƒƒγƒ—γƒ‡γƒΌγƒˆγ―LV時代γεŸΊζœ¬εž‹η†±ι εΏƒεˆ†ι›’ζ©ŸγΎγ§θ‘Œγ‚γ‚Œγͺγ„γ§γ™γŒγ€γ“γζ©Ÿζ’°γ‚’使うかどうかはあγͺγŸζ¬‘η¬¬γ§γ™γ€‚", + "quests.steam_age.centrifuge.desc": "ι‰±ηŸ³ε‡¦η†γ―εΈΈγ«γ“γModPackγι‡θ¦γͺθ¦η΄ γ§γ‚γ‚Šγ€γ“γγƒžγ‚·γƒ³γ―そγγͺγ‹γ§ι εΏƒεˆ†ι›’γ‚’θ‘Œγ†γ“γ¨γŒγ§γγΎγ™γ€‚\nCentrifugeγ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ§ι‰±ηŸ³γ‹γ‚‰ε‰―η”£η‰©γ‚’εΎ—γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ(EMIγι‰±ηŸ³ε‡¦η†ε·₯程図を参考にしてください) \n欑γι‰±ηŸ³ε‡¦η†γγ‚’γƒƒγƒ—γƒ‡γƒΌγƒˆγ―LV時代γεŸΊζœ¬εž‹η†±ι εΏƒεˆ†ι›’ζ©ŸγΎγ§θ‘Œγ‚γ‚Œγͺγ„γ§γ™γŒγ€γ“γζ©Ÿζ’°γ‚’使うかどうかはあγͺγŸζ¬‘η¬¬γ§γ™γ€‚", "quests.steam_age.steam_engine.title": "蒸気エンジン", "quests.steam_age.steam_engine.subtitle": "ζœ¬ζ Όηš„ θ’Έζ°—ζ©Ÿι–’", - "quests.steam_age.steam_engine.desc": "ζ°΄θ»Šγ‚„ι’¨θ»Šγ§γ―γ‚‚γ†η‰©θΆ³γ‚Šγͺγ„γ§γ™γ‹οΌŸ 蒸気時代を名乗るγͺγ‚‰γ‚„γ―γ‚Šθ’Έζ°—ζ©Ÿι–’γ―ζ¬ γ‹γ›γͺいでしょう! ε„θ’Έζ°—γ‚¨γƒ³γ‚Έγƒ³γ‹γ‚‰γ―γγ‚Œγžγ‚Œ256SUε‡ΊεŠ›γ•γ‚Œγ‚‹γŸγ‚γ€δ»–γζ–Ήζ³•γ‚ˆγ‚Šε€šγγεΏœεŠ›γ‚’εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγƒ–γƒ¬γ‚€γ‚ΊγƒγƒΌγƒŠγƒΌγ―εΆγ‹γ‚‰ε‡Ίγͺγγ¦γ‚‚δ½œζˆγ§γγ€γƒ‘γ‚«γƒ‹γ‚«γƒ«γ‚’γƒΌγƒ γ‚’δ½Ώη”¨γ—γ¦ε›Ίδ½“η‡ƒζ–™γ‚’θ‡ͺε‹•ηš„γ«δΎ›η΅¦γ—γŸγ‚Šγ€ζΆ²δ½“η‡ƒζ–™(クレγ‚ͺγ‚½γƒΌγƒˆγͺど)γ‚’η›΄ζŽ₯γƒ‘γ‚€γƒ—γ§ι€γ£γŸγ‚Šγ§γγΎγ™γ€‚ι«˜ε“θ³ͺγͺηŸ³η‚­γ‚„Anthraciteγ€γ‚³γƒΌγ‚―γ‚Ήγ‚’η‡ƒζ–™γ«γ—γ¦ιŽη†±ηŠΆζ…‹γ«γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.steam_age.steam_engine.desc": "ζ°΄θ»Šγ‚„ι’¨θ»Šγ§γ―γ‚‚γ†η‰©θΆ³γ‚Šγͺγ„γ§γ™γ‹οΌŸθ’Έζ°—ζ™‚δ»£γ‚’εδΉ—γ‚‹γͺγ‚‰γ‚„γ―γ‚Šθ’Έζ°—ζ©Ÿι–’γ―ζ¬ γ‹γ›γͺいでしょう!\nε„θ’Έζ°—γ‚¨γƒ³γ‚Έγƒ³γ‹γ‚‰γ―γγ‚Œγžγ‚Œ256SUε‡ΊεŠ›γ•γ‚Œγ‚‹γŸγ‚γ€δ»–γζ–Ήζ³•γ‚ˆγ‚Šγ‚‚ε€šγγεΏœεŠ›γ‚’εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\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.fuel_sources.desc": "θ’Έζ°—ζ©Ÿι–’γ―γ€ζΆ²δ½“η‡ƒζ–™η”¨ι«˜εœ§γƒœγ‚€γƒ©γƒΌγ‚ˆγ‚Šγ‚‚ε€šγη¨ι‘žγζΆ²δ½“燃料を受けε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ηΎζ™‚η‚Ήγ§γ―γ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγΎγŸγ―ζΊΆε²©γŒη°‘ε˜γ«ζΊ–ε‚™γ§γγΎγ™γŒγ€γƒ’γƒžγƒ―γƒͺγ‚„γ‚­γƒ£γƒŽγƒΌγƒ©γ‹γ‚‰δ½œγ‚Œγ‚‹&eη¨ζ²Ή&rγͺどγγ€γ•まざまγͺ怍物ベースγγ‚ͺγ‚€γƒ«γ‚’εˆ©η”¨γ™γ‚‹γγ‚‚γ„γ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚\n\nクレγ‚ͺγ‚½γƒΌγƒˆγ¨ζΊΆε²©γ―γ€γ•γ‚‰γ«δΈŠδ½γζ΅ιšŽγ«ι€²γ‚“γ§γ‚‚γ‚γΎγ‚ŠδΌΈγ³γ—γ‚γŒγ‚γ‚ŠγΎγ›γ‚“γŒγ€γƒγ‚€γ‚ͺη‡ƒζ–™γ―γƒ‡γ‚£γƒΌγ‚Όγƒ«γ«γ€ζ¬‘γ«γ‚»γ‚Ώγƒ³ζ·»εŠ γƒ‡γ‚£γƒΌγ‚Όγƒ«γ«γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ§γγ‚‹γŸγ‚γ€γγ‚ŒγŒι­…εŠ›ηš„γ γ¨ζ€γ£γŸγ‚‰γ€δ»Šγ™γζ€η‰©ζ²Ήη”¨γε€§γγͺη•‘γ‚’δ½œγ‚Šε§‹γ‚γ¦γγ γ•γ„οΌ", "quests.steam_age.deployers.title": "デプロむダー", "quests.steam_age.deployers.subtitle": "εŽŸε§‹ηš„γͺをセンブγƒͺラむン", - "quests.steam_age.deployers.desc": "こγη« γζ‹γ‚ŠγζœŸι–“γ€ε˜δΈ€γγƒ‡γƒ—γƒ­γ‚€γƒ€γƒΌγ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γŒγ€&3ζœ¬ε½“γ«&rγŠε‹§γ‚γ—γΎγ›γ‚“γ€‚γƒ™γƒ«γƒˆγ‚³γƒ³γƒ™γ‚’γƒΌγ«ζ²Ώγ£γ¦γƒ‡γƒ—γƒ­γ‚€γƒ€γƒΌγγƒ©γ‚€γƒ³γ‚’η΅„γ‚γ°γ€ζ™‚ι–“γ¨ζ­£ζ°—γ‚’ε€§εΉ…γ«η―€η΄„γ§γγΎγ™γ€‚γΎγŸγ€εŸΊζœ¬ηš„γ«η„‘駄にγͺγ‚‹γ“γ¨γ‚‚γ‚γ‚ŠγΎγ›γ‚“γ€‚δΎ‹γˆγ°θ‡ͺε‹•ζ€ζž—ε ΄γͺγ©γ«ε†εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nこγγ‚ˆγ†γ«γ—て、電子η‘を倧幅にε‰δΎ‘γ«δ½œγ‚ŠγΎγ—γ‚‡γ†οΌ", + "quests.steam_age.deployers.desc": "こγη« γζ‹γ‚ŠγζœŸι–“、一぀γγƒ‡γƒ—γƒ­γ‚€γƒ€γƒΌγ‚’δ½Ώγ„γΎγ‚γ™γ“γ¨γ‚‚γ§γγΎγ™γŒγ€&3ζœ¬ε½“γ«&rγŠε‹§γ‚γ—γΎγ›γ‚“γ€‚γƒ™γƒ«γƒˆγ‚³γƒ³γƒ™γ‚’γƒΌγ«ζ²Ώγ£γ¦γƒ‡γƒ—γƒ­γ‚€γƒ€γƒΌγγƒ©γ‚€γƒ³γ‚’硄めば、時間と正気を倧幅に節約できます。\nγΎγŸγ€εŸΊζœ¬ηš„γ«η„‘ι§„γ«γͺγ‚‹γ“γ¨γ‚‚γ‚γ‚ŠγΎγ›γ‚“γ€‚δΎ‹γˆγ°θ‡ͺε‹•ζ€ζž—ε ΄γͺγ©γ«ε†εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nこγγ‚ˆγ†γ«γ—て、電子η‘を倧幅にε‰δΎ‘γ«δ½œγ‚ŠγΎγ—γ‚‡γ†οΌ", "quests.steam_age.trains.title": "鉄道", "quests.steam_age.trains.subtitle": "WayStonesγ―η”˜γˆ", - "quests.steam_age.trains.desc": "鉄道は、プレむダー、をむテム、梲体γͺど、あらゆるη¨ι‘žγι•·θ·ι›’θΌΈι€γ«ζœ€ι©γͺιΈζŠžθ‚’γ§γ™οΌ γƒγƒ£γƒ³γ‚―γƒ­γƒΌγƒ‰γ•γ‚Œγ¦γͺγ„ι“γ‚‚ε•ι‘Œγͺγι€šιŽγ—γΎγ™γ€‚γƒ†γƒ¬γƒγƒΌγƒˆζ‰‹ζ΅γθ§£η¦γ―ゲーム硂盀にγͺγ‚‹γŸγ‚γ€ε€§ι™Έγ«γΎγŸγŒγ‚‹ι‰„ι“γƒγƒƒγƒˆγƒ―γƒΌγ‚―γŒγ€ζ™‚δ»£ι…γ‚Œγ«γͺることはγͺいでしょう。", + "quests.steam_age.trains.desc": "鉄道は、プレむダー、をむテム、梲体γͺど、あらゆるη¨ι‘žγι•·θ·ι›’θΌΈι€γ«ζœ€ι©γͺιΈζŠžθ‚’γ§γ™οΌ\nγƒγƒ£γƒ³γ‚―γƒ­γƒΌγƒ‰γ•γ‚Œγ¦γͺγ„ι“γ‚‚ε•ι‘Œγͺγι€šιŽγ—γΎγ™γ€‚\nγƒ†γƒ¬γƒγƒΌγƒˆζ‰‹ζ΅γθ§£η¦γ―ゲーム硂盀にγͺγ‚‹γŸγ‚γ€ε€§ι™Έγ«γΎγŸγŒγ‚‹ι‰„ι“γƒγƒƒγƒˆγƒ―γƒΌγ‚―γŒγ€δΈθ¦γ«γͺることはγͺいでしょう。", "quests.steam_age.wood_plank.title": "繊碭板", "quests.steam_age.wood_plank.subtitle": "圧ηΈγ—γŸζœ¨γζΏ", "quests.steam_age.wood_plank.desc": "ι˜²θ…ζœ¨ζγζΏγ¨δ½œγ‚Šζ–Ήγ―ε€§γ—γ¦ε€‰γ‚γ‚ŠγΎγ›γ‚“γŒγ€ζœ€εˆγ«γ‚―γƒ¬γ‚ͺγ‚½γƒΌγƒˆγ«ζ΅Έγ™εΏ…θ¦γ―γͺく、任意γζœ¨ζγ‚’使用できます。", "quests.steam_age.organization.title": "θ¨ˆη”»ηš„γͺι€²θ‘ŒγγŸγ‚γ«", "quests.steam_age.organization.subtitle": "ζ–°δΊΊε·₯場長に向けて", - "quests.steam_age.organization.desc": "必要γͺγƒ¬γ‚·γƒ”γ‚„γ‚’γ‚€γƒ†γƒ γ‚’γ™γΉγ¦ζŠŠζ‘γ™γ‚‹γγ«θ‹¦εŠ΄γ—γ¦γ„γΎγ›γ‚“γ‹οΌŸ そんγͺあγͺたγγŸγ‚γγŠε½Ήη«‹γ‘商品を紹介します。\n\n&3γ‚―γƒͺγƒƒγƒ—γƒœγƒΌγƒ‰&r:γ“γ‚Œγ―ζΊεΈ―η”¨γTo-Doγƒͺγ‚Ήγƒˆγ¨γ—γ¦δΎΏεˆ©γͺγ‚’γ‚€γƒ†γƒ γ§γ€γƒγ‚§γƒƒγ‚―γ‚’δ»˜γ‘γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\n&3γ‚―γƒ©γƒ•γƒˆγƒ–γƒ«γƒΌγƒ—γƒͺγƒ³γƒˆ&r:γ‚ˆγδ½Ώγ†γƒ¬γ‚·γƒ”γ‚’η™»ιŒ²γ—γ¦γŠγγ€EMIγ§γƒ¬γ‚·γƒ”γ‚’ζŽ’γ•γͺくてもまとめてワンクγƒͺγƒƒγ‚―γ§δ½œζˆγ§γγΎγ™γ€‚\n\n&3EMIγγƒ–γƒƒγ‚―γƒžγƒΌγ‚―&r:EMIγ§γ‚’γ‚€γƒ†γƒ γ«γ‚«γƒΌγ‚½γƒ«γ‚’εˆγ‚γ›γ¦γ„γ‚‹γ¨γγ«γ€Œγƒ–γƒƒγ‚―γƒžγƒΌγ‚―γθΏ½εŠ /ε‰Šι™€γ€γ‚­γƒΌ(γƒ‡γƒ•γ‚©γƒ«γƒˆγ―γ€ŒA」)γ‚’ζŠΌγ™γ¨γ€γƒ–γƒƒγ‚―γƒžγƒΌγ‚―γ§γγΎγ™γ€‚γƒ¬γ‚·γƒ”γ‚’ι–‹γγ€ε‡ΊεŠ›γ•γ‚Œγ‚‹γ‚’γ‚€γƒ†γƒ γ‚’γƒ–γƒƒγ‚―γƒžγƒΌγ‚―γ™γ‚‹γ¨γ€γγγƒ¬γ‚·γƒ”γŒγƒ–γƒƒγ‚―γƒžγƒΌγ‚―γ•γ‚ŒγΎγ™γ‚ˆοΌ", + "quests.steam_age.organization.desc": "必要γͺγƒ¬γ‚·γƒ”γ‚„γ‚’γ‚€γƒ†γƒ γ‚’γ™γΉγ¦ζŠŠζ‘γ™γ‚‹γγ«θ‹¦εŠ΄γ—γ¦γ„γΎγ›γ‚“γ‹οΌŸγγ‚“γͺあγͺたγγŸγ‚γγŠε½Ήη«‹γ‘商品を紹介します。\n\n&3γ‚―γƒͺγƒƒγƒ—γƒœγƒΌγƒ‰&rοΌšγ“γ‚Œγ―ζΊεΈ―η”¨γTo-Doγƒͺγ‚Ήγƒˆγ¨γ—γ¦δΎΏεˆ©γͺγ‚’γ‚€γƒ†γƒ γ§γ€γƒγ‚§γƒƒγ‚―γ‚’δ»˜γ‘γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\n&3γ‚―γƒ©γƒ•γƒˆγƒ–γƒ«γƒΌγƒ—γƒͺγƒ³γƒˆ&rοΌšγ‚ˆγδ½Ώγ†γƒ¬γ‚·γƒ”γ‚’η™»ιŒ²γ—γ¦γŠγγ€EMIγ§γƒ¬γ‚·γƒ”γ‚’ζŽ’γ•γͺくてもまとめてワンクγƒͺγƒƒγ‚―γ§δ½œζˆγ§γγΎγ™γ€‚\n\n&3EMIγγƒ–γƒƒγ‚―γƒžγƒΌγ‚―&r:EMIγ§γ‚’γ‚€γƒ†γƒ γ«γ‚«γƒΌγ‚½γƒ«γ‚’εˆγ‚γ›γ¦γ„γ‚‹γ¨γγ«γ€Œγƒ–γƒƒγ‚―γƒžγƒΌγ‚―γθΏ½εŠ /ε‰Šι™€γ€γ‚­γƒΌ(γƒ‡γƒ•γ‚©γƒ«γƒˆγ―γ€ŒA」)γ‚’ζŠΌγ™γ¨γ€γƒ–γƒƒγ‚―γƒžγƒΌγ‚―γ§γγΎγ™γ€‚\nγƒ¬γ‚·γƒ”γ‚’ι–‹γγ€ε‡ΊεŠ›γ•γ‚Œγ‚‹γ‚’γ‚€γƒ†γƒ γ‚’γƒ–γƒƒγ‚―γƒžγƒΌγ‚―γ™γ‚‹γ¨γ€γγγƒ¬γ‚·γƒ”θ‡ͺδ½“γŒγƒ–γƒƒγ‚―γƒžγƒΌγ‚―γ•γ‚ŒγΎγ™γ‚ˆοΌ", "quests.steam_age.resin_boards.title": "ζ¨Ήθ„‚ε›žθ·―εŸΊζΏ", "quests.steam_age.resin_boards.subtitle": "LaTeXγζ‰±γ„γ―ζΏγ«γ€γ„γ¦γγΎγ—γŸγ‹οΌŸ", - "quests.steam_age.resin_boards.desc": "Tree_Tapから直ζŽ₯GregTechγγƒ‘むプやドラムに樹梲をε…₯γ‚Œγ‚‰γ‚Œγ‚‹γ£γ¦ηŸ₯γ£γ¦γΎγ—γŸοΌŸγγ†γͺγ‚“γ§γ™γ‚ˆοΌ", + "quests.steam_age.resin_boards.desc": "Tree_Tapから直ζŽ₯GregTechγγƒ‘むプやドラムに樹梲をε…₯γ‚Œγ‚‰γ‚Œγ‚‹γ£γ¦ηŸ₯γ£γ¦γΎγ—γŸοΌŸεŸγ―そうγͺんです!", "quests.steam_age.circuit_boards.title": "γ‚¨γƒ¬γ‚―γƒˆγƒ­γƒ‹γ‚―γ‚Ή#2:ε›žθ·―εŸΊζΏ", "quests.steam_age.circuit_boards.subtitle": "η°‘ε˜γ‚γͺε›žθ·―γιƒ¨ε“", "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": "γ“γ‚Œγ―γ€ηœŸη©Ίη‘γ‚’δ½œζˆγ™γ‚‹ιš›γζœ€η΅‚ε·₯η¨‹γ‚’ζ‹…γ†γƒžγ‚·γƒ³γ§γ™γ€‚ι‰’γδΈŠγ«η½γγ€ε‹•εŠ›γ‚’δΎ›η΅¦γ—γ€γƒžγ‚·γƒ³γŒVacuumizingヒードに設εšγ•γ‚Œγ¦γ„γ‚‹γ“γ¨γ‚’η’Ίθͺγ—てください。\n\nこγγƒžγ‚·γƒ³γ―γ€η‚‰γΎγŸγ―γƒ–γƒ¬γ‚€γ‚ΊγƒγƒΌγƒŠγƒΌγ§εŠ η†±γ™γ‚‹γ“γ¨γ§γ€ζŽ₯η€ε‰€γ‚„γ‚΄γƒ γ‚’ζΆ²εŒ–γ™γ‚‹γγ«γ‚‚役立けます。", + "quests.steam_age.vacuum_chamber.desc": "γ“γ‚Œγ―γ€ηœŸη©Ίη‘γ‚’δ½œζˆγ™γ‚‹ιš›γζœ€η΅‚ε·₯η¨‹γ‚’ζ‹…γ†γƒžγ‚·γƒ³γ§γ™γ€‚ι‰’γδΈŠγ«η½γγ€ε‹•εŠ›γ‚’δΎ›η΅¦γ—γ€γƒžγ‚·γƒ³γŒVacuumizingヒードに設εšγ•γ‚Œγ¦γ„γ‚‹γ“γ¨γ‚’η’Ίθͺγ—てください。\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ε›žθ·―γδ½œζˆγ«γ™γγ«ε–γ‚ŠζŽ›γ‹γ‚‹γ‹γ€δ½œζˆγ—γŸηœŸη©Ίη‘から他γζ©Ÿζ’°γ‚’δ½œζˆγ—γ¦γ€γ‚‚γ†ε°‘γ—θ’Έζ°—ζ™‚δ»£γ«γ¨γ©γΎγ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.steam_age.vacuum_tubes.desc": "真空η‘γδ½œζˆγ―、あγͺたγε­˜εœ¨γ«η–‘ε•γ‚’ζŠ±γ‹γ›γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚δ»Šγ―ιžεΈΈγ«ι«˜δΎ‘γ§γ™γŒγ€γ™γγ«ε‰γγͺγ‚ŠγΎγ™γ€‚γγ‚Œγ“γγŒGregTechγε“²ε­¦γ§γ™οΌ\n\n真空η‘γ―γ€ζœ€εˆγθΆ…δ½Žι›»εœ§(&8ULV&r)ε›žθ·―γ§γ‚‚γ‚γ‚ŠγΎγ™γ€‚\nγΎγšγ―γŠγ‚γ§γ¨γ†γ”γ–γ„γΎγ™οΌγ“γ“γ‹γ‚‰γ€LVε›žθ·―γδ½œζˆγ«γ™γγ«ε–γ‚ŠζŽ›γ‹γ‚‹γ‹γ€δ½œζˆγ—γŸηœŸη©Ίη‘から他γζ©Ÿζ’°γ‚’δ½œζˆγ—γ¦γ€γ‚‚γ†ε°‘γ—θ’Έζ°—ζ™‚δ»£γ«γ¨γ©γΎγ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", "quests.steam_age.resistors.title": "γ‚¨γƒ¬γ‚―γƒˆγƒ­γƒ‹γ‚―γ‚Ή#1:ζŠ΅ζŠ—ε™¨", "quests.steam_age.resistors.subtitle": "ζŠ΅ζŠ—ζ„Ÿγγ‚γ‚‹ε›žθ·―γιƒ¨ε“", - "quests.steam_age.resistors.desc": "ζŠ΅ζŠ—ε™¨γ―γ€ζœ€εˆγε›žθ·―γ‚’δ½œζˆγ™γ‚‹γŸγ‚γιƒ¨ε“γ§γ™γ€‚\n\n&aζ₯΅η΄°γγƒ―むダー&rを使用するレシピをε„ͺε…ˆγ™γ‚‹γγŒθ³’ζ˜Žγ§γ—γ‚‡γ†γ€‚ι•·ζœŸηš„γ«γ―γ‚ˆγ‚Šε€šγγζζ–™γ‚’節約できますから。\n\nδ»Šγ―γƒ―γ‚€γƒ€γƒΌγ‚’δ½œγ‚‹γγ‚‚εŽ³γ—γ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€&3Coiling_Machine&rγ‚„&7LV&rγ&3γƒ―γ‚€γƒ€γƒΌδ½œθ£½ζ©Ÿ&rγ‚’δ½Ώγˆγ°γ€ε€§εΉ…γ«ε‰γγͺγ‚ŠγΎγ™γ€‚", + "quests.steam_age.resistors.desc": "ζŠ΅ζŠ—ε™¨γ―γ€ζœ€εˆγε›žθ·―γ‚’δ½œζˆγ™γ‚‹γŸγ‚γιƒ¨ε“γδΈ€γ€γ§γ™γ€‚\n\n&aζ₯΅η΄°γγƒ―むダー&rを使用するレシピをε„ͺε…ˆγ™γ‚‹γγŒθ³’ζ˜Žγ§γ—γ‚‡γ†γ€‚ι•·ζœŸηš„γ«γ―γ‚ˆγ‚Šε€šγγζζ–™γ‚’節約できますから。\n\nδ»Šγ―γƒ―γ‚€γƒ€γƒΌγ‚’δ½œγ‚‹γγ‚‚εŽ³γ—γ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€&3Coiling_Machine&rγ‚„&7LV&rγ&3γƒ―γ‚€γƒ€γƒΌδ½œθ£½ζ©Ÿ&rγ‚’δ½Ώγˆγ°γ€ε€§εΉ…γ«ε‰γγͺγ‚ŠγΎγ™γ€‚", "quests.steam_age.coiling_machine.title": "Spring Coiling Machine", "quests.steam_age.coiling_machine.subtitle": "γƒ―γ‚€γƒ€γƒΌδ½œθ£½ζ©Ÿγ«ι‡‘ε±žεŠ ε·₯機γεŠεˆ†γ‚’γγγ‚Šγ€γ‘γ¦γΏγŸοΌ", "quests.steam_age.coiling_machine.desc": "&3Spring_Coiling_Machine&rγ―γƒ―γ‚€γƒ€γƒΌδ½œθ£½ζ©Ÿγ«δΌΌγ¦γ„γΎγ™γŒγ€η•°γͺγ‚‹γ‚΅γ‚€γ‚Ίγγƒ―むダーを直ζŽ₯ε‡ΊεŠ›γ™γ‚‹ζ©Ÿθƒ½γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚γγ‚Œγ§γ‚‚γ€γ“γ‚Œγ―ιžεΈΈγ«ε„ͺ秀でε‰δΎ‘γͺγƒ―γ‚€γƒ€γƒΌδ½œθ£½θƒ½εŠ›γ‚’ζŒγ£γ¦γ„γΎγ™γ€‚\n\nこγγƒžγ‚·γƒ³γ―γ€γ‚ˆγ‚Šε‰δΎ‘γ«γƒγƒγ‚‚δ½œζˆγ§γγΎγ™οΌ", "quests.steam_age.curving_press.title": "Curving Press", "quests.steam_age.curving_press.subtitle": "εŸΊζœ¬εž‹ζŠΌγ—ε‡Ίγ—ζ©Ÿγ¨εŒγ˜γγ‚‰γ„γƒ‹γƒƒγƒ", - "quests.steam_age.curving_press.desc": "&3Curving_Press&rγ―γ€εŸΊζœ¬εž‹ζŠΌγ—ε‡Ίγ—ζ©Ÿγ¨εŒγ˜γƒ¬γ‚·γƒ”γ‚’γ™γΉγ¦εŸθ‘Œγ§γγΎγ™γ€‚ζ‹εΏ΅γͺγŒγ‚‰γ€γ©γ‘γ‚‰γ‚‚γ‚γΎγ‚Šε€šγγγ“とをεŸθ‘Œγ§γγΎγ›γ‚“γ€‚ζŠΌγ—ε‡Ίγ—ζ©Ÿγ―MVζ™‚δ»£γ«εˆ°ι”γ™γ‚‹γ¨ηœŸδΎ‘γ‚’η™Ίζγ—γΎγ™γ€‚γγ‚Œγ§γ‚‚γ€ε€§ι‡γγƒ„γƒΌγƒ«γƒ˜γƒƒγƒ‰γ‚’δ½œζˆγ—γŸγ„ε ΄εˆγ―、こγγƒžγ‚·γƒ³γ§δ½œζˆγ§γγΎγ™γ€‚", + "quests.steam_age.curving_press.desc": "&3Curving_Press&rγ―γ€εŸΊζœ¬εž‹ζŠΌγ—ε‡Ίγ—ζ©Ÿγ¨εŒγ˜γƒ¬γ‚·γƒ”γ‚’γ™γΉγ¦εŸθ‘Œγ§γγΎγ™γ€‚ζ‹εΏ΅γͺγŒγ‚‰γ€ηΎζ΅ιšŽγ§γ―γ©γ‘γ‚‰γ‚‚γ‚γΎγ‚Šη”¨ι€”γŒε€šγγ‚γ‚ŠγΎγ›γ‚“γ€‚\nζŠΌγ—ε‡Ίγ—ζ©Ÿγ―MVζ™‚δ»£γ«εˆ°ι”γ™γ‚‹γ¨ηœŸδΎ‘γ‚’η™Ίζγ—ます。\nδΈ€εΏœγ€ε€§ι‡γγƒ„γƒΌγƒ«γƒ˜γƒƒγƒ‰γ‚’δ½œζˆγ—γŸγ„ε ΄εˆγ―、こγγƒžγ‚·γƒ³γŒε½Ήη«‹γ€γ§γ—ょう。", "quests.steam_age.vibrating_table.title": "Vibrating Table", "quests.steam_age.vibrating_table.subtitle": "選εˆ₯ζ©Ÿγ¨εŒη­‰", - "quests.steam_age.vibrating_table.desc": "&3Vibrating_Table&rは、εηŸ³γι‰±ηŸ³(ηŸ³η‚­γ‚’ε«γ‚€)を独θ‡ͺγζ–Ήζ³•γ§ε‡¦η†γ§γγ€ηΎζ™‚η‚Ήγ§δ½Ώγˆγ‚‹δ»–γζ–Ήζ³•γ‚ˆγ‚Šγ‚‚γ―γ‚‹γ‹γ«ε€šγη”Ÿη”£γ—γ¦γγ‚ŒγΎγ™γ€‚γ•γ‚‰γ«γ€ι‡‘ε±žγζ··γ˜γ£γŸη ‚εˆ©γ‚‚ε‡¦η†γ§γγΎγ™γ€‚γ‚‚γ†ζ΅γ—ζ¨‹γ§γδ½œζ₯­γ―εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“οΌ", + "quests.steam_age.vibrating_table.desc": "&3Vibrating_Table&rは、εηŸ³γι‰±ηŸ³(ηŸ³η‚­γ‚’ε«γ‚€)を独θ‡ͺγζ–Ήζ³•γ§ε‡¦η†γ§γγ€ηΎζ™‚η‚Ήγ§δ½Ώγˆγ‚‹δ»–γζ–Ήζ³•γ‚ˆγ‚Šγ‚‚γ―γ‚‹γ‹γ«η”Ÿη”£ι‡γŒε€šγγͺγ‚ŠγΎγ™γ€‚\nγ•γ‚‰γ«γ€ι‡‘ε±žγζ··γ˜γ£γŸη ‚εˆ©γ‚‚ε‡¦η†γ§γγΎγ™γ€‚γ‚‚γ†ζ΅γ—ζ¨‹γ§γδ½œζ₯­γ―εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“οΌ", "quests.steam_age.lathe.title": "Belt Grinder", "quests.steam_age.lathe.subtitle": "金吹ι›ͺθˆžγ„ζ•£γ‚‹", - "quests.steam_age.lathe.desc": "&3Belt_Grinder&rは、一぀γγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’2぀γζ£’γ«εˆ‡ε‰Šγ—γŸγ‚Šγ€γƒœγƒ«γƒˆγ‚’γ‚Ήγ‚―γƒͺγƒ₯γƒΌγ«εŠ ε·₯γ—γŸγ‚Šγ€γ‚γ‚‹γ„γ―γ€εηŸ³γ‚’η ”η£¨γ—γŸγ‚Šγͺγ©γ€ζ§˜γ€…γͺ加ε·₯γŒθ‘ŒγˆγΎγ™γ€‚ε€šγγζ£’とスクγƒͺγƒ₯γƒΌγŒεΏ…θ¦γͺε ΄εˆγ―γ€γ“γγƒžγ‚·γƒ³γ―θ‰―γ„ζŠ•θ³‡γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.steam_age.lathe.desc": "&3Belt_Grinder&rは、一぀γγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’2぀γζ£’γ«εˆ‡ε‰Šγ—γŸγ‚Šγ€γƒœγƒ«γƒˆγ‚’γ‚Ήγ‚―γƒͺγƒ₯γƒΌγ«εŠ ε·₯γ—γŸγ‚Šγ€γ‚γ‚‹γ„γ―γ€εηŸ³γ‚’η ”η£¨γ—γŸγ‚Šγͺγ©γ€ζ§˜γ€…γͺ加ε·₯γŒθ‘ŒγˆγΎγ™γ€‚\n倚くγζ£’とスクγƒͺγƒ₯γƒΌγŒεΏ…θ¦γͺε ΄εˆγ―γ€γ“γγƒžγ‚·γƒ³γŒε½Ήγ«η«‹γ£γ¦γγ‚Œγ‚‹γ§γ—ょう。", "quests.steam_age.steel_saw.title": "鋼鉄製パカニカルソー", "quests.steam_age.steel_saw.subtitle": "ηŸ³εˆ‡γ‚Šε°γ¨εŸΊζœ¬εž‹θ£ζ–­ζ©ŸγŒ1぀に!", - "quests.steam_age.steel_saw.desc": "γ“γ‚Œγ―γ€ζ£’γ‚’4぀γγƒœγƒ«γƒˆγ«ε€‰γˆγŸγ‚Šγ€γƒ–γƒ­γƒƒγ‚―γ‚’γƒ—γƒ¬γƒΌγƒˆγ«θ£ζ–­γ—γŸγ‚Šγ™γ‚‹γͺど、いく぀かγι‡‘ε±žγƒ¬γ‚·γƒ”γ‚‚ε‡¦η†γ§γγ‚‹γ‚ˆγ†γ«γͺγ£γŸεŸΊζœ¬εž‹γƒ‘γ‚«γƒ‹γ‚«γƒ«γ‚½γƒΌγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰η‰ˆγ§γ™γ€‚γ“γ‚Œγ‚‰γγƒ¬γ‚·γƒ”γ‚’εŸθ‘Œγ™γ‚‹γŸγ‚γ«γ―ζΆ²δ½“γŒεΏ…θ¦γ§γ™γŒγ€δ»Šγγ¨γ“γ‚γ―ζ°΄γ‚’δ½Ώγˆγ°γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚\n\nζœ€εˆγ«εˆι‡‘η²ΎιŒ¬ζ©Ÿγ‚’δ½Ώη”¨γ—γ¦γ‚΄γƒ γƒ‘γƒ«γƒ—γ‚’γƒ–γƒ­γƒƒγ‚―γ«ε€‰γˆγ‚‹γ¨γ€γ‚ˆγ‚Šε‰δΎ‘γ«γ‚΄γƒ γ‚·γƒΌγƒˆγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.steam_age.steel_saw.desc": "鋼鉄製パカニカルソーは、棒を4぀γγƒœγƒ«γƒˆγ«ε€‰γˆγŸγ‚Šγ€γƒ–γƒ­γƒƒγ‚―γ‚’γƒ—γƒ¬γƒΌγƒˆγ«θ£ζ–­γ—γŸγ‚Šγ™γ‚‹γͺど、いく぀かγι‡‘ε±žγƒ¬γ‚·γƒ”γ‚‚ε‡¦η†γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸγ€‚\nγ“γ‚Œγ‚‰γγƒ¬γ‚·γƒ”γ‚’εŸθ‘Œγ™γ‚‹γŸγ‚γ«γ―ζΆ²δ½“γŒεΏ…θ¦γ§γ™γŒγ€δ»Šγγ¨γ“γ‚γ―ζ°΄γ‚’δ½Ώγˆγ°γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚\n\nζœ€εˆγ«εˆι‡‘η²ΎιŒ¬ζ©Ÿγ‚’δ½Ώη”¨γ—γ¦γ‚΄γƒ γƒ‘γƒ«γƒ—γ‚’γƒ–γƒ­γƒƒγ‚―γ«ε€‰γˆγ‚‹γ¨γ€γ‚ˆγ‚Šε‰δΎ‘γ«γ‚΄γƒ γ‚·γƒΌγƒˆγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ‚³γƒγƒ«γƒˆγƒ–γƒ©γ‚Ήγ‚’γΎγ δ½œγ£γŸγ“γ¨γŒγͺγ„ε ΄εˆγ―γ€γ‚±γ‚€ι…Έγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γ«γͺγ‚‹η΄ ζγ‚’γ‚‹γ€γΌγ§εˆι‡‘γ¨γ—γ¦ζΊΆγ‹γ™γ‹γ€ι‰±ηŸ³ε‡¦η†γ§ε‡Ίγ‚‹γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γη²‰γ‚’δ½Ώγ£γ¦γƒŸγ‚­γ‚΅γƒΌγ§δ½œγ‚‹ζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.steam_age.rolling_mill.title": "Rolling Mill", "quests.steam_age.rolling_mill.subtitle": "ι‡‘ε±žεŠ ε·₯機γζ‹γ‚ŠεŠεˆ†", - "quests.steam_age.rolling_mill.desc.1": "θ’Έζ°—ζ™‚δ»£γ«δ½œγ‚Œγ‚‹γƒžγ‚·γƒ³γδΈ­γ§γ‚‚、&3Rolling Mill&rγ―γ€ζœ€ι«˜γγ‚‚γγ1぀です。γͺぜγͺら、1぀γγ‚€γƒ³γ‚΄γƒƒγƒˆγ‹γ‚‰1぀γγƒ—γƒ¬γƒΌγƒˆγŒδ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚‹γ‚“γ§γ™γ‚ˆοΌ γΎγŸγ€θ–„γ„γ‚·γƒΌγƒˆγ‚’ζ‰‹δ½œζ₯­γ‚ˆγ‚Šγ‚‚ε‰δΎ‘γ«δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™οΌ", - "quests.steam_age.rolling_mill.desc.2": "&l&3伝承では...&r&o こγγƒžγ‚·γƒ³γ―δ»₯前からTFGγ«γ‚γ£γŸγ‚“γ γ‘γ©γ€ζ˜”γ―γ€γƒ—γƒ¬γƒΌγƒˆγδ»£γ‚γ‚Šγ«ζ£’γ‚’δ½œγ£γ¦γ¦γ€γγγ¨γγεŸΊζœ¬εž‹ι‡‘ε±žεŠ ε·₯機γε‰γγƒ—γƒ¬γƒΌγƒˆδ½œζˆζ©Ÿγ―20οΌ…γ§ε€±ζ•—γ—γ¦γŸγ‚“γ γ£γ¦οΌ...といいます。", + "quests.steam_age.rolling_mill.desc.1": "θ’Έζ°—ζ™‚δ»£γ«δ½œγ‚Œγ‚‹γƒžγ‚·γƒ³γδΈ­γ§γ‚‚、&3Rolling_Mill&rγ―γ€ζœ€ι«˜γγ‚‚γγ1぀です。γͺんと、1぀γγ‚€γƒ³γ‚΄γƒƒγƒˆγ‹γ‚‰1぀γγƒ—γƒ¬γƒΌγƒˆγŒδ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚‹γ‚“γ§γ™γ‚ˆοΌ\nγΎγŸγ€θ–„γ„γ‚·γƒΌγƒˆγ‚’ζ‰‹δ½œζ₯­γ‚ˆγ‚Šγ‚‚ε‰δΎ‘γ«δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™οΌ", + "quests.steam_age.rolling_mill.desc.2": "&l&3δ½™θ«‡οΌš&r&oこγγƒžγ‚·γƒ³γ―δ»₯前からTFGγ«γ‚γ£γŸγ‚“γ γ‘γ©γ€ζ˜”γ―γƒ—γƒ¬γƒΌγƒˆγδ»£γ‚γ‚Šγ«ζ£’γ‚’δ½œγ£γ¦γ¦γ€γγγ¨γγεŸΊζœ¬εž‹ι‡‘ε±žεŠ ε·₯機γε‰γγƒ—γƒ¬γƒΌγƒˆδ½œζˆζ©Ÿγ―20οΌ…γ§ε€±ζ•—γ—γ¦γŸγ‚“γ γ£γ¦οΌγ‚¬γƒγƒ£θ¦η΄ γ‚‚ζ‹γ—γŸζ–ΉγŒγ‚ˆγ‹γ£γŸγ‹γͺ...?", "quests.steam_age.steel_mixer.title": "ι‹Όι‰„θ£½γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒŸγ‚­γ‚΅γƒΌ", "quests.steam_age.steel_mixer.subtitle": "εŸΊζœ¬εž‹γƒŸγ‚­γ‚΅γƒΌγγ‚’γƒΌγƒͺγƒΌγ‚’γ‚―γ‚»γ‚Ήη‰ˆ", - "quests.steam_age.steel_mixer.desc": "&3ι‹Όι‰„θ£½γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒŸγ‚­γ‚΅γƒΌ&rγ―γ€θ’Έζ°—ζ™‚δ»£γ«δ½œγ‚Œγ‚‹ζœ€ι«˜γγƒžγ‚·γƒ³γγ‚‚う1γ€γ§γ™γ€‚γ‚‹γ€γΌγ‚ˆγ‚Šγ‚‚γ―γ‚‹γ‹γ«εŠΉηŽ‡ηš„γͺι€ŸεΊ¦γ§γ€θ‰²δ»˜γγι‹Όι‰„γη²‰ζœ«γ‚’ζ··εˆγ§γγΎγ™οΌ ガスを含むレシピもεŸθ‘Œγ§γγ¦γ—γΎγ„γΎγ™γŒ...γΎγ‚γ€ζ·±γγ―θ€ƒγˆγͺγ„γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚\n\nεŠ η†±γŒεΏ…θ¦γͺγƒ¬γ‚·γƒ”γ«γ―γ€η‚‰γΎγŸγ―γƒ–γƒ¬γ‚€γ‚ΊγƒγƒΌγƒŠγƒΌγ‚’δ½Ώη”¨γ§γγ€γƒ‘γ‚«γƒ‹γ‚«γƒ«γ‚’γƒΌγƒ γ―γ©γ‘γ‚‰γ«γ‚‚θ‡ͺε‹•ηš„γ«η‡ƒζ–™γ‚’θ£œη΅¦γ§γγΎγ™γ€‚", + "quests.steam_age.steel_mixer.desc": "&3ι‹Όι‰„θ£½γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒŸγ‚­γ‚΅γƒΌ&rγ―γ€θ’Έζ°—ζ™‚δ»£γ«δ½œγ‚Œγ‚‹ζœ€ι«˜γγƒžγ‚·γƒ³γγ‚‚う1γ€γ§γ™γ€‚γ‚‹γ€γΌγ‚ˆγ‚Šγ‚‚γ―γ‚‹γ‹γ«εŠΉηŽ‡ηš„γͺι€ŸεΊ¦γ§γ€θ‰²δ»˜γγι‹Όι‰„γη²‰ζœ«γ‚’ζ··εˆγ§γγΎγ™οΌ\nガスを含むレシピもεŸθ‘Œγ§γγ¦γ—γΎγ„γΎγ™γŒ...γΎγ‚γ€ζ·±γγ―θ€ƒγˆγͺγ„γ‚ˆγ†γ«γ—γΎγ—γ‚‡γ†γ€‚\n\nεŠ η†±γŒεΏ…θ¦γͺγƒ¬γ‚·γƒ”γ«γ―γ€η‚‰γΎγŸγ―γƒ–γƒ¬γ‚€γ‚ΊγƒγƒΌγƒŠγƒΌγ‚’δ½Ώη”¨γ§γγ€γƒ‘γ‚«γƒ‹γ‚«γƒ«γ‚’γƒΌγƒ γ―γ©γ‘γ‚‰γ«γ‚‚θ‡ͺε‹•ηš„γ«η‡ƒζ–™γ‚’θ£œη΅¦γ§γγΎγ™γ€‚", "quests.steam_age.potin.title": "ポティン!!!", "quests.steam_age.potin.subtitle": "ε€§δΈˆε€«γ€‚δΈ‹γƒγ‚Ώγ§γ―γ‚γ‚ŠγΎγ›γ‚“", - "quests.steam_age.potin.desc.1": "&dポティン製梲体パむプ&rγ―γ€γ‚³γ‚Ήγƒˆγ«ε―Ύγ—γ¦&aιžεΈΈγ«ι«˜γ„ζΆ²δ½“ι‹ζ¬ζ€§θƒ½&rγ‚’ζŒγ£γ¦γ„γΎγ™γ€‚γ‚ˆγ‚Šγ‚ˆγ„ζΆ²δ½“γι‹ζ¬γ‚„η‘理γγŸγ‚γ«γ‚‚γ€γ“γ‚Œγ‚‰γγ„γγ€γ‹γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚’ζ€œθ¨Žγ—γ¦γγ γ•γ„γ€‚\n\n&dポティン&rγ‚’γ€γγ‚‹γ«γ―γ€γΎγš&eη²‰ζœ«&rγε½’γ‹γ‚‰ε§‹γ‚γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€η΄°γ„γƒ‘γ‚€γƒ—γΎγŸγ―ι€šεΈΈγγƒ‘γ‚€γƒ—γγ©γ‘γ‚‰γ‹γŒεΏ…θ¦γ§γ™γ€‚γ©γ‘γ‚‰γ‹γγ‚΅γ‚€γ‚Ίγ‚’ε…₯手してεŒδΊ†γ—てください。", - "quests.steam_age.potin.desc.2": "&l&3伝承では...&r&o &dポティン製梲体パむプ&rは元々&9GT++&rγ«γ¦η”ŸγΏε‡Ίγ•γ‚Œγ¦γ€&4[GT:NH]&rγ¨ε‘Όγ°γ‚Œγ‚‹ε°θ¦ζ¨‘γͺPackγ§γ―ηŒ›ε¨γ‚’ζŒ―γ‚‹γ£γ¦γ„γŸγ‚“γ γ¨γ€‚η§γŸγ‘γ―γγε–œγ³γ‚’εΊƒγ‚γŸγ‹γ£γŸγ‚“γ γ€‚\n\nけγͺみに、現εŸγδΈ–η•Œγ§γ―、&dポティン&rはパむプではγͺγγ€γ‚³γ‚€γƒ³γ«δ½Ώη”¨γ•γ‚Œγ‚‹εˆι‡‘γ‚‰γ—γ„γ‚ˆγ€‚GTCEuはζ—₯γ€…ιžηΎεŸηš„にγͺっていますね...といいます。", + "quests.steam_age.potin.desc.1": "&dポティン製梲体パむプ&rγ―γ€γ‚³γ‚Ήγƒˆγ«ε―Ύγ—γ¦&aιžεΈΈγ«ι«˜γ„ζΆ²δ½“ι‹ζ¬ζ€§θƒ½&rγ‚’ζŒγ£γ¦γ„γΎγ™γ€‚\nγ‚ˆγ‚Šγ‚ˆγ„ζΆ²δ½“γι‹ζ¬γ‚„η‘理γγŸγ‚γ«γ‚‚γ€γœγ²γ¨γ‚‚δ½œγ£γ¦γΏγ¦γγ γ•γ„γ€‚\n\n&dポティン&rγ‚’γ€γγ‚‹γ«γ―γ€γΎγš&eη²‰ζœ«&rγε½’γ‹γ‚‰ε§‹γ‚γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€η΄°γ„γƒ‘γ‚€γƒ—γΎγŸγ―ι€šεΈΈγγƒ‘γ‚€γƒ—γγ©γ‘γ‚‰γ‹γŒεΏ…θ¦γ§γ™γ€‚γ©γ‘γ‚‰γ‹γγ‚΅γ‚€γ‚Ίγ‚’ε…₯手してεŒδΊ†γ—てください。", + "quests.steam_age.potin.desc.2": "&l&3δ½™θ«‡οΌš&r&o&dポティン製梲体パむプ&rは元々&9GT++&rγ§η”ŸγΏε‡Ίγ•γ‚Œγ¦γ€&4[GT:NH]&rγ¨ε‘Όγ°γ‚Œγ‚‹ε°θ¦ζ¨‘γͺPackγ§γ―ηŒ›ε¨γ‚’ζŒ―γ‚‹γ£γ¦γ„γŸγ‚“γ γ¨γ€‚η§γŸγ‘γ―γγε–œγ³γ‚’εΊƒγ‚γŸγ‹γ£γŸγ‚“γ γ‚ˆγ€‚\n\nけγͺみに、現εŸγδΈ–η•Œγ§γ―、&dポティン&rはパむプではγͺγγ€γ‚³γ‚€γƒ³γ«δ½Ώη”¨γ•γ‚Œγ‚‹εˆι‡‘γ‚‰γ—γ„γ‚ˆγ€‚GTCEuはζ—₯γ€…ιžηΎεŸηš„にγͺっていますね...", "quests.steam_age.miner.title": "θ‡ͺε‹•ζŽ‘ζŽ˜", "quests.steam_age.miner.subtitle": "γ“γ“γ‚‚γ„γšγ‚Œ...", - "quests.steam_age.miner.desc.1": "ι‰±ηŸ³γ‚’θ‡ͺε‹•ζŽ‘ζŽ˜γ™γ‚‹2぀γζ–Ήζ³•γŒεˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸοΌ γŸγ γ—γ€γ©γ‘γ‚‰γ‚‚γ‹γͺγ‚Šζ™‚ι–“γŒγ‹γ‹γ‚‹γγ§γ€θ¨­η½γ—てチャンクをロードし、座して待぀γγ§γ―γͺγγ€δ»£γ‚γ‚Šγ«δ½•γ‹δ»–γδ½œζ₯­γ‚’ι€²γ‚γ¦γŠγ„γŸζ–ΉγŒγ„γ„γ¨ζ€γ„γΎγ™γ‚ˆγ€‚\n\nパカニカルドγƒͺγƒ«γ―γ€ζŽ˜γ‚Šγ™γ™γ‚€γŸγ‚γδ»•ζŽ›γ‘γ‚’δ½œγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚εΏ…θ¦γ«εΏœγ˜γ¦γ€εˆ—θ»Šγε…ˆι ­γ‚„γƒˆγƒ­γƒƒγ‚³γ«ε–γ‚Šδ»˜γ‘γ¦γƒˆγƒ³γƒγƒ«γ‚’ζŽ˜γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", - "quests.steam_age.miner.desc.2": "δΈ€ζ–Ήγ€θ’Έζ°—εΌζŽ‘ζŽ˜ζ©Ÿγ―γ€ι‰±ηŸ³γƒ–γƒ­γƒƒγ‚―γγΏγ‚’η ΄ε£Šγ—γ€ζ‹γ‚Šγεœ°ι’をそγγΎγΎγ«γ—γ¦γ€γγ‚Œγ‚‰γ‚’δΈΈηŸ³γ«η½γζ›γˆγΎγ™γ€‚ 小さめγη―„ε›²γ‚’θ‡ͺε‹•γ§ζŽ‘ζŽ˜γ—γ¦γγ‚Œγ‚‹γŸγ‚γ€γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒ‰γƒͺγƒ«γ‚ˆγ‚ŠζΊ–ε‚™γ―ζ₯½γ§γ™γŒγ€ε‹•δ½œι€ŸεΊ¦γ―とても遅いです。", + "quests.steam_age.miner.desc.1": "ι‰±ηŸ³γ‚’θ‡ͺε‹•ζŽ‘ζŽ˜γ™γ‚‹2぀γζ–Ήζ³•γŒεˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ—γŸοΌ\nγŸγ γ—γ€γ©γ‘γ‚‰γ‚‚γ‹γͺγ‚Šζ™‚ι–“γŒγ‹γ‹γ‚‹γγ§γ€θ¨­η½γ—てチャンクをロードし、座して待぀γγ§γ―γͺγγ€δ»£γ‚γ‚Šγ«δ½•γ‹δ»–γδ½œζ₯­γ‚’ι€²γ‚γ¦γŠγ„γŸζ–ΉγŒγ„γ„γ¨ζ€γ„γΎγ™γ€‚\n\nパカニカルドγƒͺγƒ«γ―γ€ζŽ˜γ‚Šγ™γ™γ‚€γŸγ‚γδ»•ζŽ›γ‘γ‚’δ½œγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚εΏ…θ¦γ«εΏœγ˜γ¦γ€εˆ—θ»Šγε…ˆι ­γ‚„γƒˆγƒ­γƒƒγ‚³γ«ε–γ‚Šδ»˜γ‘γ¦γƒˆγƒ³γƒγƒ«γ‚’ζŽ˜γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.steam_age.miner.desc.2": "δΈ€ζ–Ήγ€θ’Έζ°—εΌζŽ‘ζŽ˜ζ©Ÿγ―γ€ι‰±ηŸ³γƒ–γƒ­γƒƒγ‚―γγΏγ‚’η ΄ε£Šγ—γ€ζ‹γ‚Šγεœ°ι’をそγγΎγΎγ«γ—γ¦γ€γγ‚Œγ‚‰γ‚’δΈΈηŸ³γ«η½γζ›γˆγΎγ™γ€‚\n小さめγη―„ε›²γ‚’θ‡ͺε‹•γ§ζŽ‘ζŽ˜γ—γ¦γγ‚Œγ‚‹γŸγ‚γ€γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒ‰γƒͺγƒ«γ‚ˆγ‚ŠζΊ–ε‚™γ―ζ₯½γ§γ™γŒγ€ε‹•δ½œι€ŸεΊ¦γŒγ¨γ¦γ‚‚ι…γ„γ§γ™γ€‚", "quests.steam_age.paper.title": "η΄™", "quests.steam_age.paper.subtitle": "γ‚΅γƒˆγ‚¦γ‚­γƒ“γ‹γ‚‰γ―δ½œγ‚Œγͺいんです", - "quests.steam_age.paper.desc": "γΎγ δ½œγ£γ¦γ„γͺγ‹γ£γŸγ§γ™γ‹οΌŸγ§γ—γŸγ‚‰ι›»ζ°—γͺしで紙をε…₯手する方法を3γ€γŠζ•™γˆγ—γΎγ™γ€‚\n\n1)ηšγ€θ»½ηŸ³γ€ε΅γ§ηΎŠηšη΄™γ‚’δ½œζˆγ™γ‚‹γ€‚\n\n2)パピルスを織る。\n\n3)ι•·γ„γƒ—γƒ­γ‚»γ‚Ήγ‚’η΅Œγ¦ζ¨Ήγ‹γ‚‰δ½œγ‚‹γ€‚\n\nεΎŒγ«γ―γ€ι›ι€ ζ©Ÿγͺγ©γ‚’η”¨γ„γ¦ζœ¨ζγƒ‘γƒ«γƒ—γ‚’ε°‘γͺいε·₯η¨‹γ§η΄™γ«ε€‰γˆγ‚‹γ“γ¨γŒγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.steam_age.paper.desc": "γΎγ δ½œγ£γ¦γ„γͺγ‹γ£γŸγ§γ™γ‹οΌŸγ§γ—γŸγ‚‰ι›»ζ°—γͺしで紙をε…₯手する方法を3γ€γŠζ•™γˆγ—γΎγ™γ€‚\n\n1)ηšγ€θ»½ηŸ³γ€ε΅γ§ηΎŠηšη΄™γ‚’δ½œζˆγ™γ‚‹γ€‚\n\n2)パピルスを織る。\n\n3)長いε·₯η¨‹γ‚’η΅Œγ¦ζ¨Ήγ‹γ‚‰δ½œγ‚‹γ€‚\n\nεΎŒγ«γ―γ€ι›ι€ ζ©Ÿγͺγ©γ‚’η”¨γ„γ¦ζœ¨γγƒ‘ルプを少γͺいε·₯η¨‹γ§η΄™γ«ε€‰γˆγ‚‹γ“γ¨γŒγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", "quests.steam_age.lv_circuit.title": "ζœ€εˆγε›žθ·―!", "quests.steam_age.lv_circuit.subtitle": "新時代γεΉ•開け", - "quests.steam_age.lv_circuit.desc": "こγγƒ¬γ‚·γƒ”γ«γ€ζœ€εˆγ―εœ§ε€’γ•γ‚Œγ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚γ—γ‹γ—γ€θ’Έζ°—ζ™‚δ»£γ«ζ™‚ι–“γ‚’γ‹γ‘γ€γ˜γ£γγ‚Šι€²γ‚γ¦γ„γ‚Œγ°γ€γ™γΉγ¦η°‘ε˜γ«θ‡ͺε‹•εŒ–γ§γγ‚‹γ―γšγ§γ™γ€‚ しばらくγι–“γ―γ“γ‚Œγ‚’γŸγγ•γ‚“δ½œζˆγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γŒγ€ε›žθ·―η΅„γΏη«‹γ¦ζ©Ÿγ‚’ζ‰‹γ«ε…₯γ‚Œγ‚‹γΎγ§γ―γ€γ“γ‚Œγ‹γ‚‰δ½œγ‚‹ι›»ε‹•γζ©Ÿζ’°γŸγ‘γ«γ‚ˆγ£γ¦γ€γ•γ‚‰γ«δ½œγ‚Šγ‚„γ™γγͺっていくでしょう。", + "quests.steam_age.lv_circuit.desc": "こγγƒ¬γ‚·γƒ”γ«γ€ζœ€εˆγ―εœ§ε€’γ•γ‚Œγ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚γ—γ‹γ—γ€θ’Έζ°—ζ™‚δ»£γ«ζ™‚ι–“γ‚’γ‹γ‘γ€γ˜γ£γγ‚Šι€²γ‚γ¦γ„γ‚Œγ°γ€γ™γΉγ¦η°‘ε˜γ«θ‡ͺε‹•εŒ–γ§γγ‚‹γ―γšγ§γ™γ€‚\nしばらくγι–“γ―γ“γ‚Œγ‚’γŸγγ•γ‚“δ½œζˆγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γŒγ€ε›žθ·―η΅„γΏη«‹γ¦ζ©Ÿγ‚’ζ‰‹γ«ε…₯γ‚Œγ‚‹γΎγ§γ―γ€γ“γ‚Œγ‹γ‚‰δ½œγ‚‹ι›»ε‹•γζ©Ÿζ’°γŸγ‘γ«γ‚ˆγ£γ¦γ€γ•γ‚‰γ«δ½œγ‚Šγ‚„γ™γγͺっていくでしょう。", "quests.steam_age.what_next.title": "欑は?", "quests.steam_age.what_next.subtitle": "ζ₯γŸγ‚Œγ€GregTech", "quests.steam_age.what_next.desc": "ここにζ€₯いでζ₯γŸε ΄εˆγ―γ€ζœ€εˆγ«ι‡‘ε±žεŠ ε·₯ζ©Ÿγ€γƒ―γ‚€γƒ€γƒΌδ½œθ£½ζ©Ÿγ€γΎγŸγ―γƒŸγ‚­γ‚΅γƒΌγͺどγζ©Ÿζ’°γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚\nδΈ‹γCreateγƒžγ‚·γƒ³γ‚’δ½œζˆγ—γ¦γ„γŸε ΄εˆγ―γ€η΅„γΏη«‹γ¦ζ©Ÿγ€γ‚’γƒΌγ‚―η‚‰γ€εŒ–ε­¦εεΏœε™¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚", "quests.steam_age.alternator.title": "γ‚ͺルタネーター", "quests.steam_age.alternator.subtitle": "γ‚Ήγƒˆγƒ¬γ‚Ήγ‚’εŠ›γ«ε€‰γˆγ‚‹", - "quests.steam_age.alternator.desc.1": "倧規樑γͺ蒸気時代γγ‚»γƒƒγƒˆγ‚’γƒƒγƒ—γŒγ‚γ‚‹ε ΄εˆγ―γ€γƒœγ‚€γƒ©γƒΌγ¨[LV Steam Turbines]γ«ζˆ»γ‚‹γŸγ‚γ γ‘γ«γ€γ™γγ«γ™γΉγ¦γ‚’ε»ƒζ£„γ—γŸγγͺγ„γ§γ—γ‚‡γ†γ€‚δ»£γ‚γ‚Šγ«γ€&3γ‚ͺルタネーター&rγ―θ’Έζ°—ζ©Ÿι–’γ‹γ‚‰γ[SU]γ‚’ι›»ζ°—γ«ε€‰ζ›γ—γΎγ™γ€‚ε„θ’Έζ°—ζ©Ÿι–’+γ‚ͺルタネーターは、1Aγ[LV]γ‚’ζδΎ›γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌζ‹εΏ΅γͺγŒγ‚‰γ€γ‚ͺγƒ«γ‚ΏγƒγƒΌγ‚ΏγƒΌγ―γ‚Ήγƒˆγƒ¬γ‚Ήγ‚’[GregTech]γŒδ½Ώη”¨γ™γ‚‹ι›»ζ°—γ‚·γ‚Ήγƒ†γƒ γ¨γ―η•°γͺγ‚‹ι›»ζ°—γ‚·γ‚Ήγƒ†γƒ γ«ε€‰ζ›γ™γ‚‹γŸγ‚γ€γ‚¨γƒγƒ«γ‚ーコンバーターを使用して使用可能γͺ[LV]エネルγ‚γƒΌγ«ε€‰ζ›γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", - "quests.steam_age.alternator.desc.2": "θ’Έζ°—ζ©Ÿι–’γŒ8γ‚’γƒ³γƒšγ‚’γ[LV]γ‚’η”Ÿζˆγ™γ‚‹δΎ‹γ§γ™οΌ\n", + "quests.steam_age.alternator.desc.1": "θ’Έζ°—ζ©Ÿι–’γι‹η”¨γ«γ‹γͺγ‚ŠγεŠ›γ‚’ε…₯γ‚Œγ¦γ„γŸε ΄εˆγ€γγ‚Œγ‚’LVζ™‚δ»£γ«ι€²γ‚“γ§γ‹γ‚‰γ‚‚ζ΄»η”¨γ™γ‚‹ζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚\n&3γ‚ͺルタネーター&rγ―εΏœεŠ›γ‚’ι›»ζ°—γ«ε€‰ζ›γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚θ’Έζ°—γ‚¨γƒ³γ‚Έγƒ³1぀とγ‚ͺルタネーター1぀γη΅„γΏεˆγ‚γ›γ§γ€LV1A相当γι›»εŠ›γ‚’δΎ›η΅¦γ—γ¦γγ‚ŒγΎγ™οΌ\n\nζ‹εΏ΅γͺγŒγ‚‰γ€γ‚ͺルタネーターはGregγι›»εŠ›γ§γ‚γ‚‹γ€ŒEU」ではγͺγγ€ŒFEγ€γ‚’ε‡ΊεŠ›γ™γ‚‹γŸγ‚γ€γ‚¨γƒγƒ«γ‚γƒΌε€‰ζ›ζ©Ÿγ§ε€‰ζ›γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.steam_age.alternator.desc.2": "θ’Έζ°—ζ©Ÿι–’γŒLV8γ‚’γƒ³γƒšγ‚’γ‚’η”Ÿζˆγ™γ‚‹δΎ‹γ§γ™οΌ\n", "quests.steam_age.packager.title": "Create物桁システム", "quests.steam_age.packager.subtitle": "君んけにはAE2がγͺいγοΌŸ", - "quests.steam_age.packager.desc": "倉庫系Modγͺしでε·₯ζ₯­Modをすすめるγγ―ε€§ε€‰γ§γ—γ‚‡γ†γ€‚γŠεΎ…γŸγ›γ—γΎγ—γŸοΌγ€γ„γ«γ€Createγη‰©ζ΅γ‚·γ‚Ήγƒ†γƒ γŒεˆ©η”¨ε―能にγͺγ‚ŠγΎγ—γŸοΌ ι–‹ε§‹ζ–Ήζ³•γ«γ€γ„γ¦γ―γ€γ‚―γ‚¨γ‚Ήγƒˆγ&3Create物桁システム&rγη« γ‚’ご覧ください。", + "quests.steam_age.packager.desc": "倉庫系Modγͺしでε·₯ζ₯­Modをすすめるγγ―ε€§ε€‰γ§γ—γ‚‡γ†γ€‚γŠεΎ…γŸγ›γ—γΎγ—γŸοΌγ€γ„γ«γ€Createγη‰©ζ΅γ‚·γ‚Ήγƒ†γƒ γŒεˆ©η”¨ε―能にγͺγ‚ŠγΎγ—γŸοΌ\nι–‹ε§‹ζ–Ήζ³•γ«γ€γ„γ¦γ―γ€γ‚―γ‚¨γ‚Ήγƒˆγ&3Create物桁システム&rγη« γ‚’ご覧ください。", "quests.steam_age.basic_mech_press.title": "εŸΊζœ¬εž‹γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒ—γƒ¬γ‚Ή", "quests.steam_age.basic_mech_press.subtitle": "ε…¨θ‡ͺε‹•ε΅γγ£γ€γ‘ζ©Ÿ", - "quests.steam_age.basic_mech_press.desc": "ζΊΆζŽ₯γ«η–²γ‚ŒγŸε ΄εˆγ―γ€γ“γγƒžγ‚·γƒ³γ«γ‚„ってもらいましょう。鉒を炉γδΈŠγ«η½γγ€ι›ε†Άε ΄γζΈ©εΊ¦γŒι»„色δ»₯δΈŠγ§γ‚γ‚‹γ“γ¨γ‚’η’Ίθͺγ—てから、をむテムを鉒にε…₯γ‚ŒγΎγ™γ€‚ζ‹εΏ΅γͺγŒγ‚‰γ€γ“γζ΅ιšŽγ§γ§γγ‚‹γγ―γγ‚Œγ γ‘γ§γ™γ€‚", + "quests.steam_age.basic_mech_press.desc": "ζΊΆζŽ₯γ«η–²γ‚ŒγŸε ΄εˆγ―γ€γ“γγƒžγ‚·γƒ³γ«γ‚„ってもらいましょう。\n鉒を炉γδΈŠγ«η½γγ€ι›ε†Άε ΄γζΈ©εΊ¦γŒι»„色δ»₯δΈŠγ§γ‚γ‚‹γ“γ¨γ‚’η’Ίθͺγ—てから、をむテムを鉒にε…₯γ‚ŒγΎγ™γ€‚\nζ‹εΏ΅γͺγŒγ‚‰γ€γ“γζ΅ιšŽγ§γ§γγ‚‹γγ―γγ‚Œγ γ‘γ§γ™γ€‚", "quests.steam_age.steel_mech_press.title": "鋼鉄製パカニカルプレス", "quests.steam_age.steel_mech_press.subtitle": "γ»γΌι›ι€ ζ©Ÿ", - "quests.steam_age.steel_mech_press.desc.1": "ι«˜εœ§θ’Έζ°—εΌι›ι€ ζ©Ÿγ―γ‚γ¨γ‘γ‚‡γ£γ¨γ§δ½œγ‚ŒγΎγ™γ—γ€γγ‚ŒγŒγ‚γ‚Œγ°γ“γγƒžγ‚·γƒ³γ«γ§γγ‚‹γ“γ¨γ―γ€γ»γ¨γ‚“γ©γ™γΉγ¦γ§γγ¦γ—γΎγ„γΎγ™γŒγ€γ‚ˆγ‚ŠδΈŠδ½γθ‡ͺε‹•ζΊΆζŽ₯γƒ¬γ‚·γƒ”γ‚’εˆ‡εŸγ«εΏ…θ¦γ¨γ—γ¦γ„γ‚‹ε ΄εˆγ―δ½œγ‚ŠγΎγ—γ‚‡γ†γ€‚\n\nι›ι€ ζ©Ÿγ§γ―ι‹Όι‰„θ£½γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒ—γƒ¬γ‚Ήγ¨εŒγ˜γ‚ˆγ†γ«γ€ι‰±ηŸ³γ‚’(副産物γͺしで)η²‰η •γ—γŸγ‚Šγ€ε²©γ‚’δΈΈηŸ³γ«ε€‰γˆγŸγ‚Šγ€η ‚εˆ©γ‚’η ‚γ«ε€‰γˆγŸγ‚Šγ€γƒ¬γƒ³γ‚¬γ‚’ε‰²γ£γŸγ‚Šγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γŸγ γ—γ€ι›ι€ ζ©ŸγγΏγŒι‡‘ε±žγƒ—γƒ¬γƒΌγƒˆγ&3γ‚ˆγ‚Šε‰δΎ‘γͺレシピ&rγ‚’εŸθ‘Œγ§γγΎγ™...", - "quests.steam_age.steel_mech_press.desc.2": "&l&3伝承では...&r&o Createγγƒ‘カニカルプレスって、バージョン0.9γ‚ˆγ‚Šε‰γTerraFirmaGregだと、蒸気時代γη΅ζ§‹ι‡θ¦γͺγƒžγ‚·γƒ³γ γ£γŸγ‚“γ γ‚ˆγ­γ€‚γͺγœγ‹γ£γ¦γ€4/5γ£γ¦γ„γ†γΎγ‚γΎγ‚θ‰―γ„ζ―”ηŽ‡γ§γƒ—γƒ¬γƒΌγƒˆδ½œγ£γ¦γγ‚ŒγŸγ‹γ‚‰γ€‚γ§γ‚‚εŸγ―γ€γγ‚Œγ‚’γ€Œ20οΌ…γη’ΊηŽ‡γ§γ€γ‚’γ‚€γƒ†γƒ γŒζΆˆγˆγ‚‹γ€γ£γ¦γ„γ†δ»•ζ§˜γ§εŸθ£…γ—γ¦γŸγ‚“γ γ‚ˆοΌγ‚γγ‚γƒ£γƒ³γƒ–γƒ«γ―γ‚΅γ‚€γ‚³γƒΌγ γ£γŸγͺあ。...といいます。", + "quests.steam_age.steel_mech_press.desc.1": "ι«˜εœ§θ’Έζ°—εΌι›ι€ ζ©Ÿγ―γ‚γ¨γ‘γ‚‡γ£γ¨γ§δ½œγ‚ŒγΎγ™γ—γ€γγ‚ŒγŒγ‚γ‚Œγ°γ“γγƒžγ‚·γƒ³γ«γ§γγ‚‹γ“γ¨γ―γ€γ»γ¨γ‚“γ©γ™γΉγ¦γ§γγ¦γ—γΎγ„γΎγ™γŒγ€γ‚ˆγ‚ŠδΈŠδ½γθ‡ͺε‹•ζΊΆζŽ₯γƒ¬γ‚·γƒ”γ‚’εˆ‡εŸγ«εΏ…θ¦γ¨γ—γ¦γ„γ‚‹ε ΄εˆγ―δ½œγ‚ŠγΎγ—γ‚‡γ†γ€‚\n\nι›ι€ ζ©Ÿγ§γ―ι‹Όι‰„θ£½γƒ‘γ‚«γƒ‹γ‚«γƒ«γƒ—γƒ¬γ‚Ήγ¨εŒγ˜γ‚ˆγ†γ«γ€ι‰±ηŸ³γ‚’(副産物γͺしで)η²‰η •γ—γŸγ‚Šγ€ε²©γ‚’δΈΈηŸ³γ«ε€‰γˆγŸγ‚Šγ€η ‚εˆ©γ‚’η ‚γ«ε€‰γˆγŸγ‚Šγ€γƒ¬γƒ³γ‚¬γ‚’ε‰²γ£γŸγ‚Šγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγŸγ γ—γ€ι›ι€ ζ©ŸγγΏγŒι‡‘ε±žγƒ—γƒ¬γƒΌγƒˆγ&3γ‚ˆγ‚Šε‰δΎ‘γͺレシピ&rγ‚’εŸθ‘Œγ§γγΎγ™...", + "quests.steam_age.steel_mech_press.desc.2": "&l&3δ½™θ«‡οΌš&r&oCreateγγƒ‘カニカルプレスって、バージョン0.9γ‚ˆγ‚Šε‰γTerraFirmaGregだと、蒸気時代γη΅ζ§‹ι‡θ¦γͺγƒžγ‚·γƒ³γ γ£γŸγ‚“γ γ‚ˆγ­γ€‚γͺγœγ‹γ£γ¦γ€4/5γ£γ¦γ„γ†γΎγ‚γΎγ‚θ‰―γ„ζ―”ηŽ‡γ§γƒ—γƒ¬γƒΌγƒˆδ½œγ£γ¦γγ‚ŒγŸγ‹γ‚‰γ€‚γ§γ‚‚εŸγ―γ€γγ‚Œγ‚’γ€Œ20οΌ…γη’ΊηŽ‡γ§γ€γ‚’γ‚€γƒ†γƒ γŒζΆˆγˆγ‚‹γ€γ£γ¦γ„γ†δ»•ζ§˜γ§εŸθ£…γ—γ¦γŸγ‚“γ γ‚ˆοΌγ‚γγ‚γƒ£γƒ³γƒ–γƒ«γ―γ‚΅γ‚€γ‚³γƒΌγ γ£γŸγͺあ。", + "quests.steam_age.supers.title": "γ‚ΉγƒΌγƒ‘γƒΌγƒγ‚§γ‚Ήγƒˆγ¨γ‚ΉγƒΌγƒ‘γƒΌγ‚Ώγƒ³γ‚―", + "quests.steam_age.supers.subtitle": "γ‚ΉγƒΌγƒ‘γƒΌγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγƒ‰γƒ­γƒ―γƒΌ", + "quests.steam_age.supers.desc": "γ“γ‚Œγ―γΎγ•γ«&cu&6l&et&ai&bm&9a&5t&4e&rγͺεŽη΄ζ©Ÿε™¨γ§γ™γ€‚ηΎζ™‚η‚Ήγ§δ½œγ‚Œγ‚‹&dεŸΊζœ¬εž‹&r(&8ULV&rοΌ‰γγ‚‚γγ―ζ―”θΌƒηš„εΉι‡γŒε°γ•γ„γ¨ζ€γ†γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€δΈŠδ½γγ‚ΉγƒΌγƒ‘γƒΌγƒγ‚§γ‚Ήγƒˆγ‚„γ‚ΉγƒΌγƒ‘γƒΌγ‚Ώγƒ³γ‚―にγͺγ‚‹γ¨γ€ζΈ©εΊ¦γƒ»ι…Έζ€§εΊ¦γ¨γ„γ£γŸεˆΆι™γ‚’γΎγ£γŸγε—γ‘γšγ€1ブロックで膨倧γͺι‡γ‚’εŽη΄γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌ\n\nγ“γ‚Œγ‚‰γ―ζ¨½γͺγ©γ¨εŒγ˜γγ€&6ε£Šγ—γ¦γ‚‚δΈ­θΊ«γŒζΆˆγˆγš&rγ€γ•γ‚‰γ«γ―ε˜δ½“γ§γ‚―γƒ©γƒ•γƒˆγ—γ¦δΈ­θΊ«γ‚’η©Ίγ«γ™γ‚‹ζ©Ÿθƒ½γ‚„γ€εΉι‡γ‚’θΆ…γˆγŸεˆ†γ‚’θ‡ͺε‹•γ§η ΄ζ£„γ™γ‚‹ζ©Ÿθƒ½γΎγ§ε‚™γ‚γ£γ¦γ„γΎγ™γ€‚\n\nもっと倧εΉι‡γ‚’ζ±‚γ‚γ‚‹ε ΄εˆγ―γ€γ•γ‚‰γ«δΈŠδ½γγ‚―γ‚’γƒ³γ‚Ώγƒ γƒγ‚§γ‚ΉγƒˆοΌγ‚Ώγƒ³γ‚―γ‚„γ€AE2γγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚»γƒ«γ‚’γ€γ‹γ†γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.steam_age.supers.task": "Any super chest or tank", "quests.stone_age": "ηŸ³ε™¨ζ™‚δ»£", - "quests.stone_age.subtitle": "ζ–‡ζ˜Žε‰ε€œ", + "quests.stone_age.subtitle": "そして伝θͺ¬γΈ...", "quests.stone_age.foods.title": "γŠθ…ΉγŒη©Ίγ„γŸοΌŸ", "quests.stone_age.foods.subtitle": "εƒγ‹γ–γ‚‹θ€…ι£Ÿγ†γΉγ‹γ‚‰γš", - "quests.stone_age.foods.desc": "こγTerraFirmaGregγδΈ–η•Œγ―ιŽι…·γ§γ™γ€‚η”Ÿγζ‹γ‚‹γŸγ‚γ«ζœ€γ‚‚重要γͺことγδΈ€γ€γ―γ€ι£Ÿζ–™γ‚’ζ‰‹γ«ε…₯γ‚Œγ‚‹γ“γ¨γ§γ™γ€‚γ»γ¨γ‚“γ©γι£Ÿζ–™γ―ζ „ι€ŠδΎ‘γŒδ½Žγγ€θͺΏη†γ—γͺいと命に閒わるもγγ‚‚γ‚γ‚ŠγΎγ™γ€‚η©Ίθ…ΉεΊ¦γ―γ€δ½“εŠ›γε³γ«γ‚γ‚‹ι£Ÿζ–™γ‚²γƒΌγ‚Έγ‹γ‚‰η’Ίθͺγ§γγ€γ©γγ‚ˆγ†γͺζ „ι€Šγ‚’ζ‘‚ε–γ—γ¦γ„γ‚‹γ‹γ‚‚γ‚γ‹γ‚ŠγΎγ™γ€‚\n\nγΎγšγ―γ€δ½•γ§γ‚‚γ„γ„γγ§ι£Ÿζ–™γ‚’手にε…₯γ‚ŒγΎγ—γ‚‡γ†γ€‚", + "quests.stone_age.foods.desc": "こγTerraFirmaGregγδΈ–η•Œγ―ιŽι…·γ§γ™γ€‚η”Ÿγζ‹γ‚‹γŸγ‚γ«ζœ€γ‚‚重要γͺことγδΈ€γ€γ―γ€ι£Ÿζ–™γ‚’ζ‰‹γ«ε…₯γ‚Œγ‚‹γ“γ¨γ§γ™γ€‚\nほとんどγι£Ÿζ–™γ―ζ „ι€ŠδΎ‘γŒδ½Žγγ€θͺΏη†γ—γͺいと命に閒わるもγγ‚‚γ‚γ‚ŠγΎγ™γ€‚\nη©Ίθ…ΉεΊ¦γ―γ€δ½“εŠ›γε³γ«γ‚γ‚‹ι£Ÿζ–™γ‚²γƒΌγ‚Έγ‹γ‚‰η’Ίθͺγ§γγ€γ©γγ‚ˆγ†γͺζ „ι€Šγ‚’ζ‘‚ε–γ—γ¦γ„γ‚‹γ‹γ‚‚γ‚γ‹γ‚ŠγΎγ™γ€‚\n\nγΎγšγ―γ€δ½•γ§γ‚‚γ„γ„γγ§ι£Ÿζ–™γ‚’手にε…₯γ‚ŒγΎγ—γ‚‡γ†γ€‚", "quests.stone_age.nutrition.title": "ζ „ι€ŠδΎ‘γδ»•硄み", "quests.stone_age.nutrition.subtitle": "プロテむンはすべてを解決...しγͺγ„οΌŸ", "quests.stone_age.nutrition.desc": "TerraFirmaGregγι£Ÿζ–™γ―γγ‚Œγžγ‚Œζ „ι€ŠδΎ‘γ‚’ζŒγ‘γ€γγζ „ι€Šη΄ γ― &l穀物&r、&lζžœη‰©&r、&lι‡Žθœ&r、&lタンパクθ³ͺ&r、&l乳製品&rγ5぀γγ‚«γƒ†γ‚΄γƒͺγƒΌγ«εˆ†ι‘žγ•γ‚ŒγΎγ™γ€‚\n\nタンパクθ³ͺγγ‚ˆγ†γͺη‰Ήεšγζ „ι€Šη΄ γ γ‘γ‚’ζ‘‚ε–γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γŒγ€γγ‚Œγ§γ―ε…¨δ½“ηš„γͺε₯εΊ·ηŠΆζ…‹γ―δ½ŽδΈ‹γ—γ¦γ—γΎγ„γΎγ™γ€‚γƒγƒ©γƒ³γ‚Ήγε–γ‚ŒγŸι£ŸδΊ‹γ‚’ζ‘‚γ‚‹γ“γ¨γ§γ€ζœ€ε€§HPγ‚’ε€§εΉ…γ«ε‘δΈŠγ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n詳細はフィールドガむドγγ€Œι£Ÿζ–™γ¨ζ°΄γ€γι …η›γ‚’参照してください。", @@ -3547,11 +3801,11 @@ "quests.stone_age.garlic_bread.task": "ガーγƒͺックブレッド1024εˆ‡γ‚Œ", "quests.stone_age.find_potable_water.title": "ε–‰γŒζΈ‡γ„γŸοΌŸ", "quests.stone_age.find_potable_water.subtitle": "ζ°΄εˆ†θ£œη΅¦γ‚’εΏ˜γ‚Œγšγ«οΌ", - "quests.stone_age.find_potable_water.desc": "ε–‰γζΈ‡γγ―、空腹度γδΈŠγζ°΄ζ»΄γ‚²γƒΌγ‚Έγ§η€Ίγ•γ‚ŒγΎγ™γ€‚ε–‰γζΈ‡γγ‚’ζΊ€γŸγ—γ¦γŠγ‹γͺγ„γ¨γ€θ„±ζ°΄η—‡ηŠΆγ§ζ­»γ‚“γ§γ—γΎγ„γΎγ™οΌ ζ°΄εˆ†θ£œη΅¦γζœ€γ‚‚η°‘単γͺζ–Ήζ³•γ―γ€ζ‰‹γ«δ½•γ‚‚ζŒγŸγšγ€ζ± γ‚„ε·γζ°΄ζΊγ‚’右クγƒͺックして飲むことです。\nこγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ™γ‚‹γ«γ―γ€ι€šεΈΈγζ°΄γΎγŸγ―川γζ°΄γͺどγγ€ι£²η”¨ε―能γͺζ°΄ζΊγ‹γ‚‰ζ°΄γ‚’ι£²γ‚€εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ‚―γ‚¨γ‚ΉγƒˆγŒζ­£γ—γεŒδΊ†γ™γ‚‹γ‚ˆγ†γ«γ€θ€‡ζ•°ε›žι£²γ‚€εΏ…θ¦γŒγ‚γ‚‹ε ΄εˆγŒγ‚γ‚ŠγΎγ™γ€‚\n\n水はそγγΎγΎι£²γ‚“γ§γ‚‚γ„γ„γ§γ™γŒγ€ζ΅·ζ°΄γ―ι€†γ«ε–‰γŒζΈ‡γ„γ¦γ—γΎγ„γΎγ™γ€‚", + "quests.stone_age.find_potable_water.desc": "ε–‰γζΈ‡γγ―、空腹度γδΈŠγζ°΄ζ»΄γ‚²γƒΌγ‚Έγ§η€Ίγ•γ‚ŒγΎγ™γ€‚ε–‰γζΈ‡γγ‚’ζΊ€γŸγ—γ¦γŠγ‹γͺγ„γ¨γ€θ„±ζ°΄η—‡ηŠΆγ§ζ­»γ‚“γ§γ—γΎγ„γΎγ™οΌ\nζ°΄εˆ†θ£œη΅¦γζœ€γ‚‚η°‘単γͺζ–Ήζ³•γ―γ€ζ‰‹γ«δ½•γ‚‚ζŒγŸγšγ€ζ± γ‚„ε·γζ°΄ζΊγ‚’右クγƒͺックして飲むことです。\nこγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ™γ‚‹γ«γ―γ€ι€šεΈΈγζ°΄γΎγŸγ―川γζ°΄γͺどγγ€ι£²η”¨ε―能γͺζ°΄ζΊγ‹γ‚‰ζ°΄γ‚’ι£²γ‚€εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ‚―γ‚¨γ‚ΉγƒˆγŒζ­£γ—γεŒδΊ†γ™γ‚‹γ‚ˆγ†γ«γ€θ€‡ζ•°ε›žι£²γ‚€εΏ…θ¦γŒγ‚γ‚‹ε ΄εˆγŒγ‚γ‚ŠγΎγ™γ€‚\n\n水はそγγΎγΎι£²γ‚“γ§γ‚‚γ„γ„γ§γ™γŒγ€ζ΅·ζ°΄γ―ι€†γ«ε–‰γŒζΈ‡γ„γ¦γ—γΎγ„γΎγ™γ€‚", "quests.stone_age.find_potable_water.task": "手で水源から水を飲む。(ζ΅·ζ°΄γΎγŸγ―ζΈ©ζ³‰ζ°΄γ―δΈε―)", "quests.stone_age.hydration.title": "ζ°΄εˆ†θ£œη΅¦γδ»•硄み", "quests.stone_age.hydration.subtitle": "ε†·γˆγŸζ°΄γ‚’γγ γ•γ„", - "quests.stone_age.hydration.desc": "ζ°΄γ―γ€ζ°΄εˆ†θ£œη΅¦δ»₯倖にもいろいろγͺδ½Ώγ„ι“γŒγ‚γ‚ŠγΎγ™οΌ 湖や川γθΏ‘γγ«ζ‹ η‚Ήγ‚’ε»Ίγ¦γŸζ–ΉγŒγ„γ„γ§γ—γ‚‡γ†γ€‚γγ†γ™γ‚Œγ°γ€εΏ…θ¦γ«γͺγ£γŸιš›γ«η°‘ε˜γ«ζ°΄γ‚’η’ΊδΏγ§γγΎγ™γ€‚η‰Ήεšγη¨ι‘žγι£Ÿε“γ‚„飲み物γͺど、水δ»₯倖にも喉γζΈ‡γγ‚’癒す手ζ΅γ―ε­˜εœ¨γ—γΎγ™γ€‚\n\nγŸγ γ—γ€ζŽ’η΄’γ«ε‡Ίγ‹γ‘γ‚‹γ¨γγ―γ€εΏ…γšγ—γ‚‚ζ°΄γŒζ‰‹γ«ε…₯γ‚‹γ¨γ―ι™γ‚ŠγΎγ›γ‚“γ€‚γγ“γ§γ€ι£²γΏη‰©γ‚’ζŒγ‘ζ­©γζ–Ήζ³•γ‚’γ„γγ€γ‹η΄Ήδ»‹γ—γΎγ—γ‚‡γ†γ€‚ けγͺγΏγ«ζ°΄γ―δΈ€ε›žγ«γ€γεΉε™¨γ‹γ‚‰100mBζΆˆθ²»γ—γ¦ι£²γ‚€γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.stone_age.hydration.desc": "ζ°΄γ―γ€ζ°΄εˆ†θ£œη΅¦δ»₯倖にもいろいろγͺδ½Ώγ„ι“γŒγ‚γ‚ŠγΎγ™οΌ\n湖や川γθΏ‘γγ«ζ‹ η‚Ήγ‚’ε»Ίγ¦γŸζ–ΉγŒγ„γ„γ§γ—γ‚‡γ†γ€‚γγ†γ™γ‚Œγ°γ€εΏ…θ¦γ«γͺγ£γŸιš›γ«η°‘ε˜γ«ζ°΄γ‚’η’ΊδΏγ§γγΎγ™γ€‚\nη‰Ήεšγη¨ι‘žγι£Ÿε“γ‚„飲み物γͺど、水δ»₯倖にも喉γζΈ‡γγ‚’癒す手ζ΅γ―ε­˜εœ¨γ—γΎγ™γ€‚\n\nγŸγ γ—γ€ζŽ’η΄’γ«ε‡Ίγ‹γ‘γ‚‹γ¨γγ―γ€εΏ…γšγ—γ‚‚ζ°΄γŒζ‰‹γ«ε…₯γ‚‹γ¨γ―ι™γ‚ŠγΎγ›γ‚“γ€‚γγ“γ§γ€ι£²γΏη‰©γ‚’ζŒγ‘ζ­©γζ–Ήζ³•γ‚’γ„γγ€γ‹η΄Ήδ»‹γ—γΎγ—γ‚‡γ†γ€‚\nけγͺγΏγ«ζ°΄γ―δΈ€ε›žγ«γ€γεΉε™¨γ‹γ‚‰100mBζΆˆθ²»γ—γ¦ι£²γ‚€γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.stone_age.leather_flask.title": "革γζ°΄η­’", "quests.stone_age.leather_flask.subtitle": "川から革へ", "quests.stone_age.leather_flask.desc": "革γζ°΄η­’γ―γ€γŠγγ‚‰γι™Άε™¨γζ°΄ε·γ—に欑いで2η•ͺη›γ«η°‘単γͺ水筒です。500mbγ€γ€γΎγ‚Š5ε›žεˆ†γι£²γΏη‰©γ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n革γζ°΄η­’γ―δ½Ώη”¨γ™γ‚‹γ¨θ€δΉ…γŒζΈ›γ‚ŠγΎγ™γŒγ€ε£Šγ‚ŒγŸε ΄εˆγ―γ€ι©γŒγ‚γ‚Œγ°δΏη†γ§γγΎγ™γ€‚膀胱は、倧きめγι‡Žη”Ÿε‹•物からε…₯ζ‰‹γ§γγΎγ™γ‚ˆγ€‚", @@ -3569,7 +3823,7 @@ "quests.stone_age.water_jug.desc": "ζ°΄ε·γ—γ―γ€ζœ€εˆγ«δ½œγ‚Œγ‚‹ζ°΄η­’γ§γ™γŒγ€100mbγ—γ‹δΏζŒγ§γγͺγ„γŸγ‚γ€1ε›žι£²γ‚€γŸγ³γ«θ£œε……γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nζ°΄ε·γ—γ―ζ―”θΌƒηš„ε£Šγ‚Œγ‚„γ™γγ€ι£²γ‚€γŸγ³γ«γƒ©γƒ³γƒ€γƒ γ«ε£Šγ‚Œγ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.stone_age.temperature.title": "ζ°—ε€™η’°ε’ƒ", "quests.stone_age.temperature.subtitle": "今ζ—₯γε€©ζ°—οΌŸγƒ€γƒ‘", - "quests.stone_age.temperature.desc": "ζ–°γ—γ„δΈ–η•Œγ―εˆε€γ‹γ‚‰ε§‹γΎγ‚Šγ€ε„ζœˆγ―8ζ—₯ι–“ηΆšγγΎγ™γ€‚ε­£η―€γŒε€‰γ‚γ‚Šγ€γγ‚Œγ«δΌ΄γ„ζ°—ζΈ©γŒε€‰εŒ–γ—γ€δ½œη‰©γ€ζžœζ¨Ήγ€θŒ‚γΏ...だけでγͺくそγε½±ιŸΏγ―あγͺγŸγ«γΎγ§εŠγ³γΎγ™οΌ\n\n体温は常に一εšγ«δΏγ€εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚δ½“εŠ›γ¨η©Ίθ…ΉεΊ¦γι–“γε°γ•γͺδΈ‰θ§’ε½’γ―γ€ηΎεœ¨γδ½“温と、そγε€‰ε‹•γ‚’η€Ίγ—γ¦γ„γΎγ™γ€‚γ‚Ήγƒ‹γƒΌγ‚―γ‚’ζŠΌγ™γ¨γ€ζ­£η’Ίγͺζ•°ε€€γŒθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚ε·¦ε΄γζ•°ε€€γ―ζΏ‘γ‚Œε…·εˆγ€ε³ε΄γζ•°ε€€γ―体温です。", + "quests.stone_age.temperature.desc": "ζ–°γ—γ„δΈ–η•Œγ―εˆε€γ‹γ‚‰ε§‹γΎγ‚Šγ€ε„ζœˆγ―8ζ—₯ι–“ηΆšγγΎγ™γ€‚ε­£η―€γŒε€‰γ‚γ‚Šγ€γγ‚Œγ«δΌ΄γ„ζ°—ζΈ©γŒε€‰εŒ–γ—γ€δ½œη‰©γ€ζžœζ¨Ήγ€θŒ‚γΏ...だけでγͺくそγε½±ιŸΏγ―あγͺγŸγ«γΎγ§εŠγ³γΎγ™οΌ\n\n体温は常に一εšγ«δΏγ€εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚δ½“εŠ›γ¨η©Ίθ…ΉεΊ¦γι–“γε°γ•γͺδΈ‰θ§’ε½’γ―γ€ηΎεœ¨γδ½“温と、そγε€‰ε‹•を瀺しています。\nγ‚Ήγƒ‹γƒΌγ‚―γ‚’ζŠΌγ™γ¨γ€ζ­£η’Ίγͺζ•°ε€€γŒθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚ε·¦ε΄γζ•°ε€€γ―ζΏ‘γ‚Œε…·εˆγ€ε³ε΄γζ•°ε€€γ―体温です。", "quests.stone_age.temperature.task": "ε­˜εœ¨γ™γ‚‹", "quests.stone_age.insulation.title": "体温γδ»•硄み", "quests.stone_age.insulation.subtitle": "η†±δΈ­η—‡γ«γ―ζ°—γ‚’δ»˜γ‘γ‚ˆγ†οΌ", @@ -3585,7 +3839,7 @@ "quests.stone_age.wool_clothes.desc": "ηΎŠζ―›γζœγ―γ€ε―’γ„ζ°—ε€™γ‚„εŽ³γ—γ„ε†¬γ§γη”Ÿζ΄»γ«ι©γ—γ¦γ„γΎγ™γ€‚ηΎŠζ―›γζœδΈ€εΌγŒζƒγ£γ¦γ„γ‚Œγ°γ©γ‚“γͺε†¬γ§γ‚‚θΆŠγˆγ‚‰γ‚Œγ‚‹γ§γ—γ‚‡γ†γ€‚\n\nηΎŠζ―›γη’ΊδΏγγŸγ‚γ«γ―γ€ηΎŠγ€γ‚’γƒ«γƒ‘γ‚«γ€γ‚Έγƒ£γ‚³γ‚¦γ‚¦γ‚·γͺγ©γ€ηΎŠζ―›γ‚’η”Ÿη”£γ™γ‚‹ε“ΊδΉ³ι‘žγ¨δ»²θ‰―γγͺγ‚‹(γΎγŸγ―η‹©γ‚‹)εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ フィールドガむドγι‡Žη”Ÿγε‹•物γι …η›γ«γ―、さまざまγͺε‹•η‰©γŒγ©γ“γ«γ„γ‚‹γ‹γŒθ¨˜θΌ‰γ•γ‚Œγ¦γŠγ‚Šγ€η‰§η•œγι …η›γ§γ―γ€γγ‚Œγ‚‰γ‚’εΆη•œεŒ–γ™γ‚‹ζ–Ήζ³•γŒθͺ¬ζ˜Žγ•γ‚Œγ¦γ„γΎγ™γ€‚", "quests.stone_age.insulated_leather_clothes.title": "ζ–­η†±γƒ¬γ‚ΆγƒΌζœ", "quests.stone_age.insulated_leather_clothes.subtitle": "ε―’γ•γ«γ‚‚θ² γ‘γš", - "quests.stone_age.insulated_leather_clothes.desc": "ζ–­η†±γƒ¬γ‚ΆγƒΌζœγ―γ€ηΎŠζ―›γζœγ‚ˆγ‚Šγ‚‚η°‘ε˜γ«δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γŒγ€ζ–­η†±ζ€§γ¨ζš–γ‹γ•γ―γ„γγ‚‰γ‹δ½Žγγͺγ‚ŠγΎγ™γ€‚γγ‚Œγ§γ‚‚γ€γ‚γ‚‹η¨‹εΊ¦ζΈ©ζš–γͺεœ°εŸŸγ«δ½γ‚€γ«γ―εεˆ†γ«εŠΉζžœηš„γ§γ™γ€‚\n\nδ½œγ‚‹γŸγ‚γ«γ―γ€ε‹•η‰©γ‚’η‹©γ£γ¦ηšγ‚’ε…₯ζ‰‹γ—γ€ηΎŠγ€γ‚’γƒ«γƒ‘γ‚«γ€γ‚Έγƒ£γ‚³γ‚¦γ‚¦γ‚·γͺγ©γ€ηΎŠζ―›γ‚’η”Ÿη”£γ™γ‚‹ε“ΊδΉ³ι‘žγ¨δ»²θ‰―γγͺγ‚‹(γΎγŸγ―η‹©γ‚‹)εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γι‡Žη”Ÿγε‹•物γι …η›γ«γ―、さまざまγͺε‹•η‰©γŒγ©γ“γ«γ„γ‚‹γ‹γŒθ¨˜θΌ‰γ•γ‚Œγ¦γŠγ‚Šγ€η‰§η•œγι …η›γ§γ―γ€γγ‚Œγ‚‰γ‚’εΆη•œεŒ–γ™γ‚‹ζ–Ήζ³•γŒθͺ¬ζ˜Žγ•γ‚Œγ¦γ„γΎγ™γ€‚", + "quests.stone_age.insulated_leather_clothes.desc": "ζ–­η†±γƒ¬γ‚ΆγƒΌζœγ―γ€ηΎŠζ―›γζœγ‚ˆγ‚Šγ‚‚η°‘ε˜γ«δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γŒγ€ζ–­η†±ζ€§γ¨ζš–γ‹γ•γ―γ„γγ‚‰γ‹δ½Žγγͺγ‚ŠγΎγ™γ€‚γγ‚Œγ§γ‚‚γ€γ‚γ‚‹η¨‹εΊ¦ζΈ©ζš–γͺεœ°εŸŸγ«δ½γ‚€γ«γ―εεˆ†γ«εŠΉζžœηš„γ§γ™γ€‚\n\nδ½œγ‚‹γŸγ‚γ«γ―γ€ε‹•η‰©γ‚’η‹©γ£γ¦ηšγ‚’ε…₯ζ‰‹γ—γ€ηΎŠγ€γ‚’γƒ«γƒ‘γ‚«γ€γ‚Έγƒ£γ‚³γ‚¦γ‚¦γ‚·γͺγ©γ€ηΎŠζ―›γ‚’η”Ÿη”£γ™γ‚‹ε“ΊδΉ³ι‘žγ¨δ»²θ‰―γγͺγ‚‹(γΎγŸγ―η‹©γ‚‹)εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nフィールドガむドγι‡Žη”Ÿγε‹•物γι …η›γ«γ―、さまざまγͺε‹•η‰©γŒγ©γ“γ«γ„γ‚‹γ‹γŒθ¨˜θΌ‰γ•γ‚Œγ¦γŠγ‚Šγ€η‰§η•œγι …η›γ§γ―γ€γγ‚Œγ‚‰γ‚’εΆη•œεŒ–γ™γ‚‹ζ–Ήζ³•γŒθͺ¬ζ˜Žγ•γ‚Œγ¦γ„γΎγ™γ€‚", "quests.stone_age.burlap_clothes.title": "ιΊ»γζœ", "quests.stone_age.burlap_clothes.subtitle": "εˆζ³•γͺ使い道です", "quests.stone_age.burlap_clothes.desc": "麻布はジγƒ₯γƒΌγƒˆγηΉŠηΆ­γ§δ½œγ‚‰γ‚Œγ¦γ„ます。ジγƒ₯γƒΌγƒˆγ―γ€ζΈ©εΊ¦γ¨ζ°΄εˆ†ι‡γθ¦ζ±‚γŒζΊ€γŸγ•γ‚Œγ¦γ„γ‚‹ι™γ‚Šγ€γ»γ¨γ‚“γ©γζΈ©ζš–γͺζ°—ε€™γ§θ‚²γ¦γ‚‰γ‚ŒγΎγ™γ€‚\n\nιΊ»γζœγ―γ€ζš‘γ„ε€γ‚„γγδ»–γη‰Ήεšγζš‘γ„η’°ε’ƒγ«ζœ€ι©γ§γ™γŒγ€γγ‚Œγ«γ€γ„γ¦γ―後でθͺ¬ζ˜Žγ—ます。", @@ -3600,35 +3854,35 @@ "quests.stone_age.find_rock.desc": "ζ—…γ‚’ε§‹γ‚γ‚‹γ¨γ€γΎγšδΈ–η•ŒγŒγ™γ£γ‹γ‚Šζ§˜ε€‰γ‚γ‚Šγ—γ¦γ‚‹γ“γ¨γ«ζ°—γ₯γγ§γ—γ‚‡γ†γ€‚η΄ ζ‰‹γ§ζœ¨γ‚’ε£Šγ™γ“γ¨γ―γ§γγΎγ›γ‚“γŒγ€εΏƒι…γ―η„‘η”¨γ§γ™γ€‚ζœ¬η‰©γεŽŸε§‹δΊΊγ¨γͺγ‚‹γŸγ‚γ«γ€ηŸ³ε™¨γ‚’ζŒγ‘γΎγ—γ‚‡γ†γ€‚\n\n木γγƒ„γƒ«γƒγ‚·γ‚’γ‚―γƒ©γƒ•γƒˆγ™γ‚‹δ»£γ‚γ‚Šγ«γ€εœ°ι’γ‹γ‚‰ηŸ³γ‚’ζ‹Ύγ„γΎγ—γ‚‡γ†γ€‚γΎγšγ―ηŸ³γ‚’4぀δ»₯δΈŠι›†γ‚γΎγ™γ€‚ηŸ³γ‚’ζ΄γ£γ¦ε£Šγ™γ‹γ€η΄ ζ‰‹γ§ε³γ‚―γƒͺγƒƒγ‚―γ—γ¦ηŸ³γ‚’ι›†γ‚γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.stone_age.rock_knapping.title": "γƒŠγƒƒγƒ”γƒ³γ‚°", "quests.stone_age.rock_knapping.subtitle": "ζ‰“θ£½ηŸ³ε™¨γ γ£γ¦οΌ", - "quests.stone_age.rock_knapping.desc": "ηŸ³γ―γ€ŒγƒŠγƒƒγƒ”γƒ³γ‚°γ€γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ―γ€ηŸ³γ‚’ζ‰“γ‘εˆγ‚γ›γ¦δ½Ώη”¨ε―θƒ½γͺ归に加ε·₯γ™γ‚‹δ½œζ₯­γγ“γ¨γ§γ™γ€‚γƒŠγƒƒγƒ”γƒ³γ‚°γ«γ―ε°‘γͺくとも2぀γηŸ³γŒεΏ…θ¦γ§γ€γγ‚Œγ‚‰γ‚’ζŒγ£γ¦η©ΊδΈ­γ‚’ε³γ‚―γƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€γƒŠγƒƒγƒ”γƒ³γ‚°γη”»ι’γŒι–‹γγΎγ™γ€‚γγ“γ§ηŸ³γγƒ„γƒΌγƒ«γƒ˜γƒƒγƒ‰γ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«γ€ηŸ³γ1γ€γ‚’γ€Œε‰Šγ‚Šε–γ‚‹γ€γ“γ¨γŒγ§γγΎγ™γ€‚γ•γΎγ–γΎγͺツールγγ™γΉγ¦γε½’ηŠΆγ―γ€EMIγ¨γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«θ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nζœ€εˆζœŸγ«ζœ€γ‚‚ι‡θ¦γͺγƒ„γƒΌγƒ«γ―γ€ηŸ³γγƒŠγ‚€γƒ•γ¨ηŸ³γζ–§γͺγγ§γ€γΎγšγ―γγ‚Œγ‚‰γγƒ„γƒΌγƒ«γƒ˜γƒƒγƒ‰γ‚’γƒŠγƒƒγƒ”γƒ³γ‚°γ—γ¦γΏγΎγ—γ‚‡γ†οΌ", + "quests.stone_age.rock_knapping.desc": "ηŸ³γ―γ€ŒγƒŠγƒƒγƒ”γƒ³γ‚°γ€γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ―γ€ηŸ³γ‚’ζ‰“γ‘εˆγ‚γ›γ¦δ½Ώη”¨ε―θƒ½γͺ归に加ε·₯γ™γ‚‹δ½œζ₯­γγ“とです。\nγƒŠγƒƒγƒ”γƒ³γ‚°γ«γ―ε°‘γͺくとも2぀γηŸ³γŒεΏ…θ¦γ§γ€γγ‚Œγ‚‰γ‚’ζŒγ£γ¦η©ΊδΈ­γ‚’ε³γ‚―γƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€γƒŠγƒƒγƒ”γƒ³γ‚°γη”»ι’γŒι–‹γγΎγ™γ€‚γγ“γ§ηŸ³γγƒ„γƒΌγƒ«γƒ˜γƒƒγƒ‰γ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«γ€ηŸ³γ1γ€γ‚’γ€Œε‰Šγ‚Šε–γ‚‹γ€γ“γ¨γŒγ§γγΎγ™γ€‚\nさまざまγͺツールγγ™γΉγ¦γε½’ηŠΆγ―γ€EMIγ¨γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«θ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nζœ€εˆζœŸγ«ζœ€γ‚‚ι‡θ¦γͺγƒ„γƒΌγƒ«γ―γ€ηŸ³γγƒŠγ‚€γƒ•γ¨ηŸ³γζ–§γͺγγ§γ€γΎγšγ―γγ‚Œγ‚‰γγƒ„γƒΌγƒ«γƒ˜γƒƒγƒ‰γ‚’γƒŠγƒƒγƒ”γƒ³γ‚°γ—γ¦γΏγΎγ—γ‚‡γ†οΌ", "quests.stone_age.find_stick.title": "棒を見぀ける", "quests.stone_age.find_stick.subtitle": "γ„γ„ζ„Ÿγ˜γγŒθ¦‹γ€γ‹γ£γŸγ‹γͺ", - "quests.stone_age.find_stick.desc": "εœ°ι’γ«γ―ζžγŒγŸγγ•γ‚“θ½γ‘γ¦γ„γ‚‹γ§γ—γ‚‡γ†γ€‚ζžγ―ζ£’γ¨γ—γ¦δ½ΏγˆγΎγ™γ€‚ζ£’γ«γ―γ•γΎγ–γΎγͺη”¨ι€”γŒγ‚γ‚Šγ€ι“ε…·γ‚„ζΎζ˜Žγ€η«θ΅·γ“γ—ε™¨γͺγ©γ‚‚δ½œγ‚ŒγΎγ™γ€‚\n\n色んγͺη¨ι‘žγζžγ§ζŒγ‘η‰©γŒδΈ€ζ―γ«γͺγ‚‹γγ‚’ι˜²γγŸγ‚γ«γ€ε˜δ½“γ§γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γ“γ¨γ§ζ™ι€šγζ£’γ«γΎγ¨γ‚γ¦γ€γ‚Ήγ‚Ώγƒƒγ‚―γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γΎγŸγ€9本γζ£’γ‚’ζŸγ­γ¦ζ£’γζŸγ«γ—γ€γγ‚Œγ‚’γ•γ‚‰γ«ζŸγ­γ¦ε€§γγͺζ£’γζŸγ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ε€§γγͺζ£’γζŸγ―、丸ε€ͺγδ»£γ‚γ‚Šγ«δ½Ώη”¨γ§γγΎγ™γ‚ˆγ€‚", + "quests.stone_age.find_stick.desc": "εœ°ι’γ«γ―ζžγŒγŸγγ•γ‚“θ½γ‘γ¦γ„γ‚‹γ§γ—γ‚‡γ†γ€‚ζžγ―ζ£’γ¨γ—γ¦δ½ΏγˆγΎγ™γ€‚ζ£’γ«γ―γ•γΎγ–γΎγͺη”¨ι€”γŒγ‚γ‚Šγ€ι“ε…·γ‚„ζΎζ˜Žγ€η«θ΅·γ“γ—ε™¨γͺγ©γ‚‚δ½œγ‚ŒγΎγ™γ€‚\n\n色んγͺη¨ι‘žγζžγ§ζŒγ‘η‰©γŒδΈ€ζ―γ«γͺγ‚‹γγ‚’ι˜²γγŸγ‚γ«γ€ε˜δ½“γ§γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γ“γ¨γ§ζ™ι€šγζ£’γ«γΎγ¨γ‚γ¦γ€γ‚Ήγ‚Ώγƒƒγ‚―γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγΎγŸγ€9本γζ£’γ‚’ζŸγ­γ¦ζ£’γζŸγ«γ—γ€γγ‚Œγ‚’γ•γ‚‰γ«ζŸγ­γ¦ε€§γγͺζ£’γζŸγ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ε€§γγͺζ£’γζŸγ―、丸ε€ͺγδ»£γ‚γ‚Šγ«δ½Ώη”¨γ§γγΎγ™γ‚ˆγ€‚", "quests.stone_age.first_stone_tools.title": "ζœ€εˆγηŸ³ε™¨", "quests.stone_age.first_stone_tools.subtitle": "γƒ’γƒŽγƒͺγ‚Ήγ‚’θ¦‹γ€γ‘γŸοΌŸ", - "quests.stone_age.first_stone_tools.desc": "ηŸ³γ‚’γƒŠγƒƒγƒ”γƒ³γ‚°γ—γ¦γƒ„γƒΌγƒ«γƒ˜γƒƒγƒ‰γ‚’δ½œγ‚Šγ€ζ£’γ¨η΅„γΏεˆγ‚γ›γ‚‹γ“γ¨γ§γ€ζœ€γ‚‚εŽŸε§‹ηš„γͺγƒ„γƒΌγƒ«γ‚’δ½œζˆγ§γγΎγ™γ€‚γ€γ„γ«ηŸ³ε™¨ζ™‚δ»£γεΉ•開けです!\n\nηŸ³γ γ‘γ§γ‚‚ζœ€δ½Žι™γη”Ÿζ΄»γ―γ§γγΎγ™γŒγ€γ„γšγ‚Œγ―ι‡‘ε±žθ£½γι“ε…·γ‚’δ½œγ‚ŠγŸγγͺγ‚‹γ§γ—γ‚‡γ†γ€‚ι‡‘ε±žθ£½γι“ε…·γ―γ€ι€ŸεΊ¦γ€θ€δΉ…ζ€§γ€δ½œγ‚Œγ‚‹ι“ε…·γη¨ι‘žγŒζ Όζ΅γ«ε„ͺγ‚Œγ¦γ„γΎγ™γ€‚ζ¬‘γ2぀γγ‚―γ‚¨γ‚Ήγƒˆγ―γ€η”Ÿζ΄»γ«εΏ…θ¦γͺをむテムを集めるγγ«ε½Ήη«‹γ€γ―γšγ§γ™γ€‚", + "quests.stone_age.first_stone_tools.desc": "ηŸ³γ‚’γƒŠγƒƒγƒ”γƒ³γ‚°γ—γ¦γƒ„γƒΌγƒ«γƒ˜γƒƒγƒ‰γ‚’δ½œγ‚Šγ€ζ£’γ¨η΅„γΏεˆγ‚γ›γ‚‹γ“γ¨γ§γ€ζœ€γ‚‚εŽŸε§‹ηš„γͺγƒ„γƒΌγƒ«γ‚’δ½œζˆγ§γγΎγ™γ€‚γ€γ„γ«ηŸ³ε™¨ζ™‚δ»£γεΉ•開けです!\n\nηŸ³γ γ‘γ§γ‚‚ζœ€δ½Žι™γη”Ÿζ΄»γ―γ§γγΎγ™γŒγ€γ„γšγ‚Œγ―ι‡‘ε±žθ£½γι“ε…·γ‚’δ½œγ‚ŠγŸγγͺγ‚‹γ§γ—γ‚‡γ†γ€‚ι‡‘ε±žθ£½γι“ε…·γ―γ€ι€ŸεΊ¦γ€θ€δΉ…ζ€§γ€δ½œγ‚Œγ‚‹ι“ε…·γη¨ι‘žγŒζ Όζ΅γ«ε„ͺγ‚Œγ¦γ„γΎγ™γ€‚\n欑γ2぀γγ‚―γ‚¨γ‚Ήγƒˆγ―γ€η”Ÿζ΄»γ«εΏ…θ¦γͺをむテムを集めるγγ«ε½Ήη«‹γ€γ―γšγ§γ™γ€‚", "quests.stone_age.stone_tools.title": "さまざまγͺηŸ³ε™¨γƒ„γƒΌγƒ«", "quests.stone_age.stone_tools.subtitle": "石γι‡θ¦γ•γ‚’ζ„θ­˜γ—ε§‹γ‚γŸ", "quests.stone_age.stone_tools.desc": "ηŸ³γ―ε˜η΄”γ§εŽŸε§‹ηš„γͺη΄ ζγ§γ™γŒγ€ι‡‘ε±žγζ‰±γ„ζ–Ήγ‚’ε­¦γΆγΎγ§γ―γ€γγ‚Œγ‚‰γ«ι Όγ‚‹γ“γ¨γ«γͺγ‚ŠγΎγ™γ€‚γƒγƒ‹γƒ©γγƒˆγƒ©γ‚€γƒ‡γƒ³γƒˆγγ‚ˆγ†γ«ζŠ•γ’γ‚‹γ“γ¨γŒγ§γγ‚‹γ‚Έγƒ£γƒ™γƒͺンや、農ζ₯­γγŸγ‚γι¬γͺγ©γ‚‚δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.stone_age.gather_straw.title": "藁を集める", "quests.stone_age.gather_straw.subtitle": "鍬を使っても構わγͺい", - "quests.stone_age.gather_straw.desc": "εœ°δΈŠγ§θ¦‹γ€γ‹γ‚‹γ»γ¨γ‚“γ©γθ‰γ―γ€γƒŠγ‚€γƒ•γΎγŸγ―ι¬γ§ε£Šγ™γ¨θ—γ¨γ—γ¦εŽη©«γ§γγΎγ™γ€‚θ—γ―ε€šγγη”¨ι€”γŒγ‚γ‚ŠγΎγ™γŒγ€η©΄ηͺ―γ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«ε°‘γͺくとも8぀は必要にγͺγ‚ŠγΎγ™γ€‚\n\n藁は、直射ζ—₯ε…‰γ‚’ιΏγ‘γ‚‹γŸγ‚γιΊ¦γ‚γ‚‰γεΈ½ε­γ‚„γ€η°‘ε˜γ«δ½œγ‚Œγ‚‹γŒε½“γŸγ‚Šεˆ€εšγŒε­˜εœ¨γ—γͺγ„ε»Ίζγ§γ‚γ‚‹θŒ…θ‘Ίγγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«γ‚‚δ½Ώη”¨γ§γγΎγ™γ€‚", + "quests.stone_age.gather_straw.desc": "εœ°δΈŠγ§θ¦‹γ€γ‹γ‚‹γ»γ¨γ‚“γ©γθ‰γ―γ€γƒŠγ‚€γƒ•γΎγŸγ―ι¬γ§ε£Šγ™γ¨θ—γ¨γ—γ¦εŽη©«γ§γγΎγ™γ€‚\nθ—γ―ε€šγγη”¨ι€”γŒγ‚γ‚ŠγΎγ™γŒγ€η©΄ηͺ―γ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«ε°‘γͺくとも8぀は必要にγͺγ‚ŠγΎγ™γ€‚\n\n藁は、直射ζ—₯ε…‰γ‚’ιΏγ‘γ‚‹γŸγ‚γιΊ¦γ‚γ‚‰γεΈ½ε­γ‚„γ€η°‘ε˜γ«δ½œγ‚Œγ‚‹γŒε½“γŸγ‚Šεˆ€εšγŒε­˜εœ¨γ—γͺγ„ε»Ίζγ§γ‚γ‚‹θŒ…θ‘Ίγγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«γ‚‚δ½Ώη”¨γ§γγΎγ™γ€‚", "quests.stone_age.gather_logs.title": "δΈΈε€ͺを集める", "quests.stone_age.gather_logs.subtitle": "気を぀けろ!", "quests.stone_age.gather_logs.desc": "石γζ–§γ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ζœ¨γ‚’εˆ‡γ‚Šε€’γ™γ“γ¨γŒγ§γγΎγ™γ€‚ζœ¨γζ Ήε…ƒγ‚’ε£Šγ™γ¨γ€ζœ¨ε…¨δ½“γŒε€’γ‚Œγ€δΈΈε€ͺγ€ζ£’γ€θ‹—ζœ¨γŒη™Ίη”Ÿγ—γΎγ™γ€‚\n\nε°‘γͺくとも10個γδΈΈε€ͺγ‚’ι›†γ‚γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ‚‰γγ†γ‘8個は穴ηͺ―γ«δ½Ώη”¨γ•γ‚Œγ€ζ‹γ‚Šγ2ε€‹γ―η„šγη«γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚", "quests.stone_age.firepit.title": "η„šγη«", "quests.stone_age.firepit.subtitle": "ε€œγŒθΏ‘γ„", - "quests.stone_age.firepit.desc.1": "δΈΈε€ͺを手にε…₯γ‚ŒγŸγγ§γ€γΎγšγ―η„šγη«γ‚’δ½œγ‚ŠγΎγ—γ‚‡γ†οΌ ε€œι–“γ€γƒ’γƒ³γ‚Ήγ‚ΏγƒΌγ―εœ°δΈŠγ«γ‚ΉγƒγƒΌγƒ³γ—γΎγ›γ‚“γŒγ€ε€œθ‘Œζ€§γθ‚‰ι£Ÿη£γŸγ‘がη›γ‚’θ¦šγΎγ—γ¦γ†γ‚γ€γγΎγ™γ€‚\n\nγΎγšγ€η«θ΅·γ“γ—γ«δ½Ώγ†γŸγ‚γη«θ΅·γ“γ—ε™¨γ‚’δ½œζˆγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.stone_age.firepit.desc.1": "δΈΈε€ͺを手にε…₯γ‚ŒγŸγγ§γ€γΎγšγ―η„šγη«γ‚’δ½œγ‚ŠγΎγ—γ‚‡γ†οΌ\nε€œι–“γ€γƒ’γƒ³γ‚Ήγ‚ΏγƒΌγ―εœ°δΈŠγ«γ‚ΉγƒγƒΌγƒ³γ—γΎγ›γ‚“γŒγ€ε€œθ‘Œζ€§γθ‚‰ι£Ÿη£γŸγ‘がη›γ‚’θ¦šγΎγ—γ¦γ†γ‚γ€γγΎγ™γ€‚\n\nγΎγšγ€η«θ΅·γ“γ—γ«δ½Ώγ†γŸγ‚γη«θ΅·γ“γ—ε™¨γ‚’δ½œζˆγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.stone_age.firepit.desc.2": "η„šγη«γ‚’δ½œζˆγ™γ‚‹γ«γ―γ€δΈΈε€ͺγ‚’ε°‘γͺくとも1ζœ¬γ€γγ—γ¦ζœ¨γζ£’γ‚’ζœ€ε€§3ζœ¬γΎγ§εœ°ι’γ«ζŠ•γ’ε…₯γ‚Œγ€η«θ΅·γ“γ—ε™¨γ‚’ε³γ‚―γƒͺγƒƒγ‚―ι•·ζŠΌγ—γ§δ½Ώγ£γ¦γ€η«γ‚’γ€γ‘γΎγ™γ€‚θ—γ‚’θΆ³γ™γ¨η«γŒδ»˜γγ‚„γ™γγͺγ‚ŠγΎγ™γ€‚\n\nη„šγη«γ―ε…‰γ¨η†±γζΊγ«γͺるだけでγͺγγ€ζΎζ˜Žγ«η«γ‚’γ€γ‘γŸγ‚Šγ€ι£Ÿζγ‚’θͺΏη†γ—γŸγ‚Šγ™γ‚‹γŸγ‚γ«γ‚‚δ½Ώη”¨γ§γγΎγ™γ€‚η„šγη«γ‚’ε³γ‚―γƒͺγƒƒγ‚―γ—γ¦ι–‹γ„γŸη”»ι’γ§δΈΈε€ͺγ‚’θΏ½εŠ γ™γ‚‹γ“γ¨γ§γ€η„šγη«γ‚’η―γ—ηΆšγ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚η«γŒζΆˆγˆγŸε ΄εˆγ―γ€δΈΈε€ͺγ‚’θΏ½εŠ γ—γ¦η«θ΅·γ“γ—ε™¨γ§ε†εΊ¦η‚Ήη«γ™γ‚‹γ γ‘γ§γ™", "quests.stone_age.find_clay.title": "粘土γη’ΊδΏ", "quests.stone_age.find_clay.subtitle": "ε€§ι‡γ«ι›†γ‚γ‚ˆγ†οΌ", - "quests.stone_age.find_clay.desc": "η²˜εœŸι›†γ‚γ―ηŸ³ε™¨ζ™‚δ»£γι€²θ‘Œγ«δΈε―ζ¬ γͺ要素です! ε²©γ‚’γƒŠγƒƒγƒ”γƒ³γ‚°γ™γ‚‹γγ¨εŒζ§˜γ«γ€η²˜εœŸγ‚’さまざまγͺε½’γ«ζˆε½’γ—γ€η©΄ηͺ―で焼くことで、さまざまγͺγ‚’γ‚€γƒ†γƒ γ‚’δ½œζˆγ§γγΎγ™γ€‚ ι‡‘ε±žγζ‰±γ„ζ–Ήγ‚’ε­¦γΆγΎγ§γ€ηŸ³ε™¨γƒ„γƒΌγƒ«γ¨η²˜εœŸθ£½γι™Άε™¨γŒγ‚γͺたγγ‚΅γƒγ‚€γƒγƒ«γθ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\nη²˜εœŸγ―εœ°ι’γ«ε‘ŠδΈŠγ§ε­˜εœ¨γ—γ€ι€šεΈΈγ―θ‰γ§θ¦†γ‚γ‚Œγ¦γ„γΎγ™γ€‚γŸγ γ—γ€η‰Ήεšγη¨ι‘žγζ€η‰©γ―γ€η²˜εœŸγδΈŠγ§γγΏζˆι•·γ™γ‚‹γŸγ‚γ€γγ‚ŒγŒη›ε°γ«γͺγ‚ŠγΎγ™γ€‚γ‚γͺたγδ½γ‚€ζ°—候でどγγ‚ˆγ†γͺη‰Ήεšγζ€η‰©γŒγ‚るかに぀いては、フィールドガむドを璺θͺγ—てください。", + "quests.stone_age.find_clay.desc": "η²˜εœŸι›†γ‚γ―ηŸ³ε™¨ζ™‚δ»£γι€²θ‘Œγ«δΈε―ζ¬ γͺ要素です!\nε²©γ‚’γƒŠγƒƒγƒ”γƒ³γ‚°γ™γ‚‹γγ¨εŒζ§˜γ«γ€η²˜εœŸγ‚’さまざまγͺε½’γ«ζˆε½’γ—γ€η©΄ηͺ―で焼くことで、さまざまγͺγ‚’γ‚€γƒ†γƒ γ‚’δ½œζˆγ§γγΎγ™γ€‚\nι‡‘ε±žγζ‰±γ„ζ–Ήγ‚’ε­¦γΆγΎγ§γ€ηŸ³ε™¨γƒ„γƒΌγƒ«γ¨η²˜εœŸθ£½γι™Άε™¨γŒγ‚γͺたγγ‚΅γƒγ‚€γƒγƒ«γθ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\nη²˜εœŸγ―εœ°ι’γ«ε‘ŠδΈŠγ§ε­˜εœ¨γ—γ€ι€šεΈΈγ―θ‰γ§θ¦†γ‚γ‚Œγ¦γ„γΎγ™γ€‚γŸγ γ—γ€η‰Ήεšγη¨ι‘žγζ€η‰©γ―γ€η²˜εœŸγδΈŠγ§γγΏζˆι•·γ™γ‚‹γŸγ‚γ€γγ‚ŒγŒη›ε°γ«γͺγ‚ŠγΎγ™γ€‚\nあγͺたγδ½γ‚€ζ°—候でどγγ‚ˆγ†γͺη‰Ήεšγζ€η‰©γŒγ‚るかに぀いては、フィールドガむドを璺θͺγ—てください。", "quests.stone_age.clay.title": "粘土", "quests.stone_age.clay.subtitle": "ι™Άε™¨γ‚’δ½œγ‚‹ζ™‚γ ", - "quests.stone_age.clay.desc": "γΎγšγ―ζœ€δ½Ž25個γη²˜εœŸγ‚’集めましょう。ゲームを進めるには少γͺくとも5぀γη•°γͺγ‚‹η²˜εœŸθ£½γγ‚’γ‚€γƒ†γƒ γ‚’δ½œζˆγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™(欑γγ‚―γ‚¨γ‚Ήγƒˆγ‚’ε‚η…§)。 η²˜εœŸγ‚’ζˆε½’γ—γŸγ‚‰γ€η©΄ηͺ―にε…₯γ‚Œγ¦η„Όγγ€η²˜εœŸγ‚’ι™Άε™¨γ«γ—γΎγ™γ€‚ηŸ³γ‚’γƒŠγƒƒγƒ”γƒ³γ‚°γ™γ‚‹γγ¨εŒγ˜ζ–Ήζ³•γ§η²˜εœŸγ‚’ζˆε½’γ§γγΎγ™γŒγ€γ‚’γ‚€γƒ†γƒ 1぀ごとに5぀γη²˜εœŸγŒεΏ…θ¦γ§γ€γ‚‚γ—ε€±ζ•—γ—γ¦γ‚‚η²˜εœŸγ―ε€±γ‚γ‚ŒγΎγ›γ‚“γ€‚", + "quests.stone_age.clay.desc": "γΎγšγ―ζœ€δ½Ž25個γη²˜εœŸγ‚’集めましょう。ゲームを進めるには少γͺくとも5぀γη•°γͺγ‚‹η²˜εœŸθ£½γγ‚’γ‚€γƒ†γƒ γ‚’δ½œζˆγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™(欑γγ‚―γ‚¨γ‚Ήγƒˆγ‚’ε‚η…§)。\nη²˜εœŸγ‚’ζˆε½’γ—γŸγ‚‰γ€η©΄ηͺ―にε…₯γ‚Œγ¦η„Όγγ€η²˜εœŸγ‚’ι™Άε™¨γ«γ—γΎγ™γ€‚\nηŸ³γ‚’γƒŠγƒƒγƒ”γƒ³γ‚°γ™γ‚‹γγ¨εŒγ˜ζ–Ήζ³•γ§η²˜εœŸγ‚’ζˆε½’γ§γγΎγ™γŒγ€γ‚’γ‚€γƒ†γƒ 1぀ごとに5぀γη²˜εœŸγŒεΏ…θ¦γ§γ€γ‚‚γ—ε€±ζ•—γ—γ¦γ‚‚η²˜εœŸγ―ε€±γ‚γ‚ŒγΎγ›γ‚“γ€‚", "quests.stone_age.pit_kiln.title": "η©΄ηͺ―", "quests.stone_age.pit_kiln.subtitle": "γƒ›γƒƒγƒˆγƒˆγƒ”γƒƒγ‚―οΌ", - "quests.stone_age.pit_kiln.desc": "η©΄ηͺ―γ―γ€εΊη›€γ§γ‚’γ‚€γƒ†γƒ γ‚’εŠ η†±γ™γ‚‹γŸγ‚γζ–Ήζ³•γ§γ™γ€‚γ“γ‚Œγ«γ‚ˆγ£γ¦η²˜εœŸθ£½ε“γ‚’η„Όγ„γŸγ‚Šγ€εŸΊζœ¬ηš„γͺι‰±ηŸ³γ‚’ζΊΆγ‹γ—γ¦γ€ζœ€εˆγι‡‘ε±žθ£½γƒ„γƒΌγƒ«γ§γ‚γ‚‹γƒŽγ‚³γ‚γƒͺγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nη©΄ηͺ―γ‚’δ½œζˆγ™γ‚‹γ«γ―γ€8぀γθ—γ€8぀γδΈΈε€ͺγ€εŠ η†±γ—γŸγ„γ‚‚γγ€γŠγ‚ˆγ³η«θ΅·γ“γ—ε™¨γŒεΏ…θ¦γ§γ™γ€‚δ½œζˆζ–Ήζ³•γ«γ€γ„γ¦γ―、フィールドガむドγη©΄ηͺ―γγ‚»γ‚―γ‚·γƒ§γƒ³γ‚’γŠθͺ­γΏγγ γ•γ„γ€‚η„šγη«γ¨εŒγ˜γ§γ―γ‚γ‚ŠγΎγ›γ‚“οΌ", + "quests.stone_age.pit_kiln.desc": "η©΄ηͺ―γ―γ€εΊη›€γ§γ‚’γ‚€γƒ†γƒ γ‚’εŠ η†±γ™γ‚‹γŸγ‚γζ–Ήζ³•γ§γ™γ€‚γ“γ‚Œγ«γ‚ˆγ£γ¦η²˜εœŸθ£½ε“γ‚’η„Όγ„γŸγ‚Šγ€εŸΊζœ¬ηš„γͺι‰±ηŸ³γ‚’ζΊΆγ‹γ—γ¦γ€ζœ€εˆγι‡‘ε±žθ£½γƒ„γƒΌγƒ«γ§γ‚γ‚‹γƒŽγ‚³γ‚γƒͺγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nη©΄ηͺ―γ‚’δ½œζˆγ™γ‚‹γ«γ―γ€8぀γθ—γ€8぀γδΈΈε€ͺγ€εŠ η†±γ—γŸγ„γ‚‚γγ€γŠγ‚ˆγ³η«θ΅·γ“γ—ε™¨γŒεΏ…θ¦γ§γ™γ€‚\nδ½œζˆζ–Ήζ³•γ«γ€γ„γ¦γ―γ€γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γη©΄ηͺ―γγ‚»γ‚―γ‚·γƒ§γƒ³γ‚’γŠθͺ­γΏγγ γ•γ„γ€‚η„šγη«γ¨εŒγ˜γ§γ―γ‚γ‚ŠγΎγ›γ‚“οΌ", "quests.stone_age.clay_products.title": "η²˜εœŸθ£½ε“", "quests.stone_age.clay_products.subtitle": "倚η›ηš„η²˜εœŸ", "quests.stone_age.clay_products.desc": "γ“γ‚Œγ‚‰γ―γ™γΉγ¦γ€η²˜εœŸγ‹γ‚‰δ½œγ‚‹γ“γ¨γŒγ§γγ‚‹γ‚’γ‚€γƒ†γƒ γ§γ™γ€‚εž‹γ―ι‡‘ε±žεŠ ε·₯γ«δ½Ώη”¨γ•γ‚Œγ€ε£Ίγ―γ‚’γ‚€γƒ†γƒ γ‚’εŽη΄γƒ»δΏε­˜γ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚γγδ»–はフィールドガむドγθͺ¬ζ˜Žγ‚’η’Ίθͺγ—γ¦γΏγΎγ—γ‚‡γ†γ€‚ζžœγŸγ—γ¦ε…¨γ¦δ½œγ‚Œγ‚‹γ§γ—γ‚‡γ†γ‹γ€‚", @@ -3637,18 +3891,18 @@ "quests.stone_age.make_jug.desc": "ζ°΄ε·γ—γ―γ€ζœ€γ‚‚η°‘ε˜γ«δ½œζˆγ§γγ‚‹ζ°΄η­’γ§γ™γŒγ€100mBγ—γ‹δΏζŒγ§γγΎγ›γ‚“γ€‚ι£²γ‚€γ“γ¨γ‚‚γ€εΉγ„γ¦ιŸ³γ‚’η«‹γ¦γ‚‹γ“γ¨γ‚‚γ§γγΎγ™οΌ", "quests.stone_age.make_saw_mold.title": "γƒŽγ‚³γ‚γƒͺεž‹", "quests.stone_age.make_saw_mold.subtitle": "εˆγ‚γ¦γι‡‘ε±žεŠ ε·₯", - "quests.stone_age.make_saw_mold.desc": "η²˜εœŸγ‹γ‚‰δ½œγ‚‹γΉγζœ€εˆγεž‹γ―γ€γƒŽγ‚³γ‚γƒͺγεˆƒγεž‹γ§γ™γ€‚γγ‚Œγ¨ε°‘ι‡γι‡‘ε±žγŒγ‚γ‚Œγ°γ€γƒŽγ‚³γ‚γƒͺγ‚’δ½œζˆγ§γγΎγ™γ€‚γƒŽγ‚³γ‚γƒͺは重要γͺツールです。&l板材&rγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«εΏ…θ¦γ§γ‚γ‚Šγ€γγ‚Œγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ζœ€εˆγ&l&o作ζ₯­ε°&rγ‚’δ½œζˆγ§γγΎγ™γ€‚", + "quests.stone_age.make_saw_mold.desc": "η²˜εœŸγ‹γ‚‰δ½œγ‚‹γΉγζœ€εˆγεž‹γ―γ€γƒŽγ‚³γ‚γƒͺγεˆƒγεž‹γ§γ™γ€‚γγ‚Œγ¨ε°‘ι‡γι‡‘ε±žγŒγ‚γ‚Œγ°γ€γƒŽγ‚³γ‚γƒͺγ‚’δ½œζˆγ§γγΎγ™γ€‚\nγƒŽγ‚³γ‚γƒͺは重要γͺツールです。&l板材&rγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«εΏ…θ¦γ§γ‚γ‚Šγ€γγ‚Œγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ζœ€εˆγ&l&o作ζ₯­ε°&rγ‚’δ½œζˆγ§γγΎγ™γ€‚", "quests.stone_age.make_vessel.title": "ε£Ί", "quests.stone_age.make_vessel.subtitle": "便利γͺ小さγͺεΉε™¨", - "quests.stone_age.make_vessel.desc": "壺は、バンドルγγ‚ˆγ†γ«γ€θ€‡ζ•°γγ‚’むテムを1぀γγ‚Ήγƒ­γƒƒγƒˆγ§ζŒγ‘ι‹γΆγŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚γΎγŸγ€ζœ€εˆγι‡‘ε±žεŠ ε·₯γγŸγ‚γγƒ„ールとしても使います。\n\nε£Ίγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ι‰±ηŸ³γ‚’ε…₯γ‚Œγ‚‰γ‚Œγ‚‹ε°γ•γͺγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγŒι–‹γγΎγ™γ€‚ε£Ίγγƒ„γƒΌγƒ«γƒγƒƒγƒ—γ―γ€ι‰±ηŸ³γŒζΊΆγ‘γ‚‹γ¨γ©γ†γͺγ‚‹γ‹γ‚’ζ•™γˆγ¦γγ‚Œγ‚‹γŸγ‚γ€εˆι‡‘γ‚’γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γ¨γγ«η‰Ήγ«ε½Ήη«‹γ‘γΎγ™οΌ\n\nε£Ίγ‚’η©΄ηͺ―に配η½γ—γ¦εŠ η†±γ™γ‚‹γ¨γ€ε†…ιƒ¨γι‡‘ε±žγ‚’&l溢かす&rγ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ‚‚γ—ζŒ‘ζˆ¦εΏƒγŒγ‚γ‚Œγ°γ€γ•γΎγ–γΎγͺη¨ι‘žγι‡‘ε±žγ‚’ζ··γœγ¦εˆι‡‘γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚εˆι‡‘δ½œζˆγ«γ―γ€ι‡‘ε±žγη‰Ήεšγε‰²εˆγζ··εˆγŒεΏ…θ¦γ§γ™γ€‚ζœ€εˆγι‡‘ε±žγƒ„γƒΌγƒ«γ―ιŠ…γͺγ‚‰η°‘ε˜γ«δ½œγ‚ŒγΎγ™γŒγ€ι’ιŠ…γ«γ‚ˆγ£γ¦δ½œγ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.stone_age.make_vessel.desc": "壺は、バンドルγγ‚ˆγ†γ«γ€θ€‡ζ•°γγ‚’むテムを1぀γγ‚Ήγƒ­γƒƒγƒˆγ§ζŒγ‘ι‹γΆγŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚γΎγŸγ€ζœ€εˆγι‡‘ε±žεŠ ε·₯γγŸγ‚γγƒ„ールとしても使います。\n\nε£Ίγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ι‰±ηŸ³γ‚’ε…₯γ‚Œγ‚‰γ‚Œγ‚‹ε°γ•γͺγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγŒι–‹γγΎγ™γ€‚ε£Ίγγƒ„γƒΌγƒ«γƒγƒƒγƒ—γ―γ€ι‰±ηŸ³γŒζΊΆγ‘γ‚‹γ¨γ©γ†γͺγ‚‹γ‹γ‚’ζ•™γˆγ¦γγ‚Œγ‚‹γŸγ‚γ€εˆι‡‘γ‚’γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γ¨γγ«η‰Ήγ«ε½Ήη«‹γ‘γΎγ™οΌ\n\nε£Ίγ‚’η©΄ηͺ―に配η½γ—γ¦εŠ η†±γ™γ‚‹γ¨γ€ε†…ιƒ¨γι‡‘ε±žγ‚’&l溢かす&rγ“γ¨γŒγ§γγΎγ™γ€‚\n\nγ‚‚γ—ζŒ‘ζˆ¦εΏƒγŒγ‚γ‚Œγ°γ€γ•γΎγ–γΎγͺη¨ι‘žγι‡‘ε±žγ‚’ζ··γœγ¦εˆι‡‘γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚εˆι‡‘δ½œζˆγ«γ―γ€ι‡‘ε±žγη‰Ήεšγε‰²εˆγ§ζ··εˆγ™γ‚‹γ“γ¨γŒεΏ…θ¦γ§γ™γ€‚\nζœ€εˆγι‡‘ε±žγƒ„γƒΌγƒ«γ―ιŠ…γͺγ‚‰η°‘ε˜γ«δ½œγ‚ŒγΎγ™γŒγ€ι’ιŠ…γ«γ‚ˆγ£γ¦δ½œγ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", "quests.stone_age.native_ores.title": "ι‰±ηŸ³γε°ηŸ³οΌŸ", "quests.stone_age.native_ores.subtitle": "ι‡‘ε±žγ‚’ε›γζ‰‹γ«γ€‚", - "quests.stone_age.native_ores.desc.1": "ι‰±θ„ˆγη”Ÿζˆγ―γ€γŠγγ‚‰γγ‚γͺγŸγŒζ…£γ‚Œθ¦ͺしんだもγγ¨γ―ι•γ£γ¦γ„γΎγ™γ€‚ζ΄žηͺŸγ«γ•γΎγ‚ˆγ£γ¦γ„γ¦γ‚‚γͺかγͺか見぀けることはことはできγͺγ„γ§γ—γ‚‡γ†γ€‚δ»£γ‚γ‚Šγ«γ€εœ°θ‘¨γ«θ½γ‘γ¦γ„γ‚‹γ€Œη›ε°γ€γ‚’θ¦‹γ€γ‘γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ“γ‚Œγ‚‰γ―、小さγͺηŸ³γ€ε‘΅γε±±γ€γΎγŸγ―小さγͺ硐晢γθнγγ‚ˆγ†γ«θ¦‹γˆγ‚‹ε ΄εˆγŒγ‚γ‚ŠγΎγ™γ€‚\n\nιŠ…γŒγ©γ†γ—γ¦γ‚‚θ¦‹γ€γ‹γ‚‰γͺγ„γ§γ™γ‹οΌŸγγ‚Œγͺらεˆ₯η¨γηŸ³γ‚’ζŽ’してみましょう。特εšγι‰±ηŸ³γ―η‰Ήεšγε²©γη¨ι‘žγδΈ­γ§γ—か出現しγͺγ„γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚εˆ†εΈƒγ«γ€γ„γ¦γ―γ€EMIかフィールドガむドγTFGι‰±ηŸ³γι …η›γ‚’η’Ίθͺγ—てください。", - "quests.stone_age.native_ores.desc.2": "γͺγœγγ‚Œγ‚‰γ―γ€Œη›ε°γ€γ¨ε‘Όγ°γ‚Œγ‚‹γγ§γ™γ‹οΌŸγ“γ‚Œγ―γ€ηœŸδΈ‹γ«γ€εœ°θ‘¨γ§θ¦‹γ€γ‘γŸι‰±ηŸ³γ¨εŒγ˜ι‰±ηŸ³γ‚’ε«γ‚€γ€ε·¨ε€§γͺι‰±θ„ˆγŒγ‚γ‚‹γ“γ¨γ‚’ζ„ε‘³γ—γΎγ™γ€‚γΎγ γƒ„γƒ«γƒγ‚·γŒγͺγ„γ§γ—γ‚‡γ†οΌŸγΎγšγ―ι‰±ηŸ³γ‚’θ¦‹γ€γ‘γŸε ΄ζ‰€γ‚’γƒ‘γƒ’γ—γ¦γŠγ„γ¦γγ γ•γ„οΌεΎŒγ§ιžεΈΈγ«ε½Ήη«‹γ‘γΎγ™γ€‚\n\n小さγͺι‰±ηŸ³γ―γ€1γ€γ«γ€γι‡‘ε±žγγƒŠγ‚²γƒƒγƒˆγ¨εŒη¨‹εΊ¦γι‡γι‡‘ε±žγ‚’ε«γ‚€γŸγ‚γ€γ§γγ‚‹γ γ‘ε€šγι›†γ‚γ¦γγ γ•γ„γ€‚γŸγ γ—γ€γ©γ“γ§θ¦‹γ€γ‘γŸγ‹γ‚’γƒ‘γƒ’γ—γ¦γŠγ„γ¦γγ γ•γ„οΌ", + "quests.stone_age.native_ores.desc.1": "ι‰±θ„ˆγη”Ÿζˆγ―γ€γŠγγ‚‰γγ‚γͺγŸγŒζ…£γ‚Œθ¦ͺしんだもγγ¨γ―違っています。\n洞ηͺŸγ‚’γ•γΎγ‚ˆγ£γ¦γ„γ¦γ‚‚γͺかγͺか見぀けることはことはできγͺいでしょう。\nδ»£γ‚γ‚Šγ«γ€εœ°θ‘¨γ«θ½γ‘γ¦γ„γ‚‹γ€Œη›ε°γ€γ‚’θ¦‹γ€γ‘γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ“γ‚Œγ‚‰γ―、小さγͺηŸ³γ€ε‘΅γε±±γ€γΎγŸγ―小さγͺ硐晢γθнγγ‚ˆγ†γ«θ¦‹γˆγ‚‹ε ΄εˆγŒγ‚γ‚ŠγΎγ™γ€‚\n\nιŠ…γŒγ©γ†γ—γ¦γ‚‚θ¦‹γ€γ‹γ‚‰γͺγ„γ§γ™γ‹οΌŸγγ‚Œγͺらεˆ₯η¨γηŸ³γ‚’ζŽ’してみましょう。特εšγι‰±ηŸ³γ―η‰Ήεšγε²©γη¨ι‘žγδΈ­γ§γ—か出現しγͺγ„γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚εˆ†εΈƒγ«γ€γ„γ¦γ―γ€EMIかフィールドガむドγTFGι‰±ηŸ³γι …η›γ‚’η’Ίθͺγ—てください。", + "quests.stone_age.native_ores.desc.2": "γͺγœγγ‚Œγ‚‰γ―γ€Œη›ε°γ€γ¨ε‘Όγ°γ‚Œγ‚‹γγ§γ™γ‹οΌŸγ“γ‚Œγ―γ€ηœŸδΈ‹γ«γ€εœ°θ‘¨γ§θ¦‹γ€γ‘γŸι‰±ηŸ³γ¨εŒγ˜ι‰±ηŸ³γ‚’ε«γ‚€γ€ε·¨ε€§γͺι‰±θ„ˆγŒγ‚γ‚‹γ“γ¨γ‚’ζ„ε‘³γ—γΎγ™γ€‚\nγΎγ γƒ„γƒ«γƒγ‚·γŒγͺγ„γ§γ—γ‚‡γ†οΌŸγΎγšγ―ι‰±ηŸ³γ‚’θ¦‹γ€γ‘γŸε ΄ζ‰€γ‚’γƒ‘γƒ’γ—γ¦γŠγ„γ¦γγ γ•γ„οΌεΎŒγ§ιžεΈΈγ«ε½Ήη«‹γ‘γΎγ™γ€‚\n\n小さγͺι‰±ηŸ³γ―γ€1γ€γ«γ€γι‡‘ε±žγγƒŠγ‚²γƒƒγƒˆγ¨εŒη¨‹εΊ¦γι‡γι‡‘ε±žγ‚’ε«γ‚€γŸγ‚γ€γ§γγ‚‹γ γ‘ε€šγι›†γ‚γ¦γγ γ•γ„γ€‚\nγŸγ γ—γ€γ©γ“γ§θ¦‹γ€γ‘γŸγ‹γ‚’γƒ‘γƒ’γ—γ¦γŠγ„γ¦γγ γ•γ„οΌ", "quests.stone_age.first_saw.title": "ι‡‘ε±žθ£½γγƒŽγ‚³γ‚γƒͺ", "quests.stone_age.first_saw.subtitle": "γ‚γ‚³γ‚コはします!", - "quests.stone_age.first_saw.desc.1": "γƒŽγ‚³γ‚γƒͺγδ½œζˆγ‚’ι–‹ε§‹γ™γ‚‹γ«γ―γ€γΎγšγ€δ½Ώγ„γŸγ„ι‡‘ε±žγι‰±ηŸ³γ‚’ε°‘γͺくとも144mbεˆ†(1γ‚€γƒ³γ‚΄γƒƒγƒˆεˆ†)壺にε…₯γ‚ŒγΎγ™γ€‚γγεΎŒγ€ε£Ίγ‚’η©΄ηͺ―に配η½γ—て火を぀けます。\n\nη©΄ηͺ―γŒη‡ƒγˆε°½γγŸγ‚‰γ€ζœ¨θ£½γγƒˆγƒ³γ‚°γ‚’γ‚ͺγƒ•γƒγƒ³γƒ‰γ«ζŒγ‘γͺγŒγ‚‰γ€γΎγ η†±γ„γ†γ‘γ«ε£Ίγ‚’γ™γ°γ‚„γζ‹Ύγ„δΈŠγ’γ€ε£Ίγ‚’δ½Ώη”¨γ—γ¦εž‹γ«ζ³¨γη”»ι’γ‚’ι–‹γγΎγ™γ€‚γƒŽγ‚³γ‚γƒͺεž‹γ‚’ζ³¨γη”»ι’γγ‚Ήγƒ­γƒƒγƒˆγ«ι…η½γ™γ‚‹γ¨γ€γƒŽγ‚³γ‚γƒͺεž‹γ«ι‡‘ε±žγŒζΊ€γŸγ•γ‚Œγ¦γ„γγΎγ™γ€‚ そγεΎŒγ€γƒŽγ‚³γ‚γƒͺγƒ˜γƒƒγƒ‰γ‚’ζ£’γ¨η΅„γΏεˆγ‚γ›γ‚‹γ¨γ€γƒŽγ‚³γ‚γƒͺがεŒζˆγ—ます!", - "quests.stone_age.first_saw.desc.2": "ζœ€γ‚‚ζ‰±γ„γ‚„γ™γ„ι‡‘ε±žγ―ιŠ…γ§γ™γŒγ€εˆι‡‘δ½œζˆγ«ζŒ‘ζˆ¦γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚γ“γγ‚―γ‚¨γ‚Ήγƒˆγγ‚Ώγ‚Ήγ‚―γ―γ€ιŠ…γΎγŸγ―ι’ιŠ…εˆι‡‘γ§δ½œγ‚‰γ‚ŒγŸγ‚’γ‚€γƒ†γƒ γ‚’ε—γ‘ε…₯γ‚ŒγΎγ™γ€‚\n\n&lγƒ“γ‚Ήγƒžγ‚Ήγƒ–γƒ­γƒ³γ‚Ί&r:ιŠ…γ€γƒ“γ‚Ήγƒžγ‚Ήγ€δΊœι‰›γ€‚ζœ€γ‚‚εΌ±γ„ι’ιŠ…γ§γ™γŒγ€ζœ€γ‚‚η°‘ε˜γ«δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&lブロンズ&r:ιŠ…γ¨ιŒ«γ€‚ζœ€γ‚‚δΈ€θˆ¬ηš„γͺι’ιŠ…γ§γ™γ€‚\n\n&lブラックブロンズ&r:ιŠ…γ€ι‡‘γ€ιŠ€:初期γζ™‚η‚Ήγ§ζœ€ι«˜γι’ιŠ…γ§γ™γŒγ€γ‹γͺγ‚Šι«˜δΎ‘γ§γ™γ€‚", + "quests.stone_age.first_saw.desc.1": "γƒŽγ‚³γ‚γƒͺγδ½œζˆγ‚’ι–‹ε§‹γ™γ‚‹γ«γ―γ€γΎγšγ€δ½Ώγ„γŸγ„ι‡‘ε±žγι‰±ηŸ³γ‚’ε°‘γͺくとも144mbεˆ†(1γ‚€γƒ³γ‚΄γƒƒγƒˆεˆ†)壺にε…₯γ‚ŒγΎγ™γ€‚γγεΎŒγ€ε£Ίγ‚’η©΄ηͺ―に配η½γ—て火を぀けます。\n\nη©΄ηͺ―γŒη‡ƒγˆε°½γγŸγ‚‰γ€ζœ¨θ£½γγƒˆγƒ³γ‚°γ‚’γ‚ͺγƒ•γƒγƒ³γƒ‰γ«ζŒγ‘γͺγŒγ‚‰γ€γΎγ η†±γ„γ†γ‘γ«ε£Ίγ‚’γ™γ°γ‚„γζ‹Ύγ„δΈŠγ’γ€ε£Ίγ‚’δ½Ώη”¨γ—γ¦εž‹γ«ζ³¨γη”»ι’γ‚’ι–‹γγΎγ™γ€‚γƒŽγ‚³γ‚γƒͺεž‹γ‚’ζ³¨γη”»ι’γγ‚Ήγƒ­γƒƒγƒˆγ«ι…η½γ™γ‚‹γ¨γ€γƒŽγ‚³γ‚γƒͺεž‹γ«ι‡‘ε±žγŒζΊ€γŸγ•γ‚Œγ¦γ„γγΎγ™γ€‚\nそγεΎŒγ€γƒŽγ‚³γ‚γƒͺγƒ˜γƒƒγƒ‰γ‚’ζ£’γ¨η΅„γΏεˆγ‚γ›γ‚‹γ¨γ€γƒŽγ‚³γ‚γƒͺがεŒζˆγ—ます!", + "quests.stone_age.first_saw.desc.2": "ζœ€γ‚‚ζ‰±γ„γ‚„γ™γ„ι‡‘ε±žγ―ιŠ…γ§γ™γŒγ€εˆι‡‘δ½œζˆγ«ζŒ‘ζˆ¦γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\nこγγ‚―γ‚¨γ‚Ήγƒˆγγ‚Ώγ‚Ήγ‚―γ―γ€ιŠ…γΎγŸγ―ι’ιŠ…εˆι‡‘γ§δ½œγ‚‰γ‚ŒγŸγ‚’γ‚€γƒ†γƒ γ‚’ε—γ‘ε…₯γ‚ŒγΎγ™γ€‚\n\n&lγƒ“γ‚Ήγƒžγ‚Ήγƒ–γƒ­γƒ³γ‚Ί&r:ιŠ…γ€γƒ“γ‚Ήγƒžγ‚Ήγ€δΊœι‰›γ€‚ζœ€γ‚‚εΌ±γ„ι’ιŠ…γ§γ™γŒγ€ζœ€γ‚‚η°‘ε˜γ«δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&lブロンズ&r:ιŠ…γ¨ιŒ«γ€‚ζœ€γ‚‚δΈ€θˆ¬ηš„γͺι’ιŠ…γ§γ™γ€‚\n\n&lブラックブロンズ&r:ιŠ…γ€ι‡‘γ€ιŠ€γ€‚εˆζœŸγζ™‚η‚Ήγ§ζœ€ι«˜γι’ιŠ…γ§γ™γŒγ€γ‹γͺγ‚Šι«˜δΎ‘γ§γ™γ€‚", "quests.stone_age.first_saw.tasks.1": "ιŠ…γΎγŸγ―ι’ιŠ…γγƒŽγ‚³γ‚γƒͺγƒ˜γƒƒγƒ‰γ€‚", "quests.stone_age.first_saw.tasks.2": "ιŠ…γΎγŸγ―ι’ιŠ…γγƒŽγ‚³γ‚γƒͺ。", "quests.stone_age.craft_lumber.title": "作ζ₯­ε°γζ™‚ι–“", @@ -3673,13 +3927,13 @@ "quests.stone_age.leather_armor.subtitle": "εŸΊζœ¬ηš„γͺι˜²θ­·η­–", "quests.stone_age.leather_armor.desc": "革γιŽ§γ―、バニラγγ‚‚γγ¨εŒζ§˜γ«γ€εΌ±γ‚γͺ鎧にγͺγ‚ŠγΎγ™γ€‚γ‚γΎγ‚ŠεŠΉζžœγ―γͺγ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€γ‚γ‚‹η¨‹εΊ¦γ―θΊ«γ‚’εˆγ£γ¦γγ‚Œγ€ζ–¬ζ’ƒγƒ€γƒ‘γƒΌγ‚Έγ«ε―Ύγ—γ¦ε€šε°‘γθ€ζ€§γ‚’提供します。", "quests.stone_age.mining_prep.title": "掑掘γζΊ–ε‚™", - "quests.stone_age.mining_prep.subtitle": "ι‰±ηŸ³γη›ε°γ‚’θ¦‹γ€γ‘γŸε ΄ζ‰€γ―...γ‚‚γ‘γ‚γ‚“θ¦šγˆγ¦γ‚‹γ‚ˆγ­οΌŸ", - "quests.stone_age.mining_prep.desc.1": "ηŸ³ε™¨ζ™‚δ»£γ‚ˆγ‚Šε…ˆγ«ι€²γ‚€γ«γ―γ€ε€šγγι‡‘ε±žγŒεΏ…θ¦γ«γͺγ‚Šγ€εœ°θ‘¨γ«γ‚γ‚‹ε°γ•γͺι‰±ηŸ³γ‚’ζ‹Ύγ†γ γ‘γ§γ―δΈεεˆ†γ§γ™γ€‚γ“γ‚Œγ‹γ‚‰γ―γ€ζŽ‘ζŽ˜γ‚’ε§‹γ‚γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nιŠ…γ‚’θ¦‹γ€γ‘γŸε ΄ζ‰€γ«&oε°γ‚’γ€γ‘γ¦γŠγ„γŸ&rとδ»εšγ—て、η›ε°γŒγ‚γ£γŸε ΄ζ‰€γγŠγŠγ‚ˆγγδΈ­εΏƒγ‚’θ¦‹γ€γ‘γ¦ζŽ˜γ‚Šε§‹γ‚γΎγ—γ‚‡γ†οΌ かγͺγ‚Šζ·±γ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€ζœ€η΅‚ηš„γ«γ―η›ηš„γι‰±ηŸ³γŒθ¦‹γ€γ‹γ‚‹γ§γ—ょう。欑γγƒšγƒΌγ‚Έγ«γ―γ€ζœ€εˆγζŽ‘ζŽ˜ζ—…θ‘Œγ«ζŒγ£γ¦γ„γγŸγ„θ£…ε‚™γŒγ„γγ€γ‹η΄Ήδ»‹γ•γ‚Œγ¦γ„γΎγ™οΌ", - "quests.stone_age.mining_prep.desc.2": "&lツルハシ&r:γ“γ‚ŒγŒδ½•γ‚’γ™γ‚‹γ‹γ―ζ˜Žη™½γ§γ—γ‚‡γ†γ€‚ηŸ³γ‚’ε£Šγ—γ¦ι‰±ηŸ³γ‚’εŽη©«γ™γ‚‹ζ–Ήζ³•γŒεΏ…θ¦γ§γ™γ€‚γƒγƒ³γƒžγƒΌγ―ζ©Ÿθƒ½γ—γΎγ›γ‚“οΌ\n\n&lγ―γ—γ”γ¨ζΎζ˜Ž&r:ζŽ˜γ£γŸη©΄γ‹γ‚‰η™»γ‚‹ζ–Ήζ³•γ¨ζ˜Žγ‹γ‚Šγ―εΏ…ι ˆγ§γ™οΌ\n\n&l撁と板材&r:TFGでγζŽ‘ζŽ˜γ―γ€γ―γ‚‹γ‹γ«ε±ι™Ίγ§γ™γ€‚γƒ’γƒ³γ‚Ήγ‚ΏγƒΌγŒεœ°δΈ‹γ«ε‡ΊηΎγ™γ‚‹γ γ‘γ§γͺγγ€δΈζ³¨ζ„γ«ζŽ˜γ‚Šι€²γ‚€γ¨ε΄©θ½γŒη™Ίη”Ÿγ™γ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™οΌ こγγ‚―γ‚¨γ‚ΉγƒˆγδΈŠγ«γ‚γ‚‹γ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€ζŽ‘ζŽ˜δΈ­γε±ι™Ίγ‚’軽減する方法に぀いてθͺ¬ζ˜Žγ—ます。\n\nγ•γ‚γ€ζŽ‘ζŽ˜γ«ε‘γ‹γ„γΎγ—γ‚‡γ†οΌ", + "quests.stone_age.mining_prep.subtitle": "γƒ¬γƒƒγƒ„η›΄δΈ‹ζŽ˜γ‚ŠοΌ", + "quests.stone_age.mining_prep.desc.1": "ηŸ³ε™¨ζ™‚δ»£γ‚ˆγ‚Šε…ˆγ«ι€²γ‚€γ«γ―γ€ε€šγγι‡‘ε±žγŒεΏ…θ¦γ«γͺγ‚Šγ€εœ°θ‘¨γ«γ‚γ‚‹ε°γ•γͺι‰±ηŸ³γ‚’ζ‹Ύγ†γ γ‘γ§γ―δΈεεˆ†γ§γ™γ€‚γ“γ‚Œγ‹γ‚‰γ―γ€ζŽ‘ζŽ˜γ‚’ε§‹γ‚γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nιŠ…γ‚’θ¦‹γ€γ‘γŸε ΄ζ‰€γ«&oε°γ‚’γ€γ‘γ¦γŠγ„γŸ&rとδ»εšγ—て、η›ε°γŒγ‚γ£γŸε ΄ζ‰€γγŠγŠγ‚ˆγγδΈ­εΏƒγ‚’θ¦‹γ€γ‘γ¦ζŽ˜γ‚Šε§‹γ‚γΎγ—γ‚‡γ†οΌ\nかγͺγ‚Šζ·±γ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€ζœ€η΅‚ηš„γ«γ―η›ηš„γι‰±ηŸ³γŒθ¦‹γ€γ‹γ‚‹γ§γ—ょう。\n欑γγƒšγƒΌγ‚Έγ§γ―γ€ζœ€εˆγζŽ‘ζŽ˜ζ—…θ‘Œγ«ζŒγ£γ¦γ„γγŸγ„θ£…ε‚™γ‚’γ„γγ€γ‹η΄Ήδ»‹γ—γ¦γ„γΎγ™οΌ", + "quests.stone_age.mining_prep.desc.2": "&lツルハシ&r:γ“γ‚ŒγŒδ½•γ‚’γ™γ‚‹γ‹γ―ζ˜Žη™½γ§γ—γ‚‡γ†γ€‚ηŸ³γ‚’ε£Šγ—γ¦ι‰±ηŸ³γ‚’εŽη©«γ™γ‚‹ζ–Ήζ³•γŒεΏ…θ¦γ§γ™γ€‚γƒγƒ³γƒžγƒΌγ―ζ©Ÿθƒ½γ—γΎγ›γ‚“οΌ\n\n&lγ―γ—γ”γ¨ζΎζ˜Ž&r:ζŽ˜γ£γŸη©΄γ‹γ‚‰η™»γ‚‹ζ–Ήζ³•γ¨ζ˜Žγ‹γ‚Šγ―εΏ…ι ˆγ§γ™οΌ\n\n&l撁と板材&r:TFGでγζŽ‘ζŽ˜γ―γ€γ―γ‚‹γ‹γ«ε±ι™Ίγ§γ™γ€‚γƒ’γƒ³γ‚Ήγ‚ΏγƒΌγŒεœ°δΈ‹γ«ε‡ΊηΎγ™γ‚‹γ γ‘γ§γͺγγ€δΈζ³¨ζ„γ«ζŽ˜γ‚Šι€²γ‚€γ¨ε΄©θ½γŒη™Ίη”Ÿγ™γ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™οΌ\nこγγ‚―γ‚¨γ‚ΉγƒˆγδΈŠγ«γ‚γ‚‹γ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€ζŽ‘ζŽ˜δΈ­γε±ι™Ίγ‚’軽減する方法に぀いてθͺ¬ζ˜Žγ—ます。\n\nγ•γ‚γ€ζŽ‘ζŽ˜γ«ε‘γ‹γ„γΎγ—γ‚‡γ†οΌ", "quests.stone_age.hazards.title": "掑掘γε±ι™Ί", "quests.stone_age.hazards.subtitle": "εœ°δΈŠγ―ε±ι™Ίγ γ£γ¦οΌŸ", - "quests.stone_age.hazards.desc.1": "γƒ’γƒ³γ‚Ήγ‚ΏγƒΌγ«εŠ γˆγ¦γ€ζŽ‘ζŽ˜ζ™‚γζœ€ε€§γθͺ²ι‘Œγ―崩落へγε―Ύε‡¦γ§γ™γ€‚ むき出しγηŸ³γ‚„ι‰±ηŸ³γƒ–γƒ­γƒƒγ‚―γδΈ‹γ«η©Ίι–“γŒγ‚γ‚‹ε ΄εˆγ€γγ‚Œγ―γ€ŒδΈε‰εšγ€γ¨θ¦‹γͺγ•γ‚Œγ€θΏ‘γγγƒ–γƒ­γƒƒγ‚―γŒζŽ‘ζŽ˜γ•γ‚Œγ‚‹γŸγ³γ«ε΄©θ½γŒε§‹γΎγ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚γͺγŠγ€ζ΄žηͺŸγε€©δΊ•γ―η‘¬εŒ–γ—γŸηŸ³γ§θ¦†γ‚γ‚Œγ¦γŠγ‚Šγ€ε΄©θ½γ‚’εΌ•γθ΅·γ“γ™γ“γ¨γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚ ε΄©θ½γ‚’ιΏγ‘γ‚‹γŸγ‚γ«γ€ζœ€γ‚‚ε‰ε…¨γͺζ–Ήζ³•γ―εœ°ι’γ‚’ζŽ˜γ‚Šι€²γ‚γ€ιœ²ε€©ζŽ˜γ‚Šγ™γ‚‹γ“γ¨γ§γ™γŒγ€ε‰ε…¨γ‹γ€εŠΉηŽ‡ηš„γ«ζŽ‘ζŽ˜γ—γŸγ„ε ΄εˆγ―γ€ζ’γδ½Ώη”¨ζ–Ήζ³•γ‚’ε­¦γΆεΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌγ“γ‚Œγ‚‰γ―δΈΈε€ͺγ¨γƒŽγ‚³γ‚γƒͺγ§δ½œζˆγ§γγΎγ™γ€‚", - "quests.stone_age.hazards.desc.2": "γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«γ―γ€ζ’γŒγ©γγ‚ˆγ†γ«ζ©Ÿθƒ½γ™γ‚‹γ‹γ«γ€γ„てγθ©³η΄°γ¨ε›³γŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γŒγ€θ¦η΄„γ™γ‚‹γ¨γ€δΊ’γ„γ«4ブロックδ»₯内にこγγ‚ˆγ†γ«ι…η½γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ζœ€δΈŠιƒ¨γεž‚η›΄γͺζ”―ζŸ±γγΏγŒεŸιš›γ«ε‘¨ε›²γ‚’ζ”―ζŒγ—γ€γγ‚Œγ‚‰γ―ε°γ•γͺεŠεΎ„γ‚’ζŒγ£γ¦γ„γΎγ™γ€‚", + "quests.stone_age.hazards.desc.1": "γƒ’γƒ³γ‚Ήγ‚ΏγƒΌγ«εŠ γˆγ¦γ€ζŽ‘ζŽ˜ζ™‚γζœ€ε€§γθͺ²ι‘Œγ―崩落へγε―Ύε‡¦γ§γ™γ€‚\nむき出しγηŸ³γ‚„ι‰±ηŸ³γƒ–γƒ­γƒƒγ‚―γδΈ‹γ«η©Ίι–“γŒγ‚γ‚‹ε ΄εˆγ€γγ‚Œγ―γ€ŒδΈε‰εšγ€γ¨θ¦‹γͺγ•γ‚Œγ€θΏ‘γγγƒ–γƒ­γƒƒγ‚―γŒζŽ‘ζŽ˜γ•γ‚Œγ‚‹γŸγ³γ«ε΄©θ½γŒε§‹γΎγ‚‹ε―θƒ½ζ€§γŒγ‚γ‚ŠγΎγ™γ€‚\nγͺγŠγ€ζ΄žηͺŸγε€©δΊ•γ―η‘¬εŒ–γ—γŸηŸ³γ§θ¦†γ‚γ‚Œγ¦γŠγ‚Šγ€ε΄©θ½γ‚’εΌ•γθ΅·γ“γ™γ“γ¨γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚\nε΄©θ½γ‚’ιΏγ‘γ‚‹γŸγ‚γ«γ€ζœ€γ‚‚ε‰ε…¨γͺζ–Ήζ³•γ―εœ°ι’γ‚’ζŽ˜γ‚Šι€²γ‚γ€ιœ²ε€©ζŽ˜γ‚Šγ™γ‚‹γ“γ¨γ§γ™γŒγ€ε‰ε…¨γ‹γ€εŠΉηŽ‡ηš„γ«ζŽ‘ζŽ˜γ—γŸγ„ε ΄εˆγ―γ€ζ’γδ½Ώη”¨ζ–Ήζ³•γ‚’ε­¦γΆεΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌζ’γ―δΈΈε€ͺγ¨γƒŽγ‚³γ‚γƒͺγ§δ½œζˆγ§γγΎγ™γ€‚", + "quests.stone_age.hazards.desc.2": "γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«γ―γ€ζ’γŒγ©γγ‚ˆγ†γ«ζ©Ÿθƒ½γ™γ‚‹γ‹γ«γ€γ„てγθ©³η΄°γ¨ε›³γŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γŒγ€θ¦η΄„γ™γ‚‹γ¨γ€δΊ’γ„γ«4ブロックδ»₯内にこγγ‚ˆγ†γ«ι…η½γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nζœ€δΈŠιƒ¨γεž‚η›΄γͺζ”―ζŸ±γγΏγŒγ€εŸιš›γ«ε‘¨ε›²γε°γ•γͺη―„ε›²γ‚’ζ”―ζŒγ—γ¦γ„γΎγ™γ€‚", "quests.stone_age.copper_for_anvil.title": "ι‡‘εΊŠη”¨γιŠ…", "quests.stone_age.copper_for_anvil.subtitle": "γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’14ε€‹ι›†γ‚γ‚‹γ“γ¨γ«ζ…£γ‚ŒγΎγ—γ‚‡γ†", "quests.stone_age.copper_for_anvil.desc": "ι‡‘εΊŠγ―ε‰γγ‚γ‚ŠγΎγ›γ‚“οΌε„ι‡‘εΊŠγ«γ―7個γγƒ€γƒ–γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆγŒεΏ…θ¦γ§γ€γγγŸγ‚γ«γ―14個γγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’ζΊΆζŽ₯γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγΎγ ι‰±ηŸ³ζŽ‘ζŽ˜γ‚’γ—γ¦γ„γͺγ„ε ΄εˆγ―γ€γ“γζ™‚η‚Ήγ§ζŽ‘ζŽ˜γ‚’ι–‹ε§‹γ™γ‚‹γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚126個γε°γ•γͺιŠ…γ‚’ι›†γ‚γ‚‹γγ―倧倉でしょう。", @@ -3691,28 +3945,28 @@ "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": "ι‡‘εΊŠγ―γ€εˆζœŸγι‡‘ε±žεŠ ε·₯γθΆ³ζŽ›γ‹γ‚Šγ«γͺγ‚ŠγΎγ™γ€‚ι‡‘ε±žθ£½γι‡‘εΊŠγ‚’δ½œζˆγ™γ‚‹γ«γ―、1ζ΅ιšŽε‰γι‡‘εΊŠγ‚’δ½Ώη”¨γ—γ¦γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’ζΊΆζŽ₯γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ ιŠ…γ―ζœ€εˆγζ΅ιšŽγ§γ‚γ‚‹γŸγ‚γ€ε²©γι‡‘εΊŠγ‚’δ½Ώη”¨γ—γ¦ζΊΆζŽ₯γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γƒγƒ³γƒžγƒΌγ§η«ζˆε²©γγƒ–ロックγδΈŠιƒ¨γ‚’右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€ηŸ³γι‡‘εΊŠγ‚’δ½œζˆγ§γγΎγ™γ€‚ γ“γ‚Œγ―ζ‹εΏ΅γͺγŒγ‚‰γ‚€γƒ³γ‚΄γƒƒγƒˆγζΊΆζŽ₯γ«γ—γ‹δ½ΏγˆγΎγ›γ‚“γ€‚δ»–γγ‚‚γγ«ζˆε½’γ™γ‚‹γ«γ―γ€γγ‚Œγžγ‚Œγι‡‘ε±žγ«ε―ΎεΏœγ—γŸι‡‘εΊŠγŒεΏ…θ¦γ§γ™γ€‚", + "quests.stone_age.rock_anvil.desc": "ι‡‘εΊŠγ―γ€εˆζœŸγι‡‘ε±žεŠ ε·₯γθΆ³ζŽ›γ‹γ‚Šγ«γͺγ‚ŠγΎγ™γ€‚ι‡‘ε±žθ£½γι‡‘εΊŠγ‚’δ½œζˆγ™γ‚‹γ«γ―、1ζ΅ιšŽε‰γι‡‘εΊŠγ‚’δ½Ώη”¨γ—γ¦γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’ζΊΆζŽ₯γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nιŠ…γ―ζœ€εˆγζ΅ιšŽγ§γ‚γ‚‹γŸγ‚γ€ε²©γι‡‘εΊŠγ‚’δ½Ώη”¨γ—γ¦ζΊΆζŽ₯γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γƒγƒ³γƒžγƒΌγ§η«ζˆε²©γγƒ–ロックγδΈŠιƒ¨γ‚’右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€ηŸ³γι‡‘εΊŠγ‚’δ½œζˆγ§γγΎγ™γ€‚\nγ“γ‚Œγ―ζ‹εΏ΅γͺγŒγ‚‰γ‚€γƒ³γ‚΄γƒƒγƒˆγζΊΆζŽ₯γ«γ—γ‹δ½ΏγˆγΎγ›γ‚“γ€‚δ»–γγ‚‚γγ«ζˆε½’γ™γ‚‹γ«γ―γ€γγ‚Œγžγ‚Œγι‡‘ε±žγ«ε―ΎεΏœγ—γŸι‡‘εΊŠγŒεΏ…θ¦γ§γ™γ€‚", "quests.stone_age.quern.title": "δΈ‹θ‡Όγ¨δΈŠθ‡Ό", "quests.stone_age.quern.subtitle": "ι‰±ηŸ³ε‡¦η†γΈγη¬¬δΈ€ζ­©", - "quests.stone_age.quern.desc": "θ‡Όγ―γ€η°‘ε˜γͺη΄ ζγ‚’η²‰η •γ™γ‚‹γŸγ‚γ«δ½ΏγˆγΎγ™γ€‚δΈ‹γιƒ¨εˆ†γ―δΈ‹θ‡Όγ¨ε‘Όγ°γ‚Œγ€δΈŠγιƒ¨εˆ†γ―δΈŠθ‡Όγ¨ε‘Όγ°γ‚ŒγΎγ™γ€‚θ‡Όγ‚’δ½Ώγˆγ°γ€ι‰±ηŸ³γεŽŸηŸ³γ‚’η²‰η •γ•γ‚ŒγŸι‰±ηŸ³γ«εŠ ε·₯γ§γγ€γγ†γ™γ‚‹γ¨θ£½ιŒ¬γ™γ‚‹ιš›γ«γ‚ˆγ‚Šε€šγγι‡‘ε±žγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚\n\nθ‡Όγ«γ‚ˆγ£γ¦γ€θžε‰€γ€ε°ιΊ¦η²‰γ€ιͺ¨η²‰γͺどγδ»–γη²‰ζœ«γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.stone_age.quern.desc": "θ‡Όγ―γ€η°‘ε˜γͺη΄ ζγ‚’η²‰η •γ™γ‚‹γŸγ‚γ«δ½ΏγˆγΎγ™γ€‚δΈ‹γιƒ¨εˆ†γ―δΈ‹θ‡Όγ¨ε‘Όγ°γ‚Œγ€δΈŠγιƒ¨εˆ†γ―δΈŠθ‡Όγ¨ε‘Όγ°γ‚ŒγΎγ™γ€‚\nθ‡Όγ‚’δ½Ώγˆγ°γ€ι‰±ηŸ³γεŽŸηŸ³γ‚’η²‰η •γ•γ‚ŒγŸι‰±ηŸ³γ«εŠ ε·₯γ§γγ€γγ†γ™γ‚‹γ¨θ£½ιŒ¬γ™γ‚‹ιš›γ«γ‚ˆγ‚Šε€šγγι‡‘ε±žγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚\n\nθ‡Όγ«γ‚ˆγ£γ¦γ€θžε‰€γ€ε°ιΊ¦η²‰γ€ιͺ¨η²‰γͺどγδ»–γη²‰ζœ«γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", "quests.stone_age.crush_ore.title": "初期γι‰±ηŸ³ε‡¦η† - γƒ‘γƒΌγƒˆ1", "quests.stone_age.crush_ore.subtitle": "臼で砕く", - "quests.stone_age.crush_ore.desc": "θ‡Όγ―γ€ι‰±ηŸ³γ‚’ε‡¦η†γ™γ‚‹γŸγ‚γζœ€εˆγγ‚Ήγƒ†γƒƒγƒ—γ«γ™γŽγΎγ›γ‚“οΌζœ¬ζ Όηš„γͺι‰±ηŸ³ε‡¦η†γ―γ€ε€§θ¦ζ¨‘γ§θ€‡ι›‘γ§γ™γ€‚θ©³γ—γγ―γ‚―γ‚¨γ‚Ήγƒˆγγ€Œι‰±ηŸ³ε‡¦η†γ€γη« γ§ε­¦γΆγ“γ¨γŒγ§γγΎγ™γ€‚ι‰±ηŸ³ε‡¦η†γ‚’ι€²γ‚γ‚‹γ¨γ€ι‰±ηŸ³γ‹γ‚‰γ‚ˆγ‚Šε€šγγι‡‘ε±žγ‚„γγδ»–γε‰―η”£η‰©γ‚’ζŠ½ε‡Ίγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γΎγšγ―ι‰±ηŸ³γεŽŸηŸ³γ‚’θ‡Όγ«ι€šγ—γ¦η²‰η •γ•γ‚ŒγŸι‰±ηŸ³γ«ε€‰γˆγ‚‹γ¨γ“γ‚γ‹γ‚‰ε§‹γ‚γΎγ—γ‚‡γ†γ€‚γ“γζœ€εˆγγ‚Ήγƒ†γƒƒγƒ—γ γ‘γ§γ‚‚γ€ι‰±ηŸ³γ‚’ζΊΆγ‹γ—γŸιš›γι‡γ‚’ε’—γ‚„γ™γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.stone_age.crush_ore.desc": "θ‡Όγ―γ€ι‰±ηŸ³γ‚’ε‡¦η†γ™γ‚‹γŸγ‚γζœ€εˆγγ‚Ήγƒ†γƒƒγƒ—γ«γ™γŽγΎγ›γ‚“οΌ\nζœ¬ζ Όηš„γͺι‰±ηŸ³ε‡¦η†γ―γ€ε€§θ¦ζ¨‘γ§θ€‡ι›‘γ§γ™γ€‚θ©³γ—γγ―γ‚―γ‚¨γ‚Ήγƒˆγγ€Œι‰±ηŸ³ε‡¦η†γ€γη« γ§ε­¦γΆγ“γ¨γŒγ§γγΎγ™γ€‚\nι‰±ηŸ³ε‡¦η†γ‚’ι€²γ‚γ‚‹γ¨γ€ι‰±ηŸ³γ‹γ‚‰γ‚ˆγ‚Šε€šγγι‡‘ε±žγ‚„γγδ»–γε‰―η”£η‰©γ‚’ζŠ½ε‡Ίγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγΎγšγ―ι‰±ηŸ³γεŽŸηŸ³γ‚’θ‡Όγ«ι€šγ—γ¦η²‰η •γ•γ‚ŒγŸι‰±ηŸ³γ«ε€‰γˆγ‚‹γ¨γ“γ‚γ‹γ‚‰ε§‹γ‚γΎγ—γ‚‡γ†γ€‚γ“γζœ€εˆγγ‚Ήγƒ†γƒƒγƒ—γ γ‘γ§γ‚‚γ€ι‰±ηŸ³γ‚’ζΊΆγ‹γ—γŸιš›γι‡γ‚’ε’—γ‚„γ™γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.stone_age.crush_crushed_ore.title": "初期γι‰±ηŸ³ε‡¦η† - γƒ‘γƒΌγƒˆ2", "quests.stone_age.crush_crushed_ore.subtitle": "γƒγƒ³γƒžγƒΌγ§ε©γζ½°γ™", "quests.stone_age.crush_crushed_ore.desc": "η²‰η •γ•γ‚ŒγŸι‰±ηŸ³γ‚’γƒγƒ³γƒžγƒΌγ¨δΈ€η·’γ«γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γ¨γ€ζ±šγ‚ŒγŸη²‰γ«γͺγ‚Šγ€ε…₯ζ‰‹γ§γγ‚‹ι‡‘ε±žγι‡γŒγ•γ‚‰γ«ε’—γˆγΎγ™γ€‚\n\nδ»Šγ―γΎγ ι’ε€’γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€γ“γε…ˆγ«γ€γ“γ‚Œγ‚’γ‚ˆγ‚Šι€Ÿγγ€θ‡ͺε‹•ηš„γ«θ‘Œγ†ζ–Ήζ³•γŒθ§£η¦γ•γ‚ŒγΎγ™οΌ", "quests.stone_age.clean_dust.title": "初期γι‰±ηŸ³ε‡¦η† - γƒ‘γƒΌγƒˆ3", "quests.stone_age.clean_dust.subtitle": "ζ±šγ‚ŒγŸη²‰γ‚’ζ΄—γ†", - "quests.stone_age.clean_dust.desc": "ζœ€εΎŒγ«γ€ζ±šγ‚ŒγŸη²‰γΎγŸγ―γ»γΌηΆΊιΊ—γͺ粉を水に落とし、数秒間放η½γ™γ‚‹γ¨γ€γγ‚Œγ‚‰γŒζ΄—ζ΅„γ•γ‚Œγ€ζœ¬ζ₯γη²‰γ«γͺγ‚ŠγΎγ™γ€‚γ“γ‚ŒγŒι‰±ηŸ³γζœ€η΅‚ηš„γͺε½’γ§γ™γ€‚δ»Šγ§γ―γ‚€γƒ³γ‚΄γƒƒγƒˆ1γ€εˆ†γ¨εŒγ˜γγ‚‰γ„γδΎ‘ε€€γŒγ‚γ‚‹γ§γ—γ‚‡γ†οΌ", + "quests.stone_age.clean_dust.desc": "ζœ€εΎŒγ«γ€ζ±šγ‚ŒγŸη²‰γΎγŸγ―γ»γΌηΆΊιΊ—γͺ粉を水に落とし、数秒間放η½γ™γ‚‹γ¨γ€γγ‚Œγ‚‰γŒζ΄—ζ΅„γ•γ‚Œγ€ζœ¬ζ₯γη²‰γ«γͺγ‚ŠγΎγ™γ€‚\nγ“γ‚ŒγŒι‰±ηŸ³γζœ€η΅‚ηš„γͺε½’γ§γ™γ€‚δ»Šγ§γ―γ‚€γƒ³γ‚΄γƒƒγƒˆ1γ€εˆ†γ¨εŒγ˜γγ‚‰γ„γδΎ‘ε€€γŒγ‚γ‚‹γ§γ—γ‚‡γ†οΌ", "quests.stone_age.flux.title": "θžε‰€", "quests.stone_age.flux.subtitle": "εŸΊζœ¬ηš„γͺι‡‘ε±žζŽ₯着剀", "quests.stone_age.flux.desc": "θžε‰€γ―γ€δΈ»γ«ι‡‘ε±žεŠ ε·₯で物を溢ζŽ₯γ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ•γ‚Œγ‚‹γ‚’γ‚€γƒ†γƒ γ§γ™γŒγ€δ»–γη”¨ι€”γ‚‚γ‚γ‚ŠγΎγ™γ€‚\nη™½δΊœγ€ηŸ³η°ε²©γ€ε€§η†ηŸ³γͺどγη‰Ήεšγη¨ι‘žγε²©γ―γ€η²‰η •γ—γ¦θžε‰€γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γΎγŸγ€γ•γΎγ–γΎγͺζ΅·ζ΄‹η”Ÿη‰©γζ»γ‚‚εŒζ§˜γ§γ™γ€‚", "quests.stone_age.weld_copper_ingots.title": "ιŠ…γζΊΆζŽ₯", "quests.stone_age.weld_copper_ingots.subtitle": "ιŠ…γι‡‘εΊŠγΎγ§γ‚γ¨ε°‘γ—", - "quests.stone_age.weld_copper_ingots.desc": "炉に火を぀け、少γͺくとも2぀γιŠ…γγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’ε…₯γ‚ŒγΎγ—γ‚‡γ†γ€‚ιŠ…γγ‚€γƒ³γ‚΄γƒƒγƒˆγŒη†±γ›γ‚‰γ‚Œγ¦γ„γγ¨γƒ„γƒΌγƒ«γƒγƒƒγƒ—γ«θ‘¨η€ΊγŒε‡ΊγΎγ™γ€‚δΈ€εšγζΈ©εΊ¦γ‚’θΆ…γˆγ‚‹γ¨γ€Œι›ι€ ε―θƒ½γ€γ¨θ‘¨η€Ίγ•γ‚ŒγΎγ™γŒγ€γ“γ“γ§γ―θžη‚Ήη›΄ε‰γγ€ŒζΊΆζŽ₯可能」にγͺるまで待けましょう。\n\nζΊΆζŽ₯ε―θƒ½γ¨θ‘¨η€Ίγ•γ‚ŒγŸγ‚‰γ€γ™γγ«ι›ε†Άε ΄γ‹γ‚‰ε–γ‚Šε‡Ίγ—γΎγ™(γ‚ͺγƒ•γƒγƒ³γƒ‰γ§γƒˆγƒ³γ‚°γ‚’ζŒγ€γγ‚’εΏ˜γ‚Œγšγ«οΌ)γ€‚γγ—γ¦γ€ηŸ³γι‡‘εΊŠγ«γ€θžε‰€γ¨γƒγƒ³γƒžγƒΌγ¨δΈ€η·’γ«η½γγ€ζΊΆζŽ₯γ—γΎγ™γ€‚ζ°΄γΎγŸγ―ι›ͺγ‚’εˆ©η”¨γ™γ‚Œγ°γ€γ§γγŸγ¦γγƒ€γƒ–γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’γ‚ˆγ‚Šι€Ÿγε†·ε΄γ§γγΎγ™γ€‚", + "quests.stone_age.weld_copper_ingots.desc": "炉に火を぀け、少γͺくとも2぀γιŠ…γγ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’ε…₯γ‚ŒγΎγ—γ‚‡γ†γ€‚\nιŠ…γγ‚€γƒ³γ‚΄γƒƒγƒˆγŒη†±γ›γ‚‰γ‚Œγ¦γ„γγ¨γƒ„γƒΌγƒ«γƒγƒƒγƒ—γ«θ‘¨η€ΊγŒε‡ΊγΎγ™γ€‚δΈ€εšγζΈ©εΊ¦γ‚’θΆ…γˆγ‚‹γ¨γ€Œι›ι€ ε―θƒ½γ€γ¨θ‘¨η€Ίγ•γ‚ŒγΎγ™γŒγ€γ“γ“γ§γ―θžη‚Ήη›΄ε‰γγ€ŒζΊΆζŽ₯可能」にγͺるまで待けましょう。\n\nζΊΆζŽ₯ε―θƒ½γ¨θ‘¨η€Ίγ•γ‚ŒγŸγ‚‰γ€γ™γγ«ι›ε†Άε ΄γ‹γ‚‰ε–γ‚Šε‡Ίγ—γΎγ™(γ‚ͺγƒ•γƒγƒ³γƒ‰γ§γƒˆγƒ³γ‚°γ‚’ζŒγ€γγ‚’εΏ˜γ‚Œγšγ«οΌ)γ€‚γγ—γ¦γ€ηŸ³γι‡‘εΊŠγ«γ€θžε‰€γ¨γƒγƒ³γƒžγƒΌγ¨δΈ€η·’γ«η½γγ€ζΊΆζŽ₯γ—γΎγ™γ€‚ζ°΄γΎγŸγ―ι›ͺγ‚’εˆ©η”¨γ™γ‚Œγ°γ€γ§γγŸγ¦γγƒ€γƒ–γƒ«γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’γ‚ˆγ‚Šι€Ÿγε†·ε΄γ§γγΎγ™γ€‚", "quests.metal_age.copper_anvil.title": "第一γι‡‘εΊŠ:ιŠ…", "quests.metal_age.copper_anvil.subtitle": "ε …εŸγͺεŠͺεŠ›γζˆζžœ", - "quests.metal_age.copper_anvil.desc": "γŠγ‚γ§γ¨γ†γ”γ–γ„γΎγ™οΌγ“γ‚Œγ«γ¦γ‚γͺγŸγ―ηŸ³ε™¨ζ™‚δ»£γ‚’η΅‚γˆγ€γ“γ‚Œγ‹γ‚‰γ―ι‡‘ε±žζ™‚δ»£γ«ε…₯γ‚ŠγΎγ™οΌ ιŠ…γι‡‘εΊŠγ‚’ζ‰‹γ«ε…₯γ‚ŒγŸγ‚γͺγŸγŒζ¬‘γ«ε–γ‚ŠζŽ›γ‹γ‚‹γγ―γ€ι‡‘εΊŠγη­‰η΄šγ‚’δΈŠγ’γ¦γ„γγ“γ¨γ§γ™γ€‚ 新しいζ΅ιšŽγ«ι€²γ‚€γŸγ³γ«γ€ζ–°γŸγͺγƒ„γƒΌγƒ«γ‚„ζ–°γŸγͺ手ζ΅γŒεˆ©η”¨ε―能にγͺγ‚Šγ€η”Ÿζ΄»γŒγ©γ‚“γ©γ‚“ζ₯½γ«γͺっていくでしょう。さあ、鍛冢γι”δΊΊγ‚’η›ζŒ‡γ—ましょう!", + "quests.metal_age.copper_anvil.desc": "γŠγ‚γ§γ¨γ†γ”γ–γ„γΎγ™οΌγ“γ‚Œγ«γ¦γ‚γͺγŸγ―ηŸ³ε™¨ζ™‚δ»£γ‚’η΅‚γˆγ€γ“γ‚Œγ‹γ‚‰γ―ι‡‘ε±žζ™‚δ»£γ«ε…₯γ‚ŠγΎγ™οΌ\nιŠ…γι‡‘εΊŠγ‚’ζ‰‹γ«ε…₯γ‚ŒγŸγ‚γͺγŸγŒζ¬‘γ«ε–γ‚ŠζŽ›γ‹γ‚‹γγ―γ€ι‡‘εΊŠγη­‰η΄šγ‚’δΈŠγ’γ¦γ„γγ“γ¨γ§γ™γ€‚\n新しいζ΅ιšŽγ«ι€²γ‚€γŸγ³γ«γ€ζ–°γŸγͺγƒ„γƒΌγƒ«γ‚„ζ–°γŸγͺ手ζ΅γŒεˆ©η”¨ε―能にγͺγ‚Šγ€η”Ÿζ΄»γŒγ©γ‚“γ©γ‚“ζ₯½γ«γͺっていくでしょう。\nさあ、鍛冢γι”δΊΊγ‚’η›ζŒ‡γ—ましょう!", "quests.tfg": "TerraFirmaGreg - Modern", "quests.tfg.subtitle": "TerraFirmaGregγΈγ‚ˆγ†γ“γοΌ", "quests.tfg.welcome.title": "TerraFirmaGregγΈγ‚ˆγ†γ“γοΌ", @@ -3723,72 +3977,74 @@ "quests.tfg.create_team.desc": "γƒγƒΌγƒ γ‚’η΅„γ‚€γ“γ¨γ§εŒζ™‚γ«γ‚―γ‚¨γ‚Ήγƒˆγ‚’ζ”»η•₯γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ γƒγƒΌγƒ γ‚’δ½œγ‚‹γ«γ―γ€γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚’ι–‹γγ€ε·¦δΈŠγ«γ‚γ‚‹γ‚«γƒ©γƒ•γƒ«γͺ人が3δΊΊζγ‹γ‚ŒγŸγƒœγ‚Ώγƒ³γ‚’ιΈζŠžγ™γ‚‹γ¨γ€γƒγƒΌγƒ γ‚’δ½œζˆγ§γγ‚‹η”»ι’γŒι–‹γγΎγ™γ€‚Β§aCreate_a_teamΒ§r γ¨ζ›Έγ‹γ‚ŒγŸγƒœγ‚Ώγƒ³γ‚’γ‚―γƒͺックし、チーム名やそγδ»–γγƒ‘ラパータを設εšγ—て、チームγδ½œζˆγ«ζˆεŠŸγ—γŸγ‚‰γ€ε³δΈŠγη·‘色γδΈΈγδΈ­γ«γ‚γ‚‹γƒ—γƒ©γ‚Ήγƒœγ‚Ώγƒ³γ‚’δ½Ώγ£γ¦δ»–γγƒ—γƒ¬γ‚€γƒ€γƒΌγ‚’ζ‹›εΎ…γ§γγΎγ™γ€‚γ“γ‚Œδ»₯ι™γ€γ‚―γ‚¨γ‚Ήγƒˆγ―εŒζœŸγ•γ‚Œγ€γƒγƒΌγƒ γƒ‘γƒ³γƒγƒΌγ―θͺ°γ§γ‚‚γ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚ι ‘εΌ΅γ£γ¦γγ γ•γ„γ­οΌ", "quests.tfg.capture_territory.title": "ι ˜ζœ‰δΈ»εΌ΅γζ–Ήζ³•", "quests.tfg.capture_territory.subtitle": "γγ‚Œγ¨γƒγƒ£γƒ³γ‚―γƒ­γƒΌγƒ‰γγ—γ‹γŸ", - "quests.tfg.capture_territory.desc": "γƒžγƒ«γƒγƒ—γƒ¬γ‚€γ‚’γ—γ¦γ„γ‚‹γ¨γγ€δ»–γγƒ—レむダーにι‚ͺι­”γ•γ‚Œγͺγ„γ‚ˆγ†γ«θ‡ͺεˆ†γι ˜εœ°γ‚’η’ΊδΏγ—γŸγ„γ¨ζ€γ†γ“γ¨γŒγ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚γγ‚“γͺ時はOpen_Claimγ‚­γƒΌ(γƒ‡γƒ•γ‚©γƒ«γƒˆγ γ¨Ctrl+M)を使ってウィンドウを開き、左クγƒͺックでチャンクを璺保、右クγƒͺγƒƒγ‚―γ§θ§£ζ”Ύγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ γŸγ γ—γ€γ“γ‚Œγ«γ―εˆΆι™γŒγ‚γ‚ŠγΎγ™γ€‚δΈ–η•Œγγ™γΉγ¦γ‚’ι ˜εœ°γ«γ™γ‚‹γ“γ¨γ―できγͺγ„γ§γ™γ‚ˆγ€‚γΎγŸγ€Shift+ε·¦γ‚―γƒͺγƒƒγ‚―γ§γƒγƒ£γƒ³γ‚―γƒ­γƒΌγƒ‰ηŠΆζ…‹γ«γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚Shift+右クγƒͺγƒƒγ‚―γ§θ§£ι™€γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γγ—γ¦γ€γ“γ‚Œγ‚‰γ―εŒγ˜γƒγƒΌγƒ ε†…γ§ε…±ζœ‰γ•γ‚ŒγΎγ™γ€‚", + "quests.tfg.capture_territory.desc": "γƒžγƒ«γƒγƒ—γƒ¬γ‚€γ‚’γ—γ¦γ„γ‚‹γ¨γγ€δ»–γγƒ—レむダーにι‚ͺι­”γ•γ‚Œγͺγ„γ‚ˆγ†γ«θ‡ͺεˆ†γι ˜εœ°γ‚’η’ΊδΏγ—γŸγ„γ¨ζ€γ†γ“γ¨γŒγ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚γγ‚“γͺ時はOpen_Claimγ‚­γƒΌ(γƒ‡γƒ•γ‚©γƒ«γƒˆγ γ¨Ctrl+M)を使ってウィンドウを開き、左クγƒͺックでチャンクを璺保、右クγƒͺγƒƒγ‚―γ§θ§£ζ”Ύγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγŸγ γ—γ€γ“γ‚Œγ«γ―εˆΆι™γŒγ‚γ‚ŠγΎγ™γ€‚δΈ–η•Œγγ™γΉγ¦γ‚’ι ˜εœ°γ«γ™γ‚‹γ“γ¨γ―できγͺγ„γ§γ™γ‚ˆγ€‚γΎγŸγ€Shift+ε·¦γ‚―γƒͺγƒƒγ‚―γ§γƒγƒ£γƒ³γ‚―γƒ­γƒΌγƒ‰ηŠΆζ…‹γ«γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚Shift+右クγƒͺγƒƒγ‚―γ§θ§£ι™€γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γγ—γ¦γ€γ“γ‚Œγ‚‰γ―εŒγ˜γƒγƒΌγƒ ε†…γ§ε…±ζœ‰γ•γ‚ŒγΎγ™γ€‚", + "quests.tfg.chunk_limit.title": "How to increase my chunkload limit?", + "quests.tfg.chunk_limit.desc": "γ‚΅γƒΌγƒγƒΌγ§ιŠγ‚“γ§γ„γ‚‹ε ΄εˆγ€γƒ‡γƒ•γ‚©γƒ«γƒˆγγƒ•ォースロード設εšγ§γγ‚‹γƒγƒ£γƒ³γ‚―数はかγͺγ‚Šε°‘γͺγζŠ‘γˆγ‚‰γ‚Œγ¦γ„γΎγ™γ€‚\n\nァーバーη‘η†θ€…γ§γ‚γ‚Œγ°γ€README.txtに従ってこγδΈŠι™γ‚’ε€‰ζ›΄γ§γγΎγ™γ€‚γΎγŸγ€θ‡ͺεˆ†γ«OPζ¨©ι™γŒγ‚γ‚‹γ€γ‚γ‚‹γ„γ―γƒγƒΌγƒˆγ‚’γ‚ͺγƒ³γ«γ—γ¦γ„γ‚‹ε ΄εˆγ―γ€γ€Œ&a/ftbchunks admin extra_force_load_chunks @p set X&rγ€γ¨γ„γ†γ‚³γƒžγƒ³γƒ‰γ‚’δ½Ώγˆγ°γ€θ‡ͺεˆ†γγƒ•γ‚©γƒΌγ‚Ήγƒ­γƒΌγƒ‰δΈŠι™γ‚’Xγε€€γ«θ¨­εšγ§γγΎγ™γ€‚", "quests.tfg.field_guide.title": "γ‚―γ‚¨γ‚Ήγƒˆγ«ι–’γ™γ‚‹ι‡θ¦γͺ情報!", "quests.tfg.field_guide.subtitle": "もっといろいろηŸ₯γ‚ŠγŸγ„γ§γ™γ‹οΌŸ", - "quests.tfg.field_guide.desc": "γ‚―γ‚¨γ‚Ήγƒˆγ―γΎγ ι–‹η™ΊδΈ­γ§γ€εΈΈγ«ζ”Ήε–„γ«εŠͺめています!特εšγγ‚²γƒΌγƒ ε†…γδ»•ζ§˜γ«ι–’γ™γ‚‹ε€šγγζƒ…ε ±γ―γ€γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγγ€Œζœ¬γ€γ‚Ώγƒ–γ‹γ‚‰γ‚’γ‚―γ‚»γ‚Ήγ§γγ‚‹γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«γ‚‚θ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nγ‚―γ‚¨γ‚Ήγƒˆγ§γ™γΉγ¦γŒθͺ¬ζ˜Žγ•γ‚Œγ‚‹γ‚γ‘γ§γ―γͺいγγ§γ€EMIとフィールドガむドはあγͺたγεΌ·γ„味方にγͺγ‚‹γ“γ¨γ‚’θ¦šγˆγ¦γŠγ„γ¦γγ γ•γ„γ€‚\n\nθΏ½θ¨˜οΌšγ“γζ–‡η« γ―ζ—₯本θͺžγζ™‚γγΏθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚γ‚―γ‚¨γ‚Ήγƒˆγζ–‡η« γŒγŠγ‹γ—γͺγ¨γ“γ‚γ§ζ”Ήθ‘Œγ•γ‚Œγ‚‹γ“γ¨γͺγ©γ§ζ‚©γ‚“γ§γ„γ‚‹ε ΄εˆγ―γ€ŒBetter Line Break」というModγ‚’ε°Žε…₯γ™γ‚‹γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚γ“γModはζ—₯本θͺžγ§γγ‚―γ‚¨γ‚Ήγƒˆγθ‘¨η€Ίγ‚’ζ”Ήε–„γ—γ¦γγ‚ŒγΎγ™", + "quests.tfg.field_guide.desc": "γ‚―γ‚¨γ‚Ήγƒˆγ―γΎγ ι–‹η™ΊδΈ­γ§γ€εΈΈγ«ζ”Ήε–„γ«εŠͺめています!特εšγγ‚²γƒΌγƒ ε†…γδ»•ζ§˜γ«ι–’γ™γ‚‹ε€šγγζƒ…ε ±γ―γ€γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγγ€Œζœ¬γ€γ‚Ώγƒ–γ‹γ‚‰γ‚’γ‚―γ‚»γ‚Ήγ§γγ‚‹γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γ«γ‚‚θ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nγ‚―γ‚¨γ‚Ήγƒˆγ§γ™γΉγ¦γŒθͺ¬ζ˜Žγ•γ‚Œγ‚‹γ‚γ‘γ§γ―γͺいγγ§γ€EMIとフィールドガむドはあγͺたγεΌ·γ„味方にγͺγ‚‹γ“γ¨γ‚’θ¦šγˆγ¦γŠγ„γ¦γγ γ•γ„γ€‚\n\nθΏ½θ¨˜οΌšγ“γζ–‡η« γ―ζ—₯本θͺžγζ™‚γγΏθ‘¨η€Ίγ•γ‚ŒγΎγ™γ€‚γ‚―γ‚¨γ‚Ήγƒˆγζ–‡η« γŒγŠγ‹γ—γͺγ¨γ“γ‚γ§ζ”Ήθ‘Œγ•γ‚Œγ‚‹γ“γ¨γͺγ©γ§ζ‚©γ‚“γ§γ„γ‚‹ε ΄εˆγ―γ€ŒBetter Line Break」というModγ‚’ε°Žε…₯γ™γ‚‹γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚γ“γModはζ—₯本θͺžγ§γγ‚―γ‚¨γ‚Ήγƒˆγθ‘¨η€Ίγ‚’ζ”Ήε–„γ—γ¦γγ‚ŒγΎγ™γ€‚\nγΎγŸγ€γ‚―γ‚¨γ‚Ήγƒˆγ―ζ—₯本θͺžγ§θͺ­γΏγŸγ„γ‘γ‚Œγ©γ€γ‚’むテムは英θͺžγ§ζ€œη΄’γ—γŸγ„γ¨γ„γ†ε ΄εˆγ―γ€ŒUntranslated Items」というModγε°Žε…₯γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚γƒ„γƒΌγƒ«γƒγƒƒγƒ—γ«ζ—₯本θͺžεγ¨θ‹±θͺžεγδΈ‘ζ–ΉγŒθ‘¨η€Ίγ•γ‚Œγ‚‹γ‚ˆγ†γ«γ—γ¦γγ‚ŒγΎγ™γ€‚", "quests.tfg.books_again.title": "ζœ¬γ‚’γͺγγ—γŸζ–ΉγΈ", "quests.tfg.books_again.desc": "γ‚―γ‚¨γ‚Ήγƒˆγƒ–γƒƒγ‚―γ¨γƒ•γ‚£γƒΌγƒ«γƒ‰γ‚¬γ‚€γƒ‰γζœ¬γŒγΎγŸζ¬²γ—γ„γ§γ™γ‹οΌŸγ‚³γƒ”γƒΌγ―こγγ‚―γ‚¨γ‚Ήγƒˆγ§δ½•εΊ¦γ§γ‚‚γ‚‚γ‚‰γˆγ‚‹γγ§ε‰εΏƒγ—てください。", "quests.tfg_tips": "Tips - ァバむバル", - "quests.tfg_tips.subtitle": "あγͺたγη”Ÿζ΄»γ‚’少しζ₯½γ«γ™γ‚‹γŸγ‚γγƒ’γƒ³γƒˆγ¨ε°γƒγ‚Ώι›†γ€‚", + "quests.tfg_tips.subtitle": "η”Ÿγγ‚‹γŸγ‚γ«", "quests.tfg_tips.beginning.title": "γƒ’γƒ³γƒˆγ¨ε°γƒγ‚Ώγ―γ“γ‘γ‚‰οΌ", "quests.tfg_tips.beginning.subtitle": "ε±±γγ‚ˆγ†γͺηŸ₯θ­˜γŒγ“γ“γ«", - "quests.tfg_tips.beginning.desc": "こγγ‚―γ‚¨γ‚Ήγƒˆγη« γ§γ―γ€η”Ÿε­˜γ¨η™Ίε±•γγŸγ‚γγƒ’γƒ³γƒˆγ‚’γŸγγ•γ‚“(&oζœ¬ε½“γ«γŸγγ•γ‚“&r)紹介します。\n\nε„γ‚―γ‚¨γ‚Ήγƒˆγζžεˆ†γ‹γ‚Œγ—γŸε…ˆγ―γ€γγ‚Œγžγ‚Œ&2TerraFirmaGreg&rγδΈ»θ¦γͺModγ‚’θ‘¨γ—γ¦γŠγ‚Šγ€γγ‚Œγ‚‰γ‚’ζœ€ε€§ι™γ«ζ΄»η”¨γ™γ‚‹γŸγ‚γγƒ’γƒ³γƒˆγŒγ‚γ‚ŠγΎγ™γ€‚γ“γ‚Œγ‚‰γγ‚―γ‚¨γ‚Ήγƒˆγ―γ©γ‚Œγ‚‚ι€²θ‘Œγ«εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€γƒ‘γ‚€γƒ³γ‚―γ‚¨γ‚Ήγƒˆγƒ©γ‚€γƒ³γγ‚Ώγ‚Ήγ‚―γ«γ‚ˆγ£γ¦&oγƒ­γƒƒγ‚―γ•γ‚Œγ¦γ„γ‚‹&rε ΄εˆγŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.beginning.desc": "こγγ‚―γ‚¨γ‚Ήγƒˆγη« γ§γ―γ€η”Ÿε­˜γ¨η™Ίε±•γγŸγ‚γγƒ’γƒ³γƒˆγ‚’γŸγγ•γ‚“(&oζœ¬ε½“γ«γŸγγ•γ‚“&r)紹介します。\n\nε„γ‚―γ‚¨γ‚Ήγƒˆγζžεˆ†γ‹γ‚Œγ—γŸε…ˆγ―γ€γγ‚Œγžγ‚Œ&2TerraFirmaGreg&rγδΈ»θ¦γͺModγ‚’θ‘¨γ—γ¦γŠγ‚Šγ€γγ‚Œγ‚‰γ‚’ζœ€ε€§ι™γ«ζ΄»η”¨γ™γ‚‹γŸγ‚γγƒ’γƒ³γƒˆγŒγ‚γ‚ŠγΎγ™γ€‚\nγ“γ‚Œγ‚‰γγ‚―γ‚¨γ‚Ήγƒˆγ―γ©γ‚Œγ‚‚ι€²θ‘Œγ«εΏ…ι ˆγ§γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€γƒ‘γ‚€γƒ³γ‚―γ‚¨γ‚Ήγƒˆγƒ©γ‚€γƒ³γγ‚Ώγ‚Ήγ‚―γ«γ‚ˆγ£γ¦&oγƒ­γƒƒγ‚―γ•γ‚Œγ¦γ„γ‚‹&rε ΄εˆγŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.portable_storage.title": "ζŒγ‘ι‹γ³γ§γγ‚‹γ‚Ήγƒˆγƒ¬γƒΌγ‚ΈγŸγ‘", "quests.tfg_tips.portable_storage.subtitle": "γ‚³γƒ­γ‚°γγƒŸγ‚‚γŠι‡‘γ‚‚εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“οΌ", - "quests.tfg_tips.portable_storage.desc": "ζ—…γδΈ­γ§γ€γ‚γͺγŸγ―γŸγγ•γ‚“γε ΄ζ‰€γ‚’ζŽ’η΄’γ—γ€γŸγγ•γ‚“γγ‚¬γƒ©γ‚―タを拾うことにγͺるでしょう。こγγ‚―γ‚¨γ‚Ήγƒˆγƒ©γ‚€γƒ³γ§γ―γ€ε€–ε‡Ίε…ˆγ§γ‚‚ε€§ι‡γ«γ‚’γ‚€γƒ†γƒ γ‚’ζŒγ‘ι‹γΆγŸγ‚γγ„く぀かγζ–Ήζ³•γ‚’γŠζ•™γˆγ—γΎγ™γ€‚", + "quests.tfg_tips.portable_storage.desc": "ζ—…γδΈ­γ§γ€γ‚γͺγŸγ―γŸγγ•γ‚“γε ΄ζ‰€γ‚’ζŽ’η΄’γ—γ€γŸγγ•γ‚“γγ‚¬γƒ©γ‚―タを拾うことにγͺるでしょう。\nこγγ‚―γ‚¨γ‚Ήγƒˆγƒ©γ‚€γƒ³γ§γ―γ€ε€–ε‡Ίε…ˆγ§γ‚‚ε€§ι‡γ«γ‚’γ‚€γƒ†γƒ γ‚’ζŒγ‘ι‹γΆγŸγ‚γγ„く぀かγζ–Ήζ³•γ‚’γŠζ•™γˆγ—γΎγ™γ€‚", "quests.tfg_tips.toolbelt.title": "γƒ„γƒΌγƒ«γƒ™γƒ«γƒˆγ¨γƒγƒΌγƒ", "quests.tfg_tips.toolbelt.subtitle": "γƒ„γƒΌγƒ«γŒε€šγ™γŽγ‚‹γ¨γγγ‚ΉγƒžγƒΌγƒˆγͺθ§£ζ±Ίη­–", - "quests.tfg_tips.toolbelt.desc": "&dγƒ„γƒΌγƒ«γƒ™γƒ«γƒˆ&rγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆγ‚’η„‘ι§„γ«γ™γ‚‹γ“γ¨γͺく、耇数γγƒ„ールをη‘理できます! こγδΎΏεˆ©γͺをむテムは、&4Curios&rγη‰Ήεˆ₯γͺ&3γƒ„γƒΌγƒ«γƒ™γƒ«γƒˆγ‚Ήγƒ­γƒƒγƒˆ&rにε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&cθ¨­εšγ—γŸγ‚­γƒΌ&rγ‚’ζŠΌγ›γ°γƒ„γƒΌγƒ«γ‚’ε‡Ίγ—ε…₯γ‚Œγ§γγΎγ™γ€‚ζœ€εˆγ―2γ‚Ήγƒ­γƒƒγƒˆγ—γ‹γ‚γ‚ŠγΎγ›γ‚“γŒγ€&aγƒ™γƒ«γƒˆγƒγƒΌγƒ&rγ‚’θΏ½εŠ γ™γ‚‹γ“γ¨γ§ε’—γ‚„γ™γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.toolbelt.desc": "&dγƒ„γƒΌγƒ«γƒ™γƒ«γƒˆ&rγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆγ‚’εœ§θΏ«γ›γšγ«γ€θ€‡ζ•°γγƒ„γƒΌγƒ«γ‚’ζŒγ‘歩けます!\nγƒ„γƒΌγƒ«γƒ™γƒ«γƒˆγ―η‰Ήεˆ₯γͺ&3γƒ„γƒΌγƒ«γƒ™γƒ«γƒˆγ‚Ήγƒ­γƒƒγƒˆ&rγ«θ£…ε‚™γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&cθ¨­εšγ—γŸγ‚­γƒΌ&rγ‚’ζŠΌγ›γ°γƒ„γƒΌγƒ«γ‚’ε‡Ίγ—ε…₯γ‚Œγ§γγΎγ™γ€‚\nζœ€εˆγ―2γ‚Ήγƒ­γƒƒγƒˆγ—γ‹γ‚γ‚ŠγΎγ›γ‚“γŒγ€&aγƒ™γƒ«γƒˆγƒγƒΌγƒ&rγ‚’θΏ½εŠ γ™γ‚‹γ“γ¨γ§ε’—γ‚„γ™γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.maxed_out_toolbelt.title": "εŒε…¨δ½“γƒ„γƒΌγƒ«γƒ™γƒ«γƒˆ", "quests.tfg_tips.maxed_out_toolbelt.subtitle": "腰へγθ² θ·γŒεΏƒι…γ§γ™...", "quests.tfg_tips.maxed_out_toolbelt.desc": "&dγƒ„γƒΌγƒ«γƒ™γƒ«γƒˆ&rγ―ζœ€ε€§7぀γγƒγƒΌγƒθΏ½εŠ γ§γγ€γγηŠΆζ…‹γ γ¨1぀γγƒ™γƒ«γƒˆγ«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.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.toolbox.desc": "&dε·₯ε…·η±&rには8぀γγ‚Ήγƒ­γƒƒγƒˆγŒγ‚γ‚Šγ€γγ‚Œγžγ‚Œγ«4γ‚Ήγ‚Ώγƒƒγ‚―εˆ†γγ‚’むテムをε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nさらに、&cθ¨­εšγ—γŸγ‚­γƒΌ&rγ‚’ζŠΌγ™γ¨γ€ζ•°γƒ–γƒ­γƒƒγ‚―ι›’γ‚ŒγŸε ΄ζ‰€γ‹γ‚‰θ¨­η½γ•γ‚ŒγŸ&dε·₯ε…·η±&rにをクセスできます。\n&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γ―γ€γγ‚Œγžγ‚Œι•·ζ‰€γ¨ηŸ­ζ‰€γ‚’ζŒγ€2぀γεŽη΄γ‚’γ‚€γƒ†γƒ γ§γ™γ€‚γγ‚Œγžγ‚Œγ&dγ‚’γ‚€γƒ†γƒ γ‚Ήγƒ­γƒƒγƒˆ&rγζ•°γ€&dスタックεΉι‡&rγ€γŠγ‚ˆγ³ε„γ‚΅γƒƒγ‚―γζœ€ε€§&dをむテムァむズ&rγ―γ€γγ‚Œγžγ‚Œγγƒ„ールチップに載っています。\n\n&l&3Tips:&r &4&oフィールドガむド&rγ«γ―γ€θ’‹γŸγ‘γη‰Ήεˆ₯γͺζ©Ÿθƒ½γ«ι–’γ™γ‚‹γ€γ‚ˆγ‚Šε…·δ½“ηš„γͺζƒ…ε ±γŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚", + "quests.tfg_tips.first_sacks.desc": "&6ηšι©θ’‹&rと&3ιΊ»θ’‹&rγ―γ€γγ‚Œγžγ‚Œι•·ζ‰€γ¨ηŸ­ζ‰€γ‚’ζŒγ€2぀γεŽη΄γ‚’むテムです。\nγγ‚Œγžγ‚Œγ&dγ‚’γ‚€γƒ†γƒ γ‚Ήγƒ­γƒƒγƒˆ&rγζ•°γ€&dスタックεΉι‡&rγ€γŠγ‚ˆγ³ε„γ‚΅γƒƒγ‚―γζœ€ε€§&dをむテムァむズ&rγ―γ€γγ‚Œγžγ‚Œγγƒ„ールチップに載っています。\n\n&l&3Tips:&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.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γ―γ€γγ‚Œγžγ‚Œζœ€ε€§&c64個&rγγ‚’むテムを&318γ‚Ήγƒ­γƒƒγƒˆ&rεˆ†ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&5γƒ•γƒ¬γƒΌγƒ δ»˜γγƒγƒƒγ‚―γƒ‘γƒƒγ‚―&rγεˆ©η‚Ήγ―、中にε…₯γ‚Œγ‚‹γ‚’γ‚€γƒ†γƒ γγƒ‡γƒ•γ‚©γƒ«γƒˆγγ‚Ήγ‚Ώγƒƒγ‚―γ‚΅γ‚€γ‚Ίγ‚’η„‘θ¦–γ™γ‚‹γ“γ¨γ§γ™γ€‚γ€γΎγ‚Šγ€εˆθ¨ˆγ§ζœ€ε€§&c1152個&rγγ‚’むテムをε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™οΌ", + "quests.tfg_tips.frame_pack.desc": "&5γƒ•γƒ¬γƒΌγƒ δ»˜γγƒγƒƒγ‚―γƒ‘γƒƒγ‚―&rγ―γ€γγ‚Œγžγ‚Œ&c64個&rγγ‚’むテムを&318γ‚Ήγƒ­γƒƒγƒˆ&rεˆ†ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n&5γƒ•γƒ¬γƒΌγƒ δ»˜γγƒγƒƒγ‚―γƒ‘γƒƒγ‚―&rγεˆ©η‚Ήγ―、中にε…₯γ‚Œγ‚‹γ‚’γ‚€γƒ†γƒ γγƒ‡γƒ•γ‚©γƒ«γƒˆγγ‚Ήγ‚Ώγƒƒγ‚―γ‚΅γ‚€γ‚Ίγ‚’η„‘θ¦–γ™γ‚‹γ“γ¨γ§γ™γ€‚γ€γΎγ‚Šγ€γ©γγ‚’むテムでも&c1γ‚Ήγ‚Ώγƒƒγ‚―γŒ64個&rにγͺγ‚ŠγΎγ™οΌ", "quests.tfg_tips.vessels.title": "倧小γε£Ίγ€…", "quests.tfg_tips.vessels.subtitle": "η²˜εœŸγ―ζœ¬ε½“γ«ε½Ήγ«η«‹γ£γ¦γγ‚ŒγΎγ™", - "quests.tfg_tips.vessels.desc": "&dε£Ί&rには4぀γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆγŒγ‚γ‚Šγ€&6倧きい壺&rには9぀γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆγŒγ‚γ‚ŠγΎγ™οΌ &d小さい壺&rはをむテムγδΏη‘だけでγͺγγ€εŸΊζœ¬ηš„γͺι‡‘ε±žγθ£½ιŒ¬γ¨εˆι‡‘εŒ–γ«γ‚‚εΏ…θ¦γ§γ™γ€‚\n&6倧きい壺&rγ―ζŒγ‘ι‹γΆγ«γ―ι‡γŸγ„γ§γ™γŒγ€ι£Ÿε“γδΏε­˜γ«ζœ€ι©γ§γ™γ€‚\n\n&l&3Tips:&r&o ε€§γγ„ε£Ίγ―εˆζœŸγγƒγƒƒγ‚―γƒ‘γƒƒγ‚―γ¨γ—γ¦θƒŒθ² γ£γ¦ζŒγ‘ι‹γΆγ“γ¨γ‚‚γ§γγΎγ™οΌ", + "quests.tfg_tips.vessels.desc": "&dε£Ί&rには4぀γγ‚Ήγƒ­γƒƒγƒˆγŒγ‚γ‚Šγ€&6倧きい壺&rには9぀γγ‚Ήγƒ­γƒƒγƒˆγŒγ‚γ‚ŠγΎγ™οΌ\n&d小さい壺&rはをむテムγδΏη‘だけでγͺγγ€εŸΊζœ¬ηš„γͺι‡‘ε±žγθ£½ιŒ¬γ¨εˆι‡‘εŒ–γ«γ‚‚δ½ΏγˆγΎγ™γ€‚\n&6倧きい壺&rγ―ζŒγ‘ι‹γΆγ«γ―ι‡γŸγ„γ§γ™γŒγ€ι£Ÿε“γδΏε­˜γ«ζœ€ι©γ§γ™γ€‚\n\n&l&3Tips:&r&oε€§γγ„ε£Ίγ―εˆζœŸγγƒγƒƒγ‚―γƒ‘γƒƒγ‚―γ¨γ—γ¦θƒŒθ² γ£γ¦ζŒγ‘ι‹γΆγ“γ¨γ‚‚γ§γγΎγ™οΌ", "quests.tfg_tips.portable_cells.title": "γƒγƒΌγ‚Ώγƒ–γƒ«γ‚’γ‚€γƒ†γƒ γŠγ‚ˆγ³ζΆ²δ½“γ‚»γƒ«", "quests.tfg_tips.portable_cells.subtitle": "γ“γ‚Œγ―γΎγŸγšγ„γΆγ‚“γ¨ι«˜εΊ¦γͺγ‚‚γγ‚’...", - "quests.tfg_tips.portable_cells.desc": "&dApplied Energistics 2&rγŒθ§£ζ”Ύγ•γ‚Œγ‚Œγ°γ€ε€§ι‡γγ‚’γ‚€γƒ†γƒ γ‚„ζΆ²δ½“γ‚’γƒ‡γƒΌγ‚Ώγ¨γ—γ¦δΏε­˜γ§γγ‚‹&aポータブルをむテム&rγŠγ‚ˆγ³&b梲体セル&rγ‚’δ½œζˆγ§γγΎγ™γ€‚ζ‹εΏ΅γͺγŒγ‚‰γ€&dApplied Energistics 2&rは&6HV時代&rγεΎŒεŠγΎγ§δ½Ώγˆγͺγ„γŸγ‚γ€γ“γ‚Œγ‚‰γŒεˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚‹γγ―γ‚‚γ†γ‘γ‚‡γ£γ¨εΎŒγ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ­γ€‚", + "quests.tfg_tips.portable_cells.desc": "&dApplied_Energistics_2&rγŒθ§£ζ”Ύγ•γ‚Œγ‚Œγ°γ€ε€§ι‡γγ‚’γ‚€γƒ†γƒ γ‚„ζΆ²δ½“γ‚’γƒ‡γƒΌγ‚Ώγ¨γ—γ¦ζŒγ‘ι‹γΉγ‚‹&aポータブルをむテム&rγŠγ‚ˆγ³&b梲体セル&rγ‚’δ½œζˆγ§γγΎγ™γ€‚ζ‹εΏ΅γͺγŒγ‚‰γ€&dAE2&rは&6HV時代&rγεΎŒεŠγΎγ§δ½Ώγˆγͺγ„γŸγ‚γ€γ“γ‚Œγ‚‰γŒεˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚‹γγ―γ‚‚γ†γ‘γ‚‡γ£γ¨εΎŒγ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ­γ€‚", "quests.tfg_tips.256m_portable_cells.title": "MEGAγƒγƒΌγ‚Ώγƒ–γƒ«γ‚’γ‚€γƒ†γƒ γŠγ‚ˆγ³ζΆ²δ½“γ‚»γƒ«", "quests.tfg_tips.256m_portable_cells.subtitle": "γƒ‘γ‚¬γƒˆγƒ³η΄šγε€§εΉι‡", - "quests.tfg_tips.256m_portable_cells.desc": "&dMEGA Cells&rを使用すると、&lι€”ζ–Ήγ‚‚γͺい倧εΉι‡γ&rγƒ‡γƒΌγ‚Ώγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚’ε‚™γˆγŸγ‚»γƒ«γ‚’δ½œζˆγ§γγΎγ™οΌ\n\n&l&3豆ηŸ₯識:&r&o ε˜δΈ€γ256MγƒγƒΌγ‚Ώγƒ–γƒ«γ‚’γ‚€γƒ†γƒ γ‚»γƒ«γ―γ€ζœ€ε€§10億個γγ‚’γ‚€γƒ†γƒ γ‚’δΏε­˜γ§γγΎγ™οΌγ“γ‚Œγ―γ€58,000個δ»₯上γγƒγ‚§γ‚ΉγƒˆγŒεŸ‹γΎγ‚‹γ»γ©γι‡γ§γ™οΌ", + "quests.tfg_tips.256m_portable_cells.desc": "&dMEGA_Cells&rを使用すると、&lι€”ζ–Ήγ‚‚γͺい倧εΉι‡γ&rγƒ‡γƒΌγ‚Ώγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ‚’ε‚™γˆγŸγ‚»γƒ«γ‚’δ½œζˆγ§γγΎγ™οΌ\n\n&l&3豆ηŸ₯識:&r&oε˜δΈ€γ256MγƒγƒΌγ‚Ώγƒ–γƒ«γ‚’γ‚€γƒ†γƒ γ‚»γƒ«γ―γ€ζœ€ε€§10億個γγ‚’γ‚€γƒ†γƒ γ‚’δΏε­˜γ§γγΎγ™οΌγ“γ‚Œγ―γ€58,000個δ»₯上γγƒγ‚§γ‚ΉγƒˆγŒεŸ‹γΎγ‚‹γ»γ©γι‡γ§γ™οΌ", "quests.tfg_tips.backpack_materials.title": "バックパックγζζ–™", "quests.tfg_tips.backpack_materials.subtitle": "ε―θ’‹γ―γƒ¬γ‚·γƒ”γ«ε«γΎγ‚Œγ¦γͺいです", - "quests.tfg_tips.backpack_materials.desc": "バックパックには2぀γιΈζŠžθ‚’γŒγ‚γ‚ŠγΎγ™γ€‚&5γƒ•γƒ¬γƒΌγƒ δ»˜γγƒγƒƒγ‚―γƒ‘γƒƒγ‚―&rまたは&3γƒͺγƒ₯ック&rです。\n\n&5γƒ•γƒ¬γƒΌγƒ δ»˜γγƒγƒƒγ‚―γƒ‘γƒƒγ‚―&rγ―γ€ε„γ‚Ήγƒ­γƒƒγƒˆγ«ζœ€ε€§&c64&rをむテムを&o標準γγ‚Ήγ‚Ώγƒƒγ‚―ァむズに閒係γͺく&rεŽη΄γ§γγ‚‹ι«˜ε―†εΊ¦γͺバックパックです。\n\n&3γƒͺγƒ₯ック&rγ―γ€δ»ŠεΎŒγγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺεΉι‡γ‚’ζ‹‘εΌ΅γ™γ‚‹γŸγ‚γδΈ»θ¦γͺζ–Ήζ³•γ§γ™γ€‚ζœ€εˆγγƒ†γ‚£γ‚’γζ™‚η‚Ήγ§ι€šεΈΈγγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚’2倍δ»₯δΈŠγ«γ—γ€δΈŠδ½γγ‚’δ½œγ‚Œγ°γ•γ‚‰γ«ζ‹‘弡していきます! さらに、さまざまγͺ&aをップグレード&rγ‚’δ»˜γ‘γ‚‹γ“γ¨γ‚„γ€ε₯½γγͺγ‚ˆγ†γ«ζŸ“θ‰²γ™γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ", + "quests.tfg_tips.backpack_materials.desc": "バックパックには2぀γιΈζŠžθ‚’γŒγ‚γ‚ŠγΎγ™γ€‚&5γƒ•γƒ¬γƒΌγƒ δ»˜γγƒγƒƒγ‚―γƒ‘γƒƒγ‚―&rまたは&3γƒͺγƒ₯ック&rです。\n\n&5γƒ•γƒ¬γƒΌγƒ δ»˜γγƒγƒƒγ‚―γƒ‘γƒƒγ‚―&rγ―γ€ε„γ‚Ήγƒ­γƒƒγƒˆγ«&c64個&rをむテムを&o標準γγ‚Ήγ‚Ώγƒƒγ‚―ァむズに閒係γͺく&rεŽη΄γ§γγ‚‹ι«˜ε―†εΊ¦γͺバックパックです。\n\n&3γƒͺγƒ₯ック&rγ―γ€ζ§˜γ€…γͺ場所で主桁γͺγƒγƒƒγ‚―γƒ‘γƒƒγ‚―γ§γ™γ€‚ζœ€εˆγ«δ½œγ‚‹γ‚‚γγ§γ‚‚36γ‚Ήγƒ­γƒƒγƒˆεˆ†γεΉι‡γŒγ‚γ‚Šγ€δΈŠδ½γγ‚‚γγ―さらに拑弡していきます!\nさらに、さまざまγͺ&aをップグレード&rγ‚’δ»˜γ‘γ‚‹γ“γ¨γ‚„γ€ε₯½γγͺγ‚ˆγ†γ«ζŸ“θ‰²γ™γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ", "quests.tfg_tips.first_backpack.title": "ζœ€εˆγγƒγƒƒγ‚―パック", "quests.tfg_tips.first_backpack.subtitle": "γƒŠγ‚€γƒ•γ€γƒ©γƒ³γƒ—γ‹γ°γ‚“γ«γ€γ‚γ“γ‚“γ§", - "quests.tfg_tips.first_backpack.desc": "γ“γ‚Œγ―ζœ€εˆγ&3γƒͺγƒ₯ック&rγ§γ™γ€‚εˆθ¨ˆ&c36&rγγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆγŒγ‚γ‚Šγ€&a1぀γγ‚’ップグレード&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺとバックパックγγ‚’ップグレードに぀いて学ぢには、こγε…ˆγ2ζ–Ήε‘γ«ζžεˆ†γ‹γ‚Œγ—γŸγ‚―γ‚¨γ‚Ήγƒˆγƒ©γ‚€γƒ³γ‚’η’Ίθͺγ—てください。", + "quests.tfg_tips.first_backpack.desc": "γ“γ‚Œγ―ζœ€εˆγ&3γƒͺγƒ₯ック&rγ§γ™γ€‚εˆθ¨ˆ&c36&rγγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆγŒγ‚γ‚Šγ€&a1぀γγ‚’ップグレード&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺとバックパックγγ‚’ップグレードに぀いて学ぢには、こγε…ˆγ2ζ–Ήε‘γ«ζžεˆ†γ‹γ‚Œγ—γŸγ‚―γ‚¨γ‚Ήγƒˆγƒ©γ‚€γƒ³γ‚’η’Ίθͺγ—てください。", "quests.tfg_tips.red_steel_backpack.title": "レッドスチール製γƒͺγƒ₯ック", "quests.tfg_tips.red_steel_backpack.subtitle": "γƒ–γƒ«γƒΌγ‚ΉγƒγƒΌγƒ«γ§δ½œγ‚‹γ‚ˆγ‚ŠζΆΌγ—γ’γ γ­", - "quests.tfg_tips.red_steel_backpack.desc": "&4レッドスチール製γƒͺγƒ₯ック&rは、γƒͺγƒ₯ックγδΈ­γ§4η•ͺη›γ«εΉι‡γŒε€§γγ„γƒ’γƒ‡γƒ«γ§γ™γ€‚εˆθ¨ˆγ‚Ήγƒ­γƒƒγƒˆζ•°γ―&c54&rで、&a2぀γγ‚’ップグレード&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.red_steel_backpack.desc": "&4レッドスチール製γƒͺγƒ₯ック&rは、γƒͺγƒ₯ックγδΈ­γ§4η•ͺη›γ«εΉι‡γŒε€§γγ„γƒ’デルです。\nεˆθ¨ˆγ‚Ήγƒ­γƒƒγƒˆζ•°γ―&c54&rで、&a2぀γγ‚’ップグレード&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.aluminium_backpack.title": "γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½γƒͺγƒ₯ック", "quests.tfg_tips.aluminium_backpack.subtitle": "γ‚’γƒ«γƒΌγƒŸγƒŠγƒ γ£γ¦θ¨€γ£γŸζ–ΉγŒγ‚ˆγ‹γ£γŸοΌŸ", - "quests.tfg_tips.aluminium_backpack.desc": "&bγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½γƒͺγƒ₯ック&rは、γƒͺγƒ₯ックγδΈ­γ§3η•ͺη›γ«εΉι‡γŒε€§γγ„γƒ’γƒ‡γƒ«γ§γ™γ€‚εˆθ¨ˆγ‚Ήγƒ­γƒƒγƒˆζ•°γ―&c81&rで、&a3぀γγ‚’ップグレード&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.aluminium_backpack.desc": "&bγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½γƒͺγƒ₯ック&rは、γƒͺγƒ₯ックγδΈ­γ§3η•ͺη›γ«εΉι‡γŒε€§γγ„γƒ’デルです。\nεˆθ¨ˆγ‚Ήγƒ­γƒƒγƒˆζ•°γ―&c81&rで、&a3぀γγ‚’ップグレード&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.titanium_backpack.title": "チタニウム製γγƒͺγƒ₯ック", "quests.tfg_tips.titanium_backpack.subtitle": "タむタニック号γγ‚ˆγ†γͺε‰εΏƒζ„Ÿ", - "quests.tfg_tips.titanium_backpack.desc": "&5チタニウム製γγƒͺγƒ₯ック&rは、γƒͺγƒ₯ックγδΈ­γ§2η•ͺη›γ«εΉι‡γŒε€§γγ„γƒ’γƒ‡γƒ«γ§γ™γ€‚εˆθ¨ˆγ‚Ήγƒ­γƒƒγƒˆζ•°γ―&c108&rで、&a5぀γγ‚’ップグレード&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.titanium_backpack.desc": "&5チタニウム製γγƒͺγƒ₯ック&rは、γƒͺγƒ₯ックγδΈ­γ§2η•ͺη›γ«εΉι‡γŒε€§γγ„γƒ’デルです。\nεˆθ¨ˆγ‚Ήγƒ­γƒƒγƒˆζ•°γ―&c108&rで、&a5぀γγ‚’ップグレード&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.tungstensteel_backpack.title": "タングステンスチール製γƒͺγƒ₯ック", "quests.tfg_tips.tungstensteel_backpack.subtitle": "ε››ζ¬‘ε…ƒγƒγ‚±γƒƒγƒˆγε»‰δΎ‘η‰ˆ", - "quests.tfg_tips.tungstensteel_backpack.desc": "&9タングステンスチール製γƒͺγƒ₯ック&rは、γƒͺγƒ₯ックγζœ€δΈŠδ½γƒ’デルです。&c120&rγ¨γ„γ†ι©šη•°ηš„γͺγ‚Ήγƒ­γƒƒγƒˆζ•°γ‚’ζŒγ£γ¦γŠγ‚Šγ€&a7぀γγ‚’ップグレード&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™οΌ", + "quests.tfg_tips.tungstensteel_backpack.desc": "&9タングステンスチール製γƒͺγƒ₯ック&rは、γƒͺγƒ₯ックγζœ€δΈŠδ½γƒ’デルです。\n&c120&rγ¨γ„γ†ι©šη•°ηš„γͺγ‚Ήγƒ­γƒƒγƒˆζ•°γ‚’ζŒγ£γ¦γŠγ‚Šγ€&a7぀γγ‚’ップグレード&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γŒγ§γγΎγ™οΌ", "quests.tfg_tips.backpack_upgrades.title": "γƒͺγƒ₯ックγγ‚’ップグレード", "quests.tfg_tips.backpack_upgrades.subtitle": "γƒͺγƒ₯ックγι€²εŒ–γ‚’むテム", - "quests.tfg_tips.backpack_upgrades.desc": "&aγƒͺγƒ₯ックγγ‚’ップグレード&rは、&3γƒͺγƒ₯ック&rに導ε…₯γ—γ¦γ€ζ–°γ—γ„θƒ½εŠ›γ¨ζ©Ÿθƒ½γ‚’δΈŽγˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγƒͺγƒ₯ックγεΌ·εŒ–η΄ ζγ‚’δ½œζˆγ™γ‚‹γ«γ―、&bスチール&rγŒδ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.backpack_upgrades.desc": "&aγƒͺγƒ₯ックγγ‚’ップグレード&rは、&3γƒͺγƒ₯ック&rに導ε…₯γ—γ¦γ€ζ–°γ—γ„θƒ½εŠ›γ¨ζ©Ÿθƒ½γ‚’δΈŽγˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nγƒͺγƒ₯ックγεΌ·εŒ–η΄ ζγ‚’δ½œζˆγ™γ‚‹γ«γ―、&bスチール&rγŒεΏ…θ¦γ§γ™γ€‚", "quests.tfg_tips.crafting_upgrade.title": "作ζ₯­ε°γ‚’ップグレード", "quests.tfg_tips.crafting_upgrade.subtitle": "ε‡Ίε…ˆγ§γδ½œζ₯­γ«δΎΏεˆ©", "quests.tfg_tips.crafting_upgrade.desc": "&a作ζ₯­ε°ζ©Ÿθƒ½&rを使用すると、どこにいてもγƒͺγƒ₯ックγδΈ­γ§&3作ζ₯­ε°&rγ‚’δ½Ώγ†γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγͺγ—γ§γ©γ†γ‚„γ£γ¦η”Ÿγγ¦γγŸγγ‹δΈζ€θ­°γ«ζ€γ†γ§γ—ょう!", @@ -3797,43 +4053,84 @@ "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 backpack&rにあるすべてγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ§γ™γ€‚ε…¨ιƒ¨δ½œγ‚ŒγΎγ™γ‹οΌŸ", + "quests.tfg_tips.all_backpack_upgrades.desc": "γ“γ‚Œγ‚‰γ―γ€&3Sophisticated_backpack&rにあるすべてγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ§γ™γ€‚ε…¨ιƒ¨δ½œγ‚ŒγΎγ™γ‹οΌŸ", "quests.tfg_tips.gt.title": "GregTech", "quests.tfg_tips.gt.subtitle": "こγModPackγεε‰γ3εˆ†γ1", "quests.tfg_tips.gt.desc": "&3GregTech&rはかγͺγ‚Šι›£θ§£γ§γ™γ€‚γ“γγ‚―γ‚¨γ‚Ήγƒˆγƒ©γ‚€γƒ³γ―γ‚γͺたγη†θ§£γεŠ©γ‘γ«γͺるでしょう。", + "quests.tfg_tips.gt_power_tools.title": "電動ツール", + "quests.tfg_tips.gt_power_tools.subtitle": "η”·γε­γ£γ¦γ“ういうγγŒε₯½γγͺんでしょ", + "quests.tfg_tips.gt_power_tools.desc.1": "倚くγε·₯ζ₯­Modγ¨εŒγ˜γ‚ˆγ†γ«γ€&5GregTech&rにもさまざまγͺη¨ι‘žγδΎΏεˆ©γͺ&6ツール&rγŒη™»ε ΄γ—γΎγ™γ€‚γγ‚Œγ‚‰γ‚’δ½Ώγ†γ«γ―γ€γΎγš&a充電する&rεΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ε……ι›»γ‚’γ™γ‚‹ζ–Ήζ³•γ¨γ—γ¦γ€θ“„ι›»ε™¨γ«ε…₯γ‚Œγ‚‹γ€ζ©Ÿζ’°γγ‚¨γƒγƒ«γ‚γƒΌγ‚Ήγƒ­γƒƒγƒˆγ«ε·γ—θΎΌγ‚€γͺγ©γ§γ‚‚γ„γ„γ§γ™γŒγ€&eι«˜ι€Ÿε……ι›»ε™¨&rというツールγε……ι›»γ«η‰ΉεŒ–γ—γŸθ£…η½γ‚‚ε­˜εœ¨γ—γΎγ™γ€‚\n\nγŸγ γ—ζ³¨ζ„η‚Ήγ¨γ—γ¦γ€γƒ„γƒΌγƒ«γ‚’ε……ι›»γ§γγ‚‹γγ―&7εŒη­‰&rか&aγγ‚Œδ»₯上γγƒ†γ‚£γ‚’&rγι›»εœ§γ γ‘γ§γ™γ€‚γ€γΎγ‚Šγ€&cδ½Žγ„ι›»εœ§&rγ§γ―ι«˜γ„ι›»εœ§γγƒ„γƒΌγƒ«γ‚’ε……ι›»γ§γγΎγ›γ‚“β”€β”€γ‚γ‚ε€§δΈˆε€«γ§γ™γ‚ˆγ€ι–“ι•γˆγ¦γ‚‚&cηˆ†η™Ίγ—γŸγ‚Šγ―γ—γͺγ„γ―γš&rγ§γ™γ‹γ‚‰γ€‚γˆγˆγ€‚", + "quests.tfg_tips.gt_power_tools.desc.2": "ほとんどγ&5GregTech&r製ツールは&6γƒ‘γƒ―γƒΌγƒ¦γƒ‹γƒƒγƒˆ&rと&6γƒ„γƒΌγƒ«γƒ˜γƒƒγƒ‰&rγŒη΄ ζγ¨γ—γ¦θ¦ζ±‚γ•γ‚ŒγΎγ™γ€‚γ©γ‚“γͺη¨ι‘žγγƒ„γƒΌγƒ«γŒδ½œγ‚Œγ‚‹γγ‹γ―、&aEMI&rで一覧をθͺΏγΉγ‚‹γ¨εˆ†γ‹γ‚Šγ‚„γ™γ„γ§γ™γ€‚γŸγ γ—γ€ζ¬‘γ2぀γγƒγ‚€γƒ³γƒˆγ γ‘γ―θ¦ζ³¨ζ„γ§γ™οΌš\n\n-γƒ‘γƒ―γƒΌγƒ¦γƒ‹γƒƒγƒˆγγƒ†γ‚£γ‚’γŒι«˜γ„γ»γ©γ€γƒ„γƒΌγƒ«θ‡ͺ体γ&cζ€§θƒ½γŒδΈŠγŒγ‚Š&r、そγεˆ†γ γ‘必要とする&6バッテγƒͺγƒΌεΉι‡&rも倧きくγͺγ‚ŠγΎγ™γ€‚\n-全てγγƒ„γƒΌγƒ«γŒε…¨γ¦γγƒ†γ‚£γ‚’γ«ε―ΎεΏœγ—γ¦γ„γ‚‹γ‚γ‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚γŸγ¨γˆγ°&6チェーンソー&rは&7LVγƒ‘γƒ―γƒΌγƒ¦γƒ‹γƒƒγƒˆ&rγ§γ—γ‹δ½œγ‚ŒγΎγ›γ‚“γ€‚.", "quests.tfg_tips.nano_saber.title": "γƒŠγƒŽγ‚»γ‚€γƒγƒΌ", "quests.tfg_tips.nano_saber.subtitle": "ιΎγŒζˆ‘γŒθΊ«γ«εΏγ‚‹", - "quests.tfg_tips.nano_saber.desc": "&6γƒŠγƒŽγ‚»γ‚€γƒγƒΌ&rは、&5EV&rγ«εˆ°ι”γ™γ‚‹γ¨θ§£η¦γ•γ‚Œγ‚‹εΌ·εŠ›γͺ武器です。&dShift + 右クγƒͺック&rで、&cbzzzzzヒード&rγ‚’γ‚’γ‚―γƒ†γ‚£γƒ–γ«γ—γ€ηœŸγεŠ›γ‚’θ§£γζ”Ύγ‘ましょう。", - "quests.tfg_tips.gt_tools.title": "GregTechツール", - "quests.tfg_tips.gt_tools.subtitle": "", - "quests.tfg_tips.gt_tools.desc": "ほとんどγ&5GregTech&rツールは、&6γƒ‘γƒ―γƒΌγƒ¦γƒ‹γƒƒγƒˆ&rγ‹γ‚‰δ½œζˆγ•γ‚ŒγΎγ™γ€‚&aEMI&rγ‚’δ½Ώη”¨γ—γ¦γ€γγ‚Œγ‚‰γ‹γ‚‰δ½•γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγ‚‹γγ‹γ‚’ζŽ’γ£γ¦γΏγ¦γγ γ•γ„γ€‚γŸγ γ—γ€2぀γι‡θ¦γͺγ“γ¨γ‚’θ¦šγˆγ¦γŠγ„γ¦γγ γ•γ„γ€‚\n\n- &eγƒ‘γƒ―γƒΌγƒ¦γƒ‹γƒƒγƒˆγγƒ†γ‚£γ‚’γŒι«˜γ„γ»γ©&rγ€γƒ„γƒΌγƒ«γ―γ‚ˆγ‚Š&cεΌ·εŠ›&rにγͺγ‚Šγ€δ½Ώη”¨γ™γ‚‹γƒγƒƒγƒ†γƒͺγƒΌγ‚‚&6上位γγ‚‚γ&rにγͺγ‚ŠγΎγ™γ€‚\n- すべてγγƒ„γƒΌγƒ«γŒγ™γΉγ¦γγƒ†γ‚£γ‚’γƒΌγγƒ‘γƒ―γƒΌγƒ¦γƒ‹γƒƒγƒˆγ‹γ‚‰δ½œγ‚Œγ‚‹γ‚γ‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚γŸγ¨γˆγ°γ€&6チェーンソー&rは&7LVγƒ‘γƒ―γƒΌγƒ¦γƒ‹γƒƒγƒˆ&rでγγΏδ½œζˆγ§γγΎγ™γ€‚", + "quests.tfg_tips.nano_saber.desc": "&6γƒŠγƒŽγ‚»γ‚€γƒγƒΌ&rは、&5EV&rγ«εˆ°ι”γ™γ‚‹γ¨θ§£η¦γ•γ‚Œγ‚‹εΌ·εŠ›γͺ武器です。\n&dShift+右クγƒͺック&rで、&cbzzzzzヒード&rγ‚’γ‚’γ‚―γƒ†γ‚£γƒ–γ«γ—γ€ηœŸγεŠ›γ‚’θ§£γζ”Ύγ‘ましょう。", "quests.tfg_tips.magnets.title": "γ‚’γ‚€γƒ†γƒ γƒžγ‚°γƒγƒƒγƒˆ", - "quests.tfg_tips.magnets.subtitle": "", - "quests.tfg_tips.magnets.desc": "&6γ‚’γ‚€γƒ†γƒ γƒžγ‚°γƒγƒƒγƒˆ&rγ―ζƒ³εƒι€šγ‚Šγ€θΏ‘γγ&6をむテム&rをあγͺたγγ‚‚とに直ζŽ₯εΌ•γε―„γ›γ‚‹γƒžγ‚°γƒγƒƒγƒˆγ§γ™γ€‚&aζœ¬ε½“γ«δΎΏεˆ©γ &rγ€‚δ»–γ«δ½•γ‚’ζ±‚γ‚γ‚‹οΌŸ", + "quests.tfg_tips.magnets.subtitle": "Simplest Magnet", + "quests.tfg_tips.magnets.desc": "&6γ‚’γ‚€γƒ†γƒ γƒžγ‚°γƒγƒƒγƒˆ&rγ―γ€ζƒ³εƒι€šγ‚Šγ€θΏ‘γγ&6をむテム&rをあγͺたγγ‚‚とに直ζŽ₯εΌ•γε―„γ›γ‚‹γƒžγ‚°γƒγƒƒγƒˆγ§γ™γ€‚&aζœ¬ε½“γ«δΎΏεˆ©γ§γ™&rγ€‚γ“γ‚Œδ»₯上γγ‚‚γγŒεΏ…θ¦γ‚γ‚ŠγΎγ™γ‹οΌŸ", + "quests.tfg_tips.long_distance_items.title": "長距雒をむテムパむプ", + "quests.tfg_tips.long_distance_items.subtitle": "おζ€₯ぎ便", + "quests.tfg_tips.long_distance_items.desc": "&3長距雒をむテムパむプ&rは、そγεγι€šγ‚Šι•·θ·ι›’γγ‚’γ‚€γƒ†γƒ γ‚’θΌΈι€γ«δ½Ώγˆγ‚‹ε°‚η”¨γγƒ‘γ‚€γƒ—γ§γ™γ€‚δ½Ώγ„ζ–Ήγ―η°‘ε˜γ§γ€ι€γ‚Šε…ƒγ¨ι€γ‚Šε…ˆγ«ζŽ₯ηΆšε£γ‚’η½γγ€γγι–“をパむプラむンブロックで぀γͺぐだけです。\n\nε…₯εŠ›γ•γ‚ŒγŸγ‚’γ‚€γƒ†γƒ γ―ε³εΊ§γ«εε―Ύε΄γΈθ»’ι€γ•γ‚Œγ‚‹γŸγ‚γ€ι«˜ι€Ÿγ§θΌΈι€γ§γγΎγ™γ€‚\n\nγŸγ γ—γ€ζŽ₯ηΆšε£εŒε£«γ«γ―δΈ€εšδ»₯上γθ·ι›’γŒεΏ…θ¦γͺγγ§γ€θΏ‘距雒γθΌΈι€γ«γ―向きません。", + "quests.tfg_tips.long_distance_fluids.title": "長距雒梲体パむプ", + "quests.tfg_tips.long_distance_fluids.subtitle": "ウーバードγƒͺンク", + "quests.tfg_tips.long_distance_fluids.desc": "&3長距雒梲体パむプ&r γ―γ€ζΆ²δ½“γ‚’ι γγΎγ§δΈ€ηž¬γ§ι€γ‚Šε±Šγ‘γ‚‰γ‚Œγ‚‹δΎΏεˆ©γͺι•·θ·ι›’η”¨γƒ‘γ‚€γƒ—γ§γ™γ€‚ι€γ‚Šε…ƒγ¨ι€γ‚Šε…ˆγ«ζŽ₯ηΆšε£γ‚’η½γγ€γγι–“をパむプラむンブロックで぀γͺγ’γ°δ½ΏγˆγΎγ™γ€‚\n\n梲体はε…₯εŠ›ε΄γ‹γ‚‰ε‡ΊεŠ›ε΄γΈε³εΊ§γ«η§»ε‹•γ™γ‚‹γŸγ‚γ€ι«˜ι€Ÿγ§γθΌΈι€γŒε―能です。\n\nγŸγ γ—γ€ζŽ₯ηΆšε£εŒε£«γ«γ―δΈ€εšδ»₯上γθ·ι›’γŒεΏ…θ¦γ§γ€θΏ‘θ·ι›’γζ¬ι€γ«γ―δ½ΏγˆγΎγ›γ‚“γ€‚\n\nγΎγŸγ€θ¨­η½ζ™‚に&4δΈε…·εˆγŒθ΅·γγ‚„γ™γ„&rγ¨θ¨€γ‚γ‚Œγ¦γ„γΎγ™γ€‚γ‚‚γ—ζœ€εˆγ«ε‹•γ‹γͺγ‹γ£γŸε ΄εˆγ«γ―γ€&eレンチ&rでζŽ₯碚口γε‘γγ‚’ε€‰γˆγ¦γΏγ‚‹γ¨θ§£ζ±Ίγ™γ‚‹γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.crates.title": "GregTechγγ‚Ήγƒˆγƒ¬γƒΌγ‚Έ", + "quests.tfg_tips.crates.subtitle": "序盀γγƒγƒƒγƒ•γ‚‘", + "quests.tfg_tips.crates.desc": "γ‚―γƒ¬γƒΌγƒˆγ―γƒγ‚§γ‚ΉγƒˆγδΈŠδ½δΊ’ζ›γ¨θ¨€γˆγΎγ™γ€‚1ブロックγγ‚ΉγƒšγƒΌγ‚Ήγ§γ€ε€šγγγ‚’γ‚€γƒ†γƒ γ‚’εŽη΄γ§γγ‚‹γγ§γ™γ‹γ‚‰γ€γ“γ‚Œδ»₯上γγ‚‚γγ―εΏ…θ¦γ‚γ‚ŠγΎγ›γ‚“γ­οΌ\n\nι€šεΈΈγγƒγ‚§γ‚Ήγƒˆγ‚ˆγ‚Šη΄ ζγ‚³γ‚Ήγƒˆγ―ι«˜γγ€Createγδ»•ζŽ›γ‘γ«η΅„γΏθΎΌγ‚€γ“γ¨γ―γ§γγΎγ›γ‚“γŒγ€γ‚’γ‚€γƒ†γƒ γγ‚΅γ‚€γ‚Ίγ«ι–’δΏ‚γͺγεŽη΄γ§γγ€γ•γ‚‰γ«GregTechγ&6カバー&rγ‚’ε–γ‚Šδ»˜γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γγγŸγ‚γ€θ‡ͺε‹•εŒ–ε·₯η¨‹γ«γŠγ‘γ‚‹γƒγƒƒγƒ•γ‚‘γ¨γ—γ¦ζœ€ι©γͺιΈζŠžθ‚’γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.tape.title": "γ‚―γƒ¬γƒΌγƒˆη”¨γƒ†γƒΌγƒ—", + "quests.tfg_tips.tape.subtitle": "Carry on", + "quests.tfg_tips.tape.desc": "γ‚―γƒ¬γƒΌγƒˆγ«γƒ†γƒΌγƒ—γ‚’ε³γ‚―γƒͺγƒƒγ‚―γ§θ²Όγ‚Šδ»˜γ‘γ‚‹γ¨γ€ε£Šγ—γ¦γ‚‚δΈ­θΊ«γŒγγγΎγΎηΆ­ζŒγ•γ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚Šγ€η°‘ε˜γ«ζŒγ‘ι‹γΉγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γŸγ γ—γ€γƒ†γƒΌγƒ—γ―δ½Ώγ„ζ¨γ¦γ§γ™γ€‚\nテープθ‡ͺδ½“γ―η°‘ε˜γ«γ€γγ‚Œγ‚‹γγ§ε•ι‘Œγ―γͺいでしょう!", + "quests.tfg_tips.terminal.subtitle": "θ‡ͺε‹•γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―η΅„γΏη«‹γ¦ζ©Ÿ", + "quests.tfg_tips.terminal.desc": "&bγ‚ΏγƒΌγƒŸγƒŠγƒ«&rは間違いγͺγε½Ήγ«η«‹γ£γ¦γγ‚Œγ‚‹γŸγ‚γ€&aδ½œζˆγ™γ‚‹γ“γ¨γ‚’εΌ·γγŠγ™γ™γ‚γ„γŸγ—γΎγ™&r。\n\n&eγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―&rを硄み立てるγγŒγ€ε°‘し&c青倒に思う&rこともあると思います。そんγͺγ¨γγ―γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γζ§‹ζˆζζ–™γ‚’ζ‰€ζŒγ—γŸηŠΆζ…‹γ§γ€γ‚ΏγƒΌγƒŸγƒŠγƒ«γ‚’ζ‰‹γ«ζŒγ‘、&6γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γ‚³γƒ³γƒˆγƒ­γƒΌγƒ©γƒΌ&rγ‚’&dShift+右クγƒͺック&rするだけで、&a構造全体をθ‡ͺε‹•γ§η΅„γΏδΈŠγ’γ¦γγ‚ŒγΎγ™&r!\n\n&eバスやハッチを配η½γ—直す&rεΏ…θ¦γ―γ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€γ¨γ―γ„γˆγ“γζ©Ÿθƒ½γ‚’ζ΄»η”¨γ™γ‚Œγ°&aかγͺγ‚Šγζ™‚間と手間を節約&rできます。", + "quests.tfg_tips.memory_card.subtitle": "γ‚³γƒ”γƒΌοΌ†γƒšγƒΌγ‚Ήγƒˆ", + "quests.tfg_tips.memory_card.desc": "倧量γζ©Ÿζ’°γ§&aδΈ¦εˆ—εŒ–γ—γŸζ§‹ζˆ&rγ‚’δ½œγ‚γ†γ¨γ™γ‚‹γ¨γ€ε„ζ©Ÿζ’°γ”γ¨γ«&eε…₯εŠ›&rγ‚„&eε‡ΊεŠ›&rをいけいけ設εšγ™γ‚‹γγŒι’倒にγͺるでしょう。&dγ‚ΉγƒΌγƒ‘γƒΌγƒγ‚§γ‚Ήγƒˆ&r・&dタンク&rγͺんかは特に。\n\nεΏ…θ¦γ γ¨ζ„Ÿγ˜γŸγ‚‰γŸγ‚γ‚‰γ‚γšδ½Ώγ„γΎγ—γ‚‡γ†γ€‚", + "quests.tfg_tips.portable_scanner.subtitle": "γ©γ—γŸγ‚“οΌŸθ©±θžγ“γ‹οΌŸ", + "quests.tfg_tips.portable_scanner.desc.1": "&aγƒγƒΌγ‚Ώγƒ–γƒ«γ‚Ήγ‚­γƒ£γƒŠγƒΌ&r(または&aγƒˆγƒͺコーダー&r)は、GTCEuγ«γŠγ‘γ‚‹γƒ‡γƒγƒƒγ‚°η”¨γƒ„γƒΌγƒ«γ§γ™γ€‚\n\nγ“γ‚Œγ‚’δ½Ώγ†γ¨γ€γƒ–γƒ­γƒƒγ‚―γθ©³η΄°ζƒ…報、エネルγ‚γƒΌγƒγƒƒγƒˆγƒ―γƒΌγ‚―γηŠΆζ³γ€ηΎεœ¨γηŠΆζ…‹γ‚„ε†…ιƒ¨ε†…εΉγ€γγ—γ¦γƒ‘γƒ•γ‚©γƒΌγƒžγƒ³γ‚ΉγΈγε½±ιŸΏγΎγ§η’Ίθͺγ§γγΎγ™γ€‚\n\nさらに、&3ζΆ²δ½“ζŽ‘ζŽ˜ζ©Ÿ&rγ‚’δ½Ώγ†ιš›γ«γ―γ€γγζΆ²δ½“θ„ˆγ«γ©γ‚Œγ γ‘ζΆ²δ½“γŒζ‹γ£γ¦γ„るかを%葨瀺で璺θͺγ™γ‚‹γ“ともできます。", + "quests.tfg_tips.portable_scanner.desc.2": "&l&3δ½™θ«‡οΌš&r&oこγε°εž‹γ§δΎΏεˆ©γͺθ£…η½γ―GT5からζ₯γŸγ‚‚γγ γ‚ˆγ€‚当時は、GUIγ‚„WAILAγ‹γ‚‰εΎ—γ‚‰γ‚Œγ‚‹ζƒ…ε ±γŒγ»γ¨γ‚“γ©οΌˆγ¨γ„γ†γ‚ˆγ‚Šε…¨γοΌ‰η„‘γ‹γ£γŸγ‹γ‚‰γ€ιžεΈΈγ«ι‡εγ•γ‚Œγ¦γ„γΎγ—γŸγ€‚", + "quests.tfg_tips.duct_tape.subtitle": "テープで直せγͺいもγγ―γ€γŸγγ•γ‚“γγƒ†γƒΌγƒ—を使いましょう", + "quests.tfg_tips.duct_tape.desc": "倚くγ&eγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―&rには&6γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒγƒƒγƒ&rγŒεΏ…θ¦γ γ¨γ„γ†γ“γ¨γ«γ€γŠγγ‚‰γγŠζ°—γ₯きかと思います。&6HV&rγ«εˆ°ι”γ—γ¦&aθ‡ͺε‹•γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒγƒƒγƒ&rγ‚’ε…₯ζ‰‹γ§γγ‚‹γ‚ˆγ†γ«γͺるまでは、こγγ‚’γ‚€γƒ†γƒ γ‚’δ½Ώγ†γ“γ¨γ§γ€γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒ„γƒΌγƒ«γ‚’δ½Ώγ‚γšγ«γƒγƒƒγƒγ‚’δΏη†γ§γγΎγ™γ€‚\n\nまだ&aθ‡ͺε‹•γƒ‘γƒ³γƒ†γƒŠγƒ³γ‚Ήγƒγƒƒγƒ&rγ«ζŠ•θ³‡γ—γŸγγͺγ„ε ΄εˆγ‚„γ€ε˜η΄”γ«γΎγ &cγγ“γ«εˆ°ι”γ—γ¦γ„γͺい&rε ΄εˆγ«γ―γ€γ¨γ¦γ‚‚ε½Ήη«‹γ€γ‚’γ‚€γƒ†γƒ γ§γ™γ€‚", + "quests.tfg_tips.gt_filters.title": "フィルター", + "quests.tfg_tips.gt_filters.desc": "&5GregTech&rには、&aθ‡ͺε‹•εŒ–&rγ‚’γ‚Ήγƒ γƒΌγ‚Ίγ«ι€²γ‚γ‚‹γŸγ‚γζ§˜γ€…γͺ&6フィルター&rγŒε­˜εœ¨γ—γΎγ™γ€‚γ“γ‚Œγ‚‰γ―γ™γΉγ¦γ€&dカバー&rγ¨η΅„γΏεˆγ‚γ›γ¦δ½Ώη”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚οΌˆγ‚«γƒγƒΌγθ©³η΄°γͺθͺ¬ζ˜Žγ―&γ€Œ7LV&r」γη« γγ‚―γ‚¨γ‚Ήγƒˆγ«θΌ‰γ£γ¦γ„γΎγ™γ€‚οΌ‰\n\nここでは、特εšγηŠΆζ³γ§&b便利&rγ«δ½Ώγˆγ‚‹γ€γ•γ‚‰γ«2η¨ι‘žγη‰ΉεŒ–フィルターをご紹介します。\n\nγƒ•γ‚£γƒ«γ‚ΏγƒΌγ‚’δ½Ώγ†ε ΄εˆγ―γ€&5ζ©Ÿζ’°γΎγŸγ―γ‚«γƒγƒΌγGUIε†…γ§ε–γ‚Šδ»˜γ‘γ‚‹&rか、もしくは&6ζ©Ÿζ’°γ‚„γƒ‘γ‚€γƒ—&rに&dカバー&rγ¨γ—γ¦ε–γ‚Šδ»˜γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.smart_item_filter.subtitle": "Knock, knock - who's that? It's MENSA!", + "quests.tfg_tips.smart_item_filter.desc.1": "こγγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€γ‚γͺたに&5禁断γηŸ₯識&r――すγͺγ‚γ‘γ€ι›»θ§£ζ§½γ‚’η°‘ε˜γ«θ‡ͺε‹•εŒ–γ™γ‚‹θƒ½εŠ›γ‚’ζŽˆγ‘γΎγ—γ‚‡γ†γ€‚\n\n&9γ‚ΉγƒžγƒΌγƒˆγ‚’γ‚€γƒ†γƒ γƒ•γ‚£γƒ«γ‚ΏγƒΌ&rγ―γ€ζ©Ÿζ’°γ§ε‹•δ½œγ™γ‚‹γƒ¬γ‚·γƒ”γ‚’θͺθ­˜γ§γγ‚‹γƒ•γ‚£γƒ«γ‚ΏγƒΌγ§γ™γ€‚ζ©Ÿζ’°γε΄ι’γ«ε–γ‚Šδ»˜γ‘γ¦γ€Œ&3ι›»θ§£ζ§½&rγ€γ‚’ζŒ‡εšγ™γ‚Œγ°γ€ι›»θ§£ε―能γͺをむテムだけをθ‡ͺε‹•γ§ζŠ•ε…₯γ™γ‚‹γ‚ˆγ†θ¨­εšγ§γγΎγ™γ€‚そうです、もう手動でフィルタγƒͺγƒ³γ‚°γ™γ‚‹εΏ…θ¦γ―γ‚γ‚ŠγΎγ›γ‚“οΌ\n\nさらに&aγ‚‚γ£γ¨δΎΏεˆ©&rγ«γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ‚ˆοΌγ“γγƒ•ィルターを&aγƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ &rγ¨η΅„γΏεˆγ‚γ›γ‚‹γ¨γ€ζ©Ÿζ’°γŒγƒ¬γ‚·γƒ”γ‚’ζˆη«‹γ•γ›γ‚‹γŸγ‚γ«εΏ…θ¦γͺ&6γ΄γ£γŸγ‚Šγι‡&rγ γ‘γ‚’δΎ›η΅¦γ™γ‚‹γ‚ˆγ†γ«γͺγ£γ¦γγ‚ŒγΎγ™γ€‚", + "quests.tfg_tips.smart_item_filter.desc.2": "&aγƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ &rγ‚’ι›»θ§£ζ§½γ«ε–γ‚Šδ»˜γ‘γ€γƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ γGUIを開いて&9γ‚ΉγƒžγƒΌγƒˆγƒ•γ‚£γƒ«γ‚ΏγƒΌ&rγ‚’γ‚»γƒƒγƒˆγ—γΎγ™γ€‚γ‚ΉγƒžγƒΌγƒˆγƒ•γ‚£γƒ«γ‚ΏγƒΌγŒι›»θ§£ζ§½γ«θ¨­εšγ•γ‚Œγ¦γ„γ‚‹γ“γ¨γ‚’η’Ίθͺγ—てくださいね。\n\nζ¬‘γ«γ€ε‹•δ½œγƒ’γƒΌγƒ‰γ‚’γ€Œ&d&lγƒ’γƒΌγƒ‰οΌšζ¬ε…₯&rγ€γ¨γ€Œ&d&l供硦ヒード&r」に設εšγ—γΎγ™γ€‚ζœ€εΎŒγ«γ€&aγƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ &rγ‚’ε–γ‚Šδ»˜γ‘γŸε΄ι’γ«γ€γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺ(&7γƒγ‚§γ‚Ήγƒˆγͺγ©γ§εεˆ†γ§γ™&rοΌ‰γ‚’ζŽ₯ηΆšγ—γ¦γγ γ•γ„γ€‚γ“γ‚Œγ§&6すべて&rγι›»θ§£ζ§½γƒ¬γ‚·γƒ”γε‡¦η†γ«ε―ΎεΏœγ—γΎγ—γŸοΌ\n\nでは、&3ι›»θ§£ζ§½&rγζŽ’ε‡Ίη‰©γ―γ©γ†γ—γΎγ—γ‚‡γ†οΌŸζΆ²δ½“γ―θ€‡ζ•°γγ‚Ώγƒ³γ‚―γΈγ€γ‚γ‚‹γ„γ―ι€²θ‘ŒεΊ¦ζ¬‘η¬¬γ§γ―&3スーパータンク&rγΈζ΅γ™γ¨θ‰―γ„γ§γ—γ‚‡γ†γ€‚ζΆ²δ½“γ‚’η ΄ζ£„γ™γ‚‹γ‚ˆγ†γͺ方法はζ₯΅εŠ›ιΏγ‘γ‚‹γ“γ¨γ‚’εΌ·γγŠγ™γ™γ‚γ„γŸγ—γΎγ™γ€‚&7.&7.まあ、水γͺんかはεˆ₯γ§γ™γŒγ€‚", + "quests.tfg_tips.smart_item_filter.desc.3": "&9ζ³¨ζ„οΌš&rγƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ γγƒ•ィルタγƒͺγƒ³γ‚°ζ©Ÿθƒ½γ‚’ζ­£γ—γε‹•δ½œγ•γ›γ‚‹γ«γ―γ€εΏ…γšγƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ θ‡ͺθΊ«γŒγ‚’γ‚€γƒ†γƒ ζ¬ε…₯γ‚’ζ‹…ε½“γ—γ¦γ„γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™οΌ\n\nζ©Ÿζ’°γΈη›΄ζŽ₯をむテムをε…₯γ‚Œγ¦γ—γΎγ†οΌˆ&7δΎ‹οΌšγƒ›γƒƒγƒ‘γƒΌγͺγ©γ«γ‚ˆγ‚‹ζ¬ε…₯&rοΌ‰γ¨γ€γƒ­γƒœγƒƒγƒˆγ‚’γƒΌγƒ γ&d供硦ヒード&rθ¨­εšγ―η„‘θ¦–γ•γ‚Œγ¦γ—γΎγ„γΎγ™γγ§γ”注意ください。", + "quests.tfg_tips.hazard_materials.title": "危険物", + "quests.tfg_tips.hazard_materials.subtitle": "対豑年齒:3ζ­³δ»₯上", + "quests.tfg_tips.hazard_materials.desc": "新しいバージョンγ&5Gregtech&rでは、&c危険物システム&rが導ε…₯γ•γ‚ŒγΎγ—γŸγ€‚&dShift&rγ‚’ζŠΌγ—γͺγŒγ‚‰&c危険物&rγ«γ‚«γƒΌγ‚½γƒ«γ‚’εˆγ‚γ›γ‚‹γ¨γ€γγη‰©θ³ͺγε½±ιŸΏγ¨εŽŸε› γ‚’η’Ίθͺγ§γγΎγ™γ€‚\n\n&6ι˜²θ­·θ£…ε‚™&rγ‚’ζ­£γ—γδ½Ώη”¨γ—γ€ζ±šζŸ“γ‹γ‚‰&cθΊ«γ‚’εˆγ‚ŠγΎγ—ょう&r。", + "quests.tfg_tips.face_mask.desc": "&6γƒ•γ‚§γ‚€γ‚Ήγƒžγ‚Ήγ‚―&rは、&cζœ‰ε³γͺ粉呡γεΈεΌ•&rγ«γ‚ˆγ‚‹ε₯εΊ·θ’«ε³γ‚’ι˜²γ„γ§γγ‚ŒγΎγ™γ€‚ζ―”θΌƒηš„&aη°‘ε˜γ«δ½œγ‚Œγ‚‹&rγŸγ‚γ€&5γƒ’η΄ &rγ‚’ζ‰±γ†ιš›γͺγ©γ«γ―η”¨ζ„γ—γ¦γŠγγΎγ—γ‚‡γ†", + "quests.tfg_tips.rubber_gloves.desc": "&6ゴム手蒋&rγ―γ€θ¦‹γ¦γ‚γ‹γ‚‹γ‚ˆγ†γ«&cηšθ†šζŽ₯θ§¦γ«γ‚ˆγ£γ¦θ΅·γ“γ‚‹ε₯εΊ·θ’«ε³&rγ‚’ι˜²γ„γ§γγ‚ŒγΎγ™γ€‚δ½œγ‚Šζ–Ήγ―2ι€šγ‚Šγ‚γ‚ŠγΎγ™γ€‚&2TerrafirmaCraft&rγ‚’η΅Œη”±γ™γ‚‹&7ζ™‚ι–“γŒγ‹γ‹γ‚‹ζ‰‹ι †&rと、&6εˆι‡‘η²ΎιŒ¬ζ©Ÿ&rγ‚’δ½Ώγ£γŸ&aγ¨γ¦γ‚‚η°‘ε˜γͺ方法&rγγ©γ‘らを選んでも構いません。", + "quests.tfg_tips.hazmat.title": "危険物用スーツ", + "quests.tfg_tips.hazmat.desc": "&6危険物用スーツ&rは、&cどんγͺε±ι™Ίγ«γ‚‚ε―ΎεΏœγ§γγ‚‹ζœ€ι«˜γι˜²θ­·ζœ&rです。&bMV&rγΎγ§ι€²γ‚γ°δ½œζˆε―θƒ½γ«γͺγ‚‹γŸγ‚γ€&aθΊ«γε‰ε…¨γγŸγ‚γ«γ‚‚εΏ…γšδ½œγ£γ¦γŠγγ“γ¨γ‚’εΌ·γγŠε‹§γ‚γ—γΎγ™&r。", + "quests.tfg_tips.armor.title": "GregTech - パワードスーツ", + "quests.tfg_tips.armor.desc": "&5GregTech&rには専用γγƒγ‚€γƒ†γ‚―γͺθ£…ε‚™γŒε­˜εœ¨γ—γΎγ™γ€‚γ“γ‚ŒγΎγ§δ½Ώγ£γ¦γγŸ7ι‡‘ε±žγιާ&rγ‚‚γŸγ—γ‹γ«γ‚€γ‚«γ—γ¦γ„γΎγ™γŒγ€ε·₯ζ₯­εŒ–γŒι€²γΏ&bζ–°γŸγͺζŠ€θ‘“γ‚’εΎ—γŸ&rδ»Šγ€γγζŠ€θ‘“γη²‹γ‚’η΅ι›†γ—γŸ&aパワードスーツ&rγι–‹η™Ίγ«δΉ—γ‚Šε‡Ίγ™γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\nζœ€εˆγγƒ’デルは&6HV&rγ«εˆ°ι”γ™γ‚‹γ¨δ½œζˆε―θƒ½γ«γͺγ‚Šγ€γγ“γ‚‰γΈγ‚“γι˜²ε…·γ‚’ε€§γγδΈŠε›žγ‚‹ι˜²εΎ‘ζ€§θƒ½γ‚’ζŒγ‘γΎγ™γ€‚γΎγŸγ€εœ°ηƒη’°ε’ƒγεŽ³γ—γ•γ«θ€γˆγ‚‹γŸγ‚γ&eι«˜γ„ζ–­η†±ζ€§θƒ½&rγ‚’ε‚™γˆγ€εΏ…θ¦γ«εΏœγ˜γ¦&dγ‚Έγ‚§γƒƒγƒˆγƒ‘γƒƒγ‚―&rγ‚’θΏ½εŠ γ—γ¦ζ©Ÿθƒ½ζ‹‘εΌ΅γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\n2぀η›γγƒ’デルは倧幅に進んだζ΅ιšŽγ€γ™γͺわけ &1IV&rγ‚„&dLuV&rγ«ι”γ—γŸι ƒγ«θ§£η¦γ•γ‚ŒγΎγ™γ€‚γ“γγƒ’デルでは、&3ι…Έη΄ &rγ‚’εˆ©η”¨γ™γ‚‹γ“γ¨γ§&9ε‡ε™η©Ίι–“でγε‘ΌεΈ&rγ•γˆε―θƒ½γ«γͺγ‚ŠγΎγ™γ€‚", "quests.tfg_tips.terrafirmacraft.title": "TerraFirmaCraftγθΏ½εŠ θ¦η΄ ", "quests.tfg_tips.terrafirmacraft.subtitle": "ModPackγεε‰γ3εˆ†γ2", - "quests.tfg_tips.terrafirmacraft.desc": "&3TerraFirmaCraft&rは、&2TerraFirmaGreg&rγδΈ»θ¦γͺmodγ1぀です。ここでは主に、そγγ‚΅γƒγ‚€γƒγƒ«γ«ι–’するもγγ¨γ€&4ι…’γη†Ÿζˆ&rγ‚„&bζ­©θ‘Œζ–&rγͺど、ModPackが持぀&d追加要素&rに焦点を当てています。", + "quests.tfg_tips.terrafirmacraft.desc": "&3TerraFirmaCraft&rは、&2TerraFirmaGreg&rγδΈ»θ¦γͺmodγ1぀です。\nここでは主に、そγγ‚΅γƒγ‚€γƒγƒ«γ«ι–’するもγγ¨γ€TFCγ&dをドγ‚ͺン&rに閒するもγγ«η„¦η‚Ήγ‚’当てています。", "quests.tfg_tips.cane.title": "ζ­©θ‘Œζ–", "quests.tfg_tips.cane.subtitle": "ι“θ‘ŒγδΊΊγ€…γ‚’εΌ•γ£ε©γγγ«ζœ€ι©οΌ", - "quests.tfg_tips.cane.desc": "&d杖&rを使用すると、&aι›ͺ&rγͺど、移動を遅くするブロックをεŒε…¨γ«η„‘視できます。&cパむン&rまたは&cγ‚ͺフハンド&rγ§ζŒγ€γ γ‘γ§εŠΉζžœγ‚’η™Ίζγ—ます。\n\nγŠγΎγ‘γ¨γ—γ¦γ€&bδΉ—γ‚ŠθΆŠγˆε―θƒ½γͺζ΅ε·γι«˜γ•γ‚’εΌ•γδΈŠγ’&rγ€γ‚Έγƒ£γƒ³γƒ—γ›γšγ«1γƒ–γƒ­γƒƒγ‚―γ‚’δΉ—γ‚ŠθΆŠγˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&d鉄製γζ–&rγͺγ‚‰γ€γƒ•γ‚§γƒ³γ‚Ήγ‚’γ‚‚η°‘ε˜γ«δΉ—γ‚ŠθΆŠγˆγ‚‹γ“γ¨γŒγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌ", + "quests.tfg_tips.cane.desc": "&d杖&rを使用すると、&aι›ͺや草&rγͺど、移動を遅くするブロックをεŒε…¨γ«η„‘視できます。&cパむン&rまたは&cγ‚ͺフハンド&rγ§ζŒγ£γ¦γ„γ‚‹γ γ‘γ§εŠΉζžœγ‚’η™Ίζγ—ます。\n\nγŠγΎγ‘γ¨γ—γ¦γ€&bδΉ—γ‚ŠθΆŠγˆε―θƒ½γͺζ΅ε·γι«˜γ•γ‚’εΌ•γδΈŠγ’&rγ€γ‚Έγƒ£γƒ³γƒ—γ›γšγ«1γƒ–γƒ­γƒƒγ‚―γ‚’δΉ—γ‚ŠθΆŠγˆγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n&d鉄製γζ–&rγͺγ‚‰γ€γƒ•γ‚§γƒ³γ‚Ήγ‚’γ‚‚η°‘ε˜γ«δΉ—γ‚ŠθΆŠγˆγ‚‹γ“γ¨γŒγ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌ", "quests.tfg_tips.cane.task": "任意γζ–", "quests.tfg_tips.hiking.title": "登山靴", "quests.tfg_tips.hiking.subtitle": "登山用γι΄", - "quests.tfg_tips.hiking.desc": "&d登山靴&rγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€δΈ–η•Œγ‚’γ‚ˆγ‚Šζ₯½γ«ζŽ’紒できます! &d登山靴&rγ‚’ε±₯γ‘γ°γ€θƒŒγι«˜γ„θ‰γ‚€γ‚‰γ‚‚ζŠ΅ζŠ—γͺγι€šγ‚ŠζŠœγ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ•γ‚‰γ«γ€&d登山靴&rγγƒ†γ‚£γ‚’γŒδΈŠγŒγ‚‹γ”γ¨γ«γ€&9ι˜²εΎ‘εŠ›&r、&9ζ­©θ‘Œι€ŸεΊ¦&r、&9落下耐性&r、そしてそγδ»–γθƒ½εŠ›γ‚‚εΌ·εŒ–γ•γ‚Œγ¦γ„γγΎγ™γ€‚", + "quests.tfg_tips.hiking.desc": "&d登山靴&rγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€δΈ–η•Œγ‚’γ‚ˆγ‚Šζ₯½γ«ζŽ’紒できます!\n&d登山靴&rγ‚’ε±₯γ‘γ°γ€θƒŒγι«˜γ„θ‰γ‚€γ‚‰γ‚‚ζŠ΅ζŠ—γͺγι€šγ‚ŠζŠœγ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nさらに、&d登山靴&rγγƒ†γ‚£γ‚’γŒδΈŠγŒγ‚‹γ”γ¨γ«γ€&9ι˜²εΎ‘εŠ›&r、&9ζ­©θ‘Œι€ŸεΊ¦&r、&9落下耐性&r、そしてそγδ»–γθƒ½εŠ›γ‚‚εΌ·εŒ–γ•γ‚Œγ¦γ„γγΎγ™γ€‚", "quests.tfg_tips.hiking.task": "任意γη™»ε±±ι΄", + "quests.tfg_tips.feeding_troughs.title": "硦逌η±", + "quests.tfg_tips.feeding_troughs.subtitle": "規則正しい牧場", + "quests.tfg_tips.feeding_troughs.desc": "硦逌η±οΌˆεˆ₯名Grooming StationsοΌ‰γ―γ€ε‹•η‰©γ«ζ―Žζœθ‡ͺε‹•γ§ι€Œγ‚’δΈŽγˆγ‚‹δΎΏεˆ©γͺ仕硄みです。繁ζ–γ‚’ζœ›γΎγͺγ„ε ΄εˆγ«γ―γ€θ¦ͺε―†εΊ¦γŒζœ€ε€§γε‹•η‰©γ«γ―η΅¦ι€Œγ—γͺい設εšγ«γ‚‚できます。\n\nγƒ†γ‚£γ‚’γŒδΈŠγŒγ‚‹γ»γ©γ€ε―ΎεΏœγ§γγ‚‹η―„ε›²γŒεΊƒγγͺγ‚Šγ€γ‚ˆγ‚Šε€šγγε‹•物をη‘理できます。\n\n&3&lTip:&r&o柡γγ™γγγ°γ«θ¨­η½γ™γ‚‹γ¨γ€ε‹•η‰©γŒγγ“γ‚’θΆ³ε ΄γ«γ—γ¦θ„±θ΅°γ‚’θ©¦γΏγ‚‹γ“γ¨γŒγ‚γ‚‹γŸγ‚γ€ε°‘γ—θ·ι›’γ‚’η½γ„て設η½γ™γ‚‹γ“γ¨γ‚’ζŽ¨ε₯¨γ—ます。", + "quests.tfg_tips.feeding_troughs.task": "Any feeding trough", "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γ¨γ€η†±γ—γŸγ‚¬γƒ©γ‚Ήγ‚’ζ³¨γγŸγ‚γγ‚¬γƒ©γ‚ΉεΉγη”¨γγƒ–γƒ­γƒƒγ‚―γ§δ½œγ‚‰γ‚ŒγŸε°εΊ§γŒεΏ…θ¦γ§γ™γ€‚ε°εΊ§γε½’ηŠΆγ¨ζœ‰εŠΉγͺブロックγθ©³η΄°γ«γ€γ„ては、&2フィールドガむド&rを参照してください。&a真ι&rγ‚’ζˆε½’γ§γγ‚‹γ‚ˆγ†γ«γͺγ£γŸγ‚‰γ™γγ«γ€γ‚¬γƒ©γ‚ΉεΉγγŒε―θƒ½γ«γͺγ‚ŠγΎγ™οΌ", + "quests.tfg_tips.glassblowing.desc": "&dガラス板&rγ‚„&dガラスブロック&rγ‚’δ½œγ‚‹γ«γ―γ€&3ガラス吹き&r道具一式γζΊ–ε‚™γŒεΏ…θ¦γ§γ™γ€‚\n\n&3ガラス吹き&rには、&a吹き竿&rγ¨γ€η†±γ—γŸγ‚¬γƒ©γ‚Ήγ‚’ζ³¨γγŸγ‚γγ‚¬γƒ©γ‚ΉεΉγη”¨γγƒ–γƒ­γƒƒγ‚―γ§δ½œγ‚‰γ‚ŒγŸε°εΊ§γŒεΏ…θ¦γ§γ™γ€‚\n台座γε½’ηŠΆγ¨ζœ‰εŠΉγͺブロックγθ©³η΄°γ«γ€γ„ては、&2フィールドガむド&rを参照してください。&a真ι&rγ‚’ζˆε½’γ§γγ‚‹γ‚ˆγ†γ«γͺγ£γŸγ‚‰γ™γγ«γ€γ‚¬γƒ©γ‚ΉεΉγγŒε―θƒ½γ«γͺγ‚ŠγΎγ™οΌ", "quests.tfg_tips.glassblowing.task.1": "任意γγ‚¬γƒ©γ‚ΉεΉγγƒ–ロック。", "quests.tfg_tips.glassblowing_tools.title": "ガラス吹きツール", "quests.tfg_tips.glassblowing_tools.subtitle": "ガラス細ε·₯士γε•†ε£²ι“ε…·", - "quests.tfg_tips.glassblowing_tools.desc": "&dガラス&rγ‚’εŠ ε·₯するには、さまざまγͺγƒ„γƒΌγƒ«γŒεΏ…θ¦γ§γ™γ€‚\n\n&3ζœ¨γ”γ¦&r:εΉ³γ‚‰γ«γ™γ‚‹δ½œζ₯­γ«δ½Ώη”¨γ•γ‚Œγ‚‹γ€‚δΈ»γ«&dガラス板&rγŠγ‚ˆγ³&dランタンガラス&rγδ½œζˆγ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚\n&3εηŸ³γƒŽγ‚³γ‚γƒͺ&r:ガラス製品γθ£½ι€ γ«εΏ…ι ˆγ§γ™γŒγ€γγ‚Œγ«εŠ γˆγ¦γ€γΎγ‚‹γ§&bシルクタッチ&rγεŠΉζžœγγ‚ˆγ†γ«γ€&dガラス&rγ‚„&cεηŸ³γθн&rγ‚’ε›žεŽγ™γ‚‹γŸγ‚γ«γ‚‚δ½Ώη”¨γ§γγΎγ™οΌ\n&3ジャックス&r:γ‚¬γƒ©γ‚Ήγ‚’ζŒŸγ‚“γ§γ€γΎγ‚€γŸγ‚γ«δ½Ώη”¨γ•γ‚Œγ€δΈ»γ«&dガラス瓢&rγͺどγεΉε™¨γ‚’δ½œγ‚‹ιš›γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚\n&3ηΎŠζ―›γεΈƒ&r:γ‚¬γƒ©γ‚Ήγ‚’θ»’γŒγ™γŸγ‚γ«δ½Ώη”¨γ•γ‚Œγ€&dレンズ&rγŠγ‚ˆγ³&dジャム瓢&rγδ½œζˆγ«εΏ…要です。", + "quests.tfg_tips.glassblowing_tools.desc": "&dガラス&rγ‚’εŠ ε·₯するには、さまざまγͺγƒ„γƒΌγƒ«γŒεΏ…θ¦γ§γ™γ€‚\n\n&3ζœ¨γ”γ¦&r:εΉ³γ‚‰γ«γ™γ‚‹δ½œζ₯­γ«δ½Ώη”¨γ—ます。主に&dガラス板&rγŠγ‚ˆγ³&dランタンガラス&rγδ½œζˆγ«εΏ…要にγͺγ‚ŠγΎγ™γ€‚\n&3εηŸ³γƒŽγ‚³γ‚γƒͺ&r:ガラス製品γθ£½ι€ γ«εΏ…ι ˆγ§γ™γŒγ€γγ‚Œγ«εŠ γˆγ¦γ€γΎγ‚‹γ§&bシルクタッチ&rγεŠΉζžœγγ‚ˆγ†γ«γ€&dガラス&rγ‚„&cεηŸ³γθн&rγ‚’ε›žεŽγ™γ‚‹γŸγ‚γ«γ‚‚δ½Ώη”¨γ§γγΎγ™γ€‚\n&3ジャックス&r:γ‚¬γƒ©γ‚Ήγ‚’ζŒŸγ‚“γ§γ€γΎγ‚€δ½œζ₯­γ«δ½Ώη”¨γ—ます。主に&dガラス瓢&rγͺどγεΉε™¨γ‚’δ½œγ‚‹ιš›γ«εΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n&3ηΎŠζ―›γεΈƒ&r:γ‚¬γƒ©γ‚Ήγ‚’θ»’γŒγ™γŸγ‚γ«δ½Ώη”¨γ—γΎγ™γ€‚&dレンズ&rγŠγ‚ˆγ³&dジャム瓢&rγδ½œζˆγ«εΏ…要です。", "quests.tfg_tips.glass_blocks.title": "ガラスブロック", "quests.tfg_tips.glass_blocks.subtitle": "Windowsを手にε…₯γ‚Œγ‚ˆγ†", - "quests.tfg_tips.glass_blocks.desc": "&aガラス製造&rに使用する砂γη¨ι‘žγ«εΏœγ˜γ¦γ€ζœ€η΅‚ηš„γͺ&dガラス&rγθ‰²γŒε€‰γ‚γ‚ŠγΎγ™γ€‚η‰Ήεšγθ‰²γγ‚¬γƒ©γ‚Ήγ‚’぀くる方法に぀いては、&2フィールドガむド&rγ&3ガラス製品&rγι …η›γ‚’ε‚η…§γ—γ¦γγ γ•γ„γ€‚εΎŒγ€…γ€&3GregTech&rγεŒ–学物θ³ͺγ‚’δ½Ώη”¨γ—γ¦γ€γ‚¬γƒ©γ‚Ήγ‚’γ‚ˆγ‚Šη°‘ε˜γ«ζŸ“θ‰²γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\n&3&lTips:&r&o 倧量γγ‚¬γƒ©γ‚Ήγƒ–γƒ­γƒƒγ‚―γ‚’δ½œζˆγ—γŸγ„ε ΄εˆγ€&bεˆι‡‘θ£½ιŒ¬η‚‰&fγŒεˆ©η”¨γ§γγ‚‹γͺら、&dガラス板&fγ‚’δ½œζˆγ—γ€&b粉砕&fして&dガラスγη²‰&fに加ε·₯し、&aブロックγι‡‘εž‹&fγ§ζˆεž‹γ™γ‚‹γγŒεŠΉηŽ‡ηš„γ§γ™γ€‚γ“γζ–Ήζ³•だと1ε›žγδ½œζ₯­γ§ζœ€ε€§16個γε°γ•γͺη²‰γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™οΌ", + "quests.tfg_tips.glass_blocks.desc": "&aガラス製造&rに使用する砂γη¨ι‘žγ«εΏœγ˜γ¦γ€ζœ€η΅‚ηš„γͺ&dガラス&rγθ‰²γŒε€‰γ‚γ‚ŠγΎγ™γ€‚\nη‰Ήεšγθ‰²γγ‚¬γƒ©γ‚Ήγ‚’぀くる方法に぀いては、&2フィールドガむド&rγ&3ガラス製品&rγι …η›γ‚’参照してください。\nεΎŒγ€…γ€&3GregTech&rγεŒ–学物θ³ͺγ‚’δ½Ώη”¨γ—γ¦γ€γ‚¬γƒ©γ‚Ήγ‚’γ‚ˆγ‚Šη°‘ε˜γ«ζŸ“θ‰²γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\n&3&lTips:&r&o 倧量γγ‚¬γƒ©γ‚Ήγƒ–γƒ­γƒƒγ‚―γ‚’δ½œζˆγ—γŸγ„ε ΄εˆγ€&bεˆι‡‘θ£½ιŒ¬η‚‰&fγŒεˆ©η”¨γ§γγ‚‹γͺら、&dガラス板&fγ‚’δ½œζˆγ—γ€&b粉砕&fして&dガラスγη²‰&fに加ε·₯し、&aブロックγι‡‘εž‹&fγ§ζˆεž‹γ™γ‚‹γγŒεŠΉηŽ‡ηš„γ§γ™γ€‚γ“γζ–Ήζ³•だと1ε›žγδ½œζ₯­γ§ζœ€ε€§16個γε°γ•γͺη²‰γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™οΌ", "quests.tfg_tips.lamps.title": "ランタン", "quests.tfg_tips.lamps.subtitle": "弱めγζ–‡ζ˜Žγζ˜Žγ‹γ‚Š", - "quests.tfg_tips.lamps.desc": "ι€šεΈΈγMinecraftγ¨εŒζ§˜γ«γ€&dランタン&rγ―γƒγ‚§γƒΌγƒ³γ‚’δ½Ώγ£γ¦ε€©δΊ•γ‹γ‚‰εŠγ‚‹γ—γŸγ‚Šγ€γƒ–γƒ­γƒƒγ‚―γδΈŠγ«η½γ„γŸγ‚Šγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&dランタン&rγ―γ€η‚Ήη―γ—ηΆšγ‘γ‚‹γŸγ‚γ«γ•γΎγ–γΎγͺη¨ι‘žγη‡ƒζ–™γ‚’ζΆˆθ²»γ—γΎγ™γ€‚η‡ƒζ–™γ«γ‚ˆγ£γ¦γ―&4η„‘ζœŸι™γ«&rζŒηΆšγ™γ‚‹γ‚‚γγ‚‚γ‚γ‚ŠγΎγ™γ€‚\n\n&3&lTips:&r&o 燃料ε…₯γ‚Šγγƒ©γƒ³γ‚Ώγƒ³γ―、&cCurios&fγ&6バック&fγ‚Ήγƒ­γƒƒγƒˆγ«θ£…ε‚™γ™γ‚‹γ¨γ€θ‡ͺεˆ†γε‘¨γ‚Šγ‚’η…§γ‚‰γ—γ¦γγ‚ŒγΎγ™γ€‚γ‚·γ‚§γƒΌγƒ€γƒΌγŒγ‚ͺンにγͺγ£γ¦γ„γ‚‹ε ΄εˆγ―γ€γ“γ‚ŒγŒζ©Ÿθƒ½γ—γͺγ„ε ΄εˆγŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.lamps.desc": "ι€šεΈΈγMinecraftγ¨εŒζ§˜γ«γ€&dランタン&rγ―γƒγ‚§γƒΌγƒ³γ‚’δ½Ώγ£γ¦ε€©δΊ•γ‹γ‚‰εŠγ‚‹γ—γŸγ‚Šγ€γƒ–γƒ­γƒƒγ‚―γδΈŠγ«η½γ„γŸγ‚Šγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n&dランタン&rγ―γ€η‚Ήη―γ—ηΆšγ‘γ‚‹γŸγ‚γ«γ•γΎγ–γΎγͺη¨ι‘žγη‡ƒζ–™γ‚’ζΆˆθ²»γ—γΎγ™γ€‚η‡ƒζ–™γ«γ‚ˆγ£γ¦γ―&4永遠に&rζŒηΆšγ™γ‚‹γ‚‚γγ‚‚γ‚γ‚ŠγΎγ™γ€‚\n\n&3&lTips:&r&o燃料ε…₯γ‚Šγγƒ©γƒ³γ‚Ώγƒ³γ―、&cCurios&fγ&6バック&fγ‚Ήγƒ­γƒƒγƒˆγ«θ£…ε‚™γ™γ‚‹γ¨γ€θ‡ͺεˆ†γε‘¨γ‚Šγ‚’η…§γ‚‰γ—γ¦γγ‚ŒγΎγ™γ€‚γ‚·γ‚§γƒΌγƒ€γƒΌγŒγ‚ͺンにγͺγ£γ¦γ„γ‚‹γ¨γ€γ“γ‚ŒγŒζ©Ÿθƒ½γ—γͺγ„γ“γ¨γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.creosote.title": "ランタン燃料:クレγ‚ͺγ‚½γƒΌγƒˆ", "quests.tfg_tips.creosote.subtitle": "δ½™γ£γ¦γ„γŸγ‚‰", "quests.tfg_tips.creosote.desc": "&dクレγ‚ͺγ‚½γƒΌγƒˆ&rγ―γƒ©γƒ³γ‚Ώγƒ³η‡ƒζ–™γ¨γ—γ¦δ½Ώη”¨γ§γγΎγ™γŒγ€γ“γη‡ƒζ–™γ§ζΊ€γŸγ•γ‚ŒγŸγƒ©γƒ³γ‚Ώγƒ³γ―&c10&rζ—₯ι–“γ—γ‹ζŒηΆšγ—γΎγ›γ‚“γ€‚", @@ -3844,70 +4141,70 @@ "quests.tfg_tips.tallow.task": "獣脂γγƒγ‚±γƒ„", "quests.tfg_tips.olive_oil.title": "ランタン燃料:γ‚ͺγƒͺγƒΌγƒ–γ‚ͺむル", "quests.tfg_tips.olive_oil.subtitle": "γ‚‚γ‘γ‚γ‚“γ€ζ„›γ‚’γ“γ‚γ‚Œγ°γ­", - "quests.tfg_tips.olive_oil.desc": "&dγ‚ͺγƒͺγƒΌγƒ–γ‚ͺむル&rはランタン燃料として使用できます。他γη‡ƒζ–™γ‚ˆγ‚Šγ‚‚δ½œζˆγŒι›£γ—γ„γ§γ™γŒγ€γ“γ‚Œγ§ζΊ€γŸγ•γ‚ŒγŸγƒ©γƒ³γ‚Ώγƒ³γ―γͺんと&c83&rζ—₯ι–“γ‚‚ζŒηΆšγ—γΎγ™οΌ\n\n&3&lTips:&r&o &7LV&fγ§γ‚‚ι›»ζ°—ζ©Ÿζ’°γ«γ‚’γ‚―γ‚»γ‚Ήγ™γ‚‹γ¨γ€θ£½δ½œγŒζ₯½γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.olive_oil.desc": "&dγ‚ͺγƒͺγƒΌγƒ–γ‚ͺむル&rはランタン燃料として使用できます。他γη‡ƒζ–™γ‚ˆγ‚Šγ‚‚δ½œζˆγŒι›£γ—γ„γ§γ™γŒγ€γ“γ‚Œγ§ζΊ€γŸγ•γ‚ŒγŸγƒ©γƒ³γ‚Ώγƒ³γ―γͺんと&c83&rζ—₯ι–“γ‚‚ζŒηΆšγ—γΎγ™οΌ\n\n&3&lTips:&r&o &7LV&fζ©Ÿζ’°γ«γŒδ½Ώγˆγ‚‹γ‚ˆγ†γ«γͺγ‚‹γ¨γ€θ£½δ½œγŒζ₯½γ«γͺγ‚ŠγΎγ™γ€‚", "quests.tfg_tips.olive_oil.task": "γ‚ͺγƒͺγƒΌγƒ–γ‚ͺむルγγƒγ‚±γƒ„", "quests.tfg_tips.lava_lamp.title": "ランタン燃料:溢岩", "quests.tfg_tips.lava_lamp.subtitle": "γƒ›γƒƒγƒˆγ‚Ήγ‚Ώγƒƒγƒ•", - "quests.tfg_tips.lava_lamp.desc": "ιžεΈΈγ«θ€η†±ζ€§γι«˜γ„ι‡‘ε±žγ§γ‚γ‚‹&9青鋼&rを使用すると、&d青鋼γγƒ©γƒ³γ‚Ώγƒ³&rγ‚’δ½œζˆγ§γγΎγ™γ€‚γ“γ‚Œγ―&c溢岩&rγ§ζΊ€γŸγ™γ“γ¨γŒγ§γγ€γƒ©γƒ³γ‚Ώγƒ³γη΄ ζγ―限εšγ•γ‚Œγ‚‹γγ¨εΌ•γζ›γˆγ«γ€ζ°Έι γε…‰ζΊγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚\n\nγŸγ γ—γ€ζΊΆε²©γŒε…₯γ£γŸγƒ©γƒ³γ‚Ώγƒ³γε–γ‚Šζ‰±γ„γ«γ―ζ³¨ζ„γ—γ¦γγ γ•γ„γ€‚ιžεΈΈγ«&cHOTです...&r", + "quests.tfg_tips.lava_lamp.desc": "ιžεΈΈγ«θ€η†±ζ€§γι«˜γ„ι‡‘ε±žγ§γ‚γ‚‹&9青鋼&rを使用すると、&d青鋼γγƒ©γƒ³γ‚Ώγƒ³&rγ‚’δ½œζˆγ§γγΎγ™γ€‚γ“γ‚Œγ«γ―&c溢岩&rγ‚’γ„γ‚Œγ‚‹γ“γ¨γŒγ§γγ€ζ°ΈδΉ…γε…‰ζΊγ«γͺγ‚ŠγΎγ™γ€‚\n\nγŸγ γ—γ€ζΊΆε²©γŒε…₯γ£γŸγƒ©γƒ³γ‚Ώγƒ³γε–γ‚Šζ‰±γ„γ«γ―ζ³¨ζ„γ—γ¦γγ γ•γ„γ€‚ιžεΈΈγ«&cHOTです...&r", "quests.tfg_tips.glowstone_lamp.title": "ランタン燃料:γ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³", "quests.tfg_tips.glowstone_lamp.subtitle": "ζœ€ι«˜γγƒ©γƒ³γ‚Ώγƒ³η‡ƒζ–™", - "quests.tfg_tips.glowstone_lamp.desc": "&dγ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³&rγ‚’ζΆ²εŒ–γ™γ‚‹γ«γ―γ€ε°‘γͺくとも&7LV&rγζ©Ÿζ’°γ‚’δ½Ώγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γŒγ€&l任意γγƒ©γƒ³γ‚Ώγƒ³γη΄ ζγ§&r気にε…₯γ£γŸγ‚‚γγŒγ‚γ‚Œγ°γ€&6ζΆ²δ½“γ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³&rγ§ζΊ€γŸγ™γ“γ¨γ§ζ°Έι γε…‰ζΊγ‚’εΎ—γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γγ—γ¦γ€&c溢岩&rとは異γͺγ‚Šγ€γ“γ‚Œγ―η†±γγ‚γ‚ŠγΎγ›γ‚“οΌ", + "quests.tfg_tips.glowstone_lamp.desc": "&dγ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³&rγ‚’ζΆ²εŒ–γ™γ‚‹γ«γ―γ€&7LV&rδ»₯上γζ©Ÿζ’°γ‚’δ½Ώγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γŒγ€&lどγη΄ ζγ§γ§γγŸγƒ©γƒ³γ‚Ώγƒ³&rでも、&6ζΆ²δ½“γ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³&rγ‚’ε…₯γ‚Œγ‚‹γ“γ¨γ§ζ°ΈδΉ…γε…‰ζΊγ«γͺγ‚ŠγΎγ™γ€‚\nそして、&c溢岩&rとは異γͺγ‚Šγ€γ“γ‚Œγ―η†±γγ‚γ‚ŠγΎγ›γ‚“οΌ", "quests.tfg_tips.charcoal_pile.title": "伏せ焼き", "quests.tfg_tips.charcoal_pile.subtitle": "重要事項です", - "quests.tfg_tips.charcoal_pile.desc.1": "&a伏せ焼き&rγ―γ€εˆζœŸγ&dζœ¨η‚­&rγη’ΊδΏζ³•です。&2TFG&rγ§ζˆγ‚ŠδΈŠγŒγ£γ¦γ„γγ«γ―γ€γ“γ‚ŒγŒ&oaγŸγγ•γ‚“&r必要にγͺγ‚ŠγΎγ™γ€‚ζœ¨η‚­γ―&3精錬&rと&bιŒ¬ι‰„&rγγŸγ‚γ&3ε‘Šι‰„η‚‰&rを使うγγ«ε€§ι‡γ«εΏ…要にγͺるからです。\n\nγ§γ―γΎγšγ€εœ°ι’γ‚’ζŽ˜γ‚ŠδΈ‹γ’γΎγ™γ€‚", - "quests.tfg_tips.charcoal_pile.desc.2": "η©΄γ‚’ζŽ˜γ£γŸεΎŒγ€&cスニーク&rしγͺγŒγ‚‰δΈΈε€ͺγ‚’θ¨­η½γ—γΎγ™γ€‚γ“γ‚Œγ«γ‚ˆγ‚Šγ€η©΄γ«&2δΈΈε€ͺγε±±&rが設η½γ•γ‚ŒγΎγ™γ€‚δΈΈε€ͺγε±±γ«ε…₯γ‚Œγ‚‹δΈΈε€ͺγŒε€šγ„γ»γ©γ€δ½œζˆγ•γ‚Œγ‚‹&dζœ¨η‚­&rが倚くγͺγ‚ŠγΎγ™γ€‚", - "quests.tfg_tips.charcoal_pile.desc.3": "&2δΈΈε€ͺγε±±&rγ‚’θ¨­η½γ—γŸεΎŒγ€γƒ–γƒ­γƒƒγ‚―γ§θ¦†γ„γΎγ™γŒγ€&o1γ€γ―θ¦†γ‚γ‚Œγ¦γ„γͺいままにします&r。&d火衷こし器&rγ€γƒ‰γƒ­γƒƒγƒ—γ—γŸ&e松明&rγ€γΎγŸγ―&4η«ζ‰“ηŸ³γ¨ζ‰“γ‘ι‡‘&rを使用して、こγθ¦†γ‚γ‚Œγ¦γ„γͺいもγγ«η«γ‚’γ€γ‘γΎγ™γ€‚θ¦†γ‚γ‚ŒγŸγƒ–γƒ­γƒƒγ‚―γ‹γ‚‰η…™γŒε‡Ίγ¦γγ‚‹γγ‚’εΎ…γ‘γ€θ¦†γ‚γ‚Œγ¦γ„γͺいもγγ‚’&cε―†ι–‰&rします。煙γζ”Ύε‡ΊγŒζ­’γΎγ£γŸγ‚‰γ€θ¦†γ„γ‚’ε–γ‚Šι™€γγ€&dζœ¨η‚­&rγ‚’εŽη©«γ—γΎγ™γ€‚γ§γγ‚Œγ°&aシャベル&rまたは&a軍用シャベル&rを使用します。", - "quests.tfg_tips.charcoal_pile.desc.4": "&3&lε°‚ι–€εΆγ‹γ‚‰γγ‚’ドバむス:&r&o できるだけ早く&3コークス炉&fγ‚’δ½œγ‚‹γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚δΈΈε€ͺから&aζœ¨η‚­&fγ‚’&cγ‚ˆγ‚Šθ‰―γ„ζ―”ηŽ‡&fγ§δ½œζˆγ§γγ‚‹γ γ‘γ§γͺγγ€γƒ©γƒ³γ‚Ώγƒ³γ‚„θ’Έζ°—ε‹•εŠ›γ«ε½Ήη«‹γ€η‡ƒζ–™γ§γ‚γ‚‹&aクレγ‚ͺγ‚½γƒΌγƒˆ&fγ‚’ε‰―η”£η‰©γ¨γ—γ¦η”Ÿζˆγ—γ€&dスチール&fη”Ÿη”£η”¨γ&aγ‚³γƒΌγ‚―γ‚Ή&fγ‚’δ½œγ‚‹γγ«γ‚‚δ½ΏγˆγΎγ™γ€‚", + "quests.tfg_tips.charcoal_pile.desc.1": "&a伏せ焼き&rγ―γ€εˆζœŸγ&dζœ¨η‚­&rγη’ΊδΏζ³•です。\n&2TFG&rγ§ζˆγ‚ŠδΈŠγŒγ£γ¦γ„γγ«γ―γ€ζœ¨η‚­γŒ&o倧量に&r必要にγͺγ‚ŠγΎγ™γ€‚η‚‰γ§γ&3精錬&rと&bιŒ¬ι‰„&rγγŸγ‚γ&3ε‘Šι‰„η‚‰&rγη¨Όεƒγ§η‰Ήγ«ε€šγθ¦ζ±‚γ•γ‚ŒγΎγ™γ€‚\n\nγ§γ―γΎγšγ€εœ°ι’γ‚’ζŽ˜γ‚ŠδΈ‹γ’γΎγ—γ‚‡γ†γ€‚", + "quests.tfg_tips.charcoal_pile.desc.2": "η©΄γ‚’ζŽ˜γ£γŸεΎŒγ€&cスニーク&rしγͺγŒγ‚‰δΈΈε€ͺγ‚’θ¨­η½γ—γΎγ™γ€‚γ“γ‚Œγ«γ‚ˆγ‚Šγ€η©΄γ«&2δΈΈε€ͺγε±±&rが設η½γ•γ‚ŒγΎγ™γ€‚\nδΈΈε€ͺγε±±γ«ε…₯γ‚Œγ‚‹δΈΈε€ͺγŒε€šγ„γ»γ©γ€δ½œζˆγ•γ‚Œγ‚‹&dζœ¨η‚­&rが倚くγͺγ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.charcoal_pile.desc.3": "&2δΈΈε€ͺγε±±&rγ‚’θ¨­η½γ—γŸεΎŒγ€γƒ–γƒ­γƒƒγ‚―γ§θ¦†γ„γΎγ™γŒγ€&o1γ€γ―θ¦†γ‚γ‚Œγ¦γ„γͺいままにします&r。\n&d火衷こし器&rγ€γƒ‰γƒ­γƒƒγƒ—γ—γŸ&e松明&rγ€γΎγŸγ―&4η«ζ‰“ηŸ³γ¨ζ‰“γ‘ι‡‘&rを使用して、こγθ¦†γ‚γ‚Œγ¦γ„γͺいもγγ«η«γ‚’぀けます。\nθ¦†γ‚γ‚ŒγŸγƒ–γƒ­γƒƒγ‚―γ‹γ‚‰η…™γŒε‡Ίγ¦γγŸγ‚‰γ€θ¦†γ‚γ‚Œγ¦γ„γͺいもγγ«γ‚‚ブロックを蒫せて&cε―†ι–‰&rします。\nη…™γζ”Ύε‡ΊγŒζ­’γΎγ£γŸγ‚‰γ€θ¦†γ„γ‚’ε–γ‚Šι™€γγ€&dζœ¨η‚­&rγ‚’εŽη©«γ—γΎγ™γ€‚&aシャベル&rまたは&a軍用シャベル&rγ‚’δ½Ώγˆγ°ζ₯½γ«ε›žεŽγ§γγΎγ™γ€‚", + "quests.tfg_tips.charcoal_pile.desc.4": "&3&lε°‚ι–€εΆγ‹γ‚‰γγ‚’γƒ‰γƒγ‚€γ‚ΉοΌš&r&o\nできるだけ早く&3コークス炉&fγ‚’δ½œγ‚‹γ“γ¨γ‚’γŠε‹§γ‚γ—γΎγ™γ€‚δΈΈε€ͺから&aζœ¨η‚­&fγ‚’&cγ‚ˆγ‚Šθ‰―γ„ζ―”ηŽ‡&fγ§δ½œζˆγ§γγ‚‹γ γ‘γ§γͺγγ€γƒ©γƒ³γ‚Ώγƒ³γ‚„θ’Έζ°—ε‹•εŠ›γ«ε½Ήη«‹γ€η‡ƒζ–™γ§γ‚γ‚‹&aクレγ‚ͺγ‚½γƒΌγƒˆ&fγ‚’ε‰―η”£η‰©γ¨γ—γ¦η”Ÿζˆγ—γ€&dスチール&fη”Ÿη”£η”¨γ&aγ‚³γƒΌγ‚―γ‚Ή&fγ‚’δ½œγ‚‹γγ«γ‚‚δ½ΏγˆγΎγ™γ€‚", "quests.tfg_tips.thatch_bed.title": "藁γγƒ™γƒƒγƒ‰", "quests.tfg_tips.thatch_bed.subtitle": "δΌ‘γ‚γ‚‹ε ΄ζ‰€γ‚’γγ‚Œγͺいか", - "quests.tfg_tips.thatch_bed.desc": "いく぀かγ&b藁ブロック&rと&a倧きγͺηš&rγ‚’εˆ©η”¨γ—γ¦γ€&d藁γγƒ™γƒƒγƒ‰&rγ‚’δ½œζˆγ§γγΎγ™γ€‚η‘ηœ γ«δ½Ώη”¨γ™γ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“γŒγ€&cγ‚ΉγƒγƒΌγƒ³γƒγ‚€γƒ³γƒˆγ‚’θ¨­εšγ§γγΎγ™&r。\n\n藁γγƒ™γƒƒγƒ‰γ‚’δ½œζˆγ™γ‚‹γ«γ―、&b2぀γθ—γƒ–ロック&rを並べて設η½γ—、&a倧きγͺηš&rで右クγƒͺックします。", + "quests.tfg_tips.thatch_bed.desc": "&b藁ブロック&rγ‚’2぀設η½γ—、&a倧きγͺηš&rを蒫せると、&d藁γγƒ™γƒƒγƒ‰&rにγͺγ‚ŠγΎγ™γ€‚\nε―γ‚‹γŸγ‚γ«δ½Ώγ†γ“γ¨γ―γ§γγΎγ›γ‚“γŒγ€&cγ‚ΉγƒγƒΌγƒ³γƒγ‚€γƒ³γƒˆγ‚’θ¨­εšγ§γγΎγ™&r。\n\n藁γγƒ™γƒƒγƒ‰γ‚’δ½œζˆγ™γ‚‹γ«γ―、&b2぀γθ—γƒ–ロック&rを並べて設η½γ—、&a倧きγͺηš&rで右クγƒͺックします。", "quests.tasktype.looktat": "εŒζˆγ—γŸθ—γγƒ™γƒƒγƒ‰γ‚’見る", "quests.tfg_tips.loom.title": "ηΉ”ζ©Ÿ", "quests.tfg_tips.loom.subtitle": "γ‚‚γ£γ¨ι ‘εΌ΅γ£γ¦γ‹γ‚‰γ˜γ‚ƒγͺいと、寝る気にはγͺらγͺいγͺ", - "quests.tfg_tips.loom.desc": "γ‚ˆγ‚Šθ‰―γ„γƒ™γƒƒγƒ‰γ‚’δ½œγ‚‹γ«γ―γ€γ„γγ€γ‹γηΉ”η‰©γ‚’δ½œζˆγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚&3ηΉ”ζ©Ÿ&rγ―γ“γ‚Œγ‚’θ‘Œγ†γŸγ‚γζœ€ι©γͺ作ζ₯­ε°γ§γ‚γ‚Šγ€γγ‚Œγžγ‚Œη•°γͺγ‚‹η”¨ι€”γ‚’ζŒγ€γ•γΎγ–γΎγͺηΉ”η‰©γ‚’δ½œζˆγ§γγΎγ™γ€‚", + "quests.tfg_tips.loom.desc": "γ‚ˆγ‚Šθ‰―γ„γƒ™γƒƒγƒ‰γ‚’δ½œγ‚‹γ«γ―γ€ηΉ”η‰©γŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚ηΉ”η‰©γ―&3ηΉ”ζ©Ÿ&rγ«γ‚ˆγ£γ¦δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γγ‚Œγžγ‚Œη•°γͺγ‚‹η”¨ι€”γ‚’ζŒγ€γ•γΎγ–γΎγͺηΉ”η‰©γŒδ½œζˆγ§γγΎγ™γ€‚", "quests.tfg_tips.burlap_cloth.title": "ιΊ»εΈƒ", "quests.tfg_tips.burlap_cloth.subtitle": "γ‚Έγƒ₯γƒΌγƒˆθ£½οΌ", - "quests.tfg_tips.burlap_cloth.desc": "樽に&aγ‚Έγƒ₯γƒΌγƒˆ&rを桸し、&3ηΉ”ζ©Ÿ&rで&aγ‚Έγƒ₯γƒΌγƒˆγηΉŠηΆ­&rγ‚’εŠ ε·₯γ™γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€&dιΊ»εΈƒ&rγ‚’δ½œζˆγ§γγΎγ™γ€‚\n\n麻布には、&cζš‘γ„η’°ε’ƒ&rから保護する&bBurlap Clothes&rγ€ζ€’γ£γ¦γ„γ‚‹θœ‚γ‹γ‚‰δΏθ­·γ™γ‚‹&eι€Šθœ‚εΆγθ£…ε‚™&rγ€γŠγ‚ˆγ³γγδ»–γε€šγγδΎΏεˆ©η³»γ‚’むテムγδ½œζˆγͺγ©γ€ζ§˜γ€…γͺη”¨ι€”γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.burlap_cloth.desc": "樽に&aγ‚Έγƒ₯γƒΌγƒˆ&rを桸し、&3ηΉ”ζ©Ÿ&rで&aγ‚Έγƒ₯γƒΌγƒˆγηΉŠηΆ­&rγ‚’ηΉ”γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€&dιΊ»εΈƒ&rγ‚’δ½œζˆγ§γγΎγ™γ€‚\n\n麻布には、&cζš‘γ„η’°ε’ƒ&rから保護する&bιΊ»γζœ&rγ€ζ€’γ£γ¦γ„γ‚‹θœ‚γ‹γ‚‰δΏθ­·γ™γ‚‹&eι€Šθœ‚εΆγθ£…ε‚™&rγ€γŠγ‚ˆγ³γγδ»–γε€šγγδΎΏεˆ©η³»γ‚’むテムγδ½œζˆγͺγ©γ€ζ§˜γ€…γͺη”¨ι€”γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.pineapple_leather.title": "γƒ‘γ‚€γƒŠγƒƒγƒ—γƒ«γƒ¬γ‚ΆγƒΌ", "quests.tfg_tips.pineapple_leather.subtitle": "γƒšγƒ³ζŠœγγ€γƒͺγƒ³γ‚΄ζŠœγγ§", - "quests.tfg_tips.pineapple_leather.desc": "&aδΊΊε·₯繊碭&rγ‚’ε…₯ζ‰‹γ—γ€γγ‚Œγ‚‰γ‚’&bη΄‘ηΈΎ&rして&aδΊΊε·₯ηΉ”γ‚Šη³Έ&rにし、&3ηΉ”ζ©Ÿ&rγ§η³Έγ‚’εŠ ε·₯すると、&bγͺめし革&rγδ»£ζ›Ώε“γ«γ‚‚γͺγ‚‹&dδΊΊε·₯ηšι©&rγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚", + "quests.tfg_tips.pineapple_leather.desc": "&aδΊΊε·₯繊碭&rγ‚’ε…₯ζ‰‹γ—γ€γγ‚Œγ‚‰γ‚’&bη΄‘ηΈΎ&rして&aδΊΊε·₯ηΉ”γ‚Šη³Έ&rにし、&3ηΉ”ζ©Ÿ&rγ§η³Έγ‚’εŠ ε·₯すると、γͺγ‚γ—γŸ&b革&rγδ»£ζ›Ώε“γ«γ‚‚γͺγ‚‹&dδΊΊε·₯ηšι©&rγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚", "quests.tfg_tips.wool_cloth.title": "ηΎŠζ―›γεΈƒ", "quests.tfg_tips.wool_cloth.subtitle": "パェー...", - "quests.tfg_tips.wool_cloth.desc": "&2ηΎŠζ―›γ‚’η”Ÿη”£γ™γ‚‹&rεΆη•œγ‹γ‚‰εˆˆγ‚Šε–γ‚‹γ“γ¨γ§ηΎŠζ―›γŒεΎ—γ‚‰γ‚Œγ€γγ‚Œγ‚’η΄‘績して&dηΎŠζ―›γη³Έ&rγ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&3ηΉ”ζ©Ÿ&rで糸を織ると、&dηΎŠζ―›γεΈƒ&rγ‚’δ½œγ‚ŒγΎγ™γ€‚\n\n&bガラス細ε·₯&rでγδ½Ώη”¨γ«εŠ γˆγ¦γ€&b寒い&rη’°ε’ƒγ«ζœ€ι©γͺ&aWool Clothes&rγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚\n\nηΎŠζ―›γεΈƒγ―&bι«˜ε“θ³ͺγεΈƒ&rと見γͺγ•γ‚ŒγΎγ™γ€‚", + "quests.tfg_tips.wool_cloth.desc": "&2ηΎŠζ―›γ‚’η”Ÿη”£γ™γ‚‹&rεΆη•œγ‹γ‚‰εˆˆγ‚Šε–γ‚‹γ“γ¨γ§ηΎŠζ―›γŒεΎ—γ‚‰γ‚Œγ€γγ‚Œγ‚’η΄‘績して&dηΎŠζ―›γη³Έ&rγ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&3ηΉ”ζ©Ÿ&rで糸を織ると、&dηΎŠζ―›γεΈƒ&rγ‚’δ½œγ‚ŒγΎγ™γ€‚\n\n&bガラス細ε·₯&rでγδ½Ώη”¨γ«εŠ γˆγ¦γ€&b寒い&rη’°ε’ƒγ«ζœ€ι©γͺ&aηΎŠζ―›γζœ&rγ‚’δ½œγ‚‹γŸγ‚γ«δ½ΏγˆγΎγ™γ€‚\n\nηΎŠζ―›γεΈƒγ―&bι«˜ε“θ³ͺγεΈƒ&rと見γͺγ•γ‚ŒγΎγ™γ€‚", "quests.tfg_tips.silk_cloth.title": "η΅ΉγεΈƒ", "quests.tfg_tips.silk_cloth.subtitle": "ιžεΈΈγ«γ€ιžεΈΈγ«ζ»‘γ‚‰γ‹γ€‚", - "quests.tfg_tips.silk_cloth.desc": "&dη΅ΉγεΈƒ&rは、&bγ‚―γƒ’&rγŒθ½γ¨γ™&aη³Έ&rγ€γΎγŸγ―&bポγƒͺカプロラクタム(εˆ₯εγƒŠγ‚€γƒ­γƒ³)γ‚€γƒ³γ‚΄γƒƒγƒˆ&rγ‚’δ»‹γ—γ¦δ½œζˆγ§γγΎγ™γ€‚γ‚«γ‚€γ‚³γ―γΎγ ε­˜εœ¨γ—γΎγ›γ‚“γ€γ”γ‚γ‚“γͺさい!&4The Beneath&rγε±ι™Ίγͺ&cWebbed Lair&rバむγ‚ͺームは、εˆ₯γε±ι™Ίγͺソースです。\n\nη΅ΉγεΈƒγ―、&cζš‘γ„&r環咃からあγͺγŸγ‚’δΏθ­·γ™γ‚‹γγ«ζœ€ι©γͺ&aSilk Clothes&rγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚\n\nη΅ΉγεΈƒγ―&bι«˜ε“θ³ͺγεΈƒ&rと見γͺγ•γ‚ŒγΎγ™γ€‚", + "quests.tfg_tips.silk_cloth.desc": "&dη΅ΉγεΈƒ&rは、&bγ‚―γƒ’&rγŒθ½γ¨γ™&aη΅Ήη³Έ&rγ‹γ‚‰δ½œγ‚ŒγΎγ™γ€‚(&bポγƒͺカプロラクタム(εˆ₯εγƒŠγ‚€γƒ­γƒ³)&rγ‹γ‚‰δ½œγ£γŸεΈƒγ‚‚η΅ΉγεΈƒγ¨εŒγ˜ζ‰±γ„です。)γ‚«γ‚€γ‚³γ―γΎγ ε­˜εœ¨γ—γΎγ›γ‚“γ€γ”γ‚γ‚“γͺさい!\n硹糸は&4Beneath&rにある&cWebbed_Lair&rという危険γͺバむγ‚ͺームで倧量にε…₯ζ‰‹γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nη΅ΉγεΈƒγ―、&cζš‘γ„&r環咃からあγͺγŸγ‚’δΏθ­·γ™γ‚‹γγ«ζœ€ι©γͺ&aη΅Ήθ£½γθ‘£ζœ&rγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚\n\nη΅ΉγεΈƒγ―&bι«˜ε“θ³ͺγεΈƒ&rと見γͺγ•γ‚ŒγΎγ™γ€‚", "quests.tfg_tips.phantom_silk.title": "γƒ•γ‚‘γƒ³γƒˆγƒ γεΈƒ", "quests.tfg_tips.phantom_silk.subtitle": "みんγͺε€§ε₯½γγƒ’γƒ–ζŠ•η₯¨γε‹θ€…", - "quests.tfg_tips.phantom_silk.desc": "&dγƒ•γ‚‘γƒ³γƒˆγƒ γεΈƒ&rγ―γƒ•γ‚‘γƒ³γƒˆγƒ γη³Έγ‹γ‚‰ηΉ”γ‚‰γ‚Œγ¦γŠγ‚Šγ€γƒ•γ‚‘γƒ³γƒˆγƒ γη³Έγ―γƒ•γ‚‘γƒ³γƒˆγƒ γηšθ†œγ‹γ‚‰δ½œγ‚‰γ‚Œγ¦γ„ます。&aγƒ•γ‚‘γƒ³γƒˆγƒ &rは&4The Beneath&rγ§θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.phantom_silk.desc": "&dγƒ•γ‚‘γƒ³γƒˆγƒ γεΈƒ&rγ―γƒ•γ‚‘γƒ³γƒˆγƒ γη³Έγ‹γ‚‰ηΉ”γ‚‰γ‚Œγ¦γŠγ‚Šγ€γƒ•γ‚‘γƒ³γƒˆγƒ γη³Έγ―γƒ•γ‚‘γƒ³γƒˆγƒ γηšθ†œγ‹γ‚‰δ½œγ‚‰γ‚ŒγΎγ™γ€‚\n&aγƒ•γ‚‘γƒ³γƒˆγƒ &rは&4Beneath&rにいます。", "quests.tfg_tips.unrefined_paper.title": "ζœͺη²Ύθ£½γη΄™", "quests.tfg_tips.unrefined_paper.subtitle": "歴史を紑ぐ。", - "quests.tfg_tips.unrefined_paper.desc": "&aζœͺη²Ύθ£½γη΄™&rγ―γ€ζœ¬η‰©γδ½Ώη”¨ε―能γͺ&dη΄™&rにγͺγ‚‹γΎγ§γ‚γ¨δΈ€ζ­©γ§γ™γ€‚η΄™γ‚’δ½œγ‚‹ζ–Ήζ³•γ―γ„γγ€γ‚‚γ‚γ‚Šγ€θ³‡ζΊγε…₯ζ‰‹ι›£ζ˜“εΊ¦γ«γ‚ˆγ£γ¦γ―γ€η°‘ε˜γ«θ‘Œγˆγ‚‹γ‚‚γγ‚‚γ‚γ‚Œγ°γ€γ‹γͺγ‚Šι›£γ—γ„γ‚‚γγ‚‚γ‚γ‚ŠγΎγ™γ€‚&bη΄™γδ½œζˆ&rγι …η›γ‚’&2フィールドガむド&rで璺θͺγ—てください!&r", + "quests.tfg_tips.unrefined_paper.desc": "&aζœͺη²Ύθ£½γη΄™&rγ―γ€ζœ¬η‰©γδ½Ώη”¨ε―能γͺ&dη΄™&rγε‰ζ΅ιšŽγ§γ™γ€‚\nη΄™γ‚’δ½œγ‚‹ζ–Ήζ³•γ―γ„γγ€γ‚‚γ‚γ‚Šγ€θ³‡ζΊγε…₯ζ‰‹ι›£ζ˜“εΊ¦γ«γ‚ˆγ£γ¦γ―γ€η°‘ε˜γ«θ‘Œγˆγ‚‹γ‚‚γγ‚‚γ‚γ‚Œγ°γ€γ‹γͺγ‚Šι›£γ—γ„γ‚‚γγ‚‚γ‚γ‚ŠγΎγ™γ€‚\n&bη΄™γδ½œζˆ&rγι …η›γ‚’&2フィールドガむド&rで璺θͺγ—ましょう。&r", "quests.tfg_tips.bed.title": "ベッド", "quests.tfg_tips.bed.subtitle": "γŠγ‚„γ™γΏ", - "quests.tfg_tips.bed.desc": "&bι«˜ε“θ³ͺγεΈƒ&r(&aηΎŠζ―›&rγ‚„&aシルク&rγͺど)γ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ζœ¬η‰©γ&dベッド&rγ‚’δ½œζˆγ§γγΎγ™γ€‚&2藁γγƒ™γƒƒγƒ‰&rとは異γͺγ‚Šγ€ζœ¬η‰©γ&dベッド&rγ―δΈ€ζ™©δΈ­ηœ γ‚‹γγ«εεˆ†γͺ快適さです。良い倒を!", + "quests.tfg_tips.bed.desc": "&bι«˜ε“θ³ͺγεΈƒ&r(&aηΎŠζ―›&rγ‚„&aη΅Ή&rγͺど)γ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ζœ¬η‰©γ&dベッド&rγ‚’δ½œζˆγ§γγΎγ™γ€‚\n&2藁γγƒ™γƒƒγƒ‰&rとは異γͺγ‚Šγ€ζœ¬η‰©γ&dベッド&rγ―εΏ«ι©γ«δΈ€ζ™©ηœ γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚θ‰―γ„ε€’γ‚’οΌ", "quests.tfg_tips.sleeping_bags.title": "寝蒋", "quests.tfg_tips.sleeping_bags.subtitle": "キャンピング!", - "quests.tfg_tips.sleeping_bags.desc": "&d寝蒋&rは、&bどこでも&rε―γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγ‚‹γ‚’γ‚€γƒ†γƒ γ§γ™γ€‚γƒ™γƒƒγƒ‰γ¨γ―η•°γͺγ‚Šγ€ε―θ’‹γ―&cγ‚ΉγƒγƒΌγƒ³εœ°η‚Ή&rγ‚’&o倉更しません&r。", + "quests.tfg_tips.sleeping_bags.desc": "&d寝蒋&rγͺら、&bどこでも&rε―γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γƒ™γƒƒγƒ‰γ¨γ―η•°γͺγ‚Šγ€ε―θ’‹γ―&cγ‚ΉγƒγƒΌγƒ³εœ°η‚Ή&rγ‚’&o倉更しません&r。", "quests.tfg_tips.hammocks.title": "ハンヒック", "quests.tfg_tips.hammocks.subtitle": "2εΊ¦ε―γ«ζœ€ι©", - "quests.tfg_tips.hammocks.desc": "&dハンヒック&rは、&2ベッド&rγ¨γ―ηœŸι€†γ§ζ˜Όι–“γ«ηœ γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ζ™‚ι–“γγ‹γ‹γ‚‹ζ¨½γι†Έι€ γƒ¬γ‚·γƒ”や伏せ焼きγεΎ…ζ©Ÿζ™‚ι–“γ«ζœ€ι©γ§γ™γ€‚\n&2寝蒋&rγ¨εŒζ§˜γ«γ€&cγ‚ΉγƒγƒΌγƒ³εœ°η‚Ή&rγ‚’&o倉更&rしません。", + "quests.tfg_tips.hammocks.desc": "&dハンヒック&rは、&2ベッド&rγ¨γ―ηœŸι€†γ§ζ˜Όι–“γ«ηœ γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nζ™‚ι–“γγ‹γ‹γ‚‹ζ¨½γι†Έι€ γƒ¬γ‚·γƒ”や伏せ焼きγζ™‚間を぀ぢすγγ«ζœ€ι©γ§γ™γ€‚\n&2寝蒋&rγ¨εŒζ§˜γ«γ€&cγ‚ΉγƒγƒΌγƒ³εœ°η‚Ή&rγ‚’&o倉更&rしません。", "quests.tfg_tips.panning.title": "ちるい", "quests.tfg_tips.panning.subtitle": "ゴールドラッシγƒ₯γε†δ½“験!", - "quests.tfg_tips.panning.desc": "ε·εΊ•γ«γ€ι‰±ηŸ³γŒζ··γ–γ£γŸη ‚εˆ©γŒγ‚γ‚‹γγ«ζ°—γŒδ»˜γγΎγ—γŸγ‹οΌŸ γ“γ‚Œγ―&aη ‚εˆ©ι‰±εΊŠ&rとしてηŸ₯γ‚‰γ‚Œγ¦γ„γΎγ™γ€‚&bちるい&rで右クγƒͺックすると、こγι‰±ηŸ³ι‰±εΊŠγ‚’&dγƒγ‚€γƒ†γ‚£γƒ–ι‰±ηŸ³γε°γ•γͺ破片&rに加ε·₯γ§γγΎγ™γ€‚γ“γ‚Œγ‚‰γ―γ€εž‹γ‚’ζΊ€γŸγ™γŸγ‚γ«ζ•°γƒŸγƒͺγƒγƒƒγ‚―γƒ¬γƒƒγƒˆγŒδΈθΆ³γ—γ¦γ„γ‚‹ε ΄εˆγ«ε½Ήη«‹γ‘γΎγ™γ€‚", + "quests.tfg_tips.panning.desc": "ε·εΊ•γ«γ€ι‰±ηŸ³γŒζ··γ–γ£γŸη ‚εˆ©γŒγ‚γ‚‹γγ«ζ°—γŒδ»˜γγΎγ—γŸγ‹οΌŸγ“γ‚Œγ―&aη ‚εˆ©ι‰±εΊŠ&rとしてηŸ₯γ‚‰γ‚Œγ¦γ„γΎγ™γ€‚\n&bちるい&rで右クγƒͺックすると、こγι‰±ηŸ³ι‰±εΊŠγ‚’&d小さγͺι‰±ηŸ³&rに加ε·₯できます。\nγ“γ‚Œγ―γ€η΅Άε¦™γ«ι‰±ηŸ³γŒθΆ³γ‚Šγͺγ„οΌγ¨γ„γ†ε ΄εˆγ«ε½Ήη«‹γ‘γΎγ™γ€‚", "quests.tfg_tips.sluice.title": "桁し樋", "quests.tfg_tips.sluice.subtitle": "倏γι’¨η‰©θ©©", - "quests.tfg_tips.sluice.desc": "&3桁し樋&rを使用して、&aη ‚εˆ©ι‰±εΊŠ&rγ‚’γ‚ˆγ‚Šι€Ÿγγ€γ‚γšγ‹γ«θ‡ͺε‹•εŒ–γ•γ‚ŒγŸζ–Ήζ³•γ§ε‡¦η†γ§γγΎγ™γ€‚γ•γ‚‰γ«γ€ζ΅γ—ζ¨‹γ―θΏ½εŠ γ§&dεΈŒε°‘γͺ副産物&rγ‚’η”Ÿζˆγ§γγΎγ™γ€‚θ©³η΄°γ«γ€γ„γ¦γ―γ€&2フィールドガむド&rγι …η›γ‚’η’Ίθͺγ—てください!", + "quests.tfg_tips.sluice.desc": "&3桁し樋&rを使用して、&aη ‚εˆ©ι‰±εΊŠ&rγ‚’γ‚ˆγ‚Šι€Ÿγγ€ε€šε°‘θ‡ͺε‹•εŒ–γ•γ‚ŒγŸζ–Ήζ³•γ§ε‡¦η†γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγ•γ‚‰γ«γ€ζ΅γ—ζ¨‹γ―θΏ½εŠ γ§&dεΈŒε°‘γͺ副産物&rγ‚’η”Ÿζˆγ§γγΎγ™γ€‚\n詳細に぀いては、&2フィールドガむド&rγι …η›γ‚’η’Ίθͺγ—てください!", "quests.tfg_tips.status_effects.title": "γ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉεŠΉζžœ", "quests.tfg_tips.status_effects.subtitle": "薬物乱用教ε€", "quests.tfg_tips.status_effects.desc": "γƒγƒΌγ‚·γƒ§γƒ³ι†Έι€ γ―γ§γγΎγ›γ‚“γŒγ€γ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉεŠΉζžœγ‚’εΎ—γ‚‹γŸγ‚γδ»–γζΆˆθ²»γ‚’γ‚€γƒ†γƒ γ‚’δ½œζˆγ§γγΎγ™γ€‚", "quests.tfg_tips.aged_alcohol.title": "ι…’ι‘žγη†Ÿζˆ", "quests.tfg_tips.aged_alcohol.subtitle": "η™Ύθ–¬γι•·", - "quests.tfg_tips.aged_alcohol.desc": "&3をルコール飲料を&r&a樽&rγ§ι•·ζœŸι–“η†Ÿζˆγ•γ›γ‚‹γ¨γ€εŠΉεŠ›γŒε’—γ—γŸ&dAged Alcohol&rにγͺγ‚ŠγΎγ™γ€‚η“ΆγΎγŸζ°΄η­’γ§ι£²γ‚€γ¨γ€δ½Ώη”¨γ—γŸγ‚’γƒ«γ‚³γƒΌγƒ«γ«εΏœγ˜γ¦γ€&bε†η”Ÿ&r、&b耐性&r、&bθ‘ζ’ƒεΈεŽ&rγͺどγζœ‰η”¨γͺγ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉεŠΉζžœγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚γ“γ‚Œγ‚‰γεŠΉζžœγ―γ€η‰Ήγ«ζŽ’η΄’γ«ε½Ήη«‹γ‘γΎγ™γ€‚", + "quests.tfg_tips.aged_alcohol.desc": "&3をルコール飲料を&r&a樽&rγ§ι•·ζœŸι–“η†Ÿζˆγ•γ›γ‚‹γ¨γ€εŠΉεŠ›γŒε’—γ—γŸ&dAged_Alcohol&rにγͺγ‚ŠγΎγ™γ€‚\nη“ΆγΎγŸζ°΄η­’γ§ι£²γ‚€γ¨γ€δ½Ώη”¨γ—γŸγ‚’γƒ«γ‚³γƒΌγƒ«γ«εΏœγ˜γ¦γ€&bε†η”Ÿ&r、&b耐性&r、&bθ‘ζ’ƒεΈεŽ&rγͺどγζœ‰η”¨γͺγ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉεŠΉζžœγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚γ“γ‚Œγ‚‰γεŠΉζžœγ―γ€η‰Ήγ«ζŽ’η΄’γ«ε½Ήη«‹γ‘γΎγ™γ€‚", "quests.tfg_tips.aged_alcohol.task": "η†Ÿζˆγ‚’γƒ«γ‚³γƒΌγƒ«", "quests.tfg_tips.pills.title": "θ–¬:δΈΈθ–¬", "quests.tfg_tips.pills.subtitle": "εŠΉγ„γŸγ‚ˆγ­οΌ", - "quests.tfg_tips.pills.desc": "&aγƒ―γƒƒγ‚―γ‚Ήι‘ž&r、&b温泉水&rγ€γŠγ‚ˆγ³γ„γγ€γ‹γη‹¬θ‡ͺγζζ–™γ‚’ζ··γœγ‚‹γ¨γ€&dδΈΈθ–¬&rγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚δΈΈθ–¬γ―γ€θ‰―γ„γ‚‚γγ‚‚γ‚γ‚Œγ°ζ‚ͺいもγγ‚‚γ‚γ‚Šγ€γ•γΎγ–γΎγͺγ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉεŠΉζžœγ‚’γ‚‚γŸγ‚‰γ—γΎγ™γ€‚\n\n&3&lTips:&r&o &bγƒ‘γ‚«γƒ‹γ‚«γƒ«γƒŸγ‚­γ‚΅γƒΌ&fまたは&bGTγƒŸγ‚­γ‚΅γƒΌ&fγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€δ½œγ‚Œγ‚‹ι‡γŒ2倍にγͺγ‚ŠγΎγ™οΌ", + "quests.tfg_tips.pills.desc": "&aγƒ―γƒƒγ‚―γ‚Ήι‘ž&r、&b温泉水&rγ€γŠγ‚ˆγ³γ„γγ€γ‹γη‹¬θ‡ͺγζζ–™γ‚’ζ··γœγ‚‹γ¨γ€&dδΈΈθ–¬&rγŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚\nδΈΈθ–¬γ―γ€ζ§˜γ€…γͺγ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉεŠΉζžœγ‚’ζŒγ£γŸγ‚‚γγŒγ‚γ‚Šγ€δ½Ώγ†γ¨ζ‰‹ζ—©γεŠΉζžœγ‚’ε—γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&3&lTips:&r&o &bγƒ‘γ‚«γƒ‹γ‚«γƒ«γƒŸγ‚­γ‚΅γƒΌ&fまたは&bGTγƒŸγ‚­γ‚΅γƒΌ&fγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€δ½œγ‚Œγ‚‹ι‡γŒ2倍にγͺγ‚ŠγΎγ™οΌ", "quests.tfg_tips.pills.task": "εŠΉζžœδΈΈθ–¬", "quests.tfg_tips.tablets.title": "θ–¬:ιŒ ε‰€", "quests.tfg_tips.tablets.subtitle": "強くγͺγ‚ŠγŸγ„γ¨ζ€γˆ", @@ -3915,37 +4212,34 @@ "quests.tfg_tips.tablets.task": "ιŒ ε‰€", "quests.tfg_tips.salvo.title": "θ–¬:θ»Ÿθ†", "quests.tfg_tips.salvo.subtitle": "え...? 食べた...?", - "quests.tfg_tips.salvo.desc": "&dθ»Ÿθ†&rγ―γ€ι€šεΈΈγ―ηšθ†šγ«ε‘—εΈƒγ•γ‚Œγ‚‹η¨ι‘žγθ–¬γ§γ™γ€‚γ“γ‚Œγ‚‰γ―、&aδΈΈθ–¬&rγ‚„&aιŒ ε‰€&rとは異γͺγ‚‹η¨ι‘žγεŠΉζžœγ‚’η™Ίζγ—γΎγ™γ€‚γŸγ¨γˆγ°γ€&c火耐性&rγ‚„&4ε³ζ™‚ε›žεΎ©&rγͺγ©γ§γ™γŒγ€ζ―”θΌƒηš„θ€‡ι›‘γͺεŒ–ε­¦γŒεΏ…θ¦γ§γ™γ€‚", + "quests.tfg_tips.salvo.desc": "&dθ»Ÿθ†&rγ―γ€ι€šεΈΈγ―ηšθ†šγ«ε‘—布する薬です。\nγ“γ‚Œγ―γ€&aδΈΈθ–¬&rγ‚„&aιŒ ε‰€&rとは異γͺγ‚‹η¨ι‘žγεŠΉζžœγ‚’η™Ίζγ—γΎγ™γ€‚γŸγ¨γˆγ°γ€&c火耐性&rγ‚„&4ε³ζ™‚ε›žεΎ©&rγͺγ©γ€‚γŸγ γ—γ€δ½œζˆγ«γ―ζ―”θΌƒηš„θ€‡ι›‘γͺεŒ–ε­¦γŒεΏ…θ¦γ§γ™γ€‚", "quests.tfg_tips.salvo.task": "θ»Ÿθ†", "quests.tfg_tips.misc.title": "そγδ»–γTips", - "quests.tfg_tips.misc.subtitle": "さらにTips!", + "quests.tfg_tips.misc.subtitle": "TipsγŠγ‹γ‚γ‚ŠοΌ", "quests.tfg_tips.misc.desc": "γ“γ‚Œγ‚‰γ―γγδ»–γTipsです。他γγ‚«γƒ†γ‚΄γƒͺγ«γ―ε½“γ¦γ―γΎγ‚ŠγΎγ›γ‚“γŒγ€ηŸ₯γ£γ¦γŠγγ¨ε½Ήη«‹γ‘γΎγ™γ€‚", "quests.tfg_tips.digger_helmet.title": "Digger Helmet", "quests.tfg_tips.digger_helmet.subtitle": "ε€œι€šγ—ζŽ‘ζŽ˜γ™γ‚‹γŸγ‚γ«", - "quests.tfg_tips.digger_helmet.desc.1": "&dDigger Helmet&rは、周囲をθ‡ͺε‹•ηš„γ«η…§γ‚‰γ™γ“γ¨γŒγ§γγ‚‹γƒ˜γƒ«γƒ‘γƒƒγƒˆγ§γ™γ€‚γƒ‘γ‚€γƒ³γƒγƒ³γƒ‰γŒε ζœ‰γ•γ‚Œγ€γ‚ͺフハンドに盾γͺγ©γŒθ£…ε‚™γ•γ‚Œγ¦γ„γ‚‹ε ΄εˆγ«ε½Ήη«‹γ‘γΎγ™γ€‚δ½œζˆγ«γ―&6γ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³&rγŒε°‘γ—εΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚ζ—©γδ½œγ‚ŠγŸγ„ε ΄εˆγ―&4The Beneath&rγ«θ‘ŒγγΉγγ§γ—γ‚‡γ†", - "quests.tfg_tips.digger_helmet.desc.2": "&l&3重要:&r&l &dγƒ‡γ‚£γ‚¬γƒΌγƒ˜γƒ«γƒ‘γƒƒγƒˆ&fθ‡ͺ体は、&cSodium Dynamic Lights&fγη‰Ήεšγθ¨­εšγγŠγ‹γ’γ§ζ©Ÿθƒ½γ—γΎγ™γ€‚ζ­£εΈΈγ«ζ©Ÿθƒ½γ•γ›γ‚‹γ«γ―、&bγ€ŒDynamic Entity Lighting」&fγ‚’γ‚ͺγƒ³γ«γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™", + "quests.tfg_tips.digger_helmet.desc.1": "&dDigger_Helmet&rは、周囲をθ‡ͺε‹•ηš„γ«η…§γ‚‰γ™γ“γ¨γŒγ§γγ‚‹γƒ˜γƒ«γƒ‘γƒƒγƒˆγ§γ™γ€‚γƒ‘γ‚€γƒ³γƒγƒ³γƒ‰γŒε ζœ‰γ•γ‚Œγ€γ‚ͺフハンドに盾γͺγ©γŒθ£…ε‚™γ•γ‚Œγ¦γ„γ‚‹ε ΄εˆγ«ε½Ήη«‹γ‘γΎγ™γ€‚\n作成には&6γ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³&rγŒε°‘γ—εΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚ζ—©γδ½œγ‚ŠγŸγ„ε ΄εˆγ―&4Beneath&rγ«θ‘ŒγγΉγγ§γ—γ‚‡γ†", + "quests.tfg_tips.digger_helmet.desc.2": "&l&3重要:&r&l &dγƒ‡γ‚£γ‚¬γƒΌγƒ˜γƒ«γƒ‘γƒƒγƒˆ&fθ‡ͺ体は、&cSodium_Dynamic_Lights&fγη‰Ήεšγθ¨­εšγγŠγ‹γ’γ§ζ©Ÿθƒ½γ—γΎγ™γ€‚\nζ­£εΈΈγ«ζ©Ÿθƒ½γ•γ›γ‚‹γ«γ―γ€&bγ€ŒDynamic_Entity_Lighting」&fγ‚’γ‚ͺγƒ³γ«γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™", "quests.tfg_tips.grappling_hook.title": "グラップγƒͺングフック", "quests.tfg_tips.grappling_hook.subtitle": "γ‚Ήγ‚Ώγ‚€γƒͺッシγƒ₯!", - "quests.tfg_tips.grappling_hook.desc": "&aRope Coil&r2぀と&bιŒ¬ι‰„θ£½γ€γ‚‹γ―γ—γƒ˜γƒƒγƒ‰&rγ‚’η΅„γΏεˆγ‚γ›γ‚‹γ“γ¨γ§γ€&dグラップγƒͺングフック&rγ‚’δ½œζˆγ§γγΎγ™γ€‚ε€§γγͺε±±γ‚’η™»γ£γŸγ‚Šγ€ε€§γγͺ洞ηͺŸγ‚’ζŽ’η΄’γ—γŸγ‚Šγ€δΈ–η•Œγ‚’ζΈ‘γ‚Šζ­©γ„γŸγ‚Šγ™γ‚‹γγ«η†ζƒ³ηš„γͺツールです。&eをップグレード&rγ™γ‚‹γ“γ¨γŒγ§γγ€&dフックγιƒ¨ε“&rγ‚’θ‡ͺη”±γ«η΅„γΏεˆγ‚γ›γ¦ε€‰ζ›΄γ§γγΎγ™γ€‚", - "quests.tfg_tips.grapple_repair.title": "グラップγƒͺングフックγθ­¦ε‘Š", - "quests.tfg_tips.grapple_repair.subtitle": "γ“γ‚Œγ‚’θͺ­γΎγͺγ„γ¨εΎŒζ‚”γ™γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“οΌ", - "quests.tfg_tips.grapple_repair.desc": "&dグラップγƒͺングフック&rγ&aをップグレード&rはすべて、をむテム内にNBTγƒ‡γƒΌγ‚Ώγ¨γ—γ¦δΏε­˜γ•γ‚ŒγΎγ™γ€‚γ€γΎγ‚Šγ€&cεˆ₯γ&rグラップγƒͺングフックを使用してフックをδΏη†γ—γ‚ˆγ†γ¨γ™γ‚‹γ¨γ€&l&cすべてγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γŒη ΄ε£Šγ•γ‚ŒγΎγ™οΌ&r\n\nδ»£γ‚γ‚Šγ«γ€&dグラップγƒͺングフック&rと&bιŒ¬ι‰„γη²‰&rγ‚’&3作ζ₯­ε°&rにη½γ„てδΏη†γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\nγΎγŸγ€γ‚ͺーバーワールドとThe Beneathγι–“を移動するときにグラップγƒͺングフックを使用しγͺγ„γ§γγ γ•γ„γ€‚ιžεΈΈγ«ε±ι™Ίγ§γ™γ€‚", + "quests.tfg_tips.grappling_hook.desc": "&aRope_Coil&r2぀と&bιŒ¬ι‰„θ£½γ€γ‚‹γ―γ—γƒ˜γƒƒγƒ‰&rγ‚’η΅„γΏεˆγ‚γ›γ‚‹γ“γ¨γ§γ€&dグラップγƒͺングフック&rγ‚’δ½œζˆγ§γγΎγ™γ€‚\n倧きγͺε±±γ‚’η™»γ£γŸγ‚Šγ€ε€§γγͺ洞ηͺŸγ‚’ζŽ’η΄’γ—γŸγ‚Šγ€δΈ–η•ŒδΈ­γ‚’ε†’ι™Ίγ™γ‚‹γγ«ιžεΈΈγ«ζœ‰η”¨γͺ道具です。\n&eをップグレード&rγ™γ‚‹γ“γ¨γŒγ§γγ€&dフックγιƒ¨ε“&rγ‚’θ‡ͺη”±γ«η΅„γΏεˆγ‚γ›γ¦ζ”Ήι€ γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.grapple_upgrades.title": "グラップγƒͺングフックγγ‚’ップグレード", "quests.tfg_tips.grapple_upgrades.subtitle": "TFGγ«γ‚ˆγ‚‹ζŠœηΎ€γθͺΏζ•΄", - "quests.tfg_tips.grapple_upgrades.desc.1": "&dグラップγƒͺングフック&rγγ‚’ップグレードは、&3作ζ₯­ε°&rγ‚’δ»‹γ—γ¦γ‚’γ‚€γƒ†γƒ γ‚’θΏ½εŠ γΎγŸγ―ε‰Šι™€γ™γ‚‹γ“γ¨γ§ζ§‹ζˆγ•γ‚ŒγΎγ™γ€‚&r\n\n&dグラップγƒͺングフック&rに適用できるすべてγγ‚’ップグレードは、&2EMI&rγ§η”¨ι€”γ‚’θ‘¨η€Ίγ‚­γƒΌγ‚’ζŠΌγ™γ“γ¨γ§η’Ίθͺγ§γγΎγ™γ€‚\nカスタムレシピγγγ‚Œγžγ‚Œγ«γ―、どγγ‚ˆγ†γͺε€‰ζ›΄γŒι©η”¨γ•γ‚Œγ¦γ„γ‚‹γ‹γ‚’θͺ¬ζ˜Žγ™γ‚‹γƒ†γ‚­γ‚ΉγƒˆγŒε«γΎγ‚Œγ¦γ„ます。", - "quests.tfg_tips.grapple_upgrades.desc.2": "をップグレードは、&dグラップγƒͺングフック&rγ‚’&bγƒγƒ³γƒžγƒΌ&rγ¨γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ«δ½Ώη”¨γ—γŸ&aをむテム&rγ§γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γ“γ¨γ§ε‰Šι™€γ§γγΎγ™(ζΆˆθ²»γ―γ•γ‚ŒγΎγ›γ‚“)γ€‚γ‚―γƒ©γƒ•γƒˆγ―γ€γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γŒε‰Šι™€γ•γ‚ŒγŸ&dフック&rγ¨γ€ζœ€εˆγ«γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ«δ½Ώη”¨γ—γŸγ‚’γ‚€γƒ†γƒ γ‚’θΏ”γ—γΎγ™γ€‚γ—γŸγŒγ£γ¦γ€2぀γγ‚’γ‚€γƒ†γƒ γŒθΏ”γ•γ‚ŒγΎγ™οΌ こγγƒ€γ‚¦γƒ³γ‚°γƒ¬γƒΌγƒ‰γγƒ—γƒ­γ‚»γ‚Ήγ―γ€γγ‚Œγžγ‚Œγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚―γ‚¨γ‚Ήγƒˆγ§η‰Ήγ«ζ˜Žθ¨˜γ•γ‚Œγ¦γ„γͺγ„ι™γ‚Šγ€γ™γΉγ¦γγ‚’ップグレードγγƒ‡γƒ•γ‚©γƒ«γƒˆγε‹•δ½œγ§γ™γ€‚\n\n&lγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ―δΈŠζ›Έγγ§γγΎγ›γ‚“γ€‚&7LV&fヒーターから&bMV&fγƒ’γƒΌγ‚ΏγƒΌγ«γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ™γ‚‹ε ΄εˆγ―γ€ζœ€εˆγ«&7LV&fγƒ’γƒΌγ‚ΏγƒΌγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚’ε‰Šι™€γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.grapple_upgrades.desc.1": "&dグラップγƒͺングフック&rは、&3作ζ₯­ε°&rγ§γ‚’γ‚€γƒ†γƒ γ‚’θΏ½εŠ γΎγŸγ―ε‰Šι™€γ™γ‚‹γ“γ¨γ§ζ”Ήι€ γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&r\n\n&dグラップγƒͺングフック&rに適用できるすべてγγ‚’ップグレードは、&2EMI&rγ§η”¨ι€”γ‚’θ‘¨η€Ίγ‚­γƒΌγ‚’ζŠΌγ™γ“γ¨γ§η’Ίθͺγ§γγΎγ™γ€‚\nレシピには、どγγ‚ˆγ†γͺε€‰ζ›΄γŒι©η”¨γ•γ‚Œγ¦γ„γ‚‹γ‹γ‚’θͺ¬ζ˜Žγ™γ‚‹γƒ†γ‚­γ‚ΉγƒˆγŒθΌ‰γ£γ¦γ„ます。", + "quests.tfg_tips.grapple_upgrades.desc.2": "をップグレードは、&dグラップγƒͺングフック&rγ‚’&bγƒγƒ³γƒžγƒΌ&rγ¨γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ«δ½Ώη”¨γ—γŸ&aをむテム&rγ§γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γ¨ε€–γ™γ“γ¨γŒγ§γγΎγ™(ζΆˆθ²»γ―γ•γ‚ŒγΎγ›γ‚“)。\nγ‚―γƒ©γƒ•γƒˆγ―γ€γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γŒε€–γ‚ŒγŸ&dフック&rγ¨γ€ζœ€εˆγ«γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ«δ½Ώη”¨γ—γŸγ‚’γ‚€γƒ†γƒ γ‚’θΏ”γ—γΎγ™γ€‚γ—γŸγŒγ£γ¦γ€2぀γγ‚’γ‚€γƒ†γƒ γŒθΏ”γ•γ‚ŒγΎγ™οΌ\nこγγƒ€γ‚¦γƒ³γ‚°γƒ¬γƒΌγƒ‰γε·₯η¨‹γ―γ€γγ‚Œγžγ‚Œγγ‚―γ‚¨γ‚Ήγƒˆγ§η‰Ήγ«ζ˜Žθ¨˜γ•γ‚Œγ¦γ„γͺγ„ι™γ‚Šγ€γ™γΉγ¦γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ§ε…±ι€šγ§γ™γ€‚\n\n&lγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ―δΈŠζ›Έγγ§γγΎγ›γ‚“γ€‚&7LV&fヒーターから&bMV&fγƒ’γƒΌγ‚ΏγƒΌγ«γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ™γ‚‹ε ΄εˆγ―γ€ζœ€εˆγ«&7LV&fγƒ’γƒΌγ‚ΏγƒΌγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚’ε‰Šι™€γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.grapple_length.title": "グラップγƒͺングフックγγ‚’ップグレード:長さ", "quests.tfg_tips.grapple_length.subtitle": "長いもγγ«γ―ε·»γ‹γ‚Œγ‚", "quests.tfg_tips.grapple_length.desc": "γƒ‡γƒ•γ‚©γƒ«γƒˆγ§γ―γ€&dグラップγƒͺングフック&rγ&b長さは80ブロック&rです。&aロープコむル&rγ‚’1γ€θΏ½εŠ γ™γ‚‹γ”γ¨γ«γ€&cさらに20ブロック&rεˆ†ε»Άι•·γ§γγΎγ™γ€‚ζœ€ε€§γ―200ブロックです。\n\n長さは&aγƒŠγ‚€γƒ•&rγ§γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γ“γ¨γ§&3ηŸ­γγ™γ‚‹&rγ“γ¨γŒγ§γγ€1ε›žγ«γ€γ&220γšγ€ζΈ›γ‚‰γ—&rγ€ζœ€ε°20γƒ–γƒ­γƒƒγ‚―γΎγ§ζΈ›γ‚‰γ™γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.grapple_motor.title": "グラップγƒͺングフックγγ‚’ップグレード:γƒ’γƒΌγ‚ΏγƒΌ", "quests.tfg_tips.grapple_motor.subtitle": "γ‚‚γŸγ‚‚γŸγ—γ¦γ‚‹γ¨η½γ„γ¦γγœ", - "quests.tfg_tips.grapple_motor.desc": "&aヒーターをップグレード&rを使用すると、&dフック&rでθ‡ͺε‹•ε·»γε–γ‚ŠγŒε―θƒ½γ«γͺγ‚ŠγΎγ™γ€‚&cι«˜γƒ¬γƒ™γƒ«γγƒ’γƒΌγ‚ΏγƒΌ&rγ―γ€ε·»γε–γ‚‹εŠ›γ«γ‚ˆγ£γ¦&4落下ダパージ&rγ‚’ε—γ‘γ‚‹ε―θƒ½ζ€§γŒγ‚γ‚‹γŸγ‚γ€ζ³¨ζ„γŒεΏ…θ¦γ§γ™γ€‚\n\nヒーターは&2GregTech&rγι›»εœ§ιšŽε±€γ«εΏœγ˜γ¦ζ΅ιšŽεˆ†γ‘γ•γ‚Œγ¦γ„γΎγ™γ€‚γ‚―γƒ©γƒ•γƒˆγƒ¬γ‚·γƒ”γ«γ―γ€γ©γγ‚ˆγ†γͺγ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉγŒγ©γ‚Œγ γ‘ε€‰ζ›΄γ•γ‚ŒγŸγ‹γŒζ­£η’Ίγ«η€Ίγ•γ‚Œγ¦γ„γΎγ™γ€‚", + "quests.tfg_tips.grapple_motor.desc": "&aヒーターをップグレード&rを使用すると、&dフック&rでθ‡ͺε‹•ε·»γε–γ‚ŠγŒε―θƒ½γ«γͺγ‚ŠγΎγ™γ€‚\n&cι«˜γƒ¬γƒ™γƒ«γγƒ’γƒΌγ‚ΏγƒΌ&rγ―γ€ε·»γε–γ‚‹εŠ›γ«γ‚ˆγ£γ¦&4落下ダパージ&rγ‚’ε—γ‘γ‚‹ε―θƒ½ζ€§γŒγ‚γ‚‹γŸγ‚γ€ζ³¨ζ„γŒεΏ…θ¦γ§γ™γ€‚\n\nヒーターは&2GregTech&rγι›»εœ§ιšŽε±€γ«εΏœγ˜γ¦ζ΅ιšŽεˆ†γ‘γ•γ‚Œγ¦γ„γΎγ™γ€‚γ‚―γƒ©γƒ•γƒˆγƒ¬γ‚·γƒ”γ«γ―γ€γ©γγ‚ˆγ†γͺγ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉγŒγ©γ‚Œγ γ‘ε€‰ζ›΄γ•γ‚ŒγŸγ‹γŒζ­£η’Ίγ«η€Ίγ•γ‚Œγ¦γ„γΎγ™γ€‚", "quests.tfg_tips.grapple_smart_motor.title": "グラップγƒͺングフックγγ‚’ップグレード:γ‚ΉγƒžγƒΌγƒˆγƒ’γƒΌγ‚ΏγƒΌ", "quests.tfg_tips.grapple_smart_motor.subtitle": "γ“γ‚Œγ―γ©γ†γ‚„γ£γ¦δ½Ώγ†γ‚“γ γ‚", - "quests.tfg_tips.grapple_smart_motor.desc": "&aγ‚ΉγƒžγƒΌγƒˆγƒ’γƒΌγ‚ΏγƒΌγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰&rを使用すると、&3γ‚ΉγƒžγƒΌγƒˆγƒ’γƒΌγ‚ΏγƒΌγ‚·γ‚Ήγƒ†γƒ &rγŒζœ‰εŠΉγ«γͺγ‚ŠγΎγ™γ€‚ζœ€εˆγ«&bヒーターをップグレード&rγ‚’γ‚€γƒ³γ‚ΉγƒˆγƒΌγƒ«γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.grapple_smart_motor.desc": "&aγ‚ΉγƒžγƒΌγƒˆγƒ’γƒΌγ‚ΏγƒΌγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰&rを使用すると、&3γ‚ΉγƒžγƒΌγƒˆγƒ’γƒΌγ‚ΏγƒΌγ‚·γ‚Ήγƒ†γƒ &rγŒζœ‰εŠΉγ«γͺγ‚ŠγΎγ™γ€‚\nζœ€εˆγ«&bヒーターをップグレード&rγ‚’γ‚€γƒ³γ‚ΉγƒˆγƒΌγƒ«γ—γ¦γ„γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.grapple_field.title": "グラップγƒͺングフックγγ‚’ップグレード:反発フィールド", "quests.tfg_tips.grapple_field.subtitle": "見ててね[[γƒžγƒž]] ボク γŠη©Ίγ‚’ι£›γΆγ€γ‚ˆοΌ", - "quests.tfg_tips.grapple_field.desc": "&a反発フィールドをップグレード&rを使用すると、近くγγƒ–γƒ­γƒƒγ‚―γ‹γ‚‰εη™Ίγ•γ‚ŒγΎγ™γ€‚&cι«˜γƒ¬γƒ™γƒ«γεη™ΊεŠ›&rは&4落下ダパージ&rγ‚’εΌ•γθ΅·γ“γ™ε―θƒ½ζ€§γŒγ‚γ‚‹γŸγ‚γ€ζ³¨ζ„γŒεΏ…θ¦γ§γ™γ€‚\n\n反発フィールドは&2GregTech&rγι›»εœ§ιšŽε±€γ«εΎ“ってζ΅ιšŽεˆ†γ‘γ•γ‚Œγ¦γ„γΎγ™γ€‚γ‚―γƒ©γƒ•γƒˆγƒ¬γ‚·γƒ”γ«γ―γ€γ©γγ‚ˆγ†γͺγ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉγŒγ©γ‚Œγ γ‘ε€‰ζ›΄γ•γ‚ŒγŸγ‹γŒζ­£η’Ίγ«η€Ίγ•γ‚Œγ¦γ„γΎγ™γ€‚", + "quests.tfg_tips.grapple_field.desc": "&a反発フィールドをップグレード&rを使用すると、近くγγƒ–γƒ­γƒƒγ‚―γ‹γ‚‰εη™Ίγ•γ‚ŒγΎγ™γ€‚\n&cι«˜γƒ¬γƒ™γƒ«γεη™ΊεŠ›&rは&4落下ダパージ&rγ‚’εΌ•γθ΅·γ“γ™ε―θƒ½ζ€§γŒγ‚γ‚‹γŸγ‚γ€ζ³¨ζ„γŒεΏ…θ¦γ§γ™γ€‚\n\n反発フィールドは&2GregTech&rγι›»εœ§ιšŽε±€γ«εΎ“ってζ΅ιšŽεˆ†γ‘γ•γ‚Œγ¦γ„γΎγ™γ€‚γ‚―γƒ©γƒ•γƒˆγƒ¬γ‚·γƒ”γ«γ―γ€γ©γγ‚ˆγ†γͺγ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉγŒγ©γ‚Œγ γ‘ε€‰ζ›΄γ•γ‚ŒγŸγ‹γŒζ­£η’Ίγ«η€Ίγ•γ‚Œγ¦γ„γΎγ™γ€‚", "quests.tfg_tips.grapple_magnet.title": "グラップγƒͺングフックγγ‚’ップグレード:γƒ•γƒƒγ‚―γƒžγ‚°γƒγƒƒγƒˆ", "quests.tfg_tips.grapple_magnet.subtitle": "γͺγœγ γ‚γ†γ€ζƒΉγγ€γ‘γ‚‰γ‚Œγ‚‹", "quests.tfg_tips.grapple_magnet.desc": "&aγƒžγ‚°γƒγƒƒγƒˆγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰&rを使用すると、&dフック&rγŒθΏ‘γγγƒ–γƒ­γƒƒγ‚―γ«εΌ•γδ»˜γ‘γ‚‰γ‚Œγ€γγ£γ€γγ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚\n\nγƒžγ‚°γƒγƒƒγƒˆγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ―&2GregTech&rγη£εŒ–γ‚€γƒ³γ‚΄γƒƒγƒˆγ‚’δ½Ώη”¨γ—γ¦ζ΅ιšŽεˆ†γ‘γ•γ‚Œγ¦γŠγ‚Šγ€ζœ€γ‚‚εΌ±γ„γγ―&bη£εŒ–ι‰„&rγ§γ€ζœ€γ‚‚εΌ·γ„γγ―&bη£εŒ–γ‚΅γƒžγƒͺウム&rです。", @@ -3958,7 +4252,7 @@ "quests.tfg_tips.grapple_throw_speed.desc": "&aζŠ•ζ“²ι€ŸεΊ¦γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰&rを使用すると、&dフック&rγε°„ε‡Ίι€ŸεΊ¦γŒι€Ÿγγͺγ‚ŠγΎγ™γ€‚\n\nζŠ•ζ“²ι€ŸεΊ¦γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ―&2GregTech&rγι›»εœ§ιšŽε±€γ«εΎ“ってζ΅ιšŽεˆ†γ‘γ•γ‚Œγ¦γ„γΎγ™γ€‚γ‚―γƒ©γƒ•γƒˆγƒ¬γ‚·γƒ”γ«γ―γ€γ©γγ‚ˆγ†γͺγ‚Ήγƒ†γƒΌγ‚Ώγ‚ΉγŒγ©γ‚Œγ γ‘ε€‰ζ›΄γ•γ‚ŒγŸγ‹γŒζ­£η’Ίγ«η€Ίγ•γ‚Œγ¦γ„γΎγ™γ€‚", "quests.tfg_tips.grapple_double.title": "グラップγƒͺングフックγγ‚’ップグレード:ダブルフック", "quests.tfg_tips.grapple_double.subtitle": "ε€εŠ γ―ε·₯ζ₯­γεŸΊζœ¬", - "quests.tfg_tips.grapple_double.desc": "&aダブルフックをップグレード&rを使用すると、&d2぀γγ‚°γƒ©γƒƒγƒ—γƒͺングフック&rγ‚’θ§’εΊ¦γ‚’ε€‰γˆγ¦ζŠ•γ’γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ε„γƒ•γƒƒγ‚―γ‚’ε€‹εˆ₯γ«ζŠ•γ’γ‚‹γŸγ‚γγ‚­γƒΌγƒγ‚€γƒ³γƒ‰γ‚’θ¨­εšγ™γ‚‹γ“ともできます。", + "quests.tfg_tips.grapple_double.desc": "&aダブルフックをップグレード&rを使用すると、&d2぀γγ‚°γƒ©γƒƒγƒ—γƒͺングフック&rγ‚’θ§’εΊ¦γ‚’ε€‰γˆγ¦ζŠ•γ’γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n各フックを個εˆ₯γ«ζŠ•γ’γ‚‹γŸγ‚γγ‚­γƒΌγƒγ‚€γƒ³γƒ‰γ‚’θ¨­εšγ™γ‚‹γ“ともできます。", "quests.tfg_tips.grapple_gravity_50.title": "グラップγƒͺングフックγγ‚’ップグレード:ι‡εŠ›εŠζΈ›", "quests.tfg_tips.grapple_gravity_50.subtitle": "εŽ³ε―†γͺη‰©η†ε­¦γ«εŸΊγ₯γ„γŸθ¨­θ¨ˆ", "quests.tfg_tips.grapple_gravity_50.desc": "&aι‡εŠ›εŠζΈ›γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰&rγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€γƒ•γƒƒγ‚―γŒε—γ‘γ‚‹ι‡εŠ›γε½±ιŸΏγŒεŠζΈ›γ—ます!\n\nγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚’ε‰Šι™€γ™γ‚‹γŸγ‚γ«γ―γ€εˆ₯γ&dγƒ˜γƒͺウムバケツ&rを使うγγ§γ―γͺγγ€δ»£γ‚γ‚Šγ«&cη©Ίγγƒγ‚±γƒ„&rγ‚’δ½Ώη”¨γ—γ¦γγ γ•γ„γ€‚ζœ€εˆγ«δ½Ώγ£γŸ&eγƒ˜γƒͺウム&rγŒθΏ”γ£γ¦γγΎγ™γ€‚", @@ -3967,13 +4261,13 @@ "quests.tfg_tips.grapple_gravity_0.desc": "&aη„‘ι‡εŠ›γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰&rγ―γ€εε‰γŒη€Ίγ™γ‚ˆγ†γ«γ€γƒ•γƒƒγ‚―γŒι‡εŠ›γε½±ιŸΏγ‚’受けγͺくγͺγ‚ŠγΎγ™γ€‚\n\nι‡εŠ›γ‚¨γƒ³γ‚Έγƒ³γƒ’γ‚Έγƒ₯ール&cγ‚’δ½Ώη”¨γ—γ¦γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚’ε‰Šι™€γ™γ‚‹&rγγ§γ―γͺγγ€δ»£γ‚γ‚Šγ«&dタングステンブロック&rを使用してください。", "quests.tfg_tips.grapple_tweaks.title": "グラップγƒͺングフックγγ‚’ップグレード:θͺΏζ•΄", "quests.tfg_tips.grapple_tweaks.subtitle": "θ§’εΊ¦γθͺΏζ•΄", - "quests.tfg_tips.grapple_tweaks.desc": "&aレンチ&rを使用すると、&dフック&rγ‚’ζŠ•γ’γ‚‹γ¨γγ&bδΈŠε‘γγθ§’εΊ¦&rγ‚’θͺΏζ•΄γ§γγΎγ™γ€‚&aドラむバー&rは、&aダブルフックをップグレード&rγ&bζ°΄εΉ³θ§’εΊ¦&rγ‚’θͺΏζ•΄γ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚", + "quests.tfg_tips.grapple_tweaks.desc": "&aレンチ&rを使用すると、&dフック&rγ‚’ζŠ•γ’γ‚‹γ¨γγ&bδΈŠε‘γγθ§’εΊ¦&rγ‚’θͺΏζ•΄γ§γγΎγ™γ€‚\n&aドラむバー&rは、&aダブルフックをップグレード&rγ&bζ°΄εΉ³θ§’εΊ¦&rγ‚’θͺΏζ•΄γ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚", "quests.tfg_tips.chalk.title": "チョーク", "quests.tfg_tips.chalk.subtitle": "ζ–Ήε‘ιŸ³η—΄γͺ方へ", - "quests.tfg_tips.chalk.desc": "&dチョーク&rを使用して、ブロックにさまざまγͺθ¨˜ε·γ‚’ζγ‘γΎγ™γ€‚&b洞ηͺŸζŽ’怜&r中に重要γͺε ΄ζ‰€γ‚’γƒžγƒΌγ‚―γ™γ‚‹γγ«ιžεΈΈγ«ε½Ήη«‹γ‘ます。\n\n&3γƒγƒ§γƒΌγ‚―γƒœγƒƒγ‚―γ‚Ή&rは、耇数γγƒγƒ§γƒΌγ‚―γ‚’1぀γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆγ«γ„γ‚Œγ¦γŠγ‘γΎγ™γ€‚γγ‚Œγ γ‘γ§γͺく、&6γ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³&rγͺどγη™Ίε…‰γ‚’γ‚€γƒ†γƒ γ‚’θΏ½εŠ γ—γ¦γ€γƒγƒ§γƒΌγ‚―γθ½ζ›Έγγ‚’ζš—ι—‡γ§ε…‰γ‚‰γ›γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ", + "quests.tfg_tips.chalk.desc": "&dチョーク&rを使うと、ブロックにさまざまγͺθ¨˜ε·γ‚’ζγ‘γΎγ™γ€‚&b洞ηͺŸζŽ’怜&r中に重要γͺε ΄ζ‰€γ‚’γƒžγƒΌγ‚―γ™γ‚‹γ“γ¨γͺγ©γ«ιžεΈΈγ«ε½Ήη«‹γ‘γΎγ™γ€‚\n\n&3γƒγƒ§γƒΌγ‚―γƒœγƒƒγ‚―γ‚Ή&rは、耇数γγƒγƒ§γƒΌγ‚―γ‚’1぀γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆγ«γ„γ‚Œγ¦γŠγ‘γΎγ™γ€‚\nγγ‚Œγ γ‘γ§γͺく、&6γ‚°γƒ­γ‚¦γ‚ΉγƒˆγƒΌγƒ³&rγͺどγη™Ίε…‰γ‚’γ‚€γƒ†γƒ γ‚’θΏ½εŠ γ—γ¦γ€γƒγƒ§γƒΌγ‚―γθ½ζ›Έγγ‚’ζš—ι—‡γ§ε…‰γ‚‰γ›γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ", "quests.tfg_tips.tape_measure.title": "パジャー", "quests.tfg_tips.tape_measure.subtitle": "ブロックγγ‚ΉγƒšγƒΌγ‚Ήγ‚’ζ‰‹ε‹•γ§ζ•°γˆγ‚‹γγ‚’やめましょう", - "quests.tfg_tips.tape_measure.desc": "&dTape Measure&rを使用すると、周囲γι•·γ•や距雒を測εšγ§γγΎγ™γ€‚γ“γ‚Œγ―、倧規樑γͺ建築するときに特に役立けます。&dε·»ε°Ί&rγ‚’ζŒγ‘γͺγŒγ‚‰γƒ–γƒ­γƒƒγ‚―γ«ε³γ‚―γƒͺックするだけで、測εšγ‚’ι–‹ε§‹γ§γγΎγ™γ€‚εœζ­’γ™γ‚‹γ«γ―γ€ε·»ε°Ίγ‚’ζŒγ‘γͺγŒγ‚‰εˆ₯γγƒ–ロックを右クγƒͺックします。", + "quests.tfg_tips.tape_measure.desc": "&dTape_Measure&rを使用すると、周囲γι•·γ•や距雒を測εšγ§γγΎγ™γ€‚γ“γ‚Œγ―、倧規樑γͺ建築するときに特に役立けます。\n&dε·»ε°Ί&rγ‚’ζŒγ‘γͺγŒγ‚‰γƒ–γƒ­γƒƒγ‚―γ«ε³γ‚―γƒͺックするだけで、測εšγ‚’ι–‹ε§‹γ§γγΎγ™γ€‚εœζ­’γ™γ‚‹γ«γ―γ€ε·»ε°Ίγ‚’ζŒγ‘γͺγŒγ‚‰εˆ₯γγƒ–ロックを右クγƒͺックします。", "quests.tfg_tips.blank_disc.title": "Etched:音ζ₯½ι‘‘θ³ž", "quests.tfg_tips.blank_disc.subtitle": "Gregγ¨δΈ€η·’γ«ιŸ³ζ₯½γ‚’ζ₯½γ—もう", "quests.tfg_tips.blank_disc.desc": "&2Etched&rγ―γ€γƒ¬γ‚³γƒΌγƒ‰γ‚’ζ–°γ—γ„ζ–Ήζ³•γ§ε†η”Ÿγ§γγ‚‹ιŸ³ζ₯½γƒ—レーダーMODです。Bandcamp、Soundcloudにあるε₯½γγͺζ›²γ‚’&dカスタムレコード&rγ§ε†η”Ÿγ—γŸγ‚Šγ€γ‚΅γ‚¦γƒ³γƒ‰γ‚€γƒ™γƒ³γƒˆγ‚’ι€šγ˜γ¦&aゲーム内ァウンド&rγͺγ©γ‚’ε†η”Ÿγ—γŸγ‚Šγ§γγΎγ™γ€‚\n\n&2Etched&rγζ—…γ‚’ε§‹γ‚γ‚‹γ«γ―γ€γΎγš&bη©Ίγγƒ¬γ‚³γƒΌγƒ‰&rγ‚’δ½œζˆγ—γ¦γγ γ•γ„γ€‚", @@ -3982,14 +4276,14 @@ "quests.tfg_tips.radio.desc": "&dラジγ‚ͺ&rを使用すると、ε₯½γγͺζ›²γ‚’ζ€œη΄’γ§γγΎγ™γ€‚ε³γ‚―γƒͺックして、URLγ‚„Minecraftγγ‚΅γ‚¦γƒ³γƒ‰γ‚€γƒ™γƒ³γƒˆγͺど、η›ηš„γζ›²γ‚’ε…₯εŠ›γ—γ¦γγ γ•γ„γ€‚", "quests.tfg_tips.dye_discs.title": "クラシック", "quests.tfg_tips.dye_discs.subtitle": "色θ€ͺγ›γ‚‹γ“γ¨γ―γ‚γ‚ŠγΎγ›γ‚“", - "quests.tfg_tips.dye_discs.desc": "&bη©Ίη™½γγƒ¬γ‚³γƒΌγƒ‰&rγ‚’ζŸ“ζ–™γ§ζΊ€γŸγ•γ‚ŒγŸ&a樽&rに桸すことで、バニラγγƒ¬γ‚³γƒΌγƒ‰γ‚’δ½œζˆγ§γγΎγ™γ€‚&dWait,13&rγ‚„&dBlocks!&rγͺどγγ‚―γƒ©γ‚·γƒƒγ‚―γ‚’γŠζ₯½γ—みください。", + "quests.tfg_tips.dye_discs.desc": "&bη©Ίη™½γγƒ¬γ‚³γƒΌγƒ‰&rγ‚’ζŸ“ζ–™γ§ζΊ€γŸγ•γ‚ŒγŸ&a樽&rに桸すことで、バニラγγƒ¬γ‚³γƒΌγƒ‰γ‚’δ½œζˆγ§γγΎγ™γ€‚\n&dWait,13&rγ‚„&dBlocks!&rγͺどγγ‚―γƒ©γ‚·γƒƒγ‚―γ‚’γŠζ₯½γ—みください。", "quests.tfg_tips.dye_discs.task": "クラシックレコード", "quests.tfg_tips.special_discs.title": "ユニーク品", "quests.tfg_tips.special_discs.subtitle": "εΈŒε°‘γͺ一品もγ...γ γ£γŸγ‚‚γ", "quests.tfg_tips.special_discs.desc": "εΏ…θ¦γ«εΏœγ˜γ¦&dユニークγͺレコード&rγ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™...", "quests.tfg_tips.disc_collector.title": "レコードコレクター", "quests.tfg_tips.disc_collector.subtitle": "εŒε…¨γͺコレクション", - "quests.tfg_tips.disc_collector.desc": "すべてγγƒ¬γ‚³γƒΌγƒ‰γ‚’δ½œγ‚ŒγΎγ—γŸγ‹οΌŸ\n\nεŸγ―ここには、レコードに閒連する2぀γιš γ•γ‚ŒγŸγ‚―γ‚¨γ‚ΉγƒˆγŒγ‚γ‚ŠγΎγ™γ€‚1぀は非常に&csuspicious&rγͺγ‚‚γγ§γ€γ‚‚う1぀はあγͺたγε†…γͺるドワーフとγγ€γͺγŒγ‚Šγ‚’ζ„Ÿγ˜γ‚‹εΏ…θ¦γŒγ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚ι ‘εΌ΅γ£γ¦γγ γ•γ„οΌ", + "quests.tfg_tips.disc_collector.desc": "すべてγγƒ¬γ‚³γƒΌγƒ‰γ‚’δ½œγ‚ŒγΎγ—γŸγ‹οΌŸ\n\nεŸγ―ここには、レコードに閒連する2぀γιš γ•γ‚ŒγŸγ‚―γ‚¨γ‚ΉγƒˆγŒγ‚γ‚ŠγΎγ™γ€‚\n1぀は非常に&csuspicious&rγͺγ‚‚γγ§γ€γ‚‚う1぀はあγͺたγε†…γͺるドワーフとγγ€γͺγŒγ‚Šγ‚’ζ„Ÿγ˜γ‚‹εΏ…θ¦γŒγ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚ι ‘εΌ΅γ£γ¦γγ γ•γ„οΌ", "quests.tfg_tips.amogus.title": "AMONGUS", "quests.tfg_tips.amogus.subtitle": "SUSSY BAKA!", "quests.tfg_tips.amogus.desc": "こγιš γ•γ‚ŒγŸεΏŒγΎγ‚γ—γγ‚―γ‚¨γ‚Ήγƒˆγ‚’θ§£ζ”Ύγ—γŸγ“γ¨γ‚’η₯η¦γ™γ‚‹γ€‚あγͺたγδΈζΊ€γŒζ±Ίγ—γ¦θ¦‹γ€γ‹γ‚ŠγΎγ›γ‚“γ‚ˆγ†γ«γ€‚", @@ -3998,7 +4292,7 @@ "quests.tfg_tips.label_album.desc": "ζœ€εˆγγƒ¬γ‚³γƒΌγƒ‰γ‚’&bエッチング&rするには、&dラベル&rγŒεΏ…θ¦γ§γ™γ€‚γ“γ‚Œγ‚‰γ―γ€η©Ίγγƒ¬γ‚³γƒΌγƒ‰γ¨εŒζ§˜γ«γ€ζŸ“色できます。\n\n&dをルバムカバー&rγ―γ€γ‚¨γƒƒγƒγƒ³γ‚°γ•γ‚ŒγŸγƒ¬γ‚³γƒΌγƒ‰γ‚’γ‚«γƒγƒΌγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚γ‚¨γƒƒγƒγƒ³γ‚°γ•γ‚ŒγŸγƒ¬γ‚³γƒΌγƒ‰γŒ&cSoundcloud&rγγ‚ˆγ†γͺγ‚΅γ‚€γƒˆγ‹γ‚‰γƒ‡γƒΌγ‚Ώγ‚’ε–εΎ—γ™γ‚‹ε ΄εˆγ€ζ›²γγ‚’むコンは16x16γƒ†γ‚―γ‚Ήγƒγƒ£γ«εœ§ηΈγ•γ‚ŒγΎγ™οΌ γƒ¬γ‚³γƒΌγƒ‰γ‚’δΏε­˜γ™γ‚‹γ«γ―γ€γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚’ι–‹γγ€γ‚’γƒ«γƒγƒ γ‚«γƒγƒΌγ‚’ιΈζŠžγ—γ¦γ€δΏε­˜γ—γŸγ„ιŸ³ζ₯½γƒ¬γ‚³γƒΌγƒ‰γ‚’右クγƒͺγƒƒγ‚―γ—γΎγ™γ€‚ι€šεΈΈγγƒ¬γ‚³γƒΌγƒ‰γ‚‚δΏε­˜γ§γγΎγ™γ€‚", "quests.tfg_tips.etching_disc.title": "ζœ€εˆγγƒ¬γ‚³γƒΌγƒ‰γγ‚¨γƒƒγƒγƒ³γ‚°", "quests.tfg_tips.etching_disc.subtitle": "εŽŸζ›²γ‚’εˆ»γ‚€", - "quests.tfg_tips.etching_disc.desc": "&3エッチングテーブル&rを使用して&bエッチング&rγ‚’ι–‹ε§‹γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γƒ†γƒΌγƒ–γƒ«γ‚’ε³γ‚―γƒͺγƒƒγ‚―γ™γ‚‹γ¨γ‚¨γƒƒγƒγƒ³γ‚°γ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γ‚€γ‚ΉγŒι–‹γγ€&aη©Ίη™½γγƒ¬γ‚³γƒΌγƒ‰&rと&a音ζ₯½γƒ©γƒ™γƒ«&rγ€γŠγ‚ˆγ³δΈŠιƒ¨γγƒγƒΌγ«ζœ‰εŠΉγͺァウンドソースを提供すると、レコードγζΊ–ε‚™γŒζ•΄γ„γΎγ™γ€‚\n\nァウンドソースには、&bBandcamp/Soundcloud URL&r(γ‚·γƒ³γ‚°γƒ«γΎγŸγ―γ‚’γƒ«γƒγƒ γ‚’ζŒ‡γ™γ“γ¨γŒγ§γγΎγ™)、&dγ‚²γƒΌγƒ ε†…γ‚΅γ‚¦γƒ³γƒ‰γ‚€γƒ™γƒ³γƒˆ&rγ€γŠγ‚ˆγ³γƒ‰γƒ©γ‚€γƒ–δΈŠγ&c.ogg/.wav/.mp3フゑむル&rγͺγ©γŒγ‚γ‚ŠγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ™γ‚‹γ«γ―、レコードをエッチングします。", + "quests.tfg_tips.etching_disc.desc": "&3エッチングテーブル&rを使用して&bエッチング&rγ‚’ι–‹ε§‹γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nテーブルを右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ‚¨γƒƒγƒγƒ³γ‚°γ‚€γƒ³γ‚ΏγƒΌγƒ•γ‚§γ‚€γ‚ΉγŒι–‹γγ€&aη©Ίη™½γγƒ¬γ‚³γƒΌγƒ‰&rと&a音ζ₯½γƒ©γƒ™γƒ«&rγ€γŠγ‚ˆγ³δΈŠιƒ¨γγƒγƒΌγ«ζœ‰εŠΉγͺァウンドソースを提供すると、レコードγζΊ–ε‚™γŒζ•΄γ„γΎγ™γ€‚\n\nァウンドソースには、&bBandcamp/SoundcloudγURL&r(γ‚·γƒ³γ‚°γƒ«γΎγŸγ―γ‚’γƒ«γƒγƒ γ‚’ζŒ‡γ™γ“γ¨γŒγ§γγΎγ™)、&dγ‚²γƒΌγƒ ε†…γ‚΅γ‚¦γƒ³γƒ‰γ‚€γƒ™γƒ³γƒˆ&rγ€γŠγ‚ˆγ³γƒ‰γƒ©γ‚€γƒ–δΈŠγ&c.ogg/.wav/.mp3フゑむル&rγͺγ©γŒγ‚γ‚ŠγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ™γ‚‹γ«γ―、レコードをエッチングします。", "quests.tfg_tips.disc_players.title": "レコードプレーダー", "quests.tfg_tips.disc_players.subtitle": "γ‚‚γ‘γ‚γ‚“γ€γƒ¬γ‚³γƒΌγƒ‰γ‚’ε†η”Ÿγ™γ‚‹γŸγ‚γ«οΌ", "quests.tfg_tips.disc_players.desc": "ι€šεΈΈγ&3γ‚Έγƒ₯γƒΌγ‚―γƒœγƒƒγ‚―γ‚Ή&rγ‚’δ½Ώη”¨γ—γ¦ιŸ³ζ₯½γ‚’ε†η”Ÿγ§γγΎγ™γŒγ€ζ¬‘γ2぀γγ‚’γ‚€γƒ†γƒ γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\n\n&dをルバムジγƒ₯γƒΌγ‚―γƒœγƒƒγ‚―γ‚Ή&r:耇数γγƒ¬γ‚³γƒΌγƒ‰γ‚’内部にε…₯γ‚Œγ¦&bγγ‚Œγ‚‰γ‚’εˆ‡γ‚Šζ›Ώγˆγ‚‹&rγ“γ¨γŒγ§γγΎγ™γ€‚ζ‹ η‚Ήγ«η½γ„γ¦γŠγγγ«ζœ€ι©γ§γ™γ€‚\n\n&dステレγ‚ͺラジカセ&r:ε€–ε‡Ίε…ˆγ§ιŸ³ζ₯½γ‚’ζŒγ‘ι‹γΆγ“γ¨γŒγ§γγΎγ™γ€‚", @@ -4009,7 +4303,7 @@ "quests.tfg_tips.DIGGY_DIGGY_HOLE.task": "ディγ‚ーディγ‚ーホールレコード", "quests.tfg_tips.camera.title": "ExposureοΌšζ€γ„ε‡Ίγ‚’εˆ‡γ‚Šε–γ‚‹", "quests.tfg_tips.camera.subtitle": "ここにいることγθ¨Όζ˜Ž", - "quests.tfg_tips.camera.desc": "&2Exposure&rは、ゲームにγƒͺをルγͺε†™ηœŸε‡¦η†γ‚’θΏ½εŠ γ™γ‚‹MODです。&bカパラ&rと&aフィルムロール&rγ‚’δ½œζˆγ—γ€ε†™ηœŸγ‚’ηΎεƒγ™γ‚‹γ“γ¨γ‹γ‚‰ε§‹γ‚γΎγ—γ‚‡γ†οΌγ€‚θ‰²θ£œζ­£γ€γƒ•γ‚£γƒ«γ‚ΏγƒΌγͺどγθ€‡ι›‘γͺγ‚·γ‚Ήγƒ†γƒ γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.camera.desc": "&2Exposure&rは、ゲームにγƒͺをルγͺε†™ηœŸε‡¦η†γ‚’θΏ½εŠ γ™γ‚‹MODです。\n&bカパラ&rと&aフィルムロール&rγ‚’δ½œζˆγ—γ€ε†™ηœŸγ‚’ηΎεƒγ™γ‚‹γ“γ¨γ‹γ‚‰ε§‹γ‚γΎγ—γ‚‡γ†οΌγ€‚θ‰²θ£œζ­£γ€γƒ•γ‚£γƒ«γ‚ΏγƒΌγͺどγθ€‡ι›‘γͺγ‚·γ‚Ήγƒ†γƒ γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.selfie.title": "θ‡ͺζ’γ‚Š", "quests.tfg_tips.selfie.subtitle": "映え!", "quests.tfg_tips.selfie.desc": "&bカパラ&rγ‚’ι–‹γ„γŸηŠΆζ…‹γ§γ€F5γ‚­γƒΌγ‚’ζŠΌγ—γ¦&bθ‡ͺζ’γ‚Šγƒ’ード&rγ‚’ζœ‰εŠΉγ«γ§γγΎγ™γ€‚γγεγι€šγ‚Šθ‡ͺζ’γ‚Šε†™ηœŸγ‚’ζ’γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", @@ -4019,7 +4313,7 @@ "quests.tfg_tips.camera_attachments.task": "γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³γƒ©γƒ³γ‚Ώγƒ³γΎγŸγ―ζœ›ι ι‘", "quests.tfg_tips.filters.title": "カラーフィルター", "quests.tfg_tips.filters.subtitle": "ε†™ηœŸγε€–観を倉更する。", - "quests.tfg_tips.filters.desc": "&aガラス板&rγ‚’δ½Ώγ†γ¨γ€ε†™ηœŸγ«&dフィルター&rを適用できます。カパラGUIを開いて、カパラフィルターγγ‚Ήγƒ­γƒƒγƒˆγ«ε‰²γ‚Šε½“てるだけです。&dフィルター&rγ‚’δ½Ώγ†γ¨γ€ε†™ηœŸγε…¨δ½“ηš„γͺ色γζ§‹ζˆγ‚’ε€‰ζ›΄γ§γγΎγ™γ€‚γŸγ¨γˆγ°γ€&3シをン&rγ‚„&bγƒ©γ‚€γƒˆγƒ–γƒ«γƒΌ&rγγƒ•γ‚£γƒ«γ‚ΏγƒΌγ‚’ι©η”¨γ—γ¦γ€ε†™ηœŸγ‚’γ‚ˆγ‚Šε†·γŸγθ¦‹γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.filters.desc": "&aガラス板&rγ‚’δ½Ώγ†γ¨γ€ε†™ηœŸγ«&dフィルター&rを適用できます。カパラGUIを開いて、カパラフィルターγγ‚Ήγƒ­γƒƒγƒˆγ«ε‰²γ‚Šε½“てるだけです。\n&dフィルター&rγ‚’δ½Ώγ†γ¨γ€ε†™ηœŸγε…¨δ½“ηš„γͺ色γζ§‹ζˆγ‚’ε€‰ζ›΄γ§γγΎγ™γ€‚γŸγ¨γˆγ°γ€&3シをン&rγ‚„&bγƒ©γ‚€γƒˆγƒ–γƒ«γƒΌ&rγγƒ•γ‚£γƒ«γ‚ΏγƒΌγ‚’ι©η”¨γ—γ¦γ€ε†™ηœŸγ‚’γ‚ˆγ‚Šε†·γŸγθ¦‹γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.filter.task": "ガラス板", "quests.tfg_tips.interplanar_projector.title": "interplanar_projector", "quests.tfg_tips.interplanar_projector.subtitle": "非現εŸηš„ζŠ€θ‘“", @@ -4035,7 +4329,7 @@ "quests.tfg_tips.photo.desc": "&dε†™ηœŸ&rを使って色々γͺγ“γ¨γŒγ§γγΎγ™γ€‚\n\nη©Ίη™½γ&aη΄™&rと元γηΎεƒγ«δ½Ώη”¨γ—γŸ&aζŸ“ζ–™&rを使用して&bコピー&rできます。\n\nγΎγŸγ€ε†™ηœŸγ‚’&bスタック&rγ—γ¦γ€γ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ«ζ•΄η†γ—γ¦γŠγγ“γ¨γ‚‚γ§γγΎγ™γ€‚ζ–Ήζ³•γ«γ€γ„γ¦γ―γ€EMIγ‚’η’Ίθͺγ—てください。\n\nγΎγŸγ€&6θŒΆθ‰²γζŸ“ζ–™&rγ‚’ι©η”¨γ—γ¦ε†™ηœŸγ‚’δΊΊε·₯ηš„γ«&cエむジング&rγ—γ€ι•·εΉ΄η΅ŒιŽγ—γŸγ‚ˆγ†γ«θ¦‹γ›γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", "quests.tfg_tips.photo_album.title": "γƒ•γ‚©γƒˆγ‚’γƒ«γƒγƒ ", "quests.tfg_tips.photo_album.subtitle": "思い出とは永遠です...", - "quests.tfg_tips.photo_album.desc": "&bε†™ηœŸγ‚’δΏη‘する&rε ΄ζ‰€γŒεΏ…θ¦γͺε ΄εˆγ―γ€&dγƒ•γ‚©γƒˆγ‚’γƒ«γƒγƒ &rγ‚’δ½œζˆγ—γΎγ™γ€‚γ•γ‚‰γ«γ€γ‚’γƒ«γƒγƒ ε†…γε„ε†™ηœŸγ«ε°γ•γͺθͺ¬ζ˜Žγ‚’ζ›ΈγθΎΌγ‚€γ“γ¨γ‚‚γ§γγΎγ™γ€‚ε†™ηœŸγ‚’ζ’γ£γŸε ΄ζ‰€γ‚„γƒ‘γƒ’γͺどを書き出してください!", + "quests.tfg_tips.photo_album.desc": "&bε†™ηœŸγ‚’δΏη‘する&rε ΄ζ‰€γŒεΏ…θ¦γͺε ΄εˆγ―γ€&dγƒ•γ‚©γƒˆγ‚’γƒ«γƒγƒ &rγ‚’δ½œζˆγ—γΎγ—γ‚‡γ†γ€‚γ•γ‚‰γ«γ€γ‚’γƒ«γƒγƒ ε†…γε„ε†™ηœŸγ«ε°γ•γͺθͺ¬ζ˜Žγ‚’書き込むこともできます。\nε†™ηœŸγ‚’ζ’γ£γŸε ΄ζ‰€γ‚„γƒ‘γƒ’γͺどを書き出してください!", "quests.tfg_tips.photo_frame.title": "γƒ•γ‚©γƒˆγƒ•γƒ¬γƒΌγƒ ", "quests.tfg_tips.photo_frame.subtitle": "ζœ€γ‚‚η΄ ζ™΄γ‚‰γ—γ„ε†™ηœŸγγŸγ‚γ«", "quests.tfg_tips.photo_frame.desc": "&dγƒ•γ‚©γƒˆγƒ•γƒ¬γƒΌγƒ &rγ‚’δ½Ώη”¨γ—γ¦ε†™ηœŸγ‚’θ‘¨η€Ίγ§γγΎγ™γ€‚γ‚’γ‚€γƒ†γƒ γι‘ηΈγ¨γ―η•°γͺγ‚Šγ€γƒ•γ‚©γƒˆγƒ•γƒ¬γƒΌγƒ γ―γ‚΅γ‚€γ‚Ίγ‚’1x1、2x2、3x3γ«γ™γ‚‹γ“γ¨γŒγ§γγ€γŠζ°—γ«ε…₯γ‚Šγε†™ηœŸγ‚’ζ‹ η‚Ήγ«ι£Ύγ‚ŒγΎγ™οΌ", @@ -4044,91 +4338,94 @@ "quests.tfg_tips.harpoon.desc": "&dハープーン&rはグラップγƒͺγƒ³γ‚°γƒ•γƒƒγ‚―γ«δΌΌγ¦γ„γΎγ™γŒγ€ηœŸδΈŠγ«γ—γ‹ι£›γ°γ›γšγ€γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ›γ‚“γ€‚ζŒ―γ‚Šε­γγ‚ˆγ†γ«γ‚Ήγ‚€γƒ³γ‚°γ™γ‚‹γ“とはできます!", "quests.tfg_tips.coil.title": "ジップラむン", "quests.tfg_tips.coil.subtitle": "をーををーー!", - "quests.tfg_tips.coil.desc": "&3コむル&rで2぀γ&dフェンス&rを右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€γ‚Έγƒƒγƒ—γƒ©γ‚€γƒ³γŒδ½œζˆγ•γ‚ŒγΎγ™οΌγ‚³γ‚€γƒ«γδΈ‹γ«η«‹γ‘、ハープーンをフェンスに撃け込めば、移動開始です。\n\n空いている手でコむルを右クγƒͺックすると、ラむンγγŸγ‚‹γΏγ‚’ε€‰ζ›΄γ§γγΎγ™γ€‚ε„γ‚³γ‚€γƒ«γ―δΈ€ζ–Ήι€šθ‘Œγ§γ€γƒ©γ‚€γƒ³θ‡ͺ体γγ€ŒηŸ’ε°γ€γ§η€Ίγ•γ‚ŒγΎγ™γ€‚εŒζ–Ήε‘γγƒ©γ‚€γƒ³γŒεΏ…要γͺε ΄εˆγ―γ€2぀γγ‚³γ‚€γƒ«γŒεΏ…要です。\n\nθ£…ι£ΎγγŸγ‚γ«δ»–γγƒ–ロックにコむルを設η½γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γŒγ€γ‚Έγƒƒγƒ—γƒ©γ‚€γƒ³γ¨γ—γ¦ζ©Ÿθƒ½γ™γ‚‹γ«γ―γƒ•γ‚§γƒ³γ‚Ήγ«γ€γ‘γ¦γ„γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.coil.desc": "&3コむル&rで2぀γ&dフェンス&rを右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€γ‚Έγƒƒγƒ—γƒ©γ‚€γƒ³γŒδ½œζˆγ•γ‚ŒγΎγ™οΌγ‚³γ‚€γƒ«γδΈ‹γ«η«‹γ‘、ハープーンをフェンスに撃け込めば、移動開始です。\n\n空いている手でコむルを右クγƒͺックすると、ラむンγγŸγ‚‹γΏγ‚’倉更できます。\nε„γ‚³γ‚€γƒ«γ―δΈ€ζ–Ήι€šθ‘Œγ§γ€γƒ©γ‚€γƒ³θ‡ͺ体γγ€ŒηŸ’ε°γ€γ§η€Ίγ•γ‚ŒγΎγ™γ€‚εŒζ–Ήε‘γγƒ©γ‚€γƒ³γŒεΏ…要γͺε ΄εˆγ―γ€2぀γγ‚³γ‚€γƒ«γŒεΏ…要です。\n\nθ£…ι£ΎγγŸγ‚γ«δ»–γγƒ–ロックにコむルを設η½γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γŒγ€γ‚Έγƒƒγƒ—γƒ©γ‚€γƒ³γ¨γ—γ¦ζ©Ÿθƒ½γ™γ‚‹γ«γ―γƒ•γ‚§γƒ³γ‚Ήγ«γ€γ‘γ¦γ„γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.self_defense.title": "ι˜²θ‘›", "quests.tfg_tips.self_defense.subtitle": "ηͺ“ε‰²γ‚Œγ¦γ­οΌŸ", - "quests.tfg_tips.self_defense.desc": "&3γ‚―γƒ©γƒ³γ‚―γƒˆγƒ©γƒƒγƒ—&rγ‚’ζ„Ÿεœ§ζΏγιš£γ«η½γγ¨γ€γγ‚Œγ‚’踏んだ動物(γΎγŸγ―γƒ’γƒ³γ‚Ήγ‚ΏγƒΌ)γ‚’εŒε…¨γ«ε‹•けγͺくします。ζ£γδΈ­γ§ι€ƒγ’ε›žγ‚‹ε‹•η‰©γ‚’ζ•γΎγˆγŸγ‚Šγ€εΆγ‚’εˆγ£γŸγ‚Šγ™γ‚‹γγ«ζœ€ι©γ§γ™γ€‚\n\n&3ζœ‰εˆΊι‰„η·š&rγ―γ€ι€šιŽγ—γ‚ˆγ†γ¨γ™γ‚‹γ¨γƒ€γƒ‘γƒΌγ‚Έγ‚’δΈŽγˆγΎγ™γ€‚", + "quests.tfg_tips.self_defense.desc": "&3γ‚―γƒ©γƒ³γ‚―γƒˆγƒ©γƒƒγƒ—&rγ‚’ζ„Ÿεœ§ζΏγιš£γ«η½γγ¨γ€γγ‚Œγ‚’踏んだ動物(γΎγŸγ―γƒ’γƒ³γ‚Ήγ‚ΏγƒΌ)γ‚’ζ•γˆγΎγ™γ€‚ζ£γδΈ­γ§ι€ƒγ’ε›žγ‚‹ε‹•η‰©γ‚’ζ•γΎγˆγŸγ‚Šγ€εΆγ‚’εˆγ£γŸγ‚Šγ™γ‚‹γγ«ζœ€ι©γ§γ™γ€‚\n\n&3ζœ‰εˆΊι‰„η·š&rγ―γ€ι€šιŽγ—γ‚ˆγ†γ¨γ™γ‚‹γ¨γƒ€γƒ‘γƒΌγ‚Έγ‚’δΈŽγˆγΎγ™γ€‚", + "quests.tfg_tips.lightning_rod.title": "避雷針", + "quests.tfg_tips.lightning_rod.subtitle": "ε°–γ‚“γŒγ‚ŠιŽγŽγ γ£γ€γƒΌγοΌοΌοΌ", + "quests.tfg_tips.lightning_rod.desc": "TerraFirmaCraftγδΈ–η•Œγ§γ―ι›·ι›¨γŒιžεΈΈγ«ζΏ€γ—γγ€ι›·γθ½γ‘γ‚‹ι »εΊ¦γ‚‚ε€šγ„γŸγ‚γ€η…©γ‚γ—γζ„Ÿγ˜γ‚‹γ“γ¨γŒγ‚γ‚‹γ§γ—γ‚‡γ†γ€‚\nそんγͺγ¨γγ―γ€ιŠ…γζ£’3ζœ¬γ‹γ‚‰δ½œγ‚‹γ“γ¨γŒγ§γγ‚‹&d避雷針&rγ‚’θ¨­η½γ—ましょう。\n\n&d避雷針&rγ‚’η½γ‘γ°γ€εŠεΎ„&3128ブロック&rγι›·γ―全て避雷針γδΈŠγ«γ—か落けγͺくγͺγ‚ŠγΎγ™.\nζ³¨ζ„οΌšγ“γ‚Œγ―ι›·γ‚’&oθͺ˜ε°Ž&rγ™γ‚‹γ γ‘γ§γ‚γ‚Šη„‘εŠΉεŒ–γ—γ¦γγ‚Œγ‚‹γ‚γ‘γ§γ―γ‚γ‚ŠγΎγ›γ‚“γ€‚ε»Άη„Όγ‚’ι˜²γγŸγ‚γ«ε―η‡ƒη‰©γ‹γ‚‰ι›’γ‚ŒγŸγ¨γ“γ‚γ«θ¨­η½γ—てください", "quests.tfg_tips.arborfirmacraft.title": "ArborFirmaCraft", "quests.tfg_tips.arborfirmacraft.subtitle": "ζœ¨γ¨ε…±γ«η”Ÿγγ‚‹", - "quests.tfg_tips.arborfirmacraft.desc": "&2ArborFirmaCraft&rは、&3TFG&rに耇数γζ–°γ—γ„ζœ¨γ‚’θΏ½εŠ γ™γ‚‹MODです。&dAncient Kapok&rγγ‚ˆγ†γͺζ—’ε­˜γTFCγζœ¨γδΊœη¨γ‚‚γ‚γ‚Œγ°γ€&aBaobab&rγ‚„&aHevea&rγγ‚ˆγ†γͺεŒε…¨γ«ζ–°γ—γ„ζœ¨γ‚‚γ‚γ‚ŠγΎγ™γ€‚δΈ€ιƒ¨γ―、バニラγζœ¨γθ‰²γ‚’思い出させるもγγŒγ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ­γ€‚\n\nこγγ‚»γ‚―ションでは、&bζ¨ΉζΆ²γζŠ½ε‡Ί&r(Treetap)に぀いてθͺ¬ζ˜Žγ—ます。\nγΎγŸγ€γ™γΉγ¦γ&2ArborFirmaCraft&rγζœ¨ζγ―&3Firmalife&rγŠγ‚ˆγ³&3Firma:civ&rγ¨δΊ’ζ›ζ€§γŒγ‚γ‚‹γ“γ¨γŒη’Ίθͺγ•γ‚Œγ¦γ„γΎγ™γ€‚", + "quests.tfg_tips.arborfirmacraft.desc": "&2ArborFirmaCraft&rは、&3TFG&rに耇数γζ–°γ—γ„ζœ¨γ‚’θΏ½εŠ γ™γ‚‹MODです。\n&dAncient_Kapok&rγγ‚ˆγ†γͺζ—’ε­˜γTFCγζœ¨γδΊœη¨γ‚‚γ‚γ‚Œγ°γ€&aBaobab&rγ‚„&aHevea&rγγ‚ˆγ†γͺεŒε…¨γ«ζ–°γ—γ„ζœ¨γ‚‚γ‚γ‚ŠγΎγ™γ€‚δΈ€ιƒ¨γ―、バニラγζœ¨γθ‰²γ‚’思い出させるもγγŒγ‚γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ­γ€‚\n\nこγγ‚»γ‚―ションでは、&bζ¨ΉζΆ²γζŠ½ε‡Ί&r(Treetap)に぀いてθͺ¬ζ˜Žγ—ます。\nγΎγŸγ€γ™γΉγ¦γ&2ArborFirmaCraft&rγζœ¨ζγ―&3Firmalife&rγŠγ‚ˆγ³&3Firma:civ&rγ¨δΊ’ζ›ζ€§γŒγ‚γ‚‹γ“γ¨γŒη’Ίθͺγ•γ‚Œγ¦γ„γΎγ™γ€‚", "quests.tfg_tips.treetap.title": "ツγƒͺータップ", "quests.tfg_tips.treetap.subtitle": "ζ˜”γͺγŒγ‚‰γζ¨ΉζΆ²ζŽ‘集法", - "quests.tfg_tips.treetap.desc": "&bζ¨ΉζΆ²γζŠ½ε‡Ί&rを開始するには、&3ι‡‘εΊŠ&rで&aιŠ…γγ‚€γƒ³γ‚΄γƒƒγƒˆ&rから&dTree_Tap&rγ‚’ι›ι€ γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n求めるη¨ι‘žγζ¨ΉζΆ²γ―ι©εˆ‡γͺζœ¨γ‹γ‚‰ζŠ½ε‡Ίγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚&3フィールドガむド&rγ&2ArborFirmaCraft&rγι …η›γ«γ‚γ‚‹&bTapping_Index&rγ«γ€γ“γ‚Œγ‚‰γζœ¨γθ¦‹γ€γ‘ζ–ΉγŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚γΎγŸγ€&bTapping_Tree&rγι …η›γ‚‚γ‚γ‚Šγ€ζ¨ΉζΆ²γ‚’ζŠ½ε‡Ίγ™γ‚‹ζ–Ήζ³•γ‚’ε­¦γΆγ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.treetap.desc": "&bζ¨ΉζΆ²γζŠ½ε‡Ί&rをするには、&3ι‡‘εΊŠ&rで&aιŠ…γγ‚€γƒ³γ‚΄γƒƒγƒˆ&rから&dTree_Tap&rγ‚’ι›ι€ γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n求めるη¨ι‘žγζ¨ΉζΆ²γ―ι©εˆ‡γͺζœ¨γ‹γ‚‰ζŠ½ε‡Ίγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚&3フィールドガむド&rγ&2ArborFirmaCraft&rγι …η›γ«γ‚γ‚‹&bTapping_Index&rγ«γ€γ“γ‚Œγ‚‰γζœ¨γθ¦‹γ€γ‘ζ–ΉγŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\nγΎγŸγ€&bTapping_Tree&rγι …η›γ‚‚γ‚γ‚Šγ€ζ¨ΉζΆ²γ‚’ζŠ½ε‡Ίγ™γ‚‹ζ–Ήζ³•γ‚’ε­¦γΆγ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.find_rosin_tree.title": "針葉樹", "quests.tfg_tips.find_rosin_tree.subtitle": "ε†·εΈ―γ‚’ζŽ’γ—γ¦γγ γ•γ„", - "quests.tfg_tips.find_rosin_tree.desc": "&a針葉樹&rγ―γ€γγ‚Œγͺγ‚Šγι™ζ°΄ι‡γŒγ‚γ‚‹&9寒い&rεœ°εŸŸγ§θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ζŠ½ε‡Ίγ—γŸ&b針葉樹梲&rは、&dη²˜ζ€§ζ¨Ήθ„‚&rと&d針葉樹脂&rγδΈ‘ζ–Ήγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ™γ‚‹γ«γ―、&o#tfg:rosin_logs&rγγ‚Ώγ‚°γŒδ»˜γ„γŸγƒ–γƒ­γƒƒγ‚―γ‚’&c見る&rεΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚EMIを使用して、#γ‚’ε…₯γ‚Œγ¦ζ€œη΄’γ™γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€γ©γγƒ–ロックにこγγ‚Ώγ‚°γŒδ»˜γ„ているかをηŸ₯γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.find_rosin_tree.desc": "&a針葉樹&rγ―γ€γγ‚Œγͺγ‚Šγι™ζ°΄ι‡γŒγ‚γ‚‹&9寒い&rεœ°εŸŸγ§θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nζŠ½ε‡Ίγ—γŸ&b針葉樹梲&rは、&dη²˜ζ€§ζ¨Ήθ„‚&rと&d針葉樹脂&rγδΈ‘ζ–Ήγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ™γ‚‹γ«γ―、&o#tfg:rosin_logs&rγγ‚Ώγ‚°γŒδ»˜γ„γŸγƒ–γƒ­γƒƒγ‚―γ‚’&c見る&rεΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nEMIを使用して、#γ‚’ε…₯γ‚Œγ¦ζ€œη΄’γ™γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€γ©γγƒ–ロックにこγγ‚Ώγ‚°γŒδ»˜γ„ているかをηŸ₯γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "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εœ°εŸŸγ§θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ζŠ½ε‡Ίγ—γŸ&bラテックス&rは、&dη²˜ζ€§ζ¨Ήθ„‚&rと&dεŠ η‘«ε‡¦η†γƒ©γƒ†γƒƒγ‚―γ‚Ή&rγδΈ‘ζ–Ήγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚εΎŒθ€…γ―γ€&3γ‚΄γƒ &rγ‚„&aゴム手蒋&rγθ£½ι€ γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚γ‚΄γƒ ζ‰‹θ’‹γ―&4ζœ‰ζ―’η‰©θ³ͺ&rとγζŽ₯θ§¦ζ™‚γ«δΏθ­·γ—γ¦γγ‚ŒγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ™γ‚‹γ«γ―、&o#tfg:latex_logs&rγγ‚Ώγ‚°γŒδ»˜γ„γŸγƒ–γƒ­γƒƒγ‚―γ‚’&c見る&rεΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚EMIを使用して、#γ‚’ε…₯γ‚Œγ¦ζ€œη΄’γ™γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€γ©γγƒ–ロックにこγγ‚Ώγ‚°γŒδ»˜γ„ているかをηŸ₯γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.find_latex_tree.desc": "&aラテックス&rγ‚’ζŽ‘γ‚‹γ“γ¨γŒγ§γγ‚‹γ‚΄γƒ γζœ¨γ―、倧量γι™ι›¨γŒγ‚γ‚‹&2ζΈ©ζš–γͺ&rεœ°εŸŸγ§θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nζŠ½ε‡Ίγ—γŸ&bラテックス&rは、&dη²˜ζ€§ζ¨Ήθ„‚&rと&dεŠ η‘«ε‡¦η†γƒ©γƒ†γƒƒγ‚―γ‚Ή&rγ2぀γδ½Ώγ„ι“γŒγ‚γ‚ŠγΎγ™γ€‚εΎŒθ€…γ―、&3γ‚΄γƒ &rγ‚„&aゴム手蒋&rγθ£½ι€ γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚γ‚΄γƒ ζ‰‹θ’‹γ―&4ζœ‰ζ―’η‰©θ³ͺ&rとγζŽ₯θ§¦ζ™‚γ«δΏθ­·γ—γ¦γγ‚ŒγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ™γ‚‹γ«γ―、&o#tfg:latex_logs&rγγ‚Ώγ‚°γŒδ»˜γ„γŸγƒ–γƒ­γƒƒγ‚―γ‚’&c見る&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εœ°εŸŸγ§θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ζŠ½ε‡Ίγ—γŸ&bシロップ&rは、&dツγƒͺγƒΌγ‚·γƒ₯ガー&rγ‚’δ½œζˆγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚γ“γ‚Œγ―γ€η ‚η³–γδ»£ζ›Ώε“γ§γ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ™γ‚‹γ«γ―、&o#tfg:syrup_logs&rγγ‚Ώγ‚°γŒδ»˜γ„γŸγƒ–γƒ­γƒƒγ‚―γ‚’&c見る&rεΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚EMIを使用して、#γ‚’ε…₯γ‚Œγ¦ζ€œη΄’γ™γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€γ©γγƒ–ロックにこγγ‚Ώγ‚°γŒδ»˜γ„ているかをηŸ₯γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.find_syrup_tree.desc": "&aシロップγζœ¨&rγ―γ€γγ‚Œγͺγ‚Šγι™ζ°΄ι‡γŒγ‚γ‚‹&2ζΈ©εΈ―&rεœ°εŸŸγ§θ¦‹γ€γ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nζŠ½ε‡Ίγ—γŸ&bシロップ&rは、&dツγƒͺγƒΌγ‚·γƒ₯ガー&rγ‚’δ½œγ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚γ“γ‚Œγ―γ€η ‚η³–γδ»£ζ›Ώε“γ§γ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγ‚’εŒδΊ†γ™γ‚‹γ«γ―、&o#tfg:syrup_logs&rγγ‚Ώγ‚°γŒδ»˜γ„γŸγƒ–γƒ­γƒƒγ‚―γ‚’&c見る&rεΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚EMIを使用して、#γ‚’ε…₯γ‚Œγ¦ζ€œη΄’γ™γ‚‹γ“γ¨γ«γ‚ˆγ‚Šγ€γ©γγƒ–ロックにこγγ‚Ώγ‚°γŒδ»˜γ„ているかをηŸ₯γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.create_conifer_rosin.title": "針葉樹脂", "quests.tfg_tips.create_conifer_rosin.subtitle": "γ€Œζ•…ιƒ·γ€γ‚’ζ€γ„ε‡Ίγ™", - "quests.tfg_tips.create_conifer_rosin.desc": "&d針葉樹脂&rは&bワックス&rγ¨γ—γ¦εˆ©η”¨γ§γγ€γ‚γ†γγγ‚„γγδ»–γγ‚’γ‚€γƒ†γƒ γ‚’δ½œζˆγ§γγΎγ™γ€‚\n\nι‡θ‘‰ζ¨Ήθ„‚γ‚’δ½œγ‚‹γ«γ―γ€&a針葉樹梲&rγ‚’&3ι‹γ‚„ι‡œ&rで&aζœ¨η‚­γη²‰&rγ¨ζ··γœγ¦ζ²Έι¨°γ•γ›γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.create_conifer_rosin.desc": "&d針葉樹脂&rは&bワックス&rγ¨γ—γ¦εˆ©η”¨γ§γγ€γ‚γ†γγγ‚„γγδ»–γγ‚’γ‚€γƒ†γƒ γ‚’δ½œζˆγ§γγΎγ™γ€‚\n\nι‡θ‘‰ζ¨Ήθ„‚γ‚’δ½œγ‚‹γ«γ―γ€&a針葉樹梲&rと&aζœ¨η‚­γη²‰&rγ‚’&3ι‹γ‚„ι‡œ&rにε…₯γ‚Œγ¦εŠ η†±γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.create_sticky_resin.title": "η²˜ζ€§ζ¨Ήθ„‚", "quests.tfg_tips.create_sticky_resin.subtitle": "いわゆるレジンです", - "quests.tfg_tips.create_sticky_resin.desc": "&dη²˜ζ€§ζ¨Ήθ„‚&rは、一部γγƒ¬γ‚·γƒ”でスラむムballγ¨γ—γ¦δ½Ώη”¨γ§γγΎγ™γ€‚γΎγŸγ€&aζ¨Ήθ„‚ε›žθ·―εŸΊζΏ&rと&aζŠ΅ζŠ—ε™¨&rγθ£½ι€ γ«γ‚‚δΈε―ζ¬ γ§γ‚γ‚Šγ€&7LV&r時代に進むにはかγͺγ‚Šγι‡γŒεΏ…要です。\n\nη²˜ζ€§ζ¨Ήθ„‚γ‚’δ½œγ‚‹γ«γ―γ€&aラテックス&rまたは&a針葉樹梲&rγ‚’&3ι‹γ‚„ι‡œ&rで&a木γη°&rγ¨ζ··γœγ¦ζ²Έι¨°γ•γ›γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.create_sticky_resin.desc": "&dη²˜ζ€§ζ¨Ήθ„‚&rは、一部γγƒ¬γ‚·γƒ”γ§γ‚Ήγƒ©γ‚€γƒ γƒœγƒΌγƒ«γ¨γ—γ¦δ½Ώη”¨γ§γγΎγ™γ€‚γΎγŸγ€&aζ¨Ήθ„‚ε›žθ·―εŸΊζΏ&rと&aζŠ΅ζŠ—ε™¨&rγθ£½ι€ γ«γ‚‚δΈε―ζ¬ γ§γ‚γ‚Šγ€&7LV&r時代に進むにはかγͺγ‚Šγι‡γŒεΏ…要です。\n\nη²˜ζ€§ζ¨Ήθ„‚γ‚’δ½œγ‚‹γ«γ―γ€&aラテックス&rまたは&a針葉樹梲&rと&a木γη°&rγ‚’&3ι‹γ‚„ι‡œ&rにε…₯γ‚Œγ¦εŠ η†±γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.create_tree_sugar.title": "ツγƒͺγƒΌγ‚·γƒ₯ガー", "quests.tfg_tips.create_tree_sugar.subtitle": "η§γ―γ‚«γƒ–γƒˆγƒ γ‚·", - "quests.tfg_tips.create_tree_sugar.desc": "&dツγƒͺγƒΌγ‚·γƒ₯ガー&rは砂糖γδ»£ζ›Ώε“γ§γ‚γ‚Šγ€δΈ»γ«ι£Ÿε“γζζ–™γ¨γ—γ¦δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚\n\nγγ‚Œγ‚’δ½œγ‚‹γ«γ―γ€&aζ¨ΉζΆ²(Sap)&rγ‚’η…詰めて&bζΏƒηΈζ¨ΉζΆ²(Concentrated_Sap)&rγ‚’δ½œγ‚Šγ€γγ‚Œγ‚’γ•γ‚‰γ«η…詰めて&dシロップ(Syrup)&rγ«γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ζœ€εΎŒγ«γ€δ½œζ₯­ε°γ‚’使用して&bシロップγγƒγ‚±γƒ„&rγ‚’&dツγƒͺγƒΌγ‚·γƒ₯ガー&rγ«ε€‰γˆγΎγ™γ€‚\nγ“γ‚Œγ‚‰γε·₯程で、&3鍋&rまたは&3ι‡œ&rγ«ζ£’γŒε…₯γ£γ¦γ‚‹εΏ…θ¦γŒγ‚γ‚‹γγ§ζ³¨ζ„γ—てください。", + "quests.tfg_tips.create_tree_sugar.desc": "&dツγƒͺγƒΌγ‚·γƒ₯ガー&rは砂糖γδ»£ζ›Ώε“γ§γ™γ€‚\n\nγγ‚Œγ‚’δ½œγ‚‹γ«γ―γ€&aζ¨ΉζΆ²(Sap)&rγ‚’η…詰めて&bζΏƒηΈζ¨ΉζΆ²(Concentrated_Sap)&rγ‚’δ½œγ‚Šγ€γγ‚Œγ‚’γ•γ‚‰γ«η…詰めて&dシロップ(Syrup)&rγ«γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ζœ€εΎŒγ«γ€δ½œζ₯­ε°γ‚’使用して&bシロップγγƒγ‚±γƒ„&rγ‚’&dツγƒͺγƒΌγ‚·γƒ₯ガー&rγ«ε€‰γˆγΎγ™γ€‚\nγ“γ‚Œγ‚‰γε·₯程で、&3鍋&rまたは&3ι‡œ&rγ«ζ£’γŒε…₯γ£γ¦γ‚‹εΏ…θ¦γŒγ‚γ‚‹γγ§ζ³¨ζ„γ—てください。", "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": "&bVacuum_Chamber&rγεŠ η†±γ‚―γƒ©γƒ•γƒˆγͺどγζ§˜γ€…γͺγƒ—γƒ­γ‚»γ‚Ήγ‚’η΅Œγ¦γ€&aラテックス&rは&d粗ゴムパルプ&rに加ε·₯γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ζ¬‘γ«γ€3぀γ&d粗ゴムパルプ&rγ‚’&bεˆι‡‘η²ΎιŒ¬η‚‰&rで&eη‘«ι»„η²‰ζœ«&rγ¨ζ··γœγ‚‹γ“γ¨γ§γ€&dγ‚΄γƒ γ‚€γƒ³γ‚΄γƒƒγƒˆ&rγ‚’δ½œζˆγ§γγΎγ™γ€‚γ“γ‚Œγ―γ€γ‚±γƒΌγƒ–γƒ«γη΅ΆηΈγ«ζœ€ι©γ§γ‚γ‚Šγ€&2ε…ˆι€²ζ™‚δ»£&rδ»₯ι™γ«ι€²γ‚€γŸγ‚γ«ιžεΈΈγ«εΏ…θ¦γ«γͺγ‚ŠγΎγ™...", + "quests.tfg_tips.create_rubber_ingot.desc": "&bVacuum_Chamber&rγεŠ η†±γ‚―γƒ©γƒ•γƒˆγͺどγζ§˜γ€…γͺε·₯η¨‹γ‚’η΅Œγ¦γ€&aラテックス&rは&d粗ゴムパルプ&rに加ε·₯γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n3぀γ&d粗ゴムパルプ&rγ‚’&bεˆι‡‘η²ΎιŒ¬η‚‰&rで&eη‘«ι»„η²‰ζœ«&rγ¨ζ··γœγ‚‹γ“γ¨γ§γ€&dγ‚΄γƒ γ‚€γƒ³γ‚΄γƒƒγƒˆ&rγ‚’δ½œζˆγ§γγΎγ™γ€‚\nγ“γ‚Œγ―γ€γ‚±γƒΌγƒ–γƒ«γη΅ΆηΈγ«ζœ€ι©γ§γ‚γ‚Šγ€&2ε…ˆι€²ζ™‚δ»£&rδ»₯ι™γ«γŠγ„γ¦ιžεΈΈγ«ι‡θ¦γͺ素材にγͺγ‚ŠγΎγ™...\n\n&9Tip:&rε…ˆγ«ι€²γ‚€γ«γ€γ‚Œγ¦γ€δ½Žγ‚³γ‚Ήγƒˆγ‹γ€εŠΉηŽ‡ηš„γ«δ½œγ‚‹γŸγ‚γζ‰‹ζ΅γŒζ¬‘γ€…γ¨ι–‹ζ”Ύγ•γ‚Œγ¦γ„γγΎγ™γ€‚θ©³γ—γγ―ιšζ™‚EMIγ‚’η’Ίθͺγ™γ‚‹γ¨γ‚ˆγ„γ§γ—γ‚‡γ†γ€‚γ‚΄γƒ γ―δ»ŠεΎŒγšγ£γ¨δ½Ώγ„ηΆšγ‘γ‚‹ι‡θ¦η΄ ζγͺγγ§γ€ζ—©γ‚γ«θ‡ͺε‹•εŒ–γ—γ¦γŠγγ¨ζœ¬ε½“γ«ζ₯½γ«γͺγ‚ŠγΎγ™γ€‚", "quests.tfg_tips.transportation.title": "移動手ζ΅", "quests.tfg_tips.transportation.subtitle": "こγεΊƒγ„εœ°δΈŠγ‚’ζ—…γ™γ‚‹γŸγ‚γ«", - "quests.tfg_tips.transportation.desc": "δΈ–η•Œγ―ιžεΈΈγ«εΊƒε€§γ§γ‚γ‚Šγ€η”Ÿε­˜γ¨ι€²ζ­©γγŸγ‚γθ³‡ζΊγ‚’求めて、あγͺγŸγ―ι γγΎγ§ζ—…γ™γ‚‹γ“γ¨γ«γͺγ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚γ“γ“γ§γ―γ€γ•γΎγ–γΎγͺ移動手ζ΅γ«γ€γ„てθͺ¬ζ˜Žγ—ます。", + "quests.tfg_tips.transportation.desc": "δΈ–η•Œγ―ιžεΈΈγ«εΊƒε€§γ§γ‚γ‚Šγ€η”Ÿε­˜γ¨ι€²ζ­©γγŸγ‚γθ³‡ζΊγ‚’求めて、あγͺγŸγ―ι γγΎγ§ζ—…γ™γ‚‹γ“γ¨γ«γͺγ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γ€‚\nここでは、さまざまγͺ移動手ζ΅γ«γ€γ„てθͺ¬ζ˜Žγ—ます。", "quests.tfg_tips.glider.title": "ハンググラむダー", "quests.tfg_tips.glider.subtitle": "ブレスγ‚ͺγƒ–γ‚Άγƒ―γ‚€γƒ«γƒ‰γŒθ¦‹γˆγ‚‹οΌ", - "quests.tfg_tips.glider.desc": "&dHang Glider&rγ―γ€ζ»‘η©Ίγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚&cι«˜γι£›γ³δΈŠγŒγ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“&rγŒγ€ι«˜ζ‰€γ‹γ‚‰ι£›γ³η«‹γ¦γ°γ€ι•·θ·ι›’γ‚’η§»ε‹•γ™γ‚‹γγ«γ‚‚役立぀でしょう。\n&bγ‚Έγ‚§γƒƒγƒˆγƒ‘γƒƒγ‚―&rとγη›Έζ€§γ‚‚ζŠœηΎ€γ§γ™οΌ", + "quests.tfg_tips.glider.desc": "&dHang_Glider&rγ‚’δ½Ώγˆγ°γ€ζ»‘η©Ίγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&cι«˜γι£›γ³δΈŠγŒγ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“&rγŒγ€ι«˜ζ‰€γ‹γ‚‰ι£›γ³η«‹γ¦γ°γ€ι•·θ·ι›’γ‚’η§»ε‹•γ™γ‚‹γγ«γ‚‚役立぀でしょう。\n&bγ‚Έγ‚§γƒƒγƒˆγƒ‘γƒƒγ‚―&rとγη›Έζ€§γ‚‚ζŠœηΎ€γ§γ™οΌ", "quests.tfg_tips.reinforced_glider.title": "εΌ·εŒ–γ‚°γƒ©γ‚€γƒ€γƒΌ", - "quests.tfg_tips.reinforced_glider.subtitle": "エγƒͺγƒˆγƒ©γ―γŠε₯½γγ§γ™γ‹...?", - "quests.tfg_tips.reinforced_glider.desc": "&5EV&rζ™‚δ»£γ«εˆ°ι”γ™γ‚‹γ¨δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚‹&aエγƒͺγƒˆγƒ©&rγ‚’&aハンググラむダー&rγ¨η΅„γΏεˆγ‚γ›γ‚‹γ“γ¨γ§γ€&dεΌ·εŒ–γ‚°γƒ©γ‚€γƒ€γƒΌ&rγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ―θ€δΉ…ζ€§γŒι«˜γγ€ζœ€ι«˜ι€ŸεΊ¦γ‚‚δΈŠζ˜‡γ—γ¦γ„γΎγ™γ€‚", + "quests.tfg_tips.reinforced_glider.subtitle": "ηΎ½ζ Ήγγ‚ˆγ†γ«θ»½γ„!", + "quests.tfg_tips.reinforced_glider.desc": "&dεΌ·εŒ–γ‚°γƒ©γ‚€γƒ€γƒΌ&rは、標準γ&aハンググラむダー&rγ‚’ε€§εΉ…γ«εΌ·εŒ–γ—γŸδΈŠδ½η‰ˆγ§γ™γ€‚&aγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &rγƒ•γƒ¬γƒΌγƒ γ‚’ζŽ‘η”¨γ—γ€εΈƒεœ°γ« &aεΌ·εŒ–εΈƒ&rまたは&a軽量γη”Ÿεœ°&rγ‚’δ½Ώγ†γ“γ¨γ§γ€ι€šεΈΈγ2倍γι€ŸεΊ¦γ§ζ»‘η©Ίγ§γγ‚‹γ‚ˆγ†γ«γͺγ£γ¦γ„γΎγ™γ€‚γ•γ‚‰γ«θ€δΉ…εŠ›γ‚‚ε‘δΈŠγ—γ¦γŠγ‚Šγ€η΅„η«‹ζ©Ÿγ§δΏη†γŒε―能γͺγŸγ‚γ€ι•·ζœŸι–“δ½Ώγ„ηΆšγ‘γ‚‰γ‚ŒγΎγ™γ€‚\n\n&3Protip:&r\n&4Beneath&rで手にε…₯γ‚‹&aη΅ΉγεΈƒ&rγ‚„&aγƒ•γ‚‘γƒ³γƒˆγƒ γεΈƒ&rγ‚’δ½Ώγ†γ¨γ€δ½œζˆγƒ»δΏη†γγ©γ‘らも必要γͺεΈƒγι‡γŒ&e3εˆ†γ1γ«ζΈ›γ‚Š&rγ€γ¨γ¦γ‚‚η΅ŒζΈˆηš„γ§γ™γ€‚\n&6HV&rγ«εˆ°ι”γ™γ‚Œγ°γ€&aポγƒͺカプロラクタム製γεΈƒ&rγ‚‚εˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", "quests.tfg_tips.immersive_aircraft.title": "Immersive Aircraft", "quests.tfg_tips.immersive_aircraft.subtitle": "γ•γ‚γ€ε€§η©Ίγ‚’ηΏ”γ‘γ‚ˆγ†γ€‚", - "quests.tfg_tips.immersive_aircraft.desc": "&2Immersive Aircraft&rはθˆͺη©Ίζ©Ÿγ«ι–’γ™γ‚‹Modγ§γ‚γ‚Šγ€η©Ίγ‚’ι£›γ³γ€ι•·θ·ι›’γ‚’η§»ε‹•γ§γγΎγ™γ€‚", + "quests.tfg_tips.immersive_aircraft.desc": "&2Immersive_Aircraft&rはθˆͺη©Ίζ©Ÿγ«ι–’γ™γ‚‹Modγ§γ‚γ‚Šγ€η©Ίγ‚’ι£›γ³γ€ι•·θ·ι›’γ‚’η§»ε‹•γ§γγΎγ™γ€‚", "quests.tfg_tips.aircraft_upgrades.title": "θˆͺ空機γγ‚’ップグレード", "quests.tfg_tips.aircraft_upgrades.subtitle": "私γδΉ—γ‚Šη‰©γ‚’ι£Ύγ‚Šη«‹γ¦γ‚‹", - "quests.tfg_tips.aircraft_upgrades.desc": "&2Immersive Aircraft&rでは&aθˆͺ空機γγ‚’ップグレード&rγŒε―θƒ½γ§γ€θˆͺ空機γζ€§θƒ½(ι€ŸεΊ¦γ€ι›’ι™Έι€ŸεΊ¦γ€η‡ƒζ–™ζΆˆθ²»ι‡γͺど)γ‚’ε‘δΈŠγ•γ›γ‚‹γŸγ‚γ«ε°Žε…₯できます。をップグレードには、&bι€šεΈΈ&rγγ‚‚γγ¨γ¨&d上位&rγγ‚‚γγ2η¨ι‘žγŒγ‚γ‚ŠγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγγ‚‚γγ―&bι€šεΈΈ&rγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ§γ™γ€‚γ™γΉγ¦δ½œγ‚ŒγΎγ™γ‹οΌŸ", + "quests.tfg_tips.aircraft_upgrades.desc": "&2Immersive_Aircraft&rでは&aθˆͺ空機γγ‚’ップグレード&rγŒε―θƒ½γ§γ€θˆͺ空機γζ€§θƒ½(ι€ŸεΊ¦γ€ι›’ι™Έι€ŸεΊ¦γ€η‡ƒζ–™ζΆˆθ²»ι‡γͺど)γ‚’ε‘δΈŠγ•γ›γ‚‹γŸγ‚γ«ε°Žε…₯できます。\nをップグレードには、&bι€šεΈΈ&rγγ‚‚γγ¨γ¨&d上位&rγγ‚‚γγ2η¨ι‘žγŒγ‚γ‚ŠγΎγ™γ€‚\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγγ‚‚γγ―&bι€šεΈΈ&rγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ§γ™γ€‚γ™γΉγ¦δ½œγ‚ŒγΎγ™γ‹οΌŸ", "quests.tfg_tips.steam_upgrades.title": "θˆͺ空機γγ‚’ップグレード:蒸気時代", "quests.tfg_tips.steam_upgrades.subtitle": "Immersive AircraftがGregTechに対応!", - "quests.tfg_tips.steam_upgrades.desc": "θˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ―&dιšŽε±€εŒ–&rγ•γ‚Œγ¦γ„γΎγ™γ€‚γ“γ‚Œγ―&3GregTech&rγιšŽε±€εŒ–γ‚·γ‚Ήγƒ†γƒ γ«εˆγ‚γ›γ¦γ€&8蒸気時代&rから&5EV時代&rまでγγ‚‚γγŒγ‚γ‚ŠγΎγ™γ€‚\n\n蒸気時代γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ―ζœ€γ‚‚η°‘ε˜γ§γ€ζœ€γ‚‚ζ—©γδ½œζˆγ§γγ€&bブラックスチール&rγηŸ₯θ­˜γŒεΏ…θ¦γ§γ™γ€‚\n\n&dθ’Έζ°—ζ©Ÿι–’γγ‚¨γƒ³γ‚Έγƒ³&rは、&eθ€‡θ‘‰ζ©Ÿ&rγ‚„&cι£›θ‘Œθ‰¦&rγͺどγζ΄—η·΄γ•γ‚ŒγŸθˆͺ空機γδ½œζˆγ«γ‚‚δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚", + "quests.tfg_tips.steam_upgrades.desc": "θˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ«γ―&dグレード&rγŒγ‚γ‚ŠγΎγ™γ€‚γ“γ‚Œγ―&3GregTech&rγιšŽε±€εŒ–γ‚·γ‚Ήγƒ†γƒ γ«εˆγ‚γ›γ¦γ€&7蒸気時代&rから&5EV時代&rまでγγ‚‚γγŒγ‚γ‚ŠγΎγ™γ€‚\n\n蒸気時代γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ―ζœ€γ‚‚η°‘ε˜γ§γ€ζœ€γ‚‚ζ—©γδ½œζˆγ§γγΎγ™γ€‚δ½œγ‚‹γ«γ―&bブラックスチール&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\n\n&dθ’Έζ°—ζ©Ÿι–’γγ‚¨γƒ³γ‚Έγƒ³&rは、&eθ€‡θ‘‰ζ©Ÿ&rγ‚„&cι£›θ‘Œθ‰¦&rγͺどγζ΄—η·΄γ•γ‚ŒγŸθˆͺ空機γδ½œζˆγ«γ‚‚δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚", "quests.tfg_tips.steam_upgrades.task": "スチームティをγθˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰", "quests.tfg_tips.lv_upgrades.title": "θˆͺ空機γγ‚’ップグレード:LV", "quests.tfg_tips.lv_upgrades.subtitle": "θ™šεΌγ€ŒθŒˆγ€", - "quests.tfg_tips.lv_upgrades.desc": "&7LV&rをップグレードは、蒸気時代γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚ˆγ‚Šγ‚‚γ‚γšγ‹γ«ε„ͺγ‚Œγ¦γŠγ‚Šγ€&4θ΅€ι‹Ό&rと&9青鋼&rγŒεΏ…θ¦γ§γ™γ€‚&dLVθˆͺ空エンジン&rにはεŸιš›γ&7LV&rγζ©Ÿζ’°ιƒ¨ε“γŒεΏ…要です。\n\n&3&lTips:&r&o &b破砕ホむール&fを使用して叀いをップグレードをγƒͺγ‚΅γ‚€γ‚―γƒ«γ—γ€ζΆˆθ²»γ—γŸζζ–™γδΈ€ιƒ¨γ‚’ε†εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.lv_upgrades.desc": "&7LV&rをップグレードは、蒸気時代γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚ˆγ‚Šγ‚‚γ‚γšγ‹γ«ζ€§θƒ½γŒε‘δΈŠγ—γ¦γ„γΎγ™γ€‚δ½œζˆγ«γ―&4θ΅€ι‹Ό&rと&9青鋼&rγŒεΏ…θ¦γ§γ™γ€‚&dLVθˆͺ空エンジン&rにはεŸιš›γ&7LV&rγζ©Ÿζ’°ιƒ¨ε“γŒεΏ…要です。\n\n&3&lTips:&r&o &b破砕ホむール&fを使用して叀いをップグレードをγƒͺγ‚΅γ‚€γ‚―γƒ«γ—γ€ζΆˆθ²»γ—γŸζζ–™γδΈ€ιƒ¨γ‚’ε†εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.lv_upgrades.task": "LVティをγθˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰", "quests.tfg_tips.mv_upgrades.title": "θˆͺ空機γγ‚’ップグレード:MV", "quests.tfg_tips.mv_upgrades.subtitle": "ι“εŠγ°", - "quests.tfg_tips.mv_upgrades.desc": "&bMV&rをップグレードは、こγι€²θ‘ŒηŠΆζ³γδΈ­ι–“η‚Ήγ§γ‚γ‚Šγ€&aγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &rγ‚’δΈ»γͺ材料とします。\n\n&aγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½εΌ·εŒ–γƒ—γƒ­γƒšγƒ©&rは、&dγ‚Έγƒ£γ‚€γƒ­γƒ€γ‚€γƒ³γ€ι£›θ‘Œθ‰¦&r、&d緋色γθ€‡θ‘‰ζ©Ÿ&rγͺどγγ»γ¨γ‚“どγδΈŠδ½θˆͺη©Ίζ©Ÿγ§δ½Ώη”¨γ•γ‚ŒγΎγ™γŒγ€&aMVθˆͺ空エンジン&rは&d緋色γθ€‡θ‘‰ζ©Ÿ&rでγγΏδ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚", + "quests.tfg_tips.mv_upgrades.desc": "&bMV&rをップグレードは、こγι€²θ‘ŒηŠΆζ³γδΈ­ι–“η‚Ήγ§γ‚γ‚Šγ€&aγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ &rが主γͺ材料です。\n\n&aγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½εΌ·εŒ–γƒ—γƒ­γƒšγƒ©&rは、&dγ‚Έγƒ£γ‚€γƒ­γƒ€γ‚€γƒ³γ€ι£›θ‘Œθ‰¦&r、&d緋色γθ€‡θ‘‰ζ©Ÿ&rγͺどγε€šγγδΈŠδ½θˆͺη©Ίζ©Ÿγ§εΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚&aMVθˆͺ空エンジン&rは&d緋色γθ€‡θ‘‰ζ©Ÿ&rで必要にγͺγ‚ŠγΎγ™γ€‚", "quests.tfg_tips.mv_upgrades.task": "MVティをγθˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰", "quests.tfg_tips.hv_upgrades.title": "θˆͺ空機γγ‚’ップグレード:HV", "quests.tfg_tips.hv_upgrades.subtitle": "あと少しで頂点へ", - "quests.tfg_tips.hv_upgrades.desc": "&6HV&rをップグレードは、θˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γζœ€εΎŒγ‹γ‚‰2η•ͺη›γγƒ†γ‚£γ‚’γ§γ‚γ‚Šγ€&aステンレス&rγ‚’δΈ»γͺ材料とします。", + "quests.tfg_tips.hv_upgrades.desc": "&6HV&rをップグレードは、θˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γζœ€εΎŒγ‹γ‚‰2η•ͺη›γγƒ†γ‚£γ‚’γ§γ‚γ‚Šγ€&aステンレス&rが主γͺ材料です。", "quests.tfg_tips.hv_upgrades.task": "HVティをγθˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰", "quests.tfg_tips.ev_upgrades.title": "θˆͺ空機γγ‚’ップグレード:EV", "quests.tfg_tips.ev_upgrades.subtitle": "γ“γ‚Œγ―ζœ¬ε½“γ«εˆζ³•γ§γ™γ‹οΌŸ", - "quests.tfg_tips.ev_upgrades.desc": "&5EV&rをップグレードは、θˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γζœ€εΎŒγγƒ†γ‚£γ‚’γ§γ‚γ‚Šγ€&aチタニウム&rγ‚’δΈ»γͺ材料として必要とします。", + "quests.tfg_tips.ev_upgrades.desc": "&5EV&rをップグレードは、θˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γζœ€εΎŒγγƒ†γ‚£γ‚’γ§γ‚γ‚Šγ€&aチタニウム&rが主γͺ材料にγͺγ‚ŠγΎγ™γ€‚", "quests.tfg_tips.ev_upgrades.task": "EVティをγθˆͺη©Ίζ©Ÿγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰", "quests.tfg_tips.aircraft_weapons.title": "θˆͺ空機γε…΅ε™¨", "quests.tfg_tips.aircraft_weapons.subtitle": "バンアむ!", - "quests.tfg_tips.aircraft_weapons.desc": "εΌ·ε€§γͺθ„…ε¨γ‚’ζ»…γΌγ—γŸγ„ε ΄εˆγ€γ‚‚γ—γγ―ζ•΅γ‚’θΉ‚θΊ™γ—γŸγ„ε ΄εˆγ€δΈ€ζ–Ήηš„γͺζ”»ζ’ƒθƒ½εŠ›γ‚’θͺ‡γ‚‹&d兡器&rγŒζ¬²γ—γγͺγ‚‹γ“γ¨γŒγ‚γ‚‹γ§γ—γ‚‡γ†γ€‚γ‚‚γ‘γ‚γ‚“γ€δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ‚ˆγ€‚\n\n兡器は、&bθˆͺ空機&rに乗っているときに、設εšγ—γŸ&c武器γδ½Ώη”¨&rγƒœγ‚Ώγƒ³γ‚’δ½Ώη”¨γ—γ¦η™Ίε°„γ§γγΎγ™γ€‚γγ‚Œγ‚‰γγ»γ¨γ‚“ど(&aζœ›ι ι‘&rを陀く)は、何らかγ&aεΌΎθ–¬&rγ‚’ζΆˆθ²»γ—γΎγ™γ€‚", + "quests.tfg_tips.aircraft_weapons.desc": "εΌ·ε€§γͺθ„…ε¨γ‚’ζ»…γΌγ—γŸγ„ε ΄εˆγ€γ‚‚γ—γγ―ζ•΅γ‚’θΉ‚θΊ™γ—γŸγ„ε ΄εˆγ€δΈ€ζ–Ήηš„γͺζ²ζ»…θƒ½εŠ›γ‚’θͺ‡γ‚‹&dθˆͺ空兡器&rγŒζ¬²γ—γγͺγ‚‹γ“γ¨γŒγ‚γ‚‹γ§γ—γ‚‡γ†γ€‚γ‚‚γ‘γ‚γ‚“γ€δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ‚ˆγ€‚\n\n兡器は、&bθˆͺ空機&rに乗っているときに、設εšγ—γŸ&c武器γδ½Ώη”¨&rキーを使用して発射できます。発射時には、何らかγ&aεΌΎθ–¬&rγ‚’ζΆˆθ²»γ—γΎγ™γ€‚", "quests.tfg_tips.airship.title": "ι£›θ‘ŒθˆΉ", "quests.tfg_tips.airship.subtitle": "γ‚γ‚Œγ―ι’¨θˆΉοΌŸ", - "quests.tfg_tips.airship.desc": "&3ι£›θ‘ŒθˆΉ&rγ―γ€ζ—…θ‘Œγ‚’γ™γ‚‹γγ«ζ―”θΌƒηš„ι©γ—γŸθˆͺη©Ίζ©Ÿγ§γ™γ€‚γŸγ γ—γ€δΈ»γͺη›ηš„はをむテムを運ぢことです。\nι£›θ‘ŒθˆΉγ«γ―γ€εˆθ¨ˆ&b16個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a3個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c1個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&rγŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.airship.desc": "&3ι£›θ‘ŒθˆΉ&rγ―γ€ζ—…θ‘Œγ«ι©γ—γŸθˆͺη©Ίζ©Ÿγ§γ™γ€‚γ‚’γ‚€γƒ†γƒ γι‹ζ¬θƒ½εŠ›γ«ε„ͺγ‚Œγ¦γ„γΎγ™γ€‚\nι£›θ‘ŒθˆΉγ«γ―γ€εˆθ¨ˆ&b16個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a3個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c1個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&rγŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.cargo_airship.title": "θ²¨η‰©ι£›θ‘ŒθˆΉ", "quests.tfg_tips.cargo_airship.subtitle": "εŸΊεœ°ε…¨δ½“γ‚’ι γγ«ι‹γΆεΏ…θ¦γŒγ‚γ‚‹ε ΄εˆ", - "quests.tfg_tips.cargo_airship.desc": "いく぀かγθΏ½εŠ γ&dエンジン、ローター&r、&d2぀γζœ¨η±&rγ‚’ε–γ‚Šδ»˜γ‘γ‚‹γ¨γ€&aι£›θ‘ŒθˆΉ&rが&3θ²¨η‰©ι£›θ‘ŒθˆΉ&rγ«γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ•γ‚ŒγΎγ™γ€‚\n\nι€šεΈΈγι£›θ‘ŒθˆΉγ‚ˆγ‚Šγ‚‚&4燃費はζ‚ͺくγͺγ‚ŠγΎγ™&r。\nγ§γ™γŒγ€θ²¨η‰©ι£›θ‘ŒθˆΉγ«γ―γ€εˆθ¨ˆ&b80個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&rと&a4個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&rγŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.cargo_airship.desc": "いく぀かγθΏ½εŠ γ&dエンジン、ローター&r、&d2぀γζœ¨η±&rγ‚’ε–γ‚Šδ»˜γ‘γ‚‹γ¨γ€&aι£›θ‘ŒθˆΉ&rが&3θ²¨η‰©ι£›θ‘ŒθˆΉ&rγ«γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ•γ‚ŒγΎγ™γ€‚\n\nι€šεΈΈγι£›θ‘ŒθˆΉγ‚ˆγ‚Šγ‚‚&4燃費はζ‚ͺくγͺγ‚ŠγΎγ™&r。そγδ»£γ‚γ‚Šγ€θ²¨η‰©ι£›θ‘ŒθˆΉγ«γ―γ€εˆθ¨ˆ&b80個γε€§εΉι‡γͺγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&rと&a4個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&rγŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.waghship.title": "ι£›θ‘Œθ‰¦", "quests.tfg_tips.waghship.subtitle": "ε’œθ½γ™γ‚‹γγŒγŠζ±ΊγΎγ‚Š", - "quests.tfg_tips.waghship.desc": "&3ι£›θ‘Œθ‰¦&rは&aι£›θ‘ŒθˆΉ&rγζœ€η΅‚ζ΅ιšŽγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ§γ‚γ‚Šγ€εˆθ¨ˆ&b66個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a6個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c2個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&rγŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.waghship.desc": "&3ι£›θ‘Œθ‰¦&rは&aι£›θ‘ŒθˆΉ&rγζœ€δΈŠδ½γƒ’γƒ‡γƒ«γ§γ‚γ‚Šγ€εˆθ¨ˆ&b66個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a6個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c2個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&rγŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.quadrocopter.title": "クをッドローター", "quests.tfg_tips.quadrocopter.subtitle": "γ‚γ‚Œγ―ι³₯?", "quests.tfg_tips.quadrocopter.desc": "&3クをッドローター&rγ―εŸΊη€Žηš„γͺ&aγƒ›γƒγƒΌγ‚―γƒ©γƒ•γƒˆ&rγ§γ‚γ‚Šγ€&b6個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a1個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c1個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&rγŒε«γΎγ‚Œγ¦γ„γΎγ™γ€‚\n\n簑単γͺζ“δ½œζ€§γ«ε„ͺγ‚Œγ¦γŠγ‚Šγ€&eε»Ίη―‰&rγͺどγδ½œζ₯­γ«ζœ€ι©γ§γ™γ€‚", "quests.tfg_tips.gyrodyne.title": "ジャむロダむン", "quests.tfg_tips.gyrodyne.subtitle": "η­‹θ‚‰εΌι£›θ‘Œ", - "quests.tfg_tips.gyrodyne.desc": "&3ジャむロダむン&rはユニークγͺθˆͺη©Ίζ©Ÿγ§γ‚γ‚Šγ€γͺんと&dη‡ƒζ–™γ‚’ζΆˆθ²»γ—γΎγ›γ‚“&rγ€‚δ»£γ‚γ‚Šγ«γ€η­‹θ‚‰γγΏγ§ι§†ε‹•します。そγγŸγ‚γ€&4η©Ίθ…Ήε€€&rγ‚’ζΆˆθ€—γ—γΎγ™γ€‚\n\n&b18個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a3個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c1個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&rγŒε«γΎγ‚Œγ¦γ„γΎγ™γ€‚", + "quests.tfg_tips.gyrodyne.desc": "&3ジャむロダむン&rはユニークγͺθˆͺη©Ίζ©Ÿγ§γ‚γ‚Šγ€γͺんと&dη‡ƒζ–™γ‚’ζΆˆθ²»γ—γΎγ›γ‚“&rγ€‚δ»£γ‚γ‚Šγ«γ€η­‹θ‚‰γγΏγ§ι§†ε‹•します。そγγŸγ‚γ€ι£›θ‘ŒδΈ­γ«γ―&4η©Ίθ…Ήε€€&rγ‚’ζΆˆθ€—γ—γΎγ™γ€‚\n\n&b18個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a3個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c1個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&rγŒε«γΎγ‚Œγ¦γ„γΎγ™γ€‚", "quests.tfg_tips.economy_plane.title": "γ‚¨γ‚³γƒŽγƒŸγƒΌζ©Ÿ", "quests.tfg_tips.economy_plane.subtitle": "γ‚γ‚Œγ―ι£›θ‘Œζ©ŸοΌŸ", "quests.tfg_tips.economy_plane.desc": "&3γ‚¨γ‚³γƒŽγƒŸγƒΌζ©Ÿ&rγ―ζœ€γ‚‚εˆζ­©ηš„γͺ&bι£›θ‘Œζ©Ÿ&rγ§γ™γ€‚ι£›θ‘Œζ©Ÿγζ“δ½œγ―γ€ι£›θ‘ŒθˆΉγ‚„γƒ›γƒγƒΌγ‚―γƒ©γƒ•γƒˆγ¨γ―η•°γͺγ‚Šγ€&oピッチング&r(ε·¦ε³γ‚’θ»Έγ¨γ—γŸε›žθ»’)と&oヨーむング&r(δΈŠδΈ‹γ‚’θ»Έγ¨γ—γŸε›žθ»’)γ«γ‚ˆγ£γ¦εˆΆεΎ‘γ•γ‚ŒγΎγ™γ€‚\n\n&b4個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&rと&a4個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&rγŒγ‚γ‚ŠγΎγ™γ€‚\n&dγ‚¨γ‚³γƒŽγƒŸγƒΌζ©Ÿ&rγ―γγ“γΎγ§ι€ŸεΊ¦γ―ε‡ΊγΎγ›γ‚“γŒγ€ι£›θ‘ŒθˆΉγ¨εŒζ§˜γ«γ€&2γ‚ˆγ‚Šε„ͺγ‚ŒγŸι£›θ‘Œζ©Ÿγ«γ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ§γγΎγ™&r。", @@ -4137,44 +4434,44 @@ "quests.tfg_tips.biplane.desc": "&3θ€‡θ‘‰ζ©Ÿ&rは&bγ‚¨γ‚³γƒŽγƒŸγƒΌζ©Ÿ&rγγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰η‰ˆγ§γ‚γ‚Šγ€&aθˆΉδ½“γ€θ’Έζ°—ζ©Ÿι–’γγ‚¨γƒ³γ‚Έγƒ³&rそして&aγ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ θ£½εΌ·εŒ–γƒ—γƒ­γƒšγƒ©&rγ‚’δ½Ώη”¨γ—γ¦δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&b16個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a4個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c1個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&rγŒε«γΎγ‚Œγ¦γ„γΎγ™γ€‚&dγ‚¨γ‚³γƒŽγƒŸγƒΌζ©Ÿ&rとは異γͺγ‚Šγ€&3θ€‡θ‘‰ζ©Ÿ&rは専用γγ‚Ήγƒ­γƒƒγƒˆγ«ε…₯γ‚ŒγŸγƒ­γ‚±γƒƒγƒˆθŠ±η«γ‚’δ½Ώη”¨γ—γ¦&4γƒ–γƒΌγ‚Ήγƒˆγ§γγΎγ™&r。", "quests.tfg_tips.scarlet_biplane.title": "緋色γθ€‡θ‘‰ζ©Ÿ", "quests.tfg_tips.scarlet_biplane.subtitle": "ここからγη΄ ζ™΄γ‚‰γ—γ„ηœΊγ‚", - "quests.tfg_tips.scarlet_biplane.desc": "&3緋色γθ€‡θ‘‰ζ©Ÿ&rは、&bι£›θ‘Œζ©Ÿ&rγ2぀γζœ€η΅‚γ‚’ップグレードγ1γ€γ§γ‚γ‚Šγ€&6HV&rγζ©Ÿζ’°γιƒ¨ε“γŒεΏ…要です。\n\n&b27個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a4個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c2個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&rγ€γŠγ‚ˆγ³ι€šεΈΈγθ€‡θ‘‰ζ©Ÿγ¨εŒζ§˜γ«&4γƒ–γƒΌγ‚Ήγ‚ΏγƒΌγ‚Ήγƒ­γƒƒγƒˆ&rγ‚‚ε«γΎγ‚Œγ¦γ„γΎγ™γ€‚\n\n&3緋色γθ€‡θ‘‰ζ©Ÿ&rγ―ι«˜δΎ‘γ§γ™γŒγ€θ€δΉ…ζ€§γ‚‚γ€ζœ€ε€§ι€ŸεΊ¦γ‚‚ε‘δΈŠγ—γ¦γŠγ‚Šγ€γγ—γ¦δ½•γ‚ˆγ‚Šγ‚‚γ‚€γ‚«γ—γ¦γ„γ‚‹γγ§δ½•γ‚‚ε•ι‘Œγ―γ‚γ‚ŠγΎγ›γ‚“γ€‚", + "quests.tfg_tips.scarlet_biplane.desc": "&3緋色γθ€‡θ‘‰ζ©Ÿ&rは、&bι£›θ‘Œζ©Ÿ&rγ2぀γζœ€δΈŠδ½γƒ’デルγ1぀です。\n\n&b27個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a4個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c2個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&rγ€γŠγ‚ˆγ³ι€šεΈΈγθ€‡θ‘‰ζ©Ÿγ¨εŒζ§˜γ«&4γƒ–γƒΌγ‚Ήγ‚ΏγƒΌγ‚Ήγƒ­γƒƒγƒˆ&rγ‚‚ε«γΎγ‚Œγ¦γ„γΎγ™γ€‚\n\n&3緋色γθ€‡θ‘‰ζ©Ÿ&rγ―ι«˜δΎ‘γ§γ™γŒγ€θ€δΉ…ζ€§γ‚‚γ€ζœ€ε€§ι€ŸεΊ¦γ‚‚ε‘δΈŠγ—γ¦γŠγ‚Šγ€γγ—γ¦δ½•γ‚ˆγ‚Šγ‚‚γ‚€γ‚«γ—γ¦γ„γ‚‹γγ§δ½•γ‚‚ε•ι‘Œγ―γ‚γ‚ŠγΎγ›γ‚“γ€‚", "quests.tfg_tips.aluminium_hopper.title": "γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γƒ›γƒƒγƒ‘γƒΌ", "quests.tfg_tips.aluminium_hopper.subtitle": "θ»½γ™γŽγ¦ζ°΄γ«ζ΅γγΎγ™οΌ", - "quests.tfg_tips.aluminium_hopper.desc": "&3γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γƒ›γƒƒγƒ‘γƒΌ&rは、&bι£›θ‘Œζ©Ÿ&rγ2぀γζœ€η΅‚γ‚’ップグレードγ1γ€γ§γ‚γ‚Šγ€&6HV&rγζ©Ÿζ’°γιƒ¨ε“γŒεΏ…要です。\n\n&b16個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a4個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c2個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&r、3぀γεΊ§εΈ­γ€γŠγ‚ˆγ³ι€šεΈΈγθ€‡θ‘‰ζ©Ÿγ¨εŒζ§˜γ«&4γƒ–γƒΌγ‚Ήγ‚ΏγƒΌγ‚Ήγƒ­γƒƒγƒˆ&rγ‚‚ε«γΎγ‚Œγ¦γ„γΎγ™γ€‚\n\nι«˜δΎ‘γ§γ™γŒγ€&3γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γƒ›γƒƒγƒ‘γƒΌ&rγ―ι«˜δΎ‘γ§γ™γŒγ€εˆθ¨ˆ3぀γεΊ§εΈ­γ¨ζ°΄γ«η€ι™Έγ§γγ‚‹γ“とでγͺγ‚“γ¨γ‹γγ‚Œγ‚’θ£œγ„γΎγ™γ€‚", + "quests.tfg_tips.aluminium_hopper.desc": "&3γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γƒ›γƒƒγƒ‘γƒΌ&rは、&bι£›θ‘Œζ©Ÿ&rγ2぀γζœ€δΈŠδ½γƒ’デルγ1぀です。\n\n&b16個γγ‚€γƒ³γƒ™γƒ³γƒˆγƒͺγ‚Ήγƒ­γƒƒγƒˆ&r、&a4個γγ‚’γƒƒγƒ—γ‚°γƒ¬γƒΌγƒ‰γ‚Ήγƒ­γƒƒγƒˆ&r、&c2個γζ­¦ε™¨γ‚Ήγƒ­γƒƒγƒˆ&r、3぀γεΊ§εΈ­γ€γŠγ‚ˆγ³ι€šεΈΈγθ€‡θ‘‰ζ©Ÿγ¨εŒζ§˜γ«&4γƒ–γƒΌγ‚Ήγ‚ΏγƒΌγ‚Ήγƒ­γƒƒγƒˆ&rγ‚‚ε«γΎγ‚Œγ¦γ„γΎγ™γ€‚\n\n&3γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ γƒ›γƒƒγƒ‘γƒΌ&rγ―ι«˜δΎ‘γ§γ™γŒγ€εˆθ¨ˆ3぀γεΊ§εΈ­γ¨ζ°΄γ«η€ι™Έγ§γγ‚‹γ“とでγͺγ‚“γ¨γ‹γγ‚Œγ‚’θ£œγ„γΎγ™γ€‚", "quests.tfg_tips.firmaciv.title": "Firma:Civilization", "quests.tfg_tips.firmaciv.subtitle": "γ•γ‚γ€ε€§ζ΅·γ‚’ι§†γ‘γ‚ˆγ†γ€‚", - "quests.tfg_tips.firmaciv.desc": "&2Firma:Civilization&rγ―γ€θˆΉγε»Ίι€ γ«γ‚ˆγ‚‹εΊƒε€§γͺ水域γζ¨ͺζ–­γŒγƒ†γƒΌγƒžγModです。θ‡ͺεˆ†γηΎεœ¨εœ°γη‰Ήεšγ«ε½Ήη«‹γ€γƒ„γƒΌγƒ«γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\nい぀もγγ‚ˆγ†γ«γ€&2フィールドガむド&rγ«γ―γ€γ‚―γ‚¨γ‚Ήγƒˆγ‚ˆγ‚Šγ‚‚θ©³η΄°γͺζƒ…ε ±γŒε«γΎγ‚Œγ¦γ„γΎγ™γ€‚\n\n&3&lTips:&r&o εΊη›€γ«γŠγ„γ¦ε·δΈ‹γ‚Šγ―ιžεΈΈγ«εΏ«ι©γͺ移動手ζ΅γ«γͺγ‚ŠγΎγ™γ€‚...まだγε ΄εˆγ―、川γθΏ‘くにεšδ½γ™γ‚‹γ“γ¨γ‚’ζ€œθ¨Žγ—γ¦γγ γ•γ„γ€‚", + "quests.tfg_tips.firmaciv.desc": "&2Firma:Civilization&rγ―γ€θˆΉγε»Ίι€ γ¨θˆͺθ‘ŒγŒγƒ†γƒΌγƒžγModです。θ‡ͺεˆ†γηΎεœ¨εœ°γη‰Ήεšγ«ε½Ήη«‹γ€γƒ„γƒΌγƒ«γ‚’δ½œζˆγ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚\nい぀もγγ‚ˆγ†γ«γ€&2フィールドガむド&rγ«γ―γ€γ‚―γ‚¨γ‚Ήγƒˆγ‚ˆγ‚Šγ‚‚θ©³η΄°γͺζƒ…ε ±γŒε«γΎγ‚Œγ¦γ„γΎγ™γ€‚\n\n&3&lTips:&r&oεΊη›€γ«γŠγ„γ¦ε·δΈ‹γ‚Šγ―ιžεΈΈγ«εΏ«ι©γͺ移動手ζ΅γ«γͺγ‚ŠγΎγ™γ€‚...まだγε ΄εˆγ―、川γθΏ‘くにεšδ½γ™γ‚‹γ“γ¨γ‚’ζ€œθ¨Žγ—γ¦γγ γ•γ„γ€‚", "quests.tfg_tips.firmaciv_info.title": "θˆͺζ΅·η”¨γ‚¬γ‚Έγ‚§γƒƒγƒˆ", "quests.tfg_tips.firmaciv_info.subtitle": "γ‚ˆγ‚ŠηΎεŸηš„γͺε†’ι™Ίγ‚’γ—γŸγ„ε ΄εˆ", - "quests.tfg_tips.firmaciv_info.desc": "&3Firma:Civ&rには4぀γη•°γͺγ‚‹γƒŠγƒ“γ‚²γƒΌγ‚·γƒ§γƒ³γƒ„γƒΌγƒ«γŒδ»˜ε±žγ—γ¦γŠγ‚Šγ€γγ‚Œγžγ‚ŒγŒθ‡ͺεˆ†γηΎεœ¨εœ°γ«ι–’する重要γͺ情報を提供します。\n&dSextant&r、&dNavigator's Timepiece&r、&dBarometer&r、&dCompass&rγŒγ‚γ‚ŠγΎγ™γ€‚θ©³η΄°γ«γ€γ„γ¦γ―γ€&2フィールドガむド&rを参照してください。\n\n&3&l伝承では...&r&o:本ζ₯、Firma:Civがε…₯γ£γ¦γ„γ‚‹γ¨γ€εΊ§ζ¨™γŒθ¦‹γ‚Œγͺくγͺγ£γ¦γ€γ“γ†γ„γ£γŸθˆͺ桷用γι“具を使わγͺいといけγͺくγͺγ‚‹γ‚“γ γ€‚γ§γ‚‚γγ‚Œγ―ε€§ε€‰γ™γŽγ‚‹γ¨ζ€γ£γŸγ‹γ‚‰γ€γΎγ‚γ€δ½Ώγ„γŸγ‘γ‚Œγ°δ½Ώγ£γ¦γ­γ€‚...といいます。", + "quests.tfg_tips.firmaciv_info.desc": "&3Firma:Civ&rには4぀γη•°γͺγ‚‹γƒŠγƒ“γ‚²γƒΌγ‚·γƒ§γƒ³γƒ„γƒΌγƒ«γŒδ»˜ε±žγ—γ¦γŠγ‚Šγ€γγ‚Œγžγ‚ŒγŒθ‡ͺεˆ†γηΎεœ¨εœ°γ«ι–’する重要γͺ情報を提供します。\n&dSextant&r、&dNavigator's Timepiece&r、&dBarometer&r、&dCompass&rγŒγ‚γ‚ŠγΎγ™γ€‚θ©³η΄°γ«γ€γ„γ¦γ―γ€&2フィールドガむド&rを参照してください。\n\n&3&lδ½™θ«‡οΌš&r&o本ζ₯、Firma:Civがε…₯γ£γ¦γ„γ‚‹γ¨γ€εΊ§ζ¨™γŒθ¦‹γ‚Œγͺくγͺγ£γ¦γ€γ“γ†γ„γ£γŸθˆͺ桷用γι“具を使わγͺいといけγͺくγͺγ‚‹γ‚“γ γ€‚γ§γ‚‚γγ‚Œγ―ε€§ε€‰γ™γŽγ‚‹γ¨ζ€γ£γŸγ‹γ‚‰γ€γΎγ‚γ€δ½Ώγ„γŸγ‘γ‚Œγ°δ½Ώγ£γ¦γ­γ€‚", "quests.tfg_tips.warfare.title": "桷上戦", "quests.tfg_tips.warfare.subtitle": "全弾発射!", "quests.tfg_tips.warfare.desc": "η²‰γ€…γ«εΉγι£›γ°γ—γŸγ„η›Έζ‰‹γŒγ„γŸγ‚‰γ€&bSloop&rに&dCannon&rとCannonballγ‚’ε–γ‚Šγ€γ‘γΎγ—γ‚‡γ†γ€‚\nCannonを発射するには、&a火薬、ζœͺη²Ύθ£½γη΄™&r、&aCannonball&rγ‚’θ£…ε‘«γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γγ—γ¦γ€&cη«ζ‰“ηŸ³γ¨ζ‰“γ‘ι‡‘&rγ§θŠ―γ«η«γ‚’γ€γ‘γΎγ™γ€‚", "quests.tfg_tips.kayak_materials.title": "カダック", "quests.tfg_tips.kayak_materials.subtitle": "γ‚«γƒ€γƒƒγ‚―γ‚’δ½œγ‚γ†", - "quests.tfg_tips.kayak_materials.desc": "&dKayak&rは、2η•ͺη›γ«η°‘ε˜γ«δ½œγ‚Œγ‚‹θˆΉγ§γ™γ€‚η΄ ζγ&aWaterproof_Hides&rには&bワックス&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚δ½•γ‚ˆγ‚Šγ€γ‚’γ‚€γƒ†γƒ γ¨γ—γ¦ε›žεŽγ™γ‚‹γ“γ¨γŒγ§γγ‚‹&cε”―δΈ€γ&rγƒœγƒΌγƒˆγ§γ‚‚γ‚γ‚ŠγΎγ™γ€‚&dδΈ€δΊΊδΉ—γ‚Š&rγ—γ‹γ§γγΎγ›γ‚“γŒγ€ι‹Όι‰„ζ™‚δ»£γ&dSloop&rγΎγ§γ€ζœ€ι€ŸγγƒœγƒΌγƒˆγ§γ™γ€‚", + "quests.tfg_tips.kayak_materials.desc": "&dKayak&rは、2η•ͺη›γ«η°‘ε˜γ«δ½œγ‚Œγ‚‹θˆΉγ§γ™γ€‚η΄ ζγ&aWaterproof_Hides&rには&bワックス&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\nγ“γ‚Œγ―γ€γ‚’γ‚€γƒ†γƒ γ¨γ—γ¦ε›žεŽγ™γ‚‹γ“γ¨γŒγ§γγ‚‹&cε”―δΈ€γ&rγƒœγƒΌγƒˆγ§γ‚‚γ‚γ‚ŠγΎγ™γ€‚\n&dδΈ€δΊΊδΉ—γ‚Š&rγ—γ‹γ§γγΎγ›γ‚“γŒγ€ι‹Όι‰„ζ™‚δ»£γ&dSloop&rγΎγ§γ€ζœ€ι€ŸγγƒœγƒΌγƒˆγ§γ™γ€‚", "quests.tfg_tips.create_kayak.title": "カダックをεŒζˆγ•せる", "quests.tfg_tips.create_kayak.subtitle": "ι€ŸγοΌ", - "quests.tfg_tips.create_kayak.desc": "&dKayak&rγŒγ‚γ‚Œγ°γ€ζ°΄δΈŠγ§γεΏ«ι©γͺδΈ€δΊΊζ—…γ‚’ζ₯½γ—γ‚€γ“γ¨γŒγ§γγΎγ™γ€‚γ•γ‚‰γ«ι€Ÿγι€²γ‚€γ«γ―、&bKayak_Paddle&r(Canoe_Paddleγ―δ½ΏγˆγΎγ›γ‚“)γ‚’δ½œζˆγ—γ¦γγ γ•γ„οΌ", + "quests.tfg_tips.create_kayak.desc": "&dKayak&rγŒγ‚γ‚Œγ°γ€ζ°΄δΈŠγ§γεΏ«ι©γͺδΈ€δΊΊζ—…γ‚’ζ₯½γ—γ‚€γ“γ¨γŒγ§γγΎγ™γ€‚\nγ•γ‚‰γ«ι€Ÿγι€²γ‚€γ«γ―γ€&bKayak_Paddle&r(Canoe_Paddleγ―δ½ΏγˆγΎγ›γ‚“)γ‚’δ½œγ£γ¦γΏγ¦γγ γ•γ„οΌ", "quests.tfg_tips.beneathxfirmaciv.title": "BeneathとFirma:Civに閒する免責事項", "quests.tfg_tips.beneathxfirmaciv.subtitle": "γ“γ‚Œγ‚’θͺ­γΎγͺγ„γ¨εΎŒζ‚”γ™γ‚‹γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“οΌ", - "quests.tfg_tips.beneathxfirmaciv.desc": "&dCanoe、Rowboat&r、&dSloop&rは&dCrimzonγζœ¨&rγ‚„&3Warpγζœ¨&rγ‹γ‚‰δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γŒγ€ζ‹εΏ΅γͺγŒγ‚‰γ€γ“γ‚Œγ‚‰γθ€η«ζ€§ζœ¨ζγ§δ½œγ‚‰γ‚ŒγŸγƒœγƒΌγƒˆγ―溢岩に対して&4θ€ζ€§γŒγ‚γ‚ŠγΎγ›γ‚“&rοΌγ“γ‚Œγ‚‰γ‚’δ½Ώη”¨γ—γ¦ζΊΆε²©ζΉ–γ‚’ζ¨ͺζ–­γ—γ‚ˆγ†γ¨γ™γ‚‹γ¨γ€&l恐ろしい死を遂げる&rことでしょう。", + "quests.tfg_tips.beneathxfirmaciv.desc": "&dCanoe、Rowboat&r、&dSloop&rは&dηœŸη΄…γζœ¨&rγ‚„&3ζ­ͺγ‚“γ ζœ¨&rγ‹γ‚‰δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γŒγ€ζ‹εΏ΅γͺγŒγ‚‰γ€γ“γ‚Œγ‚‰γθ€η«ζ€§ζœ¨ζγ§δ½œγ‚‰γ‚ŒγŸγƒœγƒΌγƒˆγ―溢岩に対して&4θ€ζ€§γŒγ‚γ‚ŠγΎγ›γ‚“οΌ&rγ“γ‚Œγ‚‰γ‚’δ½Ώη”¨γ—γ¦ζΊΆε²©ζΉ–γ‚’ζ¨ͺζ–­γ—γ‚ˆγ†γ¨γ™γ‚‹γ¨γ€&l恐ろしい死を遂げる&rことでしょう。", "quests.tfg_tips.canoe_materials.title": "γ‚«γƒŒγƒΌ", "quests.tfg_tips.canoe_materials.subtitle": "ζ₯½γ«δ½œγ‚ŒγΎγ™", - "quests.tfg_tips.canoe_materials.desc": "&dCanoe&rγ―γ€γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γγŒζœ€γ‚‚η°‘単γͺθˆΉγ§γ™γ€‚η‰Ήεšγη¨ι‘žγ&aε‰₯γŽε–γ‚‰γ‚ŒγŸδΈΈε€ͺ&rγγΏγ‚’δ½Ώγˆγ‚‹γ¨γ„γ†γ“γ¨γ«ζ³¨ζ„γ—γ¦γγ γ•γ„γ€‚δΈŠθ¨˜γγ‚Ώγ‚Ήγ‚―では、&bどγη¨ι‘žγζœ¨&rγŒδ½Ώγˆγ‚‹γ‹γŒη€Ίγ•γ‚Œγ¦γ„γΎγ™γ€‚\n&2フィールドガむド&rには、そγγƒ¦γƒ‹γƒΌγ‚―γͺζ§‹ι€ γ«ι–’γ™γ‚‹θ©³η΄°γŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nこγγƒœγƒΌγƒˆγ―、操縦者δ»₯ε€–γθΏ½εŠ γγƒ—γƒ¬γƒΌγƒ€γƒΌγ€γ‚¨γƒ³γƒ†γ‚£γƒ†γ‚£γ€γΎγŸγ―γƒγ‚§γ‚Ήγƒˆγ‚’ι‹γΆγ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.canoe_materials.desc": "&dCanoe&rγ―γ€γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γγŒζœ€γ‚‚η°‘単γͺθˆΉγ§γ™γ€‚η‰Ήεšγη¨ι‘žγ&aε‰₯γŽε–γ‚‰γ‚ŒγŸδΈΈε€ͺ&rγγΏγ‚’δ½Ώγˆγ‚‹γ¨γ„γ†γ“γ¨γ«ζ³¨ζ„γ—γ¦γγ γ•γ„γ€‚\n上記γγ‚Ώγ‚Ήγ‚―では、&bどγη¨ι‘žγζœ¨&rγŒδ½Ώγˆγ‚‹γ‹γŒη€Ίγ•γ‚Œγ¦γ„γΎγ™γ€‚\n&2フィールドガむド&rには、そγγƒ¦γƒ‹γƒΌγ‚―γͺζ§‹ι€ γ«ι–’γ™γ‚‹θ©³η΄°γŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nこγγƒœγƒΌγƒˆγ―、操縦者δ»₯ε€–γθΏ½εŠ γγƒ—γƒ¬γƒΌγƒ€γƒΌγ€γ‚¨γƒ³γƒ†γ‚£γƒ†γ‚£γ€γΎγŸγ―γƒγ‚§γ‚Ήγƒˆγ‚’ι‹γΆγ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.canoe_materials.task": "何らかγη«θ΅·γ“し", "quests.tfg_tips.create_canoe.title": "γ‚«γƒŒγƒΌγ‚’εŒζˆγ•せる", "quests.tfg_tips.create_canoe.subtitle": "εˆγ‚γ¦γε…±εŒδ½œζ₯­", "quests.tfg_tips.create_canoe.desc": "&dCanoe&rγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€εˆζœŸγ‹γ‚‰ζ°΄εŸŸγ‚’ζ¨ͺζ–­γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚γ‚ˆγ‚Šι€Ÿγη§»ε‹•γ—γŸγ„ε ΄εˆγ―γ€&bCanoe_Paddle&rγ‚’δ½œζˆγ—γ¦γγ γ•γ„οΌ\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγζœ€εˆγγ‚Ώγ‚Ήγ‚―γ‚’εŒδΊ†γ™γ‚‹γ«γ―、εŒζˆγ—γŸ&dCanoe&rγ‚’θ¦‹γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&3&lTips:&r&o 2δΊΊγγƒ—γƒ¬γƒΌγƒ€γƒΌγŒδΈ‘方ともPaddleγ‚’ζŒγ£γ¦γ„γ‚‹ε ΄εˆγ€ζœ€ι«˜ι€ŸεΊ¦γŒδΈŠζ˜‡γ—γΎγ™γ€‚γ‚‚γ‘γ‚γ‚“γ€γƒžγƒ«γƒγƒ—γƒ¬γ‚€ι™εšγ§γ™οΌ", "quests.tfg_tips.rowboat_materials.title": "ζ‰‹ζΌ•γŽγƒœγƒΌγƒˆ", "quests.tfg_tips.rowboat_materials.subtitle": "40秒で支度しγͺ", - "quests.tfg_tips.rowboat_materials.desc": "&dRowboat&rγ―γ‚ˆγ‚Šθ€‡ι›‘γͺζζ–™γŒεΏ…θ¦γ§γ€ι‰„ε™¨ζ™‚δ»£γΎγ§γƒ­γƒƒγ‚―γ•γ‚Œγ¦γ„γΎγ™γ€‚γγδ»£γ‚γ‚Šγ«γ€&b2δΊΊεˆ†γδΉ—ε’席と2぀γγ‚Ήγƒˆγƒ¬γƒΌγ‚Έ&rγ€γΎγŸγ―&cδΉ—ε’εΈ­γͺしで4぀γγ‚Ήγƒˆγƒ¬γƒΌγ‚Έ&rγεΉι‡γ‚’εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n&2フィールドガむド&rγ«θ©³γ—γθ¨˜θΌ‰γ•γ‚Œγ¦γ„γ‚‹γ€&aη‰Ήεšγη¨ι‘žγζœ¨&rγγΏγ‚’δ½Ώγ†γ“γ¨γŒγ§γγΎγ™γ€‚δ½œγ‚Šζ–Ήγ‚‚θ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ‚ˆγ€‚\n\nδ½œγ‚‹ιš›γ―γ™γΉγ¦εŒγ˜ζœ¨ζγ‚’δ½Ώη”¨γ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹γ“γ¨γ«ζ³¨ζ„γ—γ¦γγ γ•γ„οΌη•°γͺγ‚‹η¨ι‘žγζœ¨ζγ‚’ζ··γœγŸγ‚Šγ―しγͺいでください。", + "quests.tfg_tips.rowboat_materials.desc": "&dRowboat&rγ―γ‚ˆγ‚Šθ€‡ι›‘γͺζζ–™γŒεΏ…θ¦γ§γ€ι‰„ε™¨ζ™‚δ»£γΎγ§δ½œγ‚‹γ“γ¨γ―γ§γγΎγ›γ‚“γ€‚\nそγδ»£γ‚γ‚Šγ«γ€&b2δΊΊεˆ†γδΉ—ε’席と2぀γγ‚Ήγƒˆγƒ¬γƒΌγ‚Έ&rγ€γΎγŸγ―&cδΉ—ε’εΈ­γͺしで4぀γγ‚Ήγƒˆγƒ¬γƒΌγ‚Έ&rγεΉι‡γ‚’εˆ©η”¨γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n&2フィールドガむド&rγ«θ©³γ—γθ¨˜θΌ‰γ•γ‚Œγ¦γ„γ‚‹γ€&aη‰Ήεšγη¨ι‘žγζœ¨&rγγΏγ‚’δ½Ώγ†γ“γ¨γŒγ§γγΎγ™γ€‚δ½œγ‚Šζ–Ήγ‚‚θ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ‚ˆγ€‚\n\nδ½œγ‚‹ιš›γ―γ™γΉγ¦εŒγ˜ζœ¨ζγ‚’δ½Ώη”¨γ™γ‚‹εΏ…θ¦γŒγ‚γ‚‹γ“γ¨γ«ζ³¨ζ„γ—γ¦γγ γ•γ„οΌη•°γͺγ‚‹η¨ι‘žγζœ¨ζγ‚’ζ··γœγŸγ‚Šγ―しγͺいでください。", "quests.tfg_tips.create_rowboat.title": "ζ‰‹ζΌ•γŽγƒœγƒΌγƒˆγ‚’εŒζˆγ•せる", "quests.tfg_tips.create_rowboat.subtitle": "勇敒γͺζ΅·γη”·γ‚’η›ζŒ‡γ—て", - "quests.tfg_tips.create_rowboat.desc": "&dRowboat&rを使用すると、かγͺγ‚Šγι‡γγ‚’γ‚€γƒ†γƒ γ‚’ζ΅·γ‚’θΆŠγˆγ¦θΌΈι€γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚Šγ€ζ΅·ε€–ζŽ’η΄’γ€δΎ‹γˆγ°η†±εΈ―εœ°ζ–ΉγΈγζŽ’怜γͺγ©γ«ζœ€ι©γ§γ™οΌγ‚ˆγ‚Šι€Ÿγι€²γ‚€γ“γ¨γŒγ§γγ‚‹γ‚ˆγ†γ«γ€2぀γ&bOar&rγ‚’δ½œζˆγ—γ¦γγ γ•γ„οΌ\nζŸ“θ‰²γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™οΌ\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγζœ€εˆγγ‚Ώγ‚Ήγ‚―γ‚’εŒδΊ†γ™γ‚‹γ«γ―、εŒζˆγ—γŸ&dRowboat&rγ‚’θ¦‹γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&3&lTips:&r&o 2぀γδΉ—ε’εΈ­γ―γ€ε·γ‚„ζ΅·γ‚’η΅Œη”±γ—γ¦γ€η‰§η•œγγŸγ‚γ«ε‹•物γγ€γŒγ„γ‚’εΆγ«ζŒγ‘εΈ°γ‚‹γγ«ζœ€ι©γ§γ™γ€‚", + "quests.tfg_tips.create_rowboat.desc": "&dRowboat&rを使用すると、かγͺγ‚Šγι‡γγ‚’γ‚€γƒ†γƒ γ‚’ζ΅·γ‚’θΆŠγˆγ¦θΌΈι€γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚Šγ€ζ΅·ε€–ζŽ’η΄’γ€δΎ‹γˆγ°η†±εΈ―εœ°ζ–ΉγΈγζŽ’怜γͺγ©γ«ζœ€ι©γ§γ™οΌ\nγ‚ˆγ‚Šι€Ÿγι€²γ‚€γ“γ¨γŒγ§γγ‚‹γ‚ˆγ†γ«γ€2぀γ&bOar&rγ‚’δ½œζˆγ—γ¦γγ γ•γ„οΌ\nζŸ“θ‰²γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™οΌ\n\nこγγ‚―γ‚¨γ‚Ήγƒˆγζœ€εˆγγ‚Ώγ‚Ήγ‚―γ‚’εŒδΊ†γ™γ‚‹γ«γ―、εŒζˆγ—γŸ&dRowboat&rγ‚’θ¦‹γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n\n&3&lTips:&r&o 2぀γδΉ—ε’εΈ­γ―γ€ε·γ‚„ζ΅·γ‚’η΅Œη”±γ—γ¦γ€η‰§η•œγγŸγ‚γ«ε‹•物γγ€γŒγ„γ‚’εΆγ«ζŒγ‘εΈ°γ‚‹γγ«ζœ€ι©γ§γ™γ€‚", "quests.tfg_tips.sloop_under_construction_materials.title": "スループ", "quests.tfg_tips.sloop_under_construction_materials.subtitle": "γ‚γ‚Šγ£γŸγ‘γε€’をかき集め", - "quests.tfg_tips.sloop_under_construction_materials.desc": "&dSloop&rγ―γ€ζœ€γ‚‚ι«˜εΊ¦γͺθˆΉθˆΆγ§γ‚γ‚Šγ€δ½œγ‚‹γ«γ―&a鋼鉄&rγŒεΏ…θ¦γ§γ™γ€‚γ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ€ι‡‘εΊŠγ€δ½œζ₯­ε°γγŸγ‚γεεˆ†γͺγ‚ΉγƒšγƒΌγ‚ΉγŒγ‚γ‚ŠγΎγ™οΌδΏ‘γ˜γ‚‰γ‚Œγͺγ„γ»γ©ι«˜δΎ‘γ§γ€θˆͺζ΅·γ™γ‚‹γ«γ―η·΄ηΏ’γŒεΏ…θ¦γ§γ™γ€‚&2フィールドガむド&rには、建設方法とθˆͺ桷方法γθ©³η΄°γŒγ™γΉγ¦θ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nηΉ°γ‚ŠθΏ”γ—γΎγ™γŒγ€εŒγ˜θˆΉγ§η•°γͺγ‚‹η¨ι‘žγζœ¨ζγ‚’ζ··γœγ‚ˆγ†γ¨γ—γͺいでください。", + "quests.tfg_tips.sloop_under_construction_materials.desc": "&dSloop&rγ―γ€ζœ€γ‚‚ι«˜εΊ¦γͺθˆΉθˆΆγ§γ‚γ‚Šγ€δ½œγ‚‹γ«γ―&a鋼鉄&rγŒεΏ…θ¦γ§γ™γ€‚\nγ‚Ήγƒˆγƒ¬γƒΌγ‚Έγ€ι‡‘εΊŠγ€δ½œζ₯­ε°γγŸγ‚γεεˆ†γͺγ‚ΉγƒšγƒΌγ‚ΉγŒγ‚γ‚ŠγΎγ™οΌ\nδΏ‘γ˜γ‚‰γ‚Œγͺγ„γ»γ©ι«˜δΎ‘γ§γ€θˆͺζ΅·γ™γ‚‹γ«γ―η·΄ηΏ’γŒεΏ…θ¦γ§γ™γ€‚\n&2フィールドガむド&rには、建設方法とθˆͺ桷方法γθ©³η΄°γŒγ™γΉγ¦θ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\nηΉ°γ‚ŠθΏ”γ—γΎγ™γŒγ€εŒγ˜θˆΉγ§η•°γͺγ‚‹η¨ι‘žγζœ¨ζγ‚’ζ··γœγ‚ˆγ†γ¨γ—γͺいでください。", "quests.tfg_tips.sloop_under_construction_materials.task": "16xγε …ζœ¨", "quests.tfg_tips.create_sloop.title": "スループをεŒζˆγ•せる", "quests.tfg_tips.create_sloop.subtitle": "世はまさに倧θˆͺ桷時代!", @@ -4191,10 +4488,10 @@ "quests.tfg_tips.equines.desc": "&b馬、ロバ&rγ€γΎγŸγ―&bラバ&rを見぀けて、俑頼して&aιžγ‚’γ‹γ‘γ¦&rδΉ—γ‚Œγ‚‹γ‚ˆγ†γ«γ€εεˆ†γͺ&aθ¦ͺε―†εΊ¦&rγ‚’η―‰γδΈŠγ’γ¦γγ γ•γ„γ€‚γ‚΅γƒ‰γƒ«γ―ι©γ§δ½œγ‚ŒγΎγ™γ€‚\nγ•γ‚‰γ«γ€ι€ŸεΊ¦γƒšγƒŠγƒ«γƒ†γ‚£γͺしで&dγ‚«γƒΌγƒˆ&rγ‚’εΌ•γγ“γ¨γŒγ§γγΎγ™οΌ\n\n&b馬&rγ―γ€εΊη›€γ‹γ‚‰ε€§ι™ΈδΈ­γ‚’ζŽ’η΄’γ™γ‚‹γγ«ζœ€ι©γ§γ€γ‚Ήγƒ†γƒΌγ‚Ώγ‚Ήγε‘δΈŠγγŸγ‚γ«δΊ€ι…γ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&bロバとラバ&rは、&2γ‚«γƒΌγƒˆ&rγͺγ—γ§γƒγ‚§γ‚ΉγƒˆγΎγŸγ―γƒγƒ¬γƒ«γ‚’ι‹γΆγ“γ¨γŒγ§γγΎγ™γ€‚\n\nい぀もγγ‚ˆγ†γ«γ€&2フィールドガむド&rに詳細γͺζƒ…ε ±(スポーン村仢γͺど)γŒθ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚\n\n&3&lTips:&r&o ζ΅·γ‚’θΆŠγˆγ¦εˆ₯γε€§ι™Έγ§γ‚‚δΉ—ι¦¬γ—γŸγ„γ§γ™γ‹οΌŸ ε•ι‘Œγ‚γ‚ŠγΎγ›γ‚“γ€‚η‰ΉεšγγƒœγƒΌγƒˆγ‚’δ½Ώγˆγ°δΏ‘ι Όγ§γγ‚‹δ»²ι–“γ‚’ι€£γ‚Œγ¦γ„γγ“γ¨γŒγ§γγΎγ™οΌ", "quests.tfg_tips.supply_cart.title": "η‰©θ³‡ι‹ζ¬θ»Š", "quests.tfg_tips.supply_cart.subtitle": "すべてを運ぢ", - "quests.tfg_tips.supply_cart.desc": "&dSupply Cart&rは&c54&rγ‚Ήγƒ­γƒƒγƒˆγ¨γ„γ†ι©šη•°ηš„γͺεΉι‡γ‚’θͺ‡γ£γ¦γŠγ‚Šγ€&a重量に閒係γͺく&r、倧量γγ‚’γ‚€γƒ†γƒ γ‚’ι‹γΆγ“γ¨γŒγ§γγΎγ™γ€‚γͺγ‚“γ¨ι‡‘εΊŠγγ‚ˆγ†γͺγ‚‚γγ§γ•γˆγ‚‚οΌ\nγ‚‚γ‘γ‚γ‚“γ€ζŽ’η΄’γ€ζŽ‘ζŽ˜γ€θ³‡ζΊζŽ‘ι›†γ€γΎγŸγ―ζ‹ η‚Ήγη§»ε‹•γ«ζœ€ι©γ§γ™οΌ", + "quests.tfg_tips.supply_cart.desc": "&dSupply_Cart&rは&c54&rγ‚Ήγƒ­γƒƒγƒˆγ¨γ„γ†ι©šη•°ηš„γͺεΉι‡γ‚’θͺ‡γ£γ¦γŠγ‚Šγ€&a重量に閒係γͺく&r、倧量γγ‚’γ‚€γƒ†γƒ γ‚’ι‹γΆγ“γ¨γŒγ§γγΎγ™γ€‚γͺγ‚“γ¨ι‡‘εΊŠγγ‚ˆγ†γͺγ‚‚γγ§γ•γˆγ‚‚οΌ\nγ‚‚γ‘γ‚γ‚“γ€ζŽ’η΄’γ€ζŽ‘ζŽ˜γ€θ³‡ζΊζŽ‘ι›†γ€γΎγŸγ―ζ‹ η‚Ήγη§»ε‹•γ«ζœ€ι©γ§γ™οΌ", "quests.tfg_tips.animal_cart.title": "ε‹•η‰©ι‹ζ¬θ»Š", "quests.tfg_tips.animal_cart.subtitle": "γƒ‰γƒŠγƒ‰γƒŠγƒ‰ο½žγƒŠο½ž", - "quests.tfg_tips.animal_cart.desc": "&dAnimal Cart&rγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ζœ€ε€§3匹γε‹•物を陸路で運搬できます。\nη‰§η•œγγŸγ‚γγ€γŒγ„を集めるγγ«ζœ€ι©γ§γ™οΌ ζ•γΎγˆγ‚‹γ«γ―γ‚«γƒΌγƒˆγ§ε‹•η‰©γ‚’θ½’γγ γ‘γ§γ™γ€‚ε‹•η‰©γ‚’ι™γ‚γ™γ«γ―γ€&cγ‚·γƒ•γƒˆ+右クγƒͺック&rします。", + "quests.tfg_tips.animal_cart.desc": "&dAnimal_Cart&rγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ζœ€ε€§3匹γε‹•物を陸路で運搬できます。\nη‰§η•œγγŸγ‚γγ€γŒγ„を集めるγγ«ζœ€ι©γ§γ™οΌ\nζ•γΎγˆγ‚‹γ«γ―γ‚«γƒΌγƒˆγ§ε‹•η‰©γ‚’θ½’γγ γ‘γ§γ™γ€‚ε‹•η‰©γ‚’ι™γ‚γ™γ«γ―γ€&cγ‚·γƒ•γƒˆ+右クγƒͺック&rします。", "quests.tfg_tips.plow.title": "θ€•δ½œθ»Š", "quests.tfg_tips.plow.subtitle": "倧規樑農ζ₯­", "quests.tfg_tips.plow.desc": "ε·¨ε€§θΎ²ε ΄γγŸγ‚γ«εΊƒε€§γͺεœŸεœ°γ‚’θ€•γ™εΏ…θ¦γŒη”Ÿγ˜γŸε ΄εˆγ€&dPlow&rγŒε½Ήγ«η«‹γ‘γΎγ™γ€‚", @@ -4204,42 +4501,42 @@ "quests.tfg_tips.horseshoes.task": "任意γθΉ„鉄", "quests.tfg_tips.hiking_boots.title": "登山靴", "quests.tfg_tips.hiking_boots.subtitle": "歩くγε€§ε₯½γ", - "quests.tfg_tips.hiking_boots.desc": "&a登山靴&rγ―γ€θƒŒγι«˜γ„草を焑視し、ε‰ε…¨γͺθ½δΈ‹ι«˜εΊ¦γ‚’ι«˜γ‚γ€γ•γ‚‰γ«γ―δΉ—γ‚ŠθΆŠγˆγ‚‰γ‚Œγ‚‹ζ΅ε·γι«˜γ•γ¨ζ­©θ‘Œι€ŸεΊ¦γ‚’δΈŠζ˜‡γ•γ›γ¦γγ‚ŒγΎγ™γ€‚ ι‡‘ε±žθ£½γιŽ§γ»γ©γι˜²εΎ‘εŠ›γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ζˆ¦γ†δΊˆεšγŒγͺγ„ε ΄εˆγ―γ€γ“γ‚Œγ‚’ε±₯いているγγŒγ„いでしょう。", + "quests.tfg_tips.hiking_boots.desc": "&a登山靴&rγ―γ€θƒŒγι«˜γ„草を焑視し、ε‰ε…¨γͺθ½δΈ‹ι«˜εΊ¦γ‚’ι«˜γ‚γ€γ•γ‚‰γ«γ―δΉ—γ‚ŠθΆŠγˆγ‚‰γ‚Œγ‚‹ζ΅ε·γι«˜γ•γ¨ζ­©θ‘Œι€ŸεΊ¦γ‚’δΈŠζ˜‡γ•γ›γ¦γγ‚ŒγΎγ™γ€‚\nι‡‘ε±žθ£½γιŽ§γ»γ©γι˜²εΎ‘εŠ›γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ζˆ¦γ†δΊˆεšγŒγͺγ„ε ΄εˆγ―γ€γ“γ‚Œγ‚’ε±₯いているγγŒγ„いでしょう。", "quests.tfg_tips.hiking_boots.task": "任意γη™»ε±±ι΄", "quests.tfg_tips.firmalife.title": "Firmalife", "quests.tfg_tips.firmalife.subtitle": "TerraFirmaCraftでγηΉζ „γγŸγ‚γ«", - "quests.tfg_tips.firmalife.desc": "&2Firmalife&rは、TerraFirmaCraftでγθΎ²ζ₯­γ¨ηΎŽι£Ÿγδ½“験を拑弡することをη›ηš„γ¨γ—γŸModです。さまざまγͺθΏ½εŠ ζ©Ÿθƒ½γŒγ‚γ‚ŠγΎγ™γ€‚θ£…ι£Ύε“γ€ζ–°γ—γ„δΏε­˜ζ–Ήζ³•γ€ζ–°γ—γ„ι£Ÿε“γ€ι€Šθœ‚γ€γγ—γ¦ε€šζ•°γδΎΏεˆ©γͺι“ε…·γŒεˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌ", + "quests.tfg_tips.firmalife.desc": "&2Firmalife&rは、TerraFirmaCraftでγθΎ²ζ₯­γ¨ηΎŽι£Ÿγδ½“験を拑弡することをη›ηš„γ¨γ—γŸModです。\nさまざまγͺθΏ½εŠ ζ©Ÿθƒ½γŒγ‚γ‚Šγ€θ£…ι£Ύε“γ€ζ–°γ—γ„δΏε­˜ζ–Ήζ³•γ€ζ–°γ—γ„ι£Ÿε“γ€ι€Šθœ‚γ€γγ—γ¦ε€šζ•°γδΎΏεˆ©γͺι“ε…·γŒεˆ©η”¨γ§γγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™οΌ", "quests.tfg_tips.greenhouse.title": "ζΈ©ε€", "quests.tfg_tips.greenhouse.subtitle": "い぀でもε₯½γγͺγ‚‚γγŒι£ŸγΉγ‚‰γ‚Œγ‚‹γ‚ˆγ†γ«", - "quests.tfg_tips.greenhouse.desc": "&dζΈ©ε€&rγ―γ€εŽη©«ι‡γ‚’ηŠ η‰²γ«γ—γ¦δΈ€εΉ΄δΈ­δ½œη‰©γ‚’ζ ½εŸΉγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ•γ‚ŒγΎγ™γ€‚θ€‡ζ•°γγƒ†γ‚£γ‚’γŒγ‚γ‚‹θ€‡ι›‘γͺγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γζ§‹ι€ δ½“です。 詳細に぀いては、&2フィールドガむド&rγ‚’η’Ίθͺγ—てください!", + "quests.tfg_tips.greenhouse.desc": "&dζΈ©ε€&rγ§γ―γ€εŽη©«ι‡γ‚’ηŠ η‰²γ«γ—γ¦δΈ€εΉ΄δΈ­δ½œη‰©γ‚’ζ ½εŸΉγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚θ€‡ζ•°γγƒ†γ‚£γ‚’γŒγ‚γ‚‹θ€‡ι›‘γͺγƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―γζ§‹ι€ δ½“です。\n詳細に぀いては、&2フィールドガむド&rγ‚’η’Ίθͺγ—てください!", "quests.tfg_tips.greenhouse_automation.title": "ζΈ©ε€γθ‡ͺε‹•εŒ–", "quests.tfg_tips.greenhouse_automation.subtitle": "εŠ›γ‚’εˆγ‚γ›γ¦...", "quests.tfg_tips.greenhouse_automation.desc": "Firmalifeγ&2Picker&rと&2Sweeper&r、クγƒͺγ‚¨γ‚€γƒˆγγƒ‡γƒ—ロむダー、GregTechγγ‚’γ‚€γƒ†γƒ εŽι›†ζ©Ÿγ‚’η΅„γΏεˆγ‚γ›γ‚‹γ“γ¨γ§γ€ζΈ©ε€γ‚’εŒε…¨γ«θ‡ͺε‹•εŒ–γ™γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ\n\nPickerγ―γ€γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³δΏ‘ε·γ‚’ε—δΏ‘γ™γ‚‹γ¨γ€ζ°΄θ€•γƒ—γƒ©γƒ³γ‚ΏγƒΌγ¨4η¨γγƒ—γƒ©γƒ³γ‚ΏγƒΌγ‹γ‚‰ζˆη†Ÿγ—γŸδ½œη‰©γ‚’εŽη©«γ—γ€Sweeperγ―γ€γƒ¬γƒƒγƒ‰γ‚ΉγƒˆγƒΌγƒ³δΏ‘ε·γ‚’ε—γ‘γ¦γ„γ‚‹ι–“γ€ε‘¨ε›²3x3γγ‚¨γƒͺをで他γη¨ι‘žγζˆη†Ÿγ—γŸδ½œη‰©γ‚’εŽη©«γ—γΎγ™γ€‚\n\nγ“γ‚Œγ‚‰γγƒžγ‚·γƒ³γ γ‘γ§γ―ε›žεŽγ―γ—γ¦γγ‚ŒγΎγ›γ‚“γŒγ€γ‚’γ‚€γƒ†γƒ εŽι›†ζ©ŸγŒγ‚γ‚Œγ°εΊƒγ„γ‚¨γƒͺγ‚’γ‹γ‚‰ε›žεŽγ—γ¦γγ‚ŒγΎγ™γ€‚\n\nγγ—γ¦γ€γƒ‡γƒ—γƒ­γ‚€γƒ€γƒΌγ‚’εˆ©η”¨γ—γ¦γ€η¨γ‚’γƒ—γƒ©γƒ³γ‚ΏγƒΌγ«ζ€γˆζˆ»γ—γΎγ—γ‚‡γ†οΌ", "quests.tfg_tips.beekeeping.title": "ι€Šθœ‚", "quests.tfg_tips.beekeeping.subtitle": "こんγͺγ«ε°γ•γ‹γ£γŸγ£γ‘...?", - "quests.tfg_tips.beekeeping.desc": "&bι€Šθœ‚&rには倚くγη”¨ι€”γŒγ‚γ‚ŠγΎγ™γ€‚γƒŸγƒ„γƒγƒγ‹γ‚‰γ―&aワックス&rγ‚„&aγƒγƒγƒŸγƒ„&rγͺどγζœ‰η”¨γͺ資源をε…₯ζ‰‹γ™γ‚‹γ“γ¨γŒγ§γγ‚‹γ γ‘γ§γ―γͺく、(ζ­£γ—γ„η‰Ήζ€§γ‚’ζŒγ£γ¦γ„γ‚‹ε ΄εˆ)近くγδ½œη‰©γζˆι•·γ‚’δΏƒι€²γ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ‚ˆγ‚Šθ‰―γ„η‰Ήζ€§γ‚’ζŒγ£γŸγƒŸγƒ„γƒγƒγ‚’η”ŸγΏε‡Ίγ™γŸγ‚γ«γ―γ€δΊ€ι…γ•γ›γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n&2フィールドガむド&rには、&bι€Šθœ‚&rγδ»•硄みに぀いてγεΊƒη―„γͺθͺ¬ζ˜ŽγŒθΌ‰γ£γ¦γ„ます。", + "quests.tfg_tips.beekeeping.desc": "&bι€Šθœ‚&rには倚くγη”¨ι€”γŒγ‚γ‚ŠγΎγ™γ€‚\nε·£η±γ‹γ‚‰&aワックス&rγ‚„&aγƒγƒγƒŸγƒ„&rγͺどγζœ‰η”¨γͺ資源をε…₯ζ‰‹γ™γ‚‹γ“γ¨γŒγ§γγ‚‹γ»γ‹γ€(θœ‚γŒι©εˆ‡γͺη‰Ήζ€§γ‚’ζŒγ£γ¦γ„γ‚‹ε ΄εˆ)近くγδ½œη‰©γζˆι•·γ‚’δΏƒι€²γ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγ‚ˆγ‚Šθ‰―γ„η‰Ήζ€§γ‚’ζŒγ£γŸγƒŸγƒ„γƒγƒγ‚’η”ŸγΏε‡Ίγ™γŸγ‚γ«γ―γ€δΊ€ι…γ•γ›γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\n&2フィールドガむド&rには、&bι€Šθœ‚&rγδ»•硄みに぀いてγεΊƒη―„γͺθͺ¬ζ˜ŽγŒθΌ‰γ£γ¦γ„ます。", "quests.tfg_tips.beehive.title": "θœ‚γε·£η±", "quests.tfg_tips.beehive.subtitle": "γ‚ˆγ„ε‡ΊδΌšγ„γ‚’", - "quests.tfg_tips.beehive.desc": "ι€Šθœ‚εΆγ«γͺるには、&bθœ‚γε·£η±&rと&aθœ‚γε·£ζž &rγδΈ‘ζ–ΉγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\nι€šεΈΈγMinecraftとは異γͺγ‚Šγ€ε·£γ―θ‡ͺη„Άγ«γ‚ΉγƒγƒΌγƒ³γ—γΎγ›γ‚“γ€‚δ»£γ‚γ‚Šγ«γ€γƒŸγƒ„γƒγƒγ―&eε₯³ηŽ‹θœ‚&rγŒδ½γ‚€ε·£ζž γŒε…₯γ£γŸγƒ—γƒ¬γ‚€γƒ€γƒΌθ£½γ&bθœ‚γε·£η±&rでγγΏγ‚ΉγƒγƒΌγƒ³γ—ます。ε₯³ηŽ‹θœ‚γŒε·£ζž γ«δ½γΏγ€γγ‹γ©γ†γ‹γ―ι‹γ§γ™γŒγ€ε·£η±γε‘¨γ‚Šγ«&d花&rγ‚’θ¨­η½γ™γ‚‹γ“γ¨γ§η’ΊηŽ‡γ‚’ι«˜γ‚γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n巣枠にε₯³ηŽ‹θœ‚γŒδ½γ‚€γ¨γ€γƒŸγƒ„γƒγƒγŒγ‚ΉγƒγƒΌγƒ³γ—ε§‹γ‚γ€εƒγ„γ¦γγ‚ŒγΎγ™γ€‚", + "quests.tfg_tips.beehive.desc": "ι€Šθœ‚εΆγ«γͺるには、&bθœ‚γε·£η±&rと&aθœ‚γε·£ζž &rγδΈ‘ζ–ΉγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚\nι€šεΈΈγMinecraftとは異γͺγ‚Šγ€ε·£γ―θ‡ͺη„Άγ«γ‚ΉγƒγƒΌγƒ³γ—γΎγ›γ‚“γ€‚δ»£γ‚γ‚Šγ«γ€γƒŸγƒ„γƒγƒγ―&eε₯³ηŽ‹θœ‚&rγŒδ½γ‚€ε·£ζž γŒε…₯γ£γŸγƒ—γƒ¬γ‚€γƒ€γƒΌθ£½γ&bθœ‚γε·£η±&rでγγΏγ‚ΉγƒγƒΌγƒ³γ—ます。\nε₯³ηŽ‹θœ‚γŒε·£ζž γ«δ½γΏγ€γγ‹γ©γ†γ‹γ―ι‹γ§γ™γŒγ€ε·£η±γε‘¨γ‚Šγ«&d花&rγ‚’θ¨­η½γ™γ‚‹γ“γ¨γ§η’ΊηŽ‡γ‚’ι«˜γ‚γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n巣枠にε₯³ηŽ‹θœ‚γŒδ½γ‚€γ¨γ€γƒŸγƒ„γƒγƒγŒγ‚ΉγƒγƒΌγƒ³γ—ε§‹γ‚γ€εƒγ„γ¦γγ‚ŒγΎγ™γ€‚", "quests.tfg_tips.not_the_bees.title": "ι€Šθœ‚εΆγιާ", "quests.tfg_tips.not_the_bees.subtitle": "ハチにはハチγη”Ÿζ΄»γŒγ‚γ‚‹γγ§γ™", "quests.tfg_tips.not_the_bees.desc": "γƒŸγƒ„γƒγƒγ―γ€δΊΊγ€…γ«γ‚ˆγ£γ¦θ²΄ι‡γͺγƒγƒγƒŸγƒ„γ¨θœœθ‹γ‚’ε₯ͺγ‚γ‚Œγ‚‹γγ‚’ε«ŒγŒγ‚ŠγΎγ™γ€‚ε‰ε…¨γ«θ‘Œγ†ζ–Ήζ³•は3γ€γ‚γ‚ŠγΎγ™:\n\n* &dε€œι–“γ«εŽη©«γ™γ‚‹&r\n* &dη„šγη«γ‚’δ½Ώη”¨γ™γ‚‹&r\n* &dι€Šθœ‚εΆγιŽ§γ‚’θΊ«γ«η€γ‘γ‚‹&r", "quests.tfg_tips.not_the_bees.task": "γ‚­γƒ£γƒ³γƒ—γƒ•γ‚‘γ‚€γƒ€γƒΌγ‚’δ½Ώη”¨γ™γ‚‹γ‹γ€ε€œγ«γͺγ‚‹γγ‚’待けます。", "quests.tfg_tips.honey.title": "γƒγƒγƒŸγƒ„", "quests.tfg_tips.honey.subtitle": "η·»ε―†γͺθ£½δ½œη‰©", - "quests.tfg_tips.honey.desc": "&bガラス吹き&rγ§δ½œγ‚‰γ‚ŒγŸ&aη©Ίγγ‚Έγƒ£γƒ η“Ά&rγ§γ€θœ‚θœœγ§ζΊ€γŸγ•γ‚ŒγŸε·£γ‚’ε³γ‚―γƒͺックすると&dはけみ぀ε…₯γ‚Šγη“Ά&rγ‚’ε…₯ζ‰‹γ§γγΎγ™γ€‚θœ‚θœœγ―η ‚η³–γε„ͺγ‚ŒγŸδ»£ζ›Ώε“γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.honey.desc": "&bガラス吹き&rγ§δ½œγ‚‰γ‚ŒγŸ&aη©Ίγγ‚Έγƒ£γƒ η“Ά&rγ§γ€θœ‚θœœγ§ζΊ€γŸγ•γ‚ŒγŸε·£γ‚’ε³γ‚―γƒͺックすると&dはけみ぀ε…₯γ‚Šγη“Ά&rγ‚’ε…₯手できます。\nθœ‚θœœγ―η ‚η³–γε„ͺγ‚ŒγŸδ»£ζ›Ώε“γ«γͺγ‚ŠγΎγ™γ€‚", "quests.tfg_tips.beeswax.title": "γƒŸγƒ„γƒ­γ‚¦", "quests.tfg_tips.beeswax.subtitle": "δΎ‘ε€€γγ‚γ‚‹ηŠ η‰²", - "quests.tfg_tips.beeswax.desc": "&bε₯³ηŽ‹θœ‚&rγŒδ½γ‚€&a巣枠&rγ‚’&cγƒŠγ‚€γƒ•&rで右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€ε·£ζž γŒη©Ίγ«γͺγ‚Šγ€ε₯³ηŽ‹γ―死に、&dθœœθ‹&rγ‚’ε…₯手できます。\n\n&3&lTips:&r&o ζ‚ͺγ„η‰Ήζ€§γΎγŸγ―δ½Žγ„η‰Ήζ€§γ‚’ζŒγ€&bε₯³ηŽ‹θœ‚&fγ‚’ε‡¦εˆ†γ—γ¦γ€γ‚ˆγ‚Šθ‰―γ„η‰Ήζ€§γγŸγ‚γ«γ€δ»–γε·£ζž γε₯³ηŽ‹θœ‚γ©γ†γ—γ‚’δΊ€ι…γ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.beeswax.desc": "&bε₯³ηŽ‹θœ‚&rγŒδ½γ‚€&a巣枠&rγ‚’&cγƒŠγ‚€γƒ•&rで右クγƒͺγƒƒγ‚―γ™γ‚‹γ¨γ€ε·£ζž γŒη©Ίγ«γͺγ‚Šγ€ε₯³ηŽ‹γ―死に、&dθœœθ‹&rγ‚’ε…₯手できます。\n\n&3&lTips:&r&oζ‚ͺγ„η‰Ήζ€§γΎγŸγ―δ½Žγ„η‰Ήζ€§γ‚’ζŒγ€&bε₯³ηŽ‹θœ‚&fγ‚’ε‡¦εˆ†γ—γ¦γ€γ‚ˆγ‚Šθ‰―γ„η‰Ήζ€§γγŸγ‚γ«γ€δ»–γε·£ζž γε₯³ηŽ‹θœ‚γ©γ†γ—γ‚’δΊ€ι…γ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.candles.title": "ろうそく", "quests.tfg_tips.candles.subtitle": "いい雰囲気ですね", "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γ―γ€ι£Ÿε“γ‚’η°‘ε˜γ«θͺΏη†γ—γŸγ‚Šγ€η‰Ήεˆ₯γͺレシピをεŸθ‘Œγ—γŸγ‚Šγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγ‚‹γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―構造体です。&aγ‚ͺーブンかまど、γ‚ͺーブン&rγ€γŠγ‚ˆγ³&aγ‚ͺーブンγη…™ηͺ&rγŒεΏ…ι ˆγ«γͺγ‚ŠγΎγ™γ€‚γΎγŸγ€&aγ‚ͺーブン&rγ‹γ‚‰ι£Ÿε“γ‚’ε–γ‚Šε‡Ίγ™γ«γ―γ€&dγƒˆγƒ³γ‚°&rγ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ‚’εΏ˜γ‚Œγͺいでください。\n&3γ‚ͺーブン&rγζ§‹η―‰ζ–Ήζ³•γθ©³η΄°γ«γ€γ„ては、&2フィールドガむド&rを参照してください。\n\n&3&lTips:&r&o: 5぀γζ „ι€Šγ‚°γƒ«γƒΌγƒ—γ™γΉγ¦γ‚’ζΊ€γŸγ™γ“γ¨γŒγ§γγ‚‹ε”―δΈ€γι£Ÿε“γ§γ‚γ‚‹&cピア&fは、γ‚ͺーブンでθͺΏη†γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.oven.desc": "&3γ‚ͺーブン&rγ―γ€ι£Ÿε“γ‚’η°‘ε˜γ«θͺΏη†γ—γŸγ‚Šγ€η‰Ήεˆ₯γͺレシピをεŸθ‘Œγ—γŸγ‚Šγ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγ‚‹γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―構造体です。\n&aγ‚ͺーブンかまど、γ‚ͺーブン&rγ€γŠγ‚ˆγ³&aγ‚ͺーブンγη…™ηͺ&rγŒεΏ…ι ˆγ«γͺγ‚ŠγΎγ™γ€‚\n&aγ‚ͺーブン&rγ‹γ‚‰ι£Ÿε“γ‚’ε–γ‚Šε‡Ίγ™ιš›γ―γ€&dγƒˆγƒ³γ‚°&rγ‚’δ½Ώη”¨γ™γ‚‹γ“γ¨γ‚’εΏ˜γ‚Œγͺいでください。\n&3γ‚ͺーブン&rγζ§‹η―‰ζ–Ήζ³•γθ©³η΄°γ«γ€γ„ては、&2フィールドガむド&rを参照してください。\n\n&3&lTips:&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: γ‚ΉγƒΌγƒ—γθͺΏη†γ«γγΏδ½ΏγˆγΎγ™γ€‚", + "quests.tfg_tips.oven_appliances.desc": "&3γ‚ͺγƒΌγƒ–γƒ³ζ©Ÿε™¨&rは、&aγ‚ͺーブンかまど&rγδΈŠγ«θ¨­η½γ™γ‚‹γ“γ¨γ§εˆ©η”¨γ§γγ‚‹θͺΏη†ε™¨ε…·γ§γ™γ€‚\n一぀γγƒžγƒ«γƒγƒ–ロック構造に&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: γ‚ΉγƒΌγƒ—γθͺΏη†γ«γγΏδ½ΏγˆγΎγ™γ€‚", "quests.tfg_tips.oven_finish.title": "γ‚ͺγƒΌγƒ–γƒ³δ»•δΈŠγ’", "quests.tfg_tips.oven_finish.subtitle": "γŠγ—γ‚ƒγ‚Œγ«δ»•δΈŠγ’γ‚ˆγ†", "quests.tfg_tips.oven_finish.desc": "レンガγε€–θ¦³γŒζ°—γ«ε…₯らγͺγ„ε ΄εˆγ―γ€γ»γ¨γ‚“γ©γγ‚ͺγƒΌγƒ–γƒ³ζ©Ÿε™¨γ«&bδ»•δΈŠγ’&rを適用して、倖観を倉更できます。", @@ -4249,18 +4546,18 @@ "quests.tfg_tips.oven_utils.desc": "&aγ‚ͺーブンかまど&rγδΈ‹γ«&d灰皿&rγ‚’θ¨­η½γ™γ‚‹γ¨γ€δ½Ώγ£γŸδΈΈε€ͺから&c灰&rγ‚’η’ΊηŽ‡γ§εŽι›†γ—γ¦γγ‚ŒγΎγ™γ€‚ε³γ‚―γƒͺγƒƒγ‚―γ§η°γ‚’ε–γ‚Šε‡Ίγ›γΎγ™γ€‚\n\n&dγ‚ͺーブンホッパー&rγ―γ€γγ‚Œγ«ι’γ—γ¦γ„γ‚‹&bγ‚ͺーブンかまど&rに丸ε€ͺγ‚’ζŒΏε…₯します。θ‡ͺε‹•εŒ–γ«ε½Ήη«‹γ‘γΎγ™γ€‚", "quests.tfg_tips.jam.title": "ジャム", "quests.tfg_tips.jam.subtitle": "γ‚ΌγƒͺγƒΌγ§γ―γ‚γ‚ŠγΎγ›γ‚“", - "quests.tfg_tips.jam.desc": "&dジャム&rγ―γ€ζžœη‰©γ‚’δΏε­˜γ™γ‚‹γγ«ζœ€ι©γͺ方法です。&bε―†ε°γ•γ‚ŒγŸγ‚Έγƒ£γƒ γη“Ά&rは、開封しγͺγ‘γ‚Œγ°ζœ€ε€§&c2εΉ΄ι–“&rδΏε­˜γ§γγΎγ™γ€‚\n\nγ‚Έγƒ£γƒ γ‚’ι©εˆ‡γ«η“Άθ©°γ‚γ™γ‚‹γ«γ―γ€&aθ“‹δ»˜γγη“Ά&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚η“Άθ‡ͺ体には&bガラス吹き&r、蓋には&b鍛冢&rγŒεΏ…θ¦γ§γ™γ€‚\n\n&3&lTips:&r&l &aGT機撰&fγŒγ‚γ‚Œγ°γ€δΈ‘ζ–Ήγ‚’γ‚ˆγ‚Šη°‘ε˜γ«δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.jam.desc": "&dジャム&rγ―γ€ζžœη‰©γ‚’δΏε­˜γ™γ‚‹γγ«ζœ€ι©γͺ方法です。&bε―†ε°γ•γ‚ŒγŸγ‚Έγƒ£γƒ γη“Ά&rは、開封しγͺγ‘γ‚Œγ°ζœ€ε€§&c2εΉ΄ι–“&rδΏε­˜γ§γγΎγ™γ€‚\n\nγ‚Έγƒ£γƒ γ‚’ι©εˆ‡γ«η“Άθ©°γ‚γ™γ‚‹γ«γ―γ€&aθ“‹δ»˜γγη“Ά&rγŒεΏ…θ¦γ«γͺγ‚ŠγΎγ™γ€‚η“Άθ‡ͺ体には&bガラス吹き&r、蓋には&b鍛冢&rγŒεΏ…θ¦γ§γ™γ€‚\n\n&3&lTips:&r&l &aGT機撰&fγŒγ‚γ‚Œγ°γ€δΈ‘ζ–Ήγ‚’γ‚ˆγ‚Šη°‘ε˜γ«δ½œγ‚Œγ‚‹γ‚ˆγ†γ«γͺγ‚ŠγΎγ™γ€‚", "quests.tfg_tips.preservation.title": "保存γη³»η΅±ζ¨Ή", "quests.tfg_tips.preservation.subtitle": "ι£Ÿε“γ‚’ι•·ζŒγ‘γ•γ›γ‚‹", - "quests.tfg_tips.preservation.desc": "θ…γ£γŸι£Ÿε“γ―ι£Ÿη”¨γ«γ―ι©γ—γ¦γ„γΎγ›γ‚“(γŸγ γ—γ€θ±šγͺどγεΆη•œγ«δΈŽγˆγ‚‹γ“とはできます)。&2TFG&rでε‰εšγ—γ¦η”Ÿζ΄»γ™γ‚‹γ«γ―γ€ι£Ÿε“γδΏε­˜ζœŸι–“を長引かせるγγŒι‡θ¦γ§γ™γ€‚\n\n上記γγ‚―γ‚¨γ‚Ήγƒˆγƒ„γƒͺーでは、さまざまγͺι£Ÿε“γγ‚γ‚‰γ‚†γ‚‹δΏε­˜ζ–Ήζ³•γ«γ€γ„γ¦θ©³γ—γθͺ¬ζ˜Žγ—ています。一部γγ‚’γ‚€γ‚³γƒ³γ«θ…γ£γŸι£Ÿε“γŒθ‘¨η€Ίγ•γ‚Œγ‚‹ε ΄εˆγŒγ‚γ‚ŠγΎγ™γŒγ€γ“γ‚Œγ―η΄”η²‹γ«ε€–θ¦³δΈŠγγƒγ‚°γ§γ™γ€‚\n\n&3&lTips:&r&o すべてγθ¦η΄ γ―&d重ねる&fγ“γ¨γŒγ§γγ‚‹γŸγ‚γ€γ„γγ€γ‹γζ–Ήζ³•γ‚’η΅„γΏεˆγ‚γ›γ‚‹γ“γ¨γ§ιžεΈΈγ«ι•·γ„δΏε­˜ζœŸι–“γ‚’εŸηΎγ§γγΎγ™γ€‚", + "quests.tfg_tips.preservation.desc": "θ…γ£γŸι£Ÿε“γ―ι£Ÿη”¨γ«γ―ι©γ—γ¦γ„γΎγ›γ‚“(γŸγ γ—γ€θ±šγͺどγεΆη•œγ«δΈŽγˆγ‚‹γ“とはできます)。\n&2TFG&rγδΈ–η•Œγ§ε‰εšγ—γŸη”Ÿζ΄»γ‚’ι€γ‚‹γ«γ―γ€ι£Ÿε“γι•·ζœŸδΏε­˜γŒι‡θ¦γ§γ™γ€‚\n\n上記γγ‚―γ‚¨γ‚Ήγƒˆγƒ„γƒͺーでは、さまざまγͺι£Ÿε“γγ‚γ‚‰γ‚†γ‚‹δΏε­˜ζ–Ήζ³•γ«γ€γ„γ¦θ©³γ—γθͺ¬ζ˜Žγ—ています。一部γγ‚’γ‚€γ‚³γƒ³γ«θ…γ£γŸι£Ÿε“γŒθ‘¨η€Ίγ•γ‚Œγ‚‹ε ΄εˆγŒγ‚γ‚ŠγΎγ™γŒγ€γ“γ‚Œγ―η΄”η²‹γ«ε€–θ¦³δΈŠγγƒγ‚°γ§γ™γ€‚\n\n&3&lTips:&r&o すべてγθ¦η΄ γ―&d重ねる&fγ“γ¨γŒγ§γγ‚‹γŸγ‚γ€γ„γγ€γ‹γζ–Ήζ³•γ‚’η΅„γΏεˆγ‚γ›γ‚‹γ“γ¨γ§ιžεΈΈγ«ι•·γ„δΏε­˜ζœŸι–“γ‚’εŸηΎγ§γγΎγ™γ€‚", "quests.tfg_tips.brine_something.title": "呩酒漬け", "quests.tfg_tips.brine_something.subtitle": "δ»–γδΏε­˜ζ–Ήζ³•γδΊˆε‚™ζ΅ιšŽ", - "quests.tfg_tips.brine_something.desc": "&aη”Ÿγθ‚‰γ€ι‡Žθœ&rγ€γΎγŸγ―&aζžœη‰©&rγ‚’ε‘©ι…’ζΌ¬γ‘γ«γ—γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ«γ―&bζ΅·ζ°΄&rと&bι…’&rγ§δ½œγ‚‰γ‚ŒγŸ&dε‘©ι…’&rγŒεΏ…θ¦γ§γ™γ€‚γ“γ‚Œγ―γ€&3酒漬け&rと&3燻製&rγδΊˆε‚™ζ΅ιšŽγ§γ™γ€‚", + "quests.tfg_tips.brine_something.desc": "&aη”Ÿγθ‚‰γ€ι‡Žθœ&rγ€γΎγŸγ―&aζžœη‰©&rγ‚’ε‘©ι…’ζΌ¬γ‘γ«γ—γΎγ—γ‚‡γ†γ€‚γ“γ‚Œγ«γ―&bζ΅·ζ°΄&rと&bι…’&rγ§δ½œγ‚‰γ‚ŒγŸ&dε‘©ι…’&rγŒεΏ…θ¦γ§γ™γ€‚\nγ“γ‚Œγ―γ€&3酒漬け&rと&3燻製&rγδΊˆε‚™ζ΅ιšŽγ§γ™γ€‚", "quests.tfg_tips.brine_something.task.1": "ε‘©ι…’ζΌ¬γ‘γ•γ‚ŒγŸθ‚‰γ€ι‡Žθœγ€γΎγŸγ―ζžœη‰©γ€‚", - "quests.tfg_tips.brine_something.task.2": "ζ΅·ζ°΄γγƒγ‚±γƒ„", + "quests.tfg_tips.brine_something.task.2": "ε‘©ι…’γγƒγ‚±γƒ„", "quests.tfg_tips.pickle_something.title": "δΈ€θˆ¬ηš„γͺ保存:酒漬け", "quests.tfg_tips.pickle_something.subtitle": "γƒ”γ‚―γƒ«γ‚Ήγ‚’δ½œγ‚γ†", - "quests.tfg_tips.pickle_something.desc": "&aη”Ÿγθ‚‰γ€ι‡Žθœ&rγ€γΎγŸγ―&aζžœη‰©&rγ―ι…’ζΌ¬γ‘γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&3呩酒漬け&rεΎŒγ€ι£Ÿε“γ‚’γ‚€γƒ†γƒ γ―&aι…’&rγ§ζΊ€γŸγ•γ‚ŒγŸζ¨½γ«ζΌ¬γ‘γ‚‰γ‚ŒγΎγ™γ€‚ζ¨½γŒε―†ι–‰γ•γ‚Œγ¦γ„γ‚‹ι™γ‚Šγ€γγ“γ«ζ”Ύη½γ™γ‚‹γ“γ¨γŒγ§γγ€&d酒漬け&rγδΏε­˜η‰Ήζ€§γ‚’δΈŽγˆγ€δΏε­˜ζœŸι–“γ‚’ε€§εΉ…γ«ε»Άι•·γ—γΎγ™γ€‚", + "quests.tfg_tips.pickle_something.desc": "&aη”Ÿγθ‚‰γ€ι‡Žθœ&rγ€γΎγŸγ―&aζžœη‰©&rγ―ι…’ζΌ¬γ‘γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n&3呩酒漬け&rεΎŒγ€ι£Ÿε“γ‚’γ‚€γƒ†γƒ γ―&aι…’&rγ§ζΊ€γŸγ•γ‚ŒγŸζ¨½γ§ζΌ¬γ‘γ¦γŠγγ“γ¨γŒγ§γγΎγ™γ€‚ζ¨½γŒε―†ι–‰γ•γ‚Œγ¦γ„γ‚‹ι™γ‚Šγ€δΏε­˜γ—γ¦γŠγγ“γ¨γŒγ§γγ€&d酒漬け&rγδΏε­˜η‰Ήζ€§γ‚’δΈŽγˆγ€δΏε­˜ζœŸι–“γ‚’ε€§εΉ…γ«ε»Άι•·γ—γΎγ™γ€‚", "quests.tfg_tips.pickle_something.task.1": "ι…’γγƒγ‚±γƒ„", "quests.tfg_tips.pickle_something.task.2": "γƒ”γ‚―γƒ«γ‚Ήγ«γ•γ‚ŒγŸθ‚‰γ€ι‡Žθœγ€γΎγŸγ―ζžœη‰©γ€‚", "quests.tfg_tips.get_milk.title": "牛乳γδΏε­˜", @@ -4272,7 +4569,7 @@ "quests.tfg_tips.create_cheese.desc": "&a牛乳&rは&dチーズホむール&rに加ε·₯でき、保η‘γ™γ‚‹γŸγ‚γ«θ¨­η½γ—γ¦γŠγ„γŸγ‚Šγ€&aγƒŠγ‚€γƒ•&rγ§εˆ‡γ£γ¦&dチーズスラむス&rγ«γ—γŸγ‚Šγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\nチーズγδ½œγ‚Šζ–Ήγ«ι–’する情報は、&2フィールドガむド&rγ«θ¨˜θΌ‰γ•γ‚Œγ¦γ„γΎγ™γ€‚", "quests.tfg_tips.cheese_aging.title": "牛乳γδΏε­˜: チーズγη†Ÿζˆ", "quests.tfg_tips.cheese_aging.subtitle": "クセにγͺγ‚‹ι¦™γ‚Š", - "quests.tfg_tips.cheese_aging.desc": "&3θ²―θ”΅εΊ«&rγ‚’ε»Ίγ¦γŸε ΄εˆγ―γ€&aチーズホむール&rγ‚’η½γ„γ¦δΈ­γ§η†Ÿζˆγ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚η†Ÿζˆγ«γ―ζ™‚ι–“γŒγ‹γ‹γ‚ŠγΎγ™γŒγ€δΏε­˜ζœŸι–“γŒε€§εΉ…γ«ε‘δΈŠγ—γΎγ™γ€‚ &lζ‰‹γ§γƒγƒΌγ‚Ίγ‚’ε£Šγ•γͺγ„γ§γγ γ•γ„γ€‚γγ†γ—γŸε ΄εˆγ€γ™γΉγ¦γη†ŸζˆγŒγͺγ‹γ£γŸγ“γ¨γ«γͺγ‚ŠγΎγ™οΌ&r", + "quests.tfg_tips.cheese_aging.desc": "&3θ²―θ”΅εΊ«&rγ‚’ε»Ίγ¦γŸε ΄εˆγ―γ€&aチーズホむール&rγ‚’η½γ„γ¦δΈ­γ§η†Ÿζˆγ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚η†Ÿζˆγ«γ―ζ™‚ι–“γŒγ‹γ‹γ‚ŠγΎγ™γŒγ€δΏε­˜ζœŸι–“γŒε€§εΉ…γ«ε‘δΈŠγ—γΎγ™γ€‚\n&lζ‰‹γ§γƒγƒΌγ‚Ίγ‚’ε£Šγ•γͺγ„γ§γγ γ•γ„γ€‚γγ†γ—γŸε ΄εˆγ€γ™γΉγ¦γη†ŸζˆγŒγͺγ‹γ£γŸγ“γ¨γ«γͺγ‚ŠγΎγ™οΌ&r", "quests.tfg_tips.smoke_cheese.title": "牛乳γδΏε­˜: チーズを燻製にする", "quests.tfg_tips.smoke_cheese.subtitle": "ι’¨ε‘³γε‘δΈŠ", "quests.tfg_tips.smoke_cheese.desc": "&aチーズスラむス&rを、&c火γγ€γ„γŸη„šγη«&rγδΈŠγ«εΌ΅γ£γŸ&bηΎŠζ―›γη³Έ&rγ«ζŽ›γ‘γ‚‹γ“γ¨γ§γ€η‡»θ£½γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", @@ -4282,7 +4579,7 @@ "quests.tfg_tips.get_meat.desc": "ほとんどγε‹•物から&a肉&rγ‚’ζŽ‘γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ―ε„ͺη§€γͺγ‚Ώγƒ³γƒ‘γ‚―ζΊγ§γ™γŒγ€η”ŸγγΎγΎγ γ¨γ™γγ«θ…γ£γ¦γ—まいます。\n\n&bη”Ÿθ‚‰&rγ―γ€δΏε­˜ζ‰‹ζ΅γ¨γ—て&3呩漬け、酒漬け&r、&3燻製&rγ3η¨ι‘žγŒγ‚γ‚ŠγΎγ™γŒγ€γ“γ‚Œγ‚‰γζ‰‹ι †γ―γ©γ‚Œγ‚‚&cθͺΏη†ε‰&rγ«θ‘Œγ†εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.salt_meat.title": "肉γδΏε­˜: 呩漬け", "quests.tfg_tips.salt_meat.subtitle": "γ‚ˆγ‚Šθ‹¦γ—γ‚€", - "quests.tfg_tips.salt_meat.desc": "&b呩漬け&rγ―γ€θ‚‰γ‚’ζ‰‹γ£ε–γ‚Šζ—©γγ€η°‘ε˜γ«δΏε­˜ζœŸι–“γ‚’ε»Άγ°γ™γ“γ¨γŒγ§γγ‚‹ζ–Ήζ³•γ§γ™γ€‚&dε‘©&rは、&a岩呩堆積物&r、&aε‘©γι‰±θ„ˆ&rγδΈŠγ&a小さい硐晢&r、&aε‘©γι‰±θ„ˆ&rθ‡ͺ体からε…₯手できます。そγγ»γ‹γ€&3鍋&rで呩水を&aζ²Έι¨°&rγ•γ›γ‚‹γ“γ¨γ«γ‚ˆγ£γ¦δ½œγ‚Šε‡Ίγ™γ“γ¨γ‚‚γ§γγΎγ™γ€‚", + "quests.tfg_tips.salt_meat.desc": "&b呩漬け&rγ―γ€θ‚‰γ‚’ζ‰‹γ£ε–γ‚Šζ—©γγ€η°‘ε˜γ«δΏε­˜ζœŸι–“γ‚’ε»Άγ°γ™γ“γ¨γŒγ§γγ‚‹ζ–Ήζ³•γ§γ™γ€‚\n&dε‘©&rは、&a岩呩堆積物&r、&aε‘©γι‰±θ„ˆ&rγδΈŠγ&a小さい硐晢&r、&aε‘©γι‰±θ„ˆ&rθ‡ͺ体からε…₯手できます。\nそγγ»γ‹γ€&3鍋&rで呩水を&aζ²Έι¨°&rγ•γ›γ‚‹γ“γ¨γ«γ‚ˆγ£γ¦η²Ύθ£½γ™γ‚‹γ“γ¨γ‚‚γ§γγΎγ™γ€‚", "quests.tfg_tips.salt_meat.task": "呩漬け肉γε‘Š", "quests.tfg_tips.smoke_meat.title": "肉γδΏε­˜: 燻製", "quests.tfg_tips.smoke_meat.subtitle": "γ„γΆγ—ιŠ€", @@ -4294,15 +4591,15 @@ "quests.tfg_tips.bacon.task": "η‡»θ£½θ±šθ‚‰", "quests.tfg_tips.cook_meat.title": "肉γδΏε­˜: θͺΏη†", "quests.tfg_tips.cook_meat.subtitle": "まっとうγͺ手ζ΅", - "quests.tfg_tips.cook_meat.desc": "θͺΏη†γ«γ‚ˆγ£γ¦γ‚‚δΏε­˜η‰Ήζ€§γ‚’δ»˜δΈŽγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&a肉&rは、&bιŒ¬ι‰„θ£½γ‚°γƒͺル&rまたは&bγ‚ͺーブン&rでθͺΏη†γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nδ»–γθͺΏη†ζ–Ήζ³•γ§γ―γ€η‰Ήζ€§γŒδ»˜δΈŽγ•γ‚Œγͺγ„γ‹γ€δΏε­˜ζœŸι–“γ‚’ηŸ­γγ™γ‚‹γƒžγ‚€γƒŠγ‚Ήγη‰Ήζ€§γ‚’δΈŽγˆγ‚‹γ“γ¨γ•γˆγ‚γ‚ŠγΎγ™γ€‚\n\n&3&lTips:&r&o &bιŒ¬ι‰„θ£½γ‚°γƒͺル&fは、&dγ‚ͺーブン&fζ§‹ι€ γδΈ€ιƒ¨γ«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", - "quests.tfg_tips.cook_meat.task.1": "γ‚°γƒͺγƒ«γΎγŸγ―γ‚ͺγƒΌγƒ–γƒ³γ§η„Όγ„γŸθͺΏη†ζΈˆγΏθ‚‰γε‘Šγ€‚", + "quests.tfg_tips.cook_meat.desc": "θͺΏη†γ«γ‚ˆγ£γ¦γ‚‚δΏε­˜η‰Ήζ€§γ‚’δ»˜δΈŽγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚&a肉&rは、&bιŒ¬ι‰„θ£½γ‚°γƒͺル&rまたは&bγ‚ͺーブン&rでθͺΏη†γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚\nδ»–γθͺΏη†ζ–Ήζ³•γ§γ―γ€η‰Ήζ€§γŒδ»˜δΈŽγ•γ‚Œγͺγ„γ‹γ€δΏε­˜ζœŸι–“γ‚’ηŸ­γγ™γ‚‹γƒžγ‚€γƒŠγ‚Ήγη‰Ήζ€§γ‚’δΈŽγˆγ‚‹γ“γ¨γ•γˆγ‚γ‚ŠγΎγ™γ€‚\n\n&3&lTips:&r&o &bιŒ¬ι‰„θ£½γ‚°γƒͺル&fは、&dγ‚ͺーブン&fζ§‹ι€ γδΈ­γ§γ‚‚γ€γ‹γ†γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.cook_meat.task.1": "γ‚°γƒͺγƒ«γΎγŸγ―γ‚ͺγƒΌγƒ–γƒ³γ§η„Όγ„γŸθ‚‰γ€‚", "quests.tfg_tips.cook_meat.task.2": "ιŒ¬ι‰„θ£½γ‚°γƒͺγƒ«γΎγŸγ―δΈŠιƒ¨γ‚ͺーブン", "quests.tfg_tips.get_veggie.title": "ι‡ŽθœγδΏε­˜", "quests.tfg_tips.get_veggie.subtitle": "γˆγ‚‰γ„οΌ", "quests.tfg_tips.get_veggie.desc": "&aι‡Žθœ&rγ―γ€γ»γ¨γ‚“γ©γŒι‡Žη”Ÿγ§θ¦‹γ€γ‹γ‚‹γ‹γ€εœ°ε…ƒγθΎ²ε ΄γ§ζ ½εŸΉγ•γ‚Œγ¦γ„γΎγ™γ€‚&b酒漬け&rにすることしかできません。", "quests.tfg_tips.get_fruit.title": "ζžœη‰©γδΏε­˜", "quests.tfg_tips.get_fruit.subtitle": "γŠγ„γ—γ„οΌ", - "quests.tfg_tips.get_fruit.desc": "&aζžœη‰©&rγ―γ€γ»γ¨γ‚“γ©γŒι‡Žη”Ÿγ§θ¦‹γ€γ‹γ‚ŠγΎγ™γ€‚ε…₯ζ‰‹η΅Œθ·―γ―&bζœ¨γ‚„θŒ‚γΏ&rγ‹γ‚‰εŽη©«γ™γ‚‹γ‚‚γγ‹γ€&bパロン&rと&bγ‚«γƒœγƒγƒ£&rγγ‚ˆγ†γͺγ‚‚γγŒγ‚γ‚ŠγΎγ™γ€‚ ι‡Žθœγ¨γ―η•°γͺγ‚Šγ€ζžœη‰©γ«γ―η‹¬θ‡ͺγδΏε­˜ζ‰‹ζ΅γŒγ‚γ‚ŠγΎγ™γ€‚&b酒漬け&rγγ»γ‹γ«&dδΉΎη‡₯&rγ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n&cγƒ‰γƒ©γ‚€γƒ•γƒ«γƒΌγƒ„γ―γ€ζœ€εˆγ&dγ‚€γƒΌγ‚Ήγƒˆ&rγ‚’δ½œγ‚‹γŸγ‚γ«γ‚‚εΏ…θ¦γ§γ™γ€‚", + "quests.tfg_tips.get_fruit.desc": "&aζžœη‰©&rγ―γ€γ»γ¨γ‚“γ©γŒι‡Žη”Ÿγ§θ¦‹γ€γ‹γ‚ŠγΎγ™γ€‚ε…₯ζ‰‹η΅Œθ·―γ―&bζœ¨γ‚„θŒ‚γΏ&rγ‹γ‚‰εŽη©«γ™γ‚‹γ‚‚γγ‹γ€&bパロン&rと&bγ‚«γƒœγƒγƒ£&rγγ‚ˆγ†γͺγ‚‚γγŒγ‚γ‚ŠγΎγ™γ€‚\nι‡Žθœγ¨γ―η•°γͺγ‚Šγ€&b酒漬け&rγγ»γ‹γ«&dδΉΎη‡₯&rγ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ―ζžœη‰©η‹¬θ‡ͺγδΏε­˜ζ–Ήζ³•です。\n&cγƒ‰γƒ©γ‚€γƒ•γƒ«γƒΌγƒ„γ―γ€ζœ€εˆγ&dγ‚€γƒΌγ‚Ήγƒˆ&rγ‚’δ½œγ‚‹γŸγ‚γ«γ‚‚εΏ…θ¦γ§γ™γ€‚", "quests.tfg_tips.dry_fruit.title": "ζžœη‰©γδΏε­˜: δΉΎη‡₯", "quests.tfg_tips.dry_fruit.subtitle": "γ—γ£γ‹γ‚ŠδΉΎγ‹γ—γΎγ—γ‚‡γ†", "quests.tfg_tips.dry_fruit.desc": "&3δΉΎη‡₯γƒžγƒƒγƒˆ&rγ‚’δ½Ώη”¨γ™γ‚‹γ¨γ€ζžœη‰©γ‚’δΉΎη‡₯γ•γ›γ¦δΏε­˜ζœŸι–“γ‚’ε»Άγ°γ™γ“γ¨γŒγ§γγΎγ™γ€‚&3ε€ͺι™½ε…‰δΉΎη‡₯機&rγ―γ€γ‚ˆγ‚Šι«˜εΊ¦γͺγ‚‚γγ§γ™γ€‚", @@ -4310,9 +4607,9 @@ "quests.tfg_tips.dry_fruit.task.2": "δΉΎη‡₯γƒžγƒƒγƒˆγΎγŸγ―ε€ͺι™½ε…‰δΉΎη‡₯機", "quests.tfg_tips.get_grain.title": "穀物γδΏε­˜", "quests.tfg_tips.get_grain.subtitle": "η‚­ζ°΄εŒ–η‰©γŸγ‘", - "quests.tfg_tips.get_grain.desc": "&a穀物&rはη¨ι‘žγŒγγ‚Œγͺγ‚Šγ«θ±Šε―Œγ§γ€γ‚γͺたγεœ°ε…ƒγ§γ‚‚η°‘ε˜γ«ζ ½εŸΉγ§γγΎγ™γ€‚ζœͺ加ε·₯γη©€η‰©γ―ι•·ζŒγ‘γ—γͺγ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€δΏε­˜ζœŸι–“γ‚’ε€§εΉ…γ«ε»Άγ°γ™ζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.get_grain.desc": "&a穀物&rはη¨ι‘žγŒγγ‚Œγͺγ‚Šγ«θ±Šε―Œγ§γ€γ‚γͺたγεœ°ε…ƒγ§γ‚‚η°‘ε˜γ«ζ ½εŸΉγ§γγΎγ™γ€‚\nζœͺ加ε·₯γη©€η‰©γ―ι•·ζŒγ‘γ—γͺγ„γ‹γ‚‚γ—γ‚ŒγΎγ›γ‚“γŒγ€δΏε­˜ζœŸι–“γ‚’ε€§εΉ…γ«ε»Άγ°γ™ζ–Ήζ³•γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.get_grain.task": "任意γη©€η‰©", - "quests.tfg_tips.process_grain.title": "穀物γδΏε­˜: γƒŠγ‚€γƒ•ε‡¦η†", + "quests.tfg_tips.process_grain.title": "穀物γδΏε­˜οΌšθ„±η©€", "quests.tfg_tips.process_grain.subtitle": "γ“γ‚Œγ γ‘γ§γ™", "quests.tfg_tips.process_grain.desc": "γƒŠγ‚€γƒ•γ¨&a穀物&rγ§γ‚―γƒ©γƒ•γƒˆγ™γ‚‹γ¨γ€&d穀物γη²’&rγ¨θ—γŒεΎ—γ‚‰γ‚ŒγΎγ™γ€‚η©€η‰©γη²’γ―γ‚‚γ¨γ‚ˆγ‚ŠιžεΈΈγ«ι•·ζŒγ‘γ—γΎγ™γ€‚", "quests.tfg_tips.passive_preservation.title": "ι£Ÿζ–™γθ²―蔡法", @@ -4320,32 +4617,32 @@ "quests.tfg_tips.passive_preservation.desc": "ι£Ÿε“γ‚’δΏε­˜γ—γͺγŒγ‚‰θ²―θ”΅γ™γ‚‹ζ–Ήζ³•γ―γ„γγ€γ‹γ‚γ‚ŠγΎγ™γ€‚δΈŠγ3぀は特にε„ͺγ‚ŒγŸζ–Ήζ³•γ§γ™γ€‚", "quests.tfg_tips.vessel_preservation.title": "δΈ€θˆ¬ηš„γͺθ²―θ”΅:ε£Ί", "quests.tfg_tips.vessel_preservation.subtitle": "ε‹‡θ€…γ‚’ζ‹›γγ„γ‚Œγ¦γ―γ„γ‘γΎγ›γ‚“", - "quests.tfg_tips.vessel_preservation.desc": "ι£Ÿε“γ―&aε£Ί&rまたは&a倧きγͺε£Ί&rにε…₯γ‚ŒγΎγ—γ‚‡γ†γ€‚ε€§γγͺε£Ίγ―γ—γ£γ‹γ‚Šγ¨θ“‹γ‚’ι–‰γ‚γ¦γŠγγΎγ—γ‚‡γ†γ€‚ ε…₯γ‚Œγ¦γ„γ‚‹ι–“γ―γ€&dε―†ι–‰&rγδΏε­˜η‰Ήζ€§γŒεΎ—γ‚‰γ‚Œγ€δΏε­˜ζœŸι–“γŒε»Άγ³γΎγ™γ€‚ι£Ÿε“γ‚’ζŒγ‘運ぢγγ«γ‚‚適しています!", + "quests.tfg_tips.vessel_preservation.desc": "ι£Ÿε“γ―&aε£Ί&rまたは&a倧きγͺε£Ί&rにε…₯γ‚ŒγΎγ—γ‚‡γ†γ€‚ε€§γγͺε£Ίγ―γ—γ£γ‹γ‚Šγ¨θ“‹γ‚’ι–‰γ‚γ¦γŠγγΎγ—γ‚‡γ†γ€‚\nε…₯γ‚Œγ¦γ„γ‚‹ι–“γ―γ€&dε―†ι–‰&rγδΏε­˜η‰Ήζ€§γŒεΎ—γ‚‰γ‚Œγ€δΏε­˜ζœŸι–“γŒε»Άγ³γΎγ™γ€‚ι£Ÿε“γ‚’ζŒγ‘運ぢγγ«γ‚‚適しています!", "quests.tfg_tips.cellar.title": "θ²―θ”΅εΊ«", - "quests.tfg_tips.cellar.subtitle": "εη‰©εΊ«", - "quests.tfg_tips.cellar.desc": "&3θ²―θ”΅εΊ«&rγ―γ€ι£Ÿε“γ‚’ι•·ζœŸι–“δΏε­˜γ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγ‚‹γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ§‹ι€ δ½“γ§γ™γ€‚γ“γ“γ§γ―ι£Ÿε“γ―γ€&aι£Ÿε“ζ£š&rと&aεŠγ‚‹γ—ζ£š&rに保η‘γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ“γ“γ§&bγƒγƒΌγ‚Ίγ‚’η†Ÿζˆγ•γ›γ‚‹&rこともできます。\n&3θ²―θ”΅εΊ«&rγζ§‹η―‰ζ–Ήζ³•に぀いては、&2フィールドガむド&rγ‚’η’Ίθͺγ—てください。", + "quests.tfg_tips.cellar.subtitle": "θ…Ήγƒšγ‚³γ«γ¨γ£γ¦γ―εη‰©εΊ«", + "quests.tfg_tips.cellar.desc": "&3θ²―θ”΅εΊ«&rγ―γ€ι£Ÿε“γ‚’ι•·ζœŸι–“δΏε­˜γ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγ‚‹γƒžγƒ«γƒγƒ–γƒ­γƒƒγ‚―ζ§‹ι€ δ½“γ§γ™γ€‚\nγ“γ“γ§γ―ι£Ÿε“γ―γ€&aι£Ÿε“ζ£š&rと&aεŠγ‚‹γ—ζ£š&rに保η‘γ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚γ“γ“γ§&bγƒγƒΌγ‚Ίγ‚’η†Ÿζˆγ•γ›γ‚‹&rこともできます。\n&3θ²―θ”΅εΊ«&rγζ§‹η―‰ζ–Ήζ³•に぀いては、&2フィールドガむド&rγ‚’η’Ίθͺγ—てください。", "quests.tfg_tips.cellar.task": "ε―†ι–‰γ•γ‚ŒγŸγ‚¨γƒ³γƒˆγƒͺγδ»»ζ„γε½’式。", "quests.tfg_tips.refrigerator.title": "ε†·θ”΅εΊ«", "quests.tfg_tips.refrigerator.subtitle": "γΎγ•γ«ζ–‡ζ˜Žγεˆ©ε™¨", - "quests.tfg_tips.refrigerator.desc": "&bMV&r時代にまで進むと、&dε†·θ”΅εΊ«&rγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚γ“γ‚Œγ«ε…₯γ‚ŒγŸι£Ÿε“γ«γ―&oζœ€ι«˜γ&rζ™ιηš„γͺδΏε­˜η‰Ήζ€§γ‚’δΈŽγˆγ¦γγ‚ŒγΎγ™γ€‚εΌ•γζ›γˆγ¨γ—γ¦ι›»εŠ›γ‚’ζΆˆθ²»γ—ηΆšγ‘γΎγ™γ€‚η”Ÿγι£Ÿε“γ€θͺΏη†ζΈˆγΏγι£Ÿε“γ€γ‚΅γƒ³γƒ‰γ‚€γƒƒγƒγͺどγθ€‡εˆι£Ÿε“γ§γ‚‚δΏε­˜γ§γγΎγ™γ€‚", + "quests.tfg_tips.refrigerator.desc": "&bMV&r時代にまで進むと、&dε†·θ”΅εΊ«&rγ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\nγ“γ‚Œγ«ε…₯γ‚ŒγŸι£Ÿε“γ«γ―&oζœ€ι«˜γ&rζ™ιηš„γͺδΏε­˜η‰Ήζ€§γ‚’δΈŽγˆγ¦γγ‚ŒγΎγ™γ€‚εΌ•γζ›γˆγ¨γ—γ¦ι›»εŠ›γ‚’ζΆˆθ²»γ—ηΆšγ‘γΎγ™γ€‚η”Ÿγι£Ÿε“γ€θͺΏη†ζΈˆγΏγι£Ÿε“γ€γ‚΅γƒ³γƒ‰γ‚€γƒƒγƒγͺどγθ€‡εˆι£Ÿε“γ§γ‚‚δΏε­˜γ§γγΎγ™γ€‚", "quests.tfg_tips.cellar_blocks.title": "貯蔡庫でγδΏη‘方法", "quests.tfg_tips.cellar_blocks.subtitle": "ι£Ÿε“γι›†εˆδ½ε…", - "quests.tfg_tips.cellar_blocks.desc": "&bι£Ÿε“ζ£š&rγ―γ€γ‚γ‚‰γ‚†γ‚‹ι£Ÿε“γ‚’δΏη‘できます。&bεŠγ‚‹γ—ζ£š&rは、&a肉&rと&aニンニク&rを保η‘γ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚ ここに保η‘γ•γ‚ŒγŸι£Ÿε“γ―γ€&dε£Ί&rγ‚ˆγ‚Šγ‚‚εΌ·εŠ›γͺδΏε­˜η‰Ήζ€§γ‚’ε—γ‘ε–γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.cellar_blocks.desc": "&bι£Ÿε“ζ£š&rγ―γ€γ‚γ‚‰γ‚†γ‚‹ι£Ÿε“γ‚’δΏη‘できます。&bεŠγ‚‹γ—ζ£š&rは、&a肉&rと&aニンニク&rを保η‘γ™γ‚‹γŸγ‚γ«δ½Ώη”¨γ§γγΎγ™γ€‚\nここに保η‘γ•γ‚ŒγŸι£Ÿε“γ―γ€&dε£Ί&rγ‚ˆγ‚Šγ‚‚εΌ·εŠ›γͺδΏε­˜η‰Ήζ€§γ‚’ε—γ‘ε–γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.beneath.title": "The Beneath", - "quests.tfg_tips.beneath.subtitle": "センター・γ‚ͺブ・ジ・をース", - "quests.tfg_tips.beneath.desc": "地γεΊ•深く、&d岩盀&rγ‚’θΆŠγˆγŸε…ˆγ«γ―ιŽι…·γͺεœ°δΈ‹η©Ίι–“γ§γ‚γ‚‹&4The_Beneath&rγŒγ‚γ‚ŠγΎγ™γ€‚&4Beneath&rγ«γ―ι€²θ‘Œγ«εΏ…ι ˆγͺθ¦η΄ γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ε€šγγγƒͺγ‚½γƒΌγ‚Ήγ¨η”Ÿζ΄»γθ³ͺγ‚’ε‘δΈŠγ•γ›γ‚‹θ¦η΄ γŒηœ γ£γ¦γ„γΎγ™γ€‚", + "quests.tfg_tips.beneath.subtitle": "γŠγ„εœ°η„γ•θ‘Œγγ‚“γ γ§οΌ", + "quests.tfg_tips.beneath.desc": "地γεΊ•深く、&d岩盀&rγ‚’θΆŠγˆγŸε…ˆγ«γ―ιŽι…·γͺεœ°δΈ‹η©Ίι–“γ§γ‚γ‚‹&4The_Beneath&rγŒγ‚γ‚ŠγΎγ™γ€‚\n&4Beneath&rγ«γ―ι€²θ‘Œγ«εΏ…ι ˆγͺθ¦η΄ γ―γ‚γ‚ŠγΎγ›γ‚“γŒγ€ε€šγγγƒͺγ‚½γƒΌγ‚Ήγ¨η”Ÿζ΄»γθ³ͺγ‚’ε‘δΈŠγ•γ›γ‚‹θ¦η΄ γŒηœ γ£γ¦γ„γΎγ™γ€‚", "quests.tfg_tips.beneath_prep.title": "Beneathγ«ε‘γ‘γŸζ”―εΊ¦", "quests.tfg_tips.beneath_prep.subtitle": "ζΊ–ε‚™γ‚’ζ€ γ‚‹γͺ", "quests.tfg_tips.beneath_prep.desc": "&4Beneath&rγ―ιžεΈΈγ«ε±ι™Ίγ§γ™γ€‚εœ°ηƒγδΈ­εΏƒγ«θΏ‘γ„γŸγ‚γ€εΉ³ε‡ζ°—ζΈ©γ―常に&c15Β°Cδ»₯上&rγ§γ‚γ‚Šγ€ζ·±γζ½œγ‚‹γ»γ©ι«˜γγͺγ‚ŠγΎγ™γ€‚γγ—γ¦ε±ι™Ίγͺη”Ÿη‰©γŸγ‘γŒζ•°ε€šγζ½œγ‚“γ§γ„γΎγ™γ€‚\nこγε…ˆγγ‚―γ‚¨γ‚Ήγƒˆγ§γ―γ€ζŽ’η΄’γ‚’γ™γ‚‹γŸγ‚γ«εΏ…θ¦γͺζΊ–ε‚™γ‚’ζ•™γˆγΎγ™γ€‚", "quests.tfg_tips.beneath_temp_management.title": "体温η‘理:冷却手ζ΅", "quests.tfg_tips.beneath_temp_management.subtitle": "ιš™γ‚’θ¦‹γ¦ε†·ε΄", - "quests.tfg_tips.beneath_temp_management.desc": "&4Beneath&rγ―γ€ζ°—ζΈ©γŒι«˜γ„γŸγ‚γ€δ½“γ‚’ε†·ε΄γ™γ‚‹ζ‰‹ζ΅γ¨γ—て&aζ°΄&rγ‚’ζŒγ£γ¦γ„γγΎγ—γ‚‡γ†γ€‚ δΈ€ζ™‚ηš„γͺεŸΊεœ°γ‚’δ½œγ‚‹δΊˆεšγŒγ‚γ‚‹ε ΄εˆγ―、ζ₯΅εœ°εœ°εŸŸγ§ζŽ‘ζŽ˜γ—γŸ&b氷告&rγ‚’ζŒγ£γ¦γ„γγ¨γ„γ„γ§γ—γ‚‡γ†γ€‚", + "quests.tfg_tips.beneath_temp_management.desc": "&4Beneath&rγ―γ€ζ°—ζΈ©γŒι«˜γ„γŸγ‚γ€δ½“γ‚’ε†·ε΄γ™γ‚‹ζ‰‹ζ΅γ¨γ—て&aζ°΄&rγ‚’ζŒγ£γ¦γ„γγΎγ—γ‚‡γ†γ€‚\nδΈ€ζ™‚ηš„γͺεŸΊεœ°γ‚’δ½œγ‚‹δΊˆεšγŒγ‚γ‚‹ε ΄εˆγ―、ζ₯΅εœ°εœ°εŸŸγ§ζŽ‘ζŽ˜γ—γŸ&b氷告&rγ‚’ζŒγ£γ¦γ„γγ¨γ„γ„γ§γ—γ‚‡γ†γ€‚", "quests.tfg_tips.beneath_clothes.title": "体温η‘理:ζœθ£…", "quests.tfg_tips.beneath_clothes.subtitle": "クールビズ", "quests.tfg_tips.beneath_clothes.desc": "&b服&rも体温η‘η†γ«γŠγ„γ¦ι‡θ¦γͺε½Ήε‰²γ‚’ζžœγŸγ—γΎγ™γ€‚&4Beneath&rγ«θ‘Œγε‰γ«ζœ€γ‚‚η°‘ε˜γ«δ½œγ‚Œγ‚‹γγ―&dιΊ»γζœ&rです。\n\n&dη΅Ήθ£½γζœ&rには&aη΅Ήη³Έ&rγŒεΏ…θ¦γ§γ€γ“γ‚Œγ―&cWebbed_Lair&rγ¨ε‘Όγ°γ‚Œγ‚‹Beneathε†…γγƒγ‚€γ‚ͺγƒΌγƒ γ«ε€§ι‡γ«γ‚γ‚ŠγΎγ™γ€‚\n\n&9青鋼&rγθ£½ι€ γ«ζˆεŠŸγ—γ¦γ„γŸε ΄εˆγ―γ‚ˆγ‚Šγ‚ˆγ„θ£…ε‚™γŒδ½œγ‚ŒγΎγ™γ€‚", "quests.tfg_tips.blue_steel_diving.title": "青鋼γζ½œζ°΄θ£…ε‚™", "quests.tfg_tips.blue_steel_diving.subtitle": "η©ΊθͺΏδ»˜γδ½œζ₯­ζœ", - "quests.tfg_tips.blue_steel_diving.desc": "&9青鋼γζ½œζ°΄θ£…ε‚™&rは、着用している間、&c溢岩と火&rに対してεŒε…¨γͺθ€ζ€§γ‚’εΎ—γ‚‰γ‚Œγ‚‹η‰Ήεˆ₯γͺ装備です。体温を&a下げる&rεŠΉζžœγ‚’ζŒγ‘γ€γ‹γ€&b断熱性&rγŒι«˜γ„γŸγ‚γ€&4Beneath&rにいる間γδ½“ζΈ©γ‚’ε‰εšγ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.blue_steel_diving.desc": "&9青鋼γζ½œζ°΄θ£…ε‚™&rは、着用している間、&c溢岩と火&rに対してεŒε…¨γͺθ€ζ€§γ‚’εΎ—γ‚‰γ‚Œγ‚‹η‰Ήεˆ₯γͺ装備です。\n体温を&a下げる&rεŠΉζžœγ‚’ζŒγ‘γ€γ‹γ€&b断熱性&rγŒι«˜γ„γŸγ‚γ€&4Beneath&rにいる間γδ½“ζΈ©γ‚’ε‰εšγ•γ›γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.juicer.title": "γ‚Έγƒ₯γƒΌγ‚΅γƒΌ", "quests.tfg_tips.juicer.subtitle": "γ—γΌγ‚ŠγŸγ¦γ‚’γ©γ†γž", "quests.tfg_tips.juicer.desc": "&3Juicer&rは、&aζžœη‰©&rγ‚„&aγ‚­γƒŽγ‚³&rγͺγ©γ«ε«γΎγ‚Œγ¦γ„γ‚‹ζ°΄εˆ†γ‹γ‚‰γ€ι£²γ‚γ‚‹&dζ°΄&rγ‚’η΅žγ‚Šε‡Ίγ™γ‚’γ‚€γƒ†γƒ γ§γ™γ€‚\n\n水は&4Beneath&rγδΈŠε±€γ«γ―γ‚γ‚ŠγΎγ™γŒγ€δΈ‹γ«θ‘Œγγ»γ©γ€δΈθΆ³γ—γ¦γ„γγΎγ™γ€‚γŸγ γ—γ€&aγ‚­γƒŽγ‚³&rγ§γ‚γ‚Œγ°&4Beneath&rγγ©γ“γ§γ‚‚θ¦‹γ€γ‹γ‚ŠγΎγ™γγ§γ€θ„±ζ°΄η—‡ηŠΆγγƒͺγ‚Ήγ‚―γ‚’ζΈ›γ‚‰γ™γ“γ¨γŒγ§γγΎγ™οΌ", @@ -4360,28 +4657,28 @@ "quests.tfg_tips.reach_the_beneath.task": "The Beneathにいる", "quests.tfg_tips.fuck_go_back.title": "The Beneathからγθ„±ε‡Ίζ–Ήζ³•", "quests.tfg_tips.fuck_go_back.subtitle": "ε‡Ίε£γŒθ¦‹ε½“γŸγ‚‰γͺいけど...", - "quests.tfg_tips.fuck_go_back.desc": "&4The Beneath&rから脱出するには、&d倩井γε²©η›€&rγθΏ‘γγ§εΎ…ζ©Ÿγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ζ•°η§’εΎ…γ£γ¦γ„γ‚‹γ¨γ€&bεœ°δΈŠδΈ–η•Œ&rγεŒγ˜X座標とZ座標γδ½η½γ«θ»’ι€γ•γ‚ŒγΎγ™γ€‚", + "quests.tfg_tips.fuck_go_back.desc": "&4Beneath&rから脱出するには、&d倩井γε²©η›€&rγθΏ‘γγ§εΎ…ζ©Ÿγ™γ‚‹εΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚ζ•°η§’εΎ…γ£γ¦γ„γ‚‹γ¨γ€&bεœ°δΈŠδΈ–η•Œ&rγεŒγ˜X座標とZ座標γδ½η½γ«θ»’ι€γ•γ‚ŒγΎγ™γ€‚", "quests.tfg_tips.piglin_bartering.title": "ピグγƒͺンとγε–εΌ•", "quests.tfg_tips.piglin_bartering.subtitle": "貴重γͺε–εΌ•ε…ˆ", "quests.tfg_tips.piglin_bartering.desc": "&4Beneath&rγδ½ζ°‘γŸγ‘γ¨γ―γ€ε–εΌ•γ‚’γ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚ι‡‘γ‚’ζ”―ζ‰•γ£γ¦γ€&aι‡‘ε±ž&rγ‚„&a革&rγͺどγε½Ήη«‹γ€γƒͺソースと取引してみましょう。\n取引γθ©³η΄°γ«γ€γ„ては、&2フィールドガむド&rをご覧ください。", "quests.tfg_tips.piglin_disguise.subtitle": "バレてγͺγ„γ‚ˆγͺ...", - "quests.tfg_tips.piglin_disguise.desc": "あγͺγŸγ―ε‘¨ε›²γ«ι¦΄ζŸ“γ‚γ¦γ„γΎγ™γ‹οΌŸ\nあγͺたγε€–見γγ›γ„で、&4ピグγƒͺン&rγ«γ„γ˜γ‚γ‚‰γ‚ŒγŸγ‚Šγ―γ—γ¦γ„γΎγ›γ‚“γ‹οΌŸ\n&aピグγƒͺンγγƒžγ‚Ήγ‚―&rを蒫って、不要γͺ注η›γ‚’ιΏγ‘γ€ε‘¨γ‚Šγ«ζΊΆγ‘θΎΌγ‚“γ§γΏγ¦γγ γ•γ„γ€‚", + "quests.tfg_tips.piglin_disguise.desc": "あγͺγŸγ―ε‘¨ε›²γ«ι¦΄ζŸ“γ‚γ¦γ„γΎγ™γ‹οΌŸ\nあγͺたγε€–見γγ›γ„で、&4ピグγƒͺン&rγ«γ„γ˜γ‚γ‚‰γ‚ŒγŸγ‚Šγ―γ—γ¦γ„γΎγ›γ‚“γ‹οΌŸ\n&aピグγƒͺンγε€‰θ£…γƒžγ‚Ήγ‚―&rを蒫って、不要γͺ注η›γ‚’ιΏγ‘γ€ε‘¨γ‚Šγ«ζΊΆγ‘θΎΌγ‚“γ§γΏγ¦γγ γ•γ„γ€‚", "quests.tfg_tips.trowel.title": "こて", "quests.tfg_tips.trowel.subtitle": "Quarkむンスパむを", - "quests.tfg_tips.trowel.desc": "&4こて&rγ―γ€γƒ›γƒƒγƒˆγƒγƒΌγ«γ‚γ‚‹γƒ–γƒ­γƒƒγ‚―γ‚’&bランダムに&rθ¨­η½γ§γγ‚‹ε»Ίη―‰εΆε‘けγγƒ„ールです。 こては、レンガやそγδ»–γδ½Ώη”¨ε―能γͺをむテムを使用して、&5RNR_Roads&rγγ‚Ώγ‚€γƒ«γ‚’ランダムに設η½γ™γ‚‹γ“とγͺγ©γ«δ½ΏγˆγΎγ™γ€‚", + "quests.tfg_tips.trowel.desc": "&4こて&rγ―γ€γƒ›γƒƒγƒˆγƒγƒΌγ«γ‚γ‚‹γƒ–γƒ­γƒƒγ‚―γ‚’&bランダムに&rθ¨­η½γ§γγ‚‹ε»Ίη―‰εΆε‘けγγƒ„ールです。\nこては、レンガやそγδ»–γδ½Ώη”¨ε―能γͺをむテムを使用して、&5RNR_Roads&rγγ‚Ώγ‚€γƒ«γ‚’ランダムに設η½γ™γ‚‹γ“とγͺγ©γ«δ½ΏγˆγΎγ™γ€‚", "quests.tfg_tips.lunchbox.title": "γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", "quests.tfg_tips.lunchbox.subtitle": "γƒγ‚±γƒƒγƒˆγδΈ­γε†·θ”΅εΊ«οΌ", - "quests.tfg_tips.lunchbox.desc": "γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ήγ«γ―9぀γι£Ÿε“γ‚Ήγƒ­γƒƒγƒˆγŒγ‚γ‚Šγ€ι£Ÿε“γ‚’δΏε†·γ—γ€ι•·ζŒγ‘させます。\nCooling_Lunch_Boxγ―ι€šεΈΈγγ‚‚γγ‚ˆγ‚Šγ‚‚δΏε­˜εŠΉζžœγŒεΌ·γ„γ§γ™γŒγ€ζ°·γΎγŸγ―冷却セルをε…₯γ‚Œγ¦γŠγεΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", + "quests.tfg_tips.lunchbox.desc": "γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ήγ«γ―9぀γι£Ÿε“γ‚Ήγƒ­γƒƒγƒˆγŒγ‚γ‚Šγ€ι£Ÿε“γ‚’δΏε†·γ—γ€ι•·ζŒγ‘させます。\nδΏε†·γƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ήγ―ι€šεΈΈγγ‚‚γγ‚ˆγ‚Šγ‚‚δΏε­˜εŠΉζžœγŒεΌ·γ„γ§γ™γŒγ€ζ°·γΎγŸγ―冷却用γγ‚»γƒ«γ‚’ε…₯γ‚Œγ¦γŠγεΏ…θ¦γŒγ‚γ‚ŠγΎγ™γ€‚", "quests.tfg_tips.lunchbox.task.1": "任意γγƒ©γƒ³γƒγƒœγƒƒγ‚―γ‚Ή", "quests.tfg_tips.lunchbox.task.2": "任意γζ°·γγƒ–ロック", - "quests.tfg_tips.lunchbox.task.3": "梲体氷を含む任意γγ‚»γƒ«", + "quests.tfg_tips.lunchbox.task.3": "梲体氷ζ³₯を含む任意γγ‚»γƒ«", "quests.tfg_tips.transportation_tips.title": "Tips - 移動手ζ΅", "quests.tfg_tips.transportation_tips.subtitle": "こγδΈ–η•Œγζ­©γζ–Ή", "quests.tfg_tips.tools_tips.title": "Tips - ツール", "quests.tfg_tips.tools_tips.subtitle": "η‰©γ―δ½Ώγ„γ‚ˆγ†", "quests.tfg_tips.tools_tips.tools.title": "ツール", "quests.tfg_tips.tools_tips.tools.subtitle": "どう使うか", - "quests.tfg_tips.tools_tips.tools.desc": "δΊΊι–“γ¨ε‹•η‰©γ‚’ιš”γ¦γ‚‹ε”―δΈ€γγ‚‚γγ―、&l&b道具&r&rγδ½Ώη”¨γ§γ™γ€‚&8&oァル、むルカ、カラス、ラッコ、タコを例倖として...&r&r ι“ε…·γ¨ζŠ€θ‘“γ‚’ι§†δ½Ώγ—γ¦γ€&5γ§γγ‚‹ι™γ‚Šζ₯½γ«&r進めましょう。", + "quests.tfg_tips.tools_tips.tools.desc": "δΊΊι–“γ¨ε‹•η‰©γ‚’ιš”γ¦γ‚‹ε”―δΈ€γγ‚‚γγ―、&l&b道具&r&rγδ½Ώη”¨γ§γ™γ€‚&7&oァル、むルカ、カラス、ラッコ、タコを例倖として...&r&r\nι“ε…·γ¨ζŠ€θ‘“γ‚’ι§†δ½Ώγ—γ¦γ€&5γ§γγ‚‹ι™γ‚Šζ₯½γ«&r進めましょう。", "quests.tfg_tips.tools_tips.seed_oil.title": "ランタン燃料:η¨ζ²Ή", "quests.tfg_tips.tools_tips.seed_oil.subtitle": "η”ŸγΎγ‚Œγ‚‹γ―γšγ γ£γŸε‘½γθΌγ", "quests.tfg_tips.tools_tips.seed_oil.desc": "&dη¨ζ²Ή&rは、&c72&rζ—₯ι–“ζŒηΆšγ—γΎγ™γ€‚", @@ -4392,7 +4689,7 @@ "quests.tfg_tips.tools_tips.soybean_oil.task": "倧豆油γγƒγ‚±γƒ„", "quests.tfg_tips.tools_tips.markings.title": "γƒžγƒΌγ‚­γƒ³γ‚°", "quests.tfg_tips.tools_tips.markings.subtitle": "OSHA規格1910.303に準拠", - "quests.tfg_tips.tools_tips.markings.desc": "&2チョーク&rと同様に&d&lγƒžγƒΌγ‚­γƒ³γ‚°&r&rγ‚’δ½Ώγ£γ¦θ£…ι£Ύγ—γ¦γ€γ‚ˆγ‚Šγ‚€γ‚«γ—γŸζ‹ η‚Ήγ‚’η―‰γγ“γ¨γŒγ§γγΎγ™γ€‚ ζœ€εˆγ«&bHazard_Diamond_Wall_Marking&rγ‚’δ½œζˆγ—γ€ηŸ³εˆ‡γ‚Šε°γ«γ‚ˆγ£γ¦δ»–γη¨ι‘žγγƒžγƒΌγ‚­γƒ³γ‚°γ‚’δ½œζˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.tools_tips.markings.desc": "&2チョーク&rと同様に&d&lγƒžγƒΌγ‚­γƒ³γ‚°&r&rγ‚’δ½Ώγ£γ¦θ£…ι£Ύγ—γ¦γ€γ‚ˆγ‚Šγ‚€γ‚«γ—γŸζ‹ η‚Ήγ‚’η―‰γγ“γ¨γŒγ§γγΎγ™γ€‚\nζœ€εˆγ«&bHazard_Diamond_Wall_Marking&rγ‚’δ½œζˆγ—γ€ηŸ³εˆ‡γ‚Šε°γ«γ‚ˆγ£γ¦δ»–γη¨ι‘žγγƒžγƒΌγ‚­γƒ³γ‚°γ‚’δ½œζˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", "quests.tfg_tips.tools_tips.markings.task": "任意γ#ags_modernmarkings:markings", "quests.tfg_tips.tools_tips.cryodesiccation.title": "フγƒͺーズドラむ", "quests.tfg_tips.tools_tips.cryodesiccation.subtitle": "ι£ŸδΊ‹γ‚’ζ₯½γ—まγͺい方向け", @@ -4400,5 +4697,27 @@ "quests.tfg_tips.tools_tips.harvest_basket.title": "εŽη©«γ‹γ”", "quests.tfg_tips.tools_tips.harvest_basket.subtitle": "θƒŒγŒδ½Žγ„ζ–Ήε‘γ‘γ€‚", "quests.tfg_tips.tools_tips.harvest_basket.task": "任意γ#tfg:harvester", - "quests.tfg_tips.tools_tips.harvest_basket.desc": "&l&2εŽη©«γ‹γ”&r&rは、&5TFG&rγγŸγ‚γ«δ½œγ‚‰γ‚ŒγŸζ–°γ—い道具です! γ“γ‚Œγ‚’δ½Ώγˆγ°γ€γƒ―γƒ³γ‚―γƒͺγƒƒγ‚―γ§ζœ¨ε…¨δ½“γ‚„ζžœη‰©γθŒ‚γΏγ‹γ‚‰εŽη©«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ ι€šεΈΈγ&6εŽη©«γ‹γ”&rγθ€δΉ…倀は&n128&rです。&3γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ εŽη©«γ‹γ”&rγ―δ½Ώη”¨ζ™‚γ«θ€δΉ…γŒζΈ›γ‚ŠγΎγ›γ‚“γ€‚" + "quests.tfg_tips.tools_tips.harvest_basket.desc": "&l&2εŽη©«γ‹γ”&r&rは、&5TFG&rγγŸγ‚γ«δ½œγ‚‰γ‚ŒγŸζ–°γ—い道具です!\nγ“γ‚Œγ‚’δ½Ώγˆγ°γ€γƒ―γƒ³γ‚―γƒͺγƒƒγ‚―γ§ζœ¨ε…¨δ½“γ‚„ζžœη‰©γθŒ‚γΏγ‹γ‚‰εŽη©«γ™γ‚‹γ“γ¨γŒγ§γγΎγ™οΌ\nι€šεΈΈγ&6εŽη©«γ‹γ”&rγθ€δΉ…倀は&n128&rです。&3γ‚’γƒ«γƒŸγƒ‹γ‚¦γƒ εŽη©«γ‹γ”&rγ―δ½Ώη”¨ζ™‚γ«θ€δΉ…γŒζΈ›γ‚ŠγΎγ›γ‚“γ€‚", + "quests.tfg_tips.transportation_tips.rnr_plow.title": "θˆ—θ£…θ»Š", + "quests.tfg_tips.transportation_tips.rnr_plow.subtitle": "すべてγι“はあγͺたγζ‹ η‚Ήγ«ι€šγ˜γ‚‹", + "quests.tfg_tips.transportation_tips.rnr_plow.desc": "ι“γ‚’ζ•΄ε‚™γ™γ‚‹γ¨ιžεΈΈγ«εΏ«ι©γ«γͺγ‚ŠγΎγ™γŒγ€ι“γ₯γγ‚ŠγγŸγ‚γ«γ―、右クγƒͺγƒƒγ‚―γ¨γ„γ†ι‡εŠ΄εƒγŒεΏ…θ¦γ§γ—γŸγ€‚γ“γ‚Œγ‹γ‚‰γ―ι¦¬γ«ι“θ·―γ‚’δ½œγ‚‰γ›γ¦γ—γΎγ„γΎγ—γ‚‡γ†οΌ\n&dPaving_Cart(θˆ—θ£…θ»Š)&rは、TFGγγŸγ‚γ«η‰Ήεˆ₯γ«ι–‹η™Ίγ•γ‚ŒγŸ&cAstikor_Cart&rです。こγγ‚«γƒΌγƒˆγ‚’使うことで、道路幅を設εšγ—γŸγ‚Šγƒ©γƒ³γƒ€γƒ γƒ’γƒΌγƒ‰γ‚’εˆ©η”¨γ—γŸγ‚Šγ—γ¦γ€&cθˆ—θ£…γ•γ‚ŒγŸι“θ·―&rγ‚’θ‡ͺε‹•ηš„γ«δ½œζˆγ™γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.tools_tips.mattocks.title": "γƒžγƒˆγƒƒγ‚―", + "quests.tfg_tips.tools_tips.mattocks.subtitle": "シャベルにはできγͺγ‹γ£γŸγ“γ¨", + "quests.tfg_tips.tools_tips.mattocks.task0": "Any Mattock", + "quests.tfg_tips.tools_tips.mattocks.task1": "Any Road Material", + "quests.tfg_tips.tools_tips.mattocks.desc": "&cMattocks(γƒžγƒˆγƒƒγ‚―)&rは、TFGγ§ι“θ·―γ‚’ζ•΄ε‚™γ™γ‚‹γŸγ‚γεΏ…ι ˆγƒ„γƒΌγƒ«γ§γ™γ€‚δ»–γTFCγƒ„γƒΌγƒ«γ¨εŒγ˜γγ€ι›ε†Άγ«γ‚ˆγ£γ¦δ½œζˆγ§γγΎγ™γ€‚\nδ½Ώη”¨γ™γ‚‹ιš›γ―γ€γƒ’γƒΌγƒ‰(γƒ‡γƒ•γ‚©γƒ«γƒˆγ‚­γƒΌ:&3&lN&r&r)γ‚’γ€Œγƒ•γƒ«γƒ–γƒ­γƒƒγ‚―γ€γ«εˆ‡γ‚Šζ›Ώγˆγ¦γγ γ•γ„γ€‚\nγγ†γ™γ‚‹γ¨εœŸγ‚„θ‰γ‚’ε³γ‚―γƒͺγƒƒγ‚―γ—γ¦θΈγΏε›Ίγ‚γ‚‹γ“γ¨γŒγ§γγ€ζ¬‘γ«&6crushed_base_course&rを敷き、そγδΈŠγ«γŠε₯½γΏγζζ–™γ‚’ι‡γ­γ¦ι“θ·―γ‚’δ»•δΈŠγ’γ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.tools_tips.base_course.title": "Base Course", + "quests.tfg_tips.tools_tips.base_course.subtitle": "すべてγι“γεŸΊη€Ž", + "quests.tfg_tips.tools_tips.base_course.task": "Look at Base Course", + "quests.tfg_tips.tools_tips.gravel_roads.title": "η ‚εˆ©ι“", + "quests.tfg_tips.tools_tips.gravel_roads.subtitle": "γ‚γ‚ŠγγŸγ‚Šγͺ道", + "quests.tfg_tips.tools_tips.gravel_roads.task": "Any Gravel Road Material", + "quests.tfg_tips.tools_tips.gravel_roads.desc": "γ“γ‚Œγ‚‰γζζ–™γ‚’base_courseγ«δ½Ώη”¨γ™γ‚‹γ¨γ€ζ­©θ‘Œι€ŸεΊ¦γŒ&b&l10%%&r&rγ‚’γƒƒγƒ—γ™γ‚‹ι“θ·―γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.tools_tips.brick_roads.title": "レンガ歩道", + "quests.tfg_tips.tools_tips.brick_roads.subtitle": "δΊΊγι“", + "quests.tfg_tips.tools_tips.brick_roads.task": "Any Brick Road Material", + "quests.tfg_tips.tools_tips.brick_roads.desc": "γ“γ‚Œγ‚‰γζζ–™γ‚’base_courseγ«δ½Ώη”¨γ™γ‚‹γ¨γ€ζ­©θ‘Œι€ŸεΊ¦γŒ&b&l20%%&r&rγ‚’γƒƒγƒ—γ™γ‚‹ι“θ·―γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚", + "quests.tfg_tips.tools_tips.concrete_roads.title": "コンクγƒͺγƒΌγƒˆι“θ·―", + "quests.tfg_tips.tools_tips.concrete_roads.subtitle": "道路γγŸγ‚γεŠ΄εƒ", + "quests.tfg_tips.tools_tips.concrete_roads.desc": "&6Wet_concrete_mix&rγ‚’base_courseγ«δ½Ώη”¨γ™γ‚‹γ¨γ€η§»ε‹•ι€ŸεΊ¦γŒ&b&l30%%&r&rγ‚’γƒƒγƒ—γ™γ‚‹ι“θ·―γ‚’δ½œγ‚‹γ“γ¨γŒγ§γγΎγ™γ€‚\n\n&4コンクγƒͺγƒΌγƒˆι“θ·―γ‚’δ½œγ‚‹ιš›γ―&4注意してください&rγ€‚γ²γ³ε‰²γ‚Œγ‚„ζε‚·γ‚’ι˜²γγŸγ‚γ«ζ°—γ‚’δ»˜γ‘γ‚‹γΉγγ“γ¨γŒε€šγγ‚γ‚ŠγΎγ™γ€‚θ©³η΄°γ―γ€&3フィールドガむド&rを参照してください。" } \ No newline at end of file diff --git a/kubejs/assets/tfg/lang/pt_br.json b/kubejs/assets/tfg/lang/pt_br.json index 122c93a3b..bd8332acf 100644 --- a/kubejs/assets/tfg/lang/pt_br.json +++ b/kubejs/assets/tfg/lang/pt_br.json @@ -248,6 +248,8 @@ "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.fluid.sulfur_fumes": "Fumos de Enxofre", + "block.tfg.fluid.geyser_slurry": "Lama Superaquecida", "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", @@ -392,14 +394,11 @@ "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_ammoniacal_water": "Heavy Ammoniacal Water", "fluid.tfg.heavy_water": "Água Pesada", "fluid.tfg.sulfur_fumes": "Fumos de Enxofre", - "fluid.tfg.super_heated_slurry": "Lama Superaquecida", + "fluid.tfg.geyser_slurry": "Lama Superaquecida", + "fluid.tfg.cryogenized_fluix": "Cryogenized Fluix", "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", @@ -574,6 +573,27 @@ "item.tfg.food.cooked_stickastackatick": "Carraplato no Taco Cozido", "item.tfg.food.raw_cruncher_ribs": "Costelas de mastigador Cruas", "item.tfg.food.cooked_cruncher_ribs": "Costelas de Mastigador Cozidas", + "item.tfg.food.raw_beer_battered_cheese_curds": "Coalhos de Queijo Empanados em Cerveja Cru", + "item.tfg.food.cooked_beer_battered_cheese_curds": "Coalhos de Queijo Empanados em Cerveja Fritos", + "item.tfg.food.raw_fries": "Batatas Fritas Cruas", + "item.tfg.food.cooked_fries": "Batatas Fritas", + "item.tfg.food.poutine": "Poutine", + "item.tfg.food.brioche_dough": "Massa de Brioche", + "item.tfg.food.brioche_bun": "PΓ£o Brioche", + "item.tfg.food.raw_burger_patty": "HambΓΊrguer Cru", + "item.tfg.food.cooked_burger_patty": "HambΓΊrguer", + "item.tfg.food.slice_of_cheese": "Fatia de \"Queijo\"", + "item.tfg.food.hamburger": "HambΓΊrguer", + "item.tfg.food.cheeseburger": "HambΓΊrguer com Queijo", + "item.tfg.food.oatmeal": "Papas de Aveia", + "item.tfg.food.raw_instant_mac": "MacarrΓ£o InstantΓ’neo com Queijo Cru", + "item.tfg.food.cooked_instant_mac": "MacarrΓ£o InstantΓ’neo com Queijo", + "item.tfg.spice.bay_leaf": "Folha de Louro", + "item.tfg.spice.cardamom_pods": "Vagens de Cardamomo", + "item.tfg.spice.cilantro_leaves": "Folhas de Coentro", + "item.tfg.spice.cumin_seeds": "Sementes de Cominho", + "item.tfg.spice.oregano_leaves": "Folhas de OrΓ©gano", + "item.tfg.spice.allspice": "Pimenta-da-Jamaica", "item.tfg.roasted_sunflower_seeds": "Sementes de Girassol Torradas", "item.tfg.sunflower_seeds": "Sementes de Girassol", "item.tfg.sunflower_product": "ChapΓ©u de Girassol", @@ -600,7 +620,7 @@ "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.geyser_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", @@ -676,6 +696,13 @@ "item.tfg.linen_cloth": "Pano de Linho", "item.tfg.uv_led": "Β§fLED Β§dUltravioleta", "item.tfg.smd_uv_led": "Β§fLED Β§dUltravioleta Β§fSMD", + "item.tfg.rnr_plow": "Carrinho Pavimentador", + "item.tfg.cobalt_brass_wheel": "Roda de LatΓ£o Cobalto", + "item.tfg.cellulose_matrix": "Matriz de Celulose", + "item.tfg.smooth_endoplasmic_reticula": "RetΓ­culo EndoplasmΓ‘tico Liso", + "item.tfg.rough_endoplasmic_reticula": "RetΓ­culo EndoplasmΓ‘tico Rugoso", + "item.tfg.alpha_keratin": "Ξ±-Queratina", + "item.tfg.progenitor_cells": "CΓ©lulas Progenitoras", "material.tfg.latex": "LΓ‘tex", "material.tfg.vulcanized_latex": "LΓ‘tex Vulcanizado", "material.tfg.fluix": "Fluix", @@ -743,6 +770,24 @@ "material.tfg.bright_regolith": "RegΓ³lito Brilhante", "material.tfg.cassiterite_regolith": "RegΓ³lito Cassiterita", "material.tfg.regolith_mush": "Massa de RegΓ³lito", + "material.tfg.lauryl_alcohol": "Álcool LaurΓ­lico", + "material.tfg.chlorosulfuric_acid": "Ácido ClorossulfΓΊrico", + "material.tfg.sodium_dodecyl_sulfate": "Dodecil Sulfato de SΓ³dio", + "material.tfg.sodium_hypochlorite": "Hipoclorito de SΓ³dio", + "material.tfg.mutative_yeast": "Levedura Mutativa", + "material.tfg.proto_growth_medium": "Meio de Crescimento Proto", + "material.tfg.fibroblast_feeder_cells": "CΓ©lulas Alimentadoras de Fibroblastos", + "material.tfg.gram_stain": "ColoraΓ§Γ£o de Gram", + "material.tfg.crystal_violet": "Cristal Violeta", + "material.tfg.n_n_dimethylaniline": "N,N-Dimetilanilina", + "material.tfg.triglyceride_oil": "Γ“leo de TriglicerΓ­deos", + "material.tfg.cholesterol": "Colesterol", + "material.tfg.butyric_acid": "Ácido ButΓ­rico", + "material.tfg.citric_acid": "Ácido CΓ­trico", + "material.tfg.sodium_dihydrogen_citrate": "Citrato de SΓ³dio Dihidrogenado", + "material.tfg.light_stock": "Caldo Claro", + "material.tfg.rich_stock": "Caldo Rico", + "material.tfg.brown_gravy": "Molho Marrom", "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", @@ -785,6 +830,7 @@ "ore_vein.tfg.normal_sphalerite": "Esfalerita e Pirita", "ore_vein.tfg.normal_spodumene": "Espodumena e Lepidolita", "ore_vein.tfg.normal_sulfur": "Enxofre e Pirita", + "ore_vein.tfg.normal_tarkianite": "Tarcianita e Areias PetrolΓ­feras", "ore_vein.tfg.normal_tetrahedrite": "Tetraedrita (Normal)", "ore_vein.tfg.surface_bismuthinite": "Bismuto (SuperfΓ­cie)", "ore_vein.tfg.surface_cassiterite": "Cassiterita (SuperfΓ­cie)", @@ -792,7 +838,7 @@ "ore_vein.tfg.surface_sphalerite": "Esfalerita e Enxofre", "ore_vein.tfg.surface_tetrahedrite": "Tetraedrita (SuperfΓ­cie)", "ore_vein.tfg.deep_mars_chromite": "Redstone & Chromite", - "ore_vein.tfg.deep_mars_pitchblende": "Pitchblende, Thorium, & Uraninite", + "ore_vein.tfg.deep_mars_pitchblende": "Pitchblende, Thorianite, & Uraninite", "ore_vein.tfg.deep_mars_sheldonite": "Bornite & Cooperite", "ore_vein.tfg.mars_almandine": "Almandine & Sapphire", "ore_vein.tfg.mars_apatite": "Apatita e Pirocloro", @@ -803,10 +849,11 @@ "ore_vein.tfg.mars_sapphire": "Gold, Electrotine, & Bauxite", "ore_vein.tfg.mars_graphite": "Grafite e Diamante", "ore_vein.tfg.mars_hematite": "Hematita e Limonita", + "ore_vein.tfg.mars_lapis": "LΓ‘pis-lazΓΊri, Lazurita e Sodalita", "ore_vein.tfg.mars_lubricant": "Trona, 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_pitchblende": "Pitchblende & Thorianite, & Hematite", "ore_vein.tfg.mars_quartzite": "Quartzite, Asbestos, & Barite", "ore_vein.tfg.mars_salt": "Salts & Spodumene", "ore_vein.tfg.mars_stibnite": "Tetraedrita (Normal)", @@ -881,6 +928,9 @@ "ore_vein.tfg.nether_sylvite": "Silvita", "ore_vein.tfg.nether_tetrahedrite": "Tetraedrita", "ore_vein.tfg.nether_topaz": "TopΓ‘zio e Calcosita", + "ore_vein.tfg.venus_manual_salt": "Salts & Spodumene", + "ore_vein.tfg.venus_manual_salt.emi.0": "Only in Salt Flats.", + "ore_vein.tfg.venus_manual_sulfur": "Enxofre e Pirita", "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": "Β§9Refrigerando", @@ -903,6 +953,7 @@ "entity.tfg.wraptor.male": "DistrΓ‘ptor", "entity.tfg.wraptor.female": "DistrΓ‘ptora", "tfg.tooltip.attribution.wraptor": "Β§9Β§oCrΓ©dito: Species", + "entity.tfg.rnr_plow": "Carrinho Pavimentador", "trim_material.tfc.almandine_tfc": "Almandina", "trim_material.tfc.andradite_tfc": "Andradita", "trim_material.tfc.blue_topaz_tfc": "TopΓ‘zio Azul", @@ -1003,6 +1054,16 @@ "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", + "tfg.gui.rnr_plow.random_mode": "Aleatorizar Materiais", + "tfg.gui.rnr_plow.width": "Largura do Caminho: %d Blocos", + "tfg.gui.rnr_plow.empty_crushed_base_course": "Β§cFalta Camada Base Triturada!!", + "tfg.tooltip.progenitor_cells.mob": "Cultura animal: ", + "tfg.tooltip.fake_nutrition_info_listener": "Β§7Β§oSegure (Shift) para informaΓ§Γ΅es nutricionais", + "tfg.tooltip.fake_nutrition_info": "Β§7NutriΓ§Γ£o:", + "tfg.tooltip.cheese_slice_microplastics": "Β§b- MicroplΓ‘sticos: 1.9", + "tfg.gui.menu.field_guide_splash_text": "Dica: Leia o guia de campo!!!", + "tfg.gui.menu.ram_usage": "RAM:", + "tfg.gui.menu.fps_count": "FPS:", "tfc.jei.flint_knapping": "Talhar SΓ­lex", "tfc.jei.straw_knapping": "TranΓ§ar Palha", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Tingindo", @@ -1069,6 +1130,7 @@ "tfg.food_recipe.smoking": "DefumaΓ§Γ£o", "tfg.food_recipe.drying": "Secagem", "tfg.food_recipe.freeze_drying": "LiofilizaΓ§Γ£o", + "tfg.food_recipe.deep_frying": "Fritura Profunda", "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.", @@ -1464,7 +1526,7 @@ "quests.low_voltage.lv_nitrogen.task": "NitrogΓͺnio", "quests.low_voltage.lv_arc_furnace.title": "O Forno a Arco", "quests.low_voltage.lv_arc_furnace.subtitle": "O Forno a Arco nunca foi tΓ£o bom", - "quests.low_voltage.lv_arc_furnace.desc.1": "O &3Forno a Arco&r usa um pouquinho de &9OxigΓͺnio&r para fundir itens de uma maneira diferente das Fornalhas.\n\nVocΓͺ pode usΓ‘-lo para fazer &aFerro Forjado&r mais facilmente, dobrar seu &aVidro&r e obter acesso a &aCobre Recozido&r para componentes eletrΓ΄nicos mais baratos. Γ‰ tambΓ©m a sua nova melhor maneira de fazer &4Lingotes de &1AΓ§o Rubro&r e &1AΓ§o Azul&r!\n\nEle tambΓ©m pode reciclar vΓ‘rios componentes e mΓ‘quinas de volta aos seus materiais originais.", + "quests.low_voltage.lv_arc_furnace.desc.1": "O &3Forno a Arco&r usa um pouquinho de &9OxigΓͺnio&r para fundir itens de uma maneira diferente das Fornalhas.\n\nVocΓͺ pode usΓ‘-lo para fazer &aFerro Forjado&r mais facilmente, dobrar seu &aVidro&r e obter acesso a &aCobre Recozido&r para componentes eletrΓ΄nicos mais baratos.\n\nEle tambΓ©m pode reciclar vΓ‘rios componentes e mΓ‘quinas de volta aos seus materiais originais.", "quests.low_voltage.lv_arc_furnace.desc.2": "&l&3Lore:&r&o As versΓ΅es anteriores do GregTech tinham o Forno a Arco e o &bForno a Arco de Plasma&f. Nesse caso, por que nΓ£o usar uma mΓ‘quina para ambos? Bem, foi exatamente o que pensamos - mas, no final das contas, decidimos remover uma das duas receitas de &bplasma&f. E entΓ£o outra receita de &bplasma&f.\n\n&oResumindo, o &bForno a Arco de Plasma&f se &4foi&f. Descanse em paz.", "quests.low_voltage.lv_extractor.title": "ExtraΓ§Γ£o LΓ­quida BΓ‘sica", "quests.low_voltage.lv_extractor.subtitle": "O Extrator extrai...", @@ -1769,16 +1831,16 @@ "quests.steam_age.horse_crank.title": "Sua Primeira Fonte de Energia", "quests.steam_age.horse_crank.subtitle": "Hora de fazer o gado pagar o aluguel", "quests.steam_age.horse_crank.desc.1": "A &3Manivela de TraΓ§Γ£o&r Γ© sua primeira fonte viΓ‘vel de energia mecΓ’nica. Para usΓ‘-la, coloque a manivela no centro de uma Γ‘rea limpa de 7x7 blocos e prenda um animal a ela. Diferentes animais geram diferentes quantidades de energia, e os blocos sob eles afetam a velocidade da rotaΓ§Γ£o. Manivelas prΓ³ximas podem compartilhar parte da Γ‘rea de atuaΓ§Γ£o.\n\nTalvez vocΓͺ precise segurar uma segunda corda na hora de prender o animal.", - "quests.steam_age.horse_crank.desc.2": "&3Animais Pequenos (4 SU):&r\nLobo, Cachorro, Porco, Ovelha, Cabra, Alpaca\n\n&3Animais MΓ©dios (6 SU):&r\nVaca, Burro\n\n&3Animais Grandes (8 SU):&r\nCavalo, Mula, Boi-Almiscarado, Iaque", + "quests.steam_age.horse_crank.desc.2": "&3Animais Pequenos (8 SU):&r\nLobo, Cachorro, Porco, Ovelha, Cabra, Alpaca\n\n&3Animais MΓ©dios (12 SU):&r\nVaca, Burro\n\n&3Animais Grandes (16 SU):&r\nCavalo, Mula, Boi-Almiscarado, Iaque", "quests.steam_age.poor_paths.title": "Caminhos Ruins", "quests.steam_age.poor_paths.subtitle": "Isso Γ© sΓ³ terra mesmo", - "quests.steam_age.poor_paths.desc": "Esse Γ© o pior tipo de estrada possΓ­vel. A manivela vai girar a 2 RPM aqui.", + "quests.steam_age.poor_paths.desc": "Esse Γ© o pior tipo de estrada possΓ­vel. A manivela vai girar a 8 RPM aqui.", "quests.steam_age.normal_paths.title": "Caminhos MΓ©dios", "quests.steam_age.normal_paths.subtitle": "Pelo menos vocΓͺ tentou...", - "quests.steam_age.normal_paths.desc": "Caminhos mΓ©dios sΓ£o um pouco melhores e permitem que os animais girem a manivela a 4 RPM.\n\nNota: NΓ£o Γ© possΓ­vel ter um bloco de Caminho de Terra diretamente sob a manivela, entΓ£o use Cascalho nesse ponto.", + "quests.steam_age.normal_paths.desc": "Caminhos mΓ©dios sΓ£o um pouco melhores e permitem que os animais girem a manivela a 16 RPM.\n\nNota: NΓ£o Γ© possΓ­vel ter um bloco de Caminho de Terra diretamente sob a manivela, entΓ£o use Cascalho nesse ponto.", "quests.steam_age.good_paths.title": "Caminhos Bons", "quests.steam_age.good_paths.subtitle": "Nem precisa de ferradura!", - "quests.steam_age.good_paths.desc": "Esses sΓ£o os melhores caminhos disponΓ­veis, permitindo que a manivela gire a 8 RPM. TambΓ©m aumentam a velocidade de movimento do jogador, entΓ£o sΓ£o Γ³timos para pavimentar sua base!", + "quests.steam_age.good_paths.desc": "Esses sΓ£o os melhores caminhos disponΓ­veis, permitindo que a manivela gire a 32 RPM. TambΓ©m aumentam a velocidade de movimento do jogador, entΓ£o sΓ£o Γ³timos para pavimentar sua base!", "quests.steam_age.helve_hammer.title": "Martinete", "quests.steam_age.helve_hammer.subtitle": "CLANG... CLANG... CLANG...", "quests.steam_age.helve_hammer.desc": "EstΓ‘ cansado de fazer placas para a Forja CatalΓ£? O &3Martinete&r achata lingotes duplos automaticamente (mas lentamente) em placas. VocΓͺ ainda terΓ‘ que fazer as soldagens manualmente. Coloque uma bigorna sob o martinete, jogue os lingotes sobre ela e clique com o botΓ£o direito no martinete para pegar as placas.\n\nBigornas de nΓ­vel superior exigem menos batidas para formar placas do nΓ­vel anterior.", @@ -2191,5 +2253,27 @@ "quests.tfg.field_guide.desc": "As missΓ΅es ainda estΓ£o em desenvolvimento, e estamos sempre trabalhando para melhorΓ‘-las! Muitas informaΓ§Γ΅es sobre mecΓ’nicas especΓ­ficas tambΓ©m estΓ£o no seu Guia de Campo, acessΓ­vel atravΓ©s da aba Livro no seu inventΓ‘rio.\n\nLembre-se de que tanto o JEI quanto o Guia de Campo sΓ£o seus amigos, pois nem tudo serΓ‘ explicado atravΓ©s das missΓ΅es.", "quests.tfg.quest_shapes.title": "InformaΓ§Γ΅es sobre Formatos de MissΓ΅es.", "quests.tfg.quest_shapes.subtitle": "Acontece que formatos ajudam a entender essas missΓ΅es.", - "quests.tfg.quest_shapes.desc": "&lEngrenagens&r: MissΓ΅es em formato de engrenagem sΓ£o as maiores em cada categoria de missΓ£o, elas representam o InΓ­cio e o Fim das linhas de missΓ£o. VocΓͺ pode considerΓ‘-las como grandes objetivos finais.\n\n&lCoraΓ§Γ΅es&r: MissΓ΅es em formato de coraΓ§Γ£o sΓ£o &oopcionais&r, elas nΓ£o sΓ£o necessΓ‘rias para o progresso e servem principalmente para jogadores perfeccionistas. Algumas missΓ΅es opcionais podem ser um pouco bobas...\n\n&lOctΓ³gonos:&r OctΓ³gonos sΓ£o marcos importantes em certas missΓ΅es, eles representam marcos significativos." + "quests.tfg.quest_shapes.desc": "&lEngrenagens&r: MissΓ΅es em formato de engrenagem sΓ£o as maiores em cada categoria de missΓ£o, elas representam o InΓ­cio e o Fim das linhas de missΓ£o. VocΓͺ pode considerΓ‘-las como grandes objetivos finais.\n\n&lCoraΓ§Γ΅es&r: MissΓ΅es em formato de coraΓ§Γ£o sΓ£o &oopcionais&r, elas nΓ£o sΓ£o necessΓ‘rias para o progresso e servem principalmente para jogadores perfeccionistas. Algumas missΓ΅es opcionais podem ser um pouco bobas...\n\n&lOctΓ³gonos:&r OctΓ³gonos sΓ£o marcos importantes em certas missΓ΅es, eles representam marcos significativos.", + "quests.tfg_tips.transportation_tips.rnr_plow.title": "Carrinho Pavimentador", + "quests.tfg_tips.transportation_tips.rnr_plow.subtitle": "Os romanos ficariam orgulhosos.", + "quests.tfg_tips.transportation_tips.rnr_plow.desc": "Estradas sΓ£o maravilhosas! Mas Γ s vezes dΓ‘ preguiΓ§a de ficar clicando com o botΓ£o direito. Em vez de construir estradas para seu cavalo, &3deixe seu cavalo construΓ­-las por vocΓͺ&r!\nO &dCarrinho Pavimentador&r Γ© um &cCarrinho Astikor&r exclusivo desenvolvido para o TFG. Este carrinho permite que vocΓͺ construa automaticamente estradas &cRnR&r com largura configurΓ‘vel e atΓ© um modo aleatΓ³rio.", + "quests.tfg_tips.tools_tips.mattocks.title": "EnxadΓ΅es", + "quests.tfg_tips.tools_tips.mattocks.subtitle": "Uma pΓ‘ nΓ£o basta.", + "quests.tfg_tips.tools_tips.mattocks.task0": "Qualquer EnxadΓ£o", + "quests.tfg_tips.tools_tips.mattocks.task1": "Qualquer Material de Estrada", + "quests.tfg_tips.tools_tips.mattocks.desc": "&cEnxadΓ΅es&r sΓ£o essenciais para desenvolver estradas no TFG. Eles podem ser obtidos por fundiΓ§Γ£o em molde como qualquer outra ferramenta do TFC. Para usar um enxadΓ£o, altere seu modo (tecla padrΓ£o: &3&lN&r&r) para \"bloco-cheio\".\nEntΓ£o vocΓͺ pode clicar com o botΓ£o direito na terra ou grama para compactΓ‘-la. Em seguida, vocΓͺ pode aplicar a &6camada base triturada&r e, finalmente, o material de sua escolha.", + "quests.tfg_tips.tools_tips.base_course.title": "Camada Base", + "quests.tfg_tips.tools_tips.base_course.subtitle": "A fundaΓ§Γ£o de todas as boas estradas.", + "quests.tfg_tips.tools_tips.base_course.task": "Veja a Camada Base", + "quests.tfg_tips.tools_tips.gravel_roads.title": "Estradas de Cascalho", + "quests.tfg_tips.tools_tips.gravel_roads.subtitle": "Uma viagem esburacada aguarda.", + "quests.tfg_tips.tools_tips.gravel_roads.task": "Qualquer Material de Estrada de Cascalho", + "quests.tfg_tips.tools_tips.gravel_roads.desc": "Esses materiais β€” quando aplicados sobre a camada base β€” formam estradas que concedem um aumento de &b&l10%%&r&r na velocidade de caminhada.", + "quests.tfg_tips.tools_tips.brick_roads.title": "Estradas de Tijolo", + "quests.tfg_tips.tools_tips.brick_roads.subtitle": "Skatistas, cuidado.", + "quests.tfg_tips.tools_tips.brick_roads.task": "Qualquer Material de Estrada de Tijolo", + "quests.tfg_tips.tools_tips.brick_roads.desc": "Esses materiais β€” quando aplicados sobre a camada base β€” formam estradas que concedem um aumento de &b&l20%%&r&r na velocidade de caminhada.", + "quests.tfg_tips.tools_tips.concrete_roads.title": "Estradas de Concreto", + "quests.tfg_tips.tools_tips.concrete_roads.subtitle": "Quase vale todo o esforΓ§o.", + "quests.tfg_tips.tools_tips.concrete_roads.desc": "&6Mistura de concreto ΓΊmida&r pode ser aplicada sobre a camada base para criar estradas que proporcionam um bΓ΄nus de &b&l30%%&r&r na velocidade de movimentaΓ§Γ£o.\n\n&4Cuidado&r ao criar estradas de concreto. HΓ‘ muitas regras a seguir para garantir que vocΓͺ nΓ£o acabe com superfΓ­cies rachadas ou arruinadas. Consulte o &3Guia de Campo&r para instruΓ§Γ΅es detalhadas." } \ No newline at end of file diff --git a/kubejs/assets/tfg/lang/ru_ru.json b/kubejs/assets/tfg/lang/ru_ru.json index a3e7e13aa..b336939e2 100644 --- a/kubejs/assets/tfg/lang/ru_ru.json +++ b/kubejs/assets/tfg/lang/ru_ru.json @@ -1,6 +1,5 @@ { "__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": "ΠŸΡ‹ΡˆΠ½Π°Ρ Π»ΠΎΡ‰ΠΈΠ½Π°", @@ -12,17 +11,30 @@ "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", + "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": "Π‘ΡƒΡ…ΠΎΠΉ Π»Ρ‘Π΄", @@ -35,30 +47,30 @@ "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.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.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": "Π‘Π²Π΅Ρ‚Π»ΠΎ-сСрая Π²Π°Π·Π° с Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ΠΉ", @@ -68,7 +80,7 @@ "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.cyan": "Π‘ΠΈΡ€ΡŽΠ·ΠΎΠ²Π°Ρ Π²Π°Π·Π° с Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ΠΉ", "block.tfg.decorative_vase.generated.green": "ЗСлёная Π²Π°Π·Π° с Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ΠΉ", "block.tfg.decorative_vase.generated.lime": "Лаймовая Π²Π°Π·Π° с Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ΠΉ", "block.tfg.decorative_vase.generated.yellow": "Жёлтая Π²Π°Π·Π° с Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ΠΉ", @@ -77,12 +89,12 @@ "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.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": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· стали", @@ -133,51 +145,285 @@ "block.tfg.migmatite_support": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚Π°", "block.tfg.travertine_support_horizontal": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½Π°", "block.tfg.travertine_support": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½Π°", - "block.tfg.glacian_support": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· гласиСвого Π΄Π΅Ρ€Π΅Π²Π°", - "block.tfg.glacian_support_horizontal": "ΠžΠΏΠΎΡ€Π° ΠΈΠ· гласиСвого Π΄Π΅Ρ€Π΅Π²Π°", + "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.rock.hardened_deepslate": "Π£ΠΊΡ€eΠΏΠ»Ρ‘Π½Π½Ρ‹ΠΉ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚", + "block.tfg.rock.deepslate_stairs": "ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹Π΅ ΡΡ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ", + "block.tfg.rock.deepslate_slab": "ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Π°Ρ ΠΏΠ»ΠΈΡ‚Π°", + "block.tfg.rock.deepslate_wall": "ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Π°Ρ ΠΎΠ³Ρ€Π°Π΄Π°", + "block.tfg.rock.mossy_cobble_deepslate": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_deepslate_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_deepslate_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cracked_bricks_deepslate_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_deepslate_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_tiles_deepslate_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠ΅ΠΉΡΡ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠΉ ΠΏΠ»ΠΈΡ‚ΠΊΠΈ", + "block.tfg.rock.cracked_tiles_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠ΅ΠΉΡΡ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠΉ ΠΏΠ»ΠΈΡ‚ΠΊΠΈ", + "block.tfg.rock.cracked_tiles_deepslate_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠ΅ΠΉΡΡ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠΉ ΠΏΠ»ΠΈΡ‚ΠΊΠΈ", + "block.tfg.rock.mossy_bricks_deepslate": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹Π΅ ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.mossy_bricks_deepslate_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_deepslate_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.gravel_deepslate": "ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π³Ρ€Π°Π²ΠΈΠΉ", "block.tfg.spike.deepslate_spike": "ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ сталагмит", + "block.tfg.loose.deepslate": "КамСшСк ΠΌΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚Π°", + "block.tfg.rock.aqueduct_deepslate": "ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π°ΠΊΠ²Π΅Π΄ΡƒΠΊ", + "block.tfg.rock.hardened_blackstone": "Π£ΠΊΡ€eΠΏΠ»Ρ‘Π½Π½Ρ‹ΠΉ пироксСнит", + "block.tfg.rock.cobble_blackstone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· пироксСнитового Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cobble_blackstone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· пироксСнитового Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cobble_blackstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· пироксСнитового Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cobble_blackstone": "ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_blackstone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ пироксСнитовый Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_blackstone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого пироксСнитового Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_blackstone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого пироксСнитового Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_blackstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого пироксСнитового", + "block.tfg.rock.cracked_bricks_blackstone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ пироксСнитовых ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_blackstone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ пироксСнитовых ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_blackstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ пироксСнитовых ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_blackstone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹Π΅ пироксСнитовыС ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.mossy_bricks_blackstone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… пироксСнитовых ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_blackstone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… пироксСнитовых ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_blackstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… пироксСнитовых ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.gravel_blackstone": "ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π³Ρ€Π°Π²ΠΈΠΉ", "block.tfg.spike.blackstone_spike": "ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ сталагмит", + "block.tfg.rock.hardened_dripstone": "Π£ΠΊΡ€eΠΏΠ»Ρ‘Π½Π½Ρ‹ΠΉ Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "block.tfg.rock.dripstone_stairs": "Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹Π΅ ΡΡ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ", + "block.tfg.rock.dripstone_slab": "ВравСртиновая ΠΏΠ»ΠΈΡ‚Π°", + "block.tfg.rock.dripstone_wall": "ВравСртировая ΠΎΠ³Ρ€Π°Π΄Π°", + "block.tfg.rock.cobble_dripstone": "Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΡ€ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.cobble_dripstone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cobble_dripstone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cobble_dripstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_dripstone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_dripstone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_dripstone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_dripstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cracked_bricks_dripstone": "ΠŸΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΠ΅ΡΡ Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.cracked_bricks_dripstone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_dripstone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_dripstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_dripstone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.mossy_bricks_dripstone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_dripstone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_dripstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.gravel_dripstone": "Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹ΠΉ Π³Ρ€Π°Π²ΠΈΠΉ", "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.loose.dripstone": "КамСшСк Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½Π°", + "block.tfg.rock.aqueduct_dripstone": "Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹ΠΉ Π°ΠΊΠ²Π΅Π΄ΡƒΠΊ", + "block.tfg.rock.crackrack_stairs": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Π΅ ΡΡ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ", + "block.tfg.rock.crackrack_slab": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Π°Ρ ΠΏΠ»ΠΈΡ‚Π°", + "block.tfg.rock.crackrack_wall": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Π°Ρ ΠΎΠ³Ρ€Π°Π΄Π°", + "block.tfg.rock.polished_crackrack": "ΠŸΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€", + "block.tfg.rock.polished_crackrack_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€Π°", + "block.tfg.rock.polished_crackrack_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€Π°", + "block.tfg.rock.polished_crackrack_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€Π°", + "block.tfg.rock.cobble_crackrack": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.cobble_crackrack_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cobble_crackrack_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cobble_crackrack_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_crackrack": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_crackrack_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_crackrack_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_crackrack_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cracked_bricks_nether_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_nether_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_nether_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_nether": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹Π΅ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.mossy_bricks_nether_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_nether_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_nether_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.gravel_crackrack": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹ΠΉ Π³Ρ€Π°Π²ΠΈΠΉ", + "block.tfg.loose.crackrack": "КамСшСк ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€Π°", + "block.tfg.rock.aqueduct_nether": "ΠšΠ΅Ρ€Π°Ρ‚ΠΎΡ„ΠΈΡ€ΠΎΠ²Ρ‹ΠΉ Π°ΠΊΠ²Π΅Π΄ΡƒΠΊ", "block.tfg.rock.hardened_moon_stone": "Π£ΠΊΡ€Π΅ΠΏΠ»Ρ‘Π½Π½Ρ‹ΠΉ Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚", + "block.tfg.rock.moon_stone_wall": "Анортозитовая ΠΎΠ³Ρ€Π°Π΄Π°", + "block.tfg.rock.cobble_moon_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_moon": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_moon_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_moon_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_moon_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_bricks_moon_stone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹Π΅ Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.mossy_bricks_moon_stone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_moon_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_moon_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.chiseled_bricks_moon_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Ρ€Π΅Π·Π½ΠΎΠ³ΠΎ Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚Π°", + "block.tfg.rock.gravel_moon": "Анортозитовый Π³Ρ€Π°Π²ΠΈΠΉ", "block.tfg.spike.moon_stone_spike": "Анортозитовый сталагмит", "block.tfg.loose.moon_stone": "КамСшСк Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚Π°", + "block.tfg.rock.aqueduct_moon_stone": "Анортозитовый Π°ΠΊΠ²Π΅Π΄ΡƒΠΊ", "block.tfg.rock.hardened_moon_deepslate": "Π£ΠΊΡ€Π΅ΠΏΠ»Ρ‘Π½Π½Ρ‹ΠΉ Π½ΠΎΡ€ΠΈΡ‚", + "block.tfg.rock.moon_deepslate_stairs": "НоритовыС ΡΡ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ", + "block.tfg.rock.moon_deepslate_slab": "Норитовая ΠΏΠ»ΠΈΡ‚Π°", + "block.tfg.rock.moon_deepslate_wall": "Норитовая ΠΎΠ³Ρ€Π°Π΄Π°", + "block.tfg.rock.cobble_moon_deepslate": "Норитовый Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.cobble_moon_deepslate_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cobble_moon_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.cobble_moon_deepslate_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_moon_deepslate": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_moon_deepslate_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_moon_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_moon_deepslate_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.polished_moon_deepslate": "ΠŸΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ Π½ΠΎΡ€ΠΈΡ‚", + "block.tfg.rock.polished_moon_deepslate_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ Π½ΠΎΡ€ΠΈΡ‚Π°", + "block.tfg.rock.polished_moon_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ Π½ΠΎΡ€ΠΈΡ‚Π°", + "block.tfg.rock.polished_moon_deepslate_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ Π½ΠΎΡ€ΠΈΡ‚Π°", + "block.tfg.rock.bricks_moon_deepslate": "НоритовыС ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.bricks_moon_deepslate_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.bricks_moon_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.bricks_moon_deepslate_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_moon_deepslate": "ΠŸΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΠ΅ΡΡ Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.cracked_bricks_moon_deepslate_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_moon_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_moon_deepslate_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.chiseled_bricks_moon_deepslate": "Π Π΅Π·Π½Ρ‹Π΅ Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.chiseled_bricks_moon_deepslate_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Ρ€Π΅Π·Π½Ρ‹Ρ… Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.chiseled_bricks_moon_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Ρ€Π΅Π·Π½Ρ‹Ρ… Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.chiseled_bricks_moon_deepslate_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Ρ€Π΅Π·Π½Ρ‹Ρ… Π½ΠΎΡ€ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.pillar_moon_deepslate": "Норитовая ΠΊΠΎΠ»Π»ΠΎΠ½Π°", + "block.tfg.rock.gravel_moon_deepslate": "Норитовый Π³Ρ€Π°Π²ΠΈΠΉ", "block.tfg.spike.moon_deepslate_spike": "Норитовый сталагмит", "block.tfg.loose.moon_deepslate": "КамСшСк Π½ΠΎΡ€ΠΈΡ‚Π°", + "block.tfg.rock.aqueduct_moon_deepslate": "Норитовый Π°ΠΊΠ²Π΅Π΄ΡƒΠΊ", "block.tfg.rock.hardened_mars_stone": "Π£ΠΊΡ€Π΅ΠΏΠ»Ρ‘Π½Π½Ρ‹ΠΉ Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚", + "block.tfg.rock.mars_stone_wall": "Аргиллитовая ΠΎΠ³Ρ€Π°Π΄Π°", + "block.tfg.rock.cobble_mars_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_mars": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_mars_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_mars_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_mars_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.polished_mars_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚Π°", + "block.tfg.rock.mossy_bricks_mars_stone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹Π΅ Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.mossy_bricks_mars_stone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_mars_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_mars_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_mars_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.chiseled_bricks_mars_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Ρ€Π΅Π·Π½ΠΎΠ³ΠΎ Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚Π°", + "block.tfg.rock.gravel_mars": "Аргиллитовый Π³Ρ€Π°Π²ΠΈΠΉ", "block.tfg.spike.mars_stone_spike": "Аргиллитовый сталагмит", "block.tfg.loose.mars_stone": "КамСшСк Π°Ρ€Π³ΠΈΠ»Π»ΠΈΡ‚Π°", + "block.tfg.rock.aqueduct_mars_stone": "Аргиллитовый Π°ΠΊΠ²Π΅Π΄ΡƒΠΊ", "block.tfg.rock.hardened_venus_stone": "Π£ΠΊΡ€Π΅ΠΏΠ»Ρ‘Π½Π½Ρ‹ΠΉ Ρ‚Ρ€Π°Ρ…ΠΈΡ‚", + "block.tfg.rock.venus_stone_wall": "Врахитовая ΠΎΠ³Ρ€Π°Π΄Π°", + "block.tfg.rock.cobble_venus_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Ρ‚Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_venus": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ Ρ‚Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_venus_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого Ρ‚Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_venus_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого Ρ‚Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_venus_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого Ρ‚Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.polished_venus_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ Ρ‚Ρ€Π°Ρ…ΠΈΡ‚Π°", + "block.tfg.rock.mossy_bricks_venus_stone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹Π΅ Ρ‚Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.mossy_bricks_venus_stone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Ρ‚Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_venus_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Ρ‚Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_venus_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Ρ‚Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_venus_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ Ρ‚Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.chiseled_bricks_venus_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Ρ€Π΅Π·Π½ΠΎΠ³ΠΎ Ρ‚Ρ€Π°Ρ…ΠΈΡ‚Π°", + "block.tfg.rock.gravel_venus": "Π’Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π³Ρ€Π°Π²ΠΈΠΉ", "block.tfg.spike.venus_stone_spike": "Π’Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ сталагмит", "block.tfg.loose.venus_stone": "КамСшСк Ρ‚Ρ€Π°Ρ…ΠΈΡ‚Π°", + "block.tfg.rock.aqueduct_venus_stone": "Π’Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π°ΠΊΠ²Π΅Π΄ΡƒΠΊ", "block.tfg.rock.hardened_mercury_stone": "Π£ΠΊΡ€Π΅ΠΏΠ»Ρ‘Π½Π½Ρ‹ΠΉ ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚", + "block.tfg.rock.mercury_stone_wall": "ΠšΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²Π°Ρ ΠΎΠ³Ρ€Π°Π΄Π°", + "block.tfg.rock.cobble_mercury_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_mercury": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_mercury_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_mercury_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_mercury_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.polished_mercury_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚Π°", + "block.tfg.rock.mossy_bricks_mercury_stone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹Π΅ ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.mossy_bricks_mercury_stone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_mercury_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_mercury_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_mercury_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.chiseled_bricks_mercury_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Ρ€Π΅Π·Π½ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚Π°", + "block.tfg.rock.gravel_mercury": "ΠšΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π³Ρ€Π°Π²ΠΈΠΉ", "block.tfg.spike.mercury_stone_spike": "ΠšΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ сталагмит", "block.tfg.loose.mercury_stone": "КамСшСк ΠΊΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚Π°", + "block.tfg.rock.aqueduct_mercury_stone": "ΠšΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π°ΠΊΠ²Π΅Π΄ΡƒΠΊ", "block.tfg.rock.hardened_glacio_stone": "Π£ΠΊΡ€Π΅ΠΏΠ»Ρ‘Π½Π½Ρ‹ΠΉ Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚", + "block.tfg.rock.glacio_stone_wall": "Ѐонолитовая ΠΎΠ³Ρ€Π°Π΄Π°", + "block.tfg.rock.cobble_glacio_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_glacio": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹ΠΉ Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ", + "block.tfg.rock.mossy_cobble_glacio_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_glacio_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.mossy_cobble_glacio_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°", + "block.tfg.rock.polished_glacio_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚Π°", + "block.tfg.rock.mossy_bricks_glacio_stone": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹Π΅ Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "block.tfg.rock.mossy_bricks_glacio_stone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_glacio_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.mossy_bricks_glacio_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.cracked_bricks_glacio_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ", + "block.tfg.rock.chiseled_bricks_glacio_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Ρ€Π΅Π·Π½ΠΎΠ³ΠΎ Ρ„ΠΎΠ½ΠΎΠ»ΠΈΡ‚Π°", + "block.tfg.rock.gravel_glacio": "Π€ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π³Ρ€Π°Π²ΠΈΠΉ", "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.aqueduct_glacio_stone": "Π€ΠΎΠ½ΠΎΠ»ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π°ΠΊΠ²Π΅Π΄ΡƒΠΊ", + "block.tfg.rock.hardened_permafrost": "УкрСплёная многолСтняя ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Π°", + "block.tfg.rock.permafrost_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.permafrost_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.permafrost_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.cobble_permafrost": "Π‘ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.cobble_permafrost_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.cobble_permafrost_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.cobble_permafrost_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.mossy_cobble_permafrost_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.mossy_cobble_permafrost_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.mossy_cobble_permafrost_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.polished_permafrost_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠΉ ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.mossy_bricks_permafrost": "Π—Π°ΠΌΡˆΠ΅Π»Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.mossy_bricks_permafrost_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.mossy_bricks_permafrost_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.mossy_bricks_permafrost_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.cracked_bricks_permafrost_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.gravel_permafrost": "Π“Ρ€Π°Π²ΠΈΠΉ ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.spike.permafrost_spike": "Π‘Ρ‚Π°Π»Π°Π³ΠΌΠΈΡ‚ ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.loose.permafrost": "ΠšΡƒΡΠΎΠΊ ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.aqueduct_permafrost": "АквСдук ΠΈΠ· ΠΌΠ½ΠΎΠ³ΠΎΠ»Π΅Ρ‚Π½Π΅ΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "block.tfg.rock.hardened_red_granite": "Π£ΠΊΡ€Π΅ΠΏΠ»Ρ‘Π½Π½Ρ‹ΠΉ красный Π³Ρ€Π°Π½ΠΈΡ‚", + "block.tfg.rock.red_granite_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.red_granite_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.red_granite_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.polished_red_granite_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.polished_red_granite_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.polished_red_granite_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.cobble_red_granite_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.cobble_red_granite_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.cobble_red_granite_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.mossy_cobble_red_granite_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· замшСлого Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.mossy_cobble_red_granite_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· замшСлого Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.mossy_cobble_red_granite_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· замшСлого Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.bricks_red_granite_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.bricks_red_granite_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.bricks_red_granite_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.cracked_bricks_red_granite_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.cracked_bricks_red_granite_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.cracked_bricks_red_granite_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.mossy_bricks_red_granite_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.mossy_bricks_red_granite_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.mossy_bricks_red_granite_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π·Π°ΠΌΡˆΠ΅Π»Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.gravel_red_granite": "Π“Ρ€Π°Π²ΠΈΠΉ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.loose.red_granite": "КамСшСк красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.spike.red_granite_spike": "Π‘Ρ‚Π°Π»Π°Π³ΠΌΠΈΡ‚ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.aqueduct_red_granite": "АквСдук ΠΈΠ· красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "block.tfg.rock.stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· восстановлСнного камня", + "block.tfg.rock.smooth_stone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ восстановлСнного камня", + "block.tfg.rock.smooth_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ восстановлСнного камня", + "block.tfg.rock.cracked_bricks_stone_stairs": "Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒΠΊΠΈ ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ восстановлСнного камня", + "block.tfg.rock.cracked_bricks_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ восстановлСнного камня", + "block.tfg.rock.cracked_bricks_stone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΠΈΡ…ΡΡ ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ восстановлСнного камня", + "block.tfg.rock.aqueduct_stone": "АквСдук ΠΈΠ· восстановлСнного камня", + "block.tfg.rock.smooth_red_sandstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· Π³Π»Π°Π΄ΠΊΠΎΠ³ΠΎ Π³Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ пСсчаника", + "block.tfg.rock.cut_red_sandstone_wall": "ΠžΠ³Ρ€Π°Π΄Π° ΠΈΠ· ΠΏΠΈΠ»Π΅Π½ΠΎΠ³ΠΎ Π³Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ пСсчаника", "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.mushroom_roots": "Π“Ρ€ΠΈΠ±Π½Ρ‹Π΅ ΠΊΠΎΡ€Π½ΠΈ", + "block.tfg.mushroom_sprouts": "Π“Ρ€ΠΈΠ±Π½Ρ‹Π΅ ростки", + "block.tfg.charred_log": "ΠžΠ±ΡƒΠ³Π»Π΅Π½Π½ΠΎΠ΅ Π±Ρ€Π΅Π²Π½ΠΎ", "block.tfg.ash_pile": "ΠšΡƒΡ‡ΠΊΠ° Π·ΠΎΠ»Ρ‹", "block.tfg.pile.white_sand": "Π‘Π΅Π»Ρ‹ΠΉ пСсок", "block.tfg.pile.black_sand": "Π§Ρ‘Ρ€Π½Ρ‹ΠΉ пСсок", @@ -188,207 +434,236 @@ "block.tfg.pile.pink_sand": "Π ΠΎΠ·ΠΎΠ²Ρ‹ΠΉ пСсок", "block.tfg.pile.moon_sand": "Π›ΡƒΠ½Π½Ρ‹ΠΉ пСсок", "block.tfg.pile.mars_sand": "Аргиллитовый пСсок", + "block.tfg.pile.mars_sand_covering": "Аргиллитовый пСсок", "block.tfg.pile.venus_sand": "Π’Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "block.tfg.pile.venus_sand_covering": "Π’Ρ€Π°Ρ…ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "block.tfg.pile.hematitic_sand": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "block.tfg.pile.hematitic_sand_covering": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", "block.tfg.lunar_roots": "Π›ΡƒΠ½Π½Ρ‹Π΅ свСтоцвСты", "block.tfg.lunar_sprouts": "Лунная свСтотрава", "block.tfg.lunar_chorus_plant": "Π₯орусовоС растСниС", "block.tfg.lunar_chorus_flower": "Π₯орусовый Ρ†Π²Π΅Ρ‚ΠΎΠΊ", + "block.tfg.glacian_log": "Π‘Ρ‚Π΅Π±Π΅Π»ΡŒ гласивника", + "block.tfg.glacian_log_stripped": "ΠžΠ±Ρ‚Ρ‘ΡΠ°Π½Π½Ρ‹ΠΉ ΡΡ‚Π΅Π±Π΅Π»ΡŒ гласивника", + "block.tfg.glacian_wood": "Π“ΠΈΡ„Π° гласивника", + "block.tfg.glacian_wood_stripped": "ΠžΠ±Ρ‚Ρ‘ΡΠ°Π½Π½Π°Ρ Π³ΠΈΡ„Π° гласивника", + "block.tfg.glacian_leaves": "Π›Π°ΠΌΠ΅Π»Π»Π° гласивника", + "block.tfg.glacian_leaves_fallen": "МалСнькая Π»Π°ΠΌΠ΅Π»Π»Π° гласивника", "block.tfg.marker.moon": "Π›ΡƒΠ½Π°", "block.tfg.marker.mars": "ΠœΠ°Ρ€Ρ", "block.tfg.marker.venus": "Π’Π΅Π½Π΅Ρ€Π°", "block.tfg.marker.mercury": "ΠœΠ΅Ρ€ΠΊΡƒΡ€ΠΈΠΉ", + "block.tfg.marker.glacio": "Π•Π²Ρ€ΠΎΠΏΠ°", "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.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.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.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.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Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Π°Ρ элСктричСская Π΄ΡƒΡ…ΠΎΠ²ΠΊΠ° IIΒ§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.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.iv_food_refrigerator": "Β§9ΠŸΡ€Π΅Π²ΠΎΡΡ…ΠΎΠ΄Π½Ρ‹ΠΉ Ρ…ΠΎΠ»ΠΎΠ΄ΠΈΠ»ΡŒΠ½ΠΈΠΊΒ§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.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.fluid.semiheavy_ammoniacal_water": "ΠŸΠΎΠ»ΡƒΡ‚ΡΠΆΡ‘Π»Π°Ρ аммиачная Π²ΠΎΠ΄Π°", + "block.tfg.fluid.sulfur_fumes": "ΠŸΠ°Ρ€Ρ‹ сСры", + "block.tfg.fluid.geyser_slurry": "ΠœΠ΅Ρ‚Π°ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ шлам", + "block.tfg.grass.mars_dirt": "ΠœΠ°Ρ€ΡΠΈΠ°Π½ΡΠΊΠ°Ρ зСмля", + "block.tfg.grass.mars_clay_dirt": "ΠœΠ°Ρ€ΡΠΈΠ°Π½ΡΠΊΠ°Ρ зСмля с Π³Π»ΠΈΠ½ΠΎΠΉ", + "block.tfg.grass.mars_farmland": "ΠœΠ°Ρ€ΡΠΈΠ°Π½ΡΠΊΠ°Ρ пашня", + "block.tfg.grass.mars_path": "ΠœΠ°Ρ€ΡΠΈΠ°Π½ΡΠΊΠ°Ρ Ρ‚Ρ€ΠΎΠΏΠΈΠ½ΠΊΠ°", + "block.tfg.grass.amber_mycelium": "Π―Π½Ρ‚Π°Ρ€Π½Ρ‹ΠΉ ΠΌΠΈΡ†Π΅Π»ΠΈΠΉ", + "block.tfg.grass.amber_clay_mycelium": "Π―Π½Ρ‚Π°Ρ€Π½Ρ‹ΠΉ ΠΌΠΈΡ†Π΅Π»ΠΈΠΉ с Π³Π»ΠΈΠ½ΠΎΠΉ", + "block.tfg.grass.amber_kaolin_mycelium": "Π―Π½Ρ‚Π°Ρ€Π½Ρ‹ΠΉ ΠΌΠΈΡ†Π΅Π»ΠΈΠΉ с ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²ΠΎΠΉ Π³Π»ΠΈΠ½ΠΎΠΉ", + "block.tfg.grass.rusticus_mycelium": "Рустиксовый ΠΌΠΈΡ†Π΅Π»ΠΈΠΉ", + "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.mars_ice": "ΠŸΠΎΠ»ΡƒΡ‚ΡΠΆΡ‘Π»Ρ‹ΠΉ Π°ΠΌΠΌΠΈΠ°Ρ‡Π½Ρ‹ΠΉ Π»Ρ‘Π΄", + "block.tfg.mars_icicle": "ΠŸΠΎΠ»ΡƒΡ‚ΡΠΆΡ‘Π»Π°Ρ аммиачная ΡΠΎΡΡƒΠ»ΡŒΠΊΠ°", + "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": "Β§8Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(ULV)Β§r", + "block.tfg.lv_railgun_item_loader_in": "Β§7Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(LV)Β§r", + "block.tfg.mv_railgun_item_loader_in": "Β§bΠ’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(MV)Β§r", + "block.tfg.hv_railgun_item_loader_in": "Β§6Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(HV)Β§r", + "block.tfg.ev_railgun_item_loader_in": "Β§5Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(EV)Β§r", + "block.tfg.iv_railgun_item_loader_in": "Β§9Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(IV)Β§r", + "block.tfg.luv_railgun_item_loader_in": "Β§dΠ’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(LuV)Β§r", + "block.tfg.zpm_railgun_item_loader_in": "Β§cΠ’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(ZPM)Β§r", + "block.tfg.uv_railgun_item_loader_in": "Β§3Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(UV)Β§r", + "block.tfg.uhv_railgun_item_loader_in": "Β§4Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(UHV)Β§r", + "block.tfg.ulv_railgun_item_loader_out": "Β§8Π’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(ULV)Β§r", + "block.tfg.lv_railgun_item_loader_out": "Β§7Π’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(LV)Β§r", + "block.tfg.mv_railgun_item_loader_out": "Β§bΠ’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(MV)Β§r", + "block.tfg.hv_railgun_item_loader_out": "Β§6Π’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(HV)Β§r", + "block.tfg.ev_railgun_item_loader_out": "Β§5Π’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(EV)Β§r", + "block.tfg.iv_railgun_item_loader_out": "Β§9Π’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(IV)Β§r", + "block.tfg.luv_railgun_item_loader_out": "Β§dΠ’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(LuV)Β§r", + "block.tfg.zpm_railgun_item_loader_out": "Β§cΠ’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(ZPM)Β§r", + "block.tfg.uv_railgun_item_loader_out": "Β§3Π’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(UV)Β§r", + "block.tfg.uhv_railgun_item_loader_out": "Β§4Π’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°(UHV)Β§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": "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", + "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_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.casings.machine_casing_ostrum_carbon": "ΠžΡΡ‚Ρ€ΡƒΠΌΠ½Ρ‹ΠΉ корпус", + "block.tfg.casings.heat_pipe_casing": "Π’Π΅ΠΏΠ»ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½Ρ‹ΠΉ корпус", + "block.tfg.glacian_wool_frame": "Гласианская ΡˆΠ΅Ρ€ΡΡ‚ΡŒ Π² каркасС", + "block.tfg.aes_insulation_frame": "Π©Π—Π‘-изоляция Π² каркасС", + "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.titanium_concrete": "Π‘Π΅Ρ‚ΠΎΠ½ Π½Π° Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… Π°Ρ€ΠΌΠ°Ρ‚ΡƒΡ€Π½Ρ‹Ρ… стСрТнях", + "block.tfg.polished_titanium_concrete": "ΠŸΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ Π±Π΅Ρ‚ΠΎΠ½ Π½Π° Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… Π°Ρ€ΠΌΠ°Ρ‚ΡƒΡ€Π½Ρ‹Ρ… стСрТнях", + "block.tfg.titanium_concrete_tile": "ΠŸΠ»ΠΈΡ‚ΠΊΠ° ΠΈΠ· Π±Π΅Ρ‚ΠΎΠ½Π° Π½Π° Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… Π°Ρ€ΠΌΠ°Ρ‚ΡƒΡ€Π½Ρ‹Ρ… стСрТнях", + "block.tfg.titanium_concrete_tile_small": "МалСнькая ΠΏΠ»ΠΈΡ‚ΠΊΠ° ΠΈΠ· Π±Π΅Ρ‚ΠΎΠ½Π° Π½Π° Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… Π°Ρ€ΠΌΠ°Ρ‚ΡƒΡ€Π½Ρ‹Ρ… стСрТнях", + "block.tfg.titanium_concrete_bricks": "ΠšΠΈΡ€ΠΏΠΈΡ‡ΠΈ ΠΈΠ· Π±Π΅Ρ‚ΠΎΠ½Π° Π½Π° Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… Π°Ρ€ΠΌΠ°Ρ‚ΡƒΡ€Π½Ρ‹Ρ… стСрТнях", + "block.tfg.titanium_concrete_bricks_small": "МалСнькиС ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ ΠΈΠ· Π±Π΅Ρ‚ΠΎΠ½Π° Π½Π° Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… Π°Ρ€ΠΌΠ°Ρ‚ΡƒΡ€Π½Ρ‹Ρ… стСрТнях", + "block.tfg.titanium_concrete_bricks_square": "ΠšΠ²Π°Π΄Ρ€Π°Ρ‚Π½Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ ΠΈΠ· Π±Π΅Ρ‚ΠΎΠ½Π° Π½Π° Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²Ρ‹Ρ… Π°Ρ€ΠΌΠ°Ρ‚ΡƒΡ€Π½Ρ‹Ρ… стСрТнях", + "block.tfg.nuclear_turbine": "ЯдСрная паровая Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°", + "block.tfg.evaporation_tower": "Π˜ΡΠΏΠ°Ρ€ΠΈΡ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΊΠΎΠ»ΠΎΠ½Π½Π°", + "block.tfg.cooling_tower": "Градирня ядСрного охлаТдСния", + "block.tfg.growth_monitor": "ΠœΠΎΠ½ΠΈΡ‚ΠΎΡ€ роста", + "block.tfg.sample_rack": "Π‘Ρ‚ΠΎΠΉΠΊΠ° для ΠΎΠ±Ρ€Π°Π·Ρ†ΠΎΠ²", + "block.tfg.casings.machine_casing_sterilizing_pipes": "Π‘Ρ‚Π΅Ρ€ΠΈΠ»ΠΈΠ·ΡƒΡŽΡ‰ΠΈΠ΅ Ρ‚Ρ€ΡƒΠ±Ρ‹", + "fluid.tfg.heavy_ammoniacal_water": "ВяТёлая аммиачная Π²ΠΎΠ΄Π°", + "fluid.tfg.semiheavy_ammoniacal_water": "ΠŸΠΎΠ»ΡƒΡ‚ΡΠΆΡ‘Π»Π°Ρ аммиачная Π²ΠΎΠ΄Π°", + "fluid.tfg.sulfur_fumes": "ΠŸΠ°Ρ€Ρ‹ сСры", + "fluid.tfg.geyser_slurry": "ΠœΠ΅Ρ‚Π°ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ шлам", + "fluid.tfg.cryogenized_fluix": "ΠšΡ€ΠΈΠΎΠ³Π΅Π½Π½Ρ‹ΠΉ Ρ„Π»ΡŽΠΈΡ", "item.tfg.antipoison_pill": "Пилюля противоядия", "item.tfg.haste_pill": "Пилюля спСшки", "item.tfg.night_vision_pill": "Пилюля Π½ΠΎΡ‡Π½ΠΎΠ³ΠΎ зрСния", @@ -413,6 +688,8 @@ "item.tfg.invisibility_salvo": "Мазь нСвидимости", "item.tfg.luck_salvo": "Мазь вСзСния", "item.tfg.resistance_salvo": "Мазь сопротивлСния", + "item.tfg.paracetamol_pill": "Π’Π°Π±Π»Π΅Ρ‚ΠΊΠ° ΠΏΠ°Ρ€Π°Ρ†Π΅Ρ‚Π°ΠΌΠΎΠ»Π°", + "item.tfg.rad_away_pill": "Π’Π°Π±Π»Π΅Ρ‚ΠΊΠ° Антирадина", "item.tfg.paraffin_wax": "ΠŸΠ°Ρ€Π°Ρ„ΠΈΠ½", "item.tfg.flint_arrow_head": "НаконСчник стрСлы ΠΈΠ· крСмня", "item.tfg.fletching": "ΠžΠΏΠ΅Ρ€Π΅Π½ΠΈΠ΅", @@ -420,8 +697,8 @@ "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.space_suit_fabric": "Вкань скафандра", + "item.tfg.vitrified_pearl": "ΠžΡΡ‚Π΅ΠΊΠ»ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ эндСр-ΠΆΠ΅ΠΌΡ‡ΡƒΠ³", "item.tfg.fishing_net.wood": "Рыболовная ΡΠ΅Ρ‚ΡŒ (Π”Π΅Ρ€Π΅Π²ΠΎ)", "item.tfg.fishing_net.brass": "Рыболовная ΡΠ΅Ρ‚ΡŒ (Π›Π°Ρ‚ΡƒΠ½ΡŒ)", "item.tfg.fishing_net.rose_gold": "Рыболовная ΡΠ΅Ρ‚ΡŒ (Π ΠΎΠ·ΠΎΠ²ΠΎΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ)", @@ -433,19 +710,33 @@ "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.unfinished_electron_tube": "НСзакончСнная элСктронная Π»Π°ΠΌΠΏΠ°", + "item.tfg.unfinished_vacuum_tube": "НСзакончСнная элСктровакуумная Π»Π°ΠΌΠΏΠ°", + "item.tfg.unfinished_basic_electronic_circuit": "НСзакончСнная обычная микросхСма", + "item.tfg.unfinished_good_electronic_circuit": "НСзакончСнная Ρ…ΠΎΡ€ΠΎΡˆΠ°Ρ элСктронная микросхСма", + "item.tfg.unfinished_inscriber_accumulation_press": "НСзакончСнный Π°ΠΊΠΊΡƒΠΌΡƒΠ»ΠΈΡ€ΡƒΡŽΡ‰ΠΈΠΉ прСсс", "item.tfg.brick.deepslate": "ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΊΠΈΡ€ΠΏΠΈΡ‡", + "item.tfg.brick.dripstone": "Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹ΠΉ ΠΊΠΈΡ€ΠΏΠΈΡ‡", + "item.tfg.loose.moon_stone": "КамСшСк Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚Π°", "item.tfg.brick.moon_stone": "Анортозитовый ΠΊΠΈΡ€ΠΏΠΈΡ‡", + "item.tfg.loose.moon_deepslate": "КамСшСк Π½ΠΎΡ€ΠΈΡ‚Π°", + "item.tfg.brick.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": "Permafrost Chunk", "item.tfg.brick.permafrost": "ΠšΠΈΡ€ΠΏΠΈΡ‡ Π²Π΅Ρ‡Π½ΠΎΠΉ ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Ρ‹", + "item.tfg.loose.red_granite": "ΠšΠ°ΠΌΡƒΡˆΠ΅ΠΊ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", "item.tfg.brick.red_granite": "ΠšΠΈΡ€ΠΏΠΈΡ‡ красного Π³Ρ€Π°Π½ΠΈΡ‚Π°", "item.tfg.terra_firma_greg": "TerraFirmaGreg", "item.tfg.scaffolding_frame": "Обшивка ΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… лСсов", @@ -454,7 +745,7 @@ "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.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": "ΠŸΡ€ΠΎΠΏΠ΅Π»Π»Π΅Ρ€ самолёта (Π’ΠΈΡ‚Π°Π½)", @@ -476,7 +767,7 @@ "item.tfg.zpm_universal_circuit": "Π£Π½ΠΈΠ²Π΅Ρ€ΡΠ°Π»ΡŒΠ½Π°Ρ схСма ZPM", "item.tfg.uv_universal_circuit": "Π£Π½ΠΈΠ²Π΅Ρ€ΡΠ°Π»ΡŒΠ½Π°Ρ схСма UV", "item.tfg.uhv_universal_circuit": "Π£Π½ΠΈΠ²Π΅Ρ€ΡΠ°Π»ΡŒΠ½Π°Ρ схСма UHV", - "item.tfg.chipboard_composite": "Π”Π‘ΠŸ", + "item.tfg.chipboard_composite": "ДрСвСсная струТка", "item.tfg.piglin_disguise": "ΠœΠ°ΡΠΊΠΈΡ€ΠΎΠ²ΠΊΠ° Пиглина", "item.tfg.trowel": "ΠœΠ°ΡΡ‚Π΅Ρ€ΠΎΠΊ", "item.tfg.foil_pack": "Π€ΠΎΠ»ΡŒΠ³ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠΏΠ°ΠΊΠ΅Ρ‚", @@ -491,7 +782,6 @@ "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": "Π›ΠΈΠΎΡ„ΠΈΠ»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Π΅ свСтящиСся ягоды", @@ -521,20 +811,72 @@ "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": "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.food.raw_glacian_mutton": "Бырая гласианская Π±Π°Ρ€Π°Π½ΠΈΠ½Π°", + "item.tfg.food.cooked_glacian_mutton": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Π°Ρ гласианская Π±Π°Ρ€Π°Π½ΠΈΠ½Π°", + "item.tfg.food.raw_sniffer_beef": "Π‘Ρ‹Ρ€ΠΎΠ΅ мясо Π½ΡŽΡ…Π°Ρ‡Π°", + "item.tfg.food.cooked_sniffer_beef": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ΅ мясо Π½ΡŽΡ…Π°Ρ‡Π°", + "item.tfg.food.raw_wraptor": "Π‘Ρ‹Ρ€ΠΎΠ΅ мясо ΠΈΡ€Π°ΠΏΡ‚ΠΎΡ€Π°", + "item.tfg.food.cooked_wraptor": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ΅ мясо ΠΈΡ€Π°ΠΏΡ‚ΠΎΡ€Π°", + "item.tfg.food.raw_springling_collar": "Бырая шСйка долгошСя", + "item.tfg.food.cooked_springling_collar": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Π°Ρ шСйка долгошСя", + "item.tfg.food.raw_walker_steak": "Π‘Ρ‹Ρ€ΠΎΠ΅ мясо Ρ…ΠΎΠ΄ΡƒΠ½Π°", + "item.tfg.food.cooked_walker_steak": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ΅ мясо Ρ…ΠΎΠ΄ΡƒΠ½Π°", + "item.tfg.food.raw_glider_wings": "Π‘Ρ‹Ρ€Ρ‹Π΅ ΠΊΡ€Ρ‹Π»Ρ‹ΡˆΠΊΠΈ Π³Π»Π°ΠΉΠ΄Π΅Ρ€Π°", + "item.tfg.food.cooked_glider_wings": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ‹Π΅ ΠΊΡ€Ρ‹Π»Ρ‹ΡˆΠΊΠΈ Π³Π»Π°ΠΉΠ΄Π΅Ρ€Π°", + "item.tfg.food.raw_whole_soarer": "Π‘Ρ‹Ρ€ΠΎΠ΅ ΠΊΡ€Ρ‹Π»Ρ‹ΡˆΠΊΠΈ пархатСля", + "item.tfg.food.cooked_whole_soarer": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ΅ ΠΊΡ€Ρ‹Π»Ρ‹ΡˆΠΊΠΈ пархатСля", + "item.tfg.food.raw_crusher_meat": "Π‘Ρ‹Ρ€ΠΎΠ΅ мясо ΠΊΡ€ΡƒΡˆΠΈΡ‚Π΅Π»Ρ", + "item.tfg.food.cooked_crusher_meat": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ΅ мясо ΠΊΡ€ΡƒΡˆΠΈΡ‚Π΅Π»Ρ", + "item.tfg.food.raw_goober_meat": "Π‘Ρ‹Ρ€ΠΎΠ΅ мясо слюпика", + "item.tfg.food.cooked_goober_meat": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ΅ мясо слюпика", + "item.tfg.food.raw_long_pig_filet": "Бырая Ρ‡Π΅Π»ΠΎΠ²Π΅Ρ‡ΠΈΠ½Π°", + "item.tfg.food.cooked_long_pig_filet": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Π°Ρ Ρ‡Π΅Π»ΠΎΠ²Π΅Ρ‡ΠΈΠ½Π°", + "item.tfg.food.raw_surfer_steak": "Π‘Ρ‹Ρ€ΠΎΠΉ стСйк ΠΈΠ· сёрфСра", + "item.tfg.food.cooked_surfer_steak": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ‹ΠΉ стСйк ΠΈΠ· сёрфСра", + "item.tfg.food.raw_stackatick_chunks": "Π‘Ρ‹Ρ€ΠΎΠ΅ мясо ΠΆΡƒΠΊΠ°-ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·Ρ‡ΠΈΠΊΠ°", + "item.tfg.food.raw_stickastackatick": "Π‘Ρ‹Ρ€ΠΎΠΉ ΠΆΡƒΠΊ-ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·Ρ‡ΠΈΠΊ Π½Π° ΠΏΠ°Π»ΠΎΡ‡ΠΊΠ΅", + "item.tfg.food.cooked_stickastackatick": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ‹ΠΉ ΠΆΡƒΠΊ-ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·Ρ‡ΠΈΠΊ Π½Π° ΠΏΠ°Π»ΠΎΡ‡ΠΊΠ΅", + "item.tfg.food.raw_cruncher_ribs": "Π‘Ρ‹Ρ€Ρ‹Π΅ Ρ€Π΅Π±Ρ€Ρ‹ΡˆΠΊΠΈ кусача", + "item.tfg.food.cooked_cruncher_ribs": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ΅ Ρ€Π΅Π±Ρ€Ρ‹ΡˆΠΊΠΈ кусача", + "item.tfg.food.raw_dino_nugget": "Π‘Ρ‹Ρ€Ρ‹Π΅ наггСтсы ΠΈΠ· Π΄ΠΈΠ½ΠΎΠ·Π°Π²Ρ€Π°", + "item.tfg.food.cooked_dino_nugget": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ‹Π΅ наггСтсы ΠΈΠ· Π΄ΠΈΠ½ΠΎΠ·Π°Π²Ρ€Π° Π² ΠΏΠΈΠ²Π½ΠΎΠΌ клярС", + "item.tfg.food.raw_beer_battered_cheese_curds": "Π‘Ρ‹Ρ€Ρ‹Π΅ сырныС ΡˆΠ°Ρ€ΠΈΠΊΠΈ Π² ΠΏΠΈΠ²Π½ΠΎΠΌ клярС", + "item.tfg.food.cooked_beer_battered_cheese_curds": "Π–Π°Ρ€Π΅Π½Ρ‹Π΅ сырныС ΡˆΠ°Ρ€ΠΈΠΊΠΈ Π² ΠΏΠΈΠ²Π½ΠΎΠΌ клярС", + "item.tfg.food.raw_fries": "Π‘Ρ‹Ρ€ΠΎΠΉ ΠΊΠ°Ρ€Ρ‚ΠΎΡ„Π΅Π»ΡŒ Ρ„Ρ€ΠΈ", + "item.tfg.food.cooked_fries": "ΠšΠ°Ρ€Ρ‚ΠΎΡ„Π΅Π»ΡŒ Ρ„Ρ€ΠΈ", + "item.tfg.food.poutine": "ΠŸΡƒΡ‚ΠΈΠ½", + "item.tfg.food.brioche_dough": "ВСсто для Π±Ρ€ΠΈΠΎΡˆΠ΅ΠΉ", + "item.tfg.food.brioche_bun": "Π‘ΡƒΠ»ΠΎΡ‡ΠΊΠ° Π±Ρ€ΠΈΠΎΡˆ", + "item.tfg.food.raw_burger_patty": "Бырая ΠΊΠΎΡ‚Π»Π΅Ρ‚Π° для Π±ΡƒΡ€Π³Π΅Ρ€Π°", + "item.tfg.food.cooked_burger_patty": "БургСрная ΠΊΠΎΡ‚Π»Π΅Ρ‚Π°", + "item.tfg.food.slice_of_cheese": "ΠšΡƒΡΠΎΡ‡Π΅ΠΊ \"сыррра\"", + "item.tfg.food.hamburger": "Π“Π°ΠΌΠ±ΡƒΡ€Π³Π΅Ρ€", + "item.tfg.food.cheeseburger": "Π§ΠΈΠ·Π±ΡƒΡ€Π³Π΅Ρ€", + "item.tfg.food.oatmeal": "Овсянка", + "item.tfg.food.raw_instant_mac": "НСприготовлСнныС ΠΌΠ°ΠΊΠ°Ρ€ΠΎΠ½Ρ‹ с сыром быстрого приготовлСния", + "item.tfg.food.cooked_instant_mac": "ΠœΠ°ΠΊΠ°Ρ€ΠΎΠ½Ρ‹ с сыром быстрого приготовлСния", + "item.tfg.spice.bay_leaf": "Π›Π°Π²Ρ€ΠΎΠ²Ρ‹ΠΉ лист", + "item.tfg.spice.cardamom_pods": "Π‘Ρ‚Ρ€ΡƒΡ‡ΠΊΠΈ ΠΊΠ°Ρ€Π΄Π°ΠΌΠΎΠ½Π°", + "item.tfg.spice.cilantro_leaves": "Π›ΠΈΡΡ‚ΡŒΡ ΠΊΠΈΠ½Π·Ρ‹", + "item.tfg.spice.cumin_seeds": "Π‘Π΅ΠΌΠ΅Π½Π° Ρ‚ΠΌΠΈΠ½Π°", + "item.tfg.spice.oregano_leaves": "Π›ΠΈΡΡ‚ΡŒΡ ΠΎΡ€Π΅Π³Π°Π½ΠΎ", + "item.tfg.spice.allspice": "ΠŸΠΈΠΌΠ΅Π½Ρ‚ΠΎ", "item.tfg.roasted_sunflower_seeds": "ΠžΠ±ΠΆΠ°Ρ€Π΅Π½Π½Ρ‹Π΅ сСмСна подсолнуха", "item.tfg.sunflower_seeds": "Π‘Π΅ΠΌΠ΅Π½Π° подсолнуха", "item.tfg.sunflower_product": "Шляпка подсолнуха", "item.tfg.rapeseed_seeds": "Π‘Π΅ΠΌΠ΅Π½Π° ΠΊΠ°Π½ΠΎΠ»Ρ‹", "item.tfg.rapeseed_product": "Π‘Ρ‚Ρ€ΡƒΡ‡ΠΎΠΊ ΠΊΠ°Π½ΠΎΠ»Ρ‹", + "item.tfg.spawn_egg.moon_rabbit": "Π―ΠΉΡ†ΠΎ ΠΏΡ€ΠΈΠ·Ρ‹Π²Π° Π»ΡƒΠ½Π½ΠΎΠ³ΠΎ ΠΊΡ€ΠΎΠ»ΠΈΠΊΠ°", + "item.tfg.spawn_egg.surfer": "Π―ΠΉΡ†ΠΎ ΠΏΡ€ΠΈΠ·Ρ‹Π²Π° сёрфСра", + "item.tfg.spawn_egg.wraptor": "Π―ΠΉΡ†ΠΎ ΠΏΡ€ΠΈΠ·Ρ‹Π²Π° ΠΈΡ€Π°ΠΏΡ‚ΠΎΡ€Π°", + "item.tfg.spawn_egg.glacian_ram": "Π―ΠΉΡ†ΠΎ ΠΏΡ€ΠΈΠ·Ρ‹Π²Π° гласианского Π±Π°Ρ€Π°Π½Π°", + "item.tfg.spawn_egg.sniffer": "Π―ΠΉΡ†ΠΎ ΠΏΡ€ΠΈΠ·Ρ‹Π²Π° Π½ΡŽΡ…Π°Ρ‡Π°", "item.tfg.flintlock_mechanism": "Π£Π΄Π°Ρ€Π½ΠΎ-ΠΊΡ€Π΅ΠΌΠ½Ρ‘Π²Ρ‹ΠΉ Π·Π°ΠΌΠΎΠΊ", "item.tfg.advanced_clockwork_mechanism": "ΠŸΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹ΠΉ ΡˆΠ΅ΡΡ‚Π΅Ρ€Ρ‘Π½Ρ‡Π°Ρ‚Ρ‹ΠΉ Π°Π³Ρ€Π΅Π³Π°Ρ‚", "item.tfg.certus_mechanism": "ΠšΠ²Π°Ρ€Ρ†Π΅Π²ΠΎΠ΅ устройство", @@ -542,91 +884,175 @@ "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.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": "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.marker.glacio_orbit": "ΠžΡ€Π±ΠΈΡ‚Π° Π•Π²Ρ€ΠΎΠΏΡ‹", + "item.tfg.railgun_ammo_shell": "Π“ΠΈΠ»ΡŒΠ·Π° снаряда Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°", + "item.tfg.sulfur_fumes_bucket": "Π’Π΅Π΄Ρ€ΠΎ (ΠŸΠ°Ρ€Ρ‹ сСры)", + "item.tfg.geyser_slurry_bucket": "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.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 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.wood.lumber.glacian": "Доска ΠΈΠ· гласивника", + "item.tfg.twigs.aeronos": "Π’Π΅Ρ‚ΠΎΡ‡ΠΊΠ° конусообразного Π³Ρ€ΠΈΠ±Π°", + "item.tfg.twigs.strophar": "Π’Π΅Ρ‚ΠΎΡ‡ΠΊΠ° строфарового Π³Ρ€ΠΈΠ±Π°", + "item.tfg.twigs.glacian": "Π’Π΅Ρ‚ΠΎΡ‡ΠΊΠ° гласивника", + "item.tfg.twigs.alphacene": "Π’Π΅Ρ‚ΠΎΡ‡ΠΊΠ° Π°Π»ΡŒΡ„Π°Ρ†Π΅Π½ΠΎΠ²ΠΎΠ³ΠΎ Π³Ρ€ΠΈΠ±Π°", + "item.tfg.crimsene_gem": "Багряная смола", + "item.tfg.warpane_gem": "ИскаТСнная смола", + "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.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": "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.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": "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", + "item.tfg.treated_chipboard_composite": "ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹ΠΉ Π”Π‘ΠŸ", + "item.tfg.high_density_treated_fiberboard": "Π”Π‘ΠŸ", + "item.tfg.flax_seeds": "Π‘Π΅ΠΌΠ΅Π½Π° льна", + "item.tfg.flax_product": "Π›ΡŒΠ½ΡΠ½ΠΎΠΉ ΡΡ‚Π΅Π±Π΅Π»ΡŒ", + "item.tfg.flax_bundle": "Бвязка льна", + "item.tfg.flax_line": "Π’ΠΎΠ»ΠΎΠΊΠ½Π° льна", + "item.tfg.flax_tow": "KΡŒΠ½ΡΠ½Ρ‹Π΅ очёски", + "item.tfg.flax_waste": "ΠšΠΎΡΡ‚Ρ€Π° льна", + "item.tfg.bundled_scraped_flax": "Бвязка костры льна", + "item.tfg.linen_thread": "Π›ΡŒΠ½Ρ‹Π΅ Π½ΠΈΡ‚ΠΊΠΈ", + "item.tfg.linen_cloth": "Π›ΡŒΠ½ΡΠ½Π°Ρ Ρ‚ΠΊΠ°Π½ΡŒ", + "item.tfg.uv_led": "Β§dΠ£Π»ΡŒΡ‚Ρ€Π°Ρ„ΠΈΠΎΠ»Π΅Ρ‚ΠΎΠ²Ρ‹ΠΉ Β§fΠ‘Π˜Π”", + "item.tfg.smd_uv_led": "Β§fSMD Β§dΠ£Π»ΡŒΡ‚Ρ€Π°Ρ„ΠΈΠΎΠ»Π΅Ρ‚ΠΎΠ²Ρ‹ΠΉ Β§fΠ‘Π˜Π”", + "item.tfg.empty_dna_syringe": "ΠŸΡƒΡΡ‚ΠΎΠΉ ΡˆΠΏΡ€ΠΈΡ†", + "item.tfg.filled_dna_syringe": "Π—Π°ΠΏΠΎΠ»Π½Π΅Π½Π½Ρ‹ΠΉ ΡˆΠΏΡ€ΠΈΡ†", + "item.tfg.dirty_dna_syringe": "Грязный ΡˆΠΏΡ€ΠΈΡ†", + "item.tfg.clean_dna_syringe": "Чистый ΡˆΠΏΡ€ΠΈΡ†", + "item.tfg.stainless_steel_needle": "Игла ΠΈΠ· Π½Π΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰Π΅ΠΉ стали", + "item.tfg.empty_rod": "ΠŸΡƒΡΡ‚ΠΎΠΉ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ", + "item.tfg.thorium_rod": "Π’ΠΎΡ€ΠΈΠ΅Π²Ρ‹ΠΉ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ", + "item.tfg.uranium_rod": "Π£Ρ€Π°Π½ΠΈΠ΅Π²Ρ‹ΠΉ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ", + "item.tfg.plutonium_rod": "ΠŸΠ»ΡƒΡ‚ΠΎΠ½Π΅Π²Ρ‹ΠΉ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ", + "item.tfg.tbu_232_rod": "Π’ΠΎΡ€ΠΈΠ΅Π²ΠΎ-ΡƒΡ€Π°Π½ΠΈΠ΅Π²Ρ‹ΠΉ (TBU-232) Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ", + "item.tfg.refrigerant_pellet": "ΠžΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰Π°Ρ Π³Ρ€Π°Π½ΡƒΠ»Π°", + "item.tfg.graphite_compound": "Π“Ρ€Π°Ρ„ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΊΠΎΠΌΠΏΠ°ΡƒΠ½Π΄", + "item.tfg.raw_graphite_briquette": "Π‘Ρ€ΠΈΠΊΠ΅Ρ‚ ΠΈΠ· Π½Π΅ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½ΠΎΠ³ΠΎ Π³Ρ€Π°Ρ„ΠΈΡ‚Π°", + "item.tfg.faulty_graphite_briquette": "Π‘Ρ€Π°ΠΊΠΎΠ²Π°Π½Π½Ρ‹ΠΉ Π³Ρ€Π°Ρ„ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π±Ρ€ΠΈΠΊΠ΅Ρ‚", + "item.tfg.washed_graphite_briquette": "Π‘Ρ€ΠΈΠΊΠ΅Ρ‚ ΠΈΠ· ΠΏΡ€ΠΎΠΌΡ‹Ρ‚ΠΎΠ³ΠΎ Π³Ρ€Π°Ρ„ΠΈΡ‚Π°", + "item.tfg.pure_graphite_rod": "Π‘Ρ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ ΠΈΠ· чистого Π³Ρ€Π°Ρ„ΠΈΡ‚Π°", + "item.tfg.impure_graphite_rod": "Π‘Ρ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ ΠΈΠ· нСчистого Π³Ρ€Π°Ρ„ΠΈΡ‚Π°", + "item.tfg.annealed_graphite_rod": "ΠžΡ‚ΠΎΠΆΠΆΠ΅Π½Π½Ρ‹ΠΉ Π³Ρ€Π°Ρ„ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ", + "item.tfg.impure_annealed_graphite_row": "НСчистый ΠΎΡ‚ΠΎΠΆΠΆΠ΅Π½Π½Ρ‹ΠΉ Π³Ρ€Π°Ρ„ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ", + "item.tfg.moderate_core": "Π‘Ρ‚Π°Π±ΠΈΠ»ΠΈΠ·ΠΈΡ€ΡƒΡŽΡ‰Π΅Π΅ ядро", + "item.tfg.impure_moderate_core": "НСчистый ΡΡ‚Π°Π±ΠΈΠ»ΠΈΠ·ΠΈΡ€ΡƒΡŽΡ‰Π΅Π΅ ядро", + "item.tfg.moderate_core_frame": "ΠšΠ°Ρ€ΠΊΠ°Ρ с ΡΡ‚Π°Π±ΠΈΠ»ΠΈΠ·ΠΈΡ€ΡƒΡŽΡ‰Π΅Π΅ ядром", + "item.tfg.impure_moderate_core_frame": "ΠšΠ°Ρ€ΠΊΠ°Ρ с нСчистым ΡΡ‚Π°Π±ΠΈΠ»ΠΈΠ·ΠΈΡ€ΡƒΡŽΡ‰Π΅Π΅ ядром", + "item.tfg.graphite_moderator": "Π“Ρ€Π°Ρ„ΠΈΡ‚Π½Ρ‹ΠΉ стабилизатор", + "item.tfg.impure_graphite_moderator": "НСчистый Π³Ρ€Π°Ρ„ΠΈΡ‚Π½Ρ‹ΠΉ стабилизатор", + "item.tfg.advanced_polymer_binder": "Π£ΡΠΎΠ²Π΅Ρ€ΡˆΠ΅Π½ΡΡ‚Π²ΠΎΠ²Π°Π½Π½ΠΎΠ΅ ΠΏΠΎΠ»ΠΈΠΌΠ΅Ρ€Π½ΠΎΠ΅ ΡΠ²ΡΠ·ΡƒΡŽΡ‰Π΅Π΅", + "item.tfg.beaker": "Π₯имичСский стакан", + "item.tfg.beaker.filled": "Π₯имичСский стакан (%s)", + "item.tfg.flask": "Колба", + "item.tfg.flask.filled": "Колба (%s)", + "item.tfg.vial": "Π€Π»Π°ΠΊΠΎΠ½", + "item.tfg.vial.filled": "Π€Π»Π°ΠΊΠΎΠ½ (%s)", + "item.tfg.lab_equipment": "Π›Π°Π±ΠΎΡ€Π°Ρ‚ΠΎΡ€Π½ΠΎΠ΅ ΠΎΠ±ΠΎΡ€ΡƒΠ΄ΠΎΠ²Π°Π½ΠΈΠ΅", + "item.tfg.dirty_lab_equipment": "ГрязноС Π»Π°Π±ΠΎΡ€Π°Ρ‚ΠΎΡ€Π½ΠΎΠ΅ ΠΎΠ±ΠΎΡ€ΡƒΠ΄ΠΎΠ²Π°Π½ΠΈΠ΅", + "item.tfg.wireless_card": "ΠœΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Π°Ρ бСспроводная ΠΊΠ°Ρ€Ρ‚Π°", + "item.tfg.wet_magenta_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ ΠΏΡƒΡ€ΠΏΡƒΡ€Π½Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_pink_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ Ρ€ΠΎΠ·ΠΎΠ²Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_green_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ Π·Π΅Π»Π΅Π½Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_lime_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ Π»Π°ΠΉΠΌΠΎΠ²Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_light_gray_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ свСтло-сСрый ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_yellow_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ ΠΆΡ‘Π»Ρ‚Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_black_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ Ρ‡Π΅Ρ€Π½Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_light_blue_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ Π³ΠΎΠ»ΡƒΠ±ΠΎΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_brown_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ ΠΊΠΎΡ€ΠΈΡ‡Π½Π΅Π²Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_cyan_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ Π±ΠΈΡ€ΡŽΠ·ΠΎΠ²Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_orange_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ ΠΎΡ€Π°Π½ΠΆΠ΅Π²Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_red_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ красный ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_gray_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ сСрый ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_white_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ Π±Π΅Π»Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_blue_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ синий ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.wet_purple_chalk": "ΠœΠΎΠΊΡ€Ρ‹ΠΉ Ρ„ΠΈΠΎΠ»Π΅Ρ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠ΅Π»ΠΎΠΊ", + "item.tfg.lamp_casting_mold": "ΠžΡ‚Π»ΠΈΠ²Π½Π°Ρ Ρ„ΠΎΡ€ΠΌΠ° (Π€ΠΎΠ½Π°Ρ€ΡŒ)", + "item.tfg.trapdoor_casting_mold": "ΠžΡ‚Π»ΠΈΠ²Π½Π°Ρ Ρ„ΠΎΡ€ΠΌΠ° (Π›ΡŽΠΊ)", + "item.tfg.chain_casting_mold": "ΠžΡ‚Π»ΠΈΠ²Π½Π°Ρ Ρ„ΠΎΡ€ΠΌΠ° (ЦСпь)", + "item.tfg.bell_casting_mold": "ΠžΡ‚Π»ΠΈΠ²Π½Π°Ρ Ρ„ΠΎΡ€ΠΌΠ° (Колокол)", + "item.tfg.rnr_plow": "Π’Π΅Π»Π΅ΠΆΠΊΠ° для мощСния", + "item.tfg.cobalt_brass_wheel": "КолСсо (ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΎΠ²Π°Ρ Π»Π°Ρ‚ΡƒΠ½ΡŒ)", + "item.tfg.cellulose_matrix": "ЦСллюлозная ΠΌΠ°Ρ‚Ρ€ΠΈΡ†Π°", + "item.tfg.smooth_endoplasmic_reticula": "Гладкая эндоплазматичСская Ρ€Π΅Ρ‚ΠΈΠΊΡƒΠ»Π°", + "item.tfg.rough_endoplasmic_reticula": "ШСроховатая эндоплазматичСская Ρ€Π΅Ρ‚ΠΈΠΊΡƒΠ»Π°", + "item.tfg.alpha_keratin": "Ξ±-ΠšΠ΅Ρ€Π°Ρ‚ΠΈΠ½", + "item.tfg.progenitor_cells": "ΠšΠ»Π΅Ρ‚ΠΊΠΈ-ΠΏΡ€Π΅Π΄ΡˆΠ΅ΡΡ‚Π²Π΅Π½Π½ΠΈΠΊΠΈ", + "item.tfg.catalyser_pt_re_zsm": "ΠšΠ°Ρ‚Π°Π»ΠΈΠ·Π°Ρ‚ΠΎΡ€ Pt-Re ZSM-5", + "item.tfg.used_catalyser": "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠΊΠ°Ρ‚Π°Π»ΠΈΠ·Π°Ρ‚ΠΎΡ€ Pt-Re ZSM-5", + "item.tfg.loaded_resin": "НасыщСнная Ρ€Π΅Π½ΠΈΠ΅ΠΌ смола", + "item.tfg.rod_mold": "ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Π°Ρ Ρ„ΠΎΡ€ΠΌΠ° стСрТня", + "item.tfg.small_gear_mold": "ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Π°Ρ Ρ„ΠΎΡ€ΠΌΠ° малСнькой ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½ΠΈ", + "item.tfg.nugget_mold": "Π€ΠΎΡ€ΠΌΠ° самородка", + "item.tfg.unfired_rod_mold": "НСобоТСнная огнСупорная Ρ„ΠΎΡ€ΠΌΠ° стСрТня", + "item.tfg.unfired_small_gear_mold": "НСобоТСнная огнСупорная Ρ„ΠΎΡ€ΠΌΠ° малСнькой ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½ΠΈ", + "item.tfg.unfired_nugget_mold": "НСобоТСнная Ρ„ΠΎΡ€ΠΌΠ° самородка", "material.tfg.latex": "ЛатСкс", "material.tfg.vulcanized_latex": "ВулканичСский латСкс", - "material.tfg.fluix": "Ѐлакс", + "material.tfg.fluix": "Ѐлюис", "material.tfg.conifer_pitch": "Π₯войная смола", "material.gtceu.lactose": "Π›Π°ΠΊΡ‚ΠΎΠ·Π°", "material.tfg.gabbro": "Π“Π°Π±Π±Ρ€ΠΎ", @@ -649,287 +1075,144 @@ "material.tfg.venus_stone": "Π’Ρ€Π°Ρ…ΠΈΡ‚", "material.tfg.mercury_stone": "ΠšΠΎΠΌΠ°Ρ‚ΠΈΠΈΡ‚", "material.tfg.glacio_stone": "Π€ΠΎΠ½ΠΎΠ»ΠΈΡ‚", - "material.gtceu.thermochemically_treated_hardwood": "ВСрмохимичСски обработанная твСрдая дрСвСсина", - "material.gtceu.hardwood": "ВвСрдая дрСвСсина", + "material.gtceu.thermochemically_treated_hardwood": "ВСрмохимичСски обработанная твёрдая дрСвСсина", + "material.gtceu.hardwood": "Ввёрдая дрСвСсина", "material.gtceu.asurine": "Азурин", + "material.gtceu.ochrum": "ΠžΡ…Ρ€ΡƒΠΌ", + "material.gtceu.veridium": "Π’Π΅Ρ€ΠΈΠ΄ΠΈΠΉ", + "material.gtceu.crimsite": "ΠšΡ€ΠΈΠΌΠΈΡ‚", + "material.gtceu.scoria": "ПСпСл", + "material.gtceu.scorchia": "Π’Ρ‘ΠΌΠ½Ρ‹ΠΉ ΠΏΠ΅ΠΏΠ΅Π»", "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", - "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.machine.customize_interior": "Β§7The interior is customizable! Check the multiblock preview in JEI.", - "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.", + "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.heavy_water": "ВяТёлая Π²ΠΎΠ΄Π°", + "material.tfg.semiheavy_water": "ΠŸΠΎΠ»ΡƒΡ‚ΡΠΆΠ΅Π»Π°Ρ Π²ΠΎΠ΄Π°", + "material.tfg.nuclear_residue": "Π―Π΄Π΅Ρ€Π½Ρ‹Π΅ ΠΎΡ‚Ρ…ΠΎΠ΄Ρ‹", + "material.tfg.oxidized_nuclear_residue": "ΠžΠΊΠΈΡΠ»Π΅Π½Π½Ρ‹Π΅ ядСрныС ΠΎΡ‚Ρ…ΠΎΠ΄Ρ‹", + "material.tfg.refined_nuclear_residue": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹Π΅ ядСрныС ΠΎΡ‚Ρ…ΠΎΠ΄Ρ‹", + "material.tfg.mars_air": "ΠœΠ°Ρ€ΡΠΈΠ°Π½ΡΠΊΠΈΠΉ Π²ΠΎΠ·Π΄ΡƒΡ…", + "material.tfg.liquid_mars_air": "Π–ΠΈΠ΄ΠΊΠΈΠΉ марсианский Π²ΠΎΠ·Π΄ΡƒΡ…", + "material.tfg.certus_regolith": "ΠšΠ²Π°Ρ€Ρ†Π΅Π²Ρ‹ΠΉ Ρ€Π΅Π³ΠΎΠ»ΠΈΡ‚", + "material.tfg.goethe_regolith": "Π“Ρ‘Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Ρ€Π΅Π³ΠΎΠ»ΠΈΡ‚", + "material.tfg.bright_regolith": "Π―Ρ€ΠΊΠΈΠΉ Ρ€Π΅Π³ΠΎΠ»ΠΈΡ‚", + "material.tfg.cassiterite_regolith": "ΠšΠ°ΡΡΠ΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Ρ€Π΅Π³ΠΎΠ»ΠΈΡ‚", + "material.tfg.regolith_mush": "РСголитовая каша", + "material.tfg.apt": "ΠŸΠ°Ρ€Π°Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚ аммония", + "material.tfg.ammonium_tungstate": "Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚ аммония", + "material.tfg.tungsten_bismuth_oxide_composite": "ΠšΠΎΠΌΠΏΠΎΠ·ΠΈΡ‚ оксида Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°-висмута", + "material.tfg.tungsten_oxide": "Оксид Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°", + "material.tfg.sodium_tungstate": "Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚ натрия", + "material.tfg.tetrafluoroethane": "ВСтрафторэтан", + "material.tfg.thermally_conductive_fluid": "ВСплопроводящая ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ", + "material.tfg.crimsene": "Π‘Π°Π³Ρ€Π΅Π»Π»ΠΈΠΉ", + "material.tfg.warpane": "ИскаТСллий", + "material.tfg.mycelienzene": "ΠœΠΈΡ†Π΅Π·ΠΎΠ»Π»ΠΈΠΉ", + "material.tfg.cooked_mycelienzane": "1,3-ΠœΠΈΡ†Π΅Π·ΠΎΠ»Π»ΠΈΠΉ", + "material.tfg.iodomethane": "Π˜ΠΎΠ΄ΠΌΠ΅Ρ‚Π°Π½", + "material.tfg.trideuteroiodomethane": "Π˜ΠΎΠ΄ΠΌΠ΅Ρ‚Π°Π½-d3", + "material.tfg.lauryl_alcohol": "Π›Π°ΡƒΡ€ΠΈΠ»ΠΎΠ²Ρ‹ΠΉ спирт", + "material.tfg.chlorosulfuric_acid": "Π₯лоросСрная кислота", + "material.tfg.sodium_dodecyl_sulfate": "Π”ΠΎΠ΄Π΅Ρ†ΠΈΠ» ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ натрия", + "material.tfg.sodium_hypochlorite": "Натрий Π³ΠΈΠΏΠΎΡ…Π»ΠΎΡ€ΠΈΡ‚", + "material.tfg.mutative_yeast": "ΠœΡƒΡ‚Π°Π½Ρ‚Π½Ρ‹Π΅ Π΄Ρ€ΠΎΠΆΠΆΠΈ", + "material.tfg.proto_growth_medium": "ΠŸΡ€ΠΎΡ‚ΠΎ срСда для выращивания", + "material.tfg.fibroblast_feeder_cells": "ЀибробластныС ΠΏΠΈΡ‚Π°ΡŽΡ‰ΠΈΠ΅ ΠΊΠ»Π΅Ρ‚ΠΊΠΈ", + "material.tfg.gram_stain": "ΠšΡ€Π°ΡΠΈΡ‚Π΅Π»ΡŒ Π“Ρ€Π°ΠΌΠ°", + "material.tfg.crystal_violet": "ΠšΡ€ΠΈΡΡ‚Π°Π»Π»-Π²ΠΈΠΎΠ»Π΅Ρ‚", + "material.tfg.n_n_dimethylaniline": "N,N-Π΄ΠΈΠΌΠ΅Ρ‚ΠΈΠ»Π°Π½ΠΈΠ»ΠΈΠ½", + "material.tfg.triglyceride_oil": "МБВ-масло", + "material.tfg.cholesterol": "Π₯олСстСрин", + "material.tfg.butyric_acid": "Масляная кислота", + "material.tfg.citric_acid": "Лимонная кислота", + "material.tfg.sodium_dihydrogen_citrate": "Π¦ΠΈΡ‚Ρ€Π°Ρ‚ натрия 2-Π·Π°ΠΌΠ΅Ρ‰Ρ‘Π½Π½Ρ‹ΠΉ", + "material.tfg.light_stock": "Π›Π΅Π³ΠΊΠΈΠΉ Π±ΡƒΠ»ΡŒΠΎΠ½", + "material.tfg.rich_stock": "Наваристый Π±ΡƒΠ»ΡŒΠΎΠ½", + "material.tfg.brown_gravy": "Вёмная ΠΏΠΎΠ΄Π»ΠΈΠ²ΠΊΠ°", + "material.tfg.zircon": "Π¦ΠΈΡ€ΠΊΠΎΠ½ΠΈΠΉ", + "material.tfg.silicon_tetrachloride": "Π’Π΅Ρ‚Ρ€Π°Ρ…Π»ΠΎΡ€ΠΈΠ΄ крСмния", + "material.tfg.zirconium_tetrachloride": "Π’Π΅Ρ‚Ρ€Π°Ρ…Π»ΠΎΡ€ΠΈΠ΄ циркония", + "material.tfg.zirconium_oxide": "Диоксид циркония", + "material.tfg.zirconium_bromide": "ЧСтырёхбромистый Ρ†ΠΈΡ€ΠΊΠΎΠ½ΠΈΠΉ", + "material.tfg.zirconium_diboride": "Π”ΠΈΠ±ΠΎΡ€ΠΈΠ΄ циркония", + "material.tfg.boron_carbide": "ΠšΠ°Ρ€Π±ΠΈΠ΄ Π±ΠΎΡ€Π°", + "material.tfg.syngas": "Π‘ΠΈΠ½-Π³Π°Π·", + "material.tfg.raw_aromatic_mix": "Бырая ароматичСская смСсь", + "material.tfg.aromatic_feedstock": "АроматичСскоС ΡΡ‹Ρ€ΡŒΠ΅", + "material.tfg.reformed_aromatic_feedstock": "Π Π΅Ρ„ΠΎΡ€ΠΌΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ΅ ароматичСскоС ΡΡ‹Ρ€ΡŒΠ΅", + "material.tfg.reformate_gas": "Π ΠΈΡ„ΠΎΡ€ΠΌΠ°Ρ‚-Π³Π°Π·", + "material.tfg.cracker_off_gas": "ΠžΡΡ‚Π°Ρ‚ΠΊΠΈ Ρ€ΠΈΡ„ΠΎΡ€ΠΌΠ°Ρ‚-Π³Π°Π·Π° ΠΏΡ€ΠΎΡˆΠ΅Π΄ΡˆΠ΅Π³ΠΎ ΠΊΡ€Π΅ΠΊΠΈΠ½Π³", + "material.tfg.btx_fuel": "Π‘Π’Πš", + "material.tfg.critical_steam": "ΠšΡ€ΠΈΡ‚ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠΏΠ°Ρ€", + "material.tfg.americium_241": "АмСриций 241", + "material.tfg.californium_252": "ΠšΠ°Π»ΠΈΡ„ΠΎΡ€Π½ΠΈΠΉ 252", + "material.tfg.neptunium_237": "НСптуний 237", + "material.tfg.mixed_radioactive_fluid": "БмСшанная радиоактивная ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ", + "material.tfg.degraded_solvent_stream": "Π”Π΅Π³Ρ€Π°Π΄ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠΏΠΎΡ‚ΠΎΠΊ растворитСля", + "material.tfg.boron_enriched_coolant": "Π₯Π»Π°Π΄Π°Π³Π΅Π½Ρ‚ ΠΎΠ±ΠΎΠ³Π°Ρ‰Π΅Π½Π½Ρ‹ΠΉ Π±ΠΎΡ€ΠΎΠΌ", + "material.tfg.hot_boron_enriched_coolant": "Горячий Ρ…Π»Π°Π΄Π°Π³Π΅Π½Ρ‚ ΠΎΠ±ΠΎΠ³Π°Ρ‰Π΅Π½Π½Ρ‹ΠΉ Π±ΠΎΡ€ΠΎΠΌ", + "material.tfg.polyalkylene_lubricant": "ПолиалкилСновая смазка", + "material.tfg.organic_degradation_slurry": "Π¨Π»Π°ΠΌ органичСского разлоТСния", + "material.tfg.gas_fraction": "Газовая фракция", + "material.tfg.isotopic_solvent": "Π˜Π·ΠΎΡ‚ΠΎΠΏΠ½Ρ‹ΠΉ Ρ€Π°ΡΡ‚Π²ΠΎΡ€ΠΈΡ‚Π΅Π»ΡŒ", + "material.tfg.residual_sludge": "ΠžΡΡ‚Π°Ρ‚ΠΎΡ‡Π½Ρ‹ΠΉ осадок", + "material.tfg.sodium_fluoride": "Ѐтористый Π½Π°Ρ‚Ρ€ΠΈΠΉ", + "material.tfg.trace_catalyst_salt_e": "БлСдовая каталитичСская соль E", + "material.tfg.copper_trace_catalyst_dust": "ΠœΠ΅Π΄Π½Ρ‹ΠΉ слСдовой ΠΊΠ°Ρ‚Π°Π»ΠΈΠ·Π°Ρ‚ΠΎΡ€", + "material.tfg.organic_stabilizer": "ΠžΡ€Π³Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ стабилизатор", + "material.tfg.inert_dust_fraction": "Π˜Π½Π΅Ρ€Ρ‚Π½Π°Ρ фракция", + "material.tfg.recovered_ionic_complex": "ВосстановлСнный ΠΈΠΎΠ½Π½Ρ‹ΠΉ комплСкс", + "material.tfg.glucose": "Π“Π»ΡŽΠΊΠΎΠ·Π°", + "material.tfg.galactose": "Π“Π°Π»Π°ΠΊΡ‚ΠΎΠ·Π°", + "material.tfg.fructose": "Π€Ρ€ΡƒΠΊΡ‚ΠΎΠ·Π°", + "material.tfg.sorbitol": "Π‘ΠΎΡ€Π±ΠΈΡ‚ΠΎΠ»", + "material.tfg.14_sorbitan": "1,4-сорбитан", + "material.tfg.isosorbide": "Π˜Π·ΠΎΡΠΎΡ€Π±ΠΈΠ΄", + "material.tfg.linolenic_acid": "Ξ±-линолСновая кислота", + "material.tfg.isosorbide_ln": "Π˜Π·ΠΎΡΠΎΡ€Π±ΠΈΠ΄ соли Π»ΠΈΠ½ΠΎΠ»Π΅Π½ΠΎΠ²ΠΎΠΉ кислоты", + "material.tfg.epox_isosorbide_ln": "Эпоксидированный изосорбид соли Π»ΠΈΠ½ΠΎΠ»Π΅Π½ΠΎΠ²ΠΎΠΉ кислоты", + "material.tfg.ozone": "Озон", + "material.tfg.tin_chloride": "ДвуххлористоС ΠΎΠ»ΠΎΠ²ΠΎ", + "material.tfg.cyclohexanone": "ЦиклогСксанон", + "material.tfg.cyclohex_diperoxide": "1,1-ЦиклогСксандиил дигидропСроксид", + "material.tfg.aciditic_waste": "ΠšΠΈΡΠ»ΠΎΡ‚Π½Ρ‹Π΅ ΠΎΡ‚Ρ…ΠΎΠ΄Ρ‹", + "material.tfg.tpaoh": "Гидроксид тСтрапропиламмония", + "material.tfg.sodium_silicate": "Π‘ΠΈΠ»ΠΈΠΊΠ°Ρ‚ натрия", + "material.tfg.metal_rich_solution": "Π‘ΠΎΠ³Π°Ρ‚Ρ‹ΠΉ ΠΌΠ΅Ρ‚Π°Π»Π»Π°ΠΌΠΈ раствор", + "material.tfg.crude_mixed_gas": "Бырая смСсь Π³Π°Π·ΠΎΠ²", + "material.tfg.zsm5_gel": "ZSM-5 гСль", + "material.tfg.leachate": "Π Π΅Π½ΠΈΠ΅Π²Ρ‹ΠΉ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°Ρ‚", + "material.tfg.clean_powder": "Π‘ΠΈΠ»ΠΈΠΊΠ°Ρ‚ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½Ρ‹ΠΉ Ρ€Π΅Π½ΠΈΡƒΠΌΠ½Ρ‹ΠΉ ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ", + "material.tfg.catalyser_powder": "ΠšΠ°Ρ‚Π°Π»ΠΈΠ·Π°Ρ‚ΠΎΡ€Π½Ρ‹ΠΉ Ρ€Π΅Π½ΠΈΡƒΠΌΠ½Ρ‹ΠΉ ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ ZSM-5", + "material.tfg.sodium_aluminium": "ΠΠ»ΡŽΠΌΠΈΠ½Π°Ρ‚ натрия", "ore_vein.tfg.deep_sheldonite": "Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚ ΠΈ Π‘ΠΎΡ€Π½ΠΈΡ‚", "ore_vein.tfg.deep_garnet_amethyst": "АмСтист ΠΈ Π³Ρ€Π°Π½Π°Ρ‚", "ore_vein.tfg.deep_garnet_opal": "Опал ΠΈ Π³Ρ€Π°Π½Π°Ρ‚", @@ -972,6 +1255,7 @@ "ore_vein.tfg.normal_sphalerite": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ & ΠŸΠΈΡ€ΠΈΡ‚", "ore_vein.tfg.normal_spodumene": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ ΠΈ Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚", "ore_vein.tfg.normal_sulfur": "Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚", + "ore_vein.tfg.normal_tarkianite": "Π’Π°Ρ€ΠΊΠΈΠ°Π½ΠΈΡ‚ ΠΈ НСфтСносный пСсок", "ore_vein.tfg.normal_tetrahedrite": "ВСтраэдрит (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)", "ore_vein.tfg.surface_bismuthinite": "Висмут (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)", "ore_vein.tfg.surface_cassiterite": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)", @@ -979,7 +1263,7 @@ "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_pitchblende": "Pitchblende, Thorianite, & Uraninite", "ore_vein.tfg.deep_mars_sheldonite": "Bornite & Cooperite", "ore_vein.tfg.mars_almandine": "Almandine & Sapphire", "ore_vein.tfg.mars_apatite": "Апатит ΠΈ ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€", @@ -990,10 +1274,11 @@ "ore_vein.tfg.mars_sapphire": "Gold, Electrotine, & Bauxite", "ore_vein.tfg.mars_graphite": "Π“Ρ€Π°Ρ„ΠΈΡ‚ ΠΈ Алмаз", "ore_vein.tfg.mars_hematite": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ ΠΈ Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "ore_vein.tfg.mars_lapis": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2 ΠΈ Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚", "ore_vein.tfg.mars_lubricant": "Trona, Talc, & Glauconite", "ore_vein.tfg.mars_neodynium": "БастнСзит ΠΈ ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", "ore_vein.tfg.mars_nickel": "Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚ ΠΈ ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", - "ore_vein.tfg.mars_pitchblende": "Pitchblende, Thorium, & Hematite", + "ore_vein.tfg.mars_pitchblende": "Pitchblende & Thorianite, & Hematite", "ore_vein.tfg.mars_quartzite": "Quartzite, Asbestos, & Barite", "ore_vein.tfg.mars_salt": "Salts & Spodumene", "ore_vein.tfg.mars_stibnite": "ВСтраэдрит (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)", @@ -1067,5 +1352,3337 @@ "ore_vein.tfg.nether_sulfur": "Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚", "ore_vein.tfg.nether_sylvite": "Бильвин", "ore_vein.tfg.nether_tetrahedrite": "ВСтраэдрит", - "ore_vein.tfg.nether_topaz": "Π’ΠΎΠΏΠ°Π· ΠΈ Π₯алькозин" + "ore_vein.tfg.nether_topaz": "Π’ΠΎΠΏΠ°Π· ΠΈ Π₯алькозин", + "ore_vein.tfg.venus_manual_salt": "Salts & Spodumene", + "ore_vein.tfg.venus_manual_salt.emi.0": "Only in Salt Flats.", + "ore_vein.tfg.venus_manual_sulfur": "Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚", + "tfg.creative_tab.tfg": "TerraFirmaGreg", + "tfg.disabled_portal": "Магия ΠΏΠΎΡ€Ρ‚Π°Π»Π° Π·Π°Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Π½Π° нСизвСстной силой, ΠΏΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ доступ ΠΊ ΠΈΠ·ΠΌΠ΅Ρ€Π΅Π½ΠΈΡŽ поднявшись Π² Π½Π΅Π±ΠΎ ΠΈΠ»ΠΈ ΡΠΏΡƒΡΡ‚ΠΈΠ²ΡˆΠΈΡΡŒ Π² Π³Π»ΡƒΠ±ΠΈΠ½Ρ‹.", + "tfg.tooltip.food_trait.refrigerating": "Β§bRefrigerating", + "tfg.tooltip.foodtrait.freeze_dried": "Лиофилизация", + "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": "Гласианский Π±Π°Ρ€Π°Π½", + "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", + "entity.tfg.wraptor.male": "Π˜Ρ€Π°ΠΏΡ‚ΠΎΡ€ (Π‘Π°ΠΌΠ΅Ρ†)", + "entity.tfg.wraptor.female": "Π˜Ρ€Π°ΠΏΡ‚ΠΎΡ€ (Π‘Π°ΠΌΠΊΠ°)", + "tfg.tooltip.attribution.wraptor": "Β§9Β§oАвтор: Species", + "entity.tfg.surfer": "Surfer", + "tfg.tooltip.surfer_variant.base": "Teal Hide", + "tfg.tooltip.surfer_variant.bubble": "Blossom Berry Hide", + "tfg.tooltip.surfer_variant.horn": "Golden Hide", + "tfg.tooltip.surfer_variant.tube": "Nox Berry Hide", + "tfg.tooltip.surfer_variant.fire": "Sangnum Hide", + "tfg.tooltip.surfer_variant.brain": "Glacian Hide", + "tfg.tooltip.attribution.surfer": "Β§9Β§oCredit: Wan's Ancient Beasts", + "effect.tfg.cooling": "Β§bCooling", + "effect.tfg.warming": "Β§6Warming", + "tfg.greate.uls_limit": "Β§432Β§r (Β§8ULSΒ§r)", + "tfg.greate.ls_limit": "Β§f128Β§r (Β§7LSΒ§r)", + "tfg.greate.windmill_hint_1": "Windmills are affected by relative", + "tfg.greate.windmill_hint_2": "elevation and the amount of empty", + "tfg.greate.windmill_hint_3": "space around them.", + "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.emi.liquid_bb_burn_time": "Duration: %d secs", + "tfg.emi.liquid_bb_superheat": "Β§lSuperheated", + "emi.category.tfg.blaze_burner": "Blaze Burner Fuels", + "emi.category.tfg.block_interaction": "Block Modifications", + "emi.category.deafission.fission_reactor_coolant": "Fission Reactor Cooling", + "emi.category.deafission.fission_reactor_processing": "Fission Reactor Material Holder", + "emi.category.deafission.fission_reactor_fuel": "Fission Reactor Fuel", + "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.machine.parallel": "Can parallelize with Parallel Control Hatches.", + "tfg.tooltip.machine.customize_interior": "Β§7The interior is customizable! Check the multiblock preview in JEI.", + "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.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.", + "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.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]", + "tfg.tooltip.lab_equipment.part": "Β§7Precisely Holds: ", + "tfg.tooltip.lab_equipment.set": "\"Β§7Does not contain a 5000mB round bottom flask.\"", + "tfg.tooltip.lab_equipment.set_dirty": "\"Β§7Soon you might discover penicillin if you dont clean this.\"", + "tfg.tooltip.single_itemstack_bus.0": "Β§6Item Slots: Β§f1", + "tfg.tooltip.single_itemstack_bus.1": "Β§6Stack Size: Β§f1", + "tfg.tooltip.growth_chamber": "This machine can run more recipes at once by increasing the number of layers.", + "tfg.tooltip.wireless_card_1": "Enables wireless connections from any range, even from different planets!", + "tfg.tooltip.wireless_card_2": "Items can still be transferred through the terminal, but at a very high power cost.", + "tfg.tooltip.wireless_card_3": "Use a Β§dRailgunΒ§r for your interplanetary logistical needs instead.", + "tfg.tooltip.component.blue_ice": "Can be placed inside a Fission Reactor to increase the maximum heat by Β§90.5Β§r", + "tfg.tooltip.component.aes_insulation_frame": "Can be placed inside a Fission Reactor to increase the maximum heat by Β§91Β§r", + "tfg.tooltip.component.glacian_fur": "Can be placed inside a Fission Reactor to increase the maximum heat by Β§92Β§r", + "tfg.tooltip.component.impure_moderate_core_frame": "Can be placed inside a Fission Reactor to increase the maximum heat by Β§95Β§r", + "tfg.tooltip.component.moderate_core_frame": "Can be placed inside a Fission Reactor to increase the maximum heat by Β§910Β§r", + "tfg.tooltip.component.dry_ice": "Can be used as an input in the Fission Reactor to cool it down, requires a Material Holder", + "tfg.tooltip.component.refrigerant_pellet": "Can be used as an input in the Fission Reactor to cool it down, requires a Material Holder", + "tfg.tooltip.component.nuclear_turbine_1": "Β§eBase Production:Β§r 4096 EU/t", + "tfg.tooltip.component.nuclear_turbine_2": "Each Rotor Holder above Β§5EVΒ§r Β§7addsΒ§r 10% efficiency and multiplies EU/t by 2.", + "tfg.gui.refrigerator.unify_dates.enabled": "Expiration Date Unification is: Β§aOn", + "tfg.gui.refrigerator.unify_dates.disabled": "Expiration Date Unification is: Β§cOff", + "tfg.machine.food_refrigerator_power_usage": "Β§7ConsumesΒ§r %s EU/t Β§7while active to keep your food fresh.Β§r", + "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": "ΠžΠΊΡ€Π°ΡˆΠΈΠ²Π°Π½ΠΈΠ΅", + "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", + "tfc.recipe.barrel.tfg.barrel.maple_syrup_to_sugar": "Making sugar", + "tfc.recipe.barrel.tfg.barrel.birch_syrup_to_sugar": "Making sugar", + "tfc.recipe.barrel.tfg.barrel.light_concrete": "Solidifying Concrete", + "tfc.recipe.barrel.tfg.barrel.reinforced_light_concrete_support": "Solidifying Concrete", + "tfc.recipe.barrel.tfg.barrel.dark_concrete": "Dyeing", + "tfc.recipe.barrel.tfg.barrel.dark_concrete_support": "Dyeing", + "tfc.recipe.barrel.tfg.barrel.reinforced_dark_concrete_support": "Dyeing", + "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ΠΠ˜ΠšΠžΠ“Π”Π Π½Π΅ ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½ΡΠΉΡ‚Π΅ Π΄Π²Π΅ ΠΊΡ€ΡŽΠΊ-кошки ΠΈΠ»ΠΈ Π²Ρ‹ потСряСтС Π’Π‘Π• ваши ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ!Β§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.", + "quests.ae2": "Applied Energistics 2", + "quests.ae2.subtitle": "Π‘Π°ΠΌΡ‹ΠΉ ΠΌΠΎΡ‰Π½Ρ‹ΠΉ инструмСнт, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ‚ Π²Π°ΠΌ с GregTech, открываСтся послС вашСго ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ ΠΏΠΎΠ»Ρ‘Ρ‚Π° Π½Π° Π›ΡƒΠ½Ρƒ", + "quests.ae2.certus_quartz.title": "Π˜ΡΡ‚ΠΈΠ½Π½Ρ‹ΠΉ ΠΊΠ²Π°Ρ€Ρ†", + "quests.ae2.certus_quartz.subtitle": "Один малСнький шаг для тСбя, ΠΎΠ΄ΠΈΠ½ гигантский скачок для логистики", + "quests.ae2.certus_quartz.desc": "Π‘ Ρ‚Π²ΠΎΠΈΠΌ ΠΏΠ΅Ρ€Π²Ρ‹ΠΌ шагом Π½Π° Π›ΡƒΠ½Ρƒ Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΡˆΡŒ доступ ΠΊ ΠΏΠ΅Ρ€Π²ΠΎΠΉ ΠΆΠΈΠ»Π΅ &bистинного ΠΊΠ²Π°Ρ€Ρ†Π°&r.\nНС ΠΏΠ΅Ρ€Π΅ΠΆΠΈΠ²Π°ΠΉ β€” ΠΎΠ½ΠΈ довольно распространСны ΠΈ ΠΈΡ… Π»Π΅Π³ΠΊΠΎ Π½Π°ΠΉΡ‚ΠΈ, хотя Π½Π°Π»ΠΈΡ‡ΠΈΠ΅ Ρ…ΠΎΡ€ΠΎΡˆΠ΅Π³ΠΎ Ρ€Π°Π·Π²Π΅Π΄ΠΎΡ‡Π½ΠΎΠ³ΠΎ сканСра Ρ‚ΠΎΡ‡Π½ΠΎ Π½Π΅ ΠΏΠΎΠΌΠ΅ΡˆΠ°Π΅Ρ‚.\n\nНСзависимо ΠΎΡ‚ Ρ‚ΠΎΠ³ΠΎ, Ρ€Π΅ΡˆΠΈΡˆΡŒ Π»ΠΈ Ρ‚Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΡˆΠ°Ρ…Ρ‚Π΅Ρ€Ρ‹ ΠΈΠ»ΠΈ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ Π²Ρ‹ΠΊΠΎΠΏΠ°Ρ‚ΡŒ всю ΠΆΠΈΠ»Ρƒ, ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ Π΄ΠΎΠ±ΡƒΠ΄ΡŒ ΠΏΡ€ΠΈΠ»ΠΈΡ‡Π½ΠΎΠ΅ количСство, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ΠΎ понадобится для продвиТСния Π² AE2.", + "quests.ae2.certus_quartz.task": "Π ΡƒΠ΄Π° истинного ΠΊΠ²Π°Ρ€Ρ†Π°", + "quests.ae2.polarizer.title": "ΠŸΠΎΠ»ΡΡ€ΠΈΠ·Π°Ρ‚ΠΎΡ€", + "quests.ae2.polarizer.subtitle": "ΠŸΡ€ΠΎΡΡ‚ΠΎ рСдстоуна нСдостаточно", + "quests.ae2.polarizer.desc": "Одним ΠΈΠ· основных рСсурсов для Applied Energistics 2 Π±ΡƒΠ΄Π΅Ρ‚ &bзаряТСнный кристалл истинного ΠΊΠ²Π°Ρ€Ρ†&r.\n\nΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π΅Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄Π½ΠΈΠΌ способом β€” с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &6HV&r-поляризатора.\n\nΠ’Ρ‹ быстро Π·Π°ΠΌΠ΅Ρ‚ΠΈΡˆΡŒ, насколько Π΄ΠΎΠ»Π³ΠΈΠΉ это процСсс, поэтому Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ рСкомСндуСтся Π²Ρ‹Π΄Π΅Π»ΠΈΡ‚ΡŒ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Ρ‹ΠΉ поляризатор.\n\nΠŸΠΎΠ½Π°Ρ‡Π°Π»Ρƒ это ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Π΄ΠΎΡ€ΠΎΠ³ΠΈΠΌ ΠΈΠ»ΠΈ ΠΏΡƒΠ³Π°ΡŽΡ‰ΠΈΠΌ, Π½ΠΎ Π½Π΅ ΠΏΠ΅Ρ€Π΅ΠΆΠΈΠ²Π°ΠΉ β€” ΠΎΠ½ΠΎ Ρ‚ΠΎΠ³ΠΎ стоит.\n\nΠ’Π°ΠΊΠΆΠ΅ ΠΏΠΎΠΌΠ½ΠΈ: Π½Π΅ заряТай вСсь истинный ΠΊΠ²Π°Ρ€Ρ†!\nΠ’Π΅Π±Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ понадобятся нСзаряТСнный ΠΊΠ²Π°Ρ€Ρ†, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ для Π―Π΄Π΅Ρ€ уничтоТСния, поэтому всСгда Π΄Π΅Ρ€ΠΆΠΈ нСбольшой запас.", + "quests.ae2.hv_machines.title": "Π’Ρ€ΠΈ ΠΌΡƒΡˆΠΊΠ΅Ρ‚Ρ‘Ρ€Π°", + "quests.ae2.hv_machines.subtitle": "Или всё-Ρ‚Π°ΠΊΠΈ Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅?", + "quests.ae2.hv_machines.desc": "&eΠŸΡ€ΠΎΡΠ΅ΠΈΠ²Π°Ρ‚Π΅Π»ΡŒ&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄ ΠΈ увСличСния Π²Ρ‹Ρ…ΠΎΠ΄Π° истинного ΠΊΠ²Π°Ρ€Ρ†Π°, ΠΊΠ²Π°Ρ€Ρ†ΠΈΡ‚Π°, Π½Π΅Π·Π΅Ρ€-ΠΊΠ²Π°Ρ€Ρ†Π°, Ρ€ΡƒΠ±ΠΈΠ½Π° ΠΈ Π°Ρ€ΠΌΠ°Π»ΠΊΠΎΠ»ΠΈΡ‚Π° β€” всСх Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹Ρ… рСсурсов для AE2. Π’ качСствС Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Ρ‹ Ρ‚Ρ‹ моТСшь ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²Π»ΡΡ‚ΡŒ Ρ€ΡƒΠ΄Ρ‹ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ Π² ΠΏΠ΅Ρ‡ΠΈ, Ссли Ρ‚ΠΎΡ€ΠΎΠΏΠΈΡˆΡŒΡΡ, Π½ΠΎ ΠΏΡ€ΠΈ этом ΠΏΠΎΡ‚Π΅Ρ€ΡΠ΅ΡˆΡŒ ΠΌΠ½ΠΎΠ³ΠΎ бСсплатных рСсурсов.\n\nВторая машина β€” &eΠœΠΈΠΊΡΠ΅Ρ€&r β€” это СдинствСнный способ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &dΡ„Π»ΡŽΠΈΡΠΎΠ²Ρ‹Π΅ кристаллы&r (ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½Π΅Π΅ ΠΎΠ± этом Π² ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅ΠΌ Π·Π°Π΄Π°Π½ΠΈΠΈ). НС Π·Π°Π±Ρ‹Π²Π°ΠΉ, Ρ‡Ρ‚ΠΎ Greate ΡΠΌΠ΅ΡˆΠΈΠ²Π°Ρ‚Π΅Π»ΡŒ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΌΠ°ΡˆΠΈΠ½Ρƒ уровня &6HS&r.\n\nΠ’Ρ€Π΅Ρ‚ΡŒΡ β€” &eΠ›Π°Π·Π΅Ρ€Π½Ρ‹ΠΉ Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²Ρ‰ΠΈΠΊ&r β€” позволяСт ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½ΡΡ‚ΡŒ кристаллы Π±ΠΎΠ»Π΅Π΅ Π½ΠΈΠ·ΠΊΠΎΠ³ΠΎ качСства Π² Π±Π΅Π·ΡƒΠΏΡ€Π΅Ρ‡Π½Ρ‹Π΅, Ρ‡Ρ‚ΠΎ Π΄Π°Ρ‘Ρ‚ Π»ΡƒΡ‡ΡˆΠΈΠΉ Π²Ρ‹Ρ…ΠΎΠ΄ Ρ„Π»ΡŽΠΈΡΠ°.\n\nИ Π½Π°ΠΊΠΎΠ½Π΅Ρ†, &eАвтоклав&r ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΌΠΎΡ‡ΡŒ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π΅Ρ‰Ρ‘ большС кристаллов ΠΈΠ· ΠΏΡ‹Π»ΠΈ. Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρƒ тСбя появятся рСсурсы, Π΅Π³ΠΎ созданиС Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ упростит Ρ‚Π΅Π±Π΅ Тизнь.", + "quests.ae2.hv_machines.task": "Greate ΠΈΠ»ΠΈ GregTech?", + "quests.ae2.fluix_crystal.subtitle": "ЭнСргСтичСский кристалл", + "quests.ae2.fluix_crystal.desc": "Как Ρ‚Ρ‹ видишь, сущСствуСт нСсколько способов создания Ρ„Π»ΡŽΠΈΡΠΎΠ²Ρ‹Ρ… кристаллов с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ миксСра.\n\nΠ§Π΅ΠΌ Π²Ρ‹ΡˆΠ΅ чистота исходных кристаллов, Ρ‚Π΅ΠΌ Π²Ρ‹ΡˆΠ΅ Π²Ρ‹Ρ…ΠΎΠ΄ β€” ΠΈΠΌΠ΅Π½Π½ΠΎ поэтому ΠΌΡ‹ Ρ€Π°Π½Π΅Π΅ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΠΎΠ²Π°Π»ΠΈ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &eΠŸΡ€ΠΎΡΠ΅ΠΈΠ²Π°Ρ‚Π΅Π»ΡŒ&r.\n\nΠ’Π΅Π±Π΅ понадобится ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ΅ количСство Ρ„Π»ΡŽΠΈΡΠΎΠ²Ρ‹Ρ… кристаллов, особСнно учитывая, Ρ‡Ρ‚ΠΎ &5ΠΆΠΈΠ΄ΠΊΠΈΠΉ Ρ„Π»ΡŽΡ&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π² Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² Applied Energistics 2.\n\nΠ’Π°ΠΊ Ρ‡Ρ‚ΠΎ Π³ΠΎΡ‚ΠΎΠ²ΡŒΡΡ β€” ΠΈΡ… потрСбуСтся ΠΎΡ‡Π΅Π½ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ!", + "quests.ae2.extractor.title": "Экстрактор", + "quests.ae2.extractor.subtitle": "Π”Ρ€Π°Π³ΠΎΡ†Π΅Π½Π½Ρ‹ΠΉ Ρ„Π»ΡŽΠΈΡ", + "quests.ae2.extractor.desc": "Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ Ρ‡Π°ΡΡ‚ΡŒ Ρ‚Π²ΠΎΠΈΡ… кристаллов Ρ„Π»ΡŽΠΈΡΠ° Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΠΎΠ²Π°Π½Π° Π² &5ΠΆΠΈΠ΄ΠΊΠΈΠΉ Ρ„Π»ΡŽΠΈΡ&r.\nОднако ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΎΡΡ‚Π°Π²ΡŒ нСсколько Π² ΠΊΡ€ΠΈΡΡ‚Π°Π»ΡŒΠ½ΠΎΠΌ Π²ΠΈΠ΄Π΅ для Ρ€Π΅Π΄ΠΊΠΈΡ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ ΠΈΠΌΠ΅Π½Π½ΠΎ Π΅Π³ΠΎ.\n\nΠ›ΡŽΠ±ΠΎΠΉ &eэкстрактор&r ΠΏΠΎΠ΄ΠΎΠΉΠ΄Ρ‘Ρ‚ для этой Π·Π°Π΄Π°Ρ‡ΠΈ β€” Π½ΠΈΡ‡Π΅Π³ΠΎ особСнного Π½Π΅ трСбуСтся.", + "quests.ae2.extractor.task": "Π›ΡŽΠ±ΠΎΠΉ экстрактор", + "quests.ae2.fluix_liquid.title": "Π–ΠΈΠ΄ΠΊΠΈΠΉ Ρ„Π»ΡŽΠΈΡ", + "quests.ae2.fluix_liquid.subtitle": "Π›ΡƒΠ½Π° β€” это Ρ‚Π°ΠΊ Π΄Ρ‘ΡˆΠ΅Π²ΠΎ", + "quests.ae2.fluix_liquid.desc": "ΠœΡ‹ Π³ΠΎΠ²ΠΎΡ€ΠΈΠ»ΠΈ, Ρ‡Ρ‚ΠΎ Ρ‚Π΅Π±Π΅ понадобится ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ΅ количСство ΠΆΠΈΠ΄ΠΊΠΎΠ³ΠΎ Ρ„Π»ΡŽΠΈΡΠ°β€¦ Π½ΠΎ Π½Π΅ упомянули, Ρ‡Ρ‚ΠΎ сущСствуСт способ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ Π²Ρ‹Ρ…ΠΎΠ΄ с ΠΎΠ΄Π½ΠΎΠ³ΠΎ кристалла Ρ„Π»ΡŽΠΈΡΠ°.\n\nΠŸΡ€Π΅Π΄ΡΡ‚Π°Π²Π»ΡΠ΅ΠΌ: &bΠΊΡ€ΠΈΠΎΠ³Π΅Π½Π½Ρ‹ΠΉ Ρ„Π»ΡŽΠΈΡ&r β€” свСрххолодная ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π° Π›ΡƒΠ½Π΅ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &bΠ²Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΠ³ΠΎ Ρ…ΠΎΠ»ΠΎΠ΄ΠΈΠ»ΡŒΠ½ΠΈΠΊΠ°&r. ΠŸΡ€ΠΎΡΡ‚ΠΎ объСдини ΠΆΠΈΠ΄ΠΊΠΈΠΉ Ρ„Π»ΡŽΠΈΡ с Π³Π΅Π»ΠΈΠ΅ΠΌ-3!\n\nΠ­Ρ‚Ρƒ ΠΎΡΠΎΠ±ΡƒΡŽ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² качСствС Π·Π°ΠΌΠ΅Π½Ρ‹ ΠΏΠΎΡ‡Ρ‚ΠΈ Π²ΠΎ всСх Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ…, Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‰ΠΈΡ… ΠΆΠΈΠ΄ΠΊΠΈΠΉ Ρ„Π»ΡŽΠΈΡ, β€” Π½ΠΎ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΡ€ΠΈ ΠΊΡ€Π°Ρ„Ρ‚Π΅ Π½Π° Π›ΡƒΠ½Π΅.\n\nΠ›ΡƒΠ½Π½Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ AE2 Π΄Π°ΡŽΡ‚ ΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹Π΅ прСимущСства: сниТСнныС энСргозатраты, мСньшСС количСство ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ² ΠΈΠ»ΠΈ ΠΈΠ½ΠΎΠ³Π΄Π° ΠΈ Ρ‚ΠΎ ΠΈ Π΄Ρ€ΡƒΠ³ΠΎΠ΅!\nΠ˜Π½Π²Π΅ΡΡ‚ΠΈΡ†ΠΈΠΈ Π² ΠΏΠΎΠ»Π½ΠΎΡ†Π΅Π½Π½ΡƒΡŽ Π»ΡƒΠ½Π½ΡƒΡŽ Π±Π°Π·Ρƒ для производства AE2 окупятся с Π»ΠΈΡ…Π²ΠΎΠΉ, особСнно Π½Π° Ρ€Π°Π½Π½ΠΈΡ… этапах ΠΈΠ³Ρ€Ρ‹.\n\nΠ­Ρ‚ΠΎ Π½Π΅ являСтся строго ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ β€” ΠΏΠΎΠΊΠ° Ρ‡Ρ‚ΠΎ. Но созданиС Π²Ρ‚ΠΎΡ€ΠΎΠΉ Π±Π°Π·Ρ‹ ΡƒΠΆΠ΅ сСйчас ΠΎΠ±Π»Π΅Π³Ρ‡ΠΈΡ‚ дальнСйшСС Ρ€Π°Π·Π²ΠΈΡ‚ΠΈΠ΅, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ инфраструктура Π½Π° ΠΏΠ»Π°Π½Π΅Ρ‚Π°Ρ… станСт Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎΠΉ ΠΏΠΎΠ·ΠΆΠ΅. Π’Π°ΠΊ ΠΏΠΎΡ‡Π΅ΠΌΡƒ Π±Ρ‹ Π½Π΅ ΡΡ‹Π³Ρ€Π°Ρ‚ΡŒ Π½Π° ΠΎΠΏΠ΅Ρ€Π΅ΠΆΠ΅Π½ΠΈΠ΅?", + "quests.ae2.ae_processor.title": "ΠŸΡ€ΠΎΡ†Π΅ΡΡΠΎΡ€Ρ‹", + "quests.ae2.ae_processor.subtitle": "ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ AE2", + "quests.ae2.ae_processor.desc": "ВсС Ρ‚Ρ€ΠΈ Ρ‚ΠΈΠΏΠ° &eпроцСссоров&r Π±ΡƒΠ΄ΡƒΡ‚ ΡˆΠΈΡ€ΠΎΠΊΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ Π²ΠΎ мноТСствС Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² Applied Energistics 2.\n\nΠ­Ρ‚ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ отличная Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ, насколько эффСктивными ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ &3Π»ΡƒΠ½Π½Ρ‹Π΅&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ для ΠΈΡ… создания.\n\nНо Π² ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΎΠΌ ΠΈΡ‚ΠΎΠ³Π΅ Π²Ρ‹Π±ΠΎΡ€ Π·Π° Ρ‚ΠΎΠ±ΠΎΠΉ β€” строй инфраструктуру Ρ‚Π°ΠΌ, Π³Π΄Π΅ Ρ‚Π΅Π±Π΅ ΡƒΠ΄ΠΎΠ±Π½Π΅Π΅ всСго.", + "quests.ae2.forming_press.title": "Π€ΠΎΡ€ΠΌΠΎΠ²ΠΎΡ‡Π½Ρ‹ΠΉ прСсс", + "quests.ae2.forming_press.subtitle": "МалСнькоС β€” Ρ‚ΠΎΠΆΠ΅ Ρ…ΠΎΡ€ΠΎΡˆΠΎ", + "quests.ae2.forming_press.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΏΠ΅Ρ‡Π°Ρ‚Π½Ρ‹Π΅ схСмы, Ρ‚Π΅Π±Π΅ потрСбуСтся ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &6HV&r Ρ„ΠΎΡ€ΠΌΠΎΠ²ΠΎΡ‡Π½Ρ‹ΠΉ прСсс.\n\nΠ₯ΠΎΡ€ΠΎΡˆΠ°Ρ Π½ΠΎΠ²ΠΎΡΡ‚ΡŒ? Π£ Π½Π΅Π³ΠΎ Π΅ΡΡ‚ΡŒ нСсколько Π²Ρ…ΠΎΠ΄Π½Ρ‹Ρ… слотов, Π° Π·Π½Π°Ρ‡ΠΈΡ‚ Ρ‚Ρ‹ моТСшь Π²ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ всС ΠΏΠ΅Ρ‡Π°Ρ‚ΠΈ(прСссы) ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ, ΠΈ ΠΎΠ΄Π½ΠΎΠ³ΠΎ Ρ„ΠΎΡ€ΠΌΠΎΠ²ΠΎΡ‡Π½ΠΎΠ³ΠΎ прСсса Π±ΡƒΠ΄Π΅Ρ‚ достаточно для содния всСх Ρ‚ΠΈΠΏΠΎΠ² процСссоров.", + "quests.ae2.ae_press.title": "ΠŸΠ΅Ρ‡Π°Ρ‚ΠΈ для вырСзатСля", + "quests.ae2.ae_press.subtitle": "А Π³Π΄Π΅ Π²Ρ‹Ρ€Π΅Π·Π°Ρ‚Π΅Π»ΡŒ?", + "quests.ae2.ae_press.desc": "Одним ΠΈΠ· послСдних шагов ΠΏΠ΅Ρ€Π΅Π΄ ΠΏΠΎΠ»Π½Ρ‹ΠΌ ΠΏΠΎΠ³Ρ€ΡƒΠΆΠ΅Π½ΠΈΠ΅ΠΌ Π² Applied Energistics 2 являСтся сбор всСх 4 &eΠΏΠ΅Ρ‡Π°Ρ‚Π΅ΠΉ&r.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΈΡ…, Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ &eΠΌΠ΅Ρ‚Π΅ΠΎΡ€ΠΈΡ‚ AE2&r Π½Π° &3Π›ΡƒΠ½Π΅&r β€” ΠΎΠ½ΠΈ выглядят ΠΊΠ°ΠΊ Ρ‚Ρ‘ΠΌΠ½Ρ‹Π΅ сфСры Π½Π° Π΄Π½Π΅ Π±ΠΎΠ»ΡŒΡˆΠΈΡ… ΠΊΡ€Π°Ρ‚Π΅Ρ€ΠΎΠ². К ΡΡ‡Π°ΡΡ‚ΡŒΡŽ, ΠΎΠ½ΠΈ Π²ΡΡ‚Ρ€Π΅Ρ‡Π°ΡŽΡ‚ΡΡ Π½Π΅ Ρ‚Π°ΠΊ ΡƒΠΆ Ρ€Π΅Π΄ΠΊΠΎ, ΠΈ Π² ΠΎΠ΄Π½ΠΎΠΌ ΠΌΠ΅Ρ‚Π΅ΠΎΡ€ΠΈΡ‚Π΅ находятся всС Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ ΠΏΠ΅Ρ‡Π°Ρ‚ΠΈ.\n\n&cНо Π±ΡƒΠ΄ΡŒ остороТСн&r β€” Ρ‚Π°ΠΊΠΈΠ΅ ΠΌΠ΅Ρ‚Π΅ΠΎΡ€ΠΈΡ‚Ρ‹ часто ΠΎΡ…Ρ€Π°Π½ΡΡŽΡ‚ΡΡ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ экипируйся, возьми Ρ€Π°Π·Π²Π΅Π΄ΠΎΡ‡Π½Ρ‹ΠΉ сканСр, Ссли ΠΎΠ½ Ρƒ тСбя Π΅ΡΡ‚ΡŒ, ΠΈ ΡƒΠ΄Π°Ρ‡Π½ΠΎΠΉ ΠΎΡ…ΠΎΡ‚Ρ‹!", + "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 (Π°Π½Π°Π»ΠΎΠ³ΠΈΡ‡Π½ΠΎ систСмС Ρ€Π°Π·ΠΌΡ‹ΡˆΠ»Π΅Π½ΠΈΡ ΠΈΠ· Create) ΠΈΠ»ΠΈ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ &bРуководство&r, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡˆΡŒ Π² Π½Π°Π³Ρ€Π°Π΄Ρƒ Π·Π° это Π·Π°Π΄Π°Π½ΠΈΠ΅. Π­Ρ‚ΠΎ Π»ΡƒΡ‡ΡˆΠΈΠΉ Π²Π½ΡƒΡ‚Ρ€ΠΈΠΈΠ³Ρ€ΠΎΠ²ΠΎΠΉ ΡƒΡ‡Π΅Π±Π½ΠΈΠΊ ΠΏΠΎ AE2.\nΠ’Π°ΠΊΠΆΠ΅ Ρ‚Ρ‹ моТСшь ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ ΠΎΠ±ΡƒΡ‡Π°ΡŽΡ‰ΠΈΠ΅ Π²ΠΈΠ΄Π΅ΠΎ ΠΏΠΎ AE2 для вСрсии &61.20.1&r β€” AE2 являСтся ΠΎΡ‡Π΅Π½ΡŒ популярным ΠΌΠΎΠ΄ΠΎΠΌ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π² сСти Π΅ΡΡ‚ΡŒ мноТСство руководств!\n\n&dΠ‘ΠΎΠ²Π΅Ρ‚ профСссионала&r: Ρƒ ΠΌΠ½ΠΎΠ³ΠΈΡ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² &bAE2&r Π΅ΡΡ‚ΡŒ Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½Ρ‹Π΅ Π»ΡƒΠ½Π½Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ дСшСвлС. Π’ ΠΎΡ‡Π΅Ρ€Π΅Π΄Π½ΠΎΠΉ Ρ€Π°Π·, инвСстиции Π² Π»ΡƒΠ½Π½ΡƒΡŽ Π±Π°Π·Ρƒ Π±ΡƒΠ΄ΡƒΡ‚ Ρ‰Π΅Π΄Ρ€ΠΎ Π²ΠΎΠ·Π½Π°Π³Ρ€Π°ΠΆΠ΄Π΅Π½Ρ‹ Π½Π° протяТСнии всСй ΠΈΠ³Ρ€Ρ‹.", + "quests.ae2.hv.title": "AE2 HV", + "quests.ae2.hv.desc": "Вся эта Π²Π΅Ρ‚ΠΊΠ° ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ открываСтся Π½Π° &6HV&r!", + "quests.ae2.ae_controller.subtitle": "Π‘ΡŒΡŽΡ‰Π΅Π΅ΡΡ сСрдцС Ρ‚Π²ΠΎΠ΅ΠΉ ME-сСти", + "quests.ae2.ae_controller.desc": "Для Π½Π°Ρ‡Π°Π»Π° Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ½ΠΎ Π·Π°ΠΏΠΈΡ‚Π°Ρ‚ΡŒ свою &bМЭ-ΡΠ΅Ρ‚ΡŒ&r. Π­Ρ‚ΠΎ Π΄Π²Π° Π±Π»ΠΎΠΊΠ° &bAE2&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Ρ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ &bEU&r.\n\nΠœΡ‹ Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &bМЭ-ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Π°&r, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ Π² TerraFirmaGreg Π²ΠΊΠ»ΡŽΡ‡Π΅Π½Ρ‹ &bΠΊΠ°Π½Π°Π»Ρ‹&r, Π° &bМЭ-ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€&r β€” Π»ΡƒΡ‡ΡˆΠΈΠΉ способ эффСктивно ΡƒΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ большим колличСством ΠΊΠ°Π½Π°Π»ΠΎΠ².\n\nΠ­Ρ‚ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎΠ΅ врСмя, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²ΠΎΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ Π²Π½ΡƒΡ‚Ρ€ΠΈΠΈΠ³Ρ€ΠΎΠ²Ρ‹ΠΌ руководством (Π½Π°ΠΆΠΌΠΈ &aU&r Π½Π° &bME-рСгулятор&r) ΠΈΠ»ΠΈ ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Π²ΠΈΠ΄Π΅ΠΎ ΠΏΡ€ΠΎ &bAE2&r для вСрсии 1.20.1, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ большС!", + "quests.ae2.drive.subtitle": "Мозг сСти", + "quests.ae2.drive.desc": "Π’Π΅Π±Π΅ понадобится мСсто для хранСния дисков, ΠΈ благодаря Π°Π΄Π΄ΠΎΠ½Ρƒ &bMEGA&r Ρƒ тСбя Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ Π΅ΡΡ‚ΡŒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚.\n\nΠΠ°Ρ‡Π°Ρ‚ΡŒ стоит с &bМЭ-дисковода&r. Он ΠΌΠΎΠΆΠ΅Ρ‚ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Π΄ΠΎ &e10&r дисков ΠΈ потрСбляСт &e4 EU/t&r. Π­Ρ‚ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ Ρ‚Π²ΠΎΡ‘ основноС Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅.\n\nΠ”Ρ€ΡƒΠ³ΠΎΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ β€” &bМЭ станция для ячССк&r. Он Ρ…Ρ€Π°Π½ΠΈΡ‚ всСго &e1&r диск, Π½ΠΎ потрСбляСт лишь &e1 EU/t&r ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚ ΡƒΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°Ρ‚ΡŒΡΡ прямо Π½Π° кабСль. Π­Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ Π΅Π³ΠΎ ΠΎΡ‡Π΅Π½ΡŒ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌ для &aподсСтСй&r.", + "quests.ae2.cell_housing.desc": "&bМЭ корпус&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": "Π­Ρ‚ΠΈ Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π»Ρ‹ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ для доступа ΠΊ Ρ‚Π²ΠΎΠ΅ΠΉ МЭ-сСти ΠΈ для настройки систСмы Π°Π²Ρ‚ΠΎΠΊΡ€Π°Ρ„Ρ‚Π°.", + "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МЭ корпус ячСйки&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": "&dМЭ-интСрфСйс&r β€” ΠΎΠ΄ΠΈΠ½ ΠΈΠ· Ρ‚Π²ΠΎΠΈΡ… основных инструмСнтов для Π²Π²ΠΎΠ΄Π° ΠΈ Π²Ρ‹Π²ΠΎΠ΄Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΈΠ»ΠΈ ТидкостСй ΠΈΠ· сСти.\n\nЕсли Ρ‚Ρ‹ использовал AE2 Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² старых вСрсиях Minecraft, Ρ‚ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ эти Π±Π»ΠΎΠΊΠΈ лишь пассивно ΠΏΡ€Π΅Π΄ΠΎΡΡ‚Π°Π²Π»ΡΡŽΡ‚ содСрТимоС сСти для извлСчСния Π΄Ρ€ΡƒΠ³ΠΈΠΌΠΈ систСмами ΠΈ Π½Π΅ ΠΎΡ‚ΠΏΡ€Π°Π²Π»ΡΡŽΡ‚ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎ ΠΈ Π½Π΅ хранят ΡˆΠ°Π±Π»ΠΎΠ½Ρ‹. Для этого Ρ‚Π΅Π±Π΅ понадобится поставщик шаблонов.\n\nМЭ-интСрфСйс ΡƒΠΌΠ΅Π΅Ρ‚ слишком ΠΌΠ½ΠΎΠ³ΠΎΠ΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡΠ»ΡΡ‚ΡŒ всё здСсь, поэтому ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ загляни Π²ΠΎ Π²Π½ΡƒΡ‚Ρ€ΠΈΠΈΠ³Ρ€ΠΎΠ²ΠΎΠ΅ руководство, Π½Π°ΠΆΠ°Π² &eG&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ большС.", + "quests.ae2.interface_automation.title": "Автоматизация интСрфСйса", + "quests.ae2.interface_automation.desc": "Π›ΡƒΡ‡ΡˆΠΈΠΉ способ пассивно ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈ Тидкости ΠΏΠΎ Π±Π°Π·Π΅ β€” ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &bМЭ интСрфСйс&r. ΠŸΠΎΡΠΊΠΎΠ»ΡŒΠΊΡƒ интСрфСйсы Π½Π΅ Π²Ρ‹Ρ‚Π°Π»ΠΊΠΈΠ²Π°ΡŽΡ‚ своё содСрТимоС, Ρ‚Π΅Π±Π΅ потрСбуСтся ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ машин Π½Π° ΠΌΠ°ΡˆΠΈΠ½Ρƒ ΠΈΠ»ΠΈ Ρ‚Ρ€ΡƒΠ±Ρƒ.\n\nНС Π·Π°Π±ΡƒΠ΄ΡŒ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ ΠΎΠΏΡ†ΠΈΡŽ &eΠ Π°Π·Ρ€Π΅ΡˆΠΈΡ‚ΡŒ Π²Π²ΠΎΠ΄ со стороны Π²Ρ‹Ρ…ΠΎΠ΄Π°&r Π½Π° Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ сторонС Π² интСрфСйсС ΠΌΠ°ΡˆΠΈΠ½Ρ‹ GregTech, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΌΠΎΠΆΠ½ΠΎ Π±Ρ‹Π»ΠΎ ΠΈ Π·Π°Π±ΠΈΡ€Π°Ρ‚ΡŒ, ΠΈ Π²ΡΡ‚Π°Π²Π»ΡΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ с ΠΎΠ΄Π½ΠΎΠΉ ΠΈ Ρ‚ΠΎΠΉ ΠΆΠ΅ стороны.\n\nИспользованиС Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ΠΎΠ² Π½Π° ΠΊΡ€Ρ‹ΡˆΠΊΠ°Ρ… Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΡƒΠ΄ΠΎΠ±Π½Ρ‹ΠΌ способом, Ρ‡Ρ‚ΠΎΠ±Ρ‹ нСсколько машин Π·Π°Π±ΠΈΡ€Π°Π»ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈΠ· ΠΎΠ΄Π½ΠΎΠ³ΠΎ ΠΈ Ρ‚ΠΎΠ³ΠΎ ΠΆΠ΅ интСрфСйса.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·Π±Π΅ΠΆΠ°Ρ‚ΡŒ пСрСполнСния Π²Ρ…ΠΎΠ΄Π½Ρ‹Ρ… слотов ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π² машинС, Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ \"Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ манипулятор\" Π² Ρ€Π΅ΠΆΠΈΠΌΠ΅ &eΠŸΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ Ρ€ΠΎΠ²Π½ΠΎ&r с Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ΠΎΠΌ.\n\nΠ‘ Π²Π²ΠΎΠ΄ΠΎΠΌ ТидкостСй Ρ‚Π°ΠΊΠΎΠΉ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΡ‹ Π½Π΅Ρ‚, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ автоматичСски заполняСт Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄ΠΈΠ½ слот.", + "quests.ae2.crafting_accelerator.desc": "ΠŸΡ€ΠΎΡΡ‚ΠΎ Π²ΠΎΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡΡ Π²Π½ΡƒΡ‚Ρ€ΠΈΠΈΠ³Ρ€ΠΎΠ²Ρ‹ΠΌ руководством β€” ΠΎΠ½ΠΎ ΠΎΠ±ΡŠΡΡΠ½ΠΈΡ‚ всё Π³ΠΎΡ€Π°Π·Π΄ΠΎ Π»ΡƒΡ‡ΡˆΠ΅, Ρ‡Π΅ΠΌ ΠΌΡ‹ ΠΊΠΎΠ³Π΄Π°-Π»ΠΈΠ±ΠΎ смогли Π±Ρ‹ Π² Ρ€Π°ΠΌΠΊΠ°Ρ… задания.\n\nНС спСши ΠΈ Π²Π½ΠΈΠΌΠ°Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°ΠΉ Π΅Π³ΠΎ β€” это ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ источник ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ!", + "quests.ae2.export_bus.desc": "&dМЭ шина экспорта&r β€” это ΠΌΠΎΡ‰Π½Ρ‹ΠΉ инструмСнт для Π²Ρ‹Π²ΠΎΠ΄Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΈΠ»ΠΈ ТидкостСй ΠΈΠ· Ρ‚Π²ΠΎΠ΅ΠΉ &dМЭ сСти&r.\nКак Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρƒ тСбя появится Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ ΠΈΡ… ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ, особСнно ΠΎΠ±Ρ€Π°Ρ‚ΠΈ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ Π½Π° Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹ ΠΈΠ· &eExtendedAE&r β€” ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ сильно ΠΏΠΎΠΌΠΎΡ‡ΡŒ с Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΠ΅ΠΉ.\n\n&cΠ’Π°ΠΆΠ½ΠΎ&r: ΠΎΠ½ΠΈ ΠΎΠΊΠ°Π·Ρ‹Π²Π°ΡŽΡ‚ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ большСС &4влияниС Π½Π° TPS&r, Ρ‡Π΅ΠΌ, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, MΠ­ интСрфСйсы, поэтому ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ… стоит ΡƒΠΌΠ΅Ρ€Π΅Π½Π½ΠΎ.", + "quests.ae2.export_bus.task": "Π›ΡŽΠ±Π°Ρ шина экспорта", + "quests.ae2.import_bus.desc": "&dМЭ шина ΠΈΠΌΠΏΠΎΡ€Ρ‚Π°&r β€” это ΠΎΠ΄ΠΈΠ½ ΠΈΠ· способов Π²Π²ΠΎΠ΄Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΈ ТидкостСй Π² Ρ‚Π²ΠΎΡŽ &dМЭ ΡΠ΅Ρ‚ΡŒ&r. Π’ΠΏΡ€ΠΎΡ‡Π΅ΠΌ, для Ρ‚ΠΎΠ³ΠΎ ΠΆΠ΅ Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚Π° Ρ‚Ρ‹ моТСшь просто ΠΎΡ‚ΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈ Тидкости Π² интСрфСйс ΠΈΠ»ΠΈ поставщик шаблонов, поэтому ΡˆΠΈΠ½Ρ‹ ΠΈΠΌΠΏΠΎΡ€Ρ‚Π° ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ Π±ΠΎΠ»Π΅Π΅ нишСво.\n\n&cΠ’Π°ΠΆΠ½ΠΎ&r: ΠΎΠ½ΠΈ ΠΎΠΊΠ°Π·Ρ‹Π²Π°ΡŽΡ‚ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ большСС &4влияниС Π½Π° TPS&r, Ρ‡Π΅ΠΌ, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, МЭ-интСрфСйсы, поэтому ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ… стоит ΡƒΠΌΠ΅Ρ€Π΅Π½Π½ΠΎ.", + "quests.ae2.storage_bus.desc": "&bМЭ шина хранСния&r β€” это способ ΡΠΎΠΎΠ±Ρ‰ΠΈΡ‚ΡŒ МЭ сСти ΠΎ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°Ρ… ΠΈ Тидкостях, хранящихся Π³Π΄Π΅-Ρ‚ΠΎ Π²Π½Π΅ ME дисков. Π’ сочСтании с супСр Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Π°ΠΌΠΈ ΠΈ супСр сундуками ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΎΡ‡Π΅Π½ΡŒ ΠΌΠΎΡ‰Π½Ρ‹ΠΌΠΈ β€” просто ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ Π·Π°Π΄Π°ΠΉ шинС хранСния Π±ΠΎΠ»Π΅Π΅ высокий &eΠΏΡ€ΠΈΠΎΡ€ΠΈΡ‚Π΅Ρ‚&r, Ρ‡Π΅ΠΌ Ρƒ диска, ΠΈ ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡ΡŒ Π΅Ρ‘ ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½Ρ‹ΠΌ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠΌ ΠΈΠ»ΠΈ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒΡŽ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ΅Ρ‚ΡŒ Π² ΠΏΠ΅Ρ€Π²ΡƒΡŽ ΠΎΡ‡Π΅Ρ€Π΅Π΄ΡŒ ΠΏΡ‹Ρ‚Π°Π»Π°ΡΡŒ ΠΏΠΎΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ всё ΠΈΠΌΠ΅Π½Π½ΠΎ Ρ‚ΡƒΠ΄Π°.\n\nΠ¨ΠΈΠ½Ρ‹ хранСния Ρ‚Π°ΠΊΠΆΠ΅ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ для настройки подсСтСй β€” загляни Π²ΠΎ Π²Π½ΡƒΡ‚Ρ€ΠΈΠΈΠ³Ρ€ΠΎΠ²ΠΎΠ΅ руководство, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ большС ΠΎ Ρ‚ΠΎΠΌ, ΠΊΠ°ΠΊ ΠΎΠ½ΠΈ Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚.\n\nΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, &aExtended AE&r добавляСт мноТСство Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ² шин хранСния, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΡ€ΠΈΠ³ΠΎΠ΄ΠΈΡ‚ΡŒΡΡ ΠΏΠΎΠ·ΠΆΠ΅. НапримСр, Ρ‚Ρ‹ моТСшь ΡΠΊΠ°Π·Π°Ρ‚ΡŒ сСти \"Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ\" всС свои &6горячиС слитки&r Π² Π²Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΠΌ Ρ…ΠΎΠ»ΠΎΠ΄ΠΈΠ»ΡŒΠ½ΠΈΠΊΠ΅.", + "quests.ae2.storage_bus.task": "Π›ΡŽΠ±ΠΎΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ ΡˆΠΈΠ½Ρ‹ хранСния", + "quests.ae2.cell_component_1k.desc": "&bΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ хранСния&r Π±ΡƒΠ΄Π΅Ρ‚ ΠΊΠ»ΡŽΡ‡Π΅Π²ΠΎΠΉ Ρ‡Π°ΡΡ‚ΡŒΡŽ Ρ‚Π²ΠΎΠ΅Π³ΠΎ прогрСсса Π² &aAE2&r, ΠΈ ΠΎΠ½ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ довольно Π΄ΠΎΡ€ΠΎΠ³ΠΈΠΌ, нСсмотря Π½Π° Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ ΠΎΠ½ Π½ΡƒΠΆΠ΅Π½ для создания &bячССк хранСния&r.\n\n&e1k МЭ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ хранСния&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 ΠΈΠ· &dBetter P2P&r. Она сильно ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ‚, ΠΊΠΎΠ³Π΄Π° Ρ‚Π΅Π±Π΅ придётся ΠΈΠΌΠ΅Ρ‚ΡŒ Π΄Π΅Π»ΠΎ с большим количСством Ρ€Π°Π·Π½Ρ‹Ρ… P2P-Ρ‚ΡƒΠ½Π½Π΅Π»Π΅ΠΉ. Π’Ρ‹ Π΄Π°ΠΆΠ΅ моТСшь Π·Π°Ρ€Π°Π½Π΅Π΅ Ρ€Π°Π·ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ нСсколько &dМЭ 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&bМЭ ΠΏΠΎΡ€Ρ‚ Π²Π²ΠΎΠ΄Π°/Π²Ρ‹Π²ΠΎΠ΄Π°&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для \"Π΄Π΅Ρ„Ρ€Π°Π³ΠΌΠ΅Π½Ρ‚Π°Ρ†ΠΈΠΈ\" Ρ‚Π²ΠΎΠΈΡ… дисков, Ссли ΠΎΠ΄Π½ΠΈ ΠΈ Ρ‚Π΅ ΠΆΠ΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ распрСдСлСны ΠΏΠΎ нСскольким ΠΈΠ· Π½ΠΈΡ….", + "quests.ae2.requester.desc.1": "&aМЭ Π·Π°ΠΊΠ°Π·Ρ‡ΠΈΠΊ&r ΠΌΠΎΠΆΠ΅Ρ‚ ΡΡ‚Π°Ρ‚ΡŒ ΠΎΠ΄Π½ΠΈΠΌ ΠΈΠ· Ρ‚Π²ΠΎΠΈΡ… &6самых ΠΌΠΎΡ‰Π½Ρ‹Ρ… инструмСнтов&r, Ссли Ρ‚Ρ‹ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΡŽ Π²ΠΎΠΊΡ€ΡƒΠ³ &eΠ°Π²Ρ‚ΠΎΠΊΡ€Π°Ρ„Ρ‚Π°&r, Π° Π½Π΅ пассивного производства.\n\nОн ΠΌΠΎΠΆΠ΅Ρ‚ ΠΎΡ‚ΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ ΠΏΠ°ΠΊΠ΅Ρ‚Ρ‹ запросов Π½Π° ΠΊΡ€Π°Ρ„Ρ‚ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°, ΠΊΠΎΠ³Π΄Π° Π² сСти Π΅Π³ΠΎ становится мСньшС Π·Π°Π΄Π°Π½Π½ΠΎΠ³ΠΎ количСства.\n\nЕсли Ρ‚Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΡˆΡŒ ΠΌΠ½ΠΎΠ³ΠΎ &dΠšΠ°Ρ€Ρ‚ изготовлСния&r, Π»ΡƒΡ‡ΡˆΠ΅ Π²ΠΎΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡΡ этой машиной, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½Π° ΠΎΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ мСньшСС влияниС Π½Π° ваш &cTPS&r.", + "quests.ae2.requester.desc.2": "Π’Π°ΠΊΠΆΠ΅ ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ моТСшь Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ваши Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π° для ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠΉ Ρ‚Π°ΠΊ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ½ΠΈ Π±Ρ‹Π»ΠΈ Π²Ρ‹Π΄Π΅Π»Π΅Π½Ρ‹ ΠΏΠΎΠ΄ ΠΊΡ€Π°Ρ„Ρ‚, запускаСмый ΠΈΠ³Ρ€ΠΎΠΊΠΎΠΌ, автоматичСскиС запросы ΠΊΡ€Π°Ρ„Ρ‚Π° ΠΈΠ»ΠΈ Π½ΠΈ Ρ‚ΠΎ Π½ΠΈ Π΄Ρ€ΡƒΠ³ΠΎΠ΅. Π­Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π—Π°ΠΊΠ°Π·Ρ‡ΠΈΠΊΠΈ Π½Π΅ Π·Π°Π½ΠΈΠΌΠ°Π»ΠΈ всС Ρ‚Π²ΠΎΠΈ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π° для ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠΉ.\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": "Π­Ρ‚ΠΎ Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ для Ρ‚Π²ΠΎΠ΅ΠΉ МЭ-сСти. Π’ Π½Π°Ρ‡Π°Π»Π΅ ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Ρ‚Π΅Π±Π΅ Π½Π΅ ΠΏΠΎΠ½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ, Π½ΠΎ ΠΈΠΌΠ΅ΠΉΡ‚Π΅ ΠΈΡ… Π² Π²ΠΈΠ΄Ρƒ β€” энСргопотрСблСниС ΠΌΠΎΠΆΠ΅Ρ‚ быстро вырасти, Π° ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠ΅ питания Π² МЭ-сСти ΠΌΠΎΠΆΠ΅Ρ‚ ΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ опасной ситуациСй.", + "quests.ae2.cutting_knife.title": "Π Π΅ΠΆΡƒΡ‰ΠΈΠ΅ Π½ΠΎΠΆΠΈ", + "quests.ae2.cutting_knife.desc": "Π­Ρ‚ΠΎ инструмСнты для ΡƒΠ΄ΠΎΠ±Π½ΠΎΠ³ΠΎ пСрСимСнования всСх Ρ‚Π²ΠΎΠΈΡ… МЭ-ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ². Π—Π°Ρ‡Π΅ΠΌ это Π½ΡƒΠΆΠ½ΠΎ? Если Ρ‚Ρ‹ ΠΏΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΡƒΠ΅ΡˆΡŒ свои поставщики шаблонов, ΠΈΡ… ΠΈΠΌΠ΅Π½Π° Π±ΡƒΠ΄ΡƒΡ‚ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΡŒΡΡ Π² Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π»Π΅ доступа ΠΊ шаблонам, Ρ‡Ρ‚ΠΎ ΠΎΡ‡Π΅Π½ΡŒ ΡƒΠ΄ΠΎΠ±Π½ΠΎ для отслСТивания Ρ‚ΠΎΠ³ΠΎ, ΠΊΠ°ΠΊΠΎΠΉ поставщик шаблонов ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Ρ‘Π½ ΠΊ ΠΊΠ°ΠΊΠΎΠΉ машинС.\n\nНапримСр, имя &oSmall Gear Extruder&r для поставщика шаблонов ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Ρ‚Π΅Π±Π΅ сразу ΠΏΠΎΠ½ΡΡ‚ΡŒ, Ρ‡Ρ‚ΠΎ этот экструдСр содСрТит Ρ„ΠΎΡ€ΠΌΡƒ для ΠΌΠ°Π»Ρ‹Ρ… ΡˆΠ΅ΡΡ‚Π΅Ρ€Ρ‘Π½, ΠΈ Ρ‡Ρ‚ΠΎ Π² Π½Π΅Π³ΠΎ слСдуСт ΠΏΠΎΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΡˆΠ°Π±Π»ΠΎΠ½Ρ‹ ΠΌΠ°Π»Ρ‹Ρ… ΡˆΠ΅ΡΡ‚Π΅Ρ€Ρ‘Π½.", + "quests.ae2.cutting_knife.task": "Π›ΡŽΠ±ΠΎΠΉ Ρ€Π΅ΠΆΡƒΡ‰ΠΈΠΉ Π½ΠΎΠΆ", + "quests.ae2.pattern_box.desc": "ΠšΠΎΡ€ΠΎΠ±ΠΊΠ° для шаблонов ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅Π½ΠΎΡΠΈΡ‚ΡŒ всС Ρ‚Π²ΠΎΠΈ пустыС ΠΈ Π·Π°ΠΊΠΎΠ΄ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Π΅ ΡˆΠ°Π±Π»ΠΎΠ½Ρ‹ Π² ΠΎΠ΄Π½ΠΎΠΌ слотС инвСнтаря, ΠΈ ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ Π²ΠΈΠ΄Π½Ρ‹ Π² интСрфСйсС любого устройства AE2, ΠΏΠΎΠΊΠ° ΠΊΠΎΡ€ΠΎΠ±ΠΊΠ° находится Π³Π΄Π΅-Π»ΠΈΠ±ΠΎ Π² вашСм ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Π΅.", + "quests.ae2.wireless_access.title": "БСспроводная МЭ-ΡΠ΅Ρ‚ΡŒ", + "quests.ae2.wireless_access.subtitle": "БСсплатный Wi-Fi Π³Π΄Π΅ Π±Ρ‹ Π²Ρ‹ Π½ΠΈ Π±Ρ‹Π»ΠΈ", + "quests.ae2.wireless_access.desc": "Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‚Ρ‹ Π΄ΠΎΡΡ‚ΠΈΠ³Π½Π΅ΡˆΡŒ уровня &5EV&r, Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡˆΡŒ доступ ΠΊ МЭ бСспроводной Ρ‚ΠΎΡ‡ΠΊΠ΅ доступа, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΏΠΎ сути Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ ΠΊΠ°ΠΊ Wi-Fi Ρ€ΠΎΡƒΡ‚Π΅Ρ€ для Ρ‚Π²ΠΎΠ΅ΠΉ МЭ-сСти. ΠŸΠΎΠ΄ΠΊΠ»ΡŽΡ‡ΠΈ Π΅Π³ΠΎ ΠΊ Ρ†Π΅Π½Ρ‚Ρ€Π°Π»ΡŒΠ½ΠΎΠΉ Ρ‚ΠΎΡ‡ΠΊΠ΅ Π±Π°Π·Ρ‹, установитС ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ бСспроводных усилитилСй, сколько Π·Π°Ρ…ΠΎΡ‡Π΅ΡˆΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ радиус дСйствия (ΠΈ энСргопотрСблСниС), Π° Π·Π°Ρ‚Π΅ΠΌ привяТи ΠΊ Π½Π΅ΠΌΡƒ бСспроводной Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π».\n\nКак Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρƒ тСбя появятся эпоксидная смола ΠΈ Ρ€ΠΎΠ΄ΠΈΠΉ, Ρ‚Ρ‹ смоТСшь ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½ΠΈΡ‚ΡŒ всС Ρ‚Π²ΠΎΠΈ бСспроводныС Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π»Ρ‹ Π² ΠΎΠ΄ΠΈΠ½ ΡƒΠ½ΠΈΠ²Π΅Ρ€ΡΠ°Π»ΡŒΠ½Ρ‹ΠΉ Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π»!", + "quests.ae2.interplanetary_wireless.subtitle": "Π—Π°Π±Ρ‹Π»ΠΈ Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ Π΄ΠΎΠΌΠ°?", + "quests.ae2.interplanetary_wireless.desc": "Π’Ρ‹ моТСшь ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ свой бСспроводной Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π» с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ этой ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½ΠΎΠΉ ΠΊΠ°Ρ€Ρ‚Ρ‹, ΠΏΠΎΠ»ΡƒΡ‡ΠΈΠ² доступ ΠΊ сСти с любого расстояния, Π΄Π°ΠΆΠ΅ ΠΈΠ· Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΌΠΈΡ€ΠΎΠ²! Π—Π²ΡƒΡ‡ΠΈΡ‚ слишком Ρ…ΠΎΡ€ΠΎΡˆΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π±Ρ‹Ρ‚ΡŒ ΠΏΡ€Π°Π²Π΄ΠΎΠΉ? Π•ΡΡ‚ΡŒ ΡΠ΅Ρ€ΡŒΡ‘Π·Π½Ρ‹ΠΉ ΠΏΠΎΠ΄Π²ΠΎΡ… β€” ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² потрСбляСт ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ΅ количСство энСргии.\n\nЧастично это ΠΌΠΎΠΆΠ½ΠΎ ΠΎΠ±ΠΎΠΉΡ‚ΠΈ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ энСргСтичСских ΠΊΠ°Ρ€Ρ‚ ΠΈ Π±Π°Ρ‚Π°Ρ€Π΅Π΅ΠΊ Π² Ρ‚Π²ΠΎΠ΅ΠΌ ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Π΅, установлСнной Π² Ρ€Π΅ΠΆΠΈΠΌ разрядки, ΠΈ этого Π±ΡƒΠ΄Π΅Ρ‚ достаточно для случаСв, ΠΊΠΎΠ³Π΄Π° Ρ‚Ρ‹ случайно Π·Π°Π±Ρ‹Π» Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ Π½Π° Π±Π°Π·Π΅ Π½Π° Π—Π΅ΠΌΠ»Π΅ ΠΈ Π½Π΅ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ Π»Π΅Ρ‚Π΅Ρ‚ΡŒ ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ.\n\nДля ΠΏΠΎΠ»Π½ΠΎΡ†Π΅Π½Π½ΠΎΠΉ автоматичСской ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡ΠΈ Ρ‚Π΅Π±Π΅ понадобится Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½.", + "quests.ae2.iv.title": "AE2 уровня IV", + "quests.ae2.iv.desc": "Вся эта Π²Π΅Ρ‚ΠΊΠ° становится ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ доступной, ΠΊΠ°ΠΊ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‚Ρ‹ Π΄ΠΎΡΡ‚ΠΈΠ³Π½Π΅ΡˆΡŒ &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 &5two EV 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": "&eΠ°ΠΊΠΊΡƒΠΌΡƒΠ»ΠΈΡ€ΡƒΡŽΡ‰ΠΈΠΉ процСссор&r Π±ΡƒΠ΄Π΅Ρ‚ Ρ‚Ρ€Π΅Π±ΠΎΠ²Π°Ρ‚ΡŒ большоС количСство крСмния для ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ ΠΊΡ€Π°Ρ„Ρ‚Π°.\n\nНадССмся, Ρ‡Ρ‚ΠΎ Ρƒ тСбя ΡƒΠΆΠ΅ Π΅ΡΡ‚ΡŒ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Π°Ρ Π­Π”ΠŸ, производящая ΠΊΡ€Π΅ΠΌΠ½ΠΈΠΉ, ΠΈΠ»ΠΈ хотя Π±Ρ‹ мощная инфраструктура для Π΅Π³ΠΎ быстрого производства.\n\nΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΡŒΡΡ ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΠΌ ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ Π΅Π³ΠΎ понадобится ΠΎΡ‡Π΅Π½ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ!", + "quests.ae2.mega_crafting.desc": "Π­Ρ‚ΠΎ ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ для Ρ‚Π²ΠΎΠ΅Π³ΠΎ &bΡ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π° для изготовлСния&r.\n\nОно ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ‚ ΡƒΡΠΊΠΎΡ€ΠΈΡ‚ΡŒ Π°Π²Ρ‚ΠΎΠΊΡ€Π°Ρ„Ρ‚ ΠΈ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Π±Π΅Π· ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌ ΡΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒΡΡ с Π±ΠΎΠ»Π΅Π΅ ΠΊΡ€ΡƒΠΏΠ½Ρ‹ΠΌΠΈ Π·Π°Π΄Π°Ρ‡Π°ΠΌΠΈ.", + "quests.ae2.mega_battery.desc": "&eΠ‘ΠΎΠ»Π΅Π΅ ёмкая батарСя&r для Π±ΠΎΠ»Π΅Π΅ ΠΊΡ€ΡƒΠΏΠ½ΠΎΠΉ сСти. НичСго лишнСго!", + "quests.ae2.extended_pattern_access.desc": "&eΠ Π°ΡΡˆΠΈΡ€Π΅Π½Π½Ρ‹ΠΉ Ρ‚Π΅Ρ€ΠΌΠΈΠ½Π°Π» доступа ΠΊ шаблонам&r β€” Π·Π°ΠΌΠ΅Ρ‡Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅, ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰Π΅Π΅ Ρ‚Π΅Π±Π΅ Π³ΠΎΡ€Π°Π·Π΄ΠΎ ΡƒΠ΄ΠΎΠ±Π½Π΅Π΅ ΡƒΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ всСми шаблонами.\n\nΠ’Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΡˆΡŒ &6большС Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ² поиска&r ΠΏΠΎ шаблонам, ΠΈ с ΡƒΡ‡Ρ‘Ρ‚ΠΎΠΌ Ρ‚ΠΎΠ³ΠΎ, сколько ΠΈΡ… Ρƒ тСбя Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ Π±ΡƒΠ΄Π΅Ρ‚, это станСт ΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹ΠΌ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ΠΌ удобства.\n\nΠ‘ΠΊΡ€Π°Ρ„Ρ‚ΠΈ Π²Π΅Ρ€ΡΠΈΡŽ \"ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ\", Ρ‡Ρ‚ΠΎΠ±Ρ‹ просто Π·Π°ΠΆΠ°Ρ‚ΡŒ Shift ΠΈ ΠΊΠ»ΠΈΠΊΠ½ΡƒΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ ΠΏΠΎ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΠΌ поставщикам шаблонов, ΡƒΠ»ΡƒΡ‡ΡˆΠΈΠ² ΠΈΡ… Π±Π΅Π· нСобходимости Π²Ρ‹Π½ΠΈΠΌΠ°Ρ‚ΡŒ всС ΡˆΠ°Π±Π»ΠΎΠ½Ρ‹.", + "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Π Π°ΡΡˆΠΈΡ€Π΅Π½Π½Ρ‹ΠΉ дисковод&r &6ΡƒΠ΄Π²Π°ΠΈΠ²Π°Π΅Ρ‚&r количСство &eячССк хранСния&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Ρ‚Ρ‹ моТСшь Π² Π½Π΅Π³ΠΎ ΠΏΠΎΡΡ‚Π°Π²ΠΈΡ‚ΡŒ.\n\nΠ’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ моТСшь ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ &eΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ просто &aΠΊΠ»ΠΈΠΊΠ½ΡƒΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ&r ΠΏΠΎ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΠΌ МЭ-дисководам, Π½Π΅ ΠΎΠΏΡƒΡΡ‚Π°ΡˆΠ°Ρ ΠΈΡ…, ΠΈ это Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ ΡΡ‚ΠΎΠΈΡ‚ΡŒ Π΄ΠΎΡ€ΠΎΠΆΠ΅.", + "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": "&aМЭ бСспроводной ΡΠΎΠ΅Π΄ΠΈΠ½ΠΈΡ‚Π΅Π»ΡŒ&r β€” Ρ‚Π²ΠΎΠΉ Π»ΡƒΡ‡ΡˆΠΈΠΉ Π²Ρ‹Π±ΠΎΡ€, Ссли Ρ‚Ρ‹ Π½Π΅ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΠΏΡ€ΠΎΠΊΠ»Π°Π΄Ρ‹Π²Π°Ρ‚ΡŒ ΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹Π΅ Π»ΠΈΠ½ΠΈΠΈ ΠΈΠ· &bΠΊΠ°Π±Π΅Π»Π΅ΠΉ&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 МЭ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ хранСния&r β€” послСдний, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Ρ‚Ρ‹ моТСшь ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠ³ΠΎ ассСмблСра, ΠΈ ΠΎΠ½ Π½Π°ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Π΅Π»ΠΈΠΊ, Ρ‡Ρ‚ΠΎ Ρ‚Π΅Π±Π΅, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ понадобятся Π΅Ρ‰Ρ‘ большиС Ρ€Π°Π·ΠΌΠ΅Ρ€Ρ‹.\n\nНу, Ρ€Π°Π·Π²Π΅ Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ Π³ΠΎΡ‚ΠΎΠ² ΠΏΡ€ΠΈΠ½ΡΡ‚ΡŒ Π²Ρ‹Π·ΠΎΠ².", + "quests.ae2.luv.title": "AE2 уровня LuV", + "quests.ae2.luv.desc": "Π­Ρ‚Π° Π²Π΅Ρ‚ΠΊΠ° становится доступной, ΠΊΠ°ΠΊ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‚Ρ‹ Π΄ΠΎΡΡ‚ΠΈΠ³Π½Π΅ΡˆΡŒ уровня &dLuV&r.", + "quests.ae2.cell_component_1m.desc": "Для &3ΠœΠ•Π“Π ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ² хранСния&r Ρ‚Π΅Π±Π΅ понадобится &bΠ‘Π±ΠΎΡ€ΠΎΡ‡Π½Ρ‹ΠΉ ΠΊΠΎΠ½Π²Π΅ΠΉΠ΅Ρ€&r. ΠžΠ±Ρ€Π°Ρ‚ΠΈ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅: Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π±Π΅Π· Π›ΡƒΠ½Ρ‹ Π΄ΠΎΠ»ΠΆΠ΅Π½ ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒΡΡ Π² чистой ΠΊΠΎΠΌΠ½Π°Ρ‚Π΅, Π»ΠΈΠ±ΠΎ Ρ‚Ρ‹ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &7Π›ΡŽΠΊ обслюТивания автоматичСской Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°Ρ†ΠΈΠΈ&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 МЭ ΠœΠ•Π“Π ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ хранСния&r β€” самый большой ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Ρ‚Ρ‹ моТСшь ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Π² &7TerraFirmaGreg&r. ЧСстно говоря, ΠΌΡ‹ считаСм, Ρ‡Ρ‚ΠΎ ΠΎΠ½ Ρ‚Π΅Π±Π΅ Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ понадобится, Π½ΠΎ ΠΎΠ½ Π΅ΡΡ‚ΡŒ для ΠΊΠΎΠ»Π»Π΅ΠΊΡ†ΠΈΠΎΠ½Π΅Ρ€ΠΎΠ² ΠΈ пСрфСкционистов.", + "quests.ae2.oversize_interface.desc": "&dМЭ Π‘Π²Π΅Ρ€Ρ…Ρ€Π°Π·ΠΌΠ΅Ρ€Π½Ρ‹ΠΉ интСрфСйс&r β€” это &dМЭ Ρ€Π°ΡΡˆΠΈΡ€Π΅Π½Π½Ρ‹ΠΉ интСрфСйс&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": "ΠŸΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Π½Π°:", + "quests.tasktype.travelto": "ΠŸΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ Π²:", + "quests.groups.primitive": "ΠŸΠ΅Ρ€Π²ΠΎΠ±Ρ‹Ρ‚Π½Ρ‹ΠΉ Π²Π΅ΠΊ", + "quests.groups.voltaic_age": "ЭлСктричСский Π²Π΅ΠΊ", + "quests.groups.space_age": "ΠšΠΎΡΠΌΠΈΡ‡Π΅ΡΠΊΠΈΠΉ Π²Π΅ΠΊ", + "quests.groups.interstellar": "ΠœΠ΅ΠΆΠ·Π²Ρ‘Π·Π΄Π½Ρ‹ΠΉ Π²Π΅ΠΊ", + "quests.groups.technological_help": "ВСхнологичСская ΠΏΠΎΠΌΠΎΡ‰ΡŒ", + "quests.groups.tips": "Π‘ΠΎΠ²Π΅Ρ‚Ρ‹", + "quests.computer": "ComputerCraft", + "quests.computer.subtitle": "ΠžΡ‡Π΅Π½ΡŒ ΠΌΠΎΡ‰Π½Ρ‹ΠΉ ΠΌΠΎΠ΄ для скриптинга Π½Π° Lua", + "quests.create_logistics": "Логистика Create", + "quests.create_logistics.subtitle": "ΠœΠ΅Π½Π΅Π΄ΠΆΠΌΠ΅Π½Ρ‚ склада для Ρ‡Π°ΠΉΠ½ΠΈΠΊΠΎΠ²", + "quests.create_logistics.introduction.title": "Π‘ΠΊΠ»Π°Π΄Ρ‹Π²Π°Π΅ΠΌ ΠΏΠΎ-ΡƒΠΌΠ½ΠΎΠΌΡƒ", + "quests.create_logistics.introduction.desc": "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ нСсколько машин ΠΈΠ· &3Create&r, Π²Ρ‹ смоТСтС Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ транспортировку ΠΈ Ρ…Ρ€Π°Π½Π΅Π½ΠΈΠ΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ². ПозТС, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½Π΅Ρ‚Π΅ΡΡŒ Π² &2Π­ΠΏΠΎΡ…Ρƒ ЭлСктричСства&r, Π²Ρ‹ Π΄Π°ΠΆΠ΅ смоТСтС Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ процСссы для автоматичСского Π·Π°ΠΊΠ°Π·Π° ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΈΠ»ΠΈ ΠΈΡ… ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ ΠΏΠΎ Π±Π°Π·Π΅ ΠΏΠΎ нСобходимости!\n\nΠŸΠΎΡΠΊΠΎΠ»ΡŒΠΊΡƒ эта Ρ†Π΅ΠΏΠΎΡ‡ΠΊΠ° квСстов Π² основном посвящСна машинам ΠΈΠ· &3Create&r, &5Π Π°Π·ΠΌΡ‹ΡˆΠ»Π΅Π½ΠΈΡ&r ΠΎ Π½ΠΈΡ… станут вашим Π»ΡƒΡ‡ΡˆΠΈΠΌ источником ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ, ΠΏΠΎΠΌΠΈΠΌΠΎ самих квСстов. ΠžΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ просмотритС ΠΈΡ… описания.", + "quests.create_logistics.packager.title": "Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊ", + "quests.create_logistics.packager.subtitle": "Π—Π°ΠΏΠ°ΠΊΡƒΠΉ это", + "quests.create_logistics.packager.desc.1": "ΠŸΡ€ΠΈ ΠΏΠΎΠ΄Π°Ρ‡Π΅ &cсигнала рСдстоуна&r &3Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊ&r ΡƒΠΏΠ°ΠΊΡƒΠ΅Ρ‚ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈΠ· Π±Π»ΠΎΠΊΠ°, ΠΊ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌΡƒ ΠΎΠ½ присоСдинён (сторону ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΌΠ΅Π½ΡΡ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &5Π³Π°Π΅Ρ‡Π½ΠΎΠ³ΠΎ ΠΊΠ»ΡŽΡ‡Π°&r), ΠΈ выдаст Π°ΠΊΠΊΡƒΡ€Π°Ρ‚Π½ΡƒΡŽ ΠΊΠ°Ρ€Ρ‚ΠΎΠ½Π½ΡƒΡŽ ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΡƒ. КаТдая такая ΠΊΠΎΡ€ΠΎΠ±ΠΊΠ° ΠΈΠΌΠ΅Π΅Ρ‚ ΠΎΠ±ΡŠΡ‘ΠΌ Π² 9 слотов инвСнтаря, Ρ‡Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ Π΅Ρ‘ ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΌ способом пСрСноса мноТСства ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π·Π° Ρ€Π°Π·. Для создания ΡƒΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊΠ° Π²Π°ΠΌ понадобится ΠΌΠ½ΠΎΠ³ΠΎ &dΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°&r, &dэлСктронная Ρ‚Ρ€ΡƒΠ±ΠΊΠ°&r, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΏΡ€ΠΈΠ»ΠΈΡ‡Π½ΠΎΠ΅ количСство &dΠΊΠ°Ρ€Ρ‚ΠΎΠ½Π°&r (ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ дСлаСтся ΠΈΠ· &dΠ±ΡƒΠΌΠ°Π³ΠΈ&r ΠΈ &dклСя&r).\n\nΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅: послС создания ΡƒΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Π±Π΅Π· расхода Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ ΠΊΠ°Ρ€Ρ‚ΠΎΠ½Π°, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π΅ Π±Π΅ΡΠΏΠΎΠΊΠΎΠΈΡ‚ΡŒΡΡ ΠΎΠ± обслуТивании!", + "quests.create_logistics.packager.desc.2": "Если ΠΏΠΎΠ²Π΅ΡΠΈΡ‚ΡŒ Π½Π° &3Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊ&r Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΡƒ, ΠΎΠ½ Π±ΡƒΠ΄Π΅Ρ‚ автоматичСски ΡƒΠΊΠ°Π·Ρ‹Π²Π°Ρ‚ΡŒ содСрТимоС этой Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠΈ Π² качСствС адрСса назначСния Π½Π° всСх ΡƒΠΏΠ°ΠΊΠΎΠ²Π°Π½Π½Ρ‹Ρ… ΠΊΠΎΡ€ΠΎΠ±ΠΊΠ°Ρ…. Π­Ρ‚ΠΎ станСт особСнно ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌ, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ Π½Π°Ρ‡Π½Ρ‘Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Ρ€Π°Π·Π½Ρ‹Π΅ способы ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ посылок.\n\nΠ£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊΠΈ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠ³ΡƒΡ‚ Ρ€Π°ΡΠΏΠ°ΠΊΠΎΠ²Ρ‹Π²Π°Ρ‚ΡŒ Π»ΡŽΠ±Ρ‹Π΅ ΠΊΠΎΡ€ΠΎΠ±ΠΊΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π² Π½ΠΈΡ… ΠΏΠΎΠΌΠ΅Ρ‰Π°ΡŽΡ‚ΡΡ, выгруТая содСрТимоС Π² ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Ρ‘Π½Π½Ρ‹ΠΉ ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ.\n\n&c&lΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅: Ρ€Π°ΠΌΠΎΡ‡Π½Ρ‹Π΅ Ρ‚Π°Π±Π»ΠΈΡ‡ΠΊΠΈ (Framed Signs) для этой Ρ†Π΅Π»ΠΈ Π½Π΅ Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚!&r", + "quests.create_logistics.frogport.title": "ΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚", + "quests.create_logistics.frogport.subtitle": "Π¦Π΅ΠΏΠΎΡ‡ΠΊΠ° ΠΊΠΎΠΌΠ°Π½Π΄", + "quests.create_logistics.frogport.desc.1": "&3ΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚Ρ‹&r β€” это ΠΎΠ΄ΠΈΠ½ ΠΈΠ· Ρ‚Ρ€Ρ‘Ρ… способов пСрСмСщСния посылок ΠΈ доставки ΠΈΡ… Ρ‚ΡƒΠ΄Π°, ΠΊΡƒΠ΄Π° Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ. Они ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΠ΄Π²Π΅ΡˆΠΈΠ²Π°Ρ‚ΡŒ посылки Π½Π° &3Π¦Π΅ΠΏΠ½Ρ‹Π΅ транспортёры&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΈΡ… вдоль Ρ†Π΅ΠΏΠ½Ρ‹Ρ… соСдинСний. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ…, Π²Π°ΠΌ сначала понадобится ΡΠ΅Ρ‚ΡŒ &3Π¦Π΅ΠΏΠ½Ρ‹Ρ… транспортёров&r, соСдинённых ΠΌΠ΅ΠΆΠ΄Ρƒ собой цСпями ΠΈ обСспСчСнных ΠΏΠΈΡ‚Π°Π½ΠΈΠ΅ΠΌ: ΠΏΠΎΠ΄ΠΎΠΉΠ΄Ρ‘Ρ‚ любая Ρ†Π΅ΠΏΡŒ с Ρ‚Π΅Π³ΠΎΠΌ &d#forge:chains&r. Π©Ρ‘Π»ΠΊΠ½ΠΈΡ‚Π΅ ПКМ ΠΏΠΎ соСдинСнию Ρ†Π΅ΠΏΠΈ ΠΏΠ΅Ρ€Π΅Π΄ установкой ΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ½ Π½Π°Ρ‡Π°Π» Π²Π·Π°ΠΈΠΌΠΎΠ΄Π΅ΠΉΡΡ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ с этим сСгмСнтом.\n\nΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚Ρ‹, установлСнныС прямо ΠΏΠΎΠ²Π΅Ρ€Ρ… &3Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊΠ°&r, автоматичСски ΠΏΠΎΠ΄Π²Π΅ΡˆΠΈΠ²Π°ΡŽΡ‚ посылки, созданныС этим Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊΠΎΠΌ.", + "quests.create_logistics.frogport.desc.2": "ΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚Ρ‹ ΠΌΠΎΠ³ΡƒΡ‚ Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΡ‚ΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ, Π½ΠΎ ΠΈ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Ρ‚ΡŒ посылки. Если Ρ‰Ρ‘Π»ΠΊΠ½ΡƒΡ‚ΡŒ ПКМ ΠΏΠΎ ΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚Ρƒ, Π²Ρ‹ ΡƒΠ²ΠΈΠ΄ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ Ρƒ Π½Π΅Π³ΠΎ Π΅ΡΡ‚ΡŒ имя, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ. Π­Ρ‚ΠΎ имя слуТит ΠΊΠ°ΠΊ &aадрСс&r β€” Ссли Ρƒ ΠΊΠ°ΠΊΠΎΠΉ-Π»ΠΈΠ±ΠΎ посылки Π΅ΡΡ‚ΡŒ ΡΠΎΠ²ΠΏΠ°Π΄Π°ΡŽΡ‰ΠΈΠΉ адрСс назначСния, ΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚ &aавтоматичСски собСрёт Π΅Ρ‘&r, сняв с Ρ†Π΅ΠΏΠ½ΠΎΠΉ сСти! ΠŸΠΎΠ»ΡƒΡ‡Π΅Π½Π½Π°Ρ посылка Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΠΌΠ΅Ρ‰Π΅Π½Π° Π² ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ Π±Π»ΠΎΠΊΠ°, Π½Π° ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌ установлСн ΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚.\n\nПока цСпная ΡΠ΅Ρ‚ΡŒ ΠΊΠ°ΠΊΠΈΠΌ-Π»ΠΈΠ±ΠΎ ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ соСдиняСт Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ ΠΈ Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ ΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚Ρ‹, посылка Π² ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΎΠΌ ΠΈΡ‚ΠΎΠ³Π΅ добСрётся Π΄ΠΎ мСста назначСния, хотя Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΠΏΡ‚ΠΈΠΌΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠΊΡ€Π°Ρ‚ΠΈΡ‚ΡŒ врСмя доставки.", + "quests.create_logistics.package_filter.title": "Π€ΠΈΠ»ΡŒΡ‚Ρ€ ΠžΡ‚ΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠΉ", + "quests.create_logistics.package_filter.subtitle": "ΠžΠ±Ρ‰Π΅Π΅ Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅ для ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ посылок", + "quests.create_logistics.package_filter.desc": "ΠŸΠΎΡΡ‹Π»ΠΊΠΈ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ спСциализированного &3Π€ΠΈΠ»ΡŒΡ‚Ρ€Π° посылок&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ любой Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ Π² любой машинС &3Create&r с ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΎΠΉ слотов Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°. ΠŸΡ€ΠΎΡΡ‚ΠΎ Ρ‰Ρ‘Π»ΠΊΠ½ΠΈΡ‚Π΅ ПКМ, удСрТивая Ρ„ΠΈΠ»ΡŒΡ‚Ρ€, ΠΈ Π²Π²Π΅Π΄ΠΈΡ‚Π΅ адрСс, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π΄ΠΎΠ»ΠΆΠ΅Π½ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ΠΎΠ²Π°Ρ‚ΡŒΡΡ β€” всС посылки с ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹ΠΌ адрСсом назначСния Π±ΡƒΠ΄ΡƒΡ‚ ΠΏΡ€ΠΎΠΏΡƒΡ‰Π΅Π½Ρ‹. Π­Ρ‚ΠΎ особСнно ΠΏΠΎΠ»Π΅Π·Π½ΠΎ для &3Π›Π°Ρ‚ΡƒΠ½Π½Ρ‹Ρ… Ρ‚ΡƒΠ½Π½Π΅Π»Π΅ΠΉ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ваша конвСйСрная ΡΠ΅Ρ‚ΡŒ ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π»Π° посылки Π² зависимости ΠΎΡ‚ адрСса назначСния.", + "quests.create_logistics.postbox.title": "ΠŸΠΎΡ‡Ρ‚ΠΎΠ²Ρ‹Π΅ Π―Ρ‰ΠΈΠΊΠΈ", + "quests.create_logistics.postbox.subtitle": "Π­Ρ‚ΠΎ я, ΠΏΠΎΡ‡Ρ‚Π°Π»ΡŒΠΎΠ½ ΠŸΠ΅Ρ‡ΠΊΠΈΠ½! ", + "quests.create_logistics.postbox.desc.1": "&3ΠŸΠΎΡ‡Ρ‚ΠΎΠ²Ρ‹Π΅ ящики&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ для ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ посылок с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &aΠ–Π΅Π»Π΅Π·Π½ΠΎΠ΄ΠΎΡ€ΠΎΠΆΠ½Ρ‹Ρ… сСтСй&r. Π‘Π½Π°Ρ‡Π°Π»Π° Ρ‰Ρ‘Π»ΠΊΠ½ΠΈΡ‚Π΅ ПКМ ΠΏΠΎ &3Π–Π΅Π»Π΅Π·Π½ΠΎΠ΄ΠΎΡ€ΠΎΠΆΠ½ΠΎΠΉ станции&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ²ΡΠ·Π°Ρ‚ΡŒ ΠŸΠΎΡ‡Ρ‚ΠΎΠ²Ρ‹ΠΉ ящик с этой станциСй, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ Π΅Π³ΠΎ ΡƒΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°Ρ‚ΡŒ. ПослС этого Π»ΡŽΠ±Ρ‹Π΅ ΠΏΠΎΠ΅Π·Π΄Π°, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΎΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°ΡŽΡ‚ΡΡ Π½Π° станции, смогут Π²Π·Π°ΠΈΠΌΠΎΠ΄Π΅ΠΉΡΡ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ с ΠŸΠΎΡ‡Ρ‚ΠΎΠ²Ρ‹ΠΌ ящиком (Ссли ΠΎΠ½ находится Π² радиусС 4 Π±Π»ΠΎΠΊΠΎΠ² ΠΎΡ‚ станции).\n\nΠŸΠΎΡ‡Ρ‚ΠΎΠ²Ρ‹Π΅ ящики, ΠΊΠ°ΠΊ ΠΈ &3ΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚Ρ‹&r, ΠΌΠΎΠ³ΡƒΡ‚ ΠΈΠΌΠ΅Ρ‚ΡŒ имя. ΠŸΡ€ΠΎΡ…ΠΎΠ΄ΡΡ‰ΠΈΠ΅ ΠΏΠΎΠ΅Π·Π΄Π° Π±ΡƒΠ΄ΡƒΡ‚ Π·Π°Π±ΠΈΡ€Π°Ρ‚ΡŒ посылки, Ρ‡ΡŒΠΈ адрСса Π½Π΅ ΡΠΎΠ²ΠΏΠ°Π΄Π°ΡŽΡ‚ с ΠΈΠΌΠ΅Π½Π΅ΠΌ ΠŸΠΎΡ‡Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ящика. Π‘ΠΎΠ»Π΅Π΅ Ρ‚ΠΎΠ³ΠΎ, Ссли Π² инвСнтарях ΠΏΠΎΠ΅Π·Π΄Π° Π΅ΡΡ‚ΡŒ посылки, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ &oΠ½Π΅&r ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‚ ΠΈΠΌΠ΅Π½ΠΈ ΠŸΠΎΡ‡Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ящика, ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ ΠΏΠΎΠΌΠ΅Ρ‰Π΅Π½Ρ‹ Π² ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ ΠŸΠΎΡ‡Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ящика.", + "quests.create_logistics.postbox.desc.2": "Π•Ρ‰Ρ‘ ΠΎΠ΄ΠΈΠ½ интСрСсный ΠΌΠΎΠΌΠ΅Π½Ρ‚ ΠΎ &3ΠŸΠΎΡ‡Ρ‚ΠΎΠ²Ρ‹Ρ… ящиках&r: ΠΏΡ€ΠΈ автоматичСском ΠΈΠ·Π²Π»Π΅Ρ‡Π΅Π½ΠΈΠΈ ΠΈΠ· Π½ΠΈΡ… (Ρ‡Π΅Ρ€Π΅Π· ΠΆΠ΅Π»ΠΎΠ±Π°, Π²ΠΎΡ€ΠΎΠ½ΠΊΠΈ ΠΈ Ρ‚.ΠΏ.) Π±ΡƒΠ΄ΡƒΡ‚ Π²Ρ‹Π½ΠΈΠΌΠ°Ρ‚ΡŒΡΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ посылки с адрСсом, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ &aсовпадаСт с ΠΈΠΌΠ΅Π½Π΅ΠΌ ΠŸΠΎΡ‡Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ящика&r. ВсС посылки с Π΄Ρ€ΡƒΠ³ΠΈΠΌ адрСсом останутся Π²Π½ΡƒΡ‚Ρ€ΠΈ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ Π±Ρ‹Π»ΠΎ Π·Π°Π³Ρ€ΡƒΠ·ΠΈΡ‚ΡŒ Π½Π° ΠΏΠΎΠ΅Π·Π΄Π° ΠΏΠΎΠ·ΠΆΠ΅.", + "quests.create_logistics.nbt_handling.title": "РасскаТитС ΠΌΠ½Π΅ большС", + "quests.create_logistics.nbt_handling.subtitle": "Π”ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Π°Ρ информация ΠΎ посылках ΠΈ адрСсах", + "quests.create_logistics.nbt_handling.desc.1": "Π’ΠΎΡ‚ Π΅Ρ‰Ρ‘ нСсколько Π²Π°ΠΆΠ½Ρ‹Ρ… ΠΌΠΎΠΌΠ΅Π½Ρ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ ΠΏΡ€ΠΈ ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ посылок:\n\n&3-&r ΠŸΠΎΡΡ‹Π»ΠΊΠΈ ΡΠΎΠ·Π΄Π°ΡŽΡ‚ΡΡ случайным ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ ΠΈΠ· Π½Π°Π±ΠΎΡ€Π° ΠΈΠ· Ρ‡Π΅Ρ‚Ρ‹Ρ€Ρ‘Ρ… Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ², поэтому использованиС Ρ‚Π°ΠΊΠΈΡ… Π²Π΅Ρ‰Π΅ΠΉ, ΠΊΠ°ΠΊ &3Π€ΠΈΠ»ΡŒΡ‚Ρ€Ρ‹ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² GregTech&r, Π±ΡƒΠ΄Π΅Ρ‚ &cΠΎΡ‡Π΅Π½ΡŒ ΡƒΡ‚ΠΎΠΌΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ&r! РСкомСндуСтся ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &3Π€ΠΈΠ»ΡŒΡ‚Ρ€ посылок&r, Π³Π΄Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΌΠΎΠΆΠ½ΠΎ, Π½ΠΎ...\n\n&3-&r Если Π²Ρ‹ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΠΏΡ€ΠΎΠ±ΠΎΠ²Π°Ρ‚ΡŒ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ способы пСрСмСщСния посылок, адрСс назначСния хранится ΠΊΠ°ΠΊ Π΄Π°Π½Π½Ρ‹Π΅ NBT Π² Ρ‚Π΅Π³Π΅ &eAddress&r. НапримСр, посылка с адрСсом назначСния \"Π”ΠΎΠΌ\" Π±ΡƒΠ΄Π΅Ρ‚ ΠΈΠΌΠ΅Ρ‚ΡŒ Π² своих Π΄Π°Π½Π½Ρ‹Ρ… NBT: &e{Address:.\"Home\"}&r.", + "quests.create_logistics.nbt_handling.desc.2": "&3-&r Π€ΠΈΠ»ΡŒΡ‚Ρ€Π°Ρ†ΠΈΡ адрСсов посылок Π½Π° самом Π΄Π΅Π»Π΅ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ ΡƒΠΏΡ€ΠΎΡ‰Ρ‘Π½Π½ΡƒΡŽ Ρ„ΠΎΡ€ΠΌΡƒ &eRegEx&r. Π­Ρ‚ΠΎ ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚, Ρ‡Ρ‚ΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅:\n\n&e-&r Π‘ΠΎΠ²ΠΏΠ°Π΄Π΅Π½ΠΈΠ΅ с любой строкой любой Π΄Π»ΠΈΠ½Ρ‹ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ \n\n&e-&r Π‘ΠΎΠ²ΠΏΠ°Π΄Π΅Π½ΠΈΠ΅ с Π»ΡŽΠ±Ρ‹ΠΌ ΠΎΠ΄Π½ΠΈΠΌ символом с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ?\n\n&e-&r Π‘ΠΎΠ²ΠΏΠ°Π΄Π΅Π½ΠΈΠ΅ с ΠΎΠ΄Π½ΠΈΠΌ символом ΠΈΠ· Π³Ρ€ΡƒΠΏΠΏΡ‹ символов, Π·Π°ΠΊΠ»ΡŽΡ‡Ρ‘Π½Π½Ρ‹Ρ… Π² [] (Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, A[cr]t совпадёт с 'Act' ΠΈ 'Art', Π½ΠΎ Π½Π΅ с 'Ant')\n\n&e-&r Π‘ΠΎΠ²ΠΏΠ°Π΄Π΅Π½ΠΈΠ΅ с ΠΎΠ΄Π½ΠΈΠΌ символом, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π½Π΅ ΠΏΡ€ΠΈΠ½Π°Π΄Π»Π΅ΠΆΠΈΡ‚ Π³Ρ€ΡƒΠΏΠΏΠ΅ символов, Π·Π°ΠΊΠ»ΡŽΡ‡Ρ‘Π½Π½Ρ‹Ρ… Π² [! ] (Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, A[!cr]t совпадёт с 'Aft' ΠΈ 'Apt', Π½ΠΎ Π½Π΅ с 'Act' ΠΈΠ»ΠΈ 'Art')\n\n&e-&r Π‘ΠΎΠ²ΠΏΠ°Π΄Π΅Π½ΠΈΠ΅ со строкой ΠΈΠ· списка строк, ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹Ρ… Π²Π½ΡƒΡ‚Ρ€ΠΈ {} (Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, TerraFirma{Craft,Greg} совпадёт ΠΊΠ°ΠΊ с TerraFirma&eCraft&r, Ρ‚Π°ΠΊ ΠΈ с TerraFirma&eGreg&r)\n\n&e-&r ВсС ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰ΠΈΠ΅ символы ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ экранированы; Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, A\\ Π±ΡƒΠ΄Π΅Ρ‚ ΠΈΠ½Ρ‚Π΅Ρ€ΠΏΡ€Π΅Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒΡΡ ΠΊΠ°ΠΊ A* ΠΈ ΡΠΎΠ²ΠΏΠ°Π΄Π°Ρ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ с 'A*'.", + "quests.create_logistics.bottler.title": "Разливочная Машина", + "quests.create_logistics.bottler.subtitle": "Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊ для ТидкостСй", + "quests.create_logistics.bottler.desc": "&3Разливочная Машина&r β€” это Тидкостный Π°Π½Π°Π»ΠΎΠ³ Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊΠ°. РазмСститС Π΅Ρ‘ рядом с Π»ΡŽΠ±Ρ‹ΠΌ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€ΠΎΠΌ для ТидкостСй (Жидкостный Π±Π°ΠΊ, Π‘ΠΎΡ‡ΠΊΠΈ, ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΈ Ρ‚Π°ΠΊ Π΄Π°Π»Π΅Π΅), установитС ΠšΠ²Π°ΠΊΠΎΠΏΠΎΡ€Ρ‚ свСрху Π Π°Π·Π»ΠΈΠ²ΠΎΡ‡Π½ΠΎΠΉ ΠœΠ°ΡˆΠΈΠ½Ρ‹, ΠΈ ΠΎΡΡ‚Π°Π»ΡŒΠ½ΠΎΠ΅ Π±ΡƒΠ΄Π΅Ρ‚ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ, ΠΊΠ°ΠΊ Π²Ρ‹ ΠΎΠΆΠΈΠ΄Π°Π΅Ρ‚Π΅! Разливочная Машина Π½Π° ΠΏΡƒΠ½ΠΊΡ‚Π΅ назначСния Π°Π½Π°Π»ΠΎΠ³ΠΈΡ‡Π½ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ Π·Π°ΠΊΠ°Ρ‡ΠΈΠ²Π°Ρ‚ΡŒ Тидкости Π² ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Ρ‹, насос Π½Π΅ трСбуСтся!", + "quests.create_logistics.rose_quartz.title": "Π ΠΎΠ·Ρ‹ - красныС...", + "quests.create_logistics.rose_quartz.subtitle": "...А Π²ΠΎΡ‚ Π ΠΎΠ·ΠΎΠ²Ρ‹ΠΉ ΠšΠ²Π°Ρ€Ρ† - Π ΠΎΠ·ΠΎΠ²Ρ‹ΠΉ", + "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.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": "Π˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊ Π ΠΎΠ·ΠΎΠ²ΠΎΠ³ΠΎ ΠšΠ²Π°Ρ€Ρ†Π°: V", + "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.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.stock_link.title": "Бкладской ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊ", + "quests.create_logistics.stock_link.subtitle": "Π£ нас ΡƒΠΆΠ΅ Π΅ΡΡ‚ΡŒ склад Π΄ΠΎΠΌΠ°", + "quests.create_logistics.stock_link.desc": "ΠŸΠ΅Ρ€Π²Π°Ρ машина ΠΈΠ· &2Π’Ρ‹ΡΡˆΠ΅ΠΉ Логистики&r, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ, β€” это &3Бкладской ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊ&r, которая ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для создания &dЛогистичСской Π‘Π΅Ρ‚ΠΈ&r. Когда Π΅Π³ΠΎ ΡƒΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°ΡŽΡ‚ Π½Π° Π»ΡŽΠ±ΡƒΡŽ сторону &3Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊΠ°&r, Бкладской ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊ &aΠ΄Π΅Π»Π°Π΅Ρ‚ Π²ΠΈΠ΄ΠΈΠΌΡ‹ΠΌ для сСти ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ, ΠΊ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌΡƒ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Ρ‘Π½ Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊ&r! Π‘Π°ΠΌ ΠΏΠΎ сСбС Бкладской ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊ Π½Π΅ слишком ΠΏΠΎΠ»Π΅Π·Π΅Π½, Π½ΠΎ являСтся ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹ΠΌ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠΌ всСх Π±ΡƒΠ΄ΡƒΡ‰ΠΈΡ… машин...\n\nНС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΠΊΠ»ΠΈΠΊΠ½ΡƒΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ ΠΏΠΎ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰Π΅ΠΌΡƒ Бкладскому ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊΡƒ ΠΏΠ΅Ρ€Π΅Π΄ установкой Π½ΠΎΠ²ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΈΡ… Π½Π° ΠΎΠ΄Π½Ρƒ ΠΈ Ρ‚Ρƒ ΠΆΠ΅ ΡΠ΅Ρ‚ΡŒ. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΌΠ΅Π½ΠΈΡ‚ΡŒ это, ΠΌΠΎΠΆΠ½ΠΎ просто ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ Бкладской ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ±Ρ€ΠΎΡΠΈΡ‚ΡŒ Π΅Π³ΠΎ ΡΠΈΠ½Ρ…Ρ€ΠΎΠ½ΠΈΠ·Π°Ρ†ΠΈΡŽ.", + "quests.create_logistics.stock_ticker.title": "Бкладской ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€", + "quests.create_logistics.stock_ticker.subtitle": "ΠžΡ„ΠΈΡ†ΠΈΠ°Π½Ρ‚! ΠžΡ„ΠΈΡ†ΠΈΠ°Π½Ρ‚! Π•Ρ‰Ρ‘ &dΠšΠΎΡ€Π½Π΅Π²ΠΎΠΉ Ил с ΠŸΠ΅ΡΡ‡Π°Π½ΠΎΠΉ Π“Π»ΠΈΠ½ΠΎΠΉ&r, поТалуйста!", + "quests.create_logistics.stock_ticker.desc.1": "Если Π²Ρ‹ ΡƒΠΆΠ΅ использовали &3БкладскиС ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊΠΈ&r для ΠΏΠΎΠ΄Π°Ρ‡ΠΈ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π² &dΠ›ΠΎΠ³ΠΈΡΡ‚ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π‘Π΅Ρ‚ΡŒ&r, ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ шаг β€” ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ устройство, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ смоТСт Π²Ρ‹Π·Ρ‹Π²Π°Ρ‚ΡŒ эти ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ дистанционно… И здСсь Π½Π° ΠΏΠΎΠΌΠΎΡ‰ΡŒ ΠΏΡ€ΠΈΡ…ΠΎΠ΄ΠΈΡ‚ &3Бкладской ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€&r. Подобно Бкладскому ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊΡƒ, сначала Π½ΡƒΠΆΠ½ΠΎ ΠΊΠ»ΠΈΠΊΠ½ΡƒΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ ΠΏΠΎ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰Π΅ΠΌΡƒ ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊΡƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€ Π½Π° Ρ‚Ρƒ ΠΆΠ΅ ΡΠ΅Ρ‚ΡŒ. Π—Π°Ρ‚Π΅ΠΌ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ Ρ€Π°Π·ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ &3Π“ΠΎΡ€Π΅Π»ΠΊΡƒ Всполоха&r ΠΈΠ»ΠΈ любоС сущСство Π² &3БидСньС&r рядом с Бкладским ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€ΠΎΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ½ΠΈ Ρ€Π°Π±ΠΎΡ‚Π°Π»ΠΈ ΠΊΠ°ΠΊ &3Бкладской Π₯Ρ€Π°Π½ΠΈΡ‚Π΅Π»ΡŒ&r", + "quests.create_logistics.stock_ticker.desc.2": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ, ΠΊΠΎΠ³Π΄Π° Π±Π΅Π΄Π½ΠΎΠ΅ сущСство ΠΏΡ€ΠΈΠ³ΠΎΠ²ΠΎΡ€Π΅Π½ΠΎ ΠΊ ΠΏΠΎΠΆΠΈΠ·Π½Π΅Π½Π½ΠΎΠΉ слуТбС, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΊΠ»ΠΈΠΊΠ½ΡƒΡ‚ΡŒ ΠΏΠΎ Π½Π΅ΠΌΡƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ всС ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π² &dЛогистичСской Π‘Π΅Ρ‚ΠΈ&r. Π’Ρ‹ Π΄Π°ΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΊΠ°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π² сСти ΠΈ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Π·Π°ΠΊΠ°Π·Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π±ΡƒΠ΄ΡƒΡ‚ ΠΎΡ‚ΠΏΡ€Π°Π²Π»Π΅Π½Ρ‹ Π½Π° ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½Ρ‹Π΅ адрСса! ΠžΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ΠΈΠΉ ΠΏΠΎ Π΄Π°Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ Π½Π΅Ρ‚, хотя Π²Π°ΠΌ придётся ΡΠ°ΠΌΠΎΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†ΠΈΡŽ ΠΏΠ°ΠΊΠ΅Ρ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π±ΡƒΠ΄ΡƒΡ‚ Π·Π°ΠΊΠ°Π·Ρ‹Π²Π°Ρ‚ΡŒΡΡ Ρ‡Π΅Ρ€Π΅Π· БкладскиС ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊΠΈ, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΠ±Π΅ΡΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ Π·Π°Π³Ρ€ΡƒΠ·ΠΊΡƒ Ρ‡Π°Π½ΠΊΠ° с этим ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊΠΎΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ всё Ρ€Π°Π±ΠΎΡ‚Π°Π»ΠΎ.", + "quests.create_logistics.stock_ticker.desc.3": "ΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€ Ρ‚Π°ΠΊ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Π»ΠΈΡΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½Ρ‹Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, ΠΈΠ»ΠΈ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΊΠ°Ρ‚Π΅Π³ΠΎΡ€ΠΈΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ².", + "quests.create_logistics.redstone_requester.title": "РСдстоуновый Π—Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°Ρ‚Π΅Π»ΡŒ", + "quests.create_logistics.redstone_requester.subtitle": "Доставка Π² Ρ‚ΠΎΡ‚ ΠΆΠ΅ дСнь!", + "quests.create_logistics.redstone_requester.desc": "&3РСдстоуновый Π—Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°Ρ‚Π΅Π»ΡŒ&r ΠΌΠΎΠΆΠ½ΠΎ Ρ€Π°ΡΡΠΌΠ°Ρ‚Ρ€ΠΈΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ Π±ΠΎΠ»Π΅Π΅ спСциализированный &3Бкладской ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€&r. Π‘ Π΅Π³ΠΎ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π²Ρ‹ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΎΡΠΌΠ°Ρ‚Ρ€ΠΈΠ²Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π² &dЛогистичСской Π‘Π΅Ρ‚ΠΈ&r, Π½ΠΎ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ автоматичСский Π·Π°ΠΊΠ°Π·, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π±ΡƒΠ΄Π΅Ρ‚ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒΡΡ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ€Π°Π· ΠΏΡ€ΠΈ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠΈ красного сигнала. Π­Ρ‚ΠΎ ΠΎΡ‡Π΅Π½ΡŒ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ для автоматичСского обСспСчСния ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½Ρ‹ΠΌΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°ΠΌΠΈ β€” Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &3ΠŸΠΎΡ€ΠΎΠ³ΠΎΠ²Ρ‹ΠΉ ΠŸΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡Π°Ρ‚Π΅Π»ΡŒ&r ΠΈΠ»ΠΈ &3Π£ΠΌΠ½Ρ‹ΠΉ ΠΠ°Π±Π»ΡŽΠ΄Π°Ρ‚Π΅Π»ΡŒ&r вмСстС с Π½ΠΈΠΌ.\n\nΠŸΠΎΠΌΠ½ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ, ΠΊΠ°ΠΊ ΠΈ для любой Π΄Ρ€ΡƒΠ³ΠΎΠΉ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΈΠ· &2Π’Ρ‹ΡΡˆΠ΅ΠΉ Логистики&r, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΊΠ»ΠΈΠΊΠ½ΡƒΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ ΠΏΠΎ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰Π΅ΠΌΡƒ ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‚Ρ‡ΠΈΠΊΡƒ ΠΏΠ΅Ρ€Π΅Π΄ установкой Π—Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°Ρ‚Π΅Π»Ρ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Π΅Π³ΠΎ Π½Π° Ρ‚Ρƒ ΠΆΠ΅ ΡΠ΅Ρ‚ΡŒ!", + "quests.create_logistics.tablecloths.title": "Π‘Ρ‚ΠΎΠ»ΠΎΠ²Ρ‹Π΅ Π‘ΠΊΠ°Ρ‚Π΅Ρ€Ρ‚ΠΈ", + "quests.create_logistics.tablecloths.subtitle": "Они Π·Π°Π°ΡΡ„Π°Π»ΡŒΡ‚ΠΈΡ€ΠΎΠ²Π°Π»ΠΈ Ρ€Π°ΠΉ ΠΈ построили Ρ‚ΠΎΡ€Π³ΠΎΠ²Ρ‹ΠΉ Ρ†Π΅Π½Ρ‚Ρ€", + "quests.create_logistics.tablecloths.desc.1": "&3Π‘ΠΊΠ°Ρ‚Π΅Ρ€Ρ‚ΠΈ&r β€” это систСма Create для ΠΌΠ°Π³Π°Π·ΠΈΠ½ΠΎΠ², ΠΏΡ€ΠΈΠ½Π°Π΄Π»Π΅ΠΆΠ°Ρ‰ΠΈΡ… ΠΈΠ³Ρ€ΠΎΠΊΠ°ΠΌ! КаТдая Π‘ΠΊΠ°Ρ‚Π΅Ρ€Ρ‚ΡŒ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€ΠΎΠ΄Π°Π²Π°Ρ‚ΡŒ ΠΎΠ΄ΠΈΠ½ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚. Для Π½Π°Ρ‡Π°Π»Π° потрСбуСтся нСбольшая установка с Бкладским ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€ΠΎΠΌ, Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊΠΎΠΌ ΠΈ Бкладским Π₯Ρ€Π°Π½ΠΈΡ‚Π΅Π»Π΅ΠΌ (Π“ΠΎΡ€Π΅Π»ΠΊΠ° Всполоха ΠΈΠ»ΠΈ ΠΌΠΎΠ± Π² сидСньС).\n\nΠšΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ ΠΏΠΎ Бкладскому Π₯Ρ€Π°Π½ΠΈΡ‚Π΅Π»ΡŽ, Π΄Π΅Ρ€ΠΆΠ° Π‘ΠΊΠ°Ρ‚Π΅Ρ€Ρ‚ΡŒ, Π·Π°Ρ‚Π΅ΠΌ Π²Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ для ΠΏΡ€ΠΎΠ΄Π°ΠΆΠΈ. ПослС этого просто установитС Π‘ΠΊΠ°Ρ‚Π΅Ρ€Ρ‚ΡŒ Π½Π° Π±Π»ΠΎΠΊ ΠΈΠ»ΠΈ лСса. ПослС установки ΠΊΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ ΠΏΠΎ слоту спСрСди Π‘ΠΊΠ°Ρ‚Π΅Ρ€Ρ‚ΠΈ с ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠΌ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π±ΡƒΠ΄Π΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ ΠΊΠ°ΠΊ ΠΏΠ»Π°Ρ‚Π°. Π—Π°Ρ‚Π΅ΠΌ ΠΊΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ΠΈ ΡƒΠ΄Π΅Ρ€ΠΆΠΈΠ²Π°ΠΉΡ‚Π΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ количСство этого ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°.", + "quests.create_logistics.tablecloths.desc.2": "Π§Ρ‚ΠΎΠ±Ρ‹ ΠΊΡƒΠΏΠΈΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈΠ· ΠΌΠ°Π³Π°Π·ΠΈΠ½Π° Π΄Ρ€ΡƒΠ³ΠΎΠ³ΠΎ ΠΈΠ³Ρ€ΠΎΠΊΠ°, ΠΊΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ ΠΏΠΎ Π‘ΠΊΠ°Ρ‚Π΅Ρ€Ρ‚ΠΈ пустой Ρ€ΡƒΠΊΠΎΠΉ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ ΠΈΡ… Π² Бписок ΠŸΠΎΠΊΡƒΠΏΠΎΠΊ. Когда всё Π±ΡƒΠ΄Π΅Ρ‚ Π³ΠΎΡ‚ΠΎΠ²ΠΎ, ΠΊΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΏΠΎ Бкладскому Π₯Ρ€Π°Π½ΠΈΡ‚Π΅Π»ΡŽ с Бписком ΠŸΠΎΠΊΡƒΠΏΠΎΠΊ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ приобрСсти ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹! Бписок ΠŸΠΎΠΊΡƒΠΏΠΎΠΊ ΠΌΠΎΠΆΠ½ΠΎ ΠΎΡ‡ΠΈΡΡ‚ΠΈΡ‚ΡŒ, ΠΊΠ»ΠΈΠΊΠ½ΡƒΠ² ΠΏΠΎ Π½Π΅ΠΌΡƒ с Π·Π°ΠΆΠ°Ρ‚Ρ‹ΠΌ Shift. ΠžΠΏΠ»Π°Ρ‚Π° хранится Π² Бкладском ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Π΅, ΠΈ Π²Π»Π°Π΄Π΅Π»Π΅Ρ† ΠΌΠ°Π³Π°Π·ΠΈΠ½Π° смоТСт Π·Π°Π±Ρ€Π°Ρ‚ΡŒ Π΅Ρ‘ ΠΏΠΎΠ·ΠΆΠ΅ ΠΈΠ»ΠΈ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ Π½Π° свою Π±Π°Π·Ρƒ!", + "quests.create_logistics.factory_gauge.title": "Π€Π°Π±Ρ€ΠΈΡ‡Π½Ρ‹Π΅ ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Ρ‹", + "quests.create_logistics.factory_gauge.subtitle": "ΠŸΠ΅Ρ€Π΅ΠΎΡΠΌΡ‹ΡΠ»Π΅Π½Π½Π°Ρ Автомтизация", + "quests.create_logistics.factory_gauge.desc.1": "&3Π€Π°Π±Ρ€ΠΈΡ‡Π½Ρ‹ΠΉ ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€&r β€” это Π²Π΅Ρ€ΡˆΠΈΠ½Π° Ρ‚Π΅Ρ…Π½ΠΈΠΊΠΈ &2Π’Ρ‹ΡΡˆΠ΅ΠΉ Логистики&r, для Π΅Π³ΠΎ создания трСбуСтся тСхнология производства ΠΊΠ°ΠΊ &dАлюминия&r, Ρ‚Π°ΠΊ ΠΈ &dΠ”ΠΈΠΎΠ΄ΠΎΠ²&r. Но Π΅Π³ΠΎ ΠΌΠΎΡ‰Π½ΠΎΡΡ‚ΡŒ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ ΠΎΠΏΡ€Π°Π²Π΄Ρ‹Π²Π°Π΅Ρ‚ усилия.\n\nΠŸΠ΅Ρ€Π²ΠΎΠ΅, Ρ‡Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ Π΄Π΅Π»Π°Ρ‚ΡŒ Π€Π°Π±Ρ€ΠΈΡ‡Π½Ρ‹ΠΉ ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€ β€” это ΠΌΠΎΠ½ΠΈΡ‚ΠΎΡ€ΠΈΡ‚ΡŒ количСство ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½ΠΎΠ³ΠΎ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π° Π² ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Ρ‘Π½Π½ΠΎΠΉ ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΠΈΠ·Π°Ρ†ΠΈΠΈ, Ссли Π΅Π³ΠΎ Ρ€Π°Π·ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π½Π° &3Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊΠ΅&r. Π’ этом случаС внСшняя Ρ€Π°ΠΌΠΊΠ° ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Π° Π±ΡƒΠ΄Π΅Ρ‚ &9синСй&r, ΠΈ говорят, Ρ‡Ρ‚ΠΎ ΠΎΠ½ находится Π² &9Π Π΅ΠΆΠΈΠΌΠ΅ ПополнСния&r.\n\nΠ”Ρ€ΡƒΠ³ΠΎΠΉ способ использования β€” автоматичСски Π·Π°ΠΊΠ°Π·Ρ‹Π²Π°Ρ‚ΡŒ ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹, ΠΊΠΎΠ³Π΄Π° количСство Ρ†Π΅Π»Π΅Π²Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ² Π² &dЛогистичСской Π‘Π΅Ρ‚ΠΈ&r опускаСтся Π½ΠΈΠΆΠ΅ ΠΏΠΎΡ€ΠΎΠ³Π°. Π­Ρ‚ΠΎ Ρ€Π°Π±ΠΎΡ‡ΠΈΠΉ Ρ€Π΅ΠΆΠΈΠΌ, Ссли ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€ установлСн Π½Π° любом Π±Π»ΠΎΠΊΠ΅, ΠΊΡ€ΠΎΠΌΠ΅ Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊΠ°; внСшняя Ρ€Π°ΠΌΠΊΠ° Π±ΡƒΠ΄Π΅Ρ‚ &eΠΆΡ‘Π»Ρ‚ΠΎΠΉ&r, ΠΈ говорят, Ρ‡Ρ‚ΠΎ ΠΎΠ½ находится Π² &9Π Π΅ΠΆΠΈΠΌΠ΅ Π Π΅Ρ†Π΅ΠΏΡ‚Π°&r.", + "quests.create_logistics.factory_gauge.desc.2": "Π’ любом Ρ€Π΅ΠΆΠΈΠΌΠ΅ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π°Π΄Π°Ρ‚ΡŒ ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½ΠΎΠ΅ Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π€Π°Π±Ρ€ΠΈΡ‡Π½Ρ‹ΠΉ ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€ Π΄ΠΎΠ»ΠΆΠ΅Π½ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ. Π—Π°Ρ‚Π΅ΠΌ Π½ΡƒΠΆΠ½ΠΎ ΡƒΠΊΠ°Π·Π°Ρ‚ΡŒ Ρ†Π΅Π»Π΅Π²ΠΎΠΉ адрСс Π² интСрфСйсС, Π½Π° ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π±ΡƒΠ΄ΡƒΡ‚ Π½Π°ΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒΡΡ автоматичСскиС Π·Π°ΠΊΠ°Π·Ρ‹ ΠΏΠΎ Π²Π°ΡˆΠ΅ΠΌΡƒ Π²Ρ‹Π±ΠΎΡ€Ρƒ.\n\nДля &9Π Π΅ΠΆΠΈΠΌΠ° ПополнСния&r ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹ΠΉ адрСс Π΄ΠΎΠ»ΠΆΠ΅Π½, ΠΏΠΎ возмоТности, ΡƒΠΊΠ°Π·Ρ‹Π²Π°Ρ‚ΡŒ Π½Π° Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊ, Π½Π° ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌ установлСн ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΡΡ‚ΡƒΠΏΠ°ΡŽΡ‰ΠΈΠ΅ ΠΏΠ°ΠΊΠ΅Ρ‚Ρ‹ автоматичСски Ρ€Π°ΡΠΏΠ°ΠΊΠΎΠ²Ρ‹Π²Π°Π»ΠΈΡΡŒ Π² Ρ†Π΅Π»Π΅Π²ΠΎΠΉ ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ.", + "quests.create_logistics.factory_gauge.desc.3": "Для &9Π Π΅ΠΆΠΈΠΌΠ° Π Π΅Ρ†Π΅ΠΏΡ‚Π°&r ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹ΠΉ адрСс Π΄ΠΎΠ»ΠΆΠ΅Π½ вСсти ΠΊ мСсту, Π³Π΄Π΅ производится ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚.\n\nΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΠΏΠΎ ΠΎΠ΄Π½ΠΎΠΌΡƒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΌΡƒ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Ρƒ для ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ Ρ‚ΠΈΠΏΠ° ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΠΎΠ³ΠΎ ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Π° ΠΈ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ ΠΈΡ… ΠΊ ΠΏΠ΅Ρ€Π²ΠΎΠΌΡƒ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Ρƒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &aΒ«Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π½ΠΎΠ²ΠΎΠ΅ соСдинСниС»&r Π² интСрфСйсС.\nЕсли ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π²Ρ‹ ΠΏΡ‹Ρ‚Π°Π΅Ρ‚Π΅ΡΡŒ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Π² &9Π Π΅ΠΆΠΈΠΌΠ΅ Π Π΅Ρ†Π΅ΠΏΡ‚Π°&r, являСтся ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΌ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠΌ ΠΊΡ€Π°Ρ„Ρ‚Π°, потрСбуСтся Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ &aΒ«Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠšΡ€Π°Ρ„Ρ‚Β»&r ΠΈ ΡƒΠ±Π΅Π΄ΠΈΡ‚ΡŒΡΡ, Ρ‡Ρ‚ΠΎ ΠΏΠ°ΠΊΠ΅Ρ‚ распаковываСтся Π² массив 3x3 &3ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΡ… ΠšΡ€Π°Ρ„Ρ‚Π΅Ρ€ΠΎΠ²&r.", + "quests.create_logistics.factory_gauge.desc.4": "&cΠ’Π°ΠΆΠ½ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠ°ΠΊΠ΅Ρ‚ Π½Π΅ распаковывался ΠΏΠΎ ΠΏΡƒΡ‚ΠΈ&r, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ сам ΠΏΠ°ΠΊΠ΅Ρ‚ содСрТит инструкции Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° ΠΊΡ€Π°Ρ„Ρ‚Π° β€” Ссли ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ ΠΏΠΎΡΡ‚ΡƒΠΏΠ°Ρ‚ΡŒ ΠΈΠ· Ρ€Π°Π·Π½Ρ‹Ρ… источников, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &3ΠŸΠ΅Ρ€Π΅ΡƒΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊ&r Π² качСствС Π±ΡƒΡ„Π΅Ρ€Π° для ΠΏΠ°ΠΊΠ΅Ρ‚ΠΎΠ².\n\n&3ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Запросы Π€Π°Π±Ρ€ΠΈΡ‡Π½ΠΎΠ³ΠΎ ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Π° тСхничСски ΡΠ²Π»ΡΡŽΡ‚ΡΡ Β«ΠžΠ±Π΅Ρ‰Π°Π½ΠΈΡΠΌΠΈΒ», Ρ‡Ρ‚ΠΎ ΡΠ΅Ρ‚ΡŒ Π³Π°Ρ€Π°Π½Ρ‚ΠΈΡ€ΡƒΠ΅Ρ‚ доставку ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² &oΠ² ΠΊΠ°ΠΊΠΎΠΉ-Ρ‚ΠΎ ΠΌΠΎΠΌΠ΅Π½Ρ‚ Π² Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ&r. Π­Ρ‚ΠΎ дСлаСтся, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π΅Π΄ΠΎΡ‚Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Ρ‡Ρ€Π΅Π·ΠΌΠ΅Ρ€Π½ΠΎΠ΅ ΠΎΡ„ΠΎΡ€ΠΌΠ»Π΅Π½ΠΈΠ΅ Π·Π°ΠΊΠ°Π·ΠΎΠ² Π½Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹. По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ Ρ‚Π°ΠΊΠΈΠ΅ обСщания Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ ΠΈΡΡ‚Π΅ΠΊΠ°ΡŽΡ‚; это ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚, Ρ‡Ρ‚ΠΎ ΠΎΠ±Π΅Ρ‰Π°Π½ΠΈΠ΅ останСтся Π² силС навсСгда, Ссли доставка ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² маловСроятна. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ это ΠΏΠΎΠ²Π΅Π΄Π΅Π½ΠΈΠ΅, настроив Π½ΠΈΠΆΠ½ΠΈΠΉ Ρ€Π°Π·Π΄Π΅Π» интСрфСйса ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡ΠΈΡ‚ΡŒ срок дСйствия ΠΎΠ±Π΅Ρ‰Π°Π½ΠΈΠΉ.", + "quests.development": "Π’Π°Π±Π»ΠΈΡ†Π° прогрСссии", + "quests.development.subtitle": "ΠŸΡ€ΠΎΡΡ‚ΠΎΠΉ способ ΠΎΡ‚ΡΠ»Π΅ΠΆΠΈΠ²Π°Ρ‚ΡŒ свой прогрСсс Π² GregTech", + "quests.development.explanation.title": "Let's do some explaining", + "quests.development.explanation.subtitle": "It is actually quite easy", + "quests.development.explanation.desc.1": "The &lCircuit Progression&r of GregTech can seem intimidating at first, but it's not that bad.\n\nFirst, you need to understand that circuits of the same tier are interchangeable. For example, to craft an &6HV&r &6Mixer&r, you can use any &6HV-tier&r circuit.", + "quests.development.explanation.desc.2": "Now, let's talk about &lprogression&r. As you may notice, each circuit shares a color code on its icon and a name. For example, all &aQuantum Processors&r are &agreen&r and crafted inside &1IV-tier&r Circuit Assemblers. To craft one, you first need the previous circuit β€” that's why, to craft your first &dLuV&r &dCircuit&r, the Nanoprocessor Mainframe, you must start by crafting a Nanoprocessor and progress through each &7step&r. In this case, it would take three steps.\n\nThis is why the rightmost &6circuits&r in each line are always cheaper to &a craft&r: they require fewer &7steps&r.", + "quests.development.explanation.desc.3": "Additionally, we have added &lUniversal Circuits&r. They can be &a crafted&r from any &6circuit&r β€” whether &1IV&r, &dLuV&r, &3UV&r, or any other tier β€” and are extremely useful for &9automation&r with AE2. Try to encode all your &fpatterns&r with &lUniversal Circuits&r, so whenever you upgrade to a better circuit, you won't have to redo all your &fpatterns&r β€” only the ones used to craft the Universal Circuit.", + "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 &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.", + "quests.development.mv.title": "&bMV&r Circuits", + "quests.development.mv.subtitle": "", + "quests.development.mv.desc": "Circuits along this line are &bMV&r, and are interchangeable in recipes.\n\nThe pattern stays other same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce.", + "quests.development.hv.title": "&6HV&r Circuits", + "quests.development.hv.subtitle": "", + "quests.development.hv.desc": "Circuits along this line are &6HV&r, and are interchangeable in recipes.\n\nThe pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce.", + "quests.development.ev.title": "&5EV&r Circuits", + "quests.development.ev.subtitle": "", + "quests.development.ev.desc": "Circuits along this line are &5EV&r, and are interchangeable in recipes.\n\nThe pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce.", + "quests.development.iv.title": "&1IV&r Circuits", + "quests.development.iv.subtitle": "", + "quests.development.iv.desc": "Circuits along this line are &1IV&r, and are interchangeable in recipes.\n\nThe pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce.", + "quests.development.luv.title": "&dLuV&r Circuits", + "quests.development.luv.subtitle": "", + "quests.development.luv.desc": "Circuits along this line are &dLuV&r, and are interchangeable in recipes.\n\nThe pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce.\n\nMake sure to set up &3wetware board production&r as soon as possible! These take a &6very long time&r to make.\n\nIt's &dLuV&r, not &4LUV&r.", + "quests.development.zpm.title": "&cZPM&r Circuits", + "quests.development.zpm.subtitle": "", + "quests.development.zpm.desc": "Circuits along this line are &cZPM&r, and are interchangeable in recipes.", + "quests.development.uv.title": "&3UV&r Circuits", + "quests.development.uv.subtitle": "", + "quests.development.uv.desc": "Circuits along this line are &3UV&r, and are interchangeable for each other.", + "quests.development.uhv.title": "&4UHV&r Circuits", + "quests.development.uhv.subtitle": "", + "quests.development.uhv.desc": "Congratulations! You've reached the end of the circuit progression.\n\nThe only &4UHV&r circuit is the &6Wetware Mainframe&r, which is used for crafting some endgame stuff.", + "quests.development.hull_lv.title": "Craftable in &6Steam Age&r and &7LV&r", + "quests.development.hull_lv.subtitle": "Hand crafted and artisanal", + "quests.development.hull_lv.desc": "&7Early game&r Circuits are made using hand crafting and Create.\n\nHave a good &3Create&r setup to make them easier to produce then pick up the &3Circuit Assembler&r to make them a lot more efficient.", + "quests.development.hull_mv.title": "Craftable in &bMV&r", + "quests.development.hull_mv.subtitle": "Integrated Dynamics", + "quests.development.hull_mv.desc.1": "The &9Integrated&r Circuit line may not be a strict upgrade in terms of cost, but will tide you over as a stepping stone towards the next tier.\n\nThey will require a MV &3Laser Engraver&r and a MV &3Cutting Machine&r.", + "quests.development.hull_mv.desc.2": "&l&3Lore:&r&o In Omnifactory, and in previous Gregicality, this circuit line was called &9Refined&r and was standardized like further tiers.", + "quests.development.hull_hv.title": "Craftable in &bMV&r and &6HV&r", + "quests.development.hull_hv.subtitle": "They tend to be small", + "quests.development.hull_hv.desc": "&eMicro&r Circuits are where the &3Cleanroom&r becomes a requirement to progress.\n\nDon't get caught out by the &aMainframe&r - it requires a &3HV Circuit Assembler&r.", + "quests.development.hull_ev.title": "Craftable in &5EV&r", + "quests.development.hull_ev.subtitle": "Nano Age", + "quests.development.hull_ev.desc": "This is the &9Nano&r Circuit line.\n\nYou may need to go out in &bspace&r to craft them.\n\nStarting from here, circuit progression will follow a pattern:\n\n&9-&r Processor\n&9-&r Assembly\n&9-&r Supercomputer\n&9-&r Mainframe", + "quests.development.hull_iv.title": "Craftable in &1IV&r", + "quests.development.hull_iv.subtitle": "GregTech gets Quantum", + "quests.development.hull_iv.desc": "Welcome to the &9Quantum&r Circuit line.\n\nYou may want to invest in &aPBI&r at this point, as &dAdvanced SMDs&r will skyrocket your circuit production.", + "quests.development.hull_luv.title": "Craftable in &dLuV&r", + "quests.development.hull_luv.subtitle": "Crystallisation", + "quests.development.hull_luv.desc": "This is the &9Crystal&r Circuit line.\n\nIt's locked behind &3Fusion&r.", + "quests.development.hull_zpm.title": "Craftable in &cZPM&r", + "quests.development.hull_zpm.subtitle": "Soft and Wetware", + "quests.development.hull_zpm.desc": "This is the &9Wetware&r Circuit line.\n\nIt will be the biggest automation challenge to face in this modpack. Best of luck.", + "quests.extreme_voltage": "&5EV&r - Extreme Voltage", + "quests.extreme_voltage.subtitle": "Reach Mars, discover Nuclear Fission, and build new massive multiblocks", + "quests.extreme_voltage.welcome_to_ev.title": "This is Extreme Voltage", + "quests.extreme_voltage.welcome_to_ev.subtitle": "Let's go Nuclear on Mars", + "quests.extreme_voltage.welcome_to_ev.desc.1": "You’ve built new &6chemistry lines&r, manufactured advanced &balloys&r, and even launched a &dRocket&r to reach the Moon. We hope you enjoyed the ride, because now things get even more complex, with powerful new machines and demanding processes ahead.\n\nIn the &5EV Chapter&r, your main objective will be to craft your very first &1IV&r and &dLuV&r Circuits.", + "quests.extreme_voltage.welcome_to_ev.desc.2": "Along the way, several key challenges await you:\n\nβ€’ Build your first &6Alloy Blast Smelter&r, a faster version of the EBF, specialized for alloys. With it, you’ll be able to construct your first Large Machine: the &6Large Centrifuge&r, essential for the Nuclear Fission Line. It also lets you upgrade ore processing with a faster Thermal Centrifuge.\n\nβ€’ Master our original &eTungsten Line&r - looping all the required materials will test both your knowledge and your patience.\n\nβ€’ Prepare to fly to &4Mars&r where you’ll become an &aextraterrestrial farmer&r while also learning to harness the &cpower of the atom&r.\n\nGood luck, this is where GregTech begins to show its true depth!", + "quests.extreme_voltage.distillation_tower.title": "The Distillation Tower", + "quests.extreme_voltage.distillation_tower.subtitle": "Mr. President, another Distillation Tower has hit the factory floor", + "quests.extreme_voltage.distillation_tower.desc.1": "&6The Distillation Tower&r (DT) is a direct multiblock upgrade of the &6Distillery&r. You won't have to choose outputs any more as the DT will handle them all automatically, at an increased power cost.\n\nThis machine will be your future bread and butter for anything involving &ePetrochem&r or &eOrganic distillation.", + "quests.extreme_voltage.distillation_tower.desc.2": "Like the &6Cleanroom&r, the DT can be made taller, though not wider. Starting from the second layer, each added level requires an &9Output Hatch&r and grants one additional fluid output slot; if a level lacks its output hatch, the corresponding fluid will be voided. Count the number of outputs with &dEMI&r so you know how many layers you need. As always, use the Multiblock Preview tab in &dEMI&r and click the multiblock to see where you can place each part.", + "quests.extreme_voltage.distillation_tower.desc.3": "&cNote:&r Be careful not to over-overclock the DT when producing fuels! Excessive overclocking can reduce the overall power yield, especially for Diesel. Do the math and double-check your calculations.", + "quests.extreme_voltage.cracker.subtitle": "You Crack Me Up", + "quests.extreme_voltage.cracker.desc": "The &3Cracker&r is a multiblock built with the sole purpose of cracking fluids. It comes with all the recipes of &3Chemical Reactor&r Cracking, but it is &6lossless&r.\n\nThis is a great way to save a lot of Fuel in the long term!\n\nHigher Coil tiers provide a small energy discount - up to 70%% with the best Coils available.", + "quests.extreme_voltage.ev_components.title": "Extreme Voltage Components", + "quests.extreme_voltage.ev_components.subtitle": "The \"Fun\" will never stop", + "quests.extreme_voltage.ev_components.desc": "&7By now, you should be getting used to the pattern with every new Energy Tier comes a fresh batch of components.&r\n\nThe &5EV&r tier comes with a few twists - first, &eNeodymium&r. You might already have some stored from your earlier mining trips, but you’ll also find it in large quantities when processing &eMonazite Ore&r.\n\nSecondly, Sensors and Emitters require &bCryogenized Fluix Pearls&r. Hopefully your &dMoon&r infrastructure is up and running to supply them efficiently.\n\nLastly, Motors require Kanthal wire. If you've been diligently upgrading your EBF, these should be significantly faster to craft than when you made them in MV (and you can recycle your old coils too!), but the Alloy Blast Smelter will be able to make this even faster.", + "quests.extreme_voltage.t2_rocket.title": "Rocket 2: Titanium Boogaloo", + "quests.extreme_voltage.t2_rocket.subtitle": "This one's purple", + "quests.extreme_voltage.t2_rocket.desc": "This new rocket shouldn’t be too difficult to assemble, but you’ll notice a clear jump in material costs compared to your previous model.\n\nThe upgraded &6Rocket Alloys&r now require both &bDistilled Water&r and &bCryogenized Fluix&r for cooling.\n\nMake sure you've fully set up your &eTitanium&r production line, as you're going to need a lot of it going forward! A continuous production line will save you a lot of frustration down the road.", + "quests.extreme_voltage.mars.title": "I'm on &4Mars&r!", + "quests.extreme_voltage.mars.subtitle": "The Red Planet", + "quests.extreme_voltage.mars.desc.1": "Before landing on &4Mars&r, there are a few important things to keep in mind.\n\nFirst, like the Moon, &4Mars&r will have some hostile surface mobs as well. If you haven't already figured out how to make your Space Suit stay with you after dying or invested in new EV-tier weaponry, you'll have a rough time.\n\nThe planet is mostly a &edesert world&r, dotted with \"&aislands&r\" where you’ll find &bwater&r, lush fauna, and much safer places to build your first base. Meanwhile, the open desert is extremely dangerous if you don't watch your step, but contains some other crucial resources!", + "quests.extreme_voltage.mars.desc.2": "All &bfluid veins&r are spread across Mars, except for &eHeavy Ammoniacial Water&r which can only be found outside of the desert. That’s another good reason to set up your base there.\n\nEnergy-wise, &4Mars&r will not be kind to you at first.\n\nNearly every common &6energy generation method&r is disabled or worthless on the planet, which means you’ll have to rely almost entirely on &cFission&r to power your base.\n\nAt the very beginning, we recommend bringing along some &bfilled batteries&r such as &bLapotron Crystals&r to get started, and then look towards setting up Thorium Fuel Rods.\n\nAchieving energy stability on Mars will take time and effort, but once your systems are running smoothly, you’ll feel like &9unlimited power&r is right in the palm of your hand.", + "quests.extreme_voltage.mars.desc.3": "And one last tip: don’t kill everything you see. Some &aanimals&r can be &franched&r, and you’ll definitely need them later in your progression.\n\nBe sure to check out the &aSpace Survival&r chapter for more Mars-related tips too!\n\nStay alert, plan ahead, and Mars will reward your courage.", + "quests.extreme_voltage.mars.task": "Land on Mars", + "quests.extreme_voltage.nuclear_fuel_factory.title": "Nuclear Fuel Factory", + "quests.extreme_voltage.nuclear_fuel_factory.subtitle": "Hot Rod", + "quests.extreme_voltage.nuclear_fuel_factory.desc": "The &6Nuclear Fuel Factory&r has one purpose: producing fuel rods for your &cFission Reactor&r.\n\nIt supports &9Parallel Hatches&r which you’ll unlock soon but they aren’t mandatory yet. Functionally, it works much like the Pyrolyse Oven: the &ebetter the coils&r you install, the faster the recipes will run.\n\nSince fuel rod production is both &cslow&r and &cexpensive&r, we strongly recommend using the &ahighest tier coils&r available. Don’t waste your time with Cupronickel, you’ll only be nerfing yourself.", + "quests.extreme_voltage.heavy_water.title": "Heavy Water", + "quests.extreme_voltage.heavy_water.subtitle": "Water for the Hardcore", + "quests.extreme_voltage.heavy_water.desc": "To run your Fission Reactor, you’ll need a steady supply of &bHeavy Water&r, and there’s only one place to find it.\n\nIt’s located in &adeep fluid veins&r found exclusively beneath the &alush islands&r of Mars. Grab your &6Ore Prospector&r, switch it to &bFluid Mode&r, and start scanning.\n\nBecause the amount of &bHeavy Water&r required to keep your reactor running is enormous, you should seriously consider investing in a &6Large Centrifuge&r to produce it yourself.\n\nInstall a &516A EV Energy Hatch&r, and you’ll be ready for true mass production ensuring your reactor never runs dry.\n\nReliable cooling means reliable power - build smart!", + "quests.extreme_voltage.nuclear_turbine.title": "Nuclear Steam Turbine", + "quests.extreme_voltage.nuclear_turbine.subtitle": "Steam power's back, baby", + "quests.extreme_voltage.nuclear_turbine.desc": "With Fission, you gain access to a brand new &6Dedicated Turbine&r! (The normal Large Steam Turbine can only handle regular Steam.)\n\nIt works just like the previous turbines, but similar to the Gas Turbine, it requires at least an &5EV Rotor Holder&r to operate.\n\nThe coils inside this turbine must be &7Cupronickel&r, and they don’t affect performance in any way (but we have to admit, they look pretty good).\n\nIn this quest, we suggest two &aRotors&r that fit nicely for the turbine at this stage, but feel free to experiment and use any &brotor&r that suits your setup best.", + "quests.extreme_voltage.reactor_components.title": "Reactor Heat Management", + "quests.extreme_voltage.reactor_components.subtitle": "Active and Passive ways to cool your reactor", + "quests.extreme_voltage.reactor_components.desc.1": "One of the most interesting features of the Fission Reactor is its ability to have blocks added inside to modify its &emaximum heat capacity&r.\n\nYou can place certain &6Component Blocks&r within the corners of the reactor, allowing for up to &e20 blocks&r in total. As an example, you can use &9Material Holders&r and insert cooling items with input buses, which help manage heat buildup.\n\nIt’s also important to note that Material Holders are the &conly way&r to enable the &brecipe processing&r part of the Fission Reactor.\n\nSmart internal configuration will make the difference between a stable reactor and one on cooldown, so plan your layout carefully!", + "quests.extreme_voltage.reactor_components.desc.2": "As discussed earlier, running three &eThorium Rods&r will push your reactor’s heat to around &c420&r, just above the default limit. However, you can safely reach that threshold by improving your &6reactor insulation&r.&r\n\nAdding &e10 Framed Glacial Wool&r or &e20 Framed AES Insulation&r blocks inside the structure will raise your reactor’s Max Heat to &e420&r, allowing you to operate with three Thorium Rods without triggering cooldown mode.&r\n\nKeep in mind, though, that increasing the number of active rods will also accelerate their &adurability loss&r. This means each rod will produce less steam per tick on average, reducing its &aefficiency&r, but on the other hand, it will &bspeed up fission material production&r significantly.\n\nWhether you prefer &aefficiency&r or &bthroughput&r is entirely up to you - that’s the balancing act at the heart of mastering the &6Fission Reactor&r.", + "quests.extreme_voltage.heat_exchanger.title": "Heat Exchanger", + "quests.extreme_voltage.heat_exchanger.subtitle": "All that heat's gotta go somewhere!", + "quests.extreme_voltage.heat_exchanger.desc.1": "The &6Heat Exchanger&r is a critical component for the next step of your Fission Line - not only for cooling, but also for producing more &eHigh Pressure Steam&r, the steam that powers your Nuclear Turbine.\n\nIt features &bPerfect Overclocking&r and &bSubtick Processing&r. If these terms sound unfamiliar, we strongly recommend reviewing the &dGregTech Energy Chapter&r to fully understand how they affect performance.", + "quests.extreme_voltage.heat_exchanger.desc.2": "Don’t hold back! Install a &516A EV Energy Hatch&r right from the start so you’ll never have to worry about speed or throughput limitations.\n\nWe also provide you with a &9Machine Controller&r to attach to your Heat Exchanger’s main controller. We’ve noticed that the machine can sometimes disable itself unexpectedly, so be sure to enable &ePrevent Power Failing&r. This will counter the GregTech mechanic that shuts down machines when they momentarily lose power.", + "quests.extreme_voltage.refrigerant_pellet.title": "Refrigerant Pellets", + "quests.extreme_voltage.refrigerant_pellet.subtitle": "A temporary solution to extreme temperatures", + "quests.extreme_voltage.refrigerant_pellet.desc": "The &dPlutonium Fuel Rod&r runs at extremely high temperatures - so high, in fact, that you’ll need to use &bRefrigerant Pellets&r inside your reactor to prevent it from going into cooldown mode.\n\nThese pellets are quite expensive to produce, but you should still be able to mass-produce them early on, or at least enough to keep your first few plutonium rods operational. You need approximatively &9256&r to run a full Plutonium Rod.\n\nLater on, if you don’t like constantly crafting these consumables, you’ll gain access to &6advanced reactor components&r. With those installed, your reactor will be able to safely reach up to &e600 Max Heat&r, greatly improving efficiency and stability.\n\nInvest in better internal parts early, to spend less time babysitting your power core.", + "quests.extreme_voltage.important_info.title": "Before starting", + "quests.extreme_voltage.important_info.subtitle": "Not an easy place to start", + "quests.extreme_voltage.important_info.desc.1": "Before you start building your base on &cMars&r, here are a few important tips to help you settle in successfully.&r\n\nWhile exploring, you might come across &6Martian Ruins&r containing &eAtomic Casings&r and &eHigh Temperature Smelting Casings&r. These won’t replace the massive number you’ll need later, but they can give you a small head start while scouting for the perfect base location.&r", + "quests.extreme_voltage.important_info.desc.2": "When it comes to your Martian infrastructure, there are two main approaches:&r\n\nβ€’ &aPreparation-focused&r: Build everything required for your full &6Fission Line&r before establishing your base. This means an enormous material investment, but allows you to be self-sufficient once operational.\n\nβ€’ &aProgressive setup&r: Start smaller with your &6Nuclear Fuel Factory&r, your first &6Fission Reactor&r (running on &eThorium&r), and a &6Nuclear Turbine&r. This route is faster to start, but managing energy will be rough until your fission system stabilizes.\n\nEither way, we always recommend having an exploration mission before you start settling down!", + "quests.extreme_voltage.important_info.desc.3": "Because every kind of combustion-based energy won't work on Mars, you’ll want to bring a good stock of &bLapotron Crystals&r to power your first recipes and oxygen systems.\n\nWe also strongly recommend setting up a &6Distillation Tower&r. &eMartian Air&r can be processed into breathable &bAir&r and several other useful gases. Alternatively, everything for Compressed Nitrox can come from the local Semiheavy Ammoniacal Water.\n\nSurvival on Mars isn’t about luck, it’s about preparation!", + "quests.extreme_voltage.important_info.task": "It's Marsing Time", + "quests.extreme_voltage.dense_lead.title": "Faster Dense Lead Plates", + "quests.extreme_voltage.dense_lead.subtitle": "Don't expect it for other dense plates", + "quests.extreme_voltage.dense_lead.desc": "Because of the tremendous amount of Dense Lead Plates you will need for Atomic Casings, we offer a new, albeit less efficient, recipe with the help of the Implosion Compressor. Feel free to use it if you don't want to wait forever for your benders.", + "quests.extreme_voltage.thorium_rod.title": "Fuel Rods", + "quests.extreme_voltage.thorium_rod.subtitle": "Handle with care", + "quests.extreme_voltage.thorium_rod.desc.1": "Each &6Fuel Rod&r comes with its own set of properties including &adurability&r (how long it lasts in the reactor), &cheat generation&r (how much heat it produces), and even different &eproducts&r and &bsteam output levels&r. You can view all of this information directly in the &aEMI&r tabs for each rod.&r\n\nBefore diving into how the Fission Reactor functions, here are some key points to understand:&r", + "quests.extreme_voltage.thorium_rod.desc.2": "β€’ The &eHeat Percentage&r shown on a fuel rod translates to slightly less than double its value inside the reactor. For example, a &eThorium Rod&r with a &cHeat&r of 70%% will generate just under 140 heat when enough &bHeavy Water&r is pumped into your reactor. This heat increase is &aadditive&r, meaning that 2 Thorium Rods will raise your reactor’s total heat to around 280.&r", + "quests.extreme_voltage.thorium_rod.desc.3": "β€’ &aDurability&r decreases at the same base rate for all rods. However, the higher the reactor’s temperature, the faster the rods degrade. Because of this, even if a certain rod type has 4Γ— the durability of another, it doesn’t necessarily mean it will last 4Γ— longer, as &ctemperature directly impacts longevity&r.&r\n\nBalancing the amount of rods within the reactor will be your first challenge with Fission.", + "quests.extreme_voltage.fission_reactor.title": "Fission Reactor", + "quests.extreme_voltage.fission_reactor.subtitle": "Oh no, it's on cooldown again", + "quests.extreme_voltage.fission_reactor.desc.1": "To start off, if you’re looking for a deeper dive into &6Fission Reactor&r mechanics including formulas, detailed calculations, and system behavior, check out the quest in the &aGregTech Energy&r chapter. It covers everything you’ll need if you want to get into the math behind the heat and efficiency systems.&r\n\nFor now, let’s focus on your very first &6Thorium Reactor&r. Its base &cMax Heat&r is &e400&r. As explained in the previous quest, running two Thorium Rods will push your internal heat to around &e280&r, which is perfectly safe. However, adding a third rod raises the total to about &c420 Heat&r, exceeding the limit and triggering &ccooldown mode&r.", + "quests.extreme_voltage.fission_reactor.desc.2": "Don’t worry, there’s no explosion, but your reactor will shut down and won’t restart until it fully cools back to 0 Heat. This will completely halt both your &aenergy production&r and your &afission product&r generation - a major setback.\n\nManaging how many rods are active will therefore be your first &6challenge&r and the main minigame of Fission.\n\nThere are multiple ways to approach this, and experimentation is part of the fun.\n\nOne way is by attaching a &6Redstone Port&r to your reactor, and using a &aWrench&r on it switches its monitoring mode between &erod count&r and &cheat level&r.\n\nFinally, note that all rods are stored inside the &6Fuel Holder&r. That means limiting the number of active rods isn’t as simple as having 2 rods in the input bus, &cyou’ll need to control what enters the Input Bus&r to fine-tune your reactor’s operation.", + "quests.extreme_voltage.high_pressure_steam.title": "High Pressure Steam", + "quests.extreme_voltage.high_pressure_steam.subtitle": "Better steam, bigger turbine", + "quests.extreme_voltage.high_pressure_steam.desc": "&4Important Info&r: If the reactor doesn't have enough space to output High Pressure Steam, it will simply void.\n\nFor balancing (and pipe throughput) reasons, the &6Fission Reactor&r does not produce regular steam. Instead, it generates &bHigh Pressure Steam&r, which can only be used in a &6Nuclear Steam Turbine&r.\n\nAttempting to run it through a standard Steam Turbine will &cnot work&r.", + "quests.extreme_voltage.ev_superconductor.title": "EV Superconductors", + "quests.extreme_voltage.ev_superconductor.subtitle": "Bigger Amp ability", + "quests.extreme_voltage.ev_superconductor.desc": "Now that you've processed some &eUranium&r, you should check out the &5EV Superconductors&r.\n\nThese superconductors have higher amp capacity, helping you move energy efficiently across your base and ensuring your &6Nuclear Steam Turbines&r output reaches all your machines without loss.", + "quests.extreme_voltage.uraninite_dust.subtitle": "That's a lot of rods", + "quests.extreme_voltage.uraninite_dust.desc": "To craft your &eUranium Fuel Rods&r, you’ll need a substantial amount of &eUraninite&r - around &c240 Dust&r per rod. Start mining it early to keep up with demand later.\n\nThe largest veins can be found on Mars, where some deposits reach &aimpressive sizes&r. Later in your progression, you’ll be able to produce Pitchblende and Uraninite Dust &ainfinitely&r using the &6Ostrum Linear Accelerator&r, but we’ll cover that in more detail in a future quest.", + "quests.extreme_voltage.uranium_line.title": "The Uranium Line", + "quests.extreme_voltage.uranium_line.subtitle": "That's one more new processing line", + "quests.extreme_voltage.uranium_line.desc": "To process &eUranium&r and its &eUranium 235&r &eIsotope&r, you’ll need to set up a dedicated small processing line. \n\nRest assured, you can &aloop the Fluorine&r, so the only input you’ll need is &eUraninite Dusts&r.\n\nYou can build this line on Earth, but it may be more convenient to operate it on Mars, where the majority of Uraninite Ore should be harvested.", + "quests.extreme_voltage.radioactive_waste.title": "Radioactive Waste", + "quests.extreme_voltage.radioactive_waste.subtitle": "One man's trash is another man's progression material", + "quests.extreme_voltage.radioactive_waste.desc": "Radioactive Waste is a &ccritical byproduct&r for crafting your next fuel rods, so always ensure there’s enough space to output it. If the Fission Reactor cannot find an available output, it will simply &cvoid the waste&r, losing valuable resources.\n\nWe recommend either:\n- Installing a dedicated Output Hatch in &blocked mode&r\n- Using a Super Tank with an Advanced Fluid Detector Cover\n\nIf you have an &dME Network&r on Mars, another option is the recently unlocked &6ME Output Hatch&r.", + "quests.extreme_voltage.uranium_rod.subtitle": "Finally, some real power!", + "quests.extreme_voltage.uranium_rod.desc.1": "This is the second-generation reactor fuel - it offers &a4Γ— more durability&r and produces &a5Γ— more steam&r compared to a standard &eThorium Rod&r. However, there are important trade-offs you must plan for.\n\n&9Production cost and setup:&r\nβ€’ Producing this fuel consumes &eThorium Rods&r continuously, so it’s recommended to dedicate a separate &6Fission Reactor&r for each of these advanced rods, although if you're up for the challenge of juggling them in one reactor, that's an option too.", + "quests.extreme_voltage.uranium_rod.desc.2": "Heat and mitigation options: A single Uranium Fuel Rod generates about &c435 Heat&r inside a standard reactor, far above the default limit. To handle this you have three main options:\n\n&7β†’&r &eInstall 20 Framed Glacial Wool&r blocks inside the reactor to raise &cMax Heat&r to &e440&r, allowing one rod to run safely.\n\n&7β†’&r &6Use Material Holders&r and pump large quantities of &bDry Ice&r to drop the reactor temperature. This requires a robust infrastructure and access to a &bLiquid CO2 fluid vein&r on Mars.\n\n&7β†’&r &bUse Refrigerant Pellets&r placed in Material Holders. They behave like Dry Ice but are far more potent. Note that Refrigerant Pellets consume a decent amount of &eFluorine&r to craft, and you do not have infinite Fluorine at this point.\n\nObviously, you can also make your own sauce and mix all of these options together.", + "quests.extreme_voltage.uranium_rod.desc.3": "&cImportant note for Uranium Fuel Rods:&r Reactors running &eUranium Rods&r require a drastically larger supply of &bHeavy Water&r for cooling. Ensure you have abundant Heavy Water production or storage before attempting to run these rods, or your reactor will quickly hit critical cooling limits.\n\nPlan your supply lines and cooling strategy carefully - these fuels are powerful, but they demand serious infrastructure.", + "quests.extreme_voltage.uranium_waste.title": "Uranium Waste and Radioactive Steam", + "quests.extreme_voltage.uranium_waste.subtitle": "You guessed it, more processing", + "quests.extreme_voltage.uranium_waste.desc.1": "The products from &eUranium Fuel Rods&r are a bit more involved than thorium.\n\n&6β€’ Uranium Waste&r is the feedstock that starts the &dPlutonium Line&r. It can be processed immediately.\n\n&6β€’ Radioactive Steam&r, unlike normal steam, will need to be handled by a &6Heat Exchanger&r. Send the radioactive steam through a Heat Exchanger to recover High Pressure Steam.", + "quests.extreme_voltage.uranium_waste.desc.2": "Additionally, your Radioactive Steam should heat &eAmmonium Formate&r into &eFormamide&r, a core precursor for producing plutonium fuels. This means that before you can reliably obtain High Pressure Steam from a Uranium Reactor for energy use, you must ensure a continuous supply of &eAmmonium Formate&r for the conversion chain.\n\n&cPractical note:&r Set up a dedicated, continuous line to produce &eAmmonium Formate&r. Without steady Ammonium Formate production, your plutonium workflow and your High Pressure Steam production will stall.", + "quests.extreme_voltage.ammonium_formate.title": "Ammonium Formate", + "quests.extreme_voltage.ammonium_formate.subtitle": "Always keep a backlog!", + "quests.extreme_voltage.ammonium_formate.desc": "Being able to make infinite &eAmmonium Formate&r is mandatory to ensure a constant energy production, as you won’t be able to process &bRadioactive Steam&r into High Pressure Steam without it. It's not very hard, though!\n\nFirst, to make &eFormic Acid&r, simply combine COβ‚‚ that you can get from Mars Air with Water from an Aqueous Accumulator.\n\nThen, for &eAmmonia&r, you can simply electrolyze the &eAmmonium Chloride Dust&r you got from centrifuging (Semi) Heavy Ammoniacal Water.\n\nAs you will get a surplus of &bOxygen&r and &bHydrochloric Acid&r, make sure to void these fluids above a threshold so they don’t clog your &eAmmonium Formate&r production.", + "quests.extreme_voltage.nuclear_residue_dust.title": "Nuclear Residue Dust", + "quests.extreme_voltage.nuclear_residue_dust.subtitle": "Oh, this is where Radon comes from", + "quests.extreme_voltage.nuclear_residue_dust.desc": "Obtaining &eNuclear Residue Dust&r is the first step in the &dPlutonium Line&r.\nIt requires a &5EV Gas Pressurizer&r on Mars to produce.\n\nThe process will also generate &bRadon&r as a byproduct, and even though you will need Radon for later steps, the surplus from this line will be significant. It will be your only reliable source of Radon for now.\n\nLuckily for you, &eNuclear Residue&r requires no complex loop: simply feed in the outputs from your Uranium Reactor and Heat Exchanger, add &eMartian Sludge&r, and the &6Gas Pressurizer&r will produce Nuclear Residue Dust. You’ll be ready to continue the Plutonium chain immediately.", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.subtitle": "What is this weird concoction?", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.desc.1": "This next step is the start of the many loops surrounding the &dPlutonium Line&r.\n\nTo make &bOxidized Nuclear Residue Dust&r you will require &bDioxygen Difluoride&r. Thankfully, we do not ask you to have an infinite amount of Fluorine, so for this recipe to run continuously you will recover Fluorine later as &bHydrofluoric Acid&r that you can electrolyze.", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.desc.2": "Because the recipes take a long time, we still advise adding a good starter stock of Fluorine to kickstart the loop.\n\nAs always, during this loop, be wary of storage: a full tank or a blocked buffer can stop your entire line, and flying to Mars to fix it would be a bother. &aSuper Tanks&r or whitelisted &aAE2 disks&r with void upgrades are helpful solutions.\n\nNote that the recipe also produces &eResidual Radioactive Concoction&r. Try not to void this one, it will be a useful material for future systems such as the &6Ostrum Linear Accelerator&r (infinite ores from Mars), the &6Growth Chamber&r (first steps into Bioengineering) and even &6Fission Reactors&r outside of Mars.", + "quests.extreme_voltage.refined_nuclear_dust.subtitle": "Ah, this where my Fluorine went", + "quests.extreme_voltage.refined_nuclear_dust.desc": "The &eRefined Nuclear Residue Dust&r lets you recover Fluorine as Hydrofluoric Acid so you can loop it back into &bDioxygen Difluoride&r.\n\nYou should already know how to make Distilled Water, and don’t forget to void any surplus Oxygen if you have nowhere to store it.\n\nThis recipe is very slow. If you feel confident energy-wise, consider running it in a &6Large Centrifuge&r to speed things up. Be cautious, though, you don’t want to drain too much power early in your progression.", + "quests.extreme_voltage.plutonium.title": "Plutonium", + "quests.extreme_voltage.plutonium.subtitle": "Look at this massive atomic mass", + "quests.extreme_voltage.plutonium.desc": "You’ve finally reached Plutonium! Its only practical use right now is to craft &dPlutonium Fuel Rods&r, so don’t bother hoarding it.\n\nAny extra steam produced can be voided or used in a regular steam turbine, but the &6Nuclear Steam Turbine&r will not accept this steam&r.\n\nIf you want to recover energy, route the surplus to conventional steam turbines; otherwise safely void the excess to prevent backups.", + "quests.extreme_voltage.plutonium_rod.subtitle": "Once upon a time, I had power issues", + "quests.extreme_voltage.plutonium_rod.desc.1": "Let’s be clear: the &dPlutonium Fuel Rod&r may be a real bother to craft, but it’s an absolute &abeast of energy&r. It outputs nearly &e4Γ— more High Pressure Steam&r than the Uranium Rod, making it perfect for scaling your Martian infrastructure, even if you run it less frequently.", + "quests.extreme_voltage.plutonium_rod.desc.2": "However, its &cmassive heat&r poses a serious challenge. Reaching up to &6595 Heat&r, it’s impossible to run it safely for the time being without &bRefrigerant Pellets&r. Check the quest on the right for more details about this material, which you can insert into a &6Material Holder&r.\n\nThe good news? You can stabilize the reactor with just &61 Material Holder&r, bringing the temperature down to around &e430 Heat&r manageable with some &fFramed Glacial Wool&r. Otherwise, &62 Material Holders&r should keep it perfectly under control.", + "quests.extreme_voltage.tritiated_water.title": "Tritiated Water", + "quests.extreme_voltage.tritiated_water.subtitle": "Radioactive Water? Is everything radioactive?", + "quests.extreme_voltage.tritiated_water.desc": "This &bRadioactive Water&r is a key component for producing &eNano CPU Wafers&r and ultimately, your &6first IV Circuits&r.\n\nIt’s also used in the Ostrum Linear Accelerator and can be electrolyzed into &6Tritium&r, though you won’t need that for quite some time.\n\n&cBe extremely careful&r: &bTritiated Water&r is incredibly precious, so don’t lose a single drop of it!", + "quests.extreme_voltage.nano_cpu_wafer.subtitle": "That sounds like marketing", + "quests.extreme_voltage.nano_cpu_wafer.desc": "The &dNano CPU Wafer&r is your gateway to IV Circuits and also to the &bAE2 64k Storage Cells&r.\n\nYou’ll need a huge amount of these circuits, as they’re used in nearly every advanced circuit tier from now on, whether by &eupgrading the Wafer&r itself or crafting the &ahighest-end circuit versions&r.\n\nThey’re also required for your &6IV Batteries&r, the &dLapotronic Energy Orbs&r.\n\nFor reference, &b1 Plutonium Fuel Rod&r will produce enough Tritiated Water for &eexactly 9 Nano CPU Wafers&r.", + "quests.extreme_voltage.first_iv_circuit.title": "Mainframes - First IV Circuits!", + "quests.extreme_voltage.first_iv_circuit.subtitle": "Are we done with EV yet?", + "quests.extreme_voltage.first_iv_circuit.desc": "Finally, after all this time, you’ve obtained a new circuit and unlocked an entirely new tier. Many possibilities are now open to you, but your main focus should be the &6IV Assembler&r first, as it will allow you to craft the &eFramed Moderate Core&r which greatly increases your reactor’s &cMax Heat&r, eliminating the need for Refrigerant Pellets.\n\nYou can also build the &5EV Circuit Assembler&r to unlock &bNanoprocessor Circuits&r. Keep in mind, though, that these will require Nano CPU Chips, so you’ll need a well-established fission setup to support them.\n\nMore details will be provided in the &6IV Chapter&r, so you can finally feel fully comfortable progressing into this new tier.", + "quests.extreme_voltage.moderate_core.subtitle": "That's a big upgrade", + "quests.extreme_voltage.moderate_core.desc": "It’s time for a major upgrade to your &6Fission Reactor&r. The &eFramed Moderate Cores&r come in two versions, depending on your luck. The better version allows your &dPlutonium Reactor&r to run &aone rod fully passively&r, so you can say goodbye to constantly making &bRefrigerant Pellets&r! You could also experiment by combining them with the new framed components, potentially running &atwo Plutonium Rods&r simultaneously.\n\nAlso known as the &6Graphite Line&r, the processing line to craft these new blocks is somewhat random: you might fail the craft or get a lower-tier version. This can make full automation with &dAE2&r slightly trickier, though it’s still possible with careful setup.\n\nWe’ll leave it to you to experiment and figure out the most efficient way to produce these cores.", + "quests.extreme_voltage.abs.subtitle": "We love this heater", + "quests.extreme_voltage.abs.desc": "The &6Alloy Blast Smelter&r is a very special multiblock. It works similarly to the &6EBF&r, with better coils allowing for Perfect Overclocking (see the Energy Chapter), and it can process most EBF recipes &a25%% faster&r. Note that it outputs molten fluids instead of hot ingots!\n\nOne key feature of the &6ABS&r is its ability to craft the alloys needed for &6Large Multiblock Machines&r. Essentially, every basic machine like the Macerator or the Distillery has its own multiblock, offering extensive customization options such as multiple Input/Output Buses/Hatches or even adding a Parallel Hatch.\n\nFor more details about these multiblocks, refer to the &6Gregtech Energy Chapter&r.", + "quests.extreme_voltage.ev_mixer.title": "&5EV Mixer&r", + "quests.extreme_voltage.ev_mixer.subtitle": "Faster than your local bartender", + "quests.extreme_voltage.ev_mixer.desc": "Some machines are critical for progression, and the &6Mixer&r is one of them.\n\nIt unlocks several essential alloys required to move forward, notably the &6RTM Alloy&r, which you’ll need to upgrade the coils of your &6EBF&r. This alloy is gated behind both the Tungsten Line and part of the Platline, so don’t expect it to be an easy one.\n\nSoon, you’ll also unlock the &5Large Mixer&r, which allows you to install two Energy Hatches. This could be the last time you’ll need to build a single-block Mixer, though as always, the choice is yours.", + "quests.extreme_voltage.rtm.title": "RTM Alloy", + "quests.extreme_voltage.rtm.subtitle": "Ruthenium-Tungsten-Molybdenum Alloy", + "quests.extreme_voltage.rtm.desc": "To craft &6RTM Alloy&r, you’ll need both &dRuthenium&r, a product of the infamous &dPlatline&r and &aTungsten&r, which has been made a bit harder to obtain in TFG.\n\nBefore rushing into RTM production, make sure both of these lines are running smoothly.\n\nIn regular GregTech, RTM Alloy is often just a short stepping stone, but not here. In &bTerraFirmaGreg&r, you’ll require RTM Alloy for several parts of your upcoming Fission multiblocks. Since HSS-G Coils are still far down the line, we strongly recommend using &6RTM Coils&r as a powerful upgrade for many of your existing multiblocks.", + "quests.extreme_voltage.rtm_coil.subtitle": "How hot can it get?", + "quests.extreme_voltage.rtm_coil.desc": "The &6RTM Coils&r can reach an impressive &e4500 K&r, unlocking access to Tantalum Carbide, a key material for your progression. You’ll need it to craft the &5Alloy Blast Smelter&r, and it will also greatly speed up recipes in your EBF or Nuclear Fuel Factory.\n\nThese coils can even help reduce the cost of extracting &aLunar Regolith&r and &dOstrum&r, making them valuable beyond their primary purpose.\n\nNormally, you’d move on to HSS-G rather quickly, but in &bTFG&r you won’t be able to craft your &1IV Assembler&r until you’ve completed the &5Fission Progression&r, making &6RTM Coils&r a far more important and long-lasting upgrade.", + "quests.extreme_voltage.ruthenium.title": "Ruthenium", + "quests.extreme_voltage.ruthenium.subtitle": "A rare material", + "quests.extreme_voltage.ruthenium.desc": "To help you along, here’s an overview of all the steps required to obtain &dRuthenium&r through the Platline. Don’t worry, you don’t need to complete the entire &dPlatline&r yet.\n\n(Note that &7the platline may change with &4Venus&r later.)", + "quests.extreme_voltage.gcym_alloys.title": "Large Multiblock Alloys", + "quests.extreme_voltage.gcym_alloys.subtitle": "More alloys means more fun!", + "quests.extreme_voltage.gcym_alloys.desc": "Welcome to the world of &dLarge Multiblocks&r. All these alloys will be required for a lot of upcoming multiblocks, and they all start with the &eAlloy Blast Smelter&r. Some will also be required for the &eHigh Temperature Smelting Casings&r, which are essential components for the Nuclear Multiblocks.\n\n&o&6&lLore&r:&r &oGregicality Multiblocks originally began as a mod for GTCEu on Minecraft 1.12, adding the large versions of GregTech machines and the &6Parallel Hatch&r. &oWhen GTCEu was ported to 1.20, this mod was fully integrated into &dGTm&r - &osomething no one ever complained about&r. For the 1.12 enjoyers out there, you might remember them as the &dGCYM multis&r.", + "quests.extreme_voltage.tungsten_steel.title": "Tungstensteel", + "quests.extreme_voltage.tungsten_steel.subtitle": "The main material of IV", + "quests.extreme_voltage.tungsten_steel.desc": "You know the drill at this point. &6Tungstensteel&r will be your main material for &1IV&r, and you can expect to need a very large quantity of it. Make sure you have a dedicated &6Tungsten line&r running to sustain your production before moving further.\n\nIf you ever need more &aScheelite&r or &aTungstate&r, remember that Mars has some incredibly large veins you can mine. If you are concerned about the sand worm, investing in a &bLarge Miner&r could be very helpful, as it won’t attract the sandworm.\n\nMaybe it’s because of the drilling fluid?", + "quests.extreme_voltage.tungsten.title": "Tungsten", + "quests.extreme_voltage.tungsten.subtitle": "Fully self-sustaining, just like Titanium", + "quests.extreme_voltage.tungsten.desc": "Congrats on making your first &6Tungsten&r! We hope you enjoy this small increase in complexity. Remember that, at first, the small amount of &6Tungsten&r you require can be achieved by simply inputting the &aSoda Ash&r you mined. This may inspire you to fully loop the process so you can automate it peacefully.\n\nAlso remember that the further you progress, the more important it will be to build dedicated and passive lines for all these complex processes that will be required until the end of the pack. Don’t be afraid of lacking resources, be afraid of lacking time.", + "quests.extreme_voltage.iv_hull.subtitle": "IV Already?", + "quests.extreme_voltage.iv_hull.desc": "Even though you have already unlocked the &1IV&r Machine Hull, it may not be very useful until you complete the Fission line, as &1IV&r Circuits are gated behind the processing of &dPlutonium Rods&r. Still, you may find one or two uses for it, and at least you will be ready to build the &1IV Assembler&r as soon as you unlock your first &1IV&r Circuits.", + "quests.extreme_voltage.large_miner.title": "The Large Miner MK I", + "quests.extreme_voltage.large_miner.subtitle": "Your first actually good miner", + "quests.extreme_voltage.large_miner.desc": "The &bLarge Miner&r is a very impressive multiblock for mining the formidable veins you can encounter. It will output ores in their &acrushed forms&r, and rewarding an average of 50%% more resources! It does have some limitations, as you will need to keep it chunkloaded and provide it with a constant supply of drilling fluid.\n\nWe strongly advise moving it around using the &bCopy Paste Tool&r from Building Gadgets once you unlock it. You can add a battery buffer, a large reserve of drilling fluid, and adequate storage (such as a well-upgraded Backpack or ME Chest) to ensure it runs smoothly for a long time.", + "quests.extreme_voltage.ostrum_harvester.title": "Ostrum Harvester", + "quests.extreme_voltage.ostrum_harvester.subtitle": "Better coils means less energy usage", + "quests.extreme_voltage.ostrum_harvester.desc": "The &bOstrum Harvester&r is a close cousin of the &6Lunar Regolith Harvester&r. It can also be upgraded with better coils to reduce energy costs, but it does not require a specific biome. You will need to build it over an &aOstrum Deposit&r for the multiblock to form.\n\nOne more thing: unlike the moon version, this one requires drilling fluid to operate, so you'll want to set up some two-way automation to keep it running.", + "quests.extreme_voltage.ostrum_dust.title": "Ostrum Iodide", + "quests.extreme_voltage.ostrum_dust.subtitle": "I have to do what again?!", + "quests.extreme_voltage.ostrum_dust.desc": "There are many uses for &aOstrum&r, but right now there is one you should be especially concerned about: making &aOstrum Iodide&r, as it will be required to craft your Heat Exchanger.\n\nThere is nothing too complicated about it, except maybe obtaining the &eIodine&r you need. We will let you refer to the quest on the left to make the &l6&r Iodine required to complete the Fission Line.", + "quests.extreme_voltage.formamide.title": "Formamide", + "quests.extreme_voltage.formamide.subtitle": "Also a solvent with many IRL uses", + "quests.extreme_voltage.formamide.desc": "Get ready to void any surplus you produce if you don’t want your steam production to stop.", + "quests.extreme_voltage.radioactive_concoction.title": "Residual Radioactive Concoction", + "quests.extreme_voltage.radioactive_concoction.subtitle": "Don't void this one!", + "quests.extreme_voltage.radioactive_concoction.desc": "The &dResidual Radioactive Concoction&r is a very important byproduct of the Fission Line. Its main use is to produce infinite ores with the &bOstrum Linear Accelerator&r, but it is also required to unlock the &bGrowth Chamber&r.\n\nIf you want to build Fission Reactors outside of Mars, you will also need a continuous supply of it.", + "quests.extreme_voltage.ostrum_linear.subtitle": "Infinite but next level", + "quests.extreme_voltage.ostrum_linear.desc": "The &bOstrum Linear Accelerator&r allows you to create various materials using different products from the Fission Line. This multiblock supports a large number of &bInput Buses&r and &bInput Hatches&r, and since all of its recipes are quite fast, a single unit should be enough to cover all your needs.\n\nWe strongly recommend crafting some &eSpray Cans&r with different colors to organize your inputs and outputs. For example, if you color an Input Bus and an Input Hatch in &9blue&r, only those two will interact together, preventing recipe conflicts and ensuring smoother automation.", + "quests.extreme_voltage.pss.subtitle": "A glorified battery", + "quests.extreme_voltage.pss.desc": "The &ePower Substation&r was moved from &1IV&r to &5EV&r so you can build it directly on Mars, where energy management can be quite challenging with Fission Power. It’s not mandatory, so feel free to skip it if you prefer.\n\nIf you want to learn more about how this multiblock works, check out its detailed entry in the &aEnergy Chapter&r.", + "quests.extreme_voltage.liquid_air.title": "Earth Air", + "quests.extreme_voltage.liquid_air.subtitle": "So many gases", + "quests.extreme_voltage.liquid_air.desc": "Distilling &bLiquid Air&r is a core mechanic in &6GregTech&r to obtain an &oinfinite supply&r of certain rare gases.\n\nEarth Air Distillation is a good way to get your hands on &bArgon&r, &6Oxygen&r, &eHelium&r, &3Nitrogen&r and &aCarbon Dioxide&r.", + "quests.extreme_voltage.liquid_mars_air.title": "Martian Air", + "quests.extreme_voltage.liquid_mars_air.subtitle": "Even more gases", + "quests.extreme_voltage.liquid_mars_air.desc": "Distilling &bLiquid Air&r is a core mechanic in &6GregTech&r to obtain an &linfinite supply&r of certain rare materials. Since you can’t obtain Nether Air or Ender Air in TFG, we provide an alternative with &cMartian Air&r.\n\nIt’s highly rich in &bArgon&r and &aCarbon Dioxide&r, but it can also yield rare gases such as &eNeon&r, &3Krypton&r, and &9Xenon&r, all unavailable elsewhere.\n\nNote that future updates may move around some of these Noble Gases as we finish more planets. Always remember to check the &6changelogs&r for updates!", + "quests.extreme_voltage.epoxy.title": "Epoxy", + "quests.extreme_voltage.epoxy.subtitle": "Artificial Resin", + "quests.extreme_voltage.epoxy.desc.1": "&aEpoxy&r is the foundation for all future Circuit Boards in the game!\n\n&9&lNote:&r This Quest is quite complicated, so tackle everything else before trying to make Epoxy. You'll need all the help you can get!", + "quests.extreme_voltage.epoxy.desc.2": "There are several ways to obtain the ingredients for &aEpoxy&r.\n\nWe will ignore recipes related to Glycerol, as they're never worth it.\n\nTry and use &3Large Chemical Reactors&r to shortcut recipes.", + "quests.extreme_voltage.epoxy.desc.3": "&dChlorine&r is only partially recycled, so you'll need a constant supply. Feeding it manually will be sufficient at first.\n\nRecipes involving &dSodium Hydroxide&r could be looped by electrolyzing the &9Salt Water&r co-product.\n\nDoing this will probably require you to make some Quadruple Pipes, Pump Covers, Fluid Filters... or route everything using AE2.\n\nIn general, closed loop setups are nice to prevent overproduction or overconsumption, but go for whatever's more fun for you.", + "quests.extreme_voltage.epichlorohydrin.title": "Epichlorohydrin", + "quests.extreme_voltage.epichlorohydrin.desc": "You're going to want to use the &3LCR&r recipe for your first &aEpichlorohydrin&r.\n\nThis recipe requires &aPropene&r, which means that &dOil Processing&r and &dFuel Cracking&r are now necessary ventures. We're truly sorry if you've been dragging your heels!\n\nIt's quite important that you make your first &3Distillation Tower&r before progressing to the right.\n\nLast of all, if you haven't noticed, you can loop the &dSalt Water&r byproduct to bootstrap the &dSodium Hydroxide&r.", + "quests.extreme_voltage.phenol.title": "Phenol", + "quests.extreme_voltage.phenol.desc.1": "Obtain &aPhenol&r from:\n\n&91 -&r &aWood Tar&r distillation.\n\n&92 -&r Reacting &aBenzene&r with &dChlorine&r and &dSodium Hydroxide&r This should be performed in an &3LCR&r, and the Chlorine is perfectly looped.\n\n&93 -&r Shortcutting the above recipe by ignoring the &dSodium Hydroxide&r. This is net negative on &dChlorine&r.\n\n&94 -&r Reacting &aBenzene&r, &dPropene&r and &dOxygen&r using a small amount of &4Phosphoric Acid&r - normally a catalyst, but consumed here in small quantities. This is called the Cumene process.", + "quests.extreme_voltage.phenol.desc.2": "If you're having trouble deciding between the options presented, here's the appeal of each route:\n\n&91 -&r Great if you're willing to set up a &3Pyrolyse Oven&r + &3Distillation Tower&r combo.\n\n&92 -&r This one's our preference! You can use the &dSalt&r to make more &dSalt Water&r, then electrolyze to create a loop.\n\n&93 -&r Very appealing if you have an infinite supply of &dChlorine&r. You could achieve this by setting up a &3Fluid Drilling Rig&r on a Salt Water vein.\n\n&94 -&r ...&4Phosphoric Acid&r is a pain to produce. You'd be mad to consider this.", + "quests.extreme_voltage.phenol.desc.3": "&l&3Lore:&r&o The Benzene + Oxygen recipe was added in GTCE with the intent of fixing missing chemical recipes, as the Large Chemical Reactor didn't exist. Now that CEu provides more realistic options, we may remove the recipe in future.", + "quests.extreme_voltage.acetone.title": "Acetone", + "quests.extreme_voltage.acetone.desc.1": "While distilling &aWood Vinegar&r gives &aAcetone&r, the yield is low and might not meet your needs.\n\nYou might want to use the direct &3LCR&r recipe from &aAcetic Acid&r to obtain &aAcetone&r.\n\nIf you want to be fancy, you can also the good old &aAcetic Acid&r -> &dDissolved Calcium Acetate&r -> &aAcetone&r loop, which does not require a &3LCR&r, but still recycles the Calcium compound perfectly.", + "quests.extreme_voltage.acetone.desc.2": "We've been talking about Acetic Acid, but we're yet to tell you how to obtain it. Wouldn't that be great?\n\n&aAcetic Acid&r can be synthesized in the &3Chemical Reactor&r. Our favorite recipe is from &dEthylene&r.", + "quests.extreme_voltage.aes_insulation.title": "Alkaline Earth Silicate Insulation", + "quests.extreme_voltage.aes_insulation.subtitle": "Also known as Rockwool", + "quests.extreme_voltage.aes_insulation.desc": "A new tier means a new kind of insulation!\n\nTo get started with this one, you'll want to look at the mixer recipe for &dAlkaline Earth Silicate Mixture Dust&r. Eventually, you'll be able to make an infinite supply of this on Mars through Sniffer and Wraptor shearing, as it's used for more than just your next Rocket.", + "quests.extreme_voltage.epoxy_board.subtitle": "A new board, there is more to come", + "quests.extreme_voltage.epoxy_board.desc": "Epoxy Circuit Boards are a key component required to craft your &bNano Circuits&r, but they won’t have much use outside of that purpose.", + "quests.extreme_voltage.ev_circuit_assembler.title": "The &5EV&r Circuit Assembler", + "quests.extreme_voltage.ev_circuit_assembler.subtitle": "Less useful than the Assembler for now", + "quests.extreme_voltage.ev_circuit_assembler.desc": "The &5EV Circuit Assembler&r won’t be of much use until you have a steady supply of &bNano CPU Wafers&r. Still, it will allow you to craft microprocessor circuits much faster and eventually give you access to your first &dLuV Circuits&r, which will be useful once you have an &1IV Assembler&r.", + "quests.extreme_voltage.nano_hv_circuit.subtitle": "It doesn't &olook&r that much smaller...", + "quests.extreme_voltage.nano_hv_circuit.desc": "Your first &eNano Circuits&r! They will require &bNano CPUs&r and therefore a continuous line of &cFission Reactors&r burning Plutonium Rods to produce the necessary &dTritiated Water&r.\n\nAt first, &eNano Circuits&r will feel quite expensive, but once your &dFission Line&r becomes fully passive, they will turn into one of your cheapest ones!", + "quests.extreme_voltage.nano_ev.subtitle": "Back to the usual circuit progression", + "quests.extreme_voltage.nano_ev.desc": "These could actually be cheaper to make than the &bMicroprocessor&r equivalent if you manage to mass-produce &bNano CPU&r efficiently. Once your &cFission Line&r is fully automated, these circuits will become an extremely cost-effective option for your high-end builds.\n\nAlso, note that you can use advanced SMD components from now on!", + "quests.extreme_voltage.nano_iv.subtitle": "Getting closer to LuV technology", + "quests.extreme_voltage.nano_iv.desc": "These &1IV&r Circuits still require one &bNano CPU Chip&r, so in that regard they aren’t actually cheaper than the &bMicroprocessors&r.\n\nHowever, they will be essential for progressing toward the next tier of technology.", + "quests.extreme_voltage.nano_luv.subtitle": "Your first IV circuits", + "quests.extreme_voltage.nano_luv.desc": "Congrats on successfully reaching a new tier of circuits! These &dLuV&r Circuits won’t have much use just yet, as you can’t craft any &dLuV&r machines before completing the &bPlatline&r, but they’ll still be valuable for crafting new &dAE2&r tools and components.\n\nMost of these recipes will require an &1IV&r Assembler, so be sure you have one ready.", + "quests.extreme_voltage.me_part.title": "ME Multiblock Parts", + "quests.extreme_voltage.me_part.subtitle": "Connect GregTech directly to your AE2 network", + "quests.extreme_voltage.me_part.task": "Any ME Bus or Hatch", + "quests.extreme_voltage.me_part.desc": "These blocks can replace your usual Input and Output Buses/Hatches in multiblocks. The &bOutput&r versions are particularly useful as they can store a massive amount of items or fluids, more than enough to handle most setups. This makes them perfect for sharing resources between multiblocks, or avoiding output clogging.\n\nThey connect directly to &dAE2&r cables, letting you skip the use of Storage Buses or Interfaces. However, be careful because they behave like Interfaces, not as actual storage. This means you can’t access their contents through another Interface.", + "quests.extreme_voltage.tunsgten_line_step.title": "Looping Soda Ash", + "quests.extreme_voltage.tunsgten_line_step.subtitle": "You may not want to mine it forever", + "quests.extreme_voltage.tunsgten_line_step.desc.1": "Looping the &5Tungsten Line&r perfectly isn’t the easiest task, so we’ll use this quest to guide you in the right direction.\n\nThe &bSalt&r you obtain should be combined with &aCarbon Dioxide&r and &6Ammonia&r to produce &3Ammonium Chloride&r, which you can then electrolyze to recycle your &6Ammonia&r and obtain the &9Hydrochloric Acid&r needed for &eSodium Tungstate&r.\n\nThis process also produces &bSodium Bicarbonate&r, which you should electrolyze to recover your &dSoda Ash&r.", + "quests.extreme_voltage.tunsgten_line_step.desc.2": "Finally, to close the loop, you need to manage your &aCarbon Dioxide&r. You can either split a portion of your &dSoda Ash&r and electrolyze it to recover &aCarbon&r and &9Oxygen&r, allowing you to get back some &aCarbon Dioxide&r, or brute force it by using &bLiquid Air&r distillation to produce an infinite supply of &aCarbon Dioxide&r.", + "quests.extreme_voltage.tunsgten_line_step_1.title": "The new Tungsten Line", + "quests.extreme_voltage.tunsgten_line_step_1.subtitle": "Why? Just why?", + "quests.extreme_voltage.tunsgten_line_step_1.desc": "The &eTungsten Line&r in TerraFirmaGreg has been completely reworked and you’ll be happy (or not) to know that it’s now &cmuch harder&r.\n\nIt’s possible to &afully loop&r every material in the Tungsten Line, but doing so requires a lot of engineering. Alternatively, you can brute-force your way through by &cmass-producing&r the resources you need.\n\nA little tip: &4Mars&r has several &agood ore veins&r for &eSoda Ash&r and &eTungsten&r.\n\nTake your time, optimize, and the Tungsten Line will become the foundation of your mid-to-late game progress.", + "quests.extreme_voltage.tunsgten_line_step_2.title": "Last part of the Tungsten Line", + "quests.extreme_voltage.tunsgten_line_step_2.subtitle": "This part loops itself", + "quests.extreme_voltage.tunsgten_line_step_2.desc": "Once you’ve obtained the &bTungstic Acid&r and looped the &cSoda Ash&r, you’ve completed the hardest part. From here, you’ll only need an &6Evaporation Tower&r to fully loop the &aHydrogen&r required for the &6Arc Furnace&r, and a &6Pyrolyse Oven&r to recover the &3Ammonia&r you used at the start.\n\nNothing too difficult, so enjoy your &5Tungsten&r!", + "quests.extreme_voltage.advanced_fluid_rig.title": "Extreme Fluid Drilling", + "quests.extreme_voltage.advanced_fluid_rig.subtitle": "Extreme is an apt descriptor", + "quests.extreme_voltage.advanced_fluid_rig.desc.1": "At the cost of 4x the drilling Power, the &3Advanced Fluid Drilling Rig&r gains &616x the output&r in Fluid.\n\nThe depletion of veins is also halved. This means you will get a total of &632x&r as much Oil (or whatever fluid) from a bedrock fluid vein until depletion!\n\nEven when depleted, you can still use this and be firmly power positive.\n\nOne single &3Advanced Fluid Drilling Rig&r should be enough to supply Power for a base up to &dLuV&r... and possibly beyond!", + "quests.extreme_voltage.advanced_fluid_rig.desc.2": "As a &9reminder&r, since this last appeared in &bMV&r:\n\n&9-&r &aLight Oil&r can be used for &dLPG&r and &dMethane&r to run in &3Large Gas Turbines&r.\n\n&9-&r &aOil&r can be used for &dDiesel&r and &dCetane-Boosted Diesel&r to run in &3Large Combustion Engines&r.\n\n&9-&r &aHeavy Oil&r can be used for &dNitrobenzene&r to run in &3Large Gas Turbines&r.", + "quests.extreme_voltage.mpic_chip.title": "Power Integrated Circuit", + "quests.extreme_voltage.mpic_chip.desc": "New Cutting Machine? &aβœ“&r\n\nNew Lens? &aβœ“&r\n\nNew Power Circuit? &aβœ“&r\n\nNew EBF Metal required? &aβœ“&r\n\nNew Coil for Energy Hatch? &aβœ“&r", + "quests.extreme_voltage.ev_energy_hatch.desc": "Another tier, another energy hatch. You know what to do with this!", + "quests.extreme_voltage.ev_dynamo_hatch.title": "EV Dynamo Hatch", + "quests.extreme_voltage.ev_dynamo_hatch.desc": "If you haven't encountered them yet, Dynamo Hatches are essentially the Output equivalent of Energy Hatches. You'll want to use these on your new Large Generators for some proper EV power, covered in the next quests.", + "quests.extreme_voltage.ev_dynamo_hatch.task": "Any EV Dynamo Hatch", + "quests.extreme_voltage.oil_distillation.title": "True Oil Distillation", + "quests.extreme_voltage.oil_distillation.desc": "Here are the four most relevant &dHydrocarbons&r you will be obtaining from distilling Steam-Cracked Fuels.\n\nYou will want to set this up &lbefore&r moving to &1IV&r.\n\n&aSteam-Cracked Light Fuel&r as input is probably the most favorable, but you are free to experiment.\n\nIf you don't want the Carbon output, feel free to slap a Voiding Cover on it.", + "quests.extreme_voltage.oil_distillation.task": "Any oil", + "quests.extreme_voltage.wood_distillation.title": "True Organic Distillation", + "quests.extreme_voltage.wood_distillation.desc.1": "This Quest requires the &3Pyrolyse Oven&r and is &doptional&r, yet convenient.\n\nThese four fluids are the important products of &aWood Tar&r Distillation:\n\n&9-&r Phenol: useful for Epoxy and PBI\n&9-&r Benzene: an important hydrocarbon\n&9-&r Toluene: useful for TNT\n&9-&r Dimethylbenzene: useful for PBI\n\nUnlike Oil, putting &aWood Tar&r in the &3Distillation Tower&r for the byproducts, and using &dNitrobenzene&r for power is arguably worth it.", + "quests.extreme_voltage.wood_distillation.desc.2": "These three are the important products from &aWood Vinegar&r Distillation:\n\n&9-&r Acetic Acid: useful to make more Acetone\n\n&9-&r Methanol: a moderately important hydrocarbon\n\n&9-&r Acetone: useful for Epoxy and Gasoline", + "quests.extreme_voltage.wood_distillation.desc.3": "It's also possible to use a \"full combo\" of 4 &3DTs&r - input &aCharcoal Byproducts&r into a first tower, splitting into &aWood Tar&r, &aWood Gas&r and &aWood Vinegar&r.\n\nThis isn't the most efficient cost-to-production ratio, but the option is there if you get bored.", + "quests.extreme_voltage.wood_distillation.task": "Any of these", + "quests.extreme_voltage.new_qol.title": "New QoL?", + "quests.extreme_voltage.new_qol.desc": "Here's some useful tools that you've unlocked with the EV Assembler.", + "quests.extreme_voltage.building_gadgets.title": "Building Gadgets", + "quests.extreme_voltage.building_gadgets.subtitle": "Paving over beautiful landscapes with just one press of a button!", + "quests.extreme_voltage.building_gadgets.desc": "Looking to expand your factory building even further? Want to just paste down another multiblock? Or is that mountain blocking your view?\n\nLook no further than Building Gadgets, a collection of tools that can do all that and more. These are your perfect building tools going forward, and they come with a manual too!", + "quests.extreme_voltage.gasoline.title": "Gasoline", + "quests.extreme_voltage.gasoline.desc": "&aGasoline&r is an extremely powerful Combustion Fuel. It's over &63 times&r as energy dense as &dDiesel&r!\n\n&9Note:&r This Combustion Fuel exists solely as a &echallenge&r for you to overcome if you desire to take on it.\n\nIt's completely &doptional&r, so we'll let you figure out how to obtain it, without any further tips.", + "quests.extreme_voltage.radiation.title": "Dealing with Radiation", + "quests.extreme_voltage.radiation.subtitle": "Extra Spicy Materials", + "quests.extreme_voltage.radiation.desc.1": "While GregTech doesn't have any sort of \"ambient radiation\" like some other mods do, &aradioactive materials&r are still dangerous to the player when held! This applies to any item that says it's &4Radioactive&r and is caused by &eAny Contact&r.\n\nThere's a few ways to mitigate this, and the easiest is to just avoid contact with the items in the first place - move them around with pipes, backpacks, or even Small Vessels. The less time you have them in your inventory, the better!", + "quests.extreme_voltage.radiation.desc.2": "Besides this, you'll want some other ways to protect yourself. Wearing equipment tagged as &e#ppe_armor&r in all four slots will protect you from radiation. However, this will still damage the equipment over time (at a rate equivalent to how much the radiation would affect you), &oexcept&r for the &6Hazardous Material Suit&r, which will never take damage from it.\n\nThe downside is that the hazmat suit isn't a space suit, so on Mars it's up to you whether you want to set up an enclosed Oxygenated base for the hazmat suit, or just take the durability damage on your space suit.", + "quests.extreme_voltage.radiation.desc.3": "Lastly, you can check your radiation poisoning at any time with the &a/medical_condition query&r command. If it gets too high, you will start taking occasional damage or just suddenly die, so you want to prevent it.\n\nThe only other way to treat it is to craft and eat &bRad Away&r pills, which will each remove 50%% of the build-up.", + "quests.extreme_voltage.radiation.task": "Safety First!", + "quests.extreme_voltage.hexafluorosilic_acid.title": "Hexafluorosilic Acid", + "quests.extreme_voltage.hexafluorosilic_acid.subtitle": "There's something in the water...", + "quests.extreme_voltage.hexafluorosilic_acid.desc": "Hexafluorosilic Acid is obtained by bathing Red Granite, Trachyte, or Argillite Dust in Hydrofluoric acid. You can get an infinite amount of this dust from a Rock Crusher.", + "quests.extreme_voltage.martian_sludge.title": "Martian Sludge", + "quests.extreme_voltage.martian_sludge.subtitle": "The Slop Line", + "quests.extreme_voltage.martian_sludge.desc": "Centrifuge the Hexafluorosilic Acid to get your Fluorine back, along with some &6Martian Sludge&r - required for Radon and Nuclear Residue.", + "quests.extreme_voltage.large_generators.title": "Extreme Power Generation", + "quests.extreme_voltage.large_generators.desc": "The various single-block generators only go up to HV, so from here on, you'll have to use multiblocks to generate more power. Two of the best options at EV are the &dLarge Gas Turbine&r and &dLarge Combustion Engine&r, so head over to the GregTech Energy chapter to learn more about them.", + "quests.gregtech_energy": "ЭнСргия Π² GregTech", + "quests.gregtech_energy.subtitle": "Π’Π°ΠΊ ΠΊΠ°ΠΊ Ρ‚Π°ΠΌ всС это Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚?", + "quests.gregtech_energy.start.title": "Π”Π°Π²Π°ΠΉ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ объясним", + "quests.gregtech_energy.start.desc": "ВсС ΠΌΡ‹ Π·Π½Π°Π΅ΠΌ, Ρ‡Ρ‚ΠΎ GregTech простой ΠΌΠΎΠ΄ для ΠΈΠ·ΡƒΡ‡Π΅Π½ΠΈΠΉ, Π² особСнности Π΅Π³ΠΎ &cсистСма энСргии&r. ИмСнно поэтому для этой систСмы Π²Ρ‹Π΄Π΅Π»Π΅Π½Π° ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Π°Ρ Π³Π»Π°Π²Π°.\n\nНСкоторыС Π²Π΅Ρ‰ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π½Π΅ ΠΈΠΌΠ΅Ρ‚ΡŒ смысла, ΠΏΠΎΠΊΠ° Π²Ρ‹ Π½Π΅ ΠΏΡ€ΠΎΠΉΠ΄Ρ‘Ρ‚Π΅ дальшС ΠΏΠΎ прогрСссии, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π½Π΅ пСрСусСрдствуСтС. ΠŸΠΎΠΏΡ‹Ρ‚Π°ΠΉΡΡ, Ρ‡Ρ‚ΠΎ моТСшь сСйчас, ΠΈ Π½Π΅ стСсняйся &dΠ²ΠΎΠ·Ρ€Π°Ρ‰Π°Ρ‚ΡŒΡΡ ΠΊ этой Π³Π»Π°Π²Π΅&r, ΠΊΠΎΠ³Π΄Π° Ρƒ тСбя появятся вопросы.\n\nΠœΡ‹ Ρ€Π°Π·Π΄Π΅Π»ΠΈΠ»ΠΈ Π³Π»Π°Π²Ρƒ Π½Π° &e4 ΠΊΠ°Ρ‚Π΅Π³ΠΎΡ€ΠΈΠΈ&r, каТдая ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… относится ΠΊ ΠΎΠ΄Π½ΠΎΠΌΡƒ ΠΈΠ· элСмСнтов систСмы энСргии GregTech. ΠœΡ‹ постараСмся привСсти ΠΊΠ°ΠΊ ΠΌΠΎΠΆΠ½ΠΎ большС ΠΏΡ€ΠΈΠΌΠ΅Ρ€ΠΎΠ², Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠΌΠΎΡ‡ΡŒ Ρ‚Π΅Π±Π΅ ΠΏΠΎΠ½ΡΡ‚ΡŒ, ΠΊΠ°ΠΊ это всС Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚.", + "quests.gregtech_energy.start.task": "Π”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π½Π° Π±ΠΎΡ€Ρ‚", + "quests.gregtech_energy.start.subtitle": "ВсС Π½Π΅ Π½Π° ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠ»ΠΎΡ…ΠΎ, ΠΊΠ°ΠΊ Ρ‚Ρ‹ Π΄ΡƒΠΌΠ°Π΅ΡˆΡŒ", + "quests.gregtech_energy.moving.title": "ΠŸΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π΅Π½ΠΈΠ΅ энСргии", + "quests.gregtech_energy.moving.subtitle": "ΠŸΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π΅Π½ΠΈΠ΅ энСргии... Каво?", + "quests.gregtech_energy.moving.desc": "Для Ρ‚ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ½ΡΡ‚ΡŒ, ΠΊΠ°ΠΊ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ Π² GregTech спСрва Π½ΡƒΠΆΠ½ΠΎ ΠΏΠΎΠ½ΡΡ‚ΡŒ нСсколько ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹Ρ… ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊ.\n\nΠ’ΠΎ-ΠΏΠ΅Ρ€Π²Ρ‹Ρ…, &bΡƒΡ€ΠΎΠ²Π½ΠΈ напряТСния&r. ΠžΡ‚ &aLV&r Π΄ΠΎ &cUHV&r, всС Π² GregTech β€” ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π°, ΠΌΠ°ΡˆΠΈΠ½Ρ‹, Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ β€” привязано ΠΊ ΡƒΡ€ΠΎΠ²Π½ΡŽ напряТСния. Π’Π΅Π±Π΅ Π½ΡƒΠΆΠ΅Π½ Π±ΡƒΠ΄Π΅Ρ‚ &eΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π» ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π°&r для пСрСмСщСния энСргии. НапримСр:\n&7β€’&r ΠžΠ»ΠΎΠ²ΡΠ½Π½Ρ‹ΠΉ ΠΏΡ€ΠΎΠ²ΠΎΠ΄ = &aLV&r\n&7β€’&r ΠœΠ΅Π΄Π½Ρ‹ΠΉ ΠΏΡ€ΠΎΠ²ΠΎΠ΄ = &bMV&r\n\nΠ’ΠΎ-Π²Ρ‚ΠΎΡ€Ρ‹Ρ…, Π΅ΡΡ‚ΡŒ ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠ° &bАмпСраТа&r. 1 Π°ΠΌΠΏΠ΅Ρ€ (ΠΈΠ»ΠΈ 1А) ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€Π΅Π΄ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ Π² Π²ΠΈΠ΄Π΅ &eΠΏΠ°ΠΊΠ΅Ρ‚Π° энСргии&r. ΠœΠ°ΡˆΠΈΠ½Ρ‹ Π·Π°ΠΏΡ€Π°Ρ‰ΠΈΠ²Π°ΡŽΡ‚ эти \"ΠΏΠ°ΠΊΠ΅Ρ‚Ρ‹\" энСргии, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°ΡŽΡ‚ΡΡ ΠΏΠΎ ΠΏΡ€ΠΎΠ²ΠΎΠ΄Ρƒ.\n&7β€’&r 1A LV = &a32 EU&r\n&7β€’&r 1A HV = &e512 EU&r\n\nΠ‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ машин Π·Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°ΡŽΡ‚ Π΄ΠΎ &62A максимум&r.\n\nПониманиС этих Π΄Π²ΡƒΡ… ΠΈΠ΄Π΅ΠΉ - ΠΊΠ»ΡŽΡ‡ ΠΊ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠΌΡƒ Ρ€Π°ΡΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½ΠΈΡŽ энСргии.", + "quests.gregtech_energy.moving.task": "Π― понял", + "quests.gregtech_energy.transformer.title": "Π‘ΡƒΠΏΠ΅Ρ€ трансформСр", + "quests.gregtech_energy.transformer.subtitle": "Π›ΡƒΡ‡ΡˆΠ΅ ΠžΠΏΡ‚ΠΈΠΌΡƒΡΠ° ΠŸΡ€Π°ΠΉΠΌΠ°", + "quests.gregtech_energy.transformer.desc": "Для ΠΊΠ°ΠΆΠ΄ΠΎΠΉ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΡ‹ Ρƒ GregTech Π΅ΡΡ‚ΡŒ своС ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½ΠΎΠ΅ Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅. ΠŸΡ€Π΅Π΄ΡΡ‚Π°Π²Π»ΡΠ΅ΠΌ Π²Π°ΠΌ &dАктивный трансформатор&r.\n\nΠ­Ρ‚ΠΎΡ‚ Π·Π²Π΅Ρ€ΡŒ - ваш ΡƒΠ»ΡŒΡ‚ΠΈΠΌΠ°Ρ‚ΠΈΠ²Π½Ρ‹ΠΉ трансформатор. Он ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ любого уровня β€” ΠΎΡ‚ &aLV&r Π΄ΠΎ &cUHV&r, ΠΈ Π±Π΅Π· Π²Π·Ρ€Ρ‹Π²ΠΎΠ². И это Π΄Π°ΠΆΠ΅ Π½Π΅ Π»ΡƒΡ‡ΡˆΠ΅Π΅.\n\nОн ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠŸΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‰ΠΈΡ… Π»Π°Π·Π΅Ρ€Π½Ρ‹Ρ… ΠΊΠ°Π±Π΅Π»Π΅ΠΉ.\n&7β€’&r Π›Π°Π·Π΅Ρ€Ρ‹ ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ΅ колличСство Π°ΠΌΠΏΠ΅Ρ€.\n&7β€’&r Π‘Π΅Π· ΠΏΠΎΡ‚Π΅Ρ€ΡŒ. Π‘Π΅Π· ΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΎΠ². ΠŸΡ€ΠΎΡΡ‚ΠΎ чистая энСргия.\n&7β€’&r Но Π΅ΡΡ‚ΡŒ нюанс: ΠΎΠ½ &c ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠΎ прямой&r.\n\nКогда ΠΊΠ°Π±Π΅Π»Π΅ΠΉ Π½Π΅ достаточно, &lΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ Π»Π°Π·Π΅Ρ€Ρ‹.", + "quests.gregtech_energy.moving_wire.title": "ΠŸΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π΅Π½ΠΈΠ΅ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΎΠ²", + "quests.gregtech_energy.moving_wire.subtitle": "Π—Π°Ρ‚Π΅ΠΉΠ»ΠΈΠ²Ρ‹ ΠΏΡ€ΠΈ Ρ€Π°Π·ΠΌΠ΅Ρ‰Π΅Π½ΠΈΠΈ", + "quests.gregtech_energy.moving_wire.desc": "ΠŸΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ Π² GregTech ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΊΠ°Π²Π΅Ρ€Π·Π½ΠΎ β€” &bΠ±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ ΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΎΠ² ΠΈΠΌΠ΅ΡŽΡ‚ ΠΏΠΎΡ‚Π΅Ρ€ΠΈ&r. Π—Π° ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Π±Π»ΠΎΠΊ, Π·Π° ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Π°ΠΌΠΏΠ΅Ρ€, Ρ‚Ρ‹ моТСшь Ρ‚Π΅Ρ€ΡΡ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ ΠΏΠΎ ΠΌΠ΅Ρ€Π΅ ΠΏΡ€ΠΎΡ…ΠΎΠΆΠ΄Π΅Π½ΠΈΠΈ энСргии Ρ‡Π΅Ρ€Π΅Π· ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π°. НС бойся, этому Π΅ΡΡ‚ΡŒ Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅:\n\n&7β€’&r ΠŸΠΎΠΊΡ€ΠΎΠΉ свои ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π° Ρ€Π΅Π·ΠΈΠ½ΠΎΠΉ. Π’Π°ΠΊΠΈΠΌ ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ Ρ‚Ρ‹ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ снизишь ΠΏΠΎΡ‚Π΅Ρ€ΠΈ с расстояниСм. ΠŸΠΎΡΠΌΠΎΡ‚Ρ€ΠΈ квСстовыС ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ для ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π°.\n\n&7β€’&r Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ ΠΊΠ°Π±Π΅Π»ΠΈ Π±ΠΎΠ»Π΅Π΅ высокого напряТСния. ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²Ρ‹ΠΉ кабСль, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, тСряСт лишь 1 EU Π·Π° Π±Π»ΠΎΠΊ β€” практичСски Π½ΠΈΡ‡Π΅Π³ΠΎ ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с 8192 EU, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΎΠ½ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ.\n\n&7β€’&r &bΠ‘Π²Π΅Ρ€Ρ…ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½ΠΈΠΊΠΈ&r. Π­Ρ‚ΠΈ красавцы Π΄ΠΎΡ€ΠΎΠ³ΠΎΠ²Π°Ρ‚Ρ‹Π΅, Π½ΠΎ ΠΎΠ½ΠΈ &9Π±Π΅Π· ΠΏΠΎΡ‚Π΅Ρ€ΡŒ&r. Им Π½Π΅ Π½ΡƒΠΆΠ½Π° изоляция ΠΈ ΠΎΠ½ΠΈ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ Π±ΠΈΡ‚ΡŒ тСбя Ρ‚ΠΎΠΊΠΎΠΌ. Однако стоит Π·Π½Π°Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ ΠΈΡ… ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ появляСтся Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² ΠΊΠΎΠ½Ρ†Π΅ Ρ‚ΠΈΡ€Π°.\n\nΠžΠΏΡ‚ΠΈΠΌΠΈΠ·ΠΈΡ€ΡƒΠΉ ΠΏΠΎΡ‚ΠΎΠΊΠΈ энСргии β€” &bΡƒΠΌΠ΅Π½ΡŒΡˆΠΈ ΠΏΠΎΡ‚Π΅Ρ€ΠΈ&r ΠΈ Π΄Π΅Π»Π°ΠΉ свои систСмы Π±ΠΎΠ»Π΅Π΅ энСргоэффСктивными.", + "quests.gregtech_energy.moving_wire.task": "Π― Π·Π°ΠΊΠΎΠ½Ρ‡ΠΈΠ» ΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Π½Π° ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π°", + "quests.gregtech_energy.moving_amp.title": "Π£ΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅ Π°ΠΌΠΏΠ΅Ρ€Π°ΠΌΠΈ", + "quests.gregtech_energy.moving_amp.subtitle": "Оно Π³ΠΎΡ€ΠΈΡ‚?", + "quests.gregtech_energy.moving_amp.desc.1": "Π’Ρ‹ Π·Π°ΠΌΠ΅Ρ‚ΠΈΠ», Ρ‡Ρ‚ΠΎ Ρƒ ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π° Π΅ΡΡ‚ΡŒ своя &eмаксимальная сила Ρ‚ΠΎΠΊΠ°&r β€” это бСзопасноС колличСство Π°ΠΌΠΏΠ΅Ρ€, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ ΠΏΡ€ΠΎΠ²ΠΎΠ΄ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ.\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ½ΡΡ‚ΡŒ, сколько Π°ΠΌΠΏΠ΅Ρ€ ΠΏΡ€ΠΎΠΉΠ΄Π΅Ρ‚ Ρ‡Π΅Ρ€Π΅Π· ΠΏΡ€ΠΎΠ²ΠΎΠ΄, Π½ΡƒΠΆΠ½ΠΎ ΡƒΡ‡Π΅ΡΡ‚ΡŒ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠ΅ Π²Π΅Ρ‰ΠΈ:\n\n- Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ ΠΈ Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠΊΠΈ Π²Ρ‹Π΄Π°ΡŽΡ‚ ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½ΠΎΠ΅ колличСство Π°ΠΌΠΏΠ΅Ρ€:\nΠ‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹Π΅ Π±ΡƒΡ„Π΅Ρ€Ρ‹ Π²Ρ‹Π΄Π°ΡŽΡ‚ ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ Π°ΠΌΠΏΠ΅Ρ€, сколько Π²Π½ΡƒΡ‚Ρ€ΠΈ Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ.\nΠšΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΡ‡Π½Ρ‹ΠΉ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ Π²Ρ‹Π΄Π°Π΅Ρ‚&e1A&r.\nΠ’Ρ‹Ρ…ΠΎΠ΄ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹Ρ… Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠ² зависит ΠΎΡ‚ &aΠ²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠ³ΠΎ энСргСтичСского люка&r β€” значСния, ΡƒΠΊΠ°Π·Π°Π½Π½ΠΎΠ³ΠΎ Π² Ρ‚ΡƒΠ»Ρ‚ΠΈΠΏΠ΅.\n\nΠ’Π°ΠΊ ΠΆΠ΅ колличСство Π²Ρ‹Π΄Π°Π²Π°Π΅ΠΌΡ‹Ρ… Π°ΠΌΠΏΠ΅Ρ€ зависит ΠΎΡ‚ Π·Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°ΠΌΡ‹Ρ… Π°ΠΌΠΏΠ΅Ρ€: каТдая ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½Π½Π°Ρ машина Π±ΡƒΠ΄Π΅Ρ‚ Ρ‚Ρ€Π΅Π±ΠΎΠ²Π°Ρ‚ΡŒ силу Ρ‚ΠΎΠΊΠ° для заполнСния Π²Π½ΡƒΡ‚Ρ€Π΅Π½Π½Π΅Π³ΠΎ Π±ΡƒΡ„Π΅Ρ€Π°.", + "quests.gregtech_energy.moving_amp.desc.2": "НапримСр:\nΠ£ тСбя Π΅ΡΡ‚ΡŒ &e6 машин&r соСдинСнных ΠΊ &e8x Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½ΠΎΠΌΡƒ Π±ΡƒΡ„Π΅Ρ€Ρƒ&r Π·Π°ΠΏΠΎΠ»Π½Π΅Π½Π½ΠΎΠΌΡƒ 8-ю Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠΊΠ°ΠΌΠΈ.\nΠ‘ΡƒΡ„Π΅Ρ€ попытаСтся ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ &e1A&r ΠΊΠ°ΠΆΠ΄ΠΎΠΉ машинС β€” это Π² суммС &e6A&r.\nАмпСры Π±ΡƒΠ΄ΡƒΡ‚ Π΄ΠΎΡΡ‚Π°Π²Π»ΡΡ‚ΡŒΡΡ ΠΏΠΎΠΎΡ‡Π΅Ρ€Ρ‘Π΄Π½ΠΎ: Π‘Π»ΠΈΠΆΠ°ΠΉΡˆΠ°Ρ машина ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ ΠΏΠ΅Ρ€Π²ΠΎΠΉ, Π° дальнСйшая - послСднСй.\nЕсли максимальная сила Ρ‚ΠΎΠΊΠ° ΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΎΠ² &c4A&r, Ρ‚ΠΎ ΠΎΠ½ΠΈ &cгорят&r. Π’ этом случаС стоит ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &a8A ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π°&r.\n\n&bΠ‘ΠΎΠ²Π΅Ρ‚:&r ΠŸΠ΅Ρ€Π²ΠΎΠΉ машинС понадобится ΠΏΡ€ΠΎΠ²ΠΎΠ΄ Π½Π° &e8A&r,\nΠ½ΠΎ послСднСй машинС Π½ΡƒΠΆΠ΅Π½ ΠΏΡ€ΠΎΠ²ΠΎΠ΄ лишь Π½Π° &e1A&r, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Ρ‚, Ρ‡Ρ‚ΠΎ ΠΎΡΡ‚Π°Π»ΠΎΡΡŒ.\n&c⚠ ΠžΡΡ‚ΠΎΡ€ΠΎΠΆΠ½ΠΎ:&r Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ Π΅Ρ‰Π΅ ΠΎΠ΄Π½ΠΎΠΉ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ Π² ΠΊΠΎΠ½Ρ†Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ привСсти ΠΊ ΡΠ³ΠΎΡ€Π°Π½ΡŽ ΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΎΠ², Ссли сила Ρ‚ΠΎΠΊΠ° прСвысит Π»ΠΈΠΌΠΈΡ‚.", + "quests.gregtech_energy.moving_amp.task": "Π― понял", + "quests.gregtech_energy.produce_energy.title": "ΠŸΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΡΡ‚Π²ΠΎ энСргии", + "quests.gregtech_energy.produce_energy.subtitle": "Π“Π°Π· ΠΈΠ»ΠΈ Π½Π΅Ρ„Ρ‚ΡŒ?", + "quests.gregtech_energy.produce_energy.desc": "Π­Ρ‚ΠΎ вСдь всё ΠΎ производствС энСргии, Π²Π΅Ρ€Π½ΠΎ? Π­Ρ‚ΠΎ Ρ‡Π°ΡΡ‚ΡŒ Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ слоТной, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ &eпроизводство энСргии&r Π² &2TerraFirmaGreg&r Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ ΠΊΠ°ΠΊ Π² &5стандартном GregTech&r.\n\nΠ’Ρ‹ ΡƒΠ·Π½Π°Π΅ΡˆΡŒ ΠΎ Ρ€Π°Π·Π½ΠΎΠΎΠ±Ρ€Π°Π·Π½Ρ‹Ρ… &6ΠΌΠ΅Ρ‚ΠΎΠ΄Π°Ρ… производства энСргии&r, Π² Ρ‚ΠΎΠΌ числС Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²ΠΈΠ΄Ρ‹ &aΡ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Ρ‚Ρ‹ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ.", + "quests.gregtech_energy.produce_energy.task": "Погнали!", + "quests.gregtech_energy.lv_generator.title": "Π”Π°Π²Π°ΠΉΡ‚Π΅ Π΄Π΅Π»Π°Ρ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ", + "quests.gregtech_energy.lv_generator.subtitle": "Π”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π² LV", + "quests.gregtech_energy.lv_generator.desc.1": "ВсС это - Π±Π°Π·ΠΎΠ²Ρ‹Π΅ &6ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΡ‡Π½Ρ‹Π΅ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹&r. Π£ Π½ΠΈΡ… 1 &9Π²Ρ…ΠΎΠ΄&r для ΠΈΡ… Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° β€” Π±ΡƒΠ΄ΡŒ это &eΠΏΠ°Ρ€&r, &aΠ³Π°Π·&r, ΠΈΠ»ΠΈ &6ΠΆΠΈΠ΄ΠΊΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ&r β€” ΠΈ ΠΎΠ½ΠΈ Π³Π΅Π½Π΅Ρ€ΠΈΡ€ΡƒΡŽΡ‚ Ρ€ΠΎΠ²Π½ΠΎ &e1A&r ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰Π΅Π³ΠΎ уровня напряТСния.\n\nΠ‘ Π½ΠΈΠΌΠΈ Π»Π΅Π³ΠΊΠΎ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ ΠΈ ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ Ρ‚Π²ΠΎΠΈΠΌΠΈ &oΠΏΠ΅Ρ€Π²Ρ‹ΠΌΠΈ источниками энСргии&r Π² &5GregTech&r ΠΏΠΎΠΊΠ° Ρ‚Ρ‹ Π½Π΅ дойдСшь Π΄ΠΎ &dΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹Ρ… Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠ²&r, доступных ΠΏΠΎΠ·ΠΆΠ΅.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ Π² качСствС Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, ΠΏΡ€ΠΎΠ²Π΅Ρ€ΡŒ &aEMI&r, ΠΈΠ»ΠΈ посмотри Π° &bквСстах слСва&r, Π³Π΄Π΅ ΡƒΠΊΠ°Π·Π°Π½Ρ‹ &aΠΎΠΏΡ‚ΠΈΠΌΠ°Π»ΡŒΠ½Ρ‹Π΅ Π²ΠΈΠ΄Ρ‹ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r. БСйчас Ρ‚Π΅Π±Π΅ доступно &lΡ‚Ρ€ΠΈ ΠΏΡƒΡ‚ΠΈ&r производства энСргии, всС &aΠ²Π°Π»ΠΈΠ΄Π½Ρ‹&r, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π²Ρ‹Π±ΠΎΡ€ Π·Π° Ρ‚ΠΎΠ±ΠΎΠΉ.", + "quests.gregtech_energy.lv_generator.desc.2": "&e1. Π‘ΠΈΠ»Π° ΠΏΠ°Ρ€Π°&r:\n\nΠ­Ρ‚ΠΎ самый классичСский ΠΌΠ΅Ρ‚ΠΎΠ΄. Π’Ρ‹ моТСшь ΠΊΠΎΠ½Π²Π΅Ρ€Ρ‚ΠΈΡ€ΠΎΠ²Ρ‚ΡŒ ΠΏΠ°Ρ€ с Ρ‚Π²ΠΎΠΈΡ… ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΎΡ‚Π»ΠΎΠ² высокого давлСния Π² EU ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Π΅ Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹.\n\nОна Π³Π΅Π½Π΅Ρ€ΠΈΡ€ΡƒΠ΅Ρ‚ &e32 EU/t&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ &e64 mB/t&r ΠΏΠ°Ρ€Π°. Если Ρ‚Ρ‹ пойдСшь этим ΠΏΡƒΡ‚Π΅ΠΌ, ΠΌΡ‹ ΠΊΡ€Π°ΠΉΠ½Π΅ΠΉ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π±Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ‹ΠΉ ΠΊΠΎΡ‚Π΅Π», ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ Π·Π°ΠΏΠΈΡ‚Ρ‹Π²Π°Ρ‚ΡŒ Π»Π°Π²ΠΎΠΉ, ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚ΠΎΠΌ ΠΈΠ»ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠΌ Ρ‚Π²Π΅Ρ€Π΄Ρ‹ΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ (ΠΏΡ€ΠΎΠ²Π΅Ρ€ΡŒ JEI!).", + "quests.gregtech_energy.lv_generator.desc.3": "&e2. Π‘ΠΈΠ»Π° крутящСго ΠΌΠΎΠΌΠ΅Π½Ρ‚Π°&r:\n\nΠ’Ρ‹ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ крутящий ΠΌΠΎΠΌΠ΅Π½Ρ‚ Create-Π° для Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠΈ FE с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°, Π·Π°Ρ‚Π΅ΠΌ ΠΊΠΎΠ½Π²Π΅Ρ€Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π² EU ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ ΠŸΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΠΎΠ°Ρ‚Π΅Π»ΡŒ энСргии &7LV&r.\n\n(ΠŸΡ€ΠΎΠ²Π΅Ρ€ΡŒ квСст ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€Ρ‹ Π² Π³Π»Π°Π²Π΅ Low Voltage(Низкий Π’ΠΎΠ»ΡŒΡ‚Π°ΠΆ) для подробностСй.)", + "quests.gregtech_energy.lv_generator.desc.4": "&e3. Π‘ΠΈΠ»Π° биодизСля (Эксклюзивно для TFG)&r:\n\nКанола ΠΈ подсолнухи ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Π½Ρ‹ Π² большоС колличСство Π Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ масла. БмСшай с Π°Π»ΠΊΠΎΠ³ΠΎΠ»Π΅ΠΌ ΠΈΠ· TFC для производства биодизСля.\n\nΠ­Ρ‚ΠΎΡ‚ ΠΌΠ΅Ρ‚ΠΎΠ΄ Π±ΠΎΠ»Π΅Π΅ слоТный, Π½ΠΎ Π‘ΠΈΠΎΠ΄ΠΈΠ·Π΅Π»ΡŒ ΠΊΡ€Π°ΠΉΠ½Π΅ ΠΌΠΎΡ‰Π½ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ Π½Π° &7LV&r ΠΈ &bMV&r Ρ‚ΠΈΡ€Π°Ρ…. Он Ρ…ΠΎΡ€ΠΎΡˆΠΎ ΠΌΠ°ΡΡˆΡ‚Π°Π±ΠΈΡ€ΡƒΠ΅Ρ‚ΡΡ ΠΊ &5EV&r с &eНитро-Π”ΠΈΠ·Π΅Π»Π΅ΠΌ&r, доступным ΠΏΠΎΠ·ΠΆΠ΅.\n\nДля использования биодизСля, Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ΅Π½ &7LV&r Π”ΠΈΠ·Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€. Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ ΠΎΠ½ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Π΄ΠΎΡ€ΠΎΠΆΠ΅, Π½ΠΎ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΌΠ‘ БиодизСля Π΄Π°Π΅Ρ‚ большоС колличСство EU, Ρ‚ΠΎ Π΅ΡΡ‚ΡŒ Π΅Π³ΠΎ ΠΏΡ€ΠΎΡ‰Π΅ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΈ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ.\n\nΠ­Ρ‚ΠΎ Ρ‚Π²ΠΎΠΉ Π²Ρ‹Π±ΠΎΡ€ ΠΊΠ°ΠΊ Ρ‚Ρ‹ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ Π½Π°Ρ‡Π°Ρ‚ΡŒ своС производство энСргии.", + "quests.gregtech_energy.lv_generator.desc.5": "&e4. Π‘ΠΈΠ»Π° сингаза (Эксклюзивно для TFG)&r:\n\nΠ‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &6Коксовой ΠΏΠ΅Ρ‡ΠΈ&r ΠΈ &6Π’Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΠΉ ΠΊΠ°ΠΌΠ΅Ρ€Ρ‹&r, Ρ‚Ρ‹ смоТСшь ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ это Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠ΅ Π³Π°Π·ΠΎΠ²ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ. Π­Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Π½Π΅ самым Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠΌ, Π½ΠΎ этого достаточно, Ссли Ρ‚Ρ‹ Π·Π°Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΠΏΠΎΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΠΎ ΠΏΡƒΡ‚ΠΈ &eΡ‚ΠΎΠ»ΡŒΠΊΠΎ Π³Π°Π·ΠΎΠ²ΠΎΠ³ΠΎ&r Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°. &6Create&r-овская Ρ„Π΅Ρ€ΠΌΠ° Π΄Π΅Ρ€Π΅Π²Π° ΠΊΡ€Π°ΠΉΠ½Π΅ рСкомСндуСтся, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π½Π°ΠΈΠ±ΠΎΠ»ΡŒΡˆΡƒΡŽ эффСктивности ΠΈΠ· Π½Π΅Π³ΠΎ.", + "quests.gregtech_energy.lv_generator.task": "Π›ΡŽΠ±ΠΎΠΉ LV Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€", + "quests.gregtech_energy.mv_generator.title": "MV Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹", + "quests.gregtech_energy.mv_generator.subtitle": "По сути Ρ‚Π΅ ΠΆΠ΅ самыС, Ρ‡Ρ‚ΠΎ ΠΈ LV-ΡˆΠ½Ρ‹Π΅", + "quests.gregtech_energy.mv_generator.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ Π·Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ Ρ‚Π²ΠΎΠΈ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ &bMV&r, Ρ‚Π΅Π±Π΅ потрСбуСтся ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ производство энСргии.\n\nЕсли Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ &7LV&r ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ &e32 EU/t&r, Ρ‚ΠΎ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ &bMV&r Π²Ρ‹Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅Ρ‚ &e128 EU/t&r.\nОни ΠΏΠΎΡ‚Ρ€Π΅Π±Π»ΡΡŽΡ‚ Π² Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ Ρ€Π°Π·Π° большС Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π² Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ Ρ€Π°Π·Π° большС энСргии.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ Π»ΡƒΡ‡ΡˆΠ΅ ΠΏΠΎΠ½ΡΡ‚ΡŒ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹ Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠΈ энСргии Π½Π° &bMV&r, ΠΌΡ‹ Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΎΠ·Π½Π°ΠΊΠΎΠΌΠΈΡ‚ΡŒΡΡ с посвящённым этому квСстом Π² Π³Π»Π°Π²Π΅ &bMV&r, располоТСнной Π² самом Π½Π°Ρ‡Π°Π»Π΅.\n\nНа ΡƒΡ€ΠΎΠ²Π½Π΅ &bMV&r Ρƒ тСбя Ρ‚Π°ΠΊΠΆΠ΅ появляСтся доступ ΠΊ Π±ΠΎΠ»ΡŒΡˆΠ΅ΠΌΡƒ количСству Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ²:\n\n- Π’ΠΎΠΏΠ»ΠΈΠ²ΠΎ Π½Π° основС Π½Π΅Ρ„Ρ‚ΠΈ, Ρ‚Π°ΠΊΠΎΠ΅ ΠΊΠ°ΠΊ дизСль ΠΈΠ»ΠΈ Π»Ρ‘Π³ΠΊΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ\n- Π“Π°Π·ΠΎΠΎΠ±Ρ€Π°Π·Π½ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ Π±Π΅Π½Π·ΠΎΠ», Π‘Π£Π“ ΠΈΠ»ΠΈ ΠΌΠ΅Ρ‚Π°Π½\n- Π’Ρ‹ моТСшь ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠ°Ρ‚ΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ биодизСль ΠΈΠ»ΠΈ ΠΏΠ°Ρ€, хотя Ρ‚Π΅Π±Π΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΠ½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Ρ‚Ρ€ΡƒΠ±Ρ‹ побольшС (Π°Π»ΡŽΠΌΠΈΠ½ΠΈΠ΅Π²Ρ‹Π΅, ΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ ΠΈΠ»ΠΈ ΠΈΠ· ΠΏΠΎΡ‚ΠΈΠ½Π° ΠΏΠΎΠ΄ΠΎΠΉΠ΄ΡƒΡ‚)\n\nΠ˜Π·ΡƒΡ‡ΠΈ доступныС Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠΏΡ‚ΠΈΠΌΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π²Π°ΡˆΡƒ ΡΠ½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ систСму.", + "quests.gregtech_energy.mv_generator.task": "Π›ΡŽΠ±ΠΎΠΉ MV Generator", + "quests.gregtech_energy.hv_single_generator.title": "ПослСдниС ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΡ‡Π½Ρ‹Π΅ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹", + "quests.gregtech_energy.hv_single_generator.subtitle": "Π‘ΠΎΠ³ Π»ΡŽΠ±ΠΈΡ‚ Ρ‚Ρ€ΠΎΠΈΡ†Ρƒ?", + "quests.gregtech_energy.hv_single_generator.desc": "Если Ρ‚Ρ‹ Π½Π΅ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ &eΠ‘ΠΎΠ»ΡŒΡˆΡƒΡŽ ΠΏΠ°Ρ€ΠΎΠ²ΡƒΡŽ ΠΌΠ°ΡˆΠΈΠ½Ρƒ&r, это Ρ‚Π²ΠΎΠΈ СдинствСнныС Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹ для &6HV&r.\n\nОднако ΠΈΠΌΠ΅ΠΉ Π² Π²ΠΈΠ΄Ρƒ, Ρ‡Ρ‚ΠΎ ΠΎΠ½ΠΈ Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ доступны для &5EV&r ΠΈ Π²Ρ‹ΡˆΠ΅.\n\nΠ’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, ΠΎΠ½ΠΈ ΠΎΡΡ‚Π°ΡŽΡ‚ΡΡ Π½Π°Π΄Ρ‘ΠΆΠ½Ρ‹ΠΌΠΈ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π°ΠΌΠΈ Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠΈ энСргии Π½Π° &6HV&r.", + "quests.gregtech_energy.hv_single_generator.task": "Π›ΡŽΠ±ΠΎΠΉ HV Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€", + "quests.gregtech_energy.hv_fuel.title": "ДоступноС Π½Π° HV Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ", + "quests.gregtech_energy.hv_fuel.subtitle": "ΠšΠ°ΠΆΠ΄ΠΎΠΌΡƒ своС", + "quests.gregtech_energy.hv_fuel.desc": "Π­Ρ‚ΠΎ Ρ‚Ρ€ΠΈ Π²ΠΈΠ΄Π° Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ соотвСтствСнно ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ Π² Π΄ΠΈΠ·Π΅Π»ΡŒΠ½Ρ‹Ρ…, ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Ρ… ΠΈ Π³Π°Π·ΠΎΠ²Ρ‹Ρ… Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°Ρ….\n\nЕсли Ρ‚Ρ‹ достиг &6HV&r, ΠΌΡ‹ Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ Π²Ρ‹Π±Ρ€Π°Ρ‚ΡŒ ΠΎΠ΄ΠΈΠ½ ΠΈΠ· этих Ρ‚Ρ€Ρ‘Ρ… Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ².\n\nОднако Π½Π΅ ΠΏΠ΅Ρ€Π΅ΠΆΠΈΠ²Π°ΠΉ β€” Π΄Ρ€ΡƒΠ³ΠΈΠ΅ Π²ΠΈΠ΄Ρ‹ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° вовсС Π½Π΅ ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΏΠ»ΠΎΡ…ΠΈ.\n\nВсСгда Π²Ρ‹Π±ΠΈΡ€Π°ΠΉ Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π»ΡƒΡ‡ΡˆΠ΅ всСго ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ ΠΏΠΎΠ΄ Ρ‚Π²ΠΎΡŽ Π±Π°Π·Ρƒ ΠΈ ΡΡ‚ΠΈΠ»ΡŒ ΠΈΠ³Ρ€Ρ‹.", + "quests.gregtech_energy.hv_fuel.task": "Π― понял", + "quests.gregtech_energy.hv_choice.title": "ΠŸΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΡΡ‚Π²ΠΎ энСргии Π² HV", + "quests.gregtech_energy.hv_choice.subtitle": "На Ρ‚Π²ΠΎΠΉ Π²Ρ‹Π±ΠΎΡ€", + "quests.gregtech_energy.hv_choice.desc": "Достигнув &6HV&r, Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΡˆΡŒ доступ ΠΊ своСму ΠΏΠ΅Ρ€Π²ΠΎΠΌΡƒ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΡƒ для Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠΈ энСргии.\n\nОн Ρ‚Π°ΠΊΠΆΠ΅ считаСтся Ρ…ΡƒΠ΄ΡˆΠΈΠΌβ€¦ Π½ΠΎ всё Π΅Ρ‰Ρ‘ ΠΌΠΎΠΆΠ΅Ρ‚ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π½Π΅ΠΏΠ»ΠΎΡ…ΠΎ, Ссли Ρ‚Ρ‹ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ Π΅Π³ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ.\n\nΠ”Ρ€ΡƒΠ³ΠΎΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ β€” ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠ°Ρ‚ΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰ΠΈΠ΅ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹: Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ Ρƒ тСбя Π΅ΡΡ‚ΡŒ доступ ΠΊ Π½ΠΎΠ²Ρ‹ΠΌ ΠΈ Π±ΠΎΠ»Π΅Π΅ эффСктивным Π²ΠΈΠ΄Π°ΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°.", + "quests.gregtech_energy.hv_choice.task": "Π― понял", + "quests.gregtech_energy.lpt.title": "Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ плазмСнная Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°", + "quests.gregtech_energy.lpt.subtitle": "Π’Π΅Π±Π΅ понадобится тСрмоядСрный Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€", + "quests.gregtech_energy.lpt.desc.1": "&6Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ плазмСнная Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°&r β€” Ρ‚Π°ΠΊΠΆΠ΅ извСстная ΠΊΠ°ΠΊ &dLPT ΠΈΠ»ΠΈ Π‘ΠŸΠ’&r β€” являСтся настоящСй энСргСтичСской ΠΌΠ°Ρ…ΠΈΠ½ΠΎΠΉ. НС ΠΏΠΎ Ρ€Π°Π·ΠΌΠ΅Ρ€Ρƒ (ΠΎΠ½ Π²ΠΏΠΎΠ»Π½Π΅ стандартный), Π° ΠΏΠΎ мощности. Для Π΅Ρ‘ создания Ρ‚Π΅Π±Π΅ понадобятся LuV схСмы, LuV ΠΎΠ±ΠΎΠ»ΠΎΡ‡ΠΊΠ° ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΈ ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ΅ количСство Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²ΠΎΠΉ стали. Она считаСтся самым ΠΌΠΎΡ‰Π½Ρ‹ΠΌ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠΌ Π² TerraFirmaGreg.\n\nΠ˜Ρ‚Π°ΠΊ, ΠΊΠ°ΠΊ ΠΎΠ½Π° Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚? Π’Π°ΠΌ понадобится ΠΏΠ»Π°Π·ΠΌΠ°, производимая тСрмоядСрным Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΎΠΌ. Π­Ρ‚Π° ΠΏΠ»Π°Π·ΠΌΠ° охлаТдаСтся Π²Π½ΡƒΡ‚Ρ€ΠΈ Π‘ΠŸΠ’ с ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎΠΉ Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠ΅ΠΉ энСргии. Для Π²Ρ‹Π²ΠΎΠ΄Π° ΠΎΡ…Π»Π°ΠΆΠ΄Ρ‘Π½Π½ΠΎΠΉ ΠΏΠ»Π°Π·ΠΌΡ‹ Π²Π°ΠΌ потрСбуСтся Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ Ρ€Π°Π·ΡŠΠ΅ΠΌ.", + "quests.gregtech_energy.lpt.desc.2": "По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ Π‘ΠŸΠ’ Π½Π°Ρ‡ΠΈΠ½Π°Π΅Ρ‚ с &e16384 EU/t&r, Ρ‡Ρ‚ΠΎ выглядит Π½Π΅ слишком Π²ΠΏΠ΅Ρ‡Π°Ρ‚Π»ΡΡŽΡ‰Π΅, Π½ΠΎ эта выходная ΠΌΠΎΡ‰Π½ΠΎΡΡ‚ΡŒ &cудваиваСтся&r ΠΏΡ€ΠΈ ΠΊΠ°ΠΆΠ΄ΠΎΠΌ ΠΏΠΎΠ²Ρ‹ΡˆΠ΅Π½ΠΈΠΈ уровня дСрТатСля Ρ€ΠΎΡ‚ΠΎΡ€Π° послС &1IV&r.\n\nНапримСр, использованиС дСрТатСля Ρ€ΠΎΡ‚ΠΎΡ€Π° LuV (x2) с Ρ‚ΡƒΡ€Π±ΠΈΠ½Π½Ρ‹ΠΌ Ρ€ΠΎΡ‚ΠΎΡ€ΠΎΠΌ HSS-E (x2.8) даст Ρ‚Π΅Π±Π΅ ΠΎΡˆΠ΅Π»ΠΎΠΌΠ»ΡΡŽΡ‰ΠΈΠ΅ &e91750 EU/t&r β€” это ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ &a2.8A LuV&r!\n\nКак ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹, ΠΎΠ½Π° Π±ΡƒΠ΄Π΅Ρ‚ Π·Π°ΠΌΠ΅Π΄Π»ΡΡ‚ΡŒΡΡ ΠΈ ΠΎΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°Ρ‚ΡŒΡΡ, Ссли Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ энСргСтичСский Ρ€Π°Π·ΡŠΠ΅ΠΌ Π·Π°ΠΏΠΎΠ»Π½Π΅Π½, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ Π½Π΅ Π±ΡƒΠ΄Π΅ΡˆΡŒ Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΏΠ»Π°Π·ΠΌΡƒ Π²ΠΏΡƒΡΡ‚ΡƒΡŽ, Π½ΠΎ Π² ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Ρ… Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠ², этому Π½Π΅ трСбуСтся люк Π³Π»ΡƒΡˆΠΈΡ‚Π΅Π»Ρ.", + "quests.gregtech_energy.lgt.title": "Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ газовая Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°", + "quests.gregtech_energy.lgt.subtitle": "Π’Ρ‹Π±ΠΎΡ€ Ρ„Π°Π½Π°Ρ‚ΠΎΠ²", + "quests.gregtech_energy.lgt.desc.1": "&6Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ газовая Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°&r β€” Ρ‚Π°ΠΊΠΆΠ΅ извСстная ΠΊΠ°ΠΊ &dΠ‘Π“Π’&r β€” являСтся ΠΎΠ΄Π½ΠΈΠΌ ΠΈΠ· Π΄Π²ΡƒΡ… основных источников Π²Ρ‹Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ энСргии Π½Π° протяТСнии большСй части ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠ°. Π’Ρ‹ смоТСшь ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ свою ΠΏΠ΅Ρ€Π²ΡƒΡŽ Ρ‚Π°ΠΊΡƒΡŽ Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρƒ Π½Π° &5EV&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Π½Π΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰ΡƒΡŽ ΡΡ‚Π°Π»ΡŒ. Она способна провСсти тСбя ΠΎΡ‚ &5EV&r Π²ΠΏΠ»ΠΎΡ‚ΡŒ Π΄ΠΎ &dLuV&r, ΠΏΠΎΠΊΠ° Ρ‚Ρ‹ Π½Π΅ Π±ΡƒΠ΄Π΅ΡˆΡŒ Π³ΠΎΡ‚ΠΎΠ² ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° Π‘ΠŸΠ’.\n\nΠ’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, ΠΌΠ½ΠΎΠ³ΠΈΠ΅ ΠΈΠ³Ρ€ΠΎΠΊΠΈ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΡ€ΠΎΠΉΡ‚ΠΈ TerraFirmaGreg, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ эти Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹ β€” ΠΏΡ€ΠΈ условии, Ρ‡Ρ‚ΠΎ Ρƒ тСбя Π΅ΡΡ‚ΡŒ мощная инфраструктура для обСспСчСния Π³Π°Π·ΠΎΠ²Ρ‹Ρ… потрСбностСй высокоуровнСвых Π‘Π“Π’.\n\nДля постройки Π‘Π“Π’ Π²Π°ΠΌ понадобятся стандартныС люки обслуТивания ΠΈ Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк. Π­Ρ‚Π° Ρ‚ΡƒΡ€Π±ΠΈΠ½Π° Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ люк Π³Π»ΡƒΡˆΠΈΡ‚Π΅Π»Ρ, Π½ΠΎ Π½Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк.", + "quests.gregtech_energy.lgt.desc.2": "Бтандартная выходная ΠΌΠΎΡ‰Π½ΠΎΡΡ‚ΡŒ составляСт &e4096 EU/t&r. Π­Ρ‚Π° ΠΌΠΎΡ‰Π½ΠΎΡΡ‚ΡŒ &cудваиваСтся&r ΠΏΡ€ΠΈ ΠΊΠ°ΠΆΠ΄ΠΎΠΌ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΈ дСрТатСля Ρ€ΠΎΡ‚ΠΎΡ€Π° послС &5EV&r. НапримСр, Π‘Π“Π’ с Π΄Π΅Ρ€ΠΆΠ°Ρ‚Π΅Π»Π΅ΠΌ Ρ€ΠΎΡ‚ΠΎΡ€Π° IV (Γ—2) ΠΈ Ρ‚ΡƒΡ€Π±ΠΈΠ½Π½Ρ‹ΠΌ Ρ€ΠΎΡ‚ΠΎΡ€ΠΎΠΌ HSS-E (280%% мощности) Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ:\n4096 Γ— 2 Γ— 2.8 = &e22,937.6 EU/t&r β€” это ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ &a2.8A IV&r.\n\nДля ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ извлСчСния этой энСргии потрСбуСтся ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ IV 4A Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ энСргСтичСский Ρ€Π°Π·ΡŠΠ΅ΠΌ, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ Ρ€Π°Π·ΡŠΠ΅ΠΌ способСн Π²Ρ‹Π΄Π°Π²Π°Ρ‚ΡŒ лишь 2A.\n\nК Ρ‚Π²ΠΎΠ΅ΠΌΡƒ свСдСнию: Π­Ρ„Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΡΡ‚ΡŒ Ρ€ΠΎΡ‚ΠΎΡ€Π° Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°Π΅Ρ‚ Π΄Π»ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°, Ρ‡Ρ‚ΠΎ ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚ большС энСргии с ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ ΠΌΠΈΠ»Π»ΠΈΠ±Π°ΠΊΠ΅Ρ‚Π° Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°.\n\nИ Π½Π°ΠΊΠΎΠ½Π΅Ρ†, Ссли Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ энСргСтичСский Ρ€Π°Π·ΡŠΠ΅ΠΌ заполнится, Π‘Π“Π’ автоматичСски замСдлится ΠΈ приостановит использованиС Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, постСпСнно сниТая ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ Ρ€ΠΎΡ‚ΠΎΡ€Π° Π΄ΠΎ возобновлСния Ρ€Π°Π±ΠΎΡ‚Ρ‹. Π’Π°ΠΊ Ρ‚Ρ‹ Π½Π΅ Π±ΡƒΠ΄Π΅ΡˆΡŒ Ρ‚Π΅Ρ€ΡΡ‚ΡŒ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ.", + "quests.gregtech_energy.lst.title": "Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ паровая Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°", + "quests.gregtech_energy.lst.subtitle": "Она... сущСствуСт", + "quests.gregtech_energy.lst.desc.1": "&6Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ паровая Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°&r β€” ΠΈΠ»ΠΈ &dΠ‘ΠŸΠ’&r β€” ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Π½Π΅ самым распространённым ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹ΠΌ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠΌ Π² стандартном GregTech, Π½ΠΎ благодаря Ρ€Π°Π½Π½Π΅ΠΌΡƒ Ρ€Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Π½ΠΈΡŽ Π½Π° &6HV&r ΠΈ Ρ‚ΠΎΠΌΡƒ, Ρ‡Ρ‚ΠΎ Π‘ΠΎΠ»ΡŒΡˆΠΈΠ΅ ΠΊΠΎΡ‚Π»Ρ‹ сильнСС Π² TerraFirmaGreg, ΠΎΠ½ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½ΠΎ ΠΈΠΌΠ΅Π΅Ρ‚ своё мСсто.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ Π΅Π³ΠΎ Π·Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ, Ρ‚Π΅Π±Π΅ понадобится Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк для ΠΏΠ°Ρ€Π°, Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк для дистиллированной Π²ΠΎΠ΄Ρ‹ ΠΈ, ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΎ ΠΆΠ΅, люк обслуТивания. Π­Ρ‚ΠΎ всё, Ρ‡Ρ‚ΠΎ Π½ΡƒΠΆΠ½ΠΎ! Как ΠΈ всС большиС Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹, Ρ‚Ρ‹ ΡΡ‚Π°Π²ΠΈΡˆΡŒ Π΄Π΅Ρ€ΠΆΠ°Ρ‚Π΅Π»ΡŒ Ρ€ΠΎΡ‚ΠΎΡ€Π° с ΠΎΠ΄Π½ΠΎΠΉ стороны ΠΈ Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ энСргСтичСский Ρ€Π°Π·ΡŠΠ΅ΠΌ с Π΄Ρ€ΡƒΠ³ΠΎΠΉ для извлСчСния энСргии. Для Π‘ΠŸΠ’ Π΄Π΅Ρ€ΠΆΠ°Ρ‚Π΅Π»ΡŒ Ρ€ΠΎΡ‚ΠΎΡ€Π° Π΄ΠΎΠ»ΠΆΠ΅Π½ Π±Ρ‹Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ &6HV&r. КаТдоС ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ дСрТатСля Ρ€ΠΎΡ‚ΠΎΡ€Π° &cΡƒΠ΄Π²Π°ΠΈΠ²Π°Π΅Ρ‚&r Π²Ρ‹Ρ…ΠΎΠ΄ ΠΈ слСгка ΠΏΠΎΠ²Ρ‹ΡˆΠ°Π΅Ρ‚ ΡΡ„Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΡΡ‚ΡŒ.", + "quests.gregtech_energy.lst.desc.2": "Базовая выходная ΠΌΠΎΡ‰Π½ΠΎΡΡ‚ΡŒ LST составляСт &e1024 EU/t&r. Рассмотрим ΠΏΡ€ΠΈΠΌΠ΅Ρ€: с Π΄Π΅Ρ€ΠΆΠ°Ρ‚Π΅Π»Π΅ΠΌ Ρ€ΠΎΡ‚ΠΎΡ€Π° IV (Γ—4) ΠΈ Ρ€ΠΎΡ‚ΠΎΡ€ΠΎΠΌ Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹ HSS-E (280%% мощности) Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡˆΡŒ:\n1024 Γ— 4 Γ— 2.8 = &e11,468.8 EU/t&r β€” это ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ &a1.4A IV&r.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ эту ΡΠ½Π΅Ρ€Π³ΠΈΡŽ, Ρ‚Π΅Π±Π΅ понадобится Π»ΠΈΠ±ΠΎ IV Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ энСргСтичСский Ρ€Π°Π·ΡŠΠ΅ΠΌ, Π»ΠΈΠ±ΠΎ EV 16A Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ энСргСтичСский Ρ€Π°Π·ΡŠΠ΅ΠΌ.\n\nΠ₯отя Π‘ΠŸΠ’ Π½Π΅ являСтся популярным Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅ΠΌ, Ссли Ρƒ тСбя Π΅ΡΡ‚ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ Π±ΠΎΠ»ΡŒΡˆΠΈΡ… ΠΊΠΎΡ‚Π»ΠΎΠ² ΠΈΠ»ΠΈ доступ ΠΊ Π±ΠΎΠ»ΡŒΡˆΠΎΠΌΡƒ количСству Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, эти ΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ Π½Π΅Π΄ΠΎΡ€ΠΎΠ³ΠΈΠ΅ Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΡΠ»ΡƒΠΆΠΈΡ‚ΡŒ Π²Π°ΠΌ ΠΎΡ‡Π΅Π½ΡŒ Π½Π΅ΠΏΠ»ΠΎΡ…ΠΎ.", + "quests.gregtech_energy.lce.title": "Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π΄ΠΈΠ·Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€", + "quests.gregtech_energy.lce.subtitle": "Π‘ΠΆΠΈΠ³Π°Π΅Ρ‚ Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ дизСль", + "quests.gregtech_energy.lce.desc.1": "&6Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π΄ΠΈΠ·Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€&r (&dΠ‘Π”Π“&r) ΠΈ &5Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ Π΄ΠΈΠ·Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€&r (&dΠ£Π”Π“&r) β€” ваши Π³Π»Π°Π²Π½Ρ‹Π΅ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹, Ссли Ρ‚Ρ‹ любишь ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Π½Π΅Ρ„Ρ‚ΡŒ Π² Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ. Π­Ρ‚ΠΈ Π΄Π²Π° &6ΠΏΠ»ΠΎΡ…ΠΈΡ… парня&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ ΠΎΠ΄Π½ΠΈ ΠΈ Ρ‚Π΅ ΠΆΠ΅ Π²ΠΈΠ΄Ρ‹ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° ΠΈ Π΄Π°ΠΆΠ΅ выглядят ΠΏΠΎΡ‡Ρ‚ΠΈ ΠΎΠ΄ΠΈΠ½Π°ΠΊΠΎΠ²ΠΎ β€” Π½ΠΎ для ΠΈΡ… создания Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ Ρ€Π°Π·Π½Ρ‹Π΅ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ Π‘Π”Π“, Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ½ΠΎ Π΄ΠΎΡΡ‚ΠΈΡ‡ΡŒ &5EV&r ΠΈ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ Π’ΠΈΡ‚Π°Π½, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΈΠΌΠ΅Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ ΠΎΠ΄Π½Ρƒ схСму EV. Для Π£Π”Π“ потрСбуСтся Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Π°Ρ ΡΡ‚Π°Π»ΡŒ ΠΈ схСма LuV β€” Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ ΡƒΠΆΠ΅ Π΄ΠΎΠ»ΠΆΠ΅Π½ ΡƒΠΌΠ΅Ρ‚ΡŒ ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ Π±Π΅Π· особых ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌ Π½Π° &1IV&r.", + "quests.gregtech_energy.lce.desc.2": "ОбС ΠΌΠ°ΡˆΠΈΠ½Ρ‹ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк для Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, Π° Ρ‚Π°ΠΊΠΆΠ΅ смазку. Для &dΠ‘Π”Π“&r ΠΈ &dΠ£Π”Π“&r Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ кислорода ΠΈΠ»ΠΈ ΠΆΠΈΠ΄ΠΊΠΎΠ³ΠΎ кислорода соотвСтствСнно даст Π²Π°ΠΌ &cΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹ΠΉ прирост энСргии&r. ΠŸΡ€ΠΎΠ²Π΅Ρ€ΡŒΡ‚Π΅ Ρ‚ΡƒΠ»Ρ‚ΠΈΠΏ Ρƒ Ρ‚Π²ΠΎΠ΅Π³ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΡ€Π°Π²Π½ΠΈΡ‚ΡŒ, сколько Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΉ энСргии Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡˆΡŒ с окислитСлями β€” это Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ‚ΠΎΠ³ΠΎ стоит.\n\nИмСй Π² Π²ΠΈΠ΄Ρƒ: ΠΎΠ±ΠΎΠΈΠΌ двигатСлям Π½ΡƒΠΆΠ΅Π½ люк Π³Π»ΡƒΡˆΠΈΡ‚Π΅Π»Ρ.", + "quests.gregtech_energy.lpt_fuel.title": "Плазма", + "quests.gregtech_energy.lpt_fuel.subtitle": "Она горячая", + "quests.gregtech_energy.lpt_fuel.desc.1": "&6Large Plasma Turbines&r require high-tech fuels to run, and we recommend two strong options:\n\nThe first option becomes available with your MK1 Fusion Reactor: &eHelium Plasma&r.\nYou can create it using Deuterium and Tritium Gas β€” both gases are obtained by distilling &aLiquid Ender Air&r.\nThis fuel isn't the most powerful, but it's by far the easiest and earliest to produce.", + "quests.gregtech_energy.lpt_fuel.desc.2": "The second option requires a MK3 Fusion Reactor and allows you to generate &eNickel Plasma&r.\nTo make it, you’ll need Liquid Potassium β€” which you can extract from various ores β€” and the infamous Fluorine, which you should already know how to produce by now.\n\n⚠ Don’t forget: Helium Gas and Liquid Nickel should be collected and returned to your storage for future reuse.\n\nThese two fuels are your best candidates for powering the &dLPT&r, depending on how far you've progressed in your industrial madness.", + "quests.gregtech_energy.lpt_fuel.task": "Π― Π½Π΅ Ρ…ΠΎΡ‡Ρƒ Π΄Π΅Π»Π°Ρ‚ΡŒ Π²Π΅Π΄Ρ€ΠΎ ΠΏΠ»Π°Π·ΠΌΡ‹", + "quests.gregtech_energy.lgt_fuel.title": "Π“Π°Π·ΠΎΠ²ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ", + "quests.gregtech_energy.lgt_fuel.subtitle": "Π›ΡŽΠ±ΠΈΠΌΡ‡ΠΈΠΊ сообщСства", + "quests.gregtech_energy.lgt_fuel.desc.1": "ВсС эти Π²ΠΈΠ΄Ρ‹ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ для &2Π³Π°Π·ΠΎΠ²Ρ‹Ρ… Ρ‚ΡƒΡ€Π±ΠΈΠ½&r β€” здСсь ΠΎΠ½ΠΈ отсортированы ΠΎΡ‚ Π½Π°ΠΈΠΌΠ΅Π½Π΅Π΅ эффСктивных ΠΊ Π»ΡƒΡ‡ΡˆΠΈΠΌ.\n\nΠ’ Ρ†Π΅Π»ΠΎΠΌ &bГазовая Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°&r Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ дСшСвлС своСго Π°Π½Π°Π»ΠΎΠ³Π° β€” &bдизСльного Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°&r, ΠΎΠ΄Π½Π°ΠΊΠΎ &eΠ³Π°Π·ΠΎΠ²ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ&r ΠΎΠ±Π»Π°Π΄Π°Π΅Ρ‚ мСньшСй энСргСтичСской ΠΏΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒΡŽ ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с ΠΆΠΈΠ΄ΠΊΠΈΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ. Π­Ρ‚ΠΎ Π½Π΅ Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‡Ρ‚ΠΎ ΠΎΠ½ΠΎ Ρ…ΡƒΠΆΠ΅ β€” лишь Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ для достиТСния Ρ‚ΠΎΠΉ ΠΆΠ΅ Π²Ρ‹Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Π²Π°ΠΌ потрСбуСтся большС ΠΌΠΈΠ»Π»ΠΈΠ±Π°ΠΊΠ΅Ρ‚ΠΎΠ² (mB). На Π±ΠΎΠ»Π΅Π΅ ΠΏΠΎΠ·Π΄Π½ΠΈΡ… этапах прогрСссии ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² &2Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π³Π°Π·ΠΎΠ²ΠΎΠΉ Ρ‚ΡƒΡ€Π±ΠΈΠ½Π΅&r β€” ΠΎΡ‡Π΅Π½ΡŒ ΠΌΠΎΡ‰Π½ΠΎΠΌ ΠΌΠ½ΠΎΠ³ΠΎΠ±Π»ΠΎΡ‡Π½ΠΎΠΌ ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠ΅, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ Ρ‡ΡƒΡ‚ΡŒ большС внимания ΠΈ управлСния.", + "quests.gregtech_energy.lgt_fuel.desc.2": "Π’ TerraFirmaGreg &eΠ³Π°Π·ΠΎΠ²ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ&r Π±Ρ‹Π»ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Π½ΠΎ ΠΈ пСрСбалансировано. &6ΠœΡ‹ Π½Π΅ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΏΠΎΠ»Π°Π³Π°Ρ‚ΡŒΡΡ Π½Π° &eΠ‘Π΅Π½Π·ΠΎΠ»&r ΠΈΠ»ΠΈ &eНитробСнзол&r, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ΠΈ Π±Ρ‹Π»ΠΈ сильно ослаблСны.&r Π’ Π½Π°Ρ‡Π°Π»Π΅ &7LV&r ΠΌΡ‹ совСтуСм ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &eΠ‘ΠΈΠ½Π³Π°Π·&r ΠΈΠ»ΠΈ &eΠ‘Π£Π“&r, Ссли Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ нСфтяной пСсок. ПозТС Π²Ρ‹ смоТСтС ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° &eΠ ΠΈΡ„ΠΎΡ€ΠΌΠ°Ρ‚-Π³Π°Π·&r Π½Π° этапС &bMV&r ΠΈ Π΅Ρ‰Ρ‘ большС ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ Π΅Π³ΠΎ производство послС открытия &2ΠšΡ€Π΅ΠΊΠΈΠ½Π³ΠΎΠ²ΠΎΠ³ΠΎ Π·Π°Π²ΠΎΠ΄Π°&r.", + "quests.gregtech_energy.lgt_fuel.task": "Π“Π°Π·... Π’ Π²Π΅Π΄Ρ€Π΅?", + "quests.gregtech_energy.syngas.title": "Π‘ΠΈΠ½Π³Π°Π·", + "quests.gregtech_energy.syngas.subtitle": "А ΠΏΠΎΡ‡Π΅ΠΌΡƒ ΠΎΠ½ Π½Π΅ синий?", + "quests.gregtech_energy.syngas.desc": "&eΠ‘ΠΈΠ½Ρ‚Π΅Π·-Π³Π°Π·&r β€” это Π½ΠΎΠ²ΠΎΠ΅ Π³Π°Π·ΠΎΠ²ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ Π² TFG. Π•Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ ΠΎΡ‡Π΅Π½ΡŒ Ρ€Π°Π½ΠΎ, ΡƒΠΆΠ΅ Π½Π° этапС &8ULV&r, ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² Π²Π°ΡˆΠΈΡ… ΠΏΠ΅Ρ€Π²Ρ‹Ρ… &6Π³Π°Π·ΠΎΠ²Ρ‹Ρ… Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°Ρ…&r Π²ΠΎ врСмя &7LV&r. Π­Ρ‚ΠΎ Π½Π΅ особо ΠΌΠΎΡ‰Π½ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, Π½ΠΎ Π΅Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Π² Ρ†Π΅Π½Π½Ρ‹Π΅ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ &eΠ‘ΠΌΠ°Π·ΠΊΠ°&r, &eΠœΠ΅Ρ‚Π°Π½&r ΠΈ &eΠ’ΠΎΠ΄ΠΎΡ€ΠΎΠ΄&r.\n\nНСсмотря Π½Π° Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ это Π½Π΅ самый ΡΠΈΠ»ΡŒΠ½Ρ‹ΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ ΠΈ Π΅Π³ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ слоТно ΠΌΠ°ΡΡˆΡ‚Π°Π±ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ всСго Ρ‚Ρ€ΠΈ &6ΠšΠΎΠΊΡΠΎΠ²Ρ‹Π΅ ΠΏΠ΅Ρ‡ΠΈ&r ΠΈ ΠΎΠ΄Π½Ρƒ &6Π’Π°Ρ€ΠΎΡ‡Π½ΡƒΡŽ ΠΌΠ°ΡˆΠΈΠ½Ρƒ&r ΠΈΠ»ΠΈ &6Π’Π°ΠΊΡƒΡƒΠΌΠ½ΡƒΡŽ ΠΊΠ°ΠΌΠ΅Ρ€Ρƒ&r, Ρ‚Ρ‹ смоТСшь ΠΎΠ±Π΅ΡΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½ΠΎΠ΅ производство, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π΄ΠΎΠ»ΠΆΠ½ΠΎ Ρ…Π²Π°Ρ‚ΠΈΡ‚ΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΄ΠΎΠΉΡ‚ΠΈ Π΄ΠΎ этапа &bMV&r ΠΈ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π±ΠΎΠ»Π΅Π΅ ΠΌΠΎΡ‰Π½Ρ‹ΠΉ &eΠ ΠΈΡ„ΠΎΡ€ΠΌΠ°Ρ‚-Π³Π°Π·&r.", + "quests.gregtech_energy.reformate_gas.title": "Π ΠΈΡ„ΠΎΡ€ΠΌΠ°Ρ‚-Π³Π°Π·", + "quests.gregtech_energy.reformate_gas.subtitle": "Π­Ρ‚ΠΎ Ρ€Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚ Π‘Π΅Π½Π·ΠΎΠ»Π°?", + "quests.gregtech_energy.reformate_gas.desc.1": "&9Π ΠΈΡ„ΠΎΡ€ΠΌΠ°Ρ‚-Π³Π°Π·&r β€” это Π½ΠΎΠ²ΠΎΠ΅ ΠΈ ΠΌΠΎΡ‰Π½ΠΎΠ΅ Π³Π°Π·ΠΎΠ²ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π½Π° этапС &bMV&r выполняСт ΠΏΡ€ΠΈΠ²Ρ‹Ρ‡Π½ΡƒΡŽ Ρ€ΠΎΠ»ΡŒ Π±Π΅Π½Π·ΠΎΠ»Π°.\n\nДля Π΅Π³ΠΎ производства Π²Π°ΠΌ потрСбуСтся ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ &6Π‘Π°ΡˆΠ½ΡŽ сТиТСния угля&r ΠΈ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ &5РСния&r ΠΈΠ· ΠΆΠΈΠ» &6Π’Π°Ρ€ΠΊΠΈΠ°Π½ΠΈΡ‚Π°&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²ΡΡ‚Ρ€Π΅Ρ‡Π°ΡŽΡ‚ΡΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² сухих ΠΈ ΠΆΠ°Ρ€ΠΊΠΈΡ… ΠΊΠ»ΠΈΠΌΠ°Ρ‚Π°Ρ…. Π”Π²Π΅ &6ΠŸΠΈΡ€ΠΎΠ»ΠΈΠ·Π½Ρ‹Π΅ ΠΏΠ΅Ρ‡ΠΈ&r β€” ΠΎΠ΄Π½Π° для производства ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚Π°, другая дрСвСсной смолы β€” обСспСчат всС Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹Π΅ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ для Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠΈ этого Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°. ΠŸΠΎΠΌΠ½ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ моТСшь ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ ΠΏΠ°Ρ€ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &6Тидкостный Π½Π°Π³Ρ€Π΅Π²Π°Ρ‚Π΅Π»ΡŒ&r, Ссли Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΡƒΠΏΡ€ΠΎΡΡ‚ΠΈΡ‚ΡŒ схСму.", + "quests.gregtech_energy.reformate_gas.desc.2": "Π’Π°ΠΊΠΆΠ΅ Π²Π°ΠΆΠ½ΠΎ ΡƒΡ‡ΠΈΡ‚Ρ‹Π²Π°Ρ‚ΡŒ ΠΏΠΎΠ²Ρ‹ΡˆΠ΅Π½Π½Ρ‹ΠΉ Π²Ρ‹Ρ…ΠΎΠ΄ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ†ΠΈΠΈ, доступный Π½Π° этапС &6HV&r ΠΏΡ€ΠΈ использовании &6ΠšΡ€Π΅ΠΊΠΈΠ½Π³ΠΎΠ²ΠΎΠ³ΠΎ Π·Π°Π²ΠΎΠ΄Π°&r. Π­Ρ‚ΠΎ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Ρ‚Π΅Π±Π΅ Π²ΠΎΠ·Π²Ρ€Π°Ρ‰Π°Ρ‚ΡŒ Π² Ρ†ΠΈΠΊΠ» Π±ΠΎΠ»ΡŒΡˆΡƒΡŽ Ρ‡Π°ΡΡ‚ΡŒ вашСго &5РСния&r, дСлая Ρ€Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚-Π³Π°Π· фактичСски бСсконСчным Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ.\n\nΠ”ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ &9Азота&r ΠΈ &9Π’ΠΎΠ΄ΠΎΡ€ΠΎΠ΄Π°&r Π² процСсс Π΅Ρ‰Ρ‘ большС ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ ΠΏΡ€ΠΎΠΏΡƒΡΠΊΠ½ΡƒΡŽ ΡΠΏΠΎΡΠΎΠ±Π½ΠΎΡΡ‚ΡŒ производства.", + "quests.gregtech_energy.btx.title": "Π‘Π’Πš", + "quests.gregtech_energy.btx.subtitle": "ΠŸΡ€ΠΈ Ρ‡Π΅ΠΌ Ρ‚ΡƒΡ‚ Π±ΠΈΡ‚ΠΊΠΎΠΈΠ½?", + "quests.gregtech_energy.btx.desc": "ΠŸΠΎΠ»ΡƒΡ‡ΠΈΠ² &5EV Π²Ρ…ΠΎΠ΄Π½Ρ‹Π΅ энСргСтичСскиС люки&r, Ρ‚Ρ‹ Π½Π°ΠΊΠΎΠ½Π΅Ρ† смоТСшь Π·Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ производство &eΠ‘Π’Πš-Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r (Π‘Π΅Π½Π·ΠΎΠ»-Π’ΠΎΠ»ΡƒΠΎΠ»-Ксилол). Π­Ρ‚ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ прослуТит Ρ‚Π΅Π±Π΅ ΠΎΡ‡Π΅Π½ΡŒ Π΄ΠΎΠ»Π³ΠΎ ΠΈ остаётся конкурСнтоспособным Π² &6Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π³Π°Π·ΠΎΠ²ΠΎΠΉ Ρ‚ΡƒΡ€Π±ΠΈΠ½Π΅&r Π΄Π°ΠΆΠ΅ Π½Π° ΠΏΠΎΠ·Π΄Π½ΠΈΡ… этапах ΠΈΠ³Ρ€Ρ‹. Π”Π°ΠΆΠ΅ Ссли ΠΏΠΎΠ½Π°Ρ‡Π°Π»Ρƒ это выглядит ΠΊΠ°ΠΊ ΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹ΠΉ ΠΎΠ±ΡŠΡ‘ΠΌ Ρ€Π°Π±ΠΎΡ‚Ρ‹, Π±ΡƒΠ΄ΡŒ ΡƒΠ²Π΅Ρ€Π΅Π½ β€” усилия ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ окупятся.\n\nΠ­Ρ‚Π° производствСнная линия Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ большого количСства рСсурсов Π½Π° основС дрСвСсины. Π‘ΠΌΠΎΠ»Π° становится Π²Π°ΠΆΠ½ΠΎΠΉ снова ΠΈΠ·-Π·Π° нСобходимости Π² &eКлСС&r β€” Ρ‚Ρ‹ моТСшь Π»ΠΈΠ±ΠΎ пассивно ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ Π΅Ρ‘ с Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π² с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ подсочки, Π»ΠΈΠ±ΠΎ Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ ΠΈΠ· Π±Ρ€Ρ‘Π²Π΅Π½. Π’Π°ΠΊΠΆΠ΅ Ρ‚Π΅Π±Π΅ понадобится ΠΏΠ΅Ρ€Π΅Π³ΠΎΠ½ΡΡ‚ΡŒ &eΠ”Ρ€Π΅Π²Π΅ΡΠ½ΡƒΡŽ смолу&r Π² &6Π Π΅ΠΊΡ‚ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΠΎΠ½Π½ΠΎΠΉ ΠΊΠΎΠ»ΠΎΠ½Π½Π΅&r. Помимо этого, ΡƒΠ±Π΅Π΄ΠΈΡΡŒ, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ моТСшь ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ бСсконСчныС ΠΎΠ±ΡŠΡ‘ΠΌΡ‹ &eΠ­Ρ‚Π°Π½ΠΎΠ»Π°&r, &eНСзСр-ΠΊΠ²Π°Ρ€Ρ†Π°&r, &eНатрия&r, &eАммиака&r, &eΠ©Ρ‘Π»ΠΎΡ‡ΠΈ&r ΠΈ &eЛистов ΡƒΠΊΡ€Π΅ΠΏΠ»Ρ‘Π½Π½ΠΎΠΉ эпоксидной смолы&r.\n\nЕсли Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ΅Π½ Π±ΠΎΠ»Π΅Π΅ ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½Ρ‹ΠΉ Ρ€Π°Π·Π±ΠΎΡ€ производствСнной Ρ†Π΅ΠΏΠΎΡ‡ΠΊΠΈ Π‘Π’Πš-Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡΡŒ ΠΊ Π³Π»Π°Π²Π΅ &5EV&r.", + "quests.gregtech_energy.fission_rod.title": "Fission Fuels", + "quests.gregtech_energy.fission_rod.subtitle": "Don't get me too hot", + "quests.gregtech_energy.fission_rod.desc.1": "The Earth Fission materials are NYI but may come sooner than later", + "quests.gregtech_energy.fission_rod.desc.2": "", + "quests.gregtech_energy.fission_rod.task": "", + "quests.gregtech_energy.smr.title": "Small Modular Reactor", + "quests.gregtech_energy.smr.subtitle": "Finally Power for these far outposts", + "quests.gregtech_energy.smr.desc.1": "The Small Modular Reactor is NYI but may come sooner than later", + "quests.gregtech_energy.smr.desc.2": "", + "quests.gregtech_energy.smr.task": "", + "quests.gregtech_energy.gasoline.title": "Π‘Π΅Π½Π·ΠΈΠ½", + "quests.gregtech_energy.gasoline.subtitle": "Π‘Ρ€Π΅Π΄Π½ΠΈΠΉ Ρ€Π΅Π±Ρ‘Π½ΠΎΠΊ", + "quests.gregtech_energy.gasoline.desc": "&aΠ‘Π΅Π½Π·ΠΈΠ½&r β€” это Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΌΠΎΡ‰Π½ΠΎΠ΅ ΠΆΠΈΠ΄ΠΊΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π²Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚Π΅ Π½Π° этапС &6HV&r, Π½ΠΎ Π½Π° ΠΏΡ€Π°ΠΊΡ‚ΠΈΠΊΠ΅ Π½Π°Ρ‡ΠΈΠ½Π°Π΅Ρ‚Π΅ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π΅Π³ΠΎ лишь послС постройки ΠΏΠ΅Ρ€Π²Ρ‹Ρ… &6Π Π΅ΠΊΡ‚ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΠΎΠ½Π½Ρ‹Ρ… ΠΊΠΎΠ»ΠΎΠ½Π½&r. &7Π’ΠΎΠ»ΡƒΠΎΠ»&r Π»Π΅Π³ΠΊΠΎ получаСтся ΠΈΠ· &7ДрСвСсной смолы&r ΠΈΠ»ΠΈ &7ВяТёлого Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r, Π° всё ΠΎΡΡ‚Π°Π»ΡŒΠ½ΠΎΠ΅, Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ понадобится, β€” это &dНСфтяной Π³Π°Π·&r, &7Нафта&r ΠΈ смСсь ΠΈΠ· &3ΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄Π°&r, &bΠ’ΠΎΠ΄ΠΎΡ€ΠΎΠ΄Π°&r ΠΈ &1Π£Π³Π»Π΅Ρ€ΠΎΠ΄Π°&r.\n\nОн ΠΌΠΎΡ‰Π½Ρ‹ΠΉ, довольно простой Π² производствС ΠΈ, Ρ‡Ρ‚ΠΎ Π΅Ρ‰Ρ‘ Π»ΡƒΡ‡ΡˆΠ΅, Π΅Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ Π΄ΠΎ &cВысокооктанового Π±Π΅Π½Π·ΠΈΠ½Π°&r.", + "quests.gregtech_energy.high_gasoline.title": "Высокооктановый Π±Π΅Π½Π·ΠΈΠ½", + "quests.gregtech_energy.high_gasoline.subtitle": "ΠšΡ€Π°ΠΉΠ½Π΅ ΠΌΠΎΡ‰Π½Ρ‹ΠΉ", + "quests.gregtech_energy.high_gasoline.desc": "ΠŸΡ€ΡΠΌΠΎΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &cΠ‘Π΅Π½Π·ΠΈΠ½Π°&r β€” это &5Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ Π² Π΄Π²Π° Ρ€Π°Π·Π° ΠΌΠΎΡ‰Π½Π΅Π΅&r. Как Π½ΠΈ странно, ΠΏΠΎ названию этого Π½Π΅ скаТСшь: Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ &dΠžΠΊΡ‚Π°Π½&r, Π½ΠΎ ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ &7НСфтСпродуктов&r. На этом этапС ΠΌΡ‹ ΠΎΠΆΠΈΠ΄Π°Π΅ΠΌ, Ρ‡Ρ‚ΠΎ Π²Ρ‹ ΡƒΠΆΠ΅ ΡƒΠΌΠ΅Π΅Ρ‚Π΅ ΠΎΡ€ΠΈΠ΅Π½Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒΡΡ Π² &bEMI&r ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°Ρ‡Π°Ρ‚ΡŒ производство этого Π±Π΅Π·ΡƒΠΌΠ½ΠΎ ΠΌΠΎΡ‰Π½ΠΎΠ³ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°.", + "quests.gregtech_energy.lst_fuel.title": "Π­Ρ‚ΠΎ ΠΏΠ°Ρ€", + "quests.gregtech_energy.lst_fuel.subtitle": "НС Π² ΠΌΠ°ΡΡ‚ΡŒ Ρ‚Π΅Π±Π΅ Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠΎΡ‚Π»Ρ‹", + "quests.gregtech_energy.lst_fuel.desc": "ΠŸΠ°Ρ€ β€” это нСслоТно: просто вскипяти Π²ΠΎΠ΄Ρƒ.\n\nДля эффСктивного производства ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &6Π‘ΠΎΠ»ΡŒΡˆΠΈΠ΅ ΠΊΠΎΡ‚Π»Ρ‹&r. БущСствуСт Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ вСрсии: для &8ULV&r, &bMV&r, &5EV&r ΠΈ &1IV&r. ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Π΄Π°Ρ‘Ρ‚ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ прирост Π²Ρ‹Ρ…ΠΎΠ΄Π° ΠΏΠ°Ρ€Π°.\n\nОднако ΠΈΠΌΠ΅ΠΉΡ‚Π΅ Π² Π²ΠΈΠ΄Ρƒ: ΠΌΠ°ΡΡˆΡ‚Π°Π±ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ &dΠ‘ΠΎΠ»ΡŒΡˆΠΎΠΉ ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠΉ Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹&r с этими ΠΊΠΎΡ‚Π»Π°ΠΌΠΈ Π½Π΅ самоС эффСктивноС ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с Π΄Ρ€ΡƒΠ³ΠΈΠΌΠΈ способами Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠΈ энСргии.\n\nΠ‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ ΠΈΠ³Ρ€ΠΎΠΊΠΎΠ² ΠΏΡ€ΠΎΠΏΡƒΡΠΊΠ°ΡŽΡ‚ Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²Ρ‹Π΅ ΠΈ Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ ΠΊΠΎΡ‚Π»Ρ‹ β€” ΠΎΠ½ΠΈ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‚, Ссли Ρ‚Π΅Π±Π΅ ΠΎΡ‡Π΅Π½ΡŒ хочСтся, Π½ΠΎ ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΈΡ… Π½Π΅Π²Ρ‹Π³ΠΎΠ΄Π½ΠΎ. ΠŸΠ°Ρ€ просто ΠΏΠ»ΠΎΡ…ΠΎ ΠΌΠ°ΡΡˆΡ‚Π°Π±ΠΈΡ€ΡƒΠ΅Ρ‚ΡΡ!\n\nНапоминаниС: &e2 mB&r ΠΏΠ°Ρ€Π° = &e1 EU&r.", + "quests.gregtech_energy.lst_fuel.task": "Π― ΠΏΠ΅Ρ€Π΅ΠΉΠ΄Ρƒ Π½Π° Π±ΠΎΠ»Π΅Π΅ энСргоСмкоС Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ", + "quests.gregtech_energy.lst_fuel.task.1": "Π‘ΠΎΠ»ΡŒΡˆΠΈΠ΅ ΠΊΠΎΡ‚Π»Ρ‹", + "quests.gregtech_energy.lce_fuel.title": "Π–ΠΈΠ΄ΠΊΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ", + "quests.gregtech_energy.lce_fuel.subtitle": "Π›ΡŽΠ±ΠΈΠΌΠ΅Ρ† Ρ‚Π΅Ρ…, ΠΊΠΎΠΌΡƒ ΠΏΠ»Π΅Π²Π°Ρ‚ΡŒ Π½Π° экологию", + "quests.gregtech_energy.lce_fuel.desc.1": "ВсС эти Π²ΠΈΠ΄Ρ‹ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ для &6Π”ΠΈΠ·Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°&r β€” здСсь ΠΎΠ½ΠΈ отсортированы ΠΎΡ‚ Π½Π°ΠΈΠΌΠ΅Π½Π΅Π΅ эффСктивных ΠΊ Π»ΡƒΡ‡ΡˆΠΈΠΌ.\n\nНа Ρ€Π°Π½Π½ΠΈΡ… этапах ΠΈΠ³Ρ€Ρ‹ ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ Π½Π°Ρ‡ΠΈΠ½Π°Ρ‚ΡŒ с дизСля ΠΈΠ»ΠΈ биодизСля. ПозТС Ρ‚Ρ‹ смоТСшь ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ ΠΈΡ… Π΄ΠΎ &6Π½ΠΈΡ‚Ρ€ΠΎ-дизСля&r Π½Π° этапС &6HV&r, смСшав Π΅Π³ΠΎ с Π°Π·ΠΎΡ‚ΠΎΠΌ, Π²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄ΠΎΠΌ ΠΈ кислородом.", + "quests.gregtech_energy.lce_fuel.desc.2": "Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‚Ρ‹ Π΄ΠΎΡΡ‚ΠΈΠ³Π½Π΅ΡˆΡŒ &5EV&r ΠΈ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡˆΡŒ Π² своё распоряТСниС &6Π Π΅ΠΊΡ‚ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΠΎΠ½Π½Ρ‹Π΅ ΠΊΠΎΠ»ΠΎΠ½Π½Ρ‹&r, самоС врСмя ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° Π±Π΅Π½Π·ΠΈΠ½ ΠΈ высокооктановый Π±Π΅Π½Π·ΠΈΠ½. НС пытайтся Π΄Π΅Π»Π°Ρ‚ΡŒ это слишком Ρ€Π°Π½ΠΎ β€” Π½Π΅Ρ„Ρ‚ΡŒ Π½ΡƒΠΆΠ½ΠΎ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎ Π΄ΠΈΡΡ‚ΠΈΠ»Π»ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ, Π° использованиС ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Ρ… дистилляторов для этого ΡΠΎΠ²Π΅Ρ€ΡˆΠ΅Π½Π½ΠΎ нСэффСктивно.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ всё Π·Π°Ρ€Π°Π±ΠΎΡ‚Π°Π»ΠΎ, Π²Π°ΠΌ понадобится сочСтаниС дистилляции Π½Π΅Ρ„Ρ‚ΠΈ ΠΈ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ ΠΎΡ€Π³Π°Π½ΠΈΠΊΠΈ. К ΡΡ‡Π°ΡΡ‚ΡŒΡŽ, пиролизная ΠΏΠ΅Ρ‡ΡŒ ΠΈ РСктификационная ΠΊΠΎΠ»ΠΎΠ½Π½Π° справятся с этим Π±Π΅Π· ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌ.\n\nЕсли Ρ‚Π΅Π±Π΅ удастся ΠΎΠ±Π΅ΡΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½ΠΎΠ΅ производство высокооктанового Π±Π΅Π½Π·ΠΈΠ½Π°, Ρ‚Ρ‹ смоТСшь ΠΏΡ€ΠΎΠΉΡ‚ΠΈ вСсь ΠΌΠΎΠ΄ΠΏΠ°ΠΊ, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π΄ΠΈΠ·Π΅Π»ΡŒΠ½Ρ‹Π΅ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹.", + "quests.gregtech_energy.lce_fuel.task": "Пон", + "quests.gregtech_energy.large_solar.subtitle": "ΠžΠ³Ρ€ΠΎΠΌΠ½Π°Ρ лёгкая энСргия", + "quests.gregtech_energy.large_solar.desc.1": "Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ солнСчный массив MK I станСт для тСбя основным Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅ΠΌ, Ссли Ρ‚Ρ‹ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΠΎΠ±ΡƒΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΊΡ€ΡƒΠΏΠ½ΡƒΡŽ Π±Π°Π·Ρƒ Π½Π° Π›ΡƒΠ½Π΅.\n\nОна особСнно ΠΏΠΎΠ»Π΅Π·Π½Π° для производствСнных Π»ΠΈΠ½ΠΈΠΉ &bAE2&r ΠΈ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΈΡ‚Π°Ρ‚ΡŒ Ρ‚Π²ΠΎΠΈ Π΄ΠΎΠ±Ρ‹Ρ‚Ρ‡ΠΈΠΊΠΈ Π»ΡƒΠ½Π½ΠΎΠΉ ΠΏΡ‹Π»ΠΈ.\n\nНС Π·Π°Π±Ρ‹Π²Π°ΠΉ, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Β«Π’Π΅Ρ€ΠΌΠΈΠ½Π°Π»Β» ΠΈΠ· GregTech, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΌΠ³Π½ΠΎΠ²Π΅Π½Π½ΠΎ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ, Π·Π°ΠΆΠ°Π² Shift ΠΈ ΠΊΠ»ΠΈΠΊΠ½ΡƒΠ² ПКМ ΠΏΠΎ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Ρƒ.\n\nΠŸΡ€ΠΎΠ²Π΅Ρ€ΡŒ доступныС Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, просто Π½Π°ΠΆΠ°Π² &eU&r Π½Π° ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Π΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ всС Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹.", + "quests.gregtech_energy.large_solar.desc.2": "&6Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ солнСчный массив MK I&r ΠΈΠΌΠ΅Π΅Ρ‚ &92 Ρ€Π°Π·Π½Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°&r:\n\n&9β€’ ΠŸΠ°ΡΡΠΈΠ²Π½Ρ‹ΠΉ Ρ€Π΅ΠΆΠΈΠΌ&r β€”\nΠ’ этом Ρ€Π΅ΠΆΠΈΠΌΠ΅ ΠΎΠ½Π° ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎ расходуСт &dΠ±Π°Π·ΠΎΠ²Ρ‹Π΅ фотооэлСктричСскиС ячСйки&r, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΎΠ½ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚, ΠΊΠΎΠ³Π΄Π° Ρ‚Ρ‹ Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎ ΠΎΠ±ΡƒΡΡ‚Ρ€Π°ΠΈΠ²Π°Π΅ΡˆΡŒ Π±Π°Π·Ρƒ ΠΈ просто Π·Π°ΠΊΠΈΠ΄Ρ‹Π²Π°Π΅ΡˆΡŒ Ρ‚ΡƒΠ΄Π° стак, Π½ΠΎ Π²Π΅Ρ‡Π½ΠΎ Ρ‚Π°ΠΊ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚. Π”Π½Ρ‘ΠΌ ΠΎΠ½Π° Π±ΡƒΠ΄Π΅Ρ‚ Π³Π΅Π½Π΅Ρ€ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ всСго &62A HV&r β€” достаточно для Π±Π°Π·ΠΎΠ²Ρ‹Ρ… систСм, Π½ΠΎ Π΄Π°Π»Π΅ΠΊΠΎ Π½Π΅ ΠΎΠΏΡ‚ΠΈΠΌΠ°Π»ΡŒΠ½ΠΎ.\n\n&9β€’ Активный Ρ€Π΅ΠΆΠΈΠΌ&r β€”\nЕсли Ρ‚Ρ‹ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ &aΠΌΠ°ΠΊΡΠΈΠΌΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π²Ρ‹Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ энСргии&r, Ρ‚Π΅Π±Π΅ придётся ΡƒΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰Π΅ΠΉ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒΡŽ. Для этого лунная Π±Π°Π·Π° Π΄ΠΎΠ»ΠΆΠ½Π° Π±Ρ‹Ρ‚ΡŒ Π±ΠΎΠ»Π΅Π΅ Ρ€Π°Π·Π²ΠΈΡ‚ΠΎΠΉ, Π½ΠΎ Π½Π°Π³Ρ€Π°Π΄Π° Ρ‚ΠΎΠ³ΠΎ стоит: вмСсто этого Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡˆΡŒ &52A EV&r!\n\nΠ’Π°ΠΊΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‚ вСрсии MK II ΠΈ MK III для Π±ΠΎΠ»Π΅Π΅ высоких Ρ‚ΠΈΡ€ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΌ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ Π±ΠΎΠ»Π΅Π΅ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚ΠΎΠ΅ ΠΎΡ…Π»Π°ΠΆΠ΄Π΅Π½ΠΈΠ΅.", + "quests.gregtech_energy.large_solar_t2.subtitle": "Π•Ρ‰Π΅ сильнСС", + "quests.gregtech_energy.large_solar_t2.desc.1": "Если Ρ‚Ρ‹ ΡΡ‚Ρ€ΠΎΠΈΡˆΡŒ &dΠ±Π°Π·Ρƒ AE2 Π½Π° Π›ΡƒΠ½Π΅&r, скорСС всСго, Ρ‚Π΅Π±Π΅ понадобится Π³ΠΎΡ€Π°Π·Π΄ΠΎ большС энСргии. И Ρ‚ΡƒΡ‚ Π½Π° ΠΏΠΎΠΌΠΎΡ‰ΡŒ ΠΏΡ€ΠΈΡ…ΠΎΠ΄ΠΈΡ‚ &6Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ солнСчный массив MK II&r!\n\nКак ΠΈ вСрсия MK I, ΠΎΠ½Π° ΠΏΡ€Π΅Π΄Π»Π°Π³Π°Π΅Ρ‚ 2 Ρ€Π°Π·Π½Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° β€” Π½ΠΎ Π½Π° этот Ρ€Π°Π· Π½ΠΈ ΠΎΠ΄ΠΈΠ½ ΠΈΠ· Π½ΠΈΡ… Π½Π΅ являСтся ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ пассивным.", + "quests.gregtech_energy.large_solar_t2.desc.2": "И &bΠ‘ΠΎΠ»Π½Π΅Ρ‡Π½Ρ‹ΠΉ Ρ…Π»Π°Π΄Π°Π³Π΅Π½Ρ‚&r, ΠΈ &bΠšΡ€ΠΈΠΎΠ³Π΅Π½ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ Ρ„Π»ΡŽΠΈΡ&r ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ возобновляСмы Π½Π° Π›ΡƒΠ½Π΅. Π‘ΠΎΠ»Π΅Π΅ Ρ‚ΠΎΠ³ΠΎ, Ρ†ΠΈΠΊΠ» солнСчного охладитСля Π²ΠΎΠ·Ρ€Π°Ρ‰Π°Π΅Ρ‚ входящиС &eΠ€Ρ‚ΠΎΡ€&r ΠΈ &eΠ₯Π»ΠΎΡ€&r β€” Π° Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ΅Π½ лишь ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ ΠΏΡ€ΠΈΡ‚ΠΎΠΊ:\n\nβ€’ ГСлия-3 β€” Π΅Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &aЖидкостной Π±ΡƒΡ€ΠΎΠ²ΠΎΠΉ установки&r\nβ€’ Π’ΠΎΠ΄Ρ‹ β€” собирай Π΅Ρ‘ пассивно с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &aТидкостного ΠΊΠΎΠ»Π»Π΅ΠΊΡ‚ΠΎΡ€Π°&r\n\n&cАварийный Ρ€Π΅ΠΆΠΈΠΌ питания:&r\nЕсли ΠΏΠΎΠ΄Π°Ρ‡Π° ТидкостСй прСрвётся, MK II всё Ρ€Π°Π²Π½ΠΎ смоТСт Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ фотооэлСктричСскиС ячСйки.\nΠ­Ρ‚ΠΎΡ‚ Ρ€Π΅Π·Π΅Ρ€Π²Π½Ρ‹ΠΉ Ρ€Π΅ΠΆΠΈΠΌ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Π±Π°Π·Π΅ ΠΎΡΡ‚Π°Π²Π°Ρ‚ΡŒΡΡ со свСтом, ΠΏΠΎΠΊΠ° Ρ‚Ρ‹ Ρ€Π°Π·Π±ΠΈΡ€Π°Π΅ΡˆΡŒΡΡ с ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠΎΠΉ.\n\nΠžΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ элСмСнт для любой ΡΠ΅Ρ€ΡŒΡ‘Π·Π½ΠΎΠΉ Π²Π½Π΅Π·Π΅ΠΌΠ½ΠΎΠΉ AE2-инфраструктуры.", + "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Π”Π½Ρ‘ΠΌ ΠΎΠ½Π° Π²Ρ‹Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅Ρ‚ 32 EU/t, Π½ΠΎ ΠΈΠΌΠ΅ΠΉ Π² Π²ΠΈΠ΄Ρƒ, Ρ‡Ρ‚ΠΎ Π½Π° самом Π΄Π΅Π»Π΅ ΠΎΠ½Π° Π³Π΅Π½Π΅Ρ€ΠΈΡ€ΡƒΠ΅Ρ‚ RF, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Ρ‚Π΅Π±Π΅ понадобится ΠΊΠΎΠ½Π²Π΅Ρ€Ρ‚Π΅Ρ€, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Π³ΠΎ Π² EU.\n\nΠ’Ρ‹ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΎΠ΄ΠΈΠ½ &bMV ΠΏΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΠΎΠ²Π°Ρ‚Π΅Π»ΡŒ энСргии&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НС Π½Π΅Π΄ΠΎΠΎΡ†Π΅Π½ΠΈΠ²Π°ΠΉ силу Ρ…ΠΎΡ€ΠΎΡˆΠ΅ΠΉ Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ β€” ΠΈΠΌΠ΅Π½Π½ΠΎ ΠΎΠ½Π° ΠΌΠΎΠΆΠ΅Ρ‚ спасти Ρ‚Π²ΠΎΡŽ Π±Π°Π·Ρƒ ΠΎΡ‚ блэкаута Π² самый критичСский ΠΌΠΎΠΌΠ΅Π½Ρ‚.", + "quests.gregtech_energy.storage.task": "Π― понял", + "quests.gregtech_energy.tank.title": "Π₯Ρ€Π°Π½Π΅Π½ΠΈΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°", + "quests.gregtech_energy.tank.subtitle": "БущСствуСт большС Π²ΠΈΠ΄ΠΎΠ² Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ, Ρ‡Π΅ΠΌ просто элСктричСскиС", + "quests.gregtech_energy.tank.desc.1": "ΠžΡ‡Π΅Π²ΠΈΠ΄Π½ΠΎ, Ρ‡Ρ‚ΠΎ Ρ…Ρ€Π°Π½Π΅Π½ΠΈΠ΅ энСргии ΠΌΠΎΠΆΠ΅Ρ‚ ΠΎΠ·Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΈ Ρ…Ρ€Π°Π½Π΅Π½ΠΈΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ ΠΎΠ½Π° производится.\n\nДля Ρ‚Π°ΠΊΠΎΠ³ΠΎ случая, хотя Π±ΠΎΡ‡ΠΊΠΈ ΠΈ ящики β€” Π½Π΅ΠΏΠ»ΠΎΡ…ΠΈΠ΅ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹ Π½Π° Ρ€Π°Π½Π½ΠΈΡ… этапах, Ρ‚Π΅Π±Π΅ Π½Π΅ стоит ΠΈΠ³Π½ΠΎΡ€ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ &dΠ‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€&r ΠΈ &dΠ‘ΡƒΠΏΠ΅Ρ€ сундук&r.", + "quests.gregtech_energy.tank.desc.2": "Π­Ρ‚ΠΈ монстры способны Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ ΠΊΠΎΠ»ΠΎΡΡΠ°Π»ΡŒΠ½Ρ‹Π΅ ΠΎΠ±ΡŠΡ‘ΠΌΡ‹ ТидкостСй ΠΈΠ»ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² β€” идСально для Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Ρ… энСргСтичСских схСм, особСнно Ссли Ρ‚Ρ‹ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ Π³Π΅Π½Π΅Ρ€ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ Π΄Π°Π»Π΅ΠΊΠΎ ΠΎΡ‚ основной Π±Π°Π·Ρ‹, Π½Π΅ прокладывая Ρ†Π΅Π»ΡƒΡŽ ΡΠ΅Ρ‚ΡŒ ΠΊΠ°Π±Π΅Π»Π΅ΠΉ.\n\nΠŸΡ€ΠΎΡΡ‚ΠΎ Π·Π°Π³Ρ€ΡƒΠ·ΠΈ ΠΈΡ… Π³Π°Π·ΠΎΠΌ, Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ, ΠΏΠ°Ρ€ΠΎΠΌ ΠΈΠ»ΠΈ Π΄Π°ΠΆΠ΅ ΠΏΠ»Π°Π·ΠΌΠΎΠΉ β€” ΠΈ ΠΏΡƒΡΡ‚ΡŒ ΠΎΠ½ΠΈ Π΄Π΅Π»Π°ΡŽΡ‚ всё ΠΎΡΡ‚Π°Π»ΡŒΠ½ΠΎΠ΅. ΠŸΡ€ΠΈ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠΌ ΠΏΠ»Π°Π½ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠΈ Ρ‚Π²ΠΎΠΈ аванпосты ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π°Π²Ρ‚ΠΎΠ½ΠΎΠΌΠ½ΠΎ, Π±Π΅Π· прямого ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ ΠΊ Ρ†Π΅Π½Ρ‚Ρ€Π°Π»ΡŒΠ½ΠΎΠΉ энСргосСти.\n\nЭнСргия Π½Π΅ всСгда пСрСдаётся ΠΏΠΎ ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π°ΠΌ β€” ΠΈΠ½ΠΎΠ³Π΄Π° ΠΎΠ½Π° ΠΏΡ€ΠΈΡ…ΠΎΠ΄ΠΈΡ‚ Π² Π±ΠΎΡ‡ΠΊΠ°Ρ….", + "quests.gregtech_energy.tank.task": "Π›ΡŽΠ±ΠΎΠΉ супСр Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€", + "quests.gregtech_energy.battery_buffer.title": "Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€", + "quests.gregtech_energy.battery_buffer.subtitle": "Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€ Ρ‚Π°ΠΊ ΠΈ просит, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π² Π½Π΅Π³ΠΎ вставляли Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ", + "quests.gregtech_energy.battery_buffer.desc.1": "Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹Π΅ Π±ΡƒΡ„Π΅Ρ€Ρ‹ β€” это Π±Π°Π·ΠΎΠ²Ρ‹Π΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ для хранСния ΠΈ управлСния энСргиСй, хотя тСхничСски сами ΠΏΠΎ сСбС ΠΎΠ½ΠΈ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ Π½Π΅ хранят. Они просто слуТат Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ΠΌ для Ρ‚Π²ΠΎΠΈΡ… Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ.\n\n&c⚠ Если Π½Π΅ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ½ΠΈ Π²Π·ΠΎΡ€Π²Π°Π»ΠΈΡΡŒ&r:\n- &4Никогда Π½Π΅ ΠΏΠΎΠ΄Π°Π²Π°ΠΉ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ Π±ΠΎΠ»Π΅Π΅ высокого Ρ‚ΠΈΡ€Π°&r Π² Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€ низшСго Ρ‚ΠΈΡ€Π°.\n- Π‘Π°Ρ‚Π°Ρ€Π΅ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π·Π°Ρ€ΡΠΆΠ°Ρ‚ΡŒΡΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ссли ΠΎΠ½ΠΈ &cΡ‚ΠΎΠ³ΠΎ ΠΆΠ΅ ΠΈΠ»ΠΈ Π±ΠΎΠ»Π΅Π΅ Π½ΠΈΠ·ΠΊΠΎΠ³ΠΎ Ρ‚ΠΈΡ€Π°&r, Ρ‡Π΅ΠΌ сам Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€.", + "quests.gregtech_energy.battery_buffer.desc.2": "Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Ρ‚ΡŒ Π΄ΠΎ 2Γ— своСго Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π°ΠΌΠΏΠ΅Ρ€Π°ΠΆΠ°.\nΠ’Π°ΠΊ, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, 4Γ— Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€ΠΈΠ½ΡΡ‚ΡŒ &a8A&r β€” Π½ΠΎ выдаст максимум &e4A&r (ΠΏΠΎ 1A Π½Π° ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ слот Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ).\n\n&eНапоминаниС&r:\n- НСт Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ = Π½Π΅Ρ‚ Π²Ρ‹Ρ…ΠΎΠ΄Π° энСргии.\n- ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²ΠΎ Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ опрСдСляСт число Π°ΠΌΠΏΠ΅Ρ€ Π½Π° Π²Ρ‹Ρ…ΠΎΠ΄Π΅. (Π’ΠΎ Π΅ΡΡ‚ΡŒ &68Γ— Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€&r с всСго &e3 батарСями&r Π±ΡƒΠ΄Π΅Ρ‚ Π²Ρ‹Π΄Π°Π²Π°Ρ‚ΡŒ лишь &e3A&r.)\n\nΠ˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ ΠΈΡ… с ΡƒΠΌΠΎΠΌ β€” это основа любой ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½ΠΎΠΉ энСргосСти.", + "quests.gregtech_energy.battery_buffer.task.1": "Π›ΡŽΠ±ΠΎΠΉ Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€", + "quests.gregtech_energy.battery_buffer.task.2": "Π’Ρ‹ΠΊ", + "quests.gregtech_energy.pss.title": "Биловая подстанция", + "quests.gregtech_energy.pss.subtitle": "ВсС яйца Π² ΠΎΠ΄Π½Ρƒ ΠΊΠΎΡ€Π·ΠΈΠ½Ρƒ", + "quests.gregtech_energy.pss.desc.1": "&dБиловая подстанция&r β€” это &6ΡƒΠ»ΡŒΡ‚ΠΈΠΌΠ°Ρ‚ΠΈΠ²Π½Ρ‹ΠΉ настраиваСмый Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ&r. Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‚Ρ‹ смоТСшь ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ Π΅Ρ‘ Π½Π° этапС &1IV&r, ΠΎΠ½Π° Π±Π΅Π· ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌ станСт Ρ†Π΅Π½Ρ‚Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΌ источником энСргии Ρ‚Π²ΠΎΠ΅ΠΉ Π±Π°Π·Ρ‹, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΈΠΌΠ΅Π΅Ρ‚ смысл ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π΅Ρ‘ ΠΎΠ΄Π½ΠΎΠΉ ΠΈΠ· ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹Ρ… Ρ†Π΅Π»Π΅ΠΉ.\n\nОна способна Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ энСргии… Ρ‡Ρ‚ΠΎ, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Ρ‚Π΅Π±Π΅ понадобится нСсколько ΠΆΠΈΠ·Π½Π΅ΠΉ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ Π΅Ρ‘ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ.", + "quests.gregtech_energy.pss.desc.2": "&eКак это Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚&r:\n- ΠŸΠΎΡΡ‚Ρ€ΠΎΠΉ структуру, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ &aΠŸΠ°Π»Π°Π΄ΠΈΠ΅Π²Ρ‹Π΅ корпуса подстанции&r.\n- Π”ΠΎΠ±Π°Π²ΡŒ ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ &b1 энСргСтичСский Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ Ρ€Π°Π·ΡŠΠ΅ΠΌ&r ΠΈ &b1 энСргСтичСский Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ Ρ€Π°Π·ΡŠΠ΅ΠΌ&r.\n- Она ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Π΅Ρ‚ &aлюбой Ρ‚ΠΈΠΏ Ρ€Π°Π·ΡŠΠ΅ΠΌΠΎΠ²&r β€” &7Π°ΠΌΠΏΠ΅Ρ€Π½Ρ‹Π΅&r ΠΈΠ»ΠΈ &6Π»Π°Π·Π΅Ρ€Π½Ρ‹Π΅&r.\n- &cНикакого риска Π²Π·Ρ€Ρ‹Π²Π°&r β€” трансформаторы &aвстроСны&r.\n\n&eΠ‘Π»ΠΎΠΈ Π½Π°ΠΊΠΎΠΏΠΈΡ‚Π΅Π»Π΅ΠΉ&r:\n- Π’Ρ‹ моТСшь Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π΄ΠΎ &d17 слоёв&r &9Π±Π»ΠΎΠΊΠΎΠ² Π½Π°ΠΊΠΎΠΏΠΈΡ‚Π΅Π»Π΅ΠΉ&r ΠΏΠΎΠ²Π΅Ρ€Ρ… структуры.\n- ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ слой Π΄ΠΎΠ»ΠΆΠ΅Π½ Π±Ρ‹Ρ‚ΡŒ &cΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ Π·Π°ΠΏΠΎΠ»Π½Π΅Π½&r β€” Π±Π΅Π· пустот.\n- БмСшивай &fпустыС&r ΠΈ &6Π·Π°ΠΏΠΎΠ»Π½Π΅Π½Π½Ρ‹Π΅&r Π½Π°ΠΊΠΎΠΏΠΈΡ‚Π΅Π»ΠΈ ΠΊΠ°ΠΊ ΡƒΠ³ΠΎΠ΄Π½ΠΎ.\n\nΠšΠ°ΠΆΠ΄Ρ‹ΠΉ слой Π΄ΠΎΠ»ΠΆΠ΅Π½ Π±Ρ‹Ρ‚ΡŒ ΠΎΠΊΡ€ΡƒΠΆΡ‘Π½ &bΠ›Π°ΠΌΠΈΠ½ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΌ стСклом&r.\n\nΠ”Π°Π²Π°ΠΉ чСстно: &cΡ‚Π΅Π±Π΅ Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ понадобится 17 слоёв&r... Π½ΠΎ ΠΌΠ΅Ρ‡Ρ‚Π°Ρ‚ΡŒ ΠΌΠ°ΡΡˆΡ‚Π°Π±Π½ΠΎ Π½ΠΈΠΊΡ‚ΠΎ Π½Π΅ Π·Π°ΠΏΡ€Π΅Ρ‰Π°Π».\nЕсли Ρ‚Ρ‹ всё ΠΆΠ΅ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡˆΡŒ ΠΏΠΎΠ΄ΡΡ‚Π°Π½Ρ†ΠΈΡŽ с ΠΏΠΎΠ»Π½Ρ‹ΠΌΠΈ 17 слоями, &lпоТалуйста, ΠΏΡ€ΠΈΡˆΠ»ΠΈ ΠΏΠΎΠΌΠΎΡ‰ΡŒ&r β€” Ρ‚Ρ‹ Π·Π°ΡˆΡ‘Π» слишком Π΄Π°Π»Π΅ΠΊΠΎ.", + "quests.gregtech_energy.batteries.title": "Π‘ΡƒΠΏΠ΅Ρ€ Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠΊΠΈ", + "quests.gregtech_energy.batteries.subtitle": "ЀантастичСскоС Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ энСргии", + "quests.gregtech_energy.batteries.desc": "На этапах &7LV&r ΠΈ &bMV&r Ρ‚Ρ‹, скорСС всСго, собрал свои ΠΏΠ΅Ρ€Π²Ρ‹Π΅ Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ ΠΈΠ· натрия ΠΈΠ»ΠΈ лития.\n\nНо Π΄Π°Π²Π°ΠΉ чСстно β€” это самыС слабыС Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€Π΅Π΄Π»ΠΎΠΆΠΈΡ‚ΡŒ GregTech.\n\nΠ’ этом Π·Π°Π΄Π°Π½ΠΈΠΈ ΠΌΡ‹ рассмотрим ΠΌΠΎΡ‰Π½Ρ‹Π΅ Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Ρ‹: &aΠΊΡ€ΠΈΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ&r.\nОни Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ сильнСС, хранят ΠΊΡƒΠ΄Π° большС энСргии ΠΈ ΠΏΠΎΠΌΠΎΠ³ΡƒΡ‚ Ρ‚Π΅Π±Π΅ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚ΡŒ свою Ρ„Π°Π±Ρ€ΠΈΠΊΡƒ Π½Π° ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ Ρ‚ΠΈΡ€.\n\nОни Π΄ΠΎΡ€ΠΎΠΆΠ΅? ΠšΠΎΠ½Π΅Ρ‡Π½ΠΎ.\nНо Π΄Π°Π²Π°ΠΉ Π±ΡƒΠ΄Π΅ΠΌ чСстны…\nЭнСргия Π΅ΡΡ‚ΡŒ энСргия. ΠšΡ‚ΠΎ Ρ‚ΡƒΡ‚ Π²ΠΎΠΎΠ±Ρ‰Π΅ считаСт?", + "quests.gregtech_energy.batteries.task": "Π›ΡŽΠ±Π°Ρ ΠΊΡ€ΠΈΡΡ‚Π°Π»ΡŒΠ½Π°Ρ батарСя", + "quests.gregtech_energy.spending_energy.title": "Π’Ρ€Π°Ρ‚Π° энСргии", + "quests.gregtech_energy.spending_energy.subtitle": "ΠžΡ…, Ρ‚Ρ‹ Π±ΡƒΠ΄Π΅ΡˆΡŒ Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ", + "quests.gregtech_energy.spending_energy.desc.1": "Как ΠΏΠΎΡ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ всю эту ΡΠ½Π΅Ρ€Π³ΠΈΡŽ?\n\nΠ˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ свои ΠΌΠ°ΡˆΠΈΠ½Ρ‹! Π—Π²ΡƒΡ‡ΠΈΡ‚ просто, Π΄Π°?\nНу… Π½Π΅ совсСм. Π•ΡΡ‚ΡŒ мноТСство ΠΌΠ΅Π»ΠΊΠΈΡ… Π΄Π΅Ρ‚Π°Π»Π΅ΠΉ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Ρ‚Π΅Π±Π΅ стоит ΠΈΠ·ΡƒΡ‡ΠΈΡ‚ΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠΌΠΎΡ‡ΡŒ сСбС Π½Π° ΠΏΡƒΡ‚ΠΈ ΠΊ ΠΏΡ€ΠΎΡ…ΠΎΠΆΠ΄Π΅Π½ΠΈΡŽ &3TerraFirmaGreg&r.\n\nΠ‘Π°Π·ΠΎΠ²Ρ‹Π΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹:\n- Π­Ρ‚ΠΈ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ просты.\n- КаТдая ΠΈΠ· Π½ΠΈΡ… ΠΌΠΎΠΆΠ΅Ρ‚ Π·Π°ΠΏΡ€Π°ΡˆΠΈΠ²Π°Ρ‚ΡŒ Π΄ΠΎ &a2A&r.\n- Если ΠΏΠΎΠ΄Π°Ρ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ Π±ΠΎΠ»Π΅Π΅ высокого тира… &4\uD83D\uDCA5 ΠΎΠ½ΠΈ взорвутся&r.\n\nΠœΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ GregTech:\nΠ’ΠΎΡ‚ Ρ‚ΡƒΡ‚ становится Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ интСрСсно. ΠœΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ Π΄Π°ΡŽΡ‚ большС гибкости ΠΈ мощности β€” &eСсли&r Ρ‚Ρ‹ понимаСшь, ΠΊΠ°ΠΊ ΠΎΠ½ΠΈ Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚.", + "quests.gregtech_energy.spending_energy.desc.2": "Бтандартная ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠ°:\n- Если ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Ρ‚ΡŒ Π΄Π²Π° энСргСтичСских Ρ€Π°Π·ΡŠΠ΅ΠΌΠ° (Π° Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ ΠΈΠ· Π½ΠΈΡ… ΠΌΠΎΠΆΠ΅Ρ‚), это позволяСт Ρ‚Π΅Π±Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Π±ΠΎΠ»Π΅Π΅ высокого Ρ‚ΠΈΡ€Π°, Ρ‡Π΅ΠΌ Ρ‚ΠΈΡ€ ΠΌΠ°ΡˆΠΈΠ½Ρ‹.\n\nΠŸΡ€ΠΈΠΌΠ΅Ρ€:\nЕсли Ρ‚Ρ‹ ΡΡ‚Ρ€ΠΎΠΈΡˆΡŒ ΡΠ»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π΄ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ ΠΈ ΡƒΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°Π΅ΡˆΡŒ Π² Π½Π΅Ρ‘ Π΄Π²Π° энСргСтичСских Ρ€Π°Π·ΡŠΠ΅ΠΌΠ° &7LV&r, ΠΎΠ½Π° смоТСт ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Π­Π”ΠŸ Ρ‚ΠΈΡ€Π° &6MV&r.\n\nΠ­Ρ‚ΠΎ ΠΎΠ΄Π½ΠΎ ΠΈΠ· ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹Ρ… прСимущСств ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ² ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΡ‡Π½Ρ‹ΠΌΠΈ машинами β€” Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ²Ρ‹ΡΠΈΡ‚ΡŒ ΠΈΡ… Ρ‚ΠΈΡ€, Ρ‚Π΅Π±Π΅ достаточно Π·Π°ΠΌΠ΅Π½ΠΈΡ‚ΡŒ энСргСтичСскиС люки, Π° Π½Π΅ ΠΏΠ΅Ρ€Π΅ΡΡ‚Ρ€Π°ΠΈΠ²Π°Ρ‚ΡŒ всю ΠΌΠ°ΡˆΠΈΠ½Ρƒ Ρ†Π΅Π»ΠΈΠΊΠΎΠΌ.", + "quests.gregtech_energy.spending_energy.desc.3": "НСкоторыС ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°ΡŽΡ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄ΠΈΠ½ энСргСтичСский Ρ€Π°Π·ΡŠΠ΅ΠΌ, Π½ΠΎ это Π½Π΅ Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ всСго 1 Π°ΠΌΠΏΠ΅Ρ€ΠΎΠΌ!\n\nΠ’Ρ‹ всё Ρ€Π°Π²Π½ΠΎ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ энСргСтичСский Ρ€Π°Π·ΡŠΠ΅ΠΌ Π½Π° 4A ΠΈΠ»ΠΈ 16A. Π­Ρ‚ΠΎ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ &bΡƒΡΠΊΠΎΡ€ΡΡ‚ΡŒ&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, Π½ΠΎ Π½Π΅ ΠΏΠΎΠ²Ρ‹ΡˆΠ°Ρ‚ΡŒ ΠΈΡ… Ρ‚ΠΈΡ€.\n\nΠŸΡ€ΠΈΠΌΠ΅Ρ€:\nΠ‘ΠΎΠ»ΡŒΡˆΠΎΠΉ сборщик схСм ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄ΠΈΠ½ энСргСтичСский люк. Если Ρ‚Ρ‹ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡˆΡŒ энСргСтичСский люк IV Π½Π° 4A, Ρ‚Ρ‹ смоТСшь ΡƒΡΠΊΠΎΡ€ΡΡ‚ΡŒ всС Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Ρ‚ΠΈΡ€Π° IV ΠΈ Π½ΠΈΠΆΠ΅.\n\nОднако ΠΎΠ½ Π½Π΅ смоТСт ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Ρ‚ΠΈΡ€Π° LuV, ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ машина Π½Π΅ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ нСсколько люков. Π­Ρ‚ΠΎ ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ΠΈΠ΅ сдСлано Π½Π°ΠΌΠ΅Ρ€Π΅Π½Π½ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π΅Π΄ΠΎΡ‚Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ пропуск систСмы прогрСссии GregTech.", + "quests.gregtech_energy.spending_energy.desc.4": "Π’Π°ΠΊ Ρ‡Ρ‚ΠΎ Π·Π°ΠΏΠΎΠΌΠ½ΠΈ: большС Π°ΠΌΠΏΠ΅Ρ€ Π½Π° ΠΎΠ΄Π½ΠΎΠΌ люкС ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚ Π±ΠΎΠ»Π΅Π΅ Π±Ρ‹ΡΡ‚Ρ€ΡƒΡŽ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ, Π½ΠΎ для открытия Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² Π±ΠΎΠ»Π΅Π΅ высокого Ρ‚ΠΈΡ€Π° Π½ΡƒΠΆΠ½Ρ‹ Π΄Π²Π° энСргСтичСских люка.", + "quests.gregtech_energy.spending_energy.task": "Π― понял", + "quests.gregtech_energy.overclock.title": "УскорСниС", + "quests.gregtech_energy.overclock.subtitle": "Базовая ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠ° ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ", + "quests.gregtech_energy.overclock.desc.1": "Π’Ρ‹ ΡΠ»Ρ‹ΡˆΠ°Π» ΠΏΡ€ΠΎ ускорСниС (Overclocking), Π½ΠΎ Π½Π΅ Π΄ΠΎ ΠΊΠΎΠ½Ρ†Π° понимаСшь, Ρ‡Ρ‚ΠΎ это Ρ‚Π°ΠΊΠΎΠ΅? Π”Π°Π²Π°ΠΉ разбСрёмся.\n\nНачнём с основ:\n&dLV&r соотвСтствуСт максимуму Π² 32 EU/t β€” ΠΈΠ½ΠΎΠ³Π΄Π° мСньшС, Π½ΠΎ Π½ΠΈΠΊΠΎΠ³Π΄Π° большС.\n&dMV&r Π΄ΠΎΡ…ΠΎΠ΄ΠΈΡ‚ Π΄ΠΎ 128 EU/t.\n&dHV&r достигаСт 512 EU/t.\nΠŸΡ€ΠΎΡ‰Π΅ говоря, ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ Ρ‚ΠΈΡ€ β€” это ΡƒΠ²Π΅Π»ΠΈΡ‡Π΅Π½ΠΈΠ΅ потрСблСния энСргии Π² 4 Ρ€Π°Π·Π°.", + "quests.gregtech_energy.overclock.desc.2": "Π§Ρ‚ΠΎ происходит, ΠΊΠΎΠ³Π΄Π° Ρ‚Ρ‹ Π·Π°ΠΏΡƒΡΠΊΠ°Π΅ΡˆΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π±ΠΎΠ»Π΅Π΅ Π½ΠΈΠ·ΠΊΠΎΠ³ΠΎ Ρ‚ΠΈΡ€Π° Π² машинС Π±ΠΎΠ»Π΅Π΅ высокого Ρ‚ΠΈΡ€Π°? Π­Ρ‚ΠΎ ΠΈ называСтся &eускорСниСм (Overclocking)&r!\n\nΠ Π΅Ρ†Π΅ΠΏΡ‚ &dMV&r (33–128 EU/t), Π·Π°ΠΏΡƒΡ‰Π΅Π½Π½Ρ‹ΠΉ Π² машинС &dHV&r, Π±ΡƒΠ΄Π΅Ρ‚ ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ: 1) ΠΏΠΎΡ‚Ρ€Π΅Π±Π»ΡΡ‚ΡŒ Π² 4 Ρ€Π°Π·Π° большС энСргии ΠΈ 2) Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒΡΡ Π² 2 Ρ€Π°Π·Π° быстрСС.\n\nΠ’ΠΎΡ‚ ΠΆΠ΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ MV Π² машинС &dEV&r? ΠŸΠΎΡ‚Ρ€Π΅Π±Π»Π΅Π½ΠΈΠ΅ энСргии вырастСт Π² 16 Ρ€Π°Π·, Π½ΠΎ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ увСличится лишь Π² 4 Ρ€Π°Π·Π°.\n\nКак видишь, с Ρ‚ΠΎΡ‡ΠΊΠΈ зрСния энСргоэффСктивности Π²Ρ‹Π³ΠΎΠ΄Π½Π΅Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ нСсколько машин, Ρ‡Π΅ΠΌ Ρ€Π°Π·Π³ΠΎΠ½ΡΡ‚ΡŒ ΠΎΠ΄Π½Ρƒ.\nНо Π΄Π°Π²Π°ΠΉ чСстно: Π² Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π΅ сСтапов Ρ‚Ρ‹ ΠΏΡ€Π΅Π΄ΠΏΠΎΡ‡Ρ‚Ρ‘ΡˆΡŒ ускорСниС ΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΡΡ‚Π²Ρƒ ΠΊΡƒΡ‡ΠΈ ΠΎΠ΄ΠΈΠ½Π°ΠΊΠΎΠ²Ρ‹Ρ… машин.\n\nΠ’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, ΠΏΠΎΠ»Π΅Π·Π½ΠΎ ΠΏΠΎΠ½ΠΈΠΌΠ°Ρ‚ΡŒ это Π·Π°Ρ€Π°Π½Π΅Π΅ β€” особСнно Π½Π° Ρ€Π°Π½Π½ΠΈΡ… этапах, ΠΊΠΎΠ³Π΄Π° энСргии Π½Π΅ Ρ…Π²Π°Ρ‚Π°Π΅Ρ‚.", + "quests.gregtech_energy.overclock.desc.3": "БущСствуСт особый Π²ΠΈΠ΄ ускорСния, доступный лишь для Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ²: &eидСальноС ускорСниС (Perfect Overclocking)&r.\nΠ—Π΄Π΅ΡΡŒ вмСсто 4Γ— энСргии Π·Π° 2Γ— скорости Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΡˆΡŒ &a4Γ— энСргии&r Π·Π° &a4Γ— скорости&r! Π­Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ Π΅Π³ΠΎ ΡΡ‚ΠΎΠ»ΡŒ ΠΆΠ΅ эффСктивным, ΠΊΠ°ΠΊ использованиС Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… машин ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ.\n\nΠ’ настоящСС врСмя Π² TerraFirmaGreg ΠΈΠ΄Π΅Π°Π»ΡŒΠ½Ρ‹ΠΉ Ρ€Π°Π·Π³ΠΎΠ½ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°ΡŽΡ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠ΅ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ:\n- ЭлСктричСская домСнная ΠΏΠ΅Ρ‡ΡŒ\n- ДомСнная ΠΏΠ΅Ρ‡ΡŒ для сплавов\n- ΠšΠ°Ρ€ΡƒΡΠ΅Π»ΡŒΠ½Π°Ρ ΠΏΠ΅Ρ‡ΡŒ\n- Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ химичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€\n- Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚Π΅ΠΏΠ»ΠΈΡ†Π°\n- Π’Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΠ΅Π½Π½ΠΈΠΊ", + "quests.gregtech_energy.overclock.task": "Π—Π½Π°Ρ‡ΠΈΡ‚ ΠΊΡ€Π°ΡΠ½Π΅Π½ΡŒΠΊΠΈΠ΅ быстрСС, понял", + "quests.gregtech_energy.blast_oc.title": "Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠ΅ ускорСниС", + "quests.gregtech_energy.blast_oc.subtitle": "Π­Ρ‚ΠΎ Ρ‚Π΅Π±Π΅ Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ ΠΏΠΎΠ½ΠΈΠΌΠ°Ρ‚ΡŒ", + "quests.gregtech_energy.blast_oc.desc.1": "Если Ρ‚Ρ‹ Π΅Ρ‰Ρ‘ Π½Π΅ разобрался с ΠΈΠ΄Π΅Π°Π»ΡŒΠ½Ρ‹ΠΌ ускорСниСм, сначала ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°ΠΉ Π·Π°Π΄Π°Π½ΠΈΠ΅ прямо Π½Π°Π΄ этим.\n\nΠ­Ρ‚ΠΈ Ρ‚Ρ€ΠΈ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠ° ΠΎΠ±Π»Π°Π΄Π°ΡŽΡ‚ особой ΡΠΏΠΎΡΠΎΠ±Π½ΠΎΡΡ‚ΡŒΡŽ: ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ &eидСально Ρ€Π°Π·Π³ΠΎΠ½ΡΡ‚ΡŒ&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Π² зависимости ΠΎΡ‚ &cΡ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹ ΠΌΠ°ΡˆΠΈΠ½Ρ‹&r. Π’Π΅ΠΊΡƒΡ‰ΡƒΡŽ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ Ρ‚Ρ‹ моТСшь ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ, ΠΊΠ»ΠΈΠΊΠ½ΡƒΠ² ΠΏΠΎ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Ρƒ.\n\nΠ•ΡΡ‚ΡŒ Π΄Π²Π° способа ΠΏΠΎΠ²Ρ‹ΡΠΈΡ‚ΡŒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ:\n1) Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ энСргСтичСскиС Π²Ρ…ΠΎΠ΄Ρ‹ Π±ΠΎΠ»Π΅Π΅ высокого Ρ‚ΠΈΡ€Π°\n2) Π£Π»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ", + "quests.gregtech_energy.blast_oc.desc.2": "Π§Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ, просто &3Π·Π°ΠΆΠΌΠΈ Shift&r, навСдя Π½Π° Π½Π΅Ρ‘ курсор.\n\nКогда Ρ‚Ρ‹ знаСшь Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ ΠΌΠ°ΡˆΠΈΠ½Ρ‹, Ρ‚Π΅Π±Π΅ понадобится Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°. ΠŸΡ€ΠΎΡ‰Π΅ всСго ΡƒΠ·Π½Π°Ρ‚ΡŒ Π΅Ρ‘ Ρ‡Π΅Ρ€Π΅Π· EMI.\n\nИмСя ΠΎΠ±Π° значСния, ΠΌΠΎΠΆΠ½ΠΎ быстро ΠΏΡ€ΠΈΠΊΠΈΠ½ΡƒΡ‚ΡŒ, примСняСтся Π»ΠΈ идСальноС ускорСниС:\n&bВвоя машина Π΄ΠΎΠ»ΠΆΠ½Π° Π±Ρ‹Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ Π½Π° 1800K горячСС Π½Π° ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Ρ€Π°Π·Π³ΠΎΠ½Π°, Ρ‡Π΅ΠΌ трСбуСтся Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠΌ.&r", + "quests.gregtech_energy.blast_oc.desc.3": "ΠŸΡ€ΠΈΠΌΠ΅Ρ€:\n- Π Π΅Ρ†Π΅ΠΏΡ‚ Π½Π΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰Π΅ΠΉ стали Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ &c1700K&r ΠΈ относится ΠΊ Ρ‚ΠΈΡ€Ρƒ &aHV&r.\n- Ввоя Π­Π”ΠŸ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Π½Π° &bLuV&r ΠΈ ΠΈΠΌΠ΅Π΅Ρ‚ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ &c5900K&r.\n- ΠžΡ‚ HV Π΄ΠΎ LuV β€” это &a3 уровня Ρ€Π°Π·Π³ΠΎΠ½Π°&r.\n- 1800 Γ— 3 = &c5400K&r β†’ добавляСм Π±Π°Π·ΠΎΠ²ΠΎΠ΅ Ρ‚Ρ€Π΅Π±ΠΎΠ²Π°Π½ΠΈΠ΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°: 5400 + 1700 = &c7100K&r Π½ΡƒΠΆΠ½ΠΎ для ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ идСального Ρ€Π°Π·Π³ΠΎΠ½Π°.\n- ΠŸΠΎΡΠΊΠΎΠ»ΡŒΠΊΡƒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° Ρ‚Π²ΠΎΠ΅ΠΉ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ всСго &c5900K&r, Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡˆΡŒ ΠΈΠ΄Π΅Π°Π»ΡŒΠ½Ρ‹ΠΉ Ρ€Π°Π·Π³ΠΎΠ½ с HV Π΄ΠΎ EV ΠΈ с EV Π΄ΠΎ IV, Π½ΠΎ лишь ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠ΅ ускорСниС с IV Π΄ΠΎ LuV.\n\nΠ’ ΠΈΡ‚ΠΎΠ³Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π±ΡƒΠ΄Π΅Ρ‚ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒΡΡ Π·Π° 1,7 сСкунды вмСсто 0,85 сСкунды ΠΏΡ€ΠΈ ΠΏΠΎΠ»Π½ΠΎΠΌ идСальном Ρ€Π°Π·Π³ΠΎΠ½Π΅.\n\nΠšΠ°ΠΆΠ΅Ρ‚ΡΡ слишком слоТно? ΠŸΡ€ΠΎΡΡ‚ΠΎ Π·Π°ΠΏΠΎΠΌΠ½ΠΈ: Π»ΡƒΡ‡ΡˆΠΈΠ΅ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ = Π±ΠΎΠ»Π΅Π΅ быстрыС ΠΈ Π΄Π΅ΡˆΡ‘Π²Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹.", + "quests.gregtech_energy.blast_oc.task": "Π₯ΠΎΡ€ΠΎΡˆΠΈΠ΅ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ Π΅ΡΡ‚ΡŒ Ρ…ΠΎΡ€ΠΎΡˆΠΎ, понял", + "quests.gregtech_energy.subtick.title": "Π‘Π°Π±Ρ‚ΠΈΠΊ", + "quests.gregtech_energy.subtick.subtitle": "ΠŸΠ°Ρ€Π°Π»Π»Π΅Π»ΠΈ?", + "quests.gregtech_energy.subtick.desc.1": "Π•Ρ‰Ρ‘ ΠΎΠ΄Π½Π° скрытая ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠ° ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ² GregTech β€” &dсабтик (Subtick)&r.\n\nΠ§Ρ‚ΠΎ это Ρ‚Π°ΠΊΠΎΠ΅? Π‘Π°Π±Ρ‚ΠΈΠΊ срабатываСт, ΠΊΠΎΠ³Π΄Π° Ρ€Π΅Ρ†Π΅ΠΏΡ‚ становится Π½Π°ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ быстрым, Ρ‡Ρ‚ΠΎ Π·Π°Π½ΠΈΠΌΠ°Π΅Ρ‚ мСньшС ΠΎΠ΄Π½ΠΎΠ³ΠΎ Ρ‚ΠΈΠΊΠ°. Π’ ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Ρ… условиях ΠΌΠ°ΡˆΠΈΠ½Ρ‹ Π½Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ большС ΠΎΠ΄Π½ΠΎΠ³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° Π·Π° Ρ‚ΠΈΠΊ β€” Π½ΠΎ с сабтиком ΠΌΠΎΠ³ΡƒΡ‚!\n\nКак это Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚? Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π΄Π»ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° достигаСт 1 Ρ‚ΠΈΠΊΠ°, дальнСйшСС ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ энСргСтичСского люка ΡƒΠΆΠ΅ Π½Π΅ Π΄Π΅Π»Π°Π΅Ρ‚ Π΅Π³ΠΎ быстрСС.\nΠ—Π°Ρ‚ΠΎ благодаря сабтику, вмСсто пустой Ρ‚Ρ€Π°Ρ‚Ρ‹ энСргии, машина Π±ΡƒΠ΄Π΅Ρ‚ &aΠΏΠ°Ρ€Π°Π»Π»Π΅Π»ΠΈΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π²Π½ΡƒΡ‚Ρ€ΠΈ сСбя&r.", + "quests.gregtech_energy.subtick.desc.2": "НапримСр: Ссли Ρ‚Π²ΠΎΠΉ Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ химичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ выполняСт Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Ρ‚ΠΈΡ€Π° LuV Π·Π° 1 Ρ‚ΠΈΠΊ, Ρ‚ΠΎ Π½Π° ZPM ΠΎΠ½ Π±ΡƒΠ΄Π΅Ρ‚ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ ΡƒΠΆΠ΅ &e2 Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° Π·Π° Ρ‚ΠΈΠΊ&r. Π•Ρ‰Ρ‘ Π±ΠΎΠ»Π΅Π΅ быстрыС люки Π΄Π°Π΄ΡƒΡ‚ Π΅Ρ‰Ρ‘ большС Π²Π½ΡƒΡ‚Ρ€Π΅Π½Π½ΠΈΡ… ΠΏΠ°Ρ€Π°Π»Π»Π΅Π»Π΅ΠΉ.\n\n&dΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅&r: Π½Π° Π΄Π°Π½Π½Ρ‹ΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚ всС большиС ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΌΠΎΠ³ΡƒΡ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ субтик Π² ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½Π½ΠΎΠΌ Π²ΠΈΠ΄Π΅, Π½ΠΎ &aΡ‚ΠΎΠ»ΡŒΠΊΠΎ Π‘Π₯Π  ΠΈ Ρ‚Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΠ΅Π½ΠΈΠΊ&r ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ ΠΈ субтик, ΠΈ ΠΈΠ΄Π΅Π°Π»ΡŒΠ½Ρ‹ΠΉ Ρ€Π°Π·Π³ΠΎΠ½. ИмСнно поэтому для Π‘Π₯Π  Π½Π΅Ρ‚ IV-ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠ° с ΠΏΠ°Ρ€Π°Π»Π»Π΅Π»ΡŒΠ½Ρ‹ΠΌΠΈ люками β€” ΠΎΠ½ ΠΈ Ρ‚Π°ΠΊ Π΄Π΅Π»Π°Π΅Ρ‚ это… Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π»ΡƒΡ‡ΡˆΠ΅.", + "quests.gregtech_energy.parallel_hatch.title": "Π›ΡŽΠΊ контроля ΠΏΠ°Ρ€Π°Π»Π»Π΅Π»Π΅ΠΉ", + "quests.gregtech_energy.parallel_hatch.subtitle": "ΠžΠΏΡΡ‚ΡŒ ΠΏΠ°Ρ€Π°Π»Π»Π΅Π»ΠΈ?", + "quests.gregtech_energy.parallel_hatch.desc.1": "&dΠ›ΡŽΠΊ контроля ΠΏΠ°Ρ€Π°Π»Π»Π΅Π»Π΅ΠΉ&r β€” главная Ρ„ΠΈΡˆΠΊΠ° Π±ΠΎΠ»ΡŒΡˆΠΈΡ… ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ².\n\nΠ§Ρ‚ΠΎ ΠΎΠ½ Π΄Π΅Π»Π°Π΅Ρ‚?\nΠ’Π°ΠΌ, Π³Π΄Π΅ это Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½ΠΎ (Π² основном Ρƒ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ², созданных ΠΈΠ· сплавов Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ для сплавов), ΠΎΠ½ позволяСт Π·Π°ΠΏΡƒΡΠΊΠ°Ρ‚ΡŒ &aнСсколько Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ&r.\n\nΠ­Ρ‚ΠΎ достигаСтся Π·Π° счёт большСго потрСблСния энСргии Π·Π° Ρ‚ΠΈΠΊ, Π½ΠΎ с ΠΊΠΎΠ»ΠΎΡΡΠ°Π»ΡŒΠ½Ρ‹ΠΌ ростом ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ. ИдСально, Ссли Ρ‚Ρ‹ массово ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡˆΡŒ сплавы, схСмы ΠΈΠ»ΠΈ пластины.", + "quests.gregtech_energy.parallel_hatch.desc.2": "ΠŸΡ€ΠΎΡΡ‚ΠΎ установи ΠΏΠ°Ρ€Π°Π»Π»Π΅Π»ΡŒΠ½Ρ‹ΠΉ люк Π½Π° ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ ΠΈ ΡƒΠ±Π΅Π΄ΠΈΡΡŒ, Ρ‡Ρ‚ΠΎ Π² Π½Π΅Π³ΠΎ подаётся достаточно энСргии ΠΈ Π²Ρ…ΠΎΠ΄Π½Ρ‹Ρ… ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ². Π‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ это ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°ΡŽΡ‚, ΡƒΠΊΠ°Π·Ρ‹Π²Π°ΡŽΡ‚ это Π² EMI ΠΈΠ»ΠΈ Π² квСстбукС.\n\n&dΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅&r: Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ химичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Π½Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ люки контроля ΠΏΠ°Ρ€Π°Π»Π»Π΅Π»Π΅ΠΉ β€” Ρƒ Π½Π΅Π³ΠΎ ΡƒΠΆΠ΅ Π΅ΡΡ‚ΡŒ ΠΊΠΎΠ΅-Ρ‡Ρ‚ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΡˆΠ΅ ΠΏΠΎΠ΄ Π½Π°Π·Π²Π°Π½ΠΈΠ΅ΠΌ &bсабтик&r. ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½Π΅Π΅ ΠΎΠ± этом Ρ‡ΠΈΡ‚Π°ΠΉ Π² сосСднСм Π·Π°Π΄Π°Π½ΠΈΠΈ.", + "quests.gregtech_energy.parallel_hatch.task": "Π›ΡŽΠ±ΠΎΠΉ люк контроля ΠΏΠ°Ρ€Π°Π»Π»Π΅Π»Π΅ΠΉ", + "quests.gregtech_energy.rotor.title": "Π ΠΎΡ‚ΠΎΡ€Ρ‹ Ρ‚ΡƒΡ€Π±ΠΈΠ½", + "quests.gregtech_energy.rotor.subtitle": "Π’Π°ΠΊ ΠΌΠ½ΠΎΠ³ΠΎ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ²!", + "quests.gregtech_energy.rotor.desc.1": "Π”Π΅Ρ€ΠΆΠ°Ρ‚Π΅Π»ΠΈ Ρ€ΠΎΡ‚ΠΎΡ€ΠΎΠ², разумССтся, Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ установлСнный Ρ€ΠΎΡ‚ΠΎΡ€, Π½ΠΎ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ² сущСствуСт ΠΌΠ½ΠΎΠ³ΠΎ, ΠΈ Ρƒ ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ свои характСристики β€” Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΆΠ΅ всё это Π·Π½Π°Ρ‡ΠΈΡ‚?\n\nΠ‘ΠΎΠ»Π΅Π΅ высокая &9Π­Ρ„Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΡΡ‚ΡŒ&r ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°Π΅Ρ‚ врСмя, Π² Ρ‚Π΅Ρ‡Π΅Π½ΠΈΠ΅ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΌΠ‘ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, фактичСски сниТая Π΅Π³ΠΎ расход. Π’ Ρ‚ΠΎ ΠΆΠ΅ врСмя &9ΠœΠΎΡ‰Π½ΠΎΡΡ‚ΡŒ&r ΠΏΠΎΠ²Ρ‹ΡˆΠ°Π΅Ρ‚ количСство EU, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π±ΡƒΠ΄Π΅Ρ‚ Π²Ρ‹Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°. Ну Π° &9ΠŸΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒ&r, Π΄ΡƒΠΌΠ°ΡŽ, ΠΎΠ±ΡŠΡΡΠ½ΡΡ‚ΡŒ Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ.", + "quests.gregtech_energy.rotor.desc.2": "Π’ ΠΈΠ΄Π΅Π°Π»Π΅ Ρ‚Π΅Π±Π΅ хочСтся ΠΌΠ°ΠΊΡΠΈΠΌΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ всС Ρ‚Ρ€ΠΈ показатСля, Π½ΠΎ Π²Ρ‹Π±ΠΎΡ€ Π±ΡƒΠ΄Π΅Ρ‚ Π·Π°Π²ΠΈΡΠ΅Ρ‚ΡŒ ΠΎΡ‚ Ρ‚ΠΎΠ³ΠΎ, сколько Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° Ρ‚Ρ‹ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡˆΡŒ, сколько Ρƒ тСбя Ρ‚ΡƒΡ€Π±ΠΈΠ½ ΠΈ ΠΊΠ°ΠΊ часто Ρ‚Ρ‹ Π³ΠΎΡ‚ΠΎΠ² ΠΈΡ… Π·Π°ΠΌΠ΅Π½ΡΡ‚ΡŒ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ СдинствСнно ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠ³ΠΎ ΠΎΡ‚Π²Π΅Ρ‚Π° здСсь Π½Π΅Ρ‚. &7(Ну, ΠΊΡ€ΠΎΠΌΠ΅ нСйтрония, ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΎ...)&r\n\nΠ’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, Ссли Ρ‚Ρ‹ совсСм Ρ‚Π΅Ρ€ΡΠ΅ΡˆΡŒΡΡ, ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ: Π²Π°Π½Π°Π΄ΠΈΠ΅Π²ΡƒΡŽ ΡΡ‚Π°Π»ΡŒ Π½Π° этапС &6HV&r, ΡƒΠ»ΡŒΡ‚ΠΈΠΌΠ΅Ρ‚ Π½Π° &5EV&r ΠΈ HSS-S Π½Π° &9IV&r.\n\nК соТалСнию, автоматичСски ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΡŒ Π½ΠΎΠ²Ρ‹Π΅ Ρ€ΠΎΡ‚ΠΎΡ€Ρ‹ Π² Π΄Π΅Ρ€ΠΆΠ°Ρ‚Π΅Π»ΠΈ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Ρ‚Ρ€ΡƒΠ± нСльзя, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ Π±Π»ΠΎΠΊ ΠΏΠ΅Ρ€Π΅Π΄ Π½ΠΈΠΌΠΈ Π΄ΠΎΠ»ΠΆΠ΅Π½ Π±Ρ‹Ρ‚ΡŒ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ пустым, Π½ΠΎ &aмСханичСская Ρ€ΡƒΠΊΠ°&r с этим ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎ справится!", + "quests.gregtech_energy.rotor.task": "Π›ΡŽΠ±ΠΎΠΉ Ρ€ΠΎΡ‚ΠΎΡ€ Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹", + "quests.gregtech_energy.fission_reactor.title": "Π―Π΄Π΅Ρ€Π½Ρ‹ΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ MK I", + "quests.gregtech_energy.fission_reactor.subtitle": "ΠŸΡ€ΠΈΡΡ‚Π΅Π³Π½ΠΈΡ‚Π΅ Ρ€Π΅ΠΌΠ½ΠΈ, это слоТно.", + "quests.gregtech_energy.fission_reactor.desc.1": "&dΠ―Π΄Π΅Ρ€Π½Ρ‹ΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€&r β€” бСзусловно Ρ€Π΅Π΄ΠΊΠΎΠ΅ Π·Ρ€Π΅Π»ΠΈΡ‰Π΅ Π² GregTech, ΠΊΠ°ΠΊ ΠΏΠΎ Ρ‚Π΅ΠΌΠ°Ρ‚ΠΈΠΊΠ΅, Ρ‚Π°ΠΊ ΠΈ ΠΏΠΎ ΠΏΡ€ΠΈΠ½Ρ†ΠΈΠΏΡƒ Ρ€Π°Π±ΠΎΡ‚Ρ‹. Но Π½Π΅ бойся β€” ΠΌΡ‹ здСсь, Ρ‡Ρ‚ΠΎΠ±Ρ‹ провСсти тСбя Ρ‡Π΅Ρ€Π΅Π· этот ΠΌΠ½ΠΎΠ³ΠΎΡ†Π΅Π»Π΅Π²ΠΎΠΉ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ для настоящих Ρ‚Π΅Ρ…Π½Π°Ρ€Π΅ΠΉ!\n\nΠ€ΠΈΠ·ΠΈΠΊΡƒ ΠΌΡ‹ ΠΏΠΎΠΊΠ° опустим, &eΠΊΠΎΠ»Π»Π΅Π³Π°-ΠΈΠ½ΠΆΠ΅Π½Π΅Ρ€&r. Π‘Π°ΠΌΠΎΠ΅ Π²Π°ΠΆΠ½ΠΎΠ΅, Ρ‡Ρ‚ΠΎ Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ½ΠΎ Π·Π½Π°Ρ‚ΡŒ: этот Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ β€” ΠΊΠ°ΠΊ большая тСпловая &dбатарСя-Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€&r. Π’Ρ‹ ΠΏΠΎΠ΄Π°Ρ‘ΡˆΡŒ подходящСС Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ ΠΈ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΡˆΡŒ &cΡ‚Π΅ΠΏΠ»ΠΎ&r (ΠΏΠΎ сути ΠΊΠ°ΠΊ &6EU/t&r), ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ накапливаСтся Π² Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π΅ Π² Π²ΠΈΠ΄Π΅ &cрастущСй Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹&r (сохранённой &6EU&r).\n\nΠ—Π°Ρ‚Π΅ΠΌ Ρ‚Ρ‹ моТСшь ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‚ΡŒ это Ρ‚Π΅ΠΏΠ»ΠΎ Π² &9ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΠΈΠ΅ Тидкости&r для Ρ€Π°Π±ΠΎΡ‚Ρ‹ Ρ‚ΡƒΡ€Π±ΠΈΠ½ ΠΈΠ»ΠΈ выполнСния Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² ΠΊΡ€Π°Ρ„Ρ‚Π° Π² стилС Π­Π”ΠŸ. Иногда этого Ρ‚Π΅ΠΏΠ»Π° ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Π΄Π°ΠΆΠ΅ &cслишком ΠΌΠ½ΠΎΠ³ΠΎ&r. Ах Π΄Π°, Π΅Ρ‰Ρ‘ Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΡˆΡŒ Π½ΠΎΠ²Ρ‹Π΅ элСмСнты для создания Π½ΠΎΠ²Ρ‹Ρ… Ρ‚ΠΎΠΏΠ»ΠΈΠ², схСм ΠΈ ΠΏΡ€ΠΎΡ‡ΠΈΡ… Π²Π΅Ρ‰Π΅ΠΉ. ΠœΠΎΠΆΠ΅Ρ‚, стоит Π΅Ρ‰Ρ‘ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΈΡΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚ΡŒ Π‘ΠΎΠ»Π½Π΅Ρ‡Π½ΡƒΡŽ систСму? Π‘ΠΊΡƒΠΊΠΎΡ‚ΠΈΡ‰Π°.", + "quests.gregtech_energy.fission_reactor.desc.2": "Для Π½Π°Ρ‡Π°Π»Π° Π΄ΠΎΠ±ΡƒΠ΄ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ &dВория&r. НС Π·Π°Π±ΡƒΠ΄ΡŒ Π½Π°Π΄Π΅Ρ‚ΡŒ Π·Π°Π·ΠΈΡ‚Π½Ρ‹ΠΉ ΠΊΠΎΡΡ‚ΡŽΠΌ β€” &eDeatek Intergalactic&r Π½Π΅ нСсёт отвСтствСнности Π·Π° Π»ΡŽΠ±Ρ‹Π΅ тСлСсныС поврСТдСния, ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½Π½Ρ‹Π΅ Π² Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚Π΅ Π½Π΅ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠ³ΠΎ обращСния с Π½Π΅ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½Ρ‹ΠΌΠΈ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Π°ΠΌΠΈ. ЧСстно говоря, Π½Π° этом этапС Π½Π°ΠΌ ΡƒΠΆΠ΅ Π½Π΅ стоило Π±Ρ‹ Ρ‚Π΅Π±Π΅ ΠΎΠ± этом Π½Π°ΠΏΠΎΠΌΠΈΠ½Π°Ρ‚ΡŒ. Если Π½ΡƒΠΆΠ½ΠΎ ΠΎΡΠ²Π΅ΠΆΠΈΡ‚ΡŒ ΠΏΠ°ΠΌΡΡ‚ΡŒ β€” загляни Π² Π·Π°Π΄Π°Π½ΠΈΠ΅ ΠΏΡ€ΠΎ опасности.\n\nΠ”Π°Π»Π΅Π΅ ΡΠΊΡ€Π°Ρ„Ρ‚ΡŒ нСсколько пустых &dΡ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹Ρ… стСрТнСй&r ΠΈ Π·Π°ΠΏΠΎΠ»Π½ΠΈ ΠΈΡ… с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &dΠ—Π°Π²ΠΎΠ΄Π° ΠΏΠΎ производству ядСрного Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r. Π‘Ρ‚Π΅Ρ€ΠΆΠ½ΠΈ ΠΌΠ½ΠΎΠ³ΠΎΡ€Π°Π·ΠΎΠ²Ρ‹Π΅, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π΄Π΅Π»Π°Ρ‚ΡŒ ΠΈΡ… слишком ΠΌΠ½ΠΎΠ³ΠΎ Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ. На самом Π΄Π΅Π»Π΅, Π½Π° ΠΏΠ΅Ρ€Π²ΠΎΠ΅ врСмя Ρ‚Π΅Π±Π΅ Π²ΠΏΠΎΠ»Π½Π΅ Ρ…Π²Π°Ρ‚ΠΈΡ‚ всСго &oΠΎΠ΄Π½ΠΎΠ³ΠΎ&r.\n\nРазумССтся, Ρ‚Π΅Π±Π΅ Ρ‚Π°ΠΊΠΆΠ΅ понадобится ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ собранный Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€. ΠŸΠΎΡΠΌΠΎΡ‚Ρ€ΠΈ ΠΏΡ€Π΅Π²ΡŒΡŽ Π² EMI. ΠžΠ±Ρ€Π°Ρ‚ΠΈ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅: Π² Ρ†Π΅Π½Ρ‚Ρ€Π΅ находится ΠΊΠΎΠ»ΠΎΠ½Π½Π° Π΄Π΅Ρ€ΠΆΠ°Ρ‚Π΅Π»Π΅ΠΉ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, Π° Π²ΠΎΠΊΡ€ΡƒΠ³ β€” Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ ΠΊΠΎΠ»ΠΎΠ½Π½Ρ‹ для ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ² ΠΈ Π΄Π΅Ρ€ΠΆΠ°Ρ‚Π΅Π»Π΅ΠΉ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ². К Π½ΠΈΠΌ ΠΌΡ‹ вСрнёмся ΠΏΠΎΠ·ΠΆΠ΅.\n\nПодоТди. ΠŸΠΎΡ‡Π΅ΠΌΡƒ всСго &oΠΎΠ΄ΠΈΠ½&r ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ? О, &eΠΊΠ°ΠΊ ΠΆΠ΅ ΠΌΡ‹&r Ρ€Π°Π΄Ρ‹, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ спросил. Π”Π°Π²Π°ΠΉ погрузимся Π² ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΡƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½Π΅Π΅ Π½Π° ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅ΠΉ страницС.", + "quests.gregtech_energy.fission_reactor.desc.3": "Π§Π΅ΠΌ большС Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹Ρ… стСрТнСй Ρ‚Ρ‹ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡˆΡŒ Π² Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€, Ρ‚Π΅ΠΌ &cгорячСС&r ΠΎΠ½ станСт. А Ρ‡Π΅ΠΌ ΠΎΠ½ горячСС, Ρ‚Π΅ΠΌ большС Ρ‚Π΅ΠΏΠ»Π° смоТСт ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‚ΡŒ Π² ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΡƒΡŽ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ ΠΈ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅ΠΌΡ‹Π΅ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹. Но Ρƒ Ρ„ΠΈΠ·ΠΈΠΊΠΈ Π΅ΡΡ‚ΡŒ свои ΠΏΡ€Π΅Π΄Π΅Π»Ρ‹, ΠΈ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π½Π°Π³Ρ€Π΅Π²Π°Ρ‚ΡŒΡΡ бСсконСчно β€” Π΅ΡΡ‚ΡŒ максимум, &cнасколько горячим&r ΠΎΠ½ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π½Π΅ стоит ΡƒΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°Ρ‚ΡŒ слишком ΠΌΠ½ΠΎΠ³ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹Ρ… стСрТнСй.\n\nНо Π½Π΅ бойся! Π’ΠΎΠΏΡ€Π΅ΠΊΠΈ Ρ‚ΠΎΠΌΡƒ, Ρ‡Ρ‚ΠΎ ΡƒΡ‚Π²Π΅Ρ€ΠΆΠ΄Π°Π΅Ρ‚ пропагандистская большая машина &0Π½Π΅Ρ„Ρ‚ΠΈ&r, ядСрная энСргия &aΠ°Π±ΡΠΎΠ»ΡŽΡ‚Π½ΠΎ бСзопасна&r. Если ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Ρ‚Π΅ΠΏΠ»Π° Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° приблиТаСтся ΠΊ опасной Π·ΠΎΠ½Π΅, ΠΎΠ½ запускаСт &9Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ ΠΏΠΎΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ охлаТдСния&r ΠΈ Π½Π΅ запустится снова, ΠΏΠΎΠΊΠ° всё Ρ‚Π΅ΠΏΠ»ΠΎ Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ &aбСзопасно рассСяно&r. ΠŸΡ€Π°Π²Π΄Π°, процСсс это довольно ΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹ΠΉ.\n\nΠ”ΠΎΠ»ΠΆΠ΅Π½ ΠΆΠ΅ Π±Ρ‹Ρ‚ΡŒ способ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π΅Π³ΠΎ горячСС ΠΈ быстрСС? И снова β€” Ρ…ΠΎΡ€ΠΎΡˆΠΎ, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ спросил! &eНаши Π³Π΅Π½ΠΈΠ°Π»ΡŒΠ½Ρ‹Π΅ ΠΈΠ½ΠΆΠ΅Π½Π΅Ρ€Ρ‹&r ΡƒΠΆΠ΅ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΠ»ΠΈ для тСбя Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅!", + "quests.gregtech_energy.fission_reactor.desc.4": "Помимо 5 &dΠ΄Π΅Ρ€ΠΆΠ°Ρ‚Π΅Π»Π΅ΠΉ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r, Ρ‚Ρ‹ моТСшь ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ &oΠ΄ΠΎ&r 20 &dΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ²&r. Π Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ‹ ΠΎΡ‚ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»Π΅ΠΉ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ ΠΎΡ‡Π΅Π½ΡŒ Ρ‚ΠΎΡ‡Π½ΠΎΠ³ΠΎ размСщСния, Π½ΠΎ наш Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ ΡƒΠΌΠ½Π΅Π΅. &6Π₯арактСристики&r всСх установлСнных ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ² просто &6ΡΡƒΠΌΠΌΠΈΡ€ΡƒΡŽΡ‚ΡΡ&r β€” ΠΈ Π½Π° этом всё!\n\nНа Π΄Π°Π½Π½Ρ‹ΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ ΡƒΠΌΠ΅Π΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ… трСмя&7*&r Ρ€Π°Π·Π½Ρ‹ΠΌΠΈ способами:\n&e1)&r Максимальная Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° &7(изоляция)&r\n&e2)&r Π­Ρ„Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΡΡ‚ΡŒ &7(Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ слуТит дольшС)&r\n&e3)&r ДроссСлированиС &7(замСдляСт Ρ€Π΅Π°ΠΊΡ†ΠΈΠΈ)&r\n\n&7*)&r Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π² Ρ‚Π²ΠΎΠ΅ΠΉ Π³Π°Π»Π°ΠΊΡ‚ΠΈΠΊΠ΅ Π½Π΅Ρ‚ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹Ρ… ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ² для всСх Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ². ΠœΡ‹ ΠΏΡ€Π΅Π΄ΠΏΠΎΠ»Π°Π³Π°Π΅ΠΌ, Ρ‡Ρ‚ΠΎ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ доступны Ρ‚ΠΎΠ»ΡŒΠΊΠΎ для ΠΏΠ΅Ρ€Π²ΠΎΠΉ ΠΊΠ°Ρ‚Π΅Π³ΠΎΡ€ΠΈΠΈ.\n\nНо Π±ΡƒΠ΄ΡŒ остороТСн. ΠŸΠΎΠ²Ρ‹ΡˆΠ΅Π½ΠΈΠ΅ &cΡ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹&r ΠΈΠΌΠ΅Π΅Ρ‚ ΠΈ &cΠΎΠ±Ρ€Π°Ρ‚Π½ΡƒΡŽ сторону&r.", + "quests.gregtech_energy.fission_reactor.desc.5": "Π₯отя Π±ΠΎΠ»Π΅Π΅ &cгорячий&r Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Π΄Π΅Π»Π°Π΅Ρ‚ производство ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΠΈΡ… ТидкостСй ΠΈ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ &cбыстрСС&r, ΠΎΠ½ Ρ‚Π°ΠΊΠΆΠ΅ становится Π±ΠΎΠ»Π΅Π΅ Ρ‚Ρ€Π΅Π±ΠΎΠ²Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ ΠΊ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΌ стСрТням. ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ ΠΈΠΌΠ΅Π΅Ρ‚ ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½Π½ΡƒΡŽ ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒ, ΠΈ Π΅Ρ‘ расход Π»ΠΈΠ½Π΅ΠΉΠ½ΠΎ зависит ΠΎΡ‚ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹.\n\nΠŸΠΎΡΠΊΠΎΠ»ΡŒΠΊΡƒ для Π±ΠΎΠ»Π΅Π΅ высокой Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹ Ρ‚Π΅Π±Π΅ трСбуСтся большС Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹Ρ… стСрТнСй, Π² ΠΈΡ‚ΠΎΠ³Π΅ износ ΠΌΠ°ΡΡˆΡ‚Π°Π±ΠΈΡ€ΡƒΠ΅Ρ‚ΡΡ &nΠΊΠ²Π°Π΄Ρ€Π°Ρ‚ΠΈΡ‡Π½ΠΎ&r. Если Ρ‚Ρ‹ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ максимально эффСктивно Π½Π°Π³Ρ€Π΅Π²Π°Ρ‚ΡŒ ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΠΈΠ΅ Тидкости, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ Π½ΠΈΠ·ΠΊΡƒΡŽ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ. А Ссли Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ½Π° Π±ΠΎΠ»Π΅Π΅ быстрая ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° ядСрных ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ² β€” ΠΏΠΎΠ΄Π½ΠΈΠΌΠ°ΠΉ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ Π½Π°ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ высоко, насколько позволяСт изоляция.", + "quests.gregtech_energy.fission_reactor.desc.6": "Π’Ρ‹ Π½Π°ΠΊΠΎΠ½Π΅Ρ† Π³ΠΎΡ‚ΠΎΠ² Π²Π·Π³Π»ΡΠ½ΡƒΡ‚ΡŒ Π½Π° Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, связанныС с Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΎΠΌ. ΠŸΠΎΡΠΌΠΎΡ‚Ρ€ΠΈ, Π³Π΄Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ &dΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€&r, ΠΈ Ρ‚Ρ‹ ΡƒΠ²ΠΈΠ΄ΠΈΡˆΡŒ Ρ‚Ρ€ΠΈ Π²ΠΊΠ»Π°Π΄ΠΊΠΈ &eEMI&r:\n\n&e1)&r Π―Π΄Π΅Ρ€Π½Ρ‹ΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ &7(Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ ΠΈ совмСстимыС ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΠΈΠ΅ Тидкости)&r\n&e2)&r Π’Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΠ΅Π½ ядСрного Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° &7(ΠΏΠΎ ΠΏΡ€ΠΈΠ½Ρ†ΠΈΠΏΡƒ Π­Π”ΠŸ)&r\n&e3)&r ΠŸΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ дСлСния &7(ΠΊΠΎΠ³Π΄Π° Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ заканчиваСтся)&r\n&e4)&r ΠŸΡ€Π΅Π²ΡŒΡŽ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠ°\n\nΠ Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ &aΡ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r совмСстимы Ρ‚ΠΎΠ»ΡŒΠΊΠΎ с ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½Ρ‹ΠΌΠΈ &9ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΠΈΠΌΠΈ Тидкостями&r, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΎΠ±Ρ€Π°Ρ‰Π°ΠΉ Π½Π° это Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅. А ΠΊΠΎΠ³Π΄Π° Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ выработаСтся, статистичСская Π²Π΅Ρ€ΠΎΡΡ‚Π½ΠΎΡΡ‚ΡŒ с ΡƒΠ²Π΅Ρ€Π΅Π½Π½ΠΎΡΡ‚ΡŒΡŽ Π³ΠΎΠ²ΠΎΡ€ΠΈΡ‚ ΠΎ Ρ‚ΠΎΠΌ, Ρ‡Ρ‚ΠΎ ΠΎΠ½ &bΡ‚&dΡ€Π°&dнс&r&dΡ„&bΠΎ&dΡ€&bΠΌ&dΠΈ&bΡ€&dΠΎ&bΠ²&dΠ°&bΠ»&dс&bя&r Π² Π½ΠΎΠ²Ρ‹Π΅ элСмСнты.\n\nΠ Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ, Π² свою ΠΎΡ‡Π΅Ρ€Π΅Π΄ΡŒ, ΠΌΠΎΠ³ΡƒΡ‚ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒΡΡ нСзависимо ΠΎΡ‚ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° β€” ΠΏΡ€ΠΈ условии, Ρ‡Ρ‚ΠΎ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹ достаточно высок.", + "quests.gregtech_energy.fission_reactor.desc.7": "Упрощённая ΠΌΠ°Ρ‚Π΅ΠΌΠ°Ρ‚ΠΈΠΊΠ° выглядит Ρ‚Π°ΠΊ: ΠΏΡ€ΠΈ достаточном количСствС ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰Π΅ΠΉ Тидкости ΠΈ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½ΠΎΠΌ стСрТнС с &c100%%&r Ρ‚Π΅ΠΏΠ»ΠΎΠ²Ρ‹Π΄Π΅Π»Π΅Π½ΠΈΠ΅ΠΌ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ достигнСт Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ &c200&r. Π­Ρ‚ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°Π·Ρ‹Π²Π°Ρ‚ΡŒ ΡƒΡ€ΠΎΠ²Π½Π΅ΠΌ Ρ‚Π΅ΠΏΠ»Π° ΠΈΠ»ΠΈ просто Ρ‚Π΅ΠΏΠ»ΠΎΠΌ. НаличиС &dΠ΄Π²ΡƒΡ…&r Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹Ρ… стСрТнСй с &c100%%&r эквивалСнтно &dΠΎΠ΄Π½ΠΎΠΌΡƒ&r ΡΡ‚Π΅Ρ€ΠΆΠ½ΡŽ с &c200%%&r β€” Π² ΠΎΠ±ΠΎΠΈΡ… случаях это ΠΏΡ€ΠΈΠ²ΠΎΠ΄ΠΈΡ‚ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ ΠΊ &c400&r Ρ‚Π΅ΠΏΠ»Π°.\n\nΠ­Ρ‚ΠΎ происходит ΠΏΠΎΡ‚ΠΎΠΌΡƒ, Ρ‡Ρ‚ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ Π³Π΅Π½Π΅Ρ€ΠΈΡ€ΡƒΠ΅Ρ‚ &6200 HU/t&r (Π΅Π΄ΠΈΠ½ΠΈΡ† Ρ‚Π΅ΠΏΠ»Π°). ΠžΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΠΈΠ΅ Тидкости способны Π·Π°Π±ΠΈΡ€Π°Ρ‚ΡŒ &61 HU/t&r Π½Π° ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ &c1&r градус Ρ‚Π΅ΠΏΠ»Π°.\n\nЕсли максимальноС Ρ‚Π΅ΠΏΠ»ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° составляСт &c190&r, Ρ‚ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ с &c100%%&r Π΅Π³ΠΎ ΠΏΠ΅Ρ€Π΅Π³Ρ€Π΅Π΅Ρ‚. Π’Ρ‹ моТСшь ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ этот ΠΏΡ€Π΅Π΄Π΅Π» с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ изоляции ΠΈΠ»ΠΈ, Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½ΠΎ, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &dΠ°ΠΊΡ‚ΠΈΠ²Π½Ρ‹Π΅ ΠΎΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΠΈΠ΅ Тидкости&r Ρ‡Π΅Ρ€Π΅Π· систСму ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ. Π£ ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° Π΅ΡΡ‚ΡŒ своё Ρ‚Π΅ΠΏΠ»ΠΎΠ²ΠΎΠ΅ воздСйствиС.", + "quests.gregtech_energy.fission_reactor.desc.8": "НапримСр, Ссли Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° составляСт &c100&r, Π° Π΅Π³ΠΎ воздСйствиС Ρ€Π°Π²Π½ΠΎ &6-10 HU/t&r, ΠΎΠ½ смоТСт ΠΎΡ…Π»Π°ΠΆΠ΄Π°Ρ‚ΡŒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Π½Π° &619 HU/t&r ΠΏΡ€ΠΈ &c190&r градусах.\n\nΠ­Ρ‚ΠΎ позволяСт Π·Π°ΠΏΡƒΡΠΊΠ°Ρ‚ΡŒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ с Π±ΠΎΠ»Π΅Π΅ Π½ΠΈΠ·ΠΊΠΈΠΌ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½Ρ‹ΠΌ ΡƒΡ€ΠΎΠ²Π½Π΅ΠΌ Ρ‚Π΅ΠΏΠ»Π° ΠΈ Π½Π΅ ΠΏΠ΅Ρ€Π΅Π³Ρ€Π΅Π²Π°Ρ‚ΡŒΡΡ! Если Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° Π½ΠΈΠΆΠ΅ &c100&r, Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π²ΠΎΠΎΠ±Ρ‰Π΅ Π½Π΅ запустится β€” Ρ‚ΠΎΡ‡Π½ΠΎ Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ ΠΈ Ρƒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² Π­Π”ΠŸ Π΅ΡΡ‚ΡŒ свои ограничСния.\n\nНа этом &eΠΌΡ‹&r ΠΏΠΎΠΊΠ° ΠΌΠΎΠΆΠ΅ΠΌ тСбя Π½Π°ΡƒΡ‡ΠΈΡ‚ΡŒ всСму. Возвращайся ΠΏΠΎΠ·ΠΆΠ΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ, появились Π»ΠΈ Π½ΠΎΠ²Ρ‹Π΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ, &eΠΊΠΎΠ»Π»Π΅Π³Π°-ядСрщик&r!", + "quests.high_voltage": "&6HV&r - ВысокоС НапряТСниС", + "quests.high_voltage.subtitle": "Π£Π²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°ΠΉΡ‚Π΅ свои мощности, ΡƒΠ·Π½Π°ΠΉΡ‚Π΅ ΠΎ чистых ΠΊΠΎΠΌΠ½Π°Ρ‚Π°Ρ…, Π΄Π΅Π»Π°ΠΉΡ‚Π΅ большС Ρ…ΠΈΠΌΠΈΠΊΠ°Ρ‚ΠΎΠ² ΠΈ Π³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ΡΡŒ ΠΊ ΠΏΠΎΠ»Ρ‘Ρ‚Ρƒ Π² космос.", + "quests.high_voltage.energium_crystals.title": "Π‘ΡƒΠΏΠ΅Ρ€ Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ", + "quests.high_voltage.energium_crystals.subtitle": "Π‘Π°ΠΉ-Π€Π°ΠΉ Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠΊΠΈ", + "quests.high_voltage.energium_crystals.desc": "&aЭнСргСтичСскиС кристаллы&r хранят ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ΅ количСство &9EU&r. Π’Π°ΠΊΠΆΠ΅ ΠΎΠ½ΠΈ, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, дСшСвлС.", + "quests.high_voltage.autoclave.title": "HV Автоклав", + "quests.high_voltage.autoclave.subtitle": "Π‘Π°ΠΌΠΎΠΏΠ°Π»ΡŒΠ½Ρ‹Π΅ Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠΊΠΈ", + "quests.high_voltage.autoclave.desc": "&3Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ Π°Π²Ρ‚ΠΎΠΊΠ»Π°Π²&r - нСсмотря Π½Π° Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ ΠΎΠ½ являСтся ΠΎΠΏΡ†ΠΈΠΎΠ½Π°Π»ΡŒΠ½Ρ‹ΠΌ, - это ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π²Ρ‹ ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ.\n\nОн ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ &6Π½Π°ΠΌΠ½ΠΎΠ³ΠΎ прСвосходят&r свои стандартныС Π°Π½Π°Π»ΠΎΠ³ΠΈ.", + "quests.high_voltage.chem_bath.title": "HV Π₯имичСская Π²Π°Π½Π½Π°", + "quests.high_voltage.chem_bath.subtitle": "ΠŸΠΎΠΆΠ°Π»ΡƒΠΉΡΡ‚Π°, Π½Π΅ ΠΊΡƒΠΏΠ°ΠΉΡ‚Π΅ΡΡŒ с тостСром...", + "quests.high_voltage.chem_bath.desc": "&3Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Π°Ρ химичСская Π²Π°Π½Π½Π°&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для &6ΠΎΠΊΡ€Π°ΡˆΠΈΠ²Π°Π½ΠΈΡ Π»ΠΈΠ½Π·&r с использованиСм &aхимичСского краситСля&r. Π­Ρ‚ΠΎ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Π²Π°ΠΌ Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ большС Ρ‚ΠΈΠΏΠΎΠ² ΠΊΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²Ρ‹Ρ… ΠΏΠΎΠ΄Π»ΠΎΠΆΠ΅ΠΊ ΠΈ ΠΎΡ…Π»Π°ΠΆΠ΄Π°Ρ‚ΡŒ ΠΏΡ€ΠΎΡ‡ΠΈΠ΅ Π²ΠΈΠ΄Ρ‹ горячих слитков.", + "quests.high_voltage.maintenance_hatches.title": "ΠŸΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹ΠΉ люк обслуТивания", + "quests.high_voltage.maintenance_hatches.subtitle": "Π― стал ΠΌΠ΅Ρ…Π°Π½ΠΎΠΌ, ΠΏΠΎΠΆΠΈΡ€Π°Ρ‚Π΅Π»Π΅ΠΌ Π»Π΅Π½Ρ‚Ρ‹", + "quests.high_voltage.maintenance_hatches.desc.1": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ Ρƒ вас Π΅ΡΡ‚ΡŒ доступ ΠΊ Π΄Π²ΡƒΠΌ &3Π½ΠΎΠ²Ρ‹ΠΌ люкам обслуТивания&r. Оба люка &6Π½Π΅ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ Ρ€ΡƒΡ‡Π½ΠΎΠ³ΠΎ обслуТивания&r ΠΏΡ€ΠΈ ΠΏΠ΅Ρ€Π²ΠΎΠΌ Ρ€Π°Π·ΠΌΠ΅Ρ‰Π΅Π½ΠΈΠΈ Π² ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠ΅.\n\n&3АвтоматичСский люк обслуТивания&r довольно прост – ΠΎΠ½ &6навсСгда&r устраняСт Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎΡΡ‚ΡŒ Π² тСхничСском обслуТивании.\n\n&3НастраиваСмый люк обслуТивания&r Π±ΠΎΠ»Π΅Π΅ интСрСсСн. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Π΅Π³ΠΎ Ρ‚Π°ΠΊΠΈΠΌ ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ, Ρ‡Ρ‚ΠΎ сократит врСмя выполнСния Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² Π½Π° 10%%, Π½ΠΎ ΠΏΡ€ΠΈ этом Π² Ρ‚Ρ€ΠΈ Ρ€Π°Π·Π° ускорит процСсс ΠΏΠΎΠ»ΠΎΠΌΠΊΠΈ. Π­Ρ‚ΠΎ &d16 Ρ€Π΅Π°Π»ΡŒΠ½Ρ‹Ρ… часов&r. Π’Π°ΠΊΠΆΠ΅, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Π³ΠΎ Π½Π° ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹Ρ… Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°Ρ…, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°, Ρ‡Ρ‚ΠΎ косвСнно ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°Π΅Ρ‚ ΠΈΡ… Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π½ΡƒΡŽ ΡΡ„Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΡΡ‚ΡŒ Π½Π° 10%%!\n\n&9НапоминаниС:&r Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ ΠΡ€ΠΌΠΈΡ€ΠΎΠ²Π°Π½Π½ΡƒΡŽ ΠΊΠ»Π΅ΠΉΠΊΡƒΡŽ Π»Π΅Π½Ρ‚Ρƒ Π² люк обслуТивания, Ρ‡Ρ‚ΠΎΠ±Ρ‹ автоматичСски ΡƒΡΡ‚Ρ€Π°Π½ΡΡ‚ΡŒ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΡ‹.", + "quests.high_voltage.maintenance_hatches.desc.2": "&l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o ВСкстура ΠΈ ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠ° автоматичСского ΠΎΠ±ΡΠ»ΡƒΠΆΠΈΠ²Π°ΡŽΡ‰Π΅Π³ΠΎ люка взяты ΠΈΠ· TecTech, Π°Π΄Π΄ΠΎΠ½Π°, ΠΈΠ·Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎ созданного для GregTech: New Horizons.\n\n&oΠ’Ρ‹ ΡƒΠ²ΠΈΠ΄ΠΈΡ‚Π΅ большС ΠΎΡ‚ TecTech, Ссли ΠΎΡΡ‚Π°Π½Π΅Ρ‚Π΅ΡΡŒ с Π½Π°ΠΌΠΈ Π² ΠΏΠΎΠ·Π΄Π½Π΅ΠΉ ΠΈΠ³Ρ€Π΅.", + "quests.high_voltage.hv_components.title": "HV ΠšΠΎΠΌΠΏΠ»Π΅ΠΊΡ‚ΡƒΡŽΡ‰ΠΈΠ΅", + "quests.high_voltage.hv_components.subtitle": "ΠœΡ‹ Π½Π°Π·Ρ‹Π²Π°Π΅ΠΌ это \"вСсСльСм\"", + "quests.high_voltage.hv_components.desc.1": "Как ΠΈ Π² случаС с &bMV&r, Π²Π°ΠΌ потрСбуСтся ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ Π±ΠΎΠ»Π΅Π΅ высокого уровня.\n\nΠ”ΠΎΡ€ΠΎΠ³ΠΈΠ΅ &dΠ±Π΅Π·ΡƒΠΏΡ€Π΅Ρ‡Π½Ρ‹Π΅ ΠΊΠ°ΠΌΠ½ΠΈ&r Π±Ρ‹Π»ΠΈ Π·Π°ΠΌΠ΅Π½Π΅Π½Ρ‹ Π½Π° Π±ΠΎΠ»Π΅Π΅ комплСксный Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ - &dΠžΡΡ‚Π΅ΠΊΠ»ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠΆΠ΅ΠΌΡ‡ΡƒΠ³ края&r. Π’Π°ΠΊΠΆΠ΅ ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ для &aЭлСктричСских ΠΌΠΎΡ‚ΠΎΡ€ΠΎΠ²&r Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ &d2x сСрСбряныС кабСля&r.\nΠ’ &aΠžΠ±ΠΎΠ»ΠΎΡ‡ΠΊΠ°Ρ… ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠ°&r ΠΈ &aΠœΠ°ΡˆΠΈΠ½Π°Ρ…&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ &dΠ—ΠΎΠ»ΠΎΡ‚Ρ‹Π΅ кабСля&r.\n\nНаконСц-Ρ‚ΠΎ, ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΡƒΡ‡Ρƒ скопившСгося Π·ΠΎΠ»ΠΎΡ‚Π°!", + "quests.high_voltage.hv_components.desc.2": "&9&lΠ‘ΠΎΠ²Π΅Ρ‚, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Тизнь ΠΏΡ€ΠΎΡ‰Π΅:&r\n\n- Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &dΠ¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½Π°&r ΠΈ &dΠœΠ½ΠΎΠ³ΠΎΡΡ‚ΡƒΠΏΠ΅Π½Ρ‡Π°Ρ‚ΡƒΡŽ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ Ρ€ΡƒΠ΄Ρ‹&r для получСния &eΠ­Π»Π΅ΠΊΡ‚Ρ€ΡƒΠΌΠ°&r.\n- Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &3Π₯ΠΈΠΌΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π²Π°Π½Π½Ρƒ&r с &dΠ Ρ‚ΡƒΡ‚ΡŒΡŽ&r для получСния &eΠ—ΠΎΠ»ΠΎΡ‚Π°&r ΠΈ &eΠ‘Π΅Ρ€Π΅Π±Ρ€Π°&r ΠΈΠ· Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… Ρ€ΡƒΠ΄.", + "quests.high_voltage.assembler.title": "HV Бборочная Машина", + "quests.high_voltage.assembler.desc": "&3Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Π°Ρ сборочная машина&r β€” это ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ шаг Π² Ρ€Π°Π·Π²ΠΈΡ‚ΠΈΠΈ, Π½ΠΎ ΠΎΠ½ Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ нСсколько ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Ρ… ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠΉ. Π”ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΡƒΡŽ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΡŽ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² этой Π³Π»Π°Π²Π΅ квСстов.\n\nΠ’Π°ΠΌ понадобится &6Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Π°Ρ сборочная машина&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Π²Π°ΡˆΡƒ ΠΏΠ΅Ρ€Π²ΡƒΡŽ &dΠ Π°ΠΊΠ΅Ρ‚Ρƒ&r.", + "quests.high_voltage.lenses.title": "О Π΄Π°, я Π²ΠΈΠΆΡƒ этот Ρ†Π²Π΅Ρ‚Π½ΠΎΠΉ ΠΌΠΈΡ€", + "quests.high_voltage.lenses.desc": "&aΠžΠ±Ρ‹Ρ‡Π½Π°Ρ БистСма На ΠšΡ€ΠΈΡΡ‚Π°Π»Π»Π΅ (БнК)&r Π±ΡƒΠ΄Π΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ для ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚ΠΎΠ³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° &dULV схСмы&r.\n\nΠœΡ‹ Ρ‚Π°ΠΊΠΆΠ΅ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΏΡ€ΠΈΠ»ΠΎΠΆΠΈΡ‚ΡŒ всС усилия, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Ρ€Π°Π½Π΅Π΅ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ всС ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Π΅ Ρ†Π²Π΅Ρ‚Π½Ρ‹Π΅ Π»ΠΈΠ½Π·Ρ‹. Они пСрСчислСны здСсь Π² &eΡ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ&r Π·Π°Π΄Π°Ρ‡Π΅.", + "quests.high_voltage.ulv_circuits.title": "ΠŸΡ€Π΅Π²ΠΎΡΡ…ΠΎΠ΄Π½Ρ‹Π΅ ULV схСмы!", + "quests.high_voltage.ulv_circuits.desc": "&8ULV&r Π‘Ρ…Π΅ΠΌΡ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ Π² Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ… &9AE2&r ΠΈ ΠΊΡ€Π°Ρ„Ρ‚Π°Ρ… &aCreate&r.", + "quests.high_voltage.hv_energy_hatch.title": "ΠŸΡ€ΠΎΠΊΠ°Ρ‡Π°ΠΉΡ‚Π΅ Π²Π°ΡˆΡƒ EBF II", + "quests.high_voltage.hv_energy_hatch.subtitle": "Π—Π°ΠΌΠ΅Ρ‡Π°Π΅Ρ‚Π΅ здСсь Π·Π°ΠΊΠΎΠ½ΠΎΠΌΠ΅Ρ€Π½ΠΎΡΡ‚ΡŒ?", + "quests.high_voltage.hv_energy_hatch.desc": "Для &aΠ˜Π½Ρ‚Π΅Π³Ρ€Π°Π»ΡŒΠ½ΠΎΠΉ схСмы ΠΌΠ°Π»ΠΎΠΉ мощности (LPIC)&r трСбуСтся &3HV РСзочная машина&r размСщённая Π²Π½ΡƒΡ‚Ρ€ΠΈ &3Чистой ΠΊΠΎΠΌΠ½Π°Ρ‚Ρ‹&r.\n\n&3ЭнСргСтичСскиС Π²Ρ…ΠΎΠ΄Π½Ρ‹Π΅ Ρ€Π°Π·ΡŠΠ΅ΠΌΡ‹ (HV)&r Π±ΡƒΠ΄ΡƒΡ‚ Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΌ Π΄ΠΎΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ΠΌ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π²Ρ‹ смоТСтС Π·Π°ΠΏΡƒΡΠΊΠ°Ρ‚ΡŒ свои ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ (Π² основном ΡΠ»Π΅ΠΊΡ‚Ρ€ΠΎΠ΄ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ ΠΈ большой химичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€) нСпосрСдствСнно ΠΎΡ‚ &6HV&r Π»ΠΈΠ½ΠΈΠΈ элСктроснабТСния.", + "quests.high_voltage.chem_reactor.title": "Π₯имия высокого напряТСния", + "quests.high_voltage.chem_reactor.desc": "&3Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ химичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€&r ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ ΡƒΠΉΠΌΡƒ Π½ΠΎΠ²Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ². Π£Ρ…Ρ…, ΠΊΠΎΠΌΡƒ Π½Π΅ нравится постоянно растущий спрос Π½Π° Π±ΠΎΠ»Π΅Π΅ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚ΡƒΡŽ Ρ…ΠΈΠΌΠΈΡŽ?\n\n&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r ΠœΡ‹ фактичСски Ρ€Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Π»ΠΈ ΠΊΡƒΡ‡Ρƒ Π½ΠΎΠ²ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ‚Π΅Π½Ρ‚Π°, достигнув &6HV&r. Однако Π½Π΅ каТдая линия производства ΠΈΠ»ΠΈ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π΅Ρ‘ элСмСнт сСйчас ΠΈΠΌΠ΅ΡŽΡ‚ Ρ€Π΅ΡˆΠ°ΡŽΡ‰Π΅Π΅ Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅. Если Π±Ρ‹ ΠΌΡ‹ Π²ΠΊΠ»ΡŽΡ‡ΠΈΠ»ΠΈ всС, Ρ‚ΠΎ Π³Π»Π°Π²Π° &6HV&r Π±Ρ‹Π»Π° Π±Ρ‹ слишком насыщСнной!\n\nΠ’Ρ‹ всС Ρ€Π°Π²Π½ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠ΄Π³Π»ΡΠ΄Π΅Ρ‚ΡŒ Π² Π³Π»Π°Π²Ρƒ &5EV&r, Ссли Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΠ΄Ρ‚ΠΎΠ»ΠΊΠ½ΡƒΡ‚ΡŒ сСбя Π½Π° Ρ‡Ρ‚ΠΎ Ρ‚ΠΎ большСС.", + "quests.high_voltage.rutile_loop.title": "ΠŸΠΎΡ‡Ρ‚ΠΈ Π’ΠΈΡ‚Π°Π½", + "quests.high_voltage.rutile_loop.subtitle": "...ΠΏΠΎΠΊΠ° Π΅Ρ‰Ρ‘ НЕ Ρ‚ΠΈΡ‚Π°Π½!", + "quests.high_voltage.rutile_loop.desc": "Π’ΠΈΡ‚Π°Π½ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Π±ΠΎΠ»Π΅Π΅ &bслоТного&r процСсса получСния ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰ΠΈΠΌΠΈ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Π°ΠΌΠΈ. Для Π½Π°Ρ‡Π°Π»Π° Π²Π°ΠΌ понадобится &aΠ ΡƒΡ‚ΠΈΠ»&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ ΠΈΠ· ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ &aБоксита&r, &aΠ˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚Π°&r, &aАлюминия&r, &aАрмалколита&r ΠΈ &aΠ”Π΅ΡˆΠ°&r β€” послСдний встрСчаСтся Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π° &dΠ›ΡƒΠ½Π΅&r.\n\nКак Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Ρ‹ Π½Π°ΠΊΠΎΠΏΠΈΡ‚Π΅ достаточно &5Π ΡƒΡ‚ΠΈΠ»Π°&r, ваш ΠΏΡƒΡ‚ΡŒ ΠΊ &6Π’ΠΈΡ‚Π°Π½Ρƒ&r продолТится Π² ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅ΠΌ квСстС. НС Π½Π°Π΄ΠΎ ΡΠΏΠ΅ΡˆΠΈΡ‚ΡŒ.\n\n&9Π‘ΠΎΠ²Π΅Ρ‚:&r ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° &aБокситовой&r Ρ€ΡƒΠ΄Ρ‹ Π΄Π°Ρ‘Ρ‚ ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹Π΅ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹! Π’ΠΊΠ»ΡŽΡ‡Π°Ρ этап &3ВСрмичСского ЦСнтрифугирования&r, Π²Ρ‹ Π»Π΅Π³ΠΊΠΎ &6ΡƒΡ‚Ρ€ΠΎΠΈΡ‚Π΅&r Π²Ρ‹Ρ…ΠΎΠ΄ &aΠ ΡƒΡ‚ΠΈΠ»Π°&r.", + "quests.high_voltage.rutile_loop_2.title": "ΠŸΠΎΡ‡Ρ‚ΠΈ Π’ΠΈΡ‚Π°Π½Β²", + "quests.high_voltage.rutile_loop_2.subtitle": "А это ΡƒΠΆΠ΅ Ρ‚ΠΈΡ‚Π°Π½, Π΄Π°?", + "quests.high_voltage.rutile_loop_2.desc.1": "Π§Ρ‚ΠΎΠ±Ρ‹ Π·Π°ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π’ΠΈΡ‚Π°Π½, &aΠ ΡƒΡ‚ΠΈΠ»&r сначала Π½ΡƒΠΆΠ½ΠΎ Π²ΠΎΡΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Π΄ΠΎ &aΠ’Π΅Ρ‚Ρ€Π°Ρ…Π»ΠΎΡ€ΠΈΠ΄Π° Ρ‚ΠΈΡ‚Π°Π½Π°&r Π² &3Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½ΠΎΠΌ химичСском Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π΅&r, Π·Π°Ρ‚Π΅ΠΌ Π΅Ρ‰Ρ‘ Ρ€Π°Π· Π²ΠΎΡΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Π² &3Π­Π”ΠŸ&r с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &dМагния&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°ΠΊΠΎΠ½Π΅Ρ† ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π’ΠΈΡ‚Π°Π½.\n\n&dΠ£Π³Π»Π΅Ρ€ΠΎΠ΄&r, &dΠ₯Π»ΠΎΡ€&r, &dΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄&r ΠΈ &dМагний&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹Π΅ Π² процСссС, ΠΌΠΎΠΆΠ½ΠΎ &6идСально Π²ΠΎΡΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ&r ΠΈΠ· ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ² β€” &dМонооксида ΡƒΠ³Π»Π΅Ρ€ΠΎΠ΄Π°&r ΠΈ &dΠ₯Π»ΠΎΡ€ΠΈΠ΄Π° магния&r β€” Π±Π΅Π· ΠΏΠΎΡ‚Π΅Ρ€ΡŒ. Если Π²Ρ‹ настроитС систСму ΠΈΡ… ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ, &aСдинствСнным ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠΌ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΡΡ‚Π°Π²Π»ΡΡ‚ΡŒ для производства Ρ‚ΠΈΡ‚Π°Π½Π°, останСтся &dΠ ΡƒΡ‚ΠΈΠ»&r!", + "quests.high_voltage.rutile_loop_2.desc.2": "&aΠ’Π΅Ρ‚Ρ€Π°Ρ…Π»ΠΎΡ€ΠΈΠ΄ Π’ΠΈΡ‚Π°Π½Π°&r Ρ‚Π°ΠΊΠΆΠ΅ выступаСт Π² Ρ€ΠΎΠ»ΠΈ ΠΊΠ°Ρ‚Π°Π»ΠΈΠ·Π°Ρ‚ΠΎΡ€Π° ΠΏΡ€ΠΈ производствС пластмасс. Π”ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ нСбольшого количСства &aTiClβ‚„&r Π² процСсс ΠΏΠΎΠ»ΠΈΠΌΠ΅Ρ€ΠΈΠ·Π°Ρ†ΠΈΠΈ ΠΌΠΎΠΆΠ΅Ρ‚ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ Π²Ρ‹Ρ…ΠΎΠ΄ ΠΏΠΎΠ»ΠΈΠΌΠ΅Ρ€Π° Π΄ΠΎ &6133%%&r. ЕстСствСнно, это Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠΎ ТСланию.", + "quests.high_voltage.superconductors.title": "HV Π‘Π²Π΅Ρ€Ρ…ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½ΠΈΠΊΠΈ", + "quests.high_voltage.superconductors.desc": "К этому ΠΌΠΎΠΌΠ΅Π½Ρ‚Ρƒ ΠΏΠΎΡ‚Π΅Ρ€ΠΈ Π² ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Ρ… кабСлях Π½Π°ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π΅Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹, Ρ‡Ρ‚ΠΎ свСрхпроводники ΡƒΠΆΠ΅ Π½Π΅ ΡΠ²Π»ΡΡŽΡ‚ΡΡ ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌΠΈ. Π’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, ΠΎΠ½ΠΈ ΠΏΠΎ-ΠΏΡ€Π΅ΠΆΠ½Π΅ΠΌΡƒ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ для возмоТности Ρ€Π°Π·Π΄Π΅Π»ΡΡ‚ΡŒ ΠΈ ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½ΡΡ‚ΡŒ ΠΊΠ°Π±Π΅Π»ΠΈ Π½Π° Π»Π΅Ρ‚Ρƒ, ΠΈ ΠΎΠ½ΠΈ Π½Π°ΠΏΠΎΠ»ΠΎΠ²ΠΈΠ½Ρƒ состоят ΠΈΠ· кислорода, поэтому ΠΎΠ½ΠΈ Ρ‚Π°ΠΊΠΆΠ΅ Π΄Π΅ΡˆΠ΅Π²Ρ‹!\n\nΠ‘Π²Π΅Ρ€Ρ…ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½ΠΈΠΊΠΈ ΠΏΠΎ-ΠΏΡ€Π΅ΠΆΠ½Π΅ΠΌΡƒ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ для создания &aΠ“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠ² ΠΏΠΎΠ»Π΅ΠΉ&r.", + "quests.high_voltage.nichrome_coils.title": "НихромовыС ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ", + "quests.high_voltage.nichrome_coils.subtitle": "Нам Π΅Ρ‰Ρ‘ Π΄Π°Π»Π΅ΠΊΠΎ Π΄ΠΎ Ρ‚ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Ρ‚ΠΌΠΈΡ‚ΡŒ Π‘ΠΎΠ»Π½Ρ†Π΅", + "quests.high_voltage.nichrome_coils.desc.1": "&3НихромовыС ΠΠ°Π³Ρ€Π΅Π²Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ ΠšΠ°Ρ‚ΡƒΡˆΠΊΠΈ&r ΠΏΠΎΠ²Ρ‹ΡˆΠ°ΡŽΡ‚ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ вашСй &3Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ&r Π΄ΠΎ &d3 600 K&r.\n\nΠ₯отя ΠΎΠ½ΠΈ &oΠΏΠΎΠΊΠ°&r Π½Π΅ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ, всё ΠΆΠ΅ стоит ΠΎΠ±Π½ΠΎΠ²ΠΈΡ‚ΡŒ Π²Π°ΡˆΡƒ ΠΎΡΠ½ΠΎΠ²Π½ΡƒΡŽ &3Π­Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π”ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠŸΠ΅Ρ‡ΡŒ&r Ρ€Π°Π΄ΠΈ этих приятных &6Бонусов ΠΎΡ‚ ΠšΠ°Ρ‚ΡƒΡˆΠ΅ΠΊ&r.", + "quests.high_voltage.nichrome_coils.desc.2": "&l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o Π’ ΠΎΡ€ΠΈΠ³ΠΈΠ½Π°Π»ΡŒΠ½ΠΎΠΌ GregTech 5 сущСствовало всСго Ρ‚Ρ€ΠΈ Ρ‚ΠΈΠΏΠ° ΠΊΠ°Ρ‚ΡƒΡˆΠ΅ΠΊ. Π­Ρ‚ΠΎΡ‚ Π±Ρ‹Π» послСдним ΡƒΡ€ΠΎΠ²Π½Π΅ΠΌ.", + "quests.high_voltage.titanium.title": "Π’ΠΈΡ‚Π°Π½", + "quests.high_voltage.titanium.desc": "&aΠ’ΠΈΡ‚Π°Π½&r ΠΎΠ±Π»Π°Π΄Π°Π΅Ρ‚ самой высокой ΠΊΠΎΡ€Ρ€ΠΎΠ·ΠΈΠΎΠ½Π½ΠΎΠΉ ΡΡ‚ΠΎΠΉΠΊΠΎΡΡ‚ΡŒΡŽ ΠΈ Π»ΡƒΡ‡ΡˆΠΈΠΌ ΡΠΎΠΎΡ‚Π½ΠΎΡˆΠ΅Π½ΠΈΠ΅ΠΌ прочности ΠΊ плотности срСди всСх ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠ², поэтому Π½Π΅ΡƒΠ΄ΠΈΠ²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ, Ρ‡Ρ‚ΠΎ ΠΎΠ½ станСт основным ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠΌ Π² нашСй ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·Π°Ρ†ΠΈΠΈ &5EV&r.\n\nΠ£Π±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎ ваш Π·Π°ΠΌΠΊΠ½ΡƒΡ‚Ρ‹ΠΉ Ρ†ΠΈΠΊΠ» ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ &aΠ ΡƒΡ‚ΠΈΠ»Π°&r Π½Π°Π»Π°ΠΆΠ΅Π½ ΠΊΠ°ΠΊ слСдуСт, ΠΈ ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ΡΡŒ Π·Π°ΠΏΡƒΡΠΊΠ°Ρ‚ΡŒ Π² Π΄Π΅Π»ΠΎ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΠΎ Π²Ρ‹Π΄Π΅Π»Π΅Π½Π½ΡƒΡŽ &3Π­Π”ΠŸ&r Π½Π° нСсколько часов.\n\nНСбольшоС отступлСниС β€” Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ, Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &5EV&r, ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΡ‡Π½Ρ‹Π΅ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹ выходят ΠΈΠ· ΠΌΠΎΠ΄Ρ‹! Π§Ρ‚ΠΎΠ±Ρ‹ ΡΠΏΡ€Π°Π²ΠΈΡ‚ΡŒΡΡ с Π½Π°Π³Ρ€ΡƒΠ·ΠΊΠΎΠΉ, потрСбуСтся нСсколько &3HV Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠ²&r, Π° ΠΏΠΎΠ·ΠΆΠ΅ β€” ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ Π½Π° ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹Π΅ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹.\n\nΠ₯отя ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹Π΅ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π΄ΠΎΡ€ΠΎΠΆΠ΅, ΠΎΠ½ΠΈ Π³ΠΎΡ€Π°Π·Π΄ΠΎ эффСктивнСС ΠΏΠΎ энСрговыработкС! ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½Π΅Π΅ смотритС Π² Π³Π»Π°Π²Π΅ &dЭнСргия&r!", + "quests.high_voltage.vacuum_freezer.title": "ЛСдСнящий Ρ…ΠΎΠ»ΠΎΠ΄", + "quests.high_voltage.vacuum_freezer.subtitle": "Π’Ρ‹ Π·Π½Π°Π»ΠΈ, Ρ‡Ρ‚ΠΎ Π²Π°ΠΊΡƒΡƒΠΌ Π½Π° самом Π΄Π΅Π»Π΅ Π΄Π΅Π»Π°Π΅Ρ‚ Π²Π΅Ρ‰ΠΈ горячСС?", + "quests.high_voltage.vacuum_freezer.desc": "&3Π’Π°ΠΊΡƒΡƒΠΌΠ½Ρ‹ΠΉ Π₯олодильник&r β€” это ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Π°Ρ структура, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΠ°Ρ для охлаТдСния &eГорячих Π‘Π»ΠΈΡ‚ΠΊΠΎΠ²&r. ВсС слитки, ΠΏΡ€ΠΎΠΈΠ·Π²Π΅Π΄Ρ‘Π½Π½Ρ‹Π΅ Π² Π­Π”ΠŸ (A.K.A EBF) ΠΏΡ€ΠΈ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π΅ Π²Ρ‹ΡˆΠ΅ &d1750 K&r, Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ охлаТдСния.\n\nΠ’ Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π΅ случаСв вашСй &3ЭлСктричСской Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ&r Π±ΡƒΠ΄Π΅Ρ‚ Π½Π΅ Ρ…Π²Π°Ρ‚Π°Ρ‚ΡŒ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ Π±Π΅ΡΠΏΠΎΠΊΠΎΠΈΡ‚ΡŒΡΡ ΠΎ Ρ€Π°Π·Π³ΠΎΠ½Π΅ Ρ…ΠΎΠ»ΠΎΠ΄ΠΈΠ»ΡŒΠ½ΠΈΠΊΠ°.\n\nΠ’Π°ΠΊ ΠΊΠ°ΠΊ &eГорячиС Π‘Π»ΠΈΡ‚ΠΊΠΈ&r &cнаносят ΡƒΡ€ΠΎΠ½&r ΠΏΡ€ΠΈ ΡƒΠ΄Π΅Ρ€ΠΆΠ°Π½ΠΈΠΈ, автоматизация ΠΈΡ… транспортировки Π±ΡƒΠ΄Π΅Ρ‚ ΠΊΡ€Π°ΠΉΠ½Π΅ ΠΏΠΎΠ»Π΅Π·Π½ΠΎΠΉ.", + "quests.high_voltage.mv_superconductors.title": "MV Π‘Π²Π΅Ρ€Ρ…ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½ΠΈΠΊΠΈ", + "quests.high_voltage.mv_superconductors.desc": "&a4A&r Ρ‚ΠΎΠΊΠ° &bMV&r напряТСния ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ ΠΏΡ€ΠΈΠ²Π»Π΅ΠΊΠ°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ, Π½ΠΎ Π½Π° Π΄Π°Π½Π½ΠΎΠΌ этапС ΠΎΠ½ΠΈ, вСроятно, Π²Π°ΠΌ Π½Π΅ Π½ΡƒΠΆΠ½Ρ‹. Π’Π°Ρ€ΠΈΠ°Π½Ρ‚ всСгда Π΅ΡΡ‚ΡŒ, Ссли ΠΎΠ½ Π²Π°ΠΌ Π½ΡƒΠΆΠ΅Π½.", + "quests.high_voltage.circuit_assembler.title": "HV Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ микросхСм", + "quests.high_voltage.circuit_assembler.subtitle": "Π’Π°ΠΌ понадобится чистая ΠΊΠΎΠΌΠ½Π°Ρ‚Π° Ρ‡Ρ‚ΠΎ Π±Ρ‹ ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ это", + "quests.high_voltage.circuit_assembler.desc": "Π‘Π»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ &3Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊΠ° ΠœΠΈΠΊΡ€ΠΎΡΡ…Π΅ΠΌ&r Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ для ΠΎΠ΄Π½ΠΎΠ³ΠΎ Ρ‚ΠΈΠΏΠ° схСм β€” вашСго ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ &aΠœΠ΅ΠΉΠ½Ρ„Ρ€Π΅ΠΉΠΌΠ°&r. Π£ вас ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄Π½ΠΎ ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠ΅ Π΄ΠΎ β€” &5EV Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊΠ° микросхСм&r.\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΡ‚Π»ΠΎΠΆΠΈΡ‚ΡŒ это Π΄ΠΎ &5EV&r ΠΈΠ»ΠΈ просто ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Π³ΠΎ для Π±ΠΎΠ»Π΅Π΅ быстрого ΠΊΡ€Π°Ρ„Ρ‚Π° схСм.", + "quests.high_voltage.microprocessor_mainframe.title": "Mainframes - first IV Circuits!", + "quests.high_voltage.microprocessor_mainframe.desc": "The first &1IV&r circuit. Congratulations on making it this far!\n\nThis will be used when you get to &5EV&r, or you can use it right now to craft an Advanced Nanosuit Chestplate, a big upgrade to your jetpack!.\n\n&l&3Lore:&r&o The original texture for the Mainframes was taken from an image of an 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ΠœΡ‹ Π½Π°Ρ‡Π½Π΅ΠΌ с чистой ΠΊΠΎΠΌΠ½Π°Ρ‚Ρ‹ Ρ€Π°Π·ΠΌΠ΅Ρ€ΠΎΠΌ 5x5x5, Π½ΠΎ Π²Π°ΠΌ слСдуСт ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ Π΅Ρ‘ Ρ€Π°Π·ΠΌΠ΅Ρ€, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ Π½Π°Ρ‡Π½Π΅Ρ‚Π΅ Ρ‡ΡƒΠ²ΡΡ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ сСбя тСсно.", + "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\nShift + ПКМ со сканСром Π² Ρ€ΡƒΠΊΠ΅, Ρ‡Ρ‚ΠΎ Π±Ρ‹ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ Π΅Π³ΠΎ Ρ€Π΅ΠΆΠΈΠΌ Π½Π° &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.fluorine.title": "Π€Ρ‚ΠΎΡ€", + "quests.high_voltage.fluorine.subtitle": "А Ρ‚Ρ‹ почистил сСгодня Π·ΡƒΠ±Ρ‹?", + "quests.high_voltage.fluorine.desc": "Π€Ρ‚ΠΎΡ€ β€” самый Ρ€Π΅Π΄ΠΊΠΈΠΉ Π³Π°Π·, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π² Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚Π΅ элСктролиза Π² этой ΠΈΠ³Ρ€Π΅.\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π΅Π³ΠΎ ΠΈΠ· &aΠ›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚Π°&r, &aБастнСзита&r ΠΈ &aΠ‘Π»ΡŽΠ΄Ρ‹&r, Π½ΠΎ Π»ΡƒΡ‡ΡˆΠΈΠΉ источник – ΠΈΠ· &aΠ’ΠΎΠΏΠ°Π·Π°&r.", + "quests.high_voltage.ptfe.title": "ΠŸΠΎΠ»ΠΈΡ‚Π΅Ρ‚Ρ€Π°Ρ„Ρ‚ΠΎΡ€ΡΡ‚ΠΈΠ»Π΅Π½", + "quests.high_voltage.ptfe.subtitle": "Π’Π°ΠΊΠΆΠ΅ извСстСн ΠΊΠ°ΠΊ Π’Π΅Ρ„Π»ΠΎΠ½", + "quests.high_voltage.ptfe.desc": "&aΠŸΠΎΠ»ΠΈΡ‚Π΅Ρ‚Ρ€Π°Ρ„Ρ‚ΠΎΡ€ΡΡ‚ΠΈΠ»Π΅Π½ (ПВЀЭ)&r прСдставляСт собой &7ΡƒΠ³Π»Π΅Ρ€ΠΎΠ΄Π½ΠΎ&r-&bфтористый&r ΠΏΠΎΠ»ΠΈΠΌΠ΅Ρ€. Как ΠΈ ΠŸΠ’Π₯, ПВЀЭ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для увСличСния производства пластиковых ΠΏΠΎΠ΄Π»ΠΎΠΆΠ΅ΠΊ ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΏΠΎΠ΄Π΅Π»ΠΎΠΊ. Π’ настоящСС врСмя ΠΈΠ· Π½Π΅Π³ΠΎ Π΄Π΅Π»Π°ΡŽΡ‚ стСнки &3Π‘ΠΎΠ»ΡŒΡˆΠΈΡ… химичСских Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΎΠ²&r.\n\nΠ’Π°ΠΊ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ &3Π₯Π»ΠΎΡ€&r Π² этом процСссС, ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ пСрСрабатываСтся ΠΏΡ€ΠΈ элСктролизС ΠΎΡ‚Ρ…ΠΎΠ΄ΠΎΠ² &aБоляной кислоты&r.\n\n&bΠ€Ρ‚ΠΎΡ€&r Ρ‚Π°ΠΊΠΆΠ΅ Π±ΡƒΠ΄Π΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ Π² процСссах очистки &aΠ£Ρ€Π°Π½Π°&r ΠΈ &7Наквады&r.\n\n&9Π‘ΠΎΠ²Π΅Ρ‚:&r Π”Π°Π»Π΅Π΅ Π²Π°ΠΌ слСдуСт ΠΎΡ‚Π»ΠΈΠ²Π°Ρ‚ΡŒ ΠΏΠΎΠ»ΠΈΠΌΠ΅Ρ€Ρ‹ Π² Π²ΠΈΠ΄Π΅ &dΠ‘Π»ΠΈΡ‚ΠΊΠ°&r, ΠΏΠΎΡΠΊΠΎΠ»ΡŒΠΊΡƒ ΠΈΠΌ ΠΌΠΎΠΆΠ½ΠΎ Π»Π΅Π³ΠΊΠΎ ΠΏΡ€ΠΈΠ΄Π°Ρ‚ΡŒ Π»ΡŽΠ±ΡƒΡŽ Ρ„ΠΎΡ€ΠΌΡƒ, которая Π²Π°ΠΌ понадобится, с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &3ЭкструдСра&r.", + "quests.high_voltage.nitrobenzene.title": "НитробСнзол", + "quests.high_voltage.nitrobenzene.subtitle": "ВСнь сСбя ΠΏΡ€ΠΎΡˆΠ»ΠΎΠ³ΠΎ", + "quests.high_voltage.nitrobenzene.desc": "Π’ TerraFirmaGreg &aΠ½ΠΈΡ‚Ρ€ΠΎΠ±Π΅Π½Π·ΠΎΠ»&r ΠΈ &aΠ±Π΅Π½Π·ΠΎΠ»&r Π±Ρ‹Π»ΠΈ сильно ΠΏΠΎΠ½Π΅Ρ€Ρ„Π»Π΅Π½Ρ‹. Π˜Ρ… всё Π΅Ρ‰Ρ‘ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, Π½ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ основноС ΠΈΡ… ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠ΅ β€” Π² качСствС ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚ΠΎΠ².\n\nΠžΠ±Ρ€Π°Ρ‚ΠΈ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ ΠΏΡ€ΠΈ ΠΊΡ€Π°Ρ„Ρ‚Π΅ Π½ΠΈΡ‚Ρ€ΠΎΠ±Π΅Π½Π·ΠΎΠ»Π° Π½Π° ΠΊΠ°ΠΆΠ΄ΠΎΠΌ этапС расходуСтся Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ &dсСры&r.", + "quests.high_voltage.lcr.title": "Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ химичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€", + "quests.high_voltage.lcr.desc.1": "&3Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ химичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ (LCR)&r β€” это ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹ΠΉ &3Π₯имичСский Π Π΅Π°ΠΊΡ‚ΠΎΡ€&r с ΡƒΠ²Π΅Π»ΠΈΡ‡Π΅Π½Π½Ρ‹ΠΌ количСством Π²Ρ…ΠΎΠ΄Π½Ρ‹Ρ… ΠΈ Π²Ρ‹Ρ…ΠΎΠ΄Π½Ρ‹Ρ… слотов. Π•Π³ΠΎ Ρ‚Π΅Ρ„Π»ΠΎΠ½ΠΎΠ²Ρ‹Π΅ корпуса ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹.\n\n&3LCR&r ΠΌΠΎΠΆΠ΅Ρ‚ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ ΡΠΊΡΠΊΠ»ΡŽΠ·ΠΈΠ²Π½Ρ‹Π΅ Ρ€Π΅Π°ΠΊΡ†ΠΈΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½ΡΡ‚ΡŒ нСсколько ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Ρ… шагов &3Π₯имичСского Π Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r Π² &6ΠΎΠ΄ΠΈΠ½ шаг&r. ΠŸΡ€ΠΈΠΌΠ΅Ρ€Ρ‹ Π½ΠΈΠΆΠ΅:\n\n&9-&r &aДиоксид Азота&r (для получСния Азотной кислоты ΠΈ Вриоксида Π°Π·ΠΎΡ‚Π°)\n&9-&r &aБСрная кислота&r\n&9-&r &aΠ€Π΅Π½ΠΎΠ»&r\n&9-&r &aΠ­ΠΏΠΈΡ…Π»ΠΎΡ€Π³ΠΈΠ΄Ρ€ΠΈΠ½&r (ΠΎΠ½ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌ для Эпоксидной смолы!)\n&9-&r &aЭпоксидная смола&r", + "quests.high_voltage.lcr.desc.2": "Π•ΡΡ‚ΡŒ Ρ‚Π°ΠΊΠΆΠ΅ ΡΠΊΡΠΊΠ»ΡŽΠ·ΠΈΠ²Π½Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ для &3LCR&r. НапримСр, &dΠ Π°Π΄ΠΎΠ½&r сСйчас ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² LCR.\n\nВсС &dΠ Π°Π·Π³ΠΎΠ½Ρ‹&r Π² &3LCR&r ΠΈΠΌΠ΅ΡŽΡ‚ &6100%% ΡΡ„Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΡΡ‚ΡŒ&r (извСстныС ΠΊΠ°ΠΊ Π˜Π΄Π΅Π°Π»ΡŒΠ½Ρ‹Π΅ Ρ€Π°Π·Π³ΠΎΠ½Ρ‹); ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ€Π°Π·Π³ΠΎΠ½ &5Ρ‡Π΅Ρ‚Ρ‹Ρ€Ρ‘Ρ…ΠΊΡ€Π°Ρ‚Π½ΠΎ ускоряСт Ρ€Π°Π±ΠΎΡ‚Ρƒ&r, вмСсто ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠ³ΠΎ удвоСния.\n\nΠ£ &3LCR&r Π΅ΡΡ‚ΡŒ Π΅Ρ‰Ρ‘ ΠΎΠ΄Π½ΠΎ &6прСимущСство&r. МоТно ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &32 энСргСтичСских люка&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°ΠΏΡƒΡΠΊΠ°Ρ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ &5ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅Π³ΠΎ уровня&r, Π°Π½Π°Π»ΠΎΠ³ΠΈΡ‡Π½ΠΎ &3ЭлСктричСской Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ&r.", + "quests.high_voltage.lcr.desc.3": "&9Π‘ΠΎΠ²Π΅Ρ‚:&r Учитывая количСство LCR, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ, ΠΏΠΎΡ‡Π΅ΠΌΡƒ Π±Ρ‹ максимально эффСктивно Π½Π΅ ΠΏΡ€ΠΈΠΌΠ΅Π½ΡΡ‚ΡŒ &dсовмСстноС использованиС стСн&r?\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ совмСстно ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΎΠ΄ΠΈΠ½ стандартный &3ЭнСргСтичСский Π›ΡŽΠΊ&r с 2A ΠΌΠ΅ΠΆΠ΄Ρƒ двумя LCR.\n\nМоТно Ρ‚Π°ΠΊΠΆΠ΅ совмСстно ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &3Π’Ρ…ΠΎΠ΄Π½Ρ‹Π΅/Π’Ρ‹Ρ…ΠΎΠ΄Π½Ρ‹Π΅ Π›ΡŽΠΊΠΈ&r, Π½ΠΎ ΡƒΠ±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ LCR выполняСт ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚.\n\nΠ£Ρ‡Ρ‚ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ Π›ΡŽΠΊΠΈ тСхничСского обслуТивания ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ совмСстно нСльзя.", + "quests.high_voltage.tnt.title": "Π”ΠΈ-На-ΠœΠΈΡ‚", + "quests.high_voltage.tnt.task": "Π›ΡŽΠ±Π°Ρ Π²Π·Ρ€Ρ‹Π²Ρ‡Π°Ρ‚ΠΊΠ°", + "quests.high_voltage.tnt.desc.1": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ΡΡŒ Π΄Π΅Π»Π°Ρ‚ΡŒ Π²Π·Ρ€Ρ‹Π²Ρ‡Π°Ρ‚ΠΊΡƒ β€” ΠΎΠ½Π° потрСбуСтся для &cИмплозионного ΠšΠΎΠΌΠΏΡ€Π΅ΡΡΠΎΡ€Π°&r. Π£ вас Π΅ΡΡ‚ΡŒ Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π°, ΠΎΡ‚ простого Π΄ΠΎ слоТного, Π½ΠΎ ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΡΡ‚Ρ€Π΅ΠΌΠΈΡ‚ΡŒΡΡ ΠΊ &dΠŸΡ€ΠΎΠΌΡ‹ΡˆΠ»Π΅Π½Π½ΠΎΠΌΡƒ Π΄ΠΈΠ½Π°ΠΌΠΈΡ‚Ρƒ&r, ΠΊΠΎΠ³Π΄Π° это Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ.", + "quests.high_voltage.tnt.desc.2": "&cВНВ&r (Π’Ρ€ΠΈΠ½ΠΈΡ‚Ρ€ΠΎΡ‚ΠΎΠ»ΡƒΠΎΠ») большС нСльзя ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΠ· ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠ³ΠΎ ΠΏΠΎΡ€ΠΎΡ…Π° ΠΈ пСска. ВмСсто этого Π½ΡƒΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &aΠ“Π΅Π»Π΅ΠΎΠ±Ρ€Π°Π·Π½Ρ‹ΠΉ Π’ΠΎΠ»ΡƒΠΎΠ»&r ΠΈ Π·Π°ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ ΠΏΡ€ΠΎΡ€Π΅Π°Π³ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π΅Π³ΠΎ с Π‘Π΅Ρ€Π½ΠΎΠΉ кислотой для получСния ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠ³ΠΎ Π΄ΠΈΠ½Π°ΠΌΠΈΡ‚Π°.\n\nИспользованиС Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° Π² &3HV Π₯имичСском Π Π΅Π°ΠΊΡ‚ΠΎΡ€Π΅&r ΡƒΠ΄Π²ΠΎΠΈΡ‚ Π²Ρ‹Ρ…ΠΎΠ΄ &aΠ“Π΅Π»Π΅ΠΎΠ±Ρ€Π°Π·Π½ΠΎΠ³ΠΎ Π’ΠΎΠ»ΡƒΠΎΠ»Π°&r, Π½ΠΎ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… Ρ€Π΅Π°ΠΊΡ‚ΠΈΠ²ΠΎΠ².", + "quests.high_voltage.tnt.desc.3": "Π£ нас Π½Π΅Ρ‚ простых совСтов ΠΏΠΎ производству &aΠ’ΠΎΠ»ΡƒΠΎΠ»Π°&r. Π­Ρ‚ΠΎΡ‚ процСсс Π±ΡƒΠ΄Π΅Ρ‚ слоТным Π²Π½Π΅ зависимости ΠΎΡ‚ Π²Ρ‹Π±Ρ€Π°Π½Π½ΠΎΠ³ΠΎ Π²Π°ΠΌΠΈ способа.\n\nΠ’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ Π½Π° прямой Ρ€Π΅Ρ†Π΅ΠΏΡ‚ прСвращСния &aВяТёлого Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r Π² &aΠ’ΠΎΠ»ΡƒΠΎΠ»&r Π² ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΡ‡Π½ΠΎΠΌ &3ДистилляторС&r β€” это ΠΌΠΎΠΆΠ΅Ρ‚ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠΏΡ€ΠΎΡΡ‚ΠΈΡ‚ΡŒ Π·Π°Π΄Π°Ρ‡Ρƒ.\n\n&aΠ’ΠΎΠ»ΡƒΠΎΠ»&r Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² &5EV&r для получСния &dΠ‘Π΅Π½Π·ΠΈΠ½Π°&r, Ρ‡Ρ‚ΠΎ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ возмоТности для производства Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°.\n\n&cΠ”ΠΈΠ½Π°ΠΌΠΈΡ‚&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π² &3Имплозионном ΠšΠΎΠΌΠΏΡ€Π΅ΡΡΠΎΡ€Π΅&r для создания Π‘Π°ΠΌΠΎΡ†Π²Π΅Ρ‚ΠΎΠ², Π° Ρ‚Π°ΠΊΠΆΠ΅ слуТит Π²Π·Ρ€Ρ‹Π²Ρ‡Π°Ρ‚Ρ‹ΠΌ вСщСством для Ρ€Π°Π·Ρ€ΡƒΡˆΠ΅Π½ΠΈΡ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΎΠ².", + "quests.high_voltage.ender_pearls.title": "Π–Π΅ΠΌΡ‡ΡƒΠ³ края", + "quests.high_voltage.ender_pearls.subtitle": "КакиС-Ρ‚ΠΎ Π‘Π°ΠΉ-Π€Π°ΠΉ Π±Ρ€ΡŽΠ»ΠΈΠΊΠΈ, ΠΈΠ»ΠΈ Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ Π² этом Π΄ΡƒΡ…Π΅...", + "quests.high_voltage.ender_pearls.desc": "Π’ TFG Π²Ρ‹ Π½Π΅ Π½Π°ΠΉΠ΄Ρ‘Ρ‚Π΅ Π­Π½Π΄Π΅Ρ€ΠΌΠ΅Π½ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π΄Ρ€ΠΎΠΏΠ°ΡŽΡ‚ Π–Π΅ΠΌΡ‡ΡƒΠ³ Π­Π½Π΄Π΅Ρ€Π°.\nΠ”Π°ΠΆΠ΅ Ρ‚Π΅, Ρ‡Ρ‚ΠΎ ΡΠΊΡ€Ρ‹Π²Π°ΡŽΡ‚ΡΡ Π² Π‘Π΅Π·Π΄Π½Π΅, Π½Π΅ ΠΏΠΎΠΌΠΎΠ³ΡƒΡ‚ Π²Π°ΠΌ.\n\nΠ’Π°Ρˆ СдинствСнный Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ β€” ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΡ… ΡΠ°ΠΌΠΎΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ:\n\nΠ‘ΠΌΠ΅ΡˆΠ°ΠΉΡ‚Π΅ &2ΠŸΡ‹Π»ΡŒ БСриллия&r ΠΈ &2ΠŸΡ‹Π»ΡŒ Калия&r Π² &6HV&r БмСситСлС, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Ρ€Π΅Π΄ΠΊΡƒΡŽ &5Π­Π½Π΄Π΅Ρ€-ΠΏΡ‹Π»ΡŒ&r.\n\nПослС этого помСститС Π΅Ρ‘ Π² &7Π˜ΠΌΠΏΠ»ΠΎΠ·ΠΈΠΎΠ½Π½Ρ‹ΠΉ ΠšΠΎΠΌΠΏΡ€Π΅ΡΡΠΎΡ€&r ΠΈ ΠΈ ΠΆΠ°Ρ…Π½ΠΈΡ‚Π΅ ΠΊΠ°ΠΊ слСдуСт ΠΈ Π±ΡƒΠ΄Π΅Ρ‚ Π²Π°ΠΌ Π–Π΅ΠΌΡ‡ΡƒΠ³ Π­Π½Π΄Π΅Ρ€Π° β€” Π² стилС GregTech.", + "quests.high_voltage.boules.title": "Π›Π΅Π³ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ Ѐосфором", + "quests.high_voltage.boules.subtitle": "Π­Ρ‚ΠΎ ΠΆ Π΄ΠΎΠΏΠΈΠ½Π³, Π±Ρ€ΠΎ!", + "quests.high_voltage.boules.desc": "Π›Π΅Π³ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ β€” это процСсс ΠΏΡ€Π΅Π΄Π½Π°ΠΌΠ΅Ρ€Π΅Π½Π½ΠΎΠ³ΠΎ ввСдСния примСсСй Π² ΠΏΠΎΠ»ΡƒΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½ΠΈΠΊΠΈ для измСнСния ΠΈΡ… элСктричСских свойств.\n\n&7ΠšΡ€Π΅ΠΌΠ½ΠΈΠΉ&r ΠΌΠΎΠΆΠ½ΠΎ Π»Π΅Π³ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ нСбольшим количСством &eЀосфора&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ &eΠœΠΎΠ½ΠΎΠΊΡ€ΠΈΡΡ‚Π°Π»ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠΊΡ€Π΅ΠΌΠ½ΠΈΠΉ&r.\n\nΠœΠΎΠ½ΠΎΠΊΡ€ΠΈΡΡ‚Π°Π»ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠΊΡ€Π΅ΠΌΠ½ΠΈΠΉ, Π»Π΅Π³ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ фосфором, ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ Π΄Π°Ρ‘Ρ‚ Π² &68 Ρ€Π°Π·&r большС пластин, Ρ‡Π΅ΠΌ Π΅Π³ΠΎ Π½Π΅Π»Π΅Π³ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Π΅ Π°Π½Π°Π»ΠΎΠ³ΠΈ. Однако ΠΎΠ½ΠΈ Π½Π΅ ΡΠ²Π»ΡΡŽΡ‚ΡΡ строго Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ΠΌΠΈ Π΄ΠΎ &5EV&r, Π³Π΄Π΅ ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ Π² Π±ΠΎΠ»Π΅Π΅ слоТных пластинах.\n\n&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅&r: Для любой ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ фосфорных монокристаллов ΠΈ пластин потрСбуСтся &dЧистая ΠΊΠΎΠΌΠ½Π°Ρ‚Π°&r.", + "quests.high_voltage.implosion_compressor.title": "Π˜ΠΌΠΏΠ»ΠΎΠ·ΠΈΠΎΠ½Π½Ρ‹ΠΉ компрСссор", + "quests.high_voltage.implosion_compressor.desc": "&3Π˜ΠΌΠΏΠ»ΠΎΠ·ΠΈΠΎΠ½Π½Ρ‹ΠΉ ΠšΠΎΠΌΠΏΡ€Π΅ΡΡΠΎΡ€&r ΠΏΡ€Π΅Π²Ρ€Π°Ρ‰Π°Π΅Ρ‚ ΠΏΡ‹Π»ΡŒ самоцвСтов Π² ΠΈΡ… Ρ‚Π²Ρ‘Ρ€Π΄ΡƒΡŽ Ρ„ΠΎΡ€ΠΌΡƒ.\n\nОн Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌ для получСния &aΠ–Π΅ΠΌΡ‡ΡƒΠ³Π° края&r.\n\nДля ΠΈΠΌΠΏΠ»ΠΎΠ·ΠΈΠΈ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &cΠ”ΠΈΠ½Π°ΠΌΠΈΡ‚&r.", + "quests.high_voltage.nitric_acid.title": "Азотная кислота", + "quests.high_voltage.nitric_acid.subtitle": "Π­Ρ‚ΠΎ Π½Π΅ соТрёт Π²Π°ΡˆΡƒ ΠΊΠΎΠΆΡƒ", + "quests.high_voltage.nitric_acid.desc.1": "ΠŸΠ°Ρ€Ρ‹ Π°Π·ΠΎΡ‚Π½ΠΎΠΉ кислоты Ρ‡Ρ€Π΅Π·Π²Ρ‹Ρ‡Π°ΠΉΠ½ΠΎ токсичны! Π­Ρ‚ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΡ‡Π΅Π½ΡŒ ΡΠΈΠ»ΡŒΠ½Ρ‹ΠΉ ΠΎΠΊΠΈΡΠ»ΠΈΡ‚Π΅Π»ΡŒ.\n\n&aАзотная кислота&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π²:\n\n&9-&r НитродизСлС β€” ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½Π½ΠΎΠΌ дизСльном Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π΅, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π²Ρ‹ скоро освоитС.\n&9-&r НитробСнзолС β€” ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½Π½ΠΎΠΌ Π³Π°Π·ΠΎΠ²ΠΎΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π΅, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π²Ρ‹ Π²ΠΎΡ‚-Π²ΠΎΡ‚ Π½Π°Ρ‡Π½Ρ‘Ρ‚Π΅ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ.\n&9-&r ΠΠ΅ΠΎΠ±ΡŠΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… Ρ†Π΅ΠΏΠΎΡ‡ΠΊΠ°Ρ… производства шлама.\n&9-&r Π›ΠΈΠ½ΠΈΠΈ производства с осадков ΠΏΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²ΠΎΠΉ Π³Ρ€ΡƒΠΏΠΏΡ‹ Π² &1IV&r.\n&9-&r ПолибСнзимидазолС (ΠŸΠ‘Π˜) (ΠΏΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΡΠΊΠ°Π·Π°Ρ‚ΡŒ это Π΄Π΅ΡΡΡ‚ΡŒ Ρ€Π°Π· быстро!) Π² &1IV&r.", + "quests.high_voltage.nitric_acid.desc.2": "БущСствуСт Π΄Π²Π° основных способа получСния &aАзотной кислоты&r β€” &oΡ…ΠΎΡ€ΠΎΡˆΠΈΠΉ&f ΠΈ &4ΠΏΠ»ΠΎΡ…ΠΈΠ΅&f способы!&r\n\nΠŸΠΎΡΡ‚ΠΎΠΌΡƒ ΠΌΡ‹ ΡƒΠΊΠ°ΠΆΠ΅ΠΌ Π²Π°ΠΌ Π»ΡƒΡ‡ΡˆΠΈΠΉ ΠΌΠ΅Ρ‚ΠΎΠ΄:\n\nΠ’ΠΎΠ·ΡŒΠΌΠΈΡ‚Π΅ &3Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π₯имичСский Π Π΅Π°ΠΊΡ‚ΠΎΡ€&r ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ Π΅Π³ΠΎ для получСния &aДиоксида Азота&r. Π—Π°Ρ‚Π΅ΠΌ Π² ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠΌ &3Π₯имичСском Π Π΅Π°ΠΊΡ‚ΠΎΡ€Π΅&r с большим количСством &dΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄Π°&r ΠΈ &dΠ’ΠΎΠ΄Ρ‹&r ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &aΠΠ·ΠΎΡ‚Π½ΡƒΡŽ кислоту&r!\n\nΠ­Ρ‚ΠΎ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ ΠΌΠ½ΠΎΠ³ΠΎ &dΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄Π°&r. ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ΡΡŒ ΠΊ ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰Π΅ΠΌΡƒ квСсту Π² &7LV&r для самых эффСктивных способов Π΅Π³ΠΎ получСния Π² большом ΠΎΠ±ΡŠΡ‘ΠΌΠ΅. ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ здСсь Π½Π΅Ρ‚ Π²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄Π°!", + "quests.high_voltage.cetane_diesel.title": "Нитро-дизСль", + "quests.high_voltage.cetane_diesel.subtitle": "Π•Ρ‰Ρ‘ ΠΎΠ΄ΠΈΠ½ шаг Π²ΠΏΠ΅Ρ€Ρ‘Π΄", + "quests.high_voltage.cetane_diesel.desc": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ Ρ€Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Π»ΠΈ &6HV&r Π‘ΠΌΠ΅ΡΠΈΡ‚Π΅Π»ΡŒ ΠΈ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΠ»ΠΈ доступ ΠΊ &eАзотной кислотС&r, становится Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹ΠΌ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ &aΠΠΈΡ‚Ρ€ΠΎΠ΄ΠΈΠ·Π΅Π»ΡŒ&r с ΡƒΠ²Π΅Π»ΠΈΡ‡Π΅Π½ΠΈΠ΅ΠΌ мощности Π½Π° &e180%%&r.\n\nБамая слоТная Ρ‡Π°ΡΡ‚ΡŒ β€” ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ &bΠ’Π΅Ρ‚Ρ€Π°Π½ΠΈΡ‚Ρ€ΠΎΠΌΠ΅Ρ‚Π°Π½Π°&r. Π Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π΅Π³ΠΎ, смСшивая &9ΠΠ·ΠΎΡ‚Π½ΡƒΡŽ кислоту&r ΠΈ &dΠšΠ΅Ρ‚Π΅Π½&r. ΠšΠ΅Ρ‚Π΅Π½ Π»Π΅Π³ΠΊΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ, Ссли ΡΠΎΠ΅Π΄ΠΈΠ½ΠΈΡ‚ΡŒ &9Π‘Π΅Ρ€Π½ΡƒΡŽ кислоту&r β€” ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ Ρƒ вас ΡƒΠΆΠ΅ Π΄ΠΎΠ»ΠΆΠ½ΠΎ Π±Ρ‹Ρ‚ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ β€” ΠΈ &cΠ£ΠΊΡΡƒΡΠ½ΡƒΡŽ кислоту&r, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ просто ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ ΠΈΠ· &3ΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄Π°&r ΠΈ &5Π­Ρ‚ΠΈΠ»Π΅Π½Π°&r.\n\n&cНС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅&r Π²Ρ‹ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ ΠΌΠ°ΡˆΠΈΠ½Ρƒ Π½Π° Π‘Ρ…Π΅ΠΌΡƒ 2, ΠΈΠ½Π°Ρ‡Π΅ Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &6ΠŸΠΎΠ»ΠΈΡΡ‚ΠΈΠ»Π΅Π½&r вмСсто Π½ΡƒΠΆΠ½ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Π°!", + "quests.high_voltage.smd_components.title": "SMD ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹", + "quests.high_voltage.smd_components.subtitle": "ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½Π°Ρ Π·Π°ΠΌΠ΅Π½Π°!", + "quests.high_voltage.smd_components.desc": "&eSMD&r (ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ повСрхностного ΠΌΠΎΠ½Ρ‚Π°ΠΆΠ°) &aΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹&r β€” это ΡΠΊΡΠΊΠ»ΡŽΠ·ΠΈΠ²Π½Ρ‹Π΅ для CEu Π΄Π΅Ρ‚Π°Π»ΠΈ, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹Π΅ для ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅Π³ΠΎ уровня схСм (&5Нано&r). Π˜Ρ… Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ вмСсто ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Ρ… Π°Π½Π°Π»ΠΎΠ³ΠΎΠ² Π² Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² схСм.\n\nΠšΠΎΠ½Π΅Ρ‡Π½ΠΎ, ΠΈΡ… слоТнСС ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ β€” это ΠΆΠ΅ GregTech! Π§Π΅Π³ΠΎ Π²Ρ‹ ΠΎΠΆΠΈΠ΄Π°Π»ΠΈ?\n\nΠ˜Π½Π²Π΅ΡΡ‚ΠΈΡ€ΡƒΠΉΡ‚Π΅ Π² Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΡŽ ΠΈΡ… производства β€” ΠΎΠ½ΠΈ Π²Π°ΠΌ постоянно понадобятся.", + "quests.high_voltage.smd_components_2.title": "Π•Ρ‰Ρ‘ большС SMD", + "quests.high_voltage.smd_components_2.desc": "&aΠŸΠ»Π°Ρ‚ΠΈΠ½Π°&r (Π½ΡƒΠΆΠ½Π° для SMD Π”ΠΈΠΎΠ΄ΠΎΠ²) ΠΈΠΌΠ΅Π΅Ρ‚ свой собствСнный квСст Π²ΠΎ Π²ΠΊΠ»Π°Π΄ΠΊΠ΅ &5EV&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 слоты Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ доступны. Π­Ρ‚ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ позволяСт Π²Π°ΠΌ ΠΏΠΎΠ»ΡƒΡ‡Π°Ρ‚ΡŒ &6ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹ΠΉ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ &r Π² Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚Π΅ ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡Π΅Π½ΠΈΡ Ρ€ΡƒΠ΄Ρ‹ послС ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Π² &dΡ‚Π΅Ρ€ΠΌΠ°Π»ΡŒΠ½ΠΎΠΉ &dΡ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π΅&r.\n\nΠ˜Π·ΠΌΠ΅Π»ΡŒΡ‡Π΅Π½ΠΈΠ΅ Ρ€ΡƒΠ΄Ρ‹ происходит с &5Π΄Π²ΠΎΠΉΠ½ΠΎΠΉ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒΡŽ&r ΠΈ Π·Π°Ρ‚Ρ€Π°Ρ‡ΠΈΠ²Π°Π΅Ρ‚ всСго &a32 EU/t&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.", + "quests.high_voltage.hv_mixer.title": "HV Π‘ΠΌΠ΅ΡΠΈΡ‚Π΅Π»ΡŒ", + "quests.high_voltage.hv_mixer.subtitle": "БмСшиваниС Π΅Ρ‰Π΅ Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ Π±Ρ‹Π»ΠΎ Ρ‚Π°ΠΊΠΈΠΌ Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΌ", + "quests.high_voltage.hv_mixer.desc": "Π’Π°ΠΌ понадобится &6Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ Π‘ΠΌΠ΅ΡΠΈΡ‚Π΅Π»ΡŒ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &6Π Π°ΠΊΠ΅Ρ‚Π½Ρ‹ΠΉ сплав&r, Π½ΠΎ это Π½Π΅ СдинствСнный ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚.\n\nОн Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚:\n- &dИндий&r\n- &eНитро-дизСль&r\n- &6Π£Π»ΡŒΡ‚ΠΈΠΌΠ΅Ρ‚&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹ΠΉ для &9Π’ΡƒΡ€Π±ΠΈΠ½Π½Ρ‹Ρ… Ρ€ΠΎΡ‚ΠΎΡ€ΠΎΠ²&r\n- &dЀлаксовыС кристаллы&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π½Π΅Π·Π°ΠΌΠ΅Π½ΠΈΠΌΡ‹ для &dAE2&r", + "quests.high_voltage.blue_alloy.title": "Π‘ΠΈΠ½ΠΈΠΉ сплав", + "quests.high_voltage.blue_alloy.subtitle": "Π’Ρ‹ стал синим... ΠΌΠΎΠΉ Ρ„ΠΈΡ€ΠΌΠ΅Π½Π½Ρ‹ΠΉ сплав.", + "quests.high_voltage.blue_alloy.desc": "&aΠ‘ΠΈΠ½ΠΈΠΉ сплав&r β€” ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π» для &6HV&r-ΠΊΠ°Π±Π΅Π»Π΅ΠΉ.\n\nНичто Π½Π΅ ΠΌΠ΅ΡˆΠ°Π΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Π³ΠΎ ΠΈ для &bMV&r-Ρ†Π΅ΠΏΠ΅ΠΉ! Но Π½Π΅ Π·Π°Π±Ρ‹Π²Π°ΠΉΡ‚Π΅ Π½Π΅ ΠΏΡ€Π΅Π²Ρ‹ΡˆΠ°Ρ‚ΡŒ напряТСниС Π½Π° ΠΌΠ°ΡˆΠΈΠ½Π°Ρ….\n\nΠ‘Π²Π΅Ρ€Ρ…ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½ΠΈΠΊΠΈ для &6HV&r ΠΎΡ‚ΠΊΡ€ΠΎΡŽΡ‚ΡΡ... ΠΏΠΎΠ·ΠΆΠ΅.\n\n&aΠ­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½&r добываСтся ΠΊΠ°ΠΊ Ρ€ΡƒΠ΄Π°, поэтому Π½Π΅ создавайтС Π΅Π³ΠΎ Π² БмСситСлС!\n\nΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, &aΠ­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½&r ΠΌΠΎΠΆΠ½ΠΎ Ρ€Π°Π·Π΄Π΅Π»ΠΈΡ‚ΡŒ Π½Π° &dΠ­Π»Π΅ΠΊΡ‚Ρ€ΡƒΠΌ&r ΠΈ &dРСдстоун&r.", + "quests.high_voltage.ev_circuits.title": "ΠŸΠ΅Ρ€Π²Ρ‹Π΅ EV схСмы!", + "quests.high_voltage.ev_circuits.subtitle": "Нитакая ΠΊΠ°ΠΊ всС", + "quests.high_voltage.ev_circuits.desc": "Π’Π°ΡˆΠ° пСрвая &5EV&r схСма ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅Ρ‚ ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½ΡƒΡŽ тСкстуру. Если Π²Ρ‹ всё Π΅Ρ‰Ρ‘ считаСтС сСбя Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &bMV&r, &aΠΏΠΎΠ΄ΠΎΠΆΠ΄ΠΈΡ‚Π΅&r с ΠΈΡ… массовым ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ΠΌ β€” сСйчас ΠΎΠ½ΠΈ Π½Π΅ принСсут Π²Π°ΠΌ ΠΏΠΎΠ»ΡŒΠ·Ρ‹. Но Ссли Π²Ρ‹ &dпросто Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΡ…Π²Π°ΡΡ‚Π°Ρ‚ΡŒΡΡ&r β€” ΠΌΡ‹ вас Π½Π΅ остановим.", + "quests.high_voltage.hv_hull.title": "Π”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π² высокоС напряТСниС!", + "quests.high_voltage.hv_hull.subtitle": "Π‘ΠΊΠΎΡ€ΠΎ стану майноастронавтом", + "quests.high_voltage.hv_hull.desc.1": "&2ΠœΡ‹ надССмся, Ρ‡Ρ‚ΠΎ Π²Ρ‹ освоили &9GregTech&r, ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ ΠΏΡ€ΠΈΡˆΠ»ΠΎ врСмя Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Ρ€Π°ΡΡˆΠΈΡ€ΠΈΡ‚ΡŒ свои Π½Π°Π²Ρ‹ΠΊΠΈ.\nΠ’ этой Π³Π»Π°Π²Π΅ Π²Ρ‹ Ρ€Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΡƒΠ΅Ρ‚Π΅ &eΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚ΡƒΡ‹Π΅ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ&r, &eΠ±ΠΎΠ»Π΅Π΅ слоТныС химичСскиС процСссы&r ΠΈ Π΄Π°ΠΆΠ΅ сдСлаСтС свои ΠΏΠ΅Ρ€Π²Ρ‹Π΅ шаги Π½Π° &fΠ›ΡƒΠ½Π΅&r!\n\n&6Π’ этой Π³Π»Π°Π²Π΅ Ρƒ вас Π΅ΡΡ‚ΡŒ Π΄Π²Π΅ ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹Π΅ Ρ†Π΅Π»ΠΈ:&r\n- Π‘ΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ свой ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ &5EV&r ΠšΠΎΡ€ΠΏΡƒΡ ΠΌΠ°ΡˆΠΈΠ½Ρ‹\n- Π”ΠΎΠ»Π΅Ρ‚Π΅Ρ‚ΡŒ Π΄ΠΎ &fΠ›ΡƒΠ½Ρ‹&r\n\nΠžΡ‚ΠΊΡ€Ρ‹Ρ‚ΠΈΠ΅ Π›ΡƒΠ½Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ прСдоставит доступ ΠΊ &bΠ˜ΡΡ‚ΠΈΠ½Π½ΠΎΠΌΡƒ ΠΊΠ²Π°Ρ€Ρ†Ρƒ&r, ступая Π½Π° ΠΏΡƒΡ‚ΡŒ открытия &dApplied Energistics 2&r. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Ρ€Π΅ΡˆΠ°Ρ‚ΡŒ эти Π·Π°Π΄Π°Ρ‡ΠΈ Π² любом порядкС.", + "quests.high_voltage.hv_hull.desc.2": "Π§Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ корпус ΠΌΠ°ΡˆΠΈΠ½Ρ‹ &5EV&r:\n- ΠŸΠΎΡΡ‚Ρ€ΠΎΠΉΡ‚Π΅ свою ΠΏΠ΅Ρ€Π²ΡƒΡŽ &aΠ§ΠΈΡΡ‚ΡƒΡŽ ΠΊΠΎΠΌΠ½Π°Ρ‚Ρƒ&r\n- Π‘ΠΎΠ±Π΅Ρ€ΠΈΡ‚Π΅ &bΠ’Π°ΠΊΡƒΡƒΠΌΠ½ΡƒΡ‹ΠΉ Ρ…ΠΎΠ»ΠΎΠ΄ΠΈΠ»ΡŒΠ½ΠΈΠΊ&r для охлаТдСния горячих слитков.\n- ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°ΠΉΡ‚Π΅ &9Π ΡƒΡ‚ΠΈΠ»&r Π² &7Π’ΠΈΡ‚Π°Π½&r\n\nΠ’Ρ‹ Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ ΠΊΡƒΡ‡Ρƒ &9Π ΡƒΡ‚ΠΈΠ»Π°&r Π½Π° &fΠ›ΡƒΠ½Π΅&r, Π½ΠΎ Π΅Π³ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² ΠΆΠΈΠ»Π°Ρ… &eБоксита&r Π² &aΠ’Π΅Ρ€Ρ…Π½Π΅ΠΌ ΠΌΠΈΡ€Π΅&r.", + "quests.high_voltage.hv_hull.desc.3": "Π§Ρ‚ΠΎΠ±Ρ‹ Π΄ΠΎΠ±Ρ€Π°Ρ‚ΡŒΡΡ Π΄ΠΎ Π›ΡƒΠ½Ρ‹:\n- Π²Ρ‹ΠΏΠ»Π°Π²ΡŒΡ‚Π΅ достаточно &6Π Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ сплава&r\n- Π‘ΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ своё ΠΏΠ΅Ρ€Π²ΠΎΠ΅ &eОко края&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ &3Π₯ΠΈΠΌΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π²Π°Π½Π½Ρƒ&r ΠΈ &7Π˜ΠΌΠΏΠ»ΠΎΠ·ΠΈΠΎΠ½Π½Ρ‹ΠΉ компрСссор&r\n- ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ всС &bΠΎΠ±ΠΎΡ€ΡƒΠ΄ΠΎΠ²Π°Π½ΠΈΠ΅&r, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π²Π°ΠΌ понадобится, Ρ‡Ρ‚ΠΎΠ±Ρ‹ &bΠ΄Ρ‹ΡˆΠ°Ρ‚ΡŒ Π² космосС&r\n\nΠŸΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ &bΠ’Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΠ³ΠΎ Ρ…ΠΎΠ»ΠΎΠ΄ΠΈΠ»ΡŒΠ½ΠΈΠΊΠ°&r ΠΈ &6Π±ΠΎΠ»Π΅Π΅ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹Ρ… ΠΊΠ°Ρ‚ΡƒΡˆΠ΅ΠΊ для EBF&r ускорит производство &6Π Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ сплава&r, Π½ΠΎ это Π½Π΅ являСтся ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ.\n\n&dΠ’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ свой ΠΏΡƒΡ‚ΡŒ!&r", + "quests.high_voltage.nichrome.title": "НихромовыС слитки", + "quests.high_voltage.nichrome.subtitle": "Особой ΠΏΠΎΠ»ΡŒΠ·Ρ‹ ΠΎΡ‚ ΠΈΡ… Π½Π΅Ρ‚.", + "quests.high_voltage.nichrome.desc": "Π’Π°Ρˆ Ρ‚Ρ€Π΅Ρ‚ΠΈΠΉ сплав Π³ΠΎΡ‚ΠΎΠ² ΠΈ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌ для ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅Π³ΠΎ Π½Π°Π±ΠΎΡ€Π° ΠΊΠ°Ρ‚ΡƒΡˆΠ΅ΠΊ Π² &6EBF&r.\n\nКак ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ, потрСбуСтся &9128 слитков&r, Π½ΠΎ Π½Π° этот Ρ€Π°Π· Π²Ρ‹ Π½Π΅ смоТСтС ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &6Π₯ΠΈΠΌΠΈΡ‡Π΅ΡΠΊΡƒΡŽ ΠœΠΎΠΉΠΊΡƒ&r. ВмСсто этого понадобится &6Π’Π°ΠΊΡƒΡƒΠΌΠ½Ρ‹ΠΉ Π₯олодильник&r.\n\nΠ₯ΠΎΡ€ΠΎΡˆΠΈΠ΅ новости: процСсс стал ΠΏΡ€ΠΎΡ‰Π΅ ΠΈ быстрСС.\n\nДля этих ΠΊΠ°Ρ‚ΡƒΡˆΠ΅ΠΊ Π²Ρ‹ Π±ΡƒΠ΄Π΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ &6Нихром&r, Π½ΠΎ Π½Π΅ Ρ€Π°ΡΡΠ»Π°Π±Π»ΡΠΉΡ‚Π΅ΡΡŒ β€” ΠΎΠ½ вСрнётся для ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅Π³ΠΎ Π½Π°Π±ΠΎΡ€Π° &5RTM ΠšΠ°Ρ‚ΡƒΡˆΠ΅ΠΊ&r.", + "quests.high_voltage.rocket_t1.title": "Π’Π°ΡˆΠ° пСрвая Ρ€Π°ΠΊΠ΅Ρ‚Π°!", + "quests.high_voltage.rocket_t1.subtitle": "ΠŸΠ΅Ρ€Π²Π°Ρ ΠΈΠ· ΠΌΠ½ΠΎΠ³ΠΈΡ…", + "quests.high_voltage.rocket_t1.desc": "Π’ΠžΠ£, ΠΏΠΎΡ€Π° ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ Π²Π°ΡˆΡƒ &6Π Π°ΠΊΠ΅Ρ‚Ρƒ&r!\n\nΠ‘ΠΎΠ±Π΅Ρ€ΠΈΡ‚Π΅ всС Π΄Π΅Ρ‚Π°Π»ΠΈ, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ &d8 ΠŸΠ»ΠΎΡ‚Π½Ρ‹Ρ… пластин Π Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ Π‘ΠΏΠ»Π°Π²Π°&r. Для сборки Π²Π°ΠΌ понадобится &b2304mB&r &bΠ–ΠΈΠ΄ΠΊΠΎΠ³ΠΎ ΠšΡ€Π΅ΠΌΠ½ΠΈΡ&r (&b16 слитков&r) ΠΈ &f16 Π΅Π΄ΠΈΠ½ΠΈΡ† ΠΏΡ‹Π»ΠΈ&r.\n\nΠ£ вас Π΅ΡΡ‚ΡŒ Π΄Π²Π° Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π°:\n&e-&r &eΠŸΡ‹Π»ΡŒ Боросиликатного Π‘Ρ‚Π΅ΠΊΠ»Π°&r β€” создаётся Π² &6ΠœΠΈΠΊΡΠ΅Ρ€Π΅&r ΠΈΠ· &dΠ‘ΠΎΡ€Π°&r ΠΈ &fБтСкляной ΠΏΡ‹Π»ΠΈ&r\n\n&e-&r &5ΠžΡΡ‚Π΅ΠΊΠ»ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ АсбСст&r β€” получаСтся Π² &6ΠŸΠΈΡ€ΠΎΠ»ΠΈΠ·Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ&r\n\nΠ’Ρ‹Π±ΠΈΡ€Π°ΠΉΡ‚Π΅ Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ ΠΏΡ€ΠΎΡ‰Π΅ для вас!", + "quests.high_voltage.vitrified_pearl.title": "ΠžΡΡ‚Π΅ΠΊΠ»ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ эндСр-ΠΆΠ΅ΠΌΡ‡ΡƒΠ³", + "quests.high_voltage.vitrified_pearl.subtitle": "Π§Ρ‚ΠΎ Π·Π° экзотичная ΠΊΠ΅Ρ€Π°ΠΌΠΈΠΊΠ°?", + "quests.high_voltage.vitrified_pearl.desc": "НагрСйтС Π–Π΅ΠΌΡ‡ΡƒΠ³ ΠšΡ€Π°Ρ Π² &eΠŸΠΈΡ€ΠΎΠ»ΠΈΠ·Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ&r Π² ΠΈΠ·ΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠΉ срСдС, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎ ΡΠΏΠ΅Ρ‡ΡŒ Π΅Π³ΠΎ, ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΠ² Π² Π½Π΅Ρ‡Ρ‚ΠΎ, Π½Π°ΠΏΠΎΠΌΠΈΠ½Π°ΡŽΡ‰Π΅Π΅ &3ΠΊΠ΅Ρ€Π°ΠΌΠΈΠΊΡƒ&r.\n\nПока Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ понадобится Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ β€” ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ ΠΎΠ΄ΠΈΠ½ для вашСй &6Π Π°ΠΊΠ΅Ρ‚Ρ‹&r ΠΈ Π΅Ρ‰Ρ‘ ΠΎΠ΄ΠΈΠ½ для &6HV Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊΠ° микросхСм&r.\nНо Π±ΡƒΠ΄ΡŒΡ‚Π΅ Π³ΠΎΡ‚ΠΎΠ²Ρ‹: начиная с &5EV&r ΠΈ Π²Ρ‹ΡˆΠ΅ спрос быстро вырастСт.", + "quests.high_voltage.kaolinite_powder.title": "ВысокотСмпСратурная огнСупорная Π³Π»ΠΈΠ½Π°", + "quests.high_voltage.kaolinite_powder.subtitle": "Π’Ρ‹ Π½Π΅ скучал ΠΏΠΎ ΠΌΠ½Π΅, ΠΏΡ€Π°Π²Π΄Π°?", + "quests.high_voltage.kaolinite_powder.desc": "ΠŸΠ»ΠΎΡ…Π°Ρ Π½ΠΎΠ²ΠΎΡΡ‚ΡŒ: скоро Π±ΡƒΠ΄Π΅Ρ‚ встрСча со старым Π·Π½Π°ΠΊΠΎΠΌΡ‹ΠΌ. Π₯ΠΎΡ€ΠΎΡˆΠ°Ρ Π½ΠΎΠ²ΠΎΡΡ‚ΡŒ встрСча ΠΏΡ€ΠΎΠΉΠ΄Π΅Ρ‚ Ρƒ тСбя Π΄ΠΎΠΌΠ°!\n\nЕсли Ρƒ тСбя остался &4ΠšΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚&r с Π΄Π°Π²Π½ΠΈΡ… ΠΏΠΎΡ€, самоС врСмя Π΄ΠΎΡΡ‚Π°Ρ‚ΡŒ Π΅Π³ΠΎ ΠΈΠ· старой ΠΊΡƒΠ·Π½ΠΈΡ†Ρ‹ ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ. А Ссли Π½Π΅Ρ‚ β€” Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ Ρ‚Ρ‹ моТСшь ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π΅Π³ΠΎ прямо Π΄ΠΎΠΌΠ°!\n\nΠšΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ снова понадобится Π² Π±ΡƒΠ΄ΡƒΡ‰ΠΈΡ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ… для ΠΏΡ€ΠΎΠΌΡ‹ΡˆΠ»Π΅Π½Π½Ρ‹Ρ… ΠΊΠ΅Ρ€Π°ΠΌΠΈΠΊ ΠΈ тСплоизоляции.", + "quests.high_voltage.linked_quest_energy.title": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ ΠΎΠ± энСргии", + "quests.high_voltage.linked_quest_energy.subtitle": "GregTech Wiki", + "quests.high_voltage.linked_quest_energy.desc": "ВсС Π΅Ρ‰Ρ‘ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚Π΅ ΠΏΠ°Ρ€? Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΡƒΠ·Π½Π°Ρ‚ΡŒ большС ΠΎ систСмС энСргии GregTech? ΠžΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΎΠ·Π½Π°ΠΊΠΎΠΌΡŒΡ‚Π΅ΡΡŒ с Π³Π»Π°Π²ΠΎΠΉ квСстов «ЭнСргия GregTechΒ»!", + "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.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, ΠΎΡ‚ΠΊΡ€ΠΎΠΉΡ‚Π΅ Π΅Ρ‘ ΠΈ Π²Ρ‹ΡΡ‚Π°Π²ΡŒΡ‚Π΅ Π² Ρ€Π΅ΠΆΠΈΠΌ Π±Π΅Π»ΠΎΠ³ΠΎ списка β€”&e&l*hot_ingots*&r-.\n\nΠ’Π΅ΠΏΠ΅Ρ€ΡŒ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &9Π»ΡŽΠ±ΡƒΡŽ систСму логистики&r Π½Π° ваш Π²Ρ‹Π±ΠΎΡ€ для ΠΏΠΎΠ΄Π°Ρ‡ΠΈ слитков.", + "quests.high_voltage.250_iq.desc.2": "ΠŸΠΎΠ΄ΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅ Π²Ρ‹Ρ…ΠΎΠ΄ вашСй &3Π­Π”ΠŸ&r ΠΊ Π²Ρ…ΠΎΠ΄Ρƒ &3Π₯имичСской Π’Π°Π½Π½Ρ‹&r ΠΈ Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΌΡƒ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Ρƒ (сундук ΠΈΠ»ΠΈ ящик). Π’Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΡΡ‚Π°Π²ΠΈΡ‚ΡŒ &dΠžΠ³Ρ€Π°Π½ΠΈΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΡƒΡŽ Π’Ρ€ΡƒΠ±Ρƒ&r ΠΏΠ΅Ρ€Π΅Π΄ Π²Ρ‹Ρ…ΠΎΠ΄Π½Ρ‹ΠΌ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ±Π΅ΡΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ ΠΏΡ€ΠΈΠΎΡ€ΠΈΡ‚Π΅Ρ‚ Ρ€Π°Π±ΠΎΡ‚Ρ‹ Π₯имичСской Π’Π°Π½Π½Ρ‹.\n\n&l&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Если Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΡƒΠ·Π½Π°Ρ‚ΡŒ большС Вэгов для Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ, ΠΎΠ½ΠΈ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°ΡŽΡ‚ΡΡ ΠΏΡ€ΠΈ Π½Π°ΠΆΠ°Ρ‚ΠΈΠΈ Shift ΠΈ Π½Π°Π²Π΅Π΄Π΅Π½ΠΈΠΈ Π½Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚. НапримСр, ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ с ΠΌΠ΅Ρ‚ΠΊΠΎΠΉ &e&o#forge:plates/copper&r Π±ΡƒΠ΄Π΅Ρ‚ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ΠΎΠ²Π°Ρ‚ΡŒΡΡ ΠΊΠ°ΠΊ &e&lplates/copper&r.\n\n&9&lΠ”ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ΅ ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹ΠΉ Π€ΠΈΠ»ΡŒΡ‚Ρ€ Вэгов частично ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ &dрСгулярныС выраТСния&r. НавСдитС курсор Π½Π° ΠΈΠΊΠΎΠ½ΠΊΡƒ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ для подробностСй.", + "quests.high_voltage.bedrock_miner.subtitle": "Unlimited ores?", + "quests.high_voltage.bedrock_miner.desc.1": "This may be the first time you encounter the &cBedrock Ore Miner&r, as it's rarely used in GregTech. \nIt functions similarly to the &bFluid Drilling Rig&r, except the veins it targets will &nnever deplete&r.\n\nIt doesn't consume much energy β€” running fine at &bMV&r or &6HV&r β€” and requires &ano input materials&r.\n\nSo, what's the catch?\nFinding the veins.", + "quests.high_voltage.bedrock_miner.desc.2": "You’ll need a &6HV&r Ore Prospector set to &oBedrock Ore Mode&r (&7Shift + Right Click&r), and a fair bit of patience. Once you find your target, you’ll also have to figure out how to bring the resources back to your outpost.\n\nOn the &fMoon&r, you can find your first bedrock ore veins, allowing you to passively obtain several essential elements completely for free, forever. Check JEI to see what's available! The higher the Weight, the more common the vein is.\n\nSince these will be so spread apart, this sounds like a great excuse to build a &7moon train&r!", + "quests.high_voltage.space_alloy.title": "ΠΠ»ΡŽΠΌΠΎΡΡ‚Π°Π»ΡŒ", + "quests.high_voltage.space_alloy.subtitle": "ΠœΡ‹ это Π²Ρ‹Π΄ΡƒΠΌΠ°Π»ΠΈ", + "quests.high_voltage.space_alloy.desc.1": "Π§Ρ‚ΠΎΠ±Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ свой ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ &6Π Π°ΠΊΠ΅Ρ‚Π½Ρ‹ΠΉ Π‘ΠΏΠ»Π°Π²&r, Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ Π·Π°Π³Ρ€ΡƒΠ·ΠΈΡ‚ΡŒ &7Алюминий&r, &7ΠΠ΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰ΡƒΡŽ ΡΡ‚Π°Π»ΡŒ&r ΠΈ &cΠ–ΠΈΠ΄ΠΊΡƒΡŽ ΠšΡ€Π°ΡΠ½ΡƒΡŽ Π‘Ρ‚Π°Π»ΡŒ&r Π² ваш Π½ΠΎΠ²Ρ‹ΠΉ &6HV&r Π‘ΠΌΠ΅ΡΠΈΡ‚Π΅Π»ΡŒ.\n\nΠ Π΅Ρ†Π΅ΠΏΡ‚ Π΄ΠΎΠ»Π³ΠΈΠΉ, поэтому ΠΆΠ΄ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ ΡΠΌΠ΅ΡΠΈΡ‚Π΅Π»ΡŒ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ Π·Π°Π³Ρ€ΡƒΠΆΠ΅Π½ Π½Π° этом этапС.\n\nПослС этого ΠΏΡ‹Π»ΡŒ Π½ΡƒΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ Π² вашСй Π­Π”ΠŸ Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &bMV&r напряТСния. Если Ρƒ вас ΡƒΠΆΠ΅ Π΅ΡΡ‚ΡŒ &6НихромовыС ΠšΠ°Ρ‚ΡƒΡˆΠΊΠΈ&r ΠΈ Π­Π”ΠŸ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Π½Π° &6HV&r напряТСнии, Π²Ρ‹ смоТСтС ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ &aΠ˜Π΄Π΅Π°Π»ΡŒΠ½Ρ‹ΠΉ Π Π°Π·Π³ΠΎΠ½&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°! (Ссли нСпонятно, посмотритС Π³Π»Π°Π²Ρƒ GregTech Π­Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΠΊΠ°)", + "quests.high_voltage.space_alloy.desc.2": "You can cool the ingots down with a &9Chemical Bath&r or, if you already have one, a &9Vacuum Freezer&r for a shorter processing time.\n\n&7144mb equals 1 ingot&r, so make sure not to extract too much &cRed Steel&r.\n\nYou will need &685 Rocket Alloy&r ingots total, which means:\n- &760 Aluminium&r\n- &720 Stainless Steel&r\n- &710 Red Steel&r\n\n&aNothing too bad!&r", + "quests.high_voltage.steel_engine.subtitle": "Биняя ΡΡ‚Π°Π»ΡŒ возвращаСтся, Π΄Π΅Ρ‚ΠΊΠ°!", + "quests.high_voltage.steel_engine.desc": "&6Π Π°ΠΊΠ΅Ρ‚Π½Ρ‹ΠΉ Π΄Π²ΠΈΠ³Π°Ρ‚Π΅Π»ΡŒ&r Π½ΡƒΠΆΠ΅Π½, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ваша Ρ€Π°ΠΊΠ΅Ρ‚Π° ΠΌΠΎΠ³Π»Π° &aΠ΄ΠΎΠ»Π΅Ρ‚Π΅Ρ‚ΡŒ Π΄ΠΎ Π›ΡƒΠ½Ρ‹&r.\n\nΠ Π΅Ρ†Π΅ΠΏΡ‚ Π½Π΅ слишком слоТный ΠΈ ΠΏΡ€Π΅Π΄ΠΏΠΎΠ»Π°Π³Π°Π΅ΠΌ, Ρ‡Ρ‚ΠΎ Π²Ρ‹ Π³ΠΎΡ‚ΠΎΠ²Ρ‹ Π²Π·ΡΡ‚ΡŒΡΡ Π·Π° ΠΊΠ°ΠΆΠ΄ΡƒΡŽ Π΅Π³ΠΎ Ρ‡Π°ΡΡ‚ΡŒ.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &91152mB ΠΆΠΈΠ΄ΠΊΠΎΠΉ синСй стали&r, для Ρ‡Π΅Π³ΠΎ понадобится &78 слитков&r.", + "quests.high_voltage.rocket_fins.subtitle": "Π˜Ρ‚Π°ΠΊ, Π²Ρ‹ Π΄ΠΎΠ±Π΅Ρ€Π΅Ρ‚Π΅ΡΡŒ Π΄ΠΎ Π½ΡƒΠΆΠ½ΠΎΠ³ΠΎ ΠΏΡƒΠ½ΠΊΡ‚Π° назначСния", + "quests.high_voltage.rocket_fins.desc": "Π’Ρ‹ сдСлали &6Π Π°ΠΊΠ΅Ρ‚Π½Ρ‹Π΅ Π‘Ρ‚Π°Π±ΠΈΠ»ΠΈΠ·Π°Ρ‚ΠΎΡ€Ρ‹&r с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &bΠŸΠ΅Ρ‡ΠΈ для сплавов&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°ΠΏΠΎΠΌΠ½ΠΈΡ‚ΡŒ Π²Π°ΠΌ ΠΎ доступС ΠΊ &bΠœΡƒΠ»ΡŒΡ‚ΠΈΠΏΠ»Π°Π²ΠΈΠ»ΡŒΠ½Π΅&r β€” Π·Π°ΠΌΠ΅Ρ‡Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠΉ Π­Π”ΠŸ, которая ΠΌΠΎΠΆΠ΅Ρ‚ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ &eΠŸΠ΅Ρ‡ΡŒ&r, Ρ‚Π°ΠΊ ΠΈ ΠΊΠ°ΠΊ &bΠŸΠ΅Ρ‡ΡŒ для сплавов&r.\n\nΠšΠ²Π΅ΡΡ‚ Π½Π° Π΅Ρ‘ созданиС находится Π² Π³Π»Π°Π²Π΅ &bMV&r. ΠœΡ‹ Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΏΠΎΠ΄ΡƒΠΌΠ°Ρ‚ΡŒ ΠΎ Π½Π΅ΠΉ, Ссли Π΅Ρ‰Ρ‘ Π½Π΅ сдСлали этого.", + "quests.high_voltage.rocket_nose_cone.subtitle": "Π’Π°Ρ€Π²Π°Ρ€Π΅ нос ΠΎΡ‚ΠΎΡ€Π²Π°Π»ΠΈ", + "quests.high_voltage.rocket_nose_cone.desc": "&6Π Π°ΠΊΠ΅Ρ‚Π½Ρ‹ΠΉ ΠΎΠ±Ρ‚Π΅ΠΊΠ°Ρ‚Π΅Π»ΡŒ&r β€” самая слоТная Ρ‡Π°ΡΡ‚ΡŒ вашСй Ρ€Π°ΠΊΠ΅Ρ‚Ρ‹. Π’Π°ΠΌ понадобится большоС количСство &aΠŸΠΎΠ»ΠΈΡΡ‚ΠΈΠ»Π΅Π½Π°&r β€” надССмся, Π²Ρ‹ ΡƒΠΆΠ΅ Π½Π°Π»Π°Π΄ΠΈΠ»ΠΈ Π΅Π³ΠΎ пассивноС производство β€” ΠΈ &6HV&r Π­ΠΌΠΈΡ‚Ρ‚Π΅Ρ€. &dΠ₯Ρ€ΠΎΠΌ&r ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ элСктролизом &cΠ ΡƒΠ±ΠΈΠ½ΠΎΠ²ΠΎΠΉ ΠΏΡ‹Π»ΠΈ&r.\n\n&aΠžΡΡ‚Π΅ΠΊΠ»ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠΆΠ΅ΠΌΡ‡ΡƒΠ³ каря&r дСлаСтся слоТнСС ΠΈ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ выполнСния квСста, ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅ΠΌΠΎΠ³ΠΎ Ρ‡Π΅Ρ€Π΅Π· &6HV Π₯имичСский Π Π΅Π°ΠΊΡ‚ΠΎΡ€&r. ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ΡΡŒ Π΄Π΅Π»Π°Ρ‚ΡŒ &cΠ”ΠΈΠ½Π°ΠΌΠΈΡ‚&r, ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ &5Π˜ΠΌΠΏΠ»ΠΎΠ·ΠΈΠΎΠ½Π½Ρ‹ΠΉ ΠšΠΎΠΌΠΏΡ€Π΅ΡΡΠΎΡ€&r ΠΈ Π²ΠΎΡΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Π·Π½Π°ΠΌΠ΅Π½ΠΈΡ‚ΡƒΡŽ Π–Π΅ΠΌΡ‡ΡƒΠΆΠ΅Π½Ρƒ края β€” вСдь Π² &2TFG&r Π–Π΅ΠΌΡ‡ΡƒΠ³ края Π½Π΅ Π²Ρ‹ΠΏΠ°Π΄Π°Π΅Ρ‚ СстСствСнным ΠΏΡƒΡ‚Ρ‘ΠΌ.", + "quests.high_voltage.launch_pad.subtitle": "Запуск Ρ‡Π΅Ρ€Π΅Π· β€” 10,9...", + "quests.high_voltage.launch_pad.desc": "Бтартовая ΠΏΠ»ΠΎΡ‰Π°Π΄ΠΊΠ° &6ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Π°&r для запуска вашСй Ρ€Π°ΠΊΠ΅Ρ‚Ρ‹ β€” Π΅Ρ‘ нСльзя просто ΠΏΠΎΡΡ‚Π°Π²ΠΈΡ‚ΡŒ Π½Π° любой Π±Π»ΠΎΠΊ!\n\n&cАΠ₯ВУНГ!&r: Π½Π΅ Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ Π²Π·ΡΡ‚ΡŒ с собой &cΠ’Π’ΠžΠ Π£Π Π‘Ρ‚Π°Ρ€Ρ‚ΠΎΠ²ΡƒΡŽ ΠΏΠ»ΠΎΡ‰Π°Π΄ΠΊΡƒ&r, ΠΎΠ½Π° понадобится для ΠΏΠΎΠ»Ρ‘Ρ‚Π° Π΄ΠΎΠΌΠΎΠΉ!", + "quests.high_voltage.rocket_fuel.title": "Π Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ", + "quests.high_voltage.rocket_fuel.subtitle": "Π›Π΅Π³Ρ‡Π΅, Ρ‡Π΅ΠΌ Π²Ρ‹ Π΄ΡƒΠΌΠ°Π΅Ρ‚Π΅", + "quests.high_voltage.rocket_fuel.desc": "Для ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ ΠΏΠΎΠ»Ρ‘Ρ‚Π° Π½Π° Ρ€Π°ΠΊΠ΅Ρ‚Π΅ Π²Π°ΠΌ понадобится &6Ρ‚Ρ€ΠΈ Π²Π΅Π΄Ρ€Π° Ρ€Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r. ΠŸΡ€ΠΎΡ†Π΅ΡΡ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ слоТным (этапов производства Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΌΠ½ΠΎΠ³ΠΎ), Π½ΠΎ всё Ρ‡Ρ‚ΠΎ Π½ΡƒΠΆΠ½ΠΎ β€” это &bΠ₯Π»ΠΎΡ€&r, &bΠœΠ΅Ρ‚Π°Π½&r, &bАзот&r, &bΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄&r ΠΈ &bΠ’ΠΎΠ΄Π°&r. НичСго особо уТасного!\n\nЕсли Ρƒ вас ΡƒΠΆΠ΅ Π΅ΡΡ‚ΡŒ &5Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π₯имичСский Π Π΅Π°ΠΊΡ‚ΠΎΡ€&r, ΠΌΠΎΠΆΠ½ΠΎ Π΄Π°ΠΆΠ΅ ΠΏΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ этапы!\n\nЕсли Π²Ρ‹ Π΅Ρ‰Ρ‘ Π½Π΅ пользовались ΠΈΠΌ, самоС врСмя Π·Π°Π³Π»ΡΠ½ΡƒΡ‚ΡŒ Π² &7Π”Π΅Ρ€Π΅Π²ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² EMI&r для упрощСния процСсса. ΠŸΡ€ΠΎΡΡ‚ΠΎ ΠΊΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ΠΏΠΎ малСнькой ΠΈΠΊΠΎΠ½ΠΊΠ΅ ΠΈΠ· 4 ΠΊΠ²Π°Π΄Ρ€Π°Ρ‚ΠΎΠ² справа ΠΎΡ‚ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°, Π° Π·Π°Ρ‚Π΅ΠΌ Π½Π°Π²Π΅Π΄ΠΈΡ‚Π΅ курсор Π½Π° Π²ΠΎΠΏΡ€ΠΎΡΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π·Π½Π°ΠΊ Π²Π½ΠΈΠ·Ρƒ справа экрана β€” Ρ‚Π°ΠΌ Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ ΠΏΠΎΠ»Π½Ρ‹Π΅ инструкции!", + "quests.high_voltage.space_suit.title": "Π‘ΠΊΠ°Ρ„Π°Π½Π΄Ρ€", + "quests.high_voltage.space_suit.subtitle": "Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, самоС слоТноС", + "quests.high_voltage.space_suit.desc.1": "ΠœΡ‹ Π·Π½Π°Π΅ΠΌ, Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ Π½Π΅ тСрпится ΡƒΠ»Π΅Ρ‚Π΅Ρ‚ΡŒ, Π½ΠΎ для выТивания Π½Π° Π›ΡƒΠ½Π΅ дольшС Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… сСкунд Π½ΡƒΠΆΠ΅Π½ скафандр, Π½Π°ΠΏΠΎΠ»Π½Π΅Π½Π½Ρ‹ΠΉ &bΠ΄Ρ‹Ρ…Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠΉ смСсью&r β€” ΠΈ Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π΅ ΡΠ½ΠΈΠΌΠ°Ρ‚ΡŒ Π΅Π³ΠΎ для Π·Π°ΠΏΡ€Π°Π²ΠΊΠΈ, Π½ΡƒΠΆΠ΅Π½ &eΠ“Π°Π·ΠΎΠ²Ρ‹ΠΉ Π‘Π°Π»Π»ΠΎΠ½&r.\n\nБамая слоТная Ρ‡Π°ΡΡ‚ΡŒ β€” это &dΠŸΠΎΠ»ΠΈΠΊΠ°ΠΏΡ€ΠΎΠ»Π°ΠΊΡ‚Π°ΠΌΠΎΠ²Π°Ρ Ρ‚ΠΊΠ°Π½ΡŒ&r (Ρ‚Π°ΠΊΠΆΠ΅ извСстная ΠΊΠ°ΠΊ НСйлон).\n\nДля Π΅Ρ‘ производства ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ Π­Π”ΠŸ ΠΈ &6HV&r &eΠ₯имичСский Π Π΅Π°ΠΊΡ‚ΠΎΡ€&r.\n\nΠ”Π°Π»Π΅Π΅ Π²Ρ‹ смоТСтС ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Ρ‚ΠΊΠ°Π½ΡŒ ΠΈΠ· &aΠ‘Π΅Π½Π·ΠΎΠ»Π°&r, &bΠ’ΠΎΠ΄ΠΎΡ€ΠΎΠ΄Π°&r, &9Π₯Π»ΠΎΡ€Π°&r, &bΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄Π°&r ΠΈ &3Аммиака&r.\n\nΠœΡ‹ Π½Π΅ Π±ΡƒΠ΄Π΅ΠΌ Ρ€Π°ΡΠΏΠΈΡΡ‹Π²Π°Ρ‚ΡŒ всС шаги, Π½ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ ΠΎΠΏΡ‹Ρ‚Π½Ρ‹ΠΉ ΠΈΠ³Ρ€ΠΎΠΊ GregTech, Π²Ρ‹ смоТСтС Ρ€Π°Π·ΠΎΠ±Ρ€Π°Ρ‚ΡŒΡΡ сами Ρ‡Π΅Ρ€Π΅Π· &aEMI&r.", + "quests.high_voltage.space_suit.desc.2": "Когда всё Π±ΡƒΠ΄Π΅Ρ‚ Π³ΠΎΡ‚ΠΎΠ²ΠΎ, просто &eΠšΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ПКМ&r ΠΏΠΎ Π±ΠΎΡ‡ΠΊΠ΅ ΠΈΠ»ΠΈ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρƒ, Π·Π°ΠΏΠΎΠ»Π½Π΅Π½Π½ΠΎΠΌΡƒ Π΄Ρ‹Ρ…Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠΉ смСсью, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ &bΠ‘ΠΆΠ°Ρ‚Ρ‹ΠΌ Нитроксом&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ ΠΈΡ… ΠΊΠ°ΠΊ Π²Π΅Π΄Ρ€ΠΎ. 1000mB Ρ…Π²Π°Ρ‚ΠΈΡ‚ Π½Π° 20 ΠΌΠΈΠ½ΡƒΡ‚. НадСв скафандр, Π²Ρ‹ смоТСтС Β«ΠΏΠΈΡ‚ΡŒΒ» ΠΈΠ· Π“Π°Π·ΠΎΠ²ΠΎΠ³ΠΎ Π‘Π°Π»Π»ΠΎΠ½Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ скафандр.\n\nΠ’Π°ΠΊΠΆΠ΅ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ Π·Π°Π³Π»ΡΠ½ΡƒΡ‚ΡŒ Π² Π³Π»Π°Π²Ρƒ Β«Π’Ρ‹ΠΆΠΈΠ²Π°Π½ΠΈΠ΅ Π² космосС», Π²Π΄Ρ€ΡƒΠ³ Ρ‚Π°ΠΌ Π΅ΡΡ‚ΡŒ Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ Π΅Ρ‰Ρ‘, Ρ‡Ρ‚ΠΎ стоит Π²Π·ΡΡ‚ΡŒ с собой!", + "quests.high_voltage.space_suit.task": "Π—Π°ΠΏΠΎΠ»Π½ΠΈΡ‚Π΅ ΠΈ Β«ΠΏΠ΅ΠΉΡ‚Π΅Β»", + "quests.high_voltage.welcome_moon.title": "Π― Π½Π° &3Π›ΡƒΠ½Π΅&r!", + "quests.high_voltage.welcome_moon.subtitle": "НадСюсь Ρ‚Ρ‹ взял всё, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Π΅Ρ€Π½ΡƒΡ‚ΡŒΡΡ", + "quests.high_voltage.welcome_moon.desc": "&2ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»ΡΠ΅ΠΌ&r, Π²Ρ‹ ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ ΠΏΡ€ΠΈΠ·Π΅ΠΌΠ»ΠΈΠ»ΠΈΡΡŒ Π½Π° &7Π›ΡƒΠ½Ρƒ&r! Π—Π΄Π΅ΡΡŒ Π²Ρ‹ Π½Π°ΠΉΠ΄Ρ‘Ρ‚Π΅ ΠΆΠΈΠ»Ρ‹ &bΠ˜ΡΡ‚ΠΈΠ½Π½ΠΎΠ³ΠΎ ΠšΠ²Π°Ρ€Ρ†Π°&r ΠΈ ΠΌΠ΅Ρ‚Π΅ΠΎΡ€ΠΈΡ‚Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ позволят Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Ρ‚ΡŒ &dAE2&r.\n\nНо это Π΅Ρ‰Ρ‘ Π½Π΅ всё β€” Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΆΠΈΠ»Ρ‹ здСсь ΠΈΠΌΠ΅ΡŽΡ‚ Π³ΠΎΡ€Π°Π·Π΄ΠΎ Π±ΠΎΠ»Π΅Π΅ Π²Ρ‹ΡΠΎΠΊΡƒΡŽ ΠΏΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ, Ρ‡Π΅ΠΌ Π½Π° Π—Π΅ΠΌΠ»Π΅.\n\nНапримСр, Π½Π° Π›ΡƒΠ½Π΅ Π»Π΅Π³ΠΊΠΎ Π½Π°ΠΉΡ‚ΠΈ ΠΆΠΈΠ»Ρ‹ &6Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚Π°&r, &7Боксита&r, &7Алюминия&r ΠΈ &5Π₯Ρ€ΠΎΠΌΠΈΡ‚Π°&r. Π‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅ нСбольшой Π±Π°Π·Ρ‹ здСсь станСт ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹ΠΌ для дальнСйшСго прогрСсса.\n\nΠ’Π°ΡˆΠ΅ΠΉ Π³Π»Π°Π²Π½ΠΎΠΉ Π·Π°Π΄Π°Ρ‡Π΅ΠΉ Π±ΡƒΠ΄Π΅Ρ‚ транспортировка рСсурсов, вСдь ΠΏΠΎΠΊΠ° Π½Π΅Ρ‚ простых ΠΌΠ΅ΠΆ-ΠΈΠ·ΠΌΠ΅Ρ€ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… инструмСнтов Π²Ρ€ΠΎΠ΄Π΅ &5Π­Π½Π΄Π΅Ρ€-Π‘ΡƒΠ½Π΄ΡƒΠΊΠ°&r ΠΈΠ»ΠΈ &dAE2 ΠšΠ²Π°Π½Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΊΠΎΠ»ΡŒΡ†Π°&r.\n\nНадССмся, Π²Ρ‹ Ρ…ΠΎΡ€ΠΎΡˆΠΎ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΠ»ΠΈΡΡŒ, ΠΈΠ½Π°Ρ‡Π΅ придётся ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ Π²Ρ‚ΠΎΡ€ΡƒΡŽ Ρ€Π°ΠΊΠ΅Ρ‚Ρƒ ΠΈ скафандр, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π±Ρ€Π°Ρ‚ΡŒ своё Ρ‚Π΅Π»ΠΎ!", + "quests.high_voltage.gun.title": "Π’ΠΎΠ·ΡŒΠΌΠΈ с собой ΠΏΡƒΡˆΠΊΡƒ", + "quests.high_voltage.gun.subtitle": "Если ΠΈ это Π½Π΅ ΠΏΠΎΠΌΠΎΠ³Π»ΠΎ... Шмаляй ΠΈΠ· Π²Ρ‚ΠΎΡ€ΠΎΠΉ", + "quests.high_voltage.gun.task1": "Π›ΡŽΠ±ΠΎΠ΅ ΠΎΡ€ΡƒΠΆΠΈΠ΅", + "quests.high_voltage.gun.task2": "Π›ΡŽΠ±Ρ‹Π΅ ΠΌΠ΅Π΄ΠΈΠΊΠ°ΠΌΠ΅Π½Ρ‚Ρ‹ ΠΈΠ»ΠΈ Π²Ρ‹Π΄Π΅Ρ€ΠΆΠ°Π½Π½Ρ‹ΠΉ алкоголь", + "quests.high_voltage.gun.desc": "Блишком спокойно Π½Π° Π—Π΅ΠΌΠ»Π΅? На Π›ΡƒΠ½Π΅ Π²Ρ‹ Π±ΡƒΠ΄Π΅Ρ‚Π΅ Π½Π΅ ΠΎΠ΄Π½ΠΈ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ΡΡŒ ΠΊ Π·Π°Ρ‰ΠΈΡ‚Π΅ β€” ΠΎΠ΄Π½ΠΈΠΌ ΠΌΠ΅Ρ‡ΠΎΠΌ ΠΈΠ»ΠΈ ΠΊΠ°ΠΌΠ΅Π½Π½Ρ‹ΠΌΠΈ Π΄Ρ€ΠΎΡ‚ΠΈΠΊΠ°ΠΌΠΈ Π½Π΅ ΠΎΠ±ΠΎΠΉΡ‚ΠΈΡΡŒ.\n\n&4Π›ΡƒΠ½Π° опасна&r, ΠΈ Π²Ρ‹ ΠΆΠ΅ Π½Π΅ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΡ‚Π΅Ρ€ΡΡ‚ΡŒ свою Π΄Ρ€Π°Π³ΠΎΡ†Π΅Π½Π½ΡƒΡŽ Π Π°ΠΊΠ΅Ρ‚Ρƒ, Π²Π΅Ρ€Π½ΠΎ?\n\nΠ’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΉ пистолСт (Ссли Π½Π΅ ΡƒΠ²Π΅Ρ€Π΅Π½Ρ‹, Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ &oΠ‘Π½Π°ΠΉΠΏΠ΅Ρ€ΡΠΊΡƒΡŽ Π²ΠΈΠ½Ρ‚ΠΎΠ²ΠΊΡƒ Β«Π—Π°Π²ΠΎΠ΄Π½ΠΎΠΉΒ»&r), сдСлайтС боСприпасы ΠΈ Ссли Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ установитС обвСсы Π½Π° ΠΎΡ€ΡƒΠΆΠΈΠ΅.\n\nΠ’Π°ΠΊΠΆΠ΅ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ Π²Π·ΡΡ‚ΡŒ ΠΏΠΈΡ‚Π°Ρ‚Π΅Π»ΡŒΠ½ΡƒΡŽ Π΅Π΄Ρƒ для ΠΏΠΎΠ²Ρ‹ΡˆΠ΅Π½ΠΈΡ максимума Π·Π΄ΠΎΡ€ΠΎΠ²ΡŒΡ (ΠΏΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΏΠ°ΠΊΠ΅Ρ‚Ρ‹ с Π΅Π΄ΠΎΠΉ!), Π° Π΅Ρ‰Ρ‘ алкоголь ΠΈ лСкарства для Π±Π°Ρ„Ρ„ΠΎΠ² ΠΈ лСчСния.", + "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": "ΠŸΡ€ΡΠΌ ΠΊΠ°ΠΊ Π² Futurama", + "quests.high_voltage.hypertubes.desc": "Π˜Ρ‰Π΅Ρ‚Π΅ Π±ΠΎΠ»Π΅Π΅ ΠΊΡ€ΡƒΡ‚ΠΎΠΉ способ быстро ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒΡΡ ΠΏΠΎ Π±Π°Π·Π΅? ΠŸΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ &3Π“ΠΈΠΏΠ΅Ρ€Ρ‚Ρ€ΡƒΠ±Ρ‹&r! ΠŸΡ€ΠΎΡΡ‚ΠΎ Π²ΡΡ‚Π°Π½ΡŒΡ‚Π΅ Ρƒ ΠΎΠ΄Π½ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ†Π° β€” ΠΈ вас всосёт ΠΈ пСрСнСсёт ΠΊ Π΄Ρ€ΡƒΠ³ΠΎΠΌΡƒ, ΠΏΡ€ΠΈΡ‡Ρ‘ΠΌ Ρ‚Ρ€ΡƒΠ±Ρ‹ ΠΌΠΎΠ³ΡƒΡ‚ ΠΈΠ΄Ρ‚ΠΈ Π² любом Π½Π°ΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠΈ!\n\nДля Ρ€Π°Π±ΠΎΡ‚Ρ‹ ΠΈΠΌ Π½ΡƒΠΆΠ½Ρ‹ Π΅Π΄ΠΈΠ½ΠΈΡ†Ρ‹ Π½Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ (Stress Units), Π½ΠΎ Ссли Ρƒ вас большС Π½Π΅Ρ‚ установки Create, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΠΎΠ²Π°Ρ‚ΡŒ EU Π² SU с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠšΠΎΠ½Π²Π΅Ρ€Ρ‚Π΅Ρ€Π° Π­Π½Π΅Ρ€Π³ΠΈΠΈ GregTech ΠΈ ЭлСктродвигатСля ΠΈΠ· &9&oCreate Crafts and Additions&r.", + "quests.high_voltage.wand.title": "БСсконСчный ΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ ΠΆΠ΅Π·Π»", + "quests.high_voltage.wand.subtitle": "НСзамСнимый Π² Π‘ΠΊΠ°ΠΉΠ‘Π»ΠΎΠΊΠ΅", + "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, Π½ΠΎ сам процСсс ΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹ΠΉ. Π’Π°ΠΌ прСдстоит ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ Ρ€Π°Π·Π½Ρ‹Π΅ Π²ΠΈΠ΄Ρ‹ &bΠ Π΅Π³ΠΎΠ»ΠΈΡ‚ΠΎΠ²ΠΎΠΉ ΠΏΡ‹Π»ΠΈ&r, каТдая ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… доступна Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² своём Π±ΠΈΠΎΠΌΠ΅. Для этого понадобится &6Π›ΡƒΠ½Π½Ρ‹ΠΉ сборщик ΠΏΡ‹Π»ΠΈ&r. Π’Π°ΠΆΠ½ΠΎ ΠΏΠΎΠΌΠ½ΠΈΡ‚ΡŒ Π΄Π²Π΅ Π²Π΅Ρ‰ΠΈ:\n\nβ€’ Для настройки Π½ΡƒΠΆΠ΅Π½ &9Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΡƒΡŽ &9схСму&r.\nβ€’ Он ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ &eΠšΠ°Ρ‚ΡƒΡˆΠΊΠΈ&r, ΠΊΠ°ΠΊ ΠΈ &6ΠšΡ€Π΅ΠΊΠΈΠ½Π³ΠΎΠ²Ρ‹ΠΉ Π·Π°Π²ΠΎΠ΄&r β€” Ρ‡Π΅ΠΌ ΠΊΡ€ΡƒΡ‡Π΅ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ, Ρ‚Π΅ΠΌ большС экономия энСргии. ОсобСнно ΠΏΠΎΠ»Π΅Π·Π½ΠΎ ΠΏΡ€ΠΈ сборС Π Π΅Π³ΠΎΠ»ΠΈΡ‚Π° Π΄Π°Π»Π΅ΠΊΠΎ ΠΎΡ‚ Π±Π°Π·Ρ‹.\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 ΠΈ &7Угольной ΠΏΡ‹Π»ΠΈ&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, каТдая ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Π΄Π°Ρ‘Ρ‚ ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ рСсурсы. ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ‚ΠΈΠΏ связан с ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½Ρ‹ΠΌ &7Π³Π»ΡƒΠ±ΠΈΠ½Π½Ρ‹ΠΌ Π±ΠΈΠΎΠΌΠΎΠΌ&r Π½Π° &7Π›ΡƒΠ½Π΅&r. Π˜ΠΌΠ΅ΠΉΡ‚Π΅ Π² Π²ΠΈΠ΄Ρƒ: эти Π±ΠΈΠΎΠΌΡ‹ Π½Π΅ соСдинСны Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ придётся Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΈΡΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚ΡŒ. Найти Π½ΡƒΠΆΠ½Ρ‹ΠΉ Π±ΠΈΠΎΠΌ Π³ΠΎΡ€Π°Π·Π΄ΠΎ ΠΏΡ€ΠΎΡ‰Π΅ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &aΠœΠΈΠ½ΠΈΠΊΠ°Ρ€Ρ‚Ρ‹&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.high_voltage.titanium_greate.title": "Π’ΠΈΡ‚Π°Π½ΠΎΠ²Ρ‹ΠΉ Ρ‚ΠΈΡ€ Greate", + "quests.high_voltage.titanium_greate.desc": "Π­Ρ‚ΠΎ послСдний ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Greate, доступный Π² TerraFirmaGreg. ЕдинствСнноС Π΅Π³ΠΎ Β«ΡΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½ΠΎΠ΅Β» прСимущСство Π·Π°ΠΊΠ»ΡŽΡ‡Π°Π΅Ρ‚ΡΡ Π² Ρ‚ΠΎΠΌ, Ρ‡Ρ‚ΠΎ ΠΎΠ½ ΡΠΎΠ²Π΅Ρ€ΡˆΠ΅Π½Π½ΠΎ нСобязатСлСн.", + "quests.low_voltage": "&7LV&r - НизкоС НапряТСниС", + "quests.low_voltage.subtitle": "ΠŸΠΎΠ΄Ρ‡ΠΈΠ½ΠΈΡ‚Π΅ элСктричСство ΠΈ Π½Π°Ρ‡Π½ΠΈΡ‚Π΅ своС ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠ΅ Π² GregTech", + "quests.low_voltage.lv_machine_hull.title": "ΠšΠΎΡ€ΠΏΡƒΡ вашСй Π²Ρ‚ΠΎΡ€ΠΎΠΉ ΠΌΠ°ΡˆΠΈΠ½Ρ‹", + "quests.low_voltage.lv_machine_hull.subtitle": "ΠŸΡ€ΠΈΡˆΠ»ΠΎ врСмя Π·Π°Π½ΡΡ‚ΡŒΡΡ элСктричСством.", + "quests.low_voltage.lv_machine_hull.desc.1": "Π’Ρ‹ ΠΎΡ‡Π΅Π½ΡŒ Π±Π»ΠΈΠ·ΠΊΠΈ ΠΊ созданию &6ΠΏΠ΅Ρ€Π²ΠΎΠΉ LV ΠœΠ°ΡˆΠΈΠ½Ρ‹&r ΠΈ Π½Π°Ρ‡Π°Π»Ρƒ эры элСктричСства! Если Π²Ρ‹ Π΄ΠΎ сих ΠΏΠΎΡ€ Π½Π΅ занимались &4ΠšΡ€Π°ΡΠ½ΠΎΠΉ Π‘Ρ‚Π°Π»ΡŒΡŽ&r, Ρ‚ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ придСтся, Π½ΠΎ Π·Π°Ρ‚ΠΎ Ρƒ вас появится &6Π½ΠΎΠ²Ρ‹Π΅ способы&r ΠΎΠΏΡ‚ΠΈΠΌΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ производство.\n\nΠ’Π°ΠΊΠΎΠ²Π° философия GregTech: &6Ρ‡Π΅ΠΌ дальшС Ρ‚Ρ‹ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ³Π°Π΅ΡˆΡŒΡΡ, Ρ‚Π΅ΠΌ Π»ΡƒΡ‡ΡˆΠ΅ становятся Π½ΠΎΠ²Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹&r.\n\nДля Π½Π°Ρ‡Π°Π»Π° сдСлайтС хотя Π±Ρ‹ 3 ΠΈΠ»ΠΈ 4 корпуса.", + "quests.low_voltage.lv_machine_hull.desc.2": "Для Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΈΠ³Ρ€ΠΎΠΊΠΎΠ² достиТСниС Π½ΠΎΠ²ΠΎΠ³ΠΎ Ρ‚ΠΈΡ€Π° отмСчаСтся созданиСм &6ΠΏΠ΅Ρ€Π²ΠΎΠΉ схСмы&r, для Π΄Ρ€ΡƒΠ³ΠΈΡ… β€” &6корпуса ΠΌΠ°ΡˆΠΈΠ½Ρ‹&r ΠΈΠ»ΠΈ &6энСргСтичСского люка&r. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ ΡƒΠ΄ΠΎΠ±Π½Π΅Π΅, Π½ΠΎ Ρ€Π°Π΄ΠΈ порядка , эти квСсты Π±ΡƒΠ΄ΡƒΡ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ корпус ΠΌΠ°ΡˆΠΈΠ½Ρ‹.", + "quests.low_voltage.lv_machine_casing.title": "ΠšΠΎΡ€ΠΏΡƒΡ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ LV для Create?", + "quests.low_voltage.lv_machine_casing.subtitle": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ²!", + "quests.low_voltage.lv_machine_casing.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ±Π»Π΅Π³Ρ‡ΠΈΡ‚ΡŒ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ Π½Π° LV ΠΈ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π΅Π³ΠΎ ΠΌΠ΅Π½Π΅Π΅ ΠΏΡƒΠ³Π°ΡŽΡ‰ΠΈΠΌ, &5TFG&r ΠΏΡ€Π΅Π΄Π»Π°Π³Π°Π΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ &6Create&r вмСсто Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… машин &6GregTech&r.\n\nΠœΡ‹ прСдставили ΠΈΡ… Π² &6ΠΏΡ€ΠΎΡˆΠ»ΠΎΠΉ Π³Π»Π°Π²Π΅&r, Π½ΠΎ просто Π·Π½Π°ΠΉΡ‚Π΅, Ρ‡Ρ‚ΠΎ Ссли сущСствуСт Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π° машинС GregTech, Ρƒ вас Π±ΡƒΠ΄Π΅Ρ‚ Π²Ρ‹Π±ΠΎΡ€ Π² Ρ€Π°ΠΌΠΊΠ°Ρ… квСстов.", + "quests.low_voltage.lv_motor.title": "ΠŸΠ΅Ρ€Π²Ρ‹ΠΉ ΠΈΠ· мноТСства ΠΌΠΎΡ‚ΠΎΡ€ΠΎΠ²", + "quests.low_voltage.lv_motor.subtitle": "НизкоС напряТСниС ΠΌΠ°Π½ΠΈΡ‚...", + "quests.low_voltage.lv_motor.desc": "ΠŸΠΎΠΌΠ½ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ &2EMI β€” ваш Π΄Ρ€ΡƒΠ³&r, Ссли Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ становятся слишком слоТными. НаТмитС Π½Π° ΠΊΠ½ΠΎΠΏΠΊΡƒ с Ρ‡Π΅Ρ‚Ρ‹Ρ€ΡŒΠΌΡ ΠΊΠ²Π°Π΄Ρ€Π°Ρ‚Π°ΠΌΠΈ, Ρ€Π°ΡΠΏΠΎΠ»ΠΎΠΆΠ΅Π½Π½ΡƒΡŽ Π² ΠΏΡ€Π°Π²ΠΎΠΌ Π½ΠΈΠΆΠ½Π΅ΠΌ ΡƒΠ³Π»Ρƒ любого Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°, ΠΈ EMI ΠΏΠΎΠΊΠ°ΠΆΠ΅Ρ‚ Π²Π°ΠΌ Π΄Π΅Ρ€Π΅Π²ΠΎ всСх ΠΊΡ€Π°Ρ„Ρ‚ΠΎΠ²Ρ‹Ρ… ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚ΠΎΠ², Π° Ρ‚Π°ΠΊΠΆΠ΅ Π²Ρ‹ смоТСтС Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ \"список ΠΏΠΎΠΊΡƒΠΏΠΎΠΊ\" Π² ΠΈΠ·Π±Ρ€Π°Π½Π½ΠΎΠ΅!\n\nΠ’ΠΎΠ·Π²Ρ€Π°Ρ‰Π°ΡΡΡŒ ΠΊ Ρ‚Π΅ΠΌΠ΅, ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ΡΡŒ ΠΊ &7LV&r, создав ΡˆΠ΅ΡΡ‚ΡŒ элСктродвигатСлСй (&7LV&r)! Π­Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ ΠΌΠ½ΠΎΠ³ΠΎ, Π½ΠΎ это самый ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ΠΉ для Ρ‚ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΄ΠΎΠ±Ρ€Π°Ρ‚ΡŒΡΡ Π΄ΠΎ самого интСрСсного Π² &7LV&r.", + "quests.low_voltage.lv_age_progression.title": "ΠŸΡ€ΠΎΠ΄Π²ΠΈΠΆΠ΅Π½ΠΈΠ΅ Π² LV", + "quests.low_voltage.lv_age_progression.subtitle": "Блишком ΠΌΠ½ΠΎΠ³ΠΎ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ², слишком ΠΌΠ°Π»ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ !", + "quests.low_voltage.lv_age_progression.desc": "&7LV&r ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ ΠΎΡ‚ вас создания мноТСства Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… машин. ! Π’ΠΎΡ‚ друТСский совСт, Ссли Π²Π°ΠΌ Ρ‚Ρ€ΡƒΠ΄Π½ΠΎ ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ Ρ†Π΅Π»ΠΈ: Π²Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π²Π°ΠΌ понадобится Π² Π±ΠΎΠ»Π΅Π΅ ΠΏΠΎΠ·Π΄Π½Π΅ΠΌ квСстС, ΠΈ Π΄Π²ΠΈΠ³Π°ΠΉΡ‚Π΅ΡΡŒ ΠΊ Π½Π΅ΠΌΡƒ ΠΎΡ‚ ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎΠ³ΠΎ.\n\nΠ‘ ΡƒΡ‡Π΅Ρ‚ΠΎΠΌ этого... ΠΏΠΎΡ‡Π΅ΠΌΡƒ Π±Ρ‹ Π½Π°ΠΌ Π½Π΅ Π½Π°Ρ‡Π°Ρ‚ΡŒ с &5ВСрмоядСрного ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Π°&r? Π—Π°Π±ΡƒΠ΄ΡŒ, это Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ слишком Π°ΠΌΠ±ΠΈΡ†ΠΈΠΎΠ·Π½ΠΎ - Π΄Π°Π²Π°ΠΉ Π»ΡƒΡ‡ΡˆΠ΅ посмотрим Π½Π° Π±ΠΎΠ»Π΅Π΅ Π΄ΠΎΡΡ‚ΠΈΠΆΠΈΠΌΡƒΡŽ Ρ†Π΅Π»ΡŒ. Ах, Π΄Π°, &3ЭлСктричСская домСнная ΠΏΠ΅Ρ‡ΡŒ&r β€” главная конСчная Ρ†Π΅Π»ΡŒ &7LV&r β€” Π΄ΠΎΠ»ΠΆΠ½Π° Π±Ρ‹Ρ‚ΡŒ Ρ…ΠΎΡ€ΠΎΡˆΠ΅ΠΉ Ρ†Π΅Π»ΡŒΡŽ.\n\nЭлСктричСская домСнная ΠΏΠ΅Ρ‡ΡŒ &aдорогая&r, поэтому сначала слСдуСт ΡΠΎΡΡ€Π΅Π΄ΠΎΡ‚ΠΎΡ‡ΠΈΡ‚ΡŒΡΡ Π½Π° ΠΌΠ°ΡˆΠΈΠ½Π°Ρ…, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ ΠΈ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ дСшСвлС. Наши задания ΠΏΠΎΠΌΠΎΠ³ΡƒΡ‚ Π²Π°ΠΌ Π΄Π²ΠΈΠ³Π°Ρ‚ΡŒΡΡ Π² ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠΌ Π½Π°ΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠΈ.\n\nΠ”Ρ€ΡƒΠ³ΠΈΠ΅ Π²Π°ΠΆΠ½Ρ‹Π΅ Ρ†Π΅Π»ΠΈ β€” созданиС &3LV-сборщика&r, ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ Π²Π°ΡˆΠΈΡ… ΠΏΠ΅Ρ€Π²Ρ‹Ρ… &aMV-схСм&r ΠΈ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ вашСго ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ &bсборщика схСм&r.", + "quests.low_voltage.lv_age_progression.task": "Π―... каТСтся, Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ я Π½Π°Ρ‡ΠΈΠ½Π°ΡŽ ΠΏΠΎΠ½ΠΈΠΌΠ°Ρ‚ΡŒ, ΠΊΡƒΠ΄Π° Π΄Π²ΠΈΠ³Π°Ρ‚ΡŒΡΡ", + "quests.low_voltage.lv_steam_turbine.title": "ΠŸΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΡΡ‚Π²ΠΎ элСктричСства", + "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, Π²Π°ΠΌ понадобится Ρ‚ΠΎΠ»ΡŒΠΊΠΎ &a1 ΠžΠ»ΠΎΠ²ΡΠ½Π½Ρ‹ΠΉ кабСль&r. Π‘ Π΄Ρ€ΡƒΠ³ΠΎΠΉ стороны, Ссли Π²Ρ‹ ΠΎΠ±Π½ΠΎΠ²ΠΈΡ‚Π΅ Π΄ΠΎ &32 ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Ρ… Ρ‚ΡƒΡ€Π±ΠΈΠ½&r, Π²Π°ΠΌ слСдуСт ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &a2 оловянных кабСля&r β€” ΠΈΠ½Π°Ρ‡Π΅ ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ &cΠΏΠ΅Ρ€Π΅Π³ΠΎΡ€Π΅Ρ‚ΡŒ&r.\n\nΠ­Ρ‚ΠΎ связано с ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠΎΠΉ &9АмпСров...&r Π½ΠΎ это Π±ΡƒΠ΄Π΅Ρ‚ объяснСно ΠΏΠΎΠ·ΠΆΠ΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ ΠΌΠΎΠ³Π»ΠΈ Π½Π°ΡΠ»Π°ΠΆΠ΄Π°Ρ‚ΡŒΡΡ ΠΈΠ³Ρ€ΠΎΠΉ. НС Π²ΠΎΠ»Π½ΡƒΠΉΡ‚Π΅ΡΡŒ!", + "quests.low_voltage.lbb.title": "Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π±Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ‹ΠΉ ΠΊΠΎΡ‚Ρ‘Π»", + "quests.low_voltage.lbb.subtitle": "Π‘Π£Πœ, Π‘Π£Πœ, Π‘Π£Πœ, Π‘Π£Πœ", + "quests.low_voltage.lbb.desc.1": "Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ ΠΊΠΎΡ‚Ρ‘Π» β€” это Π½Π΅ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ \"большого парня\" для ΠœΠ°Π»Ρ‹Ρ… ΠΊΠΎΡ‚Π»ΠΎΠ². Он Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Π½Π° Ρ‚Π²Π΅Ρ€Π΄ΠΎΠΌ ΠΈΠ»ΠΈ ΠΆΠΈΠ΄ΠΊΠΎΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π΅ .\n\nЕсли Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ производство энСргии Π½Π° основС ΠΏΠ°Ρ€Π°, это Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π° ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠΌΡƒ Π΄Π²ΠΈΠ³Π°Ρ‚Π΅Π»ΡŽ Create. ПозднСС Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹ питания пСрСчислСны Π² Π³Π»Π°Π²Π΅ &bMV&r.\n\nУбСдись, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ настроил это Ρ‚Π°ΠΊ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²ΠΎΠ΄Π° Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ Π·Π°ΠΊΠ°Π½Ρ‡ΠΈΠ²Π°Π»Π°ΡΡŒ, ΠΊΠ°ΠΊ Π² Ρ‚Π²ΠΎΠΈΡ… ΠœΠ°Π»Ρ‹Ρ… ΠšΠΎΡ‚Π»Π°Ρ…, ΠΈΠ½Π°Ρ‡Π΅ ΠΎΠ½ΠΎ &cвзорвСтся&r!.", + "quests.low_voltage.lbb.desc.2": "ПослС ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ Ρ€Π°Π·ΠΎΠ³Ρ€Π΅Π²Π°, &3Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π±Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ‹ΠΉ ΠΊΠΎΡ‚Ρ‘Π»&r ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ 800 ΠΏΠ°Ρ€Π° Π² Ρ‚ΠΈΠΊ, Ρ‡Ρ‚ΠΎ составляСт &d400 EU/t&r послС ΠΊΠΎΠ½Π²Π΅Ρ€Ρ‚Π°Ρ†ΠΈΠΈ, ΠΈΠ»ΠΈ 12.5 Π±Π°Π·ΠΎΠ²Ρ‹Ρ… ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Ρ… Ρ‚ΡƒΡ€Π±ΠΈΠ½. Вакая (ΠΎΡ‚Π½ΠΎΡΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ!) огромная ΠΌΠΎΡ‰Π½ΠΎΡΡ‚ΡŒ достигаСтся Ρ†Π΅Π½ΠΎΠΉ &lбольшого&r количСства сТигаСмого Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°. &5Учитывая это&r, GUI позволяСт &9ΡΠ½ΠΈΠ·ΠΈΡ‚ΡŒ&r ΠΌΠΎΡ‰Π½ΠΎΡΡ‚ΡŒ ΠΊΠΎΡ‚Π»Π° Π΄ΠΎ 25 ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚ΠΎΠ², потрСбляя 200 Π΅Π΄ΠΈΠ½ΠΈΡ† ΠΏΠ°Ρ€Π° Π·Π° Ρ‚ΠΈΠΊ. Π­Ρ‚ΠΎ &d100 EU/Ρ‚&r, ΠΈΠ»ΠΈ Ρ‡ΡƒΡ‚ΡŒ Π²Ρ‹ΡˆΠ΅ 3 Π‘Π°Π·ΠΎΠ²Ρ‹Ρ… ΠŸΠ°Ρ€ΠΎΠ²Ρ‹Ρ… Π’ΡƒΡ€Π±ΠΈΠ½.\n\nΠœΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΎΡ‚Π»ΠΎΠΆΠΈΡ‚ΡŒ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ этого, ΠΏΠΎΠΊΠ° Π²Ρ‹ Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚Π΅ Π³ΠΎΡ‚ΠΎΠ²Ρ‹ Π·Π°ΠΏΠΈΡ‚Π°Ρ‚ΡŒ Π²Π°ΡˆΡƒ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π΄ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ.", + "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. Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ это для создания ΠΌΠ°Π³Π½ΠΈΡ‚Π½Ρ‹Ρ… стСрТнСй Π±Π΅Π· рСдстоуна для Π²Π°ΡˆΠΈΡ… ΠΌΠΎΡ‚ΠΎΡ€ΠΎΠ². Всякий Ρ€Π°Π·, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ Π½Π°Ρ‡Π½Π΅Ρ‚Π΅ массовоС производство Π²Π°ΡˆΠΈΡ… ΠΌΠΎΡ‚ΠΎΡ€ΠΎΠ², эта машина сэкономит Π²Π°ΠΌ Ρ†Π΅Π»Ρ‹Π΅ стаки рСдстоуна.", + "quests.low_voltage.link_chapter.title": "Объясни ΠΌΠ½Π΅ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ.", + "quests.low_voltage.link_chapter.subtitle": "Π•ΡΡ‚ΡŒ цСлая Π³Π»Π°Π²Π° ΠΎΠ± энСргии.", + "quests.low_voltage.link_chapter.desc": "ΠŸΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Π³Π»Π°Π²Ρƒ, Π½Π°ΠΆΠ°Π² здСсь", + "quests.low_voltage.link_chapter.task": "ΠŸΡ€ΠΎΡ‡ΠΈΡ‚Π°ΠΉ это", + "quests.low_voltage.lv_combuston_gen.title": "Π”ΠΈΠ·Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€", + "quests.low_voltage.lv_combuston_gen.subtitle": "Π­Ρ‚ΠΎ взрываСтся ΠΈ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ", + "quests.low_voltage.lv_combuston_gen.desc": "&7Π”ΠΈΠ·Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ (LV)&r ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Π΄ΠΎΡ€ΠΎΠΆΠ΅ Π² ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠΈ ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с Π΄Ρ€ΡƒΠ³ΠΈΠΌΠΈ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°ΠΌΠΈ, Π½ΠΎ Π΅Π³ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ нСсСт Π² сСбС ΠΌΠ½ΠΎΠ³ΠΎ энСргии. Π­Ρ‚ΠΎ ΠΎΠ±Π»Π΅Π³Ρ‡Π°Π΅Ρ‚ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π΅Π½ΠΈΠ΅, ΠΈΠ»ΠΈ Ссли Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ Π·Π°ΠΏΠΈΡ‚Π°Ρ‚ΡŒ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ Π΄Π°Π»Π΅ΠΊΠΎ ΠΎΡ‚ вашСй Π±Π°Π·Ρ‹, Π±ΠΎΡ‡ΠΊΠ°, наполнСнная &2Π±ΠΈΠΎΠ΄ΠΈΠ·Π΅Π»Π΅ΠΌ&r, ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΌΠΎΡ‡ΡŒ Π²Π°ΠΌ Π² этом.\n\nКак ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ &7LV Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹&r, ΠΎΠ½ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ &a32 EU/t&r .", + "quests.low_voltage.lv_biodiesel.title": "Π‘ΠΈΠΎΠ΄ΠΈΠ·Π΅Π»ΡŒ", + "quests.low_voltage.lv_biodiesel.subtitle": "Π’Π°ΡˆΠ΅ ΠΏΠ΅Ρ€Π²ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ", + "quests.low_voltage.lv_biodiesel.desc": "Π’Π°ΠΌ понадобится &7химичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ (LV)&r для производства &2биодизСля&r. ΠŸΡ€ΠΎΡΡ‚ΠΎ ΡΠΌΠ΅ΡˆΠ°ΠΉΡ‚Π΅ &aΡ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ΅ масло&r с Π»ΡŽΠ±Ρ‹ΠΌ Π°Π»ΠΊΠΎΠ³ΠΎΠ»Π΅ΠΌ ΠΈΠ· &6TFC&r. Π”Ρ€ΡƒΠ³ΠΈΠ΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ с использованиСм &dэтанола&r ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ достиТСния &bMV&r.", + "quests.low_voltage.lv_seed_oil.title": "Π Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ΅ масло", + "quests.low_voltage.lv_seed_oil.subtitle": "Настоящая сила растСний", + "quests.low_voltage.lv_seed_oil.desc": "Π£ вас Π΅ΡΡ‚ΡŒ Π΄Π²Π° Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π° производства &aΡ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ масла&r: Π»ΠΈΠ±ΠΎ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &9Π²Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΠΉ ΠΊΠ°ΠΌΠ΅Ρ€Ρ‹&r, Π»ΠΈΠ±ΠΎ, Ссли Ρƒ вас ΡƒΠΆΠ΅ Π΅ΡΡ‚ΡŒ &7экстрактор (LV)&r, Ρ‚ΠΎ ΠΎΠ½ ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎ справится с этой Π·Π°Π΄Π°Ρ‡Π΅ΠΉ.\n\nΠ’Π°ΠΊΠΆΠ΅ ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ &aΡ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ΅ масло&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ для производства &2биодизСля&r.\n\nΠ•Π³ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π² &6смазку&r ΠΈΠ»ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² качСствС Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° для &cΠ³ΠΎΡ€Π΅Π»ΠΊΠΈ всполоха&r.", + "quests.low_voltage.lv_seeds.title": "Π‘Π½Π°Ρ‡Π°Π»Π° возьми сСмСна", + "quests.low_voltage.lv_seeds.subtitle": "Π­Ρ‚ΠΎ высокиС растСния", + "quests.low_voltage.lv_seeds.desc": "Если Π²Ρ‹ встрСтитС эти растСния, Π²Π°ΠΌ слСдуСт ΠΈΡ… ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ ΠΈ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Ρ„Π΅Ρ€ΠΌΡƒ.\n\nОни станут вашим Π»ΡƒΡ‡ΡˆΠΈΠΌ источником &aΡ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ масла&r, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ для производства &eбиодизСля&r. Канола Π±ΠΎΠ»Π΅Π΅ устойчива ΠΊ Π½ΠΈΠ·ΠΊΠΈΠΌ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π°ΠΌ, Π² Ρ‚ΠΎ врСмя ΠΊΠ°ΠΊ подсолнух Π»ΡƒΡ‡ΡˆΠ΅ сСбя чувствуСт Π² Ρ‚Π΅ΠΏΠ»ΠΎΠΌ ΠΊΠ»ΠΈΠΌΠ°Ρ‚Π΅. Π’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π²Ρ‹Ρ€Π°Ρ‰ΠΈΠ²Π°Ρ‚ΡŒ ΠΈΡ… Π² вашСй Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚Π΅ΠΏΠ»ΠΈΡ†Π΅, Ссли Π½Π΅ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ Π½Π° Ρ„Π΅Ρ€ΠΌΡ‹, Π½ΠΎ ΠΏΡ€ΠΈ этом придСтся Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ энСргии Π½Π° ΠΈΡ… Π²Ρ‹Ρ€Π°Ρ‰ΠΈΠ²Π°Π½ΠΈΠ΅.", + "quests.low_voltage.lv_seeds.task": "Канола ΠΈΠ»ΠΈ ΠŸΠΎΠ΄ΡΠΎΠ»Π½ΡƒΡ…", + "quests.low_voltage.lv_gas_turbine.title": "Газовая Ρ‚ΡƒΡ€Π±ΠΈΠ½Π°", + "quests.low_voltage.lv_gas_turbine.subtitle": "Для Π½ΠΈΡ… трСбуСтся большС схСм, Π½ΠΎ мСньшС ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ².", + "quests.low_voltage.lv_gas_turbine.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &7Π‘ΠΈΠ½Ρ‚Π΅Π·-Π³Π°Π·Π°&r Ρƒ тСбя Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ Π΅ΡΡ‚ΡŒ Ρ€Π°Π±ΠΎΡ‡ΠΈΠΉ способ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &7Π“Π°Π·ΠΎΠ²ΡƒΡŽ Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρƒ&r Π½Π° &7LV&r. Она Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Ρ‚ΠΎΡ‡Π½ΠΎ Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ &6Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹&r, Π½ΠΎ Π΄ΠΎΠ»ΠΆΠ½Π° Π±Ρ‹Ρ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ дСшСвлС, Ρ‡Π΅ΠΌ &6Π”ΠΈΠ·Π΅Π»ΡŒΠ½Ρ‹Π΅ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹&r.", + "quests.low_voltage.lv_gas_syngas.title": "Π‘ΠΈΠ½Ρ‚Π΅Π·-Π³Π°Π·", + "quests.low_voltage.lv_gas_syngas.subtitle": "НС дрСвСсный Π³Π°Π·", + "quests.low_voltage.lv_gas_syngas.desc": "ΠŸΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ &7Π‘ΠΈΠ½Ρ‚Π΅Π·-Π³Π°Π·&r ΠΎΡ‡Π΅Π½ΡŒ просто. Π’Π΅Π±Π΅ всСго лишь Π½ΡƒΠΆΠ½Ρ‹ &b3 ΠšΠΎΠΊΡΠΎΠ²Ρ‹Π΅ ΠΏΠ΅Ρ‡ΠΈ&r Π½Π° ΠΊΠ°ΠΆΠ΄ΡƒΡŽ &6Π’Π°Ρ€ΠΎΡ‡Π½ΡƒΡŽ ΠΌΠ°ΡˆΠΈΠ½Ρƒ&r ΠΈΠ»ΠΈ &6Π’Π°ΠΊΡƒΡƒΠΌΠ½ΡƒΡŽ ΠΊΠ°ΠΌΠ΅Ρ€Ρƒ&r. Π—Π°Ρ‚Π΅ΠΌ Ρ‚Ρ‹ Π΄ΠΎΠ±Ρ‹Π²Π°Π΅ΡˆΡŒ &7дрСвСсину&r с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &bΡ„Π΅Ρ€ΠΌΡ‹ Π΄Π΅Ρ€Π΅Π²Π° Create&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΌΠΈΠ½ΠΈΠΌΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π·Π°Ρ‚Ρ€Π°Ρ‚Ρ‹ энСргии, ΠΈ моТСшь Π½Π°ΡΠ»Π°ΠΆΠ΄Π°Ρ‚ΡŒΡΡ этим слабым, Π½ΠΎ ΠΎΡ‡Π΅Π½ΡŒ простым Π² производствС &7Π³Π°Π·ΠΎΠ²Ρ‹ΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ&r.", + "quests.low_voltage.lv_naphtha_light.title": "Нафта ΠΈ Π»Π΅Π³ΠΊΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ", + "quests.low_voltage.lv_naphtha_light.subtitle": "Из Π½ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ Π΄Π΅Π»Π°Ρ‚ΡŒ пластик.", + "quests.low_voltage.lv_naphtha_light.desc": "Если Ρ‚Ρ‹ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ нСнавидишь фСрмСрство ΠΈ ΠΏΡ€Π΅Π΄ΠΏΠΎΡ‡ΠΈΡ‚Π°Π΅ΡˆΡŒ ΠΏΡ€ΠΈΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ ΠΏΠΎ &6пустынС&r ΠΈΠ»ΠΈ Π΄ΠΎΠ±Ρ‹Ρ‡Ρƒ ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ³ΠΎ колличСства &7нСфтяных пСсков&r, Ρ‚ΠΎ, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Ρ‚Π΅Π±Π΅ стоит ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ Π½Π° &7Нафту&r (Π»ΡƒΡ‡ΡˆΠ΅ ΠΈΠ· &7Π‘Ρ€Π΅Π΄Π½Π΅ΠΉ Π½Π΅Ρ„Ρ‚ΠΈ&r) ΠΈΠ»ΠΈ &7Π›Ρ‘Π³ΠΊΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ&r (Π»ΡƒΡ‡ΡˆΠ΅ ΠΈΠ· &7НСфти&r).\n\nΠ‘ΡƒΠ΄ΡƒΡ‡ΠΈ довольно Π½Π΅ΠΏΠ»ΠΎΡ…ΠΈΠΌΠΈ с ΡƒΡ‡Ρ‘Ρ‚ΠΎΠΌ Ρ‚ΠΎΠ³ΠΎ, насколько Π»Π΅Π³ΠΊΠΎ ΠΎΠ½ΠΈ производятся, Π½Π° этом этапС ΠΈΡ… всё ΠΆΠ΅ придётся Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ.", + "quests.low_voltage.lv_turbo_charge.title": "ЗарядноС Устройство", + "quests.low_voltage.lv_turbo_charge.subtitle": "ΠŸΠΎΠ·Π²ΠΎΠ»ΡΠ΅Ρ‚ быстрСС Π·Π°Ρ€ΡΠΆΠ°Ρ‚ΡŒ ваши элСктроинструмСнты", + "quests.low_voltage.lv_turbo_charge.desc": "&oΠ­Ρ‚ΠΎΡ‚ квСст Π½Π΅ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ, Π½ΠΎ всС ΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ интСрСсным. ΠœΡ‹ помСстили Π΅Π³ΠΎ сюда Ρ€Π°Π΄ΠΈ ΠΏΠΎΠ»Π½ΠΎΡ‚Ρ‹ квСстов.&r\n\n&3ЗарядноС устройство&r ΠΎΡ‡Π΅Π½ΡŒ быстро заряТаСт ваши инструмСнСты &6RF ΠΈ EU&r, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ &9Π±ΡƒΡ€Ρ‹&r.\n\nОн ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Π΅Ρ‚ Π΄ΠΎ 4 АмпСр для ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ заряТаСмого ΠΈΠΌ инструмСнта, Ρ‡Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ Π΅Π³ΠΎ Π² &6Π΄Π²Π° Ρ€Π°Π·Π° быстрСС&r, Ρ‡Π΅ΠΌ &3Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€&r. Но ΠΎΠ½ΠΎ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ Ρ€Π°Π·Ρ€ΡΠ΄ΠΈΡ‚ΡŒΡΡ.\n\n&eΠ›ΡŽΠ±ΠΎΠ΅&r зарядноС устройство Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚ этот квСст.", + "quests.low_voltage.lv_turbo_charge.task": "ΠŸΠΎΠ΄ΠΎΠΉΠ΄Π΅Ρ‚ любоС зарядноС устройство", + "quests.low_voltage.lv_fisher.title": "Π Ρ‹Π±ΠΎΠ»ΠΎΠ²", + "quests.low_voltage.lv_fisher.subtitle": "ΠŸΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ совмСстимо с TFC!", + "quests.low_voltage.lv_fisher.desc": "&oΠ­Ρ‚ΠΎΡ‚ квСст Π½Π΅ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ, Π½ΠΎ всС ΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ интСрСсным. ΠœΡ‹ помСстили Π΅Π³ΠΎ сюда Ρ€Π°Π΄ΠΈ ΠΏΠΎΠ»Π½ΠΎΡ‚Ρ‹ квСстов.&r\n\n&3Π Ρ‹Π±ΠΎΠ»ΠΎΠ²&r Π»ΠΎΠ²ΠΈΡ‚ Ρ€Ρ‹Π±Ρƒ ΠΈΠ· Π²ΠΎΠ΄Ρ‹. Для Ρ€Π°Π±ΠΎΡ‚Ρ‹ Π΅ΠΌΡƒ трСбуСтся участок Π²ΠΎΠ΄Ρ‹ Ρ€Π°Π·ΠΌΠ΅Ρ€ΠΎΠΌ 5x5 Π±Π»ΠΎΠΊΠΎΠ² нСпосрСдствСнно ΠΏΠΎΠ΄ Π½ΠΈΠΌ. Он Π»ΠΎΠ²ΠΈΡ‚ Ρ‚Ρƒ ΠΆΠ΅ Ρ€Ρ‹Π±Ρƒ, ΠΊΠ°ΠΊ ΠΈ Π² ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠΉ Ρ€Ρ‹Π±Π°Π»ΠΊΠ΅. КаТдая опСрация Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ 1 Π΅Π΄ΠΈΠ½ΠΈΡ†Ρƒ Π½ΠΈΡ‚ΠΈ ΠΈ EU Π² количСствС, ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰Π΅ΠΌ Π΅Π³ΠΎ ΡƒΡ€ΠΎΠ²Π½ΡŽ (32 для &7LV&r ΠΈ Ρ‚.Π΄.). Π’ ΠΎΠ±Ρ‰Π΅ΠΌ, это всё.\n\nИз Ρ€Ρ‹Π±Ρ‹ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ &eΡ€Ρ‹Π±ΠΈΠΉ ΠΆΠΈΡ€&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для производства &6биодизСля&r.", + "quests.low_voltage.lv_fisher.task": "ΠŸΠΎΠ΄ΠΎΠΉΠ΄Π΅Ρ‚ любой Π Ρ‹Π±ΠΎΠ»ΠΎΠ²", + "quests.low_voltage.lv_rock_crusher.title": "КамнСлом", + "quests.low_voltage.lv_rock_crusher.subtitle": "Π‘ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ - это любовь, Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ - это Тизнь", + "quests.low_voltage.lv_rock_crusher.desc.1": "&oΠ­Ρ‚ΠΎΡ‚ квСст Π½Π΅ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ, Π½ΠΎ всС ΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ интСрСсным. ΠœΡ‹ помСстили Π΅Π³ΠΎ сюда Ρ€Π°Π΄ΠΈ ΠΏΠΎΠ»Π½ΠΎΡ‚Ρ‹ квСстов.&r&3КамнСлом&r β€” это, ΠΏΠΎ сути, Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° Π² ΠΊΠΎΡ€ΠΎΠ±ΠΊΠ΅. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄Π°Ρ‚ΡŒ Π΅ΠΌΡƒ любой Π½Π΅ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹ΠΉ камСнь ΠΈΠ»ΠΈ Π±Π»ΠΎΠΊ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°, ΠΈ ΠΎΠ½ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π΅Π³ΠΎ ΠΊΠΎΠΏΠΈΠΈ. ΠžΡ‡Π΅Π½ΡŒ ΡƒΠ΄ΠΎΠ±Π½ΠΎ, Ссли Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ ΠΌΠ½ΠΎΠ³ΠΎ ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ быстро!\n\n&eΠ›ΡŽΠ±ΠΎΠΉ&r КамнСлом Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚ этот квСст.", + "quests.low_voltage.lv_rock_crusher.desc.2": "&l&3Π›ΠΎΡ€:&r&o Π’Ρ€Π΅Π±ΠΎΠ²Π°Π½ΠΈΠ΅ рСдстоуна для Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠΈ обсидиана Π² Minecraft связано с Π΄Ρ€Π΅Π²Π½ΠΈΠΌ Π±Π°Π³ΠΎΠΌ ΠΈΠ³Ρ€Ρ‹, извСстным ΠΊΠ°ΠΊ &7MC-4239&f. Если ΠΏΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ рСдстоун вмСсто Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ° Π² Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°, ΠΎΠ½ Π½Π°Ρ‡ΠΈΠ½Π°Π» Π³Π΅Π½Π΅Ρ€ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ обсидиан. Π­Ρ‚ΠΎΡ‚ Π±Π°Π³ Π±Ρ‹Π» исправлСн Π² ΡΠ½Π°ΠΏΡˆΠΎΡ‚Π΅ 14w25b для вСрсии Minecraft 1.8, Π±ΠΎΠ»Π΅Π΅ Ρ‡Π΅ΠΌ 9 Π»Π΅Ρ‚ Π½Π°Π·Π°Π΄ Π½Π° ΠΌΠΎΠΌΠ΅Π½Ρ‚ написания!", + "quests.low_voltage.lv_rock_crusher.task": "ΠŸΠΎΠ΄ΠΎΠΉΠ΄Π΅Ρ‚ любой КамнСлом", + "quests.low_voltage.lv_aqueous_accumulator.title": "Жидкостный ΠΊΠΎΠ»Π»Π΅ΠΊΡ‚ΠΎΡ€", + "quests.low_voltage.lv_aqueous_accumulator.subtitle": "Thermal Foundation ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‘Ρ‚ ΠΏΡ€ΠΈΠ²Π΅Ρ‚", + "quests.low_voltage.lv_aqueous_accumulator.desc": "&3Жидкостный ΠΊΠΎΠ»Π»Π΅ΠΊΡ‚ΠΎΡ€&r β€” это, ΠΏΠΎ сути, КамнСлом, Π½ΠΎ для ТидкостСй. ΠŸΡ€ΠΎΡΡ‚ΠΎ размСститС ΠΌΠ°ΡˆΠΈΠ½Ρƒ рядом с двумя Π±Π»ΠΎΠΊΠ°ΠΌΠΈ-источниками ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰Π΅ΠΉ Тидкости, настройтС схСму, ΠΈ Π³ΠΎΡ‚ΠΎΠ²ΠΎ! Она Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠ°Ρ‚ΡŒ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ большС этой Тидкости. По сути, ΠΎΠ½Π° Π΄Π΅Π»Π°Π΅Ρ‚ Ρ‚ΠΎ ΠΆΠ΅ самоС, Ρ‡Ρ‚ΠΎ ΠΈ мСханичСский насос, Π½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ элСктричСство вмСсто мСханичСской энСргии, поэтому Π²Π°ΠΌ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΏΡ€ΠΎΡ‰Π΅ Π²ΠΏΠΈΡΠ°Ρ‚ΡŒ Π΅Π΅ Π² свою Ρ„Π°Π±Ρ€ΠΈΠΊΡƒ.Π’ качСствС бонуса, HV Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ Ρ‚Π°ΠΊΠΆΠ΅ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π±Π΅ΡΠΊΠΎΠ½Π΅Ρ‡Π½ΡƒΡŽ Π»Π°Π²Ρƒ!\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ бСзопасно Π·Π°Π»ΠΈΠ²Π°Ρ‚ΡŒ Π±Π»ΠΎΠΊΠΈ-источники Π²ΠΎΠ΄ΠΎΠΉ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π΅Π΄ΠΎΡ‚Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΈΡ… Π·Π°ΠΌΠ΅Ρ€Π·Π°Π½ΠΈΠ΅ Π·ΠΈΠΌΠΎΠΉ, ΠΈ машина ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ.", + "quests.low_voltage.lv_aqueous_accumulator.task": "Π›ΡŽΠ±ΠΎΠΉ Жидкостный ΠΊΠΎΠ»Π»Π΅ΠΊΡ‚ΠΎΡ€", + "quests.low_voltage.lv_wiremill.title": "Π’ΠΎΠ»ΠΎΡ‡ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ станок", + "quests.low_voltage.lv_wiremill.subtitle": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ Π½ΠΈΠΊΠ°ΠΊΠΎΠΉ Π±ΠΎΠ»ΠΈ ΠΏΡ€ΠΈ создании ΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΎΠ²!", + "quests.low_voltage.lv_wiremill.desc.1": "Π’Ρ‹ ΠΌΠΎΠ³Π»ΠΈ Π±Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π»ΡŽΠ±ΡƒΡŽ Π΄Ρ€ΡƒΠ³ΡƒΡŽ &7LV&r Machine, Π½ΠΎ ΠΏΡ€ΠΎΡ‰Π΅ всСго Π½Π°Ρ‡Π°Ρ‚ΡŒ с самой ΠΏΠΎΠ»Π΅Π·Π½ΠΎΠΉ. ΠœΡ‹ Π·Π½Π°Π΅ΠΌ, ΠΌΡ‹ Π·Π½Π°Π΅ΠΌ... Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ сначала ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ Π±ΠΎΠ»Π΅Π΅ ΡΡƒΠΌΠ°ΡΡˆΠ΅Π΄ΡˆΠ΅Π΅, Π½ΠΎ ΠΏΠΎΠ²Π΅Ρ€ΡŒΡ‚Π΅ Π½Π°ΠΌ, это Π»ΡƒΡ‡ΡˆΠ°Ρ Π½Π°Ρ‡Π°Π»ΡŒΠ½Π°Ρ Ρ‚ΠΎΡ‡ΠΊΠ°.\n\nΠ’ΠΎΠ»ΠΎΡ‡ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ станок позволяСт ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ &6Π΄Π²Π΅ ΠΏΡ€ΠΎΠ²ΠΎΠ»ΠΎΠΊΠΈ ΠΈΠ· ΠΎΠ΄Π½ΠΎΠ³ΠΎ слитка&r. Π­Ρ‚ΠΎ Π΄ΠΎΠ»ΠΆΠ½ΠΎ Π±Ρ‹Ρ‚ΡŒ Π² Ρ‚Ρ€ΠΈ Ρ€Π°Π·Π° дСшСвлС, Ρ‡Π΅ΠΌ Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ Π²Ρ‹ Π΄Π΅Π»Π°Π»ΠΈ Ρ€Π°Π½ΡŒΡˆΠ΅!", + "quests.low_voltage.lv_wiremill.desc.2": "&9Π—Π°ΠΌΠ΅Ρ‚ΠΊΠ°:&r Π Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Π²Π½ΡƒΡ‚Ρ€ΠΈ &3LV-машин&r ΠΏΠΎΡ‚Ρ€Π΅Π±Π»ΡΡŽΡ‚ Π΄ΠΎ &a32 EU/t (LV)&r. Для Π±ΠΎΠ»Π΅Π΅ высоких Π·Π½Π°Ρ‡Π΅Π½ΠΈΠΉ потрСбуСтся &bMV-машина&r (ΠΈΠ»ΠΈ Π»ΡƒΡ‡ΡˆΠ΅). Π‘Π°ΠΌΠΎ собой разумССтся, ΠΌΡ‹ ΠΏΠΎΠΊΠ° Π΄ΠΎ этого Π½Π΅ дошли. \n\nДля Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² Π²Π°ΠΌ понадобится &dΠ˜Π½Ρ‚Π΅Π³Ρ€Π°Π»ΡŒΠ½Π°Ρ схСма&r. ΠœΡ‹ ΡƒΠ²Π΅Ρ€Π΅Π½Ρ‹, Ρ‡Ρ‚ΠΎ Π²Ρ‹ Π½Π΅ Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Ρ†Π΅Π½Π½ΡƒΡŽ схСму Π½Π° Π΅Π΅ созданиС, поэтому &6ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°ΠΉΡ‚Π΅ ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΠΉ квСст для получСния Π²Π°ΠΆΠ½ΠΎΠΉ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ&r.\n\nΠ‘ этой машиной, ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎ созданной, Π΄ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π² эру всСго элСктричСского!", + "quests.low_voltage.lv_wiremill.task": "Π›ΡŽΠ±ΠΎΠΉ ΠΈΠ· этих", + "quests.low_voltage.lv_bender.title": "Π“ΠΈΠ±ΠΎΡ‡Π½Ρ‹ΠΉ станок", + "quests.low_voltage.lv_bender.subtitle": "Π‘Π΅Π½Π΄Π΅Ρ€ гнётся!", + "quests.low_voltage.lv_bender.desc": "МоТно ΡƒΡ‚Π²Π΅Ρ€ΠΆΠ΄Π°Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎ это вторая ΠΏΠΎ качСству машина &7LV для ΠΊΡ€Π°Ρ„Ρ‚Π°&r, Π½ΠΎ ΠΌΡ‹ Π³ΠΎΡ‚ΠΎΠ²Ρ‹ Π²Ρ‹ΡΠ»ΡƒΡˆΠ°Ρ‚ΡŒ ΠΈΠ½Ρ‹Π΅ мнСния.\n\nΠ­Ρ‚ΠΎ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ ΠΏΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΠΎΠ²Ρ‹Π²Π°Ρ‚ΡŒ &6ΠΎΠ΄ΠΈΠ½ слиток Π² ΠΎΠ΄Π½Ρƒ пластину&r, Ρ‡Ρ‚ΠΎ являСтся Π±ΠΎΠ»Π΅Π΅ Π²Ρ‹Π³ΠΎΠ΄Π½Ρ‹ΠΌ ΡΠΎΠΎΡ‚Π½ΠΎΡˆΠ΅Π½ΠΈΠ΅ΠΌ, Ρ‡Π΅ΠΌ Ρƒ ΠΊΡƒΠ·Π½Π΅Ρ‡Π½ΠΎΠ³ΠΎ ΠΌΠΎΠ»ΠΎΡ‚Π°.", + "quests.low_voltage.lv_bender.task": "Π›ΡŽΠ±ΠΎΠΉ ΠΈΠ· этих", + "quests.low_voltage.lv_lathe.title": "Π’ΠΎΠΊΠ°Ρ€Π½Ρ‹ΠΉ станок", + "quests.low_voltage.lv_lathe.subtitle": "Π˜Π·Π±Π°Π²ΡŒΡ‚Π΅ΡΡŒ ΠΎΡ‚ старой Ρ‚Π΅Ρ…Π½ΠΈΠΊΠΈ", + "quests.low_voltage.lv_lathe.desc.1": "Π’ΠΎΠΊΠ°Ρ€Π½Ρ‹ΠΉ станок β€” это ваТная машина, ΠΏΠΎΠΌΠΎΠ³Π°ΡŽΡ‰ΠΈΠΉ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ ΠΌΠ΅Ρ‚Π°Π»Π»Ρ‹. Благодаря Π΅ΠΌΡƒ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ &6ΠΎΠ΄ΠΈΠ½ слиток Π² Π΄Π²Π° стСрТня&r, Π° &6ΠΎΠ΄ΠΈΠ½ Π±ΠΎΠ»Ρ‚ β€” Π² ΠΎΠ΄ΠΈΠ½ Π²ΠΈΠ½Ρ‚&r. Π­Ρ‚ΠΎ Π²Π΄Π²ΠΎΠ΅ эффСктивнСС для этих Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с Ρ€ΡƒΡ‡Π½Ρ‹ΠΌ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ΠΌ.", + "quests.low_voltage.lv_lathe.desc.2": "&l&3Π›ΠΎΡ€:&r&o Π’ΠΎΠΊΠ°Ρ€Π½Ρ‹ΠΉ Π‘Ρ‚Π°Π½ΠΎΠΊ GT5 ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ ΠΎΠ΄ΠΈΠ½ ΡΡ‚Π΅Ρ€ΠΆΠ΅Π½ΡŒ ΠΈ 2 малСнькиС ΠΊΡƒΡ‡ΠΊΠΈ ΠΏΡ‹Π»ΠΈ ΠΈΠ· ΠΎΠ΄Π½ΠΎΠ³ΠΎ слитка. Π£ нас Ρ‚Π°ΠΊΠΆΠ΅ Π΅ΡΡ‚ΡŒ настройка для этого Π² GTCEu, Π½ΠΎ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ ΠΎΠ½Π° ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½Π°. \n\n&oΠ’ΠΎΠΊΠ°Ρ€Π½Ρ‹ΠΉ Π‘Ρ‚Π°Π½ΠΎΠΊ GT6 Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ ΠΈ GT5, Π½ΠΎ Π±ΠΎΠ»Ρ‚Ρ‹ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°ΡŽΡ‚ΡΡ Π² ΠΎΠ΄ΠΈΠ½ Π²ΠΈΠ½Ρ‚ ΠΈ 1/72 ΠΊΡƒΡ‡ΠΊΠΈ ΠΏΡ‹Π»ΠΈ. ΠžΡ‚Π²Ρ€Π°Ρ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ!", + "quests.low_voltage.lv_lathe.task": "Π›ΡŽΠ±ΠΎΠΉ ΠΈΠ· этих", + "quests.low_voltage.universal_cell.title": "Π›ΡƒΡ‡ΡˆΠ°Ρ Π΅ΠΌΠΊΠΎΡΡ‚ΡŒ", + "quests.low_voltage.universal_cell.subtitle": "МоТно Π·Π°Π³Π»ΡΠ½ΡƒΡ‚ΡŒ Π²Π½ΡƒΡ‚Ρ€ΡŒ, Π² ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ Ρ‚Π΅Ρ… Π±ΠΎΡ‡Π΅ΠΊ...", + "quests.low_voltage.universal_cell.desc.1": "ΠšΠ°ΠΏΡΡƒΠ»Ρ‹ ΡΠ²Π»ΡΡŽΡ‚ΡΡ Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½ΠΎΠΉ Ρ„ΠΎΡ€ΠΌΠΎΠΉ хранСния Тидкости. ВсС Ρ‚ΠΈΠΏΡ‹ капсул с ΠΎΠ΄ΠΈΠ½Π°ΠΊΠΎΠ²Ρ‹ΠΌ Ρ‚ΠΈΠΏΠΎΠΌ ΠΈ количСством Тидкости Π²Π½ΡƒΡ‚Ρ€ΠΈ Π½ΠΈΡ… &6ΡΠΊΠ»Π°Π΄Ρ‹Π²Π°ΡŽΡ‚ΡΡ&r. Π˜Ρ… ΠΌΠΎΠΆΠ½ΠΎ автоматичСски Π·Π°ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &3наполнитСлся&r.\n\nΠšΠ°ΠΏΡΡƒΠ»Ρ‹ Π²ΠΌΠ΅Ρ‰Π°ΡŽΡ‚ &dΠΎΠ΄Π½ΠΎ Π²Π΅Π΄Ρ€ΠΎ&r Тидкости.\n\nΠ•Ρ‰Π΅ Π½Π΅ ΡƒΠ±Π΅Π΄ΠΈΠ»ΠΈ? Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠΈ ΠΎΡ‚ Π²Π΅Π΄Π΅Ρ€ ΠΈ Π±ΠΎΡ‡Π΅ΠΊ, капсулы ΠΌΠΎΠ³ΡƒΡ‚ &aбСзопасно ΠΌΠΎΠ΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ&r Тидкости, Π½Π΅ давая Ρ‚Π΅Π±Π΅ ΠΎΠ±ΠΆΠ΅Ρ‡ΡŒΡΡ, Π·Π°ΠΌΡ‘Ρ€Π·Π½ΡƒΡ‚ΡŒ ΠΈΠ»ΠΈ Π½Π°Ρ‡Π°Ρ‚ΡŒ Π²Π·Π»Π΅Ρ‚Π°Ρ‚ΡŒ.", + "quests.low_voltage.universal_cell.desc.2": "Π£Π½ΠΈΠ²Π΅Ρ€ΡΠ°Π»ΡŒΠ½Ρ‹Π΅ капсулы Π²ΠΌΠ΅Ρ‰Π°ΡŽΡ‚ Π΄ΠΎ &dΠΎΠ΄Π½ΠΎΠ³ΠΎ Π²Π΅Π΄Ρ€Π°&r, Π½ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠ³ΡƒΡ‚ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ &9части&r Π²Π΅Π΄Π΅Ρ€. Они особСнно ΡƒΠ΄ΠΎΠ±Π½Ρ‹, Ссли Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ остатки Тидкости, Π½Π΅ создавая Ρ†Π΅Π»ΡƒΡŽ Π±ΠΎΡ‡ΠΊΡƒ. \n\nΠšΠ°ΠΏΡΡƒΠ»Ρ‹, ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ‹Π΅ ΠΈΠ· ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ² Π±ΠΎΠ»Π΅Π΅ высокого уровня, ΠΌΠΎΠ³ΡƒΡ‚ Π²ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ Π΅Ρ‰Π΅ большС Тидкости, Π½ΠΎ ΠΊ Ρ‚ΠΎΠΌΡƒ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ &9Π±ΠΎΡ‡ΠΊΠΈ&r ΠΈ &9супСр Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€&r Π±ΡƒΠ΄ΡƒΡ‚ Π²ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ большС. \n\nКак ΠΈ Π±ΠΎΡ‡ΠΊΠΈ, капсулы ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π² сСтку ΠΊΡ€Π°Ρ„Ρ‚Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‡ΠΈΡΡ‚ΠΈΡ‚ΡŒ ΠΈΡ… содСрТимоС..", + "quests.low_voltage.universal_cell.task": "", + "quests.low_voltage.machine_auto_output_behaviour.title": "АвтоматичСский Π²Ρ‹Π²ΠΎΠ΄ ΠΈΠ· ΠΌΠ°ΡˆΠΈΠ½Ρ‹", + "quests.low_voltage.machine_auto_output_behaviour.subtitle": "Π”Π°Π²Π°ΠΉ ΡƒΡ‡ΠΈΡ‚ΡŒΡΡ.", + "quests.low_voltage.machine_auto_output_behaviour.desc.1": "Π£ ΠΊΠ°ΠΆΠ΄ΠΎΠΉ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ Π΅ΡΡ‚ΡŒ ΠΎΠ΄Π½Π° &7пСрСдняя панСль&r ΠΈ ΠΎΠ΄Π½Π° &9выходная&r. \n\n&7ΠŸΠ΅Ρ€Π΅Π΄Π½ΡΡ панСль&r Π΄ΠΎΠ»ΠΆΠ½Π° Π±Ρ‹Ρ‚ΡŒ ΠΎΡ‡Π΅Π²ΠΈΠ΄Π½ΠΎΠΉ. \n&9Выходная панСль&r β€” это Ρ‚Π°, Π½Π° ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ Π΅ΡΡ‚ΡŒ Ρ‚ΠΎΡ‡ΠΊΠ° ΠΈΠ»ΠΈ отвСрстиС. По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ ΠΎΠ½Π° находится сзади ΠΌΠ°ΡˆΠΈΠ½Ρ‹, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ Π΅Π΅ устанавливаСтС. \n\nΠœΠ°ΡˆΠΈΠ½Ρ‹ ΠΌΠΎΠ³ΡƒΡ‚ &aавтоматичСски Π²Ρ‹Π²ΠΎΠ΄ΠΈΡ‚ΡŒ&r содСрТимоС Ρ‡Π΅Ρ€Π΅Π· Π²Ρ‹Ρ…ΠΎΠ΄Π½ΡƒΡŽ панСль. Π§Ρ‚ΠΎΠ±Ρ‹ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π°Π²Ρ‚ΠΎΠ²Ρ‹Π²ΠΎΠ΄, Π½Π°ΠΆΠΌΠΈΡ‚Π΅ ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰ΡƒΡŽ ΠΊΠ½ΠΎΠΏΠΊΡƒ Π² графичСском интСрфСйсС. Автовывод ТидкостСй ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΏΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡Π°Π΅Ρ‚ΡΡ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΠΎ. Π”ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ΅ ΡƒΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅ Π°Π²Ρ‚ΠΎΠ²Ρ‹Π²ΠΎΠ΄ΠΎΠΌ ΠΌΠΎΠΆΠ½ΠΎ ΠΎΡΡƒΡ‰Π΅ΡΡ‚Π²ΠΈΡ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &dΡ„ΠΈΠ»ΡŒΡ‚Ρ€ΠΎΠ²&r ΠΈ &dΠΊΡ€Ρ‹ΡˆΠ΅ΠΊ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΎΠ±ΡŠΡΡΠ½ΡΡŽΡ‚ΡΡ Π² Π·Π°Π΄Π°Π½ΠΈΠΈ &dПовСдСниС ΠΊΡ€Ρ‹ΡˆΠ΅ΠΊ&r, располоТСнном Π² этой Π³Π»Π°Π²Π΅.", + "quests.low_voltage.machine_auto_output_behaviour.desc.2": "ΠŸΡ€ΠΈ ΠΊΠ»ΠΈΠΊΠ΅ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ ΠΏΠΎ ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡƒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &5Π³Π°Π΅Ρ‡Π½ΠΎΠ³ΠΎ ΠΊΠ»ΡŽΡ‡Π°&r мСняСтся сторона Π²Ρ‹Π²ΠΎΠ΄Π°, Π° ΠΏΡ€ΠΈ ΠΊΠ»ΠΈΠΊΠ΅ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ с Π·Π°ΠΆΠ°Ρ‚ΠΎΠΉ клавишСй Shift β€” пСрСдняя сторона. ΠŸΠΎΠΌΠ½ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ пСрСдняя сторона &cΠ½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚&r ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ Π±Ρ‹Ρ‚ΡŒ ΠΈ стороной Π²Ρ‹Π²ΠΎΠ΄Π°! \n\nПо ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈ Тидкости нСльзя ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΡŒ Ρ‡Π΅Ρ€Π΅Π· сторону Π²Ρ‹Π²ΠΎΠ΄Π°, Π½ΠΎ это ΠΌΠΎΠΆΠ½ΠΎ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &5ΠΎΡ‚Π²Π΅Ρ€Ρ‚ΠΊΠΈ&r. ΠšΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ нСпосрСдствСнно ΠΏΠΎ сторонС Π²Ρ‹Π²ΠΎΠ΄Π° ΠΈΠ»ΠΈ Ρ‰Π΅Π»ΠΊΠ½ΠΈΡ‚Π΅ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ с Π·Π°ΠΆΠ°Ρ‚ΠΎΠΉ клавишСй Shift ΠΏΠΎ сСткС, ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰Π΅ΠΉ сторонС Π²Ρ‹Π²ΠΎΠ΄Π°. \n\nΠ‘ΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‚ ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π½Π΅ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°ΡŽΡ‚ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ &3ΠΏΠΎΠΌΠΏΠ°&r, &3ΡˆΠ°Ρ…Ρ‚Ρ‘Ρ€&r, &3Ρ€Ρ‹Π±ΠΎΠ»ΠΎΠ²&r, &3ΡΠΎΠ±ΠΈΡ€Π°Ρ‚Π΅Π»ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ²&r ΠΈ Ρ‚. Π΄. Π­Ρ‚ΠΈ ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹ Π±ΡƒΠ΄ΡƒΡ‚ Π²Ρ‹Π²ΠΎΠ΄ΠΈΡ‚ΡŒ содСрТимоС Ρ‡Π΅Ρ€Π΅Π· свою &7ΠΏΠ΅Ρ€Π΅Π΄Π½ΡŽΡŽ Ρ‡Π°ΡΡ‚ΡŒ&r (которая ΠΏΠΎ-ΠΏΡ€Π΅ΠΆΠ½Π΅ΠΌΡƒ ΠΎΠ±ΠΎΠ·Π½Π°Ρ‡Π΅Π½Π° Ρ‚ΠΎΡ‡ΠΊΠΎΠΉ).", + "quests.low_voltage.machine_auto_output_behaviour.task": "Π₯ΠΌ, ΠΊΠ°ΠΊ интСрСсно!", + "quests.low_voltage.programmed_circuits.title": "Π˜Π½Ρ‚Π΅Π³Ρ€Π°Π»ΡŒΠ½Ρ‹Π΅ схСмы", + "quests.low_voltage.programmed_circuits.subtitle": "НС Ρ…ΠΎΡ‡Π΅ΡˆΡŒ Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ свои схСмы Π½Π° Π²Ρ‹Π±ΠΎΡ€ ΠΊΡ€Π°Ρ„Ρ‚ΠΎΠ²?", + "quests.low_voltage.programmed_circuits.desc.1": "НаТав Π½Π° &rслот ΠΊΠΎΠ½Ρ„ΠΈΠ³ΡƒΡ€Π°Ρ†ΠΈΠΈ схСмы Π² ΠΌΠ°ΡˆΠΈΠ½Π°Ρ…&r, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &bΠΏΡ€ΠΈΠ·Ρ€Π°Ρ‡Π½ΡƒΡŽ Π·Π°ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΈΡ€ΠΎΠ²Π°Π½Π½ΡƒΡŽ схСму&r. \n\nΠ­Ρ‚ΠΎ фиктивная схСма, которая позволяСт Π²Ρ‹Π±ΠΈΡ€Π°Ρ‚ΡŒ Π·Π°Π΄Π°Π½Π½ΡƒΡŽ ΠΊΠΎΠ½Ρ„ΠΈΠ³ΡƒΡ€Π°Ρ†ΠΈΡŽ для Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ². Π’Π΅ΠΏΠ΅Ρ€ΡŒ Π½Π΅Ρ‚ нСобходимости Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ваши схСмы Π½Π° созданиС &bΠ·Π°ΠΏΡ€ΠΎΠ³Ρ€Π°ΠΌΠΌΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Ρ… схСм&r. \n\n&dЭлСктричСскиС ΠΌΠ°ΡˆΠΈΠ½Ρ‹&r ΠΈ &dΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Π²Ρ…ΠΎΠ΄Π½Ρ‹Π΅ люки&r Π±ΡƒΠ΄ΡƒΡ‚ ΠΈΠΌΠ΅Ρ‚ΡŒ слот для ΠΏΡ€ΠΈΠ·Ρ€Π°Ρ‡Π½ΠΎΠΉ схСмы.", + "quests.low_voltage.programmed_circuits.desc.2": "&l&3Π›ΠΎΡ€:&r&o Π­Ρ‚Π° функция ΠΈΠ·Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎ ΠΈΠ· GTNH.", + "quests.low_voltage.programmed_circuits.task": "Π― разобрался, ΠΌΠ½Π΅ Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ схСмы", + "quests.low_voltage.lv_conveyor.title": "ΠœΠΎΠ΄ΡƒΠ»ΡŒ ΠΊΠΎΠ½Π²Π΅ΠΉΠ΅Ρ€Π° LV", + "quests.low_voltage.lv_conveyor.subtitle": "ΠœΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π», Π½ΠΎ Π΅Ρ‰Ρ‘ ΠΈ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅!", + "quests.low_voltage.lv_conveyor.desc": "Π Π΅ΠΆΠ΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ ΠΊΠ°ΠΊ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚, Π½ΠΎ примСняСтся Π² рядС критичСски Π²Π°ΠΆΠ½Ρ‹Ρ… машин. \n\nΠŸΡ€ΠΈ Ρ€Π°Π·ΠΌΠ΅Ρ‰Π΅Π½ΠΈΠΈ Π½Π° машинС, ΠΊΠΎΠ½Π²Π΅ΠΉΠ΅Ρ€Π½Ρ‹Π΅ ΠΌΠΎΠ΄ΡƒΠ»ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΈΡ… Π½Π° ΠΈΠΌΠΏΠΎΡ€Ρ‚ ΠΈΠ»ΠΈ экспорт. \n\nОни Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Ρ‚ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ &9Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Ρ‹ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ²&r.", + "quests.low_voltage.lv_robot_arm.title": "Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ манипулятор LV", + "quests.low_voltage.lv_robot_arm.subtitle": "Π’Ρ‹ Π±ΡƒΠ΄Π΅ΡˆΡŒ Π½Π΅Π½Π°Π²ΠΈΠ΄Π΅Ρ‚ΡŒ ΠΈΡ… Π΄Π΅Π»Π°Ρ‚ΡŒ", + "quests.low_voltage.lv_robot_arm.desc.1": "Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Π΅ манипуляторы, установлСнныС Π½Π° машинС, ΠΏΡ€Π΅Π΄ΡΡ‚Π°Π²Π»ΡΡŽΡ‚ собой Π±ΠΎΠ»Π΅Π΅ Π³ΠΈΠ±ΠΊΡƒΡŽ Π²Π΅Ρ€ΡΠΈΡŽ ΠΊΠΎΠ½Π²Π΅ΠΉΠ΅Ρ€Π½ΠΎΠ³ΠΎ модуля. Они ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½Ρ‹ΠΌΠΈ партиями, с Π·Π°Π΄Π°Π½Π½ΠΎΠΉ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒΡŽ ΠΈΠ»ΠΈ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½Ρ‹ΠΉ запас. \n\nΠŸΡ€Π°ΠΊΡ‚ΠΈΡ‡Π΅ΡΠΊΠΎΠ΅ ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠ΅ Ρ€ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Ρ… манипуляторов Π±ΡƒΠ΄Π΅Ρ‚ рассмотрСно Π² Π±ΡƒΠ΄ΡƒΡ‰ΠΈΡ… квСстах Π² качСствС ΠΎΠ±ΡƒΡ‡Π°ΡŽΡ‰Π΅Π³ΠΎ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Π°.\n\n&9Π—Π°ΠΌΠ΅Ρ‚ΠΊΠ°:&r Π€ΡƒΠ½ΠΊΡ†ΠΈΠΈ, прСдоставляСмыС Ρ€ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΌ манипулятором, Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚ &lΡ‚ΠΎΠ»ΡŒΠΊΠΎ&r ΠΏΡ€ΠΈ &lнСобходимости&r выполнСния ΠΎΠΏΠ΅Ρ€Π°Ρ†ΠΈΠΈ.", + "quests.low_voltage.lv_robot_arm.desc.2": "&l&3Π›ΠΎΡ€:&r&o Π’ GregTech 5 Π±Ρ‹Π»ΠΈ Π±Π»ΠΎΠΊΠΈ, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ Π‘ΡƒΡ„Π΅Ρ€, Π€ΠΈΠ»ΡŒΡ‚Ρ€ ΠΈ Π€ΠΈΠ»ΡŒΡ‚Ρ€ ΠΏΠΎ Ρ‚ΠΈΠΏΡƒ , ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ позволяли Ρ‚ΠΎΠ½ΠΊΠΎ ΡƒΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°ΠΌΠΈ. Π’ GTCE всС это Π±Ρ‹Π»ΠΎ Π·Π°ΠΌΠ΅Π½Π΅Π½ΠΎ всСмогущСй Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΌ манипулятором ΠΈ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹ΠΌΠΈ ΠšΡ€Ρ‹ΡˆΠΊΠ°ΠΌΠΈ-Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°ΠΌΠΈ . Π“ΠΎΡ€Π°Π·Π΄ΠΎ ΠΊΠΎΠΌΠΏΠ°ΠΊΡ‚Π½Π΅Π΅ !", + "quests.low_voltage.lv_piston.title": "ЭлСктричСский ΠΏΠΎΡ€ΡˆΠ΅Π½ΡŒ LV", + "quests.low_voltage.lv_piston.subtitle": "ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ для ΠΊΡ€Π°Ρ„Ρ‚Π°. А Π²Ρ‹ ΠΎΠΆΠΈΠ΄Π°Π»ΠΈ Ρ‡Π΅Π³ΠΎ-Ρ‚ΠΎ Π±ΠΎΠ»Π΅Π΅ изысканного?", + "quests.low_voltage.lv_piston.desc": "Π‘ΠΏΠ΅Ρ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠΌΠΎΡ‚ΠΎΡ€, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ΠΉ для создания ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½Ρ‹Ρ… машин.\n\nОдин ΠΈΠ· Π±ΠΎΠ»Π΅Π΅ слоТных ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ² для ΠΊΡ€Π°Ρ„Ρ‚Π°, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ изготавливаСтся с использованиСм ΠΌΠΎΡ‚ΠΎΡ€Π°.", + "quests.low_voltage.lv_pump.title": "ЭлСктричСская ΠΏΠΎΠΌΠΏΠ° LV", + "quests.low_voltage.lv_pump.subtitle": "ΠœΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π», Π½ΠΎ Π΅Ρ‰Ρ‘ ΠΈ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅!", + "quests.low_voltage.lv_pump.desc": "ΠŸΡ€ΠΈ установкС Π½Π° ΠΌΠ°ΡˆΠΈΠ½Ρƒ насосы Π±ΡƒΠ΄ΡƒΡ‚ ΠΏΠ΅Ρ€Π΅ΠΊΠ°Ρ‡ΠΈΠ²Π°Ρ‚ΡŒ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΈΡ… Π½Π° ΠΈΠΌΠΏΠΎΡ€Ρ‚ ΠΈΠ»ΠΈ экспорт. \n\nОни ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Ρ‚ΡŒ &9Жидкостный Ρ„ΠΈΠ»ΡŒΡ‚Ρ€&r.", + "quests.low_voltage.lv_fluid_regulator.title": "РСгулятор Тидкости LV", + "quests.low_voltage.lv_fluid_regulator.subtitle": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΌ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π΅ ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ часто", + "quests.low_voltage.lv_fluid_regulator.desc": "&aРСгулятор ТидкостСй&r β€” это своСго Ρ€ΠΎΠ΄Π° Π°Π½Π°Π»ΠΎΠ³ &9Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠΉ Ρ€ΡƒΠΊΠΈ&r, Π½ΠΎ для ТидкостСй.\n\nОн ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΡŒ Тидкости ΠΈ ΠΈΠΌΠ΅Π΅Ρ‚ Π΄Π²Π° ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Ρ… Ρ€Π΅ΠΆΠΈΠΌΠ°:\n\n&9-&r &dΠŸΠΎΠ΄Π°Π²Π°Ρ‚ΡŒ Ρ‚ΠΎΡ‡Π½ΠΎ&r β€” ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‘Ρ‚ ΡƒΠΊΠ°Π·Π°Π½Π½ΠΎΠ΅ количСство Тидкости Π·Π° Ρ‚ΠΈΠΊ, Ссли ΠΎΠ½Π° доступна. Ни большС, Π½ΠΈ мСньшС.\n&9-&r &dΠŸΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ Ρ‚ΠΎΡ‡Π½ΠΎ&r β€” Π³Π°Ρ€Π°Π½Ρ‚ΠΈΡ€ΡƒΠ΅Ρ‚, Ρ‡Ρ‚ΠΎ Π² ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Ρ‘Π½Π½ΠΎΠΉ машинС всСгда находится Π·Π°Π΄Π°Π½Π½ΠΎΠ΅ количСство Тидкости.\n\nΠ˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ ΠΎΠ½ Π½Π΅ Ρ‚Π°ΠΊ ΡƒΠΆ часто, вСдь ΠΌΠ°ΡˆΠΈΠ½Ρ‹ GregTech ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ Π·Π°ΠΏΠΎΠ»Π½ΡΡŽΡ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄ΠΈΠ½ слот ΠΏΡ€ΠΈ ΠΏΠΎΠΌΠΎΡ‰ΠΈ &6ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ-насоса&r", + "quests.low_voltage.cover_behaviour.title": "Π£Π»ΡƒΡˆΠ΅Π½ΠΈΡ ΠœΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠΎΠ²", + "quests.low_voltage.cover_behaviour.subtitle": "Π”ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Π°Ρ Ρ„ΡƒΠ½ΠΊΡ†ΠΈΠΎΠ½Π°Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ Π±Π΅Π· занятия мСста!", + "quests.low_voltage.cover_behaviour.desc.1": "Π£Π»ΡƒΡˆΠ΅Π½ΠΈΡ ΠœΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠΎΠ² ΡƒΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°ΡŽΡ‚ΡΡ Ρ‰Ρ‘Π»Ρ‡ΠΊΠΎΠΌ ПКМ с ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ΠΌ Π² Ρ€ΡƒΠΊΠ΅ Π½Π° ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΈ ΡΠ½ΠΈΠΌΠ°ΡŽΡ‚ΡΡ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &5Π»ΠΎΠΌΠΈΠΊΠ°&r (ΠΈΠ»ΠΈ ΠΏΡ€ΠΈ Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹, Π½ΠΎ это Π³ΠΎΡ€Π°Π·Π΄ΠΎ ΠΌΠ΅Π΄Π»Π΅Π½Π½Π΅Π΅).\n\nΠŸΡ€Π°ΠΊΡ‚ΠΈΡ‡Π΅ΡΠΊΠΈ любой Π±Π»ΠΎΠΊ GregTech ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Π΅Ρ‚ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ, Π΄Π°ΠΆΠ΅ Ссли ΠΎΠ½ΠΈ Π½Π΅ Π΄Π°ΡŽΡ‚ Π½ΠΈΠΊΠ°ΠΊΠΎΠΉ Ρ„ΡƒΠ½ΠΊΡ†ΠΈΠΎΠ½Π°Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ интСрфСйс ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ, ΠΏΡ€ΠΈΡΠ°ΠΆΠΈΠ²Π°ΠΉΡ‚Π΅ΡΡŒ ΠΈ Ρ‰Ρ‘Π»ΠΊΠ°ΠΉΡ‚Π΅ ПКМ пустой Ρ€ΡƒΠΊΠΎΠΉ. Π’Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ Ρ‰Ρ‘Π»ΠΊΠ½ΡƒΡ‚ΡŒ ПКМ &5ΠΎΡ‚Π²Ρ‘Ρ€Ρ‚ΠΊΠΎΠΉ&r ΠΈΠ»ΠΈ ΠΏΡ€ΠΈΡΠ΅ΡΡ‚ΡŒ ΠΈ Ρ‰Ρ‘Π»ΠΊΠ½ΡƒΡ‚ΡŒ ΠΏΠΎ Π΄Ρ€ΡƒΠ³ΠΎΠΉ Π³Ρ€Π°Π½ΠΈ, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ сСтку.", + "quests.low_voltage.cover_behaviour.desc.2": "Для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈΠ»ΠΈ Тидкости, Π±ΡƒΠ΄Π΅Ρ‚ доступна ΠΊΠ½ΠΎΠΏΠΊΠ° для Π²ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ/ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ Π΄Ρ€ΡƒΠ³ΠΈΡ… способов ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡ΠΈ Ρ‡Π΅Ρ€Π΅Π· ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅:\n\n&9-&r Π’Ρ‹ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΎ: Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΡŒ рСсурсы Π½Π° этой сторонС ΠΌΠ°ΡˆΠΈΠ½Ρ‹.\n\n&9-&r Π Π°Π·Ρ€Π΅ΡˆΠΈΡ‚ΡŒ с Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ΠΎΠΌ (Π°ΠΊΡ‚ΡƒΠ°Π»ΡŒΠ½ΠΎ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΡ€ΠΈ Π½Π°Π»ΠΈΡ‡ΠΈΠΈ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°!): ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Π° Π΄Ρ€ΡƒΠ³ΠΈΠΌΠΈ способами Π±ΡƒΠ΄Π΅Ρ‚ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½Π° Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² случаС совпадСния с Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ΠΎΠΌ.\n\n&9-&r Π Π°Π·Ρ€Π΅ΡˆΠΈΡ‚ΡŒ Π±Π΅Π· Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°: Π»ΡŽΠ±Ρ‹Π΅ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡ΠΈ Ρ€Π°Π·Ρ€Π΅ΡˆΠ΅Π½Ρ‹ Π½Π° этой сторонС ΠΌΠ°ΡˆΠΈΠ½Ρ‹.\n\nУстановка ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ Π±ΠΎΠ»Π΅Π΅ Π½ΠΈΠ·ΠΊΠΎΠ³ΠΎ уровня напряТСния Π½Π° ΠΌΠ°ΡˆΠΈΠ½Ρƒ &9бСзопасна&r.", + "quests.low_voltage.cover_behaviour.task": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ я экспСрт ΠΏΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡΠΌ, Π½Π΅ Π²ΠΎΠ»Π½ΡƒΠΉΡ‚Π΅ΡΡŒ.", + "quests.low_voltage.lv_canner.title": "ΠΠ°ΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒ", + "quests.low_voltage.lv_canner.subtitle": "Π­Ρ‚Π° машина Π½Π΅ Π΄Π΅Π»Π°Π΅Ρ‚ Π½ΠΈΡ‡Π΅Π³ΠΎ интСрСсного", + "quests.low_voltage.lv_canner.desc": "Π‘Π΄Π΅Π»Π°ΠΉ эту ΠΌΠ°ΡˆΠΈΠ½Ρƒ, ΠΊΠΎΠ³Π΄Π° ΠΏΠΎΡ‡ΡƒΠ²ΡΡ‚Π²ΡƒΠ΅ΡˆΡŒ, Ρ‡Ρ‚ΠΎ ΠΏΠΎΡ€Π° Π²Π»ΠΎΠΆΠΈΡ‚ΡŒΡΡ Π² Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ.", + "quests.low_voltage.lv_battery.title": "Π‘Π°Ρ‚Π°Ρ€Π΅ΠΈ!", + "quests.low_voltage.lv_battery.subtitle": "Π‘Π°Ρ‚Π°Ρ€Π΅ΠΈ для хранСния энСргии!", + "quests.low_voltage.lv_battery.desc": "&aΠ‘Π°Ρ‚Π°Ρ€Π΅ΠΈ&r ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π² слот энСргии Π²Π½ΠΈΠ·Ρƒ посСрСдинС интСрфСйса ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΈΠ»ΠΈ Π² &3Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π‘ΡƒΡ„Π΅Ρ€&r.\n\nЕсли Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ находятся Π² вашСм ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Π΅, ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€ΠΈΡΠ΅ΡΡ‚ΡŒ ΠΈ Ρ‰Ρ‘Π»ΠΊΠ½ΡƒΡ‚ΡŒ ПКМ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ½ΠΈ &dзаряТали&r ваши EU-инструмСнты.\n\n&7LV&r, &bMV&r ΠΈ &6HV&r Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ Π±Ρ‹Π²Π°ΡŽΡ‚ Ρ‚Ρ€Ρ‘Ρ… Π²ΠΈΠ΄ΠΎΠ², позволяя Π²Ρ‹Π±Ρ€Π°Ρ‚ΡŒ ΠΎΠΏΡ‚ΠΈΠΌΠ°Π»ΡŒΠ½Ρ‹ΠΉ Π² зависимости ΠΎΡ‚ доступных ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ². &dΠ›ΠΈΡ‚ΠΈΠΉ&r ΠΎΠ±Π»Π°Π΄Π°Π΅Ρ‚ наибольшСй Ρ‘ΠΌΠΊΠΎΡΡ‚ΡŒΡŽ, Π·Π° Π½ΠΈΠΌ ΡΠ»Π΅Π΄ΡƒΡŽΡ‚ &dКадмий&r ΠΈ &dНатрий&r.\n\nНаш совСт: Π½Π°ΠΉΠ΄ΠΈΡ‚Π΅ ΠΆΠΈΠ»Ρƒ соли ΠΈ Π»ΠΈΠ±ΠΎ &aэлСктролизуйтС соль&r для получСния &dнатрия&r, Π»ΠΈΠ±ΠΎ &aΠΏΡ€ΠΎΠΌΠΎΠΉΡ‚Π΅ ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡Ρ‘Π½Π½Ρ‹ΠΉ Π»Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚&r для получСния &dлития&r.\n\nΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &eΠ»ΡŽΠ±ΡƒΡŽ&r &aΠ±Π°Ρ‚Π°Ρ€Π΅ΡŽ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ этот квСст.", + "quests.low_voltage.lv_battery.task": "Π›ΡŽΠ±Π°Ρ LV БатарСя", + "quests.low_voltage.lv_battery_preparation.title": "Π—Π°Π³Π°Ρ‚ΠΎΠ²ΠΊΠΈ Π±Π°Ρ‚Π°Ρ€Π΅Π΅ΠΊ!", + "quests.low_voltage.lv_battery_preparation.subtitle": "Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠΊΠΈ - это ΠΊΡ€ΡƒΡ‚ΠΎ!", + "quests.low_voltage.lv_battery_preparation.desc": "Β«Π‘ΠΎΠ·Π΄Π°ΠΉ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ &aаккумуляторного сплава&r β€” ΠΎΠ½ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для &aкорпусов Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ&r.\n\nΠ‘ΡƒΡ€ΡŒΠΌΠ° содСрТится Π² Ρ€ΡƒΠ΄Π΅ &6Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚&r. Загляни Π² свой &bΠΏΠΎΠ»Π΅Π²ΠΎΠΉ справочник TFC&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ, Π³Π΄Π΅ Π΅Ρ‘ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ.\n\n&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π­Ρ‚ΠΎΡ‚ квСст &lΠ½Π΅&r Π²ΠΊΠ»ΡŽΡ‡Π°Π΅Ρ‚ Π² сСбя созданиС Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‰ΠΈΡ… Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ β€” пролистай Π²Π½ΠΈΠ·, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ ΠΊ Π½ΠΈΠΌ.", + "quests.low_voltage.lv_battery_buffer_4x.title": "Π‘Π°Ρ‚Π΅Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π‘ΡƒΡ„Π΅Ρ€", + "quests.low_voltage.lv_battery_buffer_4x.subtitle": "ΠŸΠΎΠ»Π΅Π·Π½Ρ‹ΠΉ, Ссли Π²Ρ‹ Π½Π΅ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ Π΄Π΅Π»Π°Ρ‚ΡŒ ΠΊΡƒΡ‡Ρƒ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠ²", + "quests.low_voltage.lv_battery_buffer_4x.desc.1": "Π‘Π°ΠΌ ΠΏΠΎ сСбС &3Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€&r Π½ΠΈΡ‡Π΅Π³ΠΎ Π½Π΅ Π΄Π΅Π»Π°Π΅Ρ‚. Однако, Ссли ΠΏΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π²Π½ΡƒΡ‚Ρ€ΡŒ Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ, ΠΎΠ½ Π½Π°Ρ‡Π½Ρ‘Ρ‚ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ &aэнСргСтичСский Π½Π°ΠΊΠΎΠΏΠΈΡ‚Π΅Π»ΡŒ&r\n\n&3Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π‘ΡƒΡ„Π΅Ρ€&r ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅Ρ‚ &9Π΄Π²Π° Π°ΠΌΠΏΠ΅Ρ€Π° Π½Π° Π²Ρ…ΠΎΠ΄&r ΠΈ &9ΠΎΠ΄ΠΈΠ½ Π°ΠΌΠΏΠ΅Ρ€ Π½Π° Π²Ρ‹Ρ…ΠΎΠ΄&r &dΠ½Π° ΠΊΠ°ΠΆΠ΄ΡƒΡŽ Π±Π°Ρ‚Π°Ρ€Π΅ΡŽ&r. Π‘Ρ‚ΠΎΡ€ΠΎΠ½Π° с Ρ‚ΠΎΡ‡ΠΊΠΎΠΉ β€” это Π²Ρ‹Ρ…ΠΎΠ΄, Π° всС ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ стороны ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ ΠΊΠ°ΠΊ Π²Ρ…ΠΎΠ΄Ρ‹.\n\n&6Он Ρ‚Π°ΠΊΠΆΠ΅ заряТаСт &lΠΈ EU, ΠΈ RF-инструмСнты&r, ΠΏΠΎΠΌΠ΅Ρ‰Ρ‘Π½Π½Ρ‹Π΅ Π²Π½ΡƒΡ‚Ρ€ΡŒ.\n\nΠ­Ρ‚ΠΎΡ‚ Π±Π»ΠΎΠΊ обязатСлСн, Ссли Ρƒ тСбя Π½Π΅Ρ‚ бСсконСчного источника энСргии. ΠŸΠΎΠ»ΡƒΡ‡ΠΈ &eлюбой&r &7LV&r Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π‘ΡƒΡ„Π΅Ρ€, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ квСст. Однако Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ с 16 слотами, вСроятно, Π±ΡƒΠ΄Π΅Ρ‚ &cΠΈΠ·Π±Ρ‹Ρ‚ΠΎΡ‡Π½Ρ‹ΠΌ&r Π½Π° Π΄Π°Π½Π½ΠΎΠΌ этапС.", + "quests.low_voltage.lv_battery_buffer_4x.desc.2": "&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r НС соСдиняй свои &cΠΊΠ°Π±Π΅Π»ΠΈ с потСрями&r ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ с &3Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΌ Π‘ΡƒΡ„Π΅Ρ€ΠΎΠΌ&r! Если Π·Π°Π΄ΡƒΠΌΠ°Ρ‚ΡŒΡΡ, Ρ‚Ρ‹ просто Π½Π°Ρ‡Π½Ρ‘ΡˆΡŒ &cΡ‚Π΅Ρ€ΡΡ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ&r Π²ΠΏΡƒΡΡ‚ΡƒΡŽ.\n\n&l&3Π˜Π½Ρ‚Π΅Ρ€Π΅ΡΠ½Ρ‹ΠΉ Π€Π°ΠΊΡ‚:&r&o Если Π±Ρ‹Ρ‚ΡŒ чСстным, Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π‘ΡƒΡ„Π΅Ρ€ Π² GTCE Π±Ρ‹Π»... посрСдствСнным. Π’ GTCEu Π΅Π³ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Π»ΠΈ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½ΠΈΡ‚ΡŒ Ρ„ΡƒΠ½ΠΊΡ†ΠΈΠΎΠ½Π°Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ GT5 ΠΈ GTCE. Π’Π΅ΠΏΠ΅Ρ€ΡŒ энСргия распрСдСляСтся &aΡ€Π°Π²Π½ΠΎΠΌΠ΅Ρ€Π½ΠΎ ΠΌΠ΅ΠΆΠ΄Ρƒ всСми батарСями&r!", + "quests.low_voltage.lv_battery_buffer_4x.task": "Π›ΡŽΠ±ΠΎΠΉ Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π‘ΡƒΡ„Π΅Ρ€", + "quests.low_voltage.lv_amp_explanation.title": "Π§Ρ‚ΠΎ Π·Π° АмпСры Ρ‚Π°ΠΊΠΈΠ΅?", + "quests.low_voltage.lv_amp_explanation.subtitle": "АмпСры ΠΈ Π’Ρ‹: Руководство", + "quests.low_voltage.lv_amp_explanation.desc": "Π­Ρ‚Π° Ρ†Π΅ΠΏΠΎΡ‡ΠΊΠ° квСстов слуТит ΠΊΡ€Π°Ρ‚ΠΊΠΈΠΌ руководством ΠΏΠΎ &9Π°ΠΌΠΏΠ΅Ρ€Π°ΠΆΡƒ Π² GregTech&r. Π§Ρ‚ΠΎ касаСтся ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠΈ &dнапряТСния&r, ΠΌΡ‹ Ρ€Π°Π·Π±Π΅Ρ€Ρ‘ΠΌ ΠΈΡ…, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ достигнСтС уровня &bMV&r.\n\n&6&lΠšΡ€Π°Ρ‚ΠΊΠΎ:&r Для бСзопасности ΠΏΠΎΠ΄Π±ΠΈΡ€Π°ΠΉΡ‚Π΅ ΠΊΠ°Π±Π΅Π»ΠΈ с Ρ‚Π°ΠΊΠΈΠΌ ΠΆΠ΅ ΠΏΡ€Π΅Π΄Π΅Π»ΠΎΠΌ Π°ΠΌΠΏΠ΅Ρ€, ΠΊΠ°ΠΊ ΠΈ максимальноС количСство Π°ΠΌΠΏΠ΅Ρ€, ΠΏΠΎΠ΄Π°Π²Π°Π΅ΠΌΠΎΠ΅ вашими источниками энСргии.\n\nВсё Π΅Ρ‰Ρ‘ Π·Π°ΠΏΡƒΡ‚Π°Π»ΠΈΡΡŒ? ΠžΠ·Π½Π°ΠΊΠΎΠΌΡŒΡ‚Π΅ΡΡŒ с Π³Π»Π°Π²ΠΎΠΉ &cΠ­Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΠΊΠ° GregTech&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΏΠΎΠ»Π½ΠΎΠ΅ объяснСниС элСктричСской систСмы GregTech!", + "quests.low_voltage.lv_ore_prospector.title": "Π­ΠΉ, это Π½Π΅ чСстно!", + "quests.low_voltage.lv_ore_prospector.subtitle": "ΠœΠ΅Ρ‡Ρ‚Π° Π³Π΅ΠΎΠ»ΠΎΠ³ΠΎΠ²", + "quests.low_voltage.lv_ore_prospector.desc": "&lΠ ΡƒΠ΄Π½Ρ‹ΠΉ Π‘ΠΊΠ°Π½Π½Π΅Ρ€&r β€” ΠΏΠΎΡ‚Ρ€ΡΡΠ°ΡŽΡ‰ΠΈΠΉ инструмСнт, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ‚ Ρ‚Π΅Π±Π΅ Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ ΠΆΠΈΠ»Ρ‹ Π·Π° считанныС сСкунды.\n\nΠ•Π³ΠΎ интСрфСйс ΠΈΠ½Ρ‚Π΅Ρ€Π°ΠΊΡ‚ΠΈΠ²Π΅Π½: Ρ‰Ρ‘Π»ΠΊΠ½ΠΈ ПКМ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΎΡΠΊΠ°Π½ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΎΠ±Π»Π°ΡΡ‚ΡŒ Π½Π° Π½Π°Π»ΠΈΡ‡ΠΈΠ΅ Ρ€ΡƒΠ΄ β€” Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚Ρ‹ появятся Π½Π° динамичСской ΠΊΠ°Ρ€Ρ‚Π΅.\n\n&l&3Π˜Π½Ρ‚Π΅Ρ€Π΅ΡΠ½Ρ‹ΠΉ Π€Π°ΠΊΡ‚:&r&o Π’ НАШИ Π²Ρ€Π΅ΠΌΠ΅Π½Π° пСрСносной Ρ€Π°Π·Π²Π΅Π΄ΠΎΡ‡Π½Ρ‹ΠΉ сканнСр Π±Ρ‹Π» доступСн Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π° &dLuV&f. БСйчас ΠΌΠΎΠ»ΠΎΠ΄Ρ‘ΠΆΠΈ всё достаётся слишком Π»Π΅Π³ΠΊΠΎ.", + "quests.low_voltage.lv_sprayer.title": "Π‘Π°Π»Π»ΠΎΠ½Ρ‡ΠΈΠΊ с краской", + "quests.low_voltage.lv_sprayer.subtitle": "Настало врСмя для тэгов Π²ΠΎΠΉΠ½ Π½Π° сСрвСрС", + "quests.low_voltage.lv_sprayer.desc": "К соТалСнию, это всСго лишь &lпустой&r Π±Π°Π»Π»ΠΎΠ½Ρ‡ΠΈΠΊ с краской β€” ΠΏΠ΅Ρ€Π΅Π΄ использованиСм Π΅Π³ΠΎ Π½ΡƒΠΆΠ½ΠΎ Π½Π°ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ &aΠΆΠΈΠ΄ΠΊΠΈΠΌ краситСлСм&r.\n\n&aΠ‘Π°Π»Π»ΠΎΠ½Ρ‡ΠΈΠΊΠΈ&r Π½Π΅ ΠΎΠΊΠ°Π·Ρ‹Π²Π°ΡŽΡ‚ Π½ΠΈΠΊΠ°ΠΊΠΎΠ³ΠΎ влияния Π½Π° Ρ€Π°Π±ΠΎΡ‚Ρƒ машин, Π½ΠΎ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ вСсьма &bΠΏΠΎΠ»Π΅Π·Π½Ρ‹ ΠΈ эстСтичны&r!\n\nΠŸΡ€Π°ΠΊΡ‚ΠΈΡ‡Π΅ΡΠΊΠΈ любой Π±Π»ΠΎΠΊ ΠΈΠ· GregTech (ΠΌΠ°ΡˆΠΈΠ½Ρ‹, Ρ‚Ρ€ΡƒΠ±Ρ‹, ΠΊΠ°Π±Π΅Π»ΠΈ...) ΠΌΠΎΠΆΠ½ΠΎ &6ΠΏΠΎΠΊΡ€Π°ΡΠΈΡ‚ΡŒ&r Π² ΠΎΠ΄ΠΈΠ½ ΠΈΠ· 16 доступных Ρ†Π²Π΅Ρ‚ΠΎΠ². Π­Ρ‚ΠΎ ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для красивых ΡΠΊΡ€ΠΈΠ½ΡˆΠΎΡ‚ΠΎΠ², Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΏΠΎΠΌΠΎΠ³Π°Π΅Ρ‚ ΡƒΠ΄ΠΎΠ±Π½ΠΎ Ρ€Π°Π·Π΄Π΅Π»ΡΡ‚ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ систСмы Π½Π° ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠΏΠ»Π΅Π΅Ρ€Π½ΠΎΠΉ Π±Π°Π·Π΅. ΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, Ρ†Π²Π΅Ρ‚Π° ΠΏΠΎΠΌΠΎΠ³Π°ΡŽΡ‚ ΠΎΡ‚Π»ΠΈΡ‡Π°Ρ‚ΡŒ Ρ‚Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄Ρ‹ ΠΎΡ‚ ΠΊΠ°Π±Π΅Π»Π΅ΠΉ.\n\nЕсли Π΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ &aΠ±Π°Π»Π»ΠΎΠ½Ρ‡ΠΈΠΊ&r Π²ΠΎ Π²Ρ‚ΠΎΡ€ΠΎΠΉ Ρ€ΡƒΠΊΠ΅, ΠΎΠ½ Π±ΡƒΠ΄Π΅Ρ‚ автоматичСски ΠΎΠΊΡ€Π°ΡˆΠΈΠ²Π°Ρ‚ΡŒ всС устанавливаСмыС Π±Π»ΠΎΠΊΠΈ.", + "quests.low_voltage.other_machines.title": "Но ΠΏΠΎΠ΄ΠΎΠΆΠ΄ΠΈΡ‚Π΅, это Π΅Ρ‰Ρ‘ Π½Π΅ всё!", + "quests.low_voltage.other_machines.subtitle": "ΠžΡ‚ Π“Ρ€Π΅Π³Π° Π½Π΅ сбСТишь...", + "quests.low_voltage.other_machines.desc": "ΠœΡ‹ Π½Π΅ Π±ΡƒΠ΄Π΅ΠΌ ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎ Ρ€Π°ΡΡΠΌΠ°Ρ‚Ρ€ΠΈΠ²Π°Ρ‚ΡŒ &dΠΎΠ±Ρ‹Ρ‡Π½ΡƒΡŽ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ Ρ€ΡƒΠ΄Ρ‹&r. ΠŸΠΎΡ‡Π΅ΠΌΡƒ ΠΎΠ±Ρ‹Ρ‡Π½ΡƒΡŽ? НСкоторыС Ρ€ΡƒΠ΄Ρ‹ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½ΠΎΠΉ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ, Π½ΠΎ это Ρ‚Π΅ΠΌΠ° для Π³ΠΎΡ€Π°Π·Π΄ΠΎ Π±ΠΎΠ»Π΅Π΅ ΠΏΠΎΠ·Π΄Π½Π΅Π³ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ. Ой-ΠΎΠΉ, ΠΌΡ‹ ΡƒΠΆΠ΅ ΡƒΠ²Π»Π΅ΠΊΠ»ΠΈΡΡŒ!\n\nНСкоторыС ΠΌΠ°ΡˆΠΈΠ½Ρ‹, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ &bΠ₯имичСская Π²Π°Π½Π½Π°&r ΠΈΠ»ΠΈ &bΠ­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€&r, ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹.\n\nΠ‘ΠΎΠΈΡˆΡŒΡΡ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹? Загляни Π² ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΡƒΡŽ Π³Π»Π°Π²Ρƒ &cOre Processing&r для ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ руководства!", + "quests.low_voltage.other_machines.task": "Π― ΠΎΡ‚ΠΊΠ°Π·Ρ‹Π²Π°ΡŽΡΡŒ ΠΎΡ‚ послСднСй частички своСго рассудка", + "quests.low_voltage.lv_chemical_bath.title": "ΠžΠ±Ρ‹Ρ‡Π½Π°Ρ Π₯имичСская Ванная", + "quests.low_voltage.lv_chemical_bath.subtitle": "Π₯имичСская Π’Π°Π½Π½Π° Π₯ΠΈΠΌΠΈΡ‡ΠΈΡ‚", + "quests.low_voltage.lv_chemical_bath.desc.1": "&lПомимо ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹:&r\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π₯ΠΈΠΌΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π²Π°Π½Π½Ρƒ вмСсто Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² с &6Π±ΠΎΡ‡ΠΊΠΎΠΉ&r, Ρ‡Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ Π±ΡƒΠΌΠ°Π³ΠΈ ΠΈ ΠΊΠΎΠΆΠΈ &6простым&r.\n\nΠ•ΡΡ‚ΡŒ ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅, ΠΌΠ΅Π½Π΅Π΅ Π²Π°ΠΆΠ½Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ ΠΎΠΊΡ€Π°ΡˆΠΈΠ²Π°Π½ΠΈΠ΅ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΈ Π±Π»ΠΎΠΊΠΎΠ² ΠΈΠ»ΠΈ ΠΈΡ… ΠΎΡ‚Π±Π΅Π»ΠΈΠ²Π°Π½ΠΈΠ΅.", + "quests.low_voltage.lv_chemical_bath.desc.2": "&lДля ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹:&r\n\nНСкоторыС &aΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡Ρ‘Π½Π½Ρ‹Π΅ Ρ€ΡƒΠ΄Ρ‹&r ΠΈΠΌΠ΅ΡŽΡ‚ Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½Ρ‹Π΅ ΠΏΡƒΡ‚ΠΈ ΠΏΡ€ΠΈ ΠΏΡ€ΠΎΠΌΡ‹Π²ΠΊΠ΅ Π² &aΠΎΡ‡ΠΈΡ‰Π΅Π½Π½ΡƒΡŽ Ρ€ΡƒΠ΄Ρƒ&r, Π²ΠΊΠ»ΡŽΡ‡Π°ΡŽΡ‰ΠΈΠ΅ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ Π² &aΡ€Ρ‚ΡƒΡ‚Π΅&r ΠΈΠ»ΠΈ &aΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚Π΅ натрия&r. Π­Ρ‚ΠΎΡ‚ этап Π½Π΅ являСтся критичСски Π²Π°ΠΆΠ½Ρ‹ΠΌ, Ссли Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Ρ‹ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π½Π΅ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ особый &6ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹ΠΉ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚&r. Π­Ρ‚ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ ΡΡ‚Π°Ρ‚ΡŒ Π½Π΅ΠΏΠ»ΠΎΡ…ΠΈΠΌ Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½Ρ‹ΠΌ источником сСрСбра (*ΠΏΠΎΠ΄ΠΌΠΈΠ³ΠΈΠ²Π°Π½ΠΈΠ΅).", + "quests.low_voltage.lv_electroliser.title": "ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Π΅Ρ€", + "quests.low_voltage.lv_electroliser.subtitle": "Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Π΅Ρ€ Π³ΠΎΠ²ΠΎΡ€ΠΈΡ‚ - Π‘Π·Π·Π·Π·", + "quests.low_voltage.lv_electroliser.desc.1": "&lПомимо ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹:&r\n\nПодобно Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π΅, эта машина выполняСт мноТСство Ρ„ΡƒΠ½ΠΊΡ†ΠΈΠΉ β€” ΠΏΠ΅Ρ€Π΅Ρ‡ΠΈΡΠ»ΠΈΡ‚ΡŒ ΠΈΡ… всС Π½Π΅Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ! К ΡΡ‡Π°ΡΡ‚ΡŒΡŽ, это ΠΎΠ΄Π½Π° ΠΈΠ· самых Π΄Π΅ΡˆΡ‘Π²Ρ‹Ρ… машин уровня &7LV&r, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΏΡ€ΠΈΠΎΠ±Ρ€Π΅Ρ‚Π°ΠΉΡ‚Π΅ Π΅Ρ‘, ΠΊΠ°ΠΊ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ½Π° станСт Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎΠΉ.", + "quests.low_voltage.lv_electroliser.desc.2": "&lДля ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹:&r\n\nΠ›Π°Π΄Π½ΠΎ, ΠΌΡ‹ соврали. Она &oΠ½Π΅ совсСм&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹ β€” Π½Π° самом Π΄Π΅Π»Π΅ ΠΎΠ½Π° Π½ΡƒΠΆΠ½Π° для &araзлоТСния ΠΏΡ‹Π»ΠΈ&r. Однако Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² элСктролиза доступны Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &bMV&r. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π°Π³Π»ΡΠ½ΡƒΡ‚ΡŒ Π² &eΠΌΠΎΠ»Π΅ΠΊΡƒΠ»ΡΡ€Π½ΡƒΡŽ Ρ„ΠΎΡ€ΠΌΡƒΠ»Ρƒ&r Π² подсказкС ΠΊ ΠΏΡ‹Π»ΠΈ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΏΡ€ΠΈ элСктролизС.", + "quests.low_voltage.lv_electroliser.desc.3": "&cΠ‘ΡƒΠ΄ΡŒΡ‚Π΅ остороТны!&r Из-Π·Π° особСнностСй Ρ€ΡƒΠ΄ прямоС ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²Π»Π΅Π½ΠΈΠ΅ ΠΏΡ‹Π»ΠΈ Π² слитки ΠΌΠΎΠΆΠ΅Ρ‚ Π΄Π°Ρ‚ΡŒ большС ΠΌΠ΅Ρ‚Π°Π»Π»Π°, Ρ‡Π΅ΠΌ элСктролиз. Однако ΠΏΡ€ΠΈ этом Π²Ρ‹ тСряСтС ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹, содСрТащиСся Π² ΠΏΡ‹Π»ΠΈ. Π’Π°ΠΌ прСдстоит Ρ€Π΅ΡˆΠΈΡ‚ΡŒ, Ρ‡Ρ‚ΠΎ Π²Π°ΠΆΠ½Π΅Π΅: максимальная Ρ†Π΅Π½Π½ΠΎΡΡ‚ΡŒ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ ΠΈΠ»ΠΈ количСство ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ².", + "quests.low_voltage.lv_mixer.title": "ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ Π‘ΠΌΠ΅ΡΠΈΡ‚Π΅Π»ΡŒ", + "quests.low_voltage.lv_mixer.subtitle": "Π‘ΠΌΠ΅ΡΠΈΡ‚Π΅Π»ΡŒ ΡΠΌΠ΅ΡˆΠΈΠ²Π°Π΅Ρ‚...", + "quests.low_voltage.lv_mixer.desc": "ИспользованиС БмСситСля &6Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ускорит&r процСсс изготовлСния Ρ†Π²Π΅Ρ‚Π½ΠΎΠΉ стали, особСнно &4красной стали&r для корпусов Π²Π°ΡˆΠΈΡ… машин. Π”Π°ΠΆΠ΅ Ссли сСйчас Π²Π°ΠΌ каТСтся, Ρ‡Ρ‚ΠΎ ΠΎΠ½ Π½Π΅ Π½ΡƒΠΆΠ΅Π½, ΠΏΠΎΠ·ΠΆΠ΅ Π²Ρ‹ ΠΎΠ±Π½Π°Ρ€ΡƒΠΆΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ ΠΎΠ½ &6Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌ&r.", + "quests.low_voltage.lv_mixer.task": "Из Create ΠΈΠ»ΠΈ GregTech", + "quests.low_voltage.soldering_alloy.title": "ΠŸΡ€ΠΈΠΏΠΎΠΉ (Soldering Alloy)", + "quests.low_voltage.soldering_alloy.subtitle": "I got soul but I'm not a solder", + "quests.low_voltage.soldering_alloy.desc": "&aΠŸΡ€ΠΈΠΏΠΎΠΉ&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΊΠ°ΠΊ &9ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ&r ΠΈ Π² Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π΅ случаСв &dвзаимозамСняСм&r Π² Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ… схСм Π² качСствС Π±ΠΎΠ»Π΅Π΅ Π΄Π΅ΡˆΡ‘Π²ΠΎΠΉ Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Ρ‹ ΠΎΠ»ΠΎΠ²Π°&r.\n\nΠ’Ρ‹Π±ΠΎΡ€ Π·Π° Π²Π°ΠΌΠΈ. Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΡΡΠΊΠΎΠ½ΠΎΠΌΠΈΡ‚ΡŒ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹? Π”Π΅Π»Π°ΠΉΡ‚Π΅ ΠΏΡ€ΠΈΠΏΠΎΠΉ. Π₯ΠΎΡ‚ΠΈΡ‚Π΅ Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ мСньшС Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ Π½Π° созданиС ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ²? Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ ΠΎΠ»ΠΎΠ²ΠΎ.", + "quests.low_voltage.gallium_arsenide.title": "АрсСнид Галлия", + "quests.low_voltage.gallium_arsenide.subtitle": "Π― Π½Π΅Π½Π°Π²ΠΈΠΆΡƒ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹, ΠΎΠ½ΠΈ ΠΆΠ΅ ΠΏΠΎΡ‚Ρ€ΡΡΠ°ΡŽΡ‰ΠΈΠ΅", + "quests.low_voltage.gallium_arsenide.desc": "МногиС ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ Π΄Π°Π»Π΅Π΅ нСльзя ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²Π»ΡΡ‚ΡŒ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ ΠΈΠ· Ρ€ΡƒΠ΄! ВмСсто этого ΠΈΡ… ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ ΠΊΠ°ΠΊ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ ΠΏΡ€ΠΈ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ΅ Π΄Ρ€ΡƒΠ³ΠΈΡ… Ρ€ΡƒΠ΄. К Ρ‚Π°ΠΊΠΈΠΌ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Π°ΠΌ &4относятся&r Π³Π°Π»Π»ΠΈΠΉ ΠΈ ΠΌΡ‹ΡˆΡŒΡΠΊ.\n\nДля &dгаллия&r Π΅ΡΡ‚ΡŒ нСсколько способов, ΠΎΡ‚ Ρ…ΡƒΠ΄ΡˆΠ΅Π³ΠΎ ΠΊ Π»ΡƒΡ‡ΡˆΠ΅ΠΌΡƒ (компромисс ΠΌΠ΅ΠΆΠ΄Ρƒ ΡΠ»ΠΎΠΆΠ½ΠΎΡΡ‚ΡŒΡŽ ΠΈ Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚ΠΎΠΌ):\n\n&9- &3Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·ΠΈΡ€ΡƒΠΉΡ‚Π΅ &aсфалСрит&r для Π½ΠΈΠ·ΠΊΠΎΠΉ вСроятности получСния ΠΌΠ΅Π»ΠΊΠΎΠΉ ΠΏΡ‹Π»ΠΈ. Π£Ρ‡Ρ‚ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ ΠΏΡ€ΠΈ этом тСряСтся прямая Ρ†Π΅Π½Π½ΠΎΡΡ‚ΡŒ ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²ΠΊΠΈ.\n\n&9-&r ΠŸΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚Π΅ &aΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡Ρ‘Π½Π½ΡƒΡŽ Π±ΠΎΠΊΡΠΈΡ‚ΠΎΠ²ΡƒΡŽ Ρ€ΡƒΠ΄Ρƒ&r Π² &3Π₯ΠΈΠΌΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π²Π°Π½Π½Ρƒ&r. ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ это Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ &9ΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚Π° натрия&r.\n\n&9-&r ΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ Π΅Π³ΠΎ ΠΊΠ°ΠΊ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹ΠΉ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ &aсфалСрита&r Π² &3Π’Π΅Ρ€ΠΌΠ°Π»ΡŒΠ½ΠΎΠΉ Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π΅&r ΠΈΠ»ΠΈ &3Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π΅&r.\n\nДля &dΠΌΡ‹ΡˆΡŒΡΠΊΠ°&r Π²Π°ΠΌ придётся Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ ΠΈ &3Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ&r &aΡ€Π΅Π°Π»ΡŒΠ³Π°Ρ€&r ΠΈΠ»ΠΈ ΠΏΡ€ΠΎΠΏΡƒΡΠΊΠ°Ρ‚ΡŒ &aΠΊΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚&r Ρ‡Π΅Ρ€Π΅Π· Π­Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π”ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠŸΠ΅Ρ‡ΡŒ.", + "quests.low_voltage.lv_assembler.title": "ΠžΠ±Ρ‹Ρ‡Π½Π°Ρ Бборочная Машина", + "quests.low_voltage.lv_assembler.subtitle": "Π­Ρ‚Π° ΡˆΡ‚ΡƒΠΊΠ° собираСт Π»ΡƒΡ‡ΡˆΠ΅, Ρ‡Π΅ΠΌ Π²Ρ‹ ΠΈ IKEA вмСстС взятыС", + "quests.low_voltage.lv_assembler.desc.1": "Π₯ΠΎΡ‚ΡŒ эта машина ΠΈ Ρ‡Ρ€Π΅Π·Π²Ρ‹Ρ‡Π°ΠΉΠ½ΠΎ &9Π²Π°ΠΆΠ½Π°&r для прогрСссии, ΠΎΠ½Π° &9&lΠ½Π΅ ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ‚ Π²Π°ΠΌ сразу&r, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ &cΠ΄ΠΎΡ€ΠΎΠ³Π°&r. Π‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²Ρ‹ Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ, Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ &cТидкостСй&r. ΠŸΠΎΡΡ‚Ρ€ΠΎΠΉΡ‚Π΅ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ большС инфраструктуры, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ Ρ‚ΠΎΡ€ΠΎΠΏΠΈΡ‚ΡŒΡΡ с этим.\n\nΠ’Π΅ΠΏΠ΅Ρ€ΡŒ, ΠΊΠΎΠ³Π΄Π° это сказано, &3Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ&r ΠΈΠΌΠ΅Π΅Ρ‚ ΠΊΠ»ΡŽΡ‡Π΅Π²ΠΎΠ΅ Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ для ΠΈΠ³Ρ€ΠΎΠ²ΠΎΠ³ΠΎ процСсса. Π‘Ρ‡ΠΈΡ‚Π°ΠΉΡ‚Π΅ Π΅Π³ΠΎ ΡΡ‚ΠΎΠ»ΡŒ ΠΆΠ΅ Π²Π°ΠΆΠ½Ρ‹ΠΌ, ΠΊΠ°ΠΊ вСрстак, Ρ‚ΠΎΠ»ΡŒΠΊΠΎβ€¦ Π½Ρƒ, это ΠΆΠ΅ машина, понятно.", + "quests.low_voltage.lv_assembler.desc.2": "Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρƒ вас Π±ΡƒΠ΄Π΅Ρ‚ достаточно инфраструктуры, Π²Ρ‹ смоТСтС ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ для:\n\n&9-&r &6Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ²Π°ΠΊΡƒΡƒΠΌΠ½Ρ‹Ρ… Π»Π°ΠΌΠΏ&r, Π΄Π°ΡŽΡ‰ΠΈΡ… Π±ΠΎΠ»Π΅Π΅ Ρ‡Π΅ΠΌ Π² Π΄Π²Π° Ρ€Π°Π·Π° большС Π²Ρ‹Ρ…ΠΎΠ΄Π°\n\n&9-&r &6РСзисторов&r, ΠΏΠΎ 4 рСзистора Π·Π° ΠΎΠ΄ΠΈΠ½ ΠΊΡ€Π°Ρ„Ρ‚!\n\n&9-&r &6ΠŸΡ€ΠΎΡ€Π΅Π·ΠΈΠ½Π΅Π½Ρ‹Ρ… ЭлСктросхСм&r, Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ сокращая расход ΠΌΠ΅Π΄ΠΈ\n\nΠ£Ρ€Π°!\n\n&l&3Π˜Π½Ρ‚Π΅Ρ€Π΅ΡΠ½Ρ‹ΠΉ Π€Π°ΠΊΡ‚:&r&o Π’ эпоху GregTech 2 Ρƒ Π‘Π±ΠΎΡ€ΠΎΡ‡Π½ΠΎΠΉ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ Π±Ρ‹Π»ΠΎ всСго Π΄Π²Π° слота, ΠΈ ΠΎΠ½Π° Ρ€Π΅Π°Π»ΡŒΠ½ΠΎ использовалась Ρ‚ΠΎΠ»ΡŒΠΊΠΎ для Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² схСм ΠΈ корпусов.", + "quests.low_voltage.lv_assembler.task": "ΠžΠ±Ρ‹Ρ‡Π½Π°Ρ Бборочная Машина", + "quests.low_voltage.t2_circuit_board.subtitle": "Π”Π°-Π΄Π°, это Π΄Π΅Ρ€Π΅Π²ΠΎ, Π½ΠΎ Π½Π΅ Π½Π΅Π΄ΠΎΠΎΡ†Π΅Π½ΠΈΠ²Π°ΠΉΡ‚Π΅ Π΅Π³ΠΎ.", + "quests.low_voltage.t2_circuit_board.desc.1": "Π­Ρ‚Π° ΠΏΠ»Π°Ρ‚Π° ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для создания &dMV-схСм&r!\n\n&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π£ вас Π΅ΡΡ‚ΡŒ &lΠ΄Π²Π΅&r ΠΎΠΏΡ†ΠΈΠΈ ΠΏΡ€ΠΈ создании ЀСнольной ЭлСктросхСмы. Если Π²Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚Π΅ &aΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ натрия&r ΠΈΠ»ΠΈ &aΡ…Π»ΠΎΡ€ΠΈΠ΄ ΠΆΠ΅Π»Π΅Π·Π° III&r, ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ ΠΏΠ»Π°Ρ‚ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ &6Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‡Π΅Ρ‚Π²Π΅Ρ€Ρ‚ΡŒ сСрСбра&r ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΌ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠΌ.\n\n&l&lОднако&r, учитывая, насколько слоТно Π²Π°ΠΌ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Π΄ΠΎΡΡ‚Π°Ρ‚ΡŒ эти Ρ…ΠΈΠΌΠΈΠΊΠ°Ρ‚Ρ‹ &oпрямо сСйчас&r, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ просто ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ большС сСрСбра, Π΄ΠΎΠ±Ρ‹Π² Π±ΠΎΠ»ΡŒΡˆΡƒΡŽ Ρ‡Π°ΡΡ‚ΡŒ ΠΆΠΈΠ»Ρ‹ ГСлСны…\n\nΠšΠ²Π΅ΡΡ‚ Π½Π° ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅ &aΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚Π° натрия&r находится Π² Π³Π»Π°Π²Π΅ &bMV&r, Ссли Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΏΠΎΡ‡ΠΈΡ‚Π°Ρ‚ΡŒ.", + "quests.low_voltage.t2_circuit_board.desc.2": "&l&3Π˜ΡΡ‚ΠΎΡ€ΠΈΡ:&r&o Π’ GTCEu 1.12.2 эти ΠΏΠ΅Ρ‡Π°Ρ‚Π½Ρ‹Π΅ ΠΏΠ»Π°Ρ‚Ρ‹ Π½Π°Π·Ρ‹Π²Π°Π»ΠΈΡΡŒ &2Π₯ΠΎΡ€ΠΎΡˆΠΈΠ΅ ΠΏΠ»Π°Ρ‚Ρ‹&f. НазваниС Π±Ρ‹Π»ΠΎ Π½Π΅ совсСм подходящим, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΈΡ… &4довольно слоТно&r ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ.", + "quests.low_voltage.lv_diode.title": "Π”ΠΈΠΎΠ΄", + "quests.low_voltage.lv_diode.subtitle": "НС ΠΏΠΎΠ΄Π΄Π°Π²Π°ΠΉΡ‚Π΅ΡΡŒ влиянию EMI!", + "quests.low_voltage.lv_diode.desc": "НС Π΄Π°ΠΉΡ‚Π΅ сСбя ΠΎΠ±ΠΌΠ°Π½ΡƒΡ‚ΡŒ JEI… Π² Π΄Π°Π½Π½Ρ‹ΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚ сущСствуСт Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄ΠΈΠ½ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ для этого ΠŸΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ Π΄ΠΈΠΎΠ΄Π° β€” Ρ€Π΅Ρ†Π΅ΠΏΡ‚ с ΠΆΠΈΠ΄ΠΊΠΈΠΌ стСклом.\n\nΠ”ΠΈΠΎΠ΄Ρ‹ ΠΈΠΌΠ΅ΡŽΡ‚ ΠΏΠ΅Ρ‡Π°Π»ΡŒΠ½ΠΎ &4слоТный Ρ€Π΅Ρ†Π΅ΠΏΡ‚&r, Π½ΠΎ ΠΎΠ½ΠΈ станут дСшСвлС ΠΈ ΡƒΠ΄ΠΎΠ±Π½Π΅Π΅, ΠΊΠ°ΠΊ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &eΠŸΠΎΠ»ΠΈΡΡ‚ΠΈΠ»Π΅Π½&r.\n\nΠ­Ρ‚ΠΎ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ для &dMV-микросхСм&r.", + "quests.low_voltage.1_mv_circuit.title": "ΠŸΠ΅Ρ€Π²Π°Ρ MV ΠœΠΈΠΊΡ€ΠΎΡΡ…Π΅ΠΌΠ°!", + "quests.low_voltage.1_mv_circuit.subtitle": "ΠœΡ‹ Ρ‡Ρ‚ΠΎ, ΡƒΠΆΠ΅ Π² MV?", + "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.2": "&l&3Π˜Π½Π΅Ρ‚Π΅Ρ€Π΅ΡΠ½Ρ‹ΠΉ Π€Π°ΠΊΡ‚:&r&o Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ схСм появлялся ΠΈ исчСзал Π² Ρ€Π°Π·Π½Ρ‹Ρ… вСрсиях GregTech. Π’ GT5 Π΅Π³ΠΎ Π½Π΅ Π±Ρ‹Π»ΠΎ, Π½ΠΎ ΠΎΠ½ Π±Ρ‹Π» ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎ Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ Π² GT5 Unofficial. GTCE Ρ€Π΅ΡˆΠΈΠ» Π½Π΅ ΠΏΠ΅Ρ€Π΅Π½ΠΎΡΠΈΡ‚ΡŒ Π΅Π³ΠΎ, ΠΈ Π±ΠΎΡ€ΡŒΠ±Π° Π·Π° Π΅Π³ΠΎ сущСствованиС ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΠ»Π°ΡΡŒ с Π΅Π³ΠΎ Π²ΠΎΠ·Π²Ρ€Π°Ρ‰Π΅Π½ΠΈΠ΅ΠΌ Π² GTCEu.", + "quests.low_voltage.lv_greenhouse.title": "Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚Π΅ΠΏΠ»ΠΈΡ†Π°", + "quests.low_voltage.lv_greenhouse.subtitle": "Π‘ΠΈΠ»Π° KubeJS", + "quests.low_voltage.lv_greenhouse.desc.1": "ΠœΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Π°Ρ &3Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚Π΅ΠΏΠ»ΠΈΡ†Π°&r ΠΌΠΎΠΆΠ΅Ρ‚ ΡΠ»ΡƒΠΆΠΈΡ‚ΡŒ вашим источником &aΠ±Ρ€Ρ‘Π²Π΅Π½&r ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… растСний, Ссли Π²Ρ‹ ΠΏΡ€Π΅Π΄ΠΏΠΎΡ‡ΠΈΡ‚Π°Π΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ GregTech, Π° Π½Π΅ ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹ Create. Π£ Π½Π΅Ρ‘ Ρ‚Π°ΠΊΠΆΠ΅ Π΅ΡΡ‚ΡŒ ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Π°Ρ ΠΎΡΠΎΠ±Π΅Π½Π½ΠΎΡΡ‚ΡŒ β€” Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ Π²Ρ‹Ρ€Π°Ρ‰ΠΈΠ²Π°Ρ‚ΡŒ большС Π΄Π΅ΠΊΠΎΡ€Π°Ρ‚ΠΈΠ²Π½Ρ‹Ρ… растСний ΠΈΠ· TFC!\n\nΠ­Ρ‚ΠΎ ΠΎΠ΄Π½Π° ΠΈΠ· Π½Π΅ΠΌΠ½ΠΎΠ³ΠΈΡ… машин, ΠΎΠ±Π»Π°Π΄Π°ΡŽΡ‰ΠΈΡ… &2ΠΈΠ΄Π΅Π°Π»ΡŒΠ½Ρ‹ΠΌ ΠΎΠ²Π΅Ρ€ΠΊΠ»ΠΎΠΊΠΈΠ½Π³ΠΎ&r, Ρ‡Ρ‚ΠΎ ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚, Ρ‡Ρ‚ΠΎ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Π±ΠΎΠ»Π΅Π΅ высокий ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ ΠΏΠΎΠ΄Π°Ρ‡ΠΈ EU ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°Π΅Ρ‚ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ выполнСния Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² Π² 4 Ρ€Π°Π·Π° вмСсто ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Ρ… 2!", + "quests.low_voltage.lv_greenhouse.desc.2": "&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Для Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ², Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‰ΠΈΡ… Π±ΠΎΠ»Π΅Π΅ 32 EU/t, ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΡƒ понадобится Π»ΠΈΠ±ΠΎ ΠΎΠ΄ΠΈΠ½ &bMV&r энСргоприёмник, Π»ΠΈΠ±ΠΎ Π΄Π²Π° &7LV&r энСргоприёмника. ΠœΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ &cΠ½Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚&r 2 Π°ΠΌΠΏΠ΅Ρ€Π° ΠΎΠ΄Π½ΠΎΠ³ΠΎ уровня, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΄ΠΎΡΡ‚ΠΈΡ‡ΡŒ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅Π³ΠΎ уровня напряТСния, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎΠ³ΠΎ для выполнСния Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°.\n\nΠ”Ρ€ΡƒΠ³ΠΈΠΌΠΈ словами, ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€ Π΄ΠΎΠ»ΠΆΠ΅Π½ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ &bMV&r Π² интСрфСйсС, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, ΠΎΠ±ΠΎΠ·Π½Π°Ρ‡Π΅Π½Π½Ρ‹Π΅ ΠΊΠ°ΠΊ &bMV&r Π² EMI, Π΄Π°ΠΆΠ΅ Ссли ΠΎΠ½ способСн ΠΏΠΎΡ‚Ρ€Π΅Π±Π»ΡΡ‚ΡŒ достаточно EU/t ΠΏΡ€ΠΈ ΠΊΠΎΠ½Ρ„ΠΈΠ³ΡƒΡ€Π°Ρ†ΠΈΠΈ энСргоприёмников Π±ΠΎΠ»Π΅Π΅ Π½ΠΈΠ·ΠΊΠΎΠ³ΠΎ уровня.\n\n&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π­Ρ‚Π° структура Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ большоС количСство &7стали&r. Π£Π±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎ Ρƒ вас Π΅ΡΡ‚ΡŒ &3ЭлСктричСская ДомСнная ΠŸΠ΅Ρ‡ΡŒ&r для Π΅Ρ‘ производства.", + "quests.low_voltage.lv_greenhouse.desc.3": "&l&3Π˜Π½Ρ‚Π΅Ρ€Π΅ΡΠ½Ρ‹ΠΉ Π€Π°ΠΊΡ‚:&r&o Π­Ρ‚ΠΎΡ‚ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ ΠΈΠ·Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎ Π±Ρ‹Π» создан для GTCEu Community Pack, Π½ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ доступСн Π² Π΄ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Π°Ρ†ΠΈΠΈ Ρ€Π°Π·Ρ€Π°Π±ΠΎΡ‚Ρ‡ΠΈΠΊΠΎΠ² GTCEu. Он Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΌΠ΅Π΄Π»Π΅Π½Π½Π΅Π΅ стандартного, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ Π±ΠΎΠ»Π΅Π΅ ΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹ΠΌ скоростям роста Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π² Π² TFC, ΠΎΠ΄Π½Π°ΠΊΠΎ Π΄ΠΎ Π²Ρ‹Ρ…ΠΎΠ΄Π° TFG 0.9 Π½Π° Π²Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° ΡƒΡ…ΠΎΠ΄ΠΈΠ» ΠΏΠΎΡ‡Ρ‚ΠΈ час!", + "quests.low_voltage.lv_centrifuge.title": "Базовая Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°", + "quests.low_voltage.lv_centrifuge.subtitle": "Π­Ρ‚ΠΎ ΠΏΡ€ΠΎΡ‚ΠΈΠ²ΠΎΠΏΠΎΠ»ΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ ΠœΠΈΠΊΡΠ΅Ρ€Π°", + "quests.low_voltage.lv_centrifuge.desc.1": "&lПомимо ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Π ΡƒΠ΄Ρ‹:&r\n\nΠ£Ρ…Ρ…, Ρ‡Π΅Π³ΠΎ ΠΎΠ½Π° Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚? Π Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ разлоТСния для раздСлСния Π²ΠΈΠ΄ΠΎΠ² ΠΏΡ‹Π»ΠΈ, раздСлСния Π²ΠΎΠ·Π΄ΡƒΡ…Π°, ΡƒΠΏΠ»Π°Ρ‚Π° Π²Π°ΡˆΠΈΡ… Π½Π°Π»ΠΎΠ³ΠΎΠ² ΠΈ ΠΌΠ½ΠΎΠ³ΠΎΠ΅ Π΄Ρ€ΡƒΠ³ΠΎΠ΅...\n\nВозмоТностям Π½Π΅Ρ‚ ΠΏΡ€ΠΈΠ΄Π΅Π»Π°! Π‘ΠΊΠ°ΠΆΠ΅ΠΌ Ρ‚Π°ΠΊ &cΠ’Π°ΠΌ НУЖНА Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°&r.", + "quests.low_voltage.lv_centrifuge.desc.2": "&lДля ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹:&r\n\nΠ­Ρ‚Π° машина ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Π΅Ρ‚ &aΠ³Ρ€ΡΠ·Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ&r ΠΈΠ»ΠΈ &aΠΎΡ‡ΠΈΡ‰Π΅Π½Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ&r ΠΈ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‰Π°Π΅Ρ‚ ΠΈΡ… Π² Ρ‡ΠΈΡΡ‚ΡƒΡŽ ΠΏΡ‹Π»ΡŒ, Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ создавая нСбольшоС количСство ΠΏΠΎΠ±ΠΎΡ‡Π½ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Π° β€” &6ΠΌΠ΅Π»ΠΊΠΎΠΉ ΠΏΡ‹Π»ΠΈ&r. Π­Ρ‚ΠΎ Π½Π΅ самый эффСктивный способ получСния ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ², Π½ΠΎ Π·Π°Ρ‚ΠΎ это самая Π΄Π΅ΡˆΡ‘Π²Π°Ρ машина для ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹ ΠΈΠ· прСдставлСнных, ΠΊΠ°ΠΊ Π² эксплуатации, Ρ‚Π°ΠΊ ΠΈ Π² установкС Π² Π½Π΅Π±ΠΎΠ»ΡŒΡˆΠΈΡ… ΠΌΠ°ΡΡˆΡ‚Π°Π±Π°Ρ….", + "quests.low_voltage.lv_centrifuge.desc.3": "&l&3Π˜Π½Ρ‚Π΅Ρ€Π΅ΡΠ½Ρ‹ΠΉ Π€Π°ΠΊΡ‚:&r&o Π’ ΠΎΡ€ΠΈΠ³ΠΈΠ½Π°Π»ΡŒΠ½ΠΎΠΌ GTCE это Π±Ρ‹Π»Π°, Π±Π΅Π· сомнСния, самая мощная машина для ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹, ΠΏΠΎΡΠΊΠΎΠ»ΡŒΠΊΡƒ ΠΎΠ½Π° Π±Ρ‹Π»Π° довольно простой Π² использовании ΠΈ Π΄Π°Π²Π°Π»Π° Ρ‚Ρ€ΠΈ ΠΌΠ΅Π»ΠΊΠΈΠ΅ ΠΏΡ‹Π»ΠΈ β€” Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ ΠΏΡ€ΠΎΠΌΠΎΠΉΠΊΠ° Ρ€ΡƒΠ΄Ρ‹ ΠΈΠ»ΠΈ Ρ‚Π΅Ρ€ΠΌΠΎΡ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°. ΠœΡ‹ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ослабили Π΅Ρ‘ Ρ€Π°Π΄ΠΈ разнообразия.", + "quests.low_voltage.lv_centrifuge.task": "", + "quests.low_voltage.lv_glue.title": "Π‘ΠΊΠ»Π΅Π΅Π½Ρ‹", + "quests.low_voltage.lv_glue.subtitle": "ΠŸΠΎΡ…ΠΎΠΆΠ΅ Ρ‡Ρ‚ΠΎ ΠΌΡ‹ Π²Π»ΠΈΠΏΠ»ΠΈ", + "quests.low_voltage.lv_glue.desc": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ &3Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ&r &aΠ»ΠΈΠΏΠΊΡƒΡŽ смолу&r, Ρ‡Ρ‚ΠΎ даст Π²Π°ΠΌ &aΠΊΠ»Π΅ΠΉ&r Π² ΠΆΠΈΠ΄ΠΊΠΎΠΉ Ρ„ΠΎΡ€ΠΌΠ΅.\n\nНачнитС производство клСя Π·Π°Ρ€Π°Π½Π΅Π΅. Он пригодится Π²Π°ΠΌ для создания &6Π±ΠΎΠ»Π΅Π΅ Π΄Π΅ΡˆΡ‘Π²Ρ‹Ρ… рСзисторов&r, Π° Ρ‚Π°ΠΊΠΆΠ΅ &6Π΄Π΅ΡˆΡ‘Π²Ρ‹Ρ… микросхСм&r Π² &3Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊΠ΅&r (ΠΈ Π±ΡƒΠ΄Π΅Ρ‚ особСнно ΠΏΠΎΠ»Π΅Π·Π΅Π½ &oΠ² блиТайшСм Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ&r).\n\n&eΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ &aΠΊΠ»Π΅ΠΉ&r ΠΈΠ»ΠΈ &aΡ…Π²ΠΎΠΉΠ½ΡƒΡŽ смолу&r ΠΈΠ· TFC β€” Π²Ρ‹Π±ΠΈΡ€Π°ΠΉΡ‚Π΅, Ρ‡Ρ‚ΠΎ ΠΏΡ€ΠΎΡ‰Π΅!", + "quests.low_voltage.lv_glue.task": "КлСй", + "quests.low_voltage.lv_cutter.title": "ΠžΠ±Ρ‹Ρ‡Π½Π°Ρ РСзочная машина", + "quests.low_voltage.lv_cutter.subtitle": "РСзочная Машина... Ρ€Π΅ΠΆΠ΅Ρ‚...", + "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": "Он заставит вас Π·Π°Ρ‚Π°ΠΈΡ‚ΡŒ Π΄Ρ‹Ρ…Π°Π½ΠΈΠ΅", + "quests.low_voltage.lv_gas_collector.desc": "Π’ΠΎΠ·Π΄ΡƒΡ…ΠΎΠ·Π°Π±ΠΎΡ€Π½ΠΈΠΊ собираСт Π²ΠΎΠ·Π΄ΡƒΡ…, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π·Π°Ρ‚Π΅ΠΌ ΠΌΠΎΠΆΠ½ΠΎ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ, получая &aкислород&r ΠΈ &aΠ°Π·ΠΎΡ‚&r.\n\n&l&3Π˜Π½Ρ‚Π΅Ρ€Π΅ΡΠ½Ρ‹ΠΉ Π€Π°ΠΊΡ‚:&r&o Π˜Π³Ρ€ΠΎΠΊΠΈ GregTech 5 помнят, ΠΊΠ°ΠΊ ΠΈΠΌ ΠΏΡ€ΠΈΡ…ΠΎΠ΄ΠΈΠ»ΠΎΡΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠšΠΎΠΌΠΏΡ€Π΅ΡΡΠΎΡ€ с ячСйками IC2, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ сТатый воздух… здСсь ΠΆΠ΅ Ρ…ΠΈΠΌΠΈΠΈ с ячСйками большС Π½Π΅Ρ‚.", + "quests.low_voltage.lv_oxygen.title": "Π“Π»ΠΎΡ‚ΠΎΠΊ свСТСго кислорода", + "quests.low_voltage.lv_oxygen.subtitle": "Π’Π°ΠΏΡ‰Π΅Ρ‚ΠΎ, это ДиоксигСн...", + "quests.low_voltage.lv_oxygen.desc.1": "Π’Ρ‹ ΠΌΠΎΠ³Π»ΠΈ Π±Ρ‹ ΠΏΠΎΡ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ &o&eΠ΄Ρ€Π°Π³ΠΎΡ†Π΅Π½Π½Ρ‹Π΅ Π³ΠΎΠ΄Ρ‹ своСй ΠΆΠΈΠ·Π½ΠΈ&r Π² JEI, ищя самый ΠΎΠΏΡ‚ΠΈΠΌΠ°Π»ΡŒΠ½Ρ‹ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ кислорода, учитывая мноТСство способов Π΅Π³ΠΎ получСния. Π Π°Π·Π½Ρ‹Π΅ ΠΌΠΈΠ½Π΅Ρ€Π°Π»Ρ‹ Π±ΡƒΠ΄ΡƒΡ‚ Π΄Π°Π²Π°Ρ‚ΡŒ Π΅Π³ΠΎ ΠΏΡ€ΠΈ элСктролизС.\n\nЕсли Π±Ρ‹ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΊΠ½ΠΈΠ³Π° квСстов содСрТала большС ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ!", + "quests.low_voltage.lv_oxygen.desc.2": "Π‘ΡŽΡ€ΠΏΡ€ΠΈΠ·! По Π½Π°ΡˆΠ΅ΠΌΡƒ мнСнию (!), Π»ΡƒΡ‡ΡˆΠΈΠΉ источник β€” это &aΡ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ Π²ΠΎΠ·Π΄ΡƒΡ…Π°&r послС создания &dΠ’ΠΎΠ·Π΄ΡƒΡ…ΠΎΠ·Π°Π±ΠΎΡ€Π½ΠΈΠΊΠ°&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π²Ρ‹, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π΅Ρ‰Ρ‘ Π½Π΅ смоТСтС ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ. Π­Ρ‚ΠΎΡ‚ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Ρ‚Π°ΠΊΠΆΠ΅ Π΄Π°Ρ‘Ρ‚ &aΠ°Π·ΠΎΡ‚&r, Ρ‡Ρ‚ΠΎ ΡƒΠ΄ΠΎΠ±Π½ΠΎ, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ ускоряСт Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Π² &3элСктричСской Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ&r.\n\nΠ’Ρ‚ΠΎΡ€ΠΎΠΉ ΠΏΠΎ эффСктивности источник ΠΏΠΎ Π½Π°ΡˆΠ΅ΠΌΡƒ мнСнию (!) β€” это &aэлСктролиз диоксида крСмния&r. Диоксид крСмния ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ ΠΈΠ· Ρ€Π°Π·Π½Ρ‹Ρ… источников, Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ стСклянная ΠΏΡ‹Π»ΡŒ ΠΈ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ ΠΊΠ°ΠΌΠ΅Π½Π½Ρ‹Π΅ ΠΏΡ‹Π»ΠΈ. ΠœΡ‹ вСрнёмся ΠΊ &6этому ΠΌΠ΅Ρ‚ΠΎΠ΄Ρƒ ΠΏΠΎΠ·ΠΆΠ΅&r, ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ этот способ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ &6боТСствСнСн&r.", + "quests.low_voltage.lv_oxygen.desc.3": "Π’Ρ€Π΅Ρ‚ΠΈΠΉ ΠΏΠΎ эффСктивности источник ΠΏΠΎ Π½Π°ΡˆΠ΅ΠΌΡƒ мнСнию (!) β€” это &aэлСктролиз Π²ΠΎΠ΄Ρ‹&r. На самом Π΄Π΅Π»Π΅, элСктролиз Π²ΠΎΠ΄Ρ‹ большС ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для &aпроизводства Π²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄Π°&r ΠΈΠ·-Π·Π° высокой энСргСтичСской стоимости. &4НС ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ этот ΠΌΠ΅Ρ‚ΠΎΠ΄ Π² качСствС основного источника кислорода&r, Ρ‚ΠΎΠ»ΡŒΠΊΠΎ для &1Π²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄Π°&r; ΠΌΡ‹ снова ΠΏΠΎΠΌΠΎΠΆΠ΅ΠΌ Π²Π°ΠΌ ΠΏΠΎΠ·ΠΆΠ΅ с Π΅Π³ΠΎ производством.\n\nΠ§Π΅Ρ‚Π²Ρ‘Ρ€Ρ‚Ρ‹ΠΉ ΠΏΠΎ эффСктивности источник ΠΏΠΎ Π½Π°ΡˆΠ΅ΠΌΡƒ мнСнию (!) β€” это &aΠ½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ Π²Ρ‹Π±Ρ€Π°ΡΡ‹Π²Π°Ρ‚ΡŒ&r Π΅Π³ΠΎ! Π›ΡŽΠ±ΠΎΠΉ кислород, ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½Π½Ρ‹ΠΉ ΠΈΠ· любого источника, ΠΈΠΌΠ΅Π΅Ρ‚ Ρ†Π΅Π½Π½ΠΎΡΡ‚ΡŒ ΠΈ Π΄ΠΎΠ»ΠΆΠ΅Π½ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒΡΡ Π² Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Π°Ρ….\n\n&eNote:&r &eΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π”ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ, имСя Π΅Ρ‘ Π² &lлюбом&r Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Π΅ Π² своём ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Π΅. Π’Π°ΠΊΠΆΠ΅ ΠΏΠΎΠ΄ΠΎΠΉΠ΄Ρ‘Ρ‚ Π²Π΅Π΄Ρ€ΠΎ.", + "quests.low_voltage.lv_oxygen.task": "ΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄", + "quests.low_voltage.lv_nitrogen.title": "Азот", + "quests.low_voltage.lv_nitrogen.subtitle": "БустСр вашСй ЭлСктричСской Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ", + "quests.low_voltage.lv_nitrogen.desc": "Пока Ρ‡Ρ‚ΠΎ СдинствСнноС ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠ΅ Π°Π·ΠΎΡ‚Π° β€” ΡƒΡΠΊΠΎΡ€ΠΈΡ‚ΡŒ Ρ€Π°Π±ΠΎΡ‚Ρƒ вашСй ЭлСктричСской Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ &6быстрСС&r, Ρ‡Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Π½Π΅ Ρ‚Π°ΠΊΠΈΠΌ ΡƒΠΆ Π²Π°ΠΆΠ½Ρ‹ΠΌ, Π½ΠΎ учитывая, сколько Π²Ρ‹ Π΅Ρ‘ Π±ΡƒΠ΄Π΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ, это ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½ΠΎ стоит Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ. БыстрСС выполняСмыС Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΠ·Π½Π°Ρ‡Π°ΡŽΡ‚ мСньшСС ΠΏΠΎΡ‚Ρ€Π΅Π±Π»Π΅Π½ΠΈΠ΅ энСргии!", + "quests.low_voltage.lv_nitrogen.task": "Азот", + "quests.low_voltage.lv_arc_furnace.title": "Дуговая ΠŸΠ΅Ρ‡ΡŒ", + "quests.low_voltage.lv_arc_furnace.subtitle": "Дуговая ΠŸΠ΅Ρ‡ΡŒ Π΅Ρ‰Ρ‘ Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ Π±Ρ‹Π»Π° Ρ‚Π°ΠΊ Ρ…ΠΎΡ€ΠΎΡˆΠ°", + "quests.low_voltage.lv_arc_furnace.desc.1": "&3Дуговая ΠΏΠ΅Ρ‡ΡŒ&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ &9кислорода&r для ΠΏΠ»Π°Π²ΠΊΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π΄Ρ€ΡƒΠ³ΠΈΠΌ способом, Ρ‡Π΅ΠΌ ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Π΅ ΠΏΠ΅Ρ‡ΠΈ.\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Ρ‘ для Π±ΠΎΠ»Π΅Π΅ Π»Ρ‘Π³ΠΊΠΎΠ³ΠΎ получСния &aΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°&r, удвоСния количСства &aстСкла&r ΠΈ доступа ΠΊ &aΠΎΡ‚ΠΎΠΆΠΆΡ‘Π½Π½ΠΎΠΉ ΠΌΠ΅Π΄ΠΈ&r для Π±ΠΎΠ»Π΅Π΅ Π΄Π΅ΡˆΡ‘Π²Ρ‹Ρ… элСктронных ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ².\n\nОна Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ ΠΈ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ Π² исходныС ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹.", + "quests.low_voltage.lv_arc_furnace.desc.2": "&l&3Π˜Π½Ρ‚Π΅Ρ€Π΅ΡΠ½Ρ‹ΠΉ Π€Π°ΠΊΡ‚:&r&o Π’ ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰ΠΈΡ… вСрсиях GregTech сущСствовали ΠΊΠ°ΠΊ Дуговая ΠΏΠ΅Ρ‡ΡŒ, Ρ‚Π°ΠΊ ΠΈ &bПлазмСнная дуговая ΠΏΠ΅Ρ‡ΡŒ&f. Π’ Ρ‚Π°ΠΊΠΎΠΌ случаС, ΠΏΠΎΡ‡Π΅ΠΌΡƒ Π±Ρ‹ Π½Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΎΠ΄Π½Ρƒ ΠΌΠ°ΡˆΠΈΠ½Ρƒ для ΠΎΠ±Π΅ΠΈΡ… Ρ„ΡƒΠ½ΠΊΡ†ΠΈΠΉ? ИмСнно Ρ‚Π°ΠΊ ΠΌΡ‹ ΠΈ ΠΏΠΎΠ΄ΡƒΠΌΠ°Π»ΠΈ β€” Π½ΠΎ Π² ΠΈΡ‚ΠΎΠ³Π΅ Ρ€Π΅ΡˆΠΈΠ»ΠΈ ΡƒΠ΄Π°Π»ΠΈΡ‚ΡŒ ΠΎΠ΄ΠΈΠ½ ΠΈΠ· Π΄Π²ΡƒΡ… &bΠΏΠ»Π°Π·ΠΌΠ΅Π½Π½Ρ‹Ρ…&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ². А Π·Π°Ρ‚Π΅ΠΌ ΠΈ Π²Ρ‚ΠΎΡ€ΠΎΠΉ &bΠΏΠ»Π°Π·ΠΌΠ΅Π½Π½Ρ‹ΠΉ&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚.\n\n&o&oΠšΠΎΡ€ΠΎΡ‡Π΅ говоря, &bПлазмСнная дуговая ΠΏΠ΅Ρ‡ΡŒ&f &4исчСзла&f. RIP.", + "quests.low_voltage.lv_extractor.title": "ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ Экстрактор", + "quests.low_voltage.lv_extractor.subtitle": "Экстрактор ΠΈΠ·Π²Π»Π΅ΠΊΠ°Π΅Ρ‚...", + "quests.low_voltage.lv_extractor.desc.1": "Π₯ΠΌ... Ρ€Π°Π·Π²Π΅ ΠΌΡ‹ Ρ‚Π°ΠΊ ΡƒΠΆΠ΅ Π½Π΅ ΡˆΡƒΡ‚ΠΈΠ»ΠΈ?\n\nΠŸΡ€ΠΈΡ‡ΠΈΠ½Π° ΠΏΠΎ ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΡ‹ Π½Π΅ ΠΏΡ€Π΅Π·Π΅Π½Ρ‚ΡƒΠ΅ΠΌ &7LV&r Π²Π΅Ρ€ΡΠΈΡŽ &6ΠŸΠ°Ρ€ΠΎΠ²Ρ‹Ρ…&r машин, ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ ΠΎΠ½ΠΈ &4НЕ&r Π½ΡƒΠΆΠ½Ρ‹. Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π²Π°ΠΌ Π½Π΅ стоит Π²ΠΊΠ»Π°Π΄Ρ‹Π²Π°Ρ‚ΡŒΡΡ Π² ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ ΠΏΠΎΡ‡Ρ‚ΠΈ Π½ΠΈΡ‡Π΅Π³ΠΎ Π½Π΅ Π΄Π°Ρ‘Ρ‚. Π—Π° ΠΈΡΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠ΅ΠΌ &oэтого&r, ΠΏΠΎΡΠΊΠΎΠ»ΡŒΠΊΡƒ ΠΎΠ½ΠΎ прСдставляСт собой Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ шаг Π²ΠΏΠ΅Ρ€Ρ‘Π΄ ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с &6ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ эпохой&r.\n\n&3Π‘Π°Π·ΠΎΠ²Ρ‹ΠΉ экстрактор&r ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅Ρ‚ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ с Тидкостями, Ρ‡Ρ‚ΠΎ позволяСт Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ &aΠΈΠ·Π²Π»Π΅Ρ‡Π΅Π½ΠΈΠ΅ ТидкостСй&r. Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ Π΅Π³ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Ρ€Π°ΡΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ Ρ€Π΅Π·ΠΈΠ½Ρƒ, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ Ρ€Π°Π½Π΅Π΅ Π·Π°Ρ‚Π²Π΅Ρ€Π΄ΠΈΠ»ΠΈ, &dΡ€Π°ΡΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ ΠΏΡ€ΠΈΠΏΠΎΠΉ&r для своих схСм ΠΈ &dΡ€Π°ΡΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ красный сплав&r для &6Π»ΡƒΡ‡ΡˆΠ΅Π³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° Π²Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΠΉ Π»Π°ΠΌΠΏΡ‹&r Π² &3Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊΠ΅&r!", + "quests.low_voltage.lv_extractor.desc.2": "&l&3Lore:&r&o Did you notice this machine doubles as both an Extractor and a Fluid Extractor? The two of them were separate machines in previous versions of GregTech.", + "quests.low_voltage.lv_chemical_reactor.title": "ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ Π₯имичСский Π Π΅Π°ΠΊΡ‚ΠΎΡ€", + "quests.low_voltage.lv_chemical_reactor.subtitle": "Π₯имия для Π΄ΡƒΡ€Π°Ρ‡ΠΊΠΎΠ²", + "quests.low_voltage.lv_chemical_reactor.task": "Жидкая Π Π΅Π·ΠΈΠ½Π°", + "quests.low_voltage.lv_chemical_reactor.desc.1": "&3Π₯имичСский Π Π΅Π°ΠΊΡ‚ΠΎΡ€&r понадобится для &lΠ‘ΠΎΠ»ΡŒΡˆΠΎΠ³ΠΎ ΠšΠΎΠ»ΠΈΡ‡Π΅ΡΡ‚Π²Π°&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ².\n\nΠ”Π°Π²Π°ΠΉΡ‚Π΅ ΠΏΠΎΠΏΡ€ΠΎΠ±ΡƒΠ΅ΠΌ β€” ΠΏΠΎΡ‡Π΅ΠΌΡƒ Π±Ρ‹ Π½Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ваш Π½Π΅Π΄Π°Π²Π½ΠΎ созданный Π₯имичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ Π½ΠΎΠ²Ρ‹ΠΉ, &6ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Ρ€Π΅Π·ΠΈΠ½Ρ‹&r? Π Π΅Π·ΠΈΠ½Π° &dΠ½Π΅ΠΏΡ€ΠΈΠ³ΠΎΠ΄Π½Π°&r для использования Π² Π²ΠΈΠ΄Π΅ Тидкости, поэтому Π²Π°ΠΌ понадобится Π΅Ρ‰Ρ‘ ΠΎΠ΄Π½Π° машина для Π΅Ρ‘ дальнСйшСй ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ.", + "quests.low_voltage.lv_chemical_reactor.desc.2": "НСвозмоТно ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Ρ€Π΅Π·ΠΈΠ½Ρƒ, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π₯имичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€, поэтому Π²ΠΎΡ‚ нСсколько &aΠ΄Ρ€ΡƒΠ³ΠΈΡ… машин&r, ΠΊ ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΌ стоит ΡΡ‚Ρ€Π΅ΠΌΠΈΡ‚ΡŒΡΡ: \n\nA &3ΠžΡ‚Π²Π΅Ρ€Π΄ΠΈΡ‚Π΅Π»ΡŒ&r ΠΏΠΎΠ»Π΅Π·Π΅Π½ для Ρ‚ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ сразу ΠΏΡ€Π΅Π²Ρ€Π°Ρ‰Π°Ρ‚ΡŒ Π²Π°ΡˆΡƒ Ρ€Π΅Π·ΠΈΠ½Ρƒ Π² &aΡ€Π΅Π·ΠΈΠ½ΠΎΠ²Ρ‹Π΅ листы&r. Они Π²Π°ΠΌ пригодятся Π² дальнСйшСм.\n\nΠ—Π°Ρ‚Π΅ΠΌ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &3Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΈΠΌΠ΅Π½ΡΡ‚ΡŒ Ρ€Π°ΡΠΏΠ»Π°Π²Π»Π΅Π½Π½ΡƒΡŽ Ρ€Π΅Π·ΠΈΠ½Ρƒ для создания &aΠΊΠ°Π±Π΅Π»Π΅ΠΉ&r. Для оловянных ΠΊΠ°Π±Π΅Π»Π΅ΠΉ это Π½Π΅ Ρ‚Π°ΠΊ Π²Π°ΠΆΠ½ΠΎ, Π½ΠΎ Π±ΠΎΠ»Π΅Π΅ качСствСнныС ΠΊΠ°Π±Π΅Π»ΠΈ &eΠ½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ&r Π±ΡƒΠ΄Π΅Ρ‚ ΠΈΠ·Π³ΠΎΡ‚Π°Π²Π»ΠΈΠ²Π°Ρ‚ΡŒ ΠΈΠΌΠ΅Π½Π½ΠΎ Π² Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊΠ΅.\n\n&e&eΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π₯Ρ€Π°Π½ΠΈΡ‚Π΅ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ, имСя Π΅Ρ‘ Π² &lлюбом&r Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Π΅ Π² своём ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Π΅. Π‘ΠΎΡ‡ΠΊΠ° ΠΏΠΎΠ΄ΠΎΠΉΠ΄Ρ‘Ρ‚ идСально.", + "quests.low_voltage.lv_fluid_solidifier.title": "ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ Жидкостный ΠžΡ‚Π²Π΅Ρ€Π΄ΠΈΡ‚Π΅Π»ΡŒ", + "quests.low_voltage.lv_fluid_solidifier.subtitle": "Жидкостный ΠžΡ‚Π²Π΅Ρ€Π΄ΠΈΡ‚Π΅Π»ΡŒ ΠΎΡ‚Π²Π΅Ρ€ΠΆΠ΄Π°Π΅Ρ‚...", + "quests.low_voltage.lv_fluid_solidifier.desc": "ΠŸΠΎΡΡ‚Π°Π²ΡŒΡ‚Π΅ эту ΠΌΠ°ΡˆΠΈΠ½Ρƒ рядом с вашим &3Π₯имичСским Π Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΎΠΌ&r Ρ‡Ρ‚ΠΎΠ±Ρ‹ автоматичСски ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Ρ€Π΅Π·ΠΈΠ½Ρƒ Π² &aΠ Π΅Π·ΠΈΠ½ΠΎΠ²Ρ‹Π΅ ΠŸΠ»Π°ΡΡ‚ΠΈΠ½Ρ‹&r.\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ автоматичСский Π²Ρ‹Π²ΠΎΠ΄ ΠΈΠ· вашСго химичСского Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°, Ссли &dΠ³Π°Π΅Ρ‡Π½Ρ‹ΠΌ ΠΊΠ»ΡŽΡ‡ΠΎΠΌ&r ΠΊΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ΠΏΠΎ Π±ΠΎΠΊΠΎΠ²ΠΎΠΉ сторонС &3Π₯имичСского Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r ΠΈ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅ &9автоматичСский Π²Ρ‹Π²ΠΎΠ΄ ТидкостСй&r.\n\nΠ‘ΡƒΠ΄Π΅Ρ‚ Π΅Ρ‰Ρ‘ большС ТидкостСй для прСвращСния Π² Ρ‚Π²Ρ‘Ρ€Π΄ΠΎΠ΅ состояниС, поэтому Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ свой &3Жидкострый ΠžΡ‚Π²Π΅Ρ€Π΄ΠΈΡ‚Π΅Π»ΡŒ&r, ΠΊΠΎΠ³Π΄Π° Π½Π΅ создаётС Ρ€Π΅Π·ΠΈΠ½Ρƒ β€” Π»ΠΈΠ±ΠΎ сдСлайтС Π²Ρ‚ΠΎΡ€ΠΎΠΉ!", + "quests.low_voltage.mold_rotor.title": "Комбо!", + "quests.low_voltage.mold_rotor.subtitle": "ΠŸΠΎΡ€Π° ΠΏΠΎΠ»ΠΎΠΆΠΈΡ‚ΡŒ ΠΊΠΎΠ½Π΅Ρ† мучСниям Ρ€ΡƒΡ‡Π½ΠΎΠ³ΠΎ создания Ρ€ΠΎΡ‚ΠΎΡ€ΠΎΠ²!", + "quests.low_voltage.mold_rotor.desc": "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ ΠΎΠ±Π΅ ваши Π½ΠΎΠ²Ρ‹Π΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠ΅Ρ€Π΅Π±ΠΎΡ‚Π°Ρ‚ΡŒ ΠΌΠ΅Ρ‚Π°Π»Π» Π² ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ, ΠΈ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π΅Ρ‘ Π² Π ΠΎΡ‚ΠΎΡ€! Π­Ρ‚Π° комбинация ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Π½Π°ΠΌΠ½ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΡ‰Π΅ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Π ΠΎΡ‚ΠΎΡ€Ρ‹ - &6Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ слитка Π·Π° Π ΠΎΡ‚ΠΎΡ€&r.\n\nΠ’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΎΠ΄Π΅Π»Π°Ρ‚ΡŒ Ρ‚ΠΎ ΠΆΠ΅ самоС с &6ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½ΡΠΌΠΈ&r ΠΈ &6ΠΌΠ°Π»Ρ‹ΠΌΠΈ ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½ΡΠΌΠΈ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π·Π°Ρ‚Π΅ΠΌ Π±ΡƒΠ΄ΡƒΡ‚ Π·Π°ΠΌΠ΅Π½Π΅Π½Ρ‹, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ создадитС &3MV ЭкструдСр&r.\n\n&9Π—Π°ΠΌΠ΅Ρ‚ΠΊΠ°:&r НСкоторыС ΠΌΠ΅Ρ‚Π°Π»Π»Ρ‹ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ Π±ΠΎΠ»Π΅Π΅ высокого напряТСния, Ρ‡Π΅ΠΌ &7LV&r, для извлСчСния ТидкостСй, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ слСдитС Π·Π° ΡƒΡ€ΠΎΠ²Π½Π΅ΠΌ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° Π² EMI.", + "quests.low_voltage.mold_plate.title": "ΠžΡ‚Π»ΠΈΠ²Π½Ρ‹Π΅ Π€ΠΎΡ€ΠΌΡ‹ ΠΈ Π Π΅Π·ΠΈΠ½ΠΎΠ²Ρ‹Π΅ ΠŸΠ»Π°ΡΡ‚ΠΈΠ½Ρ‹", + "quests.low_voltage.mold_plate.subtitle": "Π•Ρ‰Ρ‘ Π±ΠΎΠ»Π΅Π΅ дСшСвая Ρ€Π΅Π·ΠΈΠ½Π°", + "quests.low_voltage.mold_plate.desc": "Π₯Π²Π°Ρ‚ΠΈΡ‚ Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ вашС врСмя Π½Π° &6ΠŸΠ΅Ρ‡ΡŒ для Π‘ΠΏΠ»Π°Π²ΠΎΠ²&r. Π’Π°ΠΌ понадобится ΠΌΠ½ΠΎΠ³ΠΎ &6Π Π΅Π·ΠΈΠ½ΠΎΠ²Ρ‹Ρ… ΠŸΠ»Π°ΡΡ‚ΠΈΠ½&r, Π° ΠΏΠΎΠ·ΠΆΠ΅ Π²Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ Π±ΡƒΠ΄Π΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ… для Π΄Ρ€ΡƒΠ³ΠΈΡ… Π²ΠΈΠ΄ΠΎΠ² пластика.\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠ΄ΡƒΠΌΠ°Π΅Ρ‚Π΅ Ρ‡Ρ‚ΠΎ смоТСтС ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ЭкструдСр для производства Π Π΅Π·ΠΈΠ½ΠΎΠ²Ρ‹Ρ… ΠŸΠ»Π°ΡΡ‚ΠΈΠ½, ΠΎΠ΄Π½Π°ΠΊΠΎ &6Жидкостный ΠžΡ‚Π²Π΅Ρ€Π΄ΠΈΡ‚Π΅Π»ΡŒ&r ΠΌΠΎΠΆΠ΅Ρ‚ Π΅Ρ‰Ρ‘ ΠΌΠ½ΠΎΠ³ΠΎ Ρ‡Π΅Π³ΠΎ, ΠΏΠΎΠΊΠ° ЭкструдСр бСсполСзСн Π΄ΠΎ Π΅Π³ΠΎ &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\nLuckily, К ΡΡ‡Π°ΡΡ‚ΡŒΡŽ, этот ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ шаг Π½Π° Ρ‚Π°ΠΊ ΡƒΠΆ ΠΈ слоТСн: обычная &7LV ΠŸΠ΅Ρ‡ΡŒ для Π‘ΠΏΠ»Π°Π²ΠΎΠ²&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ΠžΠ±ΡƒΡ‡Π΅Π½ΠΈΠ΅ ΠΏΠΎ ΠšΠ°Ρ‚ΡƒΡˆΠΊΠ°ΠΌ Π²ΠΎ Π²ΠΊΠ»Π°Π΄ΠΊΠ΅ &lGregTech Energy&r&6 - заглянитС Ρ‚ΡƒΠ΄Π° Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π³Π°Ρ‚ΡŒ большС!&r", + "quests.low_voltage.lv_ebf.title": "ЭлСктричСская ДомСнная ΠŸΠ΅Ρ‡ΡŒ", + "quests.low_voltage.lv_ebf.subtitle": "Одна ΠΈΠ· ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹Ρ… машин Π² GregTech. ΠœΡ‹ любим всё с Ρ€Π°Π·ΠΌΠ°Ρ…ΠΎΠΌ.", + "quests.low_voltage.lv_ebf.desc.1": "Π­Ρ‚ΠΎΡ‚ квСст ΠΎΠ±ΡŠΡΡΠ½ΡΠ΅Ρ‚ ΠΊΠ»ΡŽΡ‡Π΅Π²ΡƒΡŽ ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΡƒ &3ЭлСктричСской Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ&r, ΠΏΠΎΠΊΠ° квСст Π½Π°Π΄ Π½ΠΈΠΌ Ρ€Π°Π·ΡŠΡΡΠ½ΡΠ΅Ρ‚ ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠΈ ΠœΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹Ρ… частСй, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²Π°ΠΌ Ρ‚ΠΎΠΆΠ΅ понадобятся. ΠΠ°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ Π²Π°ΠΌ ΠΈΠ·ΡƒΡ‡ΠΈΡ‚ΡŒ Π΅Π³ΠΎ Ρ‚ΠΎΠΆΠ΅.\n\nΠ’Π°ΠΊ Π²ΠΎΡ‚, &3ЭлСктричСская ДомСнная ΠŸΠ΅Ρ‡ΡŒ&r ваша &eпСрвая элСтричСская многоблочная струтура&r! ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»ΡΠ΅ΠΌ. Она ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ² ΠΏΡ€ΠΈ высоких Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π°Ρ….\n\nΠ’Π°ΠΌ придётся ΠΏΠΎΠ·Π½Π°ΠΊΠΎΠΌΠΈΡ‚ΡŒΡΡ с Π½Π΅ΠΉ ΠΏΠΎΠ±Π»ΠΈΠΆΠ΅ для получСния &aАлюминия&r ΠΈ прогрСссии Π² &d&b Π­ΠΏΠΎΡ…Ρƒ MV&r. Π’Π°ΠΊ ΠΆΠ΅ ΠΎΠ½Π° создаСт &7Π‘Ρ‚Π°Π»ΡŒ&r быстрСС Ρ‡Π΅ΠΌ &6ДомСнная ΠŸΠ΅Ρ‡ΡŒ&r, Ρ‡Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚ Ρ‡Ρ‚ΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ снСсти свою ΡΡ‚Π°Ρ€ΡƒΡŽ TFC ΠΊΡƒΠ·Π½ΡŽ, Ссли Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΎ.", + "quests.low_voltage.lv_ebf.desc.2": "Надо Π΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ Π² ΡƒΠΌΠ΅ Ρ‡Ρ‚ΠΎ ЭлСктричСская ДомСнная ΠŸΠ΅Ρ‡ΡŒ ΠΎΡ‡Π΅Π½ΡŒ ΠΏΡ€ΠΎΠΆΠΎΡ€Π»ΠΈΠ²Π°. Π‘Π°ΠΌΡ‹ΠΉ Π΄Π΅ΡˆΠ΅Π²Ρ‹ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ ΠΎΡ‚ вас &9120 EU/t&r! Π­Ρ‚ΠΎ Ρ‡ΡƒΡ‚ΡŒ мСньшС Ρ‡Π΅ΠΌ 4 &7LV&r Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π° ΠΈΠ»ΠΈ ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€Π°.\n\nВСроятно Π²Ρ‹ Ρ€Π΅ΡˆΠΈΡ‚Π΅ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΡƒΡŽ линию элСктропСрСдачи, с ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Ρ‹ΠΌΠΈ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°ΠΌΠΈ Π±Π»ΠΈΠΆΠ΅ ΠΊ ЭлСктричСской Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ ΠΈ Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΌΠΈ Π‘ΡƒΡ„Ρ„Π΅Ρ€Π°ΠΌΠΈ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΅Ρ‘ ΡΠΎΠ΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ. Π’Π°ΠΊΠΆΠ΅ ΠΏΠΎΠΌΠ½ΠΈΡ‚Π΅ ΠΎ ΠΏΠΎΡ‚Π΅Ρ€ΠΈ энСргии Π² Π²Π°ΡˆΠΈΡ… ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π°Ρ…/кабСлях.", + "quests.low_voltage.lv_ebf.desc.3": "Π’Π°ΡˆΠ° ЭлСктричСская ДомСнная ΠŸΠ΅Ρ‡ΡŒ быстро ΠΌΠ΅Ρ€Ρ†Π°Π΅Ρ‚ ΠΈ Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅Ρ‚ достаточно энСргии? Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ Π²Ρ‹ ΡΡ‚ΠΎΠ»ΠΊΠ½ΡƒΠ»ΠΈΡΡŒ с &eΠΏΠΎΡ‚Π΅Ρ€Π΅ΠΉ элСктричСства Π² ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π°Ρ…&r - ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°ΠΉΡ‚Π΅ GregTech Energy chapter Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ большС ΠΎΠ± этой ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠ΅.\n\nΠ£Π±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ Ρ‡Ρ‚ΠΎ ваши Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹ максимально Π±Π»ΠΈΠ·ΠΊΠΎ ΠΊ ЭлСктричСской Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ, ΠΈ Π²Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚Π΅ подходящиС ΠΊΠ°Π±Π΅Π»ΠΈ - ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ 2x ΠžΠ»ΠΎΠ²ΡΠ½Ρ‹Π΅ ΠΊΠ°Π±Π΅Π»ΠΈ, располоТСнныС ΠΊΠ°ΠΊ Π½Π° ΠΊΠ°Ρ€Ρ‚ΠΈΠ½ΠΊΠ΅ свСрху.", + "quests.low_voltage.multiblock_tech.title": "ΠœΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹Π΅ Π’Π΅Ρ…Π½ΠΈΠΊΠΈ", + "quests.low_voltage.multiblock_tech.subtitle": "Π£Ρ…, ΠΌΡ‹ любим ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹Π΅ структуры, Π½Π΅ Ρ‚Π°ΠΊ Π»ΠΈ?", + "quests.low_voltage.multiblock_tech.desc": "Π­Ρ‚ΠΎ &6основа&r Ρ‚ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ потрСбуСтся для вашСй ΠΏΠ΅Ρ€Π²ΠΎΠΉ &bEBF&r, though it is highly customisable. Remember to use &6ЭлСктричСской Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &6U&r Π½Π° ΠΊΠΎΡ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Π΅ ΠΈ Π½Π΅ Π±ΠΎΠΉΡ‚Π΅ΡΡŒ &6Π½Π°ΠΆΠ°Ρ‚ΡŒ Π»Π΅Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ Π½Π° Π±Π»ΠΎΠΊΠΈ стуртуры&r Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ ваши возмоТности.\n\nΠ’Π°ΠΆΠ½ΠΎΠ΅ Π·Π°ΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅, ΠΊΠ°ΠΆΠ΄Π½Ρ‹ΠΉ ЭнСргСтичСский Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ РазъСм ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€ΠΈΠ½ΡΡ‚ΡŒ &a2A&r, Ρ‡Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‡Ρ‚ΠΎ Π½Π° Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &7LV&r ΠΎΠ½ΠΈ ΠΏΠΎΡ‚Ρ€Π΅Π±Π»ΡΡŽΡ‚ Π΄ΠΎ &a64 EU/t&r. Π‘ двумя Ρ‚Π°ΠΊΠΈΠΌΠΈ, ваша &eЭлСктричСская ДомСнная ΠŸΠ΅Ρ‡ΡŒ&r смоТСт ΠΏΠΎΡ‚Ρ€Π΅Π±Π»ΡΡ‚ΡŒ Π΄ΠΎ &a128 EU/t&r.\n\nДля подробностСй ΠΎΠ± этой ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠ΅, ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ΡΡŒ Π² &eGregTech Energy Chapter&r, Ρ‚ΠΎΡ‡Π½Π΅Π΅ Π² Π³Π»Π°Π²Ρƒ &eSpending Energy&r.\n\nΠœΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ содСрТат большоС Ρ€Π°Π·Π½ΠΎΠΎΠ±Ρ€Π°Π·ΠΈΠ΅ интСрСсных ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΏΠΎΠ½Π°Ρ‡Π°Π»Ρƒ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ слоТными, Π½ΠΎ Π½Π΅ ΠΏΠ΅Ρ€Π΅ΠΆΠΈΠ²Π°ΠΉΡ‚Π΅ β€” Π²Π°ΠΌ ΠΏΠΎΠΊΠ° Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ Π½ΠΈΡ‡Π΅Π³ΠΎ особСнного. Π’Ρ‹ ΡƒΠ·Π½Π°Π΅Ρ‚Π΅ большС ΠΏΠΎ ΠΌΠ΅Ρ€Π΅ продвиТСния!", + "quests.low_voltage.multiblock_tech.task.1": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹ΠΉ Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ Π›ΡŽΠΊ", + "quests.low_voltage.multiblock_tech.task.2": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹ΠΉ Π’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ Π›ΡŽΠΊ", + "quests.low_voltage.multiblock_tech.task.3": "Жидкостный Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ Π›ΡŽΠΊ", + "quests.low_voltage.lv_superconductor.title": "LV Π‘Π²Π΅Ρ€Ρ…ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½ΠΈΠΊΠΈ", + "quests.low_voltage.lv_superconductor.subtitle": "Ни ΠΏΠΎΡ‚Π΅Ρ€ΡŒ, Π½ΠΈ Π·Π°ΠΌΡ‹ΠΊΠ°Π½ΠΈΠΉ", + "quests.low_voltage.lv_superconductor.desc.1": "&6Π‘Π²Π΅Ρ€Ρ…ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½ΠΈΠΊΠΈ&r это особыС ΠŸΡ€ΠΎΠ²ΠΎΠ΄Π°, доступныС для ΠΊΠ°ΠΆΠ΄ΠΎΠΉ эпохи элСктричСства. Π£ Π½ΠΈΡ… Π½Π΅Ρ‚ ΠšΠ°Π±Π΅Π»ΡŒΠ½Ρ‹Ρ… Π°Π½Π°Π»Π°Π³ΠΎΠ², ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ ΠΎΠ½ΠΈ ΠΈ Π½Π΅ Π½ΡƒΠΆΠ½Ρ‹, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ΠΈ Π°Π±ΡΠΎΠ»ΡŽΡ‚Π½ΠΎ &6Π½Π΅Ρ‚ ΠΏΠΎΡ‚Π΅Ρ€ΠΈ Π² энСргии&r.\n\nΠ’Π°ΠΊ ΠΆΠ΅ ΠΎΠ½ΠΈ Π½Π΅ нанСсут Π²Π°ΠΌ ΡƒΡ€ΠΎΠ½ ΠΏΡ€ΠΈ касании. Π­Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ ΠΈΡ… Π»ΡƒΡ‡ΡˆΠΈΠΌ Π²Ρ‹Π±ΠΎΡ€ΠΎΠΌ для провСдСния ΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΎΠ², Ρ…ΠΎΡ‚ΡŒ ΠΎΠ½ΠΈ ΠΈ Π΄ΠΎΡ€ΠΎΠΆΠ΅ ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Ρ….\n\nЕсли Π²Ρ‹ Π΅Ρ‰Ρ‘ Π½Π΅ Π²ΠΏΠ΅Ρ‡Π°Ρ‚Π»Π΅Π½Ρ‹, Ρ‚ΠΎ 1x Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ 2 АмпСра. НС ΠΊΡ€ΡƒΡ‚ΠΎ Π»ΠΈ это?\n\nΠžΡ‚Π»ΠΈΡ‡Π½ΠΎ вСрмя Π·Π°ΠΌΠ΅Π½ΠΈΡ‚ΡŒ ваши отстойныС &aΠžΠ»ΠΎΠ²ΡΠ½Ρ‹Π΅ ΠΊΠ°Π±Π΅Π»ΠΈ&r. ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ ΠΈΡ… Π² &3ЭкстракторС&r Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Π΅Ρ€Π½ΡƒΡ‚ΡŒ Олово ΠΈ Π Π΅Π·ΠΈΠ½Ρƒ ΠΏΠΎΡ‚Ρ€Π°Ρ‡Π΅Π½Π½Ρ‹Π΅ Π½Π° ΠΈΡ… созданиС.", + "quests.low_voltage.lv_superconductor.desc.2": "&l&3Π˜Π½Ρ‚Π΅Ρ€Π΅ΡΠ½Ρ‹ΠΉ Ρ„Π°ΠΊΡ‚:&r&o Ни ΠΎΠ΄Π½Π° ΠΈΠ· вСрсий GregTech Π½Π΅ ΠΈΠΌΠ΅Π»Π° свСрхпроводников &7LV&f Π΄ΠΎ появлСния Gregicality ΠΈ GTCEu, ΠΎΠ΄Π½Π°ΠΊΠΎ Π² Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠ°Ρ… Ρƒ ΠΊΠ°Π±Π΅Π»Π΅ΠΉ Π²ΠΎΠΎΠ±Ρ‰Π΅ Π½Π΅ Π±Ρ‹Π»ΠΎ ΠΏΠΎΡ‚Π΅Ρ€ΡŒ энСргии.", + "quests.low_voltage.aluminium_dust.title": "АлюминиСвая ΠŸΡ‹Π»ΡŒ", + "quests.low_voltage.aluminium_dust.subtitle": "ВрСмя для ΠΏΡ€ΠΈΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠΉ", + "quests.low_voltage.aluminium_dust.desc": "БущСствуСт ΠΌΠ½ΠΎΠ³ΠΎ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ элСктризованы Π² алюминий, Π½ΠΎ ΠΌΠ½ΠΎΠ³ΠΈΠ΅ ΠΈΠ· Π½ΠΈΡ… станут доступны Π²Π°ΠΌ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² &bMV&r. Π‘Π°ΠΏΡ„ΠΈΡ€Ρ‹ - это СдинствСнноС ΠΈΡΠΊΠΎΡŽΡ‡Π΅Π½ΠΈΠ΅, с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΌΠ΅Ρ‚ΠΎΠ΄ΠΎΠ² Ρ€ΡƒΠ΄Π½ΠΎΠΉ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ, Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ ΠΏΡ‹Π»ΡŒ алюминия Π² качСствС ΠΏΠΎΠ±ΠΎΡ‡Π½ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Π°. ЗаглянитС Π² JEI для просмотра Π²Π°ΡˆΠΈΡ… ΠΎΠΏΡ†ΠΈΠΉ, ΠΈ ΠΈΠ·ΡƒΡ‡ΠΈΡ‚Π΅ &2Field Guide&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π½Π°Ρ‚ΡŒ Π³Π΄Π΅ ΠΈΡΠΊΠ°Ρ‚ΡŒ Π½ΡƒΠΆΠ½Ρ‹Π΅ Ρ€ΡƒΠ΄Ρ‹.\n\nПослС Ρ‚ΠΎΠ³ΠΎ ΠΊΠ°ΠΊ Ρƒ вас Π±ΡƒΠ΄Π΅Ρ‚ достаточно алюминия, ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Π΅Ρ€ Π² качСствС вашСй ΠΏΠ΅Ρ€Π²ΠΎΠΉ MV ΠΌΠ°ΡˆΠΈΠ½Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ способы получСния алюминия \n\nΠ’Π΅ΠΏΠ΅Ρ€ΡŒ всё Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ - это ЭлСктричСская ДомСнная ΠŸΠ΅Ρ‡ΡŒ! Π’Π°ΠΌ стоило ΠΎΠ±Π·Π°Π²Π΅ΡΡ‚ΠΈΡΡŒ ΠΎΠ΄Π½ΠΎΠΉ, Π² ΠΈΠ½ΠΎΠΌ случаС ΠΏΠΎΡ€Π° ΡƒΠΆΠ΅ Π΅ΠΉ Π·Π°Π½ΡΡ‚ΡŒΡΡ!", + "quests.low_voltage.aluminium_ingot.title": "Π’Π°Ρˆ ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ ΠΠ»ΡŽΠΌΠΈΠ½ΠΈΠ΅Π²Ρ‹ΠΉ Π‘Π»ΠΈΡ‚ΠΎΠΊ", + "quests.low_voltage.aluminium_ingot.subtitle": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ ΠΌΡ‹ Π² MV, Π½Π΅ Ρ‚Π°ΠΊ Π»ΠΈ?", + "quests.low_voltage.aluminium_ingot.desc": "Π₯ΠΌΠΌΠΌ... Π° &bMV&r ΠœΠΈΠΊΡ€ΠΎΡΡ…Π΅ΠΌΠ° Ρƒ вас Π΅ΡΡ‚ΡŒ?\n\n&aАлюминий&r Π³Π»Π°Π²Π½Ρ‹ΠΉ ΠΈΠ³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚ для ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠΎΠ² &bMV&r эпохи. Π“ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ΡΡŒ сильно Π² Π½Ρ‘ΠΌ Π½ΡƒΠΆΠ΄Π°Ρ‚ΡŒΡΡ.\n\nΠŸΡ€ΠΎΡ†Π΅ΡΡ ΠΏΠ»Π°Π²ΠΊΠΈ Алюминия ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ сокращён ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ Π½Π° Ρ‚Ρ€Π΅Ρ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &9Азота&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ΠΌ &9Π’ΠΎΠ·Π΄ΡƒΡ…Π°&r ΠΈΠ· &3Π’ΠΎΠ·Π΄ΡƒΡ…ΠΎΠ·Π°Π±ΠΎΡ€Π½ΠΈΠΊΠ°&r.\n\n&6Π’Π°ΠΊ ΠΆΠ΅ Π²Π°ΠΌ понадобятся ΠΌΠ½ΠΎΠ³ΠΎ MV ΠœΠΈΠΊΡ€ΠΎΡΡ…Π΅ΠΌ для создания MV машин!&r", + "quests.low_voltage.mv_hull.title": "Π’Π°ΡˆΠ° Ρ‚Ρ€Π΅Ρ‚ΡŒΡ ΠΎΠ±ΠΎΠ»ΠΎΡ‡ΠΊΠ° ΠΌΠ°ΡˆΠΈΠ½Ρ‹", + "quests.low_voltage.mv_hull.subtitle": "Пока всё ΠΈΠ΄Ρ‘Ρ‚ Ρ…ΠΎΡ€ΠΎΡˆΠΎ, ΠΎΡΡ‚Π°Π»ΠΎΡΡŒ Π΅Ρ‰Ρ‘ 7!", + "quests.low_voltage.mv_hull.desc1": "Π₯ΠΎΡ€ΠΎΡˆΠ°Ρ Ρ€Π°Π±ΠΎΡ‚Π°, Π’Π΅ΠΏΠ΅Ρ€ΡŒ Ρƒ вас Π΅ΡΡ‚ΡŒ &bMV ΠšΠΎΡ€ΠΏΡƒΡ ΠœΠ°ΡˆΠΈΠ½Ρ‹&r, ваша пСрвая &bMV ΠœΠΈΠΊΡ€ΠΎΡΡ…Π΅ΠΌΠ°&r ΠΈ ваш ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ &6Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ ΠœΠΈΠΊΡ€ΠΎΡΡ…Π΅ΠΌ&r.\n\nΠ­Ρ‚ΠΎ ΠΈ Π΅ΡΡ‚ΡŒ ΡΡƒΡ‚ΡŒ &6GregTech&r. ΠšΠ°ΠΆΠ΄ΡƒΡŽ Π½ΠΎΠ²ΡƒΡŽ эпоху Π²Ρ‹ Π±ΡƒΠ΄Π΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Π½ΠΎΠ²Ρ‹Π΅ &6ΠΌΠ°ΡˆΠΈΠ½Ρ‹&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Π½ΠΎΠ²Ρ‹Π΅ &6ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹&r and &6Ρ…ΠΈΠΌΠΈΠΊΠ°Ρ‚Ρ‹&r. Π’Π°ΠΌ Π±ΡƒΠ΄Π΅Ρ‚ &5Π’Π°Π°Π°ΠΊ ВСсСло&r, ΠΌΡ‹ Π΄Π°ΠΆΠ΅ Π·Π°Π²ΠΈΠ΄ΡƒΠ΅ΠΌ Π²Π°ΠΌ!", + "quests.low_voltage.mv_hull.desc2": "ΠŸΠ΅Ρ€Π΅Π΄ Ρ‚Π΅ΠΌ ΠΊΠ°ΠΊ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ³Π°Ρ‚ΡŒΡΡ дальшС Π² &bMV&r, ΠΏΠΎΠΌΠ½ΠΈΡ‚Π΅ Ρ‡Ρ‚ΠΎ &6TFG&r Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &6Create&r Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°ΠΊΡ€Π΅ΠΏΠΈΡ‚ΡŒ свою инфраструктуру особо Π½Π΅ полагаясь Π½Π° GregTech. ΠΠ»ΡŽΠΌΠΈΠ½ΠΈΠ΅Π²Ρ‹Π΅ Π²Π°Π»Ρ‹ ΠΈ ΡˆΠ΅ΡΡ‚Π΅Ρ€Ρ‘Π½ΠΊΠΈ Π²Ρ‹Π΄Π΅Ρ€ΠΆΠΈΠ²Π°ΡŽΡ‚ Π½Π°Π³Ρ€ΡƒΠ·ΠΊΡƒ Π² 4 Ρ€Π°Π·Π° большС Ρ‡Π΅ΠΌ ΠΈΡ… ΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ ΠΏΡ€Π΅Π΄ΡˆΠ΅ΡΡ‚Π²Π΅Π½Π½ΠΈΠΊΠΈ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ с Π½ΠΈΠΌΠΈ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡƒΡΠΊΠΎΡ€ΠΈΡ‚ΡŒ свои ΠΌΠ°ΡˆΠΈΠ½Ρ‹!", + "quests.low_voltage.aluminium_greate.title": "ΠΠ»ΡŽΠΌΠΈΠ½ΠΈΠ΅Π²Ρ‹ΠΉ Ρ‚ΠΈΡ€ Greate", + "quests.low_voltage.aluminium_greate.subtitle": "Π’Π°ΠΊ ΠΆΠ΅ извСстный ΠΊΠ°ΠΊ Medium Stress(MS)", + "quests.low_voltage.aluminium_greate.desc": "Π‘ послСднСго Π°ΠΏΠ³Ρ€Π΅ΠΉΠ΄Π° ΠΏΡ€ΠΎΡˆΠ»ΠΎ ΡƒΠΆΠ΅ Π½Π΅ΠΌΠ°Π»ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ, Π½ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ Ρƒ тСбя Π΅ΡΡ‚ΡŒ доступ ΠΊ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅ΠΌΡƒ Ρ‚ΠΈΡ€Ρƒ ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½Π΅ΠΉ ΠΈ Π²Π°Π»ΠΎΠ² Greate. Как ΠΈ Ρ€Π°Π½ΡŒΡˆΠ΅, Π°Π»ΡŽΠΌΠΈΠ½ΠΈΠ΅Π²Ρ‹Π΅ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹ ΠΈΠΌΠ΅ΡŽΡ‚ &bΠ² Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ Ρ€Π°Π·Π°&r Π±ΠΎΠ»ΡŒΡˆΡƒΡŽ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½ΡƒΡŽ Π½Π°Π³Ρ€ΡƒΠ·ΠΊΡƒ ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ со ΡΡ‚Π°Π»ΡŒΠ½Ρ‹ΠΌΠΈ.\n\nΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠ°Ρ‚ΡŒ Ρ€Π°Π·Π²ΠΈΠ²Π°Ρ‚ΡŒΡΡ Π² Create послС этого ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° β€” ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ Π½Π΅ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ, ΠΈ ΠΌΡ‹ совСтуСм Ρ‚Π΅Π±Π΅ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ ΠΊ GregTech, Π½ΠΎ этот Π°ΠΏΠ³Ρ€Π΅ΠΉΠ΄ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΌΠΎΡ‡ΡŒ Ρ‚Π΅Π±Π΅ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Β«Ρ€Π°ΡΠΏΡƒΡ‚Π°Ρ‚ΡŒ спагСтти» Π² старых схСмах, Ссли Ρ‚Ρ‹ Π·Π°Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ ΠΈΠΌΠΈ ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ.\n\nΠ’Ρ‹ моТСшь Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ Π΄ΠΎΡΡ‚ΡƒΠΏΠ½ΡƒΡŽ Π½Π°Π³Ρ€ΡƒΠ·ΠΊΡƒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &eΠŸΠ°Ρ€ΠΎΠ²Ρ‹Ρ… Π΄Π²ΠΈΠ³Π°Ρ‚Π΅Π»Π΅ΠΉ&r ΠΈΠ»ΠΈ ΠΏΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΠΎΠ²Π°Ρ‚ΡŒ EU Π² SU Ρ‡Π΅Ρ€Π΅Π· &eΠ­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠΌΠΎΡ‚ΠΎΡ€&r ΠΈΠ· &9Create Additions&r.", + "quests.low_voltage.oil.title": "Нашли Π½Π΅Ρ„Ρ‚ΡŒ Ρ€Π°Π½ΠΎ?", + "quests.low_voltage.oil.subtitle": "Для LV достигаторов", + "quests.low_voltage.oil.desc": "Если Π²ΠΎ врСмя своих ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠΉ Ρ‚Ρ‹ Π½Π°Ρ…ΠΎΠ΄ΠΈΠ» Π·Π°Π»Π΅ΠΆΠΈ нСфтяных пСсков ΠΈΠ»ΠΈ нСфтяныС источники (Π² пустынях), Ρ‚ΠΎ Ρ‚Ρ‹ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ моТСшь Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΏΠΎΠ½Π΅ΠΌΠ½ΠΎΠ³Ρƒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ… ΡƒΠΆΠ΅ Π½Π° &7LV&r.\n\nΠ’Ρ‹ моТСшь Π»ΠΈΠ±ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ ΠΈΡ… Π² ВяТёлоС Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ ΠΈ Π·Π°ΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ ΠΈΠΌ свои ΠΊΠΎΡ‚Π»Ρ‹, Π»ΠΈΠ±ΠΎ, Ρ‡Ρ‚ΠΎ Π΅Ρ‰Ρ‘ Π»ΡƒΡ‡ΡˆΠ΅, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ… для производства нСбольшого количСства &bΠŸΠΎΠ»ΠΈΡΡ‚ΠΈΠ»Π΅Π½Π°&r!\n\nΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎΡΡ‚ΠΈ этого процСсса описаны Π² Π³Π»Π°Π²Π΅ &bMV&r, Π½ΠΎ ΡƒΠΆΠ΅ Π½Π° этом этапС Ρ‚Ρ‹ моТСшь ΠΏΡ€ΠΈΠΌΠ΅Π½ΡΡ‚ΡŒ полиэтилСн для создания Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Π²Π΅Ρ‰Π΅ΠΉ, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ Π±ΠΎΠ»Π΅Π΅ Π΄Π΅ΡˆΡ‘Π²Ρ‹Ρ… ΠžΠ±ΠΎΠ»ΠΎΡ‡Π΅ΠΊ машин ΠΈ Π”ΠΈΠΎΠ΄ΠΎΠ².", + "quests.low_voltage.glowstone.title": "ΠŸΠΎΡΡ‚ΠΎΡΠ½Π½ΠΎΠ΅ освСщСниС", + "quests.low_voltage.glowstone.subtitle": "ΠžΠΊΠΎΠ»ΡŒΠ½Ρ‹ΠΉ способ изобрСтСния Π»Π°ΠΌΠΏΠΎΡ‡Π΅ΠΊ", + "quests.low_voltage.glowstone.desc": "Π˜Ρ‰Π΅ΡˆΡŒ Π΄Π΅ΡˆΡ‘Π²Ρ‹Π΅ ΠΈ постоянныС источники свСта? Π’Π΅ΠΏΠ΅Ρ€ΡŒ, ΠΊΠΎΠ³Π΄Π° Ρƒ тСбя Π΅ΡΡ‚ΡŒ LV-экстрактор (Π° скоро появится ΠΈ LV-Тидкостный ΠΎΡ‚Π²Π΅Ρ€Π΄ΠΈΡ‚Π΅Π»ΡŒ), Ρ‚Ρ‹ моТСшь ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ Π² Π΄Π΅Π»ΠΎ всю Ρ‚Ρƒ &6Π‘Π²Π΅Ρ‚ΠΎΠΊΠ°ΠΌΠ΅Π½Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ&r, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π½Π°ΡˆΡ‘Π» Π² Π‘Π΅Π·Π΄Π½Π΅. Π—Π°ΠΊΠΎΠ½Ρ‡ΠΈΠ»Π°ΡΡŒ? НС Π±Π΅Π΄Π° β€” Π΅Ρ‘ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π² ΠœΠΈΠΊΡΠ΅Ρ€Π΅ ΠΈΠ»ΠΈ ΡΠΌΠ΅ΡˆΠΈΠ²Π°Ρ‚Π΅Π»Π΅.\n\nЗагляни Π² JEI, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ всС Π½ΠΎΠ²Ρ‹Π΅ источники свСта, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Ρ‚Ρ‹ моТСшь ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΈΠ· ΠΆΠΈΠ΄ΠΊΠΎΠ³ΠΎ свСтокамня, Ρ‚Π°ΠΊ ΠΈ ΠΈΠ· Π±Π»ΠΎΠΊΠΎΠ² свСтокамня. Π’ GregTech Ρ‚Π°ΠΊΠΆΠ΅ Π΅ΡΡ‚ΡŒ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹, собираСмыС ΠΈΠ· свСтокамСнной ΠΏΡ‹Π»ΠΈ Π² сборщикС.\n\nΠ’ качСствС бонуса Ρ‚Ρ‹ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΆΠΈΠ΄ΠΊΠΈΠΉ ΡΠ²Π΅Ρ‚ΠΎΠΊΠ°ΠΌΠ΅Π½ΡŒ ΠΊΠ°ΠΊ бСсконСчноС Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ для своих Π»Π°ΠΌΠΏ!", + "quests.medium_voltage": "&bMV&r - Π‘Ρ€Π΅Π΄Π½Π΅Π΅ НапряТСниС", + "quests.medium_voltage.subtitle": "Π˜Π·ΡƒΡ‡ΠΈΡ‚Π΅ Π½Π΅Ρ„Ρ‚ΡΠ½Π½ΡƒΡŽ ΠΎΡ‚Ρ€Π°ΡΠ»ΡŒ, Π° Ρ‚Π°ΠΊ ΠΆΠ΅ ΠΏΡ€ΠΈΠΊΠΎΡΠ½ΠΈΡ‚Π΅ΡΡŒ ΠΊ Π½ΠΎΠ²ΠΎΠΉ элСктронникС!", + "quests.medium_voltage.mv_machine_hull.title": "Π”ΠΎΠ±Ρ€ΠΎ ΠŸΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π² MV!", + "quests.medium_voltage.mv_machine_hull.subtitle": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ Ρ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³ΠΈΠΉ β€” большС Π·Π°ΠΌΠΎΡ€ΠΎΡ‡Π΅ΠΊ", + "quests.medium_voltage.mv_machine_hull.desc.1": "ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ€Π°Π·, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΠΈΡ‚Π΅ Π½Π° Π½ΠΎΠ²Ρ‹ΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ, всё ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Π·Π°ΠΏΡƒΡ‚Π°Π½Π½Ρ‹ΠΌ. Вас ΠΆΠ΄Ρ‘Ρ‚ мноТСство &eΠ½ΠΎΠ²Ρ‹Ρ… машин&r для сборки ΠΈ &eхимичСских вСщСств&r для производства.\n\nКак Π²Ρ‹, вСроятно, ΡƒΠΆΠ΅ Π·Π°ΠΌΠ΅Ρ‚ΠΈΠ»ΠΈ Π² квСстах, ΠΏΠ΅Ρ€Π΅Π΄ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΠΎΠΌ Π½Π° &6HV&r Ρƒ вас Π΅ΡΡ‚ΡŒ &2Ρ‚Ρ€ΠΈ основных Π·Π°Π΄Π°Ρ‡ΠΈ&r. Π”Π°Π²Π°ΠΉΡ‚Π΅ Ρ€Π°Π·Π±Π΅Ρ€Ρ‘ΠΌ ΠΈΡ… ΠΏΠΎ ΠΎΡ‡Π΅Ρ€Π΅Π΄ΠΈ.", + "quests.medium_voltage.mv_machine_hull.desc.2": "Π‘Π½Π°Ρ‡Π°Π»Π° Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ ΠΌΠΎΠ΄Π΅Ρ€Π½ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π²Π°ΡˆΡƒ &dΠ­Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π”ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠŸΠ΅Ρ‡ΡŒ&r, установив Π΄Π²Π° Π½ΠΎΠ²Ρ‹Ρ… &bMV ЭнСргСтичСских люка&r. Π­Ρ‚ΠΎ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Π΅ΠΉ Ρ€Π°Π·ΠΎΠ³Π½Π°Ρ‚ΡŒΡΡ ΠΈ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ &6HV&r-Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹. Π­Ρ‚ΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠΊΡ€Π°ΠΉΠ½Π΅ Π²Π°ΠΆΠ½ΠΎ для производства &eΠΠ΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰Π΅ΠΉ стали&r β€” основного ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Π° для &6HV&r, Π° Ρ‚Π°ΠΊΠΆΠ΅ &eΠšΠ°Π½Ρ‚Π°Π»Π°&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ понадобится для Π°ΠΏΠ³Ρ€Π΅ΠΉΠ΄Π° &dΠšΠ°Ρ‚ΡƒΡˆΠ΅ΠΊ Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ&r.", + "quests.medium_voltage.mv_machine_hull.desc.3": "Вторая Π·Π°Π΄Π°Ρ‡Π° β€” хотя ΠΏΡ€ΠΈ ΠΆΠ΅Π»Π°Π½ΠΈΠΈ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΈ с Π½Π΅Ρ‘ β€” связана с ΡƒΠ³Π»ΡƒΠ±Π»Π΅Π½ΠΈΠ΅ΠΌ Π² Ρ…ΠΈΠΌΠΈΡŽ. Π’Π°Ρˆ ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ пластик, &eΠŸΠΎΠ»ΠΈΡΡ‚ΠΈΠ»Π΅Π½&r, являСтся ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹ΠΌ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠΌ для дальнСйшСго прогрСсса. БущСствуСт Π΄Π²Π° Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹Ρ… ΠΏΡƒΡ‚ΠΈ, ΠΈ квСсты ΠΏΠΎΠΌΠΎΠ³ΡƒΡ‚ Π²Π°ΠΌ с Π²Ρ‹Π±ΠΎΡ€ΠΎΠΌ:\n\n- &eНСфтСхимичСский ΠΏΡƒΡ‚ΡŒ&r: ΠΈΠ·Π²Π»Π΅ΠΊΠ°ΠΉΡ‚Π΅ Π½Π΅Ρ„Ρ‚ΡŒ ΠΈΠ· Π½Π΅Π΄Ρ€ ΠΈΠ»ΠΈ ΠΈΠ· Π±ΠΈΡ‚ΡƒΠΌΠ½Ρ‹Ρ… пСсков. Π­Ρ‚ΠΎΡ‚ ΠΏΡƒΡ‚ΡŒ Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΡ‚ΠΊΡ€ΠΎΠ΅Ρ‚ производство &eΠ”ΠΈΠ·Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r для Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠΈ энСргии.\n\n- &eБиохимичСский ΠΏΡƒΡ‚ΡŒ&r: ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &6ΠŸΠΈΡ€ΠΎΠ»ΠΈΠ·Π½ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ&r ΠΈ дрСвСсину (Create Ρ„Π΅Ρ€ΠΌΠ° Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π² Π±ΡƒΠ΄Π΅Ρ‚ кстати). Π­Ρ‚ΠΎΡ‚ ΠΌΠ΅Ρ‚ΠΎΠ΄ Π΄Π°Ρ‘Ρ‚ большС &eΠ‘Π΅Π½Π·ΠΎΠ»Π°&r ΠΈ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &eΠ“Π°Π·ΠΎΠ²Ρ‹Π΅ Ρ‚ΡƒΡ€Π±ΠΈΠ½Ρ‹&r.\n\nΠ£ ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ ΠΏΡƒΡ‚ΠΈ Π΅ΡΡ‚ΡŒ свои ΠΏΠ»ΡŽΡΡ‹ ΠΈ минусы, Π½ΠΎ Π² ΠΈΡ‚ΠΎΠ³Π΅ Π²Π°ΠΌ всё Ρ€Π°Π²Π½ΠΎ понадобится ΠΎΡΠ²ΠΎΠΈΡ‚ΡŒ ΠΎΠ±Π°.", + "quests.medium_voltage.mv_machine_hull.desc.4": "ПослСдния Π·Π°ΠΏΠ°Ρ€Π° Π½Π° этом этапС β€” ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ &6Π²Ρ‚ΠΎΡ€ΡƒΡŽ HV-схСму&r. Для Π΅Ρ‘ создания трСбуСтся всСго &aΠ΄Π²Π° шага&r, Ρ‡Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΏΡ€ΠΎΡ‰Π΅, Ρ‡Π΅ΠΌ Ρƒ &6ΠΏΠ΅Ρ€Π²ΠΎΠΉ HV-схСмы&r, которая состоит ΠΈΠ· &cΡ‚Ρ€Ρ‘Ρ… шагов&r.\n\nДля этого Π²Π°ΠΌ понадобится &dΠ›Π°Π·Π΅Ρ€Π½Ρ‹ΠΉ Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²Ρ‰ΠΈΠΊ&r, с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΠ·Π³ΠΎΡ‚Π°Π²Π»ΠΈΠ²Π°Ρ‚ΡŒ ΠΏΠ΅Ρ€Π²Ρ‹Π΅ &dΠŸΠ»Π°ΡΡ‚ΠΈΠ½Ρ‹&r. Π‘ ΠΈΡ… ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π²Ρ‹ смоТСтС ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &6HV-схСму&r, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡƒΡŽ для сборки &bMV Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊΠ° схСм&r.\n\nΠ”Π΅Π»Π°Ρ‚ΡŒ это прямо сСйчас Π½Π΅ ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ β€” ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ Ρ€Π°Π·Π²ΠΈΡ‚ΠΈΠ΅ с ΠΏΠ΅Ρ€Π²ΠΎΠΉ HV-схСмой β€” Π½ΠΎ &aСсли Π·Π°ΠΉΠΌΡ‘Ρ‚Π΅ΡΡŒ этим сСйчас, Тизнь станСт Π³ΠΎΡ€Π°Π·Π΄ΠΎ ΠΏΡ€ΠΎΡ‰Π΅ (ΠΈ слащС)&r. ΠŸΠΎΠ²Π΅Ρ€ΡŒΡ‚Π΅ Π½Π° слово.", + "quests.medium_voltage.mv_miner.title": "Π¨Π°Ρ…Ρ‚Ρ‘Ρ€", + "quests.medium_voltage.mv_miner.subtitle": "Шош, Π²Π°ΠΌ Ρ‚Π°ΠΊ скучно ΠΊΠΎΠΏΠ°Ρ‚ΡŒΡΡ ΡΠ°ΠΌΠΎΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ?", + "quests.medium_voltage.mv_miner.desc.1": "Π­Ρ‚Π° Π΄ΠΎΠ±Ρ€ΠΎΠ΄ΡƒΡˆΠ½Π°Ρ Π»Π°Π»ΠΊΠ°&r Π±ΡƒΠ΄Π΅Ρ‚ Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ Ρ€ΡƒΠ΄Ρƒ для вас Π·Π° вас, Ссли ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Π΅Ρ‘ Π½Π°Π΄ ΠΆΠΈΠ»ΠΎΠΉ.\n\nΠ’ Π³Π»ΡƒΠ±ΠΈΠ½Ρƒ ΡˆΠ°Ρ…Ρ‚Ρ‘Ρ€ Π½Π΅ ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½. Радиус Ρ€Π°Π±ΠΎΡ‚Ρ‹ отобраТаСтся Π²ΠΎ Π²ΡΠΏΠ»Ρ‹Π²Π°ΡŽΡ‰Π΅ΠΉ подсказкС.\n\nΠ’Π°Ρ€ΠΈΠ°Π½Ρ‚ &bMV&r ΠΌΠΎΠΆΠ΅Ρ‚ Π½Π΅ ΠΈΠΌΠ΅Ρ‚ΡŒ достаточного радиуса, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΄ΠΎΠ±Ρ‹Ρ‚ΡŒ всю ΠΆΠΈΠ»Ρƒ Ρ†Π΅Π»ΠΈΠΊΠΎΠΌ, Π½ΠΎ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ &6HV&r ΠΈΠΌΠ΅Π΅Ρ‚, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, стоит ΠΏΠΎΠ΄ΠΎΠΆΠ΄Π°Ρ‚ΡŒ. ΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &eлюбой&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ это Π·Π°Π΄Π°Π½ΠΈΠ΅.", + "quests.medium_voltage.mv_miner.desc.2": "Π’Π°ΠΌ потрСбуСтся &9ЭнСргия&r. &aЗаряТСнныС Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ&r ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΠ΄ΠΎΠΉΡ‚ΠΈ, Π½ΠΎ ΠΎΠ½ΠΈ быстро Ρ€Π°Π·Ρ€ΡΠΆΠ°ΡŽΡ‚ΡΡ, Ρ‡Ρ‚ΠΎ Π½Π΅ΠΌΠ½ΠΎΠΆΠΊΠΎ Π½Π΅ΡƒΠ΄ΠΎΠ±Π½ΠΎ.\n\nНаш Π³Π»Π°Π²Π½Ρ‹ΠΉ совСт β€” ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π·Π°ΠΏΠΎΠ»Π½Π΅Π½Π½ΡƒΡŽ &3Π‘ΠΎΡ‡ΠΊΡƒ&r с ΠΊΠ°ΠΊΠΈΠΌ-Π»ΠΈΠ±ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ &7(Ссли Π²Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚Π΅ ΠΏΠ°Ρ€ β€” Π½Π΅ сработаСт!)&r ΠΈ &3Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€&r.\n\nΠŸΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚Π΅ Π‘ΠΎΡ‡ΠΊΡƒ Π½Π°Π΄ Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠΌ ΠΈ Ρ‰Ρ‘Π»ΠΊΠ½ΠΈΡ‚Π΅ ΠΏΠΎ Π½Π΅ΠΉ ПКМ &5Киянкой&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ автоматичСски ΡΠ»ΠΈΠ²Π°Ρ‚ΡŒ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ Π² Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€.", + "quests.medium_voltage.mv_miner.desc.3": "&cАΠ₯ВУНГ!:&r НС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ &dΠΏΡ€ΠΎΠ³Ρ€ΡƒΠΆΠ°Ρ‚ΡŒ Ρ‡Π°Π½ΠΊΠΈ&r всС 9 Ρ‡Π°Π½ΠΊΠΎΠ² Ρ€ΡƒΠ΄Π½ΠΎΠΉ ΠΆΠΈΠ»Ρ‹ &7(ΠΎΡ‚ΠΊΡ€ΠΎΠΉΡ‚Π΅ FTB ΠΊΠ°Ρ€Ρ‚Ρƒ, Π²Ρ‹Π΄Π΅Π»ΠΈΡ‚Π΅ Ρ‡Π°Π½ΠΊΠΈ, удСрТивая Ctrl ΠΈ щёлкая Π›ΠšΠœ, Π·Π°Ρ‚Π΅ΠΌ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅ ΠΏΡ€ΠΈΠ½ΡƒΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΡƒΡŽ Π·Π°Π³Ρ€ΡƒΠ·ΠΊΡƒ, послС ΠΏΡ€ΠΈΠ²Π°Ρ‚Π° этих Ρ‡Π°Π½ΠΊΠΎΠ²)&r.\n\n&9Π‘ΠΎΠ²Π΅Ρ‚:&r Π’ качСствС Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠ³ΠΎ инвСнтаря ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &3ME-Π‘ΡƒΠ½Π΄ΡƒΠΊ&r ΠΈΠ»ΠΈ &3Π―Ρ‰ΠΈΠΊ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠΏΡ€ΠΎΡΡ‚ΠΈΡ‚ΡŒ транспортировку Ρ€ΡƒΠ΄Ρ‹ Π΄ΠΎΠΌΠΎΠΉ. &3ME-Π‘ΡƒΠ½Π΄ΡƒΠΊ&r ΠΌΠΎΠΆΠ½ΠΎ Π·Π°ΠΏΠΈΡ‚Ρ‹Π²Π°Ρ‚ΡŒ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ ΠΎΡ‚ EU, Π½ΠΎ это станСт Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ Π½Π΅ сразу. ΠΈΠ»ΠΈ ΠΎΠ±ΠΌΠΎΡ‚Π°Ρ‚ΡŒ простой Π»Π΅Π½Ρ‚ΠΎΠΉ ящик", + "quests.medium_voltage.mv_miner.task": "Π›ΡŽΠ±ΠΎΠΉ ΡˆΠ°Ρ…Ρ‚Ρ‘Ρ€", + "quests.medium_voltage.mv_component.title": "MV ΠšΠΎΠΌΠΏΠ»Π΅ΠΊΡ‚ΡƒΡŽΡ‰ΠΈΠ΅", + "quests.medium_voltage.mv_component_.subtitle": "НСнавидСшь ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ ΠΈΡ… Π½Π° ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰Π΅ΠΌ ΡƒΡ€ΠΎΠ²Π½Π΅?", + "quests.medium_voltage.mv_component.desc": "Π’ΠΎΡ‚ список ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²Π°ΠΌ понадобятся Π² &bMV&r. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ±Π»Π΅Π³Ρ‡ΠΈΡ‚ΡŒ процСсс, ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ настройтС Π°Π²Ρ‚ΠΎΠΊΡ€Π°Ρ„Ρ‚ ΠΈΠ»ΠΈ &dмассовоС производство&r этих Π΄Π΅Ρ‚Π°Π»Π΅ΠΉ, особСнно &aЭлСктричСских ΠœΠΎΡ‚ΠΎΡ€ΠΎΠ²&r.\n\nΠ—Π½Π°ΠΊΠΎΠΌΡ‹ с &aΠ˜Π·Π»ΡƒΡ‡Π°Ρ‚Π΅Π»Π΅ΠΌ&r? Π˜Π·Π»ΡƒΡ‡Π°Ρ‚Π΅Π»ΡŒ этого уровня Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ &dΠ‘Π΅Π·ΡƒΠΏΡ€Π΅Ρ‡Π½Ρ‹ΠΉ ΠΈΠ·ΡƒΠΌΡ€ΡƒΠ΄&r Π² Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π΅, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π½Π° Π΄Π°Π½Π½Ρ‹ΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &3ΠŸΡ€ΠΎΡΠ΅ΠΈΠ²Π°Ρ‚Π΅Π»Ρ&r.\n\nΠšΠΎΠ½Π²Π΅ΠΉΠ΅Ρ€Ρ‹, ΠŸΠΎΠΌΠΏΡ‹ ΠΈ ΠœΠ°Π½ΠΈΠΏΡƒΠ»ΡΡ‚ΠΎΡ€Ρ‹ ΡΠ²Π»ΡΡŽΡ‚ΡΡ прямыми ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡΠΌΠΈ вСрсий &7LV&r, Ссли Π²Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚Π΅ ΠΈΡ… ΠΊΠ°ΠΊ ΠΊΡ€Ρ‹ΡˆΠΊΠΈ.", + "quests.medium_voltage.electrolyzer.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€", + "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&7И Π½Π°ΠΌ совсСм Π½Π΅ Таль.&r", + "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.subtitle": "БыстрСС, Π²Ρ‹ΡˆΠ΅ ΠΈ сильнСС", + "quests.medium_voltage.mv_chemical_reactor.desc": "Π’Ρ‹ ΡƒΠΆΠ΅ Π·Π½Π°Π΅Ρ‚Π΅ ΠΏΡ€ΠΎ &dΠ₯имичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€&r &7LV Уровня&r β€” Π½ΠΎ Π²ΠΎΡ‚ нСбольшоС Π½Π°ΠΏΠΎΠΌΠΈΠ½Π°Π½ΠΈΠ΅.\n\nНа &bMV&r Π²Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚Π΅ &aΠ½ΠΎΠ²Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹&r ΠΈ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅Ρ‚Π΅ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ &aΡ€Π°Π·Π³ΠΎΠ½ΡΡ‚ΡŒ свои Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ LV&r. Π­Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‡Ρ‚ΠΎ ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ &avΠ΄Π²ΠΎΠ΅ быстрСС&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.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": "ΠŸΡ€ΠΈΠ²Π΅Ρ‚ΡΡ‚Π²ΡƒΠ΅ΠΌ вас Π² Ρ€Π°Π·Π΄Π΅Π»Π΅ &bΠŸΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΡΡ‚Π²ΠΎ энСргии MV&r.\n\nΠ’ этом квСстС ΠΌΡ‹ рассмотрим Ρ€Π°Π·Π½Ρ‹Π΅ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΏΠΎΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ Ρ€Π°Π±ΠΎΡ‚Ρƒ Π²Π°ΡˆΠΈΡ… &bMV ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠΎΠ²&r Π² бСспСрСбойном Ρ€Π΅ΠΆΠΈΠΌΠ΅.\n\nΠœΡ‹ Π½Π΅ Π±ΡƒΠ΄Π΅ΠΌ Π·Π°Ρ‚Ρ€Π°Π³ΠΈΠ²Π°Ρ‚ΡŒ эту Ρ‚Π΅ΠΌΡƒ Π² ΠΊΠ°ΠΆΠ΄ΠΎΠΌ Ρ€Π°Π·Π΄Π΅Π»Π΅, поэтому Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ &aΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Ρ‚ΡŒ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Ρ‹ΠΉ Ρ€Π°Π·Π΄Π΅Π» ΠΎ энСргии GregTech&r для Π±ΠΎΠ»Π΅Π΅ Π³Π»ΡƒΠ±ΠΎΠΊΠΎΠ³ΠΎ понимания всСх процСссов.\n\nА ΠΏΠΎΠΊΠ° Ρƒ вас Π΅ΡΡ‚ΡŒ &aΡ‚Ρ€ΠΈ основных Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π°&r:\n\n&7- &bΠ˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ MV Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€&r для прямого производства &bэнСргии уровня MV&r.\n\n&7- &bΠŸΠΎΠ΄Π½ΡΡ‚ΡŒ ΠΌΠΎΡ‰Π½ΠΎΡΡ‚ΡŒ &7LV&r с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ трансформаторов&r, с коэффициСнтом &e4:1&r ΠΌΠ΅ΠΆΠ΄Ρƒ &7LV&r ΠΈ &bMV&r.\n\n&7- &bΠŸΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΠΎΠ²Ρ‹Π²Π°Ρ‚ΡŒ RF&r ΠΏΡ€ΠΈ ΠΏΠΎΠΌΠΎΡ‰ΠΈ &dΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²ΠΎΠ³ΠΎ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°&r для получСния &bэнСргии MV&r Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ.\n\n", + "quests.medium_voltage.mv_energy.desc.2": "Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ‹ Π±ΠΎΠ»Π΅Π΅ высокого уровня Π±ΡƒΠ΄ΡƒΡ‚ ΠΏΡ€ΠΎΠΏΠΎΡ€Ρ†ΠΈΠΎΠ½Π°Π»ΡŒΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°Ρ‚ΡŒ расход Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° Π² зависимости ΠΎΡ‚ своСй мощности, сохраняя ΠΏΡ€ΠΈ этом ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ Ρ€Π°Π±ΠΎΡ‚Ρ‹ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° ΠΈ ΡƒΠ΄Π΅Π»ΡŒΠ½ΠΎΠ΅ количСство энСргии ΠΎΡ‚ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° Π½Π΅ΠΈΠ·ΠΌΠ΅Π½Π½Ρ‹ΠΌΠΈ. &3Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Π°Ρ ΠŸΠ°Ρ€ΠΎΠ²Π°Ρ Π’ΡƒΡ€Π±ΠΈΠ½Π°&r Π±ΡƒΠ΄Π΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &d5120 mB ΠΏΠ°Ρ€Π°&r Π² сСкунду, Ρ‡Ρ‚ΠΎ эквивалСнтно &d256 mB/t&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 трансформатор ΠΌΠΎΠΆΠ΅Ρ‚ Ρ‚Ρ€Π°Π½ΡΡ„ΠΎΡ€ΠΌΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ 1А <-> 4А, Π° &aВысокотоковыС&r трансформаторы ΠΌΠ΅ΠΆΠ΄Ρƒ 1А <-> 4А, 2А <-> 8А, 4А <-> 16А ΠΈ 16А <-> 64А.\n\nΠ˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &aΠžΡ‚Π²Ρ‘Ρ€Ρ‚ΠΊΡƒ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡Π°Ρ‚ΡŒΡΡ ΠΌΠ΅ΠΆΠ΄Ρƒ Ρ€Π΅ΠΆΠΈΠΌΠ°ΠΌΠΈ ΠΏΠΎΠ²Ρ‹ΡˆΠ΅Π½ΠΈΡ ΠΈ пониТСния напряТСния.\n\nВрансформаторы Π±ΠΎΠ»Π΅Π΅ высокого уровня ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ &9ΠšΠ°Ρ‚ΡƒΡˆΠΊΠΈ&r.", + "quests.medium_voltage.mv_energy.desc.6": "Π˜Ρ‚Π°ΠΊ, ΠΊΠ°ΠΊ Π²Ρ‹ ΡƒΠΆΠ΅ Π·Π½Π°Π΅Ρ‚Π΅ ΠΈΠ· &7LV уровня&r, Ρ‡Ρ‚ΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &dΠŸΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΠΎΠ²Π°Ρ‚Π΅Π»ΡŒ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹, собствСнно, ΠΊΠΎΠ½Π²Π΅Ρ€Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ &cRF&r Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ Π² &bΡΠ½Π΅Ρ€Π³ΠΈΡŽ MV&r.", + "quests.medium_voltage.mv_battery.title": "MV Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π‘ΡƒΡ„Π΅Ρ€", + "quests.medium_voltage.mv_battery.subtitle": "Π­Π½Π΅Ρ€Π³ΠΎΠΌΠ΅Π½Π΅Π΄ΠΆΠΌΠ΅Π½Ρ‚", + "quests.medium_voltage.mv_battery.desc": "Как ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ, ΠΌΡ‹ Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &bΠ‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€&r β€” Π΄Π°ΠΆΠ΅ Ссли Π²Ρ‹ расходуСтС большС &6энСргии&r, Ρ‡Π΅ΠΌ Π³Π΅Π½Π΅Ρ€ΠΈΡ€ΡƒΠ΅Ρ‚Π΅, ΠΎΠ½Π° Π½Π΅ закончится ΠΌΠ³Π½ΠΎΠ²Π΅Π½Π½ΠΎ, ΠΈ Π²Ρ‹ смоТСтС Π²ΠΎΡΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ запас, ΠΏΠΎΠΊΠ° ваши ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹ ΠΏΡ€ΠΎΡΡ‚Π°ΠΈΠ²Π°ΡŽΡ‚.", + "quests.medium_voltage.mv_battery.task": "Π›ΡŽΠ±ΠΎΠΉ MV Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€", + "quests.medium_voltage.mv_batteries.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹Π΅ Π‘Π°Ρ‚Π°Ρ€Π΅ΠΈ", + "quests.medium_voltage.mv_batteries.subtitle": "Бэйба с Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠΊΠΎΠΉ ", + "quests.medium_voltage.mv_batteries.desc": "Π‘Π°Ρ‚Π°Ρ€Π΅ΠΈ &bMV&r ΠΏΠΎΠ΄ΠΎΠΉΠ΄ΡƒΡ‚ Π²Π°ΠΌ, Ссли Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ Π½Π°ΠΊΠ°ΠΏΠ»ΠΈΠ²Π°Ρ‚ΡŒ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ, ΠΊΠ°ΠΊ ΠΈ Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &7LV&r.\n\nΠ‘Ρ‚ΠΎΠΈΠΌΠΎΡΡ‚ΡŒ Π² &aНатрия&r, &aЛития&r ΠΈΠ»ΠΈ &aКадмия&r увСличиваСтся Π΄ΠΎ 8 ΠΊΡƒΡ‡Π΅ΠΊ ΠΏΡ‹Π»ΠΈ, поэтому ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ Ρ‚ΠΎΡ‚ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π», ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Ρƒ вас большС. Π Π°Π·Π½ΠΈΡ†Π° Π² ёмкости, Π² ΠΊΠΎΠ½Ρ†Π΅ ΠΊΠΎΠ½Ρ†ΠΎΠ², Π½Π΅ &7ВАК&r Π²Π΅Π»ΠΈΠΊΠ°!\n\nΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &eΠ»ΡŽΠ±ΡƒΡŽ&r Π±Π°Ρ‚Π°Ρ€Π΅ΡŽ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ Π·Π°Π΄Π°Π½ΠΈΠ΅.", + "quests.medium_voltage.mv_steel_alloy.title": "Π‘Ρ‚Π°Π»ΡŒΠ½Ρ‹Π΅ Π‘ΠΏΠ»Π°Π²Ρ‹", + "quests.medium_voltage.mv_steel_alloy.subtitle": "Π—Π°ΠΊΠ°Π»ΠΈΡ‚Π΅ своС сСрдцС", + "quests.medium_voltage.mv_steel_alloy.desc": "ВанадиСвая ΡΡ‚Π°Π»ΡŒ трСбуСтся Π² Π½Π΅Π±ΠΎΠ»ΡŒΡˆΠΈΡ… количСствах ΠΏΠΎ Ρ…ΠΎΠ΄Ρƒ прогрСссии. Она &6ΠΏΠΎΡ‡Ρ‚ΠΈ Π² Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ Ρ€Π°Π·Π° ΠΏΡ€ΠΎΡ‡Π½Π΅Π΅&r ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠΉ стали, Ссли ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π² инструмСнтах GregTech. Π’Π°Π½Π°Π΄ΠΈΠΉ добываСтся ΠΈΠ· &aΠ’Π°Π½Π°Π΄ΠΈΠ΅Π²ΠΎΠ³ΠΎ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚Π°&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π²Ρ‹ ΠΌΠΎΠ³Π»ΠΈ Π²ΡΡ‚Ρ€Π΅Ρ‚ΠΈΡ‚ΡŒ Π² ΠΆΠΈΠ»Π°Ρ… ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚Π°.\n\nΠ”Ρ€ΡƒΠ³ΠΈΠ΅ ΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ сплавы Π²ΠΊΠ»ΡŽΡ‡Π°ΡŽΡ‚ Бинюю ΡΡ‚Π°Π»ΡŒ, ΠšΡ€Π°ΡΠ½ΡƒΡŽ ΡΡ‚Π°Π»ΡŒ ΠΈ Π§Ρ‘Ρ€Π½ΡƒΡŽ ΡΡ‚Π°Π»ΡŒ!\n\nΠ’ΠΎΠ·ΡŒΠΌΠΈΡ‚Π΅ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Π‘ΠΈΠ½Π΅ΠΉ стали бСсплатно β€” ΠΎΠ½Π° Π²Π΄Π²ΠΎΠ΅ ΠΏΡ€ΠΎΡ‡Π½Π΅Π΅ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠΉ стали.", + "quests.medium_voltage.pyrolyse.title": "ΠŸΠΈΡ€ΠΎΠ»ΠΈΠ·Π½Π°Ρ ΠŸΠ΅Ρ‡ΡŒ", + "quests.medium_voltage.pyrolyse.subtitle": "Π’Π΅Ρ€ΠΌΠ°Π»ΡŒΠ½ΠΎΠ΅ Ρ€Π°Π·Π»ΠΎΠΆΠ΅Π½ΠΈΠ΅", + "quests.medium_voltage.pyrolyse.desc.1": "&3ΠŸΠΈΡ€ΠΎΠ»ΠΈΠ·Π½Π°Ρ ΠΏΠ΅Ρ‡ΡŒ&r β€” это элСктричСский Π°Π½Π°Π»ΠΎΠ³ &3Коксовой ΠΏΠ΅Ρ‡ΠΈ&r. Она ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ &9Кокс&r ΠΈ &9ДрСвСсный ΡƒΠ³ΠΎΠ»ΡŒ&r с ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹ΠΌ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠΌ &9ΠšΡ€Π΅ΠΎΠ·ΠΎΡ‚ΠΎΠΌ&r, ΠΊΠ°ΠΊ ΠΈ Ρ€Π°Π½ΡŒΡˆΠ΅, Π½ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ Π΄Π°Ρ‘Ρ‚ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ &6ΠžΡ€Π³Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠ΅ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹&r, самым ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌ ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… являСтся &aДрСвСсная смола&r.\n\nΠ”Ρ€ΡƒΠ³ΠΈΠΌ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠΌ являСтся &aБиомасса&r, которая Π½Π° Π΄Π°Π½Π½Ρ‹ΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚ Π±ΠΎΠ»Π΅Π΅ Π²Π°ΠΆΠ½Π° для вашСго прогрСсса.", + "quests.medium_voltage.pyrolyse.desc.2": "ΠŸΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Π³ΠΎΠ½ΡΡ‚ΡŒ, получая мноТСство органичСских рСсурсов, ΠΏΡ€ΠΈ этом &oΡ€Π°Π·Π½Ρ‹Π΅&r ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ Π΄Π°ΡŽΡ‚ &oΡ€Π°Π·Π½Ρ‹Π΅&r ΡΠΎΠΎΡ‚Π½ΠΎΡˆΠ΅Π½ΠΈΡ &oΡ€Π°Π·Π½Ρ‹Ρ…&r Ρ…ΠΈΠΌΠΈΠΊΠ°Ρ‚ΠΎΠ².\n\nΠ’Π°ΠΌ стоит Π·Π°Π³Π»ΡΠ½ΡƒΡ‚ΡŒ Π² Π·Π°Π΄Π°Π½ΠΈΠ΅ ΠΏΠΎ &9ΠŸΠ΅Ρ€Π΅Π³ΠΎΠ½ΠΊΠ΅&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π»ΡƒΡ‡ΡˆΠ΅ ΠΏΠΎΠ½ΡΡ‚ΡŒ всю ΠΌΠΎΡ‰ΡŒ этого процСсса…", + "quests.medium_voltage.pyrolyse.desc.3": "Π‘ΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‚ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, Π² ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &bАзот&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ΄Π²ΠΎΠΈΡ‚ΡŒ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ Ρ€Π°Π±ΠΎΡ‚Ρ‹. БСйчас это Π½Π΅ особо стоит Ρ‚ΠΎΠ³ΠΎ, Π½ΠΎ со Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ Азот станСт бСсплатным ΠΈ бСсконСчным.\n\nОдного &3LV ЭнСргСтичСского Ρ€Π°Π·ΡŠΠ΅ΠΌΠ°&r Π±ΡƒΠ΄Π΅Ρ‚ Π±ΠΎΠ»Π΅Π΅ Ρ‡Π΅ΠΌ достаточно, Π° Π‘Π²Π΅Ρ€Ρ…ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½ΠΈΠΊΠΈ обСспСчат ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½Ρ‹Π΅ &d64 EU/t&r. ΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, &3ΠšΡƒΠΏΡ€ΠΎΠ½ΠΈΠΊΠΈΠ»Π΅Π²Ρ‹Π΅ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ&r идСально ΠΏΠΎΠ΄ΠΎΠΉΠ΄ΡƒΡ‚ Π½Π° ΠΏΠ΅Ρ€Π²ΠΎΠ½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎΠΌ этапС использования ΠΏΠΈΡ€ΠΎΠ»ΠΈΠ·Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ, Π½ΠΎ со Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ Π²Ρ‹, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° &bΠšΠ°Π½Ρ‚Π°Π»&r.", + "quests.medium_voltage.pyrolyse.desc.4": "&9&lΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r&l ΠŸΡƒΡ‚ΡŒ Ρ‡Π΅Ρ€Π΅Π· растСния β€” это ΠΎΠ΄ΠΈΠ½ ΠΈΠ· способов получСния &9&lΠ­Ρ‚ΠΈΠ»Π΅Π½Π°&r&l, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ являСтся Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ΠΌ Ρ…ΠΈΠΌΠΈΠΊΠ°Ρ‚ΠΎΠΌ для ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄Π° Π½Π° ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ &6HV&r&l. Π”Ρ€ΡƒΠ³ΠΎΠΉ ΠΏΡƒΡ‚ΡŒ связан с Π½Π΅Ρ„Ρ‚ΡŒΡŽ.&r\n\nΠŸΠΈΡ€ΠΎΠ»ΠΈΠ·Π½Π°Ρ ΠΏΠ΅Ρ‡ΡŒ остаётся &dΠ½Π΅ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠΉ&r. Однако Π΅Ρ‘ ΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΡΡ‚Π²ΠΎ приносит ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹Π΅ Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚Ρ‹ β€” ΠΊΠ°ΠΊ для производства энСргии, Ρ‚Π°ΠΊ ΠΈ для получСния Ρ€Π°Π·Π½ΠΎΠΎΠ±Ρ€Π°Π·Π½Ρ‹Ρ… ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ², поэтому ΠΌΡ‹ Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π½Π° Π½Π΅Ρ‘ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅.\n\n&l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o Π’ GT5u структура ΠŸΠΈΡ€ΠΎΠ»ΠΈΠ·Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ ΠΏΠ΅Ρ‡Π°Π»ΡŒΠ½ΠΎ ΠΏΡ€ΠΎΡΠ»Π°Π²ΠΈΠ»Π°ΡΡŒ ΠΊΠ°ΠΊ гигантская ΠΊΠΎΡ€ΠΎΠ±ΠΊΠ° с Π΄Π΅Π²ΡΡ‚ΡŒΡŽ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠ°ΠΌΠΈ Π²Π½ΡƒΡ‚Ρ€ΠΈ. Π˜Π³Ρ€ΠΎΠΊΠΈ часто Ρ‚Ρ€Π°Ρ‚ΠΈΠ»ΠΈ ΠΏΠΎ Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΡƒ ΠΌΠΈΠ½ΡƒΡ‚, ΠΏΡ‹Ρ‚Π°ΡΡΡŒ ΠΏΠΎΠ½ΡΡ‚ΡŒ, Ρ‡Ρ‚ΠΎ Π½Π΅ Ρ‚Π°ΠΊ, ΠΈΠ·-Π·Π° отсутствия прСдпросмотра Π² EMI.", + "quests.medium_voltage.mv_fluid_rig.title": "Жидкостная Буровая Установка", + "quests.medium_voltage.mv_fluid_rig.subtitle": "Π’ΠΎΠ²Π°, Π²ΠΊΠ»ΡŽΡ‡Π°ΠΉ насос...", + "quests.medium_voltage.mv_fluid_rig.desc.1": "Π’ΠΎΠ·Π²Π΅Π΄Π΅Π½ΠΈΠ΅ &3Жидкостной Π±ΡƒΡ€ΠΎΠ²ΠΎΠΉ установки&r β€” это ΡΠ΅Ρ€ΡŒΡ‘Π·Π½Π°Ρ инвСстиция, Π½ΠΎ ΠΎΠ½Π° &oΠΎΠ΄Π½ΠΎΠ·Π½Π°Ρ‡Π½ΠΎ&r являСтся самым Π²Π°ΠΆΠ½Ρ‹ΠΌ &6источником Π½Π΅Ρ„Ρ‚ΠΈ&r.\n\nОна ΠΊΠ°Ρ‡Π°Π΅Ρ‚ Тидкости прямо ΠΈΠ·-ΠΏΠΎΠ΄ самого Π±Π΅Π΄Ρ€ΠΎΠΊΠ°. ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ Тидкости Ρ‚Π°ΠΌ фактичСски Π½Π΅Ρ‚ β€” ΠΎΠ½Π° лишь имитируСтся.\n\nЖидкостныС ΠΆΠΈΠ»Ρ‹ хранятся Π² ΠΏΡ€Π΅Π΄Π΅Π»Π°Ρ… &cобластСй Ρ€Π°Π·ΠΌΠ΅Ρ€ΠΎΠΌ с Ρ‡Π°Π½ΠΊ&r. КаТдая ΠΆΠΈΠ»Π° содСрТит Ρ€Π°Π·Π½Ρ‹ΠΉ Ρ‚ΠΈΠΏ Тидкости, Π½ΠΎ Π² основном это Π²ΠΈΠ΄Ρ‹ Π½Π΅Ρ„Ρ‚ΠΈ.\n\nПока нСльзя Π·Π°Π½ΠΈΠΌΠ°Ρ‚ΡŒΡΡ Ρ€Π°Π·Π²Π΅Π΄ΠΊΠΎΠΉ Тидкостных ΠΆΠΈΠ», &oΠ΅Ρ‰Ρ‘&r эта Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ появится Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &6HV&r.", + "quests.medium_voltage.mv_fluid_rig.desc.2": "КаТдая ΠΆΠΈΠ»Π° гСнСрируСтся с Ρ€Π°Π·Π½ΠΎΠΉ Π±Π°Π·ΠΎΠ²ΠΎΠΉ Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ΠΉ, ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ ΠΎΡ‚ &d150L&r Π΄ΠΎ &d300L Π² сСкунду&r.\n\nΠŸΡ€ΠΈ Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ ΠΆΠΈΠ»Ρ‹ постСпСнно ΠΈΡΡ‚ΠΎΡ‰Π°ΡŽΡ‚ΡΡ. Π­Ρ‚ΠΎ ΠΏΡ€ΠΈΠ²ΠΎΠ΄ΠΈΡ‚ ΠΊ сниТСнию Π΄ΠΎΠ±Ρ‹Ρ‡ΠΈ со Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ Π΄ΠΎ достиТСния минимального уровня. Π’ этот ΠΌΠΎΠΌΠ΅Π½Ρ‚ слСдуСт ΠΏΠ΅Ρ€Π΅ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π±ΡƒΡ€ΠΎΠ²ΡƒΡŽ установку Π½Π° Π΄Ρ€ΡƒΠ³ΡƒΡŽ ΠΆΠΈΠ»Ρƒ.\n\n&3Базовая буровая установка для ТидкостСй&r прослуТит ΠΎΠΊΠΎΠ»ΠΎ 100 000 Ρ†ΠΈΠΊΠ»ΠΎΠ² Ρ€Π°Π±ΠΎΡ‚Ρ‹ (ΠΏΠΎ 1 сСкундС Π½Π° Ρ†ΠΈΠΊΠ») Π΄ΠΎ ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ истощСния. Π­Ρ‚ΠΎΠ³ΠΎ достаточно для Π΄ΠΎΠ±Ρ‹Ρ‡ΠΈ Π±ΠΎΠ»Π΅Π΅ &610 000&r Π²Π΅Π΄Π΅Ρ€ Π½Π΅Ρ„Ρ‚ΠΈ. Установки Π±ΠΎΠ»Π΅Π΅ высокого уровня Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°ΡŽΡ‚ Π΄ΠΎΠ±Ρ‹Ρ‡Ρƒ ΠΈ Π·Π°ΠΌΠ΅Π΄Π»ΡΡŽΡ‚ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ истощСния.", + "quests.medium_voltage.mv_fluid_rig.desc.3": "&lΠ§Ρ‚ΠΎ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² &2Π’Π΅Ρ€Ρ…Π½Π΅ΠΌ ΠΌΠΈΡ€Π΅&r&l:&r\n\n&9ΠΠ΅Ρ„Ρ‚ΡŒ:&r Π±ΠΎΠ³Π°Ρ‡Π΅ &aΠ›Ρ‘Π³ΠΊΠΈΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ&r, самый Ρ†Π΅Π½Π½Ρ‹ΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚.\n&9Лёгкая Π½Π΅Ρ„Ρ‚ΡŒ:&r Π±ΠΎΠ³Π°Ρ‡Π΅ &aсСрным Π³Π°Π·ΠΎΠΌ&r, ΠΏΡ€ΠΈΠ³ΠΎΠ΄Π½Ρ‹ΠΌ для производства энСргии.\n&9ВяТёлая Π½Π΅Ρ„Ρ‚ΡŒ:&r Π±ΠΎΠ³Π°Ρ‡Π΅ &aВяТёлым Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ&r, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π² Π±ΠΎΠ»Π΅Π΅ ΡƒΠ·ΠΊΠΈΡ… областях, Π² частности для Π’ΠΎΠ»ΡƒΠΎΠ»Π°.\n&9БрСдняя Π½Π΅Ρ„Ρ‚ΡŒ:&r Π±ΠΎΠ³Π°Ρ‡Π΅ &aНафтой&r, Π»ΡƒΡ‡ΡˆΠΈΠΌ источником ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ² Ρ€Π°Π½Π½Π΅ΠΉ стадии ΠΈΠ³Ρ€Ρ‹.\n&9Π‘Π΅Ρ€Π½Ρ‹ΠΉ Π³Π°Π·:&r Π΄Π°Ρ‘Ρ‚ &aНСфтянной Π³Π°Π·&r Π±Π΅Π· нСобходимости ΠΏΠ΅Ρ€Π΅Π³ΠΎΠ½ΠΊΠΈ.\n&9ΠœΠΎΡ€ΡΠΊΠ°Ρ Π²ΠΎΠ΄Π°:&r Π΄Π°Ρ‘Ρ‚ &aНатрий&r ΠΈ &aΠ₯Π»ΠΎΡ€&r, ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Π΅ Π½Π° ΠΏΠΎΠ·Π΄Π½ΠΈΡ… этапах.", + "quests.medium_voltage.mv_fluid_rig.desc.4": "&lΠ§Ρ‚ΠΎ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² &cΠ‘Π΅Π·Π΄Π½Π΅&r&l:&r\n\n&9ΠŸΡ€ΠΈΡ€ΠΎΠ΄Π½Ρ‹ΠΉ Π³Π°Π·:&r Π΄Π°Ρ‘Ρ‚ &aНСфтянной Π³Π°Π·&r, ΠΏΡ€ΠΈΡ‡Ρ‘ΠΌ с большим Π²Ρ‹Ρ…ΠΎΠ΄ΠΎΠΌ, Ρ‡Π΅ΠΌ ΠΆΠΈΠ»Ρ‹ Π² НадзСмном ΠΌΠΈΡ€Π΅.\n&9Π›Π°Π²Π°:&r надССмся, Π²Ρ‹ Π·Π½Π°Π΅Ρ‚Π΅, Ρ‡Ρ‚ΠΎ это Ρ‚Π°ΠΊΠΎΠ΅.\n\nΠ’ Π½Π°Ρ‡Π°Π»Π΅ придётся ΠΏΡ€ΠΎΠ±ΠΎΠ²Π°Ρ‚ΡŒ Π½Π°ΡƒΠ΄Π°Ρ‡Ρƒ, ΠΏΠΎΠΊΠ° Π½Π΅ Π½Π°ΠΉΠ΄Ρ‘Ρ‚Π΅ Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ подходящСС. ΠŸΠΎΠΌΠ½ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ всё, Ρ‡Ρ‚ΠΎ Π²Ρ‹ ΠΊΠ°Ρ‡Π°Π΅Ρ‚Π΅, ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для Π·Π°ΠΏΡ€Π°Π²ΠΊΠΈ вашСй Π±ΡƒΡ€ΠΎΠ²ΠΎΠΉ установки.", + "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.subtitle": "Π’ΠΎΡ‚, ΠΊΡ‚ΠΎ это ΡƒΠ½ΡŽΡ…Π°Π»...", + "quests.medium_voltage.mv_lpg.desc.1": "&aНСфтянной Π³Π°Π·&r, &aΠ‘ΠΆΠΈΠΆΠ΅Π½Π½Ρ‹ΠΉ ΡƒΠ³Π»Π΅Π²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄Π½Ρ‹ΠΉ Π³Π°Π· (LPG)&r ΠΈ &aΠœΠ΅Ρ‚Π°Π½&r β€” это &9Π“Π°Π·ΠΎΠ²ΠΎΠ΅ Π³ΠΎΡ€ΡŽΡ‡Π΅Π΅&r. БНГ (сТиТСнный нСфтяной Π³Π°Π·) β€” смСсь ΡƒΠ³Π»Π΅Π²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄ΠΎΠ², ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΠ°Ρ для отоплСния.\n\nНСфтянной Π³Π°Π· ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ Π»ΠΈΠ±ΠΎ ΠΈΠ· &dΠŸΡ€ΠΈΡ€ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π³Π°Π·Π°&r, Π»ΠΈΠ±ΠΎ ΠΈΠ· &dΠ›Ρ‘Π³ΠΊΠΎΠΉ Π½Π΅Ρ„Ρ‚ΠΈ&r, ΠΏΡ€ΠΈ этом Π²Ρ‚ΠΎΡ€ΠΎΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ Π΄Π°Ρ‘Ρ‚ большС Π³Π°Π·Π°, Π½ΠΎ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΉ ΠΏΠ΅Ρ€Π΅Π³ΠΎΠ½ΠΊΠΈ.\n\nИспользованиС &3Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈ&r для раздСлСния Π½Π° &aБНГ&r ΠΈ &aΠœΠ΅Ρ‚Π°Π½&r рСкомСндуСтся всСгда, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ это практичСски бСсплатно.", + "quests.medium_voltage.mv_lpg.desc.2": "&a&aБНГ&r ΠΈ &aΠœΠ΅Ρ‚Π°Π½&r ΡΠΆΠΈΠ³Π°ΡŽΡ‚ΡΡ Π² &3Π“Π°Π·ΠΎΠ²ΠΎΠΉ Ρ‚ΡƒΡ€Π±ΠΈΠ½Π΅&r. Π‘Ρ€Π΅Π΄ΠΈ ΠΏΡ€ΠΎΡ‡ΠΈΡ… Π²ΠΈΠ΄ΠΎΠ² Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° ΠΎΠ½ΠΈ самыС простыС Π² использовании, Ρ‡Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ ΠΈΡ… ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΌ Π²Ρ‹Π±ΠΎΡ€ΠΎΠΌ для Π½Π°Ρ‡Π°Π»Π°. Π˜Ρ… нСдостаток Π² Ρ‚ΠΎΠΌ, Ρ‡Ρ‚ΠΎ ΠΈΡ… нСльзя ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ дальшС, поэтому ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &3Π‘ΡƒΡ€ΠΎΠ²ΠΎΠΉ установки для ТидкостСй&r ΠΌΠΎΠΆΠ΅Ρ‚ ΡΡ‚Π°Ρ‚ΡŒ ΠΏΡ€ΠΈΠΎΡ€ΠΈΡ‚Π΅Ρ‚ΠΎΠΌ, Ссли Π²Ρ‹ Π²Ρ‹Π±Π΅Ρ€Π΅Ρ‚Π΅ этот источник Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°.\n\n&aΠœΠ΅Ρ‚Π°Π½&r Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΈΠ· Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… &aСстСствСнных источников&r. &eΠœΠ΅ΠΆΠ΄Ρƒ Π½Π°ΠΌΠΈ&r, это Π² Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌ смыслС ΠΌΠ΅ΠΌΡ‹), Π½ΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ…, Ссли Ρ…ΠΎΡ‚ΠΈΡ‚Π΅. Π’ ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΎΠΌ счётС, Π²Ρ‹Π±ΠΎΡ€ источника энСргии остаётся Π·Π° Π²Π°ΠΌΠΈ.", + "quests.medium_voltage.mv_brewery.title": "ΠœΠ΅ΡΡ‚Π½Π°Ρ ΠŸΠΈΠ²ΠΎΠ²Π°Ρ€Π½Ρ Π’Π°Ρ€ΠΈΡ‚ Π‘Ρ€Π°ΠΆΠΊΡƒ", + "quests.medium_voltage.mv_brewery.subtitle": "*Ик*... *Ик*", + "quests.medium_voltage.mv_brewery.desc.1": "Варочная машина ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для производства &aΠ‘ΠΌΠ°Π·ΠΊΠΈ&r ΠΈΠ· &aРСдстоуна&r ΠΈ &aΠšΡ€Π΅ΠΎΠ·ΠΎΡ‚Π°&r/&aНСфти&r. Π‘ΠΌΠ°Π·ΠΊΠ° ΠΈΠΌΠ΅Π΅Ρ‚ ΡƒΠ·ΠΊΠΎΠ΅ ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠ΅, Π² частности, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π² &3Π Π΅Π·ΠΎΡ‡Π½ΠΎΠΉ машинС&r для Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ сокращСния Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ выполнСния Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ².\n\nВарочная машина β€” ΠΎΡ‡Π΅Π½ΡŒ, ΠΎΡ‡Π΅Π½ΡŒ мСдлСнная машина, Π½ΠΎ для Ρ€Π°Π±ΠΎΡ‚Ρ‹ Π΅ΠΉ ΠΏΠΎΡ‡Ρ‚ΠΈ Π½Π΅ трСбуСтся энСргия. ΠŸΠΎΡΡ‚Ρ€ΠΎΠΉΠΊΠ° &2мноТСства Π’Π°Ρ€ΠΎΡ‡Π½Ρ‹Ρ… машин&r ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ достаточно Биомассы для вашСго квСста ΠΏΠΎ пластмассам.\n\n&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Варочная машина ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ ΠΏΡƒΡ‚ΡŒ Биомассы ΠΊ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΡŽ &9Π­Ρ‚ΠΈΠ»Π΅Π½Π°&r. Π’ΠΎ ΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΠΈ Π² &3ΠŸΠΈΡ€ΠΎΠ»ΠΈΠ·Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ&r. Π”Ρ€ΡƒΠ³ΠΎΠΉ ΠΏΡƒΡ‚ΡŒ связан с Π½Π΅Ρ„Ρ‚ΡŒΡŽ.&r", + "quests.medium_voltage.mv_brewery.desc.2": "&l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o Π’Ρ‹ ΠΌΠΎΠ³Π»ΠΈ Π±Ρ‹ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΡΠΎΠ±ΡΡ‚Π²Π΅Π½Π½ΡƒΡŽ Π’Π°Ρ€ΠΎΡ‡Π½ΡƒΡŽ ΠΌΠ°ΡˆΠΈΠ½Ρƒ, Ссли Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ компанию ΠΈ Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΏΡ€ΠΎΠ΄Π°Π²Π°Ρ‚ΡŒ алкоголь... Π² GregTech 6.&r", + "quests.medium_voltage.mv_biomass.title": "Биомасса", + "quests.medium_voltage.mv_biomass.subtitle": "РастСния нСдостаточно ΠΏΡ€ΠΎΠΌΡ‹ΡˆΠ»Π΅Π½Π½Ρ‹!", + "quests.medium_voltage.mv_biomass.desc.1": "Π”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π½Π° органичСский ΠΏΡƒΡ‚ΡŒ получСния &dΠ­Ρ‚ΠΈΠ»Π΅Π½Π°&r! ЦСль β€” ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ &dΠ­Ρ‚Π°Π½ΠΎΠ»&r ΠΈ ΡΠΌΠ΅ΡˆΠΈΠ²Π°Ρ‚ΡŒ Π΅Π³ΠΎ с &dΠ‘Π΅Ρ€Π½ΠΎΠΉ кислотой&r для получСния &dΠ­Ρ‚ΠΈΠ»Π΅Π½Π°&r.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &dΠ­Ρ‚Π°Π½ΠΎΠ»&r, Π΅Π³ΠΎ Π½ΡƒΠΆΠ½ΠΎ Π΄ΠΈΡΡ‚ΠΈΠ»Π»ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΠ· &aБиомассы&r β€” Π΄Π°Π²Π°ΠΉΡ‚Π΅ рассмотрим Ρ€Π°Π·Π½Ρ‹Π΅ способы Π΅Ρ‘ производства.\n\nΠŸΠ΅Ρ€Π²Ρ‹ΠΉ ΠΌΠ΅Ρ‚ΠΎΠ΄ простой: помСститС &aсаТСнцы&r Π² &dΠ’Π°Ρ€ΠΎΡ‡Π½ΡƒΡŽ ΠΌΠ°ΡˆΠΈΠ½Ρƒ&r с Π²ΠΎΠ΄ΠΎΠΉ. ΠœΠΈΠ½ΡƒΡ Π² Ρ‚ΠΎΠΌ, Ρ‡Ρ‚ΠΎ &eэто ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎ&r.", + "quests.medium_voltage.mv_biomass.desc.2": "Π’Ρ‚ΠΎΡ€ΠΎΠΉ ΠΏΡƒΡ‚ΡŒ слоТнСС, Π½ΠΎ Π΄Π°Ρ‘Ρ‚ Π³ΠΎΡ€Π°Π·Π΄ΠΎ Π»ΡƒΡ‡ΡˆΠΈΠ΅ Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚Ρ‹. Π’Π°ΠΌ понадобится &aМякина&r, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ ΠΏΡƒΡ‚Ρ‘ΠΌ &aΠ˜Π·ΠΌΠ΅Π»ΡŒΡ‡Π΅Π½ΠΈΡ ΠΊΠΎΠΌΠΊΠΎΠ² биомассы&r. ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ &aΠ΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… шансов&r Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚, ΠΏΠΎΠΊΠ° Π²Ρ‹ Π½Π΅ Ρ€Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΡƒΠ΅Ρ‚Π΅ &6HV Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ&r.\n\n&bКомки биомассы&r ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ:\n- Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ΠΌ &9Π‘Π°Ρ…Π°Ρ€Π½ΠΎΠ³ΠΎ тростника&r ΠΈΠ»ΠΈ &9Π‘Π²Ρ‘ΠΊΠ»Ρ‹&r\n- Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ΠΌ любой &aдрСвСсины&r, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &9#afc:tappable_logs&r\n- ΠŸΡ€ΡΠΌΡ‹ΠΌ прСсованиСм &aсаТСнцСв&r\n\nНаконСц, ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°ΠΉΡ‚Π΅ &aΠœΡΠΊΠΈΠ½Ρƒ&r с Π²ΠΎΠ΄ΠΎΠΉ Π² &dΠ’Π°Ρ€ΠΎΡ‡Π½ΠΎΠΉ машинС&r ΠΈΠ»ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &dΠŸΠΈΡ€ΠΎΠ»ΠΈΠ·Π½ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ&r для &eувСличСния Π²Ρ‹Ρ…ΠΎΠ΄Π° Π½Π° 66 ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚ΠΎΠ²&r.", + "quests.medium_voltage.mv_biomass.desc.3": "&l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o Π’Ρ‹, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, ΡƒΠ·Π½Π°Π΅Ρ‚Π΅ Биомассу ΠΈΠ· IndustrialCraft2! Π’ IC2 Experimental сущСствовал довольно... Π·Π°Π³Π°Π΄ΠΎΡ‡Π½Ρ‹ΠΉ способ прСвращСния Биомассы Π² Π‘ΠΈΠΎΠ³Π°Π· для производства энСргии, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ, ΠΊ соТалСнию, Ρ‚Ρ€Π΅Π±ΠΎΠ²Π°Π» слишком Π±ΠΎΠ»ΡŒΡˆΠΈΡ… Π²Π»ΠΎΠΆΠ΅Π½ΠΈΠΉ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π±Ρ‹Ρ‚ΡŒ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π²Ρ‹Π³ΠΎΠ΄Π½Ρ‹ΠΌ.", + "quests.medium_voltage.mv_distillery.title": "Дистилятор", + "quests.medium_voltage.mv_distillery.subtitle": "Иллюзия свободного Π²Ρ‹Π±ΠΎΡ€Π°", + "quests.medium_voltage.mv_distillery.desc.1": "ΠŸΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ Π½Π°Ρ‡Π°Ρ‚ΡŒ, Π²ΠΎΡ‚ ваТная информация, Ссли Π²Ρ‹ ΠΏΠ»Π°Π½ΠΈΡ€ΡƒΠ΅Ρ‚Π΅ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π­Ρ‚ΠΈΠ»Π΅Π½:\n\nΠŸΡƒΡ‚Π΅ΠΌ Ρ‡Π΅Ρ€Π΅Π· &aΠΠ΅Ρ„Ρ‚ΡŒ&r потрСбуСтся &oΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ&r &3LV Дистиллятор&r.\n\nДля ΠΏΡƒΡ‚ΠΈ Ρ‡Π΅Ρ€Π΅Π· &aБиомассу&r Π²Π°ΠΌ &lпонадобится&r &3MV Дистиллятор&r.\n\nΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &eлюбой&r ΠΈΠ· Π½ΠΈΡ…, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ Π·Π°Π΄Π°Π½ΠΈΠ΅.", + "quests.medium_voltage.mv_distillery.desc.2": "Поняли? &6ΠžΡ‚Π»ΠΈΡ‡Π½ΠΎ&r! Π’Π΅ΠΏΠ΅Ρ€ΡŒ обсудим ΡΠ»ΠΎΠΆΠ½ΡƒΡŽ Ρ‚Π΅ΠΌΡƒ: &9ΠŸΠ΅Ρ€Π΅Π³ΠΎΠ½ΠΊΡƒ&r. ΠœΡ‹ постараСмся ΠΏΠΎΠΌΠΎΡ‡ΡŒ Π²Π°ΠΌ ΠΏΠΎΠ½ΡΡ‚ΡŒ, ΠΊΠ°ΠΊ ΠΈ ΠΏΠΎΡ‡Π΅ΠΌΡƒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ &aEMI&r устроСны ΠΈΠΌΠ΅Π½Π½ΠΎ Ρ‚Π°ΠΊ, Ρ‡Ρ‚ΠΎ ΠΆ, ΠΎΡΡ‚Π°Π²Π°ΠΉΡ‚Π΅ΡΡŒ с Π½Π°ΠΌΠΈ.\n\nΠŸΡ€Π°ΠΊΡ‚ΠΈΡ‡Π΅ΡΠΊΠΈ всС Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ &3Дистиллятора&r β€” это ΠΊΠΎΠΏΠΈΠΈ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² ΠΈΠ· &3Π Π΅ΠΊΡ‚ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΠΎΠ½Π½ΠΎΠΉ ΠΊΠΎΠ»ΠΎΠ½Π½Ρ‹&r, Π½ΠΎ ΠΏΡ€ΠΈ этом Ρƒ Π½ΠΈΡ… Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄ΠΈΠ½ Тидкостный Π²Ρ‹Ρ…ΠΎΠ΄, Π° всё ΠΎΡΡ‚Π°Π»ΡŒΠ½ΠΎΠ΅ тСряСтся.\n\nΠ”Ρ€ΡƒΠ³ΠΈΠΌΠΈ словами, ΠΌΠΎΠΆΠ½ΠΎ ΡΠΊΠ°Π·Π°Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎ &3Дистиллятор&r β€” это &oупрощённая&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.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_benzene.desc.3": "&l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o Π‘Π΅Π½Π·ΠΎΠ» Π±Ρ‹Π» ΠΎΠ΄Π½ΠΈΠΌ ΠΈΠ· самых ΠΌΠΎΡ‰Π½Ρ‹Ρ… Π³Π°Π·ΠΎΠ²Ρ‹Ρ… Ρ‚ΠΎΠΏΠ»ΠΈΠ² со Π²Ρ€Π΅ΠΌΡ‘Π½ GTCEu β€” Π½Π°ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΌ, Ρ‡Ρ‚ΠΎ стал ΠΌΠ΅ΠΌΠΎΠΌ. Π’ наши Π΄Π½ΠΈ Π΅Π³ΠΎ эпоха ΠΏΠΎΠ²ΡΡŽΠ΄Ρƒ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ ΠΊ ΠΊΠΎΠ½Ρ†Ρƒ.", + "quests.medium_voltage.reformate_gas.title": "РСформатская Ρ†Π΅Ρ€ΠΊΠΎΠ²ΡŒ", + "quests.medium_voltage.reformate_gas.subtitle": "Когда ΠΎΠ΄ΠΈΠ½ Π³ΠΈΠ³Π°Π½Ρ‚ ΠΏΠ°Π΄Π°Π΅Ρ‚, появляСтся Π½ΠΎΠ²Ρ‹ΠΉ.", + "quests.medium_voltage.reformate_gas.desc": "&7Π ΠΈΡ„ΠΎΡ€ΠΌΠ°Ρ‚-Π³Π°Π·&r β€” это Ρ‚Π²ΠΎΡ‘ Π½ΠΎΠ²ΠΎΠ΅ основноС Π³Π°Π·ΠΎΠ²ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ Π½Π° &bMV&r, Ссли Ρ‚Ρ‹ Ρ€Π΅ΡˆΠΈΡˆΡŒ ΠΏΠΎΠΉΡ‚ΠΈ этим ΠΏΡƒΡ‚Ρ‘ΠΌ. Для идСальной эффСктивности Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ½Ρ‹ всСго &61 Π‘ΠΆΠΈΠΆΠ°ΡŽΡ‰Π°Ρ ΠΊΠΎΠ»ΠΎΠ½Π½Π°&r ΠΈ &62 ΠΏΠΈΡ€ΠΎΠ»ΠΈΠ·Π½Ρ‹Π΅ ΠΏΠ΅Ρ‡ΠΈ&r, ΠΈ Ρ‚Ρ‹ смоТСшь Π½Π°Ρ‡Π°Ρ‚ΡŒ Π½Π΅ΠΏΡ€Π΅Ρ€Ρ‹Π²Π½ΠΎΠ΅ производство этого Ρ†Π΅Π½Π½ΠΎΠ³ΠΎ Π³Π°Π·Π°.\n\nНо ΠΏΠΎΠ΄ΠΎΠΆΠ΄ΠΈ β€” сначала Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ &5Ρ€Π΅Π½ΠΈΠΉ&r, Π½ΠΎΠ²Ρ‹ΠΉ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π», ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ встрСчаСтся Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² ΠΆΠ°Ρ€ΠΊΠΈΡ… ΠΈ сухих Ρ€Π΅Π³ΠΈΠΎΠ½Π°Ρ… &7TerraFirmaCraft&r. РасходуСтся Π΅Π³ΠΎ Π½Π°ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΌΠ°Π»ΠΎ, Ρ‡Ρ‚ΠΎ ΠΎΠ΄Π½ΠΎΠΉ ΠΆΠΈΠ»Ρ‹ Ρ‚Π΅Π±Π΅ Ρ…Π²Π°Ρ‚ΠΈΡ‚ Π΄ΠΎ самого ΠΊΠΎΠ½Ρ†Π° сборки ΠΈΠ»ΠΈ ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ Π΄ΠΎ &6HV&r, Π³Π΄Π΅ β€” с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &6ΠΊΡ€Π΅ΠΊΠΈΠ½Π³ΠΎΠ³ΠΎ Π·Π°Π²ΠΎΠ΄Π°&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.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.2": "Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ &6Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ&r ΡΠΎΠΊΡ€Π°Ρ‚ΠΈΡ‚ΡŒ количСство Ρ‚Ρ€Π΅Π±ΡƒΠ΅ΠΌΠΎΠΉ &dΠ½Π΅Ρ„Ρ‚ΠΈ&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ &dΡ‚ΡΠΆΡ‘Π»ΡƒΡŽ Π½Π΅Ρ„Ρ‚ΡŒ&r ΠΈΠΌΠ΅Π½Π½ΠΎ для производства &aтяТёлого Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&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.coal_tower.title": "Π‘ΠΆΠΈΠΆΠ°ΡŽΡ‰Π°Ρ ΠΊΠΎΠ»ΠΎΠ½Π½Π°", + "quests.medium_voltage.coal_tower.subtitle": "ΠšΡ‚ΠΎ Π½Π΅ Π»ΡŽΠ±ΠΈΡ‚ Π½ΠΎΠ²Ρ‹Π΅ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ", + "quests.medium_voltage.coal_tower.desc.1": "&bΠ‘ΠΆΠΈΠΆΠ°ΡŽΡ‰Π°Ρ ΠΊΠΎΠ»ΠΎΠ½Π½Π°&r β€” это Π½ΠΎΠ²Ρ‹ΠΉ &bΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹ΠΉ Π² процСссС производства &aΡ€ΠΈΡ„ΠΎΡ€ΠΌΠ°Ρ‚-Π³Π°Π·Π°&r ΠΈ Π΅Π³ΠΎ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ² β€” &7ΠΊΠ°ΠΌΠ΅Π½Π½ΠΎΡƒΠ³ΠΎΠ»ΡŒΠ½ΠΎΠΉ смолы&r ΠΈ &7синтСз-Π³Π°Π·Π°&r. Π’ зависимости ΠΎΡ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹Ρ… &9ΠΊΠ°Ρ‚ΡƒΡˆΠ΅ΠΊ&r Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡˆΡŒ ΡƒΠΌΠ΅Π½ΡŒΡˆΠ΅Π½ΠΈΠ΅ &7Π΄Π»ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ²&r. ΠŸΡ€ΠΎΡΡ‚ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ shift-ΠΊΠ»ΠΈΠΊ, навСдя курсор Π½Π° ΠΊΠ°Ρ‚ΡƒΡˆΠΊΡƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ Π΅Ρ‘ бонусы.\n\nΠžΠ±Ρ€Π°Ρ‚ΠΈ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ &9Π‘ΠΆΠΈΠΆΠ°ΡŽΡ‰ΡƒΡŽ ΠΊΠΎΠ»ΠΎΠ½Π½Ρƒ&r ΠΌΠΎΠΆΠ½ΠΎ ΡƒΡΠΊΠΎΡ€ΠΈΡ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &7Π²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄Π°&r, ΡƒΠΌΠ΅Π½ΡŒΡˆΠ°Ρ Π΄Π»ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ, Π° Π·Π½Π°Ρ‡ΠΈΡ‚ ΠΈ ΡΡ‚ΠΎΠΈΠΌΠΎΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ². НС Π·Π°Π±ΡƒΠ΄ΡŒ Π²Ρ‹ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΡƒΡŽ &6схСму&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ всё Ρ€Π°Π±ΠΎΡ‚Π°Π»ΠΎ.\n\nΠšΡΡ‚Π°Ρ‚ΠΈ, Ссли Ρ‚Ρ‹ Π½Π΅ Π·Π½Π°Π»: ΠΎΠ΄Π½Π° сСкунда β€” это 20 Ρ‚ΠΈΠΊΠΎΠ². ΠŸΠΎΡΡ‚ΠΎΠΌΡƒ количСство, потрСбляСмоС Π·Π° Ρ‚ΠΈΠΊ, Π½ΡƒΠΆΠ½ΠΎ ΡƒΠΌΠ½ΠΎΠΆΠΈΡ‚ΡŒ Π½Π° 20, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ расход Π² сСкунду.", + "quests.medium_voltage.coal_tower.desc.2": "&l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o Π’ΠΎΡ‚ ΠΆΠ΅ Ρ‡Π΅Π»ΠΎΠ²Π΅ΠΊ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ создал Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ дСлСния, Ρ‚Π°ΠΊΠΆΠ΅ Ρ€Π°Π·Ρ€Π°Π±ΠΎΡ‚Π°Π»(Π°) ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ ΠΏΡ€ΠΎΠ΅ΠΊΡ‚ ΡΠΆΠΈΠΆΠ°ΡŽΡ‰Π΅ΠΉ ΠΊΠΎΠ»ΠΎΠ½Π½Ρ‹, Ρ€Π°Π·Π²Π΅ это Π½Π΅ Π±Π΅Π·ΡƒΠΌΠΈΠ΅?", + "quests.medium_voltage.mv_jetpack.title": "Π― Π’Π΅Ρ€ΡŽ, Π§Ρ‚ΠΎ УмСю Π›Π΅Ρ‚Π°Ρ‚ΡŒ", + "quests.medium_voltage.mv_jetpack.subtitle": "...Ну, ΠŸΠΎΡ‡Ρ‚ΠΈ ΠΏΠΎΠ»Ρ‘Ρ‚", + "quests.medium_voltage.mv_jetpack.desc": "Π­Ρ‚ΠΎΡ‚ Ρ€Π΅Π°ΠΊΡ‚ΠΈΠ²Π½Ρ‹ΠΉ Ρ€Π°Π½Π΅Ρ† ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ Π²ΠΈΠ΄ΠΎΠ² &aΠ“ΠΎΡ€ΡŽΡ‡Π΅Π³ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r (ΠΈΡΠΊΠ»ΡŽΡ‡Π°Ρ масла) для обСспСчСния ΠΏΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½ΠΎΠΉ Ρ„ΠΎΡ€ΠΌΡ‹ ΠΏΠΎΠ»Ρ‘Ρ‚Π°.\n\nЗаправляйтС Π΅Π³ΠΎ Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ &3Π‘ΠΎΡ‡ΠΊΡƒ&r, ΠΈΠ»ΠΈ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &3НаполнитСля&r.\n\nНаТмитС &4H&r (ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ), Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Ρ€Π΅ΠΆΠΈΠΌ парСния.", + "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.subtitle": "ΠœΠΎΡ‰Ρ‰ ΠΎΠ΄ΠΈΠ½Π½Π°Π΄Ρ†Π°Ρ‚ΠΈ подсолнухов", + "quests.medium_voltage.mv_bio_diesel.desc": "Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΠΏΡ€ΠΎΠ±ΠΎΠ²Π°Ρ‚ΡŒ Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ Ρ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ происхоТдСния, Π½ΠΎ Π±Π΅Π· Ρ„Π΅Ρ€ΠΌΡ‹ Π΄Π΅Ρ€Π΅Π²Π°? ΠŸΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ &3Π‘ΠΈΠΎΠ΄ΠΈΠ·Π΅Π»ΡŒ&r! Π›ΡƒΡ‡ΡˆΠΈΠΉ способ Π΅Π³ΠΎ получСния β€” Ρ‡Π΅Ρ€Π΅Π· &dМасло сСмян&r, ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΠΌΠΎΠ΅ ΠΈΠ· подсолнухов ΠΈΠ»ΠΈ ΠΊΠ°Π½ΠΎΠ»Ρ‹. ΠŸΡ€ΠΎΡΡ‚ΠΎ ΡΠΌΠ΅ΡˆΠ°ΠΉΡ‚Π΅ Π΅Π³ΠΎ с нСбольшим количСством этанола ΠΈ гидроксида натрия (ΠΈΠ· морской Π²ΠΎΠ΄Ρ‹!) Π² Π₯имичСском Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π΅ β€” ΠΈ Π’ΡƒΠ°-ля! ВдовСсок этот процСсс Π΄Π°Ρ‘Ρ‚ Π³Π»ΠΈΡ†Π΅Ρ€ΠΈΠ½, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π² &dΠ­Ρ‚ΠΈΠ»Π΅Π½&r!", + "quests.medium_voltage.mv_mutli_channel.title": "ΠœΡƒΠ»ΡŒΡ‚ΠΈΡ‚Ρ€ΡƒΠ±Ρ‹", + "quests.medium_voltage.mv_mutli_channel.subtitle": "Π­Ρ‚ΠΎ ΡƒΠΆΠ΅ AE2?", + "quests.medium_voltage.mv_mutli_channel.desc": "ΠžΠ±Ρ‹Ρ‡Π½Ρ‹Π΅ &o&dЖидкостныС Ρ‚Ρ€ΡƒΠ±Ρ‹&r ΠΈΠ· GregTech ΠΌΠΎΠ³ΡƒΡ‚ Ρ‚Ρ€Π°Π½ΡΠΏΠΎΡ€Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄ΠΈΠ½ Ρ‚ΠΈΠΏ Тидкости ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ. &3Π§Π΅Ρ‚Π²Π΅Ρ€Π½Ρ‹Π΅ Ρ‚Ρ€ΡƒΠ±Ρ‹&r способны ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΡŒ Π΄ΠΎ Ρ‡Π΅Ρ‚Ρ‹Ρ€Ρ‘Ρ… Ρ€Π°Π·Π½Ρ‹Ρ… Π²ΠΈΠ΄ΠΎΠ² ТидкостСй, Π° &3дСвятСрныС Ρ‚Ρ€ΡƒΠ±Ρ‹&r β€” Ρ†Π΅Π»Ρ‹Ρ… Π΄Π΅Π²ΡΡ‚ΡŒ! ΠžΡ‡Π΅Π½ΡŒ ΡƒΠ΄ΠΎΠ±Π½ΠΎ для ΠΊΠΎΠΌΠΏΠ°ΠΊΡ‚Π½Ρ‹Ρ… установок. &3ДСвятСрныС Ρ‚Ρ€ΡƒΠ±Ρ‹&r особСнно пригодятся Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &5EV&r для обслуТивания мноТСства Π²Ρ‹Ρ…ΠΎΠ΄Π½Ρ‹Ρ… люков ΠΈΠ· &3Π Π΅ΠΊΡ‚ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΠΎΠ½Π½ΠΎΠΉ ΠΊΠΎΠ»ΠΎΠ½Π½Ρ‹&r. ΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &eΠ»ΡŽΠ±ΡƒΡŽ&r ΠΈΠ· Π½ΠΈΡ…, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ это Π·Π°Π΄Π°Π½ΠΈΠ΅.", + "quests.medium_voltage.mv_naphtha.title": "Нафта ΠΈΠ»ΠΈ Π›Π΅Π³ΠΊΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ", + "quests.medium_voltage.mv_naphtha.subtitle": "ΠœΡ‹ Π΄ΠΎ сих ΠΏΠΎΡ€ Π½Π΅ Π·Π½Π°Π΅ΠΌ, ΠΊΠ°ΠΊ произносится Π½Π°Ρ„Ρ‚Π°.", + "quests.medium_voltage.mv_naphtha.desc": "ΠŸΠ΅Ρ€Π΅Π³ΠΎΠ½ΠΊΠ° &aНСфти&r ΠΈΠ»ΠΈ &aΠ‘Ρ‹Ρ€ΠΎΠΉ Π½Π΅Ρ„Ρ‚ΠΈ&r даст Π²Π°ΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ потрСбуСтся &dΠžΠ±Π΅ΡΡΠ΅Ρ€ΠΈΡ‚ΡŒ&r. &aΠ‘Π΅Ρ€ΠΎΠ²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄&r ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ &dΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ&r Π² &3элСктролизёрС&r. Π§Ρ‚ΠΎΠ±Ρ‹ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ процСсс, просто размСститС &3химичСский Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€&r ΠΈ &3элСктролизёр&r рядом Π΄Ρ€ΡƒΠ³ с Π΄Ρ€ΡƒΠ³ΠΎΠΌ. НС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &5ΠΎΡ‚Π²Ρ‘Ρ€Ρ‚ΠΊΡƒ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ &4Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π²Π²ΠΎΠ΄ со стороны Π²Ρ‹Ρ…ΠΎΠ΄Π°&r. &aНафта&r β€” ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ &9ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚&r, ΠΈ Ρ‡Ρ‚ΠΎ ΡƒΠ΄ΠΈΠ²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ, ΠΎΠ½Π° Ρ‚Π°ΠΊΠΆΠ΅ являСтся ΠΎΡ‡Π΅Π½ΡŒ Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ (ходят слухи, Ρ‡Ρ‚ΠΎ Π΅Ρ‘ скоро понСрфят). Однако Ссли Ρƒ вас Π΅ΡΡ‚ΡŒ нСфтСносный пСсок ΠΈΠ»ΠΈ Π½Π΅Ρ‚ Π½Π΅Ρ„Ρ‚ΠΈ, Ρ‚ΠΎ лёгкая Π½Π΅Ρ„Ρ‚ΡŒ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Π»ΡƒΡ‡ΡˆΠΈΠΌ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠΌ. ΠŸΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠ°ΠΉΡ‚Π΅ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ квСсты ΠΏΡ€Π°Π²Π΅Π΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ большС.", + "quests.medium_voltage.mv_fuel_cracking.title": "ΠšΡ€Π΅ΠΊΠΈΠ½Π³ Π’ΠΎΠΏΠ»ΠΈΠ²Π°", + "quests.medium_voltage.mv_fuel_cracking.subtitle": "ΠšΡ€Π΅ΠΊΠΈΠ½Π³ Π³ΠΎΡ€ΡŽΡ‡Π΅Π³ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ слоТным...", + "quests.medium_voltage.mv_fuel_cracking.desc.1": "ΠžΡ‚ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ ΠΏΠ°Π½Π½ΠΈΠΊΡƒ! ΠœΡ‹ Π±ΡƒΠ΄Π΅ΠΌ Π΄Π΅Π»Π°Ρ‚ΡŒ это Π² основном для получСния ΡƒΠ³Π»Π΅Π²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄ΠΎΠ². БущСствуСт мноТСство способов ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &dэтилСн&r ΠΈΠ· ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Π½Π΅Ρ„Ρ‚ΠΈ β€” Π»Π΅Π³ΠΊΠΎ Π·Π°ΠΏΡƒΡ‚Π°Ρ‚ΡŒΡΡ Π²ΠΎ всСх этих Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π°Ρ… ΠΈ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ…! Π›ΡƒΡ‡ΡˆΠΈΠΉ способ β€” ΠΏΠΎΠ΄Π²Π΅Ρ€Π³Π½ΡƒΡ‚ΡŒ &aΠ½Π°Ρ„Ρ‚Ρƒ&r ΠΊΡ€Π΅ΠΊΠΈΠ½Π³Ρƒ ΠΏΠ°Ρ€ΠΎΠΌ Π² &3химичСском Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π΅&r. ΠžΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ сдСлайтС Π½Π°Ρ„Ρ‚Ρƒ ΠΏΡ€ΠΎΡˆΠ΅Π΄ΡˆΠΈΠΉ &aΠ–Π•Π‘Π’ΠšΠ˜Π™&r ΠΊΡ€Π΅Π³ΠΈΠ½Π³ ΠΏΠ°Ρ€ΠΎΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ большС этилСна.", + "quests.medium_voltage.mv_fuel_cracking.desc.2": "Достигнув уровня &6HV&r, Π²Ρ‹ смоТСтС Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ Π΄Π°Π½Π½Ρ‹ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π² &3ΠšΡ€Π΅ΠΊΠΈΠ½Π³ΠΎΠ²ΠΎΠΌ Π·Π°Π²ΠΎΠ΄Π΅&r с ΡΡ„Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΡΡ‚ΡŒΡŽ 100%%. Π’ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΌ ΠΆΠ΅ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π΅, ΠΏΡ€ΠΈ использовании &3Π₯имичСского Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r, ΠΏΠΎΡ‚Π΅Ρ€ΠΈ ΡΠΎΡΡ‚Π°Π²Π»ΡΡŽΡ‚ ΠΎΠΊΠΎΠ»ΠΎ &450%%&r. &9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π”Π°, Π½Π° Π΄Π°Π½Π½ΠΎΠΌ этапС процСсс выглядит ΠΊΡ€Π°ΠΉΠ½Π΅ нСэффСктивным β€” ΠΎΠ΄Π½Π°ΠΊΠΎ это Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΉ стимул для ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄Π° Π½Π° Π±ΠΎΠ»Π΅Π΅ высокий тСхнологичСский ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ. &3РСктификационная ΠΊΠΎΠ»ΠΎΠ½Π½Π°&r станСт Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ΠΌ для нСфтСхимичСского производства, Π½ΠΎ ΠΏΠΎΠΊΠ° Π΄ΠΎ Π½Π΅Ρ‘ Π΄Π°Π»Π΅ΠΊΠΎ. На Π΄Π°Π½Π½Ρ‹ΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚ для получСния &dэтилСна&r придётся ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &3Дистиллятор&r.", + "quests.medium_voltage.mv_ethylene.title": "Π­Ρ‚ΠΈΠ»Π΅Π½", + "quests.medium_voltage.mv_ethylene.subtitle": "Один ΠΈΠ· ΠΌΠ½ΠΎΠ³ΠΈΡ… ΡƒΠ³Π»Π΅Π²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄ΠΎΠ²", + "quests.medium_voltage.mv_ethylene.desc": "Наши искрСнниС поздравлСния с достиТСниСм этого этапа! Бпособ получСния &aΠ­Ρ‚ΠΈΠ»Π΅Π½Π°&r Π±Ρ‹Π» описан Π² ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰Π΅ΠΌ Π·Π°Π΄Π°Π½ΠΈΠΈ β€” Π² зависимости ΠΎΡ‚ Π²Ρ‹Π±Ρ€Π°Π½Π½ΠΎΠ³ΠΎ Π²Π°ΠΌΠΈ ΠΏΡƒΡ‚ΠΈ. БовсСм скоро &aΠ­Ρ‚ΠΈΠ»Π΅Π½&r понадобится для производства ΠΏΠΎΠ»ΠΈΠΌΠ΅Ρ€ΠΎΠ², Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΠ½ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ ΠΈ Π² Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… Π΄Ρ€ΡƒΠ³ΠΈΡ… химичСских рСакциях.", + "quests.medium_voltage.mv_sulfuric_acid.title": "БСрная ΠšΠΈΡΠ»ΠΎΡ‚Π°", + "quests.medium_voltage.mv_sulfuric_acid.subtitle": "...Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ ΠΎΠ½ считал H2O, оказалось H2SO4!", + "quests.medium_voltage.mv_sulfuric_acid.desc.1": "Π˜Π½Ρ‚Π΅Ρ€Ρ„Π΅ΠΉΡ EMI ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΏΠ΅Ρ€Π΅Π³Ρ€ΡƒΠΆΠ΅Π½Π½Ρ‹ΠΌ, поэтому Π΄Π°Π²Π°ΠΉΡ‚Π΅ Ρ€Π°Π·Π±Π΅Ρ€Ρ‘ΠΌ ΠΎΠΏΡ‚ΠΈΠΌΠ°Π»ΡŒΠ½Ρ‹ΠΉ способ получСния &eΠ‘Π΅Ρ€Π½ΠΎΠΉ кислоты&r. ΠŸΡ€ΠΎΡ†Π΅ΡΡ Π΅Ρ‘ производства состоит ΠΈΠ· Ρ‚Ρ€Ρ‘Ρ… этапов. Π­Ρ‚ΠΎΡ‚ Ρ…ΠΈΠΌΠΌΠΈΠΊΠ°Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π²ΠΎ ΠΌΠ½ΠΎΠ³ΠΈΡ… Π²Π°ΠΆΠ½Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ…, поэтому стоит ΠΊΠ°ΠΊ ΠΌΠΎΠΆΠ½ΠΎ скорСС Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π΅Π³ΠΎ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½ΠΈΠ΅.", + "quests.medium_voltage.mv_sulfuric_acid.desc.2": "Для Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ процСсса Π²Π°ΠΌ потрСбуСтся &3ВРИ химичСских Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° LV&r. РСкомСндуСтся ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΡƒΡŽ линию производства с &3ΠΎΠ΄Π½ΠΈΠΌ LV Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠΌ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΈΡ‚Π°Ρ‚ΡŒ всС Ρ‚Ρ€ΠΈ ΠΌΠ°ΡˆΠΈΠ½Ρ‹. Π—Π°Ρ‚Π΅ΠΌ ΠΌΠΎΠΆΠ½ΠΎ Π°ΠΊΠΊΡƒΡ€Π°Ρ‚Π½ΠΎ ΡΠΎΠ΅Π΄ΠΈΠ½ΠΈΡ‚ΡŒ Ρ‚Ρ€ΡƒΠ±Ρ‹ для ΠΏΠΎΠ΄Π°Ρ‡ΠΈ Ρ€Π΅Π°Π³Π΅Π½Ρ‚ΠΎΠ² ΠΈ Π²Ρ‹Π²ΠΎΠ΄Π° ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Π°. &9-&r Π¨Π°Π³ 1: ΠŸΡ€ΠΎΡ€Π΅Π°Π³ΠΈΡ€ΡƒΠΉΡ‚Π΅ &aΠ‘Π΅Ρ€Ρƒ&r с &bΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄ΠΎΠΌ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &aДиоксид сСры&r. &9-&r Π¨Π°Π³ 2: ΠŸΡ€ΠΎΡ€Π΅Π°Π³ΠΈΡ€ΡƒΠΉΡ‚Π΅ &aДиоксид сСры&r с Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ &bΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄ΠΎΠΌ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &aВриоксид сСры&r. &9-&r Π¨Π°Π³ 3: ΠŸΡ€ΠΎΡ€Π΅Π°Π³ΠΈΡ€ΡƒΠΉΡ‚Π΅ &aВриоксид сСры&r с &bΠ’ΠΎΠ΄ΠΎΠΉ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &eΠ‘Π΅Ρ€Π½ΡƒΡŽ кислоту&r.", + "quests.medium_voltage.mv_sulfuric_acid.desc.3": "&l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o Π£ Π₯иммичСского Π Π΅Π°ΠΊΡ‚ΠΎΡ€Π° Π² GregTech 5 Π±Ρ‹Π» Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄ΠΈΠ½ слот для Тидкости. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ±ΠΎΠΉΡ‚ΠΈ это ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ΠΈΠ΅, использовали &dΡ…ΠΈΠΌΠΈΡŽ Π² капсулах&f. Автоматизация производства сСрной кислоты Π·Π°ΠΊΠ»ΡŽΡ‡Π°Π»Π°ΡΡŒ Π² Ρ‚ΠΎΠΌ, Ρ‡Ρ‚ΠΎ ΠΎΠ΄Π½Π° ячСйка ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Π»Π°ΡΡŒ ΠΎΡ‚ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΊ машинС ΠΈ Π·Π°Ρ‚Π΅ΠΌ Π²ΠΎΠ·Π²Ρ€Π°Ρ‰Π°Π»Π°ΡΡŒ Π² исходноС ΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΈΠ΅. Π­Ρ‚ΠΎ Π±Ρ‹Π» довольно Π·Π°Π±Π°Π²Π½Ρ‹ΠΉ ΠΈ интСрСсный Π²Ρ‹Π·ΠΎΠ² для Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ, Π½ΠΎ вмСстС с Ρ‚Π΅ΠΌ ΠΈ Π·Π°ΠΏΠ°Ρ€Π½ΠΎΠ΅ Π΄Π΅Π»ΠΎ!", + "quests.medium_voltage.mv_aciditic.title": "Π­Ρ‚ΠΎ Расплавит Π’Π°ΡˆΡƒ ΠŸΠ»ΠΎΡ‚ΡŒ", + "quests.medium_voltage.mv_aciditic.subtitle": "...Ссли Ρ‚Ρ‹ Π½Π΅ ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Π΅ΡˆΡŒ этот квСст.", + "quests.medium_voltage.mv_aciditic.desc.1": "Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π°ΠΌΠ΅Ρ‚ΠΈΡ‚ΡŒ, Ρ‡Ρ‚ΠΎ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Тидкости ΠΎΠ±ΠΎΠ·Π½Π°Ρ‡Π΅Π½Ρ‹ ΠΊΠ°ΠΊ &aΠšΠΈΡΠ»ΠΎΡ‚Ρ‹&r, ΠΈ &9БСрная кислота&r β€” ΠΎΠ΄Π½Π° ΠΈΠ· Π½ΠΈΡ…. Π­Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‡Ρ‚ΠΎ ΠΌΠ½ΠΎΠ³ΠΈΠ΅ Ρ‚Ρ€ΡƒΠ±Ρ‹ Π½Π΅ смогут бСзопасно ΠΈΡ… Ρ‚Ρ€Π°Π½ΡΠΏΠΎΡ€Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ! На ΡƒΡ€ΠΎΠ²Π½Π΅ &bMV&r самыми доступными Ρ‚Ρ€ΡƒΠ±Π°ΠΌΠΈ для кислот, скорСС всСго, Π±ΡƒΠ΄ΡƒΡ‚ &aΠ—ΠΎΠ»ΠΎΡ‚Ρ‹Π΅&r, Π° Π±ΠΎΠ»Π΅Π΅ Π΄ΠΎΡ€ΠΎΠ³ΠΈΠ΅ ΠΈΠ· &aΠ’Π°Π½Π°Π΄ΠΈΠ΅Π²ΠΎΠΉ стали&r ΠΈ &aΠ₯Ρ€ΠΎΠΌΠ°&r Π·Π°ΠΉΠΌΡƒΡ‚ Π²Ρ‚ΠΎΡ€ΠΎΠ΅ ΠΈ Ρ‚Ρ€Π΅Ρ‚ΡŒΠ΅ мСсто. &aΠΠ΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰Π°Ρ ΡΡ‚Π°Π»ΡŒ&r ΠΈΠ»ΠΈ &aΠŸΠΎΠ»ΠΈΡ‚Π΅Ρ‚Ρ€Π°Ρ„Ρ‚ΠΎΡ€ΡΡ‚ΠΈΠ»Π΅Π½&r (ΠΏΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΡΠΊΠ°Π·Π°Ρ‚ΡŒ это быстро) станут подходящими Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π°ΠΌΠΈ, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ достигнСтС уровня &6HV&r.", + "quests.medium_voltage.mv_aciditic.desc.2": "Π£ вас Π΅ΡΡ‚ΡŒ Ρ‚Ρ€ΠΈ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π° хранСния кислот Π½Π° этом этапС: &dБтСклянныС ΠΏΡ€ΠΎΠ±ΠΈΡ€ΠΊΠΈ&r, &dΠ—ΠΎΠ»ΠΎΡ‚Ρ‹Π΅ Π±ΠΎΡ‡ΠΊΠΈ&r ΠΈΠ»ΠΈ &dΠ‘ΡƒΠΏΠ΅Ρ€-Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ‹&r. БтСклянныС ΠΏΡ€ΠΎΠ±ΠΈΡ€ΠΊΠΈ ΠΏΠΎΡ…ΠΎΠΆΠΈ Π½Π° &9ТидкостныС капсулы&r ΠΈ ΠΏΡ€Π΅Π΄Π½Π°Π·Π½Π°Ρ‡Π΅Π½Ρ‹ ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½ΠΎ для кислот. Π—ΠΎΠ»ΠΎΡ‚Ρ‹Π΅ Π±ΠΎΡ‡ΠΊΠΈ β€” всё понятно ΠΈΠ· названия. Π‘ΡƒΠΏΠ΅Ρ€-Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ‹ Ρ€Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΡƒΡŽΡ‚ΡΡ послС получСния &9полиэтилСна&r ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Π»ΡŽΠ±Ρ‹Π΅ Тидкости Π±Π΅Π· ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ΠΈΠΉ. &cАΠ₯ВУНГ!:&r ΠšΠΈΡΠ»ΠΎΡ‚Ρ‹ Π² нСподходящих Ρ‚Ρ€ΡƒΠ±Π°Ρ… Π²Ρ‹Π·Ρ‹Π²Π°ΡŽΡ‚ &cΠ£Ρ‚Π΅Ρ‡ΠΊΠ£&r, &cΠ Π°Π·Ρ€ΡƒΡˆΠ΅Π½ΠΈΠ΅ Ρ‚Ρ€ΡƒΠ±&r ΠΈ Π²Ρ‹ΡΠΎΠΊΡƒΡŽ Π²Π΅Ρ€ΠΎΡΡ‚Π½ΠΎΡΡ‚ΡŒ &cсмСрти&r! Π‘ΡƒΠ΄ΡŒΡ‚Π΅ остороТны! &l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o ΠœΠ΅Ρ…Π°Π½ΠΈΠΊΠ° транспортировки ΠΈ хранСния кислот взята ΠΈΠ· GregTech 6.", + "quests.medium_voltage.mv_aciditic.task": "НС Π²ΠΎΠ»Π½ΡƒΠΉΡ‚Π΅ΡΡŒ, я ΡˆΠ°Ρ€ΡŽ Π·Π° кислоты...", + "quests.medium_voltage.mv_hydrochloric.title": "Боляная ΠšΠΈΡΠ»ΠΎΡ‚Π°", + "quests.medium_voltage.mv_hydrochloric.subtitle": "Π’Π°ΠΌ понадобится ΠšΠΈΠ»ΠΎΠ›ΠΈΡ‚Ρ€Ρ‹ этого!", + "quests.medium_voltage.mv_hydrochloric.desc": "ΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &9ΡΠΎΠ»ΡΠ½ΡƒΡŽ кислоту&r, смСшав &aΠ²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄&r ΠΈ &aΡ…Π»ΠΎΡ€&r. Π­Ρ‚Π° кислота Ρ‚Π°ΠΊΠΆΠ΅ образуСтся ΠΊΠ°ΠΊ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹ΠΉ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ Π²ΠΎ ΠΌΠ½ΠΎΠ³ΠΈΡ… рСакциях с участиСм &aΡ…Π»ΠΎΡ€Π°&r. Π’ зависимости ΠΎΡ‚ вашСй схСмы производства, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π²Π°ΠΌ Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ потрСбуСтся ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π΅Ρ‘ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ.", + "quests.medium_voltage.mv_hydrogen.title": "Π’ΠΎΠ΄ΠΎΡ€ΠΎΠ΄", + "quests.medium_voltage.mv_hydrogen.subtitle": "Π’Ρ‹ Π·Π½Π°Π΅Ρ‚Π΅ ΠΎ Π²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄Π΅, Π²Π΅Ρ€Π½ΠΎ?", + "quests.medium_voltage.mv_hydrogen.desc": "БущСствуСт &aΠΊΡƒΡ‡Π° способов&r ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &dΠ²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄&r β€” часто ΠΎΠ½ появляСтся ΠΊΠ°ΠΊ &aΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹ΠΉ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚&r Π² Π΄Ρ€ΡƒΠ³ΠΈΡ… химичСских рСакциях. Π’ &dΠ½Π΅Ρ„Ρ‚Π΅Ρ…ΠΈΠΌΠΈΠΈ&r Π²Ρ‹ Π±ΡƒΠ΄Π΅Ρ‚Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π°Ρ‚ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ &dΠΌΠ΅Ρ‚Π°Π½Π°&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ &aΡΠ»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·ΠΎΠ²Π°Ρ‚ΡŒ&r для получСния &dΠ²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄Π°&r. Π’Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·ΠΎΠ²Π°Ρ‚ΡŒ &9Π²ΠΎΠ΄Ρƒ&r, Π½ΠΎ ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &9ΠΌΠΎΡ€ΡΠΊΡƒΡŽ Π²ΠΎΠ΄Ρƒ&r β€” ΠΎΠ½Π° Π΄Π°Ρ‘Ρ‚ Π±ΠΎΠ»Π΅Π΅ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Π΅ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹. &eБыстрый способ&r β€” это прямая рСакция &9Π²ΠΎΠ΄Ρ‹&r с &dΠΌΠ΅Ρ‚Π°Π½ΠΎΠΌ&r, Π½ΠΎ этот ΠΌΠ΅Ρ‚ΠΎΠ΄ доступСн Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &6HV&r ΠΈ ΠΈΠ·Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎ &eΡ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ довольно ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎ&r.", + "quests.medium_voltage.mv_chlorine.title": "Π₯Π»ΠΎΡ€", + "quests.medium_voltage.mv_chlorine.subtitle": "Π‘ΠΎΠ»Π΅Π½Ρ‹ΠΉ Π³Π°Π·", + "quests.medium_voltage.mv_chlorine.desc": "&dΠ₯Π»ΠΎΡ€&r β€” ΠΊΠ»ΡŽΡ‡Π΅Π²ΠΎΠΉ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ вашСго химичСского арсСнала. Π•Π³ΠΎ понадобится &dΠΌΠ½ΠΎΠ³ΠΎ&r для Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… Ρ€Π΅Π°ΠΊΡ†ΠΈΠΉ ΠΈ этапов ΠΊΡ€Π°Ρ„Ρ‚Π°, пСрвая ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… β€” &dсоляная кислота&r. БущСствуСт мноТСство способов ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &dΡ…Π»ΠΎΡ€&r, Π½ΠΎ основным источником являСтся &dсоль&r. Она практичСски Π²Π΅Π·Π΄Π΅, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌ с поиском Π½Π΅ Π²ΠΎΠ·Π½ΠΈΠΊΠ½Π΅Ρ‚. ΠœΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ &aΡΠ»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΌΠΎΡ€ΡΠΊΡƒΡŽ Π²ΠΎΠ΄Ρƒ&r Π½Π° Ρ€Π°Π½Π½Π΅ΠΌ этапС, Π½ΠΎ ΠΈΠΌΠ΅ΠΉΡ‚Π΅ Π² Π²ΠΈΠ΄Ρƒ β€” этот процСсс &eΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹ΠΉ&r.", + "quests.medium_voltage.mv_seawater.title": "ΠœΠΎΡ€ΡΠΊΠ°Ρ Π²ΠΎΠ΄Π°", + "quests.medium_voltage.mv_seawater.subtitle": "Π¨ΠΈΡ€ΠΎΠΊΠΈΠΉ, ΠΊΠ°ΠΊ ΠΎΠΊΠ΅Π°Π½...", + "quests.medium_voltage.mv_seawater.desc": "Π­Ρ‚ΠΎΡ‚ квСст создан, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ΄Ρ‡Π΅Ρ€ΠΊΠ½ΡƒΡ‚ΡŒ Π½Π°Π»ΠΈΡ‡ΠΈΠ΅ &9морской Π²ΠΎΠ΄Ρ‹&r Π² &aTerrafirmaCraft&r. Π’Ρ‹ Π»Π΅Π³ΠΊΠΎ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &aБСсконСчный источник&r всСго ΠΈΠ· Π΄Π²ΡƒΡ… Π²Π΅Π΄Π΅Ρ€ ΠΈ мСханичСской ΠΏΠΎΠΌΠΏΡ‹ ΠΈΠ»ΠΈ Жидкостного ΠΊΠΎΠ»Π»Π΅ΠΊΡ‚ΠΎΡ€Π°. Π—Π°Ρ‚Π΅ΠΌ Π²Ρ‹ смоТСтС &aΡΠ»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Ρ‘&r, получая ΠΊΠ°ΠΊ &dΡ…Π»ΠΎΡ€&r, Ρ‚Π°ΠΊ ΠΈ &dΠ²ΠΎΠ΄ΠΎΡ€ΠΎΠ΄&r.", + "quests.medium_voltage.mv_long_pipe.title": "ΠœΠ°Π³ΠΈΡΡ‚Ρ€Π°Π»ΡŒΠ½Ρ‹Π΅ Π’Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄Ρ‹", + "quests.medium_voltage.mv_long_pipe.subtitle": "Π₯ΠΎΡ‚ΠΈΡ‚Π΅ Π·Π½Π°Ρ‚ΡŒ, ΠΊΠ°ΠΊ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ эти Тидкости?", + "quests.medium_voltage.mv_long_pipe.desc.1": "&3Π­Ρ‚ΠΈ ЖидкостныС Π’Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄Ρ‹&r ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ Ρ‚Ρ€Π°Π½ΡΠΏΠΎΡ€Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Тидкости Π½Π° большиС расстояния. УстановитС ΠΏΠΎ ΠΎΠ΄Π½ΠΎΠΌΡƒ ΠΊΠΎΠ½Ρ†Ρƒ Ρ‚Ρ€ΡƒΠ±Ρ‹ Π½Π° ΠΊΠ°ΠΆΠ΄ΠΎΠΉ ΠΈΠ· ΠΊΠΎΠ½Ρ†ΠΎΠ² вашСго ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚Π° ΠΈ соСдинитС ΠΈΡ… Ρ‚Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄Π½Ρ‹ΠΌΠΈ Π±Π»ΠΎΠΊΠ°ΠΌΠΈ. Π­Ρ‚ΠΈ Ρ‚Ρ€ΡƒΠ±Ρ‹ ΠΌΠ³Π½ΠΎΠ²Π΅Π½Π½ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ с Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ стороны Π½Π° Π²Ρ‹Ρ…ΠΎΠ΄Π½ΡƒΡŽ. ΠŸΡ€ΠΈ этом Ρƒ Π½ΠΈΡ… Π΅ΡΡ‚ΡŒ минимальноС расстояниС ΠΌΠ΅ΠΆΠ΄Ρƒ ΠΊΠΎΠ½Ρ†Π°ΠΌΠΈ Ρ‚Ρ€ΡƒΠ±Ρ‹, поэтому ΠΎΠ½ΠΈ Π½Π΅ подходят для ΠΊΠΎΡ€ΠΎΡ‚ΠΊΠΈΡ… дистанций.", + "quests.medium_voltage.mv_long_pipe.desc.2": "Π­Ρ‚ΠΈ Ρ‚Ρ€ΡƒΠ±Ρ‹ ΠΈΠΌΠ΅ΡŽΡ‚ Ρ€Π΅ΠΏΡƒΡ‚Π°Ρ†ΠΈΡŽ &4ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠ½Ρ‹Ρ…&r ΠΏΡ€ΠΈ настройкС. Если ΠΎΠ½ΠΈ сначала Π½Π΅ Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚, ΠΏΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΏΠΎΠ²Π΅Ρ€Π½ΡƒΡ‚ΡŒ ΠΊΠΎΠ½Ρ†Ρ‹ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &eΠšΠ»ΡŽΡ‡Π°&r.", + "quests.medium_voltage.mv_polyethylene.title": "ΠŸΠΎΠ»ΠΈΡΡ‚ΠΈΠ»Π΅Π½", + "quests.medium_voltage.mv_polyethylene.subtitle": "ΠšΠΎΡ€Π΅ΡˆΡŒ! Π­Ρ‚ΠΎ наш ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ ΠΏΠΎΠ»ΠΈΠΌΠ΅Ρ€!", + "quests.medium_voltage.mv_polyethylene.desc": "Если Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΡ€ΠΎΡ‰Π΅, просто Π½Π°Π·Ρ‹Π²Π°ΠΉΡ‚Π΅ это пластиком. Для процСсса ΠΏΠΎΠ»ΠΈΠΌΠ΅Ρ€ΠΈΠ·Π°Ρ†ΠΈΠΈ Π΄ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ &aкислород&r β€” ΠΎΠ½ Π΄Π°Ρ‘Ρ‚ Π»ΡƒΡ‡ΡˆΠΈΠΉ Π²Ρ‹Ρ…ΠΎΠ΄, Ρ‡Π΅ΠΌ Π²ΠΎΠ·Π΄ΡƒΡ…, Π·Π°Ρ‚Π΅ΠΌ ΠΎΡ‚Π²Π΅Ρ€Π΄ΠΈΡ‚Π΅ Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ с Ρ€Π΅Π·ΠΈΠ½ΠΎΠΉ Π² ΠΎΡ‚Π²Π΅Ρ€Π΄ΠΈΡ‚Π΅Π»Π΅. &aΠŸΠΎΠ»ΠΈΡΡ‚ΠΈΠ»Π΅Π½ (ПЭ)&r β€” ΠΊΠ»ΡŽΡ‡ ΠΊ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΠΈΡŽ &6мноТСства Π½ΠΎΠ²Ρ‹Ρ… возмоТностСй&r. Π•Π³ΠΎ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ Π² Π²ΠΈΠ΄Π΅ &dлистов&r ΠΈΠ»ΠΈ &dТидкости&r. &l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o Π’ OreDict ΠΈ Π½Π°Π·Π²Π°Π½ΠΈΠΈ Тидкости для полиэтилСна Π² вСрсии 1.12.2 GTCEu использовалось &bplastic&f для совмСстимости ΠΌΠ΅ΠΆΠ΄Ρƒ ΠΌΠΎΠ΄Π°ΠΌΠΈ.", + "quests.medium_voltage.mv_tank.title": "Π‘ΡƒΠΏΠ΅Ρ€ Π Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€", + "quests.medium_voltage.mv_tank.subtitle": "Π­Ρ‚ΠΈ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ‹ просто ΠΈΠΌΠ±Π°", + "quests.medium_voltage.mv_tank.desc": "НСт, Π° Ссли ΡΠ΅Ρ€ΡŒΡ‘Π·Π½ΠΎ. Π­Ρ‚ΠΎ β€” &cΠ’&6О&eП&aО&bΠ’&9О&5Π•&r пСрСносноС Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅ для хранСния ТидкостСй. &64 000 Π²Ρ‘Π΄Π΅Ρ€ вмСстимости&r β€” Π² ΠΎΠ΄Π½ΠΎΠΌ СдинствСнном Π±Π»ΠΎΠΊΠ΅, Π±Π΅Π· ΠΊΠ°ΠΊΠΈΡ…-Π»ΠΈΠ±ΠΎ ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ΠΈΠΉ ΠΏΠΎ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π΅ ΠΈΠ»ΠΈ кислотности! Как ΠΈ Π±ΠΎΡ‡ΠΊΠΈ, Π‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ‹ &6ΡΠΎΡ…Ρ€Π°Π½ΡΡŽΡ‚ содСрТимоС ΠΏΡ€ΠΈ Ρ€Π°Π·Ρ€ΡƒΡˆΠ΅Π½ΠΈΠΈ&r ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΎΡ‡ΠΈΡ‰Π΅Π½Ρ‹ Π² сСткС ΠΊΡ€Π°Ρ„Ρ‚Π°. Если Ρ‚Π΅Π±Π΅ Π½ΡƒΠΆΠ½ΠΎ &9Π΅Ρ‰Ρ‘ большС&r мСста, ΠΎΠ±Ρ€Π°Ρ‚ΠΈ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ Π½Π° Π‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π²ΡƒΠ°Ρ€Ρ‹ Π±ΠΎΠ»Π΅Π΅ высокого уровня ΠΈΠ»ΠΈ ячСйки хранСния ТидкостСй ΠΈΠ· AE2.", + "quests.medium_voltage.mv_pvc.title": "ΠŸΠΎΠ»ΠΈΠ²ΠΈΠ½ΠΈΠ»Ρ…Π»ΠΎΡ€ΠΈΠ΄", + "quests.medium_voltage.mv_pvc.subtitle": "Π£ вас ΠΎΠ΄ΠΈΠ½ ΠΏΠΎΠ»ΠΈΠΌΠ΅Ρ€, скоро Π±ΡƒΠ΄Π΅Ρ‚ Π΄Π²Π°!", + "quests.medium_voltage.mv_pvc.desc": "&aΠŸΠΎΠ»ΠΈΠ²ΠΈΠ½ΠΈΠ»Ρ…Π»ΠΎΡ€ΠΈΠ΄ (ΠŸΠ’Π₯)&r β€” Ρ‚Ρ€Π΅Ρ‚ΠΈΠΉ ΠΏΠΎ ΠΎΠ±ΡŠΡ‘ΠΌΡƒ производства пластик Π² Ρ€Π΅Π°Π»ΡŒΠ½ΠΎΠΌ ΠΌΠΈΡ€Π΅. Π’ CEu ΠΎΠ½ ΠΌΠΎΠΆΠ΅Ρ‚ Π·Π°ΠΌΠ΅Π½ΡΡ‚ΡŒ полиэтилСн ΠΏΡ€ΠΈ создании &aпластиковых элСктросхСм&r ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² для увСличСния Π²Ρ‹Ρ…ΠΎΠ΄Π°. Начиная с &5EV&r, ΠŸΠ’Π₯ трСбуСтся для изоляции ΠΊΠ°Π±Π΅Π»Π΅ΠΉ. Π’Ρ€ΡƒΠ±Ρ‹ ΠΈΠ· ΠŸΠ’Π₯ ΠΎΠ±Π»Π°Π΄Π°ΡŽΡ‚ &6Π²Ρ‹ΡΠΎΡ‡Π°ΠΉΡˆΠ΅ΠΉ пропускной ΡΠΏΠΎΡΠΎΠ±Π½ΠΎΡΡ‚ΡŒΡŽ&r, хотя Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Ρƒ Ρ‚Π΅ΠΊΡƒΡ‰ΠΈΡ… сборок такая ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ Π½Π΅ Π½ΡƒΠΆΠ½Π°. Всё ΠΆΠ΅ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ Π·Π½Π°Ρ‚ΡŒ ΠΎΠ± этом. &9Π‘ΠΎΠ²Π΅Ρ‚:&r Тидкая Ρ„ΠΎΡ€ΠΌΠ° ΠŸΠ’Π₯ Π½Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π² Π±Π°Π·ΠΎΠ²ΠΎΠΌ GTCEu, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ моТСшь спокойно ΠΏΠ΅Ρ€Π΅Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ ΠŸΠ’Π₯ Π² листы.", + "quests.medium_voltage.mv_boards.title": "ΠŸΠ»Π°ΡΡ‚ΠΈΠΊΠΎΠ²Ρ‹Π΅ Π‘Ρ…Π΅ΠΌΡ‹", + "quests.medium_voltage.mv_boards.subtitle": "Настоящий Casio Π½Π° пластмаскС!", + "quests.medium_voltage.mv_boards.desc": "На этом этапС Ρƒ вас Π΅ΡΡ‚ΡŒ всС инструмСнты, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ &aΠŸΠ»Π°ΡΡ‚ΠΈΠΊΠΎΠ²Ρ‹Π΅ элСктросхСмы&r. ΠŸΠΎΠ»ΠΈΠΌΠ΅Ρ€Ρ‹ Π±ΠΎΠ»Π΅Π΅ высокого уровня Π² Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡Π°Ρ‚ Π²Ρ‹Ρ…ΠΎΠ΄ &aэлСктросхСм&r. Π¦Π΅ΠΏΠΎΡ‡ΠΊΠΈ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² становятся довольно Π΄Π»ΠΈΠ½Π½Ρ‹ΠΌΠΈ, поэтому рСкомСндуСтся ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ большиС ΠΏΠ°Ρ€Ρ‚ΠΈΠΈ Π² Π΄Π²ΡƒΡ… ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Ρ‹Ρ… &3Π₯имичСских Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°Ρ…&r.", + "quests.medium_voltage.mv_sodium_iron.title": "ΠŸΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ натрия / Π₯Π»ΠΎΡ€ΠΈΠ΄ ΠΆΠ΅Π»Π΅Π·Π° III", + "quests.medium_voltage.mv_sodium_iron.subtitle": "Π”Π°Π²Π°ΠΉΡ‚Π΅ Π²Ρ‹Ρ‚Ρ€Π°Π²ΠΈΠΌ мСдь с ΠΏΠ»Π°Ρ‚Ρ‹!", + "quests.medium_voltage.mv_sodium_iron.desc.1": "&aΠŸΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ натрия&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² &9ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ΅ Ρ€ΡƒΠ΄&r Π² &3Π₯имичСской Π²Π°Π½Π½Π΅&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Ρ‚ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ нСдоступны. Π­Ρ‚ΠΎ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ Π½Π΅ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ, Π½ΠΎ довольно Π²Ρ‹Π³ΠΎΠ΄Π½ΠΎ. &lΠ‘Ρ‚ΠΎΡΡ‚ΡŒ, ΠΏΠΎΠ΄ΠΎΠΆΠ΄ΠΈΡ‚Π΅! Π­Ρ‚ΠΎ Π½Π΅ Π³Π»Π°Π²Π½ΠΎΠ΅&r β€” настоящая Ρ‚Π΅ΠΌΠ° этого задания... &aΠŸΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ натрия&r ΠΈ &aΠ₯Π»ΠΎΡ€ΠΈΠ΄ ΠΆΠ΅Π»Π΅Π·Π° III&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ для создания Π±ΠΎΠ»Π΅Π΅ Π΄Π΅ΡˆΡ‘Π²Ρ‹Ρ… &9Π₯ΠΎΡ€ΠΎΡˆΠΈΡ… элСктросхСм&r, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΈΡ… использованиС сниТаСт расход сСрСбра Π² Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ Ρ€Π°Π·Π°. Они Ρ‚Π°ΠΊΠΆΠ΅ &dΠ½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹&r для производства &9ΠŸΠ»Π°ΡΡ‚ΠΈΠΊΠΎΠ²Ρ‹Ρ… элСктросхСм&r.", + "quests.medium_voltage.mv_sodium_iron.desc.2": "ΠŸΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΡΡ‚Π²ΠΎ &aΠŸΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚Π° натрия&r Π΄Π°Ρ‘Ρ‚ &aΠ‘ΠΎΠ»ΡΠ½ΡƒΡŽ кислоту&r Π² качСствС ΠΏΠΎΠ±ΠΎΡ‡Π½ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Π°, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для получСния &aΠ₯Π»ΠΎΡ€ΠΈΠ΄Π° ΠΆΠ΅Π»Π΅Π·Π° III&r. БСйчас это, ΠΏΠΎΠΆΠ°Π»ΡƒΠΉ, Π»ΡƒΡ‡ΡˆΠΈΠΉ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄, Π½ΠΎ Π²Ρ‹Π±ΠΎΡ€ остаётся Π·Π° Π²Π°ΠΌΠΈ. Однако, Ссли Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ пассивно Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ ΠΌΠΎΡ€ΡΠΊΡƒΡŽ Π²ΠΎΠ΄Ρƒ, ΠΏΡƒΡ‚ΡŒ Ρ‡Π΅Ρ€Π΅Π· Π₯Π»ΠΎΡ€ΠΈΠ΄ ΠΆΠ΅Π»Π΅Π·Π° III Π±ΡƒΠ΄Π΅Ρ‚ дСшСвлС ΠΈ ΠΏΡ€ΠΎΡ‰Π΅.", + "quests.medium_voltage.mv_inductor.title": "Π˜Π½Π΄ΡƒΠΊΡ‚ΠΎΡ€Ρ‹", + "quests.medium_voltage.mv_inductor.subtitle": "Z = jwL", + "quests.medium_voltage.mv_inductor.desc": "ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ схСмы, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ благодаря &3Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½ΠΎΠΉ сборочной машинС&r ΠΈ &3ΠŸΠΎΠ»ΠΈΡΡ‚ΠΈΠ»Π΅Π½Ρƒ&r. Если Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ самый Π΄Π΅ΡˆΡ‘Π²Ρ‹ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚, Π²Ρ‹Π±ΠΈΡ€Π°ΠΉΡ‚Π΅ &aНикСль-Ρ†ΠΈΠ½ΠΊΠΎΠ²Ρ‹ΠΉ Ρ„Π΅Ρ€Ρ€ΠΈΡ‚&r.", + "quests.medium_voltage.mv_electronic_components.title": "Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹", + "quests.medium_voltage.mv_electronic_components.subtitle": "Π‘Π°Π·Π° систСмы развития GT.", + "quests.medium_voltage.mv_electronic_components.desc": "Π”Π°Π²Π°ΠΉΡ‚Π΅ ΠΏΠΎΠ³ΠΎΠ²ΠΎΡ€ΠΈΠΌ ΠΎΠ± &dΠ­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½Π½Ρ‹Ρ… ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Π°Ρ…&r ΠΈΠ· &dGregTech&r. Они ΡΠ²Π»ΡΡŽΡ‚ΡΡ &cΠΊΠ»ΡŽΡ‡Π΅Π²ΠΎΠΉ Ρ‡Π°ΡΡ‚ΡŒΡŽ&r прогрСссии ΠΌΠΎΠ΄Π° ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ для создания &aвсСх схСм&r Π² ΠΈΠ³Ρ€Π΅. Π‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ² ΠΈΠΌΠ΅ΡŽΡ‚ &aнСсколько Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ²&r. Π’ зависимости ΠΎΡ‚ Π²Ρ‹Π±Ρ€Π°Π½Π½Ρ‹Ρ… &9ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ²&r Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &eΠ»ΡƒΡ‡ΡˆΠΈΠΉ Π²Ρ‹Ρ…ΠΎΠ΄&r. Π Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΎΠ·Π½Π°ΠΊΠΎΠΌΠΈΡ‚ΡŒΡΡ с &aEMI&r ΠΈ Π²Ρ‹Π±Ρ€Π°Ρ‚ΡŒ Ρ‚Π΅, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ подходят ΠΈΠΌΠ΅Π½Π½ΠΎ Π²Π°ΠΌ. Π­Ρ‚ΠΈ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ &cбольшими партиями&r β€” для Π²Π°ΡˆΠΈΡ… Π±ΡƒΠ΄ΡƒΡ‰ΠΈΡ… схСм потрСбуСтся &eΠΎΡ‡Π΅Π½ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ&r. Для &dВранзисторов&r Π²Π°ΠΌ понадобятся &5ΠšΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²Ρ‹Π΅ слитки&r... Π½ΠΎ ΠΊ этому ΠΌΠΎΠΌΠ΅Π½Ρ‚Ρƒ Π²Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ ΡƒΠΆΠ΅ &cΡ…ΠΎΡ€ΠΎΡˆΠΎ Ρ€Π°Π·Π±ΠΈΡ€Π°Ρ‚ΡŒΡΡ&r Π² &cΡ€Π°Π±ΠΎΡ‚Π΅ с горячими ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Π°ΠΌΠΈ&r, Π²Π΅Ρ€Π½ΠΎ?", + "quests.medium_voltage.mv_best_lv.title": "Π₯ΠΎΡ€ΠΎΡˆΠΈΠ΅ LV элСктросхСмы", + "quests.medium_voltage.mv_best_lv.subtitle": "ΠŸΡ€ΠΈΡΡ‚Π½ΠΎ Π±Ρ‹Ρ‚ΡŒ Π»ΡƒΡ‡ΡˆΠΈΠΌ", + "quests.medium_voltage.mv_best_lv.desc": "&6Π›ΡƒΡ‡ΡˆΠΈΠ΅ схСмы LV уровня&r! Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°Ρ‡Π°Ρ‚ΡŒ массовоС производство этих ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ², Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ΠΈ понадобятся Π²Π°ΠΌ Π½Π° протяТСнии всСй ΠΈΠ³Ρ€Ρ‹. Π‘Ρ‚Π°Ρ€Π°ΠΉΡ‚Π΅ΡΡŒ всСгда ΠΈΠΌΠ΅Ρ‚ΡŒ запас β€” ΠΈΡ… ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ ΡΡŠΠ΅Π΄Π°Π΅Ρ‚ ΠΌΠ½ΠΎΠ³ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ. По Π΄ΠΎΡΡ‚ΠΈΠΆΠ΅Π½ΠΈΡŽ &5EV&r ступСни, ΠΎΡ‚ΠΊΡ€ΠΎΠ΅Ρ‚ способы ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΠΈΡ… Π΅Ρ‰Ρ‘ дСшСвлС.", + "quests.medium_voltage.mv_best_mv.title": "Π₯ΠΎΡ€ΠΎΡˆΠΈΠ΅ MV элСктросхСмы", + "quests.medium_voltage.mv_best_mv.subtitle": "MV Π½Π° высотС", + "quests.medium_voltage.mv_best_mv.desc": "&6Π›ΡƒΡ‡ΡˆΠΈΠ΅ схСмы уровня MV&r! Π’Ρ‹ Π±ΡƒΠ΄Π΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ ΠΈΡ… Π½Π° протяТСнии всСй ΠΈΠ³Ρ€Ρ‹. Π‘ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ (Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &9IV&r) ΠΎΠ½ΠΈ станут Π΅Ρ‰Ρ‘ дСшСвлС.", + "quests.medium_voltage.mv_second_hv.title": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ HV элСктросхСм", + "quests.medium_voltage.mv_second_hv.subtitle": "Π”Π° Π±ΡƒΠ΄Π΅Ρ‚ HV Π³Ρ€ΠΈΠ½Π΄", + "quests.medium_voltage.mv_second_hv.desc": "ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»ΡΠ΅ΠΌ с Π²Π°ΠΆΠ½Ρ‹ΠΌ этапом &bMV Π³Π»Π°Π²Ρ‹&r. Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹Π΅ &6HV&r схСмы β€” Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ Π³ΠΎΡ€Π°Π·Π΄ΠΎ &dдСшСвлС&r ΠΈ ΠΏΡ€ΠΎΡ‰Π΅ Π² ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠΈ. Π’Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ Π±Ρ‹Ρ‚ΡŒ &aΠ³ΠΎΡ‚ΠΎΠ²Ρ‹ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ&r ΠΊ HV Π³Π»Π°Π²Π΅, Ссли Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π΅ ΡΠΎΠ±ΠΈΡ€Π°Π΅Ρ‚Π΅ΡΡŒ Π΅Ρ‰Ρ‘ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ производство энСргии.", + "quests.medium_voltage.mv_circuit_assembler.title": "Π’Π°Ρˆ Π²Ρ‚ΠΎΡ€ΠΎΠΉ Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ микросхСм", + "quests.medium_voltage.mv_circuit_assembler.subtitle": "Π―ΠΏΠΈΠΈΠΈΠΈΠΈ! Уяхууу...", + "quests.medium_voltage.mv_circuit_assembler.desc": "Как ΠΈ для ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ уровня, &3Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ микросхСм&r β€” ваТная Ρ‡Π°ΡΡ‚ΡŒ прогрСссии, ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°ΡŽΡ‰Π°Ρ Π½ΠΎΠ²Ρ‹ΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ схСм. На этом этапС слСдуСт Ρ€Π°Π·ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ &3Экстрактор&r рядом с вашим Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊΠΎΠΌ. ΠžΡ‚ΠΏΡ€Π°Π²Π»ΡΠΉΡ‚Π΅ дСсятки стаков &aΠŸΡ€ΠΈΠΏΠΎΡ&r Π² Π²ΠΈΠ΄Π΅ слитков, ΠΈ Π²Π°ΠΌ Π½Π΅ придСтся Π±Π΅ΡΠΏΠΎΠΊΠΎΠΈΡ‚ΡŒΡΡ ΠΎ Π΄ΠΎΠ·Π°ΠΏΡ€Π°Π²ΠΊΠ΅.", + "quests.medium_voltage.mv_more_lv.title": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ LV элСктросхСм", + "quests.medium_voltage.mv_more_lv.subtitle": "Π’Ρ‹ Π°ΠΏΠ½ΡƒΠ»ΠΈ Π½ΠΎΠ²Ρ‹ΠΉ Π»Π²Π» элСктросхСм!", + "quests.medium_voltage.mv_more_lv.desc.1": "Π˜Π½Ρ‚Π΅Π³Ρ€Π°Π»ΡŒΠ½Π°Ρ схСма β€” это Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½Π°Ρ &7LV &aсхСма&r, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΏΡ€ΠΎΡ‰Π΅ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π² Π±ΠΎΠ»ΡŒΡˆΠΈΡ… количСствах ΠΈ ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ Π΄ΠΎ &bMV&r (Π° Π·Π°Ρ‚Π΅ΠΌ ΠΈ Π΄ΠΎ &6HV&r). &9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π­Ρ‚ΠΎ Π½Π΅ прямоС ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠΏΠΎ стоимости схСм β€” для этого Π½ΡƒΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ. Π’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, это Π²Π°ΠΆΠ½ΠΎΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠΈ ΠΎΠ½ΠΎ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ для доступа ΠΊ &6HV схСмам&r.", + "quests.medium_voltage.mv_more_lv.desc.2": "&l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o ΠŸΡ€ΠΎΠ³Ρ€Π΅ΡΡΠΈΡ схСм Π² GTCEu Π² основном основана Π½Π° прогрСссии ΠΈΠ· GT5u. Она Π±Ρ‹Π»Π° сбалансирована, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π±Ρ‹Ρ‚ΡŒ ΠΌΠ΅Π½Π΅Π΅ ΠΌΡƒΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΉ. &lΠ’ частности&r&o этот ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ схСм, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π±Ρ‹Π» настоящСй... Π»ΠΎΠ²ΡƒΡˆΠΊΠΎΠΉ!", + "quests.medium_voltage.mv_more_mv.title": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ MV элСктросхСм", + "quests.medium_voltage.mv_more_mv.subtitle": "Π‘ΠžΠ›Π¬Π¨Π•... ΠΌΠ½Π΅ Π½ΡƒΠΆΠ½ΠΎ Π‘ΠžΠ›Π¬Π¨Π•!", + "quests.medium_voltage.mv_more_mv.desc": "&bMV&r схСма для ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄Π½ΠΎΠ³ΠΎ уровня, ΠΎΠ½Π° достаточно бСсполСзная. Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ Π΅Ρ‘ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ для создания ΠΏΠ΅Ρ€Π²ΠΎΠΉ &6HV&r схСмы.", + "quests.medium_voltage.mv_first_hv.title": "ΠŸΠ΅Ρ€Π²Ρ‹Π΅ HV элСктросхСмы!", + "quests.medium_voltage.mv_first_hv.subtitle": "...Π½Ρƒ ΠΏΠΎΠ³ΠΎΠ΄ΠΈ, Ρ€Π°Π½ΠΎ Ρ€Π°Π΄ΠΎΠ²Π°Ρ‚ΡŒΡΡ", + "quests.medium_voltage.mv_first_hv.desc": "Ну-с... тСхничСски, ΠΏΠΎΠ»ΡƒΡ‡ΠΈΠ² &6HV&r схСмы ΠΈ Π½Π΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰ΡƒΡŽ ΡΡ‚Π°Π»ΡŒ, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° &6HV&r ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ β€” Π½ΠΎ Π½Π΅ стоит ΡΠΏΠ΅ΡˆΠΈΡ‚ΡŒ. ΠŸΠ΅Ρ€Π²Ρ‹ΠΌ Π΄Π΅Π»ΠΎΠΌ сдСлайтС &3Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ ΠœΠΈΠΊΡ€ΠΎΡΡ…Π΅ΠΌ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ сразу Ρ€Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π½ΠΎΠ²Ρ‹ΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ схСм; здСсь настоящая Π²Ρ‹Π³ΠΎΠ΄Π° β€” Π² Π±ΠΎΠ»Π΅Π΅ Π΄Π΅ΡˆΡ‘Π²Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ….", + "quests.medium_voltage.mv_multi_smelter.title": "ΠœΡƒΠ»ΡŒΡ‚ΠΈΠΏΠ»Π°Π²ΠΈΠ»ΡŒΠ½Ρ", + "quests.medium_voltage.mv_multi_smelter.subtitle": "ВСроятно, самая Π»ΡŽΡ‚Π°Ρ ΠΏΠ΅Ρ‡ΠΊΠ° ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ Π²ΠΈΠ΄Π΅Π»ΠΈ", + "quests.medium_voltage.mv_multi_smelter.desc": "ΠŸΡ€ΠΈ минимальной мощности (ΠšΡƒΠΏΡ€ΠΎΠ½ΠΈΠΊΠ΅Π»Π΅Π²Ρ‹Π΅ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ ΠΈ &7LV&r напряТСниС) &dΠœΡƒΠ»ΡŒΡ‚ΠΈΠΏΠ»Π°Π²ΠΈΠ»ΡŒΠ½Ρ&r пСрСплавляСт 32 ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π° всСго Π·Π° 12 сСкунд β€” это эквивалСнтно &926.7 ΠŸΠ΅Ρ‡Π°ΠΌ&r ΠΈΠ»ΠΈ 3.3 ΠŸΠ°Ρ€ΠΎΠ²Ρ‹ΠΌ ΠΏΠ΅Ρ‡Π°ΠΌ! Если этого нСдостаточно, &aΠ ΠΠ—Π“ΠžΠ&r ΠΏΡ€ΠΈΠΌΠ΅Π½ΠΈΠΌ ΠΏΡ€ΠΈ достаточном напряТСнии. И Π΅Ρ‰Ρ‘ Π»ΡƒΡ‡ΡˆΠ΅ β€” ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ Π±ΠΎΠ»Π΅Π΅ высокого уровня &3ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°ΡŽΡ‚ количСство ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΎΠ½Π° ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²Π»ΡΡ‚ΡŒ &dΠΏΠ°Ρ€Π°Π»Π»Π΅Π»ΡŒΠ½ΠΎ&r!", + "quests.medium_voltage.hv_machine_hull.title": "HV ΠžΠ±ΠΎΠ»ΠΎΡ‡ΠΊΠ° ΠΌΠ°ΡˆΠΈΠ½Ρ‹", + "quests.medium_voltage.hv_machine_hull.subtitle": "Π­Ρ‚ΠΎ ΡƒΠΆΠ΅ ваша чСтвСртая ΠΎΠ±ΠΎΠ»ΠΎΡ‡ΠΊΠ°! Π­Ρ‚ΠΎ прогрСсс Π±Ρ€ΠΎ!", + "quests.medium_voltage.hv_machine_hull.desc": "Π’ΠΎΡ‚ ΠΎΠ½Π° β€” &6ΠžΠ±ΠΎΠ»ΠΎΡ‡ΠΊΠ° ΠΌΠ°ΡˆΠΈΠ½Ρ‹ HV&r! ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»ΡΠ΅ΠΌ с достиТСниСм этого Π²Π°ΠΆΠ½ΠΎΠ³ΠΎ этапа. Π’Π°ΠΌ ΠΏΡ€ΠΈΡˆΠ»ΠΎΡΡŒ ΡƒΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ &dΡ…ΠΈΠΌΠΈΠΊΠ°Ρ‚Π°ΠΌΠΈ&r, ΡƒΠ»ΡƒΡ‡ΡˆΠ°Ρ‚ΡŒ &dΠ­Π”ΠŸ&r, Π·Π°ΠΌΠ΅ΡˆΠΈΠ²Π°Ρ‚ΡŒ &cΠ½ΠΎΠ²Ρ‹ΠΉ сплав&r ΠΈ Π·Π½Π°ΠΊΠΎΠΌΠΈΡ‚ΡŒΡΡ с &aПодлоТками&r ΠΈ &aΠ›Π°Π·Π΅Ρ€Π½Ρ‹ΠΌ Π³Ρ€Π°Π²Π΅Ρ€ΠΎΠΌ&r. НадССмся, вашС &aΠΏΠΎΠ½ΠΈΠΌΠ°Π½ΠΈΠ΅ GregTech&r с ΠΊΠ°ΠΆΠ΄Ρ‹ΠΌ Π΄Π½Ρ‘ΠΌ становится всё Π³Π»ΡƒΠ±ΠΆΠ΅. ΠžΡ‚Π½Ρ‹Π½Π΅ &eΡΠ»ΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ Π±ΡƒΠ΄Π΅Ρ‚ расти&r Π½Π° ΠΊΠ°ΠΆΠ΄ΠΎΠΌ ΡƒΡ€ΠΎΠ²Π½Π΅, Π½ΠΎ Π²Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ доступ ΠΊ &aΠ½ΠΎΠ²Ρ‹ΠΌ машинам&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ упростят Ρ€Π°Π½Π½ΠΈΠ΅ процСссы производства ΠΈ прСдставят &9интСрСсныС Π½ΠΎΠ²Ρ‹Π΅ ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠΈ&r. Π₯отя Π²Ρ‹ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‡Ρ‚ΠΎ ΠΎΡ‚ΠΊΡ€Ρ‹Π»ΠΈ &6Π³Π»Π°Π²Ρƒ HV&r, ΠΏΠΎΠΌΠ½ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ это всСго лишь &aΠ³Π»Π°Π²Π°&r ΠΈΠ· основных этапов &bΠ³Π»Π°Π²Ρ‹ MV&r. Если Π²Ρ‹ Π΅Ρ‰Ρ‘ Π½Π΅ ΠΎΡ‚ΠΊΡ€Ρ‹Π»ΠΈ &6Π’Ρ‚ΠΎΡ€ΡƒΡŽ HV-схСму&r, Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ это ΠΏΡ€Π΅ΠΆΠ΄Π΅, Ρ‡Π΅ΠΌ Π΄Π²ΠΈΠ³Π°Ρ‚ΡŒΡΡ дальшС. Π’ ΠΏΡ€ΠΎΡ‚ΠΈΠ²Π½ΠΎΠΌ случаС β€” &aΠ”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π² HV!&r", + "quests.medium_voltage.mv_stainless.title": "ΠΠ΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰Π°Ρ ΡΡ‚Π°Π»ΡŒ", + "quests.medium_voltage.mv_stainless.subtitle": "HV этап Π² Ρ‚Π²ΠΎΠΈΡ… Ρ€ΡƒΠΊΠ°Ρ…", + "quests.medium_voltage.mv_stainless.desc.1": "Π›ΡŽΠ±Π°Ρ ΡΡ‚Π°Π»ΡŒ, с ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ Π²Ρ‹ ΡΡ‚Π°Π»ΠΊΠΈΠ²Π°Π΅Ρ‚Π΅ΡΡŒ Π² повсСднСвной ΠΆΠΈΠ·Π½ΠΈ, скорСС всСго β€” &7Π½Π΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰Π°Ρ&r. Она Ρ‡Ρ€Π΅Π·Π²Ρ‹Ρ‡Π°ΠΉΠ½ΠΎ устойчива ΠΊ ΠΊΠΎΡ€Ρ€ΠΎΠ·ΠΈΠΈ.&r\n\nΠΠ΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰Π°Ρ ΡΡ‚Π°Π»ΡŒ β€” это ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π» для ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ² &6HV&r, ΠΊΠ°ΠΊ алюминий для &bMV&r ΠΈ ΡΡ‚Π°Π»ΡŒ для &7LV&r. Она Ρ‚Π°ΠΊΠΆΠ΅ ΡˆΠΈΡ€ΠΎΠΊΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π² &3Π Π΅ΠΊΡ‚ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΠΎΠ½Π½ΠΎΠΉ ΠΊΠΎΠ»ΠΎΠ½Π½Π΅&r.\n\nДля Π΅Ρ‘ производства трСбуСтся &cΡ…Ρ€ΠΎΠΌ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ прСимущСствСнно ΠΈΠ· &cΡ€ΡƒΠ±ΠΈΠ½Π°&r ΠΈΠ»ΠΈ &cΡ…Ρ€ΠΎΠΌΠΈΡ‚Π°&r, ΠΈ &2ΠΌΠ°Ρ€Π³Π°Π½Π΅Ρ†Π°&r, Π΄ΠΎΠ±Ρ‹Π²Π°Π΅ΠΌΠΎΠ³ΠΎ ΠΈΠ· &2ΠΏΠΈΡ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚Π°&r ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… Ρ€ΡƒΠ΄Π½Ρ‹Ρ… ΠΆΠΈΠ».", + "quests.medium_voltage.mv_stainless.desc.2": "Π’Ρ‹ΠΏΠ»Π°Π²ΠΊΠ° Π½Π΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰Π΅ΠΉ стали Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ &dHV напряТСния&r, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Ρƒ вас, скорСС всСго, ΠΏΠΎΠΊΠ° Π½Π΅Ρ‚. ΠœΠ°ΡΡˆΡ‚Π°Π±ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ производства элСктроэнСргии β€” ΠΊΠ»ΡŽΡ‡Π΅Π²ΠΎΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚. Если Π²Ρ‹ &9Π΅Ρ‰Ρ‘ этого Π½Π΅ сдСлали&r, Ρ‚Ρ€ стоит Π·Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ Π²Ρ‚ΠΎΡ€ΡƒΡŽ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π”ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠŸΠ΅Ρ‡ΡŒ (Π­Π”ΠŸ). Они ΠΌΠΎΠ³ΡƒΡ‚ Π΄Π΅Π»ΠΈΡ‚ΡŒ ΠΎΠ±Ρ‰ΠΈΠ΅ Π±Π»ΠΎΠΊΠΈ структур, поэтому Π²Ρ‚ΠΎΡ€ΠΎΠΉ Π­Π”ΠŸ трСбуСтся всСго &a10 ΠΊΡƒΠΏΡ€ΠΎΠ½ΠΈΠΊΠ΅Π»Π΅Π²Ρ‹Ρ… ΠΊΠ°Ρ‚ΡƒΡˆΠ΅ΠΊ&r вмСсто 16. ΠžΠ΄Π½Ρƒ Π­Π”ΠŸ запускайтС ΠΎΡ‚ &bMV&r напряТСния для алюминия ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ², Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‰ΠΈΡ… &bMV&r элСктроэнСргии, Π° Π΄Ρ€ΡƒΠ³ΠΎΠΉ β€” ΠΎΡ‚ &6HV&r с &32 MV энСргСтичСскими Ρ€Π°Π·ΡŠΠ΅ΠΌΠ°ΠΌΠΈ&r.", + "quests.medium_voltage.mv_energy_hatch.title": "ΠŸΡ€ΠΎΠΊΠ°Ρ‡Π°ΠΉΡ‚Π΅ свою Π­Π”ΠŸ!", + "quests.medium_voltage.mv_energy_hatch.subtitle": "LV ΡƒΠΆΠ΅ совсСм ΡΡ‚Π°Ρ€ΡŒΡ‘", + "quests.medium_voltage.mv_energy_hatch.desc": "&7LV Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€&r ΠΈ Π΄Π²Π΅ &7LV&r энСргСтичСских Ρ€Π°Π·ΡŠΠ΅ΠΌΠ°, скорСС всСго, ΡƒΠΆΠ΅ Π½Π΅ вывозят. Π”Π°Π²Π°ΠΉΡ‚Π΅ это исправим! Π£Π»ΡƒΡ‡ΡˆΠΈΡ‚Π΅ Π²Π°ΡˆΡƒ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π”ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠŸΠ΅Ρ‡ΡŒ, Π΄ΠΎΠ±Π°Π²ΠΈΠ² &3MV энСргСтичСский Ρ€Π°Π·ΡŠΠ΅ΠΌ&r. Π’Π΅ΠΏΠ΅Ρ€ΡŒ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π°ΠΏΡƒΡΠΊΠ°Ρ‚ΡŒ Π΅Π³ΠΎ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &bMV&r напряТСния Π±Π΅Π· Π²ΠΎΠ·Π½ΠΈ с &3трансформаторами&r.", + "quests.medium_voltage.mv_kanthal_coil.title": "ΠšΠ°Π½Ρ‚Π°Π»ΠΎΠ²Ρ‹Π΅ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ", + "quests.medium_voltage.mv_kanthal_coil.subtitle": "Π—Π΄Π΅ΡΡŒ Π±ΡƒΠ΄Π΅Ρ‚ ΠΆΠ°Ρ€ΠΊΠΎ?", + "quests.medium_voltage.mv_kanthal_coil.desc": "&3ΠšΠ°Π½Ρ‚Π°Π»ΠΎΠ²Ρ‹Π΅ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ&r β€” ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ Π²Π°ΠΆΠ½Ρ‹ΠΉ шаг Π² Ρ€Π°Π·Π²ΠΈΡ‚ΠΈΠΈ. Они ΠΏΠΎΠ²Ρ‹ΡˆΠ°ΡŽΡ‚ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ вашСй &3ЭлСктричСской Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ&r Π΄ΠΎ &d2700K&r, позволяя ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ Π½ΠΎΠ²Ρ‹Π΅ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹. Π’Π°ΠΊΠΆΠ΅ ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ &eΡƒΡΠΊΠΎΡ€ΡΡ‚ΡŒ&r ΠΌΠ΅Π½Π΅Π΅ горячиС Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ β€” подробности смотритС Π² Ρ€Π°Π·Π΄Π΅Π»Π΅ &aΠ­Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΠΊΠ° GregTech&r Π² Π»Π΅Π²ΠΎΠΌ Π²Π΅Ρ€Ρ…Π½Π΅ΠΌ ΡƒΠ³Π»Ρƒ. ΠŸΠΎΠΌΠ½ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ Π² Π­Π”ΠŸ &cнСльзя&r ΡΠΌΠ΅ΡˆΠΈΠ²Π°Ρ‚ΡŒ ΠΊΠ°Ρ‚ΡƒΡˆΠΊΠΈ Ρ€Π°Π·Π½Ρ‹Ρ… Ρ‚ΠΈΠΏΠΎΠ².", + "quests.medium_voltage.mv_kanthal_ingot.title": "ΠšΠ°Π½Ρ‚Π°Π»", + "quests.medium_voltage.mv_kanthal_ingot.subtitle": "Он Ρ‚Π°ΠΊΠΎΠΉ горячий...", + "quests.medium_voltage.mv_kanthal_ingot.desc.1": "Ооо Господи, 128 слитков β€” этого &cΠšΠ°Π½Ρ‚Π°Π»Π°&r... И Ρ‡Ρ‚ΠΎ это Π·Π° &cгорячий слиток&r Ρ‚Π°ΠΊΠΎΠΉ? &cΠ”Π°, ΠΎΠΏΡΡ‚ΡŒ!&r Π’ΠΎΡ‚ Π²Π°ΠΌ ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠ°, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ ΠΏΠΎΠΌΠ½ΠΈΡ‚ΡŒ ΠΈΠ· &aTerrafirmaCraft&r β€” это Π±Ρ‹Π»ΠΎ Π½Π΅ Ρ‚Π°ΠΊ Π΄Π°Π²Π½ΠΎ, ΠΏΡ€Π°Π²Π΄Π°? &cГорячиС слитки&r &cΠΎΠ±ΠΎΠΆΠ³ΡƒΡ‚ вас&r, Ссли Π²Ρ‹ Π±ΡƒΠ΄Π΅Ρ‚Π΅ Π½ΠΎΡΠΈΡ‚ΡŒ ΠΈΡ… Π±Π΅Π· &cΠΊΠ°ΠΊΠΈΡ…-Π»ΠΈΠ±ΠΎ приспособлСний&r, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, Ρ‰ΠΈΠΏΡ†ΠΎΠ²... И Π² ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ &aTFC&r, &cΠΎΠ½ΠΈ Π½Π΅ ΠΎΡΡ‚Ρ‹Π²Π°ΡŽΡ‚ сами&r! Π’Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎ &aΠΎΡ…Π»Π°ΠΆΠ΄Π°Ρ‚ΡŒ&r ΠΈΡ….", + "quests.medium_voltage.mv_kanthal_ingot.desc.2": "Для этого помСститС ΠΈΡ… Π² &dΠ₯ΠΈΠΌΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π²Π°Π½Π½Ρƒ&r с &9Π²ΠΎΠ΄ΠΎΠΉ&r β€” ΠΈΠ»ΠΈ Π΅Ρ‰Π΅ Π»ΡƒΡ‡ΡˆΠ΅, с &9дистиллированной Π²ΠΎΠ΄ΠΎΠΉ&r, Ρ‡Ρ‚ΠΎ сократит врСмя охлаТдСния Π½Π° &e50%%&r. ΠΠ°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ &aΠ°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ&r этот процСсс, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π΅ Π½ΠΎΡΠΈΡ‚ΡŒ горячиС слитки Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ. Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &aΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Ρ‚Ρ€ΡƒΠ±Ρ‹&r для прямой ΠΏΠΎΠ΄Π°Ρ‡ΠΈ слитков ΠΈΠ· вашСй &dΠ­Π”ΠŸ&r Π² &dΠ₯ΠΈΠΌΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Π²Π°Π½Π½Ρƒ&r. Π’Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Ρ‚Π΅Π³ΠΈ для &aΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°&r для сортировки горячих слитков &7#forge:hot_ingots*&r.", + "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": "Π’ΠΌΠ΅ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ ΠšΠ°ΠΏΡΡƒΠ»Ρ‹", + "quests.medium_voltage.mv_cells.subtitle": "Π›ΡŽΠ±Π»ΡŽ капсулы... Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π²ΠΌΠ΅ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½Π΅Π΅!", + "quests.medium_voltage.mv_cells.desc": "ΠΠ»ΡŽΠΌΠΈΠ½ΠΈΠ΅Π²Ρ‹Π΅ капсулы β€” ΠΊΡ€ΡƒΡ‚ΠΎΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ со ΡΡ‚Π°Π»ΡŒΠ½Ρ‹ΠΌΠΈ ΠΈΠ»ΠΈ ΡƒΠ½ΠΈΠ²Π΅Ρ€ΡΠ°Π»ΡŒΠ½Ρ‹ΠΌΠΈ капсулами для ТидкостСй.\n\nОни ΠΌΠΎΠ³ΡƒΡ‚ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ любоС Π½Π΅Ρ†Π΅Π»ΠΎΠ΅ количСство Π²Π΅Π΄Π΅Ρ€ Тидкости β€” Π²ΠΏΠ»ΠΎΡ‚ΡŒ Π΄ΠΎ &d32 Π²Π΅Π΄Π΅Ρ€&r!", + "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&7(Π”Π°-Π΄Π°, Ρ€Π΅Π°ΠΊΡ‚ΠΈΠ²Π½Ρ‹ΠΉ Ρ€Π°Π½Π΅Ρ† Π΄ΠΎΠ»ΠΆΠ΅Π½ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π½Π° Ρ€Π΅Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π΅... Π΄Π° Π½Π΅ ΠΏΡ€ΠΈΠ΄ΠΈΡ€Π°ΠΉΡ‚Π΅ΡΡŒ.))0)0)&r", + "quests.medium_voltage.mv_cutter.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Π°Ρ РСзочная Машина", + "quests.medium_voltage.mv_cutter.subtitle": "АпгрСйд, Господа, АпгрСйд", + "quests.medium_voltage.mv_cutter.desc": "&3Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Π°Ρ РСзочная Машина&r Π½ΡƒΠΆΠ΅Π½Π° для Ρ€Π΅Π·ΠΊΠΈ &7ΠΊΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²Ρ‹Ρ… монокристаллов&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΡ… ΠΊ &aΠ»Π°Π·Π΅Ρ€Π½ΠΎΠΉ Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²ΠΊΠ΅&r. РСкомСндуСтся постоянно ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΡŒ &dсмазку&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠΊΡ€Π°Ρ‚ΠΈΡ‚ΡŒ врСмя Ρ€Π°Π±ΠΎΡ‚Ρ‹. Π‘ΠΌΠ°Π·ΠΊΡƒ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΠ· &eΠ½Π΅Ρ„Ρ‚ΠΈ&r ΠΈ &aΡ‚Π°Π»ΡŒΠΊΠ°&r, &2ΠΌΡ‹Π»ΡŒΠ½ΠΎΠ³ΠΎ камня&r ΠΈΠ»ΠΈ &cкрасного камня&r. &7ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅: ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½Π½ΡƒΡŽ Π²Π΅Ρ€ΡΠΈΡŽ &6Greate&r, Ρƒ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ Π΅ΡΡ‚ΡŒ встроСнный Π±Π°ΠΊ для Тидкости.", + "quests.medium_voltage.mv_laser_engraver.title": "ЛазСрная Π“Ρ€Π°Π²ΠΈΡ€ΠΎΠ²ΠΊΠ°", + "quests.medium_voltage.mv_laser_engraver.subtitle": "Пик Ρ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³ΠΈΠΉ, Π½ΠΎ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹ΠΉ...", + "quests.medium_voltage.mv_laser_engraver.desc": "&3Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ Π»Π°Π·Π΅Ρ€Π½Ρ‹ΠΉ Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²Ρ‰ΠΈΠΊ&r Π²Ρ‹ΠΆΠΈΠ³Π°Π΅Ρ‚ ΡƒΠ·ΠΎΡ€Ρ‹ Π½Π° &9ΠΊΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²Ρ‹Ρ… пластинах&r Π² зависимости ΠΎΡ‚ Ρ†Π²Π΅Ρ‚Π° &9Π»ΠΈΠ½Π·Ρ‹&r, которая Π² Π½Π΅ΠΌ установлСна. ПослС Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²ΠΊΠΈ пластины Π½ΡƒΠΆΠ½ΠΎ ΠΏΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ Ρ‡Π΅Ρ€Π΅Π· &3Π Π΅Π·ΠΎΡ‡Π½ΡƒΡŽ ΠΌΠ°ΡˆΠΈΠ½Ρƒ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΈΡ… Π² Ρ‡ΠΈΠΏΡ‹, Π³ΠΎΡ‚ΠΎΠ²Ρ‹Π΅ ΠΊ ΠΈΠ½Π΅Π³Ρ€Π°Ρ†ΠΈΠΈ Π² элСктросхСмы. Π“Ρ€Π°Π²ΠΈΡ€ΠΎΠ²Ρ‰ΠΈΠΊΠΈ Π±ΠΎΠ»Π΅Π΅ высокого уровня ΠΌΠΎΠ³ΡƒΡ‚ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Π±ΠΎΠ»Π΅Π΅ слоТныС пластины для увСдичСния количСства Π²Ρ‹Ρ…ΠΎΠ΄Π° схСм.", + "quests.medium_voltage.mv_silicon_boule.title": "ΠšΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²Π°Ρ лотСрСя", + "quests.medium_voltage.mv_silicon_boule.subtitle": "Π­Ρ‚ΠΈ пластины ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ взаимозамСняСмы.", + "quests.medium_voltage.mv_silicon_boule.desc": "&9ΠœΠΎΠ½ΠΎΠΊΡ€ΠΈΡΡ‚Π°Π»ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠΊΡ€Π΅ΠΌΠ½ΠΈΠΉ&r ΠΈΠ·Π³ΠΎΡ‚Π°Π²Π»ΠΈΠ²Π°ΡŽΡ‚ΡΡ Π² &3ЭлСктричСской Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ (Π­Π”ΠŸ)&r ΠΈΠ· 32 &aΠšΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²ΠΎΠΉ ΠΏΡ‹Π»ΠΈ&r ΠΈ Ρ‰Π΅ΠΏΠΎΡ‚ΠΊΠΈ &aАрсСнида галлия&r. Π˜Ρ… основноС Π½Π°Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ β€” Π»Π΅Π³ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ &6ΠΊΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²Ρ‹Ρ… пластин&r.\n\nПослС создания монокристалла Π½Π°Ρ€Π΅ΠΆΡ‚Π΅ Π΅Π³ΠΎ Π² &3Π Π΅Π·ΠΎΡ‡Π½ΠΎΠΉ МашинС&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ 16 ΠΊΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²Ρ‹Ρ… пластин, Π³ΠΎΡ‚ΠΎΠ²Ρ‹Ρ… ΠΊ Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²ΠΊΠ΅.\n\n&cΠ’Π½ΠΈΠΌΠ°Π½ΠΈΠ΅:&r ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΊΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²Ρ‹ΠΉ монокристалл Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ &47.5 ΠΌΠΈΠ½ΡƒΡ‚&r ΠΏΡ€ΠΈ 120 EU/t ΠΈΠ»ΠΈ 1,080,000 EU! Если Π­Π”ΠŸ потСряСт ΠΏΠΈΡ‚Π°Π½ΠΈΠ΅ Π² процСссС, прогрСсс Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° Π±ΡƒΠ΄Π΅Ρ‚ &cΡΠ±Ρ€Π°ΡΡ‹Π²Π°Ρ‚ΡŒΡΡ&r.\n\nУчитывая это, ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ ΠΊΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²Ρ‹Ρ… монокристаллов Π·Π°Π½ΠΈΠΌΠ°Π΅Ρ‚ ΠΎΡ‡Π΅Π½ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ, поэтому рСкомСндуСтся Π·Π°ΠΏΡƒΡΠΊΠ°Ρ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ ΠΏΠ°Ρ€Π°Π»Π»Π΅Π»ΡŒΠ½ΠΎ Π½Π° Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… &3ЭлСктричСских Π΄ΠΎΠΌΠ΅Π½Π½Ρ‹Ρ… ΠΏΠ΅Ρ‡Π°Ρ…&r ΠΈ Π΄Π΅Π»Π°Ρ‚ΡŒ запас.", + "quests.medium_voltage.mv_silicon.title": "ΠšΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²Π°Ρ ΠΏΡ‹Π»ΡŒ", + "quests.medium_voltage.mv_silicon.subtitle": "Она Π½Π΅ воскрСсит вашь фуфыкс", + "quests.medium_voltage.mv_silicon.desc.1": "К этому Π½Π°Π΄ΠΎ ΠΏΡ€ΠΈΠ²Ρ‹ΠΊΠ½ΡƒΡ‚ΡŒ: Π² &dGregTech&r всСгда Π΅ΡΡ‚ΡŒ &aнСсколько способов&r Π΄ΠΎΡΡ‚ΠΈΡ‡ΡŒ Ρ†Π΅Π»ΠΈ β€” философия, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΌΡ‹ ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ сохранили Π² &aTerrafirmaGreg&r. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &5ΠšΡ€Π΅ΠΌΠ½ΠΈΠΉ&r, ΠΌΡ‹ ΠΏΡ€Π΅Π΄Π»Π°Π³Π°Π΅ΠΌ &cΠ΄Π²Π° основных ΠΌΠ΅Ρ‚ΠΎΠ΄Π°&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Ρƒ тСбя Π±Ρ‹Π»ΠΈ Ρ‡Ρ‘Ρ‚ΠΊΠΈΠ΅ направлСния. Как всСгда, Π²Ρ‹Π±ΠΈΡ€Π°Ρ‚ΡŒ &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. Π₯отя ΠΎΡ‚Π»Π°Π΄ΠΊΠ° процСсса Π΄ΠΎΡ€ΠΎΠΆΠ΅ ΠΈ ΠΏΠ΅Ρ€Π²Ρ‹Π΅ шаги ΠΈΠ΄ΡƒΡ‚ ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎ, этот способ становится &aΠ»ΡƒΡ‡ΡˆΠΈΠΌ&r Π½Π° &6HV&r ΠΈ уровнях Π²Ρ‹ΡˆΠ΅. К Ρ‚ΠΎΠΌΡƒ ΠΆΠ΅ ΠΎΠ½ Π΄Π°Ρ‘Ρ‚ бонус β€” &9кислород&r! Π‘ΡƒΡ‚ΡŒ проста: &aэлСктролизируй ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ диоксида крСмния&r Π² &9кислород&r ΠΈ &5ΠΊΡ€Π΅ΠΌΠ½ΠΈΠΉ&r. &aΠŸΠΎΡ€ΠΎΡˆΠΎΠΊ диоксида крСмния&r ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ΠΌ &9ΠΊΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²ΠΎΠΉ ΠΏΡ‹Π»ΠΈ&r. ΠšΡ€Π΅ΠΌΠ½ΠΈΠΉ добываСтся &aпросСиваниСм гравия&r.\n\nΠ­Ρ‚Ρƒ схСму Π»Π΅Π³ΠΊΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ &aΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ пассивной&r. ΠŸΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ инструмСнт &aEMI Π”Π΅Ρ€Π΅Π²ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ²&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А ΠΈΠΌΠ΅Π½Π½ΠΎ для MV энСргСтичСский Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ Ρ€Π°Π·ΡŠΠ΅ΠΌ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ понадобится, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ Π²Π°ΡˆΡƒ Π­Π”ΠŸ Π΄ΠΎ HV напряТСния.", + "quests.medium_voltage.mv_ic.title": "IC Π§ΠΈΠΏ", + "quests.medium_voltage.mv_ic.subtitle": "I C U", + "quests.medium_voltage.mv_ic.desc": "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Ρ€ΡƒΠ±ΠΈΠ½ΠΎΠ²ΡƒΡŽ Π»ΠΈΠ½Π·Ρƒ, Π²Ρ‹Π³Ρ€Π°Π²ΠΈΡ€ΡƒΠΉΡ‚Π΅ ΠΊΡ€Π΅ΠΌΠ½ΠΈΠ΅Π²ΡƒΡŽ пластину Π² пластину ILC.\n\nΠ”Π°Π»Π΅Π΅ Π½Π°Ρ€Π΅ΠΆΡ‚Π΅ Π΅Ρ‘ Π² Ρ€Π΅Π·ΠΎΡ‡Π½ΠΎΠΉ машинС для получСния IC Ρ‡ΠΈΠΏΠΎΠ² β€” Π²Π°ΠΆΠ½Ρ‹Ρ… ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π±ΡƒΠ΄ΡƒΡ‚ Π½Π΅Π·Π°ΠΌΠ΅Π½ΠΈΠΌΡ‹ ΠΏΡ€ΠΈ создании Π²Π°ΡˆΠΈΡ… Π±ΠΎΠ»Π΅Π΅ ΠΊΡ€ΡƒΡ‚Ρ‹Ρ… элСктросхСм.", + "quests.medium_voltage.mv_ram.title": "Π‘ΠΊΠ°Ρ‡Π°Ρ‚ΡŒ ΠžΠ—Π£ бСсплатно", + "quests.medium_voltage.mv_ram.subtitle": "Π­Ρ‚ΠΎ ΠΈΠ· Daft Punk, Π² курсС?", + "quests.medium_voltage.mv_ram.desc": "&aΠžΠΏΠ΅Ρ€Π°Ρ‚ΠΈΠ²Π½ΠΎΠ΅ Π—Π°ΠΏΠΎΠΌΠΈΠ½Π°ΡŽΡ‰Π΅Π΅ Устройтсво&r ΠΏΡ€ΠΈΠ³ΠΎΠ΄ΠΈΡ‚ΡŒΡΡ Π²Π°ΠΌ для элСктросхСм.", + "quests.medium_voltage.mv_cpu.title": "ΠšΡƒΠΏΠΈ Π½ΠΎΡ€ΠΌΠ°Π»ΡŒΠ½Ρ‹ΠΉ CPU", + "quests.medium_voltage.mv_cpu.subtitle": "Π˜Π³Ρ€ΠΎΠΌΠ°Π½Ρ‹ большС Π»ΡŽΠ±ΡΡ‚ GPU", + "quests.medium_voltage.mv_cpu.desc": "&aΠ¦Π΅Π½Ρ‚Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ процСссор&r β€” ΠΎΠ΄ΠΈΠ½ ΠΈΠ· Π²Π°ΠΆΠ½Π΅ΠΉΡˆΠΈΡ… ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ² вашСй Ρ„Π°Π±Ρ€ΠΈΠΊΠΈ.\n\n&eΠŸΠ»Π°ΡΡ‚ΠΈΠ½Π° процСссора&r β€” особый элСмСнт, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ ΠΏΠΎΠ·ΠΆΠ΅ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &2Π₯имичСской Π Π΅Π°ΠΊΡ†ΠΈΠΈ&r.\n\nНо ΠΏΠΎΠΊΠ° Π²Π°ΠΌ понадобится &eΠ¦Π΅Π½Ρ‚Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ процСссор&r для создания Π»ΡƒΡ‡ΡˆΠΈΡ… &bMV&r схСм Π½Π° Π΄Π°Π½Π½ΠΎΠΌ этапС.\n\nΠžΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ сдСлайтС нСсколько запасных, ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ для Π±ΡƒΠ΄ΡƒΡ‰ΠΈΡ… ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ.", + "quests.medium_voltage.lsb.title": "Новый Π‘ΠΎΡ‡Π΅ΠΊ", + "quests.medium_voltage.lsb.subtitle": "Если Ρƒ вас Π΅ΡΡ‚ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, Ρ‚ΠΎ это сгодится", + "quests.medium_voltage.lsb.desc": "Если Π²Ρ‹ &lвсё Π΅Ρ‰Ρ‘&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚Π΅ &3Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π‘Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ‹ΠΉ ΠšΠΎΡ‚Ρ‘Π»&r, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, стоит ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° &3Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ Π‘Ρ‚Π°Π»ΡŒΠ½ΠΎΠΉ ΠšΠΎΡ‚Ρ‘Π»&r.\n\nОн Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ эффСктивнСС &3Π‘ΠΎΠ»ΡŒΡˆΠΎΠ³ΠΎ Π‘Ρ€ΠΎΠ½Π·ΠΎΠ²ΠΎΠ³ΠΎ ΠšΠΎΡ‚Π»Π°&r ΠΈ Π²Ρ‹Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅Ρ‚ &d1800 mB/t ΠΏΠ°Ρ€Π°&r.\n\nΠ Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ Π²Π°ΠΌ ΠΏΠΎΠΏΡ€ΠΎΠ±ΠΎΠ²Π°Ρ‚ΡŒ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹ Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠΈ энСргии Π½Π° этом этапС.", + "quests.medium_voltage.stainless_greate.title": "ΠΠ΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰Π°Ρ ΡΡ‚Π°Π»ΡŒ Π² Greate", + "quests.medium_voltage.stainless_greate.subtitle": "Π•Ρ‰Π΅ большС Π½Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ", + "quests.medium_voltage.stainless_greate.desc": "Π­Ρ‚ΠΎΡ‚ квСст Π½ΡƒΠΆΠ΅Π½ лишь для Ρ‚ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠΎΠ±Ρ‰ΠΈΡ‚ΡŒ Ρ‚Π΅Π±Π΅, Ρ‡Ρ‚ΠΎ Π½Π° этом этапС Ρƒ Greate Π΅ΡΡ‚ΡŒ Π΅Ρ‰Ρ‘ ΠΎΠ΄Π½ΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅.\n\nΠ’Π΅Π±Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€ΠΈΠ³ΠΎΠ΄ΠΈΡ‚ΡŒΡΡ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ Ρ‚ΠΈΡ€ Π”Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½Ρ‹Ρ… колёс, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ΠΈ Π²Ρ‹Π΄Π°ΡŽΡ‚ ΠΏΠΎΠ»Π½Ρ‹ΠΉ Π½Π°Π±ΠΎΡ€ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ², ΠΊΠ°ΠΊ ΠΈ &6HV Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ&r, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ нСсколько ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ!", + "parts.lang.quests.7": "metal_age ", + "quests.metal_age": "Π’Π΅ΠΊ ΠΌΠ΅Ρ‚Π°Π»Π»ΡƒΡ€Π³ΠΈΠΈ", + "quests.metal_age.subtitle": "Π’Π°ΡˆΠΈ ΠΏΠ΅Ρ€Π²Ρ‹Π΅ тСхнологичСскиС достиТСния.", + "quests.metal_age.weld_bronze_ingots.title": "Π‘Π²Π°Ρ€ΠΈΠ²Π°Π½ΠΈΠ΅ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "quests.metal_age.weld_bronze_ingots.subtitle": "Π― ΠΆΠ΅ Ρ‚Π΅Π±Π΅ Π³ΠΎΠ²ΠΎΡ€ΠΈΠ», ΠΏΡ€ΠΈΠ²Ρ‹ΠΊΠ°ΠΉ ΠΊ этому", + "quests.metal_age.weld_bronze_ingots.desc": "ΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅ 14 слитков любого Ρ‚ΠΈΠΏΠ° Π±Ρ€ΠΎΠ½Π·Ρ‹, Π·Π°Ρ‚Π΅ΠΌ сваритС ΠΈΡ… вмСстС Π² ΠΌΠ΅Π΄Π½ΠΎΠΉ наковальнС.\n\nНаковальня 2-Π³ΠΎ уровня ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π° ΠΈΠ· висмутовой Π±Ρ€ΠΎΠ½Π·Ρ‹, Π±Ρ€ΠΎΠ½Π·Ρ‹ ΠΈΠ»ΠΈ Ρ‡Π΅Ρ€Π½ΠΎΠΉ Π±Ρ€ΠΎΠ½Π·Ρ‹, Π½ΠΎ Π½Π΅ ΠΈΠ· смСси этих Ρ‚Ρ€Π΅Ρ….", + "quests.metal_age.anvil_recycling.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° наковальни?", + "quests.metal_age.anvil_recycling.subtitle": "ΠŸΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ 14 слитков β€” это сСйчас ΠΌΠ½ΠΎΠ³ΠΎ", + "quests.metal_age.anvil_recycling.desc": "Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Ρ‹ создадитС ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ наковальни (Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, пСрСйдя ΠΎΡ‚ ΠΌΠ΅Π΄ΠΈ ΠΊ Π±Ρ€ΠΎΠ½Π·Π΅ ΠΈΠ»ΠΈ ΠΎΡ‚ Π±Ρ€ΠΎΠ½Π·Ρ‹ ΠΊ ΠΊΠΎΠ²Π°Π½ΠΎΠΌΡƒ ΠΆΠ΅Π»Π΅Π·Ρƒ), ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰ΠΈΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ становится практичСски бСсполСзным. Однако, ΠΏΠΎΡΠΊΠΎΠ»ΡŒΠΊΡƒ ΠΎΠ½Π° сдСлан ΠΈΠ· ΠΌΠ΅Ρ‚Π°Π»Π»Π°, &oΠ²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈ Π΄ΠΎΠ»ΠΆΠ½Ρ‹&r ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰ΠΈΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ наковальни ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ Π² ΠΆΠΈΠ΄ΠΊΠΈΠΉ ΠΌΠ΅Ρ‚Π°Π»Π»! Π’ΠΎΠ·ΡŒΠΌΠΈΡ‚Π΅ сосуд ΠΈ помСститС Π΅Π³ΠΎ Π² ΠΏΡ€Π°Π²ΡƒΡŽ Ρ‡Π°ΡΡ‚ΡŒ интСрфСйса ΡƒΠ³ΠΎΠ»ΡŒΠ½ΠΎΠΉ ΠΊΡƒΠ·Π½ΠΈΡ†Ρ‹, Π·Π°Ρ‚Π΅ΠΌ помСститС наковальню ΠΈ ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎ Π½Π°Π³Ρ€Π΅Π²Π°ΠΉΡ‚Π΅ Π΅Π΅, ΠΏΠΎΠΊΠ° ΠΎΠ½Π° Π½Π΅ достигнСт Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹ плавлСния. РасплавлСнный ΠΌΠ΅Ρ‚Π°Π»Π» Π±ΡƒΠ΄Π΅Ρ‚ ΠΎΡΠ΅Π΄Π°Ρ‚ΡŒ Π²Π½ΡƒΡ‚Ρ€ΠΈ сосуда, послС Ρ‡Π΅Π³ΠΎ Π²Ρ‹ смоТСтС ΠΏΠ΅Ρ€Π΅Π»ΠΈΡ‚ΡŒ Π΅Π³ΠΎ ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ Π² слитки ΠΈΠ»ΠΈ Ρ‡Ρ‚ΠΎ-Π»ΠΈΠ±ΠΎ Π΄Ρ€ΡƒΠ³ΠΎΠ΅ ΠΏΠΎ Π²Π°ΡˆΠ΅ΠΌΡƒ ΡƒΡΠΌΠΎΡ‚Ρ€Π΅Π½ΠΈΡŽ!", + "quests.metal_age.bronze_anvil.title": "T2 Наковальня: Π‘Ρ€ΠΎΠ½Π·Π°", + "quests.metal_age.bronze_anvil.subtitle": "ΠžΡ‚ΡΡŽΠ΄Π° начинаСтся эра ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠΎΠ²", + "quests.metal_age.bronze_anvil.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ ΠΌΠ΅Ρ‚Π°Π»Π» Π² Π½Π΅Ρ‡Ρ‚ΠΎ большСС, Ρ‡Π΅ΠΌ просто Π΄Π²ΠΎΠΉΠ½Ρ‹Π΅ слитки, Π²Π°ΠΌ понадобится наковальня Ρ‚ΠΎΠ³ΠΎ ΠΆΠ΅ уровня ΠΈΠ»ΠΈ Π²Ρ‹ΡˆΠ΅. Π Π°Π±ΠΎΡ‚Π° Π½Π° наковальнС ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ слоТной, Π½ΠΎ Π² Ρ€Π°Π·Π΄Π΅Π»Π΅ \"Π‘ΠΎΠ²Π΅Ρ‚Ρ‹ ΠΈ информация TFG\" ΠΏΠΎΠ»Π΅Π²ΠΎΠ³ΠΎ руководства Π΅ΡΡ‚ΡŒ ΡΡ‚Π°Ρ‚ΡŒΡ, Π² ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ это описано Π±ΠΎΠ»Π΅Π΅ ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎ.\n\nΠ‘Ρ€ΠΎΠ½Π·Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ эру Ρ€Π°Π½Π½Π΅ΠΉ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ Π½Π°Ρ‡Π½Π΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΌΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ ΡΠ½Π΅Ρ€Π³ΠΈΡŽ!", + "quests.metal_age.bronze_goodies.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹ Π±Ρ€ΠΎΠ½Π·ΠΎΠ²ΠΎΠ³ΠΎ уровня", + "quests.metal_age.bronze_goodies.subtitle": "О Π½Π΅Ρ‚, Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π΅ Create снова", + "quests.metal_age.bronze_goodies.desc": "Π‘Ρ€ΠΎΠ½Π·Π° β€” достаточно ΠΏΡ€ΠΎΡ‡Π½Ρ‹ΠΉ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π» для создания ΠΏΡ€ΠΎΡΡ‚Π΅ΠΉΡˆΠΈΡ… ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠΎΠ².\n\nΠžΠ·Π½Π°ΠΊΠΎΠΌΡŒΡ‚Π΅ΡΡŒ с Π³Π»Π°Π²ΠΎΠΉ &oРанняя автоматизация&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ!", + "quests.metal_age.copper_diving.title": "МСдноС Π²ΠΎΠ΄ΠΎΠ»Π°Π·Π½ΠΎΠ΅ снаряТСниС", + "quests.metal_age.copper_diving.subtitle": "Как Π±ΡƒΠ΄Ρ‚ΠΎ опасностСй Π² ΡˆΠ°Ρ…Ρ‚Π°Ρ… Π±Ρ‹Π»ΠΎ ΠΌΠ°Π»ΠΎ", + "quests.metal_age.copper_diving.desc": "Π—Π°ΠΌΡƒΡ‡ΠΈΠ»ΠΈΡΡŒ с водоносными слоями Ρ€ΡƒΠ΄Π½Ρ‹Ρ… ΠΆΠΈΠ»? Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ Π½Π°Π±ΠΎΡ€ ΠΌΠ΅Π΄Π½ΠΎΠ³ΠΎ Π²ΠΎΠ΄ΠΎΠ»Π°Π·Π½ΠΎΠ³ΠΎ снаряТСния с запасом Π²ΠΎΠ·Π΄ΡƒΡ…Π° Π½Π° 20 ΠΌΠΈΠ½ΡƒΡ‚!", + "quests.metal_age.bloomery.title": "Π‘Ρ‹Ρ€ΠΎΠ΄ΡƒΡ‚Π½Ρ‹ΠΉ Π³ΠΎΡ€Π½", + "quests.metal_age.bloomery.subtitle": "НСобходимо, Ссли Ρ‚Ρ‹ ΡΡ‚Ρ€Π΅ΠΌΠΈΡˆΡŒΡΡ ΠΊ Π–Π΅Π»Π΅Π·Π½ΠΎΠΌΡƒ Π²Π΅ΠΊΡƒ.", + "quests.metal_age.bloomery.desc": "Π‘Ρ‹Ρ€ΠΎΠ΄ΡƒΡ‚Π½Ρ‹ΠΉ Π³ΠΎΡ€Π½ β€” это ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ ΠΈΠ· TerraFirmaCraft, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ позволяСт ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ ΠΊΠΎΠ²Π°Π½ΠΎΠ΅ ΠΆΠ΅Π»Π΅Π·ΠΎ. ΠŸΡ€ΠΈ ΠΏΠ»Π°Π²Π»Π΅Π½ΠΈΠΈ ΠΆΠ΅Π»Π΅Π·Π° Π² ΠΊΡƒΠ·Π½ΠΈΡ†Π΅ получаСтся сСрый Ρ‡ΡƒΠ³ΡƒΠ½, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ являСтся Ρ…Ρ€ΡƒΠΏΠΊΠΈΠΌ ΠΈ Π΄Π°Π»Π΅ΠΊΠΎ Π½Π΅ Ρ‚Π°ΠΊΠΈΠΌ ΠΏΡ€ΠΎΡ‡Π½Ρ‹ΠΌ ΠΈ Π΄ΠΎΠ»Π³ΠΎΠ²Π΅Ρ‡Π½Ρ‹ΠΌ, ΠΊΠ°ΠΊ ΠΊΠΎΠ²Π°Π½ΠΎΠ΅ ΠΆΠ΅Π»Π΅Π·ΠΎ. \n\nΠ‘Ρ‹Ρ€ΠΎΠ΄ΡƒΡ‚Π½Ρ‹ΠΉ Π³ΠΎΡ€Π½ стоит Π΄ΠΎΡ€ΠΎΠ³ΠΎ, поэтому стоит ΠΏΠΎΡ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ врСмя Π½Π° настройку автоматичСского производства пластин ΠΈ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹. \n\nΠ’ ΠΏΠΎΠ»Π΅Π²ΠΎΠΌ руководствС содСрТится подробная информация ΠΎ Ρ‚ΠΎΠΌ, ΠΊΠ°ΠΊ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ сыродутный Π³ΠΎΡ€Π½, ΠΈ ΠΎ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½Ρ‹Ρ… пропорциях ΠΆΠ΅Π»Π΅Π·Π° ΠΈ дрСвСсного угля, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ для этого Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹.", + "quests.metal_age.mining.title": "Горная Π΄ΠΎΠ±Ρ‹Ρ‡Π° Π² Π²Π΅ΠΊ ΠΌΠ΅Ρ‚Π°Π»Π»ΡƒΡ€Π³ΠΈΠΈ", + "quests.metal_age.mining.subtitle": "ROCK AND STONE!", + "quests.metal_age.mining.desc": "Π”ΠΎΠ±Ρ‹Ρ‡Π° Ρ†Π΅Π½Π½Ρ‹Ρ… рСсурсов ΠΈΠ· Π·Π΅ΠΌΠ»ΠΈ являСтся Π²Π°ΠΆΠ½ΠΎΠΉ Ρ‡Π°ΡΡ‚ΡŒΡŽ этого ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠ°, ΠΈ Π²Π΅ΠΊ ΠΌΠ΅Ρ‚Π°Π»Π»ΡƒΡ€Π³ΠΈΠΈ Π½Π΅ являСтся ΠΈΡΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠ΅ΠΌ! Для прогрСсса Π²Π°ΠΌ понадобится &lΠΌΠ½ΠΎΠ³ΠΎ&r ΠΌΠ΅Ρ‚Π°Π»Π»Π°, ΠΈ ΠΎΠ΄ΠΈΠ½ ΠΈΠ· способов Π΄ΠΎΠ±Ρ‹Ρ‚ΡŒ Π΅Π³ΠΎ сразу ΠΌΠ½ΠΎΠ³ΠΎ β€” это ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΡˆΠ°Ρ…Ρ‚Π΅Ρ€ΡΠΊΠΈΠΉ ΠΌΠΎΠ»ΠΎΡ‚! Π­Ρ‚ΠΎ инструмСнт, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ΅Ρ‚ Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ Π±Π»ΠΎΠΊΠΈ Π² области 3x3x1 Π·Π° счСт Π±ΠΎΠ»Π΅Π΅ ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎΠΉ скорости Π΄ΠΎΠ±Ρ‹Ρ‡ΠΈ. Π’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡƒΠ΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ ΠΊΠ½ΠΎΠΏΠΊΡƒ \"ΠΊΡ€Π°ΡΡ‚ΡŒΡΡ\", Ρ‡Ρ‚ΠΎΠ±Ρ‹ Ρ€Π°Π·Π±ΠΈΠ²Π°Ρ‚ΡŒ ΠΏΠΎ ΠΎΠ΄Π½ΠΎΠΌΡƒ Π±Π»ΠΎΠΊΡƒ Π·Π° Ρ€Π°Π·.", + "quests.metal_age.bellows.title": "ΠšΡƒΠ·Π½Π΅Ρ‡Π½Ρ‹Π΅ ΠΌΠ΅Ρ…Π°", + "quests.metal_age.bellows.subtitle": "Π‘ΠΎΠ»Π΅Π΅ высокиС Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹ β€” Π·Π° Π½Π΅Π±ΠΎΠ»ΡŒΡˆΡƒΡŽ ΠΏΠ»Π°Ρ‚Ρƒ.", + "quests.metal_age.bellows.desc": "ΠšΡƒΠ·Π½Π΅Ρ‡Π½Ρ‹Π΅ ΠΌΠ΅Ρ…Π° β€” это устройство, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π½Π°Π³Π½Π΅Ρ‚Π°Ρ‚ΡŒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π²ΠΎΠ·Π΄ΡƒΡ… Π² огонь ΠΈΠ»ΠΈ ΠΊΡƒΠ·Π½ΠΈΡ†Ρƒ ΠΏΠ΅Ρ€Π΅Π΄ собой, позволяя Ρ‚Π΅ΠΏΠ»Ρƒ, выдСляСмому Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ Π²Π½ΡƒΡ‚Ρ€ΠΈ, Π΄ΠΎΡΡ‚ΠΈΠ³Π°Ρ‚ΡŒ Π±ΠΎΠ»Π΅Π΅ высоких Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€, Ρ‡Π΅ΠΌ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ, Π½ΠΎ Π·Π° счСт сокращСния Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ горСния Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°.\n\nΠ­Ρ‚ΠΈ Π±ΠΎΠ»Π΅Π΅ высокиС Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ для ΠΎΠ±ΠΆΠΈΠ³Π° ΠΊΠ΅Ρ€Π°ΠΌΠΈΠΊΠΈ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ дрСвСсного угля ΠΈΠ»ΠΈ плавлСния ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½Ρ‹Ρ… ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠ².\n\nУголь ΠΈ коксовый ΡƒΠ³ΠΎΠ»ΡŒ ΠΌΠΎΠ³ΡƒΡ‚ Π΄Π°Π²Π°Ρ‚ΡŒ Π²Ρ‹ΡΠΎΠΊΡƒΡŽ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ ΠΈ Π±Π΅Π· Π½Π΅Π³ΠΎ.", + "quests.metal_age.wrought_iron_anvil.title": "T3 Наковальня: КованоС ΠΆΠ΅Π»Π΅Π·ΠΎ", + "quests.metal_age.wrought_iron_anvil.subtitle": "ВодяныС колСса, вСтряныС ΠΌΠ΅Π»ΡŒΠ½ΠΈΡ†Ρ‹ ΠΈ большС Greate", + "quests.metal_age.wrought_iron_anvil.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ наковальни ΠΈΠ· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π° Π²Ρ‹ смоТСтС ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ слитки ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π° Π² Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ пластины, Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ инструмСнтов ΠΈ Ρ‚. Π΄.\n\nΠ˜Π½ΡΡ‚Ρ€ΡƒΠΌΠ΅Π½Ρ‚Ρ‹ ΠΈ доспСхи ΠΈΠ· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π° Π½Π΅ сильно прСвосходят Π±Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ‹Π΅, Π½ΠΎ ΠΎΠ½ΠΈ Π³ΠΎΡ€Π°Π·Π΄ΠΎ Π±ΠΎΠ»Π΅Π΅ ΠΏΡ€ΠΎΡ‡Π½Ρ‹Π΅.\n\nΠ‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅ΠΉ наковальни Π±ΡƒΠ΄Π΅Ρ‚ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ слоТнСС, поэтому сСйчас Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒΡΡ ΠΈ ΠΈΠ·ΡƒΡ‡ΠΈΡ‚ΡŒ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ возмоТности этого ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠ°.", + "quests.metal_age.coke_oven.title": "Коксовая ΠΏΠ΅Ρ‡ΡŒ", + "quests.metal_age.coke_oven.subtitle": "НаконСц-Ρ‚ΠΎ большС Π½ΠΈΠΊΠ°ΠΊΠΈΡ… ΡƒΠ³ΠΎΠ»ΡŒΠ½Ρ‹Ρ… ям", + "quests.metal_age.coke_oven.desc.1": "Коксовая ΠΏΠ΅Ρ‡ΡŒ β€” ваш ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ GregTech! Она позволяСт автоматичСски ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ дрСвСсный ΡƒΠ³ΠΎΠ»ΡŒ ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΌΠΎΡ‰Π½Ρ‹Π΅ Π³ΠΎΡ€ΡŽΡ‡ΠΈΠ΅ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹. Коксовая ΠΏΠ΅Ρ‡ΡŒ сТигаСт ΠΎΠ΄Π½ΠΎ Π±Ρ€Π΅Π²Π½ΠΎ, прСвращая Π΅Π³ΠΎ Π² ΠΎΠ΄ΠΈΠ½ дрСвСсный ΡƒΠ³ΠΎΠ»ΡŒ ΠΈ 250 mb ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚Π°, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ являСтся Π²Π°ΠΆΠ½Ρ‹ΠΌ химичСским вСщСством, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹ΠΌ для ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ дрСвСсины.\n\nЕсли Π²Ρ‹ создадитС Π±Π»ΠΎΠΊ коксовой ΠΏΠ΅Ρ‡ΠΈ ΠΈ Π½Π°ΠΆΠΌΠ΅Ρ‚Π΅ Π½Π° Π½Π΅Π³ΠΎ ΠΊΠ»Π°Π²ΠΈΡˆΡƒ JEI \"ΠžΡ‚ΠΎΠ±Ρ€Π°Π·ΠΈΡ‚ΡŒ примСнСния\" (ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ \"UΒ»\"), Π²Ρ‹ ΡƒΠ²ΠΈΠ΄ΠΈΡ‚Π΅ Π²ΠΊΠ»Π°Π΄ΠΊΡƒ \"Π˜Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΡ ΠΎ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠ΅\", которая ΠΏΠΎΠΊΠ°ΠΆΠ΅Ρ‚ Π²Π°ΠΌ, ΠΊΠ°ΠΊ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΊΠΎΠΊΡΠΎΠ²ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ Π² ΠΌΠΈΡ€Π΅.\n\nΠ’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Ρ€Π°Π·ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π±Π»ΠΎΠΊ коксовой ΠΏΠ΅Ρ‡ΠΈ Π² ΠΌΠΈΡ€Π΅, Π·Π°ΠΆΠ°Ρ‚ΡŒ ΠΊΠ½ΠΎΠΏΠΊΡƒ \"ΠšΡ€Π°ΡΡ‚ΡŒΡΡ\" ΠΈ Π²Π·Π°ΠΈΠΌΠΎΠ΄Π΅ΠΉΡΡ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ с Π½Π΅ΠΉ {Π±Π»ΠΎΠΊΠΎΠΌ коксовой ΠΏΠ΅Ρ‡ΠΈ}, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Π³ΠΎΠ»ΠΎΠ³Ρ€Π°ΠΌΠΌΡƒ Π½Π΅Π΄ΠΎΡΡ‚Π°ΡŽΡ‰ΠΈΡ… Π±Π»ΠΎΠΊΠΎΠ².", + "quests.metal_age.coke_oven.desc.2": "ΠšΠΎΠΊΡΠΎΠ²Ρ‹Π΅ ΠΏΠ΅Ρ‡ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Ρ‹ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ люка коксовой ΠΏΠ΅Ρ‡ΠΈ. Π›ΡŽΠΊ размСщаСтся ΠΏΠΎ Π±ΠΎΠΊΠ°ΠΌ ΠΏΠ΅Ρ‡ΠΈ ΠΈ слуТит ΠΊΠ°ΠΊ Π²Ρ…ΠΎΠ΄ΠΎΠΌ, Ρ‚Π°ΠΊ ΠΈ Π²Ρ‹Ρ…ΠΎΠ΄ΠΎΠΌ для ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΈ ТидкостСй.\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π»Π΅Π³ΠΊΠΎ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΏΡ€ΠΎΡΡ‚ΡƒΡŽ ΠΎΠ΄Π½ΠΎΡΡ‚ΠΎΡ€ΠΎΠ½Π½ΡŽΡŽ ΠΊΠΎΠΊΡΠΎΠ²ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ ящик для Π²Ρ…ΠΎΠ΄Π°, сундук для Π²Ρ‹Ρ…ΠΎΠ΄Π° ΠΈ Π±ΠΎΡ‡ΠΊΡƒ ΠΈΠ»ΠΈ ΠΊΠ΅Π³ для сбора ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚Π°. Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ сундуков, ящики ΠΌΠΎΠ³ΡƒΡ‚ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ ΠΊΡ€ΡƒΠΏΠ½Ρ‹Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ Π±Ρ€Π΅Π²Π½Π°. Π’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΎΠΊΡ€Π°ΡΡ‚ΡŒΡΡ ΠΈ Ρ‰Π΅Π»ΠΊΠ½ΡƒΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ ΠΏΠΎ Ρ‚Ρ€ΡƒΠ±Π°ΠΌ GregTech с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π³Π°Π΅Ρ‡Π½ΠΎΠ³ΠΎ ΠΊΠ»ΡŽΡ‡Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΠΈΡ… односторонними.", + "quests.metal_age.wrought_iron_goodies.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹ уровня ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°", + "quests.metal_age.wrought_iron_goodies.subtitle": "Π§Ρ‚ΠΎ Π·Π° \"Π°Π½Π΄Π΅Π·ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ сплав\" Ρ‚Ρ‹ упомянул?", + "quests.metal_age.wrought_iron_goodies.desc": "Π‘ ΠΊΠΎΠ²Π°Π½Ρ‹ΠΌ ΠΆΠ΅Π»Π΅Π·ΠΎΠΌ Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅Ρ‚Π΅ доступ ΠΊ мСталличСскому корпусу, основС ΠΌΠ½ΠΎΠ³ΠΈΡ… мСханичСских Π±Π»ΠΎΠΊΠΎΠ² Create, Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ ΠΊΠΎΡ€ΠΎΠ±ΠΊΠΈ ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡. Для Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Π±ΠΎΠ»Π΅Π΅ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹Ρ… потрСбуСтся ΡΡ‚Π°Π»ΡŒ, Π½ΠΎ Π½Π° Π΄Π°Π½Π½ΠΎΠΌ этапС ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π΅ΡΠΊΡƒΡŽ Ρ„Π΅Ρ€ΠΌΡƒ Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π² ΠΈ ΡΠ΅Π»ΡŒΡΠΊΠΎΡ…ΠΎΠ·ΡΠΉΡΡ‚Π²Π΅Π½Π½Ρ‹Ρ… ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€.\n\nΠšΡ€Π΅ΠΎΠ·ΠΎΡ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для создания ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹Ρ… дСрСвянных досок, ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΌΠΎΠΆΠ½ΠΎ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ водяныС колСса ΠΈ вСтряныС ΠΌΠ΅Π»ΡŒΠ½ΠΈΡ†Ρ‹, Ρ‡Ρ‚ΠΎ являСтся Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ΠΌ ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с использованиСм силы ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ….", + "quests.metal_age.fire_clay_ingredients.title": "Π˜Π½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ ΠΎΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½ΠΎΠΉ Π³Π»ΠΈΠ½Ρ‹", + "quests.metal_age.fire_clay_ingredients.subtitle": "Π˜ΡΠΏΡ‹Ρ‚Π°Π½ΠΈΠ΅ TerraFirmaCraft.", + "quests.metal_age.fire_clay_ingredients.desc": "ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Π°Ρ Π³Π»ΠΈΠ½Π° β€” это особый Π²ΠΈΠ΄ Π³Π»ΠΈΠ½Ρ‹, состоящий ΠΈΠ· ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚Π°, Π³Ρ€Π°Ρ„ΠΈΡ‚Π° ΠΈ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠΉ Π³Π»ΠΈΠ½Ρ‹, которая ΠΎΠ±Π»Π°Π΄Π°Π΅Ρ‚ особой ΡƒΡΡ‚ΠΎΠΉΡ‡ΠΈΠ²ΠΎΡΡ‚ΡŒΡŽ ΠΊ высоким Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π°ΠΌ. Π•Π΅ Π΄Π²Π° основных примСнСния β€” это Ρ‚ΠΈΠ³Π΅Π»ΡŒ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ являСтся ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½Π½ΠΎΠΉ вСрсиСй сосуда для ΠΏΠ»Π°Π²ΠΊΠΈ ΠΈ создания сплавов, ΠΈ домСнная ΠΏΠ΅Ρ‡ΡŒ (сыродутная), нСобходимая для изготовлСния ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅Π³ΠΎ уровня наковальни ΠΈ ΠΌΠ΅Ρ‚Π°Π»Π»Π° β€” стали.\n\nΠ‘ΠΊΠΎΡ€Π΅Π΅ всСго, Π²Π°ΠΌ придСтся ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒΡΡ ΠΎΡ‡Π΅Π½ΡŒ Π΄Π°Π»Π΅ΠΊΠΎ ΠΎΡ‚ своСй Π±Π°Π·Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΄ΠΎΠ±Ρ‹Ρ‚ΡŒ ΠΈ Π³Ρ€Π°Ρ„ΠΈΡ‚, ΠΈ ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²ΡƒΡŽ Π³Π»ΠΈΠ½Ρƒ, поэтому ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΊΠ° β€” это ΠΊΠ»ΡŽΡ‡ ΠΊ успСху!", + "quests.metal_age.overworld_kaolin.title": "Π˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊ ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚Π°: Π’Π΅Ρ€Ρ…Π½ΠΈΠΉ ΠΌΠΈΡ€", + "quests.metal_age.overworld_kaolin.subtitle": "Π£ΠΏΠ»Ρ‹Π»ΠΈ ΠΈ ΠΏΡ€ΠΈΠΏΠ»Ρ‹Π»ΠΈ, ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠ΅ Π½Π° 20 ΠΌΠΈΠ½ΡƒΡ‚", + "quests.metal_age.overworld_kaolin.desc": "ΠšΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²Π°Ρ Π³Π»ΠΈΠ½Π° встрСчаСтся ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π² Ρ€Π°ΠΉΠΎΠ½Π°Ρ… с большой высотой Π½Π°Π΄ ΡƒΡ€ΠΎΠ²Π½Π΅ΠΌ моря, Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΎΠΉ (Π½Π΅ ΠΌΠ΅Π½Π΅Π΅ 18 Β°C) ΠΈ Π²Π»Π°ΠΆΠ½ΠΎΡΡ‚ΡŒΡŽ (Π½Π΅ ΠΌΠ΅Π½Π΅Π΅ 300 ΠΌΠΌ осадков). ΠŸΠΎΠ»Π½Ρ‹ΠΉ список Ρ‚Ρ€Π΅Π±ΠΎΠ²Π°Π½ΠΈΠΉ ΠΊ появлСнию ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²ΠΎΠΉ Π³Π»ΠΈΠ½Ρ‹ ΠΈ совСты ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² ΠΏΠΎΠ»Π΅Π²ΠΎΠΌ руководствС.\n\nΠ‘ΠΊΠΎΡ€Π΅Π΅ всСго, Π²Π°ΠΌ придСтся ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒΡΡ ΠΎΡ‡Π΅Π½ΡŒ, ΠžΠ§Π•ΠΠ¬ Π΄Π°Π»Π΅ΠΊΠΎ Π½Π° юго-восток, вСроятно, Ρ‡Π΅Ρ€Π΅Π· ΠΎΠΊΠ΅Π°Π½. Π—Π°ΠΏΠ°ΡΠΈΡ‚Π΅ΡΡŒ ΠΆΠ΅Π»Π΅Π·Π½ΠΎΠΉ флягой, большим количСством Π΅Π΄Ρ‹, ΠΊΠ°ΠΊΠΈΠΌ-Π½ΠΈΠ±ΡƒΠ΄ΡŒ ΠΏΠ»Π°Π²Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ срСдством, Ρ‚Π°ΠΊΠΈΠΌ ΠΊΠ°ΠΊ каноэ, грСбная Π»ΠΎΠ΄ΠΊΠ° ΠΈΠ»ΠΈ каяк, Π° Ρ‚Π°ΠΊΠΆΠ΅ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ пСрСносным Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΈΠ²Π΅Π·Ρ‚ΠΈ Π΄ΠΎΠΌΠΎΠΉ ΠΊΠ°ΠΊ ΠΌΠΎΠΆΠ½ΠΎ большС ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚Π°.\n\nΠ’ Π‘ΠΎΠ²Π΅Ρ‚Ρ‹ TerraFirmaGreg Π΅ΡΡ‚ΡŒ квСсты, посвящСнныС пСрСносным Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°ΠΌ ΠΈ ΠΏΠ»Π°Π²Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ срСдствам.", + "quests.metal_age.beneath_kaolin.title": "Π˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊ ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚Π°: Π‘Π΅Π·Π΄Π½Π°", + "quests.metal_age.beneath_kaolin.subtitle": "Π’ Π‘Π΅Π·Π΄Π½Ρƒ", + "quests.metal_age.beneath_kaolin.desc": "Π“Π»ΡƒΠ±ΠΎΠΊΠΎ, ΠžΠ§Π•ΠΠ¬ Π³Π»ΡƒΠ±ΠΎΠΊΠΎ ΠΏΠΎΠ΄ Π·Π΅ΠΌΠ»Π΅ΠΉ, Π·Π° Π±Π΅Π΄Ρ€ΠΎΠΊΠΎΠΌ, Π²Ρ‹ Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ Π‘Π΅Π·Π΄Ρƒ β€” запутанная ΡΠ΅Ρ‚ΡŒ ΠΏΠ΅Ρ‰Π΅Ρ€, Π³Π΄Π΅ Π½Π° ΠΊΠ°ΠΆΠ΄ΠΎΠΌ ΡˆΠ°Π³Ρƒ ΠΏΠΎΠ΄ΡΡ‚Π΅Ρ€Π΅Π³Π°ΡŽΡ‚ опасности. Π’ Π²Π΅Ρ€Ρ…Π½ΠΈΡ… слоях ΠΌΠΎΠΆΠ΅Ρ‚ Π²ΡΡ‚Ρ€Π΅Ρ‚ΠΈΡ‚ΡŒΡΡ ΠŸΡ‹ΡˆΠ½Π°Ρ лосина β€” нСбольшой Π·Π΅Π»Π΅Π½Ρ‹ΠΉ оазис Π² Π³Π»ΡƒΠ±ΠΈΠ½Π°Ρ…, Π³Π΄Π΅ ΠΈΠ½ΠΎΠ³Π΄Π° образуСтся каолинитовая Π³Π»ΠΈΠ½Π°. Однако, Π΅Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΎΡ…Ρ€Π°Π½ΡΡ‚ΡŒ особоС Ρ‡ΡƒΠ΄ΠΎΠ²ΠΈΡ‰Π΅...!\n\nПока Π²Ρ‹ здСсь, ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΈΡΠΊΠ°Ρ‚ΡŒ Π°Π½Ρ‚Ρ€Π°Ρ†ΠΈΡ‚ β€” прСвосходноС Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ для производства стали.\n\nΠ’Ρ‹ΠΆΠΈΠ²Π°Π½ΠΈΠ΅ Π² Π‘Π΅Π·Π΄Π½Π΅ β€” Π·Π°Π΄Π°Ρ‡Π° Π½Π΅ ΠΈΠ· Π»Π΅Π³ΠΊΠΈΡ…, поэтому ΠΎΠ·Π½Π°ΠΊΠΎΠΌΡŒΡ‚Π΅ΡΡŒ с Ρ€Π°Π·Π΄Π΅Π»ΠΎΠΌ \"Π‘ΠΎΠ²Π΅Ρ‚Ρ‹ TerraFirmaGreg\" этого квСстбука ΠΈ с ΠŸΠΎΠ»Π΅Π²Ρ‹ΠΌ руководством для Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΉ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ.", + "quests.metal_age.beneath_kaolin.task": "ΠŸΡ€Π΅ΠΎΠ΄ΠΎΠ»Π΅ΠΉΡ‚Π΅ Π±Π΅Π΄Ρ€ΠΎΠΊ Π’Π΅Ρ€Ρ…Π½Π΅Π³ΠΎ ΠΌΠΈΡ€Π° ΠΈ достигнитС Π‘Π΅Π·Π΄Π½Ρ‹", + "quests.metal_age.overworld_graphite.title": "Π˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊ Π³Ρ€Π°Ρ„ΠΈΡ‚Π°: Π’Π΅Ρ€Ρ…Π½ΠΈΠΉ ΠΌΠΈΡ€", + "quests.metal_age.overworld_graphite.subtitle": "Π—Π½Π°Ρ‡ΠΈΡ‚, нСльзя просто Π²Π·ΡΡ‚ΡŒ ΠΈ ΡΠΎΠΎΡ€ΠΈΠ΅Π½Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒΡΡ ΠΏΠΎ повСрхностным ΠΈΠ½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Π°ΠΌ?", + "quests.metal_age.overworld_graphite.desc": "Π“Ρ€Π°Ρ„ΠΈΡ‚ появляСтся ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π² Π²ΠΈΠ΄Π΅ плоских, ΡˆΠΈΡ€ΠΎΠΊΠΈΡ… дисков Π³Π»ΡƒΠ±ΠΎΠΊΠΎ ΠΏΠΎΠ΄ Π·Π΅ΠΌΠ»Π΅ΠΉ.\n\nΠ’Π°ΠΌ придСтся ΠΈΡΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΠΎΠ΄Π·Π΅ΠΌΠ½Ρ‹Π΅ ΠΏΠ΅Ρ‰Π΅Ρ€Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°ΠΉΡ‚ΠΈ Π΅Π³ΠΎ! Π–ΠΈΠ»Ρ‹ Π³Ρ€Π°Ρ„ΠΈΡ‚Π° ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΡΠ²Π»ΡΡ‚ΡŒΡΡ Π² любом Ρ‚ΠΈΠΏΠ΅ камня, Π° Ρ‚Π°ΠΊΠΆΠ΅ рядом с ΡƒΠ³Π»Π΅ΠΌ ΠΈ Π°Π»ΠΌΠ°Π·Π°ΠΌΠΈ. Однако, ΠΈΠ·-Π·Π° Π³Π»ΡƒΠ±ΠΈΠ½Ρ‹ ΠΆΠΈΠ», ΠΈΠ½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹, вСроятно, Π½Π΅ Π±ΡƒΠ΄ΡƒΡ‚ Π²ΠΈΠ΄Π½Ρ‹ Π½Π° повСрхности. Π’Π°ΠΊΠΈΠ΅ инструмСнты, ΠΊΠ°ΠΊ мСталличСский Ρ‰ΠΈΡ‚, ΡˆΠ°Ρ…Ρ‚Π΅Ρ€ΡΠΊΠ°Ρ каска, гСологичСский ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΊ ΠΈ подзорная Ρ‚Ρ€ΡƒΠ±Π°, Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ ΠΎΡ‡Π΅Π½ΡŒ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌΠΈ!", + "quests.metal_age.beneath_graphite.title": "Π˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊ Π³Ρ€Π°Ρ„ΠΈΡ‚Π°: Π‘Π΅Π·Π΄Π½Π°", + "quests.metal_age.beneath_graphite.subtitle": "Π’ Π‘Π΅Π·Π΄Π½Ρƒ", + "quests.metal_age.beneath_graphite.desc": "Π“Π»ΡƒΠ±ΠΎΠΊΠΎ, ΠžΠ§Π•ΠΠ¬ Π³Π»ΡƒΠ±ΠΎΠΊΠΎ ΠΏΠΎΠ΄ Π·Π΅ΠΌΠ»Π΅ΠΉ, Π·Π° Π±Π΅Π΄Ρ€ΠΎΠΊΠΎΠΌ, Π²Ρ‹ Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ Π‘Π΅Π·Π΄Π½Ρƒ β€” запутанная ΡΠ΅Ρ‚ΡŒ ΠΏΠ΅Ρ‰Π΅Ρ€, Π³Π΄Π΅ Π½Π° ΠΊΠ°ΠΆΠ΄ΠΎΠΌ ΡˆΠ°Π³Ρƒ ΠΏΠΎΠ΄ΡΡ‚Π΅Ρ€Π΅Π³Π°ΡŽΡ‚ опасности. Π’ Π½ΠΈΠ·Ρƒ Π‘Π΅Π·Π΄Π½Ρ‹ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ ΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹Π΅, высокиС Π·Π°Π»Π΅ΠΆΠΈ Π³Ρ€Π°Ρ„ΠΈΡ‚Π°, Π½ΠΎ ΠΈΡ… ΠΌΠΎΠΆΠ΅Ρ‚ ΠΎΡ…Ρ€Π°Π½ΡΡ‚ΡŒ особоС Ρ‡ΡƒΠ΄ΠΎΠ²ΠΈΡ‰Π΅...!\n\nПока Π²Ρ‹ здСсь, ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΈΡΠΊΠ°Ρ‚ΡŒ Π°Π½Ρ‚Ρ€Π°Ρ†ΠΈΡ‚ β€” прСвосходноС Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ для производства стали.\n\nΠ’Ρ‹ΠΆΠΈΠ²Π°Π½ΠΈΠ΅ Π² Π‘Π΅Π·Π΄Π½Π΅ β€” Π·Π°Π΄Π°Ρ‡Π° Π½Π΅ ΠΈΠ· Π»Π΅Π³ΠΊΠΈΡ…, поэтому ΠΎΠ·Π½Π°ΠΊΠΎΠΌΡŒΡ‚Π΅ΡΡŒ с Ρ€Π°Π·Π΄Π΅Π»ΠΎΠΌ \"Π‘ΠΎΠ²Π΅Ρ‚Ρ‹ TerraFirmaGreg\" этого квСстбука ΠΈ с ΠŸΠΎΠ»Π΅Π²Ρ‹ΠΌ руководством для Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΉ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ.", + "quests.metal_age.beneath_graphite.task": "ΠŸΡ€Π΅ΠΎΠ΄ΠΎΠ»Π΅ΠΉΡ‚Π΅ Π±Π΅Π΄Ρ€ΠΎΠΊ Π’Π΅Ρ€Ρ…Π½Π΅Π³ΠΎ ΠΌΠΈΡ€Π° ΠΈ достигнитС Π‘Π΅Π·Π΄Π½Ρ‹", + "quests.metal_age.kaolin_clay.title": "ΠšΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²Π°Ρ Π³Π»ΠΈΠ½Π°", + "quests.metal_age.kaolin_clay.subtitle": "Π£ΠΏΠ»Ρ‹Π»ΠΈ ΠΈ ΠΏΡ€ΠΈΠΏΠ»Ρ‹Π»ΠΈ, ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠ΅ Π½Π° 20 ΠΌΠΈΠ½ΡƒΡ‚", + "quests.metal_age.kaolin_clay.desc": "Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Ρ‹ Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²ΡƒΡŽ Π³Π»ΠΈΠ½Ρƒ, Π²Π°ΠΌ слСдуСт принСсти ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ, сколько смоТСтС унСсти! К соТалСнию, Ρ‚ΠΎΠ»ΡŒΠΊΠΎ 20 ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚ΠΎΠ² Π³Π»ΠΈΠ½Ρ‹ удастся ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π² ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ, поэтому рСкомСндуСтся ΠΎΠ±ΠΆΠΈΠ³Π°Ρ‚ΡŒ Π΅Π΅ сразу Π½Π° мСстС Π² зСмляных ΠΏΠ΅Ρ‡Π°Ρ…, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΡΠΊΠΎΠ½ΠΎΠΌΠΈΡ‚ΡŒ мСсто Π² ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Π΅.\n\nПослС создания тигля ΠΈ Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ (сыродутной), Π²Π°ΠΌ Π½Π΅ понадобится ΠΌΠ½ΠΎΠ³ΠΎ Π³Π»ΠΈΠ½Ρ‹, Π½ΠΎ всС ΠΆΠ΅ Π»ΡƒΡ‡ΡˆΠ΅ принСсти Π΄ΠΎΠΌΠΎΠΉ большС, Ρ‡Π΅ΠΌ Π²Π°ΠΌ каТСтся Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·Π±Π΅ΠΆΠ°Ρ‚ΡŒ ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎΠΉ ΠΏΠΎΠ΅Π·Π΄ΠΊΠΈ.\n\nP.S.: Если Π²Ρ‹ нашли ΠΊΡ€ΠΎΠ²Π°Π²Ρ‹Π΅ Π»ΠΈΠ»ΠΈΠΈ, Π½ΠΎ Π½Π΅ нашли Π³Π»ΠΈΠ½Ρƒ, ΠΏΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΊΠΎΠΏΠ°Ρ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Π³Π»ΡƒΠ±ΠΆΠ΅! Иногда ΠΎΠ½Π° появляСтся Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΏΠΎΠ΄ Π·Π΅ΠΌΠ»Π΅ΠΉ.", + "quests.metal_age.graphite.title": "Π“Ρ€Π°Ρ„ΠΈΡ‚", + "quests.metal_age.graphite.subtitle": "ΠšΠ°Ρ€Π°Π½Π΄Π°ΡˆΠ΅ΠΉ Π½Π΅ сущСствуСт", + "quests.metal_age.graphite.desc": "ΠžΠ±Π½Π°Ρ€ΡƒΠΆΠΈΠ² Π³Ρ€Π°Ρ„ΠΈΡ‚, ΠΏΠΎΡΡ‚Π°Ρ€Π°ΠΉΡ‚Π΅ΡΡŒ Π΄ΠΎΠ±Ρ‹Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΌΠΎΠΆΠ½ΠΎ большС! Π₯отя ΠΎΠ½ ΠΈ Π½Π΅ потрСбуСтся Π² Ρ‚Π°ΠΊΠΈΡ… количСствах, ΠΊΠ°ΠΊ каолинитовая Π³Π»ΠΈΠ½Π°.\nΠ’ ΠΆΠΈΠ»Π°Ρ… Π³Ρ€Π°Ρ„ΠΈΡ‚Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠ½ΠΎΠ³ΠΎ угля ΠΈ Π°Π»ΠΌΠ°Π·ΠΎΠ², Π° ΡƒΠ³ΠΎΠ»ΡŒ Π²Π°ΠΌ понадобится для производства стали.", + "quests.metal_age.graphite.task": "Π›ΡŽΠ±Π°Ρ Ρ„ΠΎΡ€ΠΌΠ° Π³Ρ€Π°Π½ΠΈΡ‚Π°", + "quests.metal_age.fire_clay.title": "ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Π°Ρ Π³Π»ΠΈΠ½Π°", + "quests.metal_age.fire_clay.subtitle": "НаконСц-Ρ‚ΠΎ", + "quests.metal_age.fire_clay.desc": "НагрСйтС ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²ΡƒΡŽ Π³Π»ΠΈΠ½Ρƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΡƒΠ·Π½ΠΈΡ†Ρƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°Π³Ρ€Π΅Ρ‚ΡŒ ΠΈΡ… ΠΏΠΎ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ, Π½ΠΎ ΠΎΠ±ΠΆΠΈΠ³ Π±ΠΎΠ»ΡŒΡˆΠΈΡ… ΠΏΠ°Ρ€Ρ‚ΠΈΠΉ Π² зСмляной ΠΏΠ΅Ρ‡ΠΈ Π±ΡƒΠ΄Π΅Ρ‚ быстрСС.\n\nДля Π³Ρ€Π°Ρ„ΠΈΡ‚Π°: ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°ΠΉΡ‚Π΅ Π΅Π³ΠΎ ΠΊΠ°ΠΊ ΠΎΠ±Ρ‹Ρ‡Π½ΡƒΡŽ Ρ€ΡƒΠ΄Ρƒ, Π·Π°Ρ‚Π΅ΠΌ снова ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅ Π³Ρ€Π°Ρ„ΠΈΡ‚ΠΎΠ²ΡƒΡŽ ΠΏΡ‹Π»ΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π³Ρ€Π°Ρ„ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ.\n\nНаконСц, ΡΠΌΠ΅ΡˆΠ°ΠΉΡ‚Π΅ 4 Π³Ρ€Π°Ρ„ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΏΠΎΡ€ΠΎΡˆΠΊΠ°, 4 ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΏΠΎΡ€ΠΎΡˆΠΊΠ° ΠΈ 1 ΠΊΠΎΠΌΠΎΠΊ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠΉ Π³Π»ΠΈΠ½Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΎΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½ΡƒΡŽ Π³Π»ΠΈΠ½Ρƒ.", + "quests.metal_age.fire_clay_products.title": "ИздСлия ΠΈΠ· ΠΎΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½ΠΎΠΉ Π³Π»ΠΈΠ½Ρ‹", + "quests.metal_age.fire_clay_products.subtitle": "Π§Ρ€Π΅Π·Π²Ρ‹Ρ‡Π°ΠΉΠ½ΠΎ тСрмостойкая Π³Π»ΠΈΠ½Π°", + "quests.metal_age.fire_clay_products.desc": "Как ΠΈ обычная Π³Π»ΠΈΠ½Π°, огнСупорная Π³Π»ΠΈΠ½Π° ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ высСчСна для создания ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π·Π°Ρ‚Π΅ΠΌ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΎΠ±ΠΆΠ΅Ρ‡ΡŒ. НаиболСС Π²Π°ΠΆΠ½ΠΎ Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ огнСупорная Π³Π»ΠΈΠ½Π° ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для создания тигля ΠΈ ΠΎΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ для Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ (сыродутной).\n\nΠ’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ смоТСтС ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Ρ„ΠΎΡ€ΠΌΡƒ для Π»ΠΈΡ‚ΡŒΡ ΠΈ Π»ΠΈΡ‚Π΅ΠΉΠ½Ρ‹Π΅ ΠΊΠ°Π½Π°Π»Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ позволят Π²Π°ΠΌ ΠΎΡ‚Π»ΠΈΠ²Π°Ρ‚ΡŒ ΠΌΠ΅Ρ‚Π°Π»Π» ΠΈΠ· тигля сразу Π² нСсколько Ρ„ΠΎΡ€ΠΌ.\n\nНаконСц, Π΅ΡΡ‚ΡŒ Ρ„ΠΎΡ€ΠΌΡ‹ для Π»ΠΈΡ‚ΡŒΡ слитков, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΈΠΌΠ΅ΡŽΡ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ 1 ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚ вСроятности ΠΏΠΎΠ»ΠΎΠΌΠΊΠΈ вмСсто Ρ†Π΅Π»Ρ‹Ρ… 10 ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚ΠΎΠ² Ρƒ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠΉ Π³Π»ΠΈΠ½Ρ‹.", + "quests.metal_age.crucible.title": "ВигСль", + "quests.metal_age.crucible.subtitle": "ΠŸΠ»Π°Π²ΡŒΡ‚Π΅ ΠΌΠ΅Ρ‚Π°Π»Π»Ρ‹ ΠΊΠ°ΠΊ профСссионал", + "quests.metal_age.crucible.desc": "ВигСль устанавливаСтся свСрху ΠΊΡƒΠ·Π½ΠΈΡ†Ρ‹. Он ΠΈΠΌΠ΅Π΅Ρ‚ 9 ячССк инвСнтаря ΠΈ Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ 4032 mB Тидкости, Π° Ρ‚Π°ΠΊΠΆΠ΅ оснащСн интСрфСйсом для ΠΏΡ€ΠΎΠ²Π΅Ρ€ΠΊΠΈ ΡΠΎΠΎΡ‚Π½ΠΎΡˆΠ΅Π½ΠΈΡ сплавов. ΠŸΡ€ΠΈ Ρ€Π°Π·Ρ€ΡƒΡˆΠ΅Π½ΠΈΠΈ ΠΎΠ½ сохраняСт своС содСрТимоС. Он Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ Π±Π΅Π»Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½, Ссли Ρ€Π°Π·ΠΌΠ΅Ρ‰Π΅Π½ ΠΏΠΎΠ΄ Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΡŒΡŽ.\n\nΠ˜ΠΌΠ΅ΠΉΡ‚Π΅ Π² Π²ΠΈΠ΄Ρƒ, Ρ‡Ρ‚ΠΎ Ρ‚ΠΈΠ³Π΅Π»ΡŒ Π‘Π£Π”Π•Π’ ΠΏΡ‹Ρ‚Π°Ρ‚ΡŒΡΡ ΡΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ всС, Ρ‡Ρ‚ΠΎ находится Π²Π½ΡƒΡ‚Ρ€ΠΈ Π½Π΅Π³ΠΎ β€” ΠΎΠ½ Π½Π΅ раздСляСт ΠΌΠ΅Ρ‚Π°Π»Π»Ρ‹, ΠΊΠ°ΠΊ плавильня TC, β€” поэтому рСкомСндуСтся Π΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ Π΅Π³ΠΎ Π² чистотС, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ Π΅Π³ΠΎ Π½Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚Π΅.", + "quests.metal_age.fire_bricks.title": "ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ", + "quests.metal_age.fire_bricks.subtitle": "Для Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ", + "quests.metal_age.fire_bricks.desc": "ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Ρ‹Π΅ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ ΠΏΡ€ΠΈ ΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΡΡ‚Π²Π΅ Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ. Для изготовлСния ΠΏΠ΅Ρ‡ΠΈ потрСбуСтся ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ 4 Π±Π»ΠΎΠΊΠ° ΠΊΠΈΡ€ΠΏΠΈΡ‡Π°.\n\nΠšΠΈΡ€ΠΏΠΈΡ‡ΠΈ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΈΠ·ΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ процСсс Π²Ρ‹ΠΏΠ»Π°Π²ΠΊΠΈ Π‘Ρ‚Π°Π»ΠΈ Π±Ρ‹Π» эффСктивным. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π»ΠΈΠ±ΠΎ Ρ€Π°Π·ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ 3 пластины ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π° Π²ΠΎΠΊΡ€ΡƒΠ³ ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ ΠΎΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½ΠΎΠ³ΠΎ ΠΊΠΈΡ€ΠΏΠΈΡ‡Π°, Π»ΠΈΠ±ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΠ·ΠΎΠ»ΡΡ†ΠΈΡŽ для Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ.", + "quests.metal_age.fully_stacked_blast_furnace.title": "ΠœΠ½ΠΎΠ³ΠΎΡƒΡ€ΠΎΠ²Π½Π΅Π²Π°Ρ домСнная ΠΏΠ΅Ρ‡ΡŒ", + "quests.metal_age.fully_stacked_blast_furnace.subtitle": "Π—Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Π°Ρ домСнная ΠΏΠ΅Ρ‡ΡŒ", + "quests.metal_age.fully_stacked_blast_furnace.desc": "ΠŸΠΎΠ»Π½ΠΎΡ€Π°Π·ΠΌΠ΅Ρ€Π½Π°Ρ домСнная ΠΏΠ΅Ρ‡ΡŒ способна ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ ΠΈ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ большиС ΠΎΠ±ΡŠΠ΅ΠΌΡ‹ ΠΆΠ΅Π»Π΅Π·Π° ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ. РСкомСндуСтся ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ Π΅Π΅ Ρ€Π°Π·ΠΌΠ΅Ρ€, ΠΊΠΎΠ³Π΄Π° это Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, ΠΏΠΎΡΠΊΠΎΠ»ΡŒΠΊΡƒ Π² Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ Π²Π°ΠΌ понадобится ΠΌΠ½ΠΎΠ³ΠΎ стали.\n\nПослС создания ΠΏΠ΅Ρ€Π²ΠΎΠΉ ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ для сплавов Π²Ρ‹ смоТСтС ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ большС ΠΎΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Ρ‹Ρ… ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ с мСньшими Π·Π°Ρ‚Ρ€Π°Ρ‚Π°ΠΌΠΈ.", + "quests.metal_age.blast_furnace_fuel.title": "Π’ΠΎΠΏΠ»ΠΈΠ²ΠΎ для Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ", + "quests.metal_age.blast_furnace_fuel.subtitle": "НадСюсь, Ρ‚Ρ‹ слСдовал совСтам ΠΈΠ· ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰ΠΈΡ… квСстов...", + "quests.metal_age.blast_furance_fuel.desc": "ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ дрСвСсный ΡƒΠ³ΠΎΠ»ΡŒ нСдостаточно горяч для производства стали. Π’Π°ΠΌ понадобится Π»ΠΈΠ±ΠΎ коксовый ΡƒΠ³ΠΎΠ»ΡŒ, Π»ΠΈΠ±ΠΎ Π°Π½Ρ‚Ρ€Π°Ρ†ΠΈΡ‚.\n\nΠšΠΎΠΊΡΠΎΠ²Ρ‹ΠΉ ΡƒΠ³ΠΎΠ»ΡŒ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ, помСстив ΡƒΠ³ΠΎΠ»ΡŒ Π² ΠΊΠΎΠΊΡΠΎΠ²ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ, Π° Π°Π½Ρ‚Ρ€Π°Ρ†ΠΈΡ‚ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² Ρ‚ΠΎΠΌ Π²ΠΈΠ΄Π΅, Π² ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌ ΠΎΠ½ Π±Ρ‹Π» Π΄ΠΎΠ±Ρ‹Ρ‚ ΠΈΠ· Π‘Π΅Π·Π΄Π½Ρ‹.", + "quests.metal_age.blast_furnace.title": "ДомСнная ΠΏΠ΅Ρ‡ΡŒ", + "quests.metal_age.blast_furnace.subtitle": "Π—Π°Ρ‚Π΅ΠΌ я Π½Π°Ρ‡Π°Π» ΠΏΠ°Π»ΠΈΡ‚ΡŒ'", + "quests.metal_age.blast_furnace.desc": "ДомСнная ΠΏΠ΅Ρ‡ΡŒ β€” это многоблочная конструкция, которая позволяСт ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π±Π΅Π»Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½. ΠŸΠΎΠΌΠ΅ΡΡ‚ΠΈΠ² Π²Π½ΡƒΡ‚Ρ€ΡŒ Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ ΠΊΠΎΠΌΠ±ΠΈΠ½Π°Ρ†ΠΈΡŽ ΠΆΠ΅Π»Π΅Π·Π°, Ρ„Π»ΡŽΡΠ° ΠΈ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° (см. сосСднСС Π·Π°Π΄Π°Π½ΠΈΠ΅), Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ Π±Π΅Π»Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π·Π°Ρ‚Π΅ΠΌ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π² ΡΡ‚Π°Π»ΡŒ.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ домСнная ΠΏΠ΅Ρ‡ΡŒ достигла Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎΠΉ высокой Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹, Π΅ΠΉ понадобятся собствСнныС ΠΊΡƒΠ·Π½Π΅Ρ‡Π½Ρ‹Π΅ ΠΌΠ΅Ρ…Π°, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ для нагнСтания Π²ΠΎΠ·Π΄ΡƒΡ…Π° Ρ‡Π΅Ρ€Π΅Π· Ρ„ΡƒΡ€ΠΌΡƒ, Ρ€Π°Π·ΠΌΠ΅Ρ‰Π΅Π½Π½ΡƒΡŽ Π²Π½ΡƒΡ‚Ρ€ΠΈ Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ.\n\nΠ’ ΠΏΠΎΠ»Π΅Π²ΠΎΠΌ руководствС Π΅ΡΡ‚ΡŒ Ρ€Π°Π·Π΄Π΅Π» ΠΎ Ρ‚ΠΎΠΌ, ΠΊΠ°ΠΊ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ домСнная ΠΏΠ΅Ρ‡ΡŒ ΠΈ ΠΊΠ°ΠΊ Π΅Π΅ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ.", + "quests.metal_age.steel_anvil.title": "T4 Наковальня: Π‘Ρ‚Π°Π»ΡŒ", + "quests.metal_age.steel_anvil.subtitle": "ΠžΠ³Ρ€ΠΎΠΌΠ½Ρ‹ΠΉ скачок ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с ΠΊΠΎΠ²Π°Π½Ρ‹ΠΌ ΠΆΠ΅Π»Π΅Π·ΠΎΠΌ", + "quests.metal_age.steel_anvil.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΡΡ‚Π°Π»ΡŒΠ½ΠΎΠΉ наковальни Π²Ρ‹ смоТСтС ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ ΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ слитки Π² Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ Ρ„ΠΎΡ€ΠΌΡ‹.\n\nΠ‘Ρ‚Π°Π»ΡŒΠ½Ρ‹Π΅ инструмСнты ΠΈ экипировка Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ прСвосходят свои Π±Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ‹Π΅ ΠΈ ΠΊΠΎΠ²Π°Π½Ρ‹Π΅ Π°Π½Π°Π»ΠΎΠ³ΠΈ, поэтому ΠΈΡ… стоит ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ, Ссли ваши ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΠ΅ инструмСнты ΠΈ ΠΎΠ±ΠΎΡ€ΡƒΠ΄ΠΎΠ²Π°Π½ΠΈΠ΅ скоро ΡΠ»ΠΎΠΌΠ°ΡŽΡ‚ΡΡ. Π’ скором Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ Π²Π°ΠΌ понадобится ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ сплавов, поэтому ΠΏΡ€ΠΈΠΎΠ±Ρ€Π΅Ρ‚Π΅Π½ΠΈΠ΅ Π½ΠΎΠ²ΠΎΠ³ΠΎ Π³ΠΎΡ€Π½ΠΎΠ΄ΠΎΠ±Ρ‹Π²Π°ΡŽΡ‰Π΅Π³ΠΎ оборудования Π±ΡƒΠ΄Π΅Ρ‚ Ρ€Π°Π·ΡƒΠΌΠ½Ρ‹ΠΌ Π²Π»ΠΎΠΆΠ΅Π½ΠΈΠ΅ΠΌ.", + "quests.metal_age.steel_goodies.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹ ΡΡ‚Π°Π»ΡŒΠ½ΠΎΠ³ΠΎ уровня", + "quests.metal_age.steel_goodies.subtitle": "Π”ΡƒΠΉ, Π΄Ρ€ΠΎΠ±ΠΈ ΠΈ Ρ‚Ρ€ΡƒΠ±ΠΈ", + "quests.metal_age.steel_goodies.desc": "Π‘Ρ‚Π°Π»ΡŒ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ Π½ΠΎΠ²Ρ‹ΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Greate с ΡƒΠ²Π΅Π»ΠΈΡ‡Π΅Π½Π½ΠΎΠΉ максимальной Π½Π°Π³Ρ€ΡƒΠ·ΠΊΠΎΠΉ! Π’Π΅ΠΏΠ΅Ρ€ΡŒ Π²Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΠ·Π³ΠΎΡ‚Π°Π²Π»ΠΈΠ²Π°Ρ‚ΡŒ Ρ‚Π°ΠΊΠΈΠ΅ Π²Π΅Ρ‰ΠΈ, ΠΊΠ°ΠΊ вСнтилятор Π² корпусС, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ΅Ρ‚ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΡ€ΠΎΠΌΡ‹Π²ΠΊΡƒ Ρ€ΡƒΠ΄Ρ‹, ΠΈ мСханичСская ΠΏΠΎΠΌΠΏΠ°, которая Π΄Π°Π΅Ρ‚ Π²Π°ΠΌ Π³ΠΎΡ€Π°Π·Π΄ΠΎ большС возмоТностСй для транспортировки ТидкостСй.\n\nΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠ°Ρ ΠΏΠΎΠΌΠΏΠ° особСнно ΠΏΠΎΠ»Π΅Π·Π½Π°, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΈΠ½Ρ‚Π΅Π»Π»Π΅ΠΊΡ‚ΡƒΠ°Π»ΡŒΠ½Ρ‹Ρ… Ρ€Π΅ΡˆΠ΅Π½ΠΈΠΉ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π»Π΅Π³ΠΊΠΎ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π΄ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ.", + "quests.metal_age.weak_steel.title": "Π˜Π½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ сырой стали", + "quests.metal_age.weak_steel.subtitle": "НадСюсь, Ρ‚Π΅Π±Π΅ нравится ΠΌΠ°Ρ‚Π΅ΠΌΠ°Ρ‚ΠΈΠΊΠ°", + "quests.metal_age.weak_steel.desc": "Бырая ΡΡ‚Π°Π»ΡŒ β€” это ΠΎΠ΄ΠΈΠ½ ΠΈΠ· Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹Ρ… ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠ² для создания Π§Π΅Ρ€Π½ΠΎΠΉ стали. Π‘ΠΏΠ»Π°Π² получаСтся ΠΏΡƒΡ‚Π΅ΠΌ соСдинСния 2 частСй стали, 1 части никСля ΠΈ 1 части Ρ‡Π΅Ρ€Π½ΠΎΠΉ Π±Ρ€ΠΎΠ½Π·Ρ‹.\n\nΠ‘ΠΎΠ»Π΅Π΅ Ρ‚ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠΏΠΎΡ€Ρ†ΠΈΠΈ сплава ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π΅ ΠΆΠΈΠ΄ΠΊΠΎΠΉ сырой стали.", + "quests.metal_age.weak_steel.task1": "1 Ρ‡Π°ΡΡ‚ΡŒ никСля", + "quests.metal_age.weak_steel.task2": "2 части стали", + "quests.metal_age.weak_steel.task3": "1 Ρ‡Π°ΡΡ‚ΡŒ Ρ‡Π΅Ρ€Π½ΠΎΠΉ Π±Ρ€ΠΎΠ½Π·Ρ‹", + "quests.metal_age.highcarb_black_steel.title": "Π˜Π½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали", + "quests.metal_age.highcarb_black_steel.subtitle": "Π—Π°ΠΊΠΎΠ½ сохранСния массы Π½Π΅ дСйствуСт", + "quests.metal_age.highcarb_black_steel.desc": "Π”Π²Π΅ послСдниС наковальни ΡΠΎΠ·Π΄Π°ΡŽΡ‚ΡΡ ΠΈΠ· слоТных сплавов, для создания ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… потрСбуСтся ΠΌΠ½ΠΎΠ³ΠΎ ΠΌΠ΅Ρ‚Π°Π»Π»Π°. Бырая ΡΡ‚Π°Π»ΡŒ ΠΈ Π±Π΅Π»Ρ‹ΠΉ Ρ‡ΡƒΠ³ΡƒΠ½ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ сварСны для создания высокоуглСродистой Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали, которая Π·Π°Ρ‚Π΅ΠΌ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π° Π½Π° наковальнС Π² Ρ‡Π΅Ρ€Π½ΡƒΡŽ ΡΡ‚Π°Π»ΡŒ.", + "quests.metal_age.black_steel_anvil.title": "T5 Наковальня: ЧСрная ΡΡ‚Π°Π»ΡŒ", + "quests.metal_age.black_steel_anvil.subtitle": "ΠŸΠ°Ρ€ΠΎΠ²Ρ‹Π΅ Ρ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³ΠΈΠΈ ΠΏΠΎΡ‡Ρ‚ΠΈ Π² Ρ‚Π²ΠΎΠΈΡ… Ρ€ΡƒΠΊΠ°Ρ…", + "quests.metal_age.black_steel_anvil.desc": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ наковальни ΠΈΠ· Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ слитки Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали ΠΈ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹.\n\nΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, Π²Π°ΠΌ открылся большой Π½ΠΎΠ²Ρ‹ΠΉ Ρ€Π°Π·Π΄Π΅Π» Π² Π³Π»Π°Π²Π΅ Ранняя автоматизация, посвящСнный ΠΏΠ°Ρ€ΠΎΠ²Ρ‹ΠΌ тСхнологиям!\n\nΠžΡ‚ΡΡŽΠ΄Π° Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π»ΠΈΠ±ΠΎ сразу ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ ΠΊ индустриализации, Π»ΠΈΠ±ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ послСдний ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Π½Π°ΠΊΠΎΠ²Π°Π»Π΅Π½, Ссли Ρ…ΠΎΡ‚ΠΈΡ‚Π΅. Однако Π²Ρ‹ Π½Π΅ смоТСтС Π²Π΅Ρ‡Π½ΠΎ ΠΈΠ·Π±Π΅Π³Π°Ρ‚ΡŒ Ρ†Π²Π΅Ρ‚Π½ΠΎΠΉ стали!", + "quests.metal_age.black_steel_goodies.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹ уровня Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали", + "quests.metal_age.black_steel_goodies.subtitle": "ΠŸΡ€ΠΎΠΌΡ‹ΡˆΠ»Π΅Π½Π½Π°Ρ Ρ€Π΅Π²ΠΎΠ»ΡŽΡ†ΠΈΡ ΠΈ Π΅Π΅ послСдствия", + "quests.metal_age.black_steel_goodies.desc": "ЧСрная ΡΡ‚Π°Π»ΡŒ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ ΠΏΡƒΡ‚ΡŒ ΠΊ ΠΏΠ°Ρ€ΠΎΠ²Ρ‹ΠΌ тСхнологиям! НачнитС с Π½Π΅Π±ΠΎΠ»ΡŒΡˆΠΈΡ… ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Ρ… ΠΊΠΎΡ‚Π»ΠΎΠ² ΠΈ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ³Π°ΠΉΡ‚Π΅ΡΡŒ ΠΊ ΠΌΠΎΡ‰Π½ΠΎΠΌΡƒ ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠΌΡƒ Π΄Π²ΠΈΠ³Π°Ρ‚Π΅Π»ΡŽ, ΠΏΠΈΡ‚Π°ΡŽΡ‰Π΅ΠΌΡƒ Π½ΠΎΠ²Ρ‹Π΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ для создания вашСй ΠΏΠ΅Ρ€Π²ΠΎΠΉ элСктроники.", + "quests.metal_age.red_blu.title": "ΠšΡ€Π°ΡΠ½Π°Ρ ΠΈ синяя ΡΡ‚Π°Π»ΡŒ", + "quests.metal_age.red_blu.subtitle": "Одни ΠΈΠ· ΡΡ‚Π°Ρ€Π΅ΠΉΡˆΠΈΡ… фэнтСзийных Π²ΠΈΠ΄ΠΎΠ² стали Π² ΠΌΠΎΠ΄Π°Ρ… Minecraft", + "quests.metal_age.red_blu.desc": "ПослСдний ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ наковальни ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ ΠΈΠ· красной ΠΈΠ»ΠΈ синСй стали. Оба сплава ΠΏΡ€Π΅Π΄ΡΡ‚Π°Π²Π»ΡΡŽΡ‚ собой слоТныС ΠΊΠΎΠΌΠ±ΠΈΠ½Π°Ρ†ΠΈΠΈ с Π΄Ρ€ΡƒΠ³ΠΈΠΌΠΈ ΠΌΠ΅Ρ‚Π°Π»Π»Π°ΠΌΠΈ.\n\nБиняя ΡΡ‚Π°Π»ΡŒ цСнится Π·Π° ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΡƒΡŽ Ρ‚Π΅Ρ€ΠΌΠΎΡΡ‚ΠΎΠΉΠΊΠΎΡΡ‚ΡŒ ΠΈ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ Ρ€Π°Π±ΠΎΡ‚Ρ‹ инструмСнтов, Π° красная ΡΡ‚Π°Π»ΡŒ отличаСтся высокой ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒΡŽ ΠΈ Π΄ΠΎΠ»Π³ΠΎΠ²Π΅Ρ‡Π½ΠΎΡΡ‚ΡŒΡŽ.", + "quests.metal_age.weak_red_steel.title": "Π˜Π½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ для сырой красной стали", + "quests.metal_age.weak_red_steel.subtitle": "Π­Ρ‚ΠΎ ΡƒΠΆΠ΅ становится Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Π½Π΅Π»Π΅ΠΏΠΎ", + "quests.metal_age.weak_red_steel.desc": "Как ΠΈ Ρ€Π°Π½Π΅Π΅, сырая красная ΡΡ‚Π°Π»ΡŒ являСтся ΠΏΠ΅Ρ€Π²Ρ‹ΠΌ этапом создания красной стали. Π•Π΅ сплав состоит ΠΈΠ· 4 частСй Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали, 2 частСй стали, 1 части Π»Π°Ρ‚ΡƒΠ½ΠΈ ΠΈ 1 части Ρ€ΠΎΠ·ΠΎΠ²ΠΎΠ³ΠΎ Π·ΠΎΠ»ΠΎΡ‚Π°.\n\nДля Π±ΠΎΠ»Π΅Π΅ Ρ‚ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚Π½Ρ‹Ρ… ΡΠΎΠΎΡ‚Π½ΠΎΡˆΠ΅Π½ΠΈΠΉ сплава ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ ΠΆΠΈΠ΄ΠΊΠΎΠΉ сырой красной стали.", + "quests.metal_age.weak_red_steel.steel": "2 части стали", + "quests.metal_age.weak_red_steel.black_steel": "4 части Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали", + "quests.metal_age.weak_red_steel.brass": "1 Ρ‡Π°ΡΡ‚ΡŒ Π»Π°Ρ‚ΡƒΠ½ΠΈ", + "quests.metal_age.weak_red_steel.rose_gold": "1 Ρ‡Π°ΡΡ‚ΡŒ Ρ€ΠΎΠ·ΠΎΠ²ΠΎΠ³ΠΎ Π·ΠΎΠ»ΠΎΡ‚Π°", + "quests.metal_age.weak_blu_steel.title": "Π˜Π½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ сырой синСй стали", + "quests.metal_age.weak_blu_steel.subtitle": "Π­Ρ‚ΠΎ ΡƒΠΆΠ΅ слишком.", + "quests.metal_age.weak_blu_steel.desc": "Как ΠΈ Ρ€Π°Π½Π΅Π΅, сырая синяя ΡΡ‚Π°Π»ΡŒ являСтся ΠΏΠ΅Ρ€Π²Ρ‹ΠΌ этапом создания синСй стали. Π•Π΅ сплав состоит ΠΈΠ· 4 частСй Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали, 2 частСй стали, 1 части висмутовой Π±Ρ€ΠΎΠ½Π·Ρ‹ ΠΈ 1 части стСрлингово сСрСбра.\n\nДля Π±ΠΎΠ»Π΅Π΅ Ρ‚ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚Π½Ρ‹Ρ… ΡΠΎΠΎΡ‚Π½ΠΎΡˆΠ΅Π½ΠΈΠΉ сплава ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ ΠΆΠΈΠ΄ΠΊΠΎΠΉ сырой синСй стали.", + "quests.metal_age.weak_blue_steel.steel": "2 части стали", + "quests.metal_age.weak_blue_steel.black_steel": "4 части Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали", + "quests.metal_age.weak_blue_steel.sterling_silver": "1 Ρ‡Π°ΡΡ‚ΡŒ стСрлингово сСрСбра", + "quests.metal_age.weak_blue_steel.bismuth_bronze": "1 Ρ‡Π°ΡΡ‚ΡŒ висмутовой Π±Ρ€ΠΎΠ½Π·Ρ‹", + "quests.metal_age.highcarb_red_steel.title": "Π˜Π½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ красной стали", + "quests.metal_age.highcarb_red_steel.subtitle": "ΠœΠΎΠΆΠ΅Ρ‚ Π»ΠΈ ΡƒΠ΄Π°Π»Π΅Π½ΠΈΠ΅ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠΈ Ρ‚Π°ΠΊΠΈΠΌ ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ ΠΏΠΈΡ‚Π°Ρ‚ΡŒ ΡΠ΄Π΅Ρ€Π½ΡƒΡŽ Π±ΠΎΠΌΠ±Ρƒ?", + "quests.metal_age.highcarb_red_steel.desc": "ΠšΡ€Π°ΡΠ½Π°Ρ ΡΡ‚Π°Π»ΡŒ сначала создаСтся Π² Π²ΠΈΠ΄Π΅ высокоуглСродистой красной стали, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ ΠΏΡƒΡ‚Π΅ΠΌ сварки сырой красной стали ΠΈ Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали. Π—Π°Ρ‚Π΅ΠΌ Π΅Π΅ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π½Π° наковальнС, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π² ΠΊΡ€Π°ΡΠ½ΡƒΡŽ ΡΡ‚Π°Π»ΡŒ", + "quests.metal_age.highcarb_blu_steel.title": "Π˜Π½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ синСй стали", + "quests.metal_age.highcarb_blu_steel.subtitle": "Π›Π°Π²ΡƒΠ°Π·ΡŒΠ΅ Π² Π³Ρ€ΠΎΠ±Ρƒ пСрСворачиваСтся", + "quests.metal_age.highcarb_blu_steel.desc": "Биняя ΡΡ‚Π°Π»ΡŒ сначала создаСтся Π² Π²ΠΈΠ΄Π΅ высокоуглСродистой синСй стали, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ ΠΏΡƒΡ‚Π΅ΠΌ сварки сырой синСй стали ΠΈ Ρ‡Π΅Ρ€Π½ΠΎΠΉ стали. Π—Π°Ρ‚Π΅ΠΌ Π΅Π΅ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π½Π° наковальнС, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π² синюю ΡΡ‚Π°Π»ΡŒ", + "quests.metal_age.redblu_anvil.title": "T6 Наковальня: ΠšΡ€Π°ΡΠ½Π°Ρ ΠΈΠ»ΠΈ Биняя ΡΡ‚Π°Π»ΡŒ", + "quests.metal_age.redblu_anvil.subtitle": "ВсС ΠΊΠΎΠ½Ρ‡Π΅Π½ΠΎ", + "quests.metal_age.redblu_anvil.desc": "ПослСдний ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ наковальни! Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ наковальни 6-Π³ΠΎ уровня Π²Ρ‹ смоТСтС ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ слитки ΠšΡ€Π°ΡΠ½ΠΎΠΉ ΠΈ Π‘ΠΈΠ½Π΅ΠΉ стали Π² Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹.\n\nΠ­Ρ‚ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ°ΡŽΡ‰ΠΈΠΉ этап прогрСсса Π² TerraFirmaCraft. Π’Π΅ΠΏΠ΅Ρ€ΡŒ ΠΏΡ€ΠΈΡˆΠ»ΠΎ врСмя Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ Π˜Π½Π΄ΡƒΡΡ‚Ρ€ΠΈΠ°Π»ΡŒΠ½Ρ‹ΠΉ Π²Π΅ΠΊ ΠΈ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ свою ΠΏΠ΅Ρ€Π²ΡƒΡŽ Π½ΠΈΠ·ΠΊΠΎΠ²ΠΎΠ»ΡŒΡ‚Π½ΡƒΡŽ микросхСму.", + "quests.metal_age.red_steel_flask.title": "Ѐляга ΠΈΠ· красной стали", + "quests.metal_age.red_steel_flask.subtitle": "Π­Ρ‚ΠΎ Π½ΠΈΡ‡Ρ‚ΠΎ ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с ΠΆΠ΅Π»Π΅Π·Π½ΠΎΠΉ флягой", + "quests.metal_age.red_steel_flask.desc": "Ѐляга ΠΈΠ· красной стали β€” Π»ΡƒΡ‡ΡˆΠ°Ρ ΠΈΠ· всСх доступных фляг. Она Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΆΠ΅ Тидкости, сколько ΠΈ ТСлСзная фляга, Π½ΠΎ Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ ломаСтся.", + "quests.metal_age.redblu_buckets.title": "ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ Π²Π΅Π΄Ρ€Π°", + "quests.metal_age.redblu_buckets.subtitle": "Π Π΅Π°ΠΊΡ‚ΠΎΡ€ синтСза Π½Π° основС Π²Π΅Π΄Ρ€Π°", + "quests.metal_age.redblu_buckets.desc": "ПослСднСй Π·Π°Π΄Π°Ρ‡Π΅ΠΉ Π² Π’Π΅ΠΊΠ΅ ΠœΠ΅Ρ‚Π°Π»Π»ΡƒΡ€Π³ΠΈΠΈ являСтся созданиС Π²Π΅Π΄Ρ€Π°. Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ дСрСвянного Π²Π΅Π΄Ρ€Π° ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… СмкостСй для ТидкостСй, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²Ρ‹ использовали Π΄ΠΎ сих ΠΏΠΎΡ€, Π²Π΅Π΄Ρ€ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для пСрСноски Π»Π°Π²Ρ‹ ΠΈ пСрСмСщСния Π±Π»ΠΎΠΊΠΎΠ² источников Π΄Ρ€ΡƒΠ³ΠΈΡ… ТидкостСй.", + "quests.metal_age.this_is_a_bucket.title": "Π­Ρ‚ΠΎ... Π’Π΅Π΄Ρ€ΠΎ.", + "quests.metal_age.this_is_a_bucket.subtitle": "Π‘ΠΎΠΆΠ΅ ΠΏΡ€Π°Π²Ρ‹ΠΉ...", + "quests.metal_age.this_is_a_bucket.desc": "ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»ΡΠ΅ΠΌ с созданиСм Π²Π΅Π΄Ρ€Π°. Π’Π΅ΠΊ ΠΌΠ΅Ρ‚Π°Π»Π»ΡƒΡ€Π³ΠΈΠΈ ΠΎΡ„ΠΈΡ†ΠΈΠ°Π»ΡŒΠ½ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½.\n\nΠ’Π΅ΠΏΠ΅Ρ€ΡŒ моТСшь ΠΏΡ€ΠΈΡΡ‚ΡƒΠΏΠ°Ρ‚ΡŒ ΠΊ созданию ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ² Π½ΠΈΠ·ΠΊΠΎΠ³ΠΎ напряТСния!", + "quests.metal_age.temperature_protection.title": "БнаряТСниС ΠΈΠ· Ρ†Π²Π΅Ρ‚Π½ΠΎΠΉ стали", + "quests.metal_age.temperature_protection.subtitle": "ΠŸΠ΅Ρ€ΠΌΠ°Π½Π΅Π½Ρ‚Π½Π°Ρ Π·Π°Ρ‰ΠΈΡ‚Π° ΠΎΡ‚ внСшнСй Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹", + "quests.metal_age.temperature_protection.desc": "Устал постоянно Π΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ ΠΊΠ»Π΅Ρ‰ΠΈ? ΠžΡ‚Π»ΠΈΡ‡Π½Ρ‹Π΅ Ρ‚Π΅Ρ€ΠΌΠΎΠ·Π°Ρ‰ΠΈΡ‚Π½Ρ‹Π΅ свойства Ρ†Π²Π΅Ρ‚Π½ΠΎΠΉ стали Ρ€Π°ΡΠΏΡ€ΠΎΡΡ‚Ρ€Π°Π½ΡΡŽΡ‚ΡΡ ΠΈ Π½Π° снаряТСниС!\n\nБнаряТСниС ΠΈΠ· &9Π‘ΠΈΠ½Π΅ΠΉ стали&r Π·Π°Ρ‰ΠΈΡ‰Π°Π΅Ρ‚ ΠΎΡ‚ ΡΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½ΠΎΠ³ΠΎ ΠΆΠ°Ρ€Π° β€” Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, ΠΏΡ€ΠΈ ΡƒΠ΄Π΅Ρ€ΠΆΠ°Π½ΠΈΠΈ раскалённых слитков ΠΈΠ»ΠΈ ΠΏΡ€ΠΈ Ρ…ΠΎΠΆΠ΄Π΅Π½ΠΈΠΈ ΠΏΠΎ Ρ‚Ρ€ΡƒΠ±Π°ΠΌ, Π·Π°ΠΏΠΎΠ»Π½Π΅Π½Π½Ρ‹ΠΌ ΠΏΠ°Ρ€ΠΎΠΌ, Π° снаряТСниС ΠΈΠ· &cΠšΡ€Π°ΡΠ½ΠΎΠΉ стали&r Π΄Π΅Π»Π°Π΅Ρ‚ Ρ‚ΠΎ ΠΆΠ΅ самоС, Π½ΠΎ для Ρ…ΠΎΠ»ΠΎΠ΄Π°. Нагрудники Π·Π°Ρ‰ΠΈΡ‰Π°ΡŽΡ‚ Ρ‚Π²ΠΎΠΉ ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ, Π° Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ β€” ΠΎΡ‚ воздСйствия Ρ‚Ρ€ΡƒΠ±.\n\nЗагляни Π² Ρ‚Π΅Π³ΠΈ &6#hot_protection_equipment&r ΠΈ &b#cold_protection_equipment&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ ΠΏΠΎΠ»Π½Ρ‹ΠΉ список!", + "quests.metal_age.temperature_protection.task": "Π›ΡŽΠ±Π°Ρ экипировка ΠΈΠ· синСй ΠΈΠ»ΠΈ красной стали", + "quests.ore_proc": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄", + "quests.ore_proc.subtitle": "Всё, Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Ρ‚ΡŒ ΠΏΠΎ максимуму ΠΎΡ‚ Π²Π°ΡˆΠΈΡ… Ρ€ΡƒΠ΄", + "quests.ore_proc.native_ore.title": "Π”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π² ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ Ρ€ΡƒΠ΄Ρ‹", + "quests.ore_proc.native_ore.subtitle": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ ΠΈΠ»ΠΈ Π½Π΅ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ", + "quests.ore_proc.native_ore.desc": "Π’Π°ΠΆΠ½ΠΎΠΉ Ρ‡Π°ΡΡ‚ΡŒΡŽ &6GregTech&r ΡΠ²Π»ΡΡŽΡ‚ΡΡ Π΅Π³ΠΎ &dΠœΠ΅Ρ…Π°Π½ΠΈΠΊΠΈ ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Π ΡƒΠ΄Ρ‹&r, Π½ΠΎ ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ ΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ довольно слоТными, поэтому эта Π³Π»Π°Π²Π° создана, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠΌΠΎΡ‡ΡŒ!\n\nДля Π½Π°Ρ‡Π°Π»Π° стоит ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ Π½Π° Π²ΠΊΠ»Π°Π΄ΠΊΡƒ &6Ore Processing Diagram&r Π² EMI β€” Π½Π°ΠΆΠΌΠΈΡ‚Π΅ ΠΊΠ»Π°Π²ΠΈΡˆΡƒ просмотра использований (ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ &bU&r) Π½Π° любом ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π΅, связанном с ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΎΠΉ Ρ€ΡƒΠ΄Ρ‹, ΠΈ Π½Π°ΠΉΠ΄ΠΈΡ‚Π΅ Π²ΠΊΠ»Π°Π΄ΠΊΡƒ с ΠΈΠΊΠΎΠ½ΠΊΠΎΠΉ ванильной ΠΆΠ΅Π»Π΅Π·Π½ΠΎΠΉ Ρ€ΡƒΠ΄Ρ‹. На ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ взгляд эта Π΄ΠΈΠ°Π³Ρ€Π°ΠΌΠΌΠ° ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ ΠΏΠ΅Ρ€Π΅Π³Ρ€ΡƒΠΆΠ΅Π½Π½ΠΎΠΉ, Π½ΠΎ ΠΌΡ‹ Ρ€Π°Π·Π±Π΅Ρ€Ρ‘ΠΌ всё шаг Π·Π° шагом.\n\nΠ‘ΠΎΠ»ΡŒΡˆΠ°Ρ Ρ‡Π°ΡΡ‚ΡŒ философии GregTech Π·Π°ΠΊΠ»ΡŽΡ‡Π°Π΅Ρ‚ΡΡ Π² Ρ‚ΠΎΠΌ, Ρ‡Ρ‚ΠΎ для Ρ€Π΅ΡˆΠ΅Π½ΠΈΡ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΡ‹ сущСствуСт Π½Π΅ ΠΎΠ΄ΠΈΠ½ ΠΏΡƒΡ‚ΡŒ, Π½ΠΎ ΠΌΡ‹ ΠΎΡ‚ΠΌΠ΅Ρ‚ΠΈΠ»ΠΈ всё Π²Π°ΠΆΠ½ΠΎΠ΅ &eΠ·Π²Ρ‘Π·Π΄ΠΎΡ‡ΠΊΠΎΠΉ&r, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Ссли Π²Ρ‹ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ ΠΏΠΎΡ‚Π΅Ρ€ΡΠ»ΠΈΡΡŒ β€” ΠΏΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚ΡŒ этим ΠΎΡ‚ΠΌΠ΅Ρ‚ΠΊΠ°ΠΌ!", + "quests.ore_proc.native_ore.task": "Π― согласСн Π½Π΅ Π·Π°ΠΊΠΈΠ΄Ρ‹Π²Π°Ρ‚ΡŒ всё подряд Π² ΠΏΠ΅Ρ‡ΡŒ", + "quests.ore_proc.robot_arm.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄Ρ‹ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ инструмСнтов GregTech", + "quests.ore_proc.robot_arm.subtitle": "РСшая собствСнныС ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΡ‹ собствСнными срСдствами", + "quests.ore_proc.robot_arm.desc": "GregTech поставляСтся с собствСнными инструмСнтами, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΏΠΎΠΌΠΎΠ³Π°ΡŽΡ‚ Ρ€Π΅ΡˆΠ°Ρ‚ΡŒ логистику ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹.\n\n&6Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠœΠ°Π½ΠΈΠΏΡƒΠ»ΡΡ‚ΠΎΡ€&r ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ Ρ‚ΠΎΡ‡Π½ΠΎΠ΅ количСство ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π² ΠΌΠ°ΡˆΠΈΠ½Ρƒ β€” Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, ΠΏΠΎΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ Π² Π›Π°Π·Π΅Ρ€Π½Ρ‹ΠΉ Π“Ρ€Π°Π²Ρ‘Ρ€ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠΎΠ²Ρ€Π΅ΠΆΠ΄Ρ‘Π½Π½Ρ‹Π΅ (flawed) Π΄Ρ€Π°Π³ΠΎΡ†Π΅Π½Π½Ρ‹Π΅ ΠΊΠ°ΠΌΠ½ΠΈ ΠΈ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‚ΠΎΠ³Π΄Π°, ΠΊΠΎΠ³Π΄Π° Ρƒ вас Π΅ΡΡ‚ΡŒ Ρ€ΠΎΠ²Π½ΠΎ Π΄Π²Π°.\n\n&6Π’Π΅Π³-Π€ΠΈΠ»ΡŒΡ‚Ρ€&r позволяСт Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΏΠΎ Ρ‚Π΅Π³Ρƒ, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ '&5*purified_ores*&r', Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹Π±ΠΈΡ€Π°Ρ‚ΡŒ всС ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½Ρ‹Π΅ Ρ€ΡƒΠ΄Ρ‹.\n\n&4Π£ΠΌΠ½Ρ‹ΠΉ Π€ΠΈΠ»ΡŒΡ‚Ρ€&r ΠΌΠΎΠΆΠ΅Ρ‚ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π² зависимости ΠΎΡ‚ ΠΈΡ… &6Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°&r. НапримСр, Ссли ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Π³ΠΎ вмСстС с Ρ€ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠΉ Ρ€ΡƒΠΊΠΎΠΉ Π½Π° элСктролизёрС ΠΈ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Ρ€ΡƒΠΊΠ΅ Ρ‚ΠΎΡ‡Π½ΡƒΡŽ ΠΏΠΎΠ΄Π°Ρ‡Ρƒ (exact), ΠΎΠ½Π° Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΏΡ‹Π»ΡŒ (dusts) Π² элСктролизёр Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‚ΠΎΠ³Π΄Π°, ΠΊΠΎΠ³Π΄Π° ΠΈΡ… количСство соотвСтствуСт трСбованиям Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°!", + "quests.ore_proc.ae2.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄Ρ‹ с Applied Energistics 2", + "quests.ore_proc.ae2.subtitle": "Π¨ΠΈΠ½Π° хранСния ΠΏΠΎ Ρ‚Π΅Π³Π°ΠΌ? Π§Ρ‚ΠΎ это Ρ‚Π°ΠΊΠΎΠ΅?", + "quests.ore_proc.ae2.desc": "AE2 ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для пСрСмСщСния ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π±Π΅Π· ΠΊΠΈΠ»ΠΎΠΌΠ΅Ρ‚Ρ€ΠΎΠ² кабСльной лапши! Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &dΠ¨ΠΈΠ½Ρƒ Π₯ранСнСния ΠΏΠΎ Π’Π΅Π³Π°ΠΌ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠΊΠ°Π·Π°Ρ‚ΡŒ вашСй сСти, ΠΊΡƒΠ΄Π° ΡΠΊΠ»Π°Π΄Ρ‹Π²Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΠ΅ Ρ‚Π΅Π³Ρƒ Π²Ρ‹Π±Ρ€Π°Π½Π½ΠΎΠ³ΠΎ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°. ΠŸΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Π΅Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ, Π½Π°ΠΆΠ°Π² F3 + H. НапримСр, Ссли Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΎΡ‚ΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ всС ΠžΡ‡ΠΈΡ‰Π΅Π½Π½Ρ‹Π΅ Π ΡƒΠ΄Ρ‹ Π² сундук, просто установитС Π½Π° Π½Π΅Π³ΠΎ Π¨ΠΈΠ½Ρƒ Π₯ранСнСния ΠΏΠΎ Π’Π΅Π³Π°ΠΌ ΠΈ Π·Π°Π΄Π°ΠΉΡ‚Π΅ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ '&5*purified_ores*&r'.\n\nБущСствуСт мноТСство ΠΎΠ½Π»Π°ΠΉΠ½-Π³Π°ΠΉΠ΄ΠΎΠ² ΠΏΠΎ настройкС AE2, Π½ΠΎ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Π°Ρ ΠΏΠΎΠ΄ΡΠ΅Ρ‚ΡŒ (subnet) для ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ всСй Ρ€ΡƒΠ΄Ρ‹ ΠΏΠ΅Ρ€Π΅Π΄ ΠΏΠΎΠΏΠ°Π΄Π°Π½ΠΈΠ΅ΠΌ Π² вашС основноС Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ β€” ΠΎΡ‡Π΅Π½ΡŒ Ρ…ΠΎΡ€ΠΎΡˆΠ°Ρ идСя!", + "quests.ore_proc.gtcy.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄Ρ‹, Π½ΠΎ ΠΊΡ€ΡƒΠΏΠ½Π΅Π΅", + "quests.ore_proc.gtcy.subtitle": "Когда Ρ€Π°Π·ΠΌΠ΅Ρ€ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΈΠΌΠ΅Π΅Ρ‚ Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅", + "quests.ore_proc.gtcy.desc": "Когда Π²Ρ‹ Π΄ΠΎΠ±ΠΈΡ€Π°Π΅Ρ‚Π΅ΡΡŒ Π΄ΠΎ IV, Π²Π°ΠΌ открываСтся доступ ΠΊ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΡ‡Π½Ρ‹ΠΌ вСрсиям всСх ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΡ‡Π½Ρ‹Ρ… машин GregTech. Они Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡŽΡ‚ Ρ‚Π΅ ΠΆΠ΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, Ρ‡Ρ‚ΠΎ ΠΈ ΠΈΡ… ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΡ‡Π½Ρ‹Π΅ Π°Π½Π°Π»ΠΎΠ³ΠΈ, Π½ΠΎ Π³ΠΎΡ€Π°Π·Π΄ΠΎ Π³ΠΈΠ±Ρ‡Π΅ β€” Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Π½Π° Π½ΠΈΡ… мноТСство ΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹Ρ… Π’Ρ…ΠΎΠ΄Π½Ρ‹Ρ… Π›ΡŽΠΊΠΎΠΌ, ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Ρ€Π°Π·Π³ΠΎΠ½ΡΡ‚ΡŒ ΠΈΡ… с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ЭнСргСтичСских Π’Ρ…ΠΎΠ΄Π½Ρ‹Ρ… РазъСмов Π±ΠΎΠ»Π΅Π΅ высокого уровня, вмСсто создания Π½ΠΎΠ²ΠΎΠΉ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ Π½Π° ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ‚ΠΈΡ€, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &6ΠŸΠ°Ρ€Π°Π»Π»Π΅Π»ΡŒΠ½Ρ‹Π΅ Π Π°Π·ΡŠΠ΅ΠΌΡ‹&r для выполнСния Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ!\n\nВсС эти ΠΌΠ°ΡˆΠΈΠ½Ρ‹ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ сплавов, создаваСмых Π² &bΠ”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ для Π‘ΠΏΠ»Π°Π²ΠΎΠ²&r, доступной Π² ΠΊΠΎΠ½Ρ†Π΅ Ρ‚ΠΈΡ€Π° &dEV&r.", + "quests.ore_proc.copper_tier.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄ Π² МСдной Π­ΠΏΠΎΡ…Π΅", + "quests.ore_proc.copper_tier.desc": "Π­Ρ‚ΠΎΡ‚ ряд описываСт самыС Π±Π°Π·ΠΎΠ²Ρ‹Π΅ способы ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹. Никаких ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ² ΠΈ Π½ΠΈΠΊΠ°ΠΊΠΎΠΉ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ.", + "quests.ore_proc.bronze_tier.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄ Π² Π‘Ρ€ΠΎΠ½Π·ΠΎΠ²ΠΎΠΉ Π­ΠΏΠΎΡ…Π΅", + "quests.ore_proc.bronze_tier.desc": "Π­Ρ‚ΠΎΡ‚ ряд посвящён Ρ‚ΠΎΠΌΡƒ, Ρ‡Ρ‚ΠΎ становится доступно послС получСния любой Π‘Ρ€ΠΎΠ½Π·ΠΎΠ²ΠΎΠΉ Наковальни.", + "quests.ore_proc.steel_tier.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄ Π² Π‘Ρ‚Π°Π»ΡŒΠ½ΠΎΠΉ Π­ΠΏΠΎΡ…Π΅", + "quests.ore_proc.steel_tier.desc": "Π‘Ρ‚Π°Π»ΡŒΠ½Π°Ρ Наковальня ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Π΅Ρ‚ ваши ΠΏΠ΅Ρ€Π²Ρ‹Π΅ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ ΠΎΡ‚ ΠΏΡ€ΠΎΠΌΡ‹Π²ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹.", + "quests.ore_proc.steam_tier.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄ Π² ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π­ΠΏΠΎΡ…Π΅", + "quests.ore_proc.steam_tier.desc": "ΠŸΠ°Ρ€ΠΎΠ²Ρ‹Π΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ Π΄Π°ΡŽΡ‚ доступ ΠΊΠΎ Π²Ρ‚ΠΎΡ€Ρ‹ΠΌ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹ΠΌ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Π°ΠΌ β€” ΠΎΡ‚ цСнтрифугирования.", + "quests.ore_proc.lv_tier.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄ Π² &7LV&r", + "quests.ore_proc.lv_tier.desc": "LV приносит мноТСство машин, способных ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Ρ€ΡƒΠ΄Ρ‹ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹ΠΌΠΈ способами. Π‘Π°ΠΌΠΎΠΉ Π²Π°ΠΆΠ½ΠΎΠΉ, вСроятно, являСтся Π’Π΅Ρ€ΠΌΠ°Π»ΡŒΠ½Π°Ρ Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°.", + "quests.ore_proc.mv_tier.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄ Π² &bMV&r", + "quests.ore_proc.mv_tier.desc": "На MV происходит Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎΠ΅, ΠΊΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎ элСктролизёр становится ΠΊΡƒΠ΄Π° Π±ΠΎΠ»Π΅Π΅ ΠΌΠΎΡ‰Π½Ρ‹ΠΌ.", + "quests.ore_proc.hv_tier.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄ Π² &6HV&r", + "quests.ore_proc.hv_tier.desc": "HV Π”Ρ€ΠΎΠ±ΠΈΡ‚Π΅Π»ΠΈ Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ Π²Ρ‹Π΄Π°ΡŽΡ‚ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹! Если Ρƒ вас всё Π΅Ρ‰Ρ‘ Π½Π΅Ρ‚ Π²Ρ‹Π΄Π΅Π»Π΅Π½Π½ΠΎΠΉ систСмы ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄, сСйчас ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½ΠΎ самоС врСмя Π΅Ρ‘ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ.", + "quests.ore_proc.ev_tier.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄ Π² &5EV&r", + "quests.ore_proc.ev_tier.desc": "EV β€” ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ Ρ‚ΠΈΡ€, Π½Π° ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌ Π²Π°ΠΌ потрСбуСтся Ρ€Π°Π·Π±ΠΈΠ²Π°Ρ‚ΡŒ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ Ρ€ΡƒΠ΄Ρ‹ Π½Π° Ρ€Π°Π·Π½Ρ‹Π΅ Β«Π»ΠΈΠ½ΠΈΠΈΒ».", + "quests.ore_proc.iv_tier.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄ Π² &9IV&r", + "quests.ore_proc.iv_tier.desc": "На IV становятся доступны ΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹Π΅ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ускорят ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ Ρ€ΡƒΠ΄.", + "quests.ore_proc.luv_tier.title": "ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄ Π² &dLuV&r", + "quests.ore_proc.luv_tier.desc": "Линия Наквада уровня LuV станСт настоящим испытаниСм вашСй систСмы ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄. Бправятся Π»ΠΈ ваши ΠΌΠ°ΡˆΠΈΠ½Ρ‹?", + "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": "ΠžΡ‡ΠΈΡ‰Π΅Π½Π½Π°Ρ Π ΡƒΠ΄Π°", + "quests.ore_proc.purified_ore.desc": "Π­Ρ‚ΠΎΡ‚ столбСц ΠΏΠΎΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚, Ρ‡Ρ‚ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ с ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½ΠΎΠΉ Ρ€ΡƒΠ΄ΠΎΠΉ.", + "quests.ore_proc.refined_ore.title": "ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Π°Ρ Π ΡƒΠ΄Π°", + "quests.ore_proc.refined_ore.desc": "ЕдинствСнноС, Ρ‡Ρ‚ΠΎ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ с ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½ΠΎΠΉ Ρ€ΡƒΠ΄ΠΎΠΉ β€” это Ρ€Π°Π·Π΄Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ Π΅Ρ‘.", + "quests.ore_proc.impure_dust.title": "Грязная ΠΊΡƒΡ‡ΠΊΠ° ΠΏΡ‹Π»ΠΈ", + "quests.ore_proc.impure_dust.desc": "ΠžΡ‚ΠΌΠΎΠΉ эту Π³Ρ€ΡΠ·Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ!", + "quests.ore_proc.purified_dust.title": "ΠžΡ‡ΠΈΡ‰Π΅Π½Π½Π°Ρ ΠΊΡƒΡ‡ΠΊΠ° ΠΏΡ‹Π»ΠΈ", + "quests.ore_proc.purified_dust.desc": "Π­Ρ‚ΠΎΡ‚ столбСц ΠΏΠΎΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚, Ρ‡Ρ‚ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ с ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½ΠΎΠΉ ΠΏΡ‹Π»ΡŒΡŽ.", + "quests.ore_proc.dust_processed.title": "Π’Π°ΡˆΠ° послСдняя ΠΏΡ‹Π»ΡŒ", + "quests.ore_proc.dust_processed.subtitle": "А ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈ Π½Π΅Ρ‚?", + "quests.ore_proc.dust_processed.desc": "&6ΠšΡƒΡ‡ΠΊΠΈ ΠŸΡ‹Π»ΠΈ&r β€” это ΠΎΠΊΠΎΠ½Ρ‡Π°Ρ‚Π΅Π»ΡŒΠ½Π°Ρ Ρ„ΠΎΡ€ΠΌΠ° ΠΏΠΎΡ‡Ρ‚ΠΈ ΠΊΠ°ΠΆΠ΄ΠΎΠΉ Ρ€ΡƒΠ΄Ρ‹.\n\nΠžΡ‚ΡΡŽΠ΄Π° Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ Π΅Ρ‘ Π² &cΠŸΠ΅Ρ‡ΡŒ&r, ΡΠ»ΠΎΠΆΠΈΡ‚ΡŒ Π² &eΡ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅&r ΠΈΠ»ΠΈ Π΄Π°ΠΆΠ΅ Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ прямо сСйчас! НСкоторыС ΠΏΡ‹Π»ΠΈ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ Π΅Ρ‰Ρ‘ ΠΎΠ΄Π½ΠΎΠ³ΠΎ послСднСго шага, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ станут ΠΏΠΎ-настоящСму ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌΠΈ.\n\nНС Π·Π°Π±Ρ‹Π²Π°ΠΉΡ‚Π΅ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ свою &6линию ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄&r Π² идСальном состоянии! По ΠΌΠ΅Ρ€Π΅ развития Π²Π°ΠΌ захочСтся Ρ€Π°ΡΡˆΠΈΡ€ΡΡ‚ΡŒ ΠΈ ΡƒΠ»ΡƒΡ‡ΡˆΠ°Ρ‚ΡŒ Π΅Ρ‘, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ мСньшС Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ Π½Π° ΡˆΠ°Ρ…Ρ‚Ρ‘Ρ€ΡΡ‚Π²ΠΎ ΠΈ большС Π½Π° Π³Ρ€Π΅Π³Ρ‚Π΅Ρ‡Ρ‡ΠΈΠ½Π³.", + "quests.ore_proc.macerator_byproduct.title": "Π”Ρ€ΠΎΠ±Π»Π΅Π½ΠΈΠ΅ с ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹ΠΌΠΈ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Π°ΠΌΠΈ", + "quests.ore_proc.macerator_byproduct.subtitle": "МоТно Π²Ρ‹ΠΆΠ°Ρ‚ΡŒ Π΅Ρ‰Ρ‘ большС ΠΈΠ· Ρ€ΡƒΠ΄Ρ‹!", + "quests.ore_proc.macerator_byproduct.desc": "ΠŸΡ€ΠΎΡΠΌΠ°Ρ‚Ρ€ΠΈΠ²Π°Ρ &bEMI&r, Π²Ρ‹, вСроятно, Π·Π°ΠΌΠ΅Ρ‚ΠΈΠ»ΠΈ, Ρ‡Ρ‚ΠΎ ваш &dΠ˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ&r ΠΈΠ»ΠΈ &dΠ–Π΅Ρ€Π½ΠΎΠ²&r ΠΏΠΎΠΊΠ°Π·Ρ‹Π²Π°ΡŽΡ‚ большС &bΠ²Ρ‹Ρ…ΠΎΠ΄ΠΎΠ²&r, Ρ‡Π΅ΠΌ Π²Ρ‹ фактичСски ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅Ρ‚Π΅.\n\nGregTech ΠΎΠ±ΡŠΡΡΠ½ΡΠ΅Ρ‚ это Π½Π΅ ΠΎΡ‡Π΅Π½ΡŒ ясно, Π½ΠΎ эти Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ слоты доступны Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &6HV&r. Когда Π²Ρ‹ достигнСтС этого Ρ‚ΠΈΡ€Π°, &6HV&r-ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ станСт нСвСроятно ΠΌΠΎΡ‰Π½Ρ‹ΠΌ, давая ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ΅ количСство бонусных ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ² с ΠΊΠ°ΠΆΠ΄ΠΎΠΉ Ρ€ΡƒΠ΄Ρ‹.", + "quests.ore_proc.macerator_byproduct.task": "Π›ΠΈΠ±ΠΎ HV Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ, Π»ΠΈΠ±ΠΎ HS Crushing Wheels", + "quests.ore_proc.sodium_persulfate.title": "ΠšΡƒΠΏΠ°Π½ΠΈΠ΅ Π² ΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚Π΅ натрия", + "quests.ore_proc.sodium_persulfate.subtitle": "НС Ρ‚ΠΎΠ»ΡŒΠΊΠΎ для травлСния ΠΏΠ»Π°Ρ‚", + "quests.ore_proc.sodium_persulfate.desc": "Когда Π²Ρ‹ Π΄ΠΎΠ±Π΅Ρ€Ρ‘Ρ‚Π΅ΡΡŒ Π΄ΠΎ LV, вас ΠΌΠΎΠΆΠ΅Ρ‚ Π·Π°ΠΈΠ½Ρ‚Π΅Ρ€Π΅ΡΠΎΠ²Π°Ρ‚ΡŒ использованиС &bΠ₯имичСской Π’Π°Π½Π½Ρ‹&r с &dΠŸΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ΠΎΠΌ натрия&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹. НС всС Ρ€ΡƒΠ΄Ρ‹ ΠΌΠΎΠΆΠ½ΠΎ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Ρ‚Π°ΠΊΠΈΠΌ способом, Π½ΠΎ Ρ‚Π΅, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠΆΠ½ΠΎ, Π΄Π°Π΄ΡƒΡ‚ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ &670 ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚ΠΎΠ²&r шанса Π½Π° ΠΏΠΎΠ±ΠΎΡ‡ΠΊΡƒ, ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с &630 ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚Π°ΠΌΠΈ&r Ρƒ &bΠ ΡƒΠ΄ΠΎΠΏΡ€ΠΎΠΌΡ‹Π²ΠΎΡ‡Π½ΠΎΠΉ Машиной&r.\n\nΠŸΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ натрия ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Ρ€Π°Π·Π΄Ρ€Π°ΠΆΠ°ΡŽΡ‰ΠΈΠΌ Π² массовом производствС, Π½ΠΎ &9ΠœΠΎΡ€ΡΠΊΠ°Ρ Π’ΠΎΠ΄Π°&r β€” ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ источник.\n\nΠšΠ²Π΅ΡΡ‚ снизу ΠΏΡ€ΠΈΠ²ΠΎΠ΄ΠΈΡ‚ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ ΡΡ‚ΠΎΠΈΡ‚ΡŒ Π²Π»ΠΎΠΆΠ΅Π½ΠΈΠΉ.", + "quests.ore_proc.sodium_ores.title": "ΠŸΡ€ΠΈΠΌΠ΅Ρ€Ρ‹ купания Π² ΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚Π΅", + "quests.ore_proc.sodium_ores.subtitle": "ΠŸΠΎΠ»Π΅Π·Π½Ρ‹ΠΉ способ ΡΡΠΊΠΎΠ½ΠΎΠΌΠΈΡ‚ΡŒ врСмя", + "quests.ore_proc.sodium_ores.desc": "Π’ΠΎΡ‚ нСсколько Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄Π°Ρ†ΠΈΠΉ ΠΏΠΎ ΠΊΡƒΠΏΠ°Π½ΠΈΡŽ Π² ΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚Π΅ натрия:\n\n- &6Π”Ρ€ΠΎΠ±Π»Ρ‘Π½Π½Ρ‹ΠΉ алюминий&r: для &dΠ ΡƒΡ‚ΠΈΠ»Π°&r (Π’ΠΈΡ‚Π°Π½)\n\n- &6Дроблённая бокситовая Ρ€ΡƒΠ΄Π°&r: &dΠ“Π°Π»Π»ΠΈΠΉ&r\n\n- &6Π”Ρ€ΠΎΠ±Π»Ρ‘Π½Π½Ρ‹ΠΉ ΠΊΠΎΠ±Π°Π»ΡŒΡ‚&r: &dΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚&r для &dΠœΡ‹ΡˆΡŒΡΠΊΠ°&r", + "quests.ore_proc.ore_washer.title": "ΠšΡƒΠΏΠ°Π½ΠΈΠ΅ Π² Π²ΠΎΠ΄Π΅", + "quests.ore_proc.ore_washer.subtitle": "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½Ρ‹ΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ для Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π° Ρ€ΡƒΠ΄", + "quests.ore_proc.ore_washer.desc": "Π‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ Ρ€ΡƒΠ΄ Π½Π΅ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ Π½ΠΈΠΊΠ°ΠΊΠΎΠΉ особой Π²Π°Π½Π½Ρ‹ β€” достаточно ΠΏΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ ΠΈΡ… Ρ‡Π΅Ρ€Π΅Π· &dΠ ΡƒΠ΄ΠΎΠΏΡ€ΠΎΠΌΡ‹Π²ΠΎΡ‡Π½ΡƒΡŽ ΠœΠ°ΡˆΠΈΠ½Ρƒ&r ΠΈΠ»ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &9МассовоС ΠœΡ‹Ρ‚ΡŒΡ‘&r с &dВСнтилятором Π² ΠšΠΎΡ€ΠΏΡƒΡΠ΅&r.\n\nЕсли ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚Π΅ &bРудопромывочная Машина&r, ΡƒΠ±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎ примСняСтС &9Π”ΠΈΡΡ‚ΠΈΠ»Π»ΠΈΡ€ΠΎΠ²Π°Π½Π½ΡƒΡŽ Π²ΠΎΠ΄Ρƒ&r β€” ΠΎΠ½Π° ΡƒΠ΄Π²Π°ΠΈΠ²Π°Π΅Ρ‚ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°.\n\nНСт доступа Π½ΠΈ ΠΊ Ρ‚ΠΎΠΌΡƒ, Π½ΠΈ ΠΊ Π΄Ρ€ΡƒΠ³ΠΎΠΌΡƒ? ΠŸΡ€ΠΎΡΡ‚ΠΎ Π±Ρ€ΠΎΡΡŒΡ‚Π΅ Π΄Ρ€ΠΎΠ±Π»Ρ‘Π½ΡƒΡŽ Ρ€ΡƒΠ΄Ρƒ Π² Π²ΠΎΠ΄Ρƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‡ΠΈΡΡ‚ΠΈΡ‚ΡŒ Π΅Ρ‘ β€” хотя ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ² Ρ‚Π°ΠΊΠΎΠΉ способ Π½Π΅ даст.", + "quests.ore_proc.ore_washer.task": "Π›ΡŽΠ±Π°Ρ Рудопромывочная Машина", + "quests.ore_proc.mercury_ores.title": "ΠšΡƒΠΏΠ°Π½ΠΈΠ΅ Π² Ρ€Ρ‚ΡƒΡ‚ΠΈ", + "quests.ore_proc.mercury_ores.subtitle": "НС суй Ρ‚ΡƒΠ΄Π° ΠΏΠ°Π»Π΅Ρ†", + "quests.ore_proc.mercury_ores.desc": "ΠšΡƒΠΏΠ°Π½ΠΈΠ΅ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Ρ€ΡƒΠ΄ Π² &dΠ Ρ‚ΡƒΡ‚ΠΈ&r ΠΌΠΎΠΆΠ΅Ρ‚ Π΄Π°Ρ‚ΡŒ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Π΅ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹. НС всС Ρ€ΡƒΠ΄Ρ‹ ΠΌΠΎΠΆΠ½ΠΎ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Ρ‚Π°ΠΊΠΈΠΌ способом, Π½ΠΎ Ρ‚Π΅, Ρ‡Ρ‚ΠΎ ΠΌΠΎΠΆΠ½ΠΎ, Π΄Π°Π΄ΡƒΡ‚ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ &670 ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚ΠΎΠ²&r шанса Π½Π° ΠΏΠΎΠ±ΠΎΡ‡ΠΊΡƒ, ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с &630 ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚Π°ΠΌΠΈ&r Ρƒ &bΠ ΡƒΠ΄ΠΎΠΏΡ€ΠΎΠΌΡ‹Π²ΠΎΡ‡Π½ΠΎΠΉ Машиной&r.\n\n&dΠ Ρ‚ΡƒΡ‚ΡŒ&r Π»Π΅Π³ΠΊΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΈΠ· &cРСдстоуна&r ΠΈΠ»ΠΈ &cΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΠΈ&r.\n\nΠšΠ²Π΅ΡΡ‚ снизу ΠΏΡ€ΠΈΠ²ΠΎΠ΄ΠΈΡ‚ Ρ…ΠΎΡ€ΠΎΡˆΠΈΠ΅ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Ρ‹ Ρ€ΡƒΠ΄ для ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€Ρ‚ΡƒΡ‚ΡŒΡŽ.", + "quests.ore_proc.mercury.title": "ΠŸΡ€ΠΈΠΌΠ΅Ρ€Ρ‹ купания Π² Ρ€Ρ‚ΡƒΡ‚ΠΈ", + "quests.ore_proc.mercury.subtitle": "ВрСмя Π²Π°Π½Π½Ρ‹ с ΠΆΠΈΠ΄ΠΊΠΈΠΌ ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠΌ", + "quests.ore_proc.mercury.desc": "Π’ΠΎΡ‚ нСсколько Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄Π°Ρ†ΠΈΠΉ ΠΏΠΎ ΠΊΡƒΠΏΠ°Π½ΠΈΡŽ Π² Ρ€Ρ‚ΡƒΡ‚ΠΈ:\n\n- &6Дроблённая платиновая Ρ€ΡƒΠ΄Π°&r: &dПалладий&r\n\n- &6Дроблённая купСритовая Ρ€ΡƒΠ΄Π°&r: &dПалладий&r\n\n- &6Π”Ρ€ΠΎΠ±Π»Ρ‘Π½Π½Ρ‹ΠΉ никСль&r: &dΠŸΠ»Π°Ρ‚ΠΈΠ½Π°&r\n\n- &6Π”Ρ€ΠΎΠ±Π»Ρ‘Π½Π½ΠΎΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ&r: &dΠ‘Π΅Ρ€Π΅Π±Ρ€ΠΎ&r", + "quests.ore_proc.indium.title": "Линия Индия", + "quests.ore_proc.indium.subtitle": "ΠœΡ‹ Π½Π°Π·Ρ‹Π²Π°Π΅ΠΌ это Π»ΠΈΠ½ΠΈΠ΅ΠΉ, Π½ΠΎ Π½Π° самом Π΄Π΅Π»Π΅ это всСго Π΄Π²Π° шага", + "quests.ore_proc.indium.desc": "&6Линия Индия&r Π²Π°ΠΌ, скорСС всСго, Π½Π΅ понадобится Π΄ΠΎ &9IV&r, Π½ΠΎ ΠΎΠ½Π° ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½Ρ‹Π΅ &bΠ‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚&r ΠΈ &bΠ“Π°Π»Π΅Π½Ρƒ&r.", + "quests.ore_proc.platline.title": "Π’Π° самая знамСнитая ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²Π°Ρ Линия", + "quests.ore_proc.platline.subtitle": "Π˜Π³Ρ€ΠΎΠΊΠΈ GregTech vs. ΠΈΠ³Ρ€ΠΎΠΊΠΈ Mekanism, ΠΊΠΎΠ³Π΄Π° ΠΈΠΌ Π½ΡƒΠΆΠ΅Π½ Осмий:", + "quests.ore_proc.platline.desc": "&6ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²Π°Ρ Линия&r станСт вашим ΠΏΠ΅Ρ€Π²Ρ‹ΠΌ ΡΠ΅Ρ€ΡŒΡ‘Π·Π½Ρ‹ΠΌ испытаниСм Π² ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ΅ Ρ€ΡƒΠ΄Ρ‹, обСспСчивая доступ ΠΊ ваТнСйшим ΠΌΠ΅Ρ‚Π°Π»Π»Π°ΠΌ ΠΏΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²ΠΎΠΉ Π³Ρ€ΡƒΠΏΠΏΡ‹: &bΠŸΠ»Π°Ρ‚ΠΈΠ½Π°&r, &bПалладий&r, &bΠ ΡƒΡ‚Π΅Π½ΠΈΠΉ&r, &bΠ ΠΎΠ΄ΠΈΠΉ&r, &bΠ˜Ρ€ΠΈΠ΄ΠΈΠΉ&r ΠΈ &bОсмий&r.\n\nΠ₯отя ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‚ способы ΠΏΡ€ΠΎΡ‰Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &bΠŸΠ»Π°Ρ‚ΠΈΠ½Ρƒ&r ΠΈ &bПалладий&r, эта линия Π±ΡƒΠ΄Π΅Ρ‚ &aΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠΉ&r для доступа ΠΊΠΎ всСм ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹ΠΌ.\n\nΠΠ°Ρ‡Π°Ρ‚ΡŒ ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²ΡƒΡŽ Π›ΠΈΠ½ΠΈΡŽ ΠΌΠΎΠΆΠ½ΠΎ Π½Π° &6HV&r, Π½ΠΎ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ Π΅Ρ‘ Π²Ρ‹ Π½Π΅ смоТСтС Π΄ΠΎ Π±ΠΎΠ»Π΅Π΅ ΠΏΠΎΠ·Π΄Π½Π΅Π³ΠΎ &5EV&r.", + "quests.ore_proc.electro_separator.title": "Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠΌΠ°Π³Π½ΠΈΡ‚Π½Ρ‹ΠΉ сСпаратор", + "quests.ore_proc.electro_separator.subtitle": "ВСроятно, самая бСсполСзная машина GregTech", + "quests.ore_proc.electro_separator.desc": "&6Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠΌΠ°Π³Π½ΠΈΡ‚Π½Ρ‹ΠΉ сСпаратор&r ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈΠ·Π²Π»Π΅ΠΊΠ°Ρ‚ΡŒ ΠΆΠ΅Π»Π΅Π·ΠΎ ΠΈ Π·ΠΎΠ»ΠΎΡ‚ΠΎ ΠΈΠ· &dΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹Ρ… Ρ€ΡƒΠ΄&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ Π΄Ρ€ΠΎΠ±Π»Π΅Π½ΠΈΠ΅ΠΌ ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½Ρ‹Ρ… Ρ€ΡƒΠ΄. На Π΄Π°Π½Π½Ρ‹ΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚ ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Π³ΠΎ Π² ΠΏΠ΅Ρ€Π²ΡƒΡŽ ΠΎΡ‡Π΅Ρ€Π΅Π΄ΡŒ для &dНаквады&r. Если Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ большС &aНСодима&r, ΠΌΠΎΠΆΠ½ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ &dБастнСзит&r.", + "quests.ore_proc.electro_separator.task": "Π›ΡŽΠ±ΠΎΠΉ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠΌΠ°Π³Π½ΠΈΡ‚Π½Ρ‹ΠΉ Π‘Π΅ΠΏΠ°Ρ€Π°Ρ‚ΠΎΡ€", + "quests.ore_proc.macerator_separator.title": "Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ", + "quests.ore_proc.macerator_separator.subtitle": "(снова)", + "quests.ore_proc.macerator_separator.desc": "Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ ΠΈΠ½ΠΎΠ³Π΄Π° ΠΌΠΎΠΆΠ΅Ρ‚ Π΄Π°Π²Π°Ρ‚ΡŒ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ ΠΈΠ· ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½Ρ‹Ρ… Ρ€ΡƒΠ΄, Ρ‡Π΅ΠΌ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚Ρ‹, Π½ΠΎ всё это остаётся привязанным ΠΊ ΡƒΡ€ΠΎΠ²Π½ΡŽ &6HV&r, ΠΊΠ°ΠΊ ΠΈ Π»ΡŽΠ±Ρ‹Π΅ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡Π΅Π½ΠΈΡ.", + "quests.ore_proc.macerator_separator.task": "Π›ΡŽΠ±ΠΎΠΉ Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ", + "quests.ore_proc.thermal_centrifuge.title": "Π’Π΅Ρ€ΠΌΠ°Π»ΡŒΠ½Π°Ρ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°", + "quests.ore_proc.thermal_centrifuge.subtitle": "Π›ΡƒΡ‡ΡˆΠΈΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ для Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π° ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½Ρ‹Ρ… Ρ€ΡƒΠ΄", + "quests.ore_proc.thermal_centrifuge.desc": "Для всСх ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Ρ… ΠžΡ‡ΠΈΡ‰Π΅Π½Π½Ρ‹Ρ… Ρ€ΡƒΠ΄, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π½Π΅ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ особой ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ, Π»ΡƒΡ‡ΡˆΠ΅ всСго ΠΏΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ ΠΈΡ… Ρ‡Π΅Ρ€Π΅Π· &dΠ’Π΅Ρ€ΠΌΠ°Π»ΡŒΠ½ΡƒΡŽ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Ρƒ&r. Π­Ρ‚Π° машина ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ с Ρ…ΠΎΡ€ΠΎΡˆΠ΅ΠΉ ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½ΠΎΡΡ‚ΡŒΡŽ, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ элСктричСство. Однако ΠΎΠ½Π° довольно мСдлСнная, поэтому ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ нСсколько Ρ‚Π°ΠΊΠΈΡ… машин.", + "quests.ore_proc.thermal_centrifuge.task": "Π›ΡŽΠ±Π°Ρ Π’Π΅Ρ€ΠΌΠ°Π»ΡŒΠ½Π°Ρ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°", + "quests.ore_proc.sifter.title": "ΠŸΡ€ΠΎΡΠ΅ΠΈΠ²Π°Ρ‚Π΅Π»ΡŒ", + "quests.ore_proc.sifter.subtitle": "Бимулятор скайблока", + "quests.ore_proc.sifter.desc": "&6ΠŸΡ€ΠΎΡΠ΅ΠΈΠ²Π°Ρ‚Π΅Π»ΡŒ&r Π΄ΠΎΠ»ΠΆΠ΅Π½ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ для всСх Π²Π°ΡˆΠΈΡ… &aΠ‘Π°ΠΌΠΎΡ†Π²Π΅Ρ‚ΠΎΠ²&r. Он Π΄Π°Ρ‘Ρ‚ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ большС Π²Ρ‹Ρ…ΠΎΠ΄Π° с ΠΎΠ΄Π½ΠΎΠΉ Ρ€ΡƒΠ΄Ρ‹, Ρ‡Π΅ΠΌ Π»ΡŽΠ±Ρ‹Π΅ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΌΠ΅Ρ‚ΠΎΠ΄Ρ‹, ΠΈ это СдинствСнный способ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ НСпрСвзойдённыС ΠΈ Π‘Π΅Π·ΡƒΠΏΡ€Π΅Ρ‡Π½Ρ‹Π΅ самоцвСты Π΄ΠΎ Π»Π°Π·Π΅Ρ€Π½ΠΎΠΉ Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²ΠΊΠΈ Π½Π° &6HV&r.", + "quests.ore_proc.sifter.task": "Π›ΡŽΠ±ΠΎΠΉ ΠŸΡ€ΠΎΡΠ΅ΠΈΠ²Π°Ρ‚Π΅Π»ΡŒ", + "quests.ore_proc.centrifuge_sifter.title": "Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ ΠΏΡ‹Π»ΠΈ", + "quests.ore_proc.centrifuge_sifter.subtitle": "ΠŸΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ ΠΎΡ‚ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ²", + "quests.ore_proc.centrifuge_sifter.desc": "&6ΠŸΡ€ΠΎΡΠ΅ΠΈΠ²Π°Ρ‚Π΅Π»ΡŒ&r ΠΌΠΎΠΆΠ΅Ρ‚ Π²Ρ‹Π΄Π°Π²Π°Ρ‚ΡŒ &6ΠžΡ‡ΠΈΡ‰Π΅Π½Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ&r, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΌΠΎΠΆΠ½ΠΎ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ Π² Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Ρƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π΅Ρ‰Ρ‘ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ².", + "quests.ore_proc.centrifuge_sifter.task": "Π›ΡŽΠ±Π°Ρ Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°", + "quests.ore_proc.electrolyzer.title": "Π”Π°Π»ΡŒΠ½Π΅ΠΉΡˆΠ°Ρ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ°", + "quests.ore_proc.electrolyzer.subtitle": "Анкор для Ρ€ΡƒΠ΄Ρ‹!", + "quests.ore_proc.electrolyzer.desc": "НСкоторыС &6ΠšΡƒΡ‡ΠΊΠΈ ΠŸΡ‹Π»ΠΈ&r Π½Π΅ ΠΈΠΌΠ΅ΡŽΡ‚ прямого примСнСния. НапримСр, &2Π’Π°Π½Ρ‚Π°Π»ΠΈΡ‚&r Π½ΡƒΠΆΠ½ΠΎ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π² &6Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€Π΅&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ ΡΡ‹Ρ€ΡŒΠ΅Π²Ρ‹Π΅ элСмСнты &dΠ’Π°Π½Ρ‚Π°Π»Π°&r ΠΈ &dΠœΠ°Ρ€Π³Π°Π½Ρ†Π°&r.\n\nΠ‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ этих Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² Π±ΡƒΠ΄Π΅Ρ‚ доступно Ρ‚ΠΎΠ»ΡŒΠΊΠΎ с &bMV Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€ΠΎΠΌ&r, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π²ΠΎΠ·Π²Ρ€Π°Ρ‰Π°ΠΉΡ‚Π΅ΡΡŒ ΠΊ этому ΠΏΠΎΠ·ΠΆΠ΅!", + "quests.ore_proc.electrolyzer.task": "Π›ΡŽΠ±ΠΎΠΉ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€", + "quests.ore_proc.packer.title": "Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊ", + "quests.ore_proc.packer.subtitle": "Он Ρ€Π΅Π°Π»ΡŒΠ½ΠΎ быстрый", + "quests.ore_proc.packer.desc": "Π’ старыС Π²Ρ€Π΅ΠΌΠ΅Π½Π° GregTech этот малСнький ΠΏΠ°Ρ€Π΅Π½ΡŒ использовался ΠΎΡ‡Π΅Π½ΡŒ Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎ β€” ΠΈΠ· ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Π»ΠΎΡΡŒ ΠΌΠ½ΠΎΠ³ΠΎ &6ΠœΠ°Π»Ρ‹Ρ…&r ΠΈ &6ΠšΡ€ΠΎΡˆΠ΅Ρ‡Π½Ρ‹Ρ… ΠšΡƒΡ‡Π΅ΠΊ ΠŸΡ‹Π»ΠΈ&r.\n\nБСйчас ΠΎΠ½ Π² основном ΠΏΠΎΠ»Π΅Π·Π΅Π½ для автоматичСской ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΠΈ, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, &dΠ Π΅Π΄ΠΊΠΎΠ·Π΅ΠΌΠ΅Π»ΡŒΠ½Ρ‹Ρ…&r элСмСнтов Π² &6Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π΅&r, возвращая мноТСство &6ΠœΠ°Π»Ρ‹Ρ… ΠšΡƒΡ‡Π΅ΠΊ ΠŸΡ‹Π»ΠΈ&r.\n\nНС Π·Π°Π±Ρ‹Π²Π°ΠΉΡ‚Π΅: &eΠ ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠœΠ°Π½ΠΈΠΏΡƒΠ»ΡΡ‚ΠΎΡ€&r Π² Ρ€Π΅ΠΆΠΈΠΌΠ΅ Supply Exact ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΏΠΎΠ»Π΅Π·Π΅Π½, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π΅ Π·Π°Π±ΠΈΠ²Π°Ρ‚ΡŒ Π²Ρ…ΠΎΠ΄Π½Ρ‹Π΅ слоты.", + "quests.ore_proc.packer.task": "Π›ΡŽΠ±ΠΎΠΉ Π£ΠΏΠ°ΠΊΠΎΠ²Ρ‰ΠΈΠΊ", + "quests.ore_proc.bauxite.title": "Линия Бокситов", + "quests.ore_proc.bauxite.subtitle": "Новинка для соврСмСнных вСрсий GregTech!", + "quests.ore_proc.bauxite.desc": "Π’Ρ‹ &oΠΌΠΎΠΆΠ΅Ρ‚Π΅&r просто ΡΠ»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·ΠΎΠ²Π°Ρ‚ΡŒ всю Π²Π°ΡˆΡƒ Π‘ΠΎΠΊΡΠΈΡ‚ΠΎΠ²ΡƒΡŽ ΠΏΡ‹Π»ΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΆΠ°Π»ΠΊΠΈΠ΅ 6 алюминия ΠΈ 1 Ρ€ΡƒΡ‚ΠΈΠ» с 15 бокситов... Или Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠΏΡ€ΠΎΠ±ΠΎΠ²Π°Ρ‚ΡŒ &6Π›ΠΈΠ½ΠΈΡŽ Бокситов&r!\n\nΠ­Ρ‚Π° новая линия ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Π΄Π°Ρ‘Ρ‚ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ Π² 2 Ρ€Π°Π·Π° большС &bАлюминия&r ΠΈ Π² 3 Ρ€Π°Π·Π° большС &4Π ΡƒΡ‚ΠΈΠ»Π°&r с ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ боксита, Π° Ρ‚Π°ΠΊΠΆΠ΅ бСсплатно Π΄Π°Ρ‘Ρ‚ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Галлия, Π–Π΅Π»Π΅Π·Π°, НСодима ΠΈ Π₯Ρ€ΠΎΠΌΠ°!", + "quests.ore_proc.gem_slurry.title": "Π”Ρ€ΠΎΠ±Π»Ρ‘Π½Π½Ρ‹Π΅ Π ΡƒΠ΄Ρ‹ (Π‘Π°ΠΌΠΎΡ†Π²Π΅Ρ‚Ρ‹)", + "quests.ore_proc.gem_slurry.subtitle": "ΠœΡ‹... кристаллы...", + "quests.ore_proc.gem_slurry.desc": "&6Π”Ρ€ΠΎΠ±Π»Ρ‘Π½Π½Ρ‹Π΅ Π‘Π°ΠΌΠΎΡ†Π²Π΅Ρ‚Ρ‹&r β€” это ΠΎΠΏΡ†ΠΈΠΎΠ½Π°Π»ΡŒΠ½Ρ‹Π΅, Π½ΠΎ ΠΊΠΎΡ€ΠΎΡ‚ΠΊΠΈΠ΅ Π»ΠΈΠ½ΠΈΠΈ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ для Π ΡƒΠ±ΠΈΠ½ΠΎΠ², Π‘Π°ΠΏΡ„ΠΈΡ€ΠΎΠ² ΠΈ Π—Π΅Π»Ρ‘Π½Ρ‹Ρ… Π‘Π°ΠΏΡ„ΠΈΡ€ΠΎΠ², Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ΠΆΠ°Ρ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ большС рСсурсов ΠΈΠ· Π½ΠΈΡ…. Π’ сравнСнии с элСктролизом:\n\n- &cΠ”Ρ€ΠΎΠ±Π»Π΅Π½Π½Ρ‹ΠΉ Π ΡƒΠ±ΠΈΠ½&r Π΄Π°Ρ‘Ρ‚ ΠΏΠΎΡ‡Ρ‚ΠΈ Π² 3 Ρ€Π°Π·Π° большС Алюминия ΠΈ Π₯Ρ€ΠΎΠΌΠ°\n\n- &9Π”Ρ€ΠΎΠ±Π»Π΅Π½Π½Ρ‹ΠΉ Π‘Π°ΠΏΡ„ΠΈΡ€&r Π΄Π°Ρ‘Ρ‚ Π² 2 Ρ€Π°Π·Π° большС Алюминия\n\n- &aΠ”Ρ€ΠΎΠ±Π»Π΅Π½Π½Ρ‹ΠΉ Π—Π΅Π»Ρ‘Π½Ρ‹ΠΉ Π‘Π°ΠΏΡ„ΠΈΡ€&r Π΄Π°Ρ‘Ρ‚ Π² 2 Ρ€Π°Π·Π° большС Алюминия ΠΈ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ БСриллия\n\nИ Π²Π΄ΠΎΠ±Π°Π²ΠΎΠΊ, всС ΠΎΠ½ΠΈ ΠΈΠΌΠ΅ΡŽΡ‚ нСбольшой шанс Π΄Π°Ρ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Π’ΠΈΡ‚Π°Π½Π°, Π–Π΅Π»Π΅Π·Π° ΠΈ Ванадия!", + "quests.ore_proc.gem_slurry.task": "Π›ΡŽΠ±ΠΎΠΉ Π”Ρ€ΠΎΠ±Π»Π΅Π½Π½Ρ‹ΠΉ Π‘Π°ΠΌΠΎΡ†Π²Π΅Ρ‚", + "quests.moon": "Π›ΡƒΠ½Π°", + "quests.moon.subtitle": "ЕдинствСнноС мСсто, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π½Π΅ Π±Ρ‹Π»ΠΎ испорчСно ΠΊΠ°ΠΏΠΈΡ‚Π°Π»ΠΈΠ·ΠΌΠΎΠΌ... Космос!", + "quests.space_survival.preparations.title": "ΠŸΡ€Π΅Π΄ΠΏΠΎΠ»Ρ‘Ρ‚Π½Π°Ρ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΊΠ°", + "quests.space_survival.preparations.subtitle": "Π£Π±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎ Π²Ρ‹ Π³ΠΎΡ‚ΠΎΠ²Ρ‹!", + "quests.space_survival.preparations.desc": "Π‘Π³ΠΎΡ€Π°Π΅Ρ‚Π΅ ΠΎΡ‚ нСтСрпСния ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒΡΡ ΠΊ послСднСму Ρ€ΡƒΠ±Π΅ΠΆΡƒ? ΠœΡ‹ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ ΠΏΠΎΠ½ΠΈΠΌΠ°Π΅ΠΌ ваш энтузиазм, Π½ΠΎ нСльзя просто Ρ‚Π°ΠΊ Π·Π°ΠΏΡƒΠ»ΠΈΡ‚ΡŒ сСбя Π² космос ΠΈ Π½Π°Π΄Π΅ΡΡ‚ΡŒΡΡ Π½Π° Π²Ρ‹ΠΆΠΈΠ²Π°Π½ΠΈΠ΅! &9ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΊΠ°&r β€” это Π·Π°Π»ΠΎΠ³ успСха, ΠΈΠ½Π°Ρ‡Π΅ Π²Ρ‹ просто ΠΎΠΊΠ°ΠΆΠ΅Ρ‚Π΅ΡΡŒ Π² ΠΊΠ°ΠΌΠ΅Π½Π½ΠΎΠΌ Π²Π΅ΠΊΠ΅, стуча ΠΊΠ°ΠΌΠ½Π΅ΠΌ ΠΎ камСнь Π² Ρ‚Π΅Ρ‡Π΅Π½ΠΈΠ΅ Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… сСкунд, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ Π·Π°Π΄ΠΎΡ…Π½ΡƒΡ‚ΡŒΡΡ.\n\nΠ£Π±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎ Ρƒ вас Π΅ΡΡ‚ΡŒ ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅Π΅:\n- Π‘ΠΊΠ°Ρ„Π°Π½Π΄Ρ€ ΠΈ ΠΏΠΎΠ»Π½Ρ‹ΠΉ Π±Π°Π»Π»ΠΎΠ½ Π΄Ρ‹Ρ…Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠΉ смСси;\n- Π Π°ΠΊΠ΅Ρ‚Π° с Π΅Ρ‰Ρ‘ ΠΎΠ΄Π½ΠΈΠΌ ΠΏΠΎΠ»Π½Ρ‹ΠΌ Π±Π°ΠΊΠΎΠΌ запасного Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°;\n- Бтартовая ΠΏΠ»ΠΎΡ‰Π°Π΄ΠΊΠ°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ ΠΌΠΎΠ³Π»ΠΈ Π²Π΅Ρ€Π½ΡƒΡ‚ΡŒΡΡ;\n- Достаточный запас Π΅Π΄Ρ‹ ΠΈ Π²ΠΎΠ΄Ρ‹;\n- ΠžΡ€ΡƒΠΆΠΈΠ΅ ΠΈ Ρ‰ΠΈΡ‚ Π½Π° случай, Ссли Π½Π° Π›ΡƒΠ½Π΅ водятся ΠΏΡ€ΠΈΠ·Ρ€Π°ΠΊΠΈ...", + "quests.space_survival.food.title": "ΠšΠΎΡΠΌΠΈΡ‡Π΅ΡΠΊΠ°Ρ Π΅Π΄Π°", + "quests.space_survival.food.subtitle": "Π•Π΄Π° с Π΄ΠΎΠ»Π³ΠΈΠΌ сроком хранСния для Π΄ΠΎΠ»Π³ΠΈΡ… ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠΉ", + "quests.space_survival.food.desc": "ΠŸΠΎΠ΄ΡƒΠΌΠ°ΠΉΡ‚Π΅ ΠΎ Ρ‚ΠΎΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Π·ΡΡ‚ΡŒ с собой Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ &dкосмичСской Π΅Π΄Ρ‹&r Π² Π΄ΠΎΡ€ΠΎΠ³Ρƒ! Π•Ρ‘ просто Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ, ΠΈ ΠΎΠ½Π° Π΄ΠΎΠ»Π³ΠΎ хранится. &9Π›ΠΈΠΎΡ„ΠΈΠ»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Π΅ Ρ„Ρ€ΡƒΠΊΡ‚Ρ‹&r β€” вкусный пСрСкус, &bΠΏΠ°ΠΊΠ΅Ρ‚Ρ‹ с Π΅Π΄ΠΎΠΉ&r ΠΌΠΎΠ³ΡƒΡ‚ ΡΠΎΠ΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ Π»ΡŽΠ±ΡƒΡŽ ΠΎΠ±Ρ‹Ρ‡Π½ΡƒΡŽ ΠΏΠΈΡ‰Ρƒ, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ Π΅Π΄ΠΈΡ‚Π΅ Π½Π° Π—Π΅ΠΌΠ»Π΅, Π° Π΅Ρ‰Ρ‘ Π΅ΡΡ‚ΡŒ &aкалорийная паста&r β€” ΠΏΠΈΡ‚Π°Ρ‚Π΅Π»ΡŒΠ½Π°Ρ, Π½ΠΎ довольно противная Π½Π° вкус. ΠšΡΡ‚Π°Ρ‚ΠΈ, пустой Ρ„ΠΎΠ»ΡŒΠ³ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ ΠΏΠ°ΠΊΠ΅Ρ‚ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎ!", + "quests.space_survival.food.task": "Π›ΡŽΠ±Π°Ρ космичСская Π΅Π΄Π°", + "quests.space_survival.satellite.title": "ΠšΠΎΡΠΌΠΈΡ‡Π΅ΡΠΊΠΈΠ΅ станции", + "quests.space_survival.satellite.subtitle": "Для Ρ‚Π΅Ρ…, ΠΊΡ‚ΠΎ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ…ΠΎΡ‡Π΅Ρ‚ ΡΠ±Π΅ΠΆΠ°Ρ‚ΡŒ ΠΎΡ‚ всСго ΠΌΠΈΡ€Π°", + "quests.space_survival.satellite.desc": "ИмСя Π²Ρ‹ΡˆΠ΅ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π² ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Π΅, Π²Ρ‹ смоТСтС ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ &9ΠΊΠΎΡΠΌΠΈΡ‡Π΅ΡΠΊΡƒΡŽ ΡΡ‚Π°Π½Ρ†ΠΈΡŽ&r Π½Π° ΠΎΡ€Π±ΠΈΡ‚Π΅ сразу послС запуска! Π’Π°ΠΌ особо Π½Π΅Ρ‡Π΅ΠΌ Π·Π°Π½ΡΡ‚ΡŒΡΡ, ΠΈ ΠΎΠ½ΠΈ ΡΠΎΠ²Π΅Ρ€ΡˆΠ΅Π½Π½ΠΎ Π½Π΅ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹, Π½ΠΎ Ссли Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ пустотноС ΠΈΠ·ΠΌΠ΅Ρ€Π΅Π½ΠΈΠ΅ Π±Π΅Π· Π³Ρ€Π°Π²ΠΈΡ‚Π°Ρ†ΠΈΠΈ ΠΏΠΎ ΠΊΠ°ΠΊΠΎΠΉ-Π»ΠΈΠ±ΠΎ ΠΏΡ€ΠΈΡ‡ΠΈΠ½Π΅ ΠΈΠ»ΠΈ Π²Ρ‹ &oΠΎΡ‡Π΅Π½ΡŒ&r Π»ΡŽΠ±ΠΈΡ‚Π΅ скайдайвинг, Ρ‚ΠΎ это ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚.", + "quests.space_survival.flag.title": "Π€Π»Π°Π³ΡˆΡ‚ΠΎΠΊ", + "quests.space_survival.flag.subtitle": "LunaFirmaCraft", + "quests.space_survival.flag.desc": "ЗаявитС ΠΎ сСбС Π½Π° Π›ΡƒΠ½Π΅, установив Ρ„Π»Π°Π³ с Π»ΡŽΠ±Ρ‹ΠΌ ΠΈΠ·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΠ΅ΠΌ, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π²Π°ΠΌ нравится!", + "quests.space_survival.flag.task": "Π›ΡŽΠ±ΠΎΠΉ Ρ„Π»Π°Π³", + "quests.space_survival.chorus.title": "Плод хоруса", + "quests.space_survival.chorus.subtitle": "Π­Ρ‚ΠΎ Π­Π½Π΄?", + "quests.space_survival.chorus.desc": "&5Плод хоруса&r ΠΈΠ³Ρ€Π°Π΅Ρ‚ довольно Π²Π°ΠΆΠ½ΡƒΡŽ Ρ€ΠΎΠ»ΡŒ Π½Π° Π›ΡƒΠ½Π΅ β€” ΠΎΠ½ станСт вашим основным источником Π°Π·ΠΎΡ‚Π°. Для Π½Π°Ρ‡Π°Π»Π° Π½Π°ΠΉΠ΄ΠΈΡ‚Π΅ растСния хоруса, Π·Π°Π±Π΅Ρ€ΠΈΡ‚Π΅ΡΡŒ Π½Π°Π²Π΅Ρ€Ρ… ΠΈ сломайтС &5хорусовый Ρ†Π²Π΅Ρ‚ΠΎΠΊ&r. Если ΡΠ»ΠΎΠΌΠ°Ρ‚ΡŒ растСниС снизу, Π²Ρ‹ Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ Ρ†Π²Π΅Ρ‚ΠΊΠΎΠ²! Π—Π°Ρ‚Π΅ΠΌ выраститС ΠΈΡ… Π² элСктротСплицС для бСсконСчного получСния ΠΏΠ»ΠΎΠ΄ΠΎΠ², послС Ρ‡Π΅Π³ΠΎ ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π² биомассу ΠΈ Π°Π·ΠΎΡ‚ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π²Π°Ρ€ΠΎΡ‡Π½ΠΎΠΉ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΈ Ρ„Π΅Ρ€ΠΌΠ΅Π½Π°Ρ‚ΠΎΡ€Π° соотвСтствСнно. Биомассу Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Π³Π½Π°Ρ‚ΡŒ Π² ΡƒΠ³Π»Π΅Ρ€ΠΎΠ΄ для получСния Ρ€Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°!", + "quests.space_survival.rover.title": "Π’Π΅Π·Π΄Π΅Ρ…ΠΎΠ΄", + "quests.space_survival.rover.subtitle": "Π’Π°ΡˆΠ΅ срСдство пСрСдвиТСния", + "quests.space_survival.rover.desc": "Π’Π°ΠΌ ΠΏΡ€ΠΈΡˆΠ»ΠΎΡΡŒ ΠΎΡΡ‚Π°Π²ΠΈΡ‚ΡŒ свой ΠΌΠΎΠ΄Π½Ρ‹ΠΉ Π΄ΠΆΠ΅Ρ‚ΠΏΠ°ΠΊ Π΄ΠΎΠΌΠ°, для самолётов здСсь Π½Π΅Ρ‚ атмосфСры, Π° лошади Π½Π΅ Π²Ρ‹ΠΆΠΈΠ²ΡƒΡ‚. Π’Π°ΠΊ ΠΊΠ°ΠΊ ΠΆΠ΅ Π²Π°ΠΌ ΠΏΠ΅Ρ€Π΅Π΄Π²ΠΈΠ³Π°Ρ‚ΡŒΡΡ?\n\n&bΠ’Π΅Π·Π΄Π΅Ρ…ΠΎΠ΄&r β€” это транспортноС срСдство, Π²ΠΌΠ΅Ρ‰Π°ΡŽΡ‰Π΅Π΅ Π΄ΠΎ Π΄Π²ΡƒΡ… пассаТиров, Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‰Π΅Π΅ Π½Π° Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π΅ (дизСль, Π±Π΅Π½Π·ΠΈΠ½ ΠΈΠ»ΠΈ Ρ€Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ), ΠΈΠΌΠ΅ΡŽΡ‰Π΅Π΅ собствСнный ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ ΠΈ Π΄Π°ΠΆΠ΅ Ρ€Π°Π΄ΠΈΠΎ, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π»ΠΎΠ²ΠΈΡ‚ΡŒ Ρ€Π΅Π°Π»ΡŒΠ½Ρ‹Π΅ радиостанции!", + "quests.space_survival.solar_panels.title": "Π‘ΠΎΠ»Π½Π΅Ρ‡Π½Ρ‹Π΅ ΠΏΠ°Π½Π΅Π»ΠΈ", + "quests.space_survival.solar_panels.subtitle": "Π’ΠΎΡΠ»Π°Π²ΡŒ Π‘ΠΎΠ»Π½Ρ†Π΅!", + "quests.space_survival.solar_panels.desc": "На Π›ΡƒΠ½Π΅ ΠΎΡ‡Π΅Π½ΡŒ ΠΌΠ°Π»ΠΎ источников энСргии, Π½ΠΎ Π·Π°Ρ‚ΠΎ с этих &eсолнСчных ΠΏΠ°Π½Π΅Π»Π΅ΠΉ&r открываСтся прСкрасный Π²ΠΈΠ΄ Π½Π° Π‘ΠΎΠ»Π½Ρ†Π΅!\n\nΠ—Π΄Π΅ΡΡŒ каТдая панСль Π²Ρ‹Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅Ρ‚ эквивалСнт &932 EU/t&r Π΄Π½Ρ‘ΠΌ Π±Π΅Π· Π·Π°Ρ‚Ρ€Π°Ρ‚ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° ΠΈ обслуТивания, Ρ‚ΠΎΠ³Π΄Π° ΠΊΠ°ΠΊ Π½Π° повСрхности Π—Π΅ΠΌΠ»ΠΈ ΠΎΠ½ΠΈ производят лишь Π²ΠΎΡΡŒΠΌΡƒΡŽ Ρ‡Π°ΡΡ‚ΡŒ ΠΎΡ‚ этого. Π‘Π΅Ρ€ΠΈΡ‚Π΅ с собой побольшС!", + "quests.space_survival.solar_panels.task": "Π›ΡŽΠ±ΠΎΠΉ ΠΏΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΠΎΠ²Π°Ρ‚Π΅Π»ΡŒ FE Π² EU", + "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.2": "2) Π’Ρ‹ΠΊΠ°Ρ‡ΠΈΠ²Π°ΠΉΡ‚Π΅ Π΅Π³ΠΎ ΠΈΠ·-ΠΏΠΎΠ΄ Π·Π΅ΠΌΠ»ΠΈ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &9Тидкостной Π±ΡƒΡ€ΠΎΠ²ΠΎΠΉ установки&r. Π­Ρ‚ΠΎΡ‚ ΠΌΠ΅Ρ‚ΠΎΠ΄ ΠΏΡ€ΠΎΡ‰Π΅, Π½ΠΎ Π²Ρ‹ Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Ρ… ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ².\n\nΠ“Π΅Π»ΠΈΠΉ-3 ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… Π²Π΅Ρ‰Π΅ΠΉ, самой Π²Π°ΠΆΠ½ΠΎΠΉ ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… являСтся созданиС Π΄Ρ‹Ρ…Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠΉ смСси Ρ‡Π΅Ρ€Π΅Π· &6ГСлиокс-3&r! Π’Π°ΠΊΠΆΠ΅ Π΅Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ Β«ΡƒΠ΄ΠΎΠ±Ρ€Π΅Π½ΠΈΠ΅Β» для хоруса Π² элСктротСплицС, Π° Π² Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ β€” ΠΊΠ°ΠΊ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ для тСрмоядСрного синтСза.", + "quests.space_survival.stone_dust_centrifuging.task": "Π›ΡŽΠ±ΠΎΠΉ способ", + "quests.space_survival.compressed_gases.title": "Π‘ΠΆΠ°Ρ‚Ρ‹Π΅ Π΄Ρ‹Ρ…Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ Π³Π°Π·Ρ‹", + "quests.space_survival.compressed_gases.subtitle": "ΠŸΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ чистый кислород смСртСлСн", + "quests.space_survival.compressed_gases.desc": "ЧувствуСтС ΠΎΠ΄Ρ‹ΡˆΠΊΡƒ? Π’ космосС Π½ΡƒΠΆΠ½ΠΎ Ρ‡Π΅ΠΌ-Ρ‚ΠΎ Π΄Ρ‹ΡˆΠ°Ρ‚ΡŒ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π²Π°ΠΌ стоит Π·Π°Π½ΡΡ‚ΡŒΡΡ производством этих сТатых Π³Π°Π·ΠΎΠ², основанных Π½Π° Ρ€Π΅Π°Π»ΡŒΠ½Ρ‹Ρ… смСсях для Π³Π»ΡƒΠ±ΠΎΠΊΠΎΠ²ΠΎΠ΄Π½Ρ‹Ρ… ΠΏΠΎΠ³Ρ€ΡƒΠΆΠ΅Π½ΠΈΠΉ!\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π°ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ скафандр Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ наполняСтС Π²Π΅Π΄Ρ€ΠΎ, ΠΈΠ»ΠΈ, Ссли Π²ΠΎΠ·ΡŒΠΌΠ΅Ρ‚Π΅ с собой &bΠ³Π°Π·ΠΎΠ²Ρ‹ΠΉ Π±Π°Π»Π»ΠΎΠ½&r, смоТСтС Β«ΠΏΠΈΡ‚ΡŒΒ» ΠΈΠ· Π½Π΅Π³ΠΎ, пополняя запас ΠΊΠΎΡΡ‚ΡŽΠΌΠ°, Π½Π΅ снимая Π΅Π³ΠΎ.\n\n&2Нитрокс&r, вСроятно, ΠΏΡ€ΠΎΡ‰Π΅ всСго ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π½Π° Π—Π΅ΠΌΠ»Π΅, Π² Ρ‚ΠΎ врСмя ΠΊΠ°ΠΊ &eГСлиокс-3&r ΠΌΠΎΠΆΠ½ΠΎ Π½Π°Π»Π°Π΄ΠΈΡ‚ΡŒ Π½Π° Π›ΡƒΠ½Π΅.\n\nПолного скафандра (2500 ΠΌΠ‘) Ρ…Π²Π°Ρ‚ΠΈΡ‚ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ Π½Π° &c45 ΠΌΠΈΠ½ΡƒΡ‚&r.", + "quests.space_survival.compressed_gases.task": "Π›ΡŽΠ±ΠΎΠΉ сТатый Π΄Ρ‹Ρ…Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π³Π°Π·", + "quests.space_survival.zip_gun.title": "Π’ΠΎΠ·Π΄ΡƒΡˆΠ½Ρ‹ΠΉ пистолСт", + "quests.space_survival.zip_gun.subtitle": "Π”ΠΆΠ΅Ρ‚ΠΏΠ°ΠΊ Π½Π° Π»Π°Π΄ΠΎΠ½ΠΈ", + "quests.space_survival.zip_gun.desc": "Π’ΠΎΠ·Π΄ΡƒΡˆΠ½Ρ‹ΠΉ пистолСт ΠΌΠΎΠΆΠ½ΠΎ Π·Π°ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ Π»ΡŽΠ±Ρ‹ΠΌ ΠΈΠ· ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹Ρ… Π²Ρ‹ΡˆΠ΅ сТатых Π³Π°Π·ΠΎΠ², Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ΡΡ‚Ρ€Π΅Π»ΠΈΠ²Π°Ρ‚ΡŒ Π²ΠΎΠ·Π΄ΡƒΡ…ΠΎΠΌ, толкая вас Π² условиях Π½ΠΈΠ·ΠΊΠΎΠΉ Π³Ρ€Π°Π²ΠΈΡ‚Π°Ρ†ΠΈΠΈ. Они Π½Π΅Π·Π°ΠΌΠ΅Π½ΠΈΠΌΡ‹, Ссли Π²Ρ‹ ΠΏΠ»Π°Π½ΠΈΡ€ΡƒΠ΅Ρ‚Π΅ ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ Π½Π° ΠΎΡ€Π±ΠΈΡ‚Π΅!", + "quests.space_survival.air_distributor.title": "ΠžΠ±ΡƒΡΡ‚Ρ€ΠΎΠΉΡΡ‚Π²ΠΎ постоянной Π±Π°Π·Ρ‹", + "quests.space_survival.air_distributor.subtitle": "Π”ΠΎΠΌ для отпуска", + "quests.space_survival.air_distributor.desc.1": "Π”ΠΎ сих ΠΏΠΎΡ€ Π²Ρ‹ просто Π²Ρ‹ΠΆΠΈΠ²Π°Π»ΠΈ, Π½ΠΎ Π½Π΅ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ Π»ΠΈ Π²Ρ‹ ΠΏΠΎ-настоящСму &oΠΏΡ€ΠΎΡ†Π²Π΅Ρ‚Π°Ρ‚ΡŒ&r? Если Π²Ρ‹ ΠΏΠ»Π°Π½ΠΈΡ€ΡƒΠ΅Ρ‚Π΅ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΏΠΎΡΡ‚ΠΎΡΠ½Π½ΡƒΡŽ Π±Π°Π·Ρƒ, Π²Π°ΠΌ Π½Π΅ ΠΎΠ±ΠΎΠΉΡ‚ΠΈΡΡŒ Π±Π΅Π· &6систСмы ΠΏΠΎΠ΄Π°Ρ‡ΠΈ искусствСнного Π²ΠΎΠ·Π΄ΡƒΡ…Π°&r! ΠŸΠΎΠ΄Π°ΠΉΡ‚Π΅ Π² Π½Π΅Π³ΠΎ ΠΎΠ΄ΠΈΠ½ ΠΈΠ· сТатых Π³Π°Π·ΠΎΠ², ΠΈ ΠΎΠ½ Π½Π°ΠΏΠΎΠ»Π½ΠΈΡ‚ кислородом Π±ΠΎΠ»ΡŒΡˆΡƒΡŽ Π·Π°ΠΊΡ€Ρ‹Ρ‚ΡƒΡŽ ΠΎΠ±Π»Π°ΡΡ‚ΡŒ, позволяя Π²Π°ΠΌ ΡΠ½ΠΈΠΌΠ°Ρ‚ΡŒ шлСм, Π²Ρ‹Ρ€Π°Ρ‰ΠΈΠ²Π°Ρ‚ΡŒ ΡƒΡ€ΠΎΠΆΠ°ΠΉ ΠΈ ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ Π²ΠΎΠ΄Ρƒ, Π½Π΅ боясь, Ρ‡Ρ‚ΠΎ ΠΎΠ½Π° Π·Π°ΠΌΡ‘Ρ€Π·Π½Π΅Ρ‚.\n\nДля постройки Π±Π°Π·Ρ‹ ΠΏΠΎΠ΄ΠΎΠΉΠ΄Π΅Ρ‚ любой Ρ‚Π²Ρ‘Ρ€Π΄Ρ‹ΠΉ Π±Π»ΠΎΠΊ, Π½ΠΎ Π²Π°ΠΌ понадобится настоящий шлюз, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π³Π°Π· Π½Π΅ ΡƒΠ»Π΅Ρ‚Π΅Π» Π² космичСский &cΠ²ΠΈΡ…Ρ€ΡŒ&r.", + "quests.space_survival.air_distributor.desc.2": "Π’ Π·ΠΎΠ½Π΅ с кислородом Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒΡΡ постоянная Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° 15Β°C для Π²Π°ΡˆΠΈΡ… растСний (хотя элСктротСплицС Π½Π° это ΠΏΠ»Π΅Π²Π°Ρ‚ΡŒ), Π° Тидкая Π²ΠΎΠ΄Π° ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Π»Π΅Π³ΠΊΠΎ ΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΈΡ‚ΡŒ элСктролиз для получСния &bкислорода&r. Π’Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΄ΠΈΠΎΠ΄ для ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡ΠΈ энСргии Ρ‡Π΅Ρ€Π΅Π· стСны, сохраняя ΠΈΡ… Π³Π΅Ρ€ΠΌΠ΅Ρ‚ΠΈΡ‡Π½ΠΎΡΡ‚ΡŒ, ΠΊΠ°ΠΊ Π² чистой ΠΊΠΎΠΌΠ½Π°Ρ‚Π΅.", + "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.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 рСсурсы ΠΈΠΌΠ΅Π½Π½ΠΎ Ρ‚ΡƒΠ΄Π°, Π³Π΄Π΅ ΠΎΠ½ΠΈ Π½ΡƒΠΆΠ½Ρ‹ Π½Π° Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΏΠ»Π°Π½Π΅Ρ‚Π°Ρ…! К Ρ‚ΠΎΠΌΡƒ ΠΆΠ΅, здСсь Π΅ΡΡ‚ΡŒ продвинутая &dсистСма ΠΊΠΎΠ½Ρ„ΠΈΠ³ΡƒΡ€Π°Ρ†ΠΈΠΈ&r, ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰Π°Ρ ΡƒΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ всСм ΠΈΠ· ΠΎΠ΄Π½ΠΎΠ³ΠΎ мСста.", + "quests.space_survival.railgun.desc.2": "Для настройки Π²Π°ΠΌ понадобятся Ρ‚Ρ€ΠΈ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Π°:\n\n&6β€’ ΠœΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹ΠΉ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½&r β€” это &bΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚Π΅Π»ΡŒ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ запускаСт ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Ρ‡Π΅Ρ€Π΅Π· космос.\n\n&6β€’ ΠœΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹ΠΉ ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊ&r β€” это &bΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π»ΠΎΠ²ΠΈΡ‚ ΠΈ Ρ…Ρ€Π°Π½ΠΈΡ‚ входящиС Π³Ρ€ΡƒΠ·Ρ‹.\n\n&6β€’ ΠœΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹ΠΉ логистичСский ΠΌΠΎΠ½ΠΈΡ‚ΠΎΡ€&r β€” это &9Ρ†Π΅Π½Ρ‚Ρ€ управлСния&r, Π³Π΄Π΅ Π²Ρ‹ опрСдСляСтС ΠΏΡ€Π°Π²ΠΈΠ»Π° ΠΈ ΠΏΠΎΠ²Π΅Π΄Π΅Π½ΠΈΠ΅ всСй транспортной систСмы.\n\nΠ‘ этими машинами Π²Ρ‹ смоТСтС эффСктивно Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΡ€ΡƒΠΏΠ½ΠΎΠΌΠ°ΡΡˆΡ‚Π°Π±Π½Ρ‹Π΅ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·ΠΊΠΈ β€” Π΄Π°ΠΆΠ΅ ΠΌΠ΅ΠΆΠ΄Ρƒ ΠΏΠ»Π°Π½Π΅Ρ‚Π°ΠΌΠΈ!", + "quests.space_survival.railgun.task": "Π˜Π·ΡƒΡ‡ΠΈΠΌ ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΡƒΡŽ логистику", + "quests.space_survival.interplanetary_railgun.title": "ΠœΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹ΠΉ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½", + "quests.space_survival.interplanetary_railgun.subtitle": "Π’ΠΎ, Ρ‡Ρ‚ΠΎ ΠΌΡ‹ Π½Π°Π·Ρ‹Π²Π°Π΅ΠΌ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚Π΅Π»Π΅ΠΌ", + "quests.space_survival.raiinterplanetary_railgunlgun.desc.1": "&6ΠœΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹ΠΉ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½&r слуТит вашим &bΠΌΠ½ΠΎΠ³ΠΎΠ±Π»ΠΎΠΊΠΎΠΌ-ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚Π΅Π»Π΅ΠΌ&r.\n\nΠ­Ρ‚ΠΎ структура, ΠΎΡ‚Π²Π΅Ρ‡Π°ΡŽΡ‰Π°Ρ Π·Π° запуск ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΊ Π΄Π°Π»Ρ‘ΠΊΠΈΠΌ &3ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊΠ°ΠΌ&r, Π½ΠΎ сам ΠΎΠ½ Π½ΠΈΡ‡Π΅Π³ΠΎ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Ρ‚ΡŒ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚.", + "quests.space_survival.raiinterplanetary_railgunlgun.desc.2": "Для Ρ€Π°Π±ΠΎΡ‚Ρ‹ Π΅ΠΌΡƒ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ нСсколько ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ²:\n\n&9β€’ ЭнСргСтичСский Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ Ρ€Π°Π·ΡŠΡ‘ΠΌ&r β€” обСспСчиваСт ΠΏΠΈΡ‚Π°Π½ΠΈΠ΅ для запуска. Π‘Π΅Π· энСргии Π½ΠΈΡ‡Π΅Π³ΠΎ Π½Π΅ сдвинСтся.\n&9β€’ Π—Π°Π³Ρ€ΡƒΠ·Ρ‡ΠΈΠΊ ΠΏΠ°Ρ‚Ρ€ΠΎΠ½ΠΎΠ² Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°&r β€” Π΄ΠΎΠ»ΠΆΠ΅Π½ Π±Ρ‹Ρ‚ΡŒ Π·Π°ΠΏΠΎΠ»Π½Π΅Π½ снарядами. Один снаряд тратится Π½Π° ΠΎΠ΄ΠΈΠ½ запуск.\n&9β€’ ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹ΠΉ Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк&r β€” Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ, сколько Π²Π»Π΅Π·Π΅Ρ‚, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²ΡΡ‚Π°Π²Π»ΡΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ для ΠΎΡ‚ΠΏΡ€Π°Π²ΠΊΠΈ.\n\n&cΠ’Π°ΠΆΠ½ΠΎ:&r Π­Ρ‚ΠΎΡ‚ ΠΌΠ½ΠΎΠ³ΠΎΠ±Π»ΠΎΠΊ ΠΌΠΎΠΆΠ΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ &oΠΎΡ‚ΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ&r. Π£Π±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎ Ρ‡Π°Π½ΠΊ с вашим &6Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½ΠΎΠΌ&r всСгда ΠΏΡ€ΠΎΠ³Ρ€ΡƒΠΆΠ΅Π½!", + "quests.space_survival.ammo_railgun.title": "Бнаряды для Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°", + "quests.space_survival.ammo_railgun.subtitle": "Π’Ρ‹ ΠΆΠ΅ Π½Π΅ Π΄ΡƒΠΌΠ°Π»ΠΈ, Ρ‡Ρ‚ΠΎ это Π±ΡƒΠ΄Π΅Ρ‚ бСсплатно?", + "quests.space_survival.ammo_railgun.desc.1": "&7ΠšΠ°ΠΆΠ΄ΠΎΠΌΡƒ &6ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠΌΡƒ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Ρƒ&r Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½Ρ‹Π΅ &eснаряды&r β€” считайтС это ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€ΠΎΠΌ для ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·ΠΊΠΈ.\nΠšΠ°ΠΆΠ΄Ρ‹ΠΉ запуск потрСбляСт Ρ€ΠΎΠ²Π½ΠΎ &cΠΎΠ΄Π½Ρƒ Π΅Π΄ΠΈΠ½ΠΈΡ†Ρƒ&r боСприпасов ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ &dΡ‚Ρ€ΠΈ стака&r ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ².\n\nДля Π·Π°ΠΏΡ€Π°Π²ΠΊΠΈ Π²Π°ΠΌ понадобится &6Π·Π°Π³Ρ€ΡƒΠ·Ρ‡ΠΈΠΊ ΠΏΠ°Ρ‚Ρ€ΠΎΠ½ΠΎΠ² Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°&r Π² составС структуры.\nБнаряды ΠΌΠΎΠΆΠ½ΠΎ Π²ΡΡ‚Π°Π²Π»ΡΡ‚ΡŒ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ ΠΈΠ»ΠΈ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ процСсс.\n\n&9ΠœΡ‹ Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ&r Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ линию пассивного производства, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ваш Π·Π°Π³Ρ€ΡƒΠ·Ρ‡ΠΈΠΊ всСгда Π±Ρ‹Π» ΠΏΠΎΠ»ΠΎΠ½ β€” это обСспСчит Π±Π΅ΡΠΏΠ΅Ρ€Π΅Π±ΠΎΠΉΠ½ΡƒΡŽ Ρ€Π°Π±ΠΎΡ‚Ρƒ логистики.", + "quests.space_survival.ammo_railgun.desc.2": "БущСствуСт нСсколько Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² создания снарядов:\n\nβ€’ НизкоуровнСвыС Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ ΠΏΡ€ΠΎΡ‰Π΅, Π½ΠΎ Π΄Π°ΡŽΡ‚ ΠΌΠ°Π»ΠΎ Π΅Π΄ΠΈΠ½ΠΈΡ†.\nβ€’ ВысокоуровнСвыС Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Π΄Π°ΡŽΡ‚ &aΠ³ΠΎΡ€Π°Π·Π΄ΠΎ большС снарядов&r, Π½ΠΎ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹Ρ… рСсурсов ΠΈ машин.&r\nβ€’ Π‘ΠΏΠ΅Ρ†ΠΈΠ°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Π΅ снаряды ΠΌΠΎΠΆΠ½ΠΎ ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π° ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½Ρ‹Ρ… ΠΏΠ»Π°Π½Π΅Ρ‚Π°Ρ…. ΠŸΡ€ΠΎΠ²Π΅Ρ€ΡŒΡ‚Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹.\n\nΠŸΠ»Π°Π½ΠΈΡ€ΡƒΠΉΡ‚Π΅ производство исходя ΠΈΠ· &3ΠΌΠ°ΡΡˆΡ‚Π°Π±ΠΎΠ² вашСй логистики&r β€” мСТпланСтная торговля Π½Π΅ ΠΆΠ΄Π΅Ρ‚!", + "quests.space_survival.input_bus_railgun.title": "Π’Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°", + "quests.space_survival.input_bus_railgun.subtitle": "Волько для ΠΎΡ‚ΠΏΡ€Π°Π²ΠΊΠΈ", + "quests.space_survival.input_bus_railgun.desc.1": "&cЕсли Π²Ρ‹ Π΅Ρ‰Ρ‘ Π½Π΅ Ρ‡ΠΈΡ‚Π°Π»ΠΈ квСст ΠΏΡ€ΠΎ &6ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹ΠΉ логистичСский ΠΌΠΎΠ½ΠΈΡ‚ΠΎΡ€&r &cслСва ΠΎΡ‚ этого, ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΎΠ·Π½Π°ΠΊΠΎΠΌΡŒΡ‚Π΅ΡΡŒ с Π½ΠΈΠΌ сначала β€” этот квСст опираСтся Π½Π° Ρ‚Π΅ знания.&r\n\nΠŸΡ€ΠΈ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΠΈΠΈ экрана логистики &dотправитСля&r Π½Π° &dΠΌΠΎΠ½ΠΈΡ‚ΠΎΡ€Π΅&r Π²Ρ‹ Π·Π°ΠΌΠ΅Ρ‚ΠΈΡ‚Π΅ Π·Π½Π°ΠΊΠΎΠΌΡƒΡŽ &9ΠΈΠ½Ρ‚Π΅Π³Ρ€Π°Π»ΡŒΠ½ΡƒΡŽ схСму&r ΠΈΠ· GregTech.\nНомСр этой схСмы являСтся основным ΠΈΠ΄Π΅Π½Ρ‚ΠΈΡ„ΠΈΠΊΠ°Ρ‚ΠΎΡ€ΠΎΠΌ для настройки ΠΏΡ€Π°Π²ΠΈΠ» ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ.\n\nНазначСнный Π½ΠΎΠΌΠ΅Ρ€ ΠΏΡ€ΠΈΠΌΠ΅Π½ΠΈΡ‚ ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½ΠΎΠ΅ ΠΏΡ€Π°Π²ΠΈΠ»ΠΎ ΠΊΠΎ всСм Π²Ρ…ΠΎΠ΄Π½Ρ‹ΠΌ люкам вашСго Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ настроСны Π½Π° Ρ‚ΠΎΡ‚ ΠΆΠ΅ Π½ΠΎΠΌΠ΅Ρ€ схСмы.\n\nΠ­Ρ‚ΠΎ позволяСт Ρ‚ΠΎΠ½ΠΊΠΎ Π½Π°ΡΡ‚Ρ€Π°ΠΈΠ²Π°Ρ‚ΡŒ, ΠΊΠ°ΠΊΠΈΠ΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΊΡƒΠ΄Π° ΠΎΡ‚ΠΏΡ€Π°Π²Π»ΡΡŽΡ‚ΡΡ ΠΈ ΠΏΠΎ ΠΊΠ°ΠΊΠΈΠΌ ΠΏΡ€Π°Π²ΠΈΠ»Π°ΠΌ.", + "quests.space_survival.input_bus_railgun.desc.2": "&2Как Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ:&r\nβ†’ ΠžΡ‚ΠΊΡ€ΠΎΠΉΡ‚Π΅ интСрфСйс любого &9Π²Ρ…ΠΎΠ΄Π½ΠΎΠ³ΠΎ люка Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°&r\nβ†’ Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ Π½ΡƒΠΆΠ½Ρ‹ΠΉ Π½ΠΎΠΌΠ΅Ρ€ β€” Ρ‚ΠΎΡ‡Π½ΠΎ Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ Π² любой Π΄Ρ€ΡƒΠ³ΠΎΠΉ машинС GregTech\n\nΠ­Ρ‚ΠΎ позволяСт ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ ΠΌΠΎΡ‰Π½ΡƒΡŽ Π»ΠΎΠ³ΠΈΠΊΡƒ, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€:\n&7β€’ Π‘Ρ…Π΅ΠΌΠ° 1&r β†’ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΊΠ° Π½Π° Π»ΡƒΠ½Π½ΡƒΡŽ Π±Π°Π·Ρƒ\n&7β€’ Π‘Ρ…Π΅ΠΌΠ° 2&r β†’ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΊΠ° Π½Π° ΠœΠ°Ρ€Ρ\n&7β€’ Π‘Ρ…Π΅ΠΌΠ° 3&r β†’ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΊΠ° Π½Π° ΠΎΡ€Π±ΠΈΡ‚Π°Π»ΡŒΠ½ΡƒΡŽ ΡΡ‚Π°Π½Ρ†ΠΈΡŽ\n\nΠ‘ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠΉ настройкой схСм Π²Ρ‹ смоТСтС Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΡƒΡŽ Ρ‚ΠΎΡ€Π³ΠΎΠ²Π»ΡŽ ΠΊΠ°ΠΊ настоящий ΠΏΡ€ΠΎΠΌΡ‹ΡˆΠ»Π΅Π½Π½Ρ‹ΠΉ ΠΌΠ°Π³Π½Π°Ρ‚!\n\n&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅&r: Π’Ρ‹ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ Π½ΠΈΡ‡Π΅Π³ΠΎ с Ρ‚Π΅Π³ΠΎΠΌ &7#tfg:cannot_launch_in_railgun&r.", + "quests.space_survival.input_bus_railgun.task": "Π›ΡŽΠ±ΠΎΠΉ Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°", + "quests.space_survival.monitor_railgun.title": "ΠœΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹ΠΉ логистичСский ΠΌΠΎΠ½ΠΈΡ‚ΠΎΡ€", + "quests.space_survival.monitor_railgun.subtitle": "Π‘ΡƒΠΏΠ΅Ρ€ΠΊΠΎΠΌΠΏΡŒΡŽΡ‚Π΅Ρ€", + "quests.space_survival.monitor_railgun.desc.1": "&6ΠœΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹ΠΉ логистичСский ΠΌΠΎΠ½ΠΈΡ‚ΠΎΡ€&r β€” это ваш ΠΊΠΎΠΌΠ°Π½Π΄Π½Ρ‹ΠΉ Ρ†Π΅Π½Ρ‚Ρ€, основа основ ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹Ρ… ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·ΠΎΠΊ.\n\nΠ­Ρ‚ΠΎ &aΠΎΠ΄ΠΈΠ½ΠΎΡ‡Π½Ρ‹ΠΉ Π±Π»ΠΎΠΊ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ &oΠ½Π΅ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ энСргии&r ΠΈ автоматичСски ΠΎΠ±Π½Π°Ρ€ΡƒΠΆΠΈΠ²Π°Π΅Ρ‚ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ построСнный Π²Π°ΠΌΠΈ &6ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚Π΅Π»ΡŒ&r ΠΈ &3ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊ&r.", + "quests.space_survival.monitor_railgun.desc.2": "Он ΠΌΠΎΠΆΠ΅Ρ‚ Π²Ρ‹Π³Π»ΡΠ΄Π΅Ρ‚ΡŒ просто, Π½ΠΎ Π²Π½ΡƒΡ‚Ρ€ΠΈ скрыты ΠΌΠΎΡ‰Π½Ρ‹Π΅ инструмСнты.\nΠ”Π°Π²Π°ΠΉΡ‚Π΅ Ρ€Π°Π·Π±Π΅Ρ€Π΅ΠΌ основы:\n\n&9β€’ ΠžΡ‚ΠΊΡ€Ρ‹Π² ΠΌΠΎΠ½ΠΈΡ‚ΠΎΡ€&r, Π²Ρ‹ ΡƒΠ²ΠΈΠ΄ΠΈΡ‚Π΅ список всСх Π²Π°ΡˆΠΈΡ… ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚Π΅Π»Π΅ΠΉ ΠΈ ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊΠΎΠ². Π’Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ &eΠ΄Π°Ρ‚ΡŒ имя ΠΊΠ°ΠΆΠ΄ΠΎΠΌΡƒ ΠΈΠ· Π½ΠΈΡ…&r.\n\n&9β€’ Π§Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΏΡ€Π°Π²ΠΈΠ»ΠΎ логистики:&r\n β†’ НаТмитС Π½Π° стрСлку Π²ΠΏΡ€Π°Π²ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹Π±Ρ€Π°Ρ‚ΡŒ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚Π΅Π»ΡŒ\n β†’ НаТмитС &a+&r для добавлСния Π½ΠΎΠ²ΠΎΠ³ΠΎ ΠΏΡ€Π°Π²ΠΈΠ»Π°\n β†’ Π’Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊ назначСния ΠΈΠ· вашСго списка\n\nЕсли Ρƒ вашСго &6Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°&r Π΅ΡΡ‚ΡŒ снаряды ΠΈ энСргия, Π° Π² &3ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊΠ΅&r Π΅ΡΡ‚ΡŒ мСсто β€” Π³Ρ€ΡƒΠ· Π±ΡƒΠ΄Π΅Ρ‚ Π·Π°ΠΏΡƒΡ‰Π΅Π½ ΠΌΠ³Π½ΠΎΠ²Π΅Π½Π½ΠΎ!\n\nΠ’Π΅ΠΏΠ΅Ρ€ΡŒ, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ освоили основы, Π΄Π°Π²Π°ΠΉΡ‚Π΅ ΠΏΠ΅Ρ€Π΅ΠΉΠ΄Π΅ΠΌ ΠΊ Π±ΠΎΠ»Π΅Π΅ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹ΠΌ функциям Π² ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΡ… квСстах...", + "quests.space_survival.redstone_railgun.title": "Π£ΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅ рСдстоуном", + "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 Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΈΠ»ΠΎ Ρ‚Π°ΠΊ, Ρ‡Ρ‚ΠΎ &3Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк&r Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΡ€ΠΈ Π½Π°Π»ΠΈΡ‡ΠΈΠΈ сигнала рСдстоуна Π½Π° этом ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½ΠΎΠΌ Π±Π»ΠΎΠΊΠ΅.\n\nВрСмя ΠΏΡ€ΠΈΠΌΠ΅Π½ΠΈΡ‚ΡŒ ваши Π½Π°Π²Ρ‹ΠΊΠΈ ΠΈΠ½ΠΆΠ΅Π½Π΅Ρ€Π°! Π‘ΡƒΠ΄ΡŒ Ρ‚ΠΎ &dΠΈΠ·Π»ΡƒΡ‡Π°Ρ‚Π΅Π»ΡŒ ΡƒΡ€ΠΎΠ²Π½Π΅ΠΉ AE2&r, ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹ ΠΈΠ· &aCreate&r ΠΈΠ»ΠΈ старая добрая ванильная Π»ΠΎΠ³ΠΈΠΊΠ° β€” это ΠΏΡ€Π°Π²ΠΈΠ»ΠΎ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Π²Π°ΠΌ ΡΠΈΠ½Ρ…Ρ€ΠΎΠ½ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ логистику с состояниСм вашСй Ρ„Π°Π±Ρ€ΠΈΠΊΠΈ.", + "quests.space_survival.redstone_railgun.task": "ΠŸΠΎΠ½ΡΡ‚Π½ΠΎ", + "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Ρ‚ΠΎΡ‡Π½ΠΎΠΉ поставки (Supply Exact)&r.\nОно настраиваСтся Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² интСрфСйсС &6отправитСля&r.\n\nΠŸΡ€ΠΈ Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎΠΌ ΠΏΡ€Π°Π²ΠΈΠ»Π΅ &9Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½&r ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‚ΠΎΠ³Π΄Π°, ΠΊΠΎΠ³Π΄Π° Π²ΠΎ &9Π²Ρ…ΠΎΠ΄Π½ΠΎΠΌ люкС&r набСрСтся &aΡ‚ΠΎΡ‡Π½ΠΎΠ΅ количСство&r.\n\n&2Как Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ:&r\nβ†’ ΠŸΠ΅Ρ€Π΅Ρ‚Π°Ρ‰ΠΈΡ‚Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π² Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ ΠΈΠ· интСрфСйса &dEMI&r\nβ†’ Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &aΠ»Π΅Π²Ρ‹ΠΉ ΠΈ ΠΏΡ€Π°Π²Ρ‹ΠΉ ΠΊΠ»ΠΈΠΊ&r для настройки количСства\nβ†’ Π’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄ΠΎΠ±Π°Π²Π»ΡΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π² Π·Π°ΠΊΠ»Π°Π΄ΠΊΠΈ для быстрого доступа\n\nΠ­Ρ‚ΠΎ ΠΏΡ€Π°Π²ΠΈΠ»ΠΎ идСально ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для Ρ‚ΠΎΡ‡Π½ΠΎΠΉ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ β€” Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, для ΠΊΡ€Π°Ρ„Ρ‚Π° порциями ΠΈΠ»ΠΈ соблюдСния ΠΊΠ²ΠΎΡ‚ рСсурсов.", + "quests.space_survival.robot_arm_railgun.task": "ΠŸΠΎΠ½ΡΡ‚Π½ΠΎ", + "quests.space_survival.delay_railgun.title": "Π—Π°Π΄Π΅Ρ€ΠΆΠΊΠ°", + "quests.space_survival.delay_railgun.subtitle": "Иногда Π½ΡƒΠΆΠ½ΠΎ просто ΠΏΠΎΠ΄ΠΎΠΆΠ΄Π°Ρ‚ΡŒ", + "quests.space_survival.delay_railgun.desc": "&6ΠŸΡ€Π°Π²ΠΈΠ»ΠΎ Π·Π°Π΄Π΅Ρ€ΠΆΠΊΠΈ&r простоС, Π½ΠΎ ΠΏΠΎΠ»Π΅Π·Π½ΠΎΠ΅ для управлСния Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ ΠΏΠΎΡ‚ΠΎΠΊΠ° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ².\n\n&2На сторонС отправитСля:&r\nΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π±ΡƒΠ΄ΡƒΡ‚ ΠΎΡ‚ΠΏΡ€Π°Π²Π»Π΅Π½Ρ‹ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ послС Ρ‚ΠΎΠ³ΠΎ, ΠΊΠ°ΠΊ &9Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк&r Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π°Π» Π½ΠΎΠ²Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π² Ρ‚Π΅Ρ‡Π΅Π½ΠΈΠ΅ Π·Π°Π΄Π°Π½Π½ΠΎΠ³ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ (Π² сСкундах).\nΠ­Ρ‚ΠΎ ΠΏΠΎΠΌΠΎΠ³Π°Π΅Ρ‚ ΠΈΠ·Π±Π΅ΠΆΠ°Ρ‚ΡŒ слишком частых запусков ΠΏΡ€ΠΈ постоянном ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΈ Π²Ρ…ΠΎΠ΄Π°.\n\n&2На сторонС ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊΠ°:&r\nΠŸΡ€Π°Π²ΠΈΠ»ΠΎ опрСдСляСт Π·Π°Π΄Π΅Ρ€ΠΆΠΊΡƒ ΠΏΠ΅Ρ€Π΅Π΄ Ρ‚Π΅ΠΌ, ΠΊΠ°ΠΊ &9Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк&r смоТСт ΠΏΡ€ΠΈΠ½ΡΡ‚ΡŒ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΡƒΡŽ ΠΏΠ°Ρ€Ρ‚ΠΈΡŽ.\nПолСзно для прСдотвращСния пСрСполнСния ΠΈΠ»ΠΈ для замСдлСния ΠΏΠΎΠ΄Π°Ρ‡ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π² ΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹Π΅ систСмы.\n\nИдСально для синхронизации с машинами, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΌ Π½ΡƒΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅Π΄Ρ‹ΡˆΠΊΠ° ΠΌΠ΅ΠΆΠ΄Ρƒ опСрациями, ΠΈΠ»ΠΈ для экономии снарядов.", + "quests.space_survival.delay_railgun.task": "ΠŸΠΎΠ½ΡΡ‚Π½ΠΎ", + "quests.space_survival.receiver_railgun.title": "ΠœΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹ΠΉ ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊ", + "quests.space_survival.receiver_railgun.subtitle": "Π’ΠΎΡ‚, ΠΊΡ‚ΠΎ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Π΅Ρ‚", + "quests.space_survival.receiver_railgun.desc.1": "&6ΠœΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Ρ‹ΠΉ ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊ&r, ΠΊΠ°ΠΊ слСдуСт ΠΈΠ· названия, ΠΏΡ€Π΅Π΄Π½Π°Π·Π½Π°Ρ‡Π΅Π½ для &3ΠΏΡ€ΠΈΡ‘ΠΌΠ° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ²&r, ΠΎΡ‚ΠΏΡ€Π°Π²Π»Π΅Π½Π½Ρ‹Ρ… Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½ΠΎΠΌ.\n\nΠ­Ρ‚ΠΎ &aнСбольшой ΠΈ простой ΠΌΠ½ΠΎΠ³ΠΎΠ±Π»ΠΎΠΊ&r, Π½Π΅ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‰ΠΈΠΉ энСргии ΠΈΠ»ΠΈ обслуТивания β€” просто постройтС Π΅Π³ΠΎ, ΠΈ ΠΎΠ½ Π³ΠΎΡ‚ΠΎΠ² ΠΊ Ρ€Π°Π±ΠΎΡ‚Π΅!", + "quests.space_survival.receiver_railgun.desc.2": "Π•Π³ΠΎ Π³ΠΈΠ±ΠΊΠΎΡΡ‚ΡŒ Π·Π°ΠΊΠ»ΡŽΡ‡Π°Π΅Ρ‚ΡΡ Π² количСствС &9Π²Ρ‹Ρ…ΠΎΠ΄Π½Ρ‹Ρ… люков&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ.\nΠ§Π΅ΠΌ ΠΈΡ… большС, Ρ‚Π΅ΠΌ большС ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΎΠ½ смоТСт ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ.\n\n&2Настройка проста:&r\nβ€’ ΠŸΠΎΡΡ‚Ρ€ΠΎΠΉΡ‚Π΅ структуру;\nβ€’ Π”ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Ρ‹Ρ…ΠΎΠ΄Π½Ρ‹Ρ… люков, сколько Π½ΡƒΠΆΠ½ΠΎ;\nβ€’ Π“ΠΎΡ‚ΠΎΠ²ΠΎ β€” ΠΎΠ½ Π³ΠΎΡ‚ΠΎΠ² ΠΊ ΠΏΡ€ΠΈΡ‘ΠΌΡƒ!\n\nНикакого Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, Π½ΠΈΠΊΠ°ΠΊΠΎΠ³ΠΎ обслуТивания β€” Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΌΠΎΡ‰ΡŒ логистики. Π£Π±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎ ΠΎΠ½ ΠΏΡ€ΠΎΠ³Ρ€ΡƒΠΆΠ΅Π½, ΠΈ ΠΏΡƒΡΡ‚ΡŒ рСсурсы ΡΡ‹ΠΏΠ»ΡŽΡ‚ΡΡ Π΄ΠΎΠΆΠ΄Π΅ΠΌ!", + "quests.space_survival.output_bus_railgun.title": "Π’Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°", + "quests.space_survival.output_bus_railgun.subtitle": "Волько для ΠΏΡ€ΠΈΡ‘ΠΌΠ°", + "quests.space_survival.output_bus_railgun.desc.1": "&cЕсли Π²Ρ‹ Π΅Ρ‰Ρ‘ Π½Π΅ Ρ‡ΠΈΡ‚Π°Π»ΠΈ квСст ΠΏΡ€ΠΎ &6Π²Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°&r &cΠ²Ρ‹ΡˆΠ΅, ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΎΠ·Π½Π°ΠΊΠΎΠΌΡŒΡ‚Π΅ΡΡŒ сначала с Π½ΠΈΠΌ β€” этот квСст дополняСт Π΅Π³ΠΎ.&r\n\nΠ’ΠΎΡ‡Π½ΠΎ Ρ‚Π°ΠΊ ΠΆΠ΅, ΠΊΠ°ΠΊ вашим &6Π²Ρ…ΠΎΠ΄Π½Ρ‹ΠΌ люкам&r ΠΌΠΎΠΆΠ½ΠΎ Π½Π°Π·Π½Π°Ρ‡ΠΈΡ‚ΡŒ &9Π½ΠΎΠΌΠ΅Ρ€ схСмы&r, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Ρ‚ΠΎ ΠΆΠ΅ самоС с &3Π²Ρ‹Ρ…ΠΎΠ΄Π½Ρ‹ΠΌΠΈ люками&r Π½Π° вашСм &3ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊΠ΅&r.", + "quests.space_survival.output_bus_railgun.desc.2": "Π­Ρ‚Π° функция слуТит Π΄Π²ΡƒΠΌ основным цСлям:&r\n\n&9β€’ ΠŸΡ€ΡΠΌΠΎΠ΅ распрСдСлСниС ΠΏΠΎΡ‚ΠΎΠΊΠ°&r β€” Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ, ΠΊΠ°ΠΊΠΎΠΉ ΠΈΠΌΠ΅Π½Π½ΠΎ люк ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅Ρ‚ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹. ΠŸΡ€ΠΎΡΡ‚ΠΎ Π½Π°Π·Π½Π°Ρ‡ΡŒΡ‚Π΅ Π½ΠΎΠΌΠ΅Ρ€ схСмы Π»ΡŽΠΊΡƒ ΠΈ Π²Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ этот Π½ΠΎΠΌΠ΅Ρ€ Π² ΠΏΡ€Π°Π²ΠΈΠ»Π΅ отправитСля Ρ‡Π΅Ρ€Π΅Π· &6логистичСский ΠΌΠΎΠ½ΠΈΡ‚ΠΎΡ€&r.\n\n&9β€’ УсловныС ΠΏΡ€Π°Π²ΠΈΠ»Π°&r β€” Π²Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΈΠ»Π° для &cостановки ΠΎΡ‚ΠΏΡ€Π°Π²ΠΊΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ²&r, Ссли ΠΏΡ€Π°Π²ΠΈΠ»ΠΎ схСмы Π½Π΅ ΡΠΎΠ±Π»ΡŽΠ΄Π°Π΅Ρ‚ΡΡ. Π­Ρ‚ΠΎ дСлаСтся Π½Π΅ Π²ΠΎ Π²ΠΊΠ»Π°Π΄ΠΊΠ΅ отправитСля, Π° Π²ΠΎ Π²ΠΊΠ»Π°Π΄ΠΊΠ΅ &3ΠΏΡ€ΠΈΡ‘ΠΌΠ½ΠΈΠΊΠ°&r Π² ΠΌΠΎΠ½ΠΈΡ‚ΠΎΡ€Π΅. Для ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ Π½ΠΎΠΌΠ΅Ρ€Π° схСмы ΠΌΠΎΠΆΠ½ΠΎ Π½Π°Π·Π½Π°Ρ‡ΠΈΡ‚ΡŒ ΠΏΡ€Π°Π²ΠΈΠ»ΠΎ, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€ΠΈΠΌΠ΅Π½ΡΡ‚ΡŒΡΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΊ люкам с этим Π½ΠΎΠΌΠ΅Ρ€ΠΎΠΌ.", + "quests.space_survival.output_bus_railgun.desc.3": "Π§Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ большС ΠΎ доступных Ρ‚ΠΈΠΏΠ°Ρ… ΠΏΡ€Π°Π²ΠΈΠ», ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΈΠ·ΡƒΡ‡ΠΈΡ‚Π΅ &7Ρ‚Ρ€ΠΈ квСста Π²Ρ‹ΡˆΠ΅&r. Π’ Π½ΠΈΡ… ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎ разбираСтся ΠΊΠ°ΠΆΠ΄ΠΎΠ΅ ΠΏΡ€Π°Π²ΠΈΠ»ΠΎ ΠΈ способы ΠΈΡ… эффСктивного использования.", + "quests.space_survival.output_bus_railgun.task": "Π›ΡŽΠ±ΠΎΠΉ Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΉ люк ΠΌΠ΅ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½ΠΎΠ³ΠΎ Ρ€Π΅Π»ΡŒΡΠΎΡ‚Ρ€ΠΎΠ½Π°", + "quests.space_survival.soulbound.title": "ВнСзСмная ΡΠΌΠ΅Ρ€Ρ‚ΡŒ", + "quests.space_survival.soulbound.subtitle": "Π’Ρ‹ Π΄Π°Π»Π΅ΠΊΠΎ ΠΎΡ‚ спавна", + "quests.space_survival.soulbound.desc.1": "Π’ TerraFirmaGreg Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Ρ‚ΠΎΡ‡ΠΊΡƒ возроТдСния Π² любом ΠΈΠ·ΠΌΠ΅Ρ€Π΅Π½ΠΈΠΈ (Π΄Π°ΠΆΠ΅ Π² Π‘Π΅Π·Π΄Π½Π΅!), Π½ΠΎ Ссли Ρƒ вас Π½Π΅Ρ‚ ΠΊΡƒΡ‡ΠΈ запасных скафандров, Π²ΠΎΠ·Ρ€ΠΎΠΆΠ΄Π΅Π½ΠΈΠ΅ Π½Π° Π›ΡƒΠ½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ всё ΡƒΡΠ»ΠΎΠΆΠ½ΠΈΡ‚ΡŒ.\n\nΠŸΡ€Π΅ΠΆΠ΄Π΅ всСго, Π²Π°ΠΌ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½ΠΎ стоит ΠΏΠΎΡΡ‚Π°Π²ΠΈΡ‚ΡŒ ΠΊΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π² Π·ΠΎΠ½Π΅ с кислородом, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π΅ ΡƒΠΌΠ΅Ρ€Π΅Ρ‚ΡŒ сразу послС возроТдСния (хотя Π² случаС ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ энСргии Ρƒ вас Π΄ΠΎΠ»ΠΆΠ½ΠΎ Π±Ρ‹Ρ‚ΡŒ достаточно Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ»ΠΎΠΌΠ°Ρ‚ΡŒ ΠΊΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΈ ΡΠ±Ρ€ΠΎΡΠΈΡ‚ΡŒ спавн).", + "quests.space_survival.soulbound.desc.2": "Π’ΠΎ-Π²Ρ‚ΠΎΡ€Ρ‹Ρ…, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ ΠΊΠ°ΠΆΠ΄ΡƒΡŽ Ρ‡Π°ΡΡ‚ΡŒ своСго скафандра с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &bΠΆΠ΅ΠΌΡ‡ΡƒΠ³Π° Π΄ΡƒΡˆ&r. Π­Ρ‚ΠΎ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ ΠΈΠΌ ΠΎΡΡ‚Π°Π²Π°Ρ‚ΡŒΡΡ Π½Π° вас послС смСрти!\n\nΠ˜Ρ… ΠΌΠΎΠΆΠ½ΠΎ Π²Ρ‹Π±ΠΈΡ‚ΡŒ ΠΈΠ· Π±ΠΎΠ»Π΅Π΅ ΡΠΈΠ»ΡŒΠ½Ρ‹Ρ… ΠΈ Π²Ρ€Π°ΠΆΠ΄Π΅Π±Π½Ρ‹Ρ… эндСрмСнов Π½Π° Π›ΡƒΠ½Π΅.\n\nΠœΡ‹ ΠΎΠ±Π΅Ρ‰Π°Π΅ΠΌ, это научная фантастика, Π° Π½Π΅ магия.", + "quests.mars": "Π’Ρ‹ΠΆΠΈΠ²Π°Π½ΠΈΠ΅ Π½Π° ΠœΠ°Ρ€ΡΠ΅", + "quests.mars.subtitle": "Π—Ρ‹Π±ΡƒΡ‡ΠΈΠ΅ пСски ΠΆΠ΄ΡƒΡ‚", + "quests.space_survival.mars_desert.title": "ΠœΠ°Ρ€ΡΠΈΠ°Π½ΡΠΊΠ°Ρ пустыня", + "quests.space_survival.mars_desert.subtitle": "ПСсок, ΠΏΠΎΠ²ΡΡŽΠ΄Ρƒ пСсок", + "quests.space_survival.mars_desert.desc": "Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ Ρ‡Π°ΡΡ‚ΡŒ ΠœΠ°Ρ€ΡΠ° ΠΏΠΎΠΊΡ€Ρ‹Ρ‚Π° бСскрайнСй пустынСй. Π—Π΄Π΅ΡΡŒ ΠΌΠ°Π»ΠΎ ΠΊΡ‚ΠΎ ΠΆΠΈΠ²Π΅Ρ‚, ΠΊΡ€ΠΎΠΌΠ΅ Ρ€Π΅Π΄ΠΊΠΈΡ… ΠΆΡƒΠΊΠΎΠ²-ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·Ρ‡ΠΈΠΊΠΎΠ² ΠΈ, ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΎ ΠΆΠ΅, гигантских &6пСсчаных Ρ‡Π΅Ρ€Π²Π΅ΠΉ&r. Если Π²Ρ‹ здСсь Π²ΠΏΠ΅Ρ€Π²Ρ‹Π΅, Π»ΡƒΡ‡ΡˆΠ΅ ΠΏΠΎΠΈΡΠΊΠ°Ρ‚ΡŒ Π±ΠΎΠ»Π΅Π΅ гостСприимноС мСсто! Π˜Π½Π°Ρ‡Π΅ Π²Π°ΠΌ придСтся ΠΏΡ€ΠΎΠ΄ΠΎΠ»ΠΆΠΈΡ‚ΡŒ поиски...", + "quests.space_survival.mars_desert.task": "ΠŸΠΎΡΠ΅Ρ‚ΠΈΡ‚Π΅ Π±ΠΈΠΎΠΌ Π³Π»ΡƒΠ±ΠΎΠΊΠΎΠΉ марсианской пустыни", + "quests.space_survival.sandworm.title": "ΠŸΠ΅ΡΡ‡Π°Π½Ρ‹ΠΉ Ρ‡Π΅Ρ€Π²ΡŒ", + "quests.space_survival.sandworm.subtitle": "ШАЙ-Π₯Π£Π›Π£Π”", + "quests.space_survival.sandworm.desc": "Если Π²Ρ‹ Π±ΡƒΠ΄Π΅Ρ‚Π΅ слишком сильно ΡˆΡƒΠΌΠ΅Ρ‚ΡŒ Π² пустынС, Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΈΠ²Π»Π΅Ρ‡ΡŒ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ ΠΌΠΎΠ³ΡƒΡ‡Π΅Π³ΠΎ &6пСсчаного чСрвя&r! Π­Ρ‚ΠΎ скорСС стихийноС бСдствиС, Ρ‡Π΅ΠΌ босс, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ Π½ΡƒΠΆΠ½ΠΎ ΡƒΠ±ΠΈΡ‚ΡŒ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π»ΡƒΡ‡ΡˆΠΈΠΉ способ Π²Ρ‹ΠΆΠΈΡ‚ΡŒ β€” просто Π±Π΅ΠΆΠ°Ρ‚ΡŒ!\n\nЕсли Π²Π°ΠΌ удастся достаточноС количСство Ρ€Π°Π· ΠΏΠΎΠΏΠ°ΡΡ‚ΡŒ Π΅ΠΌΡƒ Π² Π³ΠΎΠ»ΠΎΠ²Ρƒ &bΠ²Π·Ρ€Ρ‹Π²Π½Ρ‹ΠΌ ΡƒΡ€ΠΎΠ½ΠΎΠΌ&r, ΠΎΠ½ оставит вас Π² ΠΏΠΎΠΊΠΎΠ΅... Π½Π° ΠΊΠ°ΠΊΠΎΠ΅-Ρ‚ΠΎ врСмя.\n\nК ΡΡ‡Π°ΡΡ‚ΡŒΡŽ, Ρ‡Π΅Ρ€Π²ΡŒ наносит ΡƒΡ€ΠΎΠ½ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ сущностям, Π° Π½Π΅ постройкам, ΠΈ Π΅Π³ΠΎ ΠΏΡ€ΠΈΠ²Π»Π΅ΠΊΠ°ΡŽΡ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ &6шаги ΠΈΠ³Ρ€ΠΎΠΊΠΎΠ²&r. Π’Π°ΠΊ Ρ‡Ρ‚ΠΎ любой способ Π½Π΅ ΠΊΠ°ΡΠ°Ρ‚ΡŒΡΡ &bΠ½ΠΎΠ³Π°ΠΌΠΈ&r Π·Π΅ΠΌΠ»ΠΈ Π½Π΅ Ρ€Π°Π·ΠΎΠ·Π»ΠΈΡ‚ Π΅Π³ΠΎ. АтмосфСра слишком Ρ€Π°Π·Ρ€Π΅ΠΆΠ΅Π½Π° для самолётов ΠΈ Π΄Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½ΠΎΠ², Π½ΠΎ Π΅ΡΡ‚ΡŒ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ инструмСнты...", + "quests.space_survival.spice.title": "Π—Π°Π»Π΅ΠΆΠΈ острума", + "quests.space_survival.spice.subtitle": "ΠŸΡ€ΡΠ½ΠΎΡΡ‚ΡŒ МСланТ", + "quests.space_survival.spice.desc": "&dΠ—Π°Π»Π΅ΠΆΠΈ острума&r β€” это Π½Π΅ΠΏΠΎΠ΄Π²ΠΈΠΆΠ½Ρ‹Π΅ Π±Π»ΠΎΠΊΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² Π³Π»ΡƒΠ±ΠΎΠΊΠΎΠΉ марсианской пустынС, Π²Π΄Π°Π»ΠΈ ΠΎΡ‚ Ρ†Π²Π΅Ρ‚ΡƒΡ‰ΠΈΡ… Π·ΠΎΠ½. Они спавнятся нСбольшими скоплСниями; ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ ΡΠ»ΠΎΠΌΠ°Ρ‚ΡŒ, Ссли ΠΎΠ½ΠΈ ΠΌΠ΅ΡˆΠ°ΡŽΡ‚ установкС сборщика острума. ΠŸΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &6ΠΏΠΎΠ΄Π·ΠΎΡ€Π½ΡƒΡŽ Ρ‚Ρ€ΡƒΠ±Ρƒ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°ΠΉΡ‚ΠΈ ΠΈΡ… ΠΈΠ·Π΄Π°Π»Π΅ΠΊΠ°!\n\nΠ’Π°ΠΌ придСтся ΠΏΡ€ΠΎΠ΄ΡƒΠΌΠ°Ρ‚ΡŒ логистику, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΄ΠΎΡΡ‚Π°Π²Π»ΡΡ‚ΡŒ острум Π½Π° Π±Π°Π·Ρƒ. (ΠŸΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΏΠΎΠ΅Π·Π΄!)\n\nΠžΡΡ‚Ρ€ΡƒΠΌ β€” ваТнСйший рСсурс ΠΊΠ°ΠΊ для развития Π² &5Ρ‚ΠΈΡ€Π΅ EV&r, Ρ‚Π°ΠΊ ΠΈ для создания бСсконСчных Ρ€ΡƒΠ΄ ΠΈΠ· ΠœΠ°Ρ€ΡΠ°.", + "quests.space_survival.spice.task": "ΠŸΡ€ΡΠ½ΠΎΡΡ‚ΡŒ Π΄ΠΎΠ»ΠΆΠ½Π° Ρ‚Π΅Ρ‡ΡŒ", + "quests.space_survival.mars_islands.title": "ΠœΠ°Ρ€ΡΠΈΠ°Π½ΡΠΊΠΈΠ΅ Π΄ΠΆΡƒΠ½Π³Π»ΠΈ", + "quests.space_survival.mars_islands.subtitle": "Π­Ρ‚ΠΎ Ρ‡Ρ‚ΠΎ, Π΄ΠΈΠ½ΠΎΠ·Π°Π²Ρ€?!", + "quests.space_survival.mars_islands.desc": "Π‘Ρ€Π΅Π΄ΠΈ бСскрайних марсианских ΠΏΡƒΡΡ‚Ρ‹Π½ΡŒ разбросаны нСбольшиС «островки» ΠΆΠΈΠ·Π½ΠΈ ΠΈ Ρ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ β€” ΠΈΠΌΠ΅Π½Π½ΠΎ Ρ‚Π°ΠΌ Π²Π°ΠΌ, скорСС всСго, захочСтся ΠΎΠ±ΡƒΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Π±Π°Π·Ρƒ. Π’Ρ‹ΠΆΠΈΡ‚ΡŒ здСсь Π±ΡƒΠ΄Π΅Ρ‚ Π³ΠΎΡ€Π°Π·Π΄ΠΎ ΠΏΡ€ΠΎΡ‰Π΅, Ρ‡Π΅ΠΌ Π² пустынС!", + "quests.space_survival.semiheavy_ammoniacal_water.title": "ΠŸΠΎΠ»ΡƒΡ‚ΡΠΆΡ‘Π»Π°Ρ аммиачная Π²ΠΎΠ΄Π°", + "quests.space_survival.semiheavy_ammoniacal_water.subtitle": "Π₯ΠΎΡ‚ΠΈΡ‚Π΅ Π³Π»ΠΎΡ‚ΠΎΡ‡Π΅ΠΊ?", + "quests.space_survival.semiheavy_ammoniacal_water.desc": "Π’ΠΎΠ΄Π° Π½Π° ΠœΠ°Ρ€ΡΠ΅ &bполутяТёлая&r, Ρ‡Ρ‚ΠΎ ΠΎΠ·Π½Π°Ρ‡Π°Π΅Ρ‚ содСрТаниС Π² Π½Π΅ΠΉ ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π°Ρ‚ΠΎΠΌΠ° дСйтСрия, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΎΠ½Π° ΠΏΠΎΠ»Π½Π° &aΠ°ΠΌΠΌΠΈΠ°ΠΊΠ°&r β€” ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎΠ³ΠΎ Π°Π½Ρ‚ΠΈΡ„Ρ€ΠΈΠ·Π°, благодаря ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌΡƒ ΠΎΠ½Π° остаСтся ΠΆΠΈΠ΄ΠΊΠΎΠΉ Π΄Π°ΠΆΠ΅ ΠΏΡ€ΠΈ ΠΎΡ‡Π΅Π½ΡŒ Π½ΠΈΠ·ΠΊΠΈΡ… Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π°Ρ….\n\nВСхничСски ΠΎΠ½Π° ΠΏΡ€ΠΈΠ³ΠΎΠ΄Π½Π° для ΠΏΠΈΡ‚ΡŒΡ, Π½ΠΎ Π²Ρ‹ навСрняка Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ сначала ΠΏΠ΅Ρ€Π΅Π³Π½Π°Ρ‚ΡŒ Π΅Ρ‘ Π² ΠΎΠ±Ρ‹Ρ‡Π½ΡƒΡŽ Π²ΠΎΠ΄Ρƒ. Π˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊΠΈ полутяТСлой Π²ΠΎΠ΄Ρ‹ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Π½ΠΎΡΠΈΡ‚ΡŒ ΠΈ Ρ€Π°Π·ΠΌΠ½ΠΎΠΆΠ°Ρ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Тидкосного ΠΊΠΎΠ»Π»Π΅ΠΊΡ‚ΠΎΡ€Π°, ΠΊΠ°ΠΊ ΠΈ ΠΎΠ±Ρ‹Ρ‡Π½ΡƒΡŽ Π²ΠΎΠ΄Ρƒ.\n\nΠ’Π°ΠΊΠΆΠ΅ ΠΈΠ· Π½Π΅Ρ‘ ΠΌΠΎΠΆΠ½ΠΎ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Ρ…Π»ΠΎΡ€ΠΈΠ΄ аммония ΠΈ ΡΠ»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Π³ΠΎ для получСния &3Π°Π·ΠΎΡ‚Π°&r. ΠŸΡ€ΠΎΡΡ‚ΠΎΠΉ способ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ нитрокс ΠΈΠ· ΠΎΠ΄Π½ΠΎΠ³ΠΎ источника!", + "quests.space_survival.heavy_ammoniacal_water.title": "ВяТёлая аммиачная Π²ΠΎΠ΄Π°", + "quests.space_survival.heavy_ammoniacal_water.subtitle": "Π‘ΠΎΠ»Π΅Π΅ крутая аммиачная Π²ΠΎΠ΄Π°", + "quests.space_survival.heavy_ammoniacal_water.desc": "&2ВяТёлая аммиачная Π²ΠΎΠ΄Π°&r β€” Π΅Ρ‰Ρ‘ ΠΎΠ΄ΠΈΠ½ Π²ΠΈΠ΄ Тидкости, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π³Π»ΡƒΠ±ΠΎΠΊΠΎ ΠΏΠΎΠ΄ Π·Π΅ΠΌΠ»Π΅ΠΉ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π±ΡƒΡ€ΠΎΠ²ΠΎΠΉ установки. Π•Ρ‘ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² Ρ†Π²Π΅Ρ‚ΡƒΡ‰ΠΈΡ… Π·ΠΎΠ½Π°Ρ… ΠœΠ°Ρ€ΡΠ°, Π½Π΅ Π² пустынС!\n\nΠ•Ρ‘ ΠΌΠΎΠΆΠ½ΠΎ Ρ€Π°Π·Π΄Π΅Π»ΠΈΡ‚ΡŒ Π½Π° Ρ‚ΡΠΆΡ‘Π»ΡƒΡŽ Π²ΠΎΠ΄Ρƒ, которая Π²Π°ΠΆΠ½Π° для ядСрной энСргСтики.", + "quests.space_survival.mars_poles.title": "Полюса ΠœΠ°Ρ€ΡΠ°", + "quests.space_survival.mars_poles.subtitle": "Достаточно Ρ…ΠΎΠ»ΠΎΠ΄Π½ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ COβ‚‚ Π·Π°ΠΌΡ‘Ρ€Π·!", + "quests.space_survival.mars_poles.desc": "ΠœΠ°Ρ€Ρ каТСтся Π²Π°ΠΌ нСдостаточно Ρ…ΠΎΠ»ΠΎΠ΄Π½Ρ‹ΠΌ?\n\nΠžΡ‚ΠΏΡ€Π°Π²Π»ΡΠΉΡ‚Π΅ΡΡŒ ΠΊ ΠΎΠ΄Π½ΠΎΠΌΡƒ ΠΈΠ· Π΅Π³ΠΎ полюсов ΠΏΠΎ ΠΊΠΎΠΎΡ€Π΄ΠΈΠ½Π°Ρ‚Π°ΠΌ Z=+15000/-5000. Если Ρ‚Π°ΠΌ Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ ΠΈ способно Π²Ρ‹ΠΆΠΈΡ‚ΡŒ, Ρ‚ΠΎ ΠΎΠ½ΠΎ навСрняка ΠΎΠ±Π»Π°Π΄Π°Π΅Ρ‚ ΠΏΠΎΡ‚Ρ€ΡΡΠ°ΡŽΡ‰ΠΈΠΌΠΈ изоляционными свойствами...", + "quests.space_survival.glacian_ram.title": "Гласианская ΠΎΠ²Ρ†Π°", + "quests.space_survival.glacian_ram.subtitle": "Π–ΠΈΠ·Π½ΡŒ ΠΏΡ€ΠΈ -110Β°C", + "quests.space_survival.glacian_ram.desc": "&dГласианскиС Π±Π°Ρ€Π°Π½Ρ‹&r ΠΈ &dΠΎΠ²Ρ†Ρ‹&r ΠΎΠ±ΠΈΡ‚Π°ΡŽΡ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π° марсианских ΠΏΠΎΠ»ΡŽΡΠ°Ρ…. Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π²Ρ‹ Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΡ€ΠΈΠ²Π΅Π·Ρ‚ΠΈ ΠΏΠ»Π΅ΠΌΠ΅Π½Π½ΡƒΡŽ ΠΏΠ°Ρ€Ρƒ Π½Π° свою Π±Π°Π·Ρƒ.\n\nΠŸΡ€Π΅Π΄ΡΡ‚ΠΎΠΈΡ‚ Π΄ΠΎΠ»Π³ΠΈΠΉ ΠΏΡƒΡ‚ΡŒ? Π’ΠΎΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ΡΡŒ пространствСнной ячСйкой хранСния AE2, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½ΠΎΡΠΈΡ‚ΡŒ ΠΈΡ… прямо Π² ΠΊΠ°Ρ€ΠΌΠ°Π½Π΅.", + "quests.space_survival.glacian_ram.task": "НайдитС гласианского Π±Π°Ρ€Π°Π½Π° ΠΈΠ»ΠΈ ΠΎΠ²Ρ†Ρƒ", + "quests.space_survival.glacian_wool.title": "Гласианская ΡˆΠ΅Ρ€ΡΡ‚ΡŒ", + "quests.space_survival.glacian_wool.subtitle": "НСвСроятный изолятор!", + "quests.space_survival.glacian_wool.desc": "Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Ρ… ΠΎΠ²Π΅Ρ† Π½Π° Π—Π΅ΠΌΠ»Π΅, убийство гласианской ΠΎΠ²Ρ†Ρ‹ даст Π²Π°ΠΌ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ±Ρ‹Ρ‡Π½ΡƒΡŽ ΡˆΠ΅Ρ€ΡΡ‚ΡŒ. Π’Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΠ²Ρ‹ΡΠΈΡ‚ΡŒ ΠΈΡ… ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ довСрия ΠΈ ΡΠΎΡΡ‚Ρ€ΠΈΡ‡ΡŒ Π΅Ρ‘, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΎΡΠΎΠ±ΡƒΡŽ &dΠ³Π»Π°ΡΠΈΠ°Π½ΡΠΊΡƒΡŽ ΡˆΠ΅Ρ€ΡΡ‚ΡŒ&r.\n\nΠ’Π°ΠΌ понадобится 7 Π΅Π΄ΠΈΠ½ΠΈΡ† для ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ скафандра ΠΈΠ· Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²ΠΎΠΉ стали, Π½ΠΎ Π΅Ρ‘ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ для ядСрного Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ Π΅Π³ΠΎ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½Ρ‹ΠΉ Π½Π°Π³Ρ€Π΅Π².\n\nΠ’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π΅Ρ‘ Π² ΠΎΠ±Ρ‹Ρ‡Π½ΡƒΡŽ ΡˆΠ΅Ρ€ΡΡΠ½ΡƒΡŽ Π½ΠΈΡ‚ΡŒ ΠΈ Ρ‚ΠΊΠ°Π½ΡŒ, Ссли Π²Π°ΠΌ это Π·Π°Ρ‡Π΅ΠΌ-Ρ‚ΠΎ Π½ΡƒΠΆΠ½ΠΎ.", + "quests.space_survival.t2_space_suit.title": "Π‘ΠΊΠ°Ρ„Π°Π½Π΄Ρ€ ΠΈΠ· Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²ΠΎΠΉ стали", + "quests.space_survival.t2_space_suit.subtitle": "ЭкстрСмофилия!", + "quests.space_survival.t2_space_suit.desc": "Π‘ этим Π½ΠΎΠ²Ρ‹ΠΌ скафандром Π²Ρ‹ смоТСтС Π²Ρ‹ΠΆΠΈΡ‚ΡŒ Π² самых &bΡ…ΠΎΠ»ΠΎΠ΄Π½Ρ‹Ρ…&r ΠΈ самых &cгорячих&r условиях, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€Π΅Π΄Π»ΠΎΠΆΠΈΡ‚ΡŒ космос! Он Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ Π½Π΅ сгорСли Π·Π°ΠΆΠΈΠ²ΠΎ, ΠΊΠ°ΠΊ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ступитС Π½Π° &6Π’Π΅Π½Π΅Ρ€Ρƒ&r ΠΈΠ»ΠΈ &5ΠœΠ΅Ρ€ΠΊΡƒΡ€ΠΈΠΉ&r.\n\nΠ’ качСствС бонуса ΠΎΠ½ Π΄Π°Π΅Ρ‚ большС Π·Π°Ρ‰ΠΈΡ‚Ρ‹ ΠΈ Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ большС Π²ΠΎΠ·Π΄ΡƒΡ…Π°!", + "quests.space_survival.mars_tapping.title": "Π‘Π°Π³Ρ€Π΅Π»Π»ΠΈΠΉ ΠΈ ИскаТСллий", + "quests.space_survival.mars_tapping.subtitle": "Π’Ρ‹ ΠΆΠ΅ ΠžΠ‘ΠžΠ–ΠΠ•Π’Π• ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ смолу!", + "quests.space_survival.mars_tapping.desc": "Из багряных ΠΈ искаТённых Π³Ρ€ΠΈΠ±ΠΎΠ² ΠΌΠΎΠΆΠ½ΠΎ Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ &4Π‘Π°Π³Ρ€Π΅Π»Π»ΠΈΠΉ&r ΠΈ &3ИскаТСллий&r соотвСтствСнно с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΊΡ€Π°Π½ΠΈΠΊΠ°.\n\nОба вСщСства понадобятся для производства &9ΠΉΠΎΠ΄Π°&r, Π½ΠΎ ΠΎΠ½ΠΈ Ρ€Π΅Π΄ΠΊΠΎ растут Π² ΠΎΠ΄Π½ΠΎΠΌ мСстС, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ придётся ΠΏΠΎΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ. БагряныС Π³Ρ€ΠΈΠ±Ρ‹ Ρ‡Π°Ρ‰Π΅ Π²ΡΡ‚Ρ€Π΅Ρ‡Π°ΡŽΡ‚ΡΡ Π½Π° восточной сторонС ΠœΠ°Ρ€ΡΠ°, Π° искаТённыС β€” Π½Π° Π·Π°ΠΏΠ°Π΄Π½ΠΎΠΉ. Π’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΈΡ… саТСнцы ΠΎΡ‚ ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΡ… эндСрмСнов.\n\nНС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅, Ρ‡Ρ‚ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π°Ρ‚ΡŒΡΡ ΠΊΡ€Π°Π½ΠΈΠΊΠΎΠΌ прямо ΠΊ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚Ρ‹ΠΌ Ρ‚Ρ€ΡƒΠ±Π°ΠΌ GregTech!\n\n&9Π‘ΠΎΠ²Π΅Ρ‚:&r Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΡ…Π²Π°ΡΡ‚Π°Ρ‚ΡŒΡΡ? Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ каноэ ΠΈΠ· багряных стСблСй, Π° Ρ‚Π°ΠΊΠΆΠ΅ Π³Ρ€Π΅Π±Π½ΡƒΡŽ Π»ΠΎΠ΄ΠΊΡƒ ΠΈΠ»ΠΈ шлюп ΠΈΠ· искаТённых!", + "quests.space_survival.iodine.title": "Линия ΠΉΠΎΠ΄Π°", + "quests.space_survival.iodine.subtitle": "Π₯имия Π½Π° Π³Ρ€ΠΈΠ±Π°Ρ…!", + "quests.space_survival.iodine.desc": "Π‘ΠΌΠ΅ΡˆΠ°ΠΉΡ‚Π΅ Π±Π°Π³Ρ€Π΅Π»ΠΈΠΉ ΠΈ искаТСллий вмСстС с ΠΊΡ€ΠΈΠΏΡ‚ΠΎΠ½ΠΎΠΌ ΠΈΠ· дистилляции марсианского Π²ΠΎΠ·Π΄ΡƒΡ…Π° (процСсс Π·Π°Ρ†ΠΈΠΊΠ»Π΅Π½) ΠΈ Π΄ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ Ρ‚Π΅ΠΏΠ»Π° ΠΎΡ‚ ядСрного Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° β€” ΠΈ Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ ΠΉΠΎΠ΄!\n\nΠ­Ρ‚ΠΎΡ‚ процСсс ΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹ΠΉ, Π½ΠΎ Π½Π° Π΄Π°Π½Π½Ρ‹ΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚ Π²Π°ΠΌ Π½Π΅ понадобится ΠΌΠ½ΠΎΠ³ΠΎ ΠΉΠΎΠ΄Π°, Π° Π² Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ Π½Π° Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΏΠ»Π°Π½Π΅Ρ‚Π°Ρ… появятся Π±ΠΎΠ»Π΅Π΅ эффСктивныС ΠΌΠ΅Ρ‚ΠΎΠ΄Ρ‹ Π΅Π³ΠΎ получСния.", + "quests.space_survival.mars_crops.title": "ΠœΠ°Ρ€ΡΠΈΠ°Π½ΡΠΊΠΈΠ΅ ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€Ρ‹", + "quests.space_survival.mars_crops.subtitle": "Бколько-сколько ΠΎΠ½ΠΈ Π΄Π°ΡŽΡ‚ сытости?!", + "quests.space_survival.mars_crops.desc": "На ΠœΠ°Ρ€ΡΠ΅ растСт ΡˆΠ΅ΡΡ‚ΡŒ Π½ΠΎΠ²Ρ‹Ρ… ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€: Ρ‚Ρ€ΠΈ &aΡ„Ρ€ΡƒΠΊΡ‚Π°&r, Π΄Π²Π° &2ΠΎΠ²ΠΎΡ‰Π°&r ΠΈ ΠΎΠ΄ΠΈΠ½ &6Π·Π»Π°ΠΊ&r. Они ΠΏΠΎΠ»Π½Ρ‹ ΠΏΠΈΡ‚Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… вСщСств, ΠΈ ΠΈΠ· Π½ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ Π΅Π΄Ρƒ, Π°Π½Π°Π»ΠΎΠ³ΠΈΡ‡Π½ΡƒΡŽ Π·Π΅ΠΌΠ½ΠΎΠΉ: сэндвичи, супы ΠΈ ΠΏΠ°ΠΊΠ΅Ρ‚Ρ‹ с Π΅Π΄ΠΎΠΉ.\n\nОднако Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΈΠ· Π½ΠΈΡ… токсичны Π² сыром Π²ΠΈΠ΄Π΅, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ сначала ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ ΠΈΡ…!\n\nΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎΡΡ‚ΠΈ ΠΎ Π²Ρ‹Ρ€Π°Ρ‰ΠΈΠ²Π°Π½ΠΈΠΈ ΠΊΠ°ΠΆΠ΄ΠΎΠΉ ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€Ρ‹ ΠΈΡ‰ΠΈΡ‚Π΅ Π² ПолСвом руководствС. Π˜Ρ… ΠΌΠΎΠΆΠ½ΠΎ Ρ€Π°ΡΡ‚ΠΈΡ‚ΡŒ Π² ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠΌ Π³Ρ€ΡƒΠ½Ρ‚Π΅, Π² Ρ‚Π΅ΠΏΠ»ΠΈΡ†Π΅ FirmaLife ΠΈΠ»ΠΈ Π² элСктротСплицС.", + "quests.space_survival.mars_crops.task": "Π›ΡŽΠ±ΠΎΠ΅ марсианскоС сСмя", + "quests.space_survival.bulbkin_pie.title": "ΠœΠ°Ρ€ΡΠΈΠ°Π½ΡΠΊΠ°Ρ кухня", + "quests.space_survival.bulbkin_pie.subtitle": "Π•Ρ‰Ρ‘ большС ΠΊΡƒΠ»ΠΈΠ½Π°Ρ€Π½Ρ‹Ρ… ΠΈΠ·Π²Ρ€Π°Ρ‰Π΅Π½ΠΈΠΉ Π² вашСм распоряТСнии", + "quests.space_survival.bulbkin_pie.desc": "Из яиц ΠΈΡ€Π°ΠΏΡ‚ΠΎΡ€ΠΎΠ² ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π·Π°ΠΌΠ΅Π½ΠΈΡ‚Π΅Π»ΡŒ сахара, Π° яйца Π½ΡŽΡ…Π°Ρ‡Π΅ΠΉ ΠΏΠΎΠ»Π½Ρ‹ сливок.\n\n&eΠ›ΡƒΠΊΡ‹ΠΊΠ²Π΅Π½Π½Ρ‹ΠΉ ΠΏΠΈΡ€ΠΎΠ³&r β€” это, ΠΏΠΎΠΆΠ°Π»ΡƒΠΉ, Π²Π΅Ρ€ΡˆΠΈΠ½Π° марсианской ΠΊΡƒΡ…Π½ΠΈ; ΠΎΠ½ Π΄Π°Π΅Ρ‚ ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ΅ количСство Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… ΠΏΠΈΡ‚Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… вСщСств, Ρ…ΠΎΡ‚ΡŒ Π΅Π³ΠΎ ΠΈ ΠΌΡƒΡ‚ΠΎΡ€Π½ΠΎ Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ.\n\n&eНаггСтсы ΠΈΠ· Π΄ΠΈΠ½ΠΎΠ·Π°Π²Ρ€Π° Π² ΠΏΠΈΠ²Π½ΠΎΠΌ клярС&r ΡΠΎΡ‡Π΅Ρ‚Π°ΡŽΡ‚ Π² сСбС ΡƒΠΉΠΌΡƒ Π±Π΅Π»ΠΊΠ° с нСбольшим количСством Π·Π»Π°ΠΊΠΎΠ²; ΠΈΡ… Ρ‚ΠΎΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠΏΠ°ΠΊΠΎΠ²Ρ‹Π²Π°Ρ‚ΡŒ Π² ΠΏΠ°ΠΊΠ΅Ρ‚Ρ‹ с Π΅Π΄ΠΎΠΉ.\n\n&9Π‘ΠΎΠ²Π΅Ρ‚:&r Π­Ρ‚ΠΎ Π½Π΅ совсСм Π΅Π΄Π°, Π½ΠΎ Ссли ΡΠΌΠ΅ΡˆΠ°Ρ‚ΡŒ Π»ΡƒΠΊΡ‹ΠΊΠ²Π΅Π½Π½ΡƒΡŽ ΠΌΡΠΊΠΎΡ‚ΡŒ ΠΈ Π±Π»ΠΎΠΊΠΈ Π°Π»ΡŒΡ„Π°Ρ†Π΅Π½ΠΎΠ²ΠΎΠ³ΠΎ Π³Ρ€ΠΈΠ±Π°, ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΡΠ²Π΅Ρ‚ΠΎΠΊΠ°ΠΌΠ΅Π½Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ.", + "quests.space_survival.soarer.title": "ΠŸΠ°Ρ€Ρ…Π°Ρ‚Π΅Π»ΡŒ", + "quests.space_survival.soarer.subtitle": "ΠŸΠΎΠ΄Π±Ρ€ΠΎΡΠΈΡ‚ΡŒ?", + "quests.space_survival.soarer.desc": "Π‘Π°ΠΌΠΎΠ»Ρ‘Ρ‚Ρ‹ Π½Π° ΠœΠ°Ρ€ΡΠ΅ Π½Π΅ Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚, Π° Π² вашСм скафандрС Π½Π΅Ρ‚ Π΄ΠΆΠ΅Ρ‚ΠΏΠ°ΠΊΠ°, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π»Π΅Ρ‚Π°Ρ‚ΡŒ большС Π½ΠΈΠΊΠ°ΠΊ нСльзя, Π²Π΅Ρ€Π½ΠΎ?\n\nЕсли Π²Π°ΠΌ удастся Π½Π°ΠΉΡ‚ΠΈ Π½Π΅ΡƒΠ»ΠΎΠ²ΠΈΠΌΠΎΠ³ΠΎ &4пархатСля&r, Π²Ρ‹ смоТСтС ΠΏΡ€ΠΈΡ€ΡƒΡ‡ΠΈΡ‚ΡŒ Π΅Π³ΠΎ сырой Ρ€Ρ‹Π±ΠΎΠΉ ΠΈ ΠΎΡΠ΅Π΄Π»Π°Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ с Π»Ρ‘Π³ΠΊΠΎΡΡ‚ΡŒΡŽ ΠΏΠ°Ρ€ΠΈΡ‚ΡŒ Π² марсианском Π½Π΅Π±Π΅.\n\nОни Π½Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π»Π΅Ρ‚Π°Ρ‚ΡŒ Π²Π΅Ρ‡Π½ΠΎ (ΠΈΠ½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ ΠΊΡ€Ρ‹Π»ΡŒΠ΅Π² слСва Π²Π²Π΅Ρ€Ρ…Ρƒ), ΠΈ ΠΈΠΌ Π½ΡƒΠΆΠ½ΠΎ врСмя ΠΎΡ‚ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ ΠΏΡ€ΠΈΠ·Π΅ΠΌΠ»ΡΡ‚ΡŒΡΡ. Π’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, это ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ для ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠΉ Π½Π° дальниС расстояния, ΠΊ Ρ‚ΠΎΠΌΡƒ ΠΆΠ΅ ΠΎΠ½ΠΈ Π½Π΅ злят пСсчаного чСрвя!\n\n&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅&r: ΠŸΠ°Ρ€Ρ…Π°Ρ‚Π΅Π»ΠΈ Π½Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π²Ρ‹ΠΆΠΈΡ‚ΡŒ Π½Π° ΠΎΡ‡Π΅Π½ΡŒ ΠΆΠ°Ρ€ΠΊΠΈΡ… ΠΏΠ»Π°Π½Π΅Ρ‚Π°Ρ…, Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ &6Π’Π΅Π½Π΅Ρ€Π°&r.", + "quests.space_survival.soarer.task": "НайдитС порхатСля", + "quests.space_survival.surfer.title": "Π‘Ρ‘Ρ€Ρ„Π΅Ρ€", + "quests.space_survival.surfer.subtitle": "Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΠΏΠ»Π°Π²Π°Ρ‚ΡŒ?", + "quests.space_survival.surfer.desc": "&bΠ‘Ρ‘Ρ€Ρ„Π΅Ρ€ΠΎΠ²&r ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² Π½Π΅Π±ΠΎΠ»ΡŒΡˆΠΈΡ… Π²ΠΎΠ΄ΠΎΠ΅ΠΌΠ°Ρ…. Π˜Ρ… ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€ΠΈΡ€ΡƒΡ‡ΠΈΡ‚ΡŒ, ΠΏΠΎΠ΄ΠΊΡ€Π°Π²ΡˆΠΈΡΡŒ ΠΊ Π½ΠΈΠΌ, ΠΏΠΎΠΊΠ° ΠΎΠ½ΠΈ Π»Π΅ΠΆΠ°Ρ‚ Π½Π° Π±Π΅Ρ€Π΅Π³Ρƒ, ΠΈ Π½Π°ΠΊΠΎΡ€ΠΌΠΈΠ² сырой Ρ€Ρ‹Π±ΠΎΠΉ. ΠŸΡ€ΠΈΡ€ΡƒΡ‡ΠΈΠ² сёрфСра ΠΈ Π½Π°Π΄Π΅Π² сСдло, Π²Ρ‹ смоТСтС быстро ΠΏΠ»Π°Π²Π°Ρ‚ΡŒ ΠΏΠΎΠ΄ Π²ΠΎΠ΄ΠΎΠΉ.\n\nНа ΠœΠ°Ρ€ΡΠ΅ это ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Π½Π΅ слишком ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌ, Π½ΠΎ ΠΏΠΎΠΌΠ½ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅Π½ΠΎΡΠΈΡ‚ΡŒ сущСств с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ пространствСнных ячССк хранСния AE2, Π° Π² Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ вас ΠΆΠ΄Π΅Ρ‚ нСкая лСдяная окСаничСская Π»ΡƒΠ½Π°...\n\n&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅&r: Π‘Ρ‘Ρ€Ρ„Π΅Ρ€Ρ‹ Π½Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π²Ρ‹ΠΆΠΈΡ‚ΡŒ Π½Π° ΠΎΡ‡Π΅Π½ΡŒ ΠΆΠ°Ρ€ΠΊΠΈΡ… ΠΏΠ»Π°Π½Π΅Ρ‚Π°Ρ…, Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ &6Π’Π΅Π½Π΅Ρ€Π°&r.", + "quests.space_survival.surfer.task": "НайдитС сёрфСра", + "quests.space_survival.sniffer_or_wraptor.title": "ΠΡŽΡ…Π°Ρ‡ΠΈ ΠΈ ΠΈΡ€Π°ΠΏΡ‚ΠΎΡ€Ρ‹", + "quests.space_survival.sniffer_or_wraptor.subtitle": "Как ΠΊΠΎΡ€ΠΎΠ²Π° ΠΈ ΠΊΡƒΡ€ΠΈΡ†Π°", + "quests.space_survival.sniffer_or_wraptor.desc": "&2ΠΡŽΡ…Π°Ρ‡ΠΈ&r ΠΈ &dΠΈΡ€Π°ΠΏΡ‚ΠΎΡ€Ρ‹&r Π²ΡΡ‚Ρ€Π΅Ρ‡Π°ΡŽΡ‚ΡΡ ΠΏΠΎ всСму ΠœΠ°Ρ€ΡΡƒ. Π˜Ρ… ΠΌΠΎΠΆΠ½ΠΎ ΠΎΠ΄ΠΎΠΌΠ°ΡˆΠ½ΠΈΡ‚ΡŒ Ρ€Π°Π΄ΠΈ мяса, яиц ΠΈ, Ρ‡Ρ‚ΠΎ самоС Π²Π°ΠΆΠ½ΠΎΠ΅, ΠΈΡ… Π±ΠΎΠ³Π°Ρ‚Ρ‹Ρ… ΠΌΠΈΠ½Π΅Ρ€Π°Π»Π°ΠΌΠΈ ΠΏΡƒΡ‡ΠΊΠΎΠ² ΠΌΠ΅Ρ…Π° ΠΈ ΠΏΠ΅Ρ€ΡŒΠ΅Π².\n\nОни Сдят Π»ΡŽΠ±Ρ‹Π΅ марсианскиС ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€Ρ‹. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ… ΠΊΠΎΡ€ΠΌΠ»Π΅Π½ΠΈΠ΅ ΠΈ Ρ€Π°Π·Π²Π΅Π΄Π΅Π½ΠΈΠ΅ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΊΠΎΡ€ΠΌΡƒΡˆΠ΅ΠΊ, ΠΊΠ°ΠΊ Π½Π° Π—Π΅ΠΌΠ»Π΅.", + "quests.space_survival.sniffer_or_wraptor.task_1": "НайдитС Π½ΡŽΡ…Π°Ρ‡Π°", + "quests.space_survival.sniffer_or_wraptor.task_2": "НайдитС ΠΈΡ€Π°ΠΏΡ‚ΠΎΡ€Π°", + "quests.space_survival.mars_nest.title": "Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ насСст ΠΈΠ· соломы", + "quests.space_survival.mars_nest.subtitle": "Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ насСст для Π±ΠΎΠ»ΡŒΡˆΠΈΡ… яиц", + "quests.space_survival.mars_nest.desc": "Π’Ρ‹ ΠΆΠ΅ ΠΏΠΎΠΌΠ½ΠΈΡ‚Π΅, ΠΊΠ°ΠΊ ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ солому?\n\nΠ˜ΡΠΊΠ°ΠΆΡ‘Π½Π½ΡƒΡŽ ΠΈ Π±Π°Π³Ρ€ΡΠ½ΡƒΡŽ солому ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ с Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… ΠΌΠ΅Π»ΠΊΠΈΡ… растСний, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΈΠ· Π»ΡŽΠ±Ρ‹Ρ… Π½Π°ΠΉΠ΄Π΅Π½Π½Ρ‹Ρ… Π²Π°ΠΌΠΈ пластинок искаТённого ΠΈΠ»ΠΈ багряного Π³Ρ€ΠΈΠ±Π°.\n\nКак ΠΈ Π·Π΅ΠΌΠ½Ρ‹ΠΌ ΠΏΡ‚ΠΈΡ†Π°ΠΌ, Π½ΡŽΡ…Π°Ρ‡Π°ΠΌ ΠΈ ΠΈΡ€Π°ΠΏΡ‚ΠΎΡ€Π°ΠΌ Π½ΡƒΠΆΠ½Ρ‹ насСсты, Ρ‡Ρ‚ΠΎΠ±Ρ‹ нСсти яйца. Волько, Π½Ρƒ Π²Ρ‹ поняли, насСсты побольшС.", + "quests.space_survival.mars_nest.task": "Π›ΡŽΠ±ΠΎΠΉ насСст", + "quests.space_survival.mineral_rich_wool.title": "Богатая ΠΌΠΈΠ½Π΅Ρ€Π°Π»Π°ΠΌΠΈ ΡˆΠ΅Ρ€ΡΡ‚ΡŒ", + "quests.space_survival.mineral_rich_wool.subtitle": "НакоплСнная Π·Π° Π³ΠΎΠ΄Ρ‹ ΠΏΡ‹Π»ΡŒΠ½Ρ‹Ρ… Π±ΡƒΡ€ΡŒ", + "quests.space_survival.mineral_rich_wool.desc": "Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ваши Π½ΡŽΡ…Π°Ρ‡ΠΈ ΠΈΠ»ΠΈ ΠΈΡ€Π°ΠΏΡ‚ΠΎΡ€Ρ‹ станут достаточно Ρ€ΡƒΡ‡Π½Ρ‹ΠΌΠΈ, Π²Ρ‹ смоТСтС ΡΠΎΡΡ‚Ρ€ΠΈΡ‡ΡŒ с Π½ΠΈΡ… Π±ΠΎΠ³Π°Ρ‚Ρ‹Π΅ ΠΌΠΈΠ½Π΅Ρ€Π°Π»Π°ΠΌΠΈ ΠΏΡƒΡ‡ΠΊΠΈ ΠΌΠ΅Ρ…Π° ΠΈΠ»ΠΈ ΠΏΠ΅Ρ€ΡŒΡ.\n\nΠ˜Ρ… ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ Π² Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ для получСния бСсконСчного ΠΈ Π΄Π΅ΡˆΡ‘Π²ΠΎΠ³ΠΎ источника Ρ‰Π΅Π»ΠΎΡ‡Π½ΠΎΠ·Π΅ΠΌΠ΅Π»ΡŒΠ½ΠΎΠ³ΠΎ силиката. Они Ρ‚Π°ΠΊΠΆΠ΅ ΡΠ²Π»ΡΡŽΡ‚ΡΡ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹ΠΌ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠΌ для создания &6Π±ΠΈΠΎ-Π©Π—Π‘ ΡƒΠΊΡ€Π΅ΠΏΠ»Π΅Π½Π½ΠΎΠ³ΠΎ R-ΠΏΠΎΠ»ΠΈΡƒΡ€Π΅Ρ‚Π°Π½ΠΎΠ²ΠΎΠ³ΠΎ пСнопласта&r.", + "quests.space_survival.aes_insulation.title": "МногослойноС изоляционноС ΠΏΠΎΠΊΡ€Ρ‹Ρ‚ΠΈΠ΅", + "quests.space_survival.aes_insulation.subtitle": "НС сэндвич-ΠΌΠΎΡ€ΠΎΠΆΠ΅Π½ΠΎΠ΅", + "quests.space_survival.aes_insulation.desc": "Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, сСйчас это Π½Π΅ Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚ ΡˆΠΈΡ€ΠΎΠΊΠΎΠ³ΠΎ примСнСния, Π½ΠΎ Π² Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ это станСт критичСски Π²Π°ΠΆΠ½Ρ‹ΠΌ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠΌ для вашСй Ρ€Π°ΠΊΠ΅Ρ‚Ρ‹ &1Ρ‚ΠΈΠΏΠ° IV&r.", + "quests.space_survival.mars_shields.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹Π΅ Ρ‰ΠΈΡ‚Ρ‹", + "quests.space_survival.mars_shields.subtitle": "НС ΠΏΠΎΡ€Π° Π»ΠΈ ΠΎΠ±Π½ΠΎΠ²ΠΈΡ‚ΡŒ ваш старый ΠΆΠ΅Π»Π΅Π·Π½Ρ‹ΠΉ Ρ‰ΠΈΡ‚?", + "quests.space_survival.mars_shields.desc": " &3УсилСнный Ρ‰ΠΈΡ‚&r ΠΎΡ‚Ρ€Π°ΠΆΠ°Π΅Ρ‚ ΡƒΡ€ΠΎΠ½ ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ Π°Ρ‚Π°ΠΊΡƒΡŽΡ‰ΠΈΠΌ, ΠΏΠΎΠ΄ΠΎΠ±Π½ΠΎ Π·Π°Ρ‡Π°Ρ€ΠΎΠ²Π°Π½ΠΈΡŽ Β«Π¨ΠΈΠΏΡ‹Β». ΠœΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ для Π΅Π³ΠΎ ΠΊΡ€Π°Ρ„Ρ‚Π° ΠΌΠΎΠΆΠ½ΠΎ Π΄ΠΎΠ±Ρ‹Ρ‚ΡŒ с ΠΊΡ€ΡƒΡˆΠΈΡ‚Π΅Π»Π΅ΠΉ ΠΈ ΠΏΠΎΠΆΠΈΡ€Π°Ρ‚Π΅Π»Π΅ΠΉ.\n\n&5Π˜ΡΠΏΠΎΡ€Ρ‡Π΅Π½Π½Ρ‹ΠΉ Ρ‰ΠΈΡ‚&r случайным ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ Ρ‚Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚ΠΈΡ€ΡƒΠ΅Ρ‚ Π°Ρ‚Π°ΠΊΡƒΡŽΡ‰ΠΈΡ…, Ρ‡Ρ‚ΠΎ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ для удСрТания ΠΈΡ… Π½Π° расстоянии... Π½ΠΎ ΠΈΠ½ΠΎΠ³Π΄Π° ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ ΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ прямо Π·Π° вашСй спиной. Π—ΡƒΠ±Ρ‹ для Π½Π΅Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ Π²Ρ‹Π±ΠΈΡ‚ΡŒ ΠΈΠ· ΠΏΠ΅Ρ‰Π΅Ρ€Π½Ρ‹Ρ… эндСрмСнов ΠΏΠΎΠ΄ ΠΏΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚ΡŒΡŽ.\n\n&4ΠžΡ‚Ρ€Π°ΠΆΠ°ΡŽΡ‰ΠΈΠΉ Ρ‰ΠΈΡ‚&r ΠΏΠΎΠ³Π»ΠΎΡ‰Π°Π΅Ρ‚ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½ΠΎΠ΅ количСство ΡƒΡ€ΠΎΠ½Π°, Π° Π·Π°Ρ‚Π΅ΠΌ выпускаСт ΡƒΠ΄Π°Ρ€Π½ΡƒΡŽ Π²ΠΎΠ»Π½Ρƒ, ΠΊΠ°Π»Π΅Ρ‡Π° всСх Π²ΠΎΠΊΡ€ΡƒΠ³. ΠšΠΈΠ½Π΅Ρ‚ΠΈΡ‡Π΅ΡΠΊΠΎΠ΅ ядро для Π½Π΅Π³ΠΎ β€” Ρ€Π΅Π΄ΠΊΠΈΠΉ Π΄Ρ€ΠΎΠΏ с Π²Ρ€Π°ΠΆΠ΄Π΅Π±Π½Ρ‹Ρ… Π³ΠΎΠ»Π΅ΠΌΠΎΠ² Π² марсианских ΠΏΠ΅Ρ‰Π΅Ρ€Π°Ρ….", + "quests.space_survival.mras_shields.task": "Π›ΡŽΠ±ΠΎΠΉ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ Ρ‰ΠΈΡ‚", + "quests.space_survival.mercury.title": "Π― Π½Π° &5ΠœΠ΅Ρ€ΠΊΡƒΡ€ΠΈΠΈ&r...?", + "quests.space_survival.mercury.subtitle": "Π‘Ρ‚ΠΎΠΉ, Π° Ρ‡Ρ‚ΠΎ здСсь ΠΏΡ€ΠΎΠΈΠ·ΠΎΡˆΠ»ΠΎ?!", + "quests.space_survival.mercury.desc": "&5ΠœΠ΅Ρ€ΠΊΡƒΡ€ΠΈΠΉ&r станСт второстСпСнной ΠΏΠ»Π°Π½Π΅Ρ‚ΠΎΠΉ Π² грядущСм ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½ΠΈΠΈ Ρ‚ΠΈΡ€Π° &1IV&r Π² TFG 0.12. Π‘Π»Π΅Π΄ΠΈΡ‚Π΅ Π·Π° новостями!", + "quests.space_survival.mercury.task": "Π’Ρ‹ΡΠ°Π΄ΠΈΡ‚Π΅ΡΡŒ Π½Π° ΠœΠ΅Ρ€ΠΊΡƒΡ€ΠΈΠΈ", + "quests.space_survival.venus.title": "Π― Π½Π° &6Π’Π΅Π½Π΅Ρ€Π΅&r!", + "quests.space_survival.venus.subtitle": "ΠžΠ±Π»Π°Ρ‡Π½ΠΎ, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹ осадки Π² Π²ΠΈΠ΄Π΅ сСрной кислоты", + "quests.space_survival.venus.desc": "&6Π’Π΅Π½Π΅Ρ€Π°&r станСт основной ΠΏΠ»Π°Π½Π΅Ρ‚ΠΎΠΉ Π² грядущСм ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½ΠΈΠΈ Ρ‚ΠΈΡ€Π° &1IV&r Π² TFG 0.12. Π‘Π»Π΅Π΄ΠΈΡ‚Π΅ Π·Π° новостями!", + "quests.space_survival.venus.task": "Π’Ρ‹ΡΠ°Π΄ΠΈΡ‚Π΅ΡΡŒ Π½Π° Π’Π΅Π½Π΅Ρ€Π΅", + "quests.steam_age": "Ранняя автоматизация", + "quests.steam_age.subtitle": "ΠžΡ‚ ΠΏΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½Ρ‹Ρ… машин Π΄ΠΎ ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠΉ энСргии", + "quests.steam_age.basic_greate.title": "ΠžΡΠ½ΠΎΠ²Ρ‹ Greate", + "quests.steam_age.basic_greate.subtitle": "Устал ΠΎΡ‚ Create? Π­Ρ‚ΠΎ сдСлаСт Π΅Π³ΠΎ ΠΊΡƒΠ΄Π° интСрСснСС", + "quests.steam_age.basic_greate.desc": "Greate β€” это объСдинСниС ΠΌΠΎΠ΄ΠΎΠ² &3Create&r ΠΈ &3GregTech&r, Π΄ΠΎΠ±Π°Π²Π»ΡΡŽΡ‰Π΅Π΅ ΠΌΠ½ΠΎΠ³ΠΎΡƒΡ€ΠΎΠ²Π½Π΅Π²Ρ‹Π΅ вСрсии машин ΠΈΠ· Create. ΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, ΠΎΠ½ Π²Π²ΠΎΠ΄ΠΈΡ‚ ограничСния ΠΏΠΎ Π½Π°Π³Ρ€ΡƒΠ·ΠΊΠ΅ Π½Π° Π’Π°Π»Ρ‹ ΠΈ ШСстСрни, поэтому Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ Ρ‚Π΅Π±Π΅ придётся Ρ‚Ρ‰Π°Ρ‚Π΅Π»ΡŒΠ½Π΅Π΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΌΡ‹Π²Π°Ρ‚ΡŒ, ΠΊΠ°ΠΊ ΠΏΠΈΡ‚Π°Ρ‚ΡŒ свои ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹!\n\nΠ’ Ρ†Π΅Π»ΠΎΠΌ, Ρ‚Π΅Π±Π΅ стоит ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ нСбольшиС установки с собствСнными источниками энСргии, Π° Π½Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Ρ‚ΠΈΠΏΠΈΡ‡Π½Ρ‹ΠΉ для Create ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ с ΠΊΡƒΡ‡Π΅ΠΉ водяных колёс, соСдинённых ΠΎΠ΄Π½ΠΈΠΌ Π’Π°Π»ΠΎΠΌ, ΠΈΠ΄ΡƒΡ‰ΠΈΠΌ ΠΊΠΎ всСй Π±Π°Π·Π΅.", + "quests.steam_age.create_tools.title": "Π˜Π½ΡΡ‚Ρ€ΡƒΠΌΠ΅Π½Ρ‚Ρ‹ РСмСсла", + "quests.steam_age.create_tools.subtitle": "ΠœΠΎΠ³ΡƒΡ‚ ΠΏΡ€ΠΈΠ³ΠΎΠ΄ΠΈΡ‚ΡŒΡΡ", + "quests.steam_age.create_tools.desc": "Π“Π°Π΅Ρ‡Π½Ρ‹ΠΉ ΠΊΠ»ΡŽΡ‡ позволяСт быстро ΠΏΠΎΠ΄Π½ΠΈΠΌΠ°Ρ‚ΡŒ Π±Π»ΠΎΠΊΠΈ ΠΈΠ· Create, Ссли Π½Π°ΠΆΠ°Ρ‚ΡŒ Shift + ПКМ ΠΏΠΎ Π½ΠΈΠΌ, хотя Ρ‚ΠΎΠΏΠΎΡ€ ΠΈΠ»ΠΈ ΠΊΠΈΡ€ΠΊΠ° Ρ‚ΠΎΠΆΠ΅ ΠΏΠΎΠ΄ΠΎΠΉΠ΄ΡƒΡ‚. ΠžΡ‡ΠΊΠΈ ΠΈΠ½ΠΆΠ΅Π½Π΅Ρ€Π° Π΄Π°ΡŽΡ‚ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ Π²ΠΈΠ΄Π΅Ρ‚ΡŒ Π±ΠΎΠ»Π΅Π΅ ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½ΡƒΡŽ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΡŽ ΠΎ Ρ‚Π²ΠΎΠΈΡ… ΠΌΠ°ΡˆΠΈΠ½Π°Ρ… β€” Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, сколько Π½Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ ΠΎΠ½ΠΈ ΡΠΎΠ·Π΄Π°ΡŽΡ‚ ΠΈΠ»ΠΈ ΠΏΠΎΡ‚Ρ€Π΅Π±Π»ΡΡŽΡ‚.\n\nОба этих инструмСнта ΠΏΠΎΠΊΠ° Π½Π΅ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹, Π½ΠΎ ΠΎΠ½ΠΈ окаТутся ΠΎΡ‡Π΅Π½ΡŒ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌΠΈ, ΠΈ ΠΏΠΎΠ·ΠΆΠ΅ Π±Π΅Π· Π½ΠΈΡ… Π±ΡƒΠ΄Π΅Ρ‚ Π½Π΅ ΠΎΠ±ΠΎΠΉΡ‚ΠΈΡΡŒ.\n\nЗагляни Π² Π³Π»Π°Π²Ρƒ Β«Π‘ΠΎΠ²Π΅Ρ‚Ρ‹ TFGΒ» для ΠΏΠΎΠΌΠΎΡ‰ΠΈ со стСклодувиСм. А Ρ‚Ρ‹ Π·Π½Π°Π», Ρ‡Ρ‚ΠΎ Ссли Π»ΠΎΠΌΠ°Ρ‚ΡŒ Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ ΠΌΠΎΠ»ΠΎΡ‚ΠΊΠΎΠΌ, ΠΎΠ½ прСвратится Π² Π³Ρ€Π°Π²ΠΈΠΉ, Π° Ссли Ρ€Π°Π·Π±ΠΈΡ‚ΡŒ Π³Ρ€Π°Π²ΠΈΠΉ Π΅Ρ‰Ρ‘ Ρ€Π°Π· β€” получится пСсок...?", + "quests.steam_age.basic_millstone.title": "АвтоматичСская ΠŸΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Π ΡƒΠ΄Ρ‹", + "quests.steam_age.basic_millstone.subtitle": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ Π½ΠΈΠΊΠ°ΠΊΠΎΠ³ΠΎ ΠΆΠ΅Ρ€Π½ΠΎΠ²Π°", + "quests.steam_age.basic_millstone.desc": "&3Π–Π΅Ρ€Π½ΠΎΠ²&r β€” это автоматизированная вСрсия Ρ€ΡƒΡ‡Π½ΠΎΠ³ΠΎ ΠΆΠ΅Ρ€Π½ΠΎΠ²Π°. Π’Ρ‹ моТСшь просто Π±Ρ€ΠΎΡΠΈΡ‚ΡŒ Π½ΡƒΠΆΠ½Ρ‹Π΅ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ свСрху, Π° Π·Π°Ρ‚Π΅ΠΌ Ρ‰Ρ‘Π»ΠΊΠ½ΡƒΡ‚ΡŒ ПКМ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π±Ρ€Π°Ρ‚ΡŒ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹.\n\nЕсли ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π΅Π³ΠΎ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ ΠΊ &3ΠšΠΎΠ½Π½ΠΎΠΌΡƒ ΠŸΡ€ΠΈΠ²ΠΎΠ΄Ρƒ&r, ΠΎΠ½ Π±ΡƒΠ΄Π΅Ρ‚ довольно ΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹ΠΌ, Π½ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‚ΠΎΡ‡Π½Ρ‹Ρ… ΡˆΠ΅ΡΡ‚Π΅Ρ€Ρ‘Π½.\n\nΠ’Ρ‹ Π±ΡƒΠ΄Π΅ΡˆΡŒ ΠΏΠΎΠ»ΡƒΡ‡Π°Ρ‚ΡŒ Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΈΠ· ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ слота. ΠžΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ слоты относятся ΠΊ ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠ΅ GregTech, которая станСт Π°ΠΊΡ‚ΡƒΠ°Π»ΡŒΠ½ΠΎΠΉ Π³ΠΎΡ€Π°Π·Π΄ΠΎ ΠΏΠΎΠ·ΠΆΠ΅ (&6HV&r).", + "quests.steam_age.horse_crank.title": "Π’Π²ΠΎΠΉ ΠŸΠ΅Ρ€Π²Ρ‹ΠΉ Π˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊ Π­Π½Π΅Ρ€Π³ΠΈΠΈ", + "quests.steam_age.horse_crank.subtitle": "ΠŸΡƒΡΡ‚ΡŒ домашниС ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅ платят Π·Π° ΠΆΠΈΠ»ΡŒΡ‘", + "quests.steam_age.horse_crank.desc.1": "&3ΠšΠΎΠ½Π½Ρ‹ΠΉ ΠŸΡ€ΠΈΠ²ΠΎΠ΄&r β€” это Ρ‚Π²ΠΎΠΉ ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ доступный источник мСханичСской энСргии. Π§Ρ‚ΠΎΠ±Ρ‹ Π΅Π³ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ, размСсти ΠΏΡ€ΠΈΠ²ΠΎΠ΄ Π² Ρ†Π΅Π½Ρ‚Ρ€Π΅ ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½ΠΎΠΉ ΠΏΠ»ΠΎΡ‰Π°Π΄ΠΊΠΈ 7x7 ΠΈ привяТи ΠΊ Π½Π΅ΠΌΡƒ ΠΆΠΈΠ²ΠΎΡ‚Π½ΠΎΠ΅. Π Π°Π·Π½Ρ‹Π΅ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅ Π΄Π°ΡŽΡ‚ Ρ€Π°Π·Π½ΠΎΠ΅ количСство энСргии, Π° Π±Π»ΠΎΠΊΠΈ ΠΏΠΎΠ΄ Π½ΠΈΠΌΠΈ ΠΌΠΎΠ³ΡƒΡ‚ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ вращСния. ΠŸΠ»ΠΎΡ‰Π°Π΄ΠΊΠΈ Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… ΠΏΡ€ΠΈΠ²ΠΎΠ΄ΠΎΠ² ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠ΅Ρ€Π΅ΠΊΡ€Ρ‹Π²Π°Ρ‚ΡŒΡΡ.\n\nИногда ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠ½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ ΡƒΠ΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ Π²Ρ‚ΠΎΡ€ΠΎΠΉ ΠΏΠΎΠ²ΠΎΠ΄ΠΎΠΊ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΈΠΊΡ€Π΅ΠΏΠΈΡ‚ΡŒ ΠΆΠΈΠ²ΠΎΡ‚Π½ΠΎΠ΅.", + "quests.steam_age.horse_crank.desc.2": "&3МСлкиС ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅ (8 SU):&r\nΠ’ΠΎΠ»ΠΊ, Π‘ΠΎΠ±Π°ΠΊΠ°, Бвинья, ΠžΠ²Ρ†Π°, Коза, Альпака\n\n&3Π‘Ρ€Π΅Π΄Π½ΠΈΠ΅ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅ (12 SU):&r\nΠšΠΎΡ€ΠΎΠ²Π°, ΠžΡΡ‘Π»\n\n&3ΠšΡ€ΡƒΠΏΠ½Ρ‹Π΅ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅ (16 SU):&r\nΠ›ΠΎΡˆΠ°Π΄ΡŒ, ΠœΡƒΠ», ΠœΡƒΡΠΊΡƒΡΠ½Ρ‹ΠΉ Π±Ρ‹ΠΊ, Π―ΠΊ", + "quests.steam_age.poor_paths.title": "ΠŸΠ»ΠΎΡ…ΠΈΠ΅ Π”ΠΎΡ€ΠΎΠΆΠΊΠΈ", + "quests.steam_age.poor_paths.subtitle": "Π­Ρ‚ΠΎ просто Π³Ρ€ΡΠ·ΡŒ", + "quests.steam_age.poor_paths.desc": "Π₯ΡƒΠ΄ΡˆΠΈΠΉ Ρ‚ΠΈΠΏ Π΄ΠΎΡ€ΠΎΠ³ΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ. ΠšΠΎΠ½Π½Ρ‹ΠΉ ΠΏΡ€ΠΈΠ²ΠΎΠ΄ Π±ΡƒΠ΄Π΅Ρ‚ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π½Π° скорости 2 ΠΎΠ±/ΠΌΠΈΠ½.", + "quests.steam_age.normal_paths.title": "Π‘Ρ€Π΅Π΄Π½ΠΈΠ΅ Π”ΠΎΡ€ΠΎΠΆΠΊΠΈ", + "quests.steam_age.normal_paths.subtitle": "Ну, Ρ…ΠΎΡ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ постарался", + "quests.steam_age.normal_paths.desc": "Π‘Ρ€Π΅Π΄Π½ΠΈΠ΅ Π΄ΠΎΡ€ΠΎΠΆΠΊΠΈ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Π»ΡƒΡ‡ΡˆΠ΅ β€” ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅ смогут Π²Ρ€Π°Ρ‰Π°Ρ‚ΡŒ ΠΏΡ€ΠΈΠ²ΠΎΠ΄ со ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒΡŽ 4 ΠΎΠ±/ΠΌΠΈΠ½.\n\nΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅: Π‘Π»ΠΎΠΊ ΡƒΡ‚ΠΎΠΏΡ‚Π°Π½Π½ΠΎΠΉ Π·Π΅ΠΌΠ»ΠΈ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒΡΡ прямо ΠΏΠΎΠ΄ ΠΏΡ€ΠΈΠ²ΠΎΠ΄ΠΎΠΌ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Ρ‚Π°ΠΌ придётся ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π³Ρ€Π°Π²ΠΈΠΉ.", + "quests.steam_age.good_paths.title": "Π₯ΠΎΡ€ΠΎΡˆΠΈΠ΅ Π”ΠΎΡ€ΠΎΠΆΠΊΠΈ", + "quests.steam_age.good_paths.subtitle": "ΠŸΠΎΠ΄ΠΊΠΎΠ²Ρ‹ Π½Π΅ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ!", + "quests.steam_age.good_paths.desc": "Π›ΡƒΡ‡ΡˆΠΈΠΉ Π²ΠΈΠ΄ Π΄ΠΎΡ€ΠΎΠΆΠ½ΠΎΠ³ΠΎ покрытия β€” ΠΏΡ€ΠΈΠ²ΠΎΠ΄ Π²Ρ‹Π΄Π°Ρ‘Ρ‚ 8 ΠΎΠ±/ΠΌΠΈΠ½. Π’Π°ΠΊΠΈΠ΅ Π΄ΠΎΡ€ΠΎΠΆΠΊΠΈ Ρ‚Π°ΠΊΠΆΠ΅ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°ΡŽΡ‚ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ пСрСдвиТСния ΠΈΠ³Ρ€ΠΎΠΊΠ°, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΈΠΌΠΈ стоит Π²Ρ‹Π»ΠΎΠΆΠΈΡ‚ΡŒ всю Π±Π°Π·Ρƒ!", + "quests.steam_age.helve_hammer.title": "Π Ρ‹Ρ‡Π°ΠΆΠ½Ρ‹ΠΉ ΠœΠΎΠ»ΠΎΡ‚", + "quests.steam_age.helve_hammer.subtitle": "Π‘ΠΠœ... Π‘ΠΠœ... Π‘ΠΠœ...", + "quests.steam_age.helve_hammer.desc": "Устали Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ ΠΊΠΎΠ²Π°Ρ‚ΡŒ пластины для сыродутного Π³ΠΎΡ€Π½Π°? &3Π Ρ‹Ρ‡Π°ΠΆΠ½Ρ‹ΠΉ ΠΌΠΎΠ»ΠΎΡ‚&r автоматичСски (хотя ΠΈ ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎ) ΠΏΡ€Π΅Π²Ρ€Π°Ρ‰Π°Π΅Ρ‚ Π΄Π²ΠΎΠΉΠ½Ρ‹Π΅ слитки Π² пластины. ΠšΠΎΠ²Π°Ρ‚ΡŒ соСдинённыС Π·Π°Π³ΠΎΡ‚ΠΎΠ²ΠΊΠΈ всё ΠΆΠ΅ придётся Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ. ΠŸΡ€ΠΎΡΡ‚ΠΎ ΠΏΠΎΡΡ‚Π°Π²ΡŒΡ‚Π΅ наковальню прямо ΠΏΠΎΠ΄ ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΌ, Π±Ρ€ΠΎΡΡŒΡ‚Π΅ Π½Π° Π½Π΅Ρ‘ Π΄Π²ΠΎΠΉΠ½Ρ‹Π΅ слитки ΠΈ Ρ‰Ρ‘Π»ΠΊΠ½ΠΈΡ‚Π΅ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΏΠΎ ΠΌΠΎΠ»ΠΎΡ‚Ρƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π³ΠΎΡ‚ΠΎΠ²Ρ‹Π΅ пластины.\n\nНаковальни Π±ΠΎΠ»Π΅Π΅ высокого уровня Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ мСньшС ΡƒΠ΄Π°Ρ€ΠΎΠ² для ΠΊΠΎΠ²ΠΊΠΈ пластин ΠΈΠ· ΠΏΡ€Π΅Π΄Ρ‹Π΄ΡƒΡ‰Π΅Π³ΠΎ уровня.", + "quests.steam_age.water_wheel.title": "ВодяныС ΠšΠΎΠ»Ρ‘ΡΠ°", + "quests.steam_age.water_wheel.subtitle": "НадСюсь, Ρ‚Ρ‹ основался рядом с Ρ€Π΅ΠΊΠΎΠΉ!", + "quests.steam_age.water_wheel.desc": "ВодяныС колёса Π²Ρ‹Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°ΡŽΡ‚ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ большС энСргии, Ρ‡Π΅ΠΌ ΠšΠΎΠ½Π½Ρ‹ΠΉ ΠŸΡ€ΠΈΠ²ΠΎΠ΄, Π½ΠΎ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ Π²ΠΎΠ΄Ρ‹. ΠŸΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ источники Π²ΠΎΠ΄Ρ‹ Ρ‚Ρ‹ ΠΏΠΎΠΊΠ° Π½Π΅ моТСшь, поэтому придётся ΠΈΡΠΊΠ°Ρ‚ΡŒ Ρ€Π΅ΠΊΡƒ для установки колёс. ΠœΠΎΡ€Ρ ΠΈ ΠΎΠ·Ρ‘Ρ€Π° Ρ‚ΠΎΠΆΠ΅ ΠΌΠΎΠ³ΡƒΡ‚ Π΄Π°Ρ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ энСргии, Π½ΠΎ Ссли Ρ‚Ρ‹ Π΄Π°Π»Π΅ΠΊΠΎ ΠΎΡ‚ Π²ΠΎΠ΄Ρ‹ β€” Π»ΡƒΡ‡ΡˆΠ΅ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Π²Π΅Ρ‚Ρ€ΡΠ½ΡƒΡŽ ΠΌΠ΅Π»ΡŒΠ½ΠΈΡ†Ρƒ.\n\nΠŸΡ€ΠΎΠΏΠΈΡ‚Π°Π½Π½Π°Ρ дрСвСсина получаСтся ΠΏΡƒΡ‚Ρ‘ΠΌ замачивания Π»ΡŽΠ±Ρ‹Ρ… досок Π² ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚Π΅ ΠΈΠ· Ρ‚Π²ΠΎΠ΅ΠΉ коксовой ΠΏΠ΅Ρ‡ΠΈ.", + "quests.steam_age.large_water_wheel.title": "Π‘ΠΎΠ»ΡŒΡˆΠΈΠ΅ ВодяныС ΠšΠΎΠ»Ρ‘ΡΠ°", + "quests.steam_age.large_water_wheel.subtitle": "Π‘ΠΎΠ»ΡŒΡˆΠ΅, ΠΌΠΎΡ‰Π½Π΅Π΅, Π΄ΠΎΡ€ΠΎΠΆΠ΅", + "quests.steam_age.large_water_wheel.desc": "Π‘ΠΎΠ»ΡŒΡˆΠΈΠ΅ водяныС колёса Π²Ρ‹Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°ΡŽΡ‚ Π² Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ Ρ€Π°Π·Π° большС энСргии, Ρ‡Π΅ΠΌ ΠΌΠ°Π»Ρ‹Π΅, Π½ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ Π²ΠΎΠ΄Ρ‹ ΠΈΠ· Ρ€Π΅ΠΊΠΈ. ΠœΠΎΡ€Ρ ΠΈ ΠΎΠ·Ρ‘Ρ€Π° Π΄Π°ΡŽΡ‚ совсСм Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ энСргии, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Ссли Ρ‚Ρ‹ ΠΆΠΈΠ²Ρ‘ΡˆΡŒ Π΄Π°Π»Π΅ΠΊΠΎ ΠΎΡ‚ Π²ΠΎΠ΄Ρ‹ β€” ΠΏΠΎΠ΄ΡƒΠΌΠ°ΠΉ ΠΎ вСтряной ΠΌΠ΅Π»ΡŒΠ½ΠΈΡ†Π΅ ΠΈΠ»ΠΈ ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠΌ Π΄Π²ΠΈΠ³Π°Ρ‚Π΅Π»Π΅.\n\nΠŸΡ€ΠΎΠΏΠΈΡ‚Π°Π½Π½ΡƒΡŽ дрСвСсину ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ, Π·Π°ΠΌΠΎΡ‡ΠΈΠ² Π»ΡŽΠ±Ρ‹Π΅ доски Π² ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚Π΅ ΠΈΠ· коксовой ΠΏΠ΅Ρ‡ΠΈ.", + "quests.steam_age.windmill.title": "ВСтряныС ΠœΠ΅Π»ΡŒΠ½ΠΈΡ†Ρ‹", + "quests.steam_age.windmill.subtitle": "ΠžΡ‚Π»ΠΈΡ‡Π½ΠΎ сочСтаСтся с Ρ‚ΡŽΠ»ΡŒΠΏΠ°Π½Π°ΠΌΠΈ", + "quests.steam_age.windmill.desc": "Если рядом Π½Π΅Ρ‚ Ρ‚Π΅ΠΊΡƒΡ‰Π΅ΠΉ Π²ΠΎΠ΄Ρ‹, вСтряная ΠΌΠ΅Π»ΡŒΠ½ΠΈΡ†Π° β€” отличная Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π° для получСния энСргии. Π§Π΅ΠΌ большС ΠΌΠ΅Π»ΡŒΠ½ΠΈΡ†Π°, Ρ‚Π΅ΠΌ большС ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΠΌΡ‹Ρ… Π΅Π΄ΠΈΠ½ΠΈΡ† стрСсса ΠΈ Π²Ρ‹ΡˆΠ΅ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ вращСния.\n\nΠŸΡ€ΠΎΠΏΠΈΡ‚Π°Π½Π½ΡƒΡŽ дрСвСсину ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ, Π·Π°ΠΌΠΎΡ‡ΠΈΠ² Π»ΡŽΠ±Ρ‹Π΅ доски Π² ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚Π΅ ΠΈΠ· коксовой ΠΏΠ΅Ρ‡ΠΈ.", + "quests.steam_age.metal_casing.title": "ΠœΠ΅Ρ‚Π°Π»Π»ΠΈΡ‡Π΅ΡΠΊΠΈΠ΅ ΠšΠΎΡ€ΠΏΡƒΡΠ°", + "quests.steam_age.metal_casing.subtitle": "ΠŸΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½Ρ‹ΠΉ корпус ΠΌΠ°ΡˆΠΈΠ½Ρ‹?", + "quests.steam_age.metal_casing.desc": "Π­Ρ‚ΠΈ корпуса слуТат основой для Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π° простых ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Create. Загляни Π² JEI, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ всё, Ρ‡Ρ‚ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ с ΠΈΡ… ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ β€” ΠΎΡ‚ Ρ€Π΅Π΄ΡƒΠΊΡ‚ΠΎΡ€ΠΎΠ² Π΄ΠΎ систСм распрСдСлСния Π½Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ.\n\nНовичок Π² Create? Π’ ΠΈΠ½Ρ‚Π΅Ρ€Π½Π΅Ρ‚Π΅ Π΅ΡΡ‚ΡŒ мноТСство Π³Π°ΠΉΠ΄ΠΎΠ² ΠΎ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠ°Ρ…, ΠΈ Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ ΠΈΠ· Π½ΠΈΡ… Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚ ΠΈ Π² TFG! (ΠΊΡ€ΠΎΠΌΠ΅, ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΎ, Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠ² Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊΠ°)", + "quests.steam_age.mechanical_harvester.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ Комбайн", + "quests.steam_age.mechanical_harvester.subtitle": "Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ сбор уроТая", + "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": "Устал Ρ€ΡƒΠ±ΠΈΡ‚ΡŒ Π΄Π΅Ρ€Π΅Π²ΡŒΡ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ? Π­Ρ‚Π° ΡˆΡ‚ΡƒΠΊΠ° сдСлаСт это Π·Π° тСбя! ΠŸΡ€ΠΎΡΡ‚ΠΎ ΠΏΠΎΡΡ‚Π°Π²ΡŒ Π΅Ρ‘ Π½Π° Π²Ρ€Π°Ρ‰Π°ΡŽΡ‰ΡƒΡŽΡΡ ΠΊΠΎΠ½ΡΡ‚Ρ€ΡƒΠΊΡ†ΠΈΡŽ ΠΈ смотри, ΠΊΠ°ΠΊ ΠΎΠ½Π° Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚. ΠŸΡ€Π°Π²Π΄Π°, саТСнцы ΠΏΠΎΠΊΠ° придётся ΠΏΠ΅Ρ€Π΅ΡΠ°ΠΆΠΈΠ²Π°Ρ‚ΡŒ самому, ΠΏΠΎΠΊΠ° Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡˆΡŒ доступ ΠΊ Установщику (Deployer).\n\nΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠ°Ρ ΠΏΠΈΠ»Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΊΠ°ΠΌΠ½Π΅Ρ€Π΅Π·, упрощая доступ ΠΊ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹ΠΌ Π²ΠΈΠ΄Π°ΠΌ ΠΊΠ»Π°Π΄ΠΊΠΈ. Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Ρ‘ для распила Π±Ρ€Ρ‘Π²Π΅Π½ Π½Π° доски β€” Π³ΠΎΡ€Π°Π·Π΄ΠΎ эффСктивнСС!\n\nΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, с Π΅Ρ‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΌΠΎΠΆΠ½ΠΎ Ρ€Π°Π·Ρ€Π΅Π·Π°Ρ‚ΡŒ стСрТни (Rods) Π½Π° Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ Π±ΠΎΠ»Ρ‚Π°!", + "quests.steam_age.chute.title": "Ранняя Логистика", + "quests.steam_age.chute.subtitle": "ΠžΠ±Ρ‰Π΅ΡΡ‚Π²Π΅Π½Π½Π°Ρ инфраструктура для Ρ‚Π²ΠΎΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ²", + "quests.steam_age.chute.desc": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ Ρƒ тСбя Π΅ΡΡ‚ΡŒ способы ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹! Π–Π΅Π»ΠΎΠ±Π° (Chutes) ΠΏΠΎΡ…ΠΎΠΆΠΈ Π½Π° Π²ΠΎΡ€ΠΎΠ½ΠΊΠΈ, Π½ΠΎ дСшСвлС ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Π½ΠΈΠ·. Оба этих Π±Π»ΠΎΠΊΠ° Ρ‚Π°ΠΊΠΆΠ΅ способны ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈΠ· ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π° Π² ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Ρ‚Ρ€ΡƒΠ±Ρ‹ (Item Pipes).\n\nΠ’ΠΎΡ€ΠΎΠ½ΠΊΠΈ (Funnels) Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚ ΠΏΠΎΡ…ΠΎΠΆΠΈΠΌ ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ, Π½ΠΎ Π»ΡƒΡ‡ΡˆΠ΅ всСго ΡΠΎΡ‡Π΅Ρ‚Π°ΡŽΡ‚ΡΡ с ΠΊΠΎΠ½Π²Π΅ΠΉΠ΅Ρ€Π½Ρ‹ΠΌΠΈ Π»Π΅Π½Ρ‚Π°ΠΌΠΈ, Π° Π½Π΅ с Ρ‚Ρ€ΡƒΠ±Π°ΠΌΠΈ.", + "quests.steam_age.item_pipes.title": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Π’Ρ€ΡƒΠ±Ρ‹", + "quests.steam_age.item_pipes.subtitle": "НС Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΡ€ΡƒΡ‚Ρ‹Π΅, ΠΊΠ°ΠΊ Item Conduits", + "quests.steam_age.item_pipes.desc.1": "&3ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Π’Ρ€ΡƒΠ±Ρ‹&r β€” это простой, Π½ΠΎ эффСктивный способ ΠΌΠ³Π½ΠΎΠ²Π΅Π½Π½ΠΎ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, хотя ΠΈ с ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ΠΈΠ΅ΠΌ пропускной способности.\n\nΠ’Ρ€ΡƒΠ±Ρ‹ Π±ΠΎΠ»Π΅Π΅ высокого уровня ΠΎΠ±Π΅ΡΠΏΠ΅Ρ‡ΠΈΠ²Π°ΡŽΡ‚ ΠΊΠΎΠ»ΠΎΡΡΠ°Π»ΡŒΠ½ΡƒΡŽ ΠΏΡ€ΠΎΠΏΡƒΡΠΊΠ½ΡƒΡŽ ΡΠΏΠΎΡΠΎΠ±Π½ΠΎΡΡ‚ΡŒ β€” Ρ€Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ для ΠΌΠΎΠ΄ΠΎΠ² Minecraft!\n\nΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Ρ‚Ρ€ΡƒΠ±Ρ‹ &9Π½Π΅ Π²Ρ‚ΡΠ³ΠΈΠ²Π°ΡŽΡ‚&r ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, Π½ΠΎ ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ &9Π²Ρ‹Ρ‚Π°Π»ΠΊΠΈΠ²Π°Ρ‚ΡŒ&r Π»ΡŽΠ±Ρ‹Π΅ вставлСнныС Π² Π½ΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π² ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Ρ‘Π½Π½Ρ‹Π΅ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Ρ‹, начиная с &9блиТайшСго&r.", + "quests.steam_age.item_pipes.desc.2": "ΠœΠ΅Ρ…Π°Π½ΠΈΠΊΠ° ΠΏΡ€ΠΈΠΎΡ€ΠΈΡ‚Π΅Ρ‚Π° &ΠΎΠ½Π΅ΠΌΠ½ΠΎΠ³ΠΎ слоТна&r, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ моТСшь ΠΏΡ€ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ, Ссли Π½Π΅ интСрСсуСт:\n\nΠšΠ°ΠΆΠ΄Ρ‹ΠΉ &eΠŸΡƒΠ½ΠΊΡ‚ назначСния&r ΠΈΠΌΠ΅Π΅Ρ‚ &dΠ—Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚Π°&r β€” это сумма всСх Π·Π½Π°Ρ‡Π΅Π½ΠΈΠΉ ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚Π° ΠΏΠΎ ΠΏΡƒΡ‚ΠΈ ΠΊ Π½Π΅ΠΌΡƒ. Π’ΠΎΡ‚ ΠΏΡƒΠ½ΠΊΡ‚, Ρƒ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ &cнаимСньшСС &dΠ·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚Π°&r, ΠΈ Π±ΡƒΠ΄Π΅Ρ‚ Π²Ρ‹Π±Ρ€Π°Π½ для вставки ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ².\n\n&3ΠžΠ³Ρ€Π°Π½ΠΈΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ Ρ‚Ρ€ΡƒΠ±Ρ‹&r ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ ΠΈΠΌΠ΅ΡŽΡ‚ самый Π½ΠΈΠ·ΠΊΠΈΠΉ ΠΏΡ€ΠΈΠΎΡ€ΠΈΡ‚Π΅Ρ‚ для вставки ΠΈΠ·-Π·Π° Π±ΠΎΠ»Π΅Π΅ высокого значСния ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚Π°.", + "quests.steam_age.item_pipes.desc.3": "БСйчас Ρ‚Ρ‹ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ… вмСстС с &6Π–Π΅Π»ΠΎΠ±Π°ΠΌΠΈ&r ΠΈ &6Π’ΠΎΡ€ΠΎΠ½ΠΊΠ°ΠΌΠΈ&r, Π° Π² эпоху LV Ρ‚Π°ΠΊΠΆΠ΅ смоТСшь ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡Π°Ρ‚ΡŒ ΠΈΡ… ΠΊ ΠœΠΎΠ΄ΡƒΠ»ΡΠΌ ΠšΠΎΠ½Π²Π΅ΠΉΠ΅Ρ€Π°, Π’Ρ‹Ρ…ΠΎΠ΄Π½Ρ‹ΠΌ Π¨ΠΈΠ½Π°ΠΌ ΠΈ АвтоматичСским Π’Ρ‹Ρ…ΠΎΠ΄Π°ΠΌ машин.\n\n&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π’ΠΊΠ»ΡŽΡ‡Ρ‘Π½ ΡΡ‚ΠΈΠ»ΡŒ Ρ‚Ρ€ΡƒΠ± ΠΈΠ· GT6. Π­Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‡Ρ‚ΠΎ ΠΏΡ€ΠΈ установкС Ρ‚Ρ€ΡƒΠ±Π° соСдиняСтся Ρ‚ΠΎΠ»ΡŒΠΊΠΎ с Π±Π»ΠΎΠΊΠΎΠΌ, ΠΊ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌΡƒ ΠΎΠ½Π° ΠΏΡ€ΠΈΠΌΡ‹ΠΊΠ°Π΅Ρ‚. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ соСдинСния, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ свой &5Π“Π°Π΅Ρ‡Π½Ρ‹ΠΉ ΠΊΠ»ΡŽΡ‡&r Π½Π° сСткС.\n\nΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &eΠ»ΡŽΠ±ΡƒΡŽ&r ΠΈΠ· ΠΏΡ€Π΅Π΄Π»ΠΎΠΆΠ΅Π½Π½Ρ‹Ρ… ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Ρ… Π’Ρ€ΡƒΠ±, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ это Π·Π°Π΄Π°Π½ΠΈΠ΅.", + "quests.steam_age.item_pipes.desc.4": "&l&3Π›ΠΎΡ€:&r&o Ооооо, ДА! ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Ρ‚Ρ€ΡƒΠ±Ρ‹ Π±Ρ‹Π»ΠΈ Π² GregTech 5, Π½ΠΎ ΠΏΠΎ ΠΊΠ°ΠΊΠΎΠΉ-Ρ‚ΠΎ ΠΏΡ€ΠΈΡ‡ΠΈΠ½Π΅ ΠΈΡ… Π½Π΅ Π΄ΠΎΠ±Π°Π²ΠΈΠ»ΠΈ Π² GTCE, ΠΈ ΠΏΡ€ΠΈΡˆΠ»ΠΎΡΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΌΠΎΠ΄Ρ‹ для транспортировки ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ². ΠšΡ‚ΠΎ Π²ΠΎΠΎΠ±Ρ‰Π΅ Ρ‚Π°ΠΊ Π΄Π΅Π»Π°Π΅Ρ‚!? Π¨ΡƒΡ‚ΠΊΠΈ Π² сторону β€” надССмся, Ρ‚Π΅Π±Π΅ понравится Π²ΠΎΠ·Π²Ρ€Π°Ρ‰Π΅Π½ΠΈΠ΅ Ρ‚Ρ€ΡƒΠ± Π² GregTech!", + "quests.steam_age.steel_greate.title": "Greate ΠΈΠ· Π‘Ρ‚Π°Π»ΠΈ", + "quests.steam_age.steel_greate.subtitle": "Greate Π½Π°ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ…ΠΎΡ€ΠΎΡˆ, Ρ‡Ρ‚ΠΎ сдСлали Greate 2", + "quests.steam_age.steel_greate.desc": "Π”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π² ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Greate! Π‘Ρ‚Π°Π»ΡŒΠ½Ρ‹Π΅ Π’Π°Π»Ρ‹ ΠΈ ШСстСрни Π² Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ Ρ€Π°Π·Π° большС Π½Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ, Ρ‡Π΅ΠΌ старыС. ΠžΠ±Ρ‰ΠΈΠΉ ΠΏΡ€Π΅Π΄Π΅Π» Π½Π°Π³Ρ€ΡƒΠ·ΠΊΠΈ кинСтичСской установки опрСдСляСтся самым слабым элСмСнтом, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ придётся Π·Π°ΠΌΠ΅Π½ΠΈΡ‚ΡŒ старыС Π΄Π΅Ρ‚Π°Π»ΠΈ, Ссли Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ всю Π²Ρ‹Π³ΠΎΠ΄Ρƒ. Π₯отя Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΈΠ· Π½ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ!", + "quests.steam_age.steel_encased_fan.title": "ВСнтилятор Π² корпусС", + "quests.steam_age.steel_encased_fan.subtitle": "ΠžΡ‚Π»ΠΈΡ‡Π½ΠΎ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для ΠΆΠ°Ρ€ΠΊΠΈΡ… Π΄Π½Π΅ΠΉ", + "quests.steam_age.steel_encased_fan.desc": "&3ВСнтилятор Π² корпусС&r β€” Π·Π°ΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ элСмСнт Ρ‚Π²ΠΎΠ΅ΠΉ ΠΏΠ΅Ρ€Π²ΠΎΠΉ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ автоматичСской Π»ΠΈΠ½ΠΈΠΈ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ большС Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ ΠΎΡ‡ΠΈΡ‰Π°Ρ‚ΡŒ грязныС ΠΏΡ‹Π»ΠΈ. ΠΠ°ΠΏΡ€Π°Π²ΡŒ вСнтилятор Π½Π° ΠΏΡ‹Π»ΠΈ с источником Π²ΠΎΠ΄Ρ‹ ΠΌΠ΅ΠΆΠ΄Ρƒ Π½ΠΈΠΌΠΈ β€” ΠΈ вскорС ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ Π±Π»Π΅ΡΡ‚Π΅Ρ‚ΡŒ! Π’Π΄ΠΎΠ±Π°Π²ΠΎΠΊ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ². БСйчас ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ слоТно ΠΏΠ΅Ρ€Π΅Π΄Π²ΠΈΠ³Π°Ρ‚ΡŒ источник Π²ΠΎΠ΄Ρ‹, Π½ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ установку рядом с Ρ€Π΅ΠΊΠΎΠΉ ΠΈΠ»ΠΈ ΠΎΠ·Π΅Ρ€ΠΎΠΌ.", + "quests.steam_age.steel_millstone.title": "Π‘Ρ‚Π°Π»ΡŒΠ½ΠΎΠΉ Π–Ρ‘Ρ€Π½ΠΎΠ²", + "quests.steam_age.steel_millstone.subtitle": "БтоящСС ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅", + "quests.steam_age.steel_millstone.desc": "Π‘ Π³ΠΎΡ€Π°Π·Π΄ΠΎ большСй кинСтичСской Ρ‘ΠΌΠΊΠΎΡΡ‚ΡŒΡŽ ΡΡ‚Π°Π»ΡŒΠ½ΠΎΠΉ ΠΆΡ‘Ρ€Π½ΠΎΠ² являСтся ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΌ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ΠΌ ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с Π±Π°Π·ΠΎΠ²Ρ‹ΠΌ, позволяя Π²Ρ€Π°Ρ‰Π°Ρ‚ΡŒ Π΅Π³ΠΎ быстрСС ΠΈ Π΄Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ Ρ€ΡƒΠ΄Ρ‹ эффСктивнСС. ΠžΡ‚Π»ΠΈΡ‡Π½ΠΎΠ΅ ΠΎΠ±Π½ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ для всСх Π½ΠΎΠ²Ρ‹Ρ… Ρ€ΡƒΠ΄, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ скоро появятся!\n\nОднако, ΠΊΠ°ΠΊ ΠΈ ΠΏΡ€Π΅ΠΆΠ΄Π΅, Π²Ρ‹Ρ…ΠΎΠ΄ всё Π΅Ρ‰Ρ‘ ΠΈΠ΄Ρ‘Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ слот Π² JEI.", + "quests.steam_age.steel_pump.title": "Π Π°Π±ΠΎΡ‚Π° с Жидкостями", + "quests.steam_age.steel_pump.subtitle": "ВкусныС Ρ‚Ρ€ΡƒΠ±Ρ‹-спагСтти", + "quests.steam_age.steel_pump.desc.1": "Π‘ наступлСниСм Π‘Ρ‚Π°Π»ΡŒΠ½ΠΎΠΉ Π­ΠΏΠΎΡ…ΠΈ Ρ‚Ρ‹ Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ моТСшь Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, Π½ΠΎ ΠΈ Тидкости! &3ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠ°Ρ ΠΏΠΎΠΌΠΏΠ°&r способна Π²Ρ‹ΠΊΠ°Ρ‡ΠΈΠ²Π°Ρ‚ΡŒ Тидкости практичСски ΠΈΠ· Ρ‡Π΅Π³ΠΎ ΡƒΠ³ΠΎΠ΄Π½ΠΎ β€” Π±ΠΎΡ‡Π΅ΠΊ, Ρ‚ΠΈΠ³Π»Π΅ΠΉ ΠΈ Π΄Π°ΠΆΠ΅ ΠΈΠ· самих источников. Π•Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ с Ρ‚Ρ€ΡƒΠ±Π°ΠΌΠΈ ΠΈΠ· Create, Ρ‚Π°ΠΊ ΠΈ с Ρ‚Ρ€ΡƒΠ±Π°ΠΌΠΈ ΠΈΠ· GregTech, хотя ΠΈΡ… ΠΏΠΎΠ²Π΅Π΄Π΅Π½ΠΈΠ΅ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ отличаСтся.", + "quests.steam_age.steel_pump.desc.2": "Π’Ρ€ΡƒΠ±Ρ‹ ΠΈΠ· Create Π½Π΅ ΠΈΠΌΠ΅ΡŽΡ‚ Π²Π½ΡƒΡ‚Ρ€Π΅Π½Π½Π΅Π³ΠΎ ΠΎΠ±ΡŠΡ‘ΠΌΠ°, Π° пСрСносят ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ ΠΎΡ‚ источника ΠΊ ΠΏΠΎΠ»ΡƒΡ‡Π°Ρ‚Π΅Π»ΡŽ. Π©Ρ‘Π»ΠΊΠ½ΠΈ ΠΏΠΎ Π½ΠΈΠΌ ΠΌΠ΅Π΄Π½ΠΎΠΉ ΠΎΠ±Π»ΠΈΡ†ΠΎΠ²ΠΊΠΎΠΉ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Β«Π·Π°Ρ„ΠΈΠΊΡΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒΒ» соСдинСния, Π° с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π³Π°Π΅Ρ‡Π½ΠΎΠ³ΠΎ ΠΊΠ»ΡŽΡ‡Π° ΠΌΠΎΠΆΠ½ΠΎ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ малСнькоС окошко, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π±Π»ΠΎΠΊΠΈΡ€ΡƒΠ΅Ρ‚ пСрСкрёстныС соСдинСния β€” Ρ‚Π°ΠΊ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€ΠΎΠΊΠ»Π°Π΄Ρ‹Π²Π°Ρ‚ΡŒ нСсколько Ρ‚Ρ€ΡƒΠ± рядом. Для Ρ€Π°Π±ΠΎΡ‚Ρ‹ Ρ‚Ρ€ΡƒΠ± Create трСбуСтся мСханичСский насос, ΠΈ Ρƒ ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ насоса Π΄Π°Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ всСго 16 Π±Π»ΠΎΠΊΠΎΠ², Π½ΠΎ ΠΎΠ΄ΠΈΠ½ насос ΠΌΠΎΠΆΠ΅Ρ‚ Π·Π°Π±ΠΈΡ€Π°Ρ‚ΡŒ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ сразу ΠΈΠ· Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… источников.\nΠ£ Π½ΠΈΡ… Ρ‚Π°ΠΊΠΆΠ΅ &9Π½Π΅Ρ‚ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π½ΠΎΠ³ΠΎ Π»ΠΈΠΌΠΈΡ‚Π°!&r", + "quests.steam_age.steel_pump.desc.3": "Π’Ρ€ΡƒΠ±Ρ‹ ΠΈΠ· GregTech, Π½Π°ΠΎΠ±ΠΎΡ€ΠΎΡ‚, ΠΈΠΌΠ΅ΡŽΡ‚ свой Π²Π½ΡƒΡ‚Ρ€Π΅Π½Π½ΠΈΠΉ ΠΎΠ±ΡŠΡ‘ΠΌ ΠΈ Π½Π΅ Π½ΡƒΠΆΠ΄Π°ΡŽΡ‚ΡΡ Π² насосС, Ссли ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ ΡƒΠΆΠ΅ Π²Π½ΡƒΡ‚Ρ€ΠΈ. Как ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Ρ‚Ρ€ΡƒΠ±Ρ‹, соСдинСния ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΡΡ‚Ρ€Π°ΠΈΠ²Π°Ρ‚ΡŒ β€” ΠΏΡ€ΠΈΡΡΠ΄ΡŒ ΠΈ ΠΊΠ»ΠΈΠΊΠ½ΠΈ ΠΏΠΎ Π½ΠΈΠΌ с пустой Π²Ρ‚ΠΎΡ€ΠΎΠΉ Ρ€ΡƒΠΊΠΎΠΉ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ ΠΈΠ»ΠΈ ΠΎΡ‚ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ стороны. РСкомСндуСтся ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ это Π½Π° всСх Ρ‚Ρ€ΡƒΠ±Π°Ρ…, ΠΈΠ½Π°Ρ‡Π΅ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ Π±ΡƒΠ΄Π΅Ρ‚ Β«Π±ΠΎΠ»Ρ‚Π°Ρ‚ΡŒΡΡΒ» Π²Π½ΡƒΡ‚Ρ€ΠΈ.\n\nНС ΡΠΎΠ΅Π΄ΠΈΠ½ΡΡŽΡ‚ΡΡ мСханичСский насос ΠΈ Ρ‚Ρ€ΡƒΠ±Ρ‹ GregTech? ΠŸΡ€ΠΎΡΡ‚ΠΎ Π΄Π²Π°ΠΆΠ΄Ρ‹ ΠΏΠ΅Ρ€Π΅Π²Π΅Ρ€Π½ΠΈ насос (ПКМ с Π³Π°Π΅Ρ‡Π½Ρ‹ΠΌ ΠΊΠ»ΡŽΡ‡ΠΎΠΌ), ΠΈ всё Π·Π°Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚!", + "quests.steam_age.mold_table.title": "Автоматизация Π”ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠŸΠ΅Ρ‡ΠΈ", + "quests.steam_age.mold_table.subtitle": "Π”ΠΎ ЭлСктричСской ΠŸΠ΅Ρ‡ΠΈ Π΅Ρ‰Ρ‘ Π΄Π°Π»Π΅ΠΊΠΎ", + "quests.steam_age.mold_table.desc.1": "Π’Π΅Π±Π΅ понадобится &3ΠΊΡƒΡ‡Π°&r стали, поэтому автоматизация Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ β€” отличная инвСстиция. ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ насос ΠΌΠΎΠΆΠ΅Ρ‚ Π²Ρ‹ΠΊΠ°Ρ‡ΠΈΠ²Π°Ρ‚ΡŒ расплав Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ ΠΈΠ· ΠΏΠ΅Ρ‡ΠΈ (Π³ΠΎΡ€Π°Π·Π΄ΠΎ быстрСС, Ρ‡Π΅ΠΌ ΠΎΠ½ ΠΊΠ°ΠΏΠ°Π΅Ρ‚ Π² Ρ‚ΠΈΠ³Π΅Π»ΡŒ) Π² Π‘Ρ‚ΠΎΠ» с Π€ΠΎΡ€ΠΌΠ°ΠΌΠΈ, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠ³Π½ΠΎΠ²Π΅Π½Π½ΠΎ ΠΎΡ…Π»Π°ΠΆΠ΄Π°Ρ‚ΡŒ слитки! Под столом ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΡΡ‚Π°Π²ΠΈΡ‚ΡŒ Π–Ρ‘Π»ΠΎΠ± ΠΈΠ»ΠΈ Π’ΠΎΡ€ΠΎΠ½ΠΊΡƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π±ΠΈΡ€Π°Ρ‚ΡŒ Π³ΠΎΡ‚ΠΎΠ²Ρ‹Π΅ слитки. Π—Π°Ρ‚Π΅ΠΌ ΠΌΠΎΠΆΠ½ΠΎ ΠΎΡ‚ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ Π§ΡƒΠ³ΡƒΠ½Π½Ρ‹Π΅ Π‘Π»ΠΈΡ‚ΠΊΠΈ прямо ΠΊ ΠšΡƒΠ·Π½Π΅Ρ‡Π½ΠΎΠΌΡƒ ΠœΠΎΠ»ΠΎΡ‚Ρƒ.", + "quests.steam_age.mold_table.desc.2": "ΠŸΡ€ΠΈ ΠΆΠ΅Π»Π°Π½ΠΈΠΈ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π–Ρ‘Π»ΠΎΠ±, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ свСрху Π² Π΄ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ, Π° Ρ‚Π°ΠΊΠΆΠ΅ Автономный Активатор для автоматичСского наТатия ΠΌΠ΅Ρ…ΠΎΠ². Π˜Π·Π±Ρ‹Ρ‚ΠΎΡ‡Π½ΠΎΠ΅ использованиС ΠΌΠ΅Ρ…ΠΎΠ² быстро ΠΈΠ·Π½Π°ΡˆΠΈΠ²Π°Π΅Ρ‚ Π€ΡƒΡ€ΠΌΡƒ, Π½ΠΎ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Ρ‚Ρ€ΡƒΠ±Ρ‹ ΠΌΠΎΠ³ΡƒΡ‚ автоматичСски Π²ΡΡ‚Π°Π²Π»ΡΡ‚ΡŒ Π½ΠΎΠ²ΠΎΠ΅.\n\nМоТно Π΄Π°ΠΆΠ΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ насос Ρ‚Π°ΠΊ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ½ ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ Π²Ρ‹ΠΊΠ°Ρ‡ΠΈΠ²Π°Π» расплав ΠΈ ΠΈΠ· Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ, ΠΈ ΠΈΠ· тигля, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Клапан ЖидкостСй для Π²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎΠΉ остановки, ΠΊΠΎΠ³Π΄Π° Ρ‚Ρ‹ дСлаСшь сплав, ΠΈ ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎΠ³ΠΎ Π²ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡ послС Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΈΡ.", + "quests.steam_age.fluid_pipes.title": "Π’Ρ€ΡƒΠ±Ρ‹ для ЖидкостСй", + "quests.steam_age.fluid_pipes.subtitle": "Жидкости, Π³Π°Π·Ρ‹... ΠΌΡ‹ Π½Π΅ Π΄Π΅Π»Π°Π΅ΠΌ Ρ€Π°Π·Π»ΠΈΡ‡ΠΈΠΉ", + "quests.steam_age.fluid_pipes.desc.1": "&bΠ’Ρ€ΡƒΠ±Ρ‹ для ЖидкостСй&r ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ Ρ‚Ρ€Π°Π½ΡΠΏΠΎΡ€Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ &7ΠŸΠ°Ρ€&r ΠΌΠ΅ΠΆΠ΄Ρƒ машинами.\n\nКаТдая Ρ‚Ρ€ΡƒΠ±Π° ΠΈΠΌΠ΅Π΅Ρ‚ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½ΡƒΡŽ ΠΏΡ€ΠΎΠΏΡƒΡΠΊΠ½ΡƒΡŽ ΡΠΏΠΎΡΠΎΠ±Π½ΠΎΡΡ‚ΡŒ Π² ΠΌΠ‘/Ρ‚ΠΈΠΊ ΠΈ &6Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π½Ρ‹ΠΉ ΠΏΡ€Π΅Π΄Π΅Π»&r. Π­Ρ‚ΠΎ Π²Π°ΠΆΠ½ΠΎ ΡƒΠΆΠ΅ сСйчас, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠŸΠ°Ρ€ ΠΌΠΎΠΆΠ΅Ρ‚ ΡΠΆΠ΅Ρ‡ΡŒ дСрСвянныС Ρ‚Ρ€ΡƒΠ±Ρ‹. НСкоторыС Ρ‚Ρ€ΡƒΠ±Ρ‹ ΠΎΠ±Π»Π°Π΄Π°ΡŽΡ‚ &bособСнными&r свойствами, ΠΎ ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΏΠΎΠΊΠ° ΠΌΠΎΠΆΠ½ΠΎ Π½Π΅ Π±Π΅ΡΠΏΠΎΠΊΠΎΠΈΡ‚ΡŒΡΡ.\n\nΠšΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π» ΠΈΠΌΠ΅Π΅Ρ‚ нСсколько Ρ€Π°Π·ΠΌΠ΅Ρ€ΠΎΠ² Ρ‚Ρ€ΡƒΠ±. Π§Π΅ΠΌ большС Ρ‚Ρ€ΡƒΠ±Π°, Ρ‚Π΅ΠΌ &aΠ²Ρ‹ΡˆΠ΅&r Π΅Ρ‘ пропускная ΡΠΏΠΎΡΠΎΠ±Π½ΠΎΡΡ‚ΡŒ, Π½ΠΎ Ρ‚Π΅ΠΌ &dΠ΄ΠΎΡ€ΠΎΠΆΠ΅&r ΠΊΡ€Π°Ρ„Ρ‚. НапримСр, обычная &6Бронзовая Π’Ρ€ΡƒΠ±Π°&r ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‘Ρ‚ 120 ΠΌΠ‘/Ρ‚ΠΈΠΊ (ΠΈ ΠΈΠΌΠ΅Π΅Ρ‚ Π²Π½ΡƒΡ‚Ρ€Π΅Π½Π½ΠΈΠΉ Π±ΡƒΡ„Π΅Ρ€ 1,200 ΠΌΠ‘!).\n\nДля Π½Π°Ρ‡Π°Π»Π° рСкомСндуСтся ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ дСрСвянныС Ρ‚Ρ€ΡƒΠ±Ρ‹ для Ρ…ΠΎΠ»ΠΎΠ΄Π½Ρ‹Ρ… ТидкостСй ΠΈ Π±Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ‹Π΅ β€” для горячих.", + "quests.steam_age.fluid_pipes.desc.2": "&aНапоминаниС:&r 1 сСкунда = 20 Ρ‚ΠΈΠΊΠΎΠ²... Ссли сСрвСр Π½Π΅ Π»Π°Π³Π°Π΅Ρ‚.\n\n&dΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π’ΠΊΠ»ΡŽΡ‡Ρ‘Π½ ΡΡ‚ΠΈΠ»ΡŒ Ρ‚Ρ€ΡƒΠ± ΠΈΠ· GT6. Π­Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‡Ρ‚ΠΎ ΠΏΡ€ΠΈ установкС Ρ‚Ρ€ΡƒΠ±Π° соСдиняСтся Ρ‚ΠΎΠ»ΡŒΠΊΠΎ с Π±Π»ΠΎΠΊΠΎΠΌ, ΠΊ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌΡƒ ΠΏΡ€ΠΈΠΌΡ‹ΠΊΠ°Π΅Ρ‚. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ большС соСдинСний, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ Π³Π°Π΅Ρ‡Π½Ρ‹ΠΉ ΠΊΠ»ΡŽΡ‡ Π½Π° Ρ‚Ρ€ΡƒΠ±Π΅.\n\nΠ’Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ Π·Π°ΠΆΠ°Ρ‚ΡŒ Shift ΠΈ ПКМ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Π²Ρ…ΠΎΠ΄ с Π²Ρ‹Π±Ρ€Π°Π½Π½ΠΎΠΉ стороны. Π­Ρ‚ΠΎ ΠΏΠΎΠΌΠΎΠ³Π°Π΅Ρ‚ ΠΏΡ€Π΅Π΄ΠΎΡ‚Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ «плСсканиС» β€” Π΄Π²ΠΈΠΆΠ΅Π½ΠΈΠ΅ Тидкости Π½Π΅ Π² Ρ‚ΠΎΠΌ Π½Π°ΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠΈ.", + "quests.steam_age.fluid_drums.title": "Π­Ρ„Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΠ΅ Π₯Ρ€Π°Π½Π΅Π½ΠΈΠ΅ ЖидкостСй", + "quests.steam_age.fluid_drums.subtitle": "НС Π΄ΡƒΠΌΠ°ΡŽ, Ρ‡Ρ‚ΠΎ дСрСвянная Π±ΠΎΡ‡ΠΊΠ° Π²Ρ‹Π΄Π΅Ρ€ΠΆΠΈΡ‚ Ρ€Π°ΡΠΏΠ»Π°Π²Π»Π΅Π½Π½ΡƒΡŽ ΡΡ‚Π°Π»ΡŒ", + "quests.steam_age.fluid_drums.desc.1": "&6TFG&r быстро становится &4ΠΏΠ΅Ρ€Π΅Π³Ρ€ΡƒΠΆΠ΅Π½&r количСством Ρ€Π°Π·Π½Ρ‹Ρ… ТидкостСй, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ навСрняка ΠΈΡ‰Π΅ΡˆΡŒ способ ΠΈΡ… хранСния.\n\nΠŸΡ€Π΅Π΄ΡΡ‚Π°Π²Π»ΡΠ΅ΠΌ... &aΠ‘ΠΎΡ‡ΠΊΠΈ&r! Они ΠΈΠΌΠ΅ΡŽΡ‚ большой Π²Π½ΡƒΡ‚Ρ€Π΅Π½Π½ΠΈΠΉ ΠΎΠ±ΡŠΡ‘ΠΌ, ΠΈ Π»ΡŽΠ±ΡƒΡŽ &aΠ‘ΠΎΡ‡ΠΊΡƒ&r ΠΌΠΎΠΆΠ½ΠΎ ΡΠ»ΠΎΠΌΠ°Ρ‚ΡŒ ΠΈ ΠΏΠΎΠ΄ΠΎΠ±Ρ€Π°Ρ‚ΡŒ β€” ΠΎΠ½Π° &dсохранит ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ&r Π²Π½ΡƒΡ‚Ρ€ΠΈ. Π©Π΅Π»Ρ‡ΠΎΠΊ ПКМ Мягким ΠœΠΎΠ»ΠΎΡ‚ΠΊΠΎΠΌ позволяСт Π±ΠΎΡ‡ΠΊΠ΅ ΡΠ»ΠΈΡ‚ΡŒ содСрТимоС Π² ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€, располоТСнный ΠΏΠΎΠ΄ Π½Π΅ΠΉ.", + "quests.steam_age.fluid_drums.desc.2": "&l&3Π›ΠΎΡ€:&r&o Π­Ρ‚ΠΈ Π±ΠΎΡ‡ΠΊΠΈ Π±Ρ‹Π»ΠΈ пСрСнСсСны ΠΈΠ· GregTech 6.", + "quests.steam_age.boilers.title": "ΠŸΠ°Ρ€ΠΎΠ²Ρ‹Π΅ ΠšΠΎΡ‚Π»Ρ‹", + "quests.steam_age.boilers.subtitle": "ΠŸΠΎΡ€Ρ‚Π°Ρ‚ΠΈΠ²Π½Π°Ρ парная", + "quests.steam_age.boilers.desc.1": "ΠŸΠ°Ρ€ΠΎΠ²Ρ‹Π΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ Π½ΡƒΠΆΠ΄Π°ΡŽΡ‚ΡΡ Π² энСргии! Π£ вас Π΅ΡΡ‚ΡŒ Ρ‚Ρ€ΠΈ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π° Π³Π΅Π½Π΅Ρ€Π°Ρ†ΠΈΠΈ ΠΏΠ°Ρ€Π°: &3Π’Π²Π΅Ρ€Π΄ΠΎΡ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ&r ΠΊΠΎΡ‚Π΅Π» ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Π΅Ρ‚ ΡƒΠ³ΠΎΠ»ΡŒ ΠΈ дрСвСсный ΡƒΠ³ΠΎΠ»ΡŒ, &3Π–ΠΈΠ΄ΠΊΠΎΡ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ&r ΠΊΠΎΡ‚Π΅Π» ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Π΅Ρ‚ Тидкости, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚ ΠΈ Π»Π°Π²Ρƒ, Π° &3Π‘ΠΎΠ»Π½Π΅Ρ‡Π½Ρ‹ΠΉ&r ΠΊΠΎΡ‚Π΅Π» Π½Π΅ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, Π½ΠΎ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π΄Π½Ρ‘ΠΌ. Π’Ρ‹Π±ΠΎΡ€ Π·Π° Π²Π°ΠΌΠΈ, Π½ΠΎ ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΆΠΈΠ΄ΠΊΠΎΡ‚ΠΎΠΏΠ»ΠΈΠ²Π½Ρ‹ΠΉ, Ссли Π½Π΅ ΡƒΠ²Π΅Ρ€Π΅Π½Ρ‹.\n\nВсС ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Π΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΈΠΌΠ΅ΡŽΡ‚ вСнтиляционноС отвСрстиС, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π΄ΠΎΠ»ΠΆΠ½ΠΎ ΠΎΡΡ‚Π°Π²Π°Ρ‚ΡŒΡΡ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚Ρ‹ΠΌ для ΠΊΠΎΡ€Ρ€Π΅ΠΊΡ‚Π½ΠΎΠΉ Ρ€Π°Π±ΠΎΡ‚Ρ‹.", + "quests.steam_age.boilers.desc.2": "&aΠ’Π½ΠΈΠΌΠ°Π½ΠΈΠ΅:&r ΠšΠΎΡ‚Π»Ρ‹ ΠΌΠΎΠ³ΡƒΡ‚ &bΠ²Π·ΠΎΡ€Π²Π°Ρ‚ΡŒΡΡ&r, Ссли Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π²ΠΎΠ΄Ρƒ Π² сухой ΠΈ горячий ΠΊΠΎΡ‚Π΅Π»! Π›ΡƒΡ‡ΡˆΠ΅ всСгда ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΡŒ Π²ΠΎΠ΄Ρƒ, Π½ΠΎ Ссли Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ ΠΏΠΎΠΉΠ΄Π΅Ρ‚ Π½Π΅ Ρ‚Π°ΠΊ, ΠΌΠΎΠΆΠ½ΠΎ ΡΠ»ΠΎΠΌΠ°Ρ‚ΡŒ ΠΈ ΠΏΠΎΡΡ‚Π°Π²ΠΈΡ‚ΡŒ Π±Π»ΠΎΠΊ Π·Π°Π½ΠΎΠ²ΠΎ β€” Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° сбросится бСзопасно.", + "quests.steam_age.boilers.tasks": "Π›ΡŽΠ±ΠΎΠΉ ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠΉ ΠΊΠΎΡ‚Π΅Π» высокого давлСния", + "quests.steam_age.steam_bloomery.title": "ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π‘Ρ‹Ρ€ΠΎΠ΄ΡƒΡ‚Π½Ρ‹ΠΉ Π“ΠΎΡ€Π½", + "quests.steam_age.steam_bloomery.subtitle": "Дядя старого сыродутного Π³ΠΎΡ€Π½Π°", + "quests.steam_age.steam_bloomery.desc": "Π’Π°ΠΌ всСгда понадобится ΠΌΠ½ΠΎΠ³ΠΎ ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°, Ρ‚Π°ΠΊ ΠΏΠΎΡ‡Π΅ΠΌΡƒ Π±Ρ‹ Π½Π΅ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ свою ΠΏΠ΅Ρ‡ΡŒ? Π‘Π»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ способ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ появляСтся Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π° LV, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ это ΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹ΠΉ прогрСсс! ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π‘Ρ‹Ρ€ΠΎΠ΄ΡƒΡ‚Π½Ρ‹ΠΉ Π“ΠΎΡ€Π½ β€” это Π½ΠΎΠ²Ρ‹ΠΉ ΠΌΠ½ΠΎΠ³ΠΎ Π±Π»ΠΎΡ‡Π½Ρ‹ΠΉ ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΡƒΠ΅Ρ‚ Π²Π°ΡˆΡƒ ΡΡ‚Π°Ρ€ΡƒΡŽ TFC-ΠΏΠ΅Ρ‡ΡŒ ΠΈ Π΄Π΅Π»Π°Π΅Ρ‚ это быстрСС! Как ΠΈ с Коксовой ΠŸΠ΅Ρ‡ΡŒΡŽ, Π½Π°ΠΆΠΌΠΈΡ‚Π΅ ΠΊΠ½ΠΎΠΏΠΊΡƒ 'ИспользованиС' Π² JEI (ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ &f\"U\"&r), Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ ΠΏΡ€Π΅Π²ΡŒΡŽ ΠΌΠ½ΠΎΠ³ΠΎ Π±Π»ΠΎΡ‡Π½ΠΎΠ³ΠΎ строСния, ΠΈ ΠΊΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ΠΏΠΎ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Ρ‹ΠΌ Π±Π»ΠΎΠΊΠ°ΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎ допустимо Π½Π° ΠΊΠ°ΠΆΠ΄ΠΎΠΌ мСстС.", + "quests.steam_age.steam_furnace.title": "ΠŸΠ°Ρ€ΠΎΠ²Π°Ρ ΠŸΠ΅Ρ‡ΡŒ Высокого ДавлСния", + "quests.steam_age.steam_furnace.subtitle": "ΠŸΠ°Ρ€ΠΎΠ²Π°Ρ ΠΏΠ΅Ρ‡ΡŒ ΠΏΠ΅Ρ‡Π΅Ρ‚...", + "quests.steam_age.steam_furnace.desc": "Π₯ΠΎΡ‚ΠΈΡ‚Π΅ быстро ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ Ρ€ΡƒΠ΄Ρƒ Π² слиток? &3ΠŸΠ°Ρ€ΠΎΠ²Π°Ρ ΠŸΠ΅Ρ‡ΡŒ высокого давлСния&r Π΄Π΅Π»Π°Π΅Ρ‚ ΠΈΠΌΠ΅Π½Π½ΠΎ это! Она ΠΌΠΎΠΆΠ΅Ρ‚ быстро ΠΏΡ€Π΅Π²Ρ€Π°Ρ‰Π°Ρ‚ΡŒ Ρ€ΡƒΠ΄Ρƒ ΠΈ ΠΏΠΎΡ€ΠΎΡˆΠΊΠΈ Π² слитки β€” Π½ΠΎ Π±Π΅Π· ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ².", + "quests.steam_age.steam_oven.title": "ΠŸΠ°Ρ€ΠΎΠ²Π°Ρ Плавильня", + "quests.steam_age.steam_oven.subtitle": "Π‘Ρ‚Π°Ρ€ΡˆΠΈΠΉ Π±Ρ€Π°Ρ‚ ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π”Ρ€ΠΎΠ±ΠΈΠ»ΠΊΠΈ", + "quests.steam_age.steam_oven.desc.1": "&o...ΠΈΠ»ΠΈ младший Π±Ρ€Π°Ρ‚. НС Π³ΠΎΠ²ΠΎΡ€ΠΈΡ‚Π΅ Π΅ΠΌΡƒ!&r\n\n&3ΠŸΠ°Ρ€ΠΎΠ²Π°Ρ Плавильня&r β€” отличная ΠΌΠ½ΠΎΠ³ΠΎ блочная опция, Ссли Π½ΡƒΠΆΠ½ΠΎ &6Π»Π΅Π³ΠΊΠΎ ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²Π»ΡΡ‚ΡŒ большиС количСства ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ².&r Π‘ΠΎΠ»ΡŒΡˆΠ΅ Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Π»ΠΈΠ½ΠΈΠΈ ΠΏΠ΅Ρ‡Π΅ΠΉ ΠΈ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ ΠΈΡ… ΠΎΡ‡ΠΈΡ‰Π°Ρ‚ΡŒ ΠΈ Π·Π°ΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ!\n\nОна фактичСски Π²Π΅Π΄Π΅Ρ‚ сСбя ΠΊΠ°ΠΊ ΠΏΠ°Ρ€Π°Π»Π»Π΅Π»ΡŒΠ½Π°Ρ ΠΏΠ΅Ρ‡ΡŒ, пСрСплавляя Π΄ΠΎ 8 ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΎΠ΄Π½ΠΎΠ²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ ΠΏΡ€ΠΈ Π½Π΅Π±ΠΎΠ»ΡŒΡˆΠΈΡ… Π·Π°Ρ‚Ρ€Π°Ρ‚Π°Ρ… ΠΏΠ°Ρ€Π°.", + "quests.steam_age.steam_oven.desc.2": "&l&3Lore:&r&o Π­Ρ‚ΠΎΡ‚ ΠΌΠ½ΠΎΠ³ΠΎ Π±Π»ΠΎΡ‡Π½Ρ‹ΠΉ ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌ β€” нСсмотря Π½Π° сильноС сходство с Π±Ρ€Π°Ρ‚ΠΎΠΌ, ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π”Ρ€ΠΎΠ±ΠΈΠ»ΠΊΠΎΠΉ β€” Π½Π΅ ΠΏΠΎΡ€Ρ‚ΠΈΡ€ΠΎΠ²Π°Π½ ΠΈΠ· вСрсии GregTech ΠΈΠ»ΠΈ Π°Π΄Π΄ΠΎΠ½Π°. Π•Π³ΠΎ настоящий ΠΏΡ€ΠΎΡ‚ΠΎΡ‚ΠΈΠΏ β€” ΠŸΠ°Ρ€ΠΎΠ²Π°Ρ ΠŸΠ΅Ρ‡ΡŒ ΠΈΠ· Railcraft, которая появилась Π΅Ρ‰Ρ‘ Π² вСрсии 1.4.7!", + "quests.steam_age.steam_macerator.title": "ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ высокого давлСния ", + "quests.steam_age.steam_macerator.subtitle": "ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡Π°Π΅Ρ‚...", + "quests.steam_age.steam_macerator.desc": "Π­Ρ‚Π° машина Π΄Π΅Π»Π°Π΅Ρ‚ Ρ€ΠΎΠ²Π½ΠΎ Ρ‚ΠΎ ΠΆΠ΅, Ρ‡Ρ‚ΠΎ ΠΈ &3Π–Π΅Ρ€Π½ΠΎΠ²&r, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Ссли ΠΎΠ½Π° Ρƒ вас ΡƒΠΆΠ΅ Π΅ΡΡ‚ΡŒ, Π² постройкС этого Π°Π³Ρ€Π΅Π³Π°Ρ‚Π° Π½Π΅Ρ‚ особого смысла. Π’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, ΠΎΠ΄ΠΈΠ½ ΠΈΠ· этих Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ² трСбуСтся для дальнСйшСго прогрСсса. НСт, эта машина Ρ‚ΠΎΠΆΠ΅ Π½Π΅ Π²Ρ‹Π΄Π°Ρ‘Ρ‚ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ слот Π²Ρ‹Ρ…ΠΎΠ΄Π°. ΠŸΡ€ΠΈΠ΄Ρ‘Ρ‚ΡΡ Π΄ΠΎΠΆΠ΄Π°Ρ‚ΡŒΡΡ &6HV&r для этого.", + "quests.steam_age.steam_grinder.title": "ΠŸΠ°Ρ€ΠΎΠ²Π°Ρ Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŒ", + "quests.steam_age.steam_grinder.subtitle": "Младшая сСстра ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»Ρ", + "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.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ΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, ΠšΡƒΠ·Π½Π΅Ρ‡Π½Ρ‹ΠΉ ΠœΠΎΠ»ΠΎΡ‚ позволяСт (Ρ…ΠΎΡ‚ΡŒ ΠΈ ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎ) ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ ΠΏΡ€ΠΎΠΌΠ΅ΠΆΡƒΡ‚ΠΎΡ‡Π½Ρ‹Π΅ слитки, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ ΠšΡ€ΠΈΡ†Ρƒ Π² КованоС Π–Π΅Π»Π΅Π·ΠΎ ΠΈΠ»ΠΈ Π§ΡƒΠ³ΡƒΠ½ Π² Π‘Ρ‚Π°Π»ΡŒ, Ссли Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ Π±ΠΎΠ»Π΅Π΅ ΠΊΠΎΠΌΠΏΠ°ΠΊΡ‚Π½ΡƒΡŽ Π²Π΅Ρ€ΡΠΈΡŽ Helve Hammer!", + "quests.steam_age.alloy_smelter.title": "ΠŸΠ°Ρ€ΠΎΠ²Π°Ρ ΠŸΠ΅Ρ‡ΡŒ для Π‘ΠΏΠ»Π°Π²ΠΎΠ²", + "quests.steam_age.alloy_smelter.subtitle": "ΠŸΠ΅Ρ‡ΡŒ для Π‘ΠΏΠ»Π°Π²ΠΎΠ² сплавляСт сплавы...", + "quests.steam_age.alloy_smelter.desc": "&bΠŸΠ΅Ρ‡ΡŒ для Π‘ΠΏΠ»Π°Π²ΠΎΠ²&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для сплавов. Она Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΠ»Π΅Π·Π΅Π½Π° для эффСктивного Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° &6Π‘Ρ€ΠΎΠ½Π·Ρ‹&r ΠΈ для &4ΠšΡ€Π°ΡΠ½ΠΎΠ³ΠΎ Π‘ΠΏΠ»Π°Π²Π°&r Π² блиТайшСм Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ.\n\nОна Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ ΡΠ²Π°Ρ€ΠΈΠ²Π°Ρ‚ΡŒ слитки ВысокоуглСродной стали Π³ΠΎΡ€Π°Π·Π΄ΠΎ эффСктивнСС!\n\nИз всСх машин &6ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π­Ρ€Ρ‹&r это самая Ρ‚Ρ€Π΅Π±ΠΎΠ²Π°Ρ‚Π΅Π»ΡŒΠ½Π°Ρ ΠΊ ΠΏΠ°Ρ€Ρƒ. Если ΠΏΠ°Ρ€ закончится, слСгка ΠΊΠΎΡΠ½ΠΈΡ‚Π΅ΡΡŒ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ &aΠ»ΡŽΠ±Ρ‹ΠΌ Мягким ΠœΠΎΠ»ΠΎΡ‚ΠΊΠΎΠΌ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ€Π΅ΠΌΠ΅Π½Π½ΠΎ ΠΏΡ€ΠΈΠΎΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Π΅Ρ‘ Ρ€Π°Π±ΠΎΡ‚Ρƒ.", + "quests.steam_age.compressor.title": "ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ ΠšΠΎΠΌΠΏΡ€Π΅ΡΡΠΎΡ€", + "quests.steam_age.compressor.subtitle": "ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ ΠšΠΎΠΌΠΏΡ€Π΅ΡΡΠΎΡ€ сТимаСт...", + "quests.steam_age.compressor.desc": "&3ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ ΠšΠΎΠΌΠΏΡ€Π΅ΡΡΠΎΡ€&r ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‰Π°Ρ‚ΡŒ слитки ΠΈ Π΄Ρ€Π°Π³ΠΎΡ†Π΅Π½Π½Ρ‹Π΅ ΠΊΠ°ΠΌΠ½ΠΈ Π² Π±Π»ΠΎΠΊΠΈ, самородки Π² слитки, Π° самоС Π³Π»Π°Π²Π½ΠΎΠ΅ β€” Π΄Ρ€Π΅Π²Π΅ΡΠ½ΡƒΡŽ массу Π² ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Ρ‹Π΅ Доски. Π‘ΠΊΠΎΡ€ΠΎ Π²Ρ‹ ΠΏΠΎΠΉΠΌΡ‘Ρ‚Π΅, ΠΏΠΎΡ‡Π΅ΠΌΡƒ это Π²Π°ΠΆΠ½ΠΎ!", + "quests.steam_age.molding.title": "Π›ΠΈΡ‚ΡŒΡ‘", + "quests.steam_age.molding.subtitle": "Π‘ΠΎΠΊΡ€Π°Ρ‚ΠΈΡ‚Π΅ количСство Π»ΠΈΡ‚ΡŒΡ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Ρ„ΠΎΡ€ΠΌ", + "quests.steam_age.molding.desc": "Помимо сплавлСния ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠ², &3ΠŸΠ΅Ρ‡ΡŒ для Π‘ΠΏΠ»Π°Π²ΠΎΠ²&r ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &3Π€ΠΎΡ€ΠΌΡ‹&r для прСобразования ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ² Π² Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ Ρ„ΠΎΡ€ΠΌΡ‹.\n\nΠ’Π°ΠΌ понадобятся ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹Π΅ Ρ„ΠΎΡ€ΠΌΡ‹ для Π±ΡƒΠ΄ΡƒΡ‰Π΅Π³ΠΎ плавлСния сплавов. ΠžΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ Π΄Π΅Π»Π°ΠΉΡ‚Π΅ &aΠ€ΠΎΡ€ΠΌΡ‹&r β€” Π½Π΅ Π΄Π΅Π»Π°ΠΉΡ‚Π΅ &cΠ€ΠΎΡ€ΠΌΡ‹ ЭкструдСра&r, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ Π² Π΄Ρ€ΡƒΠ³ΠΎΠΉ машинС.\n\nΠ’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π²Π°ΠΌ Ρ‚Π°ΠΊΠΆΠ΅ Π±ΡƒΠ΄ΡƒΡ‚ интСрСсны Ρ„ΠΎΡ€ΠΌΡ‹ для ΡˆΠ΅ΡΡ‚Π΅Ρ€Ρ‘Π½ΠΎΠΊ, Π½ΠΎ использованиС ΠΈΡ… для создания ΡˆΠ΅ΡΡ‚Π΅Ρ€Ρ‘Π½ΠΎΠΊ Π΄ΠΎΡ€ΠΎΠΆΠ΅, Ρ‡Π΅ΠΌ Π΄Π΅Π»Π°Ρ‚ΡŒ это Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ.", + "quests.steam_age.red_alloy.title": "ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π‘ΠΏΠ»Π°Π²", + "quests.steam_age.red_alloy.subtitle": "ΠŸΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ Π²Ρ‹ΠΌΡ‹ΡˆΠ»Π΅Π½Π½Ρ‹ΠΉ сплав", + "quests.steam_age.red_alloy.desc": "&4ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π‘ΠΏΠ»Π°Π²&r β€” это сплав МСди ΠΈ ΠšΡ€Π°ΡΠ½ΠΎΠ³ΠΎ камня, цСнящийся Π² ΠΌΠΈΡ€Π΅ GregTech Π·Π° свою ΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΈΠΌΠΎΡΡ‚ΡŒ. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Π΅Π³ΠΎ Π»ΠΈΠ±ΠΎ Π² ΠŸΠ΅Ρ‡ΠΈ для Π‘ΠΏΠ»Π°Π²ΠΎΠ², Π»ΠΈΠ±ΠΎ Π² Π’Π°ΡˆΠ΅ΠΌ ΠšΠΎΡ‚Π»Π΅.\n\nΠ’Π°ΠΌ понадобится Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ для &9Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½Π½Ρ‹Ρ… Π›Π°ΠΌΠΏ&r.\n\n&l&3Π›ΠΎΡ€:&r&o Π­Ρ‚ΠΎΡ‚ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π» ΠΈΠ·Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎ Π±Ρ‹Π» ΠΈΠ· RedPower β€” Π½ΠΎΡΡ‚Π°Π»ΡŒΠ³ΠΈΡ!", + "quests.steam_age.extractor.title": "ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Экстрактор", + "quests.steam_age.extractor.subtitle": "Экстрактор ΠΈΠ·Π²Π»Π΅ΠΊΠ°Π΅Ρ‚...", + "quests.steam_age.extractor.desc": "Π’ &3ЭкстракторС&r Π² &6ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π­ΠΏΠΎΡ…Π΅&r ΠΌΠ°Π»ΠΎ Ρ‡Ρ‚ΠΎ изготавливаСтся, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ Π½Π΅ способСн ΠΈΠ·Π²Π»Π΅ΠΊΠ°Ρ‚ΡŒ Тидкости.", + "quests.steam_age.glass_tube.title": "БтСклянныС Π’Ρ€ΡƒΠ±ΠΊΠΈ", + "quests.steam_age.glass_tube.subtitle": "Π’Π°ΠΌ понадобится ΠΌΠ½ΠΎΠ³ΠΎ Ρ‚Π°ΠΊΠΈΡ…", + "quests.steam_age.glass_tube.desc": "Π₯отя ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ стСклодувного Π΄Π΅Π»Π°, Π³ΠΎΡ€Π°Π·Π΄ΠΎ эффСктивнСС ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ ΠΈΡ… Π² ПлавильникС Π‘ΠΏΠ»Π°Π²ΠΎΠ² с подходящСй Ρ„ΠΎΡ€ΠΌΠΎΠΉ. НуТна масса стСклянной ΠΏΡ‹Π»ΠΈ? МоТно Π»ΠΈΠ±ΠΎ стСклодувом ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ сразу 16 ΠΏΠ°Π½Π΅Π»Π΅ΠΉ ΠΈ ΡΠΌΠΎΠ»ΠΎΡ‚ΡŒ ΠΈΡ…, Π»ΠΈΠ±ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π”Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½ΠΈΠΊ КамнСй ΠΈ ΠšΡƒΠ·Π½Π΅Ρ‡Π½Ρ‹ΠΉ ΠœΠΎΠ»ΠΎΡ‚, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ пСска, Π° Π·Π°Ρ‚Π΅ΠΌ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΊΡ€Π΅ΠΌΠ½Π΅Π²ΠΎΠΉ ΠΏΡ‹Π»ΠΈ для прСвращСния Π² ΡΡ‚Π΅ΠΊΠ»ΡΠ½Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ.", + "quests.steam_age.treated_planks.title": "ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π½Π½Ρ‹Π΅ Доски", + "quests.steam_age.treated_planks.subtitle": "Π’Π°ΠΊΠΆΠ΅ извСстны ΠΊΠ°ΠΊ Π›Π°ΠΌΠΈΠ½ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Π΅ Доски", + "quests.steam_age.treated_planks.desc": "НадСюсь, Π²Ρ‹ сохраняли свой ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚, ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ этих ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡Ρ‘Π½Π½Ρ‹Ρ… ΠΈ сТатых досок β€” Π΅Ρ‰Ρ‘ ΠΎΠ΄Π½ΠΎ Π΅Π³ΠΎ ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠ΅.\n\n&l&3Π›ΠΎΡ€:&r&o Π’ Π±ΠΎΠ»Π΅Π΅ Ρ€Π°Π½Π½ΠΈΡ… вСрсиях TerraFirmaGreg это Π±Ρ‹Π» ΠΌΠΎΠΌΠ΅Π½Ρ‚, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΌΠΎΠ³Π»ΠΈ Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Create!", + "quests.steam_age.electron_tube.title": "ЭлСктронная Π›Π°ΠΌΠΏΠ°", + "quests.steam_age.electron_tube.subtitle": "Π£Π»ΡŒΡ‚Ρ€Π°-Π£Π»ΡŒΡ‚Ρ€Π° НизкоС НапряТСниС...?", + "quests.steam_age.electron_tube.desc": "Π˜Π·Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎ ΠΈΡ… Π±ΡƒΠ΄Π΅Ρ‚ ΠΎΡ‡Π΅Π½ΡŒ больно ΠΈΠ·Π³ΠΎΡ‚Π°Π²Π»ΠΈΠ²Π°Ρ‚ΡŒ, Π½ΠΎ Π²Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΠ΅Ρ€Π²Ρ‹Π΅ нСсколько для настройки Π»ΠΈΠ½ΠΈΠΈ Автономных Активаторов, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅Π΅ ΠΈΡ… ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ стало Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ дСшСвлС.\n\nΠšΡ€ΠΎΠΌΠ΅ Автономных Активаторов, эти Ρ‚Ρ€ΡƒΠ±ΠΊΠΈ Ρ‚Π°ΠΊΠΆΠ΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ Π² ΡˆΠΈΡ€ΠΎΠΊΠΎΠΌ спСктрС ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹Ρ… машин Create!", + "quests.steam_age.rotation_speed_controller.title": "РСгулятор Бкорости ВращСния", + "quests.steam_age.rotation_speed_controller.subtitle": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ Π½ΠΈΠΊΠ°ΠΊΠΈΡ… Ρ€ΡƒΡ‡Π½Ρ‹Ρ… ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡!", + "quests.steam_age.rotation_speed_controller.desc": "&3РСгулятор Бкорости ВращСния&r ΠΌΠΎΠΆΠ΅Ρ‚ ΡƒΠΏΡ€ΠΎΡΡ‚ΠΈΡ‚ΡŒ всю Π²Π°ΡˆΡƒ 'спагСтти' ΠΈΠ· ΡˆΠ΅ΡΡ‚Π΅Ρ€Ρ‘Π½ΠΎΠΊ Π² ΠΎΠ΄ΠΈΠ½ Π±Π»ΠΎΠΊ, позволяя Ρ€Π΅Π³ΡƒΠ»ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΎΠ±ΠΎΡ€ΠΎΡ‚Ρ‹ (RPM) просто ΠΈ ΠΊΠΎΠΌΠΏΠ°ΠΊΡ‚Π½ΠΎ. Π­Ρ‚ΠΈ устройства Π±ΡƒΠ΄ΡƒΡ‚ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ ΠΏΠΎΠ·ΠΆΠ΅, ΠΊΠΎΠ³Π΄Π° Ρƒ вас Π±ΡƒΠ΄Π΅Ρ‚ большС машин для балансировки Π΅Π΄ΠΈΠ½ΠΈΡ† напряТСния!", + "quests.steam_age.mech_crafter.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ", + "quests.steam_age.mech_crafter.subtitle": "Для особо ΠΊΡ€ΡƒΠΏΠ½Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ²", + "quests.steam_age.mech_crafter.desc": "НС Π²ΠΎΠ»Π½ΡƒΠΉΡ‚Π΅ΡΡŒ, ΠΎΠ½ΠΈ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ ΠΎΠΏΡ†ΠΈΠΎΠ½Π°Π»ΡŒΠ½Ρ‹, Π½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ для Π½Π΅ΡΠΊΠΎΠ»ΡŒΠΊΠΈΡ… ΠΎΠ΄Π½ΠΎΡ€Π°Π·ΠΎΠ²Ρ‹Ρ… ΠΊΡ€Π°Ρ„Ρ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ ΠΎΡ‡Π΅Π½ΡŒ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌΠΈ, ΠΊΡ€ΠΎΠΌΠ΅ Π΄Π²ΡƒΡ…, ΡƒΠΊΠ°Π·Π°Π½Π½Ρ‹Ρ… здСсь.", + "quests.steam_age.crushing_wheel.title": "Π”Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½Ρ‹Π΅ ΠšΠΎΠ»Ρ‘ΡΠ°", + "quests.steam_age.crushing_wheel.subtitle": "ΠŸΠ°Ρ€Π΅Π½ΡŒ ΠΆΠ΅Π½Ρ‹ ΠΊΡƒΠ·Π΅Π½Π° ΠΆΠ΅Ρ€Π½ΠΎΠ²Π°", + "quests.steam_age.crushing_wheel.desc": "Они Π΄Π΅Π»Π°ΡŽΡ‚ Ρ‚ΠΎΡ‡Π½ΠΎ Ρ‚ΠΎ ΠΆΠ΅ самоС, Ρ‡Ρ‚ΠΎ ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ для дроблСния, описанныС Ρ€Π°Π½Π΅Π΅, Π½ΠΎ быстрСС ΠΈ ΠΎΠΏΡ‚ΠΎΠΌ. Они ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ эквивалСнтны &3ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΌΡƒ ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΡŽ&r.", + "quests.steam_age.centrifuge.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠ°Ρ Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°", + "quests.steam_age.centrifuge.subtitle": "ΠœΠΈΡ€ Π² Π΄Π²ΠΈΠΆΠ΅Π½ΠΈΠΈ", + "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 SU, давая Π²Π°ΠΌ Π³ΠΎΡ€Π°Π·Π΄ΠΎ большС мощности для ΠΈΠ³Ρ€Ρ‹.\n\nBlaze Burners ΠΌΠΎΠΆΠ½ΠΎ ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ Π½Π΅ покидая Π΄ΠΎΠΌΠ°, Π° с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΎΠΉ Π ΡƒΠΊΠΈ ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ автоматичСски ΠΏΠΎΠ΄ΠΊΠ°Ρ€ΠΌΠ»ΠΈΠ²Π°Ρ‚ΡŒ Ρ‚Π²Ρ‘Ρ€Π΄Ρ‹ΠΌ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎΠΌ ΠΈΠ»ΠΈ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΡŒ ΠΆΠΈΠ΄ΠΊΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ (Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚). Π’Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΡƒΠ³ΠΎΠ»ΡŒΠ½Ρ‹Π΅ самоцвСты, Π°Π½Ρ‚Ρ€Π°Ρ†ΠΈΡ‚ ΠΈ кокс для свСрхнагрСва.", + "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.deployers.title": "АвтономныС Активаторы", + "quests.steam_age.deployers.subtitle": "ΠŸΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½Π°Ρ сборочная линия", + "quests.steam_age.deployers.desc": "Π₯отя ΠΌΠΎΠΆΠ½ΠΎ ΠΎΠ±ΠΎΠΉΡ‚ΠΈΡΡŒ ΠΎΠ΄Π½ΠΈΠΌ Π°ΠΊΡ‚ΠΈΠ²Π°Ρ‚ΠΎΡ€ΠΎΠΌ Π½Π° ΠΎΡΡ‚Π°Π²ΡˆΡƒΡŽΡΡ Ρ‡Π°ΡΡ‚ΡŒ этой Π³Π»Π°Π²Ρ‹, ΠΌΡ‹ &3Π½Π°ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ&r Π½Π΅ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ это. Установка Π»ΠΈΠ½ΠΈΠΈ Π°ΠΊΡ‚ΠΈΠ²Π°Ρ‚ΠΎΡ€ΠΎΠ² вдоль ΠΊΠΎΠ½Π²Π΅ΠΉΠ΅Ρ€Π° сэкономит массу Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ ΠΈ сохранит вашС рассудок. И Π²Ρ‹ Π½Π΅ потСряСтС ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹, ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для Π°ΠΏΠ³Ρ€Π΅ΠΉΠ΄Π° вашСй Π΄Π΅Ρ€Π΅Π²ΠΎΡ„Π΅Ρ€ΠΌΡ‹.\n\nΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, ΠΎΠ½ΠΈ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠ΄Π΅ΡˆΠ΅Π²ΡΡ‚ производство элСктронных Ρ‚Ρ€ΡƒΠ±ΠΎΠΊ!", + "quests.steam_age.trains.title": "ПоСзда", + "quests.steam_age.trains.subtitle": "Waypoints ΠΌΠ΅Ρ‡Ρ‚Π°Π΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Ρ‚Π°ΠΊΠΈΠΌΠΈ ΠΆΠ΅ ΠΊΡ€ΡƒΡ‚Ρ‹ΠΌΠΈ", + "quests.steam_age.trains.desc": "ПоСзда β€” ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎΠ΅ Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅ для Π»ΡŽΠ±Ρ‹Ρ… Π΄Π°Π»ΡŒΠ½ΠΈΡ… ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·ΠΎΠΊ, Π±ΡƒΠ΄ΡŒ Ρ‚ΠΎ ΠΈΠ³Ρ€ΠΎΠΊΠΈ, ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈΠ»ΠΈ Тидкости! Они Ρ‚Π°ΠΊΠΆΠ΅ бСзопасно ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΡƒΡŽΡ‚ Ρ‡Π΅Ρ€Π΅Π· Π½Π΅Π°ΠΊΡ‚ΠΈΠ²Π½Ρ‹Π΅ Ρ‡Π°Π½ΠΊΠΈ. Π˜Π³Ρ€ΠΎΠΊΠΎΠ² Π΄ΠΎΠ»Π³ΠΎΠ΅ врСмя нСльзя Π±ΡƒΠ΄Π΅Ρ‚ Ρ‚Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Ссли Π²Ρ‹ Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΆΠ΅Π»Π΅Π·Π½ΡƒΡŽ Π΄ΠΎΡ€ΠΎΠ³Ρƒ Ρ‡Π΅Ρ€Π΅Π· вСсь ΠΊΠΎΠ½Ρ‚ΠΈΠ½Π΅Π½Ρ‚, ΠΎΠ½Π° Π½Π΅ устарССт.", + "quests.steam_age.wood_plank.title": "ДСрСвянныС Доски", + "quests.steam_age.wood_plank.subtitle": "НСобработанная Ρ„Π°Π½Π΅Ρ€Π°...?", + "quests.steam_age.wood_plank.desc": "Π­Ρ‚ΠΎ Ρ‚Π΅ ΠΆΠ΅ доски, Ρ‡Ρ‚ΠΎ ΠΈ &3Treated Planks&r рядом с этим квСстом, Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π»ΡŽΠ±ΡƒΡŽ дрСвСсину Π±Π΅Π· ΠΏΡ€Π΅Π΄Π²Π°Ρ€ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ замачивания Π² ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚Π΅.", + "quests.steam_age.organization.title": "ΠŸΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅ΠΌ порядок", + "quests.steam_age.organization.subtitle": "Π’Ρ‹ ΡƒΠΆΠ΅ Π² ΠΏΠ΅Ρ€Π²ΠΎΠΌ ΠΊΡ€ΡƒΠ³Π΅ ΠΌΠΈΠΊΡ€ΠΎΠΊΡ€Π°Ρ„Ρ‚ΠΈΠ½Π³ΠΎΠ²ΠΎΠ³ΠΎ Π°Π΄Π°", + "quests.steam_age.organization.desc": "Π‘Π»ΠΎΠΆΠ½ΠΎ ΡƒΡΠ»Π΅Π΄ΠΈΡ‚ΡŒ Π·Π° всСми Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°ΠΌΠΈ ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°ΠΌΠΈ? Π’ΠΎΡ‚ нСсколько Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΠΌΠΎΡ‡ΡŒ:\n\n&3ΠŸΠ»Π°Π½ΡˆΠ΅Ρ‚&r: Π£Π΄ΠΎΠ±Π½Ρ‹ΠΉ ΠΏΠΎΡ€Ρ‚Π°Ρ‚ΠΈΠ²Π½Ρ‹ΠΉ список Π΄Π΅Π», ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰ΠΈΠΉ ΠΎΡ‚ΠΌΠ΅Ρ‡Π°Ρ‚ΡŒ Π²Ρ‹ΠΏΠΎΠ»Π½Π΅Π½Π½Ρ‹Π΅ ΠΏΡƒΠ½ΠΊΡ‚Ρ‹.\n\n&3Π§Π΅Ρ€Ρ‚Ρ‘ΠΆ&r: Π₯Ρ€Π°Π½ΠΈΡ‚ часто ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, позволяя ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ ΠΏΠ°Ρ€Ρ‚ΠΈΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π±Π΅Π· поиска Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° Π² JEI.\n\n&3Π—Π°ΠΊΠ»Π°Π΄ΠΊΠΈ JEI&r: НаТмитС ΠΊΠ»Π°Π²ΠΈΡˆΡƒ \"Π”ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ/Π£Π΄Π°Π»ΠΈΡ‚ΡŒ Π·Π°ΠΊΠ»Π°Π΄ΠΊΡƒ\" (ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ \"A\") ΠΏΡ€ΠΈ Π½Π°Π²Π΅Π΄Π΅Π½ΠΈΠΈ Π½Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ Π² JEI, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π΅Π³ΠΎ Π² Π·Π°ΠΊΠ»Π°Π΄ΠΊΠΈ. Π’Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π² Π·Π°ΠΊΠ»Π°Π΄ΠΊΠΈ вСсь Ρ€Π΅Ρ†Π΅ΠΏΡ‚, Π½Π°ΠΆΠ°Π² эту ΠΊΠ»Π°Π²ΠΈΡˆΡƒ Π½Π° Π²Ρ‹Ρ…ΠΎΠ΄Π½ΠΎΠΌ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π΅!", + "quests.steam_age.resin_boards.title": "Доски с смоляным ΠΏΠΎΠΊΡ€Ρ‹Ρ‚ΠΈΠ΅ΠΌ", + "quests.steam_age.resin_boards.subtitle": "МоТно ΡΠΊΠ°Π·Π°Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎ ΠΌΡ‹... устали ΠΎΡ‚ LaTeX?", + "quests.steam_age.resin_boards.desc": "Π—Π½Π°Π΅Ρ‚Π΅ Π»ΠΈ Π²Ρ‹, Ρ‡Ρ‚ΠΎ Π²ΠΎΠ΄ΠΎΠ·Π°Π±ΠΎΡ€Π½Ρ‹Π΅ насадки Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π² ΠΌΠΎΠ³ΡƒΡ‚ ΠΊΠ°ΠΏΠ°Ρ‚ΡŒ прямо Π² Ρ‚Ρ€ΡƒΠ±Ρ‹ ΠΈ Π±Π°Ρ€Π°Π±Π°Π½Ρ‹ GregTech? Π’Π΅ΠΏΠ΅Ρ€ΡŒ Π·Π½Π°Π΅Ρ‚Π΅!", + "quests.steam_age.circuit_boards.title": "Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½ΠΈΠΊΠ° #2: ΠŸΡ€ΠΎΡ€Π΅Π·ΠΈΠ½Π΅Π½Π½Π°Ρ ЭлСктросхСма", + "quests.steam_age.circuit_boards.subtitle": "Π‘ΠΎΠ»Π΅Π΅ простой ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ для схСм", + "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Π’Π°ΠΊΠΆΠ΅ эта машина ΠΏΠΎΠΌΠΎΠ³Π°Π΅Ρ‚ Ρ€Π°Π·ΠΆΠΈΠΆΠ°Ρ‚ΡŒ ΠΊΠ»Π΅ΠΉ ΠΈ Ρ€Π΅Π·ΠΈΠ½Ρƒ, Ссли Π΅Ρ‘ Π½Π°Π³Ρ€Π΅Π²Π°Ρ‚ΡŒ Π² Charcoal Forge ΠΈΠ»ΠΈ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π“ΠΎΡ€Π΅Π»ΠΊΠΈ Всполоха.", + "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-схСм, Π»ΠΈΠ±ΠΎ провСсти Π΅Ρ‰Ρ‘ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ Π² Steam Age, создавая Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΈΠ· Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρ‡Ρ‚ΠΎ скрафчСнных Π²Π°ΠΊΡƒΡƒΠΌΠ½Ρ‹Ρ… Π»Π°ΠΌΠΏ.", + "quests.steam_age.resistors.title": "Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½ΠΈΠΊΠ° #1: РСзисторы", + "quests.steam_age.resistors.subtitle": "Π‘ΠΎΠ»Π΅Π΅... ΡΠΎΠΏΡ€ΠΎΡ‚ΠΈΠ²Π»ΡΡŽΡ‰ΠΈΠΉΡΡ... ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ для схСм", + "quests.steam_age.resistors.desc": "РСзисторы β€” это ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ для создания вашСй ΠΏΠ΅Ρ€Π²ΠΎΠΉ Π‘Ρ…Π΅ΠΌΡ‹.\n\nНС Π±ΡƒΠ΄Π΅Ρ‚ лишним сначала ΠΎΡΠ²ΠΎΠΈΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ с использованиСм &aΠŸΡ€ΠΎΠ²ΠΎΠ»ΠΎΠΊ&r, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½ΠΈ экономят ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ Π² долгосрочной пСрспСктивС.\n\nΠŸΡ€ΠΎΠ²ΠΎΠ΄Π° сСйчас ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ Π΄ΠΎΡ€ΠΎΠ³ΠΈΠΌΠΈ, Π½ΠΎ ΠΈΡ… ΡΡ‚ΠΎΠΈΠΌΠΎΡΡ‚ΡŒ сильно снизится, Ссли Π²Ρ‹ создадитС &3ΠΠ°ΠΌΠ°Ρ‚Ρ‹Π²Π°Ρ‚Π΅Π»ΡŒ ΠŸΡ€ΡƒΠΆΠΈΠ½&r ΠΈΠ»ΠΈ &3Π’ΠΎΠ»ΠΎΡ‡ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ Π‘Ρ‚Π°Π½ΠΎΠΊ&r Π² &7LV&r.", + "quests.steam_age.coiling_machine.title": "ΠΠ°ΠΌΠ°Ρ‚Ρ‹Π²Π°Ρ‚Π΅Π»ΡŒ ΠŸΡ€ΡƒΠΆΠΈΠ½", + "quests.steam_age.coiling_machine.subtitle": "LV Π’ΠΎΠ»ΠΎΡ‡ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ Π‘Ρ‚Π°Π½ΠΎΠΊ, совмСщённый с ΠΏΠΎΠ»ΠΎΠ²ΠΈΠ½ΠΎΠΉ LV ΠŸΡ€ΠΎΠΊΠ°Ρ‚Π½Ρ‹ΠΌ Π‘Ρ‚Π°Π½ΠΊΠΎΠΌ!", + "quests.steam_age.coiling_machine.desc": "&3ΠΠ°ΠΌΠ°Ρ‚Ρ‹Π²Π°Ρ‚Π΅Π»ΡŒ ΠŸΡ€ΡƒΠΆΠΈΠ½&r ΠΏΠΎΡ…ΠΎΠΆ Π½Π° LV Π’ΠΎΠ»ΠΎΡ‡ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ Π‘Ρ‚Π°Π½ΠΎΠΊ, хотя Ρƒ Π½Π΅Π³ΠΎ Π½Π΅Ρ‚ возмоТности Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ Π²Ρ‹Π΄Π°Π²Π°Ρ‚ΡŒ ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π° Ρ€Π°Π·Π½ΠΎΠ³ΠΎ сСчСния. Π’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, это ΠΎΡ‡Π΅Π½ΡŒ полСзная инвСстиция, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΠΏΡ€ΠΎΠ²ΠΎΠ΄Π° Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ дСшСвлС.\n\nΠ­Ρ‚Π° машина Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π΄Π΅Π»Π°Ρ‚ΡŒ Π±ΠΎΠ»Π΅Π΅ Π΄Π΅ΡˆΡ‘Π²Ρ‹Π΅ ΠΏΡ€ΡƒΠΆΠΈΠ½Ρ‹!", + "quests.steam_age.curving_press.title": "Π“ΠΈΠ±ΠΎΡ‡Π½Ρ‹ΠΉ ΠŸΡ€Π΅ΡΡ", + "quests.steam_age.curving_press.subtitle": "Π’Π°ΠΊ ΠΆΠ΅ Ρ…ΠΎΡ€ΠΎΡˆ, ΠΊΠ°ΠΊ LV ЭкструдСр", + "quests.steam_age.curving_press.desc": "&3Π“ΠΈΠ±ΠΎΡ‡Π½Ρ‹ΠΉ ΠŸΡ€Π΅ΡΡ&r ΠΌΠΎΠΆΠ΅Ρ‚ Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ всС Ρ‚Π΅ ΠΆΠ΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹, Ρ‡Ρ‚ΠΎ ΠΈ LV ЭкструдСр. К соТалСнию, ΠΎΠ±Π΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹ малоэффСктивны Π½Π° этом ΡƒΡ€ΠΎΠ²Π½Π΅, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ экструдСр становится ΠΏΠΎΠ»Π΅Π·Π΅Π½ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π° MV. Π’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, Ссли Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ массово ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ инструмСнтов, эта машина справится с этим.", + "quests.steam_age.vibrating_table.title": "Π’ΠΈΠ±Ρ€Π°Ρ†ΠΈΠΎΠ½Π½Ρ‹ΠΉ Π‘Ρ‚ΠΎΠ»", + "quests.steam_age.vibrating_table.subtitle": "Π˜Π΄Π΅Π½Ρ‚ΠΈΡ‡Π΅Π½ LV ΠŸΡ€ΠΎΡΠ΅ΠΈΠ²Π°Ρ‚Π΅Π»ΡŽ", + "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.steel_saw.title": "Π‘Ρ‚Π°Π»ΡŒΠ½Π°Ρ ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠ°Ρ Пила", + "quests.steam_age.steel_saw.subtitle": "ΠšΠ°ΠΌΠ½Π΅Ρ€Π΅Π· ΠΈ LV РСзочная Машина Π² ΠΎΠ΄Π½ΠΎΠΌ!", + "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 ΠΎΠ΄Π½Π° ΠΈΠ· Π»ΡƒΡ‡ΡˆΠΈΡ…, ΠΏΠΎ простой ΠΏΡ€ΠΈΡ‡ΠΈΠ½Π΅, Ρ‡Ρ‚ΠΎ ΠΎΠ½ ΠΌΠΎΠΆΠ΅Ρ‚ Π΄Π΅Π»Π°Ρ‚ΡŒ пластины 1 ΠΊ 1. Он Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ Π΄Π΅Π»Π°Ρ‚ΡŒ Ρ„ΠΎΠ»ΡŒΠ³Ρƒ дСшСвлС Ρ‡Π΅ΠΌ Ρ€ΡƒΠΊΠ°ΠΌΠΈ, ΠΊΠ°ΠΊ бонус!", + "quests.steam_age.rolling_mill.desc.2": "&l&ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&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": "Π‘Ρ‚Π°Π»ΡŒΠ½ΠΎΠΉ ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ Π‘ΠΌΠ΅ΡΠΈΡ‚Π΅Π»ΡŒ β€” это Π΅Ρ‰Ρ‘ ΠΎΠ΄Π½Π° ΠΈΠ· Π»ΡƒΡ‡ΡˆΠΈΡ… машин ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π­ΠΏΠΎΡ…ΠΈ. Он ΠΌΠΎΠΆΠ΅Ρ‚ ΡΠΌΠ΅ΡˆΠΈΠ²Π°Ρ‚ΡŒ Ρ†Π²Π΅Ρ‚Π½Ρ‹Π΅ ΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ ΠΏΠΎΡ€ΠΎΡˆΠΊΠΈ Π³ΠΎΡ€Π°Π·Π΄ΠΎ эффСктивнСС, Ρ‡Π΅ΠΌ ВигСль! Он Ρ‚Π°ΠΊΠΆΠ΅ способСн Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ мноТСство Π΄Ρ€ΡƒΠ³ΠΈΡ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ², Π²ΠΊΠ»ΡŽΡ‡Π°Ρ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ с газами… особо ΠΎΠ± этом Π½Π΅ Π·Π°Π΄ΡƒΠΌΡ‹Π²Π°ΠΉΡ‚Π΅ΡΡŒ.\n\nДля Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ², Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‰ΠΈΡ… Π½Π°Π³Ρ€Π΅Π²Π°, ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Charcoal Forge ΠΈΠ»ΠΈ Π“ΠΎΡ€Π΅Π»ΠΊΡƒ Всполоха, Π° ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠ°Ρ Π ΡƒΠΊΠ° ΠΌΠΎΠΆΠ΅Ρ‚ автоматичСски ΠΏΠΎΠ΄Π±Ρ€Π°ΡΡ‹Π²Π°Ρ‚ΡŒ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ Π² Π»ΡŽΠ±ΡƒΡŽ ΠΈΠ· Π½ΠΈΡ….", + "quests.steam_age.potin.title": "(ΠŸΠΎΡ‚ΠΈΠ½) Potin Seller...", + "quests.steam_age.potin.subtitle": "...I'm going into battle, and I need only your finest Potin.", + "quests.steam_age.potin.desc.1": "&dΠ’Ρ€ΡƒΠ±Ρ‹ ΠΈΠ· ΠŸΠΎΡ‚ΠΈΠ½Π°&r ΠΎΠ±Π»Π°Π΄Π°ΡŽΡ‚ &oΠΎΡ‡Π΅Π½ΡŒ высокой пропускной ΡΠΏΠΎΡΠΎΠ±Π½ΠΎΡΡ‚ΡŒΡŽ&r для своСго уровня ΠΈ стоимости. Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, стоит Ρ€Π°ΡΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ ΠΈΡ… использованиС для логистики ТидкостСй.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &dΠŸΠΎΡ‚ΠΈΠ½&r, Π½Π°Ρ‡Π½ΠΈΡ‚Π΅ с создания Π΅Π³ΠΎ &eΠΏΠΎΡ€ΠΎΡˆΠΊΠ°&r.\n\nДля выполнСния квСста ΠΏΠΎΠ΄ΠΎΠΉΠ΄Π΅Ρ‚ Ρ‚Ρ€ΡƒΠ±Π° любого Ρ€Π°Π·ΠΌΠ΅Ρ€Π° β€” малСнькая ΠΈΠ»ΠΈ обычная.", + "quests.steam_age.potin.desc.2": "&l&3Π›ΠΎΡ€:&r&o &dΠ’Ρ€ΡƒΠ±Ρ‹ ΠΈΠ· ΠŸΠΎΡ‚ΠΈΠ½Π°&r ΠΈΠ·Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎ Π±Ρ‹Π»ΠΈ созданы Π² &9GT++&r ΠΈ Π΄Π°Π²Π°Π»ΠΈ ΡΠΈΠ»ΡŒΠ½Ρ‹ΠΉ прирост мощности ΠΈΠ³Ρ€ΠΎΠΊΠ°ΠΌ Π² нСбольшом ΠΏΠ°ΠΊΠ΅ &4GT:NH&r. ΠœΡ‹ Ρ€Π΅ΡˆΠΈΠ»ΠΈ ΠΏΠΎΠ΄Π΅Π»ΠΈΡ‚ΡŒΡΡ этой Ρ€Π°Π΄ΠΎΡΡ‚ΡŒΡŽ.\n\nΠ’ Ρ€Π΅Π°Π»ΡŒΠ½ΠΎΠΌ ΠΌΠΈΡ€Π΅ &dΠŸΠΎΡ‚ΠΈΠ½&r β€” это сплав, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΡ‹ΠΉ Π² ΠΌΠΎΠ½Π΅Ρ‚Π°Ρ…, Π° Π½Π΅ Π² Ρ‚Ρ€ΡƒΠ±Π°Ρ…. GTCEu становится всС Π±ΠΎΠ»Π΅Π΅ нСрСалистичным с ΠΊΠ°ΠΆΠ΄Ρ‹ΠΌ Π΄Π½Π΅ΠΌ...", + "quests.steam_age.miner.title": "АвтоматичСская Π΄ΠΎΠ±Ρ‹Ρ‡Π°", + "quests.steam_age.miner.subtitle": "ΠšΠΎΠ½Π΅Ρ† эпохи ΠΎΠ±Π²Π°Π»ΠΎΠ²", + "quests.steam_age.miner.desc.1": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ Ρƒ вас Π΅ΡΡ‚ΡŒ Π΄Π²Π° Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π° для автоматичСской Π΄ΠΎΠ±Ρ‹Ρ‡ΠΈ Ρ€ΡƒΠ΄! Оба Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚ довольно ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎ, поэтому Π»ΡƒΡ‡ΡˆΠ΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ ΠΈΡ…, Π·Π°Π³Ρ€ΡƒΠ·ΠΈΡ‚ΡŒ Ρ‡Π°Π½ΠΊΠΈ ΠΈ Π·Π°Π½ΡΡ‚ΡŒΡΡ Ρ‡Π΅ΠΌ-Ρ‚ΠΎ Π΄Ρ€ΡƒΠ³ΠΈΠΌ вмСсто Ρ‚ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΈΠ΄Π΅Ρ‚ΡŒ ΠΈ ΠΆΠ΄Π°Ρ‚ΡŒ.\n\nΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠ°Ρ Π‘ΡƒΡ€ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠ°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΊΠΎΠΏΠ°Ρ‚ΡŒ Π²Π½ΠΈΠ·, Ρ€Π°Π·Ρ€ΡƒΡˆΠ°Ρ вСсь камСнь Π½Π° ΠΏΡƒΡ‚ΠΈ. Π•Π³ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€ΠΈΡΠΎΠ΅Π΄ΠΈΠ½ΠΈΡ‚ΡŒ ΠΊ ΠΏΠ΅Ρ€Π΅Π΄Π½Π΅ΠΉ части ΠΏΠΎΠ΅Π·Π΄Π° ΠΈΠ»ΠΈ Π²Π°Π³ΠΎΠ½Π΅Ρ‚ΠΊΠΈ для Ρ€Ρ‹Ρ‚ΡŒΡ Ρ‚ΡƒΠ½Π½Π΅Π»Π΅ΠΉ.", + "quests.steam_age.miner.desc.2": "ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π¨Π°Ρ…Ρ‚Π΅Ρ€, с Π΄Ρ€ΡƒΠ³ΠΎΠΉ стороны, Ρ€Π°Π·Ρ€ΡƒΡˆΠ°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π±Π»ΠΎΠΊΠΈ Ρ€ΡƒΠ΄Ρ‹ ΠΈ замСняСт ΠΈΡ… Π½Π° Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ, оставляя ΠΎΡΡ‚Π°Π»ΡŒΠ½ΡƒΡŽ зСмлю Π½Π΅Ρ‚Ρ€ΠΎΠ½ΡƒΡ‚ΠΎΠΉ. Он Π΄ΠΎΠ±Ρ‹Π²Π°Π΅Ρ‚ Ρ€ΡƒΠ΄Ρƒ Π² нСбольшом радиусС, Ρ‡Ρ‚ΠΎ ΡƒΠΌΠ΅Π½ΡŒΡˆΠ°Π΅Ρ‚ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎΡΡ‚ΡŒ частого пСрСмСщСния, Π½ΠΎ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ ΠΌΠ΅Π΄Π»Π΅Π½Π½Π΅Π΅ мСханичСского.", + "quests.steam_age.paper.title": "Π‘ΡƒΠΌΠ°Π³Π°", + "quests.steam_age.paper.subtitle": "НС ΠΈΠ· тростника", + "quests.steam_age.paper.desc": "Если Π²Ρ‹ Π΅Ρ‰Ρ‘ Π½Π΅ сдСлали Π±ΡƒΠΌΠ°Π³Ρƒ, Π΅ΡΡ‚ΡŒ Ρ‚Ρ€ΠΈ способа ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π΅Ρ‘ Π±Π΅Π· элСктричСства.\n\n1) Π‘ΠΎΠ·Π΄Π°ΠΉΡ‚Π΅ ΠΏΠ΅Ρ€Π³Π°ΠΌΠ΅Π½Ρ‚ ΠΈΠ· ΡˆΠΊΡƒΡ€Ρ‹, ΠΏΠ΅ΠΌΠ·Ρ‹ ΠΈ яйца.\n\n2) Π‘ΠΏΠ»Π΅Ρ‚ΠΈΡ‚Π΅ папирус.\n\n3) Π˜Π·Π³ΠΎΡ‚ΠΎΠ²ΡŒΡ‚Π΅ Π±ΡƒΠΌΠ°Π³Ρƒ ΠΈΠ· дрСвСсины с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π΄Π»ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ процСсса.\n\nПозТС Π΄Ρ€Π΅Π²Π΅ΡΠ½ΡƒΡŽ массу ΠΌΠΎΠΆΠ½ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π² Π±ΡƒΠΌΠ°Π³Ρƒ с мСньшим количСством шагов.", + "quests.steam_age.lv_circuit.title": "Π’Π°ΡˆΠ° пСрвая ΠœΠΈΠΊΡ€ΠΎΡΡ…Π΅ΠΌΠ°!", + "quests.steam_age.lv_circuit.subtitle": "РассвСт Π½ΠΎΠ²ΠΎΠΉ эры", + "quests.steam_age.lv_circuit.desc": "Π‘Π½Π°Ρ‡Π°Π»Π° Ρ€Π΅Ρ†Π΅ΠΏΡ‚ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ слоТным, Π½ΠΎ Ссли Π²Ρ‹ достаточно Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ ΠΏΡ€ΠΎΠ²Π΅Π»ΠΈ Π² ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π­ΠΏΠΎΡ…Π΅, всё Π΄ΠΎΠ»ΠΆΠ½ΠΎ Π±Ρ‹Ρ‚ΡŒ Π»Π΅Π³ΠΊΠΎ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΡƒΠ΅ΠΌΠΎ. Π’Ρ‹ Π±ΡƒΠ΄Π΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ Ρ‚Π°ΠΊΠΈΡ… ΠœΠΈΠΊΡ€ΠΎΡΡ…Π΅ΠΌ, Π½ΠΎ ваши ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠ΅ элСктричСскиС ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΏΠΎΠΌΠΎΠ³ΡƒΡ‚ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΠΈΡ… Π΅Ρ‰Ρ‘ дСшСвлС, ΠΏΠΎΠΊΠ° Π²Ρ‹ Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ ΠœΠΈΠΊΡ€ΠΎΡΡ…Π΅ΠΌ Π² ΠΊΠΎΠ½Ρ†Π΅ LV.", + "quests.steam_age.what_next.title": "Π§Ρ‚ΠΎ дальшС?", + "quests.steam_age.what_next.subtitle": "Π—Π½Π°Π΅Ρ‚Π΅, ΠΊΡ€ΠΎΠΌΠ΅ Β«Π΅Ρ‰Ρ‘ большС GregTechΒ»", + "quests.steam_age.what_next.desc": "Если Π²Ρ‹ сразу сюда Ρ€Π²Π°Π½ΡƒΠ»ΠΈ, ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ сначала Ρ‚Π°ΠΊΠΈΠ΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹, ΠΊΠ°ΠΊ LV Π“ΠΈΠ±ΠΎΡ‡Π½Ρ‹ΠΉ Π‘Ρ‚Π°Π½ΠΎΠΊ, Π’ΠΎΠ»ΠΎΡ‡ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ Π‘Ρ‚Π°Π½ΠΎΠΊ ΠΈΠ»ΠΈ Π‘ΠΌΠ΅ΡΠΈΡ‚Π΅Π»ΡŒ.\nΠ’ ΠΏΡ€ΠΎΡ‚ΠΈΠ²Π½ΠΎΠΌ случаС, Ссли Π²Ρ‹ ΡƒΠΆΠ΅ сдСлали кинСтичСскиС ΠΌΠ°ΡˆΠΈΠ½Ρ‹ Π½ΠΈΠΆΠ΅, ΠΌΡ‹ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ Π‘Π±ΠΎΡ€Ρ‰ΠΈΠΊ, Дуговая ΠŸΠ΅Ρ‡ΡŒ, Π₯имичСский Π Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΈΠ»ΠΈ ΠŸΠΎΠ»ΡΡ€ΠΈΠ·Π°Ρ‚ΠΎΡ€.", + "quests.steam_age.alternator.title": "ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€Ρ‹", + "quests.steam_age.alternator.subtitle": "ΠŸΡ€Π΅Π²Ρ€Π°Ρ‰Π°Π΅ΠΌ стрСсс Π² ΡΠ½Π΅Ρ€Π³ΠΈΡŽ", + "quests.steam_age.alternator.desc.1": "Если Ρƒ вас большая систСма ΠΈΠ· ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π­ΠΏΠΎΡ…ΠΈ, Π²Ρ‹, вСроятно, Π½Π΅ Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ сразу Π΅Ρ‘ Ρ€Π°Π·Ρ€ΡƒΡˆΠ°Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Π΅Ρ€Π½ΡƒΡ‚ΡŒΡΡ ΠΊ ΠΊΠΎΡ‚Π»Π°ΠΌ ΠΈ LV ΠŸΠ°Ρ€ΠΎΠ²Ρ‹ΠΌ Π’ΡƒΡ€Π±ΠΈΠ½Π°ΠΌ. ВмСсто этого &3Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€&r ΠΊΠΎΠ½Π²Π΅Ρ€Ρ‚ΠΈΡ€ΡƒΠ΅Ρ‚ SU ΠΎΡ‚ Π²Π°ΡˆΠΈΡ… ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Ρ… Π΄Π²ΠΈΠ³Π°Ρ‚Π΅Π»Π΅ΠΉ Π² элСктричСство. ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π”Π²ΠΈΠ³Π°Ρ‚Π΅Π»ΡŒ + Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ Π΄Π°Ρ‘Ρ‚ 1A LV! К соТалСнию, Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€Ρ‹ ΠΏΡ€Π΅ΠΎΠ±Ρ€Π°Π·ΡƒΡŽΡ‚ стрСсс Π² Π΄Ρ€ΡƒΠ³ΡƒΡŽ систСму элСктричСства, Π½Π΅ΠΆΠ΅Π»ΠΈ GregTech, поэтому потрСбуСтся Energy Converter для получСния ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅ΠΌΠΎΠΉ LV энСргии.", + "quests.steam_age.alternator.desc.2": "ΠŸΡ€ΠΈΠΌΠ΅Ρ€ ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠ³ΠΎ двигатСля, производящСго 8 Π°ΠΌΠΏΠ΅Ρ€ LV!\n", + "quests.steam_age.packager.title": "Логистика Create", + "quests.steam_age.packager.subtitle": "Β«AE2 Ρƒ нас Π΄ΠΎΠΌΠ°Β»", + "quests.steam_age.packager.desc": "Π’Π°Ρˆ сундук-монстр Π½Π°Ρ‡ΠΈΠ½Π°Π΅Ρ‚ Π²Ρ‹Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ ΠΈΠ·-ΠΏΠΎΠ΄ контроля? Π’Π΅ΠΏΠ΅Ρ€ΡŒ Ρƒ вас Π΅ΡΡ‚ΡŒ доступ ΠΊ логистичСской систСмС Create! ΠžΠ·Π½Π°ΠΊΠΎΠΌΡŒΡ‚Π΅ΡΡŒ с Π³Π»Π°Π²ΠΎΠΉ &3Логистика Create&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ.", + "quests.steam_age.basic_mech_press.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠŸΡ€Π΅ΡΡ", + "quests.steam_age.basic_mech_press.subtitle": "АвтоматичСская Бварочная Машина", + "quests.steam_age.basic_mech_press.desc": "Если Π²Π°ΠΌ Π½Π°Π΄ΠΎΠ΅Π»ΠΎ постоянно ΡΠ²Π°Ρ€ΠΈΠ²Π°Ρ‚ΡŒ Π²Π΅Ρ‰ΠΈ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ, эта машина сдСлаСт это Π·Π° вас. ΠŸΡ€ΠΎΡΡ‚ΠΎ размСститС Π§Π°ΡˆΡƒ Π½Π°Π΄ вашСй ΡƒΠ³ΠΎΠ»ΡŒΠ½ΠΎΠΉ ΠΊΡƒΠ·Π½ΠΈΡ†Π΅ΠΉ, ΡƒΠ±Π΅Π΄ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° ΠΊΡƒΠ·Π½ΠΈΡ†Ρ‹ Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ Π–Ρ‘Π»Ρ‚ΠΎΠ³ΠΎ ΠΈΠ»ΠΈ Π²Ρ‹ΡˆΠ΅, Π° Π·Π°Ρ‚Π΅ΠΌ Π±Ρ€ΠΎΡΡŒΡ‚Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π² Π§Π°ΡˆΡƒ. К соТалСнию, Π½Π° этом возмоТности Π±Π°Π·ΠΎΠ²ΠΎΠΉ ΠΌΠΎΠ΄Π΅Π»ΠΈ Π·Π°ΠΊΠ°Π½Ρ‡ΠΈΠ²Π°ΡŽΡ‚ΡΡ.", + "quests.steam_age.steel_mech_press.title": "Π‘Ρ‚Π°Π»ΡŒΠ½ΠΎΠΉ ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠŸΡ€Π΅ΡΡ", + "quests.steam_age.steel_mech_press.subtitle": "ΠŸΠΎΡ‡Ρ‚ΠΈ ΠΊΠ°ΠΊ ΠšΡƒΠ·Π½Π΅Ρ‡Π½Ρ‹ΠΉ ΠœΠΎΠ»ΠΎΡ‚", + "quests.steam_age.steel_mech_press.desc.1": "ΠšΡƒΠ·Π½Π΅Ρ‡Π½Ρ‹ΠΉ ΠœΠΎΠ»ΠΎΡ‚ Высокого ДавлСния совсСм рядом ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚ Π΄Π΅Π»Π°Ρ‚ΡŒ ΠΏΠΎΡ‡Ρ‚ΠΈ всё, Ρ‡Ρ‚ΠΎ ΡƒΠΌΠ΅Π΅Ρ‚ эта машина, Π½ΠΎ Ссли Π²Π°ΠΌ срочно Π½ΡƒΠΆΠ½Ρ‹ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Π±ΠΎΠ»Π΅Π΅ высокого уровня для автоматичСской сварки, это ваш шанс.\n\nЕсли Π²Ρ‹ Π½Π΅ Π·Π½Π°ΠΊΠΎΠΌΡ‹ с ΠšΡƒΠ·Π½Π΅Ρ‡Π½Ρ‹ΠΌ ΠœΠΎΠ»ΠΎΡ‚ΠΎΠΌ, ΠΎΠ½ ΠΈ Π‘Ρ‚Π°Π»ΡŒΠ½ΠΎΠΉ ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠŸΡ€Π΅ΡΡ ΠΌΠΎΠ³ΡƒΡ‚ Π΄Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ Ρ€ΡƒΠ΄Ρ‹ (Π±Π΅Π· ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ²), ΠΏΡ€Π΅Π²Ρ€Π°Ρ‰Π°Ρ‚ΡŒ камСнь Π² Π±ΡƒΠ»Ρ‹ΠΆΠ½ΠΈΠΊ, Π·Π°Ρ‚Π΅ΠΌ Π² Π³Ρ€Π°Π²ΠΈΠΉ ΠΈ пСсок, Π° Ρ‚Π°ΠΊΠΆΠ΅ Π»ΠΎΠΌΠ°Ρ‚ΡŒ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ. Однако Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠšΡƒΠ·Π½Π΅Ρ‡Π½Ρ‹ΠΉ ΠœΠΎΠ»ΠΎΡ‚ ΠΏΡ€Π΅Π΄Π»Π°Π³Π°Π΅Ρ‚ &3Π΄Π΅ΡˆΠ΅Π²Ρ‹ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ мСталличСских пластин&r...", + "quests.steam_age.steel_mech_press.desc.2": "&l&3Π˜ΡΡ‚ΠΎΡ€ΠΈΡ:&r&o ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠŸΡ€Π΅ΡΡ Create Ρ€Π°Π½ΡŒΡˆΠ΅ Π±Ρ‹Π» ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹ΠΌ элСмСнтом прогрСссии ΠΏΠΎΠ·Π΄Π½Π΅ΠΉ ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ Π­ΠΏΠΎΡ…ΠΈ Π΄ΠΎ вСрсии 0.9 TerraFirmaGreg, ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΠ» пластины ΠΏΠΎ Π΅Ρ‰Ρ‘ Π»ΡƒΡ‡ΡˆΠ΅ΠΌΡƒ ΡΠΎΠΎΡ‚Π½ΠΎΡˆΠ΅Π½ΠΈΡŽ 5 ΠΊ 4. Однако Π΅Π³ΠΎ рСализация Π±Ρ‹Π»Π° фактичСски Β«20 ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚ΠΎΠ² Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ Π²Ρ‹ Π½ΠΈΡ‡Π΅Π³ΠΎ Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅Ρ‚Π΅Β», Ρ‡Ρ‚ΠΎ заставляло ΠΌΠ½ΠΎΠ³ΠΈΡ… ΡƒΡ‚Π²Π΅Ρ€ΠΆΠ΄Π°Ρ‚ΡŒ, ΠΊΠ°ΠΊ ΠΈΠΌ нравится Π°Π·Π°Ρ€Ρ‚ ΠΏΡ€ΠΈ Π΅Π³ΠΎ использовании.", + "quests.steam_age.supers.title": "Π‘ΡƒΠΏΠ΅Ρ€ сундуки ΠΈ Π‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ‹", + "quests.steam_age.supers.subtitle": "Π‘ΡƒΠΏΠ΅Ρ€ ящики", + "quests.steam_age.supers.desc": "Π­Ρ‚ΠΎ &cΡƒΠ»&6ΡŒΡ‚&eΠΈΠΌ&aΠ°&bΡ‚&9ΠΈ&5Π²Π½&4Ρ‹Π΅&r пСрСносныС Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΈΠ»ΠΈ ТидкостСй станут Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΌ Ρ€Π΅ΡˆΠ΅Π½ΠΈΠ΅ΠΌ, Ссли Ρƒ тСбя Π΅ΡΡ‚ΡŒ мноТСство Тидкости ΠΈΠ»ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² ΠΎΠ΄Π½ΠΎΠ³ΠΎ Ρ‚ΠΈΠΏΠ°. Π₯отя эти &dΠ±Π°Π·ΠΎΠ²Ρ‹Π΅&r (&8ULV&r) Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹ ΠΈΠ·Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎ довольно малСнькиС, Π±ΠΎΠ»Π΅Π΅ высокиС ΡƒΡ€ΠΎΠ²Π½ΠΈ Π‘ΡƒΠΏΠ΅Ρ€ сундуков ΠΈ Π‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€ΠΎΠ² ΠΌΠΎΠ³ΡƒΡ‚ Π²ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ просто Π±Π΅Π·ΡƒΠΌΠ½ΠΎΠ΅ количСство всСго β€” ΠΈ всё это Π² ΠΎΠ΄Π½ΠΎΠΌ СдинствСнном Π±Π»ΠΎΠΊΠ΅, Π±Π΅Π· ΠΊΠ°ΠΊΠΎΠ³ΠΎ-Π»ΠΈΠ±ΠΎ ΡƒΡ‡Ρ‘Ρ‚Π° Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹ ΠΈΠ»ΠΈ кислотности!/n/n Как ΠΈ Π±ΠΎΡ‡ΠΊΠΈ, Π‘ΡƒΠΏΠ΅Ρ€ сундуки ΠΈ Π‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ‹ &6ΡΠΎΡ…Ρ€Π°Π½ΡΡŽΡ‚ своё содСрТимоС ΠΏΡ€ΠΈ Ρ€Π°Π·Ρ€ΡƒΡˆΠ΅Π½ΠΈΠΈ&r, ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΎΡ‡ΠΈΡ‰Π΅Π½Ρ‹ Π² ΠΊΡ€Π°Ρ„Ρ‚ΠΎΠ²ΠΎΠΌ мСню ΠΈ ΡƒΠΌΠ΅ΡŽΡ‚ автоматичСски ΡƒΠ΄Π°Π»ΡΡ‚ΡŒ излишки. Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ Π±ΠΎΡ‡Π΅ΠΊ, ΠΎΠ΄Π½Π°ΠΊΠΎ, Π‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ &aбСзопасно ΡΠΎΡ…Ρ€Π°Π½ΡΡŽΡ‚&r своё содСрТимоС, Π½Π΅ давая Ρ‚Π΅Π±Π΅ ΠΎΠ±ΠΆΠ΅Ρ‡ΡŒΡΡ, Π·Π°ΠΌΡ‘Ρ€Π·Π½ΡƒΡ‚ΡŒ ΠΈΠ»ΠΈ Π½Π°Ρ‡Π°Ρ‚ΡŒ Π²Π·Π»Π΅Ρ‚Π°Ρ‚ΡŒ./n/nЕсли Ρ‚Π΅Π±Π΅ хочСтся &9Π΅Ρ‰Ρ‘ большС&r мСста для хранСния, ΠΎΠ±Ρ€Π°Ρ‚ΠΈ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ Π½Π° ΠšΠ²Π°Π½Ρ‚ΠΎΠ²Ρ‹Π΅ супСр сундуки ΠΈ Π‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ‹ Π±ΠΎΠ»Π΅Π΅ высоких Ρ‚ΠΈΡ€ΠΎΠ² ΠΈΠ»ΠΈ ячСйки хранСния AE2.", + "quests.steam_age.supers.task": "Π›ΡŽΠ±ΠΎΠΉ супСр сундук ΠΈΠ»ΠΈ супСр Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€", + "quests.stone_age": "ΠšΠ°ΠΌΠ΅Π½Π½Ρ‹ΠΉ Π²Π΅ΠΊ", + "quests.stone_age.subtitle": "Π‘ΠΊΡ€ΠΎΠΌΠ½Ρ‹Π΅ истоки", + "quests.stone_age.foods.title": "Π“ΠΎΠ»ΠΎΠ΄Π½Ρ‹ΠΉ?", + "quests.stone_age.foods.subtitle": "Π“Π΄Π΅ моя лёгкая Π΅Π΄Π°?", + "quests.stone_age.foods.desc": "Π’ TerraFirmaGreg ΠΌΠΈΡ€ β€” ТСсткоС мСсто, ΠΈ ΠΎΠ΄ΠΈΠ½ ΠΈΠ· ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹Ρ… аспСктов выТивания β€” ΡΠΏΠΎΡΠΎΠ±Π½ΠΎΡΡ‚ΡŒ Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ Π΅Π΄Ρƒ. Π‘ΠΎΠ»ΡŒΡˆΠ°Ρ Ρ‡Π°ΡΡ‚ΡŒ ΠΏΠΈΡ‰ΠΈ сама ΠΏΠΎ сСбС Π΄Π°Ρ‘Ρ‚ ΠΌΠ°Π»ΠΎ ΠΏΠΈΡ‚Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΠΈ, Π° другая ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΡΠΌΠ΅Ρ€Ρ‚Π΅Π»ΡŒΠ½ΠΎ опасна, Ссли Π½Π΅ ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π°. Π’Π°Ρˆ Π³ΠΎΠ»ΠΎΠ΄ ΠΈΠ·ΠΎΠ±Ρ€Π°ΠΆΡ‘Π½ Π·Π΅Π»Ρ‘Π½ΠΎΠΉ шкалой рядом со Π·Π΄ΠΎΡ€ΠΎΠ²ΡŒΠ΅ΠΌ.\n\nΠŸΡ€ΠΈΡΡ‚ΡƒΠΏΠΈΡ‚Π΅ ΠΊ Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ любой Π΅Π΄Ρ‹.", + "quests.stone_age.nutrition.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΠΊΠ°: Π Π°Ρ†ΠΈΠΎΠ½", + "quests.stone_age.nutrition.subtitle": "Π§Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‡Ρ‚ΠΎ я Π½Π΅ ΠΌΠΎΠ³Ρƒ ΠΏΠΈΡ‚Π°Ρ‚ΡŒΡΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄Π½ΠΈΠΌ стСйком?", + "quests.stone_age.nutrition.desc": "ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ Π² TerraFirmaGreg содСрТит ΠΏΠΈΡ‚Π°Ρ‚Π΅Π»ΡŒΠ½ΡƒΡŽ Ρ†Π΅Π½Π½ΠΎΡΡ‚ΡŒ, которая дСлится Π½Π° 5 ΠΊΠ°Ρ‚Π΅Π³ΠΎΡ€ΠΈΠΉ: &lΠ—Π΅Ρ€Π½ΠΎΠ²Ρ‹Π΅&r, &lΠ€Ρ€ΡƒΠΊΡ‚Ρ‹&r, &lΠžΠ²ΠΎΡ‰ΠΈ&r, &lΠ‘Π΅Π»ΠΊΠΈ&r ΠΈ &lΠœΠΎΠ»ΠΎΡ‡Π½Ρ‹Π΅&r.\n\nΠ₯отя Π²Ρ‹ ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΈΡ‚Π°Ρ‚ΡŒΡΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄Π½ΠΈΠΌ Ρ‚ΠΈΠΏΠΎΠΌ ΠΏΠΈΡ‰ΠΈ, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ Π±Π΅Π»ΠΊΠΎΠ²Ρ‹ΠΌΠΈ, вашС ΠΎΠ±Ρ‰Π΅Π΅ Π·Π΄ΠΎΡ€ΠΎΠ²ΡŒΠ΅ Π±ΡƒΠ΄Π΅Ρ‚ ΡƒΠΌΠ΅Π½ΡŒΡˆΠ°Ρ‚ΡŒΡΡ, Ρ‚ΠΎΠ³Π΄Π° ΠΊΠ°ΠΊ сбалансированная Π΄ΠΈΠ΅Ρ‚Π° позволяСт ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°Ρ‚ΡŒ вашС ΠΎΠ±Ρ‰Π΅Π΅ Π·Π΄ΠΎΡ€ΠΎΠ²ΡŒΠ΅. ΠšΠ°ΠΆΠ΄Ρ‹Π΅ 100 HP ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‚ ΠΎΠ΄Π½ΠΎΠΌΡƒ сСрдцу.\n\nΠŸΠΎΡΠΌΠΎΡ‚Ρ€ΠΈΡ‚Π΅ Π³Π»Π°Π²Ρƒ \"Π•Π΄Π° ΠΈ Π²ΠΎΠ΄Π°\" ПолСвого руководства для всСх Π΄Π΅Ρ‚Π°Π»Π΅ΠΉ.", + "quests.stone_age.cook_meat.title": "ΠžΡΠ½ΠΎΠ²Ρ‹ Π³ΠΎΡ‚ΠΎΠ²ΠΊΠΈ", + "quests.stone_age.cook_meat.subtitle": "Π’Ρ‹ ΠΆΠ΅ Π½Π΅ ΠΆΠ΅Π»Π°Π΅Ρ‚Π΅ ΡƒΠΌΠ΅Ρ€Π΅Ρ‚ΡŒ ΠΎΡ‚ сырого мяса, Π½Π΅ Ρ‚Π°ΠΊ Π»ΠΈ?", + "quests.stone_age.cook_meat.desc": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ сырого мяса β€” это Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Π°ΠΆΠ½Ρ‹ΠΉ шаг для получСния Π±Π΅Π»ΠΊΠ° ΠΈ увСличСния срока хранСния, Π½ΠΎ ΠΈ способ высвобоТдСния Π΅Ρ‰Ρ‘ большСго количСства ΠΏΠΈΡ‚Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… вСщСств для вашСго Ρ‚Ρ€Π΅Π±ΠΎΠ²Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ Ρ‚Π΅Π»Π°.\n\nΠŸΡ€ΠΎΡΡ‚Π΅ΠΉΡˆΠΈΠΉ способ приготовлСния мяса β€” использованиС костра. ΠžΠ·Π½Π°ΠΊΠΎΠΌΡŒΡ‚Π΅ΡΡŒ с квСстом Π½ΠΈΠΆΠ΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ·Π½Π°Ρ‚ΡŒ, ΠΊΠ°ΠΊ Π΅Π³ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ.", + "quests.stone_age.soup_time.title": "Π‘ΡƒΠΏΡ‹", + "quests.stone_age.soup_time.subtitle": "ΠžΡ‚ΠΊΡƒΠ΄Π° Π±Ρ€Π°Ρ‚ΡŒ ΠΊΡ€Π°ΡΠ½ΡƒΡŽ Π²ΠΎΠ΄Ρƒ для Π±ΠΎΡ€Ρ‰Π°?", + "quests.stone_age.soup_time.desc": "Π‘ΠΎΠ·Π΄Π°Π² Π³ΠΎΡ€ΡˆΠΎΠΊ ΠΈ миски ΠΈΠ· Π³Π»ΠΈΠ½Ρ‹, Π²Π°ΠΌ станСт доступна Π²Π°Ρ€ΠΊΠ° супов!\n\nΠ‘ΡƒΠΏΡ‹ β€” ΠΎΠ΄Π½ΠΈ ΠΈΠ· ΠΏΠ΅Ρ€Π²Ρ‹Ρ… ΠΈ самых простых способов Π³ΠΎΡ‚ΠΎΠ²ΠΊΠΈ комплСксных блюд. Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ поСдания сырых ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚ΠΎΠ², ΠΎΠ½ΠΈ Π½Π°ΡΡ‹Ρ‰Π°ΡŽΡ‚ Π³ΠΎΡ€Π°Π·Π΄ΠΎ большС ΠΈ ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ ΡΠΎΠ²ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ нСсколько ΠΏΠΈΡ‚Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… вСщСств Π² ΠΎΠ΄Π½ΠΎΠΌ блюдС!", + "quests.stone_age.meals.title": "Π‘Π»ΡŽΠ΄Π°", + "quests.stone_age.meals.subtitle": "А НУ ΠŸΠžΠ›Π•Π—ΠΠ™ КО ΠœΠΠ• Π’ Π‘Π ΠΠ₯О!", + "quests.stone_age.meals.desc": "Π’ΠΎΡ‚ лишь Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π±Π°Π·ΠΎΠ²Ρ‹Π΅ блюда, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ. Π‘ΡƒΠΏΡ‹, салаты ΠΈ Π±ΡƒΡ‚Π΅Ρ€Π±Ρ€ΠΎΠ΄Ρ‹ β€” это простыС, насыщСнныС ΠΈ комплСксныС блюда Π½Π° всС случаи ΠΆΠΈΠ·Π½ΠΈ, Π° ΠΏΠΈΡ†Ρ†Π° β€” СдинствСнноС блюдо, содСрТащСС ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ‚ΠΈΠΏ ΠΏΠΈΡ‚Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… вСщСств.", + "quests.stone_age.meals.tasks.1": "Π›ΡŽΠ±ΠΎΠΉ Π±ΡƒΡ‚Π΅Ρ€Π±Ρ€ΠΎΠ΄", + "quests.stone_age.meals.tasks.2": "Π›ΡŽΠ±ΠΎΠΉ Π±ΡƒΡ‚Π΅Ρ€Π±Ρ€ΠΎΠ΄ с Π²Π°Ρ€Π΅Π½ΡŒΠ΅ΠΌ", + "quests.stone_age.garlic_bread.title": "ЧСсночный Ρ…Π»Π΅Π±...?", + "quests.stone_age.garlic_bread.subtitle": "Π’Ρ‹ Π²Π°ΠΌΠΏΠΈΡ€ΠΎΠ² отгоняСтС ΠΈΠ»ΠΈ Ρ‡Ρ‚ΠΎ?", + "quests.stone_age.garlic_bread.desc": "Π’Π°ΠΆΠ½ΠΎ: ΠšΠ²Π΅ΡΡ‚ ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Π΅Ρ‚ Π›ΠΠ‘ΠžΠ™ чСсночный Ρ…Π»Π΅Π±, Π΅ΠΌΡƒ Π½Π΅ ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ Π±Ρ‹Ρ‚ΡŒ свСТим.", + "quests.stone_age.garlic_bread.task": "1024 кусочков чСсночного Ρ…Π»Π΅Π±Π°", + "quests.stone_age.find_potable_water.title": "Π₯ΠΎΡ‡Π΅ΡˆΡŒ ΠΏΠΈΡ‚ΡŒ?", + "quests.stone_age.find_potable_water.subtitle": "Помни ΠΏΠΈΡ‚ΡŒ Π²ΠΎΠ΄Ρƒ!", + "quests.stone_age.find_potable_water.desc": "Π’Π°ΡˆΠ° ΠΆΠ°ΠΆΠ΄Π° прСдставлСна Π² Π²ΠΈΠ΄Π΅ синСй ΡˆΠΊΠ°Π»Ρ‹ свСрху Π³ΠΎΠ»ΠΎΠ΄Π°. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡƒΠΌΠ΅Ρ€Π΅Ρ‚ΡŒ ΠΎΡ‚ обСзвоТивания, Ссли Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚Π΅ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ ΡˆΠΊΠ°Π»Ρƒ ΠΆΠ°ΠΆΠ΄Ρ‹ ΠΏΠΎΠ»Π½ΠΎΠΉ! Π‘Π°ΠΌΡ‹ΠΉ простой способ ΠΏΠΎΠΏΠΈΡ‚ΡŒ β€” использованиС ΠΏΡ€ΠΈΡ€ΠΎΠ΄Π½Ρ‹Ρ… Π²ΠΎΠ΄ΠΎΡ‘ΠΌΠΎΠ², Π½Π°ΠΆΠ°Π² ПКМ ΠΏΠΎ Π²ΠΎΠ΄Π΅ с пустой Ρ€ΡƒΠΊΠΎΠΉ.\nΠ§Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ этот квСст, Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ Π²Ρ‹ΠΏΠΈΡ‚ΡŒ ΠΈΠ· любого ΠΏΡ€ΠΈΠ³ΠΎΠ΄Π½ΠΎΠ³ΠΎ источника. Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, придётся ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ нСсколько Π³Π»ΠΎΡ‚ΠΊΠΎΠ² для выполнСния квСста.\n\nΠ’Π°ΠΌ Π½Π΅ Π½ΡƒΠΆΠ½ΠΎ Π±Π΅ΡΠΏΠΎΠΊΠΎΠΈΡ‚ΡŒΡΡ ΠΎΠ± ΠΎΡ‡ΠΈΡ‰Π΅Π½ΠΈΠΈ Π²ΠΎΠ΄Ρ‹, ΠΎΠ΄Π½Π°ΠΊΠΎ ΠΏΠΈΡ‚ΡŒΡ‘ солёной Π²ΠΎΠ΄Ρ‹ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ усилит ΠΆΠ°ΠΆΠ΄Ρƒ.", + "quests.stone_age.find_potable_water.task": "Π’Ρ‹ΠΏΠ΅ΠΉΡ‚Π΅ ΠΈΠ· источника Π²ΠΎΠ΄Ρ‹. (НС ΡΠΎΠ»Ρ‘Π½ΡƒΡŽ ΠΈΠ»ΠΈ Π³ΠΎΡ€ΡΡ‡ΡƒΡŽ Π²ΠΎΠ΄Ρƒ)", + "quests.stone_age.hydration.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΠΊΠ°: Гидратация", + "quests.stone_age.hydration.subtitle": "Π•Ρ‰Π΅ ΠΎΠ΄Π½Π° шкала, Π·Π° ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ Π½ΡƒΠΆΠ½ΠΎ ΡΠ»Π΅Π΄ΠΈΡ‚ΡŒ...", + "quests.stone_age.hydration.desc": "Π’ΠΎΠ΄Π° - Π²Π°ΠΆΠ½Ρ‹ΠΉ рСсурс Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ для утолСния ΠΆΠ°ΠΆΠ΄Ρ‹! РСкомСндуСтся ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Π±Π°Π·Ρƒ рядом с прСсным ΠΎΠ·Π΅Ρ€ΠΎΠΌ ΠΈΠ»ΠΈ Ρ€Π΅ΠΊΠΎΠΉ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΠΌΠ΅Ρ‚ΡŒ ΠΊ Π½Π΅ΠΉ Π»Π΅Π³ΠΊΠΈΠΉ доступ. НСкоторыС Π²ΠΈΠ΄Ρ‹ Π΅Π΄Ρ‹ ΠΈ Π½Π°ΠΏΠΈΡ‚ΠΊΠΎΠ² ΠΌΠΎΠ³ΡƒΡ‚ΡŒ ΡƒΡ‚ΠΎΠ»ΡΡ‚ΡŒ ΠΆΠ°ΠΆΠ΄Ρƒ.\n\nΠ’ΠΎΠ΄Π° Π½Π΅ всСгда Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΠ΄ Ρ€ΡƒΠΊΠΎΠΉ Π²ΠΎ врСмя исслСдования, ΠΎΠ΄Π½Π°ΠΊΠΎ, Π΅ΡΡ‚ΡŒ нСскольно способов Π½ΠΎΡΠΈΡ‚ΡŒ Π²ΠΎΠ΄Ρƒ с собой. УпотрСблСния Π½Π°ΠΏΠΈΡ‚ΠΊΠ° ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ 100mB ΠΈΠ· ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π°.", + "quests.stone_age.leather_flask.title": "Π‘ΡƒΡ€Π΄ΡŽΠΊ", + "quests.stone_age.leather_flask.subtitle": "Π‘Ρ‚Π°Ρ€Ρ‹ΠΉ слуТак", + "quests.stone_age.leather_flask.desc": "Π‘ΡƒΡ€Π΄ΡŽΠΊ, вСроятно, являСтся Π²Ρ‚ΠΎΡ€Ρ‹ΠΌ ΠΏΠΎ удобству пСрСносным Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€ΠΎΠΌ для Π²ΠΎΠ΄Ρ‹ послС ΠΊΡƒΠ²ΡˆΠΈΠ½Π°. Он Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ Π΄ΠΎ 500mb, Ρ‡Ρ‚ΠΎ соотвСтствуСт пяти Π³Π»ΠΎΡ‚ΠΊΠ°ΠΌ.\n\nΠ‘ΡƒΡ€Π΄ΡŽΠΊ ΠΈΠ·Π½Π°ΡˆΠΈΠ²Π°Π΅Ρ‚ΡΡ ΠΏΠΎ ΠΌΠ΅Ρ€Π΅ использования, Π½ΠΎ ΠΊΠΎΠ³Π΄Π° ΠΎΠ½ сломаСтся, Π΅Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΡ‡ΠΈΠ½ΠΈΡ‚ΡŒ, Ссли Ρƒ вас Π΅ΡΡ‚ΡŒ ΠΌΠΎΡ‡Π΅Π²ΠΎΠΉ ΠΏΡƒΠ·Ρ‹Ρ€ΡŒ. ΠœΠΎΡ‡Π΅Π²Ρ‹Π΅ ΠΏΡƒΠ·Ρ‹Ρ€ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ Π΄ΠΎΠ±Ρ‹Ρ‚Ρ‹ ΠΈΠ· ΠΊΡ€ΡƒΠΏΠ½Ρ‹Ρ… Π΄ΠΈΠΊΠΈΡ… ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ….", + "quests.stone_age.iron_flask.title": "ЖСлСзная фляга", + "quests.stone_age.iron_flask.subtitle": "Π­Ρ‚ΠΎΡ‚ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΠ»Π΅Π·Π΅Π½ Π½Π°Π΄ΠΎΠ»Π³ΠΎ", + "quests.stone_age.iron_flask.desc": "Ѐляга β€” ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½Π½Π°Ρ вСрсия Π±ΡƒΡ€Π΄ΡŽΠΊΠ°. Она Π³ΠΎΡ€Π°Π·Π΄ΠΎ ΠΏΡ€ΠΎΡ‡Π½Π΅Π΅ Π±ΡƒΡ€Π΄ΡŽΠΊΠ° ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚ Π²ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Тидкости Π°ΠΆ Π½Π° 20 Π³Π»ΠΎΡ‚ΠΊΠΎΠ².", + "quests.stone_age.water_bucket.title": "Π’Π΅Π΄Ρ€ΠΎ Π²ΠΎΠ΄Ρ‹", + "quests.stone_age.water_bucket.subtitle": "НС Ρ‚Π°ΠΊ Π»Π΅Π³ΠΊΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ, ΠΊΠ°ΠΊ каТСтся", + "quests.stone_age.water_bucket.desc": "ΠΠΎΡΠΈΡ‚ΡŒ с собой источник Π²ΠΎΠ΄Ρ‹ β€” это простой способ Π½Π΅ ΠΎΡΡ‚Π°Ρ‚ΡŒΡΡ Π±Π΅Π· Тидкости, Π½ΠΎ это слСгка Π½Π΅ΡƒΠ΄ΠΎΠ±Π½ΠΎ.\n\nК Π½Π΅ΡΡ‡Π°ΡΡ‚ΡŒΡŽ, дСрСвянныС Π²Ρ‘Π΄Ρ€Π° Π½Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Π½Ρ‹ для ΠΏΠΈΡ‚ΡŒΡ β€” ΠΎΠ½ΠΈ Π½Π΅ пСрСносят Π±Π»ΠΎΠΊΠΈ Π²ΠΎΠ΄Ρ‹, ΠΏΡ€ΠΈ ΠΏΠΎΠΏΡ‹Ρ‚ΠΊΠ΅ Π²Ρ‹Π»ΠΈΡ‚ΡŒ Π²ΠΎΠ΄Ρƒ Π²Ρ‹ лишь ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ ΠΌΠ°Π»Π΅Π½ΡŒΠΊΡƒΡŽ Π»ΡƒΠΆΡƒ.", + "quests.stone_age.glass_bottles.title": "ΠŸΡƒΠ·Ρ‹Ρ€ΡŒΠΊΠΈ", + "quests.stone_age.glass_bottles.subtitle": "НС Ρ‚Π°ΠΊ ΠΊΡ€ΡƒΡ‚Ρ‹, ΠΊΠ°ΠΊ Π±ΡƒΡ€Π΄ΡŽΠΊ", + "quests.stone_age.glass_bottles.desc": "ΠŸΡƒΠ·Ρ‹Ρ€ΡŒΠΊΠΈ Ρ‚Π°ΠΊ ΠΆΠ΅ эффСктивны, ΠΊΠ°ΠΊ ΠΈ Π±ΡƒΡ€Π΄ΡŽΠΊ, вмСщая 500 mb. Однако ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ ΠΏΡƒΠ·Ρ‹Ρ€ΡŒΠΊΠ° станСт Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹ΠΌ ΠΏΠΎΠ·ΠΆΠ΅, ΠΊΠΎΠ³Π΄Π° Ρƒ вас появится Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Π»Π°Ρ‚ΡƒΠ½ΡŒ.", + "quests.stone_age.water_jug.title": "ΠšΡƒΠ²ΡˆΠΈΠ½", + "quests.stone_age.water_jug.subtitle": "ΠžΡ‚Π½ΠΎΡΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ лСгкодоступная Π²ΠΎΠ΄Π°", + "quests.stone_age.water_jug.desc": "ΠšΡƒΠ²ΡˆΠΈΠ½ β€” самая ранняя Ρ‘ΠΌΠΊΠΎΡΡ‚ΡŒ для Тидкости, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ. Однако ΠΎΠ½ Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ всСго 100 mb, поэтому придётся Π½Π°ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ Π΅Π³ΠΎ послС ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ Π³Π»ΠΎΡ‚ΠΊΠ°.\n\nΠšΡƒΠ²ΡˆΠΈΠ½ ΠΎΡ‚Π½ΠΎΡΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ…Ρ€ΡƒΠΏΠΎΠΊ ΠΈ ΠΈΠΌΠ΅Π΅Ρ‚ случайный шанс Ρ€Π°Π·Π±ΠΈΡ‚ΡŒΡΡ, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ ΠΈΠ· Π½Π΅Π³ΠΎ ΠΏΡŒΡ‘Ρ‚Π΅!", + "quests.stone_age.temperature.title": "Погода", + "quests.stone_age.temperature.subtitle": "ΠŸΡ€ΠΎΠ³Π½ΠΎΠ· ΠΏΠΎΠ³ΠΎΠ΄Ρ‹ Π½Π° сСгодня? Π‘ΠΎΠ»ΡŒ.", + "quests.stone_age.temperature.desc": "Новый ΠΌΠΈΡ€ начинаСтся Π² Π½Π°Ρ‡Π°Π»Π΅ Π»Π΅Ρ‚Π°, Π³Π΄Π΅ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ мСсяц длится 8 Π΄Π½Π΅ΠΉ. Π’Ρ€Π΅ΠΌΠ΅Π½Π° Π³ΠΎΠ΄Π° Π±ΡƒΠ΄ΡƒΡ‚ ΡΠΌΠ΅Π½ΡΡ‚ΡŒΡΡ, Π° вмСстС с Π½ΠΈΠΌΠΈ ΠΈ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π°, Ρ‡Ρ‚ΠΎ повлияСт Π½Π° ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€Ρ‹, Ρ„Ρ€ΡƒΠΊΡ‚ΠΎΠ²Ρ‹Π΅ Π΄Π΅Ρ€Π΅Π²ΡŒΡ, кустарники... ΠΈ Π½Π° вас!\n\nΠ’Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ Ρ‚Π΅Π»Π° Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΈ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ Π½Π° ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½ΠΎΠΌ ΡƒΡ€ΠΎΠ²Π½Π΅. МалСнький Ρ‚Ρ€Π΅ΡƒΠ³ΠΎΠ»ΡŒΠ½ΠΈΠΊ ΠΌΠ΅ΠΆΠ΄Ρƒ показатСлями Π·Π΄ΠΎΡ€ΠΎΠ²ΡŒΡ ΠΈ Π³ΠΎΠ»ΠΎΠ΄Π° ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Π΅Ρ‚ Π²Π°ΡˆΡƒ Ρ‚Π΅ΠΊΡƒΡ‰ΡƒΡŽ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ ΠΈ Ρ‚Π΅Π½Π΄Π΅Π½Ρ†ΠΈΡŽ Π΅Ρ‘ измСнСния. ΠŸΡ€ΠΈΠ³Π½ΠΈΡ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ Ρ‚ΠΎΡ‡Π½Ρ‹Π΅ Ρ†ΠΈΡ„Ρ€Ρ‹: Π»Π΅Π²ΠΎΠ΅ число ΠΏΠΎΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ влаТности, Π° ΠΏΡ€Π°Π²ΠΎΠ΅ β€” Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ.", + "quests.stone_age.temperature.task": "Π‘ΡƒΡ‰Π΅ΡΡ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ", + "quests.stone_age.insulation.title": "ΠœΠ΅Ρ…Π°Π½ΠΈΠΊΠ°: Π’Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° Ρ‚Π΅Π»Π°", + "quests.stone_age.insulation.subtitle": "Π‘ΡƒΠ΄ΡŒΡ‚Π΅ остороТнСС с Π³ΠΈΠΏΠΎ- ΠΈ Π³ΠΈΠΏΠ΅Ρ€- Ρ‚Π΅Ρ€ΠΌΠΈΠ΅ΠΉ.", + "quests.stone_age.insulation.desc": "На Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ Ρ‚Π΅Π»Π° влияСт мноТСство Ρ„Π°ΠΊΡ‚ΠΎΡ€ΠΎΠ²: ΠΎΡ‚ прямых солнСчных Π»ΡƒΡ‡Π΅ΠΉ ΠΈ Π²Π»Π°Π³ΠΈ Π΄ΠΎ близости ΠΊ огню. Π’Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ Π² Π΄ΠΈΠ°ΠΏΠ°Π·ΠΎΠ½Π΅ ΠΎΡ‚ 0 Π΄ΠΎ 30Β°C, ΠΈΠ½Π°Ρ‡Π΅ рискуСтС ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΡƒΡ€ΠΎΠ½, ΠΎ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌ Π±ΡƒΠ΄Π΅Ρ‚ ΡΠΈΠ³Π½Π°Π»ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Ρ†Π²Π΅Ρ‚Π½ΠΎΠΉ Π²ΠΈΠ·ΡƒΠ°Π»ΡŒΠ½Ρ‹ΠΉ эффСкт.\n\nБущСствуСт мноТСство способов сниТСния воздСйствия ΠΎΠΊΡ€ΡƒΠΆΠ°ΡŽΡ‰Π΅ΠΉ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹ ΠΈ сохранСния ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½ΠΎΠΉ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹ Ρ‚Π΅Π»Π°, ΠΈ ношСниС &lΠΎΠ΄Π΅ΠΆΠ΄Ρ‹&r β€” ΠΎΠ΄ΠΈΠ½ ΠΈΠ· самых эффСктивных. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½ΠΎΡΠΈΡ‚ΡŒ ΠΎΠ΄Π΅ΠΆΠ΄Ρƒ ΠΊΠ°ΠΊ Π² ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Ρ… слотах снаряТСния, Ρ‚Π°ΠΊ ΠΈ Π² космСтичСских слотах.", + "quests.stone_age.primitive_insulation.title": "ΠŸΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½ΠΎΠ΅ ΡƒΡ‚Π΅ΠΏΠ»Π΅Π½ΠΈΠ΅", + "quests.stone_age.primitive_insulation.subtitle": "Π¨ΠΈΠΊ ΠΏΠ΅Ρ‰Π΅Ρ€Π½ΠΎΠ³ΠΎ Ρ‡Π΅Π»ΠΎΠ²Π΅ΠΊΠ°", + "quests.stone_age.primitive_insulation.desc": "Π“ΠΎΠ»Π΅Π½ΡŒΠΊΠΈΠΉ ΠΈ Π·Π°ΠΌΠ΅Ρ€Π·Π°Π΅ΡˆΡŒ? Π’ΠΎΡ‚ самая простая ΠΎΠ΄Π΅ΠΆΠ΄Π°, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ. И Ρ…ΠΎΡ‚ΡŒ Ρƒ Π½Π΅Ρ‘ ΠΎΡ‡Π΅Π½ΡŒ низкая ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒ, Π΅Ρ‘ Π΄ΠΎΠ»ΠΆΠ½ΠΎ Ρ…Π²Π°Ρ‚ΠΈΡ‚ΡŒ, ΠΏΠΎΠΊΠ° Π²Ρ‹ Π½Π΅ Ρ€Π°Π·Π΄ΠΎΠ±ΡƒΠ΄Π΅Ρ‚Π΅ Ρ‡Π΅Π³ΠΎ-Π½ΠΈΠ±ΡƒΠ΄ΡŒ ΠΏΠΎΠ»ΡƒΡ‡ΡˆΠ΅.", + "quests.stone_age.furs.title": "Π¨ΠΊΡƒΡ€Ρ‹ Ρ…ΠΈΡ‰Π½ΠΈΠΊΠΎΠ²", + "quests.stone_age.furs.subtitle": "Π₯Π°Ρ€Π΄ΠΊΠΎΡ€Π½Ρ‹ΠΉ Ρ„ΡƒΡ€ΡΡŒΡŽΡ‚ΠΈΠ½Π³", + "quests.stone_age.furs.desc": "Из ΠΊΡ€ΡƒΠΏΠ½Ρ‹Ρ… Ρ…ΠΈΡ‰Π½Ρ‹Ρ… ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ… Π²Ρ‹ΠΏΠ°Π΄Π°ΡŽΡ‚ ΡˆΠ΅Ρ€ΡΡ‚ΡΠ½Ρ‹Π΅ ΡˆΠΊΡƒΡ€Ρ‹, ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΌΠΎΠΆΠ½ΠΎ Π»ΠΈΠ±ΠΎ ΡΡˆΠΈΡ‚ΡŒ ΡƒΡ‚Π΅ΠΏΠ»Ρ‘Π½Π½ΡƒΡŽ ΠΎΠ΄Π΅ΠΆΠ΄Ρƒ, Π»ΠΈΠ±ΠΎ ΡΠΎΡΠΊΠΎΠ±Π»ΠΈΡ‚ΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΎΠ±Ρ‹Ρ‡Π½ΡƒΡŽ ΡˆΠΊΡƒΡ€Ρƒ ΠΈ Π·Π°Ρ‚Π΅ΠΌ, ΠΊΠ°ΠΊ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ, ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π² ΠΊΠΎΠΆΡƒ.", + "quests.stone_age.wool_clothes.title": "ШСрстяная ΠΎΠ΄Π΅ΠΆΠ΄Π°", + "quests.stone_age.wool_clothes.subtitle": "Π’ΠΎ врСмя сильного Ρ…ΠΎΠ»ΠΎΠ΄Π°", + "quests.stone_age.wool_clothes.desc": "ШСрстяная ΠΎΠ΄Π΅ΠΆΠ΄Π° идСально ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для Ρ…ΠΎΠ»ΠΎΠ΄Π½ΠΎΠ³ΠΎ ΠΊΠ»ΠΈΠΌΠ°Ρ‚Π° ΠΈ суровых Π·ΠΈΠΌ. ΠŸΠΎΠ»Π½Ρ‹ΠΉ ΠΊΠΎΠΌΠΏΠ»Π΅ΠΊΡ‚ ΡˆΠ΅Ρ€ΡΡ‚ΡΠ½ΠΎΠΉ ΠΎΠ΄Π΅ΠΆΠ΄Ρ‹ ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅ΠΆΠΈΡ‚ΡŒ Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ Π·ΠΈΠΌ.\n\nΠ’Π°ΠΌ придётся ΠΏΡ€ΠΈΡ€ΡƒΡ‡ΠΈΡ‚ΡŒ (ΠΈΠ»ΠΈ ΡƒΠ±ΠΈΡ‚ΡŒ) ΠΊΠ°ΠΊΠΎΠ΅-Π»ΠΈΠ±ΠΎ ΡˆΠ΅Ρ€ΡΡ‚ΡΠ½ΠΎΠ΅ ΠΌΠ»Π΅ΠΊΠΎΠΏΠΈΡ‚Π°ΡŽΡ‰Π΅Π΅, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ ΠΎΠ²Ρ†Ρƒ, Π°Π»ΡŒΠΏΠ°ΠΊΡƒ ΠΈΠ»ΠΈ ΠΎΠ²Ρ†Π΅Π±Ρ‹ΠΊΠ° (мускусного Π±Ρ‹ΠΊΠ°). Π’ Π³Π»Π°Π²Π΅ \"Π”ΠΈΠΊΠΈΠ΅ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅\" ПолСвого руководства ΡƒΠΊΠ°Π·Π°Π½ΠΎ, Π³Π΄Π΅ Π½Π°ΠΉΡ‚ΠΈ ΠΊΠ°ΠΆΠ΄ΠΎΠ΅ ΠΆΠΈΠ²ΠΎΡ‚Π½ΠΎΠ΅, Π° Π² Π³Π»Π°Π²Π΅ \"Животноводство\" ΠΎΠ±ΡŠΡΡΠ½ΡΠ΅Ρ‚ΡΡ, ΠΊΠ°ΠΊ ΠΈΡ… ΡΡ‚Ρ€ΠΈΡ‡ΡŒ.", + "quests.stone_age.insulated_leather_clothes.title": "УтСплённая коТаная ΠΎΠ΄Π΅ΠΆΠ΄Π°", + "quests.stone_age.insulated_leather_clothes.subtitle": "Когда Π½Π° ΡƒΠ»ΠΈΡ†Π΅ становится ΠΏΡ€ΠΎΡ…Π»Π°Π΄Π½ΠΎ", + "quests.stone_age.insulated_leather_clothes.desc": "УтСплённая коТаная ΠΎΠ΄Π΅ΠΆΠ΄Π° ΠΏΡ€ΠΎΡ‰Π΅ Π² ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠΈ, Ρ‡Π΅ΠΌ ΠΏΠΎΠ»Π½Ρ‹ΠΉ ΠΊΠΎΠΌΠΏΠ»Π΅ΠΊΡ‚ ΡˆΠ΅Ρ€ΡΡ‚ΡΠ½ΠΎΠΉ ΠΎΠ΄Π΅ΠΆΠ΄Ρ‹, Π½ΠΎ обСспСчиваСт ΠΌΠ΅Π½ΡŒΡˆΡƒΡŽ Ρ‚Π΅ΠΏΠ»ΠΎΠΈΠ·ΠΎΠ»ΡΡ†ΠΈΡŽ ΠΈ Ρ‚Π΅Ρ€ΠΌΠΎΡ€Π΅Π³ΡƒΠ»ΡΡ†ΠΈΡŽ. Π’Π΅ΠΌ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅, ΠΎΠ½Π° Π²ΠΏΠΎΠ»Π½Π΅ эффСктивна для проТивания Π² Π±ΠΎΠ»Π΅Π΅ ΡƒΠΌΠ΅Ρ€Π΅Π½Π½Ρ‹Ρ… Ρ€Π΅Π³ΠΈΠΎΠ½Π°Ρ….\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΡˆΠΊΡƒΡ€Ρƒ, Π²Π°ΠΌ потрСбуСтся ΡƒΠ±ΠΈΠ²Π°Ρ‚ΡŒ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ…, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΏΡ€ΠΈΡ€ΡƒΡ‡ΠΈΡ‚ΡŒ (ΠΈΠ»ΠΈ ΡƒΠ±ΠΈΡ‚ΡŒ) ΠΊΠ°ΠΊΠΎΠ΅-Π»ΠΈΠ±ΠΎ ΡˆΠ΅Ρ€ΡΡ‚ΡΠ½ΠΎΠ΅ ΠΌΠ»Π΅ΠΊΠΎΠΏΠΈΡ‚Π°ΡŽΡ‰Π΅Π΅, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ ΠΎΠ²Ρ†Ρƒ, Π°Π»ΡŒΠΏΠ°ΠΊΡƒ ΠΈΠ»ΠΈ ΠΎΠ²Ρ†Π΅Π±Ρ‹ΠΊΠ° (мускусного Π±Ρ‹ΠΊΠ°), Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΡˆΠ΅Ρ€ΡΡ‚ΡΠ½ΡƒΡŽ Π½ΠΈΡ‚ΡŒ. Π’ Ρ€Π°Π·Π΄Π΅Π»Π΅ \"Π”ΠΈΠΊΠΈΠ΅ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅\" ПолСвого руководства ΡƒΠΊΠ°Π·Π°Π½ΠΎ, Π³Π΄Π΅ Π½Π°ΠΉΡ‚ΠΈ ΠΊΠ°ΠΆΠ΄ΠΎΠ΅ ΠΆΠΈΠ²ΠΎΡ‚Π½ΠΎΠ΅, Π° Π² Ρ€Π°Π·Π΄Π΅Π»Π΅ \"Животноводство\" ΠΎΠ±ΡŠΡΡΠ½ΡΠ΅Ρ‚ΡΡ, ΠΊΠ°ΠΊ ΠΈΡ… ΡΡ‚Ρ€ΠΈΡ‡ΡŒ.", + "quests.stone_age.burlap_clothes.title": "ДТутовая ΠΎΠ΄Π΅ΠΆΠ΄Π°", + "quests.stone_age.burlap_clothes.subtitle": "Когда ΠΆΠ°Ρ€Π° Π΄ΠΎΠ½ΠΈΠΌΠ°Π΅Ρ‚ вас", + "quests.stone_age.burlap_clothes.desc": "ДТутовая Ρ‚ΠΊΠ°Π½ΡŒ изготавливаСтся ΠΈΠ· Π΄ΠΆΡƒΡ‚ΠΎΠ²ΠΎΠ³ΠΎ Π²ΠΎΠ»ΠΎΠΊΠ½Π°. Π”ΠΆΡƒΡ‚ ΠΌΠΎΠΆΠ΅Ρ‚ расти Π² Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π΅ мСст с Ρ‚Ρ‘ΠΏΠ»Ρ‹ΠΌ ΠΊΠ»ΠΈΠΌΠ°Ρ‚ΠΎΠΌ ΠΏΡ€ΠΈ условии, Ρ‡Ρ‚ΠΎ Π΅Π³ΠΎ потрСбности Π² Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π΅ ΠΈ ΡƒΠ²Π»Π°ΠΆΠ½Π΅Π½ΠΈΠΈ ΡƒΠ΄ΠΎΠ²Π»Π΅Ρ‚Π²ΠΎΡ€Π΅Π½Ρ‹.\n\nОдСТда ΠΈΠ· Π΄ΠΆΡƒΡ‚ΠΎΠ²ΠΎΠΉ Ρ‚ΠΊΠ°Π½ΠΈ ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для ΠΆΠ°Ρ€ΠΊΠΎΠ³ΠΎ Π»Π΅Ρ‚Π° ΠΈΠ»ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΆΠ°Ρ€ΠΊΠΈΡ… условий, Π½ΠΎ ΠΎΠ± этом ΠΌΡ‹ ΠΏΠΎΠ³ΠΎΠ²ΠΎΡ€ΠΈΠΌ ΠΏΠΎΠ·ΠΆΠ΅.", + "quests.stone_age.silk_clothes.title": "Шёлковая ΠΎΠ΄Π΅ΠΆΠ΄Π°", + "quests.stone_age.silk_clothes.subtitle": "ШСлкопрядов Π½Π΅Ρ‚, ΠΈΠ·Π²ΠΈΠ½ΠΈΡ‚Π΅!", + "quests.stone_age.silk_clothes.desc": "Π¨Ρ‘Π»ΠΊ изготавливаСтся ΠΈΠ· ΠΏΠ°ΡƒΡ‡ΡŒΠ΅ΠΉ Π½ΠΈΡ‚ΠΈ, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Ρ‚Ρ€ΡƒΠ΄Π½ΠΎ Π΄ΠΎΠ±Ρ‹Ρ‚ΡŒ Π² Π±ΠΎΠ»ΡŒΡˆΠΈΡ… количСствах, Π½Π΅ Π·Π°Π±ΠΈΡ€Π°ΡΡΡŒ особо Π³Π»ΡƒΠ±ΠΎΠΊΠΎ.\n\nШёлковая ΠΎΠ΄Π΅ΠΆΠ΄Π° ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для нСвСроятно ΠΆΠ°Ρ€ΠΊΠΈΡ… мСст, Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ пустыни ΠΈΠ»ΠΈ Π½ΠΈΠΆΠ½ΠΈΠ΅ части Π‘Π΅Π·Π΄Π½Ρ‹.", + "quests.stone_age.clothes.title": "ОдСТда", + "quests.stone_age.clothes.subtitle": "Модно!", + "quests.stone_age.clothes.desc": "НошСниС ΠΎΠ΄Π΅ΠΆΠ΄Ρ‹ β€” простой способ ΠΏΠ΅Ρ€Π΅Π½ΠΎΡΠΈΡ‚ΡŒ ΡΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½Ρ‹Π΅ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹. Вёплая ΠΎΠ΄Π΅ΠΆΠ΄Π°, такая ΠΊΠ°ΠΊ ΡˆΠ΅Ρ€ΡΡ‚ΡŒ ΠΈΠ»ΠΈ утСплённая ΠΊΠΎΠΆΠ°, ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для Ρ…ΠΎΠ»ΠΎΠ΄Π½Ρ‹Ρ… условий, Π° ΡˆΡ‘Π»ΠΊ ΠΈΠ»ΠΈ Π΄ΠΆΡƒΡ‚ β€” для Ρ‚Π΅ΠΏΠ»Ρ‹Ρ….", + "quests.stone_age.find_rock.title": "НайдитС Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΊΠ°ΠΌΠ½Π΅ΠΉ", + "quests.stone_age.find_rock.subtitle": "Π“Ρ€ΡƒΠ³ ΠΊΡ€ΡƒΡˆΠΈΡ‚ΡŒ камСнь", + "quests.stone_age.find_rock.desc": "Когда Π²Ρ‹ Π½Π°Ρ‡Π½Ρ‘Ρ‚Π΅ своё ΠΏΡ€ΠΈΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠ΅, ΠΏΠ΅Ρ€Π²ΠΎΠ΅, Ρ‡Ρ‚ΠΎ Π²Ρ‹ Π·Π°ΠΌΠ΅Ρ‚ΠΈΡ‚Π΅, β€” это ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ измСнившийся ΠΌΠΈΡ€. Π‘ΠΎΠ»ΡŒΡˆΠ΅ нСльзя Π»ΠΎΠΌΠ°Ρ‚ΡŒ Π΄Π΅Ρ€Π΅Π²ΡŒΡ Π³ΠΎΠ»Ρ‹ΠΌΠΈ Ρ€ΡƒΠΊΠ°ΠΌΠΈ, Π½ΠΎ Π½Π΅ Π²ΠΎΠ»Π½ΡƒΠΉΡ‚Π΅ΡΡŒ, вСдь любой ΠΏΠ΅Ρ‰Π΅Ρ€Π½Ρ‹ΠΉ Ρ‡Π΅Π»ΠΎΠ²Π΅ΠΊ β€” Π½Π΅ настоящий ΠΏΠ΅Ρ‰Π΅Ρ€Π½Ρ‹ΠΉ Ρ‡Π΅Π»ΠΎΠ²Π΅ΠΊ Π±Π΅Π· своих ΠΊΠ°ΠΌΠ΅Π½Π½Ρ‹Ρ… инструмСнтов!\n\nВмСсто Ρ‚ΠΎΠ³ΠΎ Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ Π΄Π΅Π»Π°Ρ‚ΡŒ Π΄Π΅Ρ€Π΅Π²ΡΠ½Π½ΡƒΡŽ ΠΊΠΈΡ€ΠΊΡƒ, Π»ΡƒΡ‡ΡˆΠ΅ Π½Π°Ρ‡Π½ΠΈΡ‚Π΅ ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ ΠΊΠ°ΠΌΠ½ΠΈ с Π·Π΅ΠΌΠ»ΠΈ. Для Π½Π°Ρ‡Π°Π»Π° собСритС Π½Π΅ ΠΌΠ΅Π½Π΅Π΅ Ρ‡Π΅Ρ‚Ρ‹Ρ€Ρ‘Ρ… ΠΊΠ°ΠΌΠ½Π΅ΠΉ. МоТно ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ ΠΊΠ°ΠΌΠ½ΠΈ, ломая ΠΈΡ… ΠΈΠ»ΠΈ наТимая ΠΏΠΎ Π½ΠΈΠΌ ПКМ пустой Ρ€ΡƒΠΊΠΎΠΉ.", + "quests.stone_age.rock_knapping.title": "ВысСканиС", + "quests.stone_age.rock_knapping.subtitle": "ΠŸΡ€ΡΠΌΠΎ ΠΊΠ°ΠΊ Π² старыС Π΄ΠΎΠ±Ρ€Ρ‹Π΅ палСолитичСскиС Π²Ρ€Π΅ΠΌΠ΅Π½Π°", + "quests.stone_age.rock_knapping.desc": "Камни ΠΌΠΎΠΆΠ½ΠΎ \"Π²Ρ‹ΡΠ΅ΠΊΠ°Ρ‚ΡŒ\" β€” это процСсс придания Π³Π»Π°Π²Π½ΠΎΠΌΡƒ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρƒ Π½ΡƒΠΆΠ½ΠΎΠΉ Ρ„ΠΎΡ€ΠΌΡ‹ ΠΏΡƒΡ‚Ρ‘ΠΌ ΡƒΠ΄Π°Ρ€ΠΎΠ² Ρ‚Π²Ρ‘Ρ€Π΄Ρ‹Ρ… ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ² Π΄Ρ€ΡƒΠ³ ΠΎ Π΄Ρ€ΡƒΠ³Π°. Для высСкания трСбуСтся ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ Π΄Π²Π° камня, ΠΈ, взяв ΠΈΡ… Π² Ρ€ΡƒΠΊΠΈ, Ρ‰Ρ‘Π»ΠΊΠ½ΠΈΡ‚Π΅ ПКМ ΠΏΠΎ Π²ΠΎΠ·Π΄ΡƒΡ…Ρƒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ интСрфСйс высСкания. Π—Π°Ρ‚Π΅ΠΌ Π½Π°Ρ‡Π½ΠΈΡ‚Π΅ \"ΠΎΡ‚ΠΊΠ°Π»Ρ‹Π²Π°Ρ‚ΡŒ\" части камня, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΈΠ΄Π°Ρ‚ΡŒ Π½ΡƒΠΆΠ½ΡƒΡŽ Ρ„ΠΎΡ€ΠΌΡƒ Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ инструмСнта. ВсС Ρ„ΠΎΡ€ΠΌΡ‹ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… инструмСнтов ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² EMI ΠΈ ПолСвом руководствС.\n\nДвумя самыми Π²Π°ΠΆΠ½Ρ‹ΠΌΠΈ инструмСнтами для Π½Π°Ρ‡Π°Π»Π° вашСго ΠΏΡƒΡ‚ΠΈ ΡΠ²Π»ΡΡŽΡ‚ΡΡ Π½ΠΎΠΆ ΠΈ Ρ‚ΠΎΠΏΠΎΡ€, поэтому ΠΏΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ сначала Π²Ρ‹ΡΠ΅Ρ‡ΡŒ Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ этих инструмСнтов.", + "quests.stone_age.find_stick.title": "НайдитС Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΏΠ°Π»ΠΎΠΊ", + "quests.stone_age.find_stick.subtitle": "На Ρ‡Ρ‘ΠΌ-Ρ‚ΠΎ ΠΆΠ΅ Π½ΡƒΠΆΠ½ΠΎ Π·Π°ΠΊΡ€Π΅ΠΏΠΈΡ‚ΡŒ инструмСнт", + "quests.stone_age.find_stick.desc": "Π•Ρ‰Ρ‘ ΠΎΠ΄ΠΈΠ½ распространСнный ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ Π½Π° Π·Π΅ΠΌΠ»Π΅ β€” ΠΏΠ°Π»ΠΊΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΌ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ мноТСство ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠΉ! Из Π½ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ инструмСнты, Ρ„Π°ΠΊΠ΅Π»Ρ‹, ΠΏΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½ΠΎΠ΅ ΠΎΠ³Π½ΠΈΠ²ΠΎ ΠΈ ΠΌΠ½ΠΎΠ³ΠΎΠ΅ Π΄Ρ€ΡƒΠ³ΠΎΠ΅.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ Π½Π΅ Π·Π°ΡΠΎΡ€ΡΡ‚ΡŒ ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹ΠΌΠΈ Π²ΠΈΠ΄Π°ΠΌΠΈ ΠΏΠ°Π»ΠΎΠΊ, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ ΠΈΡ… Π² \"ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Π΅\" ΠΈ ΡΠ»ΠΎΠΆΠΈΡ‚ΡŒ вмСстС. ПозТС Π²Ρ‹ смоТСтС ΡΠ²ΡΠ·Π°Ρ‚ΡŒ Π΄Π΅Π²ΡΡ‚ΡŒ ΠΏΠ°Π»ΠΎΠΊ Π² ΠΏΡƒΡ‡ΠΎΠΊ, Π° ΠΏΡƒΡ‡ΠΎΠΊ - Π² связку, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ Π·Π°ΠΌΠ΅Π½Ρƒ Π±Ρ€Ρ‘Π²Π΅Π½.", + "quests.stone_age.first_stone_tools.title": "Π’Π°ΡˆΠΈ ΠΏΠ΅Ρ€Π²Ρ‹Π΅ инструмСнты", + "quests.stone_age.first_stone_tools.subtitle": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ Ρ‚Ρ‹ умная обСзьянка", + "quests.stone_age.first_stone_tools.desc": "ΠžΠ±Ρ‚Π΅ΡΠ°Π² ΠΊΠ°ΠΌΠ½ΠΈ Π² Π½ΡƒΠΆΠ½ΡƒΡŽ Ρ„ΠΎΡ€ΠΌΡƒ, соСдинитС ΠΈΡ… с ΠΏΠ°Π»ΠΊΠΎΠΉ ΠΈ создайтС свои ΠΏΠ΅Ρ€Π²Ρ‹Π΅ инструмСнты. Π’Ρ‹ ΠΎΡ„ΠΈΡ†ΠΈΠ°Π»ΡŒΠ½ΠΎ вступили Π² ΠΊΠ°ΠΌΠ΅Π½Π½Ρ‹ΠΉ Π²Π΅ΠΊ!\n\nКамнСй Π±ΡƒΠ΄Π΅Ρ‚ достаточно для ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠ³ΠΎ выТивания, Π½ΠΎ со Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ Π²Ρ‹ Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ мСталличСскиС инструмСнты, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ²Ρ‹ΡΠΈΡ‚ΡŒ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ, ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒ ΠΈ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Ρ‹ инструмСнтов. Π‘Π»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠ΅ Π΄Π²Π° квСста ΠΏΠΎΠΌΠΎΠ³ΡƒΡ‚ ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹.", + "quests.stone_age.stone_tools.title": "ΠšΠ°ΠΌΠ΅Π½Π½Ρ‹Π΅ инструмСнты", + "quests.stone_age.stone_tools.subtitle": "ΠžΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ΡΡ, Π±ΠΈΡ‚ΡŒ ΠΊΠ°ΠΌΠ½ΠΈ Π΄Ρ€ΡƒΠ³ ΠΎΠ± Π΄Ρ€ΡƒΠ³Π° ΠΏΠΎΠ»Π΅Π·Π½ΠΎ.", + "quests.stone_age.stone_tools.desc": "Π₯отя камСнь β€” ΠΎΡ‚Π½ΠΎΡΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ простой ΠΈ ΠΏΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½Ρ‹ΠΉ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π», с Π½ΠΈΠΌ придСтся ΠΏΠΎΠ²ΠΎΠ·ΠΈΡ‚ΡŒΡΡ, ΠΏΠΎΠΊΠ° Π²Ρ‹ Π½Π΅ Π½Π°ΡƒΡ‡ΠΈΡ‚Π΅ΡΡŒ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ с ΠΌΠ΅Ρ‚Π°Π»Π»Π°ΠΌΠΈ. Π‘Ρ€Π΅Π΄ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Ρ… инструмСнтов β€” ΠΊΠΎΠΏΡŒΡ‘, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΌΠ΅Ρ‚Π°Ρ‚ΡŒ, ΠΊΠ°ΠΊ Π²Π°Π½ΠΈΠ»ΡŒΠ½Ρ‹ΠΉ Ρ‚Ρ€Π΅Π·ΡƒΠ±Π΅Ρ†, ΠΈ ΠΌΠΎΡ‚Ρ‹Π³Π°, ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰Π°Ρ Π·Π°Π½ΠΈΠΌΠ°Ρ‚ΡŒΡΡ сСльским хозяйством.", + "quests.stone_age.gather_straw.title": "Π‘Π±ΠΎΡ€ соломы", + "quests.stone_age.gather_straw.subtitle": "ΠŸΡ€ΠΈ ΠΆΠ΅Π»Π°Π½ΠΈΠΈ ΠΌΠΎΠΆΠ½ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΌΠΎΡ‚Ρ‹Π³Ρƒ", + "quests.stone_age.gather_straw.desc": "Π‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ Ρ‚Ρ€Π°Π², Π²ΡΡ‚Ρ€Π΅Ρ‡Π°ΡŽΡ‰ΠΈΡ…ΡΡ Π² ΠΌΠΈΡ€Π΅, ΡΠΎΠ±ΠΈΡ€Π°ΡŽΡ‚ΡΡ Π² Π²ΠΈΠ΄Π΅ соломы, Ссли Π»ΠΎΠΌΠ°Ρ‚ΡŒ ΠΈΡ… Π½ΠΎΠΆΠΎΠΌ ΠΈΠ»ΠΈ ΠΌΠΎΡ‚Ρ‹Π³ΠΎΠΉ. Π‘ΠΎΠ»ΠΎΠΌΠ° ΠΈΠΌΠ΅Π΅Ρ‚ мноТСство ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠΉ, Π½ΠΎ Π²Π°ΠΌ понадобится ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ 8 ΡˆΡ‚ΡƒΠΊ для создания зСмляной ΠΏΠ΅Ρ‡ΠΈ.\n\nИз соломы Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΡˆΠ»ΡΠΏΡƒ для Π±Π°Π·ΠΎΠ²ΠΎΠΉ Π·Π°Ρ‰ΠΈΡ‚Ρ‹ ΠΎΡ‚ солнца ΠΈΠ»ΠΈ сноп соломы, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ простой ΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π±Π»ΠΎΠΊ Π±Π΅Π· ΠΊΠΎΠ»Π»ΠΈΠ·ΠΈΠΈ.", + "quests.stone_age.gather_logs.title": "Π‘Π±ΠΎΡ€ Π±Ρ€Ρ‘Π²Π΅Π½", + "quests.stone_age.gather_logs.subtitle": "ЛСсоматСриал!", + "quests.stone_age.gather_logs.desc": "Π‘ Π½ΠΎΠ²Ρ‹ΠΌ ΠΊΠ°ΠΌΠ΅Π½Π½Ρ‹ΠΌ Ρ‚ΠΎΠΏΠΎΡ€ΠΎΠΌ станСт доступна Ρ€ΡƒΠ±ΠΊΠ° Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π². Если ΡΡ€ΡƒΠ±ΠΈΡ‚ΡŒ основаниС Π΄Π΅Ρ€Π΅Π²Π°, Ρ‚ΠΎ ΠΎΠ½ΠΎ повалится Ρ†Π΅Π»ΠΈΠΊΠΎΠΌ, принСся Π±Ρ€Ρ‘Π²Π½Π°, ΠΏΠ°Π»ΠΊΠΈ ΠΈ саТСнцы.\n\nΠ‘ΠΎΠ±Π΅Ρ€ΠΈΡ‚Π΅ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅ 10 Π±Ρ€Ρ‘Π²Π΅Π½: 8 ΠΈΠ· Π½ΠΈΡ… Π±ΡƒΠ΄ΡƒΡ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Π½Ρ‹ для зСмляной ΠΏΠ΅Ρ‡ΠΈ, Π° 2 Π΄Ρ€ΡƒΠ³ΠΈΡ… β€” для костра.", + "quests.stone_age.firepit.title": "ΠšΠΎΡΡ‚Ρ‘Ρ€", + "quests.stone_age.firepit.subtitle": "НаступаСт Π½ΠΎΡ‡ΡŒ", + "quests.stone_age.firepit.desc.1": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ, ΠΊΠΎΠ³Π΄Π° Ρƒ вас Π΅ΡΡ‚ΡŒ Π±Ρ€Ρ‘Π²Π½Π°, ΠΏΠΎΡ€Π° ΠΏΠΎΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ свой ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ костёр! ΠœΠ΅ΠΆΠ΄Ρƒ Ρ‚Π΅ΠΌ монстры большС Π½Π΅ ΠΏΠΎΡΠ²Π»ΡΡŽΡ‚ΡΡ Π½Π° повСрхности Π½ΠΎΡ‡ΡŒΡŽ, ΠΎΠ΄Π½Π°ΠΊΠΎ Π½ΠΎΡ‡Π½Ρ‹Π΅ Ρ…ΠΈΡ‰Π½ΠΈΠΊΠΈ станут Π±ΠΎΠ΄Ρ€ΡΡ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ ΠΈ Ρ€Ρ‹ΡΠΊΠ°Ρ‚ΡŒ Π²ΠΎΠΊΡ€ΡƒΠ³.\n\nДля Π½Π°Ρ‡Π°Π»Π° создайтС ΠΏΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½ΠΎΠ΅ ΠΎΠ³Π½ΠΈΠ²ΠΎ β€” инструмСнт, ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰ΠΈΠΉ Ρ€Π°Π·ΠΆΠ΅Ρ‡ΡŒ огонь.", + "quests.stone_age.firepit.desc.2": "Π§Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ костёр, Π±Ρ€ΠΎΡΡŒΡ‚Π΅ Π½Π° зСмлю хотя Π±Ρ‹ ΠΎΠ΄Π½ΠΎ Π±Ρ€Π΅Π²Π½ΠΎ ΠΈ Π΄ΠΎ Ρ‚Ρ€Ρ‘Ρ… ΠΏΠ°Π»ΠΎΠΊ, Π° Π·Π°Ρ‚Π΅ΠΌ ΠΏΠΎΠ΄ΠΎΠΆΠ³ΠΈΡ‚Π΅ Π±Π»ΠΎΠΊ, Π·Π°ΠΆΠ°Π² ПКМ с ΠΏΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½Ρ‹ΠΌ ΠΎΠ³Π½ΠΈΠ²ΠΎΠΌ Π² Ρ€ΡƒΠΊΠ΅. Для облСгчСния Π·Π°Π΄Π°Ρ‡ΠΈ ΠΌΠΎΠΆΠ½ΠΎ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ соломы.\n\nΠšΠΎΡΡ‚Ρ‘Ρ€ слуТит Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ источником свСта ΠΈ Ρ‚Π΅ΠΏΠ»Π°, Π½ΠΎ ΠΈ позволяСт Π·Π°ΠΆΠΈΠ³Π°Ρ‚ΡŒ Ρ„Π°ΠΊΠ΅Π»Ρ‹ ΠΈ Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ сыроС мясо. ΠŸΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ огонь ΠΌΠΎΠΆΠ½ΠΎ, взаимодСйствуя с костром ΠΈ добавляя Π±Ρ€Ρ‘Π²Π½Π° Ρ‡Π΅Ρ€Π΅Π· интСрфСйс. Если огонь погаснСт, просто Π΄ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ Π΅Ρ‰Ρ‘ Π±Ρ€Ρ‘Π²Π΅Π½ ΠΈ ΠΏΠΎΠ΄ΠΎΠΆΠ³ΠΈΡ‚Π΅ снова.", + "quests.stone_age.find_clay.title": "Π˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊΠΈ Π³Π»ΠΈΠ½Ρ‹", + "quests.stone_age.find_clay.subtitle": "Π’Π°ΠΌ Π΅Ρ‘ ΠΌΠ½ΠΎΠ³ΠΎ понадобится", + "quests.stone_age.find_clay.desc": "Π“Π»ΠΈΠ½Π° β€” Π½Π΅ΠΎΡ‚ΡŠΠ΅ΠΌΠ»Π΅ΠΌΠ°Ρ Ρ‡Π°ΡΡ‚ΡŒ Ρ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³ΠΈΠΉ ΠΊΠ°ΠΌΠ΅Π½Π½ΠΎΠ³ΠΎ Π²Π΅ΠΊΠ°! Подобно Π²Ρ‹ΡΠ΅ΠΊΠ°Π½ΠΈΡŽ камня, Π³Π»ΠΈΠ½Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€ΠΈΠ΄Π°Π²Π°Ρ‚ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ Ρ„ΠΎΡ€ΠΌΡ‹, Π° Π·Π°Ρ‚Π΅ΠΌ ΠΎΠ±ΠΆΠΈΠ³Π°Ρ‚ΡŒ Π² зСмляной ΠΏΠ΅Ρ‡ΠΈ, создавая Ρ€Π°Π·Π½ΠΎΠΎΠ±Ρ€Π°Π·Π½Ρ‹Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹. ΠšΠ°ΠΌΠ΅Π½Π½Ρ‹Π΅ инструмСнты ΠΈ ΠΊΠ΅Ρ€Π°ΠΌΠΈΠΊΠ° β€” основа вашСго выТивания, ΠΏΠΎΠΊΠ° Π²Ρ‹ Π½Π΅ Π½Π°ΡƒΡ‡ΠΈΡ‚Π΅ΡΡŒ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ с ΠΌΠ΅Ρ‚Π°Π»Π»Π°ΠΌΠΈ.\n\nΠ“Π»ΠΈΠ½Π° встрСчаСтся Π² Π²ΠΈΠ΄Π΅ пятСн Π² Π·Π΅ΠΌΠ»Π΅, ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ ΠΏΠΎΠΊΡ€Ρ‹Ρ‚Ρ‹Ρ… Ρ‚Ρ€Π°Π²ΠΎΠΉ. Однако Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²ΠΈΠ΄Ρ‹ растСний, извСстныС ΠΊΠ°ΠΊ \"Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹ Π³Π»ΠΈΠ½Ρ‹\", растут ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π½Π° Π³Π»ΠΈΠ½Π΅. Π£Π·Π½Π°ΠΉΡ‚Π΅ Π² ПолСвом руководствС, ΠΊΠ°ΠΊΠΈΠ΅ Π²ΠΈΠ΄Ρ‹ ΠΈΠ½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ΠΎΠ² ΠΌΠΎΠ³ΡƒΡ‚ расти Π² вашСм ΠΊΠ»ΠΈΠΌΠ°Ρ‚Π΅.", + "quests.stone_age.clay.title": "Π“Π»ΠΈΠ½Π°", + "quests.stone_age.clay.subtitle": "Π­Ρ‚ΠΎ ΠΆ Π³Π»ΠΈΠ½Π°!", + "quests.stone_age.clay.desc": "Π‘ΠΎΠ±Π΅Ρ€ΠΈΡ‚Π΅ ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ 25 ΠΊΠΎΠΌΠΊΠΎΠ² Π³Π»ΠΈΠ½Ρ‹. Π’Π°ΠΌ потрСбуСтся ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Π½Π΅ ΠΌΠ΅Π½Π΅Π΅ 5 Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ², Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚ΡŒΡΡ дальшС (см. ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠΉ квСст). ПослС Ρ‚ΠΎΠ³ΠΎ ΠΊΠ°ΠΊ Π²Ρ‹ слСпитС глиняныС издСлия, помСститС ΠΈΡ… Π² Π·Π΅ΠΌΠ»ΡΠ½ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ±ΠΆΠ΅Ρ‡ΡŒ Π³Π»ΠΈΠ½Ρƒ ΠΈ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΊΠ΅Ρ€Π°ΠΌΠΈΠΊΡƒ. ΠŸΡ€ΠΎΡ†Π΅ΡΡ Π»Π΅ΠΏΠΊΠΈ Π°Π½Π°Π»ΠΎΠ³ΠΈΡ‡Π΅Π½ ΠΎΠ±Ρ‚Ρ‘ΡΡ‹Π²Π°Π½ΠΈΡŽ камня, ΠΎΠ΄Π½Π°ΠΊΠΎ Π½Π° ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ трСбуСтся 5 кусков Π³Π»ΠΈΠ½Ρ‹, ΠΈ Π³Π»ΠΈΠ½Π° Π½Π΅ ΠΏΡ€ΠΎΠΏΠ°Π΄Ρ‘Ρ‚, Ссли Π²Ρ‹ ошиблись, Π½Π°ΠΆΠ°Π² Ρ‚ΡƒΠ΄Π°, ΠΊΡƒΠ΄Π° Π½Π΅ Π½Π°Π΄ΠΎ.", + "quests.stone_age.pit_kiln.title": "ЗСмляная ΠΏΠ΅Ρ‡ΡŒ", + "quests.stone_age.pit_kiln.subtitle": "Битуация накаляСтся", + "quests.stone_age.pit_kiln.desc": "ЗСмляная ΠΏΠ΅Ρ‡ΡŒ - это способ Π½Π°Π³Ρ€Π΅Π²Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π² Ρ€Π°Π½Π½Π΅ΠΉ стадии ΠΈΠ³Ρ€Ρ‹. Π‘ Π΅Π΅ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΌΡ‹ Π±ΡƒΠ΄Π΅ΠΌ ΠΎΠ±ΠΆΠΈΠ³Π°Ρ‚ΡŒ глиняныС ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, Π° Π³Π»Π°Π²Π½ΠΎΠ΅ - ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ Π±Π°Π·ΠΎΠ²Ρ‹Π΅ Ρ€ΡƒΠ΄Ρ‹ ΠΈ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ наш ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ мСталличСский инструмСнт - ΠΏΠΈΠ»Ρƒ.\n\nДля создания ΠΏΠ΅Ρ‡ΠΈ Π²Π°ΠΌ понадобится восСмь кусков соломы, восСмь полСньСв, Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ Π½Π°Π³Ρ€Π΅Ρ‚ΡŒ, ΠΈ ΠΏΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½ΠΎΠ΅ ΠΎΠ³Π½ΠΈΠ²ΠΎ. ΠŸΡ€ΠΎΡ‡ΠΈΡ‚Π°ΠΉΡ‚Π΅ Ρ€Π°Π·Π΄Π΅Π» \"ЗСмляныС ΠΏΠ΅Ρ‡ΠΈ\" Π² ПолСвом руководствС ΠΎ Ρ‚ΠΎΠΌ, ΠΊΠ°ΠΊ ΠΈΡ… ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ - это Π½Π΅ Ρ‚ΠΎ ΠΆΠ΅ самоС, Ρ‡Ρ‚ΠΎ костСр!", + "quests.stone_age.clay_products.title": "Π“ΠΎΠ½Ρ‡Π°Ρ€Π½Ρ‹Π΅ издСлия", + "quests.stone_age.clay_products.subtitle": "Π― ΠΆΠ΅ Π³ΠΎΠ²ΠΎΡ€ΠΈΠ», Ρ‡Ρ‚ΠΎ Π³Π»ΠΈΠ½Π° ΡƒΠ½ΠΈΠ²Π΅Ρ€ΡΠ°Π»ΡŒΠ½Π°.", + "quests.stone_age.clay_products.desc": "Π’ΠΎΡ‚ всС издСлия, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΠΈΠ· Π³Π»ΠΈΠ½Ρ‹. Π€ΠΎΡ€ΠΌΡ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ для Ρ€Π°Π±ΠΎΡ‚Ρ‹ с ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠΌ, сосуды - для хранСния ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ², Π° Ρƒ ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Ρ… ΠΈΠ·Π΄Π΅Π»ΠΈΠΉ Π΅ΡΡ‚ΡŒ ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠ΅, описанноС Π² ПолСвом руководствС. Π”ΡƒΠΌΠ°Π΅Ρ‚Π΅, Π²Ρ‹ смоТСтС ΡΠ»Π΅ΠΏΠΈΡ‚ΡŒ ΠΈΡ… всС?", + "quests.stone_age.make_jug.title": "ΠšΠ΅Ρ€Π°ΠΌΠΈΡ‡Π΅ΡΠΊΠΈΠΉ ΠΊΡƒΠ²ΡˆΠΈΠ½", + "quests.stone_age.make_jug.subtitle": "ΠšΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€ Тидкости для Ρ€Π°Π½Π½Π΅ΠΉ ΠΈΠ³Ρ€Ρ‹", + "quests.stone_age.make_jug.desc": "ΠšΡƒΠ²ΡˆΠΈΠ½ - это самый простой ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€ для Тидкости, Π½ΠΎ ΠΎΠ½ Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ 100 mb. Из Π½Π΅Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΈΡ‚ΡŒ, Π° Ρ‚Π°ΠΊΠΆΠ΅ Π΄ΡƒΡ‚ΡŒ Π² Π½Π΅Π³ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Π·Π²ΡƒΠΊΠΈ!", + "quests.stone_age.make_saw_mold.title": "Π€ΠΎΡ€ΠΌΠ° ΠΏΠΎΠ»ΠΎΡ‚Π½Π° ΠΏΠΈΠ»Ρ‹", + "quests.stone_age.make_saw_mold.subtitle": "ВрСмя для Ρ‚Π²ΠΎΠ΅Π³ΠΎ ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ мСталличСского инструмСнта", + "quests.stone_age.make_saw_mold.desc": "ΠŸΠ΅Ρ€Π²Π°Ρ Ρ„ΠΎΡ€ΠΌΠ°, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΠΈΠ· Π³Π»ΠΈΠ½Ρ‹, - это Ρ„ΠΎΡ€ΠΌΠ° ΠΏΠΎΠ»ΠΎΡ‚Π½Π° ΠΏΠΈΠ»Ρ‹. Π‘ Π΅Π΅ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΈ нСбольшого количСства ΠΌΠ΅Ρ‚Π°Π»Π»Π° Π²Ρ‹ смоТСтС ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΏΠΈΠ»Ρƒ. Пила - Π²Π°ΠΆΠ½Ρ‹ΠΉ инструмСнт, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΎΠ½Π° Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠ° для создания &lДосок&r, ΠΈ с ΠΈΡ… ΠΏΠΎΠΌΠΎΡ‰ΠΈ Π²Ρ‹ смоТСтС ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ свой ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ &l&oВСрстак.&r", + "quests.stone_age.make_vessel.title": "Босуд", + "quests.stone_age.make_vessel.subtitle": "ΠŸΠΎΠ»Π΅Π·Π½Ρ‹Π΅ малСнькиС Π±Π°Π½ΠΊΠΈ", + "quests.stone_age.make_vessel.desc": "Босуд Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для пСрСноски нСсколько ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π² ΠΎΠ΄Π½ΠΎΠΌ слотС, Π½ΠΎ Ρ‡Ρ‚ΠΎ Π±ΠΎΠ»Π΅Π΅ Π²Π°ΠΆΠ½ΠΎ, это ваш ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ инструмСнт для Ρ€Π°Π±ΠΎΡ‚Ρ‹ с ΠΌΠ΅Ρ‚Π°Π»Π»Π°ΠΌΠΈ.\n\nΠŸΡ€ΠΈ взаимодСйствии с Босудом Π²Ρ‹ ΠΎΡ‚ΠΊΡ€ΠΎΠ΅Ρ‚Π΅ Π΅Π³ΠΎ нСбольшой ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ, ΠΊΡƒΠ΄Π° ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Ρ€ΡƒΠ΄Ρ‹. Подсказка ΠΊ сосуду ΠΏΠΎΠΊΠ°ΠΆΠ΅Ρ‚, Π²ΠΎ Ρ‡Ρ‚ΠΎ пСрСплавится Ρ€ΡƒΠ΄Π°, Ρ‡Ρ‚ΠΎ особСнно ΠΏΠΎΠ»Π΅Π·Π½ΠΎ ΠΏΡ€ΠΈ создании сплавов!\n\nΠŸΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚Π΅ сосуд Π² Π·Π΅ΠΌΠ»ΡΠ½ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ ΠΈ Π·Π°ΠΆΠ³ΠΈΡ‚Π΅ Π΅Π΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ &lΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ&r ΠΌΠ΅Ρ‚Π°Π»Π» Π²Π½ΡƒΡ‚Ρ€ΠΈ сосуда.\n\nЕсли Π²Ρ‹ чувствуСтС сСбя Π°Π²Π°Π½ΡŽΡ€ΠΈΡΡ‚ΠΎΠΌ, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΌΠ΅ΡˆΠΈΠ²Π°Ρ‚ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ ΠΌΠ΅Ρ‚Π°Π»Π»Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ сплавы. Π‘ΠΏΠ»Π°Π²Ρ‹ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½Ρ‹ΠΉ ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚ ΡΠΎΠΎΡ‚Π½ΠΎΡˆΠ΅Π½ΠΈΡ ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠ². Π₯отя мСдь Π²Π΅Π»ΠΈΠΊΠΎΠ»Π΅ΠΏΠ½Π° сразу ΠΆΠ΅, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ свои ΠΏΠ΅Ρ€Π²Ρ‹Π΅ мСталличСскиС инструмСнты ΠΈΠ· Π±Ρ€ΠΎΠ½Π·Ρ‹.", + "quests.stone_age.native_ores.title": "КамСшки с Ρ€ΡƒΠ΄ΠΎΠΉ?", + "quests.stone_age.native_ores.subtitle": "Π’Π²ΠΎΠΉ ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ ΠΌΠ΅Ρ‚Π°Π»Π» ΡƒΠΆΠ΅ рядом, Ссли ΠΏΠΎΠΈΡΠΊΠ°Ρ‚ΡŒ.", + "quests.stone_age.native_ores.desc.1": "Π—Π°Π»Π΅ΠΆΠΈ Ρ€ΡƒΠ΄Ρ‹ ΠΎΠ±Ρ€Π°Π·ΡƒΡŽΡ‚ΡΡ Π½Π΅ Ρ‚Π°ΠΊ, ΠΊΠ°ΠΊ Π²Ρ‹ ΠΏΡ€ΠΈΠ²Ρ‹ΠΊΠ»ΠΈ - Π²Ρ‹ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ просто забрСсти Π² ΡΠ»ΡƒΡ‡Π°ΠΉΠ½ΡƒΡŽ ΠΏΠ΅Ρ‰Π΅Ρ€Ρƒ, вмСсто этого Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ ΠΈΡΠΊΠ°Ρ‚ΡŒ \"Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹\" Π½Π° повСрхности. Они ΠΌΠΎΠ³ΡƒΡ‚ Π²Ρ‹Π³Π»ΡΠ΄Π΅Ρ‚ΡŒ ΠΊΠ°ΠΊ нСбольшиС ΠΊΠ°ΠΌΠ½ΠΈ, ΠΊΡƒΡ‡ΠΈ ΠΏΡ‹Π»ΠΈ ΠΈΠ»ΠΈ Π΄Π°ΠΆΠ΅ малСнькиС кристалличСскиС Π±ΡƒΡ‚ΠΎΠ½Ρ‹.\n\nНС ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΠΉΡ‚ΠΈ Π½ΠΈΡ‡Π΅Π³ΠΎ, Ρ‡Ρ‚ΠΎ плавится Π² мСдь? ΠŸΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΏΠΎΠΈΡΠΊΠ°Ρ‚ΡŒ Π΄Ρ€ΡƒΠ³ΠΎΠΉ Ρ‚ΠΈΠΏ камня β€” Ρ€Π°Π·Π½Ρ‹Π΅ Ρ€ΡƒΠ΄Ρ‹ ΠΏΠΎΡΠ²Π»ΡΡŽΡ‚ΡΡ Π² Ρ€Π°Π·Π½Ρ‹Ρ… Ρ‚ΠΈΠΏΠ°Ρ… Π³ΠΎΡ€Π½Ρ‹Ρ… ΠΏΠΎΡ€ΠΎΠ΄. ΠŸΠΎΠ»Π½Ρ‹ΠΉ список ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² ΠΊΠ°Ρ‚Π΅Π³ΠΎΡ€ΠΈΠΈ \"Π ΡƒΠ΄Ρ‹ TFG\" вашСго ПолСвого руководства.", + "quests.stone_age.native_ores.desc.2": "ΠŸΠΎΡ‡Π΅ΠΌΡƒ ΠΈΡ… Π½Π°Π·Ρ‹Π²Π°ΡŽΡ‚ ΠΈΠ½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Π°ΠΌΠΈ? Π­Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‡Ρ‚ΠΎ прямо ΠΏΠΎΠ΄ Π½ΠΈΠΌΠΈ находится большая, ΠžΠ“Π ΠžΠœΠΠΠ― ΠΆΠΈΠ»Π° с Ρ‚ΠΎΠΉ ΠΆΠ΅ Ρ€ΡƒΠ΄ΠΎΠΉ, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ нашли Π½Π° повСрхности.Π£ вас Π΅Ρ‰Π΅ Π½Π΅Ρ‚ ΠΊΠΈΡ€ΠΊΠΈ, поэтому Π·Π°ΠΏΠΎΠΌΠ½ΠΈΡ‚Π΅ мСсто, Π³Π΄Π΅ Π²Ρ‹ нашли Ρ€ΡƒΠ΄Ρƒ! ПозТС это ΠΎΡ‡Π΅Π½ΡŒ пригодится.\n\nΠšΠ°ΠΆΠ΄Ρ‹ΠΉ кусочСк стоит ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΆΠ΅, сколько ΠΈ самородок, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ собирайтС ΠΈΡ… ΠΊΠ°ΠΊ ΠΌΠΎΠΆΠ½ΠΎ большС, Π½ΠΎ Π½Π΅ Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Π·Π°ΠΌΠ΅Ρ‚ΠΊΡƒ, Π³Π΄Π΅ Π²Ρ‹ ΠΈΡ… нашли!", + "quests.stone_age.first_saw.title": "ΠœΠ΅Ρ‚Π°Π»Π»ΠΈΡ‡Π΅ΡΠΊΠ°Ρ ΠΏΠΈΠ»Π°", + "quests.stone_age.first_saw.subtitle": "ВрСмя для Ρ‚Π²ΠΎΠ΅Π³ΠΎ ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ мСталличСского инструмСнта", + "quests.stone_age.first_saw.desc.1": "Π§Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ ΠΏΠΈΠ»Ρ‹, Π΄ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ Π² сосуд Π½Π΅ ΠΌΠ΅Π½Π΅Π΅ 144mb Ρ€ΡƒΠ΄Ρ‹ ΠΆΠ΅Π»Π°Π΅ΠΌΠΎΠ³ΠΎ ΠΌΠ΅Ρ‚Π°Π»Π»Π°. ПослС этого помСститС сосуд Π² Π·Π΅ΠΌΠ»ΡΠ½ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ ΠΈ Π·Π°ΠΆΠ³ΠΈΡ‚Π΅ Π΅Π΅.\n\nКогда ΠΏΠ΅Ρ‡ΡŒ ΠΏΡ€ΠΎΠ³ΠΎΡ€ΠΈΡ‚, быстро ΠΏΠΎΠ΄Π½ΠΈΠΌΠΈΡ‚Π΅ сосуд, ΠΏΠΎΠΊΠ° ΠΎΠ½ Π΅Ρ‰Π΅ горячий, Π΄Π΅Ρ€ΠΆΠ° дСрСвянныС ΠΊΠ»Π΅Ρ‰ΠΈ Π² свободной Ρ€ΡƒΠΊΠ΅, ΠΈ взаимодСйствуйтС с Π½ΠΈΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ интСрфСйс Π»ΠΈΡ‚ΡŒΡ. ΠŸΡ€ΠΎΡΡ‚ΠΎ помСститС Ρ„ΠΎΡ€ΠΌΡƒ ΠΏΠΎΠ»ΠΎΡ‚Π½Π° ΠΏΠΈΠ»Ρ‹ Π² слот интСрфСйса Π»ΠΈΡ‚ΡŒΡ ΠΈ Π½Π°Π±Π»ΡŽΠ΄Π°ΠΉΡ‚Π΅, ΠΊΠ°ΠΊ ΠΎΠ½Π° наполняСтся вашим ΠΏΠ΅Ρ€Π²Ρ‹ΠΌ оголовьСм ΠΏΠΈΠ»Ρ‹. ПослС этого соСдинитС оголовьС с ΠΏΠ°Π»ΠΊΠΎΠΉ, ΠΈ Ρƒ вас получится ΠΏΠΈΠ»Π°!", + "quests.stone_age.first_saw.desc.2": "Π₯отя самым простым ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠΌ для Ρ€Π°Π±ΠΎΡ‚Ρ‹ являСтся мСдь, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠΏΡ€ΠΎΠ±ΠΎΠ²Π°Ρ‚ΡŒ свои силы Π² процСссС создания сплавов. Π—Π°Π΄Π°Ρ‡Π° этого квСста ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Π΅Ρ‚ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ ΠΊΠ°ΠΊ ΠΈΠ· ΠΌΠ΅Π΄ΠΈ, Ρ‚Π°ΠΊ ΠΈ ΠΈΠ· сплавов Π±Ρ€ΠΎΠ½Π·Ρ‹.\n\n&lВисмутовая Π±Ρ€ΠΎΠ½Π·Π°&r: МСдь, висмут ΠΈ Ρ†ΠΈΠ½ΠΊ. Бамая слабая ΠΈΠ· Π±Ρ€ΠΎΠ½Π·, Π½ΠΎ Π΅Π΅ Π»Π΅Π³Ρ‡Π΅ всСго ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ.\n\n&lΠ‘Ρ€ΠΎΠ½Π·Π°&r: МСдь ΠΈ ΠΎΠ»ΠΎΠ²ΠΎ. Π­Ρ‚ΠΎ срСдняя ΠΈΠ· Π±Ρ€ΠΎΠ½Π·.\n\n&lЧСрная Π±Ρ€ΠΎΠ½Π·Π°&r: МСдь, Π·ΠΎΠ»ΠΎΡ‚ΠΎ ΠΈ сСрСбро: Π›ΡƒΡ‡ΡˆΠ°Ρ Π±Ρ€ΠΎΠ½Π·Π° Π² Ρ€Π°Π½Π½Π΅ΠΉ ΠΈΠ³Ρ€Π΅, Π½ΠΎ ΠΎΠ½Π° Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π΄ΠΎΡ€ΠΎΠΆΠ΅.", + "quests.stone_age.first_saw.tasks.1": "МСдноС ΠΈΠ»ΠΈ Π±Ρ€ΠΎΠ½Π·ΠΎΠ²ΠΎΠ΅ оголовьС ΠΏΠΈΠ»Ρ‹.", + "quests.stone_age.first_saw.tasks.2": "МСдная ΠΈΠ»ΠΈ бронзовая ΠΏΠΈΠ»Π°.", + "quests.stone_age.craft_lumber.title": "ВрСмя вСрстака", + "quests.stone_age.craft_lumber.subtitle": "ΠšΡ€Π°Ρ„Ρ‚ 3x3 Π² ΠΏΡ€Π΅Π΄Π΅Π»Π°Ρ… досягаСмости", + "quests.stone_age.craft_lumber.desc": "Π‘ΠΎΠ΅Π΄ΠΈΠ½ΠΈΡ‚Π΅ Π½ΠΎΠ²ΡƒΡŽ ΠΏΠΈΠ»Ρƒ с Π±Ρ€Π΅Π²Π½ΠΎΠΌ Π² сСткС ΠΊΡ€Π°Ρ„Ρ‚Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ доски. 4 Доски ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π² доски...\n\n ΠΈ ΠΊΠ°ΠΊ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Ρƒ вас Π±ΡƒΠ΄Π΅Ρ‚ 4 доски, настанСт врСмя ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ваш ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ вСрстак.", + "quests.stone_age.workbench.title": "ВСрстак", + "quests.stone_age.workbench.subtitle": "Π­Ρ‚ΠΎ... стол для ΠΊΡ€Π°Ρ„Ρ‚Π°", + "quests.stone_age.workbench.desc": "ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»ΡΠ΅ΠΌ! Π‘ вашим вСрстаком Π²Ρ‹ ΠΎΡ„ΠΈΡ†ΠΈΠ°Π»ΡŒΠ½ΠΎ вступили Π½Π° ΠΏΠΈΠΊ ΠΊΠ°ΠΌΠ΅Π½Π½ΠΎΠ³ΠΎ Π²Π΅ΠΊΠ°. Π‘ Π΅Π³ΠΎ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π²Ρ‹ смоТСтС ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ мноТСство Π½ΠΎΠ²Ρ‹Ρ… Π²Π΅Ρ‰Π΅ΠΉ ΠΈΠ· собранных ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ².\n\nНаступаСт ваша главная Ρ†Π΅Π»ΡŒ Π² ΠŸΠ΅Ρ€Π²ΠΎΠ±Ρ‹Ρ‚Π½ΠΎΠΌ Π²Π΅ΠΊΠ΅: ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½Π°Ρ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° ΠΌΠ΅Ρ‚Π°Π»Π»Π° с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΌΠ΅Π΄Π½ΠΎΠΉ наковальни.\n\nΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅: Π₯отя Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ достаточно ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ², Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ 14 слитков Π±Ρ€ΠΎΠ½Π·Ρ‹ прямо сСйчас, Π²Ρ‹ Π½Π΅ смоТСтС ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΈΡ… Π² Π±Ρ€ΠΎΠ½Π·ΠΎΠ²ΡƒΡŽ наковальню, Π½Π΅ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΠ² сначала ΠΌΠ΅Π΄Π½ΡƒΡŽ, ΠΈΠ·Π²ΠΈΠ½ΠΈΡ‚Π΅! По ΠΊΡ€Π°ΠΉΠ½Π΅ΠΉ ΠΌΠ΅Ρ€Π΅, наковальни ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π²Ρ‹ Π½ΠΈΡ‡Π΅Π³ΠΎ Π½Π΅ потСряСтС.", + "quests.stone_age.inventory.title": "Π’Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹ хранСния Π½Π° Ρ€Π°Π½Π½ΠΈΡ… этапах", + "quests.stone_age.inventory.subtitle": "ΠŸΠΎΡ€Π° ΠΏΠ΅Ρ€Π΅ΡΡ‚Π°Ρ‚ΡŒ Π½ΠΎΡΠΈΡ‚ΡŒ вСсь свой Ρ…Π»Π°ΠΌ Π² сосудах", + "quests.stone_age.inventory.desc": "Π’ Ρ€Π°Π½Π½Π΅ΠΉ ΠΈΠ³Ρ€Π΅ Π²Π°ΠΌ доступны 4 простых Ρ€Π΅ΡˆΠ΅Π½ΠΈΡ для хранСния Π²Π΅Ρ‰Π΅ΠΉ:\n\n&lΠ‘ΡƒΠ½Π΄ΡƒΠΊ&r: Π‘ΡƒΠ½Π΄ΡƒΠΊΠΈ Π΄Π΅ΡˆΠ΅Π²Ρ‹ ΠΈ просты Π² ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠΈ, Π½ΠΎ ΠΈΠΌΠ΅ΡŽΡ‚ всСго 18 слотов ΠΈ Π½Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π²ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π½ΠΈΡ‡Π΅Π³ΠΎ большого ΠΈΠ»ΠΈ ΠΊΡ€ΡƒΠΏΠ½ΠΎΠ³ΠΎ.\n\n&lΠ―Ρ‰ΠΈΠΊ&r: Π―Ρ‰ΠΈΠΊΠΈ - это ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΡ‡Π½Ρ‹Π΅ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°, самыС Π΄Π΅ΡˆΠ΅Π²Ρ‹Π΅ ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΈΠΌΠ΅ΡŽΡ‚ 27 слотов, Π½ΠΎ ΠΈΡ… ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ стоит Π΄ΠΎΡ€ΠΎΠΆΠ΅.\n\n&lГрузовая Ρ‚Π΅Π»Π΅ΠΆΠΊΠ°&r: Грузовая Ρ‚Π΅Π»Π΅ΠΆΠΊΠ° ΠΈΠΌΠ΅Π΅Ρ‚ ΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹ΠΉ Ρ€Π°Π·ΠΌΠ΅Ρ€ - 54 слота, Π΅Π΅ ΠΌΠΎΠΆΠ½ΠΎ Π½ΠΎΡΠΈΡ‚ΡŒ с собой, Π½ΠΎ ΠΎΠ½Π° Π·Π°Π½ΠΈΠΌΠ°Π΅Ρ‚ ΠΌΠ½ΠΎΠ³ΠΎ мСста.\n\n&lΠ‘ΠΎΠ»ΡŒΡˆΠΈΠ΅ сосуды&r: Π‘Π°ΠΌΡ‹Π΅ Π΄Π΅ΡˆΠ΅Π²Ρ‹Π΅ Π² ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠΈ, Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π³Π»ΠΈΠ½Ρƒ ΠΈ идСально подходят для сохранСния ΠΏΠΈΡ‰ΠΈ. Доступны Π² ΡˆΠΈΡ€ΠΎΠΊΠΎΠΌ Ρ€Π°Π·Π½ΠΎΠΎΠ±Ρ€Π°Π·ΠΈΠΈ Ρ†Π²Π΅Ρ‚ΠΎΠ²!", + "quests.stone_age.portable_storage.title": "ΠŸΠ΅Ρ€Π΅Π½ΠΎΡΠΈΠΌΠΎΠ΅ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅?", + "quests.stone_age.portable_storage.subtitle": "ΠŸΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ Π·Π°ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ Ρ…Π»Π°ΠΌΠΎΠΌ β€” отстой", + "quests.stone_age.portable_storage.desc": "Π’ Π³Π»Π°Π²Π΅ &lΠ‘ΠΎΠ²Π΅Ρ‚Ρ‹ TerraFirmaGreg&r Π΅ΡΡ‚ΡŒ Ρ€Π°Π·Π΄Π΅Π», посвящСнный Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹ΠΌ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π°ΠΌ пСрСносных Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰, ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰ΠΈΡ… Ρ€Π°ΡΡˆΠΈΡ€ΠΈΡ‚ΡŒ количСство ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½ΠΎΡΠΈΡ‚ΡŒ с собой, ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΡƒΡ ΠΏΠΎ ΠΌΠΈΡ€Ρƒ. Если Π²Π°ΠΌ Ρ‚Ρ€ΡƒΠ΄Π½ΠΎ Π½Π°ΠΉΡ‚ΠΈ квСсты, ΠΎΠ½ΠΈ находятся Π½Π° самой ΠΏΡ€Π°Π²ΠΎΠΉ спицС Π΄Π΅Ρ€Π΅Π²Π°.", + "quests.stone_age.barrels.title": "Π‘ΠΎΡ‡ΠΊΠΈ", + "quests.stone_age.barrels.subtitle": "Π‘Ρ‚Π΅Ρ„Π°Π½ΠΎ?", + "quests.stone_age.barrels.desc": "Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ ванильного Π°Π½Π°Π»ΠΎΠ³Π°, Π±ΠΎΡ‡ΠΊΠΈ здСсь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ ΠΊΠ°ΠΊ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ ТидкостСй. Π’ Π±ΠΎΡ‡ΠΊΠ°Ρ… ΠΌΠΎΠΆΠ½ΠΎ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Π² ΠΎΠ±Ρ‰Π΅ΠΉ слоТности 10 Π²Π΅Π΄Π΅Ρ€ Тидкости, Ρ‡Ρ‚ΠΎ позволяСт ΠΎΡ‚Π½ΠΎΡΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ просто Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Тидкости.\n\nΠ’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΊΠΎΠΌΠ±ΠΈΠ½ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ эти Тидкости с Π΄Ρ€ΡƒΠ³ΠΈΠΌΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°ΠΌΠΈ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Ρ‚Π°ΠΊΠΈΠ΅ Π²Π΅Ρ‰ΠΈ, ΠΊΠ°ΠΊ ΠΊΠΎΠΆΠ°, ΠΊΠ»Π΅ΠΉ, ΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ раствор ΠΈ ΠΌΠ½ΠΎΠ³ΠΎΠ΅ Π΄Ρ€ΡƒΠ³ΠΎΠ΅.", + "quests.stone_age.leather.title": "КоТа", + "quests.stone_age.leather.subtitle": "Π”Π°ΠΆΠ΅ Ρ‚ΡƒΡ‚ Π±Π΅Π· слоТностСй Π½Π΅ обошлось", + "quests.stone_age.leather.desc": "ПослС убийства Π΄ΠΈΠΊΠΈΠ΅ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅ ΡΠ±Ρ€Π°ΡΡ‹Π²Π°ΡŽΡ‚ ΡΡ‹Ρ€ΡƒΡŽ ΡˆΠΊΡƒΡ€Ρƒ. Π¨ΠΊΡƒΡ€Ρƒ нСльзя ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΊΠΎΠΆΡƒ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ, Π΅Π΅ Π½ΡƒΠΆΠ½ΠΎ сначала ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ.\n\nКоТа, ΠΊΠ°ΠΊ Π³Π»ΠΈΠ½Π° ΠΈ камСнь, ΠΌΠΎΠΆΠ½ΠΎ ΠΎΠ±Ρ‚Π΅ΡΡ‹Π²Π°Ρ‚ΡŒ. ΠžΠ±Ρ‚Π΅ΡΡ‹Π²Π°Π½ΠΈΠ΅ ΠΊΠΎΠΆΠΈ способствуСт созданию Ρ‚Π°ΠΊΠΈΡ… Π²Π΅Ρ‰Π΅ΠΉ ΠΊΠ°ΠΊ: КоТаная броня, фляги ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅.\nЕсли Π²Ρ‹ Π½Π΅ ΠΆΠ΅Π»Π°Π΅Ρ‚Π΅ ΡƒΠ±ΠΈΠ²Π°Ρ‚ΡŒ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ… Ρ€Π°Π΄ΠΈ ΠΈΡ… ΡˆΠΊΡƒΡ€Ρ‹ ΠΈ ΠΏΡ€ΠΎΠΆΠΈΠ²Π°Π΅Ρ‚Π΅ Π² тропичСской Π·ΠΎΠ½Π΅, Ρ‚ΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΠ±Ρ€Π°Π±ΠΎΠ²Π°Ρ‚ΡŒ ананас, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Π°Π½Π°Π½Π°ΡΠΎΠ²ΡƒΡŽ ΠΊΠΎΠΆΡƒ, которая являСтся Π·Π°ΠΌΠ΅Π½ΠΎΠΉ ΠΊΠΎΠΆΠΈ.", + "quests.stone_age.leather_armor.title": "КоТаная броня", + "quests.stone_age.leather_armor.subtitle": "ΠžΡ‡Π΅Π½ΡŒ Π½Π°Ρ‡Π°Π»ΡŒΠ½Π°Ρ Π·Π°Ρ‰ΠΈΡ‚Π°", + "quests.stone_age.leather_armor.desc": "КоТаная броня, ΠΊΠ°ΠΊ ΠΈ Π΅Π΅ Π°Π½Π°Π»ΠΎΠ³ Π² minecraft, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π² качСствС Π±Π°Π·ΠΎΠ²ΠΎΠ³ΠΎ Π½Π°Π±ΠΎΡ€Π° Π±Ρ€ΠΎΠ½ΠΈ. Она, ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ, ΠΈ Π½Π΅ Π΄Π°Π΅Ρ‚ ΠΌΠ½ΠΎΠ³ΠΎΠ³ΠΎ, Π½ΠΎ Π² Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ стСпСни Π·Π°Ρ‰ΠΈΡ‚ΠΈΡ‚ вас ΠΎΡ‚ Π½Π΅ΠΏΠΎΠ³ΠΎΠ΄Ρ‹ ΠΈ обСспСчит сопротивлСниС ΠΊ Ρ€Π΅ΠΆΡƒΡ‰Π΅ΠΌΡƒ ΡƒΡ€ΠΎΠ½Ρƒ.", + "quests.stone_age.mining_prep.title": "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΊΠ° ΠΊ Π΄ΠΎΠ±Ρ‹Ρ‡Π΅", + "quests.stone_age.mining_prep.subtitle": "НадСюсь, Ρ‚Ρ‹ Π·Π°ΠΏΠΎΠΌΠ½ΠΈΠ», Π³Π΄Π΅ Π½Π°Ρ…ΠΎΠ΄ΠΈΠ» эти Ρ€ΡƒΠ΄Π½Ρ‹Π΅ ΠΈΠ½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹!", + "quests.stone_age.mining_prep.desc.1": "Π§Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚ΡŒΡΡ Π·Π° ΠΏΡ€Π΅Π΄Π΅Π»Ρ‹ ΠΊΠ°ΠΌΠ΅Π½Π½ΠΎΠ³ΠΎ Π²Π΅ΠΊΠ°, потрСбуСтся ΠΌΠ½ΠΎΠ³ΠΎ ΠΌΠ΅Ρ‚Π°Π»Π»Π°, ΠΈ просто ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ ΠΌΠ΅Π»ΠΊΠΈΠ΅ Ρ€ΡƒΠ΄Ρ‹ Π½Π° повСрхности Π±ΡƒΠ΄Π΅Ρ‚ нСдостаточно. Π’Π°ΠΌ придСтся ΡΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒΡΡ Π²Π½ΠΈΠ· ΠΈ Π½Π°Ρ‡Π°Ρ‚ΡŒ Π΄ΠΎΠ±Ρ‹Ρ‡Ρƒ.\nΠŸΡ€Π΅Π΄ΠΏΠΎΠ»ΠΎΠΆΠΈΠΌ, Π²Ρ‹ &oΠΎΡ‚ΠΌΠ΅Ρ‚ΠΈΠ»ΠΈ&r мСсто, Π³Π΄Π΅ нашли мСдь, Π½Π°ΠΉΠ΄ΠΈΡ‚Π΅ ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ сСрСдину, Π³Π΄Π΅ Π±Ρ‹Π»ΠΈ ΠΈΠ½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹, ΠΈ Π½Π°Ρ‡ΠΈΠ½Π°ΠΉΡ‚Π΅ ΠΊΠΎΠΏΠ°Ρ‚ΡŒ! Π­Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ довольно Π³Π»ΡƒΠ±ΠΎΠΊΠΎ, Π½ΠΎ Π² ΠΊΠΎΠ½Ρ†Π΅ ΠΊΠΎΠ½Ρ†ΠΎΠ² Π²Ρ‹ Ρ€Π°Π·Π±ΠΎΠ³Π°Ρ‚Π΅Π΅Ρ‚Π΅. На ΡΠ»Π΅Π΄ΡƒΡŽΡ‰Π΅ΠΉ страницС Π²Ρ‹ Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ ΠΎΠ±ΠΎΡ€ΡƒΠ΄ΠΎΠ²Π°Π½ΠΈΠ΅, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π½ΡƒΠΆΠ½ΠΎ Π²Π·ΡΡ‚ΡŒ с собой Π² ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ ΠΏΠΎΡ…ΠΎΠ΄ Π½Π° ΡˆΠ°Ρ…Ρ‚Ρƒ!", + "quests.stone_age.mining_prep.desc.2": "&lΠšΠΈΡ€ΠΊΠ°&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": "Помимо монстров, самой большой ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠΎΠΉ ΠΏΡ€ΠΈ Π΄ΠΎΠ±Ρ‹Ρ‡Π΅ являСтся Π±ΠΎΡ€ΡŒΠ±Π° с ΠΎΠ±Ρ€ΡƒΡˆΠ΅Π½ΠΈΡΠΌΠΈ. Если ΠΏΠΎΠ΄ Π±Π»ΠΎΠΊΠΎΠΌ сырой ΠΏΠΎΡ€ΠΎΠ΄Ρ‹ ΠΈΠ»ΠΈ Ρ€ΡƒΠ΄Ρ‹ Π΅ΡΡ‚ΡŒ Π²ΠΎΠ·Π΄ΡƒΡ…, ΠΎΠ½ считаСтся \"Π±Π΅Π·ΠΎΠΏΠΎΡ€Π½Ρ‹ΠΌ\" ΠΈ ΠΈΠΌΠ΅Π΅Ρ‚ шанс Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΎΠ±Π²Π°Π» ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ€Π°Π·, ΠΊΠΎΠ³Π΄Π° Π±ΡƒΠ΄Π΅Ρ‚ Π΄ΠΎΠ±Ρ‹Ρ‚ сосСдний Π±Π»ΠΎΠΊ. ΠŸΠΎΡ‚ΠΎΠ»ΠΊΠΈ ΠΏΠ΅Ρ‰Π΅Ρ€ ΠΏΠΎΠΊΡ€Ρ‹Ρ‚Ρ‹ ΡƒΠΊΡ€Π΅ΠΏΠ»Π΅Π½Π½ΠΎΠΉ ΠΏΠΎΡ€ΠΎΠ΄ΠΎΠΉ, которая Π½Π΅ Π²Ρ‹Π·Ρ‹Π²Π°Π΅Ρ‚ ΠΎΠ±Π²Π°Π»Π°. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ±Π»Π΅Π³Ρ‡ΠΈΡ‚ΡŒ Π΄ΠΎΠ±Ρ‹Ρ‡Ρƒ, самоС бСзопасноС, Ρ‡Ρ‚ΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ, - это просто Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ ΠΏΠΎΠ», Π½ΠΎ Ссли Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ бСзопасно Π΄ΠΎΠ±Ρ‹Π²Π°Ρ‚ΡŒ Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ Π΅Ρ‰Π΅, Π²Π°ΠΌ придСтся Π½Π°ΡƒΡ‡ΠΈΡ‚ΡŒΡΡ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΎΠΏΠΎΡ€Ρ‹! Они ΡΠΎΠ·Π΄Π°ΡŽΡ‚ΡΡ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π±Ρ€Π΅Π²Π΅Π½ ΠΈ ΠΏΠΈΠ»Ρ‹.", + "quests.stone_age.hazards.desc.2": "Π’ ПолСвом руководствС Π΅ΡΡ‚ΡŒ большС подробностСй ΠΈ ΠΈΠ·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΠΉ ΠΎ Ρ‚ΠΎΠΌ, ΠΊΠ°ΠΊ ΠΈΠΌΠ΅Π½Π½ΠΎ Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚ ΠΎΠΏΠΎΡ€Ρ‹, Π½ΠΎ Π²ΠΊΡ€Π°Ρ‚Ρ†Π΅: Ρ€Π°Π·ΠΌΠ΅Ρ‰Π°ΠΉΡ‚Π΅ ΠΈΡ… Π²ΠΎΡ‚ Ρ‚Π°ΠΊ, Π² ΠΏΡ€Π΅Π΄Π΅Π»Π°Ρ… Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅Ρ… Π±Π»ΠΎΠΊΠΎΠ² Π΄Ρ€ΡƒΠ³ ΠΎΡ‚ Π΄Ρ€ΡƒΠ³Π°. Волько Π²Π΅Ρ€Ρ…Π½ΠΈΠ΅ Π²Π΅Ρ€Ρ‚ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ Π±Π°Π»ΠΊΠΈ Π±ΡƒΠ΄ΡƒΡ‚ фактичСски ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ Ρ‡Ρ‚ΠΎ-Π»ΠΈΠ±ΠΎ, ΠΈ ΠΎΠ½ΠΈ ΠΈΠΌΠ΅ΡŽΡ‚ нСбольшой радиус.", + "quests.stone_age.medical_conditions.title": "ΠœΠ΅Π΄ΠΈΡ†ΠΈΠ½ΡΠΊΠΈΠ΅ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚Π΅Π»ΠΈ", + "quests.stone_age.medical_conditions.subtitle": "НС Π΅ΡˆΡŒΡ‚Π΅ асбСст", + "quests.stone_age.medical_conditions.desc.1": "Π‘ΡƒΠ΄ΡŒΡ‚Π΅ остороТны с Ρ‚Π΅ΠΌ, Ρ‡Ρ‚ΠΎ ΠΏΠΎΠ΄Π±ΠΈΡ€Π°Π΅Ρ‚Π΅! НС всС Ρ€ΡƒΠ΄Ρ‹ ΠΈΠ»ΠΈ ΠΏΡ‹Π»ΠΈ бСзопасны для прикосновСния, ΠΈ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΈΠ· Π½ΠΈΡ… ΠΌΠΎΠ³ΡƒΡ‚ привСсти ΠΊ ΡƒΡ…ΡƒΠ΄ΡˆΠ΅Π½ΠΈΡŽ вашСго &6мСдицинского состояния&r.\n\nВсё &cОпасноС&r ΡƒΠΊΠ°Π·Π°Π½ΠΎ Π² описании ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Ссли Π²Ρ‹ Π²Π½Π΅Π·Π°ΠΏΠ½ΠΎ Π·Π°ΠΌΠ΅Ρ‚ΠΈΡ‚Π΅ появлСниС Π΄Π΅Π±Π°Ρ„Ρ„Π°, Π½Π΅ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎ ΡƒΠ±Π΅Ρ€ΠΈΡ‚Π΅ этот ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ ΠΈΠ· своСго инвСнтаря! Π₯Ρ€Π°Π½Π΅Π½ΠΈΠ΅ Π΅Π³ΠΎ Π²Π½ΡƒΡ‚Ρ€ΠΈ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Π°, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, Π² ΠΌΠ°Π»ΠΎΠΌ сосудС ΠΈΠ»ΠΈ Ρ€ΡŽΠΊΠ·Π°ΠΊΠ΅, бСзопасно.\n\nΠ‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ этих эффСктов со Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ проходят сами ΠΏΠΎ сСбС, Π½ΠΎ Ссли ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ ΠΈΠΌ Π½Π°ΠΊΠΎΠΏΠΈΡ‚ΡŒΡΡ, Π²Ρ‹ Π½Π°Ρ‡Π½Ρ‘Ρ‚Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π°Ρ‚ΡŒ мноТСство Π΄Ρ€ΡƒΠ³ΠΈΡ… нСприятных эффСктов, Π²ΠΏΠ»ΠΎΡ‚ΡŒ Π΄ΠΎ &cсмСрти&r.", + "quests.stone_age.medical_conditions.desc.2": "Π‘ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ Π²Π°ΠΌ всё ΠΆΠ΅ придётся Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ с Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΌΠΈ ΠΈΠ· этих ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ², поэтому Ρƒ вас Π΅ΡΡ‚ΡŒ способы ΠΎΠ±Π΅Π·ΠΎΠΏΠ°ΡΠΈΡ‚ΡŒ сСбя.\n\nΠ›ΡƒΡ‡ΡˆΠΈΠΉ способ β€” это Π²ΠΎΠΎΠ±Ρ‰Π΅ Π½Π΅ Π΄ΠΎΠΏΡƒΡΠΊΠ°Ρ‚ΡŒ развития Π±ΠΎΠ»Π΅Π·Π½Π΅ΠΉ: ΠœΠ΅Π΄ΠΈΡ†ΠΈΠ½ΡΠΊΠ°Ρ маска ΠΈ Π Π΅Π·ΠΈΠ½ΠΎΠ²Ρ‹Π΅ ΠΏΠ΅Ρ€Ρ‡Π°Ρ‚ΠΊΠΈ прСдотвратят ΠΎΠΏΠ°ΡΠ½ΠΎΡΡ‚ΡŒ вдыхания ΠΈ Ρ‚Π°ΠΊΡ‚ΠΈΠ»ΡŒΠ½ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ‚Π°ΠΊΡ‚Π° соотвСтствСнно.\n\nΠ’Ρ‚ΠΎΡ€ΠΎΠΉ ΠΏΠΎ эффСктивности способ β€” Π»Π΅Ρ‡Π΅Π½ΠΈΠ΅: ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ Π½Π° &aПилюли, Π’Π°Π±Π»Π΅Ρ‚ΠΊΠΈ ΠΈ Мази&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ. ВсС ΠΎΠ½ΠΈ ΠΏΠΎΠΌΠΎΠ³Π°ΡŽΡ‚ Π»Π΅Ρ‡ΠΈΡ‚ΡŒ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½Ρ‹Π΅ эффСкты (ΠΈ Π΄Π°ΡŽΡ‚ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Π΅ Π±Π°Ρ„Ρ„Ρ‹!), хотя Ρƒ Π±ΠΎΠ»Π΅Π΅ ΡΠΈΠ»ΡŒΠ½Ρ‹Ρ… лСкарств Π΅ΡΡ‚ΡŒ ΠΈ нСприятныС ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Π΅ эффСкты.", + "quests.stone_age.medical_conditions.task": "Π‘Π°ΠΌ сСбС Π²Ρ€Π°Ρ‡", + "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.subtitle": "НСт, это Π½Π΅ просто \"КамСнь\"", + "quests.stone_age.get_raw_rock.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΌΠ΅Π΄Π½ΡƒΡŽ наковальню, Π²Π°ΠΌ понадобится базовая камСнная наковальня ΠΈ ΡƒΠ³ΠΎΠ»ΡŒΠ½Π°Ρ кузня. Π§Ρ‚ΠΎΠ±Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΠΊΠ°ΠΌΠ΅Π½Π½ΡƒΡŽ наковальню, Π²Π°ΠΌ понадобится Π±Π»ΠΎΠΊ сырой вулканичСской ΠΏΠΎΡ€ΠΎΠ΄Ρ‹.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΡΡ‹Ρ€ΡƒΡŽ ΠΏΠΎΡ€ΠΎΠ΄Ρƒ, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π°ΠΊΠΊΡƒΡ€Π°Ρ‚Π½ΠΎ Ρ€Π°Π·Π±ΠΈΡ‚ΡŒ Π±Π»ΠΎΠΊΠΈ &lΠ²ΠΎΠΊΡ€ΡƒΠ³&r сырой ΠΏΠΎΡ€ΠΎΠ΄Ρ‹, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ Π΄ΠΎΠ±Ρ‹Ρ‚ΡŒ. Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ всС 6 сторон сырой ΠΏΠΎΡ€ΠΎΠ΄Ρ‹ окаТутся ΠΏΠΎΠ΄ воздСйствиСм Π²ΠΎΠ·Π΄ΡƒΡ…Π°, ΠΎΠ½Π° Π²Ρ‹ΠΏΠ°Π΄Π΅Ρ‚ Π² Π²ΠΈΠ΄Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°. И Π½Π°ΠΊΠΎΠ½Π΅Ρ†, Ρ‰Π΅Π»ΠΊΠ½ΠΈΡ‚Π΅ ПКМ ΠΏΠΎ Π±Π»ΠΎΠΊΡƒ сырой вулканичСской ΠΏΠΎΡ€ΠΎΠ΄Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π΅Π³ΠΎ Π² ΠΊΠ°ΠΌΠ΅Π½Π½ΡƒΡŽ наковальню.", + "quests.stone_age.create_forge.title": "ΠšΡƒΠ·Π½ΠΈΡ†Π°", + "quests.stone_age.create_forge.subtitle": "ΠœΠ΅ΠΆΠ΄Ρƒ ΠΏΡ€ΠΎΡ‡Π΅ΠΌ, Fabric Ρ‚ΡƒΡ‚ Π½ΠΈ ΠΏΡ€ΠΈΡ‡Π΅ΠΌ.", + "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.quern.title": "Π–Π΅Ρ€Π½ΠΎΠ²", + "quests.stone_age.quern.subtitle": "Π’Π°Ρˆ ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ шаг ΠΊ ΠΎΠ±ΠΎΠ³Π°Ρ‰Π΅Π½ΠΈΡŽ Ρ€ΡƒΠ΄Ρ‹", + "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": "Π–Π΅Ρ€Π½ΠΎΠ² - это Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ шаг ΠΊ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠ΅ Ρ€ΡƒΠ΄Ρ‹! ΠŸΡ€Π°Π²ΠΈΠ»ΡŒΠ½Π°Ρ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄Ρ‹ - это большой ΠΈ слоТный Π·Π²Π΅Ρ€ΡŒ, ΠΎ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌ Π²Ρ‹ ΡƒΠ·Π½Π°Π΅Ρ‚Π΅ большС ΠΏΠΎ ΠΌΠ΅Ρ€Π΅ продвиТСния, ΠΈ с Π΅Π³ΠΎ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ Π³ΠΎΡ€Π°Π·Π΄ΠΎ большС ΠΏΠΎΠ»Π΅Π·Π½ΠΎΠ³ΠΎ ΠΌΠ΅Ρ‚Π°Π»Π»Π° ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΏΠΎΠ±ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ² ΠΈΠ· ΠΊΠ°ΠΆΠ΄ΠΎΠΉ Π΄ΠΎΠ±Ρ‹Ρ‚ΠΎΠΉ Π²Π°ΠΌΠΈ Ρ€ΡƒΠ΄Ρ‹. Для Π½Π°Ρ‡Π°Π»Π° ΠΌΡ‹ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΠΌ Π΄ΠΎΠ±Ρ‹Ρ‚ΡƒΡŽ Π²Π°ΠΌΠΈ Ρ€ΡƒΠ΄Ρƒ Π² Π΄Ρ€ΠΎΠ±Π»Π΅Π½ΡƒΡŽ, пропустив Π΅Π΅ Ρ‡Π΅Ρ€Π΅Π· ΠΆΠ΅Ρ€Π½ΠΎΠ². Π£ΠΆΠ΅ этого ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ шага достаточно, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ количСство 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Π­Ρ‚ΠΎ всС ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹ΠΌ ΠΈ ΡƒΡ‚ΠΎΠΌΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ ΠΏΠΎΠΊΠ°, Π½ΠΎ вскорС Π²Ρ‹ ΠΎΡ‚ΠΊΡ€ΠΎΠ΅Ρ‚Π΅ способы Π΄Π΅Π»Π°Ρ‚ΡŒ это быстрСС ΠΈ автоматичСски!", + "quests.stone_age.clean_dust.title": "Ранняя ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Ρ€ΡƒΠ΄Ρ‹ - Π§Π°ΡΡ‚ΡŒ 3", + "quests.stone_age.clean_dust.subtitle": "ΠŸΡ€ΠΎΠΌΠΎΠΉΡ‚Π΅ эту Π³Ρ€ΡΠ·Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ", + "quests.stone_age.clean_dust.desc": "НаконСц, Ссли Π±Ρ€ΠΎΡΠΈΡ‚ΡŒ Π³Ρ€ΡΠ·Π½ΡƒΡŽ ΠΈΠ»ΠΈ ΠΎΡ‡ΠΈΡ‰Π΅Π½Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ Π² Π²ΠΎΠ΄Ρƒ ΠΈ ΠΎΡΡ‚Π°Π²ΠΈΡ‚ΡŒ Π½Π° нСсколько сСкунд, ΠΎΠ½Π° вымоСтся ΠΈ прСвратится Π² ΠΏΡ‹Π»ΡŒ, которая ΠΈ Π±ΡƒΠ΄Π΅Ρ‚ ΠΎΠΊΠΎΠ½Ρ‡Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎΠΉ Ρ„ΠΎΡ€ΠΌΠΎΠΉ вашСй Ρ€ΡƒΠ΄Ρ‹. Π’Π΅ΠΏΠ΅Ρ€ΡŒ ΠΎΠ½Π° ΠΌΠΎΠΆΠ΅Ρ‚ ΡΡ‚ΠΎΠΈΡ‚ΡŒ ΠΊΠ°ΠΊ Ρ†Π΅Π»Ρ‹ΠΉ слиток!", + "quests.stone_age.flux.title": "Ѐлюс", + "quests.stone_age.flux.subtitle": "По сути, это ΠΊΠ»Π΅ΠΉ для ΠΌΠ΅Ρ‚Π°Π»Π»Π°", + "quests.stone_age.flux.desc": "Ѐлюс β€” это ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π», ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π² основном ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ Π² ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠ΅ для сварки, хотя Ρƒ Π½Π΅Π³ΠΎ Π΅ΡΡ‚ΡŒ ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ примСнСния.\nНСкоторыС Π²ΠΈΠ΄Ρ‹ Π³ΠΎΡ€Π½Ρ‹Ρ… ΠΏΠΎΡ€ΠΎΠ΄, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ ΠΌΠ΅Π», извСстняк ΠΈ ΠΌΡ€Π°ΠΌΠΎΡ€, Π° Ρ‚Π°ΠΊΠΆΠ΅ Ρ€Π°ΠΊΠΎΠ²ΠΈΠ½Ρ‹ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… морских ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ…, ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡Π΅Π½Ρ‹ для получСния Ρ„Π»ΡŽΡΠ°.", + "quests.stone_age.weld_copper_ingots.title": "Π‘Π²Π°Ρ€ΠΈΠ²Π°Π½ΠΈΠ΅ ΠΌΠ΅Π΄ΠΈ", + "quests.stone_age.weld_copper_ingots.subtitle": "На волоскС Π΄ΠΎ ΠΌΠ΅Π΄Π½ΠΎΠΉ наковальни", + "quests.stone_age.weld_copper_ingots.desc": "Π—Π°ΠΆΠ³ΠΈΡ‚Π΅ ΠΊΡƒΠ·Π½ΠΈΡ†Ρƒ ΠΈ Π΄Π°ΠΉΡ‚Π΅ Π΅ΠΉ ΠΊΠ°ΠΊ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ 2 ΠΌΠ΅Π΄Π½Ρ‹Ρ… слитка. Π‘Π»Π΅Π΄ΠΈΡ‚Π΅ Π·Π° ΠΈΡ… подсказкой, ΠΏΠΎΠΊΠ° ΠΎΠ½ΠΈ Π½Π°Π³Ρ€Π΅Π²Π°ΡŽΡ‚ΡΡ - ΠΊΠ°ΠΊ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ½ΠΈ Π½Π°Π³Ρ€Π΅ΡŽΡ‚ΡΡ, ΠΎΠ½Π° ΠΏΠΎΠΊΠ°ΠΆΠ΅Ρ‚ \"МоТно ΠΊΠΎΠ²Π°Ρ‚ΡŒ\", Π½ΠΎ Π½Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ ΠΏΠΎΠ΄ΠΎΠΆΠ΄Π°Ρ‚ΡŒ, ΠΏΠΎΠΊΠ° ΠΎΠ½ΠΈ Π½Π΅ Π΄ΠΎΠΉΠ΄ΡƒΡ‚ Π΄ΠΎ \"МоТно ΡΠ²Π°Ρ€ΠΈΡ‚ΡŒ\", Ρ‚ΠΎ Π΅ΡΡ‚ΡŒ Π΄ΠΎ Ρ‚ΠΎΡ‡ΠΊΠΈ плавлСния.\n\nКогда ΠΎΠ½ΠΈ достигнут Π΅Π΅, быстро Π²Ρ‹Ρ‚Π°Ρ‰ΠΈΡ‚Π΅ ΠΈΡ… ΠΈΠ· ΠΊΡƒΠ·Π½ΠΈΡ†Ρ‹ (Π΄Π΅Ρ€ΠΆΠ° Π² свободной Ρ€ΡƒΠΊΠ΅ дСрСвянныС ΠΊΠ»Π΅Ρ‰ΠΈ!) ΠΈ помСститС Π² интСрфСйс ΠΊΠ°ΠΌΠ΅Π½Π½ΠΎΠΉ наковальни, вмСстС с нСбольшим количСством Ρ„Π»ΡŽΡΠ°. И Π½Π°ΠΊΠΎΠ½Π΅Ρ†, Ρ‰Π΅Π»ΠΊΠ½ΠΈΡ‚Π΅ ПКМ ΠΏΠΎ наковальнС, ΠΏΠΎΠΊΠ° Π²Ρ‹ ΠΊΡ€Π°Π΄Π΅Ρ‚Π΅ΡΡŒ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ²Π°Ρ€ΠΈΡ‚ΡŒ Π΄Π²Π° слитка вмСстС, ΠΏΠΎΠΊΠ° ΠΎΠ½ΠΈ Π΅Ρ‰Π΅ горячиС. Π§Ρ‚ΠΎΠ±Ρ‹ Π½ΠΎΠ²Ρ‹ΠΉ Π΄Π²ΠΎΠΉΠ½ΠΎΠΉ слиток быстрСС остыл, ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π²ΠΎΠ΄Ρƒ ΠΈΠ»ΠΈ снСг.", + "quests.metal_age.copper_anvil.title": "T1 Наковальня: МСдь", + "quests.metal_age.copper_anvil.subtitle": "ВсС Π²Π΅Π»ΠΎ ΠΊ этому!", + "quests.metal_age.copper_anvil.desc": "ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»ΡΠ΅ΠΌ! Π’Ρ‹ ΠΎΡ„ΠΈΡ†ΠΈΠ°Π»ΡŒΠ½ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠΈΠ»ΠΈ ΠΊΠ°ΠΌΠ΅Π½Π½Ρ‹ΠΉ Π²Π΅ΠΊ ΠΈ вступили Π² Π²Π΅ΠΊ ΠΌΠ΅Ρ‚Π°Π»Π»ΡƒΡ€Π³ΠΈΠΈ! ΠŸΠΎΠ»ΡƒΡ‡ΠΈΠ² ΠΌΠ΅Π΄Π½ΡƒΡŽ наковальню, Π²Ρ‹ смоТСтС ΠΏΠΎΠ»ΡƒΡ‡Π°Ρ‚ΡŒ ΡΠ»Π΅Π΄ΡƒΡŽΡ‰ΠΈΠ΅ ΡƒΡ€ΠΎΠ²Π½ΠΈ наковальни, ΠΈ ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ Ρ€Π°Π·, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ Π±ΡƒΠ΄Π΅Ρ‚Π΅ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Ρ‚ΡŒ Π½ΠΎΠ²Ρ‹ΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ, Π²Π°ΠΌ Π±ΡƒΠ΄ΡƒΡ‚ доступны Π½ΠΎΠ²Ρ‹Π΅ инструмСнты ΠΈ возмоТности, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΡΠ΄Π΅Π»Π°ΡŽΡ‚ Π²Π°ΡˆΡƒ Тизнь всС ΠΏΡ€ΠΎΡ‰Π΅. А Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ ΠΈΠ΄ΠΈΡ‚Π΅ ΠΈ ΡΡ‚Π°Π½ΡŒΡ‚Π΅ мастСром ΠΊΡƒΠ·Π½Π΅Ρ‡Π½ΠΎΠ³ΠΎ Π΄Π΅Π»Π°!", + "quests.tfg": "TerraFirmaGreg - Modern", + "quests.tfg.subtitle": "Π”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π² TerraFirmaGreg!", + "quests.tfg.welcome.title": "Π”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ Π² TerraFirmaGreg!", + "quests.tfg.welcome.subtitle": "Модпак выТивания, ΠΊΠ°ΠΊΠΈΠΌ ΠΎΠ½ Π΄ΠΎΠ»ΠΆΠ΅Π½ Π±Ρ‹Ρ‚ΡŒ", + "quests.tfg.welcome.desc": "Бпасибо Π²Π°ΠΌ Π·Π° Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ Π½Π°Ρ‡Π°Π»ΠΈ ΠΈΠ³Ρ€Π°Ρ‚ΡŒ Π² TerraFirmaGreg Modern!\n\nΠ’ этом ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠ΅ Π²Π°ΠΌ прСдстоит Π²Π·ΡΡ‚ΡŒ ΠΏΠΎΠ΄ свой ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŒ Π½Π΅Ρ‚Ρ€ΠΎΠ½ΡƒΡ‚ΡƒΡŽ Π΄ΠΈΠΊΡƒΡŽ ΠΏΡ€ΠΈΡ€ΠΎΠ΄Ρƒ ΠΈ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π΅Ρ‘ Π² ΠΈΠ½Π΄ΡƒΡΡ‚Ρ€ΠΈΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΌΠΈΡ€ чудСс. НачнитС со скромного Π½Π°Ρ‡Π°Π»Π°, собирая ΠΊΠ°ΠΌΠ½ΠΈ, ΠΈ Π·Π°ΠΊΠΎΠ½Ρ‡ΠΈΡ‚Π΅ ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠ΅ΠΌ ΠΏΠΎ ΠΌΠ΅ΠΆΠ·Π²Ρ‘Π·Π΄Π½ΠΎΠΌΡƒ пространству!", + "quests.tfg.create_team.title": "Как ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ?", + "quests.tfg.create_team.subtitle": "Π’Ρ‹ ΠΈΠ³Ρ€Π°Π΅Ρ‚Π΅ с Π΄Ρ€ΡƒΠ·ΡŒΡΠΌΠΈ?", + "quests.tfg.create_team.desc": "Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ для совмСстного выполнСния квСстов. Для этого ΠΎΡ‚ΠΊΡ€ΠΎΠΉΡ‚Π΅ ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ, Π·Π°Ρ‚Π΅ΠΌ Π² Π»Π΅Π²ΠΎΠΌ Π²Π΅Ρ€Ρ…Π½Π΅ΠΌ ΡƒΠ³Π»Ρƒ Π²Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ ΠΊΠ½ΠΎΠΏΠΊΡƒ, Π½Π° ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ нарисованы 3 Ρ†Π²Π΅Ρ‚Π½Ρ‹Ρ… Ρ‡Π΅Π»ΠΎΠ²Π΅Ρ‡ΠΊΠ°, послС Ρ‡Π΅Π³ΠΎ откроСтся интСрфСйс, Π² ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ. НаТмитС Β§aΠ‘ΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΊΠΎΠΌΠ°Π½Π΄ΡƒΒ§r, Π·Π°Ρ‚Π΅ΠΌ Π΄Π°ΠΉΡ‚Π΅ Π΅ΠΉ Π½Π°Π·Π²Π°Π½ΠΈΠ΅ ΠΈ, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€Ρ‹. ПослС ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎΠ³ΠΎ создания ΠΊΠΎΠΌΠ°Π½Π΄Ρ‹ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΈΠ³Π»Π°ΡΠΈΡ‚ΡŒ Π² Π½Π΅Ρ‘ Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΈΠ³Ρ€ΠΎΠΊΠΎΠ², ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ ΠΊΠ½ΠΎΠΏΠΊΡƒ c плюсиком Π² Π·Π΅Π»Ρ‘Π½ΠΎΠΌ ΠΊΡ€ΡƒΠΆΠΊΠ΅ Π² ΠΏΡ€Π°Π²ΠΎΠΌ Π²Π΅Ρ€Ρ…Π½Π΅ΠΌ ΡƒΠ³Π»Ρƒ. Π‘ этого ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ваши квСсты Π±ΡƒΠ΄ΡƒΡ‚ синхронизированы, ΠΈ любой Ρ‡Π»Π΅Π½ ΠΊΠΎΠΌΠ°Π½Π΄Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈΡ… Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ. Π£Π΄Π°Ρ‡ΠΈ!", + "quests.tfg.capture_territory.title": "Как Π·Π°Π½ΡΡ‚ΡŒ Ρ‚Π΅Ρ€Ρ€ΠΈΡ‚ΠΎΡ€ΠΈΡŽ?", + "quests.tfg.capture_territory.subtitle": "И ΠΊΠ°ΠΊ Π·Π°Π³Ρ€ΡƒΠ·ΠΈΡ‚ΡŒ Ρ‡Π°Π½ΠΊΠΈ Π½Π° вашСй Ρ‚Π΅Ρ€Ρ€ΠΈΡ‚ΠΎΡ€ΠΈΠΈ", + "quests.tfg.capture_territory.desc": "Если Π²Ρ‹ ΠΈΠ³Ρ€Π°Π΅Ρ‚Π΅ Π½Π° сСрвСрС, Π²Ρ‹, вСроятно, Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ Π·Π°Π½ΡΡ‚ΡŒ свою Ρ‚Π΅Ρ€Ρ€ΠΈΡ‚ΠΎΡ€ΠΈΡŽ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΈΠ³Ρ€ΠΎΠΊΠΈ Π½Π΅ смогли Π²Π°ΠΌ ΠΏΠΎΠΌΠ΅ΡˆΠ°Ρ‚ΡŒ. Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ ΠΊΠ»Π°Π²ΠΈΡˆΡƒ \"ΠœΠ΅Π½Π΅Π΄ΠΆΠ΅Ρ€ Π²Π»Π°Π΄Π΅Π½ΠΈΠΉ\" (ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ \"Ctrl+M\"), Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ интСрфСйс, Π·Π°Ρ‚Π΅ΠΌ Π½Π°ΠΆΠΌΠΈΡ‚Π΅ Π›ΠšΠœ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π½ΡΡ‚ΡŒ участок, ΠΈ ПКМ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΌΠ΅Π½ΠΈΡ‚ΡŒ Π²Π»Π°Π΄Π΅Π½ΠΈΠ΅. БущСствуСт ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ΠΈΠ΅, поэтому Π²Ρ‹ Π½Π΅ смоТСтС Π·Π°Π½ΡΡ‚ΡŒ всё. Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΠΆΠ°Ρ‚ΡŒ Shift+Π›ΠšΠœ ΠΏΠΎ участку, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΈΠ½ΡƒΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π·Π°Π³Ρ€ΡƒΠ·ΠΈΡ‚ΡŒ Π΅Π³ΠΎ (извСстный ΠΊΠ°ΠΊ \"Π·Π°Π³Ρ€ΡƒΠ·Ρ‡ΠΈΠΊ Ρ‡Π°Π½ΠΊΠΎΠ²\"), ΠΈ Shift+ПКМ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΌΠ΅Π½ΠΈΡ‚ΡŒ ΠΏΡ€ΠΈΠ½ΡƒΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΡƒΡŽ Π·Π°Π³Ρ€ΡƒΠ·ΠΊΡƒ. Π’Π»Π°Π΄Π΅Π½ΠΈΠ΅ Ρ‡Π°Π½ΠΊΠ°ΠΌΠΈ Π±ΡƒΠ΄Π΅Ρ‚ Π²ΠΊΠ»ΡŽΡ‡Π°Ρ‚ΡŒ всю Π²Π°ΡˆΡƒ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ, Ссли ΠΎΠ½Π° Ρƒ вас Π΅ΡΡ‚ΡŒ.", + "quests.tfg.chunk_limit.title": "Как ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ колличСство ΠΏΠΎΠ΄Π³Ρ€ΡƒΠΆΠ°Π΅ΠΌΡ‹Ρ… Ρ‡Π°Π½ΠΊΠΎΠ²?", + "quests.tfg.chunk_limit.desc": "Если Ρ‚Ρ‹ ΠΈΠ³Ρ€Π°Π΅ΡˆΡŒ Π½Π° сСрвСрС, ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ Ρƒ тСбя Π΅ΡΡ‚ΡŒ лишь нСбольшоС колличСство ΠΏΠΎΠ΄Π³Ρ€ΡƒΠΆΠ°Π΅ΠΌΡ‹Ρ… Ρ‡Π°Π½ΠΊΠΎΠ².\n\nΠ’Π»Π°Π΄Π΅Π»ΡŒΡ†Ρ‹ сСрвСров ΠΌΠΎΠ³ΡƒΡ‚ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ это (ΠΏΡ€ΠΎΠ²Π΅Ρ€ΡŒ Ρ„Π°ΠΉΠ» README.txt!), Π½ΠΎ Ссли Ρƒ тСбя Π΅ΡΡ‚ΡŒ ΠΏΡ€Π°Π²Π° администратора (ΠΈΠ»ΠΈ Π²ΠΊΠ»ΡŽΡ‡Π΅Π½Π½Ρ‹Π΅ Ρ‡ΠΈΡ‚Ρ‹), Ρ‚Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ &a/ftbchunks admin extra_force_load_chunks @p set X&r, Π³Π΄Π΅ X - Π½ΠΎΠ²ΠΎΠ΅ ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½ΠΈΠ΅.", + "quests.tfg.field_guide.title": "ВаТная информация насчСт квСстов!", + "quests.tfg.field_guide.subtitle": "МнС Π½ΡƒΠΆΠ½ΠΎ Π΅Ρ‰Ρ‘ большС Ρ‡ΠΈΡ‚Π°Ρ‚ΡŒ?", + "quests.tfg.field_guide.desc": "ΠšΠ²Π΅ΡΡ‚Ρ‹ всС Π΅Ρ‰Ρ‘ находятся Π½Π° стадии Ρ€Π°Π·Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ, ΠΈ ΠΌΡ‹ постоянно Ρ€Π°Π±ΠΎΡ‚Π°Π΅ΠΌ Π½Π°Π΄ ΠΈΡ… ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ΠΌ! Много ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ ΠΎ ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½Ρ‹Ρ… ΠΌΠ΅Ρ…Π°Π½ΠΈΠΊΠ°Ρ… Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² вашСм ΠΏΠΎΠ»Π΅Π²ΠΎΠΌ руководствС, доступном Ρ‡Π΅Ρ€Π΅Π· Π²ΠΊΠ»Π°Π΄ΠΊΡƒ Π² Π²ΠΈΠ΄Π΅ ΠΊΠ½ΠΈΠ³ΠΈ Π² вашСм ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Π΅.\n\nΠŸΠΎΠΌΠ½ΠΈΡ‚Π΅, Ρ‡Ρ‚ΠΎ JEI ΠΈ ПолСвоС руководство β€” ваши Π΄Ρ€ΡƒΠ·ΡŒΡ, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ Π½Π΅ всё Π±ΡƒΠ΄Π΅Ρ‚ объяснСно Π² квСстах.", + "quests.tfg.books_again.title": "Π‘Π½ΠΎΠ²Π° Π½ΡƒΠΆΠ½Π° ΠΊΠ½ΠΈΠ³Π°?", + "quests.tfg.books_again.desc": "Π’ΠΎΡ‚ ΠΏΠΎΠ²Ρ‚ΠΎΡ€ΡΡŽΡ‰ΠΈΠΉΡΡ квСст, Ссли Π²Ρ‹ вновь Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ физичСскиС ΠΊΠΎΠΏΠΈΠΈ ΠΊΠ½ΠΈΠ³ΠΈ квСстов ΠΈ ΠΏΠΎΠ»Π΅Π²ΠΎΠ³ΠΎ руководства.", + "quests.tfg_tips": "Π‘ΠΎΠ²Π΅Ρ‚Ρ‹ - Π’Ρ‹ΠΆΠΈΠ²Π°Π½ΠΈΠ΅", + "quests.tfg_tips.subtitle": "Π‘ΠΎΠ²Π΅Ρ‚Ρ‹ ΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄Π°Ρ†ΠΈΠΈ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Тилось Ρ‡ΡƒΡ‚ΡŒ ΠΏΡ€ΠΎΡ‰Π΅.", + "quests.tfg_tips.beginning.title": "Π—Π΄Π΅ΡΡŒ Π²Ρ‹ Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ совСты ΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄Π°Ρ†ΠΈΠΈ!", + "quests.tfg_tips.beginning.subtitle": "О Π±ΠΎΠΆΠ΅, здСсь ΠΌΠ½ΠΎΠ³ΠΎ ΠΎΡ‚Π²Π΅Ρ‚Π²Π»Π΅Π½ΠΈΠΉ...", + "quests.tfg_tips.beginning.desc": "Π­Ρ‚Π° Π³Π»Π°Π²Π° даст Π²Π°ΠΌ мноТСство (ΠΈ ΠΌΡ‹ Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΈΠΌΠ΅Π΅ΠΌ Π² Π²ΠΈΠ΄Ρƒ мноТСство) совСтов ΠΎ Ρ‚ΠΎΠΌ, ΠΊΠ°ΠΊ Π²Ρ‹ΠΆΠΈΡ‚ΡŒ ΠΈ ΠΏΡ€Π΅ΡƒΡΠΏΠ΅Ρ‚ΡŒ.\n\nКаТдая Π²Π΅Ρ‚Π²ΡŒ квСста прСдставляСт собой основныС ΠΌΠΎΠ΄ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΠΈ Π² &2TerraFirmaGreg&r, с совСтами, ΠΊΠ°ΠΊ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ ΠΈΠ· Π½ΠΈΡ… ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½ΡƒΡŽ ΠΏΠΎΠ»ΡŒΠ·Ρƒ. Ни ΠΎΠ΄ΠΈΠ½ ΠΈΠ· этих квСстов Π½Π΅ являСтся ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΌ для прохоТдСния ΠΈΠ³Ρ€Ρ‹, хотя Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΈΠ· Π½ΠΈΡ… ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ Π·Π°Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Π½Ρ‹ Π·Π° Π²Ρ‹ΠΏΠΎΠ»Π½Π΅Π½ΠΈΠ΅ΠΌ Π·Π°Π΄Π°Π½ΠΈΠΉ основной ΡΡŽΠΆΠ΅Ρ‚Π½ΠΎΠΉ Π»ΠΈΠ½ΠΈΠΈ.", + "quests.tfg_tips.portable_storage.title": "ΠŸΠ΅Ρ€Π΅Π½ΠΎΡΠΈΠΌΡ‹Π΅ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°", + "quests.tfg_tips.portable_storage.subtitle": "ΠžΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ΡΡ, ваш ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ довольно ΠΌΠ°Π».", + "quests.tfg_tips.portable_storage.desc": "Π’ΠΎ врСмя ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠΉ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΡΠ»Π΅Π΄ΠΎΠ²Π°Ρ‚ΡŒ &oΠΌΠ½ΠΎΠ³ΠΎΠ΅&r ΠΈ Π² ΠΈΡ‚ΠΎΠ³Π΅ ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ ΠΊΡƒΡ‡Ρƒ Ρ…Π»Π°ΠΌΠ°. Π­Ρ‚Π° Π²Π΅Ρ‚ΠΊΠ° квСстов ΠΏΡ€Π΅Π΄Π»Π°Π³Π°Π΅Ρ‚ нСсколько Π²Π°Ρ€ΠΈΠ°Π½Ρ‚ΠΎΠ² Ρ€Π°ΡΡˆΠΈΡ€Π΅Π½ΠΈΡ вашСго инвСнтаря для ΠΏΠΎΡ…ΠΎΠ΄Π°.", + "quests.tfg_tips.toolbelt.title": "Пояс с инструмСнтами ΠΈ Поясная сумка", + "quests.tfg_tips.toolbelt.subtitle": "Π­Ρ‚ΠΈ инструмСнты Π·Π°Π½ΠΈΠΌΠ°ΡŽΡ‚ слишком ΠΌΠ½ΠΎΠ³ΠΎ мСста, ΠΏΠΎΡ€Π° это ΠΈΡΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ!", + "quests.tfg_tips.toolbelt.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &dПояса с инструмСнтами&r Π²Ρ‹ смоТСтС ΡƒΠΏΡ€Π°Π²Π»ΡΡ‚ΡŒ сразу нСсколькими инструмСнтами, Π½Π΅ занимая ΠΏΡ€ΠΈ этом мСсто Π² ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Π΅! Π­Ρ‚ΠΎΡ‚ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΉ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ размСщаСтся Π² ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½Ρ‹ΠΉ слот &3пояса&r Π² &4мСню Curios&r. Π”ΠΎΡΡ‚Π°Π²Π°Ρ‚ΡŒ ΠΈ ΡƒΠ±ΠΈΡ€Π°Ρ‚ΡŒ инструмСнты ΠΌΠΎΠΆΠ½ΠΎ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &cгорячСй клавиши.&r Π˜Π·Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎ доступно всСго Π΄Π²Π° слота, Π½ΠΎ ΠΈΡ… количСство ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ, добавляя &aΠŸΠΎΡΡΠ½ΡƒΡŽ сумку&r.\n\n&lИз-Π·Π° Π±Π°Π³Π° Π² ΠΌΠΎΠ΄Π΅ Π½Π΅Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ &dПояс с инструмСнтами&f, Ссли ΠΎΠ½ Π±Ρ‹Π» ΠΎΠΊΡ€Π°ΡˆΠ΅Π½ ΠΈΠ»ΠΈ содСрТит инструмСнты. ΠžΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΎΠΏΡƒΡΡ‚ΠΎΡˆΠΈΡ‚Π΅ Π΅Π³ΠΎ ΠΏΠ΅Ρ€Π΅Π΄ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ΠΌ!", + "quests.tfg_tips.maxed_out_toolbelt.title": "Π’Π‘Π• Π˜ΠΠ‘Π’Π Π£ΠœΠ•ΠΠ’Π«", + "quests.tfg_tips.maxed_out_toolbelt.subtitle": "ΠŸΠΎΡ…ΠΎΠΆΠ΅, этот пояс Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ вСсит ΠΎΡ‡Π΅Π½ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ...", + "quests.tfg_tips.maxed_out_toolbelt.desc": "&dПояс с инструмСнтами&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&2Seed Pouch&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! &dМалСнький сосуд&r Π½ΡƒΠΆΠ΅Π½ Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ для хранСния Π²Π΅Ρ‰Π΅ΠΉ, Π½ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌ для ΠΏΠ»Π°Π²ΠΊΠΈ ΠΈ создания сплавов основных ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠ².\n&6Π‘ΠΎΠ»ΡŒΡˆΠΎΠΉ сосуд&r тяТСлСС для пСрСноски, Π½ΠΎ ΠΎΡ‚Π»ΠΈΡ‡Π½ΠΎ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для сохранСния Π΅Π΄Ρ‹.\n\n&l&3Π‘ΠΎΠ²Π΅Ρ‚:&r&o Π‘ΠΎΠ»ΡŒΡˆΠΈΠ΅ сосуды ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ Ρ€ΡŽΠΊΠ·Π°ΠΊΠΈ Π½Π° Ρ€Π°Π½Π½ΠΈΡ… этапах!", + "quests.tfg_tips.portable_cells.title": "ΠŸΠ΅Ρ€Π΅Π½ΠΎΡΠ½Ρ‹Π΅ ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ ΠΈ ЖидкостныС ячСйки", + "quests.tfg_tips.portable_cells.subtitle": "Π Π°Π·Π²Π΅ это Π½Π΅ слишком ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚ΠΎ?", + "quests.tfg_tips.portable_cells.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &dApplied Energistics 2&r Π²Ρ‹ смоТСтС ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ &aΠŸΠΎΡ€Ρ‚Π°Ρ‚ΠΈΠ²Π½Ρ‹Π΅ ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅&r ΠΈ &bЖидкостныС ячСйки&r, ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰ΠΈΠ΅ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠ΅ количСство рСсурсов Π² Π²ΠΈΠ΄Π΅ чистых Π΄Π°Π½Π½Ρ‹Ρ…. К соТалСнию, &dApplied Energistics 2&r доступСн Ρ‚ΠΎΠ»ΡŒΠΊΠΎ послС достиТСния уровня &6HV&r, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π΄ΠΎ этого ΠΌΠΎΠΌΠ΅Π½Ρ‚Π° ΠΏΡ€ΠΎΠΉΠ΄Π΅Ρ‚ Π½Π΅ΠΌΠ°Π»ΠΎ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ.", + "quests.tfg_tips.256m_portable_cells.title": "ΠœΠ•Π“Π ΠŸΠ΅Ρ€Π΅Π½ΠΎΡΠ½Ρ‹Π΅ ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ ΠΈ ЖидкостныС ячСйки", + "quests.tfg_tips.256m_portable_cells.subtitle": "Когда ΠΊΠΈΠ»ΠΎΠ±Π°ΠΉΡ‚ΠΎΠ² нСдостаточно", + "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": "&3ΠŸΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹ΠΉ Ρ€ΡŽΠΊΠ·Π°ΠΊ&r β€” основной способ Ρ€Π°ΡΡˆΠΈΡ€ΠΈΡ‚ΡŒ объСм пСрСносимого инвСнтаря. Рюкзак ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ уровня ΡƒΠ΄Π²Π°ΠΈΠ²Π°Π΅Ρ‚ ваш ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ, Π° Π±ΠΎΠ»Π΅Π΅ высокиС ΡƒΡ€ΠΎΠ²Π½ΠΈ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°ΡŽΡ‚ Π΅Π³ΠΎ Π΅Ρ‰Π΅ сильнСС! ΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, ΠΎΠ½ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ мноТСство &aΡ„ΡƒΠ½ΠΊΡ†ΠΈΠΎΠ½Π°Π»ΡŒΠ½Ρ‹Ρ… ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ&r, Π° ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Ρ‹Π΅ Π΅Π³ΠΎ части ΠΌΠΎΠΆΠ½ΠΎ ΠΊΡ€Π°ΡΠΈΡ‚ΡŒ Π² Ρ€Π°Π·Π½Ρ‹Π΅ Ρ†Π²Π΅Ρ‚Π°!", + "quests.tfg_tips.first_backpack.title": "Π’Π°Ρˆ ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ Ρ€ΡŽΠΊΠ·Π°ΠΊ", + "quests.tfg_tips.first_backpack.subtitle": "НСт, ΠΊΠ°Ρ€Ρ‚Π° Π½Π΅ появится Π²ΠΎΠ»ΡˆΠ΅Π±Π½Ρ‹ΠΌ ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ.", + "quests.tfg_tips.first_backpack.desc": "Π­Ρ‚ΠΎ ваш ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ &3ΠŸΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹ΠΉ Рюкзак.&r Он ΠΈΠΌΠ΅Π΅Ρ‚ всСго &c27&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 являСтся вашим ΠΏΠ΅Ρ€Π²Ρ‹ΠΌ ΠΏΠΎΠ»Π½ΠΎΡ†Π΅Π½Π½Ρ‹ΠΌ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ΠΌ Ρ€ΡŽΠΊΠ·Π°ΠΊΠ°. Он Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ &c54&r слота ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚ ΡΠΎΠ΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ &aΠ΄Π²Π° ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ.&r", + "quests.tfg_tips.aluminium_backpack.title": "Рюкзак ΠΈΠ· алюминия", + "quests.tfg_tips.aluminium_backpack.subtitle": "Π’Π°ΠΊ алюминий ΠΈΠ»ΠΈ алюминь?", + "quests.tfg_tips.aluminium_backpack.desc": "&bРюкзак ΠΈΠ· алюминия&r являСтся вашим Π²Ρ‚ΠΎΡ€Ρ‹ΠΌ ΠΏΠΎΠ»Π½ΠΎΡ†Π΅Π½Π½Ρ‹ΠΌ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ΠΌ Ρ€ΡŽΠΊΠ·Π°ΠΊΠ°. Он Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ &c81&r слот ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚ ΡΠΎΠ΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ &aΡ‚Ρ€ΠΈ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ.&r", + "quests.tfg_tips.titanium_backpack.title": "Рюкзак ΠΈΠ· Ρ‚ΠΈΡ‚Π°Π½Π°", + "quests.tfg_tips.titanium_backpack.subtitle": "ΠŸΠΎΡ‡Ρ‚ΠΈ Π’ΠΈΡ‚Π°Π½ΠΈΠΊ.", + "quests.tfg_tips.titanium_backpack.desc": "&bРюкзак ΠΈΠ· Ρ‚ΠΈΡ‚Π°Π½Π°&r являСтся вашим Ρ‚Ρ€Π΅Ρ‚ΡŒΠΈΠΌ ΠΏΠΎΠ»Π½ΠΎΡ†Π΅Π½Π½Ρ‹ΠΌ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ΠΌ Ρ€ΡŽΠΊΠ·Π°ΠΊΠ°. Он Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ &c108&r слотов ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚ ΡΠΎΠ΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ &aΠΏΡΡ‚ΡŒ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ.&r", + "quests.tfg_tips.tungstensteel_backpack.title": "Рюкзак ΠΈΠ· Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²ΠΎΠΉ стали", + "quests.tfg_tips.tungstensteel_backpack.subtitle": "Π›ΡƒΡ‡ΡˆΠΈΠΉ Ρ€ΡŽΠΊΠ·Π°ΠΊ.", + "quests.tfg_tips.tungstensteel_backpack.desc": "&9Рюкзак ΠΈΠ· Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²ΠΎΠΉ стали&r это послСднСС ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ Ρ€ΡŽΠΊΠ·Π°ΠΊΠ°. Он Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ &c120&r слотов ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚ ΡΠΎΠ΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ &aсСмь ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ!&r", + "quests.tfg_tips.backpack_upgrades.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ для Ρ€ΡŽΠΊΠ·Π°ΠΊΠ°", + "quests.tfg_tips.backpack_upgrades.subtitle": "НСчто большС, Ρ‡Π΅ΠΌ просто Ρ€ΡŽΠΊΠ·Π°ΠΊ", + "quests.tfg_tips.backpack_upgrades.desc": "&aΠ£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ для Ρ€ΡŽΠΊΠ·Π°ΠΊΠ°&r ΠΌΠΎΠΆΠ½ΠΎ ΡƒΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°Ρ‚ΡŒ Π² ваши &3ΠŸΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹Π΅ Ρ€ΡŽΠΊΠ·Π°ΠΊΠΈ&r, надСляя ΠΈΡ… Π½ΠΎΠ²Ρ‹ΠΌΠΈ функциями ΠΈ возмоТностями. Для создания Π±Π°Π·ΠΎΠ²Ρ‹Ρ… ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ потрСбуСтся доступ ΠΊ &bΠ‘Ρ‚Π°Π»ΠΈ&r.", + "quests.tfg_tips.crafting_upgrade.title": "Π‘ΠΎΠ·Π΄Π°Π½ΠΈΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ", + "quests.tfg_tips.crafting_upgrade.subtitle": "ΠŸΠΎΡ€Ρ‚Π°Ρ‚ΠΈΠ²Π½Ρ‹ΠΉ вСрстак!", + "quests.tfg_tips.crafting_upgrade.desc": "&aΠ£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅: \"ВСрстак\"&r позволяСт Π½ΠΎΡΠΈΡ‚ΡŒ &3ВСрстак&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": "Π’ΠΎΡ‚ всС ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ для &3ΠŸΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚ΠΎΠ³ΠΎ Ρ€ΡŽΠΊΠ·Π°ΠΊΠ°&r. Π‘ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΊΠ°ΠΆΠ΄ΠΎΠ΅ ΠΈΠ· Π½ΠΈΡ…?", + "quests.tfg_tips.gt.title": "GregTech", + "quests.tfg_tips.gt.subtitle": "Π’ ΠΊΠΎΠ½Ρ†Π΅ ΠΊΠΎΠ½Ρ†ΠΎΠ², этоТС Π½Π°Π·Π²Π°Π½ΠΈΠ΅ ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠ°", + "quests.tfg_tips.gt.desc": "&3GregTech&r ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ слоТным, Π½ΠΎ эта Π²Π΅Ρ‚ΠΊΠ° Π·Π°Π΄Π°Π½ΠΈΠΉ ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ‚ Ρ‚Π΅Π±Π΅ Ρ€Π°Π·ΠΎΠ±Ρ€Π°Ρ‚ΡŒΡΡ.", + "quests.tfg_tips.nano_saber.title": "Нано-Бабля", + "quests.tfg_tips.nano_saber.subtitle": "Π Π΅ΠΆΠΈΠΌ 26 Π£Ρ€ΠΎΠ½Π°, Активированн!", + "quests.tfg_tips.nano_saber.desc": "&6Нано-Бабля&r β€” ΠœΠΎΡ‰Π½ΠΎΠ΅ ΠΎΡ€ΡƒΠΆΠΈΠ΅, ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Ρ‚Ρ‹ смоТСшь Ρ€Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ, достигнув &5EV&r. ΠŸΡ€ΠΎΡΡ‚ΠΎ Π½Π°ΠΆΠΌΠΈ &dShift + ПКМ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ Ρ€Π΅ΠΆΠΈΠΌ &cΠ‘Π·Π—Π·Π—Π·&r.", + "quests.tfg_tips.gt_tools.title": "GregTech Π˜Π½ΡΡ‚Ρ€ΡƒΠΌΠ΅Π½Ρ‚Ρ‹", + "quests.tfg_tips.gt_tools.subtitle": "ΠŸΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ΡΡŒ Π½Π° ΡΠ΄ΠΎΡ€ΠΎΠ²ΡŒΠ΅", + "quests.tfg_tips.gt_tools.desc": "Π‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ инструмСнтов Π² &5GregTech&r Π΄Π΅Π»Π°ΡŽΡ‚ΡΡ ΠΈΠ· &6Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ&r. Π‘ΠΎΠ²Π΅Ρ‚ΡƒΠ΅ΠΌ Π·Π°Π³Π»ΡΠ½ΡƒΡ‚ΡŒ Π² &aEMI&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ½ΡΡ‚ΡŒ, Ρ‡Ρ‚ΠΎ с Π½ΠΈΠΌΠΈ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ, Π½ΠΎ ΡƒΡ‡Ρ‚ΠΈΡ‚Π΅ Π΄Π²Π° Π²Π°ΠΆΠ½Ρ‹Ρ… ΠΌΠΎΠΌΠ΅Π½Ρ‚Π°:\n\n- Π§Π΅ΠΌ &eΠ²Ρ‹ΡˆΠ΅ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ&r, Ρ‚Π΅ΠΌ &cΠΌΠΎΡ‰Π½Π΅Π΅&r инструмСнт ΠΈ &6быстрСС расход Π±Π°Ρ‚Π°Ρ€Π΅ΠΈ&r.\n- НС всС инструмСнты подходят ΠΏΠΎΠ΄ всС ΡƒΡ€ΠΎΠ²Π½ΠΈ Π³ΠΎΠ»ΠΎΠ²ΠΎΠΊ. НапримСр, &6Π‘Π΅Π½Π·ΠΎΠΏΠΈΠ»Π°&r Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ с &7Π³ΠΎΠ»ΠΎΠ²ΠΊΠΎΠΉ LV уровня&r.", + "quests.tfg_tips.magnets.title": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹ΠΉ ΠœΠ°Π³Π½ΠΈΡ‚", + "quests.tfg_tips.magnets.subtitle": "ΠŸΡ€ΠΈΡ‚ΡΠ½Π΅Ρ‚ вашС Π±Π°Ρ€Π°Ρ…Π»ΠΎ", + "quests.tfg_tips.magnets.desc": "&6ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹ΠΉ ΠœΠ°Π³Π½ΠΈΡ‚&r β€” это ΠΈΠΌΠ΅Π½Π½ΠΎ Ρ‚ΠΎ ΠΎ Ρ‡Π΅ΠΌ Π΄ΡƒΠΌΠ°Π΅ΡˆΡŒ: ΠΌΠ°Π³Π½ΠΈΡ‚, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ притягиваСт рядом Π»Π΅ΠΆΠ°Ρ‰ΠΈΠ΅ &6ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹&r прямо ΠΊ Ρ‚Π΅Π±Π΅. &aΠžΡ‡Π΅Π½ΡŒ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ&r. Π§Ρ‚ΠΎ Π΅Ρ‰Ρ‘ Π½ΡƒΠΆΠ½ΠΎ?", + "quests.tfg_tips.gt_power_tools.title": "ЭлСктричСскиС инструмСнты", + "quests.tfg_tips.gt_power_tools.subtitle": "ΠœΡƒΠΆΠΈΠΊΠΈ Π΄ΡƒΠΌΠ°ΡŽΡ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ± ΠΎΠ΄Π½ΠΎΠΌ, ΠΈ это ΠΎΡ‚Π²Ρ€Π°Ρ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ!", + "quests.tfg_tips.gt_power_tools.desc.1": "Как ΠΈ ΠΏΠΎΠ»ΠΎΠΆΠ΅Π½ΠΎ Ρ…ΠΎΡ€ΠΎΡˆΠ΅ΠΌΡƒ Ρ‚Π΅Ρ…Π½ΠΎΠΌΠΎΠ΄Ρƒ, &5GregTech&r ΠΏΡ€Π΅Π΄Π»Π°Π³Π°Π΅Ρ‚ ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ Π½Π°Π±ΠΎΡ€ &6инструмСнтов&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΌΠΈ Ρ‚Ρ‹ моТСшь ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ½ΠΈ Ρ€Π°Π±ΠΎΡ‚Π°Π»ΠΈ, ΠΈΡ… Π½ΡƒΠΆΠ½ΠΎ &aΠ·Π°Ρ€ΡΠΆΠ°Ρ‚ΡŒ энСргиСй&r β€” ΠΈ способов для этого нСсколько: ΠΏΠΎΠ»ΠΎΠΆΠΈ инструмСнт Π² &6Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±ΡƒΡ„Π΅Ρ€&r, Π² &dэнСргСтичСский слот&r ΠΌΠ°ΡˆΠΈΠ½Ρ‹ ΠΈΠ»ΠΈ, Ρ‡Ρ‚ΠΎ Π΅Ρ‰Ρ‘ Π»ΡƒΡ‡ΡˆΠ΅, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ &eзарядноС устройство&r.\n\nΠŸΡ€ΠΎΡΡ‚ΠΎ ΠΏΠΎΠΌΠ½ΠΈ: Ρ‚Ρ‹ моТСшь Π·Π°Ρ€ΡΠΆΠ°Ρ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΡ‚ источника энСргии &7Ρ‚ΠΎΠ³ΠΎ ΠΆΠ΅&r ΠΈΠ»ΠΈ &aΠ±ΠΎΠ»Π΅Π΅ высокого Ρ‚ΠΈΡ€Π°&r. &cΠ˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊΠΈ Π±ΠΎΠ»Π΅Π΅ Π½ΠΈΠ·ΠΊΠΎΠ³ΠΎ Ρ‚ΠΈΡ€Π°&r Π½Π΅ смогут Π·Π°Ρ€ΡΠ΄ΠΈΡ‚ΡŒ инструмСнты высокого уровня β€” Π½ΠΎ Π½Π΅ ΠΏΠ΅Ρ€Π΅ΠΆΠΈΠ²Π°ΠΉ, &cΠ½ΠΈΡ‡Π΅Π³ΠΎ Π½Π΅ Π΄ΠΎΠ»ΠΆΠ½ΠΎ Π²Π·ΠΎΡ€Π²Π°Ρ‚ΡŒΡΡ&r. НавСрноС.", + "quests.tfg_tips.gt_power_tools.desc.2": "Π‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ инструмСнтов &5GregTech&r ΡΠΎΠ·Π΄Π°ΡŽΡ‚ΡΡ ΠΈΠ· &6Π±Π»ΠΎΠΊΠΎΠ² питания&r. ΠŸΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉ Π²ΠΎΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ &aEMI&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ моТСшь с Π½ΠΈΠΌΠΈ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ β€” просто ΠΏΠΎΠΌΠ½ΠΈ Π΄Π²Π΅ Π²Π°ΠΆΠ½Ρ‹Π΅ Π²Π΅Ρ‰ΠΈ:\n\n- &eΠ§Π΅ΠΌ Π²Ρ‹ΡˆΠ΅ Ρ‚ΠΈΡ€ Π±Π»ΠΎΠΊΠ° питания&r, Ρ‚Π΅ΠΌ &cΠΌΠΎΡ‰Π½Π΅Π΅&r Π±ΡƒΠ΄Π΅Ρ‚ инструмСнт ΠΈ Ρ‚Π΅ΠΌ &6Π±ΠΎΠ»ΡŒΡˆΡƒΡŽ Π±Π°Ρ‚Π°Ρ€Π΅ΡŽ&r ΠΎΠ½ Π±ΡƒΠ΄Π΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ.\n- НС ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ инструмСнт ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ всС Ρ‚ΠΈΡ€Ρ‹ Π±Π»ΠΎΠΊΠΎΠ² питания. НапримСр, &6Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠΏΠΈΠ»Ρƒ&r ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ с &7LV Π±Π»ΠΎΠΊΠΎΠΌ питания&r.", + "quests.tfg_tips.long_distance_items.title": "ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹ΠΉ Ρ‚Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄", + "quests.tfg_tips.long_distance_items.subtitle": "Π—Π°Π΄ΡƒΠΌΡ‹Π²Π°Π΅ΡˆΡŒΡΡ, ΠΊΠ°ΠΊ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ всю эту Ρ€ΡƒΠ΄Ρƒ?", + "quests.tfg_tips.long_distance_items.desc": "&3ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹ΠΉ Ρ‚Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Π½Π° большиС расстояния. Установи ΠΏΠΎ ΠΎΠ΄Π½ΠΎΠΌΡƒ ΠΊΠΎΠ½Ρ†Ρƒ Π½Π° ΠΊΠ°ΠΆΠ΄ΠΎΠΉ сторонС ΠΈ соСдини ΠΈΡ… Π±Π»ΠΎΠΊΠ°ΠΌΠΈ Ρ‚Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄Π°.\n\nΠ­Ρ‚ΠΈ Ρ‚Ρ€ΡƒΠ±Ρ‹ ΠΌΠ³Π½ΠΎΠ²Π΅Π½Π½ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ со стороны Π²Ρ…ΠΎΠ΄Π° Π½Π° сторону Π²Ρ‹Ρ…ΠΎΠ΄Π°. \n\nΠ’Π°ΠΊΠΆΠ΅ Ρƒ Π½ΠΈΡ… Π΅ΡΡ‚ΡŒ минимальная дистанция ΠΌΠ΅ΠΆΠ΄Ρƒ ΠΊΠΎΠ½Ρ†Π°ΠΌΠΈ Ρ‚Ρ€ΡƒΠ±, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ… для ΠΊΠΎΡ€ΠΎΡ‚ΠΊΠΈΡ… расстояний Π½Π΅ получится.", + "quests.tfg_tips.long_distance_fluids.title": "Жидкостный Ρ‚Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄", + "quests.tfg_tips.long_distance_fluids.subtitle": "Π—Π°Π΄ΡƒΠΌΡ‹Π²Π°Π΅ΡˆΡŒΡΡ, ΠΊΠ°ΠΊ ΠΏΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ всю эту Π½Π΅Ρ„Ρ‚ΡŒ?", + "quests.tfg_tips.long_distance_fluids.desc": "&3Жидкостный Ρ‚Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡ΠΈ ТидкостСй Π½Π° большиС расстояния. Установи ΠΏΠΎ ΠΎΠ΄Π½ΠΎΠΌΡƒ ΠΊΠΎΠ½Ρ†Ρƒ Π½Π° ΠΊΠ°ΠΆΠ΄ΠΎΠΉ сторонС ΠΈ соСдини ΠΈΡ… Π±Π»ΠΎΠΊΠ°ΠΌΠΈ Ρ‚Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄Π°.\n\nΠ­Ρ‚ΠΈ Ρ‚Ρ€ΡƒΠ±Ρ‹ ΠΌΠ³Π½ΠΎΠ²Π΅Π½Π½ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ со стороны Π²Ρ…ΠΎΠ΄Π° Π½Π° сторону Π²Ρ‹Ρ…ΠΎΠ΄Π°.\n\nΠ’Π°ΠΊΠΆΠ΅ Ρƒ Π½ΠΈΡ… Π΅ΡΡ‚ΡŒ минимальная дистанция ΠΌΠ΅ΠΆΠ΄Ρƒ ΠΊΠΎΠ½Ρ†Π°ΠΌΠΈ Ρ‚Ρ€ΡƒΠ±, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΈΡ… для ΠΊΠΎΡ€ΠΎΡ‚ΠΊΠΈΡ… расстояний Π½Π΅ получится.\n\nΠ­Ρ‚ΠΈ Ρ‚Ρ€ΡƒΠ±Ρ‹ извСстны своСй &4Π³Π»ΡŽΡ‡Π½ΠΎΡΡ‚ΡŒΡŽ&r ΠΏΡ€ΠΈ настройкС. Если ΠΎΠ½ΠΈ Π½Π΅ Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‚ с ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ Ρ€Π°Π·Π°, ΠΏΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉ ΠΏΠΎΠ²Π΅Ρ€Π½ΡƒΡ‚ΡŒ ΠΊΠΎΠ½Ρ†Ρ‹ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &eΠ“Π°Π΅Ρ‡Π½ΠΎΠ³ΠΎ ΠΊΠ»ΡŽΡ‡Π°&r.", + "quests.tfg_tips.crates.title": "GregTech Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°", + "quests.tfg_tips.crates.subtitle": "Π‘ΡƒΡ„Π΅Ρ€Ρ‹ Π½Π° Ρ€Π°Π½Π½Π΅ΠΉ стадии ΠΈΠ³Ρ€Ρ‹", + "quests.tfg_tips.crates.desc": "Π’ Ρ‚Π΅ΠΎΡ€ΠΈΠΈ, Π―Ρ‰ΠΈΠΊΠΈ β€” это прямоС ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ сундуков. Один Π±Π»ΠΎΠΊ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Ρ…Ρ€Π°Π½ΠΈΡ‚ большС ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² β€” Ρ‡Π΅Π³ΠΎ Π΅Ρ‰Ρ‘ ΠΌΠΎΠΆΠ½ΠΎ ΠΆΠ΅Π»Π°Ρ‚ΡŒ?\n\nОни Π΄ΠΎΡ€ΠΎΠΆΠ΅ ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Ρ… сундуков ΠΈ Π½Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ присоСдинСны ΠΊ ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠ°ΠΌ Create, Π½ΠΎ ΠΌΠΎΠ³ΡƒΡ‚ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ любого Ρ€Π°Π·ΠΌΠ΅Ρ€Π° ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ &6ΠΏΡ€ΠΈΠ½ΠΈΠΌΠ°Ρ‚ΡŒ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠΎΠ²&r, Ρ‡Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ ΠΈΡ… ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΌΠΈ ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°ΠΌΠΈ Π½Π° Π±ΡƒΡ„Π΅Ρ€Ρ‹ Π² Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ.", + "quests.tfg_tips.tape.title": "Π‘ΠΊΠΎΡ‚Ρ‡ для ящиков", + "quests.tfg_tips.tape.subtitle": "ΠŸΠ΅Ρ€Π΅ΠΌΠ΅Ρ‰Π΅Π½ΠΈΠ΅ Π²Π΅Ρ‰Π΅ΠΉ", + "quests.tfg_tips.tape.desc": "Π’Ρ‹ моТСшь ΠΊΠ»ΠΈΠΊΠ½ΡƒΡ‚ΡŒ ПКМ ΠΏΠΎ Π―Ρ‰ΠΈΠΊΡƒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π»Π΅Π½Ρ‚Ρ‹ β€” послС этого ящик Π±ΡƒΠ΄Π΅Ρ‚ ΡΠΎΡ…Ρ€Π°Π½ΡΡ‚ΡŒ своё содСрТимоС ΠΏΡ€ΠΈ Ρ€Π°Π·Ρ€ΡƒΡˆΠ΅Π½ΠΈΠΈ, Ρ‡Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ Π΅Π³ΠΎ ΡƒΠ΄ΠΎΠ±Π½Ρ‹ΠΌ для пСрСмСщСния. Однако каТдая Π»Π΅Π½Ρ‚Π° Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠ΄ΠΈΠ½ Ρ€Π°Π·.\n\nΠ₯ΠΎΡ€ΠΎΡˆΠΎ, Ρ‡Ρ‚ΠΎ ΠΎΠ½Π° Π΄Π΅ΡˆΡ‘Π²Π°Ρ!", + "quests.tfg_tips.terminal.subtitle": "АвтоматичСский ΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ²", + "quests.tfg_tips.terminal.desc": "&bΠ’Π΅Ρ€ΠΌΠΈΠ½Π°Π»&r ΠΈΠΌΠ΅Π΅Ρ‚ ΠΎΠ΄Π½Ρƒ ΠΎΡΠ½ΠΎΠ²Π½ΡƒΡŽ Ρ†Π΅Π»ΡŒ, ΠΈ &aΠΌΡ‹ Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ совСтуСм Ρ‚Π΅Π±Π΅ Π΅Π³ΠΎ ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ&r.\n\nΠ‘Ρ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΡΡ‚Π²ΠΎ всСх этих &eΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ²&r ΠΌΠΎΠΆΠ΅Ρ‚ Π²Ρ‹Π³Π»ΡΠ΄Π΅Ρ‚ΡŒ довольно &cΠΏΡƒΠ³Π°ΡŽΡ‰Π΅&r, ΠΏΡ€Π°Π²Π΄Π°? Π’ΠΎΠ³Π΄Π° Π²ΠΎΡ‚ совСт: ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ &dShift + ПКМ&r ΠΏΠΎ Π»ΡŽΠ±ΠΎΠΌΡƒ &6ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π»Π΅Ρ€Ρƒ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠ°&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ &aавтоматичСски ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ всю структуру&r!\n\nΠ’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Ρ‚Π΅Π±Π΅ придётся &eΠΏΠ΅Ρ€Π΅ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ люки&r ΠΏΠΎΠ΄ свою схСму, Π½ΠΎ Π² Ρ†Π΅Π»ΠΎΠΌ эта функция сэкономит Ρ‚Π΅Π±Π΅ &aΠΊΡƒΡ‡Ρƒ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ&r.", + "quests.tfg_tips.memory_card.subtitle": "Ctrl+C Ctrl+V", + "quests.tfg_tips.memory_card.desc": "Когда Ρ‚Ρ‹ ΠΏΡ‹Ρ‚Π°Π΅ΡˆΡŒΡΡ &aΡ€Π°ΡΠΏΠ°Ρ€Π°Π»Π»Π΅Π»ΠΈΡ‚ΡŒ свою систСму&r, добавляя большС машин, настройка всСх &eΠ²Ρ…ΠΎΠ΄ΠΎΠ²&r ΠΈ &eΠ²Ρ‹Ρ…ΠΎΠ΄ΠΎΠ²&r для ΠΊΠ°ΠΆΠ΄ΠΎΠΉ ΠΈΠ· Π½ΠΈΡ… ΠΌΠΎΠΆΠ΅Ρ‚ сильно Ρ€Π°Π·Π΄Ρ€Π°ΠΆΠ°Ρ‚ΡŒ. Π”Π°-Π΄Π°, ΠΌΡ‹ смотрим Π½Π° вас, &dΠ‘ΡƒΠΏΠ΅Ρ€ сундуки&r ΠΈ &dΠ‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ‹&r.\n\nЕсли Ρ‚Π΅Π±Π΅ ΠΊΠΎΠ³Π΄Π°-Π½ΠΈΠ±ΡƒΠ΄ΡŒ понадобится этот нСбольшой инструмСнт, Π½Π΅ стСсняйся ΠΈΠΌ ΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ.", + "quests.tfg_tips.portable_scanner.title": "ΠŸΠΎΡ€Ρ‚Π°Ρ‚ΠΈΠ²Π½Ρ‹ΠΉ сканСр", + "quests.tfg_tips.portable_scanner.subtitle": "Для Π»ΡŽΠ±ΠΎΠΏΡ‹Ρ‚Π½Ρ‹Ρ… ΠΈΠ³Ρ€ΠΎΠΊΠΎΠ² GregTech", + "quests.tfg_tips.portable_scanner.desc.1": "&aΠŸΠΎΡ€Ρ‚Π°Ρ‚ΠΈΠ²Π½Ρ‹ΠΉ сканСр&r, ΠΎΠ½ ΠΆΠ΅ &aΠ’Ρ€ΠΈΠΊΠΎΠ΄Π΅Ρ€&r, β€” это ΠΎΡ‚Π»Π°Π΄ΠΎΡ‡Π½Ρ‹ΠΉ инструмСнт GTCEu.\n\nΠŸΡ€ΠΈ использовании ΠΎΠ½ ΠΏΠΎΠΊΠ°ΠΆΠ΅Ρ‚ Ρ‚Π΅Π±Π΅ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΡŽ ΠΎ Π±Π»ΠΎΠΊΠ΅, Π΄Π°Π½Π½Ρ‹Π΅ ΠΎΠ± энСргСтичСской сСти, Π΅Π³ΠΎ Ρ‚Π΅ΠΊΡƒΡ‰Π΅Π΅ состояниС ΠΈ содСрТимоС, Π° Ρ‚Π°ΠΊΠΆΠ΅ влияниС Π½Π° ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ.\n\nΠ’Π°ΠΊΠΆΠ΅ ΠΎΠ½ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Π΅Ρ‚ ΠΏΡ€ΠΎΡ†Π΅Π½Ρ‚ ΠΎΡΡ‚Π°Π²ΡˆΠ΅ΠΉΡΡ Тидкости Π² ΠΆΠΈΠ»Π΅ для &3Тидкостных Π±ΡƒΡ€ΠΎΠ²Ρ‹Ρ… установок&r.", + "quests.tfg_tips.portable_scanner.desc.2": "&l&3ΠŸΡ€Π΅Π΄ΠΈΡΡ‚ΠΎΡ€ΠΈΡ:&r&o Π­Ρ‚ΠΎΡ‚ малСнький ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΉ дСвайс ΠΏΡ€ΠΈΡˆΡ‘Π» ΠΈΠ· GregTech 5. Π’ Ρ€Π°Π½Π½ΠΈΠ΅ Π²Ρ€Π΅ΠΌΠ΅Π½Π° ΠΎΠ½ Π±Ρ‹Π» ΠΊΡ€Π°ΠΉΠ½Π΅ ΠΏΠΎΠ»Π΅Π·Π΅Π½, ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ GUI ΠΈ WAILA Π΄Π°Π²Π°Π»ΠΈ ΠΎΡ‡Π΅Π½ΡŒ ΠΌΠ°Π»ΠΎ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ (ΠΏΠΎ сути β€” ΠΏΠΎΡ‡Ρ‚ΠΈ Π½ΠΈΠΊΠ°ΠΊΠΎΠΉ).", + "quests.tfg_tips.duct_tape.subtitle": "Если это Π½Π΅ ΠΏΠΎΠΌΠΎΠ³Π°Π΅Ρ‚, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ большС этого!", + "quests.tfg_tips.duct_tape.desc": "Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Ρ‚Ρ‹ ΡƒΠΆΠ΅ Π·Π°ΠΌΠ΅Ρ‚ΠΈΠ», Ρ‡Ρ‚ΠΎ Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Ρƒ &eΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ²&r трСбуСтся &6люк обслуТивания&r. Π”ΠΎ &6HV&r, ΠΊΠΎΠ³Π΄Π° Ρ‚Ρ‹ смоТСшь ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &aавтоматичСский люк обслуТивания&r, Ρ‚Ρ‹ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ этот ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Ρ‡ΠΈΠ½ΠΈΡ‚ΡŒ люк, Π½Π΅ примСняя всС инструмСнты для обслуТивания.\n\nΠ­Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΎΡ‡Π΅Π½ΡŒ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ, Ссли Ρ‚Ρ‹ ΠΏΠΎΠΊΠ° Π½Π΅ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ Π²ΠΊΠ»Π°Π΄Ρ‹Π²Π°Ρ‚ΡŒΡΡ Π² &aавтоматичСский люк обслуТивания&r ΠΈΠ»ΠΈ Ссли Ρ‚Ρ‹ просто &cΠ΅Ρ‰Ρ‘ Π½Π΅ Π΄ΠΎΡˆΡ‘Π» Π΄ΠΎ этого&r.", + "quests.tfg_tips.gt_filters.title": "Π€ΠΈΠ»ΡŒΡ‚Ρ€Ρ‹", + "quests.tfg_tips.gt_filters.desc": "Π‘ &5GregTech&r Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΡˆΡŒ доступ ΠΊ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹ΠΌ &6Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°ΠΌ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΏΠΎΠΌΠΎΠ³Π°ΡŽΡ‚ ΡƒΠΏΡ€ΠΎΡΡ‚ΠΈΡ‚ΡŒ &aΠ°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΡŽ&r. ВсС ΠΎΠ½ΠΈ совмСстимы с Ρ€Π°Π·Π½Ρ‹ΠΌΠΈ &dΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡΠΌΠΈ машин&r, ΠΎ ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Ρ‚Ρ‹ ΡƒΠ·Π½Π°Π΅ΡˆΡŒ большС Π² Π³Π»Π°Π²Π΅ &7LV&r.\n\nΠ—Π΄Π΅ΡΡŒ ΠΌΡ‹ прСдставляСм Π΅Ρ‰Ρ‘ Π΄Π²Π° Π±ΠΎΠ»Π΅Π΅ спСциализированных Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ &bΠΏΠΎΠ»Π΅Π·Π½Ρ‹ΠΌΠΈ&r Π² ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½Ρ‹Ρ… ситуациях.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€, просто установи Π΅Π³ΠΎ ΠΊΠ°ΠΊ &dΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠΌΠ°ΡˆΠΈΠ½Ρ‹&r Π½Π° Π»ΡŽΠ±ΡƒΡŽ &5GT ΠΌΠ°ΡˆΠΈΠ½Ρƒ&r ΠΈΠ»ΠΈ &6Ρ‚Ρ€ΡƒΠ±Ρƒ&r.", + "quests.tfg_tips.smart_item_filter.subtitle": "Π’ΡƒΠΊ, Ρ‚ΡƒΠΊ - ΠΊΡ‚ΠΎ Ρ‚Π°ΠΌ? Π­Ρ‚ΠΎ MENSA!", + "quests.tfg_tips.smart_item_filter.desc.1": "Π’ этом квСстС ΠΌΡ‹ Π΄Π°Ρ€ΡƒΠ΅ΠΌ Ρ‚Π΅Π±Π΅ &5ΠΏΡ€ΠΎΠΊΠ»ΡΡ‚ΡƒΡŽ ΠΌΡƒΠ΄Ρ€ΠΎΡΡ‚ΡŒ&r… ΡΠΏΠΎΡΠΎΠ±Π½ΠΎΡΡ‚ΡŒ Π»Π΅Π³ΠΊΠΎ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€.\n\n&9Π£ΠΌΠ½Ρ‹ΠΉ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹ΠΉ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€&r β€” это Ρ„ΠΈΠ»ΡŒΡ‚Ρ€, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ распознаёт ΠΊΠ°Ρ€Ρ‚Ρ‹ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ². Если ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ Π΅Π³ΠΎ Π½Π° сторону ΠΌΠ°ΡˆΠΈΠ½Ρ‹, Ρ‚Ρ‹ моТСшь Π²Ρ‹ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ Ρ€Π΅ΠΆΠΈΠΌ Β«&3Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€&rΒ», ΠΈ ΠΎΠ½ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€ΠΎΠΏΡƒΡΠΊΠ°Ρ‚ΡŒ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, подходящиС для элСктролиза. Π”Π°-Π΄Π° β€” Π½ΠΈΠΊΠ°ΠΊΠΎΠΉ Ρ€ΡƒΡ‡Π½ΠΎΠΉ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°Ρ†ΠΈΠΈ!\n\nИ это Π΅Ρ‰Ρ‘ &aΠ½Π΅ ΠΏΡ€Π΅Π΄Π΅Π»&r. Если ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½ΠΈΡ‚ΡŒ этого красавца с &aΠ ΠΎΠ±ΠΎΡ€ΡƒΠΊΠΎΠΉ&r, ΠΎΠ½Π° Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΡŒ Π² ΠΌΠ°ΡˆΠΈΠ½Ρƒ &6Ρ€ΠΎΠ²Π½ΠΎ Ρ‚ΠΎ количСство&r ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ², ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ трСбуСтся для ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎΠ³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°.", + "quests.tfg_tips.smart_item_filter.desc.2": "Установи &aΠ ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ манипулятор&r Π½Π° свой Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€, ΠΎΡ‚ΠΊΡ€ΠΎΠΉ Π΅Π³ΠΎ GUI, Π·Π°Ρ‚Π΅ΠΌ помСсти Π²Π½ΡƒΡ‚Ρ€ΡŒ &9Π£ΠΌΠ½Ρ‹ΠΉ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€&r. УбСдись, Ρ‡Ρ‚ΠΎ Π£ΠΌΠ½Ρ‹ΠΉ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ настроСн Π½Π° Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€.\n\nΠ”Π°Π»Π΅Π΅ настрой Π΅Π³ΠΎ Π½Π° &d&lΠ˜ΠΌΠΏΠΎΡ€Ρ‚&r ΠΈ &d&lВочная ΠΏΠΎΠ΄Π°Ρ‡Π°&r. ПослС этого ΠΏΠΎΠ΄ΠΊΠ»ΡŽΡ‡ΠΈ любой ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ &7(ΠΏΠΎΠ΄ΠΎΠΉΠ΄Ρ‘Ρ‚ ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ сундук)&r ΠΊ Ρ‚ΠΎΠΉ сторонС, Π³Π΄Π΅ Ρ‚Ρ‹ установил &aΠ ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ манипулятор&r. Π’Π°-Π΄Π°ΠΌ! Π’Ρ‹ разобрался, ΠΊΠ°ΠΊ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ &6всС&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€Π°!\n\nА Ρ‡Ρ‚ΠΎ насчёт Π²Ρ‹Π²ΠΎΠ΄Π° &3Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»ΠΈΠ·Ρ‘Ρ€Π°&r? Π‘ΠΊΠΎΡ€Π΅Π΅ всСго, Ρ‚Π΅Π±Π΅ захочСтся Π½Π°ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ Тидкости Π² нСсколько Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€ΠΎΠ² β€” ΠΈΠ»ΠΈ Π΄Π°ΠΆΠ΅ Π² &3Π‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ‹&r, Ссли Ρ‚Ρ‹ ΡƒΠΆΠ΅ Π΄ΠΎ Π½ΠΈΡ… добрался. ΠœΡ‹ Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΈΠ·Π±Π΅Π³Π°Ρ‚ΡŒ Π»ΡŽΠ±Ρ‹Ρ… ΠΌΠ΅Ρ‚ΠΎΠ΄ΠΎΠ², связанных с ΡƒΠ΄Π°Π»Π΅Π½ΠΈΠ΅ΠΌ ТидкостСй.&7.&7. Π·Π° ΠΈΡΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠ΅ΠΌ Π²ΠΎΠ΄Ρ‹ ΠΏΠΎ ΠΎΡ‡Π΅Π²ΠΈΠ΄Π½Ρ‹ΠΌ ΠΏΡ€ΠΈΡ‡ΠΈΠ½Π°ΠΌ.", + "quests.tfg_tips.smart_item_filter.desc.3": "&9ΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅:&r Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ манипулятор Π΄ΠΎΠ»ΠΆΠ΅Π½ сам Π²Ρ‹ΠΏΠΎΠ»Π½ΡΡ‚ΡŒ пСрСнос ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ², Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΅Π³ΠΎ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Π°Ρ†ΠΈΡ Ρ€Π°Π±ΠΎΡ‚Π°Π»Π°! Если Π²ΡΡ‚Π°Π²Π»ΡΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ Π½Π°ΠΏΡ€ΡΠΌΡƒΡŽ Π² ΠΌΠ°ΡˆΠΈΠ½Ρƒ &7(Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, заталкивая ΠΈΡ… Π²ΠΎΡ€ΠΎΠ½ΠΊΠΎΠΉ!)&r, настройка &dВочная ΠΏΠΎΠ΄Π°Ρ‡Π°&r Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ манипулятора Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΡ€ΠΎΠΈΠ³Π½ΠΎΡ€ΠΈΡ€ΠΎΠ²Π°Π½Π°.", + "quests.tfg_tips.hazard_materials.title": "ΠžΠΏΠ°ΡΠ½Ρ‹Π΅ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹", + "quests.tfg_tips.hazard_materials.subtitle": "ΠžΠΏΠ°ΡΠ½ΠΎΡΡ‚ΡŒ ΡƒΠ΄ΡƒΡˆΡŒΡ, для Π΄Π΅Ρ‚Π΅ΠΉ ΠΎΡ‚ 3 Π»Π΅Ρ‚.", + "quests.tfg_tips.hazard_materials.desc": "Π‘ Π½ΠΎΠ²ΠΎΠΉ вСрсиСй &5GregTech&r Π±Ρ‹Π»Π° Π²Π²Π΅Π΄Π΅Π½Π° &cсистСма опасностСй&r. Π—Π°ΠΆΠ°Π² &dShift&r ΠΈ навСдя курсор Π½Π° &cопасныС ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹&r, Ρ‚Ρ‹ моТСшь ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ, ΠΊΠ°ΠΊ ΠΈΠΌΠ΅Π½Π½ΠΎ ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π½Π° тСбя ΠΏΠΎΠ²Π»ΠΈΡΡ‚ΡŒ.\n\nΠœΡ‹ Π½Π°ΡΡ‚ΠΎΡΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΠ΅ΠΌ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ подходящСС &6Π·Π°Ρ‰ΠΈΡ‚Π½ΠΎΠ΅ снаряТСниС&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ свои &cΠΎΡ€Π³Π°Π½Ρ‹ Π² цСлости&r.", + "quests.tfg_tips.face_mask.desc": "&6ΠœΠ΅Π΄ΠΈΡ†ΠΈΠ½ΡΠΊΠ°Ρ маска&r Π·Π°Ρ‰ΠΈΡ‚ΠΈΡ‚ тСбя ΠΎΡ‚ &cвдыхания опасной ΠΏΡ‹Π»ΠΈ&r. Она &aдовольно Π»Π΅Π³ΠΊΠΎ крафтится&r ΠΈ Π΄ΠΎΠ»ΠΆΠ½Π° ΠΏΡ€Π΅Π΄ΠΎΡ‚Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΡ‹ ΠΏΡ€ΠΈ Ρ€Π°Π±ΠΎΡ‚Π΅ с &5ΠΌΡ‹ΡˆΡŒΡΠΊΠΎΠΌ&r.", + "quests.tfg_tips.rubber_gloves.desc": "&6Π Π΅Π·ΠΈΠ½ΠΎΠ²Ρ‹Π΅ ΠΏΠ΅Ρ€Ρ‡Π°Ρ‚ΠΊΠΈ&r, разумССтся, защитят тСбя ΠΎΡ‚ &cопасностСй ΠΏΡ€ΠΈ ΠΊΠΎΠ½Ρ‚Π°ΠΊΡ‚Π΅ с ΠΊΠΎΠΆΠ΅ΠΉ&r. Π‘Π΄Π΅Π»Π°Ρ‚ΡŒ ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ двумя способами: &7Π±ΠΎΠ»Π΅Π΅ Π΄ΠΎΠ»Π³ΠΈΠΌ ΠΈ слоТным ΠΏΡƒΡ‚Ρ‘ΠΌ&r Ρ‡Π΅Ρ€Π΅Π· &2TerraFirmaCraft&r ΠΈΠ»ΠΈ Π³ΠΎΡ€Π°Π·Π΄ΠΎ &aΠ±ΠΎΠ»Π΅Π΅ простым способом&r с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &6ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠΉ ΠΏΠ΅Ρ‡ΠΈ для сплавов высокого давлСния&r.", + "quests.tfg_tips.hazmat.title": "Π—Π°Ρ‰ΠΈΡ‚Π½Ρ‹ΠΉ ΠΊΠΎΡΡ‚ΡŽΠΌ для Ρ€Π°Π±ΠΎΡ‚Ρ‹ с опасными ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Π°ΠΌΠΈ", + "quests.tfg_tips.hazmat.desc": "&6ΠšΠΎΡΡ‚ΡŽΠΌ для Ρ€Π°Π±ΠΎΡ‚Ρ‹ с опасными ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Π°ΠΌΠΈ&r β€” это Π»ΡƒΡ‡ΡˆΠΈΠΉ способ Π·Π°Ρ‰ΠΈΡ‚ΠΈΡ‚ΡŒ сСбя ΠΎΡ‚ &cлюбого Π²ΠΈΠ΄Π° Π²Ρ€Π΅Π΄Π°&r. Π’Ρ‹ смоТСшь ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ Π΅Π³ΠΎ, достигнув &bMV&r, ΠΈ &aΡ‚Π΅Π±Π΅ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Ρ‘Π½Π½ΠΎ стоит Π½Π°ΠΉΡ‚ΠΈ врСмя, Ρ‡Ρ‚ΠΎΠ±Ρ‹ это ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ&r.", + "quests.tfg_tips.armor.title": "Броня GregTech", + "quests.tfg_tips.armor.desc": "ВмСстС с &5GregTech&r Ρ‚Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΡˆΡŒ ΡΠΎΠ±ΡΡ‚Π²Π΅Π½Π½ΡƒΡŽ Π»ΠΈΠ½Π΅ΠΉΠΊΡƒ Π±Ρ€ΠΎΠ½ΠΈ. ΠšΠΎΠ½Π΅Ρ‡Π½ΠΎ, Ρ€Π°Π½ΡŒΡˆΠ΅ Π±Ρ‹Π»ΠΎ ΠΊΡ€ΡƒΡ‚ΠΎ Π½ΠΎΡΠΈΡ‚ΡŒ &7мСталличСскиС пластины&r, Π½ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ΡŒ, ΠΊΠΎΠ³Π΄Π° Ρ‚Ρ‹ &bΠΈΠ½Π΄ΡƒΡΡ‚Ρ€ΠΈΠ°Π»ΡŒΠ½Ρ‹ΠΉ маньяк&r, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, ΠΏΡ€ΠΈΡˆΠ»ΠΎ врСмя Π²Π·Π³Π»ΡΠ½ΡƒΡ‚ΡŒ Π½Π° &aΡ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³ΠΈΡ‡Π½ΡƒΡŽ Π±Ρ€ΠΎΠ½ΡŽ&r.\n\n&5GregTech&r ΠΏΡ€Π΅Π΄Π»Π°Π³Π°Π΅Ρ‚ Π΄Π²Π΅ ΠΌΠΎΠ΄Π΅Π»ΠΈ. ΠŸΠ΅Ρ€Π²Π°Ρ становится доступной ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ Π½Π° &6HV&r ΠΈ обСспСчиваСт Π·Π°Ρ‰ΠΈΡ‚Ρƒ Π»ΡƒΡ‡ΡˆΠ΅, Ρ‡Π΅ΠΌ всё, Ρ‡Ρ‚ΠΎ Ρ‚Ρ‹ носил Ρ€Π°Π½ΡŒΡˆΠ΅. Она оснащСна &eΠΌΠΎΡ‰Π½ΠΎΠΉ изоляциСй&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ суровый ΠΊΠ»ΠΈΠΌΠ°Ρ‚ Π—Π΅ΠΌΠ»ΠΈ, ΠΈ Π΅Ρ‘ Π΄Π°ΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ, Π΄ΠΎΠ±Π°Π²ΠΈΠ² &dΡ€Π΅Π°ΠΊΡ‚ΠΈΠ²Π½Ρ‹ΠΉ Ρ€Π°Π½Π΅Ρ†&r.\n\nВторая модСль станСт доступна Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΏΠΎΠ·ΠΆΠ΅ β€” ΠΏΡ€ΠΈΠΌΠ΅Ρ€Π½ΠΎ Π½Π° &1IV&r ΠΈ &dLuV&r.", + "quests.tfg_tips.terrafirmacraft.title": "Аддоны TerraFirmaCraft", + "quests.tfg_tips.terrafirmacraft.subtitle": "ΠžΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ Π΄Π²Π΅ Ρ‚Ρ€Π΅Ρ‚ΠΈ названия сборки", + "quests.tfg_tips.terrafirmacraft.desc": "&3TerraFirmaCraft&r β€” ΠΎΠ΄ΠΈΠ½ ΠΈΠ· основных ΠΌΠΎΠ΄ΠΎΠ² Π² составС &2TerraFirmaGreg.&r Π­Ρ‚Π° Π²Π΅Ρ‚Π²ΡŒ Π² основном сосрСдоточСна Π½Π° Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… функциях выТивания ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… &dАддонах&r, ΠΏΡ€ΠΈΡΡƒΡ‚ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΡ… Π² сборкС, Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ &4Aged Alcohol&r ΠΈ &bCanes&r.", + "quests.tfg_tips.cane.title": "Врости", + "quests.tfg_tips.cane.subtitle": "Ими Π΄Π°ΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΡΡ‚ΡƒΠΊΠ½ΡƒΡ‚ΡŒ ΠΊΠΎΠ³ΠΎ-Π½ΠΈΠ±ΡƒΠ΄ΡŒ!", + "quests.tfg_tips.cane.desc": "&dΠ’Ρ€ΠΎΡΡ‚ΡŒ&r позволяСт ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ ΠΈΠ³Π½ΠΎΡ€ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π»ΡŽΠ±Ρ‹Π΅ Π±Π»ΠΎΠΊΠΈ, Π·Π°ΠΌΠ΅Π΄Π»ΡΡŽΡ‰ΠΈΠ΅ Π΄Π²ΠΈΠΆΠ΅Π½ΠΈΠ΅, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ &aснСг&r, Ссли Π²Ρ‹ Π΄Π΅Ρ€ΠΆΠΈΡ‚Π΅ Π΅Π΅ Π² &cосновной&r ΠΈΠ»ΠΈ &cвторостСпСнной Ρ€ΡƒΠΊΠ΅&r. Π’Π΄ΠΎΠ±Π°Π²ΠΎΠΊ ΠΎΠ½Π° &bΠΏΠΎΠ²Ρ‹ΡˆΠ°Π΅Ρ‚ высоту шага&r β€” Π΄Ρ€ΡƒΠ³ΠΈΠΌΠΈ словами, Π²Ρ‹ смоТСтС ΠΏΠΎΠ΄Π½ΠΈΠΌΠ°Ρ‚ΡŒΡΡ Π½Π° ΠΎΠ΄ΠΈΠ½ Π±Π»ΠΎΠΊ Π±Π΅Π· ΠΏΡ€Ρ‹ΠΆΠΊΠ°. А &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.feeding_troughs.title": "ΠšΠΎΡ€ΠΌΡƒΡˆΠΊΠΈ", + "quests.tfg_tips.feeding_troughs.subtitle": "ΠœΠ΅Ρ‚Π°Π»Π»ΠΈΡ‡Π΅ΡΠΊΠΈΠΉ Π±Π°Ρ‚Ρ€Π°ΠΊ", + "quests.tfg_tips.feeding_troughs.desc": "ΠšΠΎΡ€ΠΌΡƒΡˆΠΊΠΈ (Ρ‚Π°ΠΊΠΆΠ΅ извСстныС ΠΊΠ°ΠΊ станции ΡƒΡ…ΠΎΠ΄Π°) β€” это способ автоматичСски ΠΊΠΎΡ€ΠΌΠΈΡ‚ΡŒ Ρ‚Π²ΠΎΠΈΡ… ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ… ΠΊΠ°ΠΆΠ΄ΠΎΠ΅ ΡƒΡ‚Ρ€ΠΎ. Π’ Π½ΠΈΡ… Π΄Π°ΠΆΠ΅ Π΅ΡΡ‚ΡŒ опция Π½Π΅ ΠΊΠΎΡ€ΠΌΠΈΡ‚ΡŒ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ…, Ρƒ ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΡƒΠΆΠ΅ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ привязанности, Ссли Ρ‚Ρ‹ Π½Π΅ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΠΈΡ… Ρ€Π°Π·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ.\n\nΠ‘ΠΎΠ»Π΅Π΅ высокиС Ρ‚ΠΈΡ€Ρ‹ ΠΈΠΌΠ΅ΡŽΡ‚ больший радиус дСйствия.\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o Π›ΡƒΡ‡ΡˆΠ΅ Π½Π΅ ΡΡ‚Π°Π²ΡŒ Ρ‚Π°ΠΊΡƒΡŽ Π²ΠΏΠ»ΠΎΡ‚Π½ΡƒΡŽ ΠΊ Π·Π°Π±ΠΎΡ€Ρƒ β€” ΠΈΠ½Π°Ρ‡Π΅ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΠΏΡ‹Ρ‚Π°Ρ‚ΡŒΡΡ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Ρ‘, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ±Π΅ΠΆΠ°Ρ‚ΡŒ ΠΈΠ· Π·Π°Π³ΠΎΠ½Π°!", + "quests.tfg_tips.feeding_troughs.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 ΠΈ ΠΏΠ»Π°Ρ‚Ρ„ΠΎΡ€ΠΌΡ‹, сдСланной ΠΈΠ· ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½Ρ‹Ρ… Π±Π»ΠΎΠΊΠΎΠ² для стСклодувного Π΄Π΅Π»Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π»ΠΈΠ²Π°Ρ‚ΡŒ расплавлСнноС стСкло. ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ΡΡŒ ΠΊ &2ΠŸΠΎΠ»Π΅Π²ΠΎΠΌΡƒ руководству&r для получСния ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ ΠΎ Ρ„ΠΎΡ€ΠΌΠ΅ ΠΏΠ»Π°Ρ‚Ρ„ΠΎΡ€ΠΌΡ‹ ΠΈ допустимых Π±Π»ΠΎΠΊΠ°Ρ…. Π’Ρ‹ смоТСтС Π·Π°Π½ΠΈΠΌΠ°Ρ‚ΡŒΡΡ стСклодувным Π΄Π΅Π»ΠΎΠΌ, ΠΊΠ°ΠΊ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π½Π°ΡƒΡ‡ΠΈΡ‚Π΅ΡΡŒ ΠΎΠ±Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ &aΠ»Π°Ρ‚ΡƒΠ½ΡŒ!&r", + "quests.tfg_tips.glassblowing.task.1": "Π›ΡŽΠ±Ρ‹Π΅ Π±Π»ΠΎΠΊΠΈ для стСклодувного Π΄Π΅Π»Π°.", + "quests.tfg_tips.glassblowing_tools.title": "Π˜Π½ΡΡ‚Ρ€ΡƒΠΌΠ΅Π½Ρ‚Ρ‹ для стСклодСлия", + "quests.tfg_tips.glassblowing_tools.subtitle": "Π˜Π½ΡΡ‚Ρ€ΡƒΠΌΠ΅Π½Ρ‚Ρ‹ для изготовлСния стСкла", + "quests.tfg_tips.glassblowing_tools.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ со &dΠ‘Ρ‚Π΅ΠΊΠ»ΠΎΠΌ&r, Π²Π°ΠΌ понадобится Ρ€Π°Π·Π½ΠΎΠΎΠ±Ρ€Π°Π·Π½Ρ‹ΠΉ Π½Π°Π±ΠΎΡ€ инструмСнтов:\n\n&3Π›ΠΎΠΏΠ°Ρ‚ΠΊΠ°&r: ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для выпрямлния, Π² основном ΠΏΡ€ΠΈ создании &dстСклянных ΠΏΠ°Π½Π΅Π»Π΅ΠΉ&r ΠΈ &dстСкла для Π»Π°ΠΌΠΏ&r.\n&3Пилка с Π½Π°ΠΏΡ‹Π»Π΅Π½ΠΈΠ΅ΠΌ&r: ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½Π° для изготовлСния стСклянных ΠΈΠ·Π΄Π΅Π»ΠΈΠΉ. Π’Π°ΠΊΠΆΠ΅ позволяСт Π·Π°Π±ΠΈΡ€Π°Ρ‚ΡŒ &dΠ‘Ρ‚Π΅ΠΊΠ»ΠΎ&r ΠΈ &cΠšΡ€ΠΈΡΡ‚Π°Π»Π»Ρ‹&r прямо ΠΈΠ· ΠΌΠΈΡ€Π° β€” Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ ΠΊΠ°ΠΊ эффСкт &bΠ¨Π΅Π»ΠΊΠΎΠ²ΠΎΠ΅ касаниС&r!\n&3Π©ΠΈΠΏΡ†Ρ‹&r: ΠΏΡ€ΠΈΠΌΠ΅Π½ΡΡŽΡ‚ΡΡ для заТатия стСкла, Π² основном ΠΏΡ€ΠΈ защСмлСния СмкостСй, Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ &dΠ‘ΡƒΡ‚Ρ‹Π»ΠΎΡ‡ΠΊΠ°.&r\n&3ШСрстяная Ρ‚ΠΊΠ°Π½ΡŒ&r: ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для прокатывания стСкла, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠ° ΠΏΡ€ΠΈ создании &dΠ›ΠΈΠ½Π·&r ΠΈ &dΠ‘Π°Π½ΠΎΠΊ.&r", + "quests.tfg_tips.glass_blocks.title": "Π‘Π»ΠΎΠΊ стСкла", + "quests.tfg_tips.glass_blocks.subtitle": "ΠŸΡ€ΠΈΠΎΠ±Ρ€Π΅Ρ‚ΠΈΡ‚Π΅ сСбС ΠΎΠΊΠ½Π°.", + "quests.tfg_tips.glass_blocks.desc": "Π’ зависимости ΠΎΡ‚ Ρ‚ΠΈΠΏΠ° пСска, использованного для &aБмСси&r, вашС ΠΈΡ‚ΠΎΠ³ΠΎΠ²ΠΎΠ΅ &dΠ‘Ρ‚Π΅ΠΊΠ»ΠΎ&r Π±ΡƒΠ΄Π΅Ρ‚ ΠΈΠΌΠ΅Ρ‚ΡŒ Ρ€Π°Π·Π½Ρ‹ΠΉ Ρ†Π²Π΅Ρ‚. ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½Π΅Π΅ ΠΎ способах получСния ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½Ρ‹Ρ… Ρ†Π²Π΅Ρ‚ΠΎΠ² Ρ‡ΠΈΡ‚Π°ΠΉΡ‚Π΅ Π² Ρ€Π°Π·Π΄Π΅Π»Π΅ &3Π‘Ρ‚Π΅ΠΊΠ»ΠΎΠ΄Π΅Π»ΠΈΠ΅&r ΠΈ &3БтСклянныС издСлия&r &2ПолСвого руководства&r. ПозТС Π²Ρ‹ смоТСтС ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Ρ…ΠΈΠΌΠΈΠΊΠ°Ρ‚Ρ‹ ΠΈΠ· &3GregTech&r для Π±ΠΎΠ»Π΅Π΅ простой покраски стСкла.\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o Если Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ Π±Π»ΠΎΠΊΠΎΠ² стСкла ΠΈ Ρƒ вас Π΅ΡΡ‚ΡŒ доступ ΠΊ &bΠŸΠ΅Ρ‡ΠΈ для сплавов&r, Π±ΡƒΠ΄Π΅Ρ‚ эффСктивнСС ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ &dБтСклянныС ΠΏΠ°Π½Π΅Π»ΠΈ&r, &bΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚ΡŒ&r ΠΈΡ… , Π·Π°Ρ‚Π΅ΠΌ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π² &dΠ‘Ρ‚Π΅ΠΊΠ»ΡΠ½Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ&r ΠΈ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &aΠžΡ‚Π»ΠΈΠ²Π½ΡƒΡŽ Ρ„ΠΎΡ€ΠΌΡƒ&r β€” ΠΎΠ΄Π½Π° смСсь ΠΌΠΎΠΆΠ΅Ρ‚ Π΄Π°Ρ‚ΡŒ Π΄ΠΎ 16 ΠΌΠ°Π»Π΅Π½ΡŒΠΊΠΈΡ… ΠΊΡƒΡ‡Π΅ΠΊ ΠΏΡ‹Π»ΠΈ Π·Π° Ρ€Π°Π·!", + "quests.tfg_tips.lamps.title": "Π€ΠΎΠ½Π°Ρ€ΠΈ", + "quests.tfg_tips.lamps.subtitle": "Они ΠΎΡ‡Π΅Π½ΡŒ приятныС.", + "quests.tfg_tips.lamps.desc": "Как ΠΈ Π² ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠΌ ΠœΠ°ΠΉΠ½ΠΊΡ€Π°Ρ„Ρ‚Π΅, &dΠ€ΠΎΠ½Π°Ρ€ΠΈ&r ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ΄Π²Π΅ΡˆΠΈΠ²Π°Ρ‚ΡŒ ΠΊ ΠΏΠΎΡ‚ΠΎΠ»ΠΊΡƒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Ρ†Π΅ΠΏΠ΅ΠΉ ΠΈΠ»ΠΈ Ρ€Π°Π·ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ Π½Π° Π²Π΅Ρ€Ρ…Π½Π΅ΠΉ части Π±Π»ΠΎΠΊΠΎΠ². &dΠ€ΠΎΠ½Π°Ρ€ΠΈ&r ΠΏΠΎΡ‚Ρ€Π΅Π±Π»ΡΡŽΡ‚ Ρ€Π°Π·Π½Ρ‹Π΅ Π²ΠΈΠ΄Ρ‹ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡΡ‚Π°Π²Π°Ρ‚ΡŒΡΡ Π·Π°ΠΆΠΆΠ΅Π½Π½Ρ‹ΠΌΠΈ. НСкоторыС Π²ΠΈΠ΄Ρ‹ Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° горят &4бСсконСчно.&r\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o Π—Π°ΠΏΠΎΠ»Π½Π΅Π½Π½Ρ‹Π΅ Ρ„ΠΎΠ½Π°Ρ€ΠΈ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π² слот &6спины&r Π² &cмСню Curios&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Ρ‚ΡŒ динамичСскоС освСщСниС Π±Π΅Π· занятых Ρ€ΡƒΠΊ. Π­Ρ‚ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚ Π½Π΅ Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ ΠΏΡ€ΠΈ использовании ΡˆΠ΅ΠΉΠ΄Π΅Ρ€ΠΎΠ².", + "quests.tfg_tips.creosote.title": "Π’ΠΎΠΏΠ»ΠΈΠ²ΠΎ для фонаря: ΠšΡ€Π΅ΠΎΠ·ΠΎΡ‚", + "quests.tfg_tips.creosote.subtitle": "Если Ρƒ вас Π΅Π³ΠΎ ΠΌΠ½ΠΎΠ³ΠΎ скопилось...", + "quests.tfg_tips.creosote.desc": "&dΠšΡ€Π΅ΠΎΠ·ΠΎΡ‚&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² качСствС Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° для фонаря, Π½ΠΎ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ Π·Π°ΠΏΡ€Π°Π²Π»Π΅Π½Π½ΠΎΠ³ΠΎ фонаря Ρ…Π²Π°Ρ‚ΠΈΡ‚ всСго Π½Π° &c10&r Π΄Π½Π΅ΠΉ.", + "quests.tfg_tips.creosote.task": "Π’Π΅Π΄Ρ€ΠΎ (ΠšΡ€Π΅ΠΎΠ·ΠΎΡ‚)", + "quests.tfg_tips.tallow.title": "Π’ΠΎΠΏΠ»ΠΈΠ²ΠΎ для фонаря: Π–ΠΈΡ€", + "quests.tfg_tips.tallow.subtitle": "Π–ΠΈΠ²ΠΎΡ‚Π½Ρ‹ΠΉ ΠΆΠΈΡ€", + "quests.tfg_tips.tallow.desc": "&dΠ–ΠΈΡ€&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² качСствС Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° для фонаря. Полного фонаря Ρ…Π²Π°Ρ‚ΠΈΡ‚ Π½Π° &c18&r Π΄Π½Π΅ΠΉ.", + "quests.tfg_tips.tallow.task": "Π’Π΅Π΄Ρ€ΠΎ ΠΆΠΈΡ€Π°", + "quests.tfg_tips.olive_oil.title": "Π’ΠΎΠΏΠ»ΠΈΠ²ΠΎ для фонаря: ОливковоС масло", + "quests.tfg_tips.olive_oil.subtitle": "Π§ΡƒΡ‚ΠΎΡ‡ΠΊΡƒ ΠΎΠ»ΠΈΠ²ΠΊΠΎΠ²ΠΎΠ³ΠΎ масла", + "quests.tfg_tips.olive_oil.desc": "&dОливковоС масло&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² качСствС Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°. Π₯отя Π΅Π³ΠΎ ΠΈ слоТнСС ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с Π΄Ρ€ΡƒΠ³ΠΈΠΌΠΈ, Π½ΠΎ ΠΏΠΎΠ»Π½ΠΎΠ³ΠΎ фонаря Ρ…Π²Π°Ρ‚Π°Π΅Ρ‚ Π½Π° Ρ†Π΅Π»Ρ‹Ρ… &c83&r дня!\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o Доступ ΠΊ элСктричСским ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠ°ΠΌ ΡƒΠΆΠ΅ Π½Π° ΡƒΡ€ΠΎΠ²Π½Π΅ &7LV&r Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ упростит ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ.", + "quests.tfg_tips.olive_oil.task": "Π’Π΅Π΄Ρ€ΠΎ ΠΎΠ»ΠΈΠ²ΠΊΠΎΠ²ΠΎΠ³ΠΎ масла", + "quests.tfg_tips.lava_lamp.title": "Π’ΠΎΠΏΠ»ΠΈΠ²ΠΎ для фонаря: Π›Π°Π²Π°?", + "quests.tfg_tips.lava_lamp.subtitle": "НС Ρ‚Π°ΠΊ Π·Π°Π²ΠΎΡ€Π°ΠΆΠΈΠ²Π°Π΅Ρ‚, ΠΊΠ°ΠΊ настоящая", + "quests.tfg_tips.lava_lamp.desc": "Из ΠΎΡ‡Π΅Π½ΡŒ тСрмостойкого ΠΌΠ΅Ρ‚Π°Π»Π»Π°, &9Π‘ΠΈΠ½Π΅ΠΉ стали&r, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &dΠ€ΠΎΠ½Π°Ρ€ΡŒ ΠΈΠ· синСй стали.&r Π•Π³ΠΎ ΠΌΠΎΠΆΠ½ΠΎ Π·Π°ΠΏΡ€Π°Π²ΠΈΡ‚ΡŒ &cΠ»Π°Π²ΠΎΠΉ&r, ΠΏΠΎΠ»ΡƒΡ‡ΠΈΠ² бСсконСчный источник свСта, β€” Π½ΠΎ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ для этого Ρ‚ΠΈΠΏΠ° фонаря.\n\nΠ‘ΡƒΠ΄ΡŒ остороТСн с Ρ„ΠΎΠ½Π°Ρ€Π΅ΠΌ, Π½Π°ΠΏΠΎΠ»Π½Π΅Π½Π½Ρ‹ΠΌ Π»Π°Π²ΠΎΠΉ β€” ΠΎΠ½ ΠΎΡ‡Π΅Π½ΡŒ &cгорячий...&r", + "quests.tfg_tips.glowstone_lamp.title": "Π’ΠΎΠΏΠ»ΠΈΠ²ΠΎ для фонаря: Π‘Π²Π΅Ρ‚ΠΎΠΊΠ°ΠΌΠ΅Π½ΡŒ", + "quests.tfg_tips.glowstone_lamp.subtitle": "Π›ΡƒΡ‡ΡˆΠ΅Π΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ для Π»Π°ΠΌΠΏ", + "quests.tfg_tips.glowstone_lamp.desc": "Π’Π΅Π±Π΅ понадобится доступ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ ΠΊ &7LV&r элСктричСству, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Ρ€Π°ΡΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ &dΠ‘Π²Π΅Ρ‚ΠΎΠΊΠ°ΠΌΠ΅Π½ΡŒ&r, Π½ΠΎ Ссли Ρ‚Π΅Π±Π΅ нравятся Π»ΡŽΠ±Ρ‹Π΅ &aΠ»Π°ΠΌΠΏΡ‹&r, Ρ‚Ρ‹ моТСшь ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &6Π–ΠΈΠ΄ΠΊΠΈΠΉ Π‘Π²Π΅Ρ‚ΠΎΠΊΠ°ΠΌΠ΅Π½ΡŒ&r для ΠΈΡ… бСсконСчного питания. Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ &cΠ›Π°Π²Ρ‹&r, ΠΎΠ½ Π½Π΅ горячий!", + "quests.tfg_tips.charcoal_pile.title": "Угольная яма", + "quests.tfg_tips.charcoal_pile.subtitle": "Π­Ρ‚ΠΎ Π²Π°ΠΌ пригодится", + "quests.tfg_tips.charcoal_pile.desc.1": "&aУгольная яма&r β€” это Ρ€Π°Π½Π½ΠΈΠΉ источник получСния &dДрСвСсного угля&r. Π’Π°ΠΌ понадобится &oΠΌΠ½ΠΎΠ³ΠΎ&r угля, Ссли Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΡ€Π΅ΡƒΡΠΏΠ΅Ρ‚ΡŒ Π² &2TFG&r, вСдь дрСвСсный ΡƒΠ³ΠΎΠ»ΡŒ β€” ΠΊΠ»ΡŽΡ‡Π΅Π²ΠΎΠΉ рСсурс для &3ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ&r ΠΈ Π²Ρ‹ΠΏΠ»Π°Π²ΠΊΠΈ &3ΠšΡ€ΠΈΡ†Ρ‹&r Π² &bКованоС ΠΆΠ΅Π»Π΅Π·ΠΎ&r.\n\nНачнитС с Ρ‚ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎ Π²Ρ‹ΠΊΠΎΠΏΠ°ΠΉΡ‚Π΅ яму.", + "quests.tfg_tips.charcoal_pile.desc.2": "ПослС этого, удСрТивая ΠΊΠ»Π°Π²ΠΈΡˆΡƒ &cΠšΡ€Π°ΡΡ‚ΡŒΡΡ&r, Ρ€Π°Π·ΠΌΠ΅Ρ‰Π°ΠΉΡ‚Π΅ Π² ямС Π±Ρ€Π΅Π²Π½Π° β€” Ρ‚Π°ΠΊ Π²Ρ‹ создадитС &2ΠŸΠΎΠ»Π΅Π½Π½ΠΈΡ†Ρƒ&r. Π§Π΅ΠΌ большС Π±Ρ€Π΅Π²Π΅Π½ Π² ΠŸΠΎΠ»Π΅Π½Π½ΠΈΡ†Π΅, Ρ‚Π΅ΠΌ большС &dДрСвСсного угля&r Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅.", + "quests.tfg_tips.charcoal_pile.desc.3": "ПослС размСщСния &2ΠŸΠΎΠ»Π΅Π½Π½ΠΈΡ†Ρ‹&r Π½Π°ΠΊΡ€ΠΎΠΉΡ‚Π΅ ΠΈΡ… Π±Π»ΠΎΠΊΠ°ΠΌΠΈ, оставив &oΠΎΠ΄Π½Ρƒ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡƒΡŽ.&r ΠŸΠΎΠ΄ΠΎΠΆΠ³ΠΈΡ‚Π΅ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡƒΡŽ Ρ‡Π°ΡΡ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &dΠŸΡ€ΠΈΠΌΠΈΡ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ ΠΎΠ³Π½ΠΈΠ²Π°&r, Π±Ρ€ΠΎΡˆΠ΅Π½Π½ΠΎΠ³ΠΎ &eΠ€Π°ΠΊΠ΅Π»Π°&r ΠΈΠ»ΠΈ &4Огнива.&r Π”ΠΎΠΆΠ΄ΠΈΡ‚Π΅ΡΡŒ появлСния ΠΊΡ€ΡƒΠΏΠ½Ρ‹Ρ… частиц Π΄Ρ‹ΠΌΠ° ΠΈΠ· ΠΏΠΎΠΊΡ€Ρ‹Ρ‚Ρ‹Ρ… Π±Π»ΠΎΠΊΠΎΠ² ΠΈ &cΠ·Π°ΠΏΠ΅Ρ‡Π°Ρ‚Π°ΠΉΡ‚Π΅&r ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡƒΡŽ Ρ‡Π°ΡΡ‚ΡŒ. Когда Π΄Ρ‹ΠΌ пСрСстанСт Π²Ρ‹Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ, ΡƒΠ±Π΅Ρ€ΠΈΡ‚Π΅ Π±Π»ΠΎΠΊΠΈ ΠΈ собСритС &dДрСвСсный ΡƒΠ³ΠΎΠ»ΡŒ&r β€” ΠΆΠ΅Π»Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &aΠ›ΠΎΠΏΠ°Ρ‚Ρ‹&r ΠΈΠ»ΠΈ &aЗаступа.&r", + "quests.tfg_tips.charcoal_pile.desc.4": "&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o ΠŸΠΎΡΡ‚Π°Ρ€Π°ΠΉΡ‚Π΅ΡΡŒ ΠΊΠ°ΠΊ ΠΌΠΎΠΆΠ½ΠΎ Ρ€Π°Π½ΡŒΡˆΠ΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ &3ΠšΠΎΠΊΡΠΎΠ²ΡƒΡŽ ΠΏΠ΅Ρ‡ΡŒ.&f Она Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Π΅Ρ‚ Π±Ρ€Π΅Π²Π½Π° Π² &aДрСвСсный ΡƒΠ³ΠΎΠ»ΡŒ&f с &cΠ»ΡƒΡ‡ΡˆΠΈΠΌ ΡΠΎΠΎΡ‚Π½ΠΎΡˆΠ΅Π½ΠΈΠ΅ΠΌ&f, Π½ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ &aΠšΡ€Π΅ΠΎΠ·ΠΎΡ‚&f β€” ΠΏΠΎΠ»Π΅Π·Π½ΠΎΠ΅ Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ для Ρ„ΠΎΠ½Π°Ρ€Π΅ΠΉ ΠΈ ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Ρ… ΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΠΎΠ², Π° Ρ‚Π°ΠΊΠΆΠ΅ &aΠšΠΎΠΊΡΠΎΠ²Ρ‹ΠΉ ΡƒΠ³ΠΎΠ»ΡŒ&f для Π²Ρ‹ΠΏΠ»Π°Π²ΠΊΠΈ &dΠ‘Ρ‚Π°Π»ΠΈ&r.", + "quests.tfg_tips.thatch_bed.title": "БоломСнная ΠΊΡ€ΠΎΠ²Π°Ρ‚ΡŒ", + "quests.tfg_tips.thatch_bed.subtitle": "ΠœΠ΅ΡΡ‚ΠΎ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚Π΄ΠΎΡ…Π½ΡƒΡ‚ΡŒβ€¦ Π² ΠΊΠ°ΠΊΠΎΠΌ-Ρ‚ΠΎ смыслС", + "quests.tfg_tips.thatch_bed.desc": "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ &bΠ‘ΠΎΠ»ΠΎΠΌΡ‹&r ΠΈ &aΠšΡ€ΡƒΠΏΠ½ΡƒΡŽ ΡΠ²Π΅ΠΆΡƒΡŽ ΡˆΠΊΡƒΡ€Ρƒ&r, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &dΠ‘ΠΎΠ»ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠΊΡ€ΠΎΠ²Π°Ρ‚ΡŒ.&r Π‘ΠΏΠ°Ρ‚ΡŒ Π½Π° Π½Π΅ΠΉ нСльзя, Π½ΠΎ ΠΎΠ½Π° &cустанавливаСт Ρ‚ΠΎΡ‡ΠΊΡƒ спавна.&r\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΡΠΎΠ»ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠΊΡ€ΠΎΠ²Π°Ρ‚ΡŒ, размСститС &bΠ΄Π²Π° снопа соломы&r рядом, Π° Π·Π°Ρ‚Π΅ΠΌ взаимодСйствуйтС с Π½ΠΈΠΌΠΈ, удСрТивая Π² Ρ€ΡƒΠΊΠ΅ &aΠšΡ€ΡƒΠΏΠ½ΡƒΡŽ ΡΠ²Π΅ΠΆΡƒΡŽ ΡˆΠΊΡƒΡ€Ρƒ&r.", + "quests.tasktype.looktat": "ΠŸΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Π½Π° Π·Π°ΠΊΠΎΠ½Ρ‡Π΅Π½Π½ΡƒΡŽ ΡΠΎΠ»ΠΎΠΌΠ΅Π½Π½ΡƒΡŽ ΠΊΡ€ΠΎΠ²Π°Ρ‚ΡŒ", + "quests.tfg_tips.loom.title": "Π’ΠΊΠ°Ρ†ΠΊΠΈΠΉ станок", + "quests.tfg_tips.loom.subtitle": "Π’Π΅Π±Π΅ Π½ΡƒΠΆΠ½ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ ΠΏΠΎΡ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ усСрдно, Ссли Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΡΠΏΠ°Ρ‚ΡŒ...", + "quests.tfg_tips.loom.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ ΠΊΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΠΎΠ»ΡƒΡ‡ΡˆΠ΅, Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ Π·Π°Π½ΡΡ‚ΡŒΡΡ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ΠΌ Ρ‚ΠΊΠ°Π½Π΅ΠΉ. Для этого идСально ΠΏΠΎΠ΄ΠΎΠΉΠ΄Π΅Ρ‚ &3Π’ΠΊΠ°Ρ†ΠΊΠΈΠΉ станок&r β€” рабочая станция, с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΉ ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ Π²ΠΈΠ΄Ρ‹ тСкстиля, ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… ΠΈΠΌΠ΅Π΅Ρ‚ своС ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠ΅.", + "quests.tfg_tips.burlap_cloth.title": "ДТутовая Ρ‚ΠΊΠ°Π½ΡŒ", + "quests.tfg_tips.burlap_cloth.subtitle": "Π˜Π·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎ ΠΈΠ· Π”ΠΆΡƒΡ‚Π°!", + "quests.tfg_tips.burlap_cloth.desc": "Если Π·Π°ΠΌΠΎΡ‡ΠΈΡ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ &aΠ”ΠΆΡƒΡ‚Π°&r Π² Π±ΠΎΡ‡ΠΊΠ΅, Π° Π·Π°Ρ‚Π΅ΠΌ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½Π½Ρ‹Π΅ &aΠ”ΠΆΡƒΡ‚ΠΎΠ²Ρ‹Π΅ Π²ΠΎΠ»ΠΎΠΊΠ½Π°&r Π½Π° &3Π’ΠΊΠ°Ρ†ΠΊΠΎΠΌ станкС&r, Ρ‚ΠΎ Π²Ρ‹ смоТСтС ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &dΠ”ΠΆΡƒΡ‚ΠΎΠ²ΡƒΡŽ Ρ‚ΠΊΠ°Π½ΡŒ&r.&r\n\nДТутовая Ρ‚ΠΊΠ°Π½ΡŒ ΠΈΠΌΠ΅Π΅Ρ‚ мноТСство ΠΏΡ€ΠΈΠΌΠ΅Π½Π΅Π½ΠΈΠΉ: ΠΈΠ· Π½Π΅Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ &bΠžΠ΄Π΅ΠΆΠ΄Ρƒ ΠΈΠ· Π΄ΠΆΡƒΡ‚ΠΎΠ²ΠΎΠΉ Ρ‚ΠΊΠ°Π½ΠΈ&r, которая Π·Π°Ρ‰ΠΈΡ‰Π°Π΅Ρ‚ ΠΎΡ‚ &cΠΆΠ°Ρ€ΠΊΠΎΠ³ΠΎ ΠΊΠ»ΠΈΠΌΠ°Ρ‚Π°&r, &eΠΊΠΎΡΡ‚ΡŽΠΌ пасСчника&r, ΠΎΠ±Π΅Ρ€Π΅Π³Π°ΡŽΡ‰ΠΈΠΉ ΠΎΡ‚ Π·Π»Ρ‹Ρ… ΠΏΡ‡Π΅Π», Π° Ρ‚Π°ΠΊΠΆΠ΅ ряд Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ².", + "quests.tfg_tips.pineapple_leather.title": "Ананасовая ΠΊΠΎΠΆΠ°", + "quests.tfg_tips.pineapple_leather.subtitle": "ΠšΡ‚ΠΎ ΠΏΡ€ΠΎΠΆΠΈΠ²Π°Π΅Ρ‚ Π½Π° Π΄Π½Π΅ ΠΎΠΊΠ΅Π°Π½Π°?", + "quests.tfg_tips.pineapple_leather.desc": "ΠŸΠΎΠ»ΡƒΡ‡ΠΈΠ² Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ &aАнанасовых Π²ΠΎΠ»ΠΎΠΊΠΎΠ½&r, &bзапрядя&r ΠΈΡ… Π² &aΠΠ½Π°Π½Π°ΡΠΎΠ²ΡƒΡŽ Π½ΠΈΡ‚ΡŒ&r ΠΈ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π² Π΅Π΅ Π½Π° &3Π’ΠΊΠ°Ρ†ΠΊΠΎΠΌ станкС&r, Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &dΠΠ½Π°Π½Π°ΡΠΎΠ²ΡƒΡŽ ΠΊΠΎΠΆΡƒ&r β€” ΡΠΊΠΎΠ»ΠΎΠ³ΠΈΡ‡Π½ΡƒΡŽ Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Ρƒ для &bΡ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² ΠΊΠΎΠΆΠ΅ΠΉ.&r", + "quests.tfg_tips.wool_cloth.title": "ШСрстяная Ρ‚ΠΊΠ°Π½ΡŒ", + "quests.tfg_tips.wool_cloth.subtitle": "Π‘Π΅Π΅Π΅Π΅...", + "quests.tfg_tips.wool_cloth.desc": "ΠŸΠΎΡΡ‚Ρ€ΠΈΠ³ΠΈΡ‚Π΅ Π΄Ρ€ΡƒΠΆΠ΅Π»ΡŽΠ±Π½Ρ‹Ρ… &2ШСрстяных&r ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ…, Π·Π°Ρ‚Π΅ΠΌ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Π²Π΅Ρ€Π΅Ρ‚Π΅Π½Π° ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚Π΅ ΠΏΠΎΠ»ΡƒΡ‡Π΅Π½Π½ΡƒΡŽ ΡˆΠ΅Ρ€ΡΡ‚ΡŒ Π² &dΠ¨Π΅Ρ€ΡΡ‚ΡΠ½ΡƒΡŽ Π½ΠΈΡ‚ΡŒ.&r ΠžΠ±Ρ€Π°Π±ΠΎΡ‚Π°Π² Π½ΠΈΡ‚ΠΈ Π½Π° &3Π’ΠΊΠ°Ρ†ΠΊΠΎΠΌ станкС&r, Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &dΠ¨Π΅Ρ€ΡΡ‚ΡΠ½ΡƒΡŽ Ρ‚ΠΊΠ°Π½ΡŒ.&r\n\nПомимо примСнСния Π² &bΠ‘Ρ‚Π΅ΠΊΠ»ΠΎΠ΄Π΅Π»ΠΈΠΈ&r, Π΅Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для создания &aШСрстяной ΠΎΠ΄Π΅ΠΆΠ΄Ρ‹&r, идСально подходящСй для &bΡ…ΠΎΠ»ΠΎΠ΄Π½Ρ‹Ρ…&r ΠΈ суровых условий.\n\nΠ¨Π΅Ρ€ΡΡ‚ΡŒ считаСтся &bΡ‚ΠΊΠ°Π½ΡŒΡŽ высокого качСства.&r", + "quests.tfg_tips.silk_cloth.title": "ШСлковая Ρ‚ΠΊΠ°Π½ΡŒ", + "quests.tfg_tips.silk_cloth.subtitle": "ΠžΡ‡Π΅Π½ΡŒ, ΠΎΡ‡Π΅Π½ΡŒ гладкая.", + "quests.tfg_tips.silk_cloth.desc": "&dΠ¨Π΅Π»ΠΊΠΎΠ²ΡƒΡŽ Ρ‚ΠΊΠ°Π½ΡŒ&r ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΈΠ· &aНити&r, ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅ΠΌΠΎΠΉ ΠΏΡ€ΠΈ убийствС &bΠŸΠ°ΡƒΠΊΠΎΠ²&r, ΠΈΠ»ΠΈ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &bΠ‘Π»ΠΈΡ‚ΠΊΠΎΠ² ΠΏΠΎΠ»ΠΈΠΊΠ°ΠΏΡ€ΠΎΠ»Π°ΠΊΡ‚Π°ΠΌΠ° (извСстСн ΠΊΠ°ΠΊ Π½Π΅ΠΉΠ»ΠΎΠ½)&r. ШСлкопрядов Π½Π΅Ρ‚, ΠΈΠ·Π²ΠΈΠ½ΠΈΡ‚Π΅! Π•Ρ‰Π΅ ΠΎΠ΄ΠΈΠ½, Ρ…ΠΎΡ‚ΡŒ ΠΈ опасный источник, β€” Π±ΠΈΠΎΠΌ &cΠŸΠ°ΡƒΡ‡ΡŒΠ΅ Π»ΠΎΠ³ΠΎΠ²ΠΎ&r Π² &4Π‘Π΅Π·Π΄Π½Π΅&r.\n\nШСлковая Ρ‚ΠΊΠ°Π½ΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для создания &aΠ¨Π΅Π»ΠΊΠΎΠ²ΠΎΠΉ ΠΎΠ΄Π΅ΠΆΠ΄Ρ‹&r, которая Π»ΡƒΡ‡ΡˆΠ΅ всСго Π·Π°Ρ‰ΠΈΡ‰Π°Π΅Ρ‚ ΠΎΡ‚ &cΠΆΠ°Ρ€ΠΊΠΎΠ³ΠΎ&r ΠΊΠ»ΠΈΠΌΠ°Ρ‚Π°.\n\nΠ¨Π΅Π»ΠΊ считаСтся &bΡ‚ΠΊΠ°Π½ΡŒΡŽ высокого качСства.&r", + "quests.tfg_tips.phantom_silk.title": "Ѐантомная Ρ‚ΠΊΠ°Π½ΡŒ", + "quests.tfg_tips.phantom_silk.subtitle": "ВсСобщий ΠΏΠΎΠ±Π΅Π΄ΠΈΡ‚Π΅Π»ΡŒ голосования Π·Π° любимого ΠΌΠΎΠ±Π°", + "quests.tfg_tips.phantom_silk.desc": "&dЀантомная Ρ‚ΠΊΠ°Π½ΡŒ&r плСтётся ΠΈΠ· Ρ„Π°Π½Ρ‚ΠΎΠΌΠ½Ρ‹Ρ… Π½ΠΈΡ‚Π΅ΠΉ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΈΠ·Π³ΠΎΡ‚Π°Π²Π»ΠΈΠ²Π°ΡŽΡ‚ΡΡ ΠΈΠ· ΠΌΠ΅ΠΌΠ±Ρ€Π°Π½ Ρ„Π°Π½Ρ‚ΠΎΠΌΠΎΠ². (&aΠ€Π°Π½Ρ‚ΠΎΠΌΠΎΠ²&r) ΠΌΠΎΠΆΠ½ΠΎ Π²ΡΡ‚Ρ€Π΅Ρ‚ΠΈΡ‚ΡŒ Π² ΠΈΠ·ΠΌΠ΅Ρ€Π΅Π½ΠΈΠΈ &4Π‘Π΅Π·Π΄Π½Ρ‹&r.", + "quests.tfg_tips.unrefined_paper.title": "Грубая Π±ΡƒΠΌΠ°Π³Π°", + "quests.tfg_tips.unrefined_paper.subtitle": "ΠŸΠΎΡ€Π° Π΄Π΅Π»Π°Ρ‚ΡŒ ΠΈΡΡ‚ΠΎΡ€ΠΈΡŽ.", + "quests.tfg_tips.unrefined_paper.desc": "&aГрубая Π±ΡƒΠΌΠ°Π³Π°&r β€” всСго Π² ΠΎΠ΄Π½ΠΎΠΌ шагС ΠΎΡ‚ прСвращСния Π² Π½Π°ΡΡ‚ΠΎΡΡ‰ΡƒΡŽ, ΠΏΡ€ΠΈΠ³ΠΎΠ΄Π½ΡƒΡŽ ΠΊ использованию &dΠ±ΡƒΠΌΠ°Π³Ρƒ.&r БущСствуСт мноТСство способов создания Π±ΡƒΠΌΠ°Π³ΠΈ: ΠΎΠ΄Π½ΠΈ ΠΏΡ€ΠΎΡ‰Π΅, Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Ρ‚Ρ€ΡƒΠ΄Π½Π΅Π΅ Π² зависимости ΠΎΡ‚ доступных рСсурсов. ΠžΠ·Π½Π°ΠΊΠΎΠΌΡŒΡ‚Π΅ΡΡŒ с Ρ€Π°Π·Π΄Π΅Π»ΠΎΠΌ &bΠŸΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΡΡ‚Π²ΠΎ Π±ΡƒΠΌΠ°Π³ΠΈ&r Π² вашСм &2ПолСвом руководвствС!&r", + "quests.tfg_tips.bed.title": "ΠšΡ€ΠΎΠ²Π°Ρ‚ΠΈ", + "quests.tfg_tips.bed.subtitle": "Π”Π°ΠΉ ΠΎΡ‚Π΄Ρ‹Ρ… своСй усталой Π΄ΡƒΡˆΠ΅.", + "quests.tfg_tips.bed.desc": "Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ &bΡ‚ΠΊΠ°Π½ΡŒ высокого качСства&r, Ρ‚Π°ΠΊΡƒΡŽ ΠΊΠ°ΠΊ &aΠ¨Π΅Ρ€ΡΡ‚ΡŒ&r ΠΈΠ»ΠΈ &aШСлковая Ρ‚ΠΊΠ°Π½ΡŒ&r, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ свою ΡΠΎΠ±ΡΡ‚Π²Π΅Π½Π½ΡƒΡŽ &dΠšΡ€ΠΎΠ²Π°Ρ‚ΡŒ.&r Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ &2Π‘ΠΎΠ»ΠΎΠΌΠ΅Π½Π½ΠΎΠΉ ΠΊΡ€ΠΎΠ²Π°Ρ‚ΠΈ&r, настоящая &dΠšΡ€ΠΎΠ²Π°Ρ‚ΡŒ&r достаточно ΡƒΠ΄ΠΎΠ±Π½Π°, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΎΡΠΏΠ°Ρ‚ΡŒ всю Π½ΠΎΡ‡ΡŒ. Π‘Π»Π°Π΄ΠΊΠΈΡ… снов!", + "quests.tfg_tips.sleeping_bags.title": "Π‘ΠΏΠ°Π»ΡŒΠ½Ρ‹ΠΉ мСшок", + "quests.tfg_tips.sleeping_bags.subtitle": "ПиТамная Π²Π΅Ρ‡Π΅Ρ€ΠΈΠ½ΠΊΠ°!", + "quests.tfg_tips.sleeping_bags.desc": "&dΠ‘ΠΏΠ°Π»ΡŒΠ½Ρ‹ΠΉ мСшок&r β€” это ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ позволяСт Π²Π°ΠΌ &bΠΏΡ€ΠΎΡΠΏΠ°Ρ‚ΡŒ всю Π½ΠΎΡ‡ΡŒ.&r Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ ΠΊΡ€ΠΎΠ²Π°Ρ‚Π΅ΠΉ, ΡΠΏΠ°Π»ΡŒΠ½Ρ‹ΠΉ мСшок &oΠ½Π΅ устанавливаСт&r Π²Π°ΠΌ &cΡ‚ΠΎΡ‡ΠΊΡƒ спавна.&r", + "quests.tfg_tips.hammocks.title": "Π“Π°ΠΌΠ°ΠΊΠΈ", + "quests.tfg_tips.hammocks.subtitle": "ИдСально для Π½ΠΎΡ‡Π½Ρ‹Ρ… сов", + "quests.tfg_tips.hammocks.desc": "&dΠ“Π°ΠΌΠ°ΠΊ&r Π΄Π΅Π»Π°Π΅Ρ‚ прямо ΠΏΡ€ΠΎΡ‚ΠΈΠ²ΠΎΠΏΠΎΠ»ΠΎΠΆΠ½ΠΎΠ΅ Ρ‚ΠΎΠΌΡƒ, Ρ‡Ρ‚ΠΎ Π΄Π΅Π»Π°Π΅Ρ‚ &2Π‘ΠΏΠ°Π»ΡŒΠ½Ρ‹ΠΉ мСшок.&r Он позволяСт Π²Π°ΠΌ ΠΏΡ€ΠΎΡΠΏΠ°Ρ‚ΡŒ Π΄Π½Π΅Π²Π½ΠΎΠ΅ врСмя. ИдСально ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для оТидания Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΈΡ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² Π² Π±ΠΎΡ‡ΠΊΠ°Ρ… ΠΈΠ»ΠΈ ΠΎΠ±ΠΆΠΈΠ³Π° ΡƒΠ³ΠΎΠ»ΡŒΠ½ΠΎΠΉ ямы.\nКак ΠΈ &2Π‘ΠΏΠ°Π»ΡŒΠ½Ρ‹Π΅ мСшки&r, Π³Π°ΠΌΠ°ΠΊΠΈ &oΠ½Π΅ ΡƒΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°ΡŽΡ‚&r Π²Π°ΠΌ &cΡ‚ΠΎΡ‡ΠΊΡƒ спавна.&r", + "quests.tfg_tips.panning.title": "ΠŸΡ€ΠΎΠΌΡ‹Π²ΠΊΠ° Π² Π»ΠΎΡ‚ΠΊΠ΅", + "quests.tfg_tips.panning.subtitle": "Π‘Π»ΠΎΠ²Π½ΠΎ Π² Π·ΠΎΠ»ΠΎΡ‚ΡƒΡŽ Π»ΠΈΡ…ΠΎΡ€Π°Π΄ΠΊΡƒ, снова Π² Π΄Π΅Π»ΠΎ!", + "quests.tfg_tips.panning.desc": "Π’Π΄ΠΎΠ»ΡŒ русСл Ρ€Π΅ΠΊ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π°ΠΌΠ΅Ρ‚ΠΈΡ‚ΡŒ Π³Ρ€Π°Π²ΠΈΠΉ с Π»Π΅Π³ΠΊΠΈΠΌΠΈ вкраплСниями ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΠΎΠ² β€” это Ρ‚Π°ΠΊ Π½Π°Π·Ρ‹Π²Π°Π΅ΠΌΡ‹Π΅ &aмСстороТдСния самородной Ρ€ΡƒΠ΄Ρ‹.&r Π©Π΅Π»ΠΊΠ½ΡƒΠ² ΠΏΠΎ Ρ‚Π°ΠΊΠΎΠΌΡƒ Π±Π»ΠΎΠΊΡƒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &bΠ ΡƒΠ΄ΠΎΠΏΡ€ΠΎΠΌΡ‹Π²ΠΎΡ‡Π½ΠΎΠ³ΠΎ Π»ΠΎΡ‚ΠΊΠ°&r, Π²Ρ‹ смоТСтС ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π΅Π³ΠΎ Π² &dΠΌΠ΅Π»ΠΊΠΈΠ΅ кусочки самородной Ρ€ΡƒΠ΄Ρ‹.&r Π’Π°ΠΊΠΈΠ΅ кусочки ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΡ€ΠΈΠ³ΠΎΠ΄ΠΈΡ‚ΡŒΡΡ, ΠΊΠΎΠ³Π΄Π° Π²Π°ΠΌ Π½Π΅ Ρ…Π²Π°Ρ‚Π°Π΅Ρ‚ Π±ΡƒΠΊΠ²Π°Π»ΡŒΠ½ΠΎ ΠΏΠ°Ρ€Ρ‹ ΠΌΠΈΠ»Π»ΠΈΠ±Π°ΠΊΠ΅Ρ‚ΠΎΠ², Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ Ρ„ΠΎΡ€ΠΌΡƒ.", + "quests.tfg_tips.sluice.title": "Π ΡƒΠ΄ΠΎΠΏΡ€ΠΎΠΌΡ‹Π²ΠΎΡ‡Π½Ρ‹ΠΉ ΠΆΠ΅Π»ΠΎΠ±", + "quests.tfg_tips.sluice.subtitle": "ΠŸΡ€ΠΎΠΌΡ‹Π²ΠΊΠ° Π² Π»ΠΎΡ‚ΠΊΠ΅ Π½Π° стСроидах", + "quests.tfg_tips.sluice.desc": "&3Π ΡƒΠ΄ΠΎΠΏΡ€ΠΎΠΌΡ‹Π²ΠΎΡ‡Π½Ρ‹ΠΉ ΠΆΠ΅Π»ΠΎΠ±&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для Π±ΠΎΠ»Π΅Π΅ быстрой ΠΈ частично Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠΉ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ &aΠ³Ρ€Π°Π²ΠΈΠΉΠ½Ρ‹Ρ… ΠΎΡ‚Π»ΠΎΠΆΠ΅Π½ΠΈΠΉ&r. ΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, ΠΎΠ½ ΠΌΠΎΠΆΠ΅Ρ‚ Π΄Π°Π²Π°Ρ‚ΡŒ &dΡ€Π΅Π΄ΠΊΠΈΠ΅ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ ΠΏΡ€ΠΎΠΌΡ‹Π²ΠΊΠΈ.&r Для получСния Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΉ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΠΈ смотритС &2ПолСвоС руководство!&r", + "quests.tfg_tips.status_effects.title": "Π­Ρ„Ρ„Π΅ΠΊΡ‚Ρ‹", + "quests.tfg_tips.status_effects.subtitle": "Π‘ΠΎΠ»ΡŒΡˆΠ΅ Π½ΠΈΠΊΠ°ΠΊΠΈΡ… странных Π·Π΅Π»ΠΈΠΉ.", + "quests.tfg_tips.status_effects.desc": "Π₯отя Π²Π°Ρ€ΠΊΠ° Π·Π΅Π»ΠΈΠΉ нСдоступна, Π½ΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ потрСбляСмыС ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡Π°Ρ‚ΡŒ эффСкты.", + "quests.tfg_tips.aged_alcohol.title": "Π’Ρ‹Π΄Π΅Ρ€ΠΆΠ°Π½Π½Ρ‹ΠΉ алкоголь", + "quests.tfg_tips.aged_alcohol.subtitle": "УпотрСбляйтС ΡƒΠΌΠ΅Ρ€Π΅Π½Π½ΠΎ...", + "quests.tfg_tips.aged_alcohol.desc": "&3Π’Ρ‹Π΄Π΅Ρ€ΠΆΠΊΠ° Π°Π»ΠΊΠΎΠ³ΠΎΠ»ΡŒΠ½Ρ‹Ρ… Π½Π°ΠΏΠΈΡ‚ΠΊΠΎΠ²&r Π² &aΠ±ΠΎΡ‡ΠΊΠ°Ρ…&r со Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°Π΅Ρ‚ ΠΈΡ… ΠΊΡ€Π΅ΠΏΠΎΡΡ‚ΡŒ, прСвращая ΠΈΡ… Π² &dΠ’Ρ‹Π΄Π΅Ρ€ΠΆΠ°Π½Π½Ρ‹ΠΉ алкоголь&r. Π£ΠΏΠΎΡ‚Ρ€Π΅Π±Π»Π΅Π½ΠΈΠ΅ ΠΈΠ· Π±ΡƒΡ‚Ρ‹Π»ΠΎΠΊ ΠΈΠ»ΠΈ фляг Π΄Π°Π΅Ρ‚ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Π΅ эффСкты Π² зависимости ΠΎΡ‚ Ρ‚ΠΈΠΏΠ° Π½Π°ΠΏΠΈΡ‚ΠΊΠ°: &bРСгСнСрация&r, &bΠ‘ΠΎΠΏΡ€ΠΎΡ‚ΠΈΠ²Π»Π΅Π½ΠΈΠ΅&r ΠΈΠ»ΠΈ &bΠŸΠΎΠ³Π»ΠΎΡ‰Π΅Π½ΠΈΠ΅.&r Π­Ρ‚ΠΈ эффСкты особСнно ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ ΠΏΡ€ΠΈ исслСдовании Π½ΠΎΠ²Ρ‹Ρ… Ρ‚Π΅Ρ€Ρ€ΠΈΡ‚ΠΎΡ€ΠΈΠΉ.", + "quests.tfg_tips.aged_alcohol.task": "Π›ΡŽΠ±ΠΎΠΉ Π²Ρ‹Π΄Π΅Ρ€ΠΆΠ°Π½Π½Ρ‹ΠΉ алкоголь", + "quests.tfg_tips.pills.title": "ΠœΠ΅Π΄ΠΈΡ†ΠΈΠ½Π°: Пилюли", + "quests.tfg_tips.pills.subtitle": "А Π²ΠΎΡ‚ ΠΈ колСса!", + "quests.tfg_tips.pills.desc": "БмСшав &aВоск&r, &bΠ ΠΎΠ΄Π½ΠΈΠΊΠΎΠ²ΡƒΡŽ Π²ΠΎΠ΄Ρƒ&r ΠΈ ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹, Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &dПилюли!&r Они ΠΌΠΎΠ³ΡƒΡ‚ Π΄Π°Π²Π°Ρ‚ΡŒ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ эффСкты β€” ΠΊΠ°ΠΊ ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Π΅, Ρ‚Π°ΠΊ ΠΈ Π²Ρ€Π΅Π΄Π½Ρ‹Π΅.\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o ИспользованиС &bΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΎΠ³ΠΎ ΡΠΌΠ΅ΡˆΠΈΠ²Π°Ρ‚Π΅Π»Ρ&f ΠΈΠ»ΠΈ &bБмСситСля&f ΡƒΠ΄Π²Π°ΠΈΠ²Π°Π΅Ρ‚ Π²Ρ‹Ρ…ΠΎΠ΄ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Π°!", + "quests.tfg_tips.pills.task": "Π›ΡŽΠ±Π°Ρ пилюля с эффСктом", + "quests.tfg_tips.tablets.title": "ΠœΠ΅Π΄ΠΈΡ†ΠΈΠ½Π°: Π’Π°Π±Π»Π΅Ρ‚ΠΊΠΈ", + "quests.tfg_tips.tablets.subtitle": "А Π²ΠΎΡ‚ ΠΈ колСса...?", + "quests.tfg_tips.tablets.desc": "Π₯отя созданиС слоТнСС, Ρ‡Π΅ΠΌ ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Ρ… пилюль, ΠΈ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ Π»ΠΈΠ±ΠΎ &3ΠœΠ΅Ρ…Π°Π½ΠΈΡ‡Π΅ΡΠΊΠΎΠ³ΠΎ ΡΠΌΠ΅ΡˆΠΈΠ²Π°Ρ‚Π΅Π»Ρ&r, Π»ΠΈΠ±ΠΎ &3Π‘ΠΌΠ΅ΡˆΠΈΠ²Π°Ρ‚Π΅Π»ΡŒ&r, &dΠ’Π°Π±Π»Π΅Ρ‚ΠΊΠΈ&r Π΄Π΅ΠΉΡΡ‚Π²ΡƒΡŽΡ‚ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ дольшС.", + "quests.tfg_tips.tablets.task": "Π›ΡŽΠ±Π°Ρ Ρ‚Π°Π±Π»Π΅Ρ‚ΠΊΠ°", + "quests.tfg_tips.salvo.title": "ΠœΠ΅Π΄ΠΈΡ†ΠΈΠ½Π°: Мазь", + "quests.tfg_tips.salvo.subtitle": "ΠΠ°Π½ΠΎΡΠΈΡ‚ΡŒ нСпосрСдствСнно Π½Π° Π»ΠΎΠ±", + "quests.tfg_tips.salvo.desc": "&dМазь&r β€” Π΅Ρ‰Π΅ ΠΎΠ΄ΠΈΠ½ Π²ΠΈΠ΄ лСкарства, ΠΎΠ±Ρ‹Ρ‡Π½ΠΎ примСняСмый Π½Π°Ρ€ΡƒΠΆΠ½ΠΎ. По ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с &aПилюлями&r ΠΈ &aΠ’Π°Π±Π»Π΅Ρ‚ΠΊΠ°ΠΌΠΈ&r, ΠΌΠ°Π·ΠΈ Π΄Π°ΡŽΡ‚ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ эффСкты, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ &cΠžΠ³Π½Π΅ΡΡ‚ΠΎΠΉΠΊΠΎΡΡ‚ΡŒ&r ΠΈ &4Π˜ΡΡ†Π΅Π»Π΅Π½ΠΈΠ΅&r, Π½ΠΎ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ слоТных химичСских процСссов.", + "quests.tfg_tips.salvo.task": "Π›ΡŽΠ±Π°Ρ мазь", + "quests.tfg_tips.misc.title": "ΠŸΡ€ΠΎΡ‡ΠΈΠ΅ совСты", + "quests.tfg_tips.misc.subtitle": "Π•Ρ‰Π΅ большС совСтов!", + "quests.tfg_tips.misc.desc": "Π’ΠΎΡ‚ Ρ€Π°Π·Π½Ρ‹Π΅ совСты, ΠΎΠ½ΠΈ Π½Π΅ подходят Π½ΠΈ ΠΊ ΠΎΠ΄Π½ΠΎΠΉ ΠΈΠ· Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΊΠ°Ρ‚Π΅Π³ΠΎΡ€ΠΈΠΉ, Π½ΠΎ всС Ρ€Π°Π²Π½ΠΎ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ ΠΎ Π½ΠΈΡ… Π·Π½Π°Ρ‚ΡŒ.", + "quests.tfg_tips.digger_helmet.title": "ШахтСрская каска", + "quests.tfg_tips.digger_helmet.subtitle": "Для Ρ‚Π΅Ρ…, ΠΊΡ‚ΠΎ ΠΊΠΎΠΏΠ°Π΅Ρ‚ вСсь дСнь Π½Π°ΠΏΡ€ΠΎΠ»Π΅Ρ‚", + "quests.tfg_tips.digger_helmet.desc.1": "&dШахтСрская каска&r β€” это шлСм, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ½ΠΎ Π½Π°Π΄Π΅Ρ‚ΡŒ ΠΈ ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ автоматичСски освСщаСт ΠΎΠΊΡ€ΡƒΠΆΠ°ΡŽΡ‰Π΅Π΅ пространство, Π½Π΅ занимая Ρ€ΡƒΠΊ! Он ΠΏΠΎΠ»Π΅Π·Π΅Π½, Ссли ваша основная Ρ€ΡƒΠΊΠ° занята, Π° Π² Π΄Ρ€ΡƒΠ³ΠΎΠΉ Ρ€ΡƒΠΊΠ΅ Π²Ρ‹ Π΄Π΅Ρ€ΠΆΠΈΡ‚Π΅ Ρ‰ΠΈΡ‚. Для Π΅Π³ΠΎ изготовлСния потрСбуСтся Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ &6Π‘Π²Π΅Ρ‚ΠΎΠΊΠ°ΠΌΠ΅Π½Π½ΠΎΠΉ ΠΏΡ‹Π»ΠΈ&r. Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π²Ρ‹ смоТСтС Π΄ΠΎΠ±Ρ€Π°Ρ‚ΡŒΡΡ Π΄ΠΎ &4Π‘Π΅Π·Π΄Π½Ρ‹&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ доступ ΠΊ Π½Π΅ΠΉ Π² Π½Π°Ρ‡Π°Π»Π΅ ΠΈΠ³Ρ€Ρ‹...", + "quests.tfg_tips.digger_helmet.desc.2": "&l&3Π’Π°ΠΆΠ½ΠΎ:&r&l &dШахтСрская каска&f Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ благодаря ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½ΠΎΠΉ настройкС &cSodium Dynamic Lights&f. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ½Π° Ρ€Π°Π±ΠΎΡ‚Π°Π»Π° ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎ, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ &b\"Dynamic Entity Lighting\"&f.", + "quests.tfg_tips.grappling_hook.title": "ΠšΡ€ΡŽΠΊ-кошка", + "quests.tfg_tips.grappling_hook.subtitle": "Π­Ρ‚ΠΎ ΠΏΠ»ΠΎΡ…ΠΎ кончится", + "quests.tfg_tips.grappling_hook.desc": "ОбъСдинив 4 ΡˆΡ‚ΡƒΠΊΠΈ &aΠ’ΠΈΡ‚ΠΎΠΉ Π²Π΅Ρ€Π΅Π²ΠΊΠΈ&r ΠΈ &bОголовьС ΠΊΠΈΡ€ΠΊΠΈ ΠΈΠ· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°&r, Π²Ρ‹ смоТСтС ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &dΠšΡ€ΡŽΠΊ-ΠΊΠΎΡˆΠΊΡƒ!&r ΠžΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ инструмСнт для восхоТдСния Π½Π° Π³ΠΎΡ€Ρ‹, исслСдования ΠΏΠ΅Ρ‰Π΅Ρ€ ΠΈ пСрСмСщСния ΠΏΠΎ ΠΌΠΈΡ€Ρƒ. Он ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Π΅Ρ‚ &eсистСму ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ&r, ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰ΡƒΡŽ ΠΊΠΎΠΌΠ±ΠΈΠ½ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΈ Π½Π°ΡΡ‚Ρ€Π°ΠΈΠ²Π°Ρ‚ΡŒ &dΠšΡ€ΡŽΠΊ&r ΠΏΠΎ своСму вкусу.", + "quests.tfg_tips.grapple_upgrades.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ вашСй ΠšΡ€ΡŽΠΊ-кошки", + "quests.tfg_tips.grapple_upgrades.subtitle": "Ббалансировано ΠΏΠΎΠ΄ TFG, разумССтся!", + "quests.tfg_tips.grapple_upgrades.desc.1": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ вашСй &dΠšΡ€ΡŽΠΊ-кошки&r состоит Π² Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠΈ ΠΈΠ»ΠΈ ΡƒΠ΄Π°Π»Π΅Π½ΠΈΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &3ВСрстака&r.&r\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ всС ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΈΠΌΠ΅Π½ΠΈΡ‚ΡŒ ΠΊ своСй &dΠšΡ€ΡŽΠΊ-кошки&r, Π½Π°ΠΆΠΌΠΈΡ‚Π΅ ΠΊΠ»Π°Π²ΠΈΡˆΡƒ \"ΠŸΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ примСнСния\" Π² &2EMI.&r\nΠšΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΈΠ· кастомных Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² Π±ΡƒΠ΄Π΅Ρ‚ ΡΠΎΠ΄Π΅Ρ€ΠΆΠ°Ρ‚ΡŒ тСкст с описаниСм примСняСмых ΠΈΠ·ΠΌΠ΅Π½Π΅Π½ΠΈΠΉ.", + "quests.tfg_tips.grapple_upgrades.desc.2": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ½ΡΡ‚ΡŒ, скрафтив &dΠšΡ€ΡŽΠΊ-ΠΊΠΎΡˆΠΊΡƒ&r с &bΠšΡƒΠ²Π°Π»Π΄ΠΎΠΉ&r ΠΈ &aΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠΌ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π²Ρ‹ использовали для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ&r (ΠΎΠ½ Π½Π΅ Π±ΡƒΠ΄Π΅Ρ‚ израсходован). Π’ Ρ€Π΅Π·ΡƒΠ»ΡŒΡ‚Π°Ρ‚Π΅ Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &dΠšΡ€ΡŽΠΊ&r вмСстС с ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠΌ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ использовался для снятия ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ использовался для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ, Ρ‚ΠΎ Π΅ΡΡ‚ΡŒ Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ Π΄Π²Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π° Π½Π°Π·Π°Π΄! Π­Ρ‚ΠΎΡ‚ процСсс ΠΎΡ‚ΠΊΠ°Ρ‚Π° ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ для всСх ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ, Ссли Π² ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰Π΅ΠΌ квСстС ΠΏΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡŽ Π½Π΅ ΡƒΠΊΠ°Π·Π°Π½ΠΎ ΠΈΠ½ΠΎΠ΅.\n\n&lΠ£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ Π½Π΅ ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ пСрСзаписаны, Ссли Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ элСктричСский ΠΌΠΎΡ‚ΠΎΡ€ &7LV&f Π΄ΠΎ элСктричСского ΠΌΠΎΡ‚ΠΎΡ€Π° &bMV&f, Π²Π°ΠΌ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ сначала ΡΠ½ΡΡ‚ΡŒ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ элСктричСский ΠΌΠΎΡ‚ΠΎΡ€ &7LV&f.", + "quests.tfg_tips.grapple_length.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: Π”Π»ΠΈΠ½Π° Π²Π΅Ρ€Π΅Π²ΠΊΠΈ", + "quests.tfg_tips.grapple_length.subtitle": "Π”Π»ΠΈΠ½Π½Ρ‹ΠΉ ΠΌΠ°Π»ΡŒΡ‡ΠΈΠΊ", + "quests.tfg_tips.grapple_length.desc": "По ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ ваша &dΠšΡ€ΡŽΠΊ-кошка&r ΠΈΠΌΠ΅Π΅Ρ‚ &bΠ΄Π»ΠΈΠ½Ρƒ 80 Π±Π»ΠΎΠΊΠΎΠ²&r, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ &cΠ΅Ρ‰Π΅ 20&r, Π΄ΠΎΠ±Π°Π²ΠΈΠ² большС &aΠ’ΠΈΡ‚ΠΊΠΎΠ² Π²Π΅Ρ€Π΅Π²ΠΊΠΈ.&r Максимальная Π΄Π»ΠΈΠ½Π° составляСт 200 Π±Π»ΠΎΠΊΠΎΠ².\n\nΠ”Π»ΠΈΠ½Ρƒ ΠΌΠΎΠΆΠ½ΠΎ &3ΡƒΠΌΠ΅Π½ΡŒΡˆΠΈΡ‚ΡŒ&r, скрафтив ΠšΡ€ΡŽΠΊ с &aΠ½ΠΎΠΆΠΎΠΌ&r, &2ΡƒΠΌΠ΅Π½ΡŒΡˆΠ°Ρ Π΅Π΅ Π½Π° 20&r, Π΄ΠΎ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌΠ° Π² 20.", + "quests.tfg_tips.grapple_motor.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: ЭлСктричСский ΠΌΠΎΡ‚ΠΎΡ€", + "quests.tfg_tips.grapple_motor.subtitle": "На ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ Π»Π΅Π½ΠΈΠ²Ρ‹ΠΉ, Π΄Π°?", + "quests.tfg_tips.grapple_motor.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &aЭлСктричСский ΠΌΠΎΡ‚ΠΎΡ€&r позволяСт автоматичСски ΠΏΠΎΠ΄Ρ‚ΡΠ³ΠΈΠ²Π°Ρ‚ΡŒΡΡ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ вашСго &dΠšΡ€ΡŽΠΊΠ°.&r Π‘ΡƒΠ΄ΡŒΡ‚Π΅ остороТны, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ &cΠΌΠΎΡ‚ΠΎΡ€Ρ‹ высокого уровня&r ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΡ€ΠΈΡ‡ΠΈΠ½ΠΈΡ‚ΡŒ Π²Π°ΠΌ &4ΡƒΡ€ΠΎΠ½ ΠΎΡ‚ падСния&r ΠΈΠ·-Π·Π° силы подтягивания.\n\nΠœΠΎΡ‚ΠΎΡ€Ρ‹ Ρ€Π°Π·Π΄Π΅Π»Π΅Π½Ρ‹ Π½Π° ΡƒΡ€ΠΎΠ²Π½ΠΈ напряТСния &2Gregtech&r. Π’ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ… ΠΊΡ€Π°Ρ„Ρ‚Π° Ρ‚ΠΎΡ‡Π½ΠΎ ΡƒΠΊΠ°Π·Π°Π½ΠΎ, ΠΊΠ°ΠΊΠΈΠ΅ характСристики Π±Ρ‹Π»ΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½Ρ‹ ΠΈ насколько.", + "quests.tfg_tips.grapple_smart_motor.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: Π£ΠΌΠ½Ρ‹ΠΉ ΠΌΠΎΡ‚ΠΎΡ€", + "quests.tfg_tips.grapple_smart_motor.subtitle": "ΠšΡ‚ΠΎ-Π½ΠΈΠ±ΡƒΠ΄ΡŒ Π²ΠΎΠΎΠ±Ρ‰Π΅ Π·Π½Π°Π΅Ρ‚, Ρ‡Ρ‚ΠΎ эта ΡˆΡ‚ΡƒΠΊΠ° Π΄Π΅Π»Π°Π΅Ρ‚?", + "quests.tfg_tips.grapple_smart_motor.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &aΠ£ΠΌΠ½Ρ‹ΠΉ ΠΌΠΎΡ‚ΠΎΡ€&r Π°ΠΊΡ‚ΠΈΠ²ΠΈΡ€ΡƒΠ΅Ρ‚ систСму &3Π£ΠΌΠ½ΠΎΠ³ΠΎ ΠΌΠΎΡ‚ΠΎΡ€Π°&r. Для Π΅Π³ΠΎ установки трСбуСтся ΠΏΡ€Π΅Π΄Π²Π°Ρ€ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &bЭлСктричСский ΠΌΠΎΡ‚ΠΎΡ€&r.", + "quests.tfg_tips.grapple_field.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: ΠžΡ‚Ρ‚Π°Π»ΠΊΠΈΠ²Π°ΡŽΡ‰ΠΈΠ΅ ΠΏΠΎΠ»Π΅", + "quests.tfg_tips.grapple_field.subtitle": "Π‘ΠΌΠΎΡ‚Ρ€ΠΈ, ΠΌΠ°ΠΌ, я Π»Π΅Π²ΠΈΡ‚ΠΈΡ€ΡƒΡŽ!", + "quests.tfg_tips.grapple_field.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &aΠžΡ‚Ρ‚Π°Π»ΠΊΠΈΠ²Π°ΡŽΡ‰ΠΈΠ΅ ΠΏΠΎΠ»Π΅&r ΠΎΡ‚Ρ‚Π°Π»ΠΊΠΈΠ²Π°Π΅Ρ‚ вас ΠΎΡ‚ Π±Π»ΠΈΠΆΠ°ΠΉΡˆΠΈΡ… Π±Π»ΠΎΠΊΠΎΠ². Π‘ΡƒΠ΄ΡŒΡ‚Π΅ остороТны β€” &cвысокий ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ силы отталкивания&r ΠΌΠΎΠΆΠ΅Ρ‚ нанСсти Π²Π°ΠΌ &4ΡƒΡ€ΠΎΠ½ ΠΎΡ‚ падСния.&r\n\nΠžΡ‚Ρ‚Π°Π»ΠΊΠΈΠ²Π°ΡŽΡ‰ΠΈΡ поля Ρ€Π°Π·Π΄Π΅Π»Π΅Π½Ρ‹ Π½Π° ΡƒΡ€ΠΎΠ²Π½ΠΈ напряТСния &2Gregtech&r. Π’ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ… ΠΊΡ€Π°Ρ„Ρ‚Π° Ρ‚ΠΎΡ‡Π½ΠΎ ΡƒΠΊΠ°Π·Π°Π½ΠΎ, ΠΊΠ°ΠΊΠΈΠ΅ характСристики Π±Ρ‹Π»ΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½Ρ‹ ΠΈ насколько.", + "quests.tfg_tips.grapple_magnet.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: ΠœΠ°Π³Π½ΠΈΡ‚", + "quests.tfg_tips.grapple_magnet.subtitle": "Π˜Π½Ρ‚Π΅Π½ΡΠΈΠ²Π½ΠΎΠ΅ тяготСниС", + "quests.tfg_tips.grapple_magnet.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &aΠœΠ°Π³Π½ΠΈΡ‚&r притягиваСт ваш &dΠšΡ€ΡŽΠΊ&r ΠΊ Π»ΡŽΠ±Ρ‹ΠΌ блиТайшим Π±Π»ΠΎΠΊΠ°ΠΌ, Ρ†Π΅ΠΏΠ»ΡΡΡΡŒ Π·Π° Π½ΠΈΡ….\n\nΠ£Ρ€ΠΎΠ²Π½ΠΈ ΠΌΠ°Π³Π½ΠΈΡ‚Π½ΠΎΠ³ΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ зависит ΠΎΡ‚ ΠΌΠ°Π³Π½ΠΈΡ‚Π½Ρ‹Ρ… слитков &2GregTech&r, ΠΏΡ€ΠΈΡ‡Π΅ΠΌ Ρ…ΡƒΠ΄ΡˆΠΈΠΌ ΠΈΠ· Π½ΠΈΡ… являСтся &bΠœΠ°Π³Π½ΠΈΡ‚Π½ΠΎΠ΅ ΠΆΠ΅Π»Π΅Π·ΠΎ&r, Π° Π»ΡƒΡ‡ΡˆΠΈΠΌ β€” &bΠœΠ°Π³Π½ΠΈΡ‚Π½Ρ‹ΠΉ самарий.&r", + "quests.tfg_tips.grapple_magnet.task": "Π›ΡŽΠ±ΠΎΠΉ ΠœΠ°Π³Π½ΠΈΡ‚Π½Ρ‹ΠΉ слиток", + "quests.tfg_tips.grapple_sticky.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: Липкая Π²Π΅Ρ€Π΅Π²ΠΊΠ°", + "quests.tfg_tips.grapple_sticky.subtitle": "Π›ΠΈΠΏΡƒΡ‡ΠΈΠΉ!", + "quests.tfg_tips.grapple_sticky.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &aЛипкая Π²Π΅Ρ€Π΅Π²ΠΊΠ°&r ΠΏΡ€ΠΈΠ²ΠΎΠ΄ΠΈΡ‚ ΠΊ Ρ‚ΠΎΠΌΡƒ, Ρ‡Ρ‚ΠΎ ваш &dΠšΡ€ΡŽΠΊ&r прикрСпляСтся ΠΊ Π»ΡŽΠ±ΠΎΠΌΡƒ участку Π²Π΅Ρ€Π΅Π²ΠΊΠΈ, ΡΠΎΠΏΡ€ΠΈΠΊΠ°ΡΠ°ΡŽΡ‰Π΅ΠΌΡƒΡΡ с Π±Π»ΠΎΠΊΠΎΠΌ.", + "quests.tfg_tips.grapple_throw_speed.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: Π‘ΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ броска", + "quests.tfg_tips.grapple_throw_speed.subtitle": "ΠŸΠΎΠ»Π΅Ρ‚Π΅Π»ΠΎ!", + "quests.tfg_tips.grapple_throw_speed.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &aΠ‘ΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ броска&r заставляСт ваш &dΠšΡ€ΡŽΠΊ&r Π·Π°ΠΏΡƒΡΠΊΠ°Ρ‚ΡŒΡΡ быстрСС.\n\nΠ£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ скорости броска Ρ€Π°Π·Π΄Π΅Π»Π΅Π½ΠΎ Π½Π° ΡƒΡ€ΠΎΠ²Π½ΠΈ напряТСния &2Gregtech&r. Π Π΅Ρ†Π΅ΠΏΡ‚ ΠΊΡ€Π°Ρ„Ρ‚Π° Ρ‚ΠΎΡ‡Π½ΠΎ ΠΏΠΎΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚, ΠΊΠ°ΠΊΠΈΠ΅ характСристики Π±Ρ‹Π»ΠΈ ΠΈΠ·ΠΌΠ΅Π½Π΅Π½Ρ‹ ΠΈ Π½Π° сколько.", + "quests.tfg_tips.grapple_double.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: Двойная Кошка", + "quests.tfg_tips.grapple_double.subtitle": "Π”Π²ΠΎΠΉΠ½ΠΎΠ΅ ΡƒΠ΄ΠΎΠ²ΠΎΠ»ΡŒΡΡ‚Π²ΠΈΠ΅!", + "quests.tfg_tips.grapple_double.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &aДвойная Кошка&r позволяСт Π±Ρ€ΠΎΡΠ°Ρ‚ΡŒ &dΠ΄Π²Π΅ ΠšΡ€ΡŽΠΊ-кошки&r ΠΏΠΎΠ΄ ΡƒΠ³Π»ΠΎΠΌ. Π’Ρ‹ моТСшь Π½Π°Π·Π½Π°Ρ‡ΠΈΡ‚ΡŒ ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½Ρ‹Π΅ клавиши для мСтания ΠΊΠ°ΠΆΠ΄ΠΎΠ³ΠΎ ΠΊΡ€ΡŽΠΊΠ° ΠΎΡ‚Π΄Π΅Π»ΡŒΠ½ΠΎ.", + "quests.tfg_tips.grapple_gravity_50.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: 0.5 Гравитация", + "quests.tfg_tips.grapple_gravity_50.subtitle": "Π Π°Π·Π²Π΅ это Π²ΠΎΠΎΠ±Ρ‰Π΅ ΠΈΠΌΠ΅Π΅Ρ‚ смысл?", + "quests.tfg_tips.grapple_gravity_50.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &a0.5 Гравитация&r ΠΏΡ€ΠΈΠ΄Π°Π΅Ρ‚ Π²Π°ΡˆΠ΅ΠΌΡƒ ΠΊΡ€ΡŽΠΊΡƒ &bΠ³Ρ€Π°Π²ΠΈΡ‚Π°Ρ†ΠΈΠΎΠ½Π½Ρ‹ΠΉ коэффициСнт 0.5.&r Π­Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚, Ρ‡Ρ‚ΠΎ Π½Π° Π½Π΅Π³ΠΎ Π±ΡƒΠ΄Π΅Ρ‚ Π΄Π΅ΠΉΡΡ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ гравитация с силой Π² ΠΏΠΎΠ»ΠΎΠ²ΠΈΠ½Ρƒ!\n\nВмСсто Ρ‚ΠΎΠ³ΠΎ Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Ρ‰Π΅ ΠΎΠ΄Π½ΠΎ &dΠ²Π΅Π΄Ρ€ΠΎ с Π³Π΅Π»ΠΈΠ΅ΠΌ&r для снятия ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &cпустоС Π²Π΅Π΄Ρ€ΠΎ&r β€” ΠΎΠ½ΠΎ заполнится Ρ‚Π΅ΠΌ самым &eΠ³Π΅Π»ΠΈΠ΅ΠΌ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π²Ρ‹ ΠΈΠ·Π½Π°Ρ‡Π°Π»ΡŒΠ½ΠΎ использовали.", + "quests.tfg_tips.grapple_gravity_0.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: НУЛЕВАЯ гравитация", + "quests.tfg_tips.grapple_gravity_0.subtitle": "Π’Π΅ΡΡŒΠΌΠ° Π΄ΠΎΡ€ΠΎΠ³ΠΎ", + "quests.tfg_tips.grapple_gravity_0.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ &aНУЛЕВАЯ гравитация&r, ΠΊΠ°ΠΊ слСдуСт ΠΈΠ· названия, ΡƒΠ±ΠΈΡ€Π°Π΅Ρ‚ Π³Ρ€Π°Π²ΠΈΡ‚Π°Ρ†ΠΈΡŽ Ρƒ вашСго ΠΊΡ€ΡŽΠΊΠ°.\n\nВмСсто Ρ‚ΠΎΠ³ΠΎ Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π΅Ρ‰Π΅ ΠΎΠ΄ΠΈΠ½ Π³Ρ€Π°Π²ΠΈΡ‚Π°Ρ†ΠΈΠΎΠ½Π½Ρ‹ΠΉ Π΄Π²ΠΈΠ³Π°Ρ‚Π΅Π»ΡŒ &cдля снятия ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ &dΠ²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Ρ‹ΠΉ Π±Π»ΠΎΠΊ&r.", + "quests.tfg_tips.grapple_tweaks.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠšΡ€ΡŽΠΊ-кошки: Настройка", + "quests.tfg_tips.grapple_tweaks.subtitle": "НастройтС свои ΡƒΠ³Π»Ρ‹", + "quests.tfg_tips.grapple_tweaks.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &aΠšΠ»ΡŽΡ‡Π°&r Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ &bΠ’Π΅Ρ€Ρ‚ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΡƒΠ³ΠΎΠ» Π½Π°ΠΊΠ»ΠΎΠ½Π°&r ΠΏΡ€ΠΈ броскС &dΠšΡ€ΡŽΠΊΠ°&r, Π° &aΠžΡ‚Π²Π΅Ρ€Ρ‚ΠΊΠ°&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для настройки &bΠ“ΠΎΡ€ΠΈΠ·ΠΎΠ½Ρ‚Π°Π»ΡŒΠ½ΠΎΠ³ΠΎ ΡƒΠ³Π»Π°&r для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ &aДвойная Кошка.&r", + "quests.tfg_tips.chalk.title": "МСлок", + "quests.tfg_tips.chalk.subtitle": "Π’Ρ‹ ΠΆΠ΅ Π½Π΅ Ρ…ΠΎΡ‡Π΅ΡˆΡŒ ΠΏΠΎΡ‚Π΅Ρ€ΡΡ‚ΡŒΡΡ, Π½Π΅ Ρ‚Π°ΠΊ Π»ΠΈ?", + "quests.tfg_tips.chalk.desc": "&dМСлок&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для рисования Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… символов Π½Π° Π±Π»ΠΎΠΊΠ°Ρ…. Π­Ρ‚ΠΎ ΠΎΡ‡Π΅Π½ΡŒ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ для ΠΏΠΎΠΌΠ΅Ρ‚ΠΊΠΈ Π²Π°ΠΆΠ½Ρ‹Ρ… мСст Π²ΠΎ врСмя &bисслСдования ΠΏΠ΅Ρ‰Π΅Ρ€.&r\n\n&3ΠšΠΎΡ€ΠΎΠ±ΠΎΠΊ для ΠΌΠ΅Π»Π°&r позволяСт Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ нСсколько кусочков ΠΌΠ΅Π»Π° Π² ΠΎΠ΄Π½ΠΎΠΌ слотС инвСнтаря. Π‘ΠΎΠ»Π΅Π΅ Ρ‚ΠΎΠ³ΠΎ, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ свСтящийся ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ (Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, &6ΡΠ²Π΅Ρ‚ΠΎΠΊΠ°ΠΌΠ΅Π½Π½ΡƒΡŽ ΠΏΡ‹Π»ΡŒ&r), Ρ‡Ρ‚ΠΎΠ±Ρ‹ Ρ‚Π²ΠΎΠΈ ΠΌΠ΅Π»ΠΊΠΈΠ΅ ΠΊΠ°Ρ€Π°ΠΊΡƒΠ»ΠΈ ΡΠ²Π΅Ρ‚ΠΈΠ»ΠΈΡΡŒ Π² Ρ‚Π΅ΠΌΠ½ΠΎΡ‚Π΅!", + "quests.tfg_tips.tape_measure.title": "Π ΡƒΠ»Π΅Ρ‚ΠΊΠ°", + "quests.tfg_tips.tape_measure.subtitle": "Π₯Π²Π°Ρ‚ΠΈΡ‚ ΡΡ‡ΠΈΡ‚Π°Ρ‚ΡŒ Π±Π»ΠΎΠΊΠΈ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ", + "quests.tfg_tips.tape_measure.desc": "Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &dΠ ΡƒΠ»Π΅Ρ‚ΠΊΡƒ&r для измСрСния Π΄Π»ΠΈΠ½Ρ‹ ΠΈΠ»ΠΈ ΠΏΠ΅Ρ€ΠΈΠΌΠ΅Ρ‚Ρ€Π° β€” особСнно ΠΏΠΎΠ»Π΅Π·Π½ΠΎ ΠΏΡ€ΠΈ ΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΡΡ‚Π²Π΅ ΠΊΡ€ΡƒΠΏΠ½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΅ΠΊΡ‚ΠΎΠ². ΠŸΡ€ΠΎΡΡ‚ΠΎ взаимодСйствуйтС с Π±Π»ΠΎΠΊΠΎΠΌ, Π΄Π΅Ρ€ΠΆΠ° &dΠ ΡƒΠ»Π΅Ρ‚ΠΊΡƒ&r Π² Ρ€ΡƒΠΊΠ°Ρ…, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ ΠΈΠ·ΠΌΠ΅Ρ€Π΅Π½ΠΈΠ΅. Π§Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ, Ρ‰Π΅Π»ΠΊΠ½ΠΈΡ‚Π΅ ПКМ ΠΏΠΎ Π΄Ρ€ΡƒΠ³ΠΎΠΌΡƒ Π±Π»ΠΎΠΊΡƒ, всС Ρ‚Π°ΠΊ ΠΆΠ΅ Π΄Π΅Ρ€ΠΆΠ° Ρ€ΡƒΠ»Π΅Ρ‚ΠΊΡƒ.", + "quests.tfg_tips.blank_disc.title": "Etched: Π‘Π»ΡƒΡˆΠ°ΠΉΡ‚Π΅ ΠΌΡƒΠ·Ρ‹ΠΊΡƒ", + "quests.tfg_tips.blank_disc.subtitle": "ΠœΡƒΠ·Ρ‹ΠΊΠ°Π»ΡŒΠ½ΠΎΠ΅ сопровоТдСниС для Π²Π°ΡˆΠΈΡ… ΠΏΡ€ΠΈΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠΉ", + "quests.tfg_tips.blank_disc.desc": "&2Etched&r β€” это ΠΌΠΎΠ΄, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ позволяСт ΡΠ»ΡƒΡˆΠ°Ρ‚ΡŒ ΠΌΡƒΠ·Ρ‹ΠΊΡƒ Π² Minecraft Π½ΠΎΠ²Ρ‹ΠΌΠΈ способами, Π²ΠΊΠ»ΡŽΡ‡Π°Ρ &dΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚Π΅Π»ΡŒΡΠΊΠΈΠ΅ диски&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΡ€ΠΎΠΈΠ³Ρ€Ρ‹Π²Π°Ρ‚ΡŒ Π»ΡŽΠ±ΡƒΡŽ ΠΆΠ΅Π»Π°Π΅ΠΌΡƒΡŽ пСсню (Ссли ΠΎΠ½Π° доступна Π½Π° Bandcamp ΠΈΠ»ΠΈ Soundcloud), Π° Ρ‚Π°ΠΊΠΆΠ΅ &aΠ·Π²ΡƒΠΊΠΈ ΠΈΠ· ΠΈΠ³Ρ€Ρ‹&r Ρ‡Π΅Ρ€Π΅Π· Π·Π²ΡƒΠΊΠΎΠ²Ρ‹Π΅ ΠΈΠ²Π΅Π½Ρ‚Ρ‹.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ знакомство с &2Etched&r, создайтС &bΠΏΡƒΡΡ‚ΡƒΡŽ пластинку.&r", + "quests.tfg_tips.radio.title": "Π Π°Π΄ΠΈΠΎ", + "quests.tfg_tips.radio.subtitle": "Π‘Π»ΡƒΡˆΠ°ΠΉΡ‚Π΅ ΠΌΡƒΠ·Ρ‹ΠΊΡƒ Π±Π΅Π· использования пластинок", + "quests.tfg_tips.radio.desc": "&dΠ Π°Π΄ΠΈΠΎ&r позволяСт Π²ΠΎΡΠΏΡ€ΠΎΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π»ΡŽΠ±ΡƒΡŽ ΠΆΠ΅Π»Π°Π΅ΠΌΡƒΡŽ ΠΊΠΎΠΌΠΏΠΎΠ·ΠΈΡ†ΠΈΡŽ. Π©Π΅Π»ΠΊΠ½ΠΈΡ‚Π΅ ΠΏΠΎ Π½Π΅ΠΌΡƒ ПКМ, Π° Π·Π°Ρ‚Π΅ΠΌ Π²Π²Π΅Π΄ΠΈΡ‚Π΅ Π½ΡƒΠΆΠ½ΡƒΡŽ пСсню β€” это ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ссылка ΠΈΠ»ΠΈ Π·Π²ΡƒΠΊΠΎΠ²ΠΎΠΉ ΠΈΠ²Π΅Π½Ρ‚ ΠΈΠ· Minecraft.", + "quests.tfg_tips.dye_discs.title": "Классика", + "quests.tfg_tips.dye_discs.subtitle": "Π­Ρ‚ΠΈ Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ Π²Ρ‹ΠΉΠ΄ΡƒΡ‚ ΠΈΠ· ΠΌΠΎΠ΄Ρ‹...", + "quests.tfg_tips.dye_discs.desc": "Если ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ &bΠΏΡƒΡΡ‚ΡƒΡŽ пластинку&r Π² &aΠ±ΠΎΡ‡ΠΊΡƒ&r, Π½Π°ΠΏΠΎΠ»Π½Π΅Π½Π½ΡƒΡŽ краситСлСм, ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Π²Π°Π½ΠΈΠ»ΡŒΠ½Ρ‹Π΅ ΠΌΡƒΠ·Ρ‹ΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ пластинки. ΠΠ°ΡΠ»Π°ΠΆΠ΄Π°ΠΉΡ‚Π΅ΡΡŒ классикой, Ρ‚Π°ΠΊΠΎΠΉ ΠΊΠ°ΠΊ &dWait, 13&r ΠΈ &dBlocks!&r", + "quests.tfg_tips.dye_discs.task": "Π›ΡŽΠ±Π°Ρ классичСская пластинка", + "quests.tfg_tips.special_discs.title": "Π£Π½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅", + "quests.tfg_tips.special_discs.subtitle": "Они Π΄Π΅ΠΉΡΡ‚Π²ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹... Π½Ρƒ, ΠΏΠΎ ΠΊΡ€Π°ΠΉΠ½Π΅ΠΉ ΠΌΠ΅Ρ€Π΅, Π±Ρ‹Π»ΠΈ", + "quests.tfg_tips.special_discs.desc": "Π’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &dΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ пластинки&r, Ссли Π·Π°Ρ…ΠΎΡ‚ΠΈΡ‚Π΅...", + "quests.tfg_tips.disc_collector.title": "ΠšΠΎΠ»Π»Π΅ΠΊΡ†ΠΈΠΎΠ½Π΅Ρ€ пластинок", + "quests.tfg_tips.disc_collector.subtitle": "Полная коллСкция", + "quests.tfg_tips.disc_collector.desc": "Π‘ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π»ΠΈ Π²Ρ‹ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ всС ΠΌΡƒΠ·Ρ‹ΠΊΠ°Π»ΡŒΠ½Ρ‹Π΅ пластинки?\n\nΠ Π°Π· ΡƒΠΆ Π²Ρ‹ здСсь, Π·Π½Π°ΠΉΡ‚Π΅: Π΅ΡΡ‚ΡŒ 2 скрытых квСста, связанных с ΠΌΡƒΠ·Ρ‹ΠΊΠ°Π»ΡŒΠ½Ρ‹ΠΌΠΈ пластинками. Один ΠΈΠ· Π½ΠΈΡ… довольно &cΠΏΠΎΠ΄ΠΎΠ·Ρ€ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ&r, Π° Π΄Ρ€ΡƒΠ³ΠΎΠΉ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΎΠ²Π°Ρ‚ΡŒ ΠΎΡ‚ вас ΠΏΡ€ΠΎΠ±ΡƒΠ΄ΠΈΡ‚ΡŒ своСго Π²Π½ΡƒΡ‚Ρ€Π΅Π½Π½Π΅Π³ΠΎ Π΄Π²ΠΎΡ€Ρ„Π°. Π£Π΄Π°Ρ‡ΠΈ!", + "quests.tfg_tips.amogus.title": "ΠΠœΠžΠΠ“Π£Π‘", + "quests.tfg_tips.amogus.subtitle": "БАББИ Π‘ΠΠšΠ!", + "quests.tfg_tips.amogus.desc": "ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»ΡΠ΅ΠΌ с Ρ€Π°Π·Π±Π»ΠΎΠΊΠΈΡ€ΠΎΠ²ΠΊΠΎΠΉ этого скрытого, ΠΎΡ‚Π²Ρ€Π°Ρ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ квСста. ΠŸΡƒΡΡ‚ΡŒ ваш вСнтиляционный саботаТ останСтся Π½Π΅Π·Π°ΠΌΠ΅Ρ‡Π΅Π½Π½Ρ‹ΠΌ.", + "quests.tfg_tips.label_album.title": "Π―Ρ€Π»Ρ‹ΠΊΠΈ ΠΈ ΠΠ»ΡŒΠ±ΠΎΠΌΡ‹", + "quests.tfg_tips.label_album.subtitle": "Π―Ρ€Π»Ρ‹ΠΊΠΈ для Π²Π°ΡˆΠΈΡ… дисков ΠΈ ΠΎΠ±Π»ΠΎΠΆΠΊΠΈ альбомов, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΡ… Π·Π°Ρ‰ΠΈΡ‚ΠΈΡ‚ΡŒ", + "quests.tfg_tips.label_album.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ &bнанСсти Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²ΠΊΡƒ&r Π½Π° Π²Π°ΡˆΡƒ ΠΏΠ΅Ρ€Π²ΡƒΡŽ пластинку, Π²Π°ΠΌ понадобится &dΠ―Ρ€Π»Ρ‹ΠΊ&r. Π―Ρ€Π»Ρ‹ΠΊΠΈ, ΠΊΠ°ΠΊ ΠΈ пустыС пластинки, ΠΌΠΎΠΆΠ½ΠΎ ΠΎΠΊΡ€Π°ΡˆΠΈΠ²Π°Ρ‚ΡŒ.\n\n&dОблоТки альбомов&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ для оформлСния Π²Π°ΡˆΠΈΡ… Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹Ρ… пластинок. Если Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ диск ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅Ρ‚ Π΄Π°Π½Π½Ρ‹Π΅ с сайта Π²Ρ€ΠΎΠ΄Π΅ &cSoundcloud&r, ΠΈΠΊΠΎΠ½ΠΊΠ° пСсни Π±ΡƒΠ΄Π΅Ρ‚ сТата Π΄ΠΎ тСкстуры 16Γ—16! Π§Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ диск, ΠΎΡ‚ΠΊΡ€ΠΎΠΉΡ‚Π΅ ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€ΡŒ, Π²Ρ‹Π±Π΅Ρ€ΠΈΡ‚Π΅ ΠΎΠ±Π»ΠΎΠΆΠΊΡƒ альбома ΠΈ Ρ‰Π΅Π»ΠΊΠ½ΠΈΡ‚Π΅ ПКМ ΠΏΠΎ ΠΌΡƒΠ·Ρ‹ΠΊΠ°Π»ΡŒΠ½ΠΎΠΉ пластинкС, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ. Π’Ρ‹ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΡ…Ρ€Π°Π½ΡΡ‚ΡŒ ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Π΅ диски.", + "quests.tfg_tips.etching_disc.title": "Π“Ρ€Π°Π²ΠΈΡ€ΠΎΠ²Π°Π½ΠΈΠ΅ вашСго ΠΏΠ΅Ρ€Π²ΠΎΠΉ пластинки", + "quests.tfg_tips.etching_disc.subtitle": "ВрСмя для вашСй ΠΏΠ΅Ρ€Π²ΠΎΠΉ ΠΌΠ΅Π»ΠΎΠ΄ΠΈΠΈ", + "quests.tfg_tips.etching_disc.desc": "Для Π½Π°Ρ‡Π°Π»Π° Π²Π°ΠΌ понадобится &3стол для Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²ΠΊΠΈ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΈΡΡ‚ΡƒΠΏΠΈΡ‚ΡŒ ΠΊ &bнанСсСнию Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²ΠΊΠΈ&r. Π©Π΅Π»ΠΊΠ½ΠΈΡ‚Π΅ ΠΏΠΎ столу ПКМ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΡŒ интСрфСйс ΠΈ помСститС &aΠΏΡƒΡΡ‚ΡƒΡŽ пластинку&r вмСстС с &aΠ―Ρ€Π»Ρ‹ΠΊΠΎΠΌ&r, Ρ‚Π°ΠΊΠΆΠ΅ ΡƒΠΊΠ°ΠΆΠΈΡ‚Π΅ допустимый источник Π·Π²ΡƒΠΊΠ° Π² Π²Π΅Ρ€Ρ…Π½Π΅ΠΉ строкС, Π·Π°Ρ‚Π΅ΠΌ ваш диск Π±ΡƒΠ΄Π΅Ρ‚ Π³ΠΎΡ‚ΠΎΠ².\n\nΠ˜ΡΡ‚ΠΎΡ‡Π½ΠΈΠΊΠ°ΠΌΠΈ Π·Π²ΡƒΠΊΠ° ΠΌΠΎΠ³ΡƒΡ‚ Π±Ρ‹Ρ‚ΡŒ Ρ‚Π°ΠΊΠΈΠ΅ Π²Π΅Ρ‰ΠΈ, ΠΊΠ°ΠΊ &bссылки Π½Π° Bandcamp/Soundcloud&r (ΠΎΠ΄ΠΈΠ½ΠΎΡ‡Π½Ρ‹Π΅ Ρ‚Ρ€Π΅ΠΊΠΈ ΠΈΠ»ΠΈ Π°Π»ΡŒΠ±ΠΎΠΌΡ‹), &dΠ²Π½ΡƒΡ‚Ρ€ΠΈΠΈΠ³Ρ€ΠΎΠ²Ρ‹Π΅ Π·Π²ΡƒΠΊΠΎΠ²Ρ‹Π΅ ΠΈΠ²Π΅Π½Ρ‚Ρ‹&r ΠΈΠ»ΠΈ ΠΏΡƒΡ‚ΠΈ ΠΊ &c.ogg/.wav/.mp3 Ρ„Π°ΠΉΠ»Π°ΠΌ&r Π½Π° вашСм ΠΊΠΎΠΌΠΏΡŒΡŽΡ‚Π΅Ρ€Π΅.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ этот квСст, нанСситС Π³Ρ€Π°Π²ΠΈΡ€ΠΎΠ²ΠΊΡƒ Π½Π° Π»ΡŽΠ±ΡƒΡŽ пластинку.", + "quests.tfg_tips.disc_players.title": "ΠŸΠ»Π΅Π΅Ρ€Ρ‹ для дисков", + "quests.tfg_tips.disc_players.subtitle": "Ну ΠΊΡƒΠ΄Π° ΠΆΠ΅ Π±Π΅Π· Π½ΠΈΡ…!", + "quests.tfg_tips.disc_players.desc": "Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ &3ΠŸΡ€ΠΎΠΈΠ³Ρ€Ρ‹Π²Π°Ρ‚Π΅Π»ΡŒ&r, ΠΎΠ΄Π½Π°ΠΊΠΎ Π΅ΡΡ‚ΡŒ ΠΈ Π±ΠΎΠ»Π΅Π΅ ΠΊΡ€ΡƒΡ‚Ρ‹Π΅ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹:\n\n&dΠΠ»ΡŒΠ±ΠΎΠΌΠ½Ρ‹ΠΉ ΠΏΡ€ΠΎΠΈΠ³Ρ€Ρ‹Π²Π°Ρ‚Π΅Π»ΡŒ&r – позволяСт Π·Π°Π³Ρ€ΡƒΠ·ΠΈΡ‚ΡŒ нСсколько дисков ΠΈ &bΠΏΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡Π°Ρ‚ΡŒΡΡ ΠΌΠ΅ΠΆΠ΄Ρƒ Π½ΠΈΠΌΠΈ&r. ИдСально для вашСй Π±Π°Π·Ρ‹.\n\n&dБумбокс&r – ΡΠ»ΡƒΡˆΠ°ΠΉΡ‚Π΅ ΠΌΡƒΠ·Ρ‹ΠΊΡƒ Π² ΠΏΡƒΡ‚ΠΈ.", + "quests.tfg_tips.disc_players.task": "ΠŸΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ ΠΠ»ΡŒΠ±ΠΎΠΌΠ½Ρ‹ΠΉ ΠΏΡ€ΠΎΠΈΠ³Ρ€Ρ‹Π²Π°Ρ‚Π΅Π»ΡŒ ΠΈΠ»ΠΈ Бумбокс", + "quests.tfg_tips.DIGGY_DIGGY_HOLE.title": "I AM A DWARF AND I'M DIGGING A HOLE", + "quests.tfg_tips.DIGGY_DIGGY_HOLE.subtitle": "DIGGY DIGGY HOLE, DIGGY DIGGY HOLE!", + "quests.tfg_tips.DIGGY_DIGGY_HOLE.desc": "ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»ΡΠ΅ΠΌ с ΠΎΡ‚ΠΊΡ€Ρ‹Ρ‚ΠΈΠ΅ΠΌ этого сСкрСтного ΠΈ прСкрасного квСста! ΠŸΡƒΡΡ‚ΡŒ ваши ΡˆΠ°Ρ…Ρ‚Ρ‹ Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ ΠΎΠ±Ρ€ΡƒΡˆΠ°Ρ‚ΡΡ, Π° ΠΏΠΎΠ΄ Π·Π΅ΠΌΠ»Π΅ΠΉ вас ΠΆΠ΄Π΅Ρ‚ богатая Π΄ΠΎΠ±Ρ‹Ρ‡Π°!", + "quests.tfg_tips.DIGGY_DIGGY_HOLE.task": "ΠŸΠ»Π°ΡΡ‚ΠΈΠ½ΠΊΠ° c Diggy Diggy Hole", + "quests.tfg_tips.camera.title": "Exposure: Π—Π°ΠΏΠ΅Ρ‡Π°Ρ‚Π»ΠΈ свои воспоминания", + "quests.tfg_tips.camera.subtitle": "Π‘Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΡ€ΡƒΠΉ свой ΠΌΠΈΡ€", + "quests.tfg_tips.camera.desc": "&2Exposure&r β€” это модификация, которая добавляСт Π² ΠΈΠ³Ρ€Ρƒ Ρ€Π΅Π°Π»ΠΈΡΡ‚ΠΈΡ‡Π½ΡƒΡŽ ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΡƒ ΠΈΠ·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΠΉ. НачнитС с создания &bΠ€ΠΎΡ‚ΠΎΠ°ΠΏΠΏΠ°Ρ€Π°Ρ‚Π°&r ΠΈ &aПлСнки&r, Π° Π·Π°Ρ‚Π΅ΠΌ проявитС свои Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠΈ! ΠœΠΎΠ΄ΠΈΡ„ΠΈΠΊΠ°Ρ†ΠΈΡ ΠΈΠΌΠ΅Π΅Ρ‚ слоТныС систСмы, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ цвСтовая коррСкция, Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Ρ‹ ΠΈ ΠΌΠ½ΠΎΠ³ΠΎΠ΅ Π΄Ρ€ΡƒΠ³ΠΎΠ΅.", + "quests.tfg_tips.selfie.title": "Π‘Π΅Π»Ρ„ΠΈ", + "quests.tfg_tips.selfie.subtitle": "Для сториса!", + "quests.tfg_tips.selfie.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ вашСго &bΠ€ΠΎΡ‚ΠΎΠ°ΠΏΠΏΠ°Ρ€Π°Ρ‚Π°&r, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΠΆΠ°Ρ‚ΡŒ F5, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΡŒ &bΠ Π΅ΠΆΠΈΠΌ сСлфи&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ, ΠΊΠ°ΠΊ слСдуСт ΠΈΠ· названия, позволяСт Π΄Π΅Π»Π°Ρ‚ΡŒ сСлфи.", + "quests.tfg_tips.camera_attachments.title": "АксСссуары для ΠΊΠ°ΠΌΠ΅Ρ€Ρ‹", + "quests.tfg_tips.camera_attachments.subtitle": "Π£Π»ΡƒΡ‡ΡˆΠ°Π΅ΠΌ ваш Ρ„ΠΎΡ‚ΠΎΠ°ΠΏΠΏΠ°Ρ€Π°Ρ‚", + "quests.tfg_tips.camera_attachments.desc": "ВзаимодСйствуя с &dΠ€ΠΎΡ‚ΠΎΠ°ΠΏΠΏΠ°Ρ€Π°Ρ‚ΠΎΠΌ&r, ΠΊΠΎΠ³Π΄Π° Π²Ρ‹ ΠΊΡ€Π°Π΄Π΅Ρ‚Π΅ΡΡŒ, Π²Ρ‹ ΠΎΡ‚ΠΊΡ€ΠΎΠ΅Ρ‚Π΅ графичСский интСрфСйс ΠΊΠ°ΠΌΠ΅Ρ€Ρ‹. Π­Ρ‚ΠΎ ΠΏΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ Π²Π°ΠΌ Π½Π΅ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΏΠΎΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Ρ‚ΡƒΠ΄Π° ΠΆΠ΅Π»Π°Π΅ΠΌΡƒΡŽ &aΠŸΠ»Π΅Π½ΠΊΡƒ&r, Π½ΠΎ ΠΈ ΠΏΡ€ΠΈΠΊΡ€Π΅ΠΏΠΈΡ‚ΡŒ ΠΊ ΠΊΠ°ΠΌΠ΅Ρ€Π΅ дополнСния, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ добавят Π½ΠΎΠ²Ρ‹Π΅ Ρ„ΡƒΠ½ΠΊΡ†ΠΈΠΈ.\n\n&dРСдстоуновый Ρ„ΠΎΠ½Π°Ρ€ΡŒ&r: Π Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ ΠΊΠ°ΠΊ Ρ„ΠΎΠ½Π°Ρ€ΠΈΠΊ, освСщая Ρ‚Π΅ΠΌΠ½Ρ‹Π΅ мСста.\n&dΠŸΠΎΠ΄Π·ΠΎΡ€Π½Π°Ρ Ρ‚Ρ€ΡƒΠ±Π°&r: ΠŸΠΎΠ·Π²ΠΎΠ»ΡΠ΅Ρ‚ ΠΏΡ€ΠΈΠ±Π»ΠΈΠΆΠ°Ρ‚ΡŒ ΠΈΠ·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΠ΅, давая Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΎΠ±ΡŠΠ΅ΠΊΡ‚Ρ‹, находящиСся Π΄Π°Π»Π΅ΠΊΠΎ.", + "quests.tfg_tips.camera_attachments.task": "РСдстоуновый Ρ„ΠΎΠ½Π°Ρ€ΡŒ ΠΈΠ»ΠΈ ΠŸΠΎΠ΄Π·ΠΎΡ€Π½Π°Ρ Ρ‚Ρ€ΡƒΠ±Π°", + "quests.tfg_tips.filters.title": "Π¦Π²Π΅Ρ‚Π½ΠΎΠΉ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€", + "quests.tfg_tips.filters.subtitle": "ИзмСнСниС стиля Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠΉ.", + "quests.tfg_tips.filters.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &aБтСклянной ΠΏΠ°Π½Π΅Π»ΠΈ&r Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°Π»ΠΎΠΆΠΈΡ‚ΡŒ &dΠ€ΠΈΠ»ΡŒΡ‚Ρ€&r Π½Π° снимок. ΠŸΡ€ΠΎΡΡ‚ΠΎ ΠΎΡ‚ΠΊΡ€ΠΎΠΉΡ‚Π΅ интСрфСйс ΠΊΠ°ΠΌΠ΅Ρ€Ρ‹ ΠΈ помСститС Π΅Π΅ Π² ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΠΉ слот. &dΠ€ΠΈΠ»ΡŒΡ‚Ρ€Ρ‹&r ΠΈΠ·ΠΌΠ΅Π½ΡΡŽΡ‚ Ρ†Π²Π΅Ρ‚ΠΎΠ²ΡƒΡŽ Π³Π°ΠΌΠΌΡƒ Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠΈ. НапримСр: &3Π“ΠΎΠ»ΡƒΠ±ΠΎΠΉ&r ΠΈΠ»ΠΈ &bΠ‘Π²Π΅Ρ‚Π»ΠΎ-синий&r Ρ„ΠΈΠ»ΡŒΡ‚Ρ€ придаст снимку Ρ…ΠΎΠ»ΠΎΠ΄Π½Ρ‹Π΅ Ρ‚ΠΎΠ½Π°.", + "quests.tfg_tips.filter.task": "Π›ΡŽΠ±Π°Ρ стСклянная панСль", + "quests.tfg_tips.interplanar_projector.title": "ΠœΠ΅ΠΆΠΏΠ»ΠΎΡΠΊΠΎΡΡ‚Π½ΠΎΠΉ ΠΏΡ€ΠΎΠ΅ΠΊΡ‚ΠΎΡ€", + "quests.tfg_tips.interplanar_projector.subtitle": "Π­Ρ‚ΠΎ Π½Π΅ выглядит рСалистично...?", + "quests.tfg_tips.interplanar_projector.desc": "&dΠœΠ΅ΠΆΠΏΠ»ΠΎΡΠΊΠΎΡΡ‚Π½ΠΎΠΉ ΠΏΡ€ΠΎΠ΅ΠΊΡ‚ΠΎΡ€&r β€” это особый Ρ„ΠΈΠ»ΡŒΡ‚Ρ€, ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰ΠΈΠΉ Π΄Π΅Π»Π°Ρ‚ΡŒ снимки ΠΎΠ±ΡŠΠ΅ΠΊΡ‚ΠΎΠ², находящихся &cΠ·Π° ΠΏΡ€Π΅Π΄Π΅Π»Π°ΠΌΠΈ&r ΠΌΠΈΡ€Π° Minecraft.\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅ΠΈΠΌΠ΅Π½ΠΎΠ²Π°Ρ‚ΡŒ &aΠ›ΠΈΠ½Π·Ρƒ&r Π½Π° &3Π‘Ρ‚ΠΎΠ»Π΅ ΠŸΠΈΡΠ°Ρ€Ρ&r, ΡƒΠΊΠ°Π·Π°Π² Π½Π°, Π»ΠΈΠ±ΠΎ Π½Π° ΠΏΡƒΡ‚ΡŒ ΠΊ ΠΈΠ·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΡŽ Π½Π° вашСм &bДискС,&r Π»ΠΈΠ±ΠΎ &bссылку Π½Π° ΠΈΠ½Ρ‚Π΅Ρ€Π½Π΅Ρ‚-ΠΈΠ·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΠ΅.&r Установив Π»ΠΈΠ½Π·Ρƒ Π² &aΠ€ΠΎΡ‚ΠΎΠ°ΠΏΠΏΠ°Ρ€Π°Ρ‚&r ΠΈ сдСлав снимок, Π²Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ это внСшнСС ΠΈΠ·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΠ΅.", + "quests.tfg_tips.film_rolls.title": "ПлСнка", + "quests.tfg_tips.film_rolls.subtitle": "Π­Ρ‚ΠΎ Π½Π΅ цифровая тСхнология", + "quests.tfg_tips.film_rolls.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ Π΄Π΅Π»Π°Ρ‚ΡŒ Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠΈ, Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ ΠΎΠ΄Π½Ρƒ ΠΈΠ· Π΄Π²ΡƒΡ… ΠΏΠ»Π΅Π½ΠΎΠΊ: &0Π§Π΅Ρ€Π½ΠΎ-Π±Π΅Π»ΡƒΡŽ ΠΏΠ»Π΅Π½ΠΊΡƒ&r ΠΈΠ»ΠΈ &dΠ¦Π²Π΅Ρ‚Π½ΡƒΡŽ ΠΏΠ»Π΅Π½ΠΊΡƒ.&r", + "quests.tfg_tips.developing_film.title": "ΠŸΡ€ΠΎΡΠ²ΠΊΠ° ΠΏΠ»Π΅Π½ΠΊΠΈ", + "quests.tfg_tips.developing_film.subtitle": "ΠŸΡ€Π΅Π΄ΡΡ‚Π°Π²ΡŒΡ‚Π΅, Ρ‡Ρ‚ΠΎ Π²Ρ‹ β€” ΠΏΡ€ΠΈΠ½Ρ‚Π΅Ρ€", + "quests.tfg_tips.developing_film.desc": "ПослС Ρ‚ΠΎΠ³ΠΎ ΠΊΠ°ΠΊ Π²Ρ‹ сдСлали снимки, ΠΌΠΎΠΆΠ½ΠΎ Π½Π°Ρ‡Π°Ρ‚ΡŒ &aпроявку&r, Π·Π°ΠΌΠΎΡ‡ΠΈΠ² ΠΏΠ»Π΅Π½ΠΊΡƒ Π² &bΠ’ΠΎΠ΄Π΅.&r Π—Π°Ρ‚Π΅ΠΌ потрСбуСтся ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &dΠ€ΠΎΡ‚ΠΎΠ»Π°Π±ΠΎΡ€Π°Ρ‚ΠΎΡ€ΠΈΡŽ&r.\n\nЀотолаборатория ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для проявки ΠΏΠ»Π΅Π½ΠΊΠΈ Π½Π° Π±ΡƒΠΌΠ°Π³Ρƒ, ΠΈ для Π΅Π΅ Ρ€Π°Π±ΠΎΡ‚Ρ‹ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌ ΡΠΈΠ»ΡŒΠ½Ρ‹ΠΉ источник свСта Π½Π°Π΄ Π±Π»ΠΎΠΊΠΎΠΌ, Π° Ρ‚Π°ΠΊΠΆΠ΅ Ρ‡Π΅Ρ‚Ρ‹Ρ€Π΅ краситСля: &3Π‘ΠΈΡ€ΡŽΠ·ΠΎΠ²Ρ‹ΠΉ&r, &5ΠŸΡƒΡ€ΠΏΡƒΡ€Π½Ρ‹ΠΉ&r, &eΠ–Π΅Π»Ρ‚Ρ‹ΠΉ&r ΠΈ &0Π§Π΅Ρ€Π½Ρ‹ΠΉ&r β€” Ρ‚Π°ΠΊ называСмая модСль CMYK.\n&0Π§Π΅Ρ€Π½ΠΎ-бСлая ΠΏΠ»Π΅Π½ΠΊΠ°&r Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ &0Ρ‡Π΅Ρ€Π½Ρ‹ΠΉ ΠΊΡ€Π°ΡΠΈΡ‚Π΅Π»ΡŒ&r, Π° &dцвСтная ΠΏΠ»Π΅Π½ΠΊΠ°&r β€” вСсь Π½Π°Π±ΠΎΡ€ &3C&5M&eY&0K&r.\n\nЕсли Π²Π°ΠΌ ΠΏΠΎ Π΄ΡƒΡˆΠ΅ Π±ΠΎΠ»Π΅Π΅ нСобычная ΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠ°, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠΏΡ€ΠΎΠ±ΠΎΠ²Π°Ρ‚ΡŒ &cΠ₯роматичСский процСсс...&r", + "quests.tfg_tips.photo.title": "Π’Π°ΡˆΠ΅ ΠΏΠ΅Ρ€Π²ΠΎΠ΅ Ρ„ΠΎΡ‚ΠΎ", + "quests.tfg_tips.photo.subtitle": "ΠŸΠΎΠ·Π΄Ρ€Π°Π²Π»ΡΠ΅ΠΌ!", + "quests.tfg_tips.photo.desc": "Π‘ вашСй &dΡ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠ΅ΠΉ&r ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ нСсколько Π²Π΅Ρ‰Π΅ΠΉ.\n\nΠ’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΅Π΅ &bΠ‘ΠΊΠΎΠΏΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ чистый лист &aΠ±ΡƒΠΌΠ°Π³ΠΈ&r ΠΈ Π½ΡƒΠΆΠ½Ρ‹Π΅ &aΠšΡ€Π°ΡΠΈΡ‚Π΅Π»ΠΈ&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Π½Π½Ρ‹Π΅ ΠΏΡ€ΠΈ проявкС ΠΎΡ€ΠΈΠ³ΠΈΠ½Π°Π»Π°.\n\nΠ’Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ &bΠ‘ΠΊΠ»Π°Π΄Ρ‹Π²Π°Ρ‚ΡŒ&r Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠΈ Π² стопку, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΠ΄ΠΎΠ±Π½ΠΎ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ ΠΈΡ… Π² ΠΈΠ½Π²Π΅Π½Ρ‚Π°Ρ€Π΅ β€” посмотритС Π² EMI, ΠΊΠ°ΠΊ это ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ.\n\nНаконСц, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ искусствСнно &cΠ‘ΠΎΡΡ‚Π°Ρ€ΠΈΡ‚ΡŒ&r снимок, ΠΏΡ€ΠΈΠΌΠ΅Π½ΠΈΠ² ΠΊ Π½Π΅ΠΌΡƒ &6ΠΊΠΎΡ€ΠΈΡ‡Π½Π΅Π²Ρ‹ΠΉ ΠΊΡ€Π°ΡΠΈΡ‚Π΅Π»ΡŒ&r β€” фотография Π±ΡƒΠ΄Π΅Ρ‚ Π²Ρ‹Π³Π»ΡΠ΄Π΅Ρ‚ΡŒ Ρ‚Π°ΠΊ, Π±ΡƒΠ΄Ρ‚ΠΎ ΠΏΡ€ΠΎΡˆΠ»Π° сквозь Π³ΠΎΠ΄Ρ‹.", + "quests.tfg_tips.photo_album.title": "Π€ΠΎΡ‚ΠΎΠ°Π»ΡŒΠ±ΠΎΠΌ", + "quests.tfg_tips.photo_album.subtitle": "ΠžΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ΡΡ, воспоминания β€” навсСгда...", + "quests.tfg_tips.photo_album.desc": "Если Π²Ρ‹ Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ &bΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠΈ&r, Ρ‚ΠΎ создайтС &dΠ€ΠΎΡ‚ΠΎΠ°Π»ΡŒΠ±ΠΎΠΌ&r. ΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΄ΠΎΠ±Π°Π²Π»ΡΡ‚ΡŒ ΠΊΠΎΡ€ΠΎΡ‚ΠΊΠΈΠ΅ описания ΠΊ ΠΊΠ°ΠΆΠ΄ΠΎΠΌΡƒ снимку Π² альбомС β€” ΡƒΠΊΠ°Π·Ρ‹Π²Π°ΠΉΡ‚Π΅, Π³Π΄Π΅ Π±Ρ‹Π»Π° сдСлана фотография, добавляйтС Π·Π°ΠΌΠ΅Ρ‚ΠΊΠΈ ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ Π΄Π΅Ρ‚Π°Π»ΠΈ!", + "quests.tfg_tips.photo_frame.title": "Π Π°ΠΌΠΊΠ° для Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠΈ", + "quests.tfg_tips.photo_frame.subtitle": "Для самых Π²ΠΏΠ΅Ρ‡Π°Ρ‚Π»ΡΡŽΡ‰ΠΈΡ… снимков", + "quests.tfg_tips.photo_frame.desc": "&dΠ Π°ΠΌΠΊΠ° для Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠΈ&r позволяСт ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΡŒ Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠΈ. Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ Ρ€Π°ΠΌΠΎΠΊ для ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ², Ρ„ΠΎΡ‚ΠΎΡ€Π°ΠΌΠΊΠΈ ΠΌΠΎΠ³ΡƒΡ‚ ΠΈΠΌΠ΅Ρ‚ΡŒ Ρ€Π°Π·ΠΌΠ΅Ρ€Ρ‹ 1Γ—1, 2Γ—2 ΠΈΠ»ΠΈ 3Γ—3, Ρ‡Ρ‚ΠΎ Π΄Π°Π΅Ρ‚ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒ Π²Ρ‹ΡΡ‚Π°Π²Π»ΡΡ‚ΡŒ особСнно красивыС Ρ„ΠΎΡ‚ΠΎΠ³Ρ€Π°Ρ„ΠΈΠΈ Ρƒ сСбя Π½Π° Π±Π°Π·Π΅!", + "quests.tfg_tips.harpoon.title": "ПодвСс", + "quests.tfg_tips.harpoon.subtitle": "Запасной ΠΏΠ»Π°Π½ ΠΏΠΎΠ±Π΅Π³Π°", + "quests.tfg_tips.harpoon.desc": "&dΠ“Π°Ρ€ΠΏΡƒΠ½&r ΠΏΠΎΡ…ΠΎΠΆ Π½Π° ΠΊΡ€ΡŽΠΊ-ΠΊΠΎΡˆΠΊΡƒ, Π½ΠΎ ΠΎΠ½ всСгда Π»Π΅Ρ‚ΠΈΡ‚ Π²Π΅Ρ€Ρ‚ΠΈΠΊΠ°Π»ΡŒΠ½ΠΎ Π²Π²Π΅Ρ€Ρ… ΠΈ Π½Π΅ ΠΏΠΎΠ΄Π»Π΅ΠΆΠΈΡ‚ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡŽ. Π—Π°Ρ‚ΠΎ Π½Π° Π½Ρ‘ΠΌ всё Π΅Ρ‰Ρ‘ ΠΌΠΎΠΆΠ½ΠΎ Ρ€Π°ΡΠΊΠ°Ρ‡ΠΈΠ²Π°Ρ‚ΡŒΡΡ!", + "quests.tfg_tips.coil.title": "Π—ΠΈΠΏΠ»Π°ΠΉΠ½", + "quests.tfg_tips.coil.subtitle": "Π£ΠΈΠΈΠΈΠΈ!", + "quests.tfg_tips.coil.desc": "Если ΠΊΠ»ΠΈΠΊΠ½ΡƒΡ‚ΡŒ ПКМ ΠΏΠΎ Π΄Π²ΡƒΠΌ &dΠ—Π°Π±ΠΎΡ€Π°ΠΌ&r с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &3Вроса&r, Π²Ρ‹ создадитС Π·ΠΈΠΏΠ»Π°ΠΉΠ½! (НавСсная ΠΏΠ΅Ρ€Π΅ΠΏΡ€Π°Π²Π°) Над собой выстрСлитС Π³Π°Ρ€ΠΏΡƒΠ½ΠΎΠΌ Π² Π·Π°Π±ΠΎΡ€ с привязанным тросом, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ скольТСниС. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ натяТСниС троса, ΠΊΠ»ΠΈΠΊΠ½ΠΈΡ‚Π΅ ПКМ ΠΏΠΎ тросу пустой Ρ€ΡƒΠΊΠΎΠΉ. ΠšΠ°ΠΆΠ΄Ρ‹ΠΉ трос β€” одностороний, Ρ‡Ρ‚ΠΎ Π²ΠΈΠ΄Π½ΠΎ ΠΏΠΎ «стрСлкам» Π½Π° тросС, поэтому для Π΄Π²ΡƒΠ½Π°ΠΏΡ€Π°Π²Π»Π΅Π½Π½ΠΎΠ³ΠΎ Π·ΠΈΠΏΠ»Π°ΠΉΠ½Π° Π½ΡƒΠΆΠ½Ρ‹ Π΄Π²Π° троса. Вросы ΠΌΠΎΠΆΠ½ΠΎ ΡΡ‚Π°Π²ΠΈΡ‚ΡŒ ΠΈ Π½Π° Π΄Ρ€ΡƒΠ³ΠΈΠ΅ Π±Π»ΠΎΠΊΠΈ для Π΄Π΅ΠΊΠΎΡ€Π°, Π½ΠΎ Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΠ½ΠΈ Ρ€Π°Π±ΠΎΡ‚Π°Π»ΠΈ ΠΊΠ°ΠΊ Π·ΠΈΠΏΠ»Π°ΠΉΠ½, Π΄ΠΎΠ»ΠΆΠ½Ρ‹ Π±Ρ‹Ρ‚ΡŒ ΠΈΠΌΠ΅Π½Π½ΠΎ Π½Π° Π·Π°Π±ΠΎΡ€Π°Ρ….", + "quests.tfg_tips.self_defense.title": "Π‘Π°ΠΌΠΎΠΎΠ±ΠΎΡ€ΠΎΠ½Π°", + "quests.tfg_tips.self_defense.subtitle": "Π—ΠΎΠΌΠ±ΠΈ Π½Π° вашСм Π³Π°Π·ΠΎΠ½Π΅", + "quests.tfg_tips.self_defense.desc": "ΠŸΠΎΡΡ‚Π°Π²ΡŒΡ‚Π΅ &3Капкан&r рядом с Π½Π°ΠΆΠΈΠΌΠ½ΠΎΠΉ ΠΏΠ»ΠΈΡ‚ΠΎΠΉ β€” ΠΎΠ½ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ ΠΎΠ±Π΅Π·Π΄Π²ΠΈΠΆΠΈΡ‚ любоС ΠΆΠΈΠ²ΠΎΡ‚Π½ΠΎΠ΅ (ΠΈΠ»ΠΈ монстра!), ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ΅ Π½Π° Π½Π΅Ρ‘ наступит. ΠžΡ‚Π»ΠΈΡ‡Π½ΠΎ ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для Π»ΠΎΠ²Π»ΠΈ Ρ€Π΅Π΄ΠΊΠΈΡ… Π·Π²Π΅Ρ€Π΅ΠΉ Π² лСсу ΠΈΠ»ΠΈ Π·Π°Ρ‰ΠΈΡ‚Ρ‹ Π΄ΠΎΠΌΠ°.\n\n&3ΠšΠΎΠ»ΡŽΡ‡Π°Ρ ΠΏΡ€ΠΎΠ²ΠΎΠ»ΠΊΠ°&r дСйствуСт пассивно ΠΈ просто наносит ΡƒΡ€ΠΎΠ½ всСму, ΠΊΡ‚ΠΎ Ρ‡Π΅Ρ€Π΅Π· Π½Π΅Ρ‘ ΠΏΡ€ΠΎΡ…ΠΎΠ΄ΠΈΡ‚.", + "quests.tfg_tips.lightning_rod.title": "Π“Ρ€ΠΎΠΌΠΎΠΎΡ‚Π²ΠΎΠ΄", + "quests.tfg_tips.lightning_rod.subtitle": "Π›ΠΈΡˆΠ½Π΅Π΅ напряТСниС", + "quests.tfg_tips.lightning_rod.desc": "Π’Π°ΠΊ ΠΊΠ°ΠΊ Π² TerraFirmaCraft Π³Ρ€ΠΎΠ·Ρ‹ проходят ΠΊΡƒΠ΄Π° Ρ‡Π°Ρ‰Π΅ ΠΈ яростнСС, частыС ΡƒΠ΄Π°Ρ€Ρ‹ ΠΌΠΎΠ»Π½ΠΈΠΉ ΠΌΠΎΠ³ΡƒΡ‚ Π½Π°Ρ‡Π°Ρ‚ΡŒ Ρ€Π°Π·Π΄Ρ€Π°ΠΆΠ°Ρ‚ΡŒ. Π Π΅ΡˆΠΈΡ‚ΡŒ эту ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΡƒ ΠΌΠΎΠΆΠ½ΠΎ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &dΠ³Ρ€ΠΎΠΌΠΎΠΎΡ‚Π²ΠΎΠ΄Π°&r β€” всСго Π·Π° 3 ΠΌΠ΅Π΄Π½Ρ‹Ρ… стСрТня. \n\n&dΠ“Ρ€ΠΎΠΌΠΎΠΎΡ‚Π²ΠΎΠ΄&r пСрСнаправляСт всС ΠΌΠΎΠ»Π½ΠΈΠΈ Π½Π° сСбя Π² сфСричСском радиусС &3128 Π±Π»ΠΎΠΊΠΎΠ²&r. \nΠ£Ρ‡Ρ‚ΠΈΡ‚Π΅: ΠΎΠ½ лишь &oпСрСнаправляСт&r ΠΌΠΎΠ»Π½ΠΈΠΈ, Π° Π½Π΅ Π½Π΅ΠΉΡ‚Ρ€Π°Π»ΠΈΠ·ΡƒΠ΅Ρ‚ ΠΈΡ…, поэтому ΠΏΠΎΠΆΠ°Ρ€Ρ‹ всё Π΅Ρ‰Ρ‘ ΠΌΠΎΠ³ΡƒΡ‚ Π²ΠΎΠ·Π½ΠΈΠΊΠ°Ρ‚ΡŒ Π² радиусС &33 Π±Π»ΠΎΠΊΠΎΠ²&r Π²ΠΎΠΊΡ€ΡƒΠ³ Π½Π΅Π³ΠΎ β€” ΡΡ‚Π°Π²ΡŒΡ‚Π΅ Π΅Π³ΠΎ подальшС ΠΎΡ‚ всСго Π³ΠΎΡ€ΡŽΡ‡Π΅Π³ΠΎ.", + "quests.tfg_tips.arborfirmacraft.title": "ArborFirmaCraft", + "quests.tfg_tips.arborfirmacraft.subtitle": "CΠ±ΠΎΡ€ дрСвСсного сока", + "quests.tfg_tips.arborfirmacraft.desc": "&2ArborFirmaCraft&r β€” ΠΌΠΎΠ΄ ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ добавляСт ΠΊΡƒΡ‡Ρƒ Π½ΠΎΠ²Ρ‹Ρ… Π²ΠΈΠ΄ΠΎΠ² Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π² Π² &3TFG&r. НСкоторыС ΠΈΠ· Π½ΠΈΡ… β€” это Π²Π°Ρ€ΠΈΠ°Ρ†ΠΈΠΈ ΡƒΠΆΠ΅ ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‰ΠΈΡ… Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π² ΠΈΠ· TFC, Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ &dΠ‘Π΅ΠΉΠ±Π°&r, Π° Π΄Ρ€ΡƒΠ³ΠΈΠ΅ β€” ΡΠΎΠ²Π΅Ρ€ΡˆΠ΅Π½Π½ΠΎ Π½ΠΎΠ²Ρ‹Π΅, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ &aΠ‘Π°ΠΎΠ±Π°Π±&r ΠΈ &aГСвСя&r. НСкоторыС тСкстуры Π±Ρ€Ρ‘Π²Π΅Π½ ΠΈ досок ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Ρ‚Π΅Π±Π΅ Π·Π½Π°ΠΊΠΎΠΌΡ‹ΠΌΠΈ β€” ΠΎΠ½ΠΈ Π²Π΄ΠΎΡ…Π½ΠΎΠ²Π»Π΅Π½Ρ‹ Π²Π°Π½ΠΈΠ»ΡŒΠ½Ρ‹ΠΌΠΈ Π΄Π΅Ρ€Π΅Π²ΡŒΡΠΌΠΈ!\n\nΠ’ этом Ρ€Π°Π·Π΄Π΅Π»Π΅ рассказываСтся ΠΎ &bсборС дрСвСстного сока&r.\nΠšΡΡ‚Π°Ρ‚ΠΈ, вся дрСвСсина ΠΈΠ· &2ArborFirmaCraft&r ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ совмСстима с &3FirmaLife&r ΠΈ &3Firma:Civ&r β€” ΠΌΡ‹ ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½ΠΎ это прСдусмотрСли!", + "quests.tfg_tips.treetap.title": "ΠšΡ€Π°Π½ΠΈΠΊ для подсочки", + "quests.tfg_tips.treetap.subtitle": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ Π±Π°Π³ΠΎΠ² мСньшС!", + "quests.tfg_tips.treetap.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ &bсбор сока&r с Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π², Ρ‚Π΅Π±Π΅ понадобится Π²Ρ‹ΠΊΠΎΠ²Π°Ρ‚ΡŒ &dΠšΡ€Π°Π½ΠΈΠΊ для подсочки&r («Бокосборник») ΠΈΠ· &aΠΌΠ΅Π΄Π½Ρ‹Ρ… слитков&r Π½Π° &3наковальнС&r. ΠŸΡ€ΠΎΡ†Π΅ΡΡ сбора Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ подходящСго Π΄Π΅Ρ€Π΅Π²Π° β€” ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½Ρ‹ΠΉ &bИндСкс Π΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π²&r Π² Ρ€Π°Π·Π΄Π΅Π»Π΅ &3ArborFirmaCraft&r -> &2ПолСвой справочник&r подскаТСт, ΠΊΠ°ΠΊΠΈΠ΅ Π΄Π΅Ρ€Π΅Π²ΡŒΡ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ. Π’Π°ΠΌ ΠΆΠ΅ Ρ‚Ρ‹ Π½Π°ΠΉΠ΄Ρ‘ΡˆΡŒ запись &bΒ«Π‘Π±ΠΎΡ€ сока»&r, Π³Π΄Π΅ ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎ описано, ΠΊΠ°ΠΊ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎ ΡƒΡΡ‚Π°Π½Π°Π²Π»ΠΈΠ²Π°Ρ‚ΡŒ сокосборник.", + "quests.tfg_tips.find_rosin_tree.title": "БмолистыС Π΄Π΅Ρ€Π΅Π²ΡŒΡ", + "quests.tfg_tips.find_rosin_tree.subtitle": "", + "quests.tfg_tips.find_rosin_tree.desc": "&aБмолистыС Π΄Π΅Ρ€Π΅Π²ΡŒΡ&r растут Π² &9Ρ…ΠΎΠ»ΠΎΠ΄Π½Ρ‹Ρ…&r Ρ€Π°ΠΉΠΎΠ½Π°Ρ… с ΡƒΠΌΠ΅Ρ€Π΅Π½Π½Ρ‹ΠΌΠΈ ΠΈΠ»ΠΈ ΠΎΠ±ΠΈΠ»ΡŒΠ½Ρ‹ΠΌΠΈ осадками. C Π½ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ &bΠ₯Π²ΠΎΠΉΠ½ΡƒΡŽ смолу&r, которая ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для создания &dΠ›ΠΈΠΏΠΊΠΎΠΉ Ρ€Π΅Π·ΠΈΠ½Ρ‹&r ΠΈ &dΠ₯Π²ΠΎΠΉΠ½ΠΎΠΉ ΠΊΠ°Π½ΠΈΡ„ΠΎΠ»ΠΈ&r. Π§Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ это Π·Π°Π΄Π°Π½ΠΈΠ΅, Π½ΡƒΠΆΠ½ΠΎ &cΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ&r Π½Π° Π±Π»ΠΎΠΊ, ΠΈΠΌΠ΅ΡŽΡ‰ΠΈΠΉ Ρ‚Π΅Π³ &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 с высоким ΡƒΡ€ΠΎΠ²Π½Π΅ΠΌ осадков. Π‘ ΠΈΡ… стволов ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ &bлатСкс&r β€” Ρ†Π΅Π½Π½ΠΎΠ΅ ΡΡ‹Ρ€ΡŒΡ‘, примСняСмоС для производства &dΠ›ΠΈΠΏΠΊΠΎΠΉ Ρ€Π΅Π·ΠΈΠ½Ρ‹&r ΠΈ &dΠ’ΡƒΠ»ΠΊΠ°Π½ΠΈΠ·ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠ³ΠΎ латСкса&r. ПослСдний слуТит основным ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠΌ для изготовлСния &3Ρ€Π΅Π·ΠΈΠ½Ρ‹&r ΠΈ &aΡ€Π΅Π·ΠΈΠ½ΠΎΠ²Ρ‹Ρ… ΠΏΠ΅Ρ€Ρ‡Π°Ρ‚ΠΎΠΊ&r, ΠΎΠ±Π΅ΡΠΏΠ΅Ρ‡ΠΈΠ²Π°ΡŽΡ‰ΠΈΡ… Π·Π°Ρ‰ΠΈΡ‚Ρƒ ΠΎΡ‚ &4токсичных вСщСств&r ΠΏΡ€ΠΈ нСпосрСдствСнном ΠΊΠΎΠ½Ρ‚Π°ΠΊΡ‚Π΅. Для Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΈΡ Π΄Π°Π½Π½ΠΎΠ³ΠΎ задания Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ &cΠ²Π·Π³Π»ΡΠ½ΡƒΡ‚ΡŒ&r Π½Π° Π±Π»ΠΎΠΊ, ΠΎΠ±Π»Π°Π΄Π°ΡŽΡ‰ΠΈΠΉ Ρ‚Π΅Π³ΠΎΠΌ &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 климатичСских Π·ΠΎΠ½Π°Ρ… ΠΌΠΈΡ€Π° с ΡƒΠΌΠ΅Ρ€Π΅Π½Π½Ρ‹ΠΌΠΈ осадками. Π’ ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ Π²ΡΠ°Π²ΠΈΡ‚ΡŒ &bΠšΡ€Π°Π½ΠΈΠΊ для подсочки&r для сбора &bΠ‘ΠΈΡ€ΠΎΠΏΠ°&r. Π‘ΠΈΡ€ΠΎΠΏ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для производства &dДСрСстных Π‘Π°Ρ…Π°Ρ€ΠΎΠ²&r β€” Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ Π²ΠΈΠ΄Π° сахара ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ².\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ΠΏΠΎΠ»Π½ΠΈΡ‚ΡŒ этот квСст, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ &cΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ&r Π½Π° Π±Π»ΠΎΠΊ с Ρ‚Π΅Π³ΠΎΠΌ &o#tfg:syrup_logs&r. Для поиска Ρ‚Π°ΠΊΠΈΡ… Π±Π»ΠΎΠΊΠΎΠ² ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ EMI.", + "quests.tfg_tips.create_conifer_rosin.title": "Π₯войная ΠΊΠ°Π½ΠΈΡ„ΠΎΠ»ΡŒ", + "quests.tfg_tips.create_conifer_rosin.subtitle": "ΠΠ΅Ρ‚ΡƒΡˆΠΊΠΈ, Ρ†Π΅ Π½Π΅ Ρ€Π°Π·ΠΈΠΊΠ½Π°", + "quests.tfg_tips.create_conifer_rosin.desc": "&dΠ₯войная ΠΊΠ°Π½ΠΈΡ„ΠΎΠ»ΡŒ&r ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ вмСсто &bвоска&r, позволяя ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ свСчи ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΏΠΎΠ΄ΠΎΠ±Π½Ρ‹Π΅ издСлия. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ Ρ…Π²ΠΎΠΉΠ½ΡƒΡŽ ΠΊΠ°Π½ΠΈΡ„ΠΎΠ»ΡŒ, Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΏΡ€ΠΎΠΊΠΈΠΏΡΡ‚ΠΈΡ‚ΡŒ &aΠ₯Π²ΠΎΠΉΠ½ΡƒΡŽ смолу&r Π² &3Π“ΠΎΡ€ΡˆΠΊΠ΅&r вмСстС с &aΠΏΠΎΡ€ΠΎΡˆΠΊΠΎΠΌ дрСвСсного угля.&r", + "quests.tfg_tips.create_sticky_resin.title": "Липкая Ρ€Π΅Π·ΠΈΠ½Π°", + "quests.tfg_tips.create_sticky_resin.subtitle": "И Ρ‚ΡƒΡ‚ ΠΌΠΈΠΌΠΎ, это Π½Π΅ ΠΊΠ°Π½ΠΈΡ„ΠΎΠ»ΡŒ", + "quests.tfg_tips.create_sticky_resin.desc": "&dЛипкая Ρ€Π΅Π·ΠΈΠ½Π°&r ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒΡΡ ΠΊΠ°ΠΊ сгустки слизи Π² Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ…. Она Ρ‚Π°ΠΊΠΆΠ΅ являСтся ΠΊΠ»ΡŽΡ‡Π΅Π²Ρ‹ΠΌ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠΌ для производства &aΠŸΡ€ΠΎΡ€Π΅Π·ΠΈΠ½Π΅Π½Π½Ρ‹Ρ… ΠΏΠΎΠ΄Π»ΠΎΠΆΠ΅ΠΊ&r ΠΈ &aрСзисторов&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ понадобятся Π²Π°ΠΌ Π² Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΌ количСствС для ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄Π° Π² эпоху &7Π½ΠΈΠ·ΠΊΠΎΠ³ΠΎ напряТСния&r. Для получСния Π»ΠΈΠΏΠΊΠΎΠΉ смолы Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΊΠΈΠΏΡΡ‚ΠΈΡ‚ΡŒ: Π»ΠΈΠ±ΠΎ &aлатСкс&r, Π»ΠΈΠ±ΠΎ &aΡ…Π²ΠΎΠΉΠ½ΡƒΡŽ смолу&r Π² &3Π“ΠΎΡ€ΡˆΠΊΠ΅&r с Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ΠΌ &aдрСвСсной Π·ΠΎΠ»Ρ‹.&r", + "quests.tfg_tips.create_tree_sugar.title": "ДрСвСсный сахар", + "quests.tfg_tips.create_tree_sugar.subtitle": "ΠšΠΎΠ½Ρ„Π΅Ρ‚ΠΊΠΈΠΈΠΈ!", + "quests.tfg_tips.create_tree_sugar.desc": "&dДСрСсный сахар&r β€” это Π·Π°ΠΌΠ΅Π½ΠΈΡ‚Π΅Π»ΡŒ сахара, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π² основном ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ ΠΊΠ°ΠΊ ΠΏΠΈΡ‰Π΅Π²ΠΎΠΉ ΠΈΠ½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚. Для Π΅Π³ΠΎ приготовлСния Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΏΡ€ΠΎΠΊΠΈΠΏΡΡ‚ΠΈΡ‚ΡŒ &aдрСвСсный сок&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &bΠΊΠΎΠ½Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ€ΠΎΠ²Π°Π½Π½Ρ‹ΠΉ сок&r, Π·Π°Ρ‚Π΅ΠΌ ΠΏΡ€ΠΎΠΊΠΈΠΏΡΡ‚ΠΈΡ‚ΡŒ Π΅Π³ΠΎ снова, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &dсироп.&r НаконСц, Π½Π° вСрстакС ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚Π΅ &bΠ²Π΅Π΄Ρ€ΠΎ сиропа&r Π² &dдСрСсный сахар.&r Π˜ΠΌΠ΅ΠΉΡ‚Π΅ Π² Π²ΠΈΠ΄Ρƒ, Ρ‡Ρ‚ΠΎ всС эти &cпроцСссы кипячСния Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ использования ΠΏΠ°Π»ΠΎΡ‡ΠΊΠΈ&r Π² &3Π“ΠΎΡ€ΡˆΠΊΠ΅&r ΠΈΠ»ΠΈ &3Π§Π°Π½Π΅.&r", + "quests.tfg_tips.create_tree_sugar.task": "Maple or Birch Sugar", + "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 ΠΌΠΎΠΆΠ½ΠΎ Π²Ρ‹ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ Π² &bΠŸΠ΅Ρ‡ΠΈ для сплавов&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &dΡ€Π΅Π·ΠΈΠ½ΠΎΠ²Ρ‹Π΅ слитки&r β€” ΠΈΠ΄Π΅Π°Π»ΡŒΠ½Ρ‹Π΅ для изоляции ΠΊΠ°Π±Π΅Π»Π΅ΠΉ ΠΈ ΠΊΡ€Π°ΠΉΠ½Π΅ Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΡ‹Π΅ для продвиТСния Π² &2Π’ΠΎΠ»ΡŒΡ‚ΠΎΠ²ΡƒΡŽ эру&r ΠΈ Π΄Π°Π»Π΅Π΅...", + "quests.tfg_tips.transportation.title": "Вранспорт", + "quests.tfg_tips.transportation.subtitle": "Для ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠΉ ΠΏΠΎ ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠΌΡƒ ΠΌΠΈΡ€Ρƒ", + "quests.tfg_tips.transportation.desc": "ΠœΠΈΡ€ ΠΎΡ‡Π΅Π½ΡŒ Π²Π΅Π»ΠΈΠΊ, ΠΈ Π²Π°ΠΌ, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, придСтся ΠΏΡ€Π΅ΠΎΠ΄ΠΎΠ»Π΅Π²Π°Ρ‚ΡŒ ΠΎΠ³Ρ€ΠΎΠΌΠ½Ρ‹Π΅ расстояния Π² поисках рСсурсов для выТивания ΠΈ прогрСсса. ΠœΠΎΠ΄Ρ‹ Π² этом Ρ€Π°Π·Π΄Π΅Π»Π΅ ΠΏΡ€Π΅Π΄Π»Π°Π³Π°ΡŽΡ‚ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Ρ‹ транспорта.", + "quests.tfg_tips.glider.title": "Π”Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½", + "quests.tfg_tips.glider.subtitle": "Π­Ρ‚ΠΎ Π½Π΅ Breath of the Wild", + "quests.tfg_tips.glider.desc": "&dΠ”Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½&r позволяСт ΠΏΠ»Π°Π½ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π² Π²ΠΎΠ·Π΄ΡƒΡ…Π΅. Π‘ Π½ΠΈΠΌ &cнСльзя Π½Π°Π±Ρ€Π°Ρ‚ΡŒ высоту&r, Π½ΠΎ ΠΎΠ½ ΠΏΠΎΠ»Π΅Π·Π΅Π½ для прСодолСния Π±ΠΎΠ»ΡŒΡˆΠΈΡ… расстояний, Ссли ΠΏΡ€Ρ‹Π³Π½ΡƒΡ‚ΡŒ с Π²ΠΎΠ·Π²Ρ‹ΡˆΠ΅Π½Π½ΠΎΡΡ‚ΠΈ.\nΠžΡ‚Π»ΠΈΡ‡Π½ΠΎ сочСтаСтся с &bΡ€Π΅Π°ΠΊΡ‚ΠΈΠ²Π½Ρ‹ΠΌΠΈ Ρ€Π°Π½Ρ†Π°ΠΌΠΈ&r!", + "quests.tfg_tips.reinforced_glider.title": "УсилСнный Π΄Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½", + "quests.tfg_tips.reinforced_glider.subtitle": "Разумная Ρ‚Ρ€Π°Ρ‚Π° элитр...?", + "quests.tfg_tips.reinforced_glider.desc": "Если ΠΎΠ±ΡŠΠ΅Π΄ΠΈΠ½ΠΈΡ‚ΡŒ &aΠ­Π»ΠΈΡ‚Ρ€Ρ‹&r (ΡΠΎΠ·Π΄Π°Π½Π½ΡƒΡŽ Π² &5EV&r) с &aΠ”Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½ΠΎΠΌ&r, Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &dУсилСнный Π΄Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½.&r Он ΠΎΠ±Π»Π°Π΄Π°Π΅Ρ‚ ΠΏΠΎΠ²Ρ‹ΡˆΠ΅Π½Π½ΠΎΠΉ ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒΡŽ ΠΈ ΡƒΠ²Π΅Π»ΠΈΡ‡Π΅Π½Π½ΠΎΠΉ максимальной ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒΡŽ.", + "quests.tfg_tips.immersive_aircraft.title": "Immersive Aircraft", + "quests.tfg_tips.immersive_aircraft.subtitle": "ΠŸΠ°Ρ€ΠΈΡ‚Π΅ Π² Π²ΠΎΠ·Π΄ΡƒΡ…Π΅ со стилСм", + "quests.tfg_tips.immersive_aircraft.desc": "&2Immersive Aircraft&r β€” это ΠΌΠΎΠ΄, посвящСнный Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ позволяСт ΠΏΡ€Π΅ΠΎΠ΄ΠΎΠ»Π΅Π²Π°Ρ‚ΡŒ большиС расстояния ΠΏΠΎ Π²ΠΎΠ·Π΄ΡƒΡ…Ρƒ.", + "quests.tfg_tips.aircraft_upgrades.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ", + "quests.tfg_tips.aircraft_upgrades.subtitle": "Вюнинг ΠΌΠΎΠ΅ΠΉ ласточки", + "quests.tfg_tips.aircraft_upgrades.desc": "&2Immersive Aircraft&r Π²ΠΊΠ»ΡŽΡ‡Π°Π΅Ρ‚ систСму &aΠ£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΡƒΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ для ΠΏΠΎΠ²Ρ‹ΡˆΠ΅Π½ΠΈΡ характСристик: скорости, Π²Π·Π»Π΅Ρ‚Π½ΠΎΠΉ тяги, расхода Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π° ΠΈ Ρ‚.Π΄. БущСствуСт Π΄Π²Π° Ρ‚ΠΈΠΏΠ° ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ: &bΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Π΅&r ΠΈ &dΡƒΡ€ΠΎΠ²Π½Π΅Π²Ρ‹Π΅.&r\n\nΠ’ этом квСстС β€” &bΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Π΅&r ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ. Π”ΡƒΠΌΠ°Π΅Ρ‚Π΅, собСрСтС ΠΈΡ… всС?", + "quests.tfg_tips.steam_upgrades.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ: ΠŸΠ°Ρ€ΠΎΠ²Ρ‹Π΅", + "quests.tfg_tips.steam_upgrades.subtitle": "Immersive Aircraft встрСчаСт систСму ΡƒΡ€ΠΎΠ²Π½Π΅ΠΉ GregTech!", + "quests.tfg_tips.steam_upgrades.desc": "Π’Ρ‚ΠΎΡ€ΠΎΠΉ Ρ‚ΠΈΠΏ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ β€” &dΡƒΡ€ΠΎΠ²Π½Π΅Π²Ρ‹Π΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ.&r Они ΡΠΎΠΎΡ‚Π²Π΅Ρ‚ΡΡ‚Π²ΡƒΡŽΡ‚ систСмС ΡƒΡ€ΠΎΠ²Π½Π΅ΠΉ &3GregTech,&r начиная с &7ΠŸΠ°Ρ€ΠΎΠ²Ρ‹Ρ…&r ΠΈ заканчивая &5EV.&r\n\nΠŸΠ°Ρ€ΠΎΠ²Ρ‹Π΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ β€” самыС простыС ΠΈ доступныС Π² ΠΊΡ€Π°Ρ‚Ρ‡Π°ΠΉΡˆΠΈΠΉ срок. Для ΠΈΡ… создания ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ ΠΌΠΈΠ½ΠΈΠΌΡƒΠΌ Π·Π½Π°Π½ΠΈΠΉ ΠΎ &bΠ§Π΅Ρ€Π½ΠΎΠΉ стали.&r\n\n&dΠ‘Ρ‚Π°Π»ΡŒΠ½Ρ‹Π΅ Π±ΠΎΠΉΠ»Π΅Ρ€Ρ‹&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ ΠΏΡ€ΠΈ постройкС Π±ΠΎΠ»Π΅Π΅ слоТных Π»Π΅Ρ‚Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… Π°ΠΏΠΏΠ°Ρ€Π°Ρ‚ΠΎΠ², Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ &eΠ‘ΠΈΠΏΠ»Π°Π½&r ΠΈ &cΠ’ΠΎΠ΅Π½Π½Ρ‹ΠΉ Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ.&r", + "quests.tfg_tips.steam_upgrades.task": "Π›ΡŽΠ±ΠΎΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠ³ΠΎ уровня для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ", + "quests.tfg_tips.lv_upgrades.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ: LV", + "quests.tfg_tips.lv_upgrades.subtitle": "ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ ΠΈ синий, бСзусловно Π½Π΅ ΠΊΠΎΠ½Ρ„Π»ΠΈΠΊΡ‚ΡƒΡŽΡ‰ΠΈΠ΅.", + "quests.tfg_tips.lv_upgrades.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ уровня &7LV&r Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΡΠΎΠ²Π΅Ρ€ΡˆΠ΅Π½Π½Π΅Π΅ своих ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Ρ… Π°Π½Π°Π»ΠΎΠ³ΠΎΠ². Для ΠΈΡ… создания ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ &4ΠšΡ€Π°ΡΠ½Π°Ρ&r ΠΈ &9Биняя ΡΡ‚Π°Π»ΡŒ&r, Π° Ρ‚Π°ΠΊΠΆΠ΅ понадобятся ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ &7LV&r для изготовлСния самого &dдвигатСля LV&r.\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o Π‘Ρ‚Π°Ρ€Ρ‹Π΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &bΠ”Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½Ρ‹Ρ… колСс&f, Π²Π΅Ρ€Π½ΡƒΠ² Ρ‡Π°ΡΡ‚ΡŒ ΠΏΠΎΡ‚Ρ€Π°Ρ‡Π΅Π½Π½Ρ‹Ρ… ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ².", + "quests.tfg_tips.lv_upgrades.task": "Π›ΡŽΠ±ΠΎΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ уровня LV для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ", + "quests.tfg_tips.mv_upgrades.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ: MV", + "quests.tfg_tips.mv_upgrades.subtitle": "На ΠΏΠΎΠ»ΠΏΡƒΡ‚ΠΈ", + "quests.tfg_tips.mv_upgrades.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ &bMV&r ΠΏΡ€Π΅Π΄ΡΡ‚Π°Π²Π»ΡΡŽΡ‚ собой ΡΡ€Π΅Π΄Π½ΡŽΡŽ ΡΡ‚ΡƒΠΏΠ΅Π½ΡŒ Π² этой Π»ΠΈΠ½Π΅ΠΉΠΊΠ΅, Π³Π΄Π΅ основным ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠΌ выступаСт &aАлюминий&r.\n\n&aΠΠ»ΡŽΠΌΠΈΠ½ΠΈΠ΅Π²Ρ‹Π΅ Ρ€ΠΎΡ‚ΠΎΡ€Ρ‹&r ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ΡΡ Π² Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π΅ Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ Π²Ρ‚ΠΎΡ€ΠΎΠ³ΠΎ уровня, Ρ‚Π°ΠΊΠΈΡ… ΠΊΠ°ΠΊ &dΠ’ΠΈΠ½Ρ‚ΠΎΠΊΡ€Ρ‹Π», Π’ΠΎΠ΅Π½Π½Ρ‹ΠΉ Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ&r ΠΈ &dАлый Π±ΠΈΠΏΠ»Π°Π½&r. ΠŸΡ€ΠΈ этом &aΠ”Π²ΠΈΠ³Π°Ρ‚Π΅Π»ΡŒ MV&r примСняСтся ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π² &dАлом Π±ΠΈΠΏΠ»Π°Π½Π΅.&r", + "quests.tfg_tips.mv_upgrades.task": "Π›ΡŽΠ±ΠΎΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ уровня MV для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ", + "quests.tfg_tips.hv_upgrades.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ: HV", + "quests.tfg_tips.hv_upgrades.subtitle": "ΠŸΠΎΡ‡Ρ‚ΠΈ Ρƒ Ρ†Π΅Π»ΠΈ", + "quests.tfg_tips.hv_upgrades.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ &6HV&r β€” прСдпослСдний ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ, Π³Π΄Π΅ основным ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠΌ выступаСт &aΠΠ΅Ρ€ΠΆΠ°Π²Π΅ΡŽΡ‰Π°Ρ ΡΡ‚Π°Π»ΡŒ&r.", + "quests.tfg_tips.hv_upgrades.task": "Π›ΡŽΠ±ΠΎΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ уровня HV для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ", + "quests.tfg_tips.ev_upgrades.title": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ: EV", + "quests.tfg_tips.ev_upgrades.subtitle": "Π Π°Π·Π²Π΅ эти ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ Π²ΠΎΠΎΠ±Ρ‰Π΅ Π·Π°ΠΊΠΎΠ½Π½Ρ‹?", + "quests.tfg_tips.ev_upgrades.desc": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΡ &5EV&r β€” Π²Ρ‹ΡΡˆΠΈΠΉ ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ Π°Π²ΠΈΠ°Ρ†ΠΈΠΎΠ½Π½Ρ‹Ρ… ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ, для ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… трСбуСтся &aΠ’ΠΈΡ‚Π°Π½&r Π² качСствС основного ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Π°.", + "quests.tfg_tips.ev_upgrades.task": "Π›ΡŽΠ±ΠΎΠ΅ ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠ΅ уровня EV для Π°Π²ΠΈΠ°Ρ†ΠΈΠΈ", + "quests.tfg_tips.aircraft_weapons.title": "АвиационноС Π²ΠΎΠΎΡ€ΡƒΠΆΠ΅Π½ΠΈΠ΅", + "quests.tfg_tips.aircraft_weapons.subtitle": "Π—Π° Π²Π΅Π»ΠΈΠΊΠΈΠΉ ВАААГΠ₯! ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΎ ΠΆΠ΅", + "quests.tfg_tips.aircraft_weapons.desc": "Если Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ ΡƒΠ½ΠΈΡ‡Ρ‚ΠΎΠΆΠΈΡ‚ΡŒ Ρ‡Ρ‚ΠΎ-Ρ‚ΠΎ ΠΎΡ‡Π΅Π½ΡŒ ΡƒΠ³Ρ€ΠΎΠΆΠ°ΡŽΡ‰Π΅Π΅ ΠΈΠ»ΠΈ просто ΠΏΠΎΠΊΠΎΡ€ΠΈΡ‚ΡŒ Π²Ρ€Π°Π³ΠΎΠ², Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &dΠΎΡ€ΡƒΠΆΠΈΠ΅&r для уничтоТСния ΠΈΠ»ΠΈ ΡƒΠ²Π΅Ρ‡ΡŒΡ ΠΌΠΎΠ±ΠΎΠ².\n\nКаТдоС ΠΎΡ€ΡƒΠΆΠΈΠ΅ ΠΌΠΎΠΆΠ½ΠΎ Π°ΠΊΡ‚ΠΈΠ²ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ &cВзаимодСйствия&r Π²ΠΎ врСмя управлСния &bΠ°Π²ΠΈΠ°Ρ†Π΅ΠΉ.&r Π‘ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²ΠΎ ΠΈΠ· Π½ΠΈΡ… (ΠΊΡ€ΠΎΠΌΠ΅ &aВСлСскопа&r) Ρ€Π°ΡΡ…ΠΎΠ΄ΡƒΡŽΡ‚ &aбоСприпасы.&r", + "quests.tfg_tips.airship.title": "Π”ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ", + "quests.tfg_tips.airship.subtitle": "ΠŸΠ΅Ρ€Π²Ρ‹ΠΉ Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ для ΠΌΠ°Π»Ρ‹ΡˆΠ΅ΠΉ", + "quests.tfg_tips.airship.desc": "&3Π”ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ&r β€” достаточно ΡƒΠ΄ΠΎΠ±Π½ΠΎΠ΅ Π²ΠΎΠ·Π΄ΡƒΡˆΠ½ΠΎΠ΅ судно для ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠΉ. Однако Π΅Π³ΠΎ основноС Π½Π°Π·Π½Π°Ρ‡Π΅Π½ΠΈΠ΅ β€” транспортировка Π³Ρ€ΡƒΠ·ΠΎΠ².\nΠ”ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ ΠΈΠΌΠ΅Π΅Ρ‚ &b16 слотов инвСнтаря&r, &a3 слота для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ&r ΠΈ &c1 слот для оруТия.&r", + "quests.tfg_tips.cargo_airship.title": "Π“Ρ€ΡƒΠ·ΠΎΠ²ΠΎΠΉ Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ", + "quests.tfg_tips.cargo_airship.subtitle": "Когда Π½ΡƒΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Π²Π΅Π·Ρ‚ΠΈ всю Π±Π°Π·Ρƒ Π·Π° Ρ‚Ρ€ΠΈΠ΄Π΅Π²ΡΡ‚ΡŒ зСмСль", + "quests.tfg_tips.cargo_airship.desc": "Π”ΠΎΠ±Π°Π²ΡŒΡ‚Π΅ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Π΅ &dΠ”Π²ΠΈΠ³Π°Ρ‚Π΅Π»ΠΈ, Π ΠΎΡ‚ΠΎΡ€Ρ‹&r ΠΈ &d2 ДСрСвянных ящика&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ваш &aΠ”ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ&r Π² &3Π“Ρ€ΡƒΠ·ΠΎΠ²ΠΎΠΉ Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ.&r\n\nОн &4потрСбляСт большС Ρ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r, Ρ‡Π΅ΠΌ обычная модСль.\nΠ“Ρ€ΡƒΠ·ΠΎΠ²ΠΎΠΉ Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ ΠΈΠΌΠ΅Π΅Ρ‚ &b80 слотов инвСнтаря&r ΠΈ &a4 слота для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ.&r", + "quests.tfg_tips.waghship.title": "Π’ΠΎΠ΅Π½Π½Ρ‹ΠΉ Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ", + "quests.tfg_tips.waghship.subtitle": "Π’Π°ΠΊΠΆΠ΅ извСстСн ΠΊΠ°ΠΊ ВААААГΠ₯-Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ", + "quests.tfg_tips.waghship.desc": "&3Π’ΠΎΠ΅Π½Π½Ρ‹ΠΉ Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ&r β€” это послСдняя модСрнизация &aДириТабля&r, ΠΈΠΌΠ΅ΡŽΡ‰Π°Ρ &b66 слотов инвСнтаря&r, &a6 слотов для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ&r ΠΈ &c2 слота для оруТия.&r", + "quests.tfg_tips.quadrocopter.title": "ΠšΠ²Π°Π΄Ρ€ΠΎΠΊΠΎΠΏΡ‚Π΅Ρ€", + "quests.tfg_tips.quadrocopter.subtitle": "НС ΠΊΡ€ΠΎΠΏΡ‚Π΅Π»ΡŒ", + "quests.tfg_tips.quadrocopter.desc": "&3ΠšΠ²Π°Π΄Ρ€ΠΎΠΊΠΎΠΏΡ‚Π΅Ρ€&r β€” это ΠΏΡ€ΠΎΡΡ‚Π΅ΠΉΡˆΠΈΠΉ &aтранспорт Π½Π° Π²ΠΎΠ·Π΄ΡƒΡˆΠ½ΠΎΠΉ ΠΏΠΎΠ΄ΡƒΡˆΠΊΠ΅&r с &b6 слотами инвСнтаря&r, &aΠΎΠ΄Π½ΠΈΠΌ слотом для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ&r ΠΈ &cΠΎΠ΄Π½ΠΈΠΌ слотом для оруТия.&r\n\nБлагодаря простому ΡƒΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΡŽ идСально ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для &eΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… Ρ€Π°Π±ΠΎΡ‚.&r", + "quests.tfg_tips.gyrodyne.title": "Π’ΠΈΠ½Ρ‚ΠΎΠΊΡ€Ρ‹Π»", + "quests.tfg_tips.gyrodyne.subtitle": "ΠœΡƒΡΠΊΡƒΠ»ΠΈΡΡ‚Ρ‹ΠΉ ΠΊΠΎΠΏΡ‚Π΅Ρ€", + "quests.tfg_tips.gyrodyne.desc": "&3Π’Π΅Π½Ρ‚ΠΎΠΊΡ€Ρ‹Π»&r β€” ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹ΠΉ Π»Π΅Ρ‚Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ Π°ΠΏΠΏΠ°Ρ€Π°Ρ‚, Π½Π΅ Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‰ΠΈΠΉ &dΡ‚ΠΎΠΏΠ»ΠΈΠ²Π°&r ΠΈ Ρ€Π°Π±ΠΎΡ‚Π°ΡŽΡ‰ΠΈΠΉ ΠΈΡΠΊΠ»ΡŽΡ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ Π½Π° ΠΌΡƒΡΠΊΡƒΠ»ΡŒΠ½ΠΎΠΉ силС, Ρ‡Ρ‚ΠΎ истощаСт Π²Π°ΡˆΡƒ &4Π‘Ρ‹Ρ‚ΠΎΡΡ‚ΡŒ&r.\n\nОн ΠΈΠΌΠ΅Π΅Ρ‚ &b18 слотов инвСнтаря&r, &a3 слота для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ&r ΠΈ &c1 слот для оруТия&r.", + "quests.tfg_tips.economy_plane.title": "Π­ΠΊΠΎΠ½ΠΎΠΌΠΈΡ‡Π½Ρ‹ΠΉ самолСт", + "quests.tfg_tips.economy_plane.subtitle": "Π’Π²ΠΎΠΉ ΠΏΠ΅Ρ€Π²Ρ‹ΠΉ самолСт... Π₯отя Π½Π΅ Ρ‚Π°ΠΊ ΡƒΠΆ Ρ…ΠΎΡ€ΠΎΡˆ.", + "quests.tfg_tips.economy_plane.desc": "&3Π­ΠΊΠΎΠ½ΠΎΠΌΠΈΡ‡Π½Ρ‹ΠΉ самолСт&r β€” это самый Π±Π°Π·ΠΎΠ²Ρ‹ΠΉ &bсамолСт.&r Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»Π΅ΠΉ, судна Π½Π° Π²ΠΎΠ·Π΄ΡƒΡˆΠ½ΠΎΠΉ ΠΏΠΎΠ΄ΡƒΡˆΠΊΠ΅ ΠΈ ΠΊΠΎΠΏΡ‚Π΅Ρ€ΠΎΠ², ΠΎΠ½ управляСтся с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &oΡ‚Π°Π½Π³Π°ΠΆΠ°&r ΠΈ &oрыскания.&r\n\nΠ£ Π½Π΅Π³ΠΎ Π΅ΡΡ‚ΡŒ &b4 слота инвСнтаря&r ΠΈ &a4 слота для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ.&r\nΠ₯отя &dэкономичный самолСт&r ΠΌΠ΅Π΄Π»Π΅Π½Π½Ρ‹ΠΉ, Π΅Π³ΠΎ, ΠΊΠ°ΠΊ ΠΈ Π΄ΠΈΡ€ΠΈΠΆΠ°Π±Π»ΡŒ, ΠΌΠΎΠΆΠ½ΠΎ &2ΡƒΠ»ΡƒΡ‡ΡˆΠΈΡ‚ΡŒ Π² Π±ΠΎΠ»Π΅Π΅ ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚Ρ‹Π΅ ΠΌΠΎΠ΄Π΅Π»ΠΈ.&r", + "quests.tfg_tips.biplane.title": "Π‘ΠΈΠΏΠ»Π°Π½", + "quests.tfg_tips.biplane.subtitle": "Как ΠΎΠ½ стал мСньшС Π­ΠΊΠΎΠ½ΠΎΠΌΠΈΡ‡Π½ΠΎΠ³ΠΎ самолСта?", + "quests.tfg_tips.biplane.desc": "&3Π‘ΠΈΠΏΠ»Π°Π½&r β€” это прямая ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½Π½Π°Ρ вСрсия &bΠ­ΠΊΠΎΠ½ΠΎΠΌΠΈΡ‡Π½ΠΎΠ³ΠΎ самолСта&r, создаваСмая с использованиСм &aΠšΠΎΡ€ΠΏΡƒΡΠΎΠ², ΠΏΠ°Ρ€ΠΎΠ²Ρ‹Ρ… Π±ΠΎΠΉΠ»Π΅Ρ€ΠΎΠ²&r ΠΈ &aΡƒΡΠΎΠ²Π΅Ρ€ΡˆΠ΅Π½ΡΡ‚Π²Π΅Π½ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΠΏΠ΅Π»Π»Π΅Ρ€Π°.&r\n\nОн содСрТит &b16 слотов инвСнтаря&r, &a4 слота для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ&r ΠΈ &c1 слот для оруТия.&r Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ &dΠ­ΠΊΠΎΠ½ΠΎΠΌΠΈΡ‡Π½ΠΎΠ³ самолёта&r, &3Π‘ΠΈΠΏΠ»Π°Π½&r ΠΌΠΎΠΆΠ½ΠΎ &4ΡƒΡΠΊΠΎΡ€ΠΈΡ‚ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Ρ€Π°ΠΊΠ΅Ρ‚ Ρ‡Π΅Ρ€Π΅Π· ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½Ρ‹ΠΉ слот.&r", + "quests.tfg_tips.scarlet_biplane.title": "Алый Π±ΠΈΠΏΠ»Π°Π½", + "quests.tfg_tips.scarlet_biplane.subtitle": "Π’Π΅Π»ΠΈΠΊΠΎΠ»Π΅ΠΏΠ½ΠΎΠ΅ Π·Ρ€Π΅Π»ΠΈΡ‰Π΅", + "quests.tfg_tips.scarlet_biplane.desc": "&3Алый Π±ΠΈΠΏΠ»Π°Π½&r β€” это ΠΎΠ΄ΠΈΠ½ ΠΈΠ· Π΄Π²ΡƒΡ… Ρ„ΠΈΠ½Π°Π»ΡŒΠ½Ρ‹Ρ… ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ для &bсамолСтов&r, Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‰ΠΈΠΉ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ &6HV&r уровня.\n\nОн оснащСн: &b27 слотами инвСнтаря,&r &a4 слотами для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ,&r &c2 слотами для оруТия,&r &4слотом для ускоритСлСй&r (ΠΊΠ°ΠΊ Ρƒ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠ³ΠΎ Π±ΠΈΠΏΠ»Π°Π½Π°).\n\nНСсмотря Π½Π° Π²Ρ‹ΡΠΎΠΊΡƒΡŽ ΡΡ‚ΠΎΠΈΠΌΠΎΡΡ‚ΡŒ, &3Алый Π±ΠΈΠΏΠ»Π°Π½&r компСнсируСт это: ΠΏΠΎΠ²Ρ‹ΡˆΠ΅Π½Π½ΠΎΠΉ ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒΡŽ, ΡƒΠ²Π΅Π»ΠΈΡ‡Π΅Π½Π½ΠΎΠΉ максимальной ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒΡŽ, Π½Π΅ΠΏΡ€Π΅Π²Π·ΠΎΠΉΠ΄Ρ‘Π½Π½Ρ‹ΠΌ стилСм.", + "quests.tfg_tips.aluminium_hopper.title": "АлюминиСвая Π²ΠΎΡ€ΠΎΠ½ΠΊΠ°", + "quests.tfg_tips.aluminium_hopper.subtitle": "ΠΠ°ΡΡ‚ΠΎΠ»ΡŒΠΊΠΎ лСгкая, Ρ‡Ρ‚ΠΎ Π½Π΅ Ρ‚ΠΎΠ½Π΅Ρ‚!", + "quests.tfg_tips.aluminium_hopper.desc": "&3АлюминиСвая Π²ΠΎΡ€ΠΎΠ½ΠΊΠ°&r β€” ΠΎΠ΄Π½Π° ΠΈΠ· Π΄Π²ΡƒΡ… Ρ„ΠΈΠ½Π°Π»ΡŒΠ½Ρ‹Ρ… ΠΌΠΎΠ΄Π΅Ρ€Π½ΠΈΠ·Π°Ρ†ΠΈΠΉ для &bΠ‘Π°ΠΌΠΎΠ»Ρ‘Ρ‚ΠΎΠ²&r, Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‰Π°Ρ &6HV&r ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ². Π’ΠΌΠ΅Ρ‰Π°Π΅Ρ‚ &b16 слотов для инвСнтаря&r, &a4 слота для ΡƒΠ»ΡƒΡ‡ΡˆΠ΅Π½ΠΈΠΉ&r, &c2 слота для оруТия&r, 3 посадочных мСста ΠΈ &4 слот для ускоритСля&r, ΠΊΠ°ΠΊ ΠΈ ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ Π±ΠΈΠΏΠ»Π°Π½. НСсмотря Π½Π° Π²Ρ‹ΡΠΎΠΊΡƒΡŽ Ρ†Π΅Π½Ρƒ, &3АлюминиСвая Π²ΠΎΡ€ΠΎΠ½ΠΊΠ°&r компСнсируСт это трСмя посадочными мСстами ΠΈ Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎΡΡ‚ΡŒΡŽ ΠΏΡ€ΠΈΠ·Π΅ΠΌΠ»ΡΡ‚ΡŒΡΡ Π½Π° Π²ΠΎΠ΄Ρƒ.", + "quests.tfg_tips.firmaciv.title": "Firma: Civilization", + "quests.tfg_tips.firmaciv.subtitle": "РассСкай моря со стилСм.", + "quests.tfg_tips.firmaciv.desc": "Мод &2Firma: Civilization&r посвящСн Π»ΠΎΠ΄ΠΊΠ°ΠΌ ΠΈ ΠΏΡ€Π΅ΠΎΠ΄ΠΎΠ»Π΅Π½ΠΈΡŽ Π±ΠΎΠ»ΡŒΡˆΠΈΡ… Π²ΠΎΠ΄Π½Ρ‹Ρ… пространств. Он Ρ‚Π°ΠΊΠΆΠ΅ позволяСт ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ инструмСнты для ΠΎΡ€ΠΈΠ΅Π½Ρ‚Π°Ρ†ΠΈΠΈ Π² ΠΌΠΈΡ€Π΅.\nКак всСгда, &2ПолСвоС руководство&r содСрТит Π±ΠΎΠ»Π΅Π΅ ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½ΡƒΡŽ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΡŽ, Ρ‡Π΅ΠΌ эти квСсты.\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o ГрСбля Π²Π½ΠΈΠ· ΠΏΠΎ Ρ‚Π΅Ρ‡Π΅Π½ΠΈΡŽ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ быстрСС... ΠŸΠΎΠ΄ΡƒΠΌΠ°ΠΉΡ‚Π΅ ΠΎ посСлСнии Ρƒ Ρ€Π΅ΠΊΠΈ, Ссли Π΅Ρ‰Π΅ этого Π½Π΅ сдСлали.", + "quests.tfg_tips.firmaciv_info.title": "Voyage Gadgets", + "quests.tfg_tips.firmaciv_info.subtitle": "Для Ρ†Π΅Π½ΠΈΡ‚Π΅Π»Π΅ΠΉ Ρ€Π΅Π°Π»ΠΈΠ·ΠΌΠ°", + "quests.tfg_tips.firmaciv_info.desc": "Мод &3Firma:Civ&r Π²ΠΊΠ»ΡŽΡ‡Π°Π΅Ρ‚ 4 Π½Π°Π²ΠΈΠ³Π°Ρ†ΠΈΠΎΠ½Π½Ρ‹Ρ… инструмСнта, ΠΊΠ°ΠΆΠ΄Ρ‹ΠΉ ΠΈΠ· ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Ρ… прСдоставляСт Π²Π°ΠΆΠ½ΡƒΡŽ ΠΈΠ½Ρ„ΠΎΡ€ΠΌΠ°Ρ†ΠΈΡŽ ΠΎ вашСм мСстополоТСнии Π² ΠΌΠΈΡ€Π΅.\nΠ’ΠΊΠ»ΡŽΡ‡Π°Ρ: &dБСкстант&r, &dΠœΠΎΡ€ΡΠΊΠΎΠΉ Ρ…Ρ€ΠΎΠ½ΠΎΠΌΠ΅Ρ‚Ρ€&r, &dΠ‘Π°Ρ€ΠΎΠΌΠ΅Ρ‚Ρ€&r ΠΈ &dКомпас&r; ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½Π΅Π΅ ΠΎΠ± инструмСнтах описано Π² &2ПолСвом руководствС.&r\n\n&3&lΠ—Π°ΠΌΠ΅Ρ‚ΠΊΠ°:&r&o: Firma:Civ ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ ΡƒΠ±ΠΈΡ€Π°Π΅Ρ‚ ΠΊΠΎΠΎΡ€Π΄ΠΈΠ½Π°Ρ‚Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹ использовали Π΅Π΅ Π½Π°Π²ΠΈΠ³Π°Ρ†ΠΈΠΎΠ½Π½Ρ‹Π΅ инструмСнты. Π—Π΄Π΅ΡΡŒ ΠΌΡ‹ Ρ‚Π°ΠΊ Π½Π΅ Π΄Π΅Π»Π°Π΅ΠΌ, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ... ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉΡ‚Π΅ ΠΈΡ…, Ссли Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎ-настоящСму ΠΏΠΎΠ³Ρ€ΡƒΠ·ΠΈΡ‚ΡŒΡΡ Π² Ρ€ΠΎΠ»Π΅Π²Ρ‹Π΅ ΠΈΠ³Ρ€Ρ‹.", + "quests.tfg_tips.warfare.title": "ΠœΠΎΡ€ΡΠΊΠΈΠ΅ Π±Π°Ρ‚Π°Π»ΠΈΠΈ", + "quests.tfg_tips.warfare.subtitle": "ΠžΠ“ΠžΠΠ¬ Π˜Π— Π’Π‘Π•Π₯ ΠžΠ Π£Π”Π˜Π™!", + "quests.tfg_tips.warfare.desc": "Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΡΠ½Π°ΡΡ‚ΠΈΡ‚ΡŒ свой &bШлюп&r ΠΎΠ³Π½Π΅Π²ΠΎΠΉ ΠΌΠΎΡ‰ΡŒΡŽ, установив &dΠŸΡƒΡˆΠΊΡƒ&r ΠΈ запас ядСр β€” Ссли Ρ…ΠΎΡ‚ΠΈΡ‚Π΅ разнСсти Ρ‡Ρ‚ΠΎ-Π½ΠΈΠ±ΡƒΠ΄ΡŒ Π² Ρ‰Π΅ΠΏΠΊΠΈ.\nДля выстрСла потрСбуСтся: &aΠŸΠΎΡ€ΠΎΡ…, Грубая Π±ΡƒΠΌΠ°Π³Π°&r, &aΠŸΡƒΡˆΠ΅Ρ‡Π½ΠΎΠ΅ ядро&r. ПослС зарядки ΠΏΠΎΠ΄ΠΎΠΆΠ³ΠΈΡ‚Π΅ Ρ„ΠΈΡ‚ΠΈΠ»ΡŒ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &cОгнива.&r", + "quests.tfg_tips.kayak_materials.title": "Каяк", + "quests.tfg_tips.kayak_materials.subtitle": "Π Π°Π·Π΄ΠΎΠ±ΡƒΠ΄ΡŒ сСбС этот Каяк.", + "quests.tfg_tips.kayak_materials.desc": "&dКаяк&r β€” вторая ΠΏΠΎ простотС Π»ΠΎΠ΄ΠΊΠ° Π² ΠΈΠ³Ρ€Π΅. Для Π΅Π³ΠΎ создания ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡΡ &bВоски&r для изготовлСния &aΠ’ΠΎΠ΄ΠΎΠ½Π΅ΠΏΡ€ΠΎΠ½ΠΈΡ†Π°Π΅ΠΌΡ‹Ρ… ΡˆΠΊΡƒΡ€&r. Π­Ρ‚ΠΎ &cСдинствСнная&r Π»ΠΎΠ΄ΠΊΠ°, ΠΊΠΎΡ‚ΠΎΡ€ΡƒΡŽ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ΄ΠΎΠ±Ρ€Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚. НСсмотря Π½Π° &dΠΎΠ΄Π½ΠΎ пассаТирскоС мСсто&r, это самая быстрая Π»ΠΎΠ΄ΠΊΠ° Π² ΠΈΠ³Ρ€Π΅ Π΄ΠΎ появлСния &dШлюпа&r ΡΡ‚Π°Π»ΡŒΠ½ΠΎΠΉ эпохи!", + "quests.tfg_tips.create_kayak.title": "Π—Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΈΠ΅ создания Каяка", + "quests.tfg_tips.create_kayak.subtitle": "Бчастливого каякинга!", + "quests.tfg_tips.create_kayak.desc": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ с &dКаяком&r Π² Ρ€ΡƒΠΊΠ°Ρ… Ρ‚Ρ‹ моТСшь Π½Π°ΡΠ»Π°ΠΆΠ΄Π°Ρ‚ΡŒΡΡ быстрыми ΠΎΠ΄ΠΈΠ½ΠΎΡ‡Π½Ρ‹ΠΌΠΈ ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΡΠΌΠΈ ΠΏΠΎ Π²ΠΎΠ΄Π΅. НС Π·Π°Π±ΡƒΠ΄ΡŒ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &bВСсло для каяка&r (ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠ΅ вСсло для каноэ Π½Π΅ ΠΏΠΎΠ΄ΠΎΠΉΠ΄Π΅Ρ‚!), Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠ»Ρ‹Ρ‚ΡŒ Π΅Ρ‰Π΅ быстрСС!", + "quests.tfg_tips.beneathxfirmaciv.title": "Π’Π°ΠΆΠ½ΠΎΠ΅ ΠΏΡ€Π΅Π΄ΡƒΠΏΡ€Π΅ΠΆΠ΄Π΅Π½ΠΈΠ΅ ΠΎ Π‘Π΅Π·Π΄Π½Π΅ ΠΈ Firma:Civ", + "quests.tfg_tips.beneathxfirmaciv.subtitle": "ΠŸΡ€ΠΎΡ‡Ρ‚ΠΈ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π΅ ΠΏΠΎΠΆΠ°Π»Π΅Ρ‚ΡŒ", + "quests.tfg_tips.beneathxfirmaciv.desc": "Π₯отя Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ &dКаноэ, Каяк&r ΠΈ &dΠ“Ρ€Π΅Π±Π½ΡƒΡŽ Π»ΠΎΠ΄ΠΊΡƒ&r ΠΈΠ· &dΠ‘Π°Π³Ρ€ΠΎΠ²ΠΎΠΉ&r ΠΈ &3ИскаТСнной дрСвСсины&r, Π»ΠΎΠ΄ΠΊΠΈ ΠΈΠ· этих огнСстойких Π±Ρ€Π΅Π²Π΅Π½ &4НЕ&r устойчивы ΠΊ Π»Π°Π²Π΅! Если Π²Ρ‹ ΠΏΠΎΠΏΡ‹Ρ‚Π°Π΅Ρ‚Π΅ΡΡŒ ΠΏΠ΅Ρ€Π΅ΠΏΠ»Ρ‹Ρ‚ΡŒ Π»Π°Π²ΠΎΠ²ΠΎΠ΅ ΠΎΠ·Π΅Ρ€ΠΎ Π½Π° Ρ‚Π°ΠΊΠΎΠΉ Π»ΠΎΠ΄ΠΊΠ΅, Π²Ρ‹ &lΡƒΡ‚ΠΎΠ½Π΅Ρ‚Π΅&r ΠΈ ΡƒΠΌΡ€Ρ‘Ρ‚Π΅ уТасной ΡΠΌΠ΅Ρ€Ρ‚ΡŒΡŽ!", + "quests.tfg_tips.canoe_materials.title": "Каноэ", + "quests.tfg_tips.canoe_materials.subtitle": "ΠŸΡ€ΠΎΡ‰Π΅ Π½Π΅ΠΊΡƒΠ΄Π°", + "quests.tfg_tips.canoe_materials.desc": "&dКаноэ&r β€” самая простая Π² ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠΈ Π»ΠΎΠ΄ΠΊΠ°. ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ подходят Ρ‚ΠΎΠ»ΡŒΠΊΠΎ ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½Ρ‹Π΅ Π²ΠΈΠ΄Ρ‹ &aΠžΠ±Ρ‚Π΅ΡΠ°Π½Π½Ρ‹Ρ… Π±Ρ€Π΅Π²Π΅Π½&r; Π² Π·Π°Π΄Π°Ρ‡Π°Ρ… Π²Ρ‹ΡˆΠ΅ ΡƒΠΊΠ°Π·Π°Π½ΠΎ, ΠΊΠ°ΠΊΡƒΡŽ ΠΈΠΌΠ΅Π½Π½ΠΎ &bдрСвСсину&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ.\nΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎΡΡ‚ΠΈ ΠΎΠ± ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½ΠΎΠΉ конструкции смотритС Π² &2ПолСвом руководствС&r.\n\nΠ­Ρ‚Π° Π»ΠΎΠ΄ΠΊΠ° ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·ΠΈΡ‚ΡŒ ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ ΠΈΠ³Ρ€ΠΎΠΊΠ°/ΡΡƒΡ‰Π½ΠΎΡΡ‚ΡŒ.", + "quests.tfg_tips.canoe_materials.task": "КакоС Π»ΠΈΠ±ΠΎ ΠΎΠ³Π½ΠΈΠ²ΠΎ", + "quests.tfg_tips.create_canoe.title": "Π—Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΈΠ΅ создания Каноэ", + "quests.tfg_tips.create_canoe.subtitle": "Бчастливого каноэнга!", + "quests.tfg_tips.create_canoe.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &dКаноэ&r ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΡ ΠΏΠΎ Π²ΠΎΠ΄Π½Ρ‹ΠΌ просторам Π½Π° Ρ€Π°Π½Π½ΠΈΡ… этапах ΠΈΠ³Ρ€Ρ‹ станут Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹. НС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &bВСсло для каноэ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π΄Π²ΠΈΠ³Π°Ρ‚ΡŒΡΡ быстрСС!\n\nДля выполнСния ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ задания этого квСста Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Π½Π° Π³ΠΎΡ‚ΠΎΠ²ΠΎΠ΅ &dКаноэ.&r\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o Π”Π²Π° ΠΈΠ³Ρ€ΠΎΠΊΠ° с вСслами Π² ΠΎΠ΄Π½ΠΎΠΌ каноэ ΠΌΠΎΠ³ΡƒΡ‚ Π΄ΠΎΡΡ‚ΠΈΡ‡ΡŒ большСй скорости. Π Π°Π±ΠΎΡ‚Π°Π΅Ρ‚ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠΏΠ»Π΅Π΅Ρ€Π΅, ΠΊΠΎΠ½Π΅Ρ‡Π½ΠΎ ΠΆΠ΅!", + "quests.tfg_tips.rowboat_materials.title": "ГрСбная Π»ΠΎΠ΄ΠΊΠ°", + "quests.tfg_tips.rowboat_materials.subtitle": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΡŒΡΡ ΠΏΠΎΡ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ.", + "quests.tfg_tips.rowboat_materials.desc": "&dГрСбная Π»ΠΎΠ΄ΠΊΠ°&r Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ Π±ΠΎΠ»Π΅Π΅ слоТных ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»ΠΎΠ² ΠΈ доступна Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² Π–Π΅Π»Π΅Π·Π½ΠΎΠΌ Π²Π΅ΠΊΠ΅. &dГрСбная Π»ΠΎΠ΄ΠΊΠ°&r Π²ΠΌΠ΅Ρ‰Π°Π΅Ρ‚: &b2 пассаТира ΠΈ 2 слота ΠΏΠΎΠ΄ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅&r ΠΈΠ»ΠΈ &c4 слота ΠΏΠΎΠ΄ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π΅ Π±Π΅Π· пассаТиров.&r\nΠ’Π°ΠΌ Ρ‚Π°ΠΊΠΆΠ΅ понадобится опрСдСлСнная &aдрСвСсина&r. ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎΡΡ‚ΠΈ Π² &2ПолСвом руководствС&r, Π³Π΄Π΅ Ρ‚Π°ΠΊΠΆΠ΅ описан процСсс постройки.\n\nΠ’Π°ΠΆΠ½ΠΎ: Π»ΠΎΠ΄ΠΊΠ° Π΄ΠΎΠ»ΠΆΠ½Π° Π±Ρ‹Ρ‚ΡŒ ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ построСна ΠΈΠ· ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π²ΠΈΠ΄Π° дрСвСсины! НС ΡΠΌΠ΅ΡˆΠΈΠ²Π°ΠΉΡ‚Π΅ Ρ€Π°Π·Π½Ρ‹Π΅ Ρ‚ΠΈΠΏΡ‹ Π΄Π΅Ρ€Π΅Π²Π°.", + "quests.tfg_tips.create_rowboat.title": "Π—Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΈΠ΅ создания Π“Ρ€Π΅Π±Π½ΠΎΠΉ Π»ΠΎΠ΄ΠΊΠΈ", + "quests.tfg_tips.create_rowboat.subtitle": "Бчастливого грСбСвства!", + "quests.tfg_tips.create_rowboat.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &dΠ“Ρ€Π΅Π±Π½ΠΎΠΉ Π»ΠΎΠ΄ΠΊΠΎΠΉ&r Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·ΠΈΡ‚ΡŒ ΠΏΡ€ΠΈΠ»ΠΈΡ‡Π½ΠΎΠ΅ количСство ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² Ρ‡Π΅Ρ€Π΅Π· ΠΎΠΊΠ΅Π°Π½Ρ‹, идСально ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для заморских исслСдований, Π²ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, для ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠΉ Π² Ρ‚Ρ€ΠΎΠΏΠΈΠΊΠΈ! НС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Π΄Π²Π° &bВСсла&r для большСй скорости!\nΠ›ΠΎΠ΄ΠΊΡƒ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΊΡ€Π°ΡΠΈΡ‚ΡŒ!\n\nДля выполнСния ΠΏΠ΅Ρ€Π²ΠΎΠ³ΠΎ задания этого квСста Π½ΡƒΠΆΠ½ΠΎ ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Π½Π° Π³ΠΎΡ‚ΠΎΠ²ΡƒΡŽ &dΠ“Ρ€Π΅Π±Π½ΡƒΡŽ Π»ΠΎΠ΄ΠΊΡƒ.&r\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o Π”Π²Π° пассаТирских мСста? ΠžΡ‚Π»ΠΈΡ‡Π½ΠΎ подходят для ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·ΠΊΠΈ ΠΏΠ°Ρ€ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ… Π½Π° Ρ„Π΅Ρ€ΠΌΡƒ Ρ‡Π΅Ρ€Π΅Π· Ρ€Π΅ΠΊΠΈ, ΠΎΠ·Π΅Ρ€Π° ΠΈΠ»ΠΈ ΠΎΠΊΠ΅Π°Π½Ρ‹.", + "quests.tfg_tips.sloop_under_construction_materials.title": "Шлюп", + "quests.tfg_tips.sloop_under_construction_materials.subtitle": "ΠΠ°Ρ‡Π°Π»Π°ΡΡŒ ВСликая ΠŸΠΈΡ€Π°Ρ‚ΡΠΊΠ°Ρ эра", + "quests.tfg_tips.sloop_under_construction_materials.desc": "&dШлюп&r β€” самоС ΠΏΡ€ΠΎΠ΄Π²ΠΈΠ½ΡƒΡ‚ΠΎΠ΅ морскоС судно, для ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠ³ΠΎ трСбуСтся &aΠ‘Ρ‚Π°Π»ΡŒ.&r Π£ Π½Π΅Π³ΠΎ ΠΌΠ½ΠΎΠ³ΠΎ мСста для ΠΏΠΎΠ΄ Ρ…Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π°, Π½Π°ΠΊΠΎΠ²Π°Π»Π΅Π½ ΠΈ вСрстаков! Оно нСвСроятно Π΄ΠΎΡ€ΠΎΠ³ΠΎΠ΅ ΠΈ Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ ΠΏΡ€Π°ΠΊΡ‚ΠΈΠΊΠΈ для управлСния. ВсС Π΄Π΅Ρ‚Π°Π»ΠΈ постройки ΠΈ управлСния Π΅ΡΡ‚ΡŒ Π² &2ПолСвом руководвствС&r.\n\nИ снова: Π½Π΅ ΠΏΡ‹Ρ‚Π°ΠΉΡ‚Π΅ΡΡŒ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Ρ€Π°Π·Π½Ρ‹Π΅ Π²ΠΈΠ΄Ρ‹ дрСвСсины для ΠΎΠ΄Π½ΠΎΠ³ΠΎ судна.", + "quests.tfg_tips.sloop_under_construction_materials.task": "16x Π»ΡŽΠ±Ρ‹Ρ… досок", + "quests.tfg_tips.create_sloop.title": "Π—Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΈΠ΅ создания Шлюпа", + "quests.tfg_tips.create_sloop.subtitle": "Π“Π΄Π΅ ΠΆΠ΅ Wind Waker, ΠΊΠΎΠ³Π΄Π° ΠΎΠ½ Ρ‚Π°ΠΊ Π½ΡƒΠΆΠ΅Π½?", + "quests.tfg_tips.create_sloop.desc": "Π‘ ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &dШлюпа&r ΠΏΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠ΅ ΠΏΠΎ ΠΊΡ€ΡƒΠΏΠ½Ρ‹ΠΌ Π²ΠΎΠ΄ΠΎΠ΅ΠΌΠ°ΠΌ Π΄ΠΎΠ»ΠΆΠ½ΠΎ Π±Ρ‹Ρ‚ΡŒ ΠΎΡ‚Π½ΠΎΡΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ простым. Π§Ρ‚ΠΎΠ±Ρ‹ Π½Π΅ ΠΎΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Π²ΠΎ власти Π²Π΅Ρ‚Ρ€Π°, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ ΡΠΊΠΎΡ€ΡŒ ΠΈ ΠΎΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒΡΡ Π½Π° мСстС.\nΠŸΠ°Ρ€ΡƒΡΠ° ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΊΡ€Π°ΡΠΈΡ‚ΡŒ Π² любой Ρ†Π²Π΅Ρ‚ Π½Π° ваш Π²Ρ‹Π±ΠΎΡ€!\n\nДля выполнСния задания этого квСста Π½Π΅ΠΎΠ±Ρ…ΠΎΠ΄ΠΈΠΌΠΎ ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Π½Π° любой Π³ΠΎΡ‚ΠΎΠ²Ρ‹ΠΉ &dШлюп.&r\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o НС ΠΏΡ‹Ρ‚Π°ΠΉΡ‚Π΅ΡΡŒ ΠΏΡ€ΠΎΠΏΠ»Ρ‹Ρ‚ΡŒ Π½Π° ШлюпС ΠΏΠΎ Ρ€Π΅ΠΊΠ°ΠΌ β€” скорСС всСго, это НЕ сработаСт ΠΊΠ°ΠΊ оТидалось!", + "quests.tfg_tips.fishing_net.title": "Рыболовная ΡΠ΅Ρ‚ΡŒ", + "quests.tfg_tips.fishing_net.subtitle": "НС носки, ΠΈΠ·Π²ΠΈΠ½ΠΈΡ‚Π΅.", + "quests.tfg_tips.fishing_net.desc": "Π›ΠΎΠ²ΠΈΡ‚ΡŒ Ρ€Ρ‹Π±Ρƒ Π΅Ρ‰Π΅ Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ Π±Ρ‹Π»ΠΎ Ρ‚Π°ΠΊ просто. ВсСго лишь ПКМ β€” ΠΈ сытная Π΅Π΄Π° Ρƒ вас Π² Ρ€ΡƒΠΊΠ°Ρ….", + "quests.tfg_tips.fishing_net.task": "Π›ΡŽΠ±ΠΎΠΉ #forge:tools/fishing_nets", + "quests.tfg_tips.astikorcarts.title": "TFC Astikor Carts", + "quests.tfg_tips.astikorcarts.subtitle": "Π‘ΡƒΡ…ΠΎΠΏΡƒΡ‚Π½Ρ‹Π΅ ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚Ρ‹", + "quests.tfg_tips.astikorcarts.desc": "&2TFC Astikor Carts&r прСдоставляСт возмоТности транспортировки ΠΏΠΎ ΡΡƒΡˆΠ΅ Π² Π½Π°Ρ‡Π°Π»Π΅ ΠΈΠ³Ρ€Ρ‹ ΠΊΠ°ΠΊ для ΠΌΠΎΠ±ΠΎΠ², Ρ‚Π°ΠΊ ΠΈ для ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ².\nΠ’Π΅Π»Π΅ΠΆΠΊΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Ρ‚ΡΠ½ΡƒΡ‚ΡŒΡΡ Π²Ρ€ΡƒΡ‡Π½ΡƒΡŽ &cΠΈΠ³Ρ€ΠΎΠΊΠ°ΠΌΠΈ&r (ΠΎΡ‡Π΅Π½ΡŒ ΠΌΠ΅Π΄Π»Π΅Π½Π½ΠΎ ΠΏΡ€ΠΈ ΠΏΠΎΠ»Π½ΠΎΠΉ Π·Π°Π³Ρ€ΡƒΠ·ΠΊΠ΅!) ΠΈΠ»ΠΈ &bΠΎΠ΄Π½ΠΎΠΊΠΎΠΏΡ‹Ρ‚Π½Ρ‹ΠΌΠΈ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹ΠΌΠΈ&r, Ρ‚Π°ΠΊΠΈΠΌΠΈ ΠΊΠ°ΠΊ лошади.\n\nНС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ &4\"Клавиша дСйствия\" (ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ R)&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΡ€ΠΈΠΊΡ€Π΅ΠΏΠΈΡ‚ΡŒ ΠΈΠ»ΠΈ ΠΎΡ‚ΠΊΡ€Π΅ΠΏΠΈΡ‚ΡŒ сСбя ΠΈΠ»ΠΈ ΠΆΠΈΠ²ΠΎΡ‚Π½ΠΎΠ΅, Π½Π° ΠΊΠΎΡ‚ΠΎΡ€ΠΎΠΌ Π²Ρ‹ Π΅Π΄Π΅Ρ‚Π΅, ΠΊ Ρ‚Π΅Π»Π΅Π³Π΅.", + "quests.tfg_tips.equines.title": "Π•Π·Π΄Π° Π½Π° Π»ΠΎΡˆΠ°Π΄ΡΡ…", + "quests.tfg_tips.equines.subtitle": "Π”ΡƒΡˆΠ° ΠΏΡ€Π΅Ρ€ΠΈΠΉ", + "quests.tfg_tips.equines.desc": "НайдитС сСбС &bΠ›ΠΎΡˆΠ°Π΄ΡŒ, Осла&r ΠΈΠ»ΠΈ &bΠœΡƒΠ»Π°&r ΠΈ ΠΏΠΎΠ²Ρ‹ΡΡŒΡ‚Π΅ &aΠŸΡ€ΠΈΡ€ΡƒΡ‡Π΅Π½Π½ΠΎΡΡ‚ΡŒ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡΠ΅Π΄Π»Π°Ρ‚ΡŒ ΠΈΡ… с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &aΠ‘Π΅Π΄Π»Π°&r, ΠΈΠ·Π³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠ³ΠΎ ΠΈΠ· ΠΊΠΎΠΆΠΈ.\nΠšΡ€ΠΎΠΌΠ΅ Ρ‚ΠΎΠ³ΠΎ, ΠΎΠ½ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Ρ‚ΡΠ½ΡƒΡ‚ΡŒ &dΠ’Π΅Π»Π΅Π³ΠΈ&r Π±Π΅Π· ΡˆΡ‚Ρ€Π°Ρ„Π° ΠΊ скорости!\n\n&bΠ›ΠΎΡˆΠ°Π΄ΠΈ&r ΠΈΠ΄Π΅Π°Π»ΡŒΠ½Ρ‹ для исслСдования ΠΊΠΎΠ½Ρ‚ΠΈΠ½Π΅Π½Ρ‚ΠΎΠ² Π½Π° Ρ€Π°Π½Π½ΠΈΡ… этапах ΠΈΠ³Ρ€Ρ‹, Π° ΠΈΡ… характСристики ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ»ΡƒΡ‡ΡˆΠ°Ρ‚ΡŒ Ρ‡Π΅Ρ€Π΅Π· Ρ€Π°Π·Π²Π΅Π΄Π΅Π½ΠΈΠ΅.\n\n&bΠžΡΠ»Ρ‹ ΠΈ ΠΌΡƒΠ»Ρ‹&r ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·ΠΈΡ‚ΡŒ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ сундук ΠΈΠ»ΠΈ Π΄Π°ΠΆΠ΅ Π±ΠΎΡ‡ΠΊΡƒ Π±Π΅Π· нСобходимости Π² &2Π“Ρ€ΡƒΠ·ΠΎΠ²ΠΎΠΉ Ρ‚Π΅Π»Π΅ΠΆΠΊΠ΅.&r\n\nКак всСгда, подробности (Π²ΠΊΠ»ΡŽΡ‡Π°Ρ условия появлСния) Π² &2ПолСвом руководствС.&r\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o Π₯ΠΎΡ‚ΠΈΡ‚Π΅ ΠΏΠΎΠΊΠ°Ρ‚Π°Ρ‚ΡŒΡΡ Π½Π° лошади ΠΏΠΎ Π΄Ρ€ΡƒΠ³ΠΎΠΌΡƒ ΠΊΠΎΠ½Ρ‚ΠΈΠ½Π΅Π½Ρ‚Ρƒ Π·Π° ΠΎΠΊΠ΅Π°Π½ΠΎΠΌ? НС Π²ΠΎΠ»Π½ΡƒΠΉΡ‚Π΅ΡΡŒ, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π²Π·ΡΡ‚ΡŒ с собой своСго Π²Π΅Ρ€Π½ΠΎΠ³ΠΎ скакуна Π½Π° ΠΎΠΏΡ€Π΅Π΄Π΅Π»Π΅Π½Π½Ρ‹Ρ… Π»ΠΎΠ΄ΠΊΠ°Ρ…!", + "quests.tfg_tips.supply_cart.title": "Грузовая Ρ‚Π΅Π»Π΅ΠΆΠΊΠ°", + "quests.tfg_tips.supply_cart.subtitle": "Уноси всС", + "quests.tfg_tips.supply_cart.desc": "ИмСя Ρ†Π΅Π»Ρ‹Ρ… &c54&r слотов, &dΠ“Ρ€ΡƒΠ·ΠΎΠ²Ρ‹Π΅ Ρ‚Π΅Π»Π΅ΠΆΠΊΠΈ&r ΠΌΠΎΠ³ΡƒΡ‚ ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·ΠΈΡ‚ΡŒ большоС количСство ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² &aнСзависимо ΠΎΡ‚ ΠΈΡ… вСса&r, Π΄Π°ΠΆΠ΅ наковальни!\nИдСально подходят для исслСдований, ΡˆΠ°Ρ…Ρ‚Π΅Ρ€ΡΡ‚Π²Π° ΠΈ Π·Π°Π³ΠΎΡ‚ΠΎΠ²ΠΊΠΈ Π±Ρ€Π΅Π²Π΅Π½, ΠΈΠ»ΠΈ для ΠΏΠ΅Ρ€Π΅Π΅Π·Π΄Π° Π±Π°Π·!", + "quests.tfg_tips.animal_cart.title": "Π‘ΠΊΠΎΡ‚ΠΎΠ²ΠΎΠ·", + "quests.tfg_tips.animal_cart.subtitle": "КиднСппинг ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ…", + "quests.tfg_tips.animal_cart.desc": "&dΠ‘ΠΊΠΎΡ‚ΠΎΠ²ΠΎΠ·&r позволяСт ΠΏΠ΅Ρ€Π΅Π²ΠΎΠ·ΠΈΡ‚ΡŒ Π΄ΠΎ 3 ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ… ΠΏΠΎ ΡΡƒΡˆΠ΅.\nИдСально ΠΏΠΎΠ΄Ρ…ΠΎΠ΄ΠΈΡ‚ для доставки ΠΏΠ°Ρ€ ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ… Π½Π° ваши Ρ„Π΅Ρ€ΠΌΡ‹! ΠŸΡ€ΠΎΡΡ‚ΠΎ Π½Π°Π΅Π·ΠΆΠ°ΠΉΡ‚Π΅ Π½Π° ΠΆΠΈΠ²ΠΎΡ‚Π½ΠΎΠ΅ Ρ‚Π΅Π»Π΅ΠΆΠΊΠΎΠΉ. &cShift + ПКМ&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π²Ρ‹Π³Ρ€ΡƒΠ·ΠΈΡ‚ΡŒ всСх ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ….", + "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.hiking_boots.title": "ΠŸΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ", + "quests.tfg_tips.hiking_boots.subtitle": "\uD83C\uDFB5 ΠΈ я Π±Ρ‹ ΠΏΡ€ΠΎΡˆΠ΅Π» тысячу ΠΊΠΈΠ»ΠΎΠΌΠ΅Ρ‚Ρ€ΠΎΠ²", + "quests.tfg_tips.hiking_boots.desc": "&aΠŸΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ&r ΠΏΡ€Π΅Π΄ΠΎΡ‚Π²Ρ€Π°Ρ‰Π°ΡŽΡ‚ Π·Π°ΠΌΠ΅Π΄Π»Π΅Π½ΠΈΠ΅ ΠΏΡ€ΠΈ Ρ…ΠΎΠ΄ΡŒΠ±Π΅ ΠΏΠΎ высокой Ρ‚Ρ€Π°Π²Π΅, ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°ΡŽΡ‚ Π±Π΅Π·ΠΎΠΏΠ°ΡΠ½ΡƒΡŽ высоту падСния ΠΈ ΠΌΠΎΠ³ΡƒΡ‚ Π΄Π°ΠΆΠ΅ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ высоты шага ΠΈ скорости пСрСдвиТСния. Они Π½Π΅ Π΄Π°ΡŽΡ‚ Ρ‚Π°ΠΊΠΎΠΉ ΠΆΠ΅ Π·Π°Ρ‰ΠΈΡ‚Ρ‹, ΠΊΠ°ΠΊ настоящиС мСталличСскиС доспСхи, Π½ΠΎ Ссли Π²Ρ‹ Π½Π΅ ΡΡ€Π°ΠΆΠ°Π΅Ρ‚Π΅ΡΡŒ, это ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ компромисс!", + "quests.tfg_tips.hiking_boots.task": "Π›ΡŽΠ±Ρ‹Π΅ ΠΏΠΎΡ…ΠΎΠ΄Π½Ρ‹Π΅ Π±ΠΎΡ‚ΠΈΠ½ΠΊΠΈ", + "quests.tfg_tips.firmalife.title": "Firmalife", + "quests.tfg_tips.firmalife.subtitle": "Π Π°Π·Ρ€Π°ΡΡ‚ΠΈΡ‚Π΅ΡΡŒ Π² TerraFirmaCraft", + "quests.tfg_tips.firmalife.desc": "&2Firmalife&r β€” это ΠΌΠΎΠ΄, ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ посвящСнный Ρ€Π°ΡΡˆΠΈΡ€Π΅Π½ΠΈΡŽ Π°Π³Ρ€Π°Ρ€Π½ΠΎΠ³ΠΎ ΠΈ гастрономичСского ΠΎΠΏΡ‹Ρ‚Π° Π² TerraFirmaCraft, с Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ΠΌ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… особСнностСй. Он Π²ΠΊΠ»ΡŽΡ‡Π°Π΅Ρ‚ Π² сСбя Ρ‚Π°ΠΊΠΈΠ΅ элСмСнты, ΠΊΠ°ΠΊ Π΄Π΅ΠΊΠΎΡ€Π°Ρ†ΠΈΠΈ, большС способов консСрвирования, новая Π΅Π΄Π°, ΠΏΡ‡Π΅Π»Ρ‹ ΠΈ мноТСство ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Ρ… приспособлСний!", + "quests.tfg_tips.greenhouse.title": "Π’Π΅ΠΏΠ»ΠΈΡ†Π°", + "quests.tfg_tips.greenhouse.subtitle": "Π’Ρ‹Ρ€Π°Ρ‰ΠΈΠ²Π°ΠΉ свои ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€Ρ‹ 24/7!", + "quests.tfg_tips.greenhouse.desc": "&dΠ’Π΅ΠΏΠ»ΠΈΡ†Π°&r β€” слоТная многоблочная структура с нСсколькими уровнями, ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰Π°Ρ Π²Ρ‹Ρ€Π°Ρ‰ΠΈΠ²Π°Ρ‚ΡŒ ΡƒΡ€ΠΎΠΆΠ°ΠΉ ΠΊΡ€ΡƒΠ³Π»Ρ‹ΠΉ Π³ΠΎΠ΄ Ρ†Π΅Π½ΠΎΠΉ сниТСния продуктивности. ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎΡΡ‚ΠΈ смотритС Π² &2ПолСвом руководствС&r!", + "quests.tfg_tips.greenhouse_automation.title": "Greenhouse Automation", + "quests.tfg_tips.greenhouse_automation.subtitle": "By your powers combined...", + "quests.tfg_tips.greenhouse_automation.desc": "With the combination of Firmalife's &2Picker&r and &2Sweeper&r, Create's Deployers, and GregTech's Item Collectors, it's possible to completely automate your greenhouse!\n\nPickers will pull mature crops from Hydroponic Planters and Quad Planters when they receive a redstone pulse, while Sweepers will harvest mature crops from the other types in a 3x3 area around it while connected to a redstone signal.\n\nThese machines will produce loose items, but an Item Collector will suck those up in a large area around it.\n\nFrom there, pipe the seeds back into Deployers to plant them in the Planters!", + "quests.tfg_tips.beekeeping.title": "ΠŸΡ‡Π΅Π»ΠΎΠ²ΠΎΠ΄ΡΡ‚Π²ΠΎ", + "quests.tfg_tips.beekeeping.subtitle": "Π’Π΅ΠΏΠ΅Ρ€ΡŒ ΠΎΠ½ΠΈ Ρ‚Π°ΠΊΠΈΠ΅ малСнькиС...", + "quests.tfg_tips.beekeeping.desc": "&bBeekeeping&r has a plethora of uses. Not only do bees fertilize nearby crops (assuming you have the correct trait), you will be able to obtain useful resources such as &aWax&r and &aHoney.&r Breed bees to achieve better stats.\nThe &2Field Guide&r offers an extensive explanation of all &bbeekeeping&r mechanics.", + "quests.tfg_tips.beehive.title": "Π£Π»Π΅ΠΉ", + "quests.tfg_tips.beehive.subtitle": "ΠŸΠΎΡ€Π° ΠΈΡΠΏΡ‹Ρ‚Π°Ρ‚ΡŒ ΡƒΠ΄Π°Ρ‡Ρƒ...", + "quests.tfg_tips.beehive.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ Π½Π°Ρ‡Π°Ρ‚ΡŒ Π·Π°Π½ΠΈΠΌΠ°Ρ‚ΡŒΡΡ пчСловодством, Π²Π°ΠΌ понадобятся: &bΠ£Π»Π΅ΠΉ&r ΠΈ &aΠ Π°ΠΌΠΊΠ° для ΡƒΠ»ΡŒΡ.&r\nΠ’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ ванильного ΠœΠ°ΠΉΠ½ΠΊΡ€Π°Ρ„Ρ‚Π°, ΡƒΠ»ΡŒΠΈ Π½Π΅ Π³Π΅Π½Π΅Ρ€ΠΈΡ€ΡƒΡŽΡ‚ΡΡ Π² ΠΌΠΈΡ€Π΅ β€” ΠΏΡ‡Π΅Π»Ρ‹ ΠΏΠΎΡΠ²Π»ΡΡŽΡ‚ΡΡ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π² созданных ΠΈΠ³Ρ€ΠΎΠΊΠΎΠΌ &bΠ£Π»ΡŒΡΡ…&r с Ρ€Π°ΠΌΠΊΠ°ΠΌΠΈ, засСлСнными &eΠšΠΎΡ€ΠΎΠ»Π΅Π²Π°ΠΌΠΈ.&r Шанс засСлСния Ρ€Π°ΠΌΠΊΠΈ ΠΊΠΎΡ€ΠΎΠ»Π΅Π²ΠΎΠΉ случаСн, Π½ΠΎ шанс ΠΌΠΎΠΆΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ, размСстив Π²ΠΎΠΊΡ€ΡƒΠ³ ΡƒΠ»ΡŒΡ &dΠ¦Π²Π΅Ρ‚Ρ‹&r.\n\nПослС засСлСния Ρ€Π°ΠΌΠΊΠΈ Π² ΡƒΠ»ΡŒΠ΅ Π½Π°Ρ‡Π½ΡƒΡ‚ ΠΏΠΎΡΠ²Π»ΡΡ‚ΡŒΡΡ Ρ€Π°Π±ΠΎΡ‡ΠΈΠ΅ ΠΏΡ‡Π΅Π»Ρ‹, производящиС ΠΌΠ΅Π΄.", + "quests.tfg_tips.not_the_bees.title": "ΠšΠΎΡΡ‚ΡŽΠΌ пасСчника", + "quests.tfg_tips.not_the_bees.subtitle": "Π’ΠžΠ›Π¬ΠšΠž НЕ ΠŸΠ§Π•Π›Π«!", + "quests.tfg_tips.not_the_bees.desc": "ΠŸΡ‡Π΅Π»Ρ‹ Π½Π΅ Π»ΡŽΠ±ΡΡ‚, ΠΊΠΎΠ³Π΄Π° ΠΈΡ… бСспокоят ΠΈ ΡΠΎΠ±ΠΈΡ€Π°ΡŽΡ‚ ΠΈΡ… ΠΌΠ΅Π΄ ΠΈ воск. Π•ΡΡ‚ΡŒ Ρ‚Ρ€ΠΈ бСзопасных способа, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ это:\n\n* &dΠ‘Π±ΠΎΡ€ Π½ΠΎΡ‡ΡŒΡŽ&r\n* &dИспользованиС костра&r\n* &dΠšΠΎΡΡ‚ΡŽΠΌ пасСчника&r", + "quests.tfg_tips.not_the_bees.task": "Π― Π²Ρ‹Π±Π΅Ρ€Ρƒ костСр ΠΈΠ»ΠΈ Π±ΡƒΠ΄Ρƒ ΠΆΠ΄Π°Ρ‚ΡŒ Π½ΠΎΡ‡ΠΈ.", + "quests.tfg_tips.honey.title": "МСд", + "quests.tfg_tips.honey.subtitle": "ΠžΡ…, Π½Ρƒ ΠΈ Π½Ρƒ...", + "quests.tfg_tips.honey.desc": "Π‘ &aΠŸΡƒΡΡ‚ΠΎΠΉ Π±Π°Π½ΠΊΠΎΠΉ&r, ΡΠ΄Π΅Π»Π°Π½Π½ΡƒΡŽ ΠΏΡ€ΠΈ ΠΏΠΎΠΌΠΎΡ‰ΠΈ &bΠ²Ρ‹Π΄ΡƒΠ²Π°Π½ΠΈΠΈ стСкла&r, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΠΆΠ°Ρ‚ΡŒ ПКМ ΠΏΠΎ ΡƒΠ»ΡŒΡŽ с ΠΌΠ΅Π΄ΠΎΠΌ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &dΠ‘Π°Π½ΠΊΡƒ ΠΌΠ΅Π΄Π°.&r МСд β€” ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ Π·Π°ΠΌΠ΅Π½ΠΈΡ‚Π΅Π»ΡŒ сахара.", + "quests.tfg_tips.beeswax.title": "Воск", + "quests.tfg_tips.beeswax.subtitle": "Достойная ΠΆΠ΅Ρ€Ρ‚Π²Π°", + "quests.tfg_tips.beeswax.desc": "Если ΠΊΠ»ΠΈΠΊΠ½ΡƒΡ‚ΡŒ ПКМ ΠΏΠΎ &aΡ€Π°ΠΌΠΊΠ΅&r с &bΠΏΡ‡Π΅Π»ΠΈΠ½Π½ΠΎΠΉ ΠΌΠ°Ρ‚ΠΊΠΎΠΉ&r, ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡ &cΠ½ΠΎΠΆ&r, Π²Ρ‹ очиститС Ρ€Π°ΠΌΠΊΡƒ, ΡƒΠ±ΠΈΠ² ΠΌΠ°Ρ‚ΠΊΡƒ ΠΈ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΠ² &dвоск.&r\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o МоТно ΠΆΠ΅Ρ€Ρ‚Π²ΠΎΠ²Π°Ρ‚ΡŒ &bΠΌΠ°Ρ‚ΠΊΠ°ΠΌΠΈ&f с ΠΏΠ»ΠΎΡ…ΠΈΠΌΠΈ Π³Π΅Π½Π°ΠΌΠΈ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ со Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ ΡƒΠ»ΡƒΡ‡ΡˆΠ°Ρ‚ΡŒ качСство потомства β€” ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅ Ρ€Π°ΠΌΠΊΠΈ ΠΊΠΎΠΌΠΏΠ΅Π½ΡΠΈΡ€ΡƒΡŽΡ‚ Π½Π΅Π΄ΠΎΡΡ‚Π°ΡŽΡ‰ΠΈΠ΅ характСристики своими характСристиками.", + "quests.tfg_tips.candles.title": "Π‘Π²Π΅Ρ‡ΠΈ", + "quests.tfg_tips.candles.subtitle": "Π£ΡŽΡ‚Π½Π΅Π½ΡŒΠΊΠΎ...", + "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 β€” это многоблочная структура, прСдназначСнная для ΡƒΠ΄ΠΎΠ±Π½ΠΎΠ³ΠΎ приготовлСния ΠΏΠΈΡ‰ΠΈ, Π° Ρ‚Π°ΠΊΠΆΠ΅ выполнСния ΡΠΊΡΠΊΠ»ΡŽΠ·ΠΈΠ²Π½Ρ‹Ρ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ². &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: Ссли Π²Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ супы.", + "quests.tfg_tips.oven_finish.title": "ΠžΡ‚Π΄Π΅Π»ΠΊΠ° для ΠΏΠ΅Ρ‡ΠΈ", + "quests.tfg_tips.oven_finish.subtitle": "Π¨ΠΈΠΊΠ°Ρ€Π½ΠΎ", + "quests.tfg_tips.oven_finish.desc": "Если внСшний Π²ΠΈΠ΄ глиняных ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ Π²Π°ΠΌ Π½Π΅ нравится, Ρ‚ΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΈΠΌΠ΅Π½ΠΈΡ‚ΡŒ &bΠžΡ‚Π΄Π΅Π»ΠΊΡƒ&r ΠΊ Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Ρƒ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ² ΠΏΠ΅Ρ‡ΠΈ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·ΠΌΠ΅Π½ΠΈΡ‚ΡŒ внСшний Π²ΠΈΠ΄ ΠΌΠ½ΠΎΠ³ΠΎΠ±Π»ΠΎΡ‡Π½ΠΎΠΉ конструкции.", + "quests.tfg_tips.oven_finish.task": "Π›ΡŽΠ±Π°Ρ ΠžΡ‚Π΄Π΅Π»ΠΊΠ°", + "quests.tfg_tips.oven_utils.title": "ΠŸΠΎΠ»Π΅Π·Π½Ρ‹Π΅ приспособлСния для ΠΏΠ΅Ρ‡ΠΈ", + "quests.tfg_tips.oven_utils.subtitle": "Π’ΠΎΠ·ΠΌΠΎΠΆΠ½ΠΎ, Π²Π°ΠΌ пригодятся", + "quests.tfg_tips.oven_utils.desc": "&dΠ—ΠΎΠ»ΡŒΠ½ΠΈΠΊ&r, установлСнный ΠΏΠΎΠ΄ &aНиТнСй Ρ‡Π°ΡΡ‚ΡŒΡŽ ΠΏΠ΅Ρ‡ΠΈ&r, ΠΈΠΌΠ΅Π΅Ρ‚ шанс ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ &cΠ”Ρ€Π΅Π²Π΅ΡΠ½ΡƒΡŽ Π·ΠΎΠ»Ρƒ&r ΠΏΡ€ΠΈ сТигании Π±Ρ€Π΅Π²Π΅Π½. НаТмитС ПКМ, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ Π·ΠΎΠ»Ρƒ.\n\n&dΠ‘ΡƒΠ½ΠΊΠ΅Ρ€ ΠΏΠ΅Ρ‡ΠΈ&r автоматичСски Π·Π°Π³Ρ€ΡƒΠΆΠ°Π΅Ρ‚ Π±Ρ€Π΅Π²Π½Π° Π² &bНиТнюю Ρ‡Π°ΡΡ‚ΡŒ ΠΏΠ΅Ρ‡ΠΈ&r, Π½Π°Ρ…ΠΎΠ΄ΡΡ‰ΡƒΡŽΡΡ Π½Π°ΠΏΡ€ΠΎΡ‚ΠΈΠ² Π½Π΅Π΅ β€” ΠΏΠΎΠ»Π΅Π·Π½ΠΎ для Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†ΠΈΠΈ.", + "quests.tfg_tips.jam.title": "Π’Π°Ρ€Π΅Π½ΡŒΠ΅", + "quests.tfg_tips.jam.subtitle": "НС Π”ΠΆΠ΅ΠΌ", + "quests.tfg_tips.jam.desc": "&dΠ’Π°Ρ€Π΅Π½ΡŒΠ΅&r β€” ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ способ ΡΠΎΡ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Ρ„Ρ€ΡƒΠΊΡ‚Ρ‹. &bГСрмСтичная Π±Π°Π½ΠΊΠ° Π²Π°Ρ€Π΅Π½ΡŒΡ&r ΠΌΠΎΠΆΠ΅Ρ‚ Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒΡΡ Π΄ΠΎ &cΠ΄Π²ΡƒΡ… Π»Π΅Ρ‚&r, Ссли Π΅Π΅ Π½Π΅ ΠΎΡ‚ΠΊΡ€Ρ‹Π²Π°Ρ‚ΡŒ.\n\nДля приготовлСния Π’Π°Ρ€Π΅Π½ΡŒΡ потрСбуСтся &aΠ‘Π°Π½ΠΊΠ° с ΠΊΡ€Ρ‹ΡˆΠΊΠΎΠΉ&r, создаваСмая с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ &bвыдувания стСкла&r ΠΈ &bΠΎΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠΈ Π½Π° наковальнС&r.\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&l &aΠΌΠ΅Ρ…Π°Π½ΠΈΠ·ΠΌΡ‹ ΠΈΠ· GT&f ΠΏΠΎΠ·ΠΆΠ΅ прСдоставят ΡƒΠΏΡ€ΠΎΡ‰Π΅Π½Π½Ρ‹Π΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ для этих ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠ².", + "quests.tfg_tips.preservation.title": "Π”Ρ€Π΅Π²ΠΎ консСрвации", + "quests.tfg_tips.preservation.subtitle": "ΠŸΡ€ΠΎΠ΄Π»Π΅Π½ΠΈΠ΅ срока годности ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ²", + "quests.tfg_tips.preservation.desc": "Π˜ΡΠΏΠΎΡ€Ρ‡Π΅Π½Π½Π°Ρ Π΅Π΄Π° Π½Π΅ΠΏΡ€ΠΈΠ³ΠΎΠ΄Π½Π° для употрСблСния (хотя Π΅Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΡΠΊΠ°Ρ€ΠΌΠ»ΠΈΠ²Π°Ρ‚ΡŒ свиньям!). Для ΡƒΡΠΏΠ΅ΡˆΠ½ΠΎΠ³ΠΎ выТивания Π² &2TFG&r потрСбуСтся Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ способы максимально ΠΏΡ€ΠΎΠ΄Π»Π΅Π²Π°Ρ‚ΡŒ срок годности ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ².\n\nΠ”Ρ€Π΅Π²ΠΎ квСстов Π²Ρ‹ΡˆΠ΅ ΠΏΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎ описываСт Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ ΠΌΠ΅Ρ‚ΠΎΠ΄Ρ‹ консСрвации для Ρ€Π°Π·Π½Ρ‹Ρ… Ρ‚ΠΈΠΏΠΎΠ² ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ². ΠžΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅, Ρ‡Ρ‚ΠΎ Π½Π΅ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΈΠΊΠΎΠ½ΠΊΠΈ ΠΌΠΎΠ³ΡƒΡ‚ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ‚ΡŒ ΠΈΡΠΏΠΎΡ€Ρ‡Π΅Π½Π½ΡƒΡŽ Π΅Π΄Ρƒ β€” это чисто Π²ΠΈΠ·ΡƒΠ°Π»ΡŒΠ½Ρ‹ΠΉ Π±Π°Π³.\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o ВсС ΠΌΠΎΠ΄ΠΈΡ„ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹ консСрвации &dΡΠΊΠ»Π°Π΄Ρ‹Π²Π°ΡŽΡ‚ΡΡ&f, позволяя Π΄ΠΎΡΡ‚ΠΈΡ‡ΡŒ ΠΎΡ‡Π΅Π½ΡŒ Π΄ΠΎΠ»Π³ΠΎΠ³ΠΎ срока хранСния.", + "quests.tfg_tips.brine_something.title": "ЗасаливаниС", + "quests.tfg_tips.brine_something.subtitle": "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ этап для Π΄Ρ€ΡƒΠ³ΠΈΡ… ΠΌΠ΅Ρ‚ΠΎΠ΄ΠΎΠ² консСрвации", + "quests.tfg_tips.brine_something.desc": "Π—Π°ΠΌΠ°Ρ‡ΠΈΠ²Π°Π½ΠΈΠ΅ Π² рассолС &aсырого мяса, ΠΎΠ²ΠΎΡ‰Π΅ΠΉ&r ΠΈΠ»ΠΈ &aΡ„Ρ€ΡƒΠΊΡ‚ΠΎΠ²&r, Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ &dРассола&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ готовится ΠΈΠ· &bΠ‘ΠΎΠ»Π΅Π½ΠΎΠΉ Π²ΠΎΠ΄Ρ‹&r ΠΈ &bУксуса&r. Π­Ρ‚ΠΎ ΠΏΡ€Π΅Π΄Π²Π°Ρ€ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ этап ΠΏΠ΅Ρ€Π΅Π΄ &3ΠΌΠ°Ρ€ΠΈΠ½ΠΎΠ²Π°Π½ΠΈΠ΅ΠΌ&r ΠΈ &3ΠΊΠΎΠΏΡ‡Π΅Π½ΠΈΠ΅ΠΌ.&r", + "quests.tfg_tips.brine_something.task.1": "Мясо, ΠΎΠ²ΠΎΡ‰ ΠΈΠ»ΠΈ Ρ„Ρ€ΡƒΠΊΡ‚, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π±Ρ‹Π» засолСн.", + "quests.tfg_tips.brine_something.task.2": "Π’Π΅Π΄Ρ€ΠΎ рассола", + "quests.tfg_tips.pickle_something.title": "Основная консСрвация: ΠœΠ°Ρ€ΠΈΠ½ΠΎΠ²Π°Π½ΠΈΠ΅", + "quests.tfg_tips.pickle_something.subtitle": "Основная консСрвация NΒ°3", + "quests.tfg_tips.pickle_something.desc": "ΠœΠ°Ρ€ΠΈΠ½ΠΎΠ²Π°Π½ΠΈΠ΅ &aсырого мяса, ΠΎΠ²ΠΎΡ‰Π΅ΠΉ&r ΠΈΠ»ΠΈ &aΡ„Ρ€ΡƒΠΊΡ‚ΠΎΠ²&r. ПослС &3засолки&r ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ помСщаСтся Π² Π±ΠΎΡ‡ΠΊΡƒ с &aуксусом&r. Он ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ оставлСн Ρ‚Π°ΠΌ, получая свойство &dконсСрвированиС Π² уксусС&r (ΠΏΠΎΠΊΠ° Π±ΠΎΡ‡ΠΊΠ° Π·Π°ΠΏΠ΅Ρ‡Π°Ρ‚Π°Π½Π°), Ρ‡Ρ‚ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°Π΅Ρ‚ срок годности.", + "quests.tfg_tips.pickle_something.task.1": "Π’Π΅Π΄Ρ€ΠΎ уксуса", + "quests.tfg_tips.pickle_something.task.2": "Мясо, ΠΎΠ²ΠΎΡ‰ ΠΈΠ»ΠΈ Ρ„Ρ€ΡƒΠΊΡ‚, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π±Ρ‹Π» Π·Π°ΠΌΠ°Ρ€ΠΈΠ½ΠΎΠ²Π°Π½.", + "quests.tfg_tips.get_milk.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ ΠΌΠΎΠ»ΠΎΠΊΠ°", + "quests.tfg_tips.get_milk.subtitle": "Π•ΡΡ‚ΡŒ ΠΌΠΎΠ»ΠΎΠΊΠΎ?", + "quests.tfg_tips.get_milk.desc": "&dМолоко&r ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΎΡ‚ 3 Ρ€Π°Π·Π½Ρ‹Ρ… ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ…: &aΠšΠΎΡ€ΠΎΠ²&r, &aКоз&r ΠΈ &aΠ―ΠΊΠΎΠ².&r\nΠ₯отя ΠΌΠΎΠ»ΠΎΠΊΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΈΡ‚ΡŒ Π² сыром Π²ΠΈΠ΄Π΅ для удовлСтворСния &bΡ€Π°Ρ†ΠΈΠΎΠ½Π°&r Π² ΠΌΠΎΠ»ΠΎΡ‡Π½Ρ‹Ρ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Π°Ρ…, Π΅Π³ΠΎ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ Π² вкусный сыр.\n\nΠ§Ρ‚ΠΎΠ±Ρ‹ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ этот квСст, Π΄ΠΎΠ±ΡƒΠ΄ΡŒΡ‚Π΅ Π²Π΅Π΄Ρ€ΠΎ с Π»ΡŽΠ±Ρ‹ΠΌ Π²ΠΈΠ΄ΠΎΠΌ ΠΌΠΎΠ»ΠΎΠΊΠ° ΠΏΠΎ Π²Π°ΡˆΠ΅ΠΌΡƒ Π²Ρ‹Π±ΠΎΡ€Ρƒ.", + "quests.tfg_tips.get_milk.task": "Π›ΡŽΠ±ΠΎΠ΅ Π²Π΅Π΄Ρ€ΠΎ с ΠΌΠΎΠ»ΠΎΠΊΠΎΠΌ", + "quests.tfg_tips.create_cheese.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ ΠΌΠΎΠ»ΠΎΠΊΠ°: Π‘Ρ‹Ρ€", + "quests.tfg_tips.create_cheese.subtitle": "Π‘Ρ‹Ρ€Π½Ρ‹ΠΉ", + "quests.tfg_tips.create_cheese.desc": "&aМолоко&r ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠ΅Ρ€Π΅Ρ€Π°Π±ΠΎΡ‚Π°Ρ‚ΡŒ Π² &dΠ³ΠΎΠ»ΠΎΠ²ΠΊΠΈ сыра&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠΆΠ½ΠΎ Ρ€Π°Π·ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π² ΠΌΠΈΡ€Π΅ для хранСния ΠΈΠ»ΠΈ Ρ€Π°Π·Ρ€Π΅Π·Π°Ρ‚ΡŒ &aНоТом&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ &dкуски сыра.&r\n\nΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½Π°Ρ информация ΠΎ ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠΈ сыров содСрТится Π² &2ПолСвом руководствС.&r", + "quests.tfg_tips.cheese_aging.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ ΠΌΠΎΠ»ΠΎΠΊΠ°: Π’Ρ‹Π΄Π΅Ρ€ΠΆΠΊΠ° сыра", + "quests.tfg_tips.cheese_aging.subtitle": "Π’ΠΎΠ½ΡŽΡ‡ΠΊΠ°", + "quests.tfg_tips.cheese_aging.desc": "Если Π²Ρ‹ построили &3ΠŸΠΎΠ³Ρ€Π΅Π±&r, Ρ‚ΠΎ Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Ρ€Π°Π·ΠΌΠ΅ΡΡ‚ΠΈΡ‚ΡŒ Π² Π½Π΅ΠΌ &aΠ³ΠΎΠ»ΠΎΠ²ΠΊΠΈ сыра&r для Π²Ρ‹Π΄Π΅Ρ€ΠΆΠΊΠΈ. Π­Ρ‚ΠΎΡ‚ процСсс Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ Π²Ρ€Π΅ΠΌΠ΅Π½ΠΈ, Π½ΠΎ Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°Π΅Ρ‚ срок хранСния. &lНС Ρ€Π°Π·Π±ΠΈΠ²Π°ΠΉΡ‚Π΅ сыр Ρ€ΡƒΠΊΠ°ΠΌΠΈ, ΠΈΠ½Π°Ρ‡Π΅ вСсь процСсс созрСвания Π±ΡƒΠ΄Π΅Ρ‚ потСрян!&r", + "quests.tfg_tips.smoke_cheese.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ ΠΌΠΎΠ»ΠΎΠΊΠ°: ΠšΠΎΠΏΡ‡Π΅Π½ΠΈΠ΅ сыра", + "quests.tfg_tips.smoke_cheese.subtitle": "Π£Π»ΡƒΡ‡ΡˆΠ΅Π½Π½Ρ‹ΠΉ вкусовой ΠΏΡ€ΠΎΡ„ΠΈΠ»ΡŒ", + "quests.tfg_tips.smoke_cheese.desc": "Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠ΄Π²Π΅ΡΠΈΡ‚ΡŒ &aΠšΡƒΡΠΎΠΊ сыра&r Π½Π° &bНитку&r, Ρ€Π°Π·ΠΌΠ΅Ρ‰Π΅Π½Π½ΠΎΠΉ Π½Π°Π΄ &cΠ·Π°ΠΆΠΆΠ΅Π½Π½Ρ‹ΠΌ костром&r, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π·Π°ΠΊΠΎΠΏΡ‚ΠΈΡ‚ΡŒ Π΅Π³ΠΎ.", + "quests.tfg_tips.smoke_cheese.task": "ΠšΡƒΡΠΎΠΊ ΠΊΠΎΠΏΡ‡Π΅Π½ΠΎΠ³ΠΎ сыра", + "quests.tfg_tips.get_meat.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ мяса", + "quests.tfg_tips.get_meat.subtitle": "НС Π·Π°Π±Ρ‹Π²Π°ΠΉ ΠΏΡ€ΠΎ это", + "quests.tfg_tips.get_meat.desc": "Π‘ Π±ΠΎΠ»ΡŒΡˆΠΈΠ½ΡΡ‚Π²Π° ΠΆΠΈΠ²ΠΎΡ‚Π½Ρ‹Ρ… Π²Ρ‹ΠΏΠ°Π΄Π°Π΅Ρ‚ &aмясо&r β€” ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹ΠΉ источник Π±Π΅Π»ΠΊΠ°, Π½ΠΎ с ΠΊΡ€Π°ΠΉΠ½Π΅ ΠΌΠ°Π»Ρ‹ΠΌ сроком хранСния Π² сыром Π²ΠΈΠ΄Π΅.\n\n&bΠ‘Ρ‹Ρ€ΠΎΠ΅ мясо&r ΠΌΠΎΠΆΠ½ΠΎ &3ΡΠΎΠ»ΠΈΡ‚ΡŒ&r, &3ΠΌΠ°Ρ€ΠΈΠ½ΠΎΠ²Π°Ρ‚ΡŒ&r ΠΈ &3ΠΊΠΎΠΏΡ‚ΠΈΡ‚ΡŒ&r для максимального сохранСния, Π½ΠΎ эти процСссы Π΄ΠΎΠ»ΠΆΠ½Ρ‹ ΠΏΡ€ΠΎΠΈΡΡ…ΠΎΠ΄ΠΈΡ‚ΡŒ &cΠ΄ΠΎ&r приготовлСния.", + "quests.tfg_tips.salt_meat.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ мяса: Боль", + "quests.tfg_tips.salt_meat.subtitle": "Π•Ρ‰Π΅ Π½Π΅ Π”ΠΆΠ΅Ρ€ΠΊΠΈ", + "quests.tfg_tips.salt_meat.desc": "&bΠ‘ΠΎΠ»Π΅Π½ΠΈΠ΅&r мяса β€” быстрый ΠΈ ΠΎΡ‚Π½ΠΎΡΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ простой способ Π΅Π³ΠΎ сохранСния. &dБоль&r ΠΌΠΎΠΆΠ½ΠΎ Π΄ΠΎΠ±Ρ‹Ρ‚ΡŒ: ΠΈΠ· &aΠ»ΠΈΠ·ΡƒΠ½Ρ†ΠΎΠ²&r, ΠΏΠΎ &aΠΈΠ½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Π°ΠΌ&r Π½Π°Π΄ соляными ΠΆΠΈΠ»Π°ΠΌΠΈ, нСпосрСдствСнно ΠΈΠ· &aсоляных ΠΆΠΈΠ»&r ΠΈΠ»ΠΈ Π²Ρ‹ΠΏΠ°Ρ€ΠΈΠ²Π°Π½ΠΈΠ΅ΠΌ &aсолСной Π²ΠΎΠ΄Ρ‹&r Π² &3ΠΊΠΎΡ‚Π»Π΅.&r", + "quests.tfg_tips.salt_meat.task": "Π‘ΠΎΠ»Π΅Π½ΠΎΠ΅ мясо", + "quests.tfg_tips.smoke_meat.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ мяса: ΠšΠΎΠΏΡ‡Π΅Π½ΠΈΠ΅", + "quests.tfg_tips.smoke_meat.subtitle": "ΠšΠΎΠΏΡ‡Π΅Π½Π΅Π½ΡŒΠΊΠΈΠΉ", + "quests.tfg_tips.smoke_meat.desc": "МоТно ΠΏΠΎΠ²Π΅ΡΠΈΡ‚ΡŒ Π΄ΠΎ 8 кусков &aΠ‘Ρ‹Ρ€ΠΎΠ³ΠΎ мяса&r Π½Π° &bНитку&r Π½Π°Π΄ &cΠ·Π°ΠΆΠΆΠ΅Π½Π½Ρ‹ΠΌ костром&r для копчСния. &lМясо Π΄ΠΎΠ»ΠΆΠ½ΠΎ ΠΏΡ€Π΅Π΄Π²Π°Ρ€ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΠΏΡ€ΠΎΠΉΡ‚ΠΈ этап засаливания.&r \nΠ’Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ &dΠΏΠΎΡΠΎΠ»ΠΈΡ‚ΡŒ&r Π΅Π³ΠΎ ΠΏΠ΅Ρ€Π΅Π΄ ΠΊΠΎΠΏΡ‡Π΅Π½ΠΈΠ΅ΠΌ.", + "quests.tfg_tips.smoke_meat.task": "ΠšΠΎΠΏΡ‡Π΅Π½ΠΎΠ΅ мясо", + "quests.tfg_tips.bacon.title": "Π‘Π΅ΠΊΠΎΠ½", + "quests.tfg_tips.bacon.subtitle": "Π₯рустящий", + "quests.tfg_tips.bacon.desc": "&aΠ‘Π΅ΠΊΠΎΠ½&r ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ ΠΈΠ· &bΠΊΠΎΠΏΡ‡Π΅Π½ΠΎΠΉ свинины&r с Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ΠΌ соли, Ρ‡Ρ‚ΠΎ Π΄Π°Π΅Ρ‚ &dΠ² 4 Ρ€Π°Π·Π° большС&r мяса!\n\nΠŸΡ€ΠΈΠΌΠ΅Ρ‡Π°Π½ΠΈΠ΅: свинина &lΠ΄ΠΎΠ»ΠΆΠ½Π° Π±Ρ‹Ρ‚ΡŒ ΠΏΡ€ΠΎΠΊΠΎΠΏΡ‡Π΅Π½Π½ΠΎΠΉ&r, ΠΏΡ€Π΅ΠΆΠ΄Π΅ Ρ‡Π΅ΠΌ Π΅Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΠΏΡ€Π΅Π²Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ Π² Π±Π΅ΠΊΠΎΠ½.", + "quests.tfg_tips.bacon.task": "ΠšΠΎΠΏΡ‡Π΅Π½ΠΎΠ΅ мясо", + "quests.tfg_tips.cook_meat.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ мяса: ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅", + "quests.tfg_tips.cook_meat.subtitle": "ΠšΠ°ΠΏΠΈΡ‚Π°Π½ ΠΎΡ‡Π΅Π²ΠΈΠ΄Π½ΠΎΡΡ‚ΡŒ Π² Π΄Π²ΠΎΠΉΠ½Π΅.", + "quests.tfg_tips.cook_meat.desc": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΈΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΏΠΎΡ‚Π΅Π½Ρ†ΠΈΠ°Π»ΡŒΠ½ΠΎ ΠΎΠ±Π΅ΡΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ собствСнныС свойства консСрвации. Π’Π°ΠΌ слСдуСт Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΡŒ &aМясо&r Π»ΠΈΠ±ΠΎ Π½Π° &bΠ“Ρ€ΠΈΠ»Π΅ ΠΈΠ· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°&r, Π»ΠΈΠ±ΠΎ Π½Π° &bΠ’Π΅Ρ€Ρ…Π½Π΅ΠΉ части ΠΏΠ΅Ρ‡ΠΈ!&r\nΠ”Ρ€ΡƒΠ³ΠΈΠ΅ ΠΌΠ΅Ρ‚ΠΎΠ΄Ρ‹ приготовлСния ΠΌΠΎΠ³ΡƒΡ‚ Π½Π΅ Π΄Π°Ρ‚ΡŒ Π½ΠΈΠΊΠ°ΠΊΠΈΡ… свойств ΠΈΠ»ΠΈ Π΄Π°ΠΆΠ΅ Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ ΠΎΡ‚Ρ€ΠΈΡ†Π°Ρ‚Π΅Π»ΡŒΠ½Ρ‹Π΅, ΡΠΎΠΊΡ€Π°Ρ‰Π°ΡŽΡ‰ΠΈΠ΅ срок хранСния.\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o &bΠ“Ρ€ΠΈΠ»ΡŒ ΠΈΠ· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π°&f ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ Ρ‡Π°ΡΡ‚ΡŒΡŽ структуры &dΠŸΠ΅Ρ‡ΠΈ&f.", + "quests.tfg_tips.cook_meat.task.1": "ΠšΡƒΡΠΎΠΊ ΠΆΠ°Ρ€Π΅Π½ΠΎΠ³ΠΎ Π½Π° Π³Ρ€ΠΈΠ»Π΅ ΠΈΠ»ΠΈ Π·Π°ΠΏΠ΅Ρ‡Π΅Π½Π½ΠΎΠ³ΠΎ Π² ΠΏΠ΅Ρ‡ΠΈ мяса.", + "quests.tfg_tips.cook_meat.task.2": "Π“Ρ€ΠΈΠ»ΡŒ ΠΈΠ· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ ΠΆΠ΅Π»Π΅Π·Π° ΠΈΠ»ΠΈ ВСрхняя Ρ‡Π°ΡΡ‚ΡŒ ΠΏΠ΅Ρ‡ΠΈ", + "quests.tfg_tips.get_veggie.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ ΠΎΠ²ΠΎΡ‰Π΅ΠΉ", + "quests.tfg_tips.get_veggie.subtitle": "Они ΠΏΠΎΠ»Π΅Π·Π½Ρ‹ для тСбя", + "quests.tfg_tips.get_veggie.desc": "&&aΠžΠ²ΠΎΡ‰ΠΈ&r Π² основном Π²ΡΡ‚Ρ€Π΅Ρ‡Π°ΡŽΡ‚ΡΡ Π² Π΄ΠΈΠΊΠΎΠΉ ΠΏΡ€ΠΈΡ€ΠΎΠ΄Π΅ ΠΈΠ»ΠΈ Π²Ρ‹Ρ€Π°Ρ‰ΠΈΠ²Π°ΡŽΡ‚ΡΡ Π½Π° Ρ„Π΅Ρ€ΠΌΠ°Ρ…. Π˜Ρ… ΠΌΠΎΠΆΠ½ΠΎ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ &bΠ·Π°ΠΌΠ°Ρ€ΠΈΠ½ΠΎΠ²Π°Ρ‚ΡŒ.&r", + "quests.tfg_tips.get_fruit.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ Ρ„Ρ€ΡƒΠΊΡ‚ΠΎΠ²", + "quests.tfg_tips.get_fruit.subtitle": "Π’ΠΊΡƒΡΠ½ΡΡˆΠΊΠ°!", + "quests.tfg_tips.get_fruit.desc": "&aΠ€Ρ€ΡƒΠΊΡ‚Ρ‹&r Π² основном Π²ΡΡ‚Ρ€Π΅Ρ‡Π°ΡŽΡ‚ΡΡ Π² Π΄ΠΈΠΊΠΎΠΉ ΠΏΡ€ΠΈΡ€ΠΎΠ΄Π΅: ΠΈΡ… ΠΌΠΎΠΆΠ½ΠΎ ΡΠΎΠ±Ρ€Π°Ρ‚ΡŒ с &bΠ΄Π΅Ρ€Π΅Π²ΡŒΠ΅Π², кустов&r, Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΏΡ€ΠΈ Ρ€Π°Π·Ρ€Π΅Π·Π°Π½ΠΈΠΈ &bΠ°Ρ€Π±ΡƒΠ·ΠΎΠ²&r ΠΈ &bΡ‚Ρ‹ΠΊΠ².&r Π’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ ΠΎΠ²ΠΎΡ‰Π΅ΠΉ, Ρ„Ρ€ΡƒΠΊΡ‚Ρ‹ ΠΈΠΌΠ΅ΡŽΡ‚ ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Ρ‹ΠΉ способ консСрвации β€” &dΡΡƒΡˆΠΊΡƒ&r, Π²Π΄ΠΎΠ±Π°Π²ΠΎΠΊ ΠΊ &bΠΌΠ°Ρ€ΠΈΠ½ΠΎΠ²Π°Π½ΠΈΡŽ.&r\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.task.1": "Π’Ρ‹ΡΡƒΡˆΠ΅Π½Π½Ρ‹ΠΉ Ρ„Ρ€ΡƒΠΊΡ‚", + "quests.tfg_tips.dry_fruit.task.2": "Настил для ΡΡƒΡˆΠΊΠΈ ΠΈΠ»ΠΈ БолнСчная ΡΡƒΡˆΠΈΠ»ΠΊΠ°", + "quests.tfg_tips.get_grain.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ Π·Π΅Ρ€Π½ΠΎΠ²Ρ‹Ρ… ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€", + "quests.tfg_tips.get_grain.subtitle": "Π£Π³Π»Π΅Π²ΠΎΠ΄Ρ‹", + "quests.tfg_tips.get_grain.desc": "&aΠ—Π΅Ρ€Π½ΠΎΠ²Ρ‹Π΅ ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€Ρ‹&r ΠΎΡ‚Π½ΠΎΡΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ распространСны ΠΈ Π»Π΅Π³ΠΊΠΎ выращиваСтся. Π₯отя нСобработанная ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€Π° хранится Π½Π΅Π΄ΠΎΠ»Π³ΠΎ, ΡΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‚ способы Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΡ‚ΡŒ Π΅Π³ΠΎ срок хранСния.", + "quests.tfg_tips.get_grain.task": "Π›ΡŽΠ±Π°Ρ зСрновая ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€Π°", + "quests.tfg_tips.process_grain.title": "ΠšΠΎΠ½ΡΠ΅Ρ€Π²Π°Ρ†ΠΈΡ Π·Π΅Ρ€Π½ΠΎΠ²Ρ‹Ρ… ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€: ΠžΠ±Ρ€Π°Π±ΠΎΡ‚ΠΊΠ° Π½ΠΎΠΆΠΎΠΌ", + "quests.tfg_tips.process_grain.subtitle": "Π­Ρ‚ΠΎ Π±Ρ‹Π»ΠΎ Π»Π΅Π³ΠΊΠΎ.", + "quests.tfg_tips.process_grain.desc": "Если ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ &aΠ·Π΅Ρ€Π½ΠΎΠ²Ρ‹Π΅ ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€Ρ‹&r с Π½ΠΎΠΆΠΎΠΌ Π½Π° вСрстакС, Ρ‚ΠΎ Π²Ρ‹ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚Π΅ &dΠšΡ€ΡƒΠΏΡƒ&r, которая хранится дольшС, ΠΈ Π½Π΅ΠΌΠ½ΠΎΠ³ΠΎ соломы.", + "quests.tfg_tips.passive_preservation.title": "Пассивная консСрвация", + "quests.tfg_tips.passive_preservation.subtitle": "ΠžΠΊΠ°Π·Ρ‹Π²Π°Π΅Ρ‚ΡΡ, Ρ…Ρ€Π°Π½ΠΈΡ‚ΡŒ Π΅Π΄Ρƒ Π½Π° ΠΏΠΎΠ»Ρƒ β€” Π½Π΅ Π»ΡƒΡ‡ΡˆΠ°Ρ идСя", + "quests.tfg_tips.passive_preservation.desc": "Π‘ΡƒΡ‰Π΅ΡΡ‚Π²ΡƒΡŽΡ‚ Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Π΅ способы Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠΉ сохранности ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ² ΠΏΡ€ΠΈ Ρ…Ρ€Π°Π½Π΅Π½ΠΈΠΈ. Рядом с квСстом прСдставлСны Ρ‚Ρ€ΠΈ ΠΎΡ‚Π»ΠΈΡ‡Π½Ρ‹Ρ… Π²Π°Ρ€ΠΈΠ°Π½Ρ‚Π°.", + "quests.tfg_tips.vessel_preservation.title": "Основная консСрвация: Босуды", + "quests.tfg_tips.vessel_preservation.subtitle": "Π›ΡƒΡ‡ΡˆΠ΅, Ρ‡Π΅ΠΌ просто расхвалСнныС Ρ€ΡŽΠΊΠ·Π°ΠΊΠΈ.", + "quests.tfg_tips.vessel_preservation.desc": "Π₯Ρ€Π°Π½Π΅Π½ΠΈΠ΅ Π΅Π΄Ρ‹ Π² &aБосудС&r ΠΈΠ»ΠΈ &aΠ‘ΠΎΠ»ΡŒΡˆΠΎΠΌ сосудС&r (ΠΏΡ€Π°Π²Π΄Π°, Π½Π΅ Π·Π°Π±Ρ‹Π²Π°ΠΉΡ‚Π΅ Π΅Π³ΠΎ Π·Π°ΠΏΠ΅Ρ‡Π°Ρ‚Ρ‹Π²Π°Ρ‚ΡŒ), Π΄Π°Π΅Ρ‚ свойство &dГСрмСтичности&r, увСличивая срок хранСния ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ² Π² ΠΏΠΎΡ…ΠΎΠ΄Π½Ρ‹Ρ… условиях. ИдСально для экспСдиций!", + "quests.tfg_tips.cellar.title": "ΠŸΠΎΠ³Ρ€Π΅Π±", + "quests.tfg_tips.cellar.subtitle": "Подвал ΠΌΠ°ΠΌΡ‹", + "quests.tfg_tips.cellar.desc": "&3ΠŸΠΎΠ³Ρ€Π΅Π±&r β€” это многоблочная структура для Π΄Π»ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ хранСния ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠ². ΠŸΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ Π΄ΠΎΠ»ΠΆΠ½Ρ‹ Ρ€Π°Π·ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒΡΡ Π½Π° &aΠŸΠΎΠ»ΠΊΠ°Ρ… для Π΅Π΄Ρ‹&r ΠΈ &aΠ’Π΅ΡˆΠ°Π»ΠΊΠ°Ρ….&r Π—Π΄Π΅ΡΡŒ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ &bΠ²Ρ‹Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ сыр.&r\nΠ˜Π½ΡΡ‚Ρ€ΡƒΠΊΡ†ΠΈΡŽ ΠΏΠΎ постройкС &3ΠΏΠΎΠ³Ρ€Π΅Π±Π°&r смотритС Π² &2ПолСвом руководствС.&r", + "quests.tfg_tips.cellar.task": "Π›ΡŽΠ±ΠΎΠΉ Π²Ρ…ΠΎΠ΄ для ΠΏΠΎΠ³Ρ€Π΅Π±Π°.", + "quests.tfg_tips.refrigerator.title": "Π₯олодильник", + "quests.tfg_tips.refrigerator.subtitle": "Π­Ρ‚Π° ΡˆΡ‚ΡƒΠΊΠ° ΠΌΠΎΠΆΠ΅Ρ‚ Π±Ρ‹Ρ‚ΡŒ ΠΎΡ‡Π΅Π½ΡŒ ΠΌΠΎΡ‰Π½ΠΎΠΉ", + "quests.tfg_tips.refrigerator.desc": "Если Π²Ρ‹ достигли эпохи &bMV&r, Π²Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ &dΠ₯олодильник&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ потрСбляСт ΡΠ½Π΅Ρ€Π³ΠΈΡŽ, Π½ΠΎ обСспСчиваСт &oΠ»ΡƒΡ‡ΡˆΠΈΠΉ&r ΡƒΠ½ΠΈΠ²Π΅Ρ€ΡΠ°Π»ΡŒΠ½Ρ‹ΠΉ эффСкт сохранности для всСх Ρ‚ΠΈΠΏΠΎΠ² Π΅Π΄Ρ‹: сырой, ΠΏΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½ΠΎΠΉ ΠΈ ΠΊΠΎΠΌΠ±ΠΈΠ½ΠΈΡ€ΠΎΠ²Π°Π½Π½ΠΎΠΉ (Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€, Π±ΡƒΡ‚Π΅Ρ€Π±Ρ€ΠΎΠ΄ΠΎΠ²)", + "quests.tfg_tips.cellar_blocks.title": "Π₯Ρ€Π°Π½ΠΈΠ»ΠΈΡ‰Π° для ΠΏΠΎΠ΄Π²Π°Π»Π°", + "quests.tfg_tips.cellar_blocks.subtitle": "Π’Π΅Ρ‰ΠΈ, Π² ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΌΠΎΠΆΠ½ΠΎ ΡΠΊΠ»Π°Π΄Ρ‹Π²Π°Ρ‚ΡŒ Π΅Π΄Ρƒ", + "quests.tfg_tips.cellar_blocks.desc": "&bПолки для Π΅Π΄Ρ‹&r подходят для хранСния практичСски Π»ΡŽΠ±Ρ‹Ρ… Π²ΠΈΠ΄ΠΎΠ² ΠΏΠΈΡ‰ΠΈ. &bΠ’Π΅ΡˆΠ°Π»ΠΊΠΈ&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для &aМяса&r ΠΈ &aЧСснока.&r Π•Π΄Π°, хранящаяся Ρ‚Π°ΠΊΠΈΠΌ ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ, ΠΏΠΎΠ»ΡƒΡ‡Π°Π΅Ρ‚ ΠΌΠΎΡ‰Π½Ρ‹ΠΉ эффСкт сохранности, прСвосходящий свойства &dсосудов.&r", + "quests.tfg_tips.beneath.title": "Π‘Π΅Π·Π΄Π½Π°", + "quests.tfg_tips.beneath.subtitle": "ΠŸΡƒΡ‚Π΅ΡˆΠ΅ΡΡ‚Π²ΠΈΠ΅ ΠΊ Ρ†Π΅Π½Ρ‚Ρ€Ρƒ Π—Π΅ΠΌΠ»ΠΈ", + "quests.tfg_tips.beneath.desc": "ΠžΡ‡Π΅Π½ΡŒ Π³Π»ΡƒΠ±ΠΎΠΊΠΎ ΠΏΠΎΠ΄ Π·Π΅ΠΌΠ»Π΅ΠΉ, Π·Π° &dΠ±Π΅Π΄Ρ€ΠΎΠΊΠΎΠΌ&r, Π²Ρ‹ Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ &4Π‘Π΅Π·Π΄Π½Ρƒ&r β€” Π·Π°ΠΏΡƒΡ‚Π°Π½Π½ΡƒΡŽ ΡΠ΅Ρ‚ΡŒ ΠΏΠ΅Ρ‰Π΅Ρ€, Π½Π°ΠΏΠΎΠ»Π½Π΅Π½Π½ΡƒΡŽ опасностями, странной Ρ„Π»ΠΎΡ€ΠΎΠΉ ΠΈ Ρ„Π°ΡƒΠ½ΠΎΠΉ. Π₯отя посСщСниС &4Π‘Π΅Π·Π΄Π½Ρ‹&r ΡΠΎΠ²Π΅Ρ€ΡˆΠ΅Π½Π½ΠΎ Π½Π΅ΠΎΠ±ΡΠ·Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ, Π½ΠΎ ΠΎΠ½ΠΎ содСрТит мноТСство рСсурсов ΠΈ Ρ‚ΠΎΠ³ΠΎ, Ρ‡Ρ‚ΠΎ упростит Π²Π°ΡˆΡƒ Тизнь.", + "quests.tfg_tips.beneath_prep.title": "ΠŸΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΊΠ°", + "quests.tfg_tips.beneath_prep.subtitle": "Π‘Π΅Π·Π΄Π½Π° Π²Ρ€Π°ΠΆΠ΄Π΅Π±Π½Π°, Π±ΡƒΠ΄ΡŒ Π³ΠΎΡ‚ΠΎΠ²", + "quests.tfg_tips.beneath_prep.desc": "&4Π‘Π΅Π·Π΄Π½Π°&r β€” ΠΊΡ€Π°ΠΉΠ½Π΅ враТдСбная срСда. Из-Π·Π° ΠΎΠ³Ρ€ΠΎΠΌΠ½ΠΎΠΉ Π³Π»ΡƒΠ±ΠΈΠ½Ρ‹ срСдняя Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° здСсь всСгда &cΠ²Ρ‹ΡˆΠ΅ 15Β°C&r ΠΈ ΠΏΠΎΠ²Ρ‹ΡˆΠ°Π΅Ρ‚ΡΡ ΠΏΠΎ ΠΌΠ΅Ρ€Π΅ погруТСния. НС говоря ΡƒΠΆΠ΅ ΠΎ количСствС Π²Ρ€Π°ΠΆΠ΄Π΅Π±Π½Ρ‹Ρ… сущСств, Π½Π°ΡΠ΅Π»ΡΡŽΡ‰ΠΈΡ… эти ΠΏΠ΅Ρ‰Π΅Ρ€Ρ‹.\nБвязанныС с этим квСсты ΠΎΠ±Π΅ΡΠΏΠ΅Ρ‡ΠΈΠ²Π°ΡŽΡ‚ Π±Π°Π·ΠΎΠ²ΡƒΡŽ ΠΏΠΎΠ΄Π³ΠΎΡ‚ΠΎΠ²ΠΊΡƒ ΠΊ Π²Π°ΡˆΠ΅ΠΌΡƒ ΠΏΡ€ΠΈΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΡŽ.", + "quests.tfg_tips.beneath_temp_management.title": "Активный ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹", + "quests.tfg_tips.beneath_temp_management.subtitle": "Как быстро ΠΎΡ…Π»Π°Π΄ΠΈΡ‚ΡŒΡΡ", + "quests.tfg_tips.beneath_temp_management.desc": "Π’ &4Π‘Π΅Π·Π΄Π½Π΅&r, Π³Π΄Π΅ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° довольно высокая, стоит Π²Π·ΡΡ‚ΡŒ с собой &aΠ’ΠΎΠ΄Ρƒ&r для экстрСнного охлаТдСния ΠΈΠ»ΠΈ &bΠŸΠ»ΠΎΡ‚Π½Ρ‹ΠΉ Π»Π΅Π΄&r, Π΄ΠΎΠ±Ρ‹Π²Π°Π΅ΠΌΡ‹ΠΉ Π² полярных Π±ΠΈΠΎΠΌΠ°Ρ…, Ссли ΠΏΠ»Π°Π½ΠΈΡ€ΡƒΠ΅Ρ‚Π΅ ΡΠΎΠ·Π΄Π°Ρ‚ΡŒ Π²Ρ€Π΅ΠΌΠ΅Π½Π½ΡƒΡŽ Π±Π°Π·Ρƒ.\n\n&bΠŸΠ»ΠΎΡ‚Π½Ρ‹ΠΉ Π»Π΅Π΄&r Ρ‚Π°ΠΊ ΠΆΠ΅ ΠΌΠΎΠΆΠ½ΠΎ ΡΠ΄Π΅Π»Π°Ρ‚ΡŒ Ссли ΡƒΠΆΠ΅ достаточно Ρ…ΠΎΠ»ΠΎΠ΄Π½ΠΎ для выпадСния снСга ΠΈ образования льда Π½Π° Π²ΠΎΠ΄ΠΎΠ΅ΠΌΠ°Ρ….", + "quests.tfg_tips.beneath_clothes.title": "ΠŸΠ°ΡΡΠΈΠ²Π½Ρ‹ΠΉ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρ‹", + "quests.tfg_tips.beneath_clothes.subtitle": "ПассивноС ΠΎΡ…Π»Π°ΠΆΠ΄Π΅Π½ΠΈΠ΅", + "quests.tfg_tips.beneath_clothes.desc": "&bОдСТда&r Ρ‚Π°ΠΊΠΆΠ΅ ΠΏΠΎΠΌΠΎΠ³Π°Π΅Ρ‚ Ρ€Π΅Π³ΡƒΠ»ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ. ΠŸΠ΅Ρ€Π΅Π΄ ΠΏΠΎΡ…ΠΎΠ΄ΠΎΠΌ Π² &4Π‘Π΅Π·Π΄Π½Ρƒ&r ΠΏΡ€ΠΎΡ‰Π΅ всСго ΡΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΡŒ &dΠžΠ΄Π΅ΠΆΠ΄Ρƒ ΠΈΠ· Π΄ΠΆΡƒΡ‚ΠΎΠ²ΠΎΠΉ Ρ‚ΠΊΠ°Π½ΠΈ.&r\n\n&dШСлковая ΠΎΠ΄Π΅ΠΆΠ΄Π°&r Ρ‚Ρ€Π΅Π±ΡƒΠ΅Ρ‚ &aНитСй&r, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π² большом количСствС ΠΌΠΎΠΆΠ½ΠΎ Π½Π°ΠΉΡ‚ΠΈ Π² Π±ΠΈΠΎΠΌΠ΅ &cΠŸΠ°ΡƒΡ‡ΡŒΠ΅ Π»ΠΎΠ³ΠΎΠ²ΠΎ.&r\n\nЕсли Ρƒ вас Π΅ΡΡ‚ΡŒ доступ ΠΊ &9Π‘ΠΈΠ½Π΅ΠΉ стали&r, Ρ‚ΠΎ сущСствуСт Π±ΠΎΠ»Π΅Π΅ эффСктивный Π²Π°Ρ€ΠΈΠ°Π½Ρ‚...", + "quests.tfg_tips.blue_steel_diving.title": "Π›Π°Π²ΠΎΠ»Π°Π·Π½ΠΎΠ΅ снаряТСниС ΠΈΠ· Π‘ΠΈΠ½Π΅ΠΉ стали", + "quests.tfg_tips.blue_steel_diving.subtitle": "ИдСально для принятия Ρ‚Π΅ΠΏΠ»Ρ‹Ρ…, Π»Π°Π²ΠΎΠ²Ρ‹Ρ… Π²Π°Π½Π½", + "quests.tfg_tips.blue_steel_diving.desc": "&9Π›Π°Π²ΠΎΠ»Π°Π·Π½ΠΎΠ΅ снаряТСниС ΠΈΠ· Π‘ΠΈΠ½Π΅ΠΉ стали&r β€” это особый Π½Π°Π±ΠΎΡ€ Π±Ρ€ΠΎΠ½ΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ Π΄Π΅Π»Π°Π΅Ρ‚ вас ΠΏΠΎΠ»Π½ΠΎΡΡ‚ΡŒΡŽ нСуязвимым ΠΊ &cΠ»Π°Π²Π΅&r ΠΏΡ€ΠΈ ношСнии. ПониТСнная &aΡ‚Π΅ΠΏΠ»ΠΎΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Π°&r, Π½ΠΎ высокая &bтСплоизоляция&r ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΈΠ²Π°Ρ‚ΡŒ ΡΡ‚Π°Π±ΠΈΠ»ΡŒΠ½ΡƒΡŽ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ Ρ‚Π΅Π»Π° Π² &4Π‘Π΅Π·Π΄Π½Π΅.&r", + "quests.tfg_tips.juicer.title": "Π‘ΠΎΠΊΠΎΠ²Ρ‹ΠΆΠΈΠΌΠ°Π»ΠΊΠ°", + "quests.tfg_tips.juicer.subtitle": "УтоляСм ΠΆΠ°ΠΆΠ΄Ρƒ ΠΏΠΎ Π½Π΅ΠΌΠ½ΠΎΠ³Ρƒ.", + "quests.tfg_tips.juicer.desc": "&3Π‘ΠΎΠΊΠΎΠ²Ρ‹ΠΆΠΈΠΌΠ°Π»ΠΊΠ°&r β€” это ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈΠ·Π²Π»Π΅ΠΊΠ°Ρ‚ΡŒ ΡΠΊΡ€Ρ‹Ρ‚ΡƒΡŽ Π²Π»Π°Π³Ρƒ ΠΈΠ· &aΠ€Ρ€ΡƒΠΊΡ‚ΠΎΠ²&r ΠΈ &aΠ“Ρ€ΠΈΠ±ΠΎΠ²&r, прСвращая Π΅Π΅ Π² ΠΏΡ€ΠΈΠ³ΠΎΠ΄Π½ΡƒΡŽ для ΠΏΠΈΡ‚ΡŒΡ &dΠ²ΠΎΠ΄Ρƒ.&r\n\nΠ’ΠΎΠ΄Π° встрСчаСтся Π² основном Π½Π° Π²Π΅Ρ€Ρ…Π½ΠΈΡ… уровнях &4Π‘Π΅Π·Π΄Π½Ρ‹&r. Π§Π΅ΠΌ Π³Π»ΡƒΠ±ΠΆΠ΅ Π²Ρ‹ ΡΠΏΡƒΡΠΊΠ°Π΅Ρ‚Π΅ΡΡŒ, Ρ‚Π΅ΠΌ Π΅Π΅ мСньшС. Однако &aΠ“Ρ€ΠΈΠ±Ρ‹&r Π² &4Π‘Π΅Π·Π΄Π½Π΅&r ΠΎΡ‡Π΅Π½ΡŒ распространСны, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ, надСюсь, Π²Ρ‹ Π½Π΅ ΡƒΠΌΡ€Π΅Ρ‚Π΅ ΠΎΡ‚ ΠΆΠ°ΠΆΠ΄Ρ‹!", + "quests.tfg_tips.how_to_go_beneath.title": "Как ΠΏΠΎΠΏΠ°ΡΡ‚ΡŒ Π² Π‘Π΅Π·Π΄Π½Ρƒ", + "quests.tfg_tips.how_to_go_beneath.subtitle": "Обсидиан Π½Π΅ трСбуСтся", + "quests.tfg_tips.how_to_go_beneath.desc": "Для достиТСния &4Π‘Π΅Π·Π΄Π½Ρ‹&r Π’Π°ΠΌ Π½ΡƒΠΆΠ½ΠΎ ΠΏΡ€ΠΎΡΡ‚ΠΎΡΡ‚ΡŒ Π½Π° &bΠ‘Π΅Π΄Ρ€ΠΎΠΊΠ΅ Π’Π΅Ρ€Ρ…Π½Π΅Π³ΠΎ ΠΌΠΈΡ€Π°&r нСсколько сСкунд, послС Ρ‡Π΅Π³ΠΎ Π²Ρ‹ &oΡ‚Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚ΠΈΡ€ΡƒΠ΅Ρ‚Π΅ΡΡŒ&r Π²Π½ΠΈΠ·.\n\n&3&lΠ‘ΠΎΠ²Π΅Ρ‚:&r&o Π’Ρ‹ сохранитС Ρ‚Π΅ ΠΆΠ΅ ΠΊΠΎΠΎΡ€Π΄ΠΈΠ½Π°Ρ‚Ρ‹ X ΠΈ Z, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ вас ΠΌΠΎΠΆΠ΅Ρ‚ Ρ‚Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚ΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ Π² Π±Π»ΠΎΠΊΠΈ. Однако ΠΎΠΊΠΎΠ»ΠΎ вас появится пустоС пространство 3x3x3, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π½Π΅ Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ Π²Π·ΡΡ‚ΡŒ с собой ΠΎΠΏΠΎΡ€Ρ‹ для ΠΏΡ€ΠΎΠΊΠ»Π°Π΄ΠΊΠΈ ΠΏΡƒΡ‚ΠΈ Π½Π°Ρ€ΡƒΠΆΡƒ!", + "quests.tfg_tips.how_to_go_beneath.task.1": "Π”ΠΎΠ±Π΅Ρ€ΠΈΡ‚Π΅ΡΡŒ Π΄ΠΎ Π±Π΅Π΄Ρ€ΠΎΠΊΠ° ΠΈ постойтС Π½Π° Π½Ρ‘ΠΌ", + "quests.tfg_tips.how_to_go_beneath.task.2": "ΠŸΠΎΡΠ΅Ρ‚ΠΈΡ‚Π΅ Π‘Π΅Π·Π΄Π½Ρƒ", + "quests.tfg_tips.reach_the_beneath.title": "Π”ΠΎΠ±Ρ€ΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°Ρ‚ΡŒ, Π² Π³Π»ΡƒΠ±ΠΈΠ½Ρ‹", + "quests.tfg_tips.reach_the_beneath.subtitle": "Π˜ΠΌΠ΅Π½ΡƒΠ΅ΠΌΠ°Ρ Π² прСданиях ΠΊΠ°ΠΊ Π‘Π΅Π·Π΄Π½Π°", + "quests.tfg_tips.reach_the_beneath.desc": "Как Ρ‚ΠΎΠ»ΡŒΠΊΠΎ Π²Ρ‹ ΠΏΠΎΠΏΠ°Π΄Π΅Ρ‚Π΅ Π² &4Π‘Π΅Π·Π΄Ρƒ&r, сразу создайтС &cΠΌΠ΅Ρ‚ΠΊΡƒ&r Π½Π° ΠΊΠ°Ρ€Ρ‚Π΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π΅ ΠΏΠΎΡ‚Π΅Ρ€ΡΡ‚ΡŒ Π΄ΠΎΡ€ΠΎΠ³Ρƒ Π½Π°Π·Π°Π΄.\n\nΠ’ ΠΎΡ‚Π»ΠΈΡ‡ΠΈΠ΅ ΠΎΡ‚ ванильного Ада, здСсь Π½Π΅Ρ‚ 8-ΠΊΡ€Π°Ρ‚Π½ΠΎΠ³ΠΎ мноТитСля расстояния, Ρ‚Π°ΠΊ Ρ‡Ρ‚ΠΎ Π½Π΅ рассчитывайтС Π½Π° быстрыС пСрСмСщСния ΠΏΠΎ Π’Π΅Ρ€Ρ…Π½Π΅ΠΌΡƒ ΠΌΠΈΡ€Ρƒ!", + "quests.tfg_tips.reach_the_beneath.task": "ΠžΠΊΠ°Π·Π°Ρ‚ΡŒΡΡ Π² Π‘Π΅Π·Π΄Π½Π΅", + "quests.tfg_tips.fuck_go_back.title": "Как ΡΠ±Π΅ΠΆΠ°Ρ‚ΡŒ ΠΈΠ· Π‘Π΅Π·Π΄Π½Ρ‹", + "quests.tfg_tips.fuck_go_back.subtitle": "Мам, Π·Π°Π±Π΅Ρ€ΠΈ мСня, ΠΌΠ½Π΅ ΡΡ‚Ρ€Π°ΡˆΠ½ΠΎ.", + "quests.tfg_tips.fuck_go_back.desc": "Π§Ρ‚ΠΎΠ±Ρ‹ ΠΏΠΎΠΊΠΈΠ½ΡƒΡ‚ΡŒ &4Π‘Π΅Π·Π΄Π½Ρƒ&r, Π΄ΠΎΠ±Π΅Ρ€ΠΈΡ‚Π΅ΡΡŒ Π΄ΠΎ Π²Π΅Ρ€Ρ…Π½ΠΈΡ… ΡƒΡ€ΠΎΠ²Π½Π΅ΠΉ ΠΏΠ΅Ρ‰Π΅Ρ€Π½ΠΎΠΉ систСмы рядом с &dΠΏΠΎΡ‚ΠΎΠ»ΠΊΠΎΠΌ ΠΈΠ· Π±Π΅Π΄Ρ€ΠΎΠΊΠ°.&r Π—Π°Π΄Π΅Ρ€ΠΆΠΈΡ‚Π΅ΡΡŒ Ρ‚Π°ΠΌ Π½Π° нСсколько сСкунд, ΠΈ вас Ρ‚Π΅Π»Π΅ΠΏΠΎΡ€Ρ‚ΠΈΡ€ΡƒΠ΅Ρ‚ ΠΎΠ±Ρ€Π°Ρ‚Π½ΠΎ Π² &bΠ’Π΅Ρ€Ρ…Π½ΠΈΠΉ ΠΌΠΈΡ€&r, Ρ‚ΠΎΡ‡Π½ΠΎ Π² Ρ‚ΠΎ мСсто, ΠΎΡ‚ΠΊΡƒΠ΄Π° Π²Ρ‹ ΠΏΠΎΠΏΠ°Π»ΠΈ Π²Π½ΠΈΠ·.", + "quests.tfg_tips.piglin_bartering.title": "Π’ΠΎΠ²Π°Ρ€ΠΎΠΎΠ±ΠΌΠ΅Π½ с Пиглинами", + "quests.tfg_tips.piglin_bartering.subtitle": "Π’ΠΈΠ΄ΠΈΠΌΠΎ ΠΌΡ‹ здСсь Π½Π΅ ΠΎΠ΄Π½ΠΈ", + "quests.tfg_tips.piglin_bartering.desc": "Π›ΡŽΠ±ΠΎΠΏΡ‹Ρ‚Π½Ρ‹Π΅ ΠΎΠ±ΠΈΡ‚Π°Ρ‚Π΅Π»ΠΈ &4Π‘Π΅Π·Π΄Π½Ρ‹&r Π³ΠΎΡ‚ΠΎΠ²Ρ‹ ΠΏΡ€Π΅Π΄Π»ΠΎΠΆΠΈΡ‚ΡŒ Π²Π°ΠΌ Ρ‚ΠΎΠ²Π°Ρ€Ρ‹. ΠžΠ±ΠΌΠ΅Π½ΠΈΠ²Π°ΠΉΡ‚Π΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ Π½Π° ΠΏΠΎΠ»Π΅Π·Π½Ρ‹Π΅ рСсурсы, Ρ‚Π°ΠΊΠΈΠ΅ ΠΊΠ°ΠΊ: нСбольшоС количСство Ρ€Π°Π·Π»ΠΈΡ‡Π½Ρ‹Ρ… &aΠœΠ΅Ρ‚Π°Π»Π»ΠΎΠ²&r ΠΈΠ»ΠΈ Ρ€Π°Π·Π½ΠΎΠΎΠ±Ρ€Π°Π·Π½Ρ‹Π΅ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹, ΠΊΠ°ΠΊ Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ &aКоТа.&r\nΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½ΠΎΡΡ‚ΠΈ ΠΎ Ρ‚ΠΎΡ€Π³ΠΎΠ²Π»Π΅ смотритС Π² &2ПолСвом руководствС&r.", + "quests.tfg_tips.piglin_disguise.subtitle": "Они Π½ΠΈΠΊΠΎΠ³Π΄Π° Π½Π΅ ΡƒΠ·Π½Π°ΡŽΡ‚...", + "quests.tfg_tips.piglin_disguise.desc": "ЧувствуСтС сСбя Ρ‡ΡƒΠΆΠ°ΠΊΠΎΠΌ?\n &4ΠŸΠΈΠ³Π»ΠΈΠ½Ρ‹&r Π·Π°Π΄ΠΈΡ€Π°ΡŽΡ‚ вас Π² школС ΠΈΠ·-Π·Π° Π²Π½Π΅ΡˆΠ½ΠΎΡΡ‚ΠΈ?\n ΠŸΠΎΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ Π½Π°Π΄Π΅Ρ‚ΡŒ &aΠœΠ°ΡΠΊΠΈΡ€ΠΎΠ²ΠΊΡƒ ΠΏΠΈΠ³Π»ΠΈΠ½Π°&r β€” это ΠΎΡ‚Π²Π΅Π΄Π΅Ρ‚ ΠΎΡ‚ вас лишнСС Π²Π½ΠΈΠΌΠ°Π½ΠΈΠ΅ ΠΈ ΠΏΠΎΠΌΠΎΠΆΠ΅Ρ‚ ΡΠ»ΠΈΡ‚ΡŒΡΡ с Ρ‚ΠΎΠ»ΠΏΠΎΠΉ.", + "quests.tfg_tips.trowel.title": "ΠœΠ°ΡΡ‚Π΅Ρ€ΠΎΠΊ", + "quests.tfg_tips.trowel.subtitle": "Π’Π΄ΠΎΡ…Π½ΠΎΠ²Π»Π΅Π½ΠΎ Quark!", + "quests.tfg_tips.trowel.desc": "&4ΠœΠ°ΡΡ‚Π΅Ρ€ΠΎΠΊ&r β€” это инструмСнт для строитСлСй, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ ΠΌΠΎΠΆΠ΅Ρ‚ &bслучайным ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ Ρ€Π°Π·ΠΌΠ΅Ρ‰Π°Ρ‚ΡŒ Π±Π»ΠΎΠΊΠΈ&r ΠΈΠ· Ρ…ΠΎΡ‚Π±Π°Ρ€Π°. ΠœΠ°ΡΡ‚Π΅Ρ€ΠΎΠΊ Ρ‚Π°ΠΊΠΆΠ΅ ΠΌΠΎΠΆΠ΅Ρ‚ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ ΠΏΡ€ΠΈΠΌΠ΅Π½ΠΈΠΌΡ‹Π΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹, Ρ‡Ρ‚ΠΎΠ±Ρ‹ случайным ΠΎΠ±Ρ€Π°Π·ΠΎΠΌ Π²Π°Ρ€ΡŒΠΈΡ€ΠΎΠ²Π°Ρ‚ΡŒ ΠΏΠ»ΠΈΡ‚ΠΊΡƒ для &5Π΄ΠΎΡ€ΠΎΠ³&r.", + "quests.tfg_tips.lunchbox.title": "Ланчбокс", + "quests.tfg_tips.lunchbox.subtitle": "ΠšΠ°Ρ€ΠΌΠ°Π½Π½Ρ‹ΠΉ Ρ…ΠΎΠ»ΠΎΠ΄ΠΈΠ»ΡŒΠ½ΠΈΠΊ!", + "quests.tfg_tips.lunchbox.desc": "Ланчбоксы ΠΈΠΌΠ΅ΡŽΡ‚ 9 слотов для Π΅Π΄Ρ‹, сохраняя Π΅Π΅ свСТСй дольшС.\nΠžΡ…Π»Π°ΠΆΠ΄Π°ΡŽΡ‰ΠΈΠΉ ланчбокс ΠΎΠ±Π»Π°Π΄Π°Π΅Ρ‚ усилСнным эффСктом, Π½ΠΎ рСгулярно Ρ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ Π»Π΅Π΄ ΠΈΠ»ΠΈ Π»Π΅Π΄ΡΠ½ΡƒΡŽ капсулу, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ со Π²Ρ€Π΅ΠΌΠ΅Π½Π΅ΠΌ Ρ‚Π°ΡŽΡ‚.", + "quests.tfg_tips.lunchbox.task.1": "Π›ΡŽΠ±ΠΎΠΉ ланчбокс", + "quests.tfg_tips.lunchbox.task.2": "Π›ΡŽΠ±ΠΎΠΉ Π±Π»ΠΎΠΊ льда", + "quests.tfg_tips.lunchbox.task.3": "Any Cell containing Liquid Ice Slush", + "quests.tfg_tips.transportation_tips.title": "Π‘ΠΎΠ²Π΅Ρ‚Ρ‹ - Вранспорт", + "quests.tfg_tips.transportation_tips.subtitle": "ΠšΡƒΠ΄Π° ΠΆΠ΅ дСлась Ρ…ΠΎΠ΄ΡŒΠ±Π° Π½Π° своих Π΄Π²ΠΎΠΈΡ…?", + "quests.tfg_tips.tools_tips.title": "Π‘ΠΎΠ²Π΅Ρ‚Ρ‹ - Π˜Π½ΡΡ‚Ρ€ΡƒΠΌΠ΅Π½Ρ‚Ρ‹", + "quests.tfg_tips.tools_tips.subtitle": "Как Π·Π°Ρ‚ΡΠ³ΠΈΠ²Π°Ρ‚ΡŒ ΠΈ ΠΎΡΠ»Π°Π±Π»ΡΡ‚ΡŒ 101.", + "quests.tfg_tips.tools_tips.tools.title": "Π˜Π½ΡΡ‚Ρ€ΡƒΠΌΠ΅Π½Ρ‚Ρ‹", + "quests.tfg_tips.tools_tips.tools.subtitle": "Π’ любом случаС это всСго лишь ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΊ.", + "quests.tfg_tips.tools_tips.tools.desc": "ЕдинствСнноС, Ρ‡Ρ‚ΠΎ ΠΎΡ‚Π»ΠΈΡ‡Π°Π΅Ρ‚ Ρ‡Π΅Π»ΠΎΠ²Π΅ΠΊΠ° ΠΎΡ‚ ΠΆΠΈΠ²ΠΎΡ‚Π½ΠΎΠ³ΠΎ β€” это нашС использованиС &l&bинструмСнтов&r&r. &7&oΠ—Π° ΠΈΡΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠ΅ΠΌ обСзьян, Π΄Π΅Π»ΡŒΡ„ΠΈΠ½ΠΎΠ², Π²ΠΎΡ€ΠΎΠ½, Π²Ρ‹Π΄Ρ€, осьминогов ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΡ…...&r&r Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠΉ свои умСния ΠΈ инструмСнты, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΈΠ·Π²Π»Π΅Ρ‡ΡŒ максимум ΠΈΠ· этого ΠΌΠΈΡ€Π° ΠΈ &5ΡΡΠΊΠΎΠ½ΠΎΠΌΠΈΡ‚ΡŒ сСбС&r усилия.", + "quests.tfg_tips.tools_tips.seed_oil.title": "Π’ΠΎΠΏΠ»ΠΈΠ²ΠΎ для фонаря: Π Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ΅ масло", + "quests.tfg_tips.tools_tips.seed_oil.subtitle": "Когда Π³ΠΎΡ€ΠΈΡ‚, ΠΏΠ°Ρ…Π½Π΅Ρ‚ приятно.", + "quests.tfg_tips.tools_tips.seed_oil.desc": "&dΠ Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ΅ масло&r Π±ΡƒΠ΄Π΅Ρ‚ Π³ΠΎΡ€Π΅Ρ‚ΡŒ Π½Π° протяТСнии &c72&r Π΄Π½Π΅ΠΉ.", + "quests.tfg_tips.tools_tips.seed_oil.task": "Π›ΡŽΠ±ΠΎΠ΅ Π²Π΅Π΄Ρ€ΠΎ Ρ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ масла", + "quests.tfg_tips.tools_tips.soybean_oil.title": "Π’ΠΎΠΏΠ»ΠΈΠ²ΠΎ для фонаря: Π‘ΠΎΠ΅Π²ΠΎΠ΅ масло", + "quests.tfg_tips.tools_tips.soybean_oil.subtitle": "Π€ΠΎΠ½Π°Ρ€ΡŒ Π½Π° Π±Π΅Π»ΠΊΠΎΠ²ΠΎΠΉ Π΄ΠΈΠ΅Ρ‚Π΅", + "quests.tfg_tips.tools_tips.soybean_oil.desc": "&dΠ‘ΠΎΠ΅Π²ΠΎΠ΅ масло&r Π³ΠΎΡ€ΠΈΡ‚ Ρ‚Π°ΠΊ ΠΆΠ΅ Π΄ΠΎΠ»Π³ΠΎ ΠΊΠ°ΠΊ ΠΈ Ρ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠΎΠ½ масло β€” &c72&r дня. ", + "quests.tfg_tips.tools_tips.soybean_oil.task": "Π›ΡŽΠ±ΠΎΠ΅ Π²Π΅Π΄Ρ€ΠΎ соСвого масла", + "quests.tfg_tips.tools_tips.markings.title": "ΠœΠ΅Ρ‚ΠΊΠΈ", + "quests.tfg_tips.tools_tips.markings.subtitle": "БоотвСтствуйтС стандарту OSHA 1910.303", + "quests.tfg_tips.tools_tips.markings.desc": "ΠŸΠΎΡ…ΠΎΠΆΠ΅ Π½Π° &2ΠΌΠ΅Π»&r β€” &d&lΠœΠ΅Ρ‚ΠΊΠΈ&r&r ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ для Π΄Π΅ΠΊΠΎΡ€Π° Π²Π°ΡˆΠΈΡ… повСрхностСй ΠΈ создания Π±ΠΎΠ»Π΅Π΅ атмосфСрной Π±Π°Π·Ρ‹. ΠœΠ΅Ρ‚ΠΊΠΈ ΠΈΠ·Π³ΠΎΡ‚Π°Π²Π»ΠΈΠ²Π°ΡŽΡ‚ΡΡ, сначала создав &bHazard Diamond Wall Marking&r, Π° Π·Π°Ρ‚Π΅ΠΌ с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ ΠΊΠ°ΠΌΠ½Π΅Ρ€Π΅Π·Π° ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΎΡΡ‚Π°Π»ΡŒΠ½Ρ‹Π΅.", + "quests.tfg_tips.tools_tips.markings.task": "Π›ΡŽΠ±ΠΎΠΉ #ags_modernmarkings:markings", + "quests.tfg_tips.tools_tips.cryodesiccation.title": "Бублимация", + "quests.tfg_tips.tools_tips.cryodesiccation.subtitle": "Π€Π°Π±Ρ€ΠΈΠΊΠ° Π½Π΅ Ρ‚Π΅Ρ€ΠΏΠΈΡ‚ пустой\"Π±ΠΎΠ»Ρ‚ΠΎΠ²Π½ΠΈ\".", + "quests.tfg_tips.tools_tips.cryodesiccation.desc": "&l&bБублимация&r&r β€” это процСсс обСзвоТивания ΠΏΠΈΡ‰ΠΈ ΠΏΡ€ΠΈ ΠΎΡ‡Π΅Π½ΡŒ Π½ΠΈΠ·ΠΊΠΈΡ… Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π°Ρ…. ΠŸΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ‹ с характСристикой «Бублимированная» хранятся Π·Π½Π°Ρ‡ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎ дольшС ΠΏΠΎ ΡΡ€Π°Π²Π½Π΅Π½ΠΈΡŽ с Π΄Ρ€ΡƒΠ³ΠΈΠΌΠΈ ΠΌΠ΅Ρ‚ΠΎΠ΄Π°ΠΌΠΈ консСрвации.", + "quests.tfg_tips.tools_tips.harvest_basket.title": "Π›ΡƒΠΊΠΎΡˆΠΊΠΎ", + "quests.tfg_tips.tools_tips.harvest_basket.subtitle": "Для ΠΏΠ΅ΠΊΠ°Ρ€Π΅ΠΉ-ΠΊΠΎΠ½Π΄ΠΈΡ‚Π΅Ρ€ΠΎΠ².", + "quests.tfg_tips.tools_tips.harvest_basket.task": "Π›ΡŽΠ±ΠΎΠ΅ #tfg:harvester", + "quests.tfg_tips.tools_tips.harvest_basket.desc": "&l&2Π›ΡƒΠΊΠΎΡˆΠΊΠΈ (ΠΊΠΎΡ€Π·ΠΈΠ½ΠΊΠΈ)&r&r β€” Π½ΠΎΠ²Ρ‹ΠΉ инструмСнт, созданный ΡΠΏΠ΅Ρ†ΠΈΠ°Π»ΡŒΠ½ΠΎ для &5TFG&r! Π­Ρ‚ΠΈ ΠΊΠΎΡ€Π·ΠΈΠ½Ρ‹ ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ ΡΠΎΠ±ΠΈΡ€Π°Ρ‚ΡŒ Ρ†Π΅Π»Ρ‹Π΅ Π΄Π΅Ρ€Π΅Π²ΡŒΡ ΠΈ кусты с ΠΏΠ»ΠΎΠ΄Π°ΠΌΠΈ ΠΎΠ΄Π½ΠΈΠΌ ΠΊΠ»ΠΈΠΊΠΎΠΌ ПКМ! ΠžΠ±Ρ‹Ρ‡Π½ΠΎΠ΅ &6Π›ΡƒΠΊΠΎΡˆΠΊΠΎ&r ΠΈΠΌΠ΅Π΅Ρ‚ Π±Π°Π·ΠΎΠ²ΡƒΡŽ ΠΏΡ€ΠΎΡ‡Π½ΠΎΡΡ‚ΡŒ &n128&r. Но &3АлюминиСвоС Π»ΡƒΠΊΠΎΡˆΠΊΠΎ&r Π½Π΅ тСряСт прочности ΠΏΡ€ΠΈ использовании.", + "quests.tfg_tips.transportation_tips.rnr_plow.title": "Π’Π΅Π»Π΅ΠΆΠΊΠ° для мощСния", + "quests.tfg_tips.transportation_tips.rnr_plow.subtitle": "РимлянС Π±Ρ‹ Π³ΠΎΡ€Π΄ΠΈΠ»ΠΈΡΡŒ.", + "quests.tfg_tips.transportation_tips.rnr_plow.desc": "Π”ΠΎΡ€ΠΎΠ³ΠΈ β€” это Π·Π°ΠΌΠ΅Ρ‡Π°Ρ‚Π΅Π»ΡŒΠ½ΠΎ! Но ΠΈΠ½ΠΎΠ³Π΄Π° Π½Π°Π΄ΠΎΠ΅Π΄Π°Π΅Ρ‚ Ρ‰Π΅Π»ΠΊΠ°Ρ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΠΉ ΠΊΠ½ΠΎΠΏΠΊΠΎΠΉ ΠΌΡ‹ΡˆΠΈ. ВмСсто Ρ‚ΠΎΠ³ΠΎ Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Π΄ΠΎΡ€ΠΎΠ³ΠΈ для своСй лошади, Β«ΠΏΠΎΠ·Π²ΠΎΠ»ΡŒΡ‚Π΅ вашСй лошади ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Π΄ΠΎΡ€ΠΎΠ³ΠΈ для вас»! Β«Π’Π΅Π»Π΅ΠΆΠΊΠ° для мощСния» β€” это ΡƒΠ½ΠΈΠΊΠ°Π»ΡŒΠ½Π°Ρ Β«Ρ‚Π΅Π»Π΅ΠΆΠΊΠ° Астикор», разработанная для TFG. Π­Ρ‚Π° Ρ‚Π΅Π»Π΅ΠΆΠΊΠ° позволяСт автоматичСски ΡΡ‚Ρ€ΠΎΠΈΡ‚ΡŒ Β«Π΄ΠΎΡ€ΠΎΠ³ΠΈΒ» с Π½Π°Π·Π½Π°Ρ‡Π°Π΅ΠΌΠΎΠΉ ΡˆΠΈΡ€ΠΈΠ½ΠΎΠΉ ΠΈ Π΄Π°ΠΆΠ΅ Ρ€Π΅ΠΆΠΈΠΌΠΎΠΌ случайного Π²Ρ‹Π±ΠΎΡ€Π°.", + "quests.tfg_tips.tools_tips.mattocks.title": "Кайло", + "quests.tfg_tips.tools_tips.mattocks.subtitle": "Когда Π»ΠΎΠΏΠ°Ρ‚Π° Π½Π΅ Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚", + "quests.tfg_tips.tools_tips.mattocks.task0": "Π›ΡŽΠ±ΠΎΠ΅ ΠΊΠ°ΠΉΠ»ΠΎ", + "quests.tfg_tips.tools_tips.mattocks.task1": "Π›ΡŽΠ±ΠΎΠΉ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π» для Π΄ΠΎΡ€ΠΎΠ³ΠΈ", + "quests.tfg_tips.tools_tips.mattocks.desc": "&cКайло&r β€” это Ρ‚Π²ΠΎΠΉ Π³Π»Π°Π²Π½Ρ‹ΠΉ инструмСнт для ΡΡ‚Ρ€ΠΎΠΈΡ‚Π΅Π»ΡŒΡΡ‚Π²Π° Π΄ΠΎΡ€ΠΎΠ³ Π² TFG. Π˜Ρ… ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ, отливая Π² Ρ„ΠΎΡ€ΠΌΡƒ, ΠΊΠ°ΠΊ ΠΈ любой Π΄Ρ€ΡƒΠ³ΠΎΠΉ инструмСнт TFC. Π§Ρ‚ΠΎΠ±Ρ‹ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΉΠ»ΠΎ, ΠΏΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡ΠΈ Π΅Π³ΠΎ Ρ€Π΅ΠΆΠΈΠΌ (клавиша ΠΏΠΎ ΡƒΠΌΠΎΠ»Ρ‡Π°Π½ΠΈΡŽ: &3&lN&r&r) Π½Π° Β«ΠŸΠΎΠ»Π½Ρ‹ΠΉ Π±Π»ΠΎΠΊΒ». \nΠ—Π°Ρ‚Π΅ΠΌ Ρ‚Ρ‹ моТСшь ΠΊΠ»ΠΈΠΊΠ°Ρ‚ΡŒ ПКМ ΠΏΠΎ Π·Π΅ΠΌΠ»Π΅ ΠΈΠ»ΠΈ Ρ‚Ρ€Π°Π²Π΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡƒΡ‚Ρ€Π°ΠΌΠ±ΠΎΠ²Π°Ρ‚ΡŒ Π΅Ρ‘. ПослС этого ΠΌΠΎΠΆΠ½ΠΎ нанСсти &6Π½Π°ΡΡ‹ΠΏΡŒ&r, Π° Π·Π°Ρ‚Π΅ΠΌ ΡƒΠΆΠ΅ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π» Π½Π° Ρ‚Π²ΠΎΠΉ Π²Ρ‹Π±ΠΎΡ€.", + "quests.tfg_tips.tools_tips.base_course.title": "ОснованиС покрытия", + "quests.tfg_tips.tools_tips.base_course.subtitle": "Π€ΡƒΠ½Π΄Π°ΠΌΠ΅Π½Ρ‚ всСх Ρ…ΠΎΡ€ΠΎΡˆΠΈΡ… Π΄ΠΎΡ€ΠΎΠ³.", + "quests.tfg_tips.tools_tips.base_course.task": "ΠŸΠΎΡΠΌΠΎΡ‚Ρ€ΠΈ Π½Π° основаниС покрытия", + "quests.tfg_tips.tools_tips.gravel_roads.title": "Π“Ρ€Π°Π²ΠΈΠΉΠ½Ρ‹Π΅ Π΄ΠΎΡ€ΠΎΠ³ΠΈ", + "quests.tfg_tips.tools_tips.gravel_roads.subtitle": "Вас ΠΆΠ΄Ρ‘Ρ‚ извилистая Π΄ΠΎΡ€ΠΎΠΆΠΊΠ°.", + "quests.tfg_tips.tools_tips.gravel_roads.task": "Π›ΡŽΠ±ΠΎΠΉ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π» для Π³Ρ€Π°Π²ΠΈΠΉΠ½Ρ‹Ρ… Π΄ΠΎΡ€ΠΎΠ³", + "quests.tfg_tips.tools_tips.gravel_roads.desc": "Π­Ρ‚ΠΈ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹, нанСсСнныС Π½Π° основаниС покрытия, ΠΎΠ±Ρ€Π°Π·ΡƒΡŽΡ‚ Π΄ΠΎΡ€ΠΎΠ³ΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΠΎΠ±Π΅ΡΠΏΠ΅Ρ‡ΠΈΠ²Π°ΡŽΡ‚ ΡƒΠ²Π΅Π»ΠΈΡ‡Π΅Π½ΠΈΠ΅ скорости пСрСдвиТСния Π½Π° &b&l10%%&r&r.", + "quests.tfg_tips.tools_tips.brick_roads.title": "Брусчатная Π΄ΠΎΡ€ΠΎΠ³Π°", + "quests.tfg_tips.tools_tips.brick_roads.subtitle": "БкСйтбордисты, Π±Π΅Ρ€Π΅Π³ΠΈΡ‚Π΅ΡΡŒ!", + "quests.tfg_tips.tools_tips.brick_roads.task": "Π›ΡŽΠ±ΠΎΠΉ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π» для брусчатки", + "quests.tfg_tips.tools_tips.brick_roads.desc": "Π­Ρ‚ΠΈ ΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹, нанСсСнныС Π½Π° основаниС покрытия, ΠΎΠ±Ρ€Π°Π·ΡƒΡŽΡ‚ Π΄ΠΎΡ€ΠΎΠ³ΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ ΡƒΠ²Π΅Π»ΠΈΡ‡ΠΈΠ²Π°ΡŽΡ‚ ΡΠΊΠΎΡ€ΠΎΡΡ‚ΡŒ пСрСдвиТСния Π½Π° &b&l20%%&r&r.", + "quests.tfg_tips.tools_tips.concrete_roads.title": "Π‘Π΅Ρ‚ΠΎΠ½Π½Ρ‹Π΅ Π΄ΠΎΡ€ΠΎΠ³ΠΈ", + "quests.tfg_tips.tools_tips.concrete_roads.subtitle": "ΠŸΠΎΡ‡Ρ‚ΠΈ стоят своих усилий.", + "quests.tfg_tips.tools_tips.concrete_roads.desc": "&6Π–ΠΈΠ΄ΠΊΠΈΠΉ Π±Π΅Ρ‚ΠΎΠ½&r ΠΌΠΎΠΆΠ½ΠΎ Π½Π°Π½ΠΎΡΠΈΡ‚ΡŒ Π½Π° основаниС покрытия, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Π΄ΠΎΡ€ΠΎΠ³ΠΈ, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹Π΅ Π΄Π°ΡŽΡ‚ бонус &b&l30%%&r&r ΠΊ скорости пСрСдвиТСния.\n\n&4Π‘ΡƒΠ΄ΡŒ остороТСн&r ΠΏΡ€ΠΈ создании Π±Π΅Ρ‚ΠΎΠ½Π½Ρ‹Ρ… Π΄ΠΎΡ€ΠΎΠ³. НуТно ΡΠΎΠ±Π»ΡŽΠ΄Π°Ρ‚ΡŒ мноТСство ΠΏΡ€Π°Π²ΠΈΠ», Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π½Π΅ ΠΏΠΎΠ»ΡƒΡ‡ΠΈΡ‚ΡŒ ΠΏΠΎΡ‚Ρ€Π΅ΡΠΊΠ°Π²ΡˆΡƒΡŽΡΡ ΠΈΠ»ΠΈ ΠΈΡΠΏΠΎΡ€Ρ‡Π΅Π½Π½ΡƒΡŽ ΠΏΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚ΡŒ. ΠŸΠΎΠ΄Ρ€ΠΎΠ±Π½Ρ‹Π΅ инструкции смотри Π² &3ПолСвом руководствС&r." } \ No newline at end of file diff --git a/kubejs/assets/tfg/lang/tr_tr.json b/kubejs/assets/tfg/lang/tr_tr.json new file mode 100644 index 000000000..81b81f008 --- /dev/null +++ b/kubejs/assets/tfg/lang/tr_tr.json @@ -0,0 +1,331 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "quests.metal_age": "Metalurji Γ‡ağı", + "quests.metal_age.subtitle": "Δ°lk Teknolojik Gelişmeleriniz!.", + "quests.metal_age.weld_bronze_ingots.title": "Bronzu kaynaklama", + "quests.metal_age.weld_bronze_ingots.subtitle": "bunlar kullanacağınΔ± sΓΆylemiştim", + "quests.metal_age.weld_bronze_ingots.desc": "herangi bir bronz Γ§eşidinden 14 tane elde et, sonra onlarΔ± bakΔ±r ΓΆrste kaynakla.\n\n2. kademe ΓΆrs Bizmut Bronzundan, Bronz yada Siyah Bronzdan yapΔ±labilir, 3 tanesini karıştΔ±rmadan yapmak zorundasΔ±n.", + "quests.metal_age.anvil_recycling.title": "Γ–rsΓΌ geri dΓΆnüştΓΌrmek mi?", + "quests.metal_age.anvil_recycling.subtitle": "14 kΓΌlΓ§e fazla gelmeye başladΔ± değil mi?", + "quests.metal_age.anvil_recycling.desc": "yeni kademe ΓΆrse geΓ§tiğin zaman (BakΔ±rdan Bronza, Bronzdan İşlenmiş Demire gibi olmak ΓΌzere), ΓΆnceki kademe ΓΆrs işe yaramaz hale gelir(bir nevi).\n\nHer neyse, metalden yapΔ±ldığından ΓΆtΓΌrΓΌ, you &ocan and should&r melt the previous tier of Anvil back into its liquid metal form!\nGrab a Vessel and place it on the right hand side of the Charcoal Forge interface, then place the Anvil and slowly heat it until it reaches the melting temperature. The molten metal will be deposited inside the Vessel, then you can cast it back into ingots or whatever you like!", + "quests.metal_age.bronze_anvil.title": "Kademe 2: Bronz Γ–rs", + "quests.metal_age.bronze_anvil.subtitle": "basit mekanikal gΓΌΓ§ burda başlΔ±yor", + "quests.metal_age.bronze_anvil.desc": "metallarle Γ§alışmak sadece Γ§ift metal kaynamaklamaktan itibaren değil, aynΔ± kademe veya daha ΓΌstΓΌ iΓ§in ΓΆrste Γ§alışman gerekicek. Γ–rs ΓΌzerinde Γ§alışmak komplike olabilir, but there's an entry in the TFG Tips section of the field guide that goes into more detail.\n\nBronze also marks the start of automation, where you'll begin to harness mechanical power!", + "quests.metal_age.bronze_goodies.title": "bronze seviyesinde mekanik gΓΌΓ§", + "quests.metal_age.bronze_goodies.subtitle": "Ah HayΔ±r! Create gene", + "quests.metal_age.bronze_goodies.desc": "bronz yeterli kadar basit seviyede stress yΓΌkΓΌnΓΌ taşıyabilir ve bunu kullanabilirsin.\n\n&oΔ°lkel Otomasyon&r ilgili gΓΆreve bakarak başlayabilirsin!", + "quests.metal_age.copper_diving.title": "BakΔ±r Dalış EkipmanlarΔ±", + "quests.metal_age.copper_diving.subtitle": "madencilik yeterince tehlikeli gelmiyorsa", + "quests.metal_age.copper_diving.desc": "Su altΔ± madenler sana sΔ±kΔ±ntΔ± mΔ± Γ§Δ±kartΔ±yor? BakΔ±r Dalış Ekipman setini yapabilirsin, hava kaynağı ile 20 dakikaya kadar su altΔ±nda durabilirsin!", + "quests.metal_age.bloomery.title": "Demir Eritme FΔ±rΔ±nΔ±", + "quests.metal_age.bloomery.subtitle": "Demir Γ‡ağınΔ± arΔ±yorsanΔ±z tam yerindesin!.", + "quests.metal_age.bloomery.desc": "Demir Eritme FΔ±rΔ±nΔ±, işlenmemiş demir oluşturmanΔ±za olanak tanΔ±yan TerraFirmaCraft'Δ±n Γ‡oklu-bloğudur.. Demiri eritip dΓΆkmek, dΓΆkme demir olarak Γ§Δ±kar, KΔ±rΔ±lgandΔ±r ve İşlenmiş Demir kadar gΓΌΓ§lΓΌ veya dayanΔ±klΔ± değildir..\n\nDemir Eritme FΔ±rΔ±nΔ± pahalΔ±dΔ±r, cehver işleme hattΔ± ve otomatik metal plaka yapan sistemi yapΔ±p kurmak iyi bir yatΔ±rΔ±m olacaktΔ±r.\n\nSaha Rehberi, Demir Eritme FΔ±rΔ±nΔ±n nasΔ±l Γ§alıştığınΔ± ve gerekli duyduğu doğru orandaki demir ve odun kΓΆmΓΌrΓΌ oranlarΔ±(1 kΓΌlΓ§e[144 mB] iΓ§in 1 odun kΓΆmΓΌrΓΌ harcar) hakkΔ±nda detaylΔ± bir metin iΓ§erir..", + "quests.metal_age.mining.title": "Metalurji Γ‡ağında Madencilik", + "quests.metal_age.mining.subtitle": "KAYA VE TAŞ!", + "quests.metal_age.mining.desc": "Değerli kaynaklar ve cehverleri yer altΔ±ndan Γ§Δ±karmak ve işlemek bu mod paketinin en ΓΆnemli parΓ§asΔ±dΔ±r, ve inan bana Metalurji Γ‡ağı bir istisna değildir! ilerme katetmek iΓ§in &lΓ§ok fazla&r madde ve metal harcΔ±yacaksΔ±n , Madenci Γ‡ekici ile tek sefer birden fazla kazmak mΓΌmkΓΌn! bu alet normal kazmaya gΓΆre biraz daha yavaş olmasΔ±na rağmen tek kΔ±rışta 3x3x1 alanΔ± kazar. eğer tek bir blok kΔ±rmak istiyorsan eğilerek kΔ±rman yeterlidir.", + "quests.metal_age.bellows.title": "ÜfleΓ§", + "quests.metal_age.bellows.subtitle": "YΓΌksek sΔ±caklΔ±klara erişilebilir, kΓΌΓ§ΓΌk bir fiyatΔ± ile.", + "quests.metal_age.bellows.desc": "ΓΌfleΓ§ ateş veya demirci ocağınΔ±n sΔ±caklığınΔ± artΔ±rmak iΓ§in hava ΓΌfleyen bir eşyadΔ±r, yakΔ±tΔ±n ΓΌretiği Δ±sΔ±dan daha fazla Δ±sΔ± ΓΌretmesini sağlar, ama bu durum yakΔ±tΔ±n sΓΌresini kΔ±saltΔ±r.\n\ndaha yΓΌksek sΔ±caklΔ±klar belli başlΔ± metal, Δ±sΔ±ya dayanΔ±klΔ± porselen ve alaşımlarΔ± eritmek ve pişirmek iΓ§in gereklidir.\n\nkΓΆmΓΌr ve kok kΓΆmΓΌrΓΌ bu sΔ±caklΔ±klara ΓΌfleΓ§ olmadan da ulaşırlar.", + "quests.metal_age.wrought_iron_anvil.title": "Kademe 3 Γ–rs: İşlenmiş Demir", + "quests.metal_age.wrought_iron_anvil.subtitle": "Su değirmenleri, rΓΌzgar değirmenleri ve daha fazla Greate!", + "quests.metal_age.wrought_iron_anvil.desc": "İşlenmiş Demir Γ–rs ile İşlenmiş Demir KΓΌlΓ§eleri plaka, alet başlΔ±klarΔ±, gibi farklΔ± âğelere dΓΆnüştΓΌrebileceksiniz.\n\nişlenmiş demirden yapΔ±lma alet ve zΔ±rhlar bronza gΓΆre Γ§ok ahΔ±m şahΔ±m ΓΆzelik katmazlar, ama daha dayanΔ±klΔ±lardΔ±rlar.\n\nBir sonraki ΓΆrsΓΌ kademesini yapbilmek iΓ§in zorlu ve ΓΆnemli bir maceraya adΔ±m atacaksΔ±nΔ±z, yani bu noktada kendinize dΓΌzgΓΌn bir yere yerleşmek yeni şeyler keşfetmek ve bu modpaketinin sunduğu başka şeylere gΓΆz atmak iΓ§in tam sΔ±rasΔ±.", + "quests.metal_age.coke_oven.title": "Kok FΔ±rΔ±nΔ±", + "quests.metal_age.coke_oven.subtitle": "Sonunda, artΔ±k odun kΓΆmΓΌrΓΌ yığınΔ±na elveda", + "quests.metal_age.coke_oven.desc.1": "Kok FΔ±rΔ±nΔ± senin ilk Greg Tech Γ§oklu-bloğun! otomatik bir şekilde odun kΓΆmΓΌrΓΌ yapmanΔ± ve başka gΓΌΓ§lΓΌ yakΔ±tlarΔ± yapmanΔ± sağlar. kok fΔ±rΔ±nΔ± 1 adet odunu 1 odun kΓΆmΓΌrΓΌne ve 250 mB Creosote Γ§evirir, tahtayΔ± terbiye etmekte rol oynayan bir odun ΓΌrΓΌnΓΌ kimyasalΔ±dΔ±r.\n\neğer kok fΔ±rΔ±nΔ± kontrol bloğunu yapar ve JEI ile tariflere bakarsan (standart olarak\"U\"tuşu),\"Γ‡oklublok bilgisi\" isimli bir bΓΆlme ile karşılaşacaksΔ±n, aynΔ± zamanda sana Γ‡oklu-bloğu nasΔ±l kuracağınΔ± da gΓΆsterir.\n\nbaşka bir yolu kontol bloğunu bir yere koy, ve eğilir vaziyete etkileşime geΓ§in size eksik bloklarΔ±n hologramΔ±nΔ± gΓΆsterecektir.", + "quests.metal_age.coke_oven.desc.2": "kok fΔ±rΔ±nlarΔ± kok fΔ±rΔ±nΔ± kapaklarΔ± aracΔ±lığı ile otomasyona dΓΆkΓΌlebilir. bu kapaklar hem sΔ±vΔ± hemde eşyalar iΓ§in giriş ve Γ§Δ±kış gΓΆrevini aynΔ± anda yaparlar.\n\nΓ§ok basit şekilde yapabilirsin, kok fΔ±rΔ±nΔ±na bir adet giriş iΓ§in huni veya chute, bir sandΔ±k veya kasa 1. Γ§Δ±kışa, 2. Γ§Δ±kışa varil, fΔ±Γ§Δ±, yada bΓΌyΓΌk tahta varil ise Creosote depolamak iΓ§in. sandΔ±klar kasalar gibi bΓΌyΓΌk eşyalarΔ± depolayamazlar ΓΆrnek olarak odunlar. eğilerek sağ tΔ±klarsan herangi bir greg tech borusunu tek yΓΆnlΓΌ yapabilirsin.", + "quests.metal_age.wrought_iron_goodies.title": "işlenmiş demir seviyesinde mekanik gΓΌΓ§", + "quests.metal_age.wrought_iron_goodies.subtitle": "Bahsettiğiniz bu \"Andazit AlaşımΔ±\" tam olarak ne?", + "quests.metal_age.wrought_iron_goodies.desc": "işlenmiş demir sayesinde Metal Casing yapabilir duruma geldin, create'deki gearbox gibi birΓ§ok mekanik parΓ§anΔ±n ana gΓΆvdesini oluşturur. daha gelişmiş olanlarΔ±n bir kΔ±smΔ± iΓ§in Γ‡elik gereklidir, bu noktada otomatik ağaΓ§ ve tarΔ±m sistemi dizmek mΓΌmkΓΌn.\n\nCreosote Treated tahta kerestelerini oluşturmak iΓ§in kullanΔ±lΔ±r, yani su değirmeni ve rΓΌzgar değirmeni yapmakta kullanΔ±lΔ±r, hayvan gΓΌcΓΌne gΓΆre daha gelişmiştir.", + "quests.metal_age.fire_clay_ingredients.title": "Δ±sΔ±ya dayanΔ±klΔ± porselen tarifi (porselen takΔ±mΔ±)", + "quests.metal_age.fire_clay_ingredients.subtitle": "Dur, daha karpuzu kesmedik.", + "quests.metal_age.fire_clay_ingredients.desc": "Δ±sΔ±ya dayanΔ±klΔ± kili Kaolin, Grafit ve normal Kilden yapΔ±lmış ΓΆzel bir kildir, bΓΆylelikle Γ§ok yΓΌksek sΔ±caklΔ±klara Γ§Δ±kabiliyor. PotanΔ±n iki farklΔ± kullanΔ±m alanΔ± vardΔ±r, birinci kil kabΔ±n daha gelişmiş bir halidir ve alaşım yapmayΔ± kolaylaştΔ±rΔ±r, ve YΓΌksek FΔ±rΔ±n iΓ§in, yeni kademe ΓΆrs ve metali yapmak iΓ§in gereklidir, Γ‡elik.\n\nΓ§ok uzaklara gidiceksin, Grafir ve Kaolin iΓ§in evinden Γ§ok uzaklara gidiceksin, yani hazΔ±rlΔ±k en bΓΌyΓΌk anahtardΔ±r erken kalkan erken yol alΔ±r!", + "quests.metal_age.overworld_kaolin.title": "Kaolin kaynağı: DΓΌnya", + "quests.metal_age.overworld_kaolin.subtitle": "Anlaşılan sizin memlekette orman kanunu geΓ§erli", + "quests.metal_age.overworld_kaolin.desc": "Kaolin kili belli bΓΆlgede yΓΌksek yerlerde, sΔ±caklΔ±k (en az ortalama 18Β°C), ve nem (en az 300mm yağış) ΓΆnemli etmenlerdir. Kaolin kilini bulmak ve ΓΆzeliklerini daha detaylΔ± bilgi iΓ§in Saha rehberini okuyunuz.\n\nGΓΌneye gitmen gerekicek ama ΓΆyle bΓΆyle değil okyanusa aΓ§Δ±lΔ±cak kadar. Kendini Demir Matara, yΓΌksek miktarda GΔ±da, Kano, KayΔ±k yada kayak hazΔ±rlayΔ±n, olabildiğince kaolin toplamak iΓ§in taşınabilir depolama alanlarΔ± yapΔ±n.\n\nTerraFirmaGreg ipuΓ§larΔ± ve ulaşım araΓ§larΔ± gΓΆrev kΔ±smΔ±na bakarak daha detaylΔ± bilgi elde edinin.", + "quests.metal_age.beneath_kaolin.title": "Kaolin kaynağı: The Beneath", + "quests.metal_age.beneath_kaolin.subtitle": "Cehenneme kadar yolun var", + "quests.metal_age.beneath_kaolin.desc": "derine, daha DERΔ°NLERE, Bedrock'u aşarak, The Beneath bulacaksΔ±nΔ±z, Her kâşede akşam yemeği iΓ§in sΔ±raya girmiş yaratΔ±klar ve labirent tipi mağara sistemi olan bir boyut. yΓΌksek bΓΆlgelerde, yΓΌksek bΓΆlgelerde Lush Hollow'u bulucaksΔ±nΔ±z, Kaolin Kilinin var olabileceği derinliklerde kΓΌΓ§ΓΌk yeşil bir vaha. belkide tanΔ±dΔ±k bir yaratΔ±k onlarΔ± koruyordur, her neyse...!\n\nHazΔ±r aşağıdasΔ±n, Antrasit de toplayabilirsin, Γ‡eliği eritmek iΓ§in mΓΌkemmel bir yakΔ±t.\n\nBeneathde yaşamaya Γ§alışmak zor, TerraFirmaGreg Δ°puΓ§larΔ± gΓΆrev kΔ±smΔ±na ve Saha Rehberine bakarak bilgiler elde edebilirsin.", + "quests.metal_age.beneath_kaolin.task": "Bedrock seviyesinde inerek The Beneath'e giriş yap", + "quests.metal_age.overworld_graphite.title": "Grafit kaynağı: DΓΌnya", + "quests.metal_age.overworld_graphite.subtitle": "yΓΌzeydeki gΓΆstergeler sana yeterli olmaz mΔ±?", + "quests.metal_age.overworld_graphite.desc": "grafit ΓΆzelikle inanΔ±lmaz dΓΌz, geniş disk şekilinde var olurlar.\n\nderin mağaralara giderek araştΔ±rma yapman gerekicek! grafit cehver yataklarΔ± herangi bir taş tΓΌrΓΌnde var olurlar ve beraberinde elmas ve kΓΆmΓΌr de bulunur. Her neyse, damarΔ±n derinliğinden dolayΔ±, gΓΆstergeler yΓΌzeyde var olmazlar. metal kalkan, Digger Helmet, Propik, ve dΓΌrbΓΌn gibi aletler işine yarayabilirler!", + "quests.metal_age.beneath_graphite.title": "Grafit kaynağı: The Beneath", + "quests.metal_age.beneath_graphite.subtitle": "yine Cehenneme kadar yolun var", + "quests.metal_age.beneath_graphite.desc": "derine, daha DERΔ°NLERE, Bedrock'u aşarak, The Beneath bulacaksΔ±nΔ±z, Her kâşede akşam yemeği iΓ§in sΔ±raya girmiş yaratΔ±klar ve labirent tipi mağara sistemi olan bir boyut. Beneath'Δ±n aşağı katlarΔ±nda bΓΌyΓΌk, uzun grafit cehver damarlarΔ± bulunur, belkide tanΔ±dΔ±k bir yaratΔ±k onlarΔ± koruyordur, her neyse...!\n\nHazΔ±r aşağıdasΔ±n, Antrasit de toplayabilirsin, Γ‡eliği eritmek iΓ§in mΓΌkemmel bir yakΔ±t.\n\nBeneathde yaşamaya Γ§alışmak zor, TerraFirmaGreg ipuΓ§larΔ± gΓΆrev kΔ±smΔ±na ve Saha Rehberine bakarak bilgiler elde edebilirsin.", + "quests.metal_age.beneath_graphite.task": "Bedrock seviyesinde inerek The Beneath'e giriş yap", + "quests.metal_age.kaolin_clay.title": "Kaolin Kili", + "quests.metal_age.kaolin_clay.subtitle": "Kaolin Trek: Yeni Γ‡ağ", + "quests.metal_age.kaolin_clay.desc": "kaolin kilini bulunca, toplayabildiğin kadarΔ±nΔ± toplamalΔ± ve gΓΆtΓΌrmelisin! malesef ki, sadece yΓΌzde 20 ihtimalle Kaolinite tozuna dΓΆnüşebilir, bunun iΓ§in Γ§ukur ateşinde pişirirmesi ΓΆnerilir, yer kazanamak ve işlemi hΔ±zlandΔ±rmak iΓ§in.\n\nPota ve YΓΌksek FΔ±rΔ±nΔ± yaptΔ±ktan sonra, daha fazlasΔ±na ihtiyacΔ±n olmayacak, ama evdeki hesap Γ§arşıya uymaz o yΓΌzden gereğinden daha fazlasΔ±nΔ± topla ve gΓΆtΓΌr, bΓΆylelikle tekrar yolculuğa Γ§Δ±kmak zorunda kalmazsΔ±n.\n\nP.S.: eğer blood lily bulursan ama kil ortalΔ±kta yoksa, biraz daha aşağısΔ±nΔ± kaz! Bazen biraz yerin altΔ±nda Γ§Δ±kΔ±yor.", + "quests.metal_age.graphite.title": "Grafit", + "quests.metal_age.graphite.subtitle": "kalemde kurşun var diyen gence tokat gibi cevap: kalemde grafit var", + "quests.metal_age.graphite.desc": "grafiti bulunca, toplayabildiğin kadar toplamalΔ±sΔ±n! kaolin kili kadar toplamana gerek yok.\ngrafit damarlarΔ± zengindir ve beraberinde kΓΆmΓΌr ve elmas bulundurur, ve Γ‡elik iΓ§in kΓΆmΓΌre ihtiyacΔ±n olacak.", + "quests.metal_age.graphite.task": "herangi bir formda grafit bul", + "quests.metal_age.fire_clay.title": "Ateşe DayanΔ±klΔ± Kil", + "quests.metal_age.fire_clay.subtitle": "yakarΔ±m romayΔ±da yakarΔ±m", + "quests.metal_age.fire_clay.desc": "kaolin kilini Δ±sΔ±tarak kaolin tozunu elde et. Demirci ocağında da yapabilirsin, ama bΓΌyΓΌk miktardaysa kil kaplara koyup Γ§ukur ateşinde pişirirmesi ΓΆnerilir.\n\ngrafit konusuna gelince, cehveri normal iekilde işle, parΓ§ala toz hale getir ve tekrardan işlemden geΓ§irerek pudra hale getirin.\n\nson olarak, 4 grafit pudrasΔ±nΔ±, 4 Kaolin tozunu, ve 1 kil ile birleştirerek ateşe dayanΔ±klΔ± kili oluştur.", + "quests.metal_age.fire_clay_products.title": "Ateşe DayanaklΔ± Kil ΓΌrΓΌnleri", + "quests.metal_age.fire_clay_products.subtitle": "10 dakikada yanmama garantili", + "quests.metal_age.fire_clay_products.desc": "sΔ±radan kilde olduğu gibi, ateşe dayanΔ±klΔ± kil kΔ±rpΔ±larak ateş iΓ§in hazΔ±r hale getirir. en ΓΆnemlisi, ateşe dayanΔ±klΔ± kil hem pota hemde ateşe dayanΔ±klΔ± tuğla yapΔ±mΔ±nda kullanΔ±lΔ±r, ki ikiside yΓΌksek fΔ±rΔ±n yapΔ±mΔ±nda Γ§ok ΓΆnemlidir.\n\naynΔ± zamanda kalΔ±p masasΔ± ve dΓΆkΓΌm kanallarΔ± yapΔ±labilir, potadaki erimiş metali birden fazla kalΔ±ba doldurarak işi hΔ±zlandΔ±rΔ±r.\n\nSon olarak, ateşe dayanΔ±klΔ± kalΔ±p var, ateşe dayanΔ±klΔ± kalΔ±p kΔ±rΔ±lma ihtimali yΓΌzde bir, normal kilden yapΔ±lma kalΔ±p yΓΌzde 10 ihtimal ile kΔ±rΔ±lΔ±r.", + "quests.metal_age.crucible.title": "Pota", + "quests.metal_age.crucible.subtitle": "metalleri profesyonel gibi erit", + "quests.metal_age.crucible.desc": "pota demirci ocağınΔ±n ΓΌstΓΌne koyulan bir eşyadΔ±r. 9 envanteri ve 4032mB sΔ±vΔ± depolamasΔ±na sahip , aynΔ± zamanda yaptığın alaşımlarΔ±n yΓΌzdesini gΓΆsteren bir gΓΆsterge. iΓ§indeki eşya ve sΔ±vΔ±lar kΔ±rΔ±lsa bile iΓ§inde kalmaya devam ederler. aynΔ± zamanda yΓΌksek fΔ±rΔ±ndan domuz demirini toplamaya yarar.\n\naklΔ±nda bulundur pota iΓ§indeki herşeyi Γ§orba yapar gibi alaşım yapmaya Γ§alışır - Tc dΓΆkΓΌmhanesi gibi ayΔ±rmaz - onun iΓ§in temiz tutmak ΓΆnemlidir.", + "quests.metal_age.fire_bricks.title": "Ateş TuğlasΔ±", + "quests.metal_age.fire_bricks.subtitle": "yΓΌksek fΔ±rΔ±n iΓ§in", + "quests.metal_age.fire_bricks.desc": "Ateş tuğlalarΔ± yΓΌksek fΔ±rΔ±nΔ±n yapΔ±mΔ±nda kullanΔ±lΔ±r, minimum fΔ±rΔ±n iΓ§in en az 4 tuğla bloğuna ihtiyacΔ±n var.\n\ntuğlalar Γ§eliğin daha verimli olmasΔ± iΓ§in yalΔ±tΔ±m sağlar, tuğlanΔ±n Γ§evresine 3 demir plaka, Blast Furnace Insulation kullanabilirsin", + "quests.metal_age.fully_stacked_blast_furnace.title": "son kademe yΓΌksek fΔ±rΔ±n", + "quests.metal_age.fully_stacked_blast_furnace.subtitle": "tamamlanmış yΓΌksek fΔ±rΔ±n", + "quests.metal_age.fully_stacked_blast_furnace.desc": "son kademe yΓΌksek fΔ±rΔ±n en ΓΌst seviye metal eritme ΓΆzeliği ile gelir. yapabileceğin kadar bΓΌyΓΌk yapmak iyi bir fikirdir, Γ§ΓΌnkΓΌ gelecek iΓ§in Γ§ok fazla Γ§eliğe ihtiyacΔ±n olacak.\n\nilk buharlΔ± alaşım fΔ±rΔ±nΔ±nΔ± elde edince Γ§ok daha ucuza elde edebileceksin, bΓΆylelikle daha fazla tuğla yapmanΔ± sağlΔ±cak.", + "quests.metal_age.blast_furnace_fuel.title": "yΓΌksek fΔ±rΔ±na yakΔ±t", + "quests.metal_age.blast_furnace_fuel.subtitle": "ΓΆnceki gΓΆrevleri okuyup takip etmisindir umarΔ±m...", + "quests.metal_age.blast_furance_fuel.desc": "Γ‡elik eritmek iΓ§in odun kΓΆmΓΌrΓΌ yetersizdir. Kok veya taşkΓΆmΓΌrΓΌne ihtiyacΔ±n var.\n\nKok fΔ±rΔ±nΔ±na kΓΆmΓΌr koyarak kok elde edilebilir, taşkΓΆmΓΌrΓΌ Beneath maden olarak Γ§Δ±kar.", + "quests.metal_age.blast_furnace.title": "yΓΌksek fΔ±rΔ±n", + "quests.metal_age.blast_furnace.subtitle": "bak şurdaki yΓΌksek fΔ±rΔ±n sana g...'", + "quests.metal_age.blast_furnace.desc": "yΓΌksek fΔ±rΔ±n domuz demiri oluştumanΔ±za yarayan bir multi-block yapΔ±dΔ±r. demir, akΔ± ve yakΔ±t koyularak oluştururur (gΓΆreve bak) yΓΌksek fΔ±rΔ±nΔ±n iΓ§erisindeki domuz demiri sΔ±vΔ± haldedir, kΓΌlΓ§e halke getirilip işlenerek Γ§eliğe dΓΆnüşür.\n\nyΓΌksek fΔ±rΔ±nΔ±n yΓΌksek sΔ±caklΔ±klara Γ§Δ±kmasΔ± iΓ§in, ΓΌfleΓ§e ihtiyacΔ±n var, yΓΌksek fΔ±rΔ±nΔ±n iΓ§ine tuyere koyman lazΔ±m ki havayΔ± iΓ§eri ΓΌflesin.\n\nSaha rehberi sana yΓΌksek fΔ±rΔ±nlarΔ±n nasΔ±l Γ§alıştığınΔ± nasΔ±l kurulduğunu gΓΆsterir.", + "quests.metal_age.steel_anvil.title": "T4 Γ–rs: Γ‡elik", + "quests.metal_age.steel_anvil.subtitle": "işlenmiş demirden Γ§eliğe bΓΌyΓΌk adΔ±m atmak demek", + "quests.metal_age.steel_anvil.desc": "Γ‡elik ΓΆrs ile, Γ‡elik ΓΌstΓΌnde Γ§alışarak onu farklΔ± formlara sokabilirsin.\n\nΓ‡elik eşyalar ΓΆzelik olarak bronz ve demirdan daha iyidir, yani eski aletlerin kΔ±rΔ±lmak ΓΌzereyken yeni aletleri Γ‡elikten yapmaya değer. ilerde Γ§ok fazla Γ‡elikle ilgili alaşım yapcaksΔ±n, yani maden iΓ§in yeni oyuncaklar yapmanΔ± ΓΆneririm.", + "quests.metal_age.steel_goodies.title": "Γ‡elik gΓΌcΓΌnde mekanik gΓΌΓ§", + "quests.metal_age.steel_goodies.subtitle": "Üfle, ParΓ§ala, ve tut şunun ucundan düşüyelim abi", + "quests.metal_age.steel_goodies.desc": "Γ‡elik yeni Greate kademesi aΓ§ar, LS, artmış stress taşıma kapasitesi ile! yapabileceğin şeyler arasΔ±ndan Encased Fan, cehver yΔ±kamayΔ± otomatikleştirir, ve mekanik pompa, sΔ±vΔ± lojistiğine daha fazla imkan sunar.\n\nmekanik pompa işe yarar, zekice davranarak (yada zeki isen), yΓΌksek fΔ±rΔ±nΔ± otomatiğe dΓΆkebilirsin (nerdeyse).", + "quests.metal_age.weak_steel.title": "ZayΔ±f Γ‡elik iΓ§eriği", + "quests.metal_age.weak_steel.subtitle": "matematik bilseydim okul okumazdΔ±m", + "quests.metal_age.weak_steel.desc": "Siyah Γ§eliği yapmak iΓ§in zayΔ±f Γ‡elik yapmak ana parΓ§alardan biridir. 2 ParΓ§a Γ‡elik, 1 ParΓ§a Nikel ve 1 ParΓ§a Siyah Bronz ile alaşım yapΔ±labilir.\n\nzayΔ±f Γ§eliğin tarifine bakarak alaşım oranΔ±na daha detaylΔ± bakabilirsin.", + "quests.metal_age.weak_steel.task1": "1 ParΓ§a Nikel", + "quests.metal_age.weak_steel.task2": "2 ParΓ§a Γ‡elik", + "quests.metal_age.weak_steel.task3": "1 Part Siyah Bronz", + "quests.metal_age.highcarb_black_steel.title": "Siyah Γ‡elik iΓ§erikleri", + "quests.metal_age.highcarb_black_steel.subtitle": "onun hakkΔ±nda bir şey diyemiyoruz malesef", + "quests.metal_age.highcarb_black_steel.desc": "son iki kademe ΓΆrs tamamen karmaşık alaşımlar ile yapΔ±lmaktadΔ±r. ZayΔ±f Γ‡eliği ile Domuz Demiri lehimlenerek yΓΌksek karbon Siyah Γ‡elik yapΔ±labilir, daha sonra işlenerek Siyah Γ§eliğe oda ΓΆrse dΓΆnüşücek.", + "quests.metal_age.black_steel_anvil.title": "T5 Γ–rs: Siyah Γ‡elik", + "quests.metal_age.black_steel_anvil.subtitle": "Buhar gΓΌcΓΌ parmağınΔ±zΔ±n arasΔ±nda!", + "quests.metal_age.black_steel_anvil.desc": "Siyah Γ‡elik ΓΆrs ile, Siyah Γ‡elik ΓΌstΓΌnde Γ§alışarak onu farklΔ± formlara sokabilirsin.\n\nerken otomasyon Γ§ağında Siyah Γ‡elik ile komple bir 2. sanayi devri aΓ§tΔ±n!\n\nbu kΔ±sΔ±mda ya sanayileşmeye başlarsΔ±n yada son kademe Γ‡elikle ilgili şeyleride yapabilirsin. renkli Γ‡eliklerden sonsuza kadar kaΓ§amazsΔ±n, unutma!", + "quests.metal_age.black_steel_goodies.title": "Siyah Γ‡elik seviyesinde otomasyon", + "quests.metal_age.black_steel_goodies.subtitle": "sanayi devri ve sonuΓ§larΔ±", + "quests.metal_age.black_steel_goodies.desc": "Siyah Γ‡elik ile buhar Γ§ağına başlΔ±yabilirsin! gΓΌΓ§lΓΌ buhar kazanlarΔ± yapana kadar kΓΌΓ§ΓΌk buhar kazanlarΔ± ile Γ§alışıcaksΔ±n, bu yeni makineleri yakΔ±tΔ± fulle ve elektronik devre ΓΌretimine başla.", + "quests.metal_age.red_blu.title": "KΔ±rmΔ±zΔ± ve Mavi Γ‡elik", + "quests.metal_age.red_blu.subtitle": "eski modlu minecraft'Δ±n iki fantazi ΓΌrΓΌnΓΌ", + "quests.metal_age.red_blu.desc": "son kademe ΓΆrs kΔ±rmΔ±zΔ± veya mavi Γ‡elikten de yapΔ±labilir sonuΓ§ta aynΔ± amaca hizmet ederler. ama ikiside farklΔ± alaşımlanan ve farklΔ± amaΓ§lara hizmet eden iki farklΔ± metaldir.\n\nMavi Γ‡elik eşyalar hΔ±zlΔ± ve sΔ±caklığa inanΔ±lmaz dayanΔ±klΔ±dΔ±r, kΔ±rmΔ±zΔ± Γ‡elik ise gΓΌΓ§lΓΌ ve ΓΆmΓΌrlΓΌk dayanΔ±klığa sahiptir.", + "quests.metal_age.weak_red_steel.title": "zayΔ±f kΔ±rmΔ±zΔ± Γ‡elik tarifi", + "quests.metal_age.weak_red_steel.subtitle": "biraz bundan biraz şundan...", + "quests.metal_age.weak_red_steel.desc": "ΓΆnceki gibi, ZayΔ±f KΔ±rmΔ±zΔ± Γ‡elik, KΔ±rmΔ±zΔ± Γ‡eliğin ham maddesidir. Bu alaşım iΓ§in 4 parΓ§a Siyah Γ‡elik, 2 ParΓ§a Γ‡elik, 1 ParΓ§a PirinΓ§, ve 1 parΓ§a GΓΌl AltΔ±nΔ±.\n\nSΔ±vΔ± ZayΔ±f KΔ±rmΔ±zΔ± Γ§eliğin tarifine bakarak daha detaylΔ± oranlarΔ±nΔ± âğrenebilirsin.", + "quests.metal_age.weak_red_steel.steel": "2 ParΓ§a Γ‡elik", + "quests.metal_age.weak_red_steel.black_steel": "4 ParΓ§a Siyah Γ‡elik", + "quests.metal_age.weak_red_steel.brass": "1 ParΓ§a PirinΓ§", + "quests.metal_age.weak_red_steel.rose_gold": "1 ParΓ§a GΓΌl AltΔ±n", + "quests.metal_age.weak_blu_steel.title": "zayΔ±f mavi Γ‡elik tarifi", + "quests.metal_age.weak_blu_steel.subtitle": "patron Γ§Δ±ldΔ±rdΔ±.", + "quests.metal_age.weak_blu_steel.desc": "ΓΆnceki gibi, ZayΔ±f Mavi Γ‡elik, Mavi Γ‡eliğin ham maddesidir. Bu alaşım iΓ§in 4 parΓ§a Siyah Γ‡elik, 2 ParΓ§a Γ‡elik, 1 parΓ§a Bismut Bronzu, ve 1 parΓ§a Sterling GΓΌmüşü.\n\nSΔ±vΔ± ZayΔ±f Mavi Γ§eliğin tarifine bakarak daha detaylΔ± oranlarΔ±nΔ± âğrenebilirsin.", + "quests.metal_age.weak_blue_steel.steel": "2 ParΓ§a Γ‡elik", + "quests.metal_age.weak_blue_steel.black_steel": "4 ParΓ§a Siyah Γ‡elik", + "quests.metal_age.weak_blue_steel.sterling_silver": "1 ParΓ§a Sterling GΓΌmüşü", + "quests.metal_age.weak_blue_steel.bismuth_bronze": "1 ParΓ§a Bismut Bronzu", + "quests.metal_age.highcarb_red_steel.title": "KΔ±rmΔ±zΔ± Γ‡elik iΓ§erikleri", + "quests.metal_age.highcarb_red_steel.subtitle": "sizce otet'in altΔ±nda hayatta kalabilir mi?", + "quests.metal_age.highcarb_red_steel.desc": "KΔ±rmΔ±zΔ± Γ‡elik hayatΔ±na YΓΌksek Karbon KΔ±rmΔ±zΔ± Γ‡elik olarak başlar, yani ZayΔ±f KΔ±rmΔ±zΔ± Γ‡elik ile Siyah Γ‡eliğin lehimlenmesi sonucu var olur. yinede ΓΆrste dΓΆvΓΌlmesi lazΔ±m ki KΔ±rmΔ±zΔ± Γ‡elik olsun", + "quests.metal_age.highcarb_blu_steel.title": "Mavi Γ‡elik iΓ§erikleri", + "quests.metal_age.highcarb_blu_steel.subtitle": "ΓΆyle bir alaşım düşünΓΌn tungsten ile aynΔ± erime sΔ±caklığna ait ama bil bakalΔ±m kim ocakta erimiyor?", + "quests.metal_age.highcarb_blu_steel.desc": "Mavi Γ‡elik hayatΔ±na YΓΌksek Karbon Mavi Γ‡elik olarak başlar, yani ZayΔ±f Mavi Γ‡elik ile Siyah Γ‡eliğin lehimlenmesi sonucu var olur. yinede ΓΆrste dΓΆvΓΌlmesi lazΔ±m ki Mavi Γ‡elik olsun", + "quests.metal_age.redblu_anvil.title": "T6 Γ–rs: KΔ±rmΔ±zΔ± yada Mavi Γ‡elik", + "quests.metal_age.redblu_anvil.subtitle": "şimdi sΔ±ra SarΔ± Γ‡elikte (!)", + "quests.metal_age.redblu_anvil.desc": "Son kademe Γ–RS! KΔ±rmΔ±zΔ± ve Mavi Γ‡elik ΓΌstΓΌnde Γ§alışarak onu farklΔ± formlara sokabilirsin.\n\nbu TerraFirmaCraft'Δ±n son noktasΔ±dΔ±r! 2. Sanayi devrimini başlatmak iΓ§in düşük voltaj parΓ§alarΔ±n ΓΌretimine başla.", + "quests.metal_age.red_steel_flask.title": "KΔ±rmΔ±zΔ± Γ‡elik Matara", + "quests.metal_age.red_steel_flask.subtitle": "aynΔ± bokun laciverti (daha dayanΔ±klΔ±sΔ±)", + "quests.metal_age.red_steel_flask.desc": "KΔ±rmΔ±zΔ± Γ‡elik Matara elde edebileceğin en iyi mataradΔ±r. Demir Matara ile aynΔ± miktarda SΔ±vΔ± tutuyor olmasΔ± sizi yanΔ±ltmasΔ±n, Γ§ΓΌnkΓΌ KΔ±rmΔ±zΔ± Γ‡elik Matara asla kΔ±rΔ±lmaz.", + "quests.metal_age.redblu_buckets.title": "Kova malzemeleri", + "quests.metal_age.redblu_buckets.subtitle": "mavi ile kΔ±rmΔ±zΔ± birleşince mor olur demi? nah mor olur", + "quests.metal_age.redblu_buckets.desc": "Metalurji Γ‡ağınΔ±n son gΓΆrevi kova yapmaktΔ±r. şu ana kadar kullandığın herangi bir sΔ±vΔ± depolama ve tahta kovaya nazaran, Kova ile sΔ±vΔ±larΔ± başka yerden başka yere koyabilir ve en ΓΆnemlisi lav taşıyabilirsin!.", + "quests.metal_age.this_is_a_bucket.title": "bu... bu bir kova?", + "quests.metal_age.this_is_a_bucket.subtitle": "Aman Allah'Δ±m...", + "quests.metal_age.this_is_a_bucket.desc": "Tebrikler kova yapmayΔ± başardΔ±n. Metalurji Γ§ağı resmi olarak bitti.\n\nşimdi git ve düşük voltaj parΓ§alarΔ±nΔ± yapmaya başla!", + "quests.stone_age": "Taş devri", + "quests.stone_age.subtitle": "MΓΌtevazi başlangΔ±Γ§lar", + "quests.stone_age.foods.title": "AcΔ±ktΔ±n mΔ±?", + "quests.stone_age.foods.subtitle": "Nerde benim kolay kazanΔ±lan lokmam?", + "quests.stone_age.foods.desc": "TerraFirmaGreg'te, dΓΌnya Γ§ok sert bir yer, ve hayatta kalma kalmanΔ±n en ΓΆnemli yΓΆnlerinden biri de gΔ±dayΔ± elde edebilmektir. Γ‡oğu gΔ±da sana az miktarda besin sağlar, aynΔ± zamanda pişmemiş olanlar ΓΆlΓΌmcΓΌ olabilirler. Can Γ§ubuğunun yanΔ±ndaki yeşil Γ§ubuk senin aΓ§lΔ±k durumunu temsil eder.\n\nBir gΔ±danΔ±n herangi bir formu ile başla.", + "quests.stone_age.nutrition.title": "Mekanik: Beslenme", + "quests.stone_age.nutrition.subtitle": "NE demek sadece biftek yiyemem?", + "quests.stone_age.nutrition.desc": "TerraFirmaGreg'te herangi bir basit gΔ±danΔ±n besin değeri vardΔ±r, ve bu besin değerleri 5 farklΔ± katergoride sΔ±ralanΔ±r: &lTahΔ±l&r, &lMeyve&r, &lSebzeler&r, &lProtein&r and &lsΓΌt&r.\n\nProtein gibi yalnΔ±zca tek tΓΌr Γ§iğ besin yiyebilirsiniz, senin tΓΌm canΔ±n düşmüş olacak, dengeli bir diyet size daha fazla can verecektir. Her 100 Hp 1 kalbe denk gelir.\n\nDaha tam detay iΓ§in saha rehberinin \"GΔ±da ve Su\" kΔ±smΔ±na bakΔ±n.", + "quests.stone_age.cook_meat.title": "Basit pişirme", + "quests.stone_age.cook_meat.subtitle": "yediğin Γ§iğ et yΓΌzΓΌnden ΓΆlmek istemezsin değil mi?", + "quests.stone_age.cook_meat.desc": "Γ‡iğ eti pişirmek protein elde etmek iΓ§in ΓΆnemli bir adΔ±m - sadece etin raf ΓΆmrΓΌnΓΌ uzatmakla kalmaz, ama ihtiyaΓ§lΔ± vΓΌcudunuz iΓ§in daha fazla besinin kilidini aΓ§acaktΔ±r.\n\nEtinizi pişirmenin en basit yolu Kamp Ateş'i kullanmaktΔ±r. Aşağıdaki gΓΆrevlere bakarak nasΔ±l yapacağınΔ±zΔ± âğrenebilirsiniz.", + "quests.stone_age.soup_time.title": "Γ‡orbalar", + "quests.stone_age.soup_time.subtitle": "Hangi mağazadaydΔ±n?", + "quests.stone_age.soup_time.desc": "Biraz kil ile bir tencere ve biraz kase yaparsan, Γ§orbalar yapabilirsin!\n\nΓ‡orbalar ilk ve basit kompleks yemeklerdendir. gΔ±dalarΔ± olduğu gibi yemektense, daha fazla aΓ§lΔ±k giderir ve birden fazla besin değerini bir anda almana yardΔ±mcΔ± olur!", + "quests.stone_age.meals.title": "GΔ±dalar", + "quests.stone_age.meals.subtitle": "Midemhe inin!", + "quests.stone_age.meals.desc": "Bunlar senin yapabileceğin bazΔ± basit gΔ±dalar. Γ‡orbalar, salatalar, ve sandiviΓ§ler senin kolay besleyici kombinasyonlu gΔ±dalarΔ±n, sadece pizzalar tΓΌm besin değerlerini bir arada tutabilir.", + "quests.stone_age.meals.tasks.1": "Herangi sΔ±radan SandiviΓ§", + "quests.stone_age.meals.tasks.2": "Herangi sΔ±radan ReΓ§elli SandiviΓ§", + "quests.stone_age.garlic_bread.title": "SarΔ±msaklΔ± Ekmek...?", + "quests.stone_age.garlic_bread.subtitle": "Vampir veya ona benzer bir şeyi mΔ± korkutucan?", + "quests.stone_age.garlic_bread.desc": "Uzman tavsiyesi: Bu gΓΆrev HERANGΔ° bir SarΔ±msaklΔ± Ekmeği kabul edecektir, taze olmak zorunda değiller.", + "quests.stone_age.garlic_bread.task": "1024 dilim SarΔ±msaklΔ± Ekmek", + "quests.stone_age.find_potable_water.title": "SusadΔ±n mΔ±?", + "quests.stone_age.find_potable_water.subtitle": "Su iΓ§meyi unutmayΔ±n!", + "quests.stone_age.find_potable_water.desc": "AΓ§lΔ±k Γ§ubuğunun ΓΌstΓΌndeki mavi Γ§ubuk senin susuzluk gΓΆstergen. Eğer susuzluk Γ§ubuğunu boş bΔ±rakΔ±rsan susuzluktan ΓΆlΓΌrsΓΌn! su iΓ§menin en kolay yolu vahşi doağada kendiliğinden oluşmuş su kaynaklarΔ±ndan iΓ§mektir, onlara boş elinle sağ tΔ±klarsan iΓ§ebilirsin.\nBu gΓΆrevi tamamlamak iΓ§in, bunun iΓ§in iΓ§elebilir bir su kaynağından iΓ§men lazΔ±m, normal veya nehir suyudan biri. GΓΆrevi dΓΌzgΓΌn bir şekilde tamamlamak iΓ§in birden fazla su iΓ§melisin\n\nBurda suyu temizlemene gerek yok, sadece Tuzlu Su seni daha Γ§ok susatΔ±r.", + "quests.stone_age.find_potable_water.task": "Elinle herangi bir su kaynağından su iΓ§. (Tuzlu ve SΔ±cak olandan değil)", + "quests.stone_age.hydration.title": "Mekanik: Susuzluk", + "quests.stone_age.hydration.subtitle": "Evet başka dolu olmasΔ± gereken Γ§ubuk...", + "quests.stone_age.hydration.desc": "Su Γ§ok ΓΆnemli bir kaynaktΔ±r, sadece sussuz kalmamak iΓ§in değil! ÜsΓΌnΓΌ bir dere yatağına kurman ΓΆnerilir, bΓΆylelikle başka şeylere daha kolay ulaşırsΔ±n. Diğer âğeler susuzluğunuzu giderebilir, bazΔ± tΓΌr gΔ±da ve sΔ±vΔ±lar gibi.\n\nSu daima sen kaşif yaparken bulunmayabilir, ama velakin, iΓ§eceklerini taşımanΔ±n başka yollarΔ± da var. Δ°Γ§mek depodan 100mb(mili kova) harcar.", + "quests.stone_age.leather_flask.title": "Deri Matara", + "quests.stone_age.leather_flask.subtitle": "Eski inanΓ§lΔ±", + "quests.stone_age.leather_flask.desc": "Seramik SΓΌrahiden sonra 2. en kolay su taşıma aleti Deri MataradΔ±r. 500mb taşıyabilir, yada 5 iΓ§iş iΓ§in yeterl,.\n\nDeri Mataralar kullanΔ±lnca hasar alΔ±rlar, ama kΔ±rΔ±ldΔ±klarΔ±nda, elinde Deri ile tamir edebilirsin. Keseler bΓΌyΓΌk hayvanlardan elde edilebilir.", + "quests.stone_age.iron_flask.title": "Demir Matara", + "quests.stone_age.iron_flask.subtitle": "İşte bu uzun bir sΓΌre iş gΓΆrecek", + "quests.stone_age.iron_flask.desc": "Demir Matara, Deri MataranΔ±n ilk gelişmiş halidir. Deri mataradan Γ§ok daha dayanΔ±klΔ± ve 2000mb yani 20 iΓ§me hakkΔ± vardΔ±r.", + "quests.stone_age.water_bucket.title": "Su KovasΔ±", + "quests.stone_age.water_bucket.subtitle": "Düşündüğün kadar elde etmesi kolay değil", + "quests.stone_age.water_bucket.desc": "TaşımasΔ± ve elde etmesi kolay asla bitmeyen bir su kaynağı, ama biraz hantalca.\n\nNe yazik ki, Tahta Kovalar iΓ§mek iΓ§in kullanΔ±lamazlar, Γ§ΓΌnkΓΌ onlar su taşıma aleti değiller, eğer suyu koyarsan sadece Γ§ok kΓΌΓ§ΓΌk bir su kaynağı yaratΔ±r ve kaybolur.", + "quests.stone_age.glass_bottles.title": "Cam Şişeler", + "quests.stone_age.glass_bottles.subtitle": "Deri mataralar kadar havalΔ± değiller", + "quests.stone_age.glass_bottles.desc": "Cam Şişeler, Deri mataralarla aynΔ± ΓΆzeliktedir , 500mb su taşırlar. ama velakin, cam işlemek şuan mΓΌmkΓΌn değildir, ta ki sen Pirince şekil verene kadar.", + "quests.stone_age.water_jug.title": "Seramik SΓΌrahi", + "quests.stone_age.water_jug.subtitle": "Nispeten kolay su", + "quests.stone_age.water_jug.desc": "Bir Seramik SΓΌrahi elde etmesi Γ§ok kolaydΔ±r, ama sadece 100mb su taşıyabilir, yani her iΓ§işten sonra tekrar doldurman gerekli.\n\nHer sΓΌrahiden su iΓ§işinde rastegele bir şansa iΓ§tikten sonra kΔ±rΔ±labilir!", + "quests.stone_age.temperature.title": "Hava Durumu", + "quests.stone_age.temperature.subtitle": "BugΓΌnΓΌn Hava Durumu ne? AcΔ±.", + "quests.stone_age.temperature.desc": "Her yeni dΓΌnya yazΔ±n erken zamanlarΔ±nda başlar, her ay 8 gΓΌn sΓΌrer. Mevsimler değişir, sΔ±caklΔ±ktaki değşimler ektiklerini, meyve ağaΓ§larΔ±nΔ±, Γ§alΔ±larΔ±... ve seni etkiler!\n\nVΓΌcut Δ±sΔ±n senin onu dΓΌzgΓΌn bir seviyede tutman gereken şeylerden biridir. aΓ§lΔ±k ve can Γ§ubuğunun arasΔ±ndaki ΓΌΓ§gen değişkenlik gΓΆsterir. Eğilerek Tam sayΔ±larΔ± gΓΆrebilirsin -- soldaki sayΔ± senin Δ±slaklΔ±k durumunu, ve sağdaki sayΔ±lar VΓΌcut sΔ±caklığınΔ± ΓΆlΓ§er.", + "quests.stone_age.temperature.task": "Var", + "quests.stone_age.insulation.title": "Mekanik: VΓΌcut sΔ±caklığı", + "quests.stone_age.insulation.subtitle": "Hipo ve Hiper-termiye dikkat et!.", + "quests.stone_age.insulation.desc": "DΓΌnyadaki bir Γ§ok etmen senin VΓΌcut sΔ±caklığına etki eder, direk gelen gΓΌneş ışığı, Δ±slak olmak, ateşin yanΔ±nda durmak. VΓΌcut sΔ±caklığınΔ± daima 0-30CΒ° tutmalΔ±sΔ±n yoksa aksi takirde hasar alΔ±rsΔ±n, renkli efektler ile gΓΆsterilir.\n\nOrtam ve Γ§evre sΔ±caklığınΔ±n etkisini azaltmanΔ±n ve vΓΌcudunuzun Δ±sΔ±sΔ±nΔ± sabit bir seviyede tutmanΔ±n birden fazla yolu vardΔ±r, ve &lKΔ±yafet&r giymek en etikili yollardan biridir. KΔ±yafetleri zΔ±rh kΔ±smΔ±nda veya ikinci kΔ±yafet kΔ±smΔ±nda (curios slot) giyebilirsin..", + "quests.stone_age.primitive_insulation.title": "Δ°lkel YalΔ±tΔ±m", + "quests.stone_age.primitive_insulation.subtitle": "Mağara adamΔ± modasΔ±", + "quests.stone_age.primitive_insulation.desc": "Γ‡Δ±plak ve üşüyor musun? Bu senin yapabileceğin en kolay kΔ±yafettir, ve tabi ki düşük dayanΔ±klΔ±lΔ±k ile, daha iyi bir şey elde edene kadar seni tutacaktΔ±r.", + "quests.stone_age.furs.title": "YΔ±rtΔ±cΔ± HayvanlarΔ±n derileri", + "quests.stone_age.furs.subtitle": "AşırΔ± zor KΓΌrk giysiler", + "quests.stone_age.furs.desc": "BΓΌyΓΌk YΔ±rtΔ±cΔ± Hayvanlar normal deri düşürmek yerine kendilerinin kΓΌrkΓΌnΓΌ düşürΓΌrler, yani yalΔ±tΔ±mlΔ± kΔ±yafet yapmana olanal sağlar, yada kΓΌrkΓΌ parΓ§alayarak normal deri haline getirip sonra işleyebilirsin.", + "quests.stone_age.wool_clothes.title": "YΓΌn KΔ±yafetler", + "quests.stone_age.wool_clothes.subtitle": "soğuk Δ±sΔ±rığı karşı", + "quests.stone_age.wool_clothes.desc": "YΓΌn KΔ±yafetler aşırΔ± zorlu kışta ve soğuk iklimlere karşı mΓΌkemmeldir. BΓΌtΓΌn bir YΓΌnlΓΌ KΔ±yafet Γ§oğu kışlar iΓ§in idealdir.\n\nYΓΌn ΓΌrΓΌnΓΌ elde etmek iΓ§in, Koyun, Alpaka yada misk ΓΆkΓΌzΓΌlerinden yararlanabilirsin. Saha Rehberinin Fauna bΓΆlΓΌmΓΌ, her farklΔ± hayvanΔ±n nerede ve nasΔ±l bulunabileceğini listeler ve bilgi verir, ve HayvancΔ±lΔ±k bΓΆlΓΌmΓΌnde bunlarΔ±n nasΔ±l yΓΌnlerin tΔ±raşlanarak alΔ±nabileceğini anlatΔ±lΔ±yor.", + "quests.stone_age.insulated_leather_clothes.title": "YalΔ±tΔ±mlΔ± Deri KΔ±yafetler", + "quests.stone_age.insulated_leather_clothes.subtitle": "DışarΔ±sΔ± soğuk olmaya başlayΔ±nca", + "quests.stone_age.insulated_leather_clothes.desc": "YalΔ±tΔ±mlΔ± Deri KΔ±yafetler, YΓΌn KΔ±yafet elde etmekten daha kolaydΔ±r, ama yΓΌn kΔ±yafetden daha az yalΔ±tΔ±mlΔ± ve daha az sΔ±cak tutar. yinede Δ±lΔ±man ve soğuk bΓΆlgelerde yaşamak iΓ§in hΓ’lΓ’ Γ§ok etkililer.\n\nderileri iΓ§in hayvanlarΔ± ΓΆldΓΌrmen gerekli, yada bir hayvan evcileştir (yada ΓΆldΓΌr, ne uğraşıcam diyorsan) yΓΌn ΓΌreten hayvanlardan yΓΌn elde edersin, koyun, Alpaka veya Misk Γ–kΓΌzΓΌ. Saha Rehberinin Fauna bΓΆlΓΌmΓΌ, her farklΔ± hayvanΔ±n nerede ve nasΔ±l bulunabileceğini listeler ve bilgi verir, ve HayvancΔ±lΔ±k bΓΆlΓΌmΓΌnde bunlarΔ±n nasΔ±l yΓΌnlerin tΔ±raşlanarak alΔ±nabileceğini anlatΔ±lΔ±yor.", + "quests.stone_age.burlap_clothes.title": "Kenevir Kumaşı KΔ±yafet", + "quests.stone_age.burlap_clothes.subtitle": "Bu sana sΔ±caklΔ±k basΔ±nca", + "quests.stone_age.burlap_clothes.desc": "Kenevir kumaşı kenevirden yapΔ±lΔ±r. kenevir, sΔ±caklΔ±k ve nem ihtiyaΓ§larΔ± karşılandığı sΓΌrece Γ§oğu sΔ±cak iklimde yetişebilir..\n\nKenevir Kumaş Giysileri sΔ±cak yazlar veya diğer bazΔ± sΔ±cak ortamlar iΓ§in mΓΌkemmeldir, ama bunu daha sonra konuşucaz.", + "quests.stone_age.silk_clothes.title": "Δ°pek KΔ±yafet", + "quests.stone_age.silk_clothes.subtitle": "Δ°pek bΓΆceği yok, ΓΌzgΓΌnΓΌm!", + "quests.stone_age.silk_clothes.desc": "Δ°pek ΓΆrΓΌmcek ağından elde edilebilir, derinlerde bulunmadan yΓΌksek miktarda ipek elde etmek Γ§ok da mΓΌmkΓΌn değildir.\n\nΔ°pek Giysiler inanΔ±lmaz derecede sΔ±cak ortamlar iΓ§in mΓΌkemmeldir!, Çâller veya The Beneath'in alt kΔ±sΔ±mlarΔ± gibi.", + "quests.stone_age.clothes.title": "Giyinmek", + "quests.stone_age.clothes.subtitle": "Şık!", + "quests.stone_age.clothes.desc": " KΔ±yafet Giymek zorlu sΔ±caklΔ±klarΔ± en kolay şekilde alt etmenin yoludur, soğuk iklimler iΓ§in yΓΌn ve yalΔ±tΔ±mlΔ± deri kΔ±yafetler mΓΌkemmeldir, ipek ve kenevir kΔ±yafetlerde sΔ±cak iklimler iΓ§in idealdir.", + "quests.stone_age.find_rock.title": "Biraz Taş bul", + "quests.stone_age.find_rock.subtitle": "Grug taşlarΔ± Γ§akıştΔ±rmak", + "quests.stone_age.find_rock.desc": "MaceranΔ±n başlangΔ±cΔ±nda, farkedeceğin ilk şey dΓΌnyanΔ±n tamamen değişmiş olmasΔ±. ArtΔ±k ellerinle ağaΓ§ kΔ±ramΔ±yorsun, ama endişelenme, aletleri olmayan bir mağara adamΔ± mağara adamΔ± değiYldir!\n\nTahta kazma yapmak yerine, yerden taş toplamaya başlayabilirsin. En az 4 taş toplayarak başla. TaşlarΔ± sol tuş ile kΔ±rarak veya sağ tuş ile toplayabilirsin.", + "quests.stone_age.rock_knapping.title": "Yontmak", + "quests.stone_age.rock_knapping.subtitle": "TΔ±pkΔ± Paleolitik Γ§ağınΔ±n eski gΓΌnleri gibi", + "quests.stone_age.rock_knapping.desc": "Taşlar \"Yontulabilirler\", Yani basit bir malzemeyi birbirine Γ§arparak kullanΔ±labilir bir forma dΓΆnüştΓΌrme işlemidir. Taş Yontmak iΓ§in en az 2 taşa ihtiyaΓ§ vardΔ±r, ve onlarΔ± tutup ve havaya sağ tΔ±klarsan, Yontma arayΓΌzΓΌnΓΌ aΓ§acaksΔ±nΔ±z. daha sonra sen \"parΓ§alara ayΔ±rlarak\" taşlarΔ±nΔ±ndan bir tanesini taş alet başlığına Γ§evirirsin. FarklΔ± araΓ§lara ilgili tΓΌm şekiller EMI'da ve Saha KΔ±lavuzunda bulunabilir.\n\nYolculuğunuzun başlangΔ±cΔ±ndaki en ΓΆnemli iki alet bir Taş BΔ±Γ§ak ve bir Taş BaltadΔ±r, o yΓΌzden bu alet başlΔ±klarΔ±nΔ± yontmayΔ± deneyin.", + "quests.stone_age.find_stick.title": "Biraz Γ‡ubuk bul", + "quests.stone_age.find_stick.subtitle": "Bu aleti bir şekilde elinde tutmalΔ±sΔ±n", + "quests.stone_age.find_stick.desc": "Yerde başka Bol olan şeylerden biri Γ§ubuklardΔ±r, ve bir Γ§ok kullanΔ±m alanlarΔ± var! Onlarla aletler, meşaleler, ateş başlatΔ±cΔ±sΔ± gibi birΓ§ok benzeri şeyler yapΔ±labilir.\n\nenvanterinin başka tΓΌr Γ§ubuklar ile dolmasΔ±nΔ± ΓΆnlemek iΓ§in, onlarΔ± 'normal' Γ§ubuk haline getirebilir ve birbirlerini yığın halinede getirebilirsin. sonra, dokuz Γ§ubuğu deste haline de getirebilirsin, ve deste iΓ§erisinde Γ§ok fazla yığın vardΔ±r, yani odunlarΔ±n yerine bir altenatif olarak kullanΔ±labilir.", + "quests.stone_age.first_stone_tools.title": "Senin ilk aletlerin!", + "quests.stone_age.first_stone_tools.subtitle": "Sen maymun olmak ve maymun zeki olmak", + "quests.stone_age.first_stone_tools.desc": "TaşlarΔ± kullanΔ±labilir şekile yontarak, ve onlarΔ± Γ§ubuk ile birleştirip ilk ilkel aletlerini ΓΌretebilirsin. Ve sen Resmi olarak Taş Devrindesin!\n\nTaşlar senin basit hayatta kalma serΓΌvenin iΓ§in yeterlidir, ama gΓΌnΓΌn sonunda metal aletler yapmak istiyeceksin daha hΔ±zlΔ±, dayanΔ±klΔ±, ve alet seΓ§eneği. sΔ±radaki 2 yeni gΓΆrev toplayacağınΔ±n malzmeler konusunda yardΔ±m edecekler.", + "quests.stone_age.stone_tools.title": "Taş Aletler", + "quests.stone_age.stone_tools.subtitle": "TaşlarΔ± birbirine vurmak demek ki işe yarΔ±yormuş", + "quests.stone_age.stone_tools.desc": "Taşlar Nispeten basit ve ilkel materiyaler, metalleri işlemeyi âğrenene kadar taşlara mahkumsun. BazΔ± diğer işe yarayan aletlerden biri MΔ±zrak, vanilya Trident gibi fΔ±rlatΔ±labilir, ve Γ‡apa, bu da tarΔ±m yapmanΔ±zΔ± sağlar.", + "quests.stone_age.gather_straw.title": "Saman Topla", + "quests.stone_age.gather_straw.subtitle": "istersen Γ‡apa kullanabilirsin", + "quests.stone_age.gather_straw.desc": "DΓΌnyadaki Γ§oğu Γ§imeni Saman olarak toplayabilirsin, eğer bir Γ‡apa veya BΔ±Γ§ak ile keserek(kΔ±rmak). SamanlarΔ±n ΓΌretimde Γ§ok yeri vardΔ±r, ama Γ‡ukur FΔ±rΔ±nΔ± yapmak iΓ§in en az 8 Samana ihtiyacΔ±n var.\n\nSamanlarΔ± gΓΌneşten az da olsa korunmak iΓ§in Saman Şapka yapabilirsin, yada Saman BalyasΔ±, yani fiziksel Γ§arpışmasΔ± olmayan, basit yapΔ±larda kullanΔ±labilir.", + "quests.stone_age.gather_logs.title": "Odun Topla", + "quests.stone_age.gather_logs.subtitle": "GELΔ°YOR!", + "quests.stone_age.gather_logs.desc": "Yeni Taş Baltan ile beraber, ağaΓ§larΔ± kesebilirsin. ağacΔ± kΓΆkΓΌnden kesmek ağacΔ±n komple düşmesine sebep olur, sonucunda kΓΌtΓΌkler, Γ§ubuklar, ve fideler düşer.\n\nEn az 10 kΓΌtΓΌk topla -- 8 tanesi bir adet Γ‡ukur FΔ±rΔ±nΔ± iΓ§in gerekli kalan 2 odun isede Kamp Ateşi iΓ§im gerekli.", + "quests.stone_age.firepit.title": "Kamp Ateşi", + "quests.stone_age.firepit.subtitle": "Gece vakti yaklaşıyor!", + "quests.stone_age.firepit.desc.1": "Şimdi sende biraz odun var, şimdi sΔ±rada ilk ve senin Kamp Ateşini yapmakta! YaratΔ±klar geceleri yΓΌzeyde Γ§Δ±kmazlar, gece dolaşan yΔ±rtΔ±cΔ±lar uyanΔ±k olacak ve etrafta sinsice yeni avΔ±nΔ± avlanmak dolaşacaklar.\n\nΓΆncelikle ateş başlatΔ±cΔ± yapman lazΔ±m, ateş yakmana olanak sağlayan bir alet.", + "quests.stone_age.firepit.desc.2": "Kamp Ateşini yapmak iΓ§in, yere en az 1 kΓΌtΓΌk ve 3 Γ§ubuk at, daha sonra attığın yerdeki bloğun ΓΌstΓΌne ateş başlatΔ±cΔ± ile ateşle. aynΔ± zamanda saman ekleyerek işi kolaylaştΔ±rabilirsinde.\n\nKamp Ateşi sadece ışık ve sΔ±caklΔ±k kaynağı değildir, ama onu meşale yapmak ve Γ§iğ eti pişirmek iΓ§in de kullanabilirsin. Kamp Ateşinizi onunla etkileşim kurarak ve kullanΔ±cΔ± arayΓΌzΓΌne kΓΌtΓΌkler ekleyerek yanΔ±k tutabilirsiniz.. eğer ateş sΓΆnerse, daha fazla odun ekle ve ateş başlatΔ±cΔ± ile ateşle", + "quests.stone_age.find_clay.title": "Kil KaynaklarΔ±", + "quests.stone_age.find_clay.subtitle": "Sana bundan Γ§ok fazla lazΔ±m olacak", + "quests.stone_age.find_clay.desc": "Kil, taş devri teknolojisinin ΓΆnemli bir parΓ§asΔ±dΔ±r! Taş Yontamaya benzerler, Killer farklΔ± kalΔ±plara dΓΆnüştΓΌrΓΌrlerek Γ‡ukur FΔ±rΔ±nΔ±na yerleştirirlir ve yakΔ±lΔ±r, Γ§ok Γ§eşitli âğeler oluşturmak iΓ§indirler. Taş Alet Edavatlar ve Kil Seramikler, Metallerle nasΔ±l Γ§alışılacağınΔ± âğrenene ve işleyene kadar hayatta kalma serΓΌvenizin ana omurgasΔ± olacak.\n\nKil toprak iΓ§erisinde kendisini belli etirecek şekilde kabarcΔ±klar halinde bulunur, genelikle Γ§imen ile kaplΔ±dΔ±rlar. fakat, belli başlΔ± bitkiler, \"Kil GΓΆstergeleri\" olarak bilinirve ΓΆzelikle kil ΓΌzerinde bΓΌyΓΌrler. Δ°kliminizin hangi tΓΌr gΓΆstergelerin bΓΌyΓΌyebileceğini âğrenmek ve anlamak iΓ§in Saha KΔ±lavuzunu inceleyiniz.", + "quests.stone_age.clay.title": "Kil", + "quests.stone_age.clay.subtitle": "Bu kil!", + "quests.stone_age.clay.desc": "En az 25 parΓ§a kil topla. Sana ileremek iΓ§in en az 5 tane lazΔ±m olacak (sonraki gΓΆrevlere bakΔ±n). kile kalΔ±p şekli verdikten sonra, onlarΔ± bir Γ‡ukur FΔ±rΔ±nΔ±n iΓ§ine koy ateşle ve seramik olmasΔ±nΔ± bekle. Kil KalΔ±plarΔ± yapmak Taş Yontamaya benzerler, her eşya iΓ§in sana 5 kil lazΔ±m olacak ama yanlış tΔ±klarsan kili kaybetmezsin.", + "quests.stone_age.pit_kiln.title": "Γ‡ukur FΔ±rΔ±nΔ±", + "quests.stone_age.pit_kiln.subtitle": "ArtΔ±k işler sΔ±caklaşıyor", + "quests.stone_age.pit_kiln.desc": "Γ‡ukur FΔ±rΔ±nΔ± erken aşama eşyalarΔ± Δ±sΔ±tma yoludur. Bunu kil eşyalarΔ± Γ§ift taraflΔ± pişirmek iΓ§in kullanacağız, ve en ΓΆnemlisi, baya basit metalleri eriterek ilk metal eşyanΔ± oluştur, bir Testere!.\n\nBir Γ‡ukur FΔ±rΔ±nΔ± yapmak iΓ§in 8 saman, 8 odun, Δ±sΔ±tmak istedeğin bir şey, ve bir ateş başlatΔ±cΔ±sΔ±na ihtiyacΔ±n var. NasΔ±l yapΔ±lacağınΔ± âğrenmek iΓ§in Saha Rehberininde Γ‡ukur FΔ±rΔ±nΔ± bΓΆlΓΌmΓΌnΓΌ okuyunuz - kamp ateşi ile aynΔ± değil!", + "quests.stone_age.clay_products.title": "Kil ÜrΓΌnleri", + "quests.stone_age.clay_products.subtitle": "Sana Kilin Γ§ok amaΓ§lΔ± olduğunu sΓΆylemiştim.", + "quests.stone_age.clay_products.desc": "Bunlar kil ΓΌrΓΌnlerinden yapΔ±lan her şey. KalΔ±plar metal işçiliği iΓ§in kullanΔ±lΔ±r, Kil Kaplar eşya tutmasΔ± iΓ§in kullanΔ±lΔ±r, diğer kullanΔ±m alanlarΔ± Saha Rehberinde aΓ§Δ±klanΔ±yor. hepsini yapabileceğine inanΔ±yor musun?", + "quests.stone_age.make_jug.title": "Seramik SΓΌrahi", + "quests.stone_age.make_jug.subtitle": "Erken aşama SΔ±vΔ± depolamasΔ±", + "quests.stone_age.make_jug.desc": "bir sΓΌrahi yapΔ±labilecek en kolay sΔ±vΔ± deposudur, ama sadece 100mB taşıyabilir. aynΔ± zamanada iΓ§ebilirsinde, hava ΓΌflΓΌyerek biraz ses yap!", + "quests.stone_age.make_saw_mold.title": "Testere KalΔ±bΔ±", + "quests.stone_age.make_saw_mold.subtitle": "Δ°lk metal aletini yapma zamanΔ±", + "quests.stone_age.make_saw_mold.desc": "kilden yapman gereken ilk kalΔ±p testere kalΔ±bΔ±dΔ±r. az miktar metal beraberinde testerini yapabilirsin. testere ΓΆnemli bir alettir, &lKereste&r yapabilmek iΓ§in gereklidir, ve onunla beraber ilk &l&oTezgah.&r yapabilirsin", + "quests.stone_age.make_vessel.title": "Kil Kap", + "quests.stone_age.make_vessel.subtitle": "İşe yarar kΓΌΓ§ΓΌk Kavanozlar.", + "quests.stone_age.make_vessel.desc": "Kil kaplar bir depolama gibi kullanΔ±labilir, belli miktar eşyayΔ± bir slota taşır, ama daha ΓΆnemlisi, Metaller ile Γ§alışmaya başlamanΔ±n ilk aletidir.\n\nKil Kap ile etkileşim kurarak, onun kΓΌΓ§ΓΌk depolamasΔ±nΔ± aΓ§arsΔ±n, yani cehverleri koyabileceğin bir yer. The Vessel's tooltip can also tell you what your ores will melt into, which is especially useful when crafting alloys!\n\nPlacing the Vessel in a Γ‡ukur FΔ±rΔ±nΔ± and heating it up allows you to &lmelt&r the metal inside.\n\nIf you're feeling adventurous, you can mix different metal types to create Alloys. Alloys require specific percentage mixtures of metals. While Copper is great immediatly, you could make your very first metal tools with Bronze instead.", + "quests.stone_age.native_ores.title": "Cehverli Γ‡akΔ±l TaşlarΔ± mΔ±?", + "quests.stone_age.native_ores.subtitle": "aradığın ilk metale 'bakarsan' zaten hazΔ±r.", + "quests.stone_age.native_ores.desc.1": "Cevher damarlarΔ± bildiğimizden farklΔ± şekilde oluşuyorlar - rastgele bir mağarada gezerek bulamazsΔ±n, onun yerine yΓΌzeyde bulmanΔ±z gereken \"gΓΆsterge\"ler var. Bunlara ΓΆrnek olarak: kΓΌΓ§ΓΌk taş parΓ§alarΔ±, toz yığınΔ±, ve hatta kΓΌΓ§ΓΌk kristal tomurcuklar.\n\nBakΔ±ra dΓΆnüştΓΌrΓΌlebilir bir şey bulamΔ±yor musun? Başka bir taş Γ§eşidi aramayΔ± dene -- farklΔ± cehverler farklΔ± taş Γ§eşitlerinde var olurlar. Tam listey bakmak ve gΓΆrmek iΓ§in Saha Rehberinizin TFG Cevherleri kategorisine gΓΆz atΔ±nΔ±z.", + "quests.stone_age.native_ores.desc.2": "Neden bunlara GΓΆstergeler deniyor? Bu, doğrudan aşağısΔ±nda, bΓΌyΓΌk, hatta KOCAMAN cehver yatağı bulduğun gΓΆstergenin altΔ±nda yatΔ±yor. sende şuan bir kazma yok, o yΓΌzden bulduğun cehverleri not al! sonradan işine yarayabilirler.\n\nher bir tanesi bir parΓ§a değerinde, yani toplayabildiğin kadar topla, ama onlarΔ± bulduktan sonra not almayΔ± unutma!", + "quests.stone_age.first_saw.title": "Metalik Testere", + "quests.stone_age.first_saw.subtitle": "şimdi ilk metal eşyanΔ± yapma zamanΔ±", + "quests.stone_age.first_saw.desc.1": "Testerini yapmaya başlamadan ΓΆnce, Kil Kaba en az 144mb tekabΓΌl edecek şekilde metal barΔ±ndΔ±r. daha sonra, Kil KabΔ±nΔ± bir Γ‡ukur FΔ±rΔ±nΔ±na yerleştir ve ateşe ver.\n\nΓ‡ukur FΔ±rΔ±nΔ± sΓΆndüğü zaman,Kil Kap hala sΔ±cakken hΔ±zlΔ±ca alΔ±n,boş elinizde bir Tahta Maşa tutmayΔ± ihmal etmeyin, ve DΓΆkme arayΓΌzΓΌnΓΌ aΓ§mak iΓ§in onunla etkileşime geΓ§in. Testere KalΔ±bΔ±nΔ± DΓΆkme ArayΓΌzΓΌnΓΌn yuvasΔ±na yerleştirin ve ilk Testere BaşlığınΔ±zΔ± dolmasΔ±nΔ± bekleyin. daha sonra, Testere BaşlığınΔ±zΔ± bir Γ‡ubukla birleştirin ve Testerenizi oluşturun!", + "quests.stone_age.first_saw.desc.2": "Γ§alışmasΔ± en kolay metal bakΔ±rdΔ±r, alaşımlamada şansΔ±nΔ±zΔ± deneyebilirsiniz. Bu gΓΆrevin ya BakΔ±rdan ya da Bronz Alaşımdan yapΔ±lmış bir eşyayΔ± kabul edecektir.\n\n&lBizmut Bronz&r: BakΔ±r, Bizmuth ve Γ§inko. en zayΔ±f bronzdur, ama yapmasΔ± en kolayΔ± olabilir(kime gΓΆre neye gΓΆre).\n\n&lBronz&r: BakΔ±r ve Kalay. bildiğimiz bronzdur.\n\n&lSiyah Bronz&r: BakΔ±r, AltΔ±n, Ve GΓΌmüş ile alaşım yapΔ±lΔ±r: oyundaki en iyi bronzdur, ama yapmasΔ± daha pahalΔ±dΔ±r.", + "quests.stone_age.first_saw.tasks.1": "BakΔ±r veya Bronz Testere Başlığı.", + "quests.stone_age.first_saw.tasks.2": "BakΔ±r veya Bronz Testere.", + "quests.stone_age.craft_lumber.title": "sΔ±ra tezgah yapmaya geldi", + "quests.stone_age.craft_lumber.subtitle": "3x3 işçiliği elinizin altΔ±nda", + "quests.stone_age.craft_lumber.desc": "Kereste oluşturmak iΓ§in yeni Testerenizi ΓΌretim alanΔ±zdaki bir KΓΌtΓΌk ile oluşturun. 4 Kereste Tahtalara dΓΆnüştΓΌrΓΌlebilir...\n\n ve elinde 4 Tahta olunca, sΔ±ra ilk tezgahΔ±nΔ± yapmaya geldi.", + "quests.stone_age.workbench.title": "Tezgah", + "quests.stone_age.workbench.subtitle": "Tezgah LAN BU!", + "quests.stone_age.workbench.desc": "Tebrikler! tezgahΔ±n ile resmi olarak taş devrinin zirvesine giriş yapmış bulunmaktasΔ±n. Bu blok ile şimdiye kadar topladığınΔ±z eşyalarlar ve malzemeler ile Γ§ok sayΔ±da yeni şey yapabilir ve zaanata dΓΆnüştΓΌrebilirsiniz..\n\nŞimdi Taş Γ‡ağınΔ±n ana hedefiniz geliyoruz: BakΔ±r Γ–rs ile metalin dΓΌzgΓΌn işlenmesi ve şekil verilmesi!.\n\nYan not: Şu anda 14 kΓΌlΓ§e bronz yapmaya yetecek kadar malzeme toplayabilseniz de, ΓΆnce bakΔ±r ΓΆrsΓΌ işlemeden ve yapmadan yaptığınΔ±z bronzlarΔ± bir ΓΆrse dΓΆnüştΓΌremezsiniz, ΓΌzgΓΌnΓΌm! En azΔ±ndan ΓΆrsler geri dΓΆnüştΓΌrΓΌlebilir, bΓΆylece hiΓ§bir şey israf olmaz.", + "quests.stone_age.inventory.title": "Erken Depolama SeΓ§enekleri", + "quests.stone_age.inventory.subtitle": "TΓΌm Γ§ΓΆplerinizi kil kaplarda taşımayΔ± bΔ±rakmanΔ±n zamanΔ± geldi Γ§attΔ± artΔ±k", + "quests.stone_age.inventory.desc": "oyunun erken aşamalarΔ±nda, elinde 4 tane basit depolama Γ§ΓΆzΓΌmΓΌ olacak:\n\n&lSandΔ±kt&r: SandΔ±klar ΓΌretmesi en kolay ve etkili yollardan biridir, ama sadece 18 depolama yuvasΔ± var ve bΓΌyΓΌk nesneleri depolayamaz(alet vb.).\n\n&lKasa&r: Kasalar tek depolamalΔ±, en ucuz olanΔ±n 27 depolama yuvasΔ± var, ama yapmasΔ± daha pahalΔ±.\n\n&lSupply Cart&r: A Supply Cart has a huge size of 54 Slots and can be carried around with you, but takes up lots of space.\n\n&lLarge Vessels&r:The cheapest to craft, only requiring clay, and are ideal for food preservation. Available in a wide variety of colors too!", + "quests.stone_age.portable_storage.title": "Taşınabilir Depolama?", + "quests.stone_age.portable_storage.subtitle": "ÇünkΓΌ envanterin Γ§ΓΆplerle doldurmasΔ± lanet bir şey", + "quests.stone_age.portable_storage.desc": "&lTerraFirmaGreg Tavsiye&r bΓΆlΓΌmΓΌnde, Taşınabilir Depolama iΓ§in tΓΌm farklΔ± seΓ§enekleri kapsayan bir bΓΆlΓΌm var, dΓΌnyayΔ± dolaşırken yanΔ±nΔ±zda taşıyabileceğiniz eşyalarΔ±n sayΔ±sΔ±nΔ± artΔ±rabilmek iΓ§in. gΓΆrevi bulmakta zorlanΔ±yorsan, GΓΆrev ağacΔ±nΔ±n en sağ tarafΔ±ndaki gΓΆrevler.", + "quests.stone_age.barrels.title": "FΔ±Γ§Δ±lar", + "quests.stone_age.barrels.subtitle": "Oburiks?", + "quests.stone_age.barrels.desc": "Vanilla’daki eşdeğeri aksine, FΔ±Γ§Δ±lar sΔ±vΔ± depolularlar. fΔ±Γ§Δ±lar 10 kova sΔ±vΔ± tutabilirler, sΔ±vΔ±larΔ± depolamak iΓ§in basit bit Γ§ΓΆzΓΌm sunar.\n\naynΔ± zamanda eşya ve sΔ±vΔ±larΔ± kombolayabilirsin, deri, yapıştΔ±rΔ±cΔ±, harΓ§, alkol ve daha fazlasΔ±nΔ± yapabilirsin.", + "quests.stone_age.leather.title": "Deri", + "quests.stone_age.leather.subtitle": "tabikide her şey daha komplike olmak zorunda", + "quests.stone_age.leather.desc": "ΓΆldüğünde, vahşi hayvanlar postunu bΔ±rakΔ±r. postlar direk olarak deri niyetinde kullanΔ±lamazlar ve ΓΆnce işlenmeleri gerekir.\n\nDeri, kil ve taşta olduğu gibi, Yontulabilirler. Deriyi yontmak, Deri ZΔ±rh, matara, ve nicelerini yapmakta kullanΔ±lΔ±r.\neğer hayvanlarΔ± derisi iΓ§in ΓΆldΓΌrmek istemiyorsan, ve tropik bir bΓΆlgede yaşıyorsanΔ±z, bunun yerine AnanasΔ±, Ananas Derisine dΓΆnüştΓΌrebilirsiniz, normal deri ile aynΔ± işleve sahip.", + "quests.stone_age.leather_armor.title": "Deri ZΔ±rh", + "quests.stone_age.leather_armor.subtitle": "Baya basit Koruma", + "quests.stone_age.leather_armor.desc": "Deri zΔ±rh, minecrafta olduğu gibi, baya basit bir koruma iΓ§in kullanΔ±lΔ±r. daha fazlasΔ± değil, ama velakin sizi bir şekil dış elementlerden koruyacak ve Kesme hasarΔ±na karşı eh işte diyeceğimiz tΓΌrden koruma sağlayacaktΔ±r.", + "quests.stone_age.mining_prep.title": "Maden hazΔ±rlΔ±klarΔ±", + "quests.stone_age.mining_prep.subtitle": "UmarΔ±m ΓΆnceden bulduğun cevher gΓΆstergelerini nerede olduğunu hatΔ±rlΔ±yorsundur!", + "quests.stone_age.mining_prep.desc.1": "Taş devrinin ΓΆtesine geΓ§ebilmek iΓ§in sana Γ§ok fazla metal gerekli, ve yΓΌzeydeki kΓΌΓ§ΓΌk cevherleri toplamak yeterli olmayacak. aşağınΔ± kazarak başlΔ±yacaksΔ±n.\nbulduğun BakΔ±r cehverini &işaretlediğini&r varsayΔ±yorum, bulduğun gΓΆstegelerin en ortasΔ±nΔ± bularak kazmaya başla! baya derinde olabilir, ama işin sonunda kazmayΔ± o cehvere vuracaksΔ±n. Bir sonraki sayfada ilk madencilik yolculuğunuz iΓ§in yanΔ±nΔ±zda getirmek isteyeceğiniz bazΔ± ekipmanlar var!", + "quests.stone_age.mining_prep.desc.2": "&lKazma&r: bunu akΔ±l edersin heralde?, sonuΓ§ta madeni kazmak ve toplamak iΓ§in alete ihtiyacΔ±n var. Γ‡ekiΓ§ler sadece kazΔ±p cehveri yok edecektir!\n\n&merdivenler ve meşelaler&r:kazdığın delikten Γ§Δ±kmak ve etrafΔ±nΔ± gΓΆrmek iΓ§in!\n\n&ldestek Γ§ubuklarΔ± ve Keresteler&r: TFG'de madencilik Γ§ok daha tehlikeli vanillaya benzemez - sadece yaratΔ±klar spawn olduğu iΓ§in değil, ancak dikkatsizce kazmak Γ§ΓΆkmeye neden olabilir! Bunun ΓΌzerindeki gΓΆrev madencilik sΔ±rasΔ±nda tehlikelerin nasΔ±l azaltΔ±labileceğini ve engeleyebilieceğini ele alΔ±yor.\n\nşimdi git bir delik kaz, diggy diggy hole(şarkΔ± ismi)!", + "quests.stone_age.hazards.title": "Madencilik Tehlikeleri", + "quests.stone_age.hazards.subtitle": "YΓΌzeyin zor olduğunu düşündΓΌn? tekrar düşün evlat.", + "quests.stone_age.hazards.desc.1": "YaratΔ±klarΔ±n yanΔ± sΔ±ra, Madencilikteki en bΓΌyΓΌk zorluk Γ§ΓΆkmelerle uğraşmaktΔ±r. eğer havada Ham kaya varsa, 'desteklenmemiş' olarak kabul edilir ve kazΔ±ldığı zaman yanΔ±ndaki bloklarΔ±n Γ§ΓΆkme ihtimali başlar ve artar. mağaranΔ±n Γ§atΔ±larΔ± Sert kayalarla kaplΔ±dΔ±r, ki kazΔ±ldığı zaman Γ§ΓΆkme ihtimali olmaz. bunu minimale indirmek iΓ§in, yapabileceğin en gΓΌvenli şey aşağıya doğru kazmaktΔ±r, ancak başka bir şeyi gΓΌvenli bir şekilde kazmak istiyorsanΔ±z desteklerin nasΔ±l kullanacağınΔ±zΔ± âğrenmeniz gerekecek! odun ve testere ile yapΔ±lΔ±rlar.", + "quests.stone_age.hazards.desc.2": "Saha KΔ±lavuzu'nda destek Γ§ubuklarΔ±nΔ±n tam olarak nasΔ±l Γ§alıştığına ilişkin daha fazla ayrΔ±ntΔ±, şemalar ve bilgi bulunmaktadΔ±r, kΔ±saca, onlarΔ± yerleştirdikten sonra birbirinden dΓΆrt blok uzağa yerleştirmek en etkili yoldur. YalnΔ±zca ΓΌstteki dikey kirişler aslΔ±nda herhangi bir şeyi destekler ve kΓΌΓ§ΓΌk bir etki alanlarΔ±na sahiptirler..", + "quests.stone_age.copper_for_anvil.title": "Γ–rs iΓ§in BakΔ±r", + "quests.stone_age.copper_for_anvil.subtitle": "bir şekilde ve nasΔ±l oluyorsa o 14 bakΔ±r kΓΌlΓ§eyi elde etmeye başlasan iyi olacak.", + "quests.stone_age.copper_for_anvil.desc": "Γ–rsler ucuz değiller! her tΓΌrden ΓΆrs 14 kΓΌlΓ§e istiyor, yani onlarΔ± kaynak yaparak 7 tane Γ§ift kΓΌlΓ§e yapΔ±yorsun.\n\neğer madenciliğe girişmediysen bu noktada başlamak iyi olacaktΔ±r, yoksa domala domala 126 adet kΓΌΓ§ΓΌk bakΔ±rΔ± toplamak amelelikten başta bir şey değil.", + "quests.stone_age.get_raw_rock.title": "Ham Kaya", + "quests.stone_age.get_raw_rock.subtitle": "HayΔ±r,bu sadece \"Taş\" değil", + "quests.stone_age.get_raw_rock.desc": "BakΔ±r Γ–rsΓΌ oluştumak iΓ§in hem bir Taş Γ–rs'e hem de Odun KΓΆmΓΌrΓΌ Ocağına ihtiyacΔ±nΔ±z var. Taş Γ–rs yapmak iΓ§in, bir ham 'Igneous' kaya bloğuna ihtiyacΔ±nΔ±z olacak.\n\nHam kayayΔ± elde etmek iΓ§in dikkatli olman lazΔ±m &laround&r Kazmak istediğin Ham kayayΔ± elde etmek iΓ§in iΓ§in. Ham Kaya 6 tarafΔ± da havaya maruz kaldığında, şeklini bozarak düşer. son olarak, Ham igneous kaya bloğuna Γ‡ekiΓ§ ile sağ tΔ±klayarak onu Taş Γ–rsΓΌnΓΌze dΓΆnüştΓΌrΓΌn.", + "quests.stone_age.create_forge.title": "Demirci Ocağı", + "quests.stone_age.create_forge.subtitle": "Γ§ay ocağı burda bulunmamaktaktadΔ±r.", + "quests.stone_age.create_forge.desc": "Demirci OcağınΔ±, malzemeleri yΓΌksek sΔ±caklΔ±klara Δ±sΔ±tmak iΓ§in kullanΔ±lan odun kΓΆmΓΌrΓΌnden yapΔ±lma bir ΓΌretim istasyonudur. Demirci ocağı eşyalarΔ± Δ±sΔ±tmak ve eritmek iΓ§in gereken sΓΌre Γ‡ukur FΔ±rΔ±nΔ±na gΓΆre Γ§ok daha hΔ±zlΔ±dΔ±r, ve kontrol etmesi tabikide daha kolaydΔ±r.\n\nDemirci OcağınΔ± yapmak iΓ§in en az 7 kΓΆmΓΌre ihtiyacΔ±nΔ±z olacak, ve 5 kaya ve kaya bazlΔ± blok, ham kaya, kΔ±rΔ±k taş, taş tuğlasΔ± vb..\nDemirci Ocağığında odun kullanΔ±lamaz, onun yerine odun kΓΆmΓΌrΓΌ kullanΔ±r, kΓΆmΓΌr ve coke da kullanabilirsin.\n\nOdunKΓΆmΓΌr Γ‡ukuru ve KΓΆmΓΌr Demirci OcağınΔ±n nasΔ±l yapΔ±lacağına dair izlenecek yollar iΓ§in saha kΔ±lavuzunu kontrol ediniz.", + "quests.stone_age.rock_anvil.title": "Kayadan ΓΆrs", + "quests.stone_age.rock_anvil.subtitle": "baltayΔ± taşa vurdun demek", + "quests.stone_age.rock_anvil.desc": "Γ–rsler tΓΌm 'erken oyun' metal işleme sanatΔ±nΔ±n ana temel yapΔ±sΔ±dΔ±r. dΓΌzgΓΌn bir metal ΓΆrs oluşturabilmek iΓ§in, ΓΆnceki ΓΆrs kademesini kullanarak kΓΌlΓ§eleri kaynaklayΔ±p Γ§ift kΓΌlΓ§e yapmanΔ±z gerekecek. BakΔ±r 1. kademe olduğunu gΓΆz ΓΆnΓΌnde bulundurucaksak, kaya ΓΆrsΓΌnΓΌ kullanmak gerekecek. Ham igneous kaya bloğuna Γ‡ekiΓ§le sağ tΔ±klayarak Taş Γ–rsΓΌnΓΌzΓΌ oluşturabilirsiniz.. maleseef ki kaya ΓΆrsΓΌn yapabileceği tek şey bakΔ±r kΓΌlΓ§elerini kaynaklamak - bir şeyler yapmak ve şekil verebilmek iΓ§in elinizde adam akΔ±llΔ± metal ΓΆrse ihtiyacΔ±nΔ±z var olacaktΔ±r.", + "quests.stone_age.quern.title": "Quern ve Eltaşı", + "quests.stone_age.quern.subtitle": "Cevher işlemeye ilk ve birinci adΔ±m", + "quests.stone_age.quern.desc": "Quern ve eltaşı 2 tane bΓΌyΓΌk kaya parΓ§asΔ±nΔ±n sΓΌrtΓΌnme sonucu maddeleri işlenmesine yarayan aletdir. yere koyulan alt parΓ§a quern, ΓΌste yerleştiren parΓ§a el taşı. Quern, işlenmemiş cevherlerinizi parΓ§alanmış cevherlere dΓΆnüştΓΌrmek iΓ§in kullanΔ±labilir, eritildiğinde biraz daha yΓΌksek mB miktarΔ± elde edilir.\n\nbaşka tozlar oluşturmak iΓ§in Quern'i de kullanabilirsiniz akΔ± taşı, un, kemik tozu vb.", + "quests.stone_age.crush_ore.title": "Erken aşama maden işleme - BΓΆlΓΌm 1", + "quests.stone_age.crush_ore.subtitle": "cehverlerinden daha fazlasΔ±nΔ± elde etmek", + "quests.stone_age.crush_ore.desc": "Quern, cevherlerinizi işlemenin yalnΔ±zca ilk adΔ±mΔ±dΔ±r! cevher işleme bΓΌyΓΌk bir sistem ve işlemdir, ilerledikΓ§e bu kompleks canavar hakkΔ±nda daha fazlasΔ±nΔ± âğreneceksiniz, ve Γ§Δ±kardığınΔ±z her cevher başına Γ§ok daha fazla işlevli ve işe yarar ΓΌrΓΌnler ve diğer yan ΓΌrΓΌnleri Γ§Δ±karmak iΓ§in kullanΔ±labilir. başlamak iΓ§in, Γ‡Δ±kardığınΔ±z işlenmemiş cevherleri Quern'den geΓ§irerek parΓ§alanmış Cevher'e dΓΆnüştΓΌreceğiz. Sadece bu ilk adΔ±m, cevherinizin eriyeceği mB miktarΔ±nΔ± artΔ±rmak iΓ§in yeterlidir..", + "quests.stone_age.crush_crushed_ore.title": "Erken aşama maden işleme - BΓΆlΓΌm 2", + "quests.stone_age.crush_crushed_ore.subtitle": "vur duvara gelsin imana", + "quests.stone_age.crush_crushed_ore.desc": "ParΓ§alanmış Cevheri bir Γ‡ekiΓ§ yardΔ±mΔ± ile bir ΓΌretim tezgahΔ±nda birleştirerek Saf Olmayan Toza dΓΆnüştΓΌrΓΌn, mB verimini daha da artΔ±rΔ±r.\n\nŞimdilik bunlarΔ±n hepsi yavaş ve sΔ±kΔ±cΔ± olabilir, ama zamanla bu işi daha hΔ±zlΔ± hatta otomatik olarak yapabileceksin!", + "quests.stone_age.clean_dust.title": "Erken aşama maden işleme - BΓΆlΓΌm 3", + "quests.stone_age.clean_dust.subtitle": "kirli tozu yΔ±ka", + "quests.stone_age.clean_dust.desc": "sonunda, Saf Olmayan veya arΔ±ndΔ±rΔ±lmış bir suya atΔ±p birkaΓ§ saniye bekletmek onlarΔ± yΔ±kayacaktΔ±r ve tozu elde ediceksin, tozlar arΔ±nmış olacak!, ki cehverinin son hali. hatta cehver saf ise tam kΓΌlΓ§e elde edersin!", + "quests.stone_age.flux.title": "AkΔ± taşlarΔ±", + "quests.stone_age.flux.subtitle": "kΔ±saca metal iΓ§in yapıştΔ±rΔ±cΔ±", + "quests.stone_age.flux.desc": "akΔ± metalleri birbirine kaynaklamak ve ΓΌstΓΌnde Γ§alışmaya yarayan bir malzemedir, tabiki başka alanlarda kullanΔ±m alanlarΔ± var.\nbelli başlΔ± taş tΓΌrleri ΓΆrnek olarak Chalk, Limestone ve Mermer parΓ§alarΔ±na ayΔ±rlarak akΔ± taşı elde edilir, ve kabuklu deniz canlΔ±larΔ±nΔ±n kabuklarΔ± da aynΔ± şekilde.", + "quests.stone_age.weld_copper_ingots.title": "BakΔ±rΔ± kaynaklamak", + "quests.stone_age.weld_copper_ingots.subtitle": "BakΔ±r Γ–rse Γ§ok yakΔ±nΔ±z", + "quests.stone_age.weld_copper_ingots.desc": "OcağınΔ±zΔ± yakΔ±n ve en az 2 BakΔ±r KΓΌlΓ§e yerleştirin. eşya ipucusuna bakarak sΔ±caklığınΔ± kontrol edin! - yeterli sΔ±caklığa ulaşınca, \"Γ‡alışılabilir\" gΓΆsterecektir, ama bizim \"Kaynaklanabilir\"olana kadar beklememiz lazΔ±m, yani metalin erime noktasΔ±na yakΔ±n bir sΔ±caklΔ±ktΔ±r.\n\no sΔ±caklığa ulaştΔ±klarΔ±nda, hΔ±zlΔ± bir şekilde onlarΔ± ocaktan Γ§Δ±kar (boş elinde ahşap maşa tutmayΔ± unutma vallah yanarsΔ±n!) ve Taş Γ–rsΓΌn arayΓΌzΓΌne, biraz akΔ± koy. son olarak, Eğilerek hala metaller sΔ±cak iken sağ tΔ±klayarak birbirinme kaynak yap. Yeni Γ§ift kΓΌlΓ§enizi daha hΔ±zlΔ± soğutmak iΓ§in su veya kar kullanabilirsin.", + "quests.metal_age.copper_anvil.title": "T1 Γ–rs: BakΔ±r", + "quests.metal_age.copper_anvil.subtitle": "herşey bunu yapmak iΓ§indi!", + "quests.metal_age.copper_anvil.desc": "Tebrikler! resmi olarak taş devrini bitirmiş ve metalometalurji Γ§ağına geΓ§miş bulunmaktasΔ±n! BakΔ±r ΓΆrsΓΌn beraberinde, sonraki ana hedeflerin ΓΆrsΓΌnΓΌn kademesini yΓΌkseltmek olacak, ve her kademe ile beraberinde, HayatΔ±nΔ±zΔ± giderek daha kolay hale getirecek yeni araΓ§ gereΓ§ler ve olanaklar, ihtimaller beraberinde mevcut olacaktΔ±rlar. şimdi demirci ustasΔ± olma vakti geldi evlat!" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/lang/uk_ua.json b/kubejs/assets/tfg/lang/uk_ua.json index 1fa114ab8..6c647a693 100644 --- a/kubejs/assets/tfg/lang/uk_ua.json +++ b/kubejs/assets/tfg/lang/uk_ua.json @@ -35,6 +35,15 @@ "biome.tfg.mars/sangnum_edge": "ΠšΡ€Π°ΠΉ Π‘Π°Π½‘Π½ΡƒΠΌ", "biome.tfg.mars/sangnum_plains": "ΠŸΡ€Π΅Ρ€Ρ–Ρ Π‘Π°Π½‘Π½ΡƒΠΌ", "biome.tfg.mars/sangnum_hills": "Π‘ΠΎΠ»ΠΎΡ‚ΠΎ Π‘Π°Π½‘Π½ΡƒΠΌ", + "biome.tfg.venus/arachnoids": "Π’Π΅Π½Π΅Ρ€Ρ–Π°Π½ΡΡŒΠΊΡ– Π°Ρ€Π°Ρ…Π½ΠΎΡ—Π΄ΠΈ", + "biome.tfg.venus/fractured_pools": "Π ΠΎΠ·ΠΊΠΎΠ»ΠΎΡ‚Ρ– басСйни", + "biome.tfg.venus/fumaroles": "Π“Π°Π·ΠΎΠΏΠΎΠ΄Ρ–Π±Π½Ρ– Ρ„ΡƒΠΌΠ°Ρ€ΠΎΠ»ΠΈ", + "biome.tfg.venus/geysers": "ΠŸΠ΅ΠΊΡƒΡ‡ΠΈΠΉ Π“Π΅ΠΉΠ·Π΅Ρ€", + "biome.tfg.venus/jagged_tablelands": "Зубчасті плоскогір'я", + "biome.tfg.venus/salt_flats": "Боляні Ρ€Ρ–Π²Π½ΠΈΠ½ΠΈ", + "biome.tfg.venus/stromatolite_beach": "Π‘Ρ‚Ρ€ΠΎΠΌΠ°Ρ‚ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ пляТ", + "biome.tfg.venus/sulfuric_ravine": "Π‘Ρ–Ρ€Ρ‡Π°Π½ΠΈΠΉ яр", + "biome.tfg.venus/scorching_volcanoes": "ΠŸΠ°Π»ΡŽΡ‡Ρ– Π²ΡƒΠ»ΠΊΠ°Π½ΠΈ", "block.tfg.piglin_disguise": "ΠœΠ°ΡΠΊΡƒΠ²Π°Π½Π½Ρ ΠŸΡ–Π³Π»Ρ–Π½Π°", "block.tfg.piglin_disguise_block": "ΠœΠ°ΡΠΊΡƒΠ²Π°Π½Π½Ρ ΠŸΡ–Π³Π»Ρ–Π½Π°", "block.tfg.dry_ice": "Π‘ΡƒΡ…ΠΈΠΉ Π»Ρ–Π΄", @@ -172,6 +181,7 @@ "block.tfg.rock.gravel_deepslate": "Π“Ρ€Π°Π²Ρ–ΠΉ ΠΌΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚Ρƒ", "block.tfg.spike.deepslate_spike": "Π¨ΠΈΠΏ ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚Ρƒ", "block.tfg.loose.deepslate": "Розсипчастий ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΈΠΉ ΠšΠ°ΠΌΡ–Π½ΡŒ", + "block.tfg.rock.aqueduct_deepslate": "АквСдук Π· ΠΌΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚Ρƒ", "block.tfg.rock.hardened_blackstone": "Π—Π°Ρ‚Π²Π΅Ρ€Π΄Ρ–Π»ΠΈΠΉ ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚", "block.tfg.rock.cobble_blackstone_stairs": "ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΎΠ²Ρ– круглякові сходи", "block.tfg.rock.cobble_blackstone_slab": "ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΎΠ²Π° круглякова ΠΏΠ»ΠΈΡ‚Π°", @@ -213,6 +223,7 @@ "block.tfg.rock.gravel_dripstone": "Π“Ρ€Π°Π²Ρ–ΠΉ Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½Ρƒ", "block.tfg.spike.dripstone_spike": "Π¨ΠΈΠΏ Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½Ρƒ", "block.tfg.loose.dripstone": "Розсипчастий Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½ΠΎΠ²ΠΈΠΉ ΠšΠ°ΠΌΡ–Π½ΡŒ", + "block.tfg.rock.aqueduct_dripstone": "АквСдук Π· Ρ‚Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½Ρƒ", "block.tfg.rock.crackrack_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„Ρ–Ρ€Ρƒ", "block.tfg.rock.crackrack_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„Ρ–Ρ€Ρƒ", "block.tfg.rock.crackrack_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„Ρ–Ρ€Ρƒ", @@ -237,21 +248,27 @@ "block.tfg.rock.mossy_bricks_nether_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ… ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„Ρ–Ρ€ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", "block.tfg.rock.gravel_crackrack": "Π“Ρ€Π°Π²Ρ–ΠΉ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„Ρ–Ρ€Ρƒ", "block.tfg.loose.crackrack": "Π’Ρ–Π΄ΠΎΠΊΡ€Π΅ΠΌΠ»Π΅Π½ΠΈΠΉ ΠΊΠ°ΠΌΡ–Π½ΡŒ ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„Ρ–Ρ€Ρƒ", + "block.tfg.rock.aqueduct_nether": "АквСдук Π· ΠΊΠ΅Ρ€Π°Ρ‚ΠΎΡ„Ρ–Ρ‚Ρƒ", "block.tfg.rock.hardened_moon_stone": "Π—Π°Ρ‚Π²Π΅Ρ€Π΄Ρ–Π»ΠΈΠΉ Анорозит", "block.tfg.rock.moon_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚Ρƒ", - "block.tfg.rock.cobble_moon_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ кругляка", + "block.tfg.rock.cobble_moon_wall": "Anorthosite Cobble Wall", "block.tfg.rock.mossy_cobble_moon": "Анортозитовий ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΠΉ кругляк", "block.tfg.rock.mossy_cobble_moon_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΎΠ³ΠΎ кругляка", "block.tfg.rock.mossy_cobble_moon_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΎΠ³ΠΎ кругляка", "block.tfg.rock.mossy_cobble_moon_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΎΠ³ΠΎ кругляка", - "block.tfg.rock.mossy_bricks_moon_stone": "ΠœΠΎΡ…ΠΎΠ²Ρ– Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", - "block.tfg.rock.mossy_bricks_moon_stone_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ… Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.mossy_bricks_moon_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ… Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.mossy_bricks_moon_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ… Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", + "block.tfg.rock.mossy_bricks_moon": "Mossy Anorthosite Bricks", + "block.tfg.rock.mossy_bricks_moon_stairs": "Mossy Anorthosite Brick Stairs", + "block.tfg.rock.mossy_bricks_moon_slab": "Mossy Anorthosite Brick Slab", + "block.tfg.rock.mossy_bricks_moon_wall": "Mossy Anorthosite Brick Wall", "block.tfg.rock.chiseled_bricks_moon_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Ρ€Ρ–Π·ΡŒΠ±Π»Π΅Π½ΠΎΠ³ΠΎ Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚Ρƒ", "block.tfg.rock.gravel_moon": "Π“Ρ€Π°Π²Ρ–ΠΉ Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚Ρƒ", "block.tfg.spike.moon_stone_spike": "Π¨ΠΈΠΏ Π· Анорозиту", "block.tfg.loose.moon_stone": "Π ΠΈΡ…Π»ΠΈΠΉ Анорозитовий ΠšΠ°ΠΌΡ–Π½ΡŒ", + "block.tfg.rock.aqueduct_moon_stone": "АквСдук Π· Π°Π½ΠΎΡ€Ρ‚ΠΎΠ·ΠΈΡ‚Ρƒ", + "block.tfg.rock.polished_moon_wall": "Polished Anorthosite Wall", + "block.tfg.rock.cracked_bricks_moon_stairs": "Cracked Anorthosite Brick Stairs", + "block.tfg.rock.cracked_bricks_moon_slab": "Cracked Anorthosite Brick Slab", + "block.tfg.rock.cracked_bricks_moon_wall": "Cracked Anorthosite Brick Wall", "block.tfg.rock.hardened_moon_deepslate": "Π—Π°Ρ‚Π²Π΅Ρ€Π΄Ρ–Π»ΠΈΠΉ Норит", "block.tfg.rock.moon_deepslate_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ Π½ΠΎΡ€ΠΈΡ‚Ρƒ", "block.tfg.rock.moon_deepslate_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ Π½ΠΎΡ€ΠΈΡ‚Ρƒ", @@ -284,74 +301,91 @@ "block.tfg.rock.gravel_moon_deepslate": "Π“Ρ€Π°Π²Ρ–ΠΉ Π½ΠΎΡ€ΠΈΡ‚Ρƒ", "block.tfg.spike.moon_deepslate_spike": "Норитовий шип", "block.tfg.loose.moon_deepslate": "Π ΠΈΡ…Π»ΠΈΠΉ Норитовий ΠšΠ°ΠΌΡ–Π½ΡŒ", + "block.tfg.rock.aqueduct_moon_deepslate": "АквСдук Π· Π½ΠΎΡ€Ρ–Ρ‚Ρƒ", + "block.tfg.rock.mossy_bricks_moon_deepslate": "Mossy Norite Bricks", + "block.tfg.rock.mossy_bricks_moon_deepslate_stairs": "Mossy Norite Brick Stairs", + "block.tfg.rock.mossy_bricks_moon_deepslate_slab": "Mossy Norite Brick Slab", + "block.tfg.rock.mossy_bricks_moon_deepslate_wall": "Mossy Norite Brick Wall", "block.tfg.rock.hardened_mars_stone": "Π—Π°Ρ‚Π²Π΅Ρ€Π΄Ρ–Π»ΠΈΠΉ Аргіліт", "block.tfg.rock.mars_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚Ρƒ", - "block.tfg.rock.cobble_mars_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· кругляку Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚Ρƒ", + "block.tfg.rock.cobble_mars_wall": "Argillite Cobble Wall", "block.tfg.rock.mossy_cobble_mars": "Аргілітовий ΠΌΠΎΡ…ΠΎΠ²ΠΈΠΉ кругляк", "block.tfg.rock.mossy_cobble_mars_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.mossy_cobble_mars_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.mossy_cobble_mars_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.polished_mars_wall": "ΠŸΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½Π° Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚ΠΎΠ²Π° стіна", - "block.tfg.rock.mossy_bricks_mars_stone": "ΠœΠΎΡ…ΠΎΠ²ΠΈΡ‚Ρ– Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚ΠΎΠ²Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", - "block.tfg.rock.mossy_bricks_mars_stone_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.mossy_bricks_mars_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.mossy_bricks_mars_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.cracked_bricks_mars_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· тріснутих Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", + "block.tfg.rock.mossy_bricks_mars": "Mossy Argillite Bricks", + "block.tfg.rock.mossy_bricks_mars_stairs": "Mossy Argillite Brick Stairs", + "block.tfg.rock.mossy_bricks_mars_slab": "Mossy Argillite Brick Slab", + "block.tfg.rock.mossy_bricks_mars_wall": "Mossy Argillite Brick Wall", + "block.tfg.rock.cracked_bricks_mars_stairs": "Cracked Argillite Brick Stairs", + "block.tfg.rock.cracked_bricks_mars_slab": "Cracked Argillite Brick Slab", + "block.tfg.rock.cracked_bricks_mars_wall": "Cracked Argillite Brick Wall", "block.tfg.rock.chiseled_bricks_mars_wall": "Π‘Ρ‚Ρ–Π½Π° Π· тСсаного Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚Ρƒ", "block.tfg.rock.gravel_mars": "Π“Ρ€Π°Π²Ρ–ΠΉ Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚Ρƒ", "block.tfg.spike.mars_stone_spike": "Аргілітовий шип", "block.tfg.loose.mars_stone": "Π ΠΈΡ…Π»ΠΈΠΉ Аргілітовий ΠšΠ°ΠΌΡ–Π½ΡŒ", + "block.tfg.rock.aqueduct_mars_stone": "АквСдук Π· Π°Ρ€Π³ΠΈΠ»Ρ–Ρ‚Ρƒ", "block.tfg.rock.hardened_venus_stone": "Π—Π°Ρ‚Π²Π΅Ρ€Π΄Ρ–Π»ΠΈΠΉ Π’Ρ€Π°Ρ…Ρ–Ρ‚", "block.tfg.rock.venus_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚Ρƒ", - "block.tfg.rock.cobble_venus_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ кругляку", + "block.tfg.rock.cobble_venus_wall": "Trachyte Cobble Wall", "block.tfg.rock.mossy_cobble_venus": "Π’Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΠΌΠΎΡ…ΠΎΠ²ΠΈΠΉ кругляк", "block.tfg.rock.mossy_cobble_venus_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.mossy_cobble_venus_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.mossy_cobble_venus_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.polished_venus_wall": "ΠŸΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½Π° Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²Π° стіна", - "block.tfg.rock.mossy_bricks_venus_stone": "ΠœΠΎΡ…ΠΎΠ²ΠΈΡ‚Ρ– Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", - "block.tfg.rock.mossy_bricks_venus_stone_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.mossy_bricks_venus_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.mossy_bricks_venus_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.cracked_bricks_venus_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· тріснутих Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", + "block.tfg.rock.mossy_bricks_venus": "Mossy Trachyte Bricks", + "block.tfg.rock.mossy_bricks_venus_stairs": "Mossy Trachyte Brick Stairs", + "block.tfg.rock.mossy_bricks_venus_slab": "Mossy Trachyte Brick Slab", + "block.tfg.rock.mossy_bricks_venus_wall": "Mossy Trachyte Brick Wall", + "block.tfg.rock.cracked_bricks_venus_stairs": "Cracked Trachyte Brick Stairs", + "block.tfg.rock.cracked_bricks_venus_slab": "Cracked Trachyte Brick Slab", + "block.tfg.rock.cracked_bricks_venus_wall": "Cracked Trachyte Brick Wall", "block.tfg.rock.chiseled_bricks_venus_wall": "Π‘Ρ‚Ρ–Π½Π° Π· тСсаного Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚Ρƒ", "block.tfg.rock.gravel_venus": "Π“Ρ€Π°Π²Ρ–ΠΉ Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚Ρƒ", "block.tfg.spike.venus_stone_spike": "Π’Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ шип", "block.tfg.loose.venus_stone": "Π ΠΈΡ…Π»ΠΈΠΉ Π’Ρ€Π°Ρ…Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΠšΠ°ΠΌΡ–Π½ΡŒ", + "block.tfg.rock.aqueduct_venus_stone": "АквСдук Π· Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚Ρƒ", "block.tfg.rock.hardened_mercury_stone": "Π—Π°Ρ‚Π²Π΅Ρ€Π΄Ρ–Π»ΠΈΠΉ ΠšΠΎΠΌΠ°Ρ‚ΠΈΡ‚", "block.tfg.rock.mercury_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ ΠΊΠΎΠΌΠ°Ρ‚Ρ–Ρ—Ρ‚Ρƒ", - "block.tfg.rock.cobble_mercury_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΊΠΎΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ кругляку", + "block.tfg.rock.cobble_mercury_wall": "Komatiite Cobble Wall", "block.tfg.rock.mossy_cobble_mercury": "ΠšΠΎΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΈΠΉ ΠΌΠΎΡ…ΠΎΠ²ΠΈΠΉ кругляк", "block.tfg.rock.mossy_cobble_mercury_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· ΠΊΠΎΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.mossy_cobble_mercury_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· ΠΊΠΎΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.mossy_cobble_mercury_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΊΠΎΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.polished_mercury_wall": "ΠŸΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½Π° ΠΊΠΎΠΌΠ°Ρ‚Ρ–Ρ—Ρ‚ΠΎΠ²Π° стіна", - "block.tfg.rock.mossy_bricks_mercury_stone": "ΠœΠΎΡ…ΠΎΠ²ΠΈΡ‚Ρ– ΠΊΠΎΠΌΠ°Ρ‚Ρ–Ρ—Ρ‚ΠΎΠ²Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", - "block.tfg.rock.mossy_bricks_mercury_stone_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… ΠΊΠΎΠΌΠ°Ρ‚Ρ–Ρ—Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.mossy_bricks_mercury_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… ΠΊΠΎΠΌΠ°Ρ‚Ρ–Ρ—Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.mossy_bricks_mercury_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… ΠΊΠΎΠΌΠ°Ρ‚Ρ–Ρ—Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.cracked_bricks_mercury_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· тріснутих ΠΊΠΎΠΌΠ°Ρ‚Ρ–Ρ—Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", + "block.tfg.rock.mossy_bricks_mercury": "Mossy Komatiite Bricks", + "block.tfg.rock.mossy_bricks_mercury_stairs": "Mossy Komatiite Brick Stairs", + "block.tfg.rock.mossy_bricks_mercury_slab": "Mossy Komatiite Brick Slab", + "block.tfg.rock.mossy_bricks_mercury_wall": "Mossy Komatiite Brick Wall", + "block.tfg.rock.cracked_bricks_mercury_stairs": "Cracked Komatiite Brick Stairs", + "block.tfg.rock.cracked_bricks_mercury_slab": "Cracked Komatiite Brick Slab", + "block.tfg.rock.cracked_bricks_mercury_wall": "Cracked Komatiite Brick Wall", "block.tfg.rock.chiseled_bricks_mercury_wall": "Π‘Ρ‚Ρ–Π½Π° Π· тСсаного ΠΊΠΎΠΌΠ°Ρ‚Ρ–Ρ—Ρ‚Ρƒ", "block.tfg.rock.gravel_mercury": "Π“Ρ€Π°Π²Ρ–ΠΉ ΠΊΠΎΠΌΠ°Ρ‚Ρ–Ρ—Ρ‚Ρƒ", "block.tfg.spike.mercury_stone_spike": "ΠšΠΎΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΈΠΉ шип", "block.tfg.loose.mercury_stone": "Π ΠΈΡ…Π»ΠΈΠΉ ΠšΠΎΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΈΠΉ ΠšΠ°ΠΌΡ–Π½ΡŒ", + "block.tfg.rock.aqueduct_mercury_stone": "АквСдук Π· ΠΊΠΎΠΌΠ°Ρ‚ΠΈΡ‚Ρƒ", "block.tfg.rock.hardened_glacio_stone": "Π—Π°Ρ‚Π²Π΅Ρ€Π΄Ρ–Π»ΠΈΠΉ Π€ΠΎΠ½ΠΎΠ»Ρ–Ρ‚", "block.tfg.rock.glacio_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚Ρƒ", - "block.tfg.rock.cobble_glacio_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ кругляку", + "block.tfg.rock.cobble_glacio_wall": "Phonolite Cobble Wall", "block.tfg.rock.mossy_cobble_glacio": "Π€ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΠΌΠΎΡ…ΠΎΠ²ΠΈΠΉ кругляк", "block.tfg.rock.mossy_cobble_glacio_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.mossy_cobble_glacio_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.mossy_cobble_glacio_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", "block.tfg.rock.polished_glacio_wall": "ΠŸΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½Π° Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²Π° стіна", - "block.tfg.rock.mossy_bricks_glacio_stone": "ΠœΠΎΡ…ΠΎΠ²ΠΈΡ‚Ρ– Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", - "block.tfg.rock.mossy_bricks_glacio_stone_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.mossy_bricks_glacio_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.mossy_bricks_glacio_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", - "block.tfg.rock.cracked_bricks_glacio_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· тріснутих Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½", + "block.tfg.rock.mossy_bricks_glacio": "Mossy Phonolite Bricks", + "block.tfg.rock.mossy_bricks_glacio_stairs": "Mossy Phonolite Brick Stairs", + "block.tfg.rock.mossy_bricks_glacio_slab": "Mossy Phonolite Brick Slab", + "block.tfg.rock.mossy_bricks_glacio_wall": "Mossy Phonolite Brick Wall", + "block.tfg.rock.cracked_bricks_glacio_stairs": "Cracked Phonolite Brick Stairs", + "block.tfg.rock.cracked_bricks_glacio_slab": "Cracked Phonolite Brick Slab", + "block.tfg.rock.cracked_bricks_glacio_wall": "Cracked Phonolite Brick Wall", "block.tfg.rock.chiseled_bricks_glacio_wall": "Π‘Ρ‚Ρ–Π½Π° Π· тСсаного Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚Ρƒ", "block.tfg.rock.gravel_glacio": "Π“Ρ€Π°Π²Ρ–ΠΉ Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚Ρƒ", "block.tfg.spike.glacio_stone_spike": "Π€ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ шип", "block.tfg.loose.glacio_stone": "Π ΠΈΡ…Π»ΠΈΠΉ Π€ΠΎΠ½ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΠšΠ°ΠΌΡ–Π½ΡŒ", + "block.tfg.rock.aqueduct_glacio_stone": "АквСдук Π· Ρ„ΠΎΠ½ΠΎΠ»Ρ–Ρ‚Ρƒ", "block.tfg.rock.hardened_permafrost": "Π—Π°Ρ‚Π²Π΅Ρ€Π΄Ρ–Π»ΠΈΠΉ Π’Ρ–Ρ‡Π½ΠΎΠΌΠ΅Ρ€Π·Π»ΠΈΠΉ Ρ€ΡƒΠ½Ρ‚", "block.tfg.rock.permafrost_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΡ— Π²Ρ–Ρ‡Π½ΠΎΡ— ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚ΠΈ", "block.tfg.rock.permafrost_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΡ— Π²Ρ–Ρ‡Π½ΠΎΡ— ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚ΠΈ", @@ -360,18 +394,23 @@ "block.tfg.rock.cobble_permafrost_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· пСрмафростового кругляку", "block.tfg.rock.cobble_permafrost_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· пСрмафростового кругляку", "block.tfg.rock.cobble_permafrost_wall": "Π‘Ρ‚Ρ–Π½Π° Π· пСрмафростового кругляку", - "block.tfg.rock.mossy_cobble_permafrost_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· пСрмафростового ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", - "block.tfg.rock.mossy_cobble_permafrost_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· пСрмафростового ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", - "block.tfg.rock.mossy_cobble_permafrost_wall": "Π‘Ρ‚Ρ–Π½Π° Π· пСрмафростового ΠΌΠΎΡ…ΠΎΠ²ΠΎΠ³ΠΎ кругляку", + "block.tfg.rock.mossy_cobble_permafrost": "Mossy Cobble Permafrost", + "block.tfg.rock.mossy_cobble_permafrost_stairs": "Mossy Cobble Permafrost Stairs", + "block.tfg.rock.mossy_cobble_permafrost_slab": "Mossy Cobble Permafrost Slab", + "block.tfg.rock.mossy_cobble_permafrost_wall": "Mossy Cobble Permafrost Wall", "block.tfg.rock.polished_permafrost_wall": "ΠŸΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½Π° Π²Ρ–Ρ‡Π½ΠΎΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚Π½Π° стіна", "block.tfg.rock.mossy_bricks_permafrost": "ΠœΠΎΡ…ΠΎΠ²ΠΈΡ‚Ρ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ Π· Π²Ρ–Ρ‡Π½ΠΎΡ— ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚ΠΈ", "block.tfg.rock.mossy_bricks_permafrost_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½ Π· Π²Ρ–Ρ‡Π½ΠΎΡ— ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚ΠΈ", "block.tfg.rock.mossy_bricks_permafrost_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½ Π· Π²Ρ–Ρ‡Π½ΠΎΡ— ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚ΠΈ", "block.tfg.rock.mossy_bricks_permafrost_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΌΠΎΡ…ΠΎΠ²ΠΈΡ‚ΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½ Π· Π²Ρ–Ρ‡Π½ΠΎΡ— ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚ΠΈ", - "block.tfg.rock.cracked_bricks_permafrost_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· тріснутих Ρ†Π΅Π³Π»ΠΈΠ½ Π· Π²Ρ–Ρ‡Π½ΠΎΡ— ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚ΠΈ", + "block.tfg.rock.cracked_bricks_permafrost_stairs": "Cracked Permafrost Brick Stairs", + "block.tfg.rock.cracked_bricks_permafrost_slab": "Cracked Permafrost Brick Slab", + "block.tfg.rock.cracked_bricks_permafrost_wall": "Cracked Permafrost Brick Wall", + "block.tfg.rock.chiseled_bricks_permafrost_wall": "Chiseled Permafrost Wall", "block.tfg.rock.gravel_permafrost": "Π“Ρ€Π°Π²Ρ–ΠΉ Π²Ρ–Ρ‡Π½ΠΎΡ— ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚ΠΈ", "block.tfg.spike.permafrost_spike": "Π¨ΠΈΠΏ Π· Π’Ρ–Ρ‡Π½ΠΎΠΌΠ΅Ρ€Π·Π»ΠΎΠ³ΠΎ Ρ€ΡƒΠ½Ρ‚Ρƒ", "block.tfg.loose.permafrost": "Π’Ρ–Π΄ΠΎΠΊΡ€Π΅ΠΌΠ»Π΅Π½ΠΈΠΉ ΠΊΠ°ΠΌΡ–Π½ΡŒ Π²Ρ–Ρ‡Π½ΠΎΡ— ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚ΠΈ", + "block.tfg.rock.aqueduct_permafrost": "АквСдук Π· Π²Ρ–Ρ‡Π½ΠΎΡ— ΠΌΠ΅Ρ€Π·Π»ΠΎΡ‚ΠΈ", "block.tfg.rock.hardened_red_granite": "Π—Π°Π³Π°Ρ€Ρ‚ΠΎΠ²Π°Π½ΠΈΠΉ Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Ρ–Ρ‚", "block.tfg.rock.red_granite_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΠ³ΠΎ Π³Ρ€Π°Π½Ρ–Ρ‚Ρƒ", "block.tfg.rock.red_granite_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· Π½Π΅ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΠ³ΠΎ Π³Ρ€Π°Π½Ρ–Ρ‚Ρƒ", @@ -397,18 +436,30 @@ "block.tfg.rock.gravel_red_granite": "Π“Ρ€Π°Π²Ρ–ΠΉ Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΠ³ΠΎ Π³Ρ€Π°Π½Ρ–Ρ‚Ρƒ", "block.tfg.loose.red_granite": "Розсипчастий Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Ρ–Ρ‚Π½ΠΈΠΉ ΠΊΠ°ΠΌΡ–Π½ΡŒ", "block.tfg.spike.red_granite_spike": "Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ шпиль", + "block.tfg.rock.aqueduct_red_granite": "АквСдук Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΠ³ΠΎ Π³Ρ€Π°Π½Ρ–Ρ‚Ρƒ", "block.tfg.rock.stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· рСконструйованого камСню", "block.tfg.rock.smooth_stone_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· ΠΏΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½ΠΎΠ³ΠΎ рСконструйованого камСню", "block.tfg.rock.smooth_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΏΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½ΠΎΠ³ΠΎ рСконструйованого камСню", "block.tfg.rock.cracked_bricks_stone_stairs": "Π‘Ρ…ΠΎΠ΄ΠΈ Π· тріснутих Ρ†Π΅Π³Π»ΠΈΠ½ Π· рСконструйованого камСню", "block.tfg.rock.cracked_bricks_stone_slab": "ΠŸΠ»ΠΈΡ‚Π° Π· тріснутих Ρ†Π΅Π³Π»ΠΈΠ½ Π· рСконструйованого камСню", "block.tfg.rock.cracked_bricks_stone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· тріснутих Ρ†Π΅Π³Π»ΠΈΠ½ Π· рСконструйованого камСню", + "block.tfg.rock.aqueduct_stone": "АквСдук Π· рСконституйованого камСню", "block.tfg.rock.smooth_red_sandstone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· Π³Π»Π°Π΄ΠΊΠΎΠ³ΠΎ Π³Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ пісковику", + "block.tfg.rock.cut_red_sandstone_stairs": "Cut Hematitic Sandstone Stairs", "block.tfg.rock.cut_red_sandstone_wall": "Π‘Ρ‚Ρ–Π½Π° Π· ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΎΠ³ΠΎ Π³Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ пісковику", + "block.tfg.rock.bricks_venus_sandstone_wall": "Trachyte Sandstone Brick Wall", + "block.tfg.rock.cracked_bricks_venus_sandstone_stairs": "Cracked Trachyte Sandstone Brick Stairs", + "block.tfg.rock.cracked_bricks_venus_sandstone_slab": "Cracked Trachyte Sandstone Brick Slab", + "block.tfg.rock.cracked_bricks_venus_sandstone_wall": "Cracked Trachyte Sandstone Brick Wall", + "block.tfg.rock.quartz_wall": "Quartz Wall", + "block.tfg.rock.smooth_quartz_wall": "Smooth Quartz Wall", "block.tfg.rock.raw.stromatolite": "Π‘ΠΈΡ€ΠΈΠΉ строматоліт", "block.tfg.rock.spike.stromatolite": "Π‘Ρ‚Ρ€ΠΎΠΌΠ°Ρ‚ΠΎΠ»Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ шип", + "block.tfg.stromatolite_cluster_small": "Малий кластСр строматолітів", + "block.tfg.stromatolite_cluster_medium": "Π’Π΅Π»ΠΈΠΊΠΈΠΉ кластСр строматолітів", "block.tfg.rock.raw.geyserite": "Π‘ΠΈΡ€ΠΈΠΉ Π“Π΅ΠΉΠ·Π΅Ρ€ΠΈΡ‚", "block.tfg.rock.spike.geyserite": "Π“Π΅ΠΉΠ·Π΅Ρ€ΠΈΡ‚ΠΎΠ²ΠΈΠΉ шип", + "block.tfg.rock.halite": "Halite", "block.tfg.mushroom_roots": "ΠšΠΎΡ€Ρ–Π½Π½Ρ Π³Ρ€ΠΈΠ±Ρ–Π²", "block.tfg.mushroom_sprouts": "ΠŸΠ°Ρ€ΠΎΡΡ‚ΠΊΠΈ Π³Ρ€ΠΈΠ±Ρ–Π²", "block.tfg.charred_log": "ΠžΠ±Π²ΡƒΠ³Π»Π΅Π½Π° ΠΊΠΎΠ»ΠΎΠ΄Π°", @@ -481,6 +532,8 @@ "block.tfg.zpm_gas_pressurizer": "Β§dΠ•Π»Ρ–Ρ‚Π½ΠΈΠΉ Π“Π°Π·ΠΎΠ²ΠΈΠΉ ΠŸΡ€Π΅ΡΡƒΡ€ΠΈΠ·Π°Ρ‚ΠΎΡ€ IIIΒ§r", "block.tfg.uv_gas_pressurizer": "Β§3Π£Π»ΡŒΡ‚ΠΈΠΌΠ°Ρ‚ΠΈΠ²Π½ΠΈΠΉ Π“Π°Π·ΠΎΠ²ΠΈΠΉ ΠŸΡ€Π΅ΡΡƒΡ€ΠΈΠ·Π°Ρ‚ΠΎΡ€Β§r", "block.tfg.fluid.semiheavy_ammoniacal_water": "Π’Π΅Ρ€ΠΌΠΎΡ…Ρ–ΠΌΡ–Ρ‡Π½ΠΎ Π·Π±Π°Π³Π°Ρ‡Π΅Π½Π° Π°ΠΌΠΎΠ½Ρ–Π°Ρ‡Π½Π° Π½Π°ΠΏΡ–Π²Π²Π°ΠΆΠΊΠ° Π²ΠΎΠ΄Π°", + "block.tfg.fluid.sulfur_fumes": "Густі сірчані Π²ΠΈΠΏΠ°Ρ€ΠΈ", + "block.tfg.fluid.geyser_slurry": "ΠŸΠ΅Ρ€Π΅Π³Ρ€Ρ–Ρ‚Π° суспСнзія", "block.tfg.grass.mars_dirt": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΈΠΉ ‘Ρ€ΡƒΠ½Ρ‚", "block.tfg.grass.mars_clay_dirt": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΈΠΉ Глиняний Ρ€ΡƒΠ½Ρ‚", "block.tfg.grass.mars_farmland": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠ΅ ΠΏΠΎΠ»Π΅", @@ -496,7 +549,7 @@ "block.tfg.grass.sangnum_kaolin_mycelium": "ΠšΠ°ΠΎΠ»Ρ–Π½ΠΎΠ²ΠΈΠΉ ΠœΡ–Ρ†Π΅Π»Ρ–ΠΉ Π‘Π°Π½Π³Π½ΡƒΠΌ", "block.tfg.spice": "Поклад ΠžΡΡ‚Ρ€ΠΎΠΌΡƒ", "block.tfg.saplings.crimson": "Багряний Π³Ρ€ΠΈΠ±", - "block.tfg.saplings.warped": "ΠŸΠΎΠΊΡ€ΡƒΡ‡Π΅Π½ΠΈΠΉ Π³Ρ€ΠΈΠ±", + "block.tfg.saplings.warped": "Π₯ΠΈΠΌΠ΅Ρ€Π½ΠΈΠΉ Π³Ρ€ΠΈΠ±", "block.tfg.saplings.alphacene": "ΠΠ»ΡŒΡ„Π°Ρ†Π΅Π½ΠΎΠ²ΠΈΠΉ Π³Ρ€ΠΈΠ±", "block.tfg.saplings.aeronos": "ΠΠ΅Ρ€ΠΎΠ½ΡΡŒΠΊΠΈΠΉ Π³Ρ€ΠΈΠ±", "block.tfg.saplings.strophar": "Π‘Ρ‚Ρ€ΠΎΡ„Π°Ρ€ΡΡŒΠΊΠΈΠΉ Π³Ρ€ΠΈΠ±", @@ -563,6 +616,8 @@ "block.tfg.casings.heat_pipe_casing": "Π’Π΅ΠΏΠ»ΠΎΡ‚Ρ€ΡƒΠ±Π½Π° ΠΎΠ±ΠΎΠ»ΠΎΠ½ΠΊΠ°", "block.tfg.glacian_wool_frame": "ΠžΠ±Ρ€Π°ΠΌΠ»Π΅Π½Π° ‘Π»Π°Ρ†Ρ–Π°Π½ΡΡŒΠΊΠ° Π²ΠΎΠ²Π½Π°", "block.tfg.aes_insulation_frame": "ΠžΠ±Ρ€Π°ΠΌΠ»Π΅Π½Π° AES ізоляція", + "block.tfg.machine_casing_power_casing": "Π†Π·ΠΎΠ»ΡŒΠΎΠ²Π°Π½ΠΈΠΉ силовий ΠΊΠΎΠΆΡƒΡ…", + "block.tfg.active_power_transformer": "Активний Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ трансформатор", "block.tfg.sand.fluorapatite.blue": "Π‘ΠΈΠ½Ρ–ΠΉ Ρ„Π»ΡƒΠΎΡ€Π°ΠΏΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΈΠΉ пісок", "block.tfg.sandstone.raw.fluorapatite.blue": "НСоброблСний Π‘ΠΈΠ½Ρ–ΠΉ Π€Π»ΡƒΠΎΡ€Π°ΠΏΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΈΠΉ ΠŸΡ–ΡΠΊΠΎΠ²ΠΈΠΊ", "block.tfg.sandstone.wall.raw.fluorapatite.blue": "Π‘Ρ‚Ρ–Π½Π° Π· НСоброблСного Бинього Π€Π»ΡƒΠΎΡ€Π°ΠΏΠ°Ρ‚ΠΈΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠŸΡ–ΡΠΊΠΎΠ²ΠΈΠΊΡƒ", @@ -631,7 +686,7 @@ "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.large_nest_box_warped": "Π’Π΅Π»ΠΈΠΊΠ΅ Ρ…ΠΈΠΌΠ΅Ρ€Π½Π΅ Π³Π½Ρ–Π·Π΄ΠΎ", "block.tfg.titanium_concrete": "Π‘Π΅Ρ‚ΠΎΠ½ Π· Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²ΠΎΡŽ Π°Ρ€ΠΌΠ°Ρ‚ΡƒΡ€ΠΎΡŽ", "block.tfg.polished_titanium_concrete": "ΠŸΠΎΠ»Ρ–Ρ€ΠΎΠ²Π°Π½ΠΈΠΉ Π±Π΅Ρ‚ΠΎΠ½ Π· Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²ΠΎΡŽ Π°Ρ€ΠΌΠ°Ρ‚ΡƒΡ€ΠΎΡŽ", "block.tfg.titanium_concrete_tile": "Π‘Π΅Ρ‚ΠΎΠ½Π½Π° ΠΏΠ»ΠΈΡ‚Π° Π· Ρ‚ΠΈΡ‚Π°Π½ΠΎΠ²ΠΎΡŽ Π°Ρ€ΠΌΠ°Ρ‚ΡƒΡ€ΠΎΡŽ", @@ -642,18 +697,20 @@ "block.tfg.nuclear_turbine": "Π―Π΄Π΅Ρ€Π½Π° ΠΏΠ°Ρ€ΠΎΠ²Π° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°", "block.tfg.evaporation_tower": "Π’ΠΈΠΏΠ°Ρ€Π½Π° ΠΊΠ°ΠΌΠ΅Ρ€Π°", "block.tfg.cooling_tower": "Π―Π΄Π΅Ρ€Π½Π° градирня", + "block.tfg.smr_generator": "Мала ΠΌΠΎΠ΄ΡƒΠ»ΡŒΠ½Π° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°", + "block.tfg.casings.machine_casing_desh_ptfe": "Π Π°Π΄Ρ–Π°Ρ†Ρ–ΠΉΠ½ΠΎ-Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΈΠΉ ΠΊΠΎΠΆΡƒΡ… Ρ–Π· дСша", "block.tfg.growth_monitor": "ΠœΠΎΠ½Ρ–Ρ‚ΠΎΡ€ росту", "block.tfg.sample_rack": "Π‘Ρ‚Ρ–ΠΉΠΊΠ° для Π·Ρ€Π°Π·ΠΊΡ–Π²", "block.tfg.casings.machine_casing_sterilizing_pipes": "Π‘Ρ‚Π΅Ρ€ΠΈΠ»Ρ–Π·Π°Ρ†Ρ–ΠΉΠ½Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ", - "fluid.tfg.nether_slurry": "ΠΠ΅Π·Π΅Ρ€ΡΡŒΠΊΠΈΠΉ шлам", - "fluid.tfg.enriched_nether_slurry": "Π—Π±Π°Π³Π°Ρ‡Π΅Π½ΠΈΠΉ Π½Π΅Π·Π΅Ρ€ΡΡŒΠΊΠΈΠΉ шлам", - "fluid.tfg.ender_slurry": "Π•Π½Π΄Π΅Ρ€ΡΡŒΠΊΠΈΠΉ шлам", - "fluid.tfg.enriched_ender_slurry": "Π—Π±Π°Π³Π°Ρ‡Π΅Π½ΠΈΠΉ Π΅Π½Π΄Π΅Ρ€ΡΡŒΠΊΠΈΠΉ шлам", + "block.tfg.moderate_core": "ΠŸΠΎΠΌΡ–Ρ€Π½Π΅ ядро", + "block.tfg.impure_moderate_core": "НСчистС ΠΏΠΎΠΌΡ–Ρ€Π½Π΅ ядро", + "block.tfg.moderate_core_frame": "ΠšΠ°Ρ€ΠΊΠ°Ρ ΠΏΠΎΠΌΡ–Ρ€Π½ΠΎΠ³ΠΎ ядра", + "block.tfg.impure_moderate_core_frame": "ΠšΠ°Ρ€ΠΊΠ°Ρ нСчистого ΠΏΠΎΠΌΡ–Ρ€Π½ΠΎΠ³ΠΎ ядра", + "fluid.tfg.heavy_ammoniacal_water": "Π’Π°ΠΆΠΊΠ° Π°ΠΌΡ–Π°Ρ‡Π½Π° Π²ΠΎΠ΄Π°", "fluid.tfg.semiheavy_ammoniacal_water": "Π’Π΅Ρ€ΠΌΠΎΡ…Ρ–ΠΌΡ–Ρ‡Π½ΠΎ Π·Π±Π°Π³Π°Ρ‡Π΅Π½Π° Π°ΠΌΠΎΠ½Ρ–Π°Ρ‡Π½Π° Π½Π°ΠΏΡ–Π²Π²Π°ΠΆΠΊΠ° Π²ΠΎΠ΄Π°", - "fluid.tfg.heavy_water": "Π’Π°ΠΆΠΊΠ° Π²ΠΎΠ΄Π°", - "fluid.tfg.semiheavy_water": "НапівваТка Π’ΠΎΠ΄Π°", - "fluid.tfg.sulfur_fumes": "Π‘Ρ–Ρ€Ρ‡Π°Π½Ρ– Π²ΠΈΠΏΠ°Ρ€ΠΈ", - "fluid.tfg.super_heated_slurry": "Π‘ΡƒΠΏΠ΅Ρ€Π½Π°Π³Ρ€Ρ–Ρ‚ΠΈΠΉ шлам", + "fluid.tfg.sulfur_fumes": "Густі сірчані Π²ΠΈΠΏΠ°Ρ€ΠΈ", + "fluid.tfg.geyser_slurry": "ΠŸΠ΅Ρ€Π΅Π³Ρ€Ρ–Ρ‚Π° суспСнзія", + "fluid.tfg.cryogenized_fluix": "ΠšΡ€Ρ–ΠΎΠ³Π΅Π½Ρ–Π·ΠΎΠ²Π°Π½ΠΈΠΉ Ρ„Π»ΡŽΡ—ΠΊΡ", "item.tfg.antipoison_pill": "Антиотруйна ΠŸΡ–Π»ΡŽΠ»Ρ", "item.tfg.haste_pill": "ΠŸΡ–Π»ΡŽΠ»Ρ ΠŸΡ€ΠΈΡΠΊΠΎΡ€Π΅Π½Π½Ρ", "item.tfg.night_vision_pill": "ΠŸΡ–Π»ΡŽΠ»Ρ Нічного БачСння", @@ -678,6 +735,8 @@ "item.tfg.invisibility_salvo": "Π—Π°Π»ΠΏ НСвидимості", "item.tfg.luck_salvo": "Π—Π°Π»ΠΏ Π£Π΄Π°Ρ‡Ρ–", "item.tfg.resistance_salvo": "Π—Π°Π»ΠΏ ΠžΠΏΠΎΡ€Ρƒ", + "item.tfg.paracetamol_pill": "ΠŸΡ–Π³ΡƒΠ»ΠΊΠ° ΠΏΠ°Ρ€Π°Ρ†Π΅Ρ‚Π°ΠΌΠΎΠ»Ρƒ", + "item.tfg.rad_away_pill": "ΠŸΡ–Π³ΡƒΠ»ΠΊΠ° Π°Π½Ρ‚ΠΈΡ€Π°Π΄ΠΈΠ½Ρƒβ„’", "item.tfg.paraffin_wax": "ΠŸΠ°Ρ€Π°Ρ„Ρ–Π½ΠΎΠ²ΠΈΠΉ Віск", "item.tfg.flint_arrow_head": "ΠšΡ€Π΅ΠΌΠ΅Π½Π΅Π²ΠΈΠΉ НаконСчник Π‘Ρ‚Ρ€Ρ–Π»ΠΈ", "item.tfg.fletching": "ΠžΠΏΠ΅Ρ€Π΅Π½Π½Ρ", @@ -698,6 +757,7 @@ "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": "НСобпалСна ΠšΡ€Π΅ΠΉΠ΄ΡΠ½Π° ΠŸΠ°Π»ΠΈΡ‡ΠΊΠ°", @@ -766,11 +826,10 @@ "item.tfg.food.cooked_birt": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ Π‘Ρ–Ρ€Ρ‚", "item.tfg.food.raw_crawlermari": "Π‘ΠΈΡ€ΠΈΠΉ ΠšΡ€ΠΎΡƒΠ»Π΅Ρ€ΠΌΠ°Ρ€Ρ–", "item.tfg.food.cooked_crawlermari": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ ΠšΡ€ΠΎΡƒΠ»Π΅Ρ€ΠΌΠ°Ρ€Ρ–", - "item.tfg.food.raw_limpet": "Π‘ΠΈΡ€Ρ– ΠΌΠΎΡ€ΡΡŒΠΊΡ– Π±Π»ΡŽΠ΄Π΅Ρ‡ΠΊΠ°", + "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": "Π‘ΡƒΠ±Π»Ρ–ΠΌΠΎΠ²Π°Π½Ρ– світлякові ягоди", @@ -808,14 +867,12 @@ "item.tfg.food.ice_soup": "ΠšΡ€ΠΈΠΆΠ°Π½ΠΈΠΉ суп", "item.tfg.food.raw_glacian_mutton": "Π‘ΠΈΡ€Π΅ Π³Π»ΡΡ†Ρ–Π°Π½ΡΡŒΠΊΠ΅ баранячС м’ясо", "item.tfg.food.cooked_glacian_mutton": "Π‘ΠΌΠ°ΠΆΠ΅Π½Π΅ Π³Π»ΡΡ†Ρ–Π°Π½ΡΡŒΠΊΠ΅ баранячС м’ясо", - "item.tfg.spawn_egg.glacian_ram": "Π―ΠΉΡ†Π΅ ghbpjde Гляціанця", "item.tfg.food.raw_sniffer_beef": "Π‘ΠΈΡ€Π΅ м’ясо Π½ΡŽΡ…Π°Ρ‡Π°", "item.tfg.food.cooked_sniffer_beef": "Π‘ΠΌΠ°ΠΆΠ΅Π½Π΅ м’ясо Π½ΡŽΡ…Π°Ρ‡Π°", - "item.tfg.spawn_egg.sniffer": "Π―ΠΉΡ†Π΅ ΠΏΡ€ΠΈΠ·ΠΎΠ²Ρƒ ΠΡŽΡ…Π°Ρ‡Π°", "item.tfg.food.raw_wraptor": "Π‘ΠΈΡ€ΠΈΠΉ Π’Ρ€Π°ΠΏΡ‚ΠΎΡ€", "item.tfg.food.cooked_wraptor": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ Π’Ρ€Π°ΠΏΡ‚ΠΎΡ€", - "item.tfg.food.raw_springling_collar": "Π‘ΠΈΡ€ΠΈΠΉ ошийок Π·Ρ– спрінглінга", - "item.tfg.food.cooked_springling_collar": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ ошийок Π·Ρ– спрінглінга", + "item.tfg.food.raw_springling_collar": "Π‘ΠΈΡ€ΠΈΠΉ нашийник Π·Ρ– спрінглінга", + "item.tfg.food.cooked_springling_collar": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ нашийник Π·Ρ– спрінглінга", "item.tfg.food.raw_walker_steak": "Π‘ΠΈΡ€ΠΈΠΉ стСйк Π· Π’ΠΎΠΊΠ΅Ρ€Π°", "item.tfg.food.cooked_walker_steak": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ стСйк Π· Π’ΠΎΠΊΠ΅Ρ€Π°", "item.tfg.food.raw_glider_wings": "Π‘ΠΈΡ€Ρ– ΠΊΡ€ΠΈΠ»Π° Π“Π»Π°ΠΉΠ΄Π΅Ρ€Π°", @@ -835,11 +892,39 @@ "item.tfg.food.cooked_stickastackatick": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ Stick'a'Stackatick", "item.tfg.food.raw_cruncher_ribs": "Π‘ΠΈΡ€Ρ– Ρ€Π΅Π±Ρ€Π° ΠΊΡ€Π°Π½Ρ‡Π΅Ρ€Π°", "item.tfg.food.cooked_cruncher_ribs": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π°Π½Ρ– Ρ€Π΅Π±Ρ€Π° ΠΊΡ€Π°Π½Ρ‡Π΅Ρ€Π°", + "item.tfg.food.raw_dino_nugget": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ Π΄ΠΈΠ½ΠΎΠ·Π°Π²Ρ€ΠΎΠ²ΠΈΠΉ нагСтс", + "item.tfg.food.cooked_dino_nugget": "Π”ΠΈΠ½ΠΎΠ·Π°Π²Ρ€ΠΎΠ²ΠΈΠΉ нагСтс Ρƒ ΠΏΠΈΠ²Π½ΠΎΠΌΡƒ клярі", + "item.tfg.food.raw_beer_battered_cheese_curds": "Π‘ΠΈΡ€Π½Ρ– ΡˆΠΌΠ°Ρ‚ΠΎΡ‡ΠΊΠΈ Π² ΠΏΠΈΠ²Π½ΠΎΠΌΡƒ клярі", + "item.tfg.food.cooked_beer_battered_cheese_curds": "Π‘ΠΌΠ°ΠΆΠ΅Π½Ρ– сирні ΡˆΠΌΠ°Ρ‚ΠΎΡ‡ΠΊΠΈ Π² ΠΏΠΈΠ²Π½ΠΎΠΌΡƒ клярі", + "item.tfg.food.raw_fries": "Π‘ΠΈΡ€Π° картопля Ρ„Ρ€Ρ–", + "item.tfg.food.cooked_fries": "ΠšΠ°Ρ€Ρ‚ΠΎΠΏΠ»Ρ Ρ„Ρ€Ρ–", + "item.tfg.food.poutine": "ΠŸΡƒΡ‚Ρ–Π½", + "item.tfg.food.brioche_dough": "Вісто Π±Ρ€Ρ–ΠΎΡˆ", + "item.tfg.food.brioche_bun": "Π‘ΡƒΠ»ΠΎΡ‡ΠΊΠ° Π±Ρ€Ρ–ΠΎΡˆ", + "item.tfg.food.raw_burger_patty": "Π‘ΠΈΡ€Π° ΠΊΠΎΡ‚Π»Π΅Ρ‚Π° для Π±ΡƒΡ€Π³Π΅Ρ€Π°", + "item.tfg.food.cooked_burger_patty": "ΠšΠΎΡ‚Π»Π΅Ρ‚Π° для Π±ΡƒΡ€Π³Π΅Ρ€Π°", + "item.tfg.food.slice_of_cheese": "Π‘ΠΊΠΈΠ±ΠΊΠ° «сиру»", + "item.tfg.food.hamburger": "Π“Π°ΠΌΠ±ΡƒΡ€Π³Π΅Ρ€", + "item.tfg.food.cheeseburger": "Π§Ρ–Π·Π±ΡƒΡ€Π³Π΅Ρ€", + "item.tfg.food.oatmeal": "Вівсянка", + "item.tfg.food.raw_instant_mac": "Π‘ΠΈΡ€Π΅ швидкС мак‑н‑чіз", + "item.tfg.food.cooked_instant_mac": "Π¨Π²ΠΈΠ΄ΠΊΠ΅ мак‑н‑чіз", + "item.tfg.spice.bay_leaf": "Π›Π°Π²Ρ€ΠΎΠ²ΠΈΠΉ лист", + "item.tfg.spice.cardamom_pods": "Π‘Ρ‚Ρ€ΡƒΡ‡ΠΊΠΈ ΠΊΠ°Ρ€Π΄Π°ΠΌΠΎΠ½Ρƒ", + "item.tfg.spice.cilantro_leaves": "Листя ΠΊΡ–Π½Π·ΠΈ", + "item.tfg.spice.cumin_seeds": "Насіння ΠΊΠΌΠΈΠ½Ρƒ", + "item.tfg.spice.oregano_leaves": "Листя ΠΎΡ€Π΅Π³Π°Π½ΠΎ", + "item.tfg.spice.allspice": "Π—Π°ΠΏΠ°ΡˆΠ½ΠΈΠΉ ΠΏΠ΅Ρ€Π΅Ρ†ΡŒ", "item.tfg.roasted_sunflower_seeds": "Π‘ΠΌΠ°ΠΆΠ΅Π½Π΅ насіння соняшника", "item.tfg.sunflower_seeds": "Насіння соняшника", "item.tfg.sunflower_product": "Π‘ΠΎΠ½ΡΡˆΠ½Ρ‚ΠΊΠΎΠ²Π° КСпка", "item.tfg.rapeseed_seeds": "Насіння Каноли", "item.tfg.rapeseed_product": "Листя Каноли", + "item.tfg.spawn_egg.moon_rabbit": "Π―ΠΉΡ†Π΅ ΠŸΡ€ΠΈΠ·ΠΎΠ²Ρƒ ΠœΡ–ΡΡΡ‡Π½ΠΎΠ³ΠΎ ΠšΡ€ΠΎΠ»ΠΈΠΊΠ°", + "item.tfg.spawn_egg.surfer": "Π―ΠΉΡ†Π΅ Π²ΠΈΠΊΠ»ΠΈΠΊΡƒ сСрфСра", + "item.tfg.spawn_egg.wraptor": "Π―ΠΉΡ†Π΅ Π²ΠΈΠΊΠ»ΠΈΠΊΡƒ Π²Ρ€Π°ΠΏΡ‚ΠΎΡ€Π°", + "item.tfg.spawn_egg.glacian_ram": "Π―ΠΉΡ†Π΅ ghbpjde Гляціанця", + "item.tfg.spawn_egg.sniffer": "Π―ΠΉΡ†Π΅ ΠΏΡ€ΠΈΠ·ΠΎΠ²Ρƒ ΠΡŽΡ…Π°Ρ‡Π°", "item.tfg.flintlock_mechanism": "ΠšΡ€Π΅ΠΌβ€™ΡΠ½ΠΈΠΉ ΡƒΠ΄Π°Ρ€Π½ΠΈΠΉ ΠΌΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ", "item.tfg.advanced_clockwork_mechanism": "ВдосконалСний Π“ΠΎΠ΄ΠΈΠ½Π½ΠΈΠΊΠΎΠ²ΠΈΠΉ ΠœΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ", "item.tfg.certus_mechanism": "ΠœΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ ЦСртус", @@ -861,8 +946,8 @@ "item.tfg.marker.mercury_orbit": "ΠžΡ€Π±Ρ–Ρ‚Π° ΠœΠ΅Ρ€ΠΊΡƒΡ€Ρ–Ρ", "item.tfg.marker.glacio_orbit": "ΠžΡ€Π±Ρ–Ρ‚Π° Π„Π²Ρ€ΠΎΠΏΠΈ", "item.tfg.railgun_ammo_shell": "Бнаряд для Ρ€Π΅ΠΉΠΊΠΎΡ‚Ρ€ΠΎΠ½Π°", - "item.tfg.sulfur_fumes_bucket": "Π’Ρ–Π΄Ρ€ΠΎ Π· сірчаними Π²ΠΈΠΏΠ°Ρ€Π°ΠΌΠΈ", - "item.tfg.super_heated_slurry_bucket": "Π’Ρ–Π΄Ρ€ΠΎ Π· ΠΏΠ΅Ρ€Π΅Π³Ρ€Ρ–Ρ‚ΠΎΡŽ ΠΏΡƒΠ»ΡŒΠΏΠΎΡŽ", + "item.tfg.sulfur_fumes_bucket": "Π’Ρ–Π΄Ρ€ΠΎ Π· густими сірчаними Π²ΠΈΠΏΠ°Ρ€Π°ΠΌΠΈ", + "item.tfg.geyser_slurry_bucket": "Π’Ρ–Π΄Ρ€ΠΎ Π· ΠΏΠ΅Ρ€Π΅Π³Ρ€Ρ–Ρ‚ΠΎΡŽ ΠΏΡƒΠ»ΡŒΠΏΠΎΡŽ", "item.tfg.cryogenized_fluix_bucket": "Π’Ρ–Π΄Ρ€ΠΎ ΠΊΡ€Ρ–ΠΎΡ„Π»ΡŽΡ—ΠΊΡΡƒ", "item.tfg.fluix_bucket": "Π’Ρ–Π΄Ρ€ΠΎ Π· Ρ€Ρ–Π΄ΠΊΠΈΠΌ Ρ„Π»ΡŽΡ—ΠΊΡΠΎΠΌ", "item.tfg.latex_bucket": "Π’Ρ–Π΄Ρ€ΠΎ латСксу", @@ -873,6 +958,7 @@ "item.tfg.compressed_heliox_3_bucket": "Π’Ρ–Π΄Ρ€ΠΎ гСліоксу-3", "item.tfg.compressed_trimix_bucket": "Π’Ρ–Π΄Ρ€ΠΎ Π· триміксом 50/30/20", "item.tfg.compressed_trimix_3_bucket": "Π’Ρ–Π΄Ρ€ΠΎ Π· триміксом-3 50/30/20", + "item.tfg.heavy_ammoniacal_water_bucket": "Π’Ρ–Π΄Ρ€ΠΎ Π²Π°ΠΆΠΊΠΎΡ— Π°ΠΌΡ–Π°Ρ‡Π½ΠΎΡ— Π²ΠΎΠ΄ΠΈ", "item.tfg.semiheavy_ammoniacal_water_bucket": "НапівваТкС Π°ΠΌΡ–Π°Ρ‡Π½Π΅ Π²Ρ–Π΄Ρ€ΠΎ Π· водою", "item.tfg.harvest_basket": "Кошик для Π²Ρ€ΠΎΠΆΠ°ΡŽ", "item.tfg.aluminium_harvest_basket": "ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²ΠΈΠΉ кошик для Π²Ρ€ΠΎΠΆΠ°ΡŽ", @@ -933,9 +1019,11 @@ "item.tfg.high_density_treated_fiberboard": "ΠžΠ±Ρ€ΠΎΠ±Π»Π΅Π½Π° Π”Π‘ΠŸ Π‘Π΅Ρ€Π΅Π΄Π½ΡŒΠΎΡ— Π©Ρ–Π»ΡŒΠ½ΠΎΡΡ‚Ρ–", "item.tfg.flax_seeds": "Насіння Π»ΡŒΠΎΠ½Ρƒ", "item.tfg.flax_product": "Π‘Ρ‚Π΅Π±Π»Π° Π›ΡŒΠΎΠ½Ρƒ", + "item.tfg.flax_bundle": "ΠŸΡƒΡ‡ΠΎΠΊ Π»ΡŒΠΎΠ½Ρƒ", "item.tfg.flax_line": "Π’ΠΎΠ»ΠΎΠΊΠ½Π° Π›ΡŒΠ½ΡΠ½ΠΎΡ— ΠŸΡ€ΡΠΆΡ–", "item.tfg.flax_tow": "Π’ΠΎΠ»ΠΎΠΊΠ½Π° Π›ΡŒΠ½ΡΠ½ΠΎΡ— ΠšΡƒΠ΄Π΅Π»Ρ–", "item.tfg.flax_waste": "Π’ΠΈΡˆΠΊΡ€ΡΠ±Π°Π½ΠΈΠΉ Π›ΡŒΠΎΠ½", + "item.tfg.bundled_scraped_flax": "ΠŸΡƒΡ‡ΠΎΠΊ ΠΎΡ‡ΠΈΡ‰Π΅Π½ΠΎΠ³ΠΎ Π»ΡŒΠΎΠ½Ρƒ", "item.tfg.linen_thread": "Лляна Π½ΠΈΡ‚ΠΊΠ°", "item.tfg.linen_cloth": "Лляна Ρ‚ΠΊΠ°Π½ΠΈΠ½Π°", "item.tfg.uv_led": "Β§dΠ£Π»ΡŒΡ‚Ρ€Π°Ρ„Ρ–ΠΎΠ»Π΅Ρ‚ΠΎΠ²ΠΈΠΉ Β§fΠ‘Π²Ρ–Ρ‚Π»ΠΎΠ΄Ρ–ΠΎΠ΄", @@ -950,6 +1038,18 @@ "item.tfg.uranium_rod": "Π£Ρ€Π°Π½ΠΎΠ²ΠΈΠΉ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ", "item.tfg.plutonium_rod": "ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΈΠΉ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ", "item.tfg.tbu_232_rod": "Паливний ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ TBU-232", + "item.tfg.refrigerant_pellet": "ΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½Π° Π³Ρ€Π°Π½ΡƒΠ»Π°", + "item.tfg.graphite_compound": "Π“Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²Π° сполука", + "item.tfg.raw_graphite_briquette": "Π‘ΠΈΡ€ΠΈΠΉ Π³Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ Π±Ρ€ΠΈΠΊΠ΅Ρ‚", + "item.tfg.faulty_graphite_briquette": "Π”Π΅Ρ„Π΅ΠΊΡ‚Π½ΠΈΠΉ Π³Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ Π±Ρ€ΠΈΠΊΠ΅Ρ‚", + "item.tfg.washed_graphite_briquette": "ΠŸΡ€ΠΎΠΌΠΈΡ‚ΠΈΠΉ Π³Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ Π±Ρ€ΠΈΠΊΠ΅Ρ‚", + "item.tfg.pure_graphite_rod": "Чистий Π³Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ", + "item.tfg.impure_graphite_rod": "НСчистий Π³Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ", + "item.tfg.annealed_graphite_rod": "Π’Ρ–Π΄ΠΏΠ°Π»Π΅Π½ΠΈΠΉ Π³Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ", + "item.tfg.impure_annealed_graphite_rod": "НСчистий Π²Ρ–Π΄ΠΏΠ°Π»Π΅Π½ΠΈΠΉ Π³Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ", + "item.tfg.graphite_moderator": "Π“Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΠΌΠΎΠ΄Π΅Ρ€Π°Ρ‚ΠΎΡ€", + "item.tfg.impure_graphite_moderator": "НСчистий Π³Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΠΌΠΎΠ΄Π΅Ρ€Π°Ρ‚ΠΎΡ€", + "item.tfg.advanced_polymer_binder": "ВдосконалСний ΠΏΠΎΠ»Ρ–ΠΌΠ΅Ρ€Π½ΠΈΠΉ зв’язувач", "item.tfg.beaker": "Π‘Ρ‚Π°ΠΊΠ°Π½", "item.tfg.beaker.filled": "Π‘Ρ‚Π°ΠΊΠ°Π½ Π· %s", "item.tfg.flask": "Колба", @@ -959,6 +1059,42 @@ "item.tfg.lab_equipment": "Π›Π°Π±ΠΎΡ€Π°Ρ‚ΠΎΡ€Π½Π΅ обладнання", "item.tfg.dirty_lab_equipment": "Π‘Ρ€ΡƒΠ΄Π½Π΅ Π»Π°Π±ΠΎΡ€Π°Ρ‚ΠΎΡ€Π½Π΅ обладнання", "item.tfg.wireless_card": "ΠœΡ–ΠΆΠΏΠ»Π°Π½Π΅Ρ‚Π½Π° Π±Π΅Π·Π΄Ρ€ΠΎΡ‚ΠΎΠ²Π° ΠΊΠ°Ρ€Ρ‚ΠΊΠ°", + "item.tfg.wet_magenta_chalk": "ΠœΠΎΠΊΡ€Π° ΠΏΡƒΡ€ΠΏΡƒΡ€ΠΎΠ²Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_pink_chalk": "ΠœΠΎΠΊΡ€Π° Ρ€ΠΎΠΆΠ΅Π²Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_green_chalk": "ΠœΠΎΠΊΡ€Π° Π·Π΅Π»Π΅Π½Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_lime_chalk": "ΠœΠΎΠΊΡ€Π° Π»Π°ΠΉΠΌΠΎΠ²Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_light_gray_chalk": "ΠœΠΎΠΊΡ€Π° світло-сіра ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_yellow_chalk": "ΠœΠΎΠΊΡ€Π° ΠΆΠΎΠ²Ρ‚Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_black_chalk": "ΠœΠΎΠΊΡ€Π° Ρ‡ΠΎΡ€Π½Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_light_blue_chalk": "ΠœΠΎΠΊΡ€Π° Π±Π»Π°ΠΊΠΈΡ‚Π½Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_brown_chalk": "ΠœΠΎΠΊΡ€Π° ΠΊΠΎΡ€ΠΈΡ‡Π½Π΅Π²Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_cyan_chalk": "ΠœΠΎΠΊΡ€Π° Π±Ρ–Ρ€ΡŽΠ·ΠΎΠ²Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_orange_chalk": "ΠœΠΎΠΊΡ€Π° ΠΏΠΎΠΌΠ°Ρ€Π°Π½Ρ‡Π΅Π²Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_red_chalk": "ΠœΠΎΠΊΡ€Π° Ρ‡Π΅Ρ€Π²ΠΎΠ½Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_gray_chalk": "ΠœΠΎΠΊΡ€Π° сіра ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_white_chalk": "ΠœΠΎΠΊΡ€Π° Π±Ρ–Π»Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_blue_chalk": "ΠœΠΎΠΊΡ€Π° синя ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.wet_purple_chalk": "Π’ΠΎΠ»ΠΎΠ³Π° Ρ„Ρ–ΠΎΠ»Π΅Ρ‚ΠΎΠ²Π° ΠΊΡ€Π΅ΠΉΠ΄Π°", + "item.tfg.lamp_casting_mold": "Π€ΠΎΡ€ΠΌΠ° для лиття Π»Π°ΠΌΠΏ", + "item.tfg.trapdoor_casting_mold": "Π€ΠΎΡ€ΠΌΠ° для лиття Π»ΡŽΠΊΡ–Π²", + "item.tfg.chain_casting_mold": "Π€ΠΎΡ€ΠΌΠ° для лиття Π»Π°Π½Ρ†ΡŽΠ³Ρ–Π²", + "item.tfg.bell_casting_mold": "Π€ΠΎΡ€ΠΌΠ° для лиття Π΄Π·Π²ΠΎΠ½Ρ–Π²", + "item.tfg.rnr_plow": "Π’Ρ–Π·ΠΎΠΊ для мощСння", + "item.tfg.cobalt_brass_wheel": "КолСсо Π· ΠΊΠΎΠ±Π°Π»ΡŒΡ‚ΠΎΠ²ΠΎΡ— Π»Π°Ρ‚ΡƒΠ½Ρ–", + "item.tfg.cellulose_matrix": "ЦСлюлозна матриця", + "item.tfg.smooth_endoplasmic_reticula": "Π“Π»Π°Π΄ΠΊΠ° Π΅Π½Π΄ΠΎΠΏΠ»Π°Π·ΠΌΠ°Ρ‚ΠΈΡ‡Π½Π° сітка", + "item.tfg.rough_endoplasmic_reticula": "Шорстка Π΅Π½Π΄ΠΎΠΏΠ»Π°Π·ΠΌΠ°Ρ‚ΠΈΡ‡Π½Π° сітка", + "item.tfg.alpha_keratin": "Ξ±-ΠšΠ΅Ρ€Π°Ρ‚ΠΈΠ½", + "item.tfg.progenitor_cells": "ΠšΠ»Ρ–Ρ‚ΠΈΠ½ΠΈ ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΠΈΠΊΠΈ", + "item.tfg.catalyser_pt_re_zsm": "ΠšΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€ Pt-Re ZSM-5", + "item.tfg.used_catalyser": "Використаний ΠΊΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€ Pt-Re ZSM-5", + "item.tfg.loaded_resin": "ΠŸΠ΅Ρ€Π΅Π·Π°Ρ€ΡΠ΄ΠΆΠ΅Π½Π° смола", + "item.tfg.rod_mold": "Π€ΠΎΡ€ΠΌΠ° для вогняного стриТня", + "item.tfg.small_gear_mold": "Π€ΠΎΡ€ΠΌΠ° для ΠΌΠ°Π»ΠΎΡ— вогняної ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½Ρ–", + "item.tfg.nugget_mold": "Π€ΠΎΡ€ΠΌΠ° для самородка", + "item.tfg.unfired_rod_mold": "НСвипалСна Ρ„ΠΎΡ€ΠΌΠ° для вогняного стриТня", + "item.tfg.unfired_small_gear_mold": "НСвипалСна Ρ„ΠΎΡ€ΠΌΠ° для ΠΌΠ°Π»ΠΎΡ— вогняної ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½Ρ–", + "item.tfg.unfired_nugget_mold": "НСвипалСна Ρ„ΠΎΡ€ΠΌΠ° для самородка", "material.tfg.latex": "ЛатСкс", "material.tfg.vulcanized_latex": "Π’ΡƒΠ»ΠΊΠ°Π½Ρ–Π·ΠΎΠ²Π°Π½ΠΈΠΉ ЛатСкс", "material.tfg.fluix": "Ѐлюс", @@ -1048,6 +1184,80 @@ "material.tfg.cooked_mycelienzane": "1,3β€‘ΠœΡ–Ρ†Π΅Π»Ρ–Π΅Π½Π·Π°Π½", "material.tfg.iodomethane": "Π™ΠΎΠ΄ΠΌΠ΅Ρ‚Π°Π½", "material.tfg.trideuteroiodomethane": "Π’Ρ€ΠΈΠ΄Π΅ΠΉΡ‚Π΅Ρ€ΠΎΠΉΠΎΠ΄ΠΌΠ΅Ρ‚Π°Π½", + "material.tfg.lauryl_alcohol": "Π›Π°ΡƒΡ€ΠΈΠ»ΠΎΠ²ΠΈΠΉ спирт", + "material.tfg.chlorosulfuric_acid": "Π₯Π»ΠΎΡ€ΠΎΡΡƒΠ»ΡŒΡ„Π°Ρ‚Π½Π° кислота", + "material.tfg.sodium_dodecyl_sulfate": "Натрій Π΄ΠΎΠ΄Π΅Ρ†ΠΈΠ»ΡΡƒΠ»ΡŒΡ„Π°Ρ‚", + "material.tfg.sodium_hypochlorite": "Натрій Π³Ρ–ΠΏΠΎΡ…Π»ΠΎΡ€ΠΈΡ‚", + "material.tfg.mutative_yeast": "ΠœΡƒΡ‚Π°Ρ‚ΠΈΠ²Π½Ρ– Π΄Ρ€Ρ–ΠΆΠ΄ΠΆΡ–", + "material.tfg.proto_growth_medium": "ΠŸΡ€ΠΎΡ‚ΠΎΡΠ΅Ρ€Π΅Π΄ΠΎΠ²ΠΈΡ‰Π΅ для росту", + "material.tfg.fibroblast_feeder_cells": "Ѐібробластні ΠΊΠ»Ρ–Ρ‚ΠΈΠ½ΠΈ Π³ΠΎΠ΄ΡƒΠ²Π°Π»ΡŒΠ½ΠΈΠΊΠΈ", + "material.tfg.gram_stain": "Ѐарбування Π·Π° Π“Ρ€Π°ΠΌΠΎΠΌ", + "material.tfg.crystal_violet": "ΠšΡ€ΠΈΡΡ‚Π°Π»Ρ–Ρ‡Π½ΠΈΠΉ Ρ„Ρ–ΠΎΠ»Π΅Ρ‚ΠΎΠ²ΠΈΠΉ", + "material.tfg.n_n_dimethylaniline": "N,N-Π”ΠΈΠΌΠ΅Ρ‚ΠΈΠ»Π°Π½Ρ–Π»Ρ–Π½", + "material.tfg.triglyceride_oil": "Π’Ρ€ΠΈΠ³Π»Ρ–Ρ†Π΅Ρ€ΠΈΠ΄Π½Π° олія", + "material.tfg.cholesterol": "Π₯олСстСрин", + "material.tfg.butyric_acid": "Масляна кислота", + "material.tfg.citric_acid": "Π›ΠΈΠΌΠΎΠ½Π½Π° кислота", + "material.tfg.sodium_dihydrogen_citrate": "Натрій Π΄ΠΈΠ³Ρ–Π΄Ρ€ΠΎΠ³Π΅Π½Ρ†ΠΈΡ‚Ρ€Π°Ρ‚", + "material.tfg.light_stock": "Π›Π΅Π³ΠΊΠΈΠΉ Π±ΡƒΠ»ΡŒΠΉΠΎΠ½", + "material.tfg.rich_stock": "НасичСний Π±ΡƒΠ»ΡŒΠΉΠΎΠ½", + "material.tfg.brown_gravy": "ΠšΠΎΡ€ΠΈΡ‡Π½Π΅Π²ΠΈΠΉ соус", + "material.tfg.zircon": "Π¦ΠΈΡ€ΠΊΠΎΠ½", + "material.tfg.silicon_tetrachloride": "Π’Π΅Ρ‚Ρ€Π°Ρ…Π»ΠΎΡ€ΠΈΠ΄ ΠΊΡ€Π΅ΠΌΠ½Ρ–ΡŽ", + "material.tfg.zirconium_tetrachloride": "Π’Π΅Ρ‚Ρ€Π°Ρ…Π»ΠΎΡ€ΠΈΠ΄ Ρ†ΠΈΡ€ΠΊΠΎΠ½Ρ–ΡŽ", + "material.tfg.zirconium_oxide": "Цирконія", + "material.tfg.zirconium_bromide": "Π‘Ρ€ΠΎΠΌΡ–Π΄ Ρ†ΠΈΡ€ΠΊΠΎΠ½Ρ–ΡŽ (IV)", + "material.tfg.zirconium_diboride": "Π”ΠΈΠ±ΠΎΡ€ΠΈΠ΄ Ρ†ΠΈΡ€ΠΊΠΎΠ½Ρ–ΡŽ", + "material.tfg.boron_carbide": "Π‘ΠΎΡ€ ΠΊΠ°Ρ€Π±Ρ–Π΄", + "material.tfg.syngas": "Π‘ΠΈΠ½Ρ‚Π΅Π· Π³Π°Π·", + "material.tfg.raw_aromatic_mix": "ΠŸΠ΅Ρ€Π²ΠΈΠ½Π½Π° Π°Ρ€ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½Π° ΡΡƒΠΌΡ–Ρˆ", + "material.tfg.aromatic_feedstock": "Ароматична сировина", + "material.tfg.reformed_aromatic_feedstock": "Π Π΅Ρ„ΠΎΡ€ΠΌΠΎΠ²Π°Π½Π° Π°Ρ€ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½Π° сировина", + "material.tfg.reformate_gas": "Π Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΈΠΉ Π³Π°Π·", + "material.tfg.cracker_off_gas": "ΠŸΠΎΠ±Ρ–Ρ‡Π½ΠΈΠΉ Π³Π°Π· Π²Ρ–Π΄ ΠΊΡ€Π΅ΠΊΡ–Π½Π³ΠΎΠ²ΠΎΠ³ΠΎ Ρ€Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Ρƒ", + "material.tfg.btx_fuel": "BTX Паливо", + "material.tfg.critical_steam": "ΠšΡ€ΠΈΡ‚ΠΈΡ‡Π½Π° ΠΏΠ°Ρ€Π°", + "material.tfg.americium_241": "АмСрицій 241", + "material.tfg.californium_252": "ΠšΠ°Π»Ρ–Ρ„ΠΎΡ€Π½Ρ–ΠΉ 252", + "material.tfg.neptunium_237": "НСптуній 237", + "material.tfg.mixed_radioactive_fluid": "Π—ΠΌΡ–ΡˆΠ°Π½Π° Ρ€Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Π° Ρ€Ρ–Π΄ΠΈΠ½Π°", + "material.tfg.degraded_solvent_stream": "ΠŸΠΎΡ‚Ρ–ΠΊ Π΄Π΅Π³Ρ€Π°Π΄ΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Ρ€ΠΎΠ·Ρ‡ΠΈΠ½Π½ΠΈΠΊΠ°", + "material.tfg.boron_enriched_coolant": "Π—Π±Π°Π³Π°Ρ‡Π΅Π½ΠΈΠΉ Π±ΠΎΡ€ΠΎΠΌ ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‡", + "material.tfg.hot_boron_enriched_coolant": "Гарячий Π·Π±Π°Π³Π°Ρ‡Π΅Π½ΠΈΠΉ Π±ΠΎΡ€ΠΎΠΌ ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‡", + "material.tfg.polyalkylene_lubricant": "ΠŸΠΎΠ»Ρ–Π°Π»ΠΊΡ–Π»Π΅Π½ΠΎΠ²ΠΈΠΉ ΠΌΠ°ΡΡ‚ΠΈΠ»ΡŒΠ½ΠΈΠΉ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»", + "material.tfg.organic_degradation_slurry": "Π¨Π»Π°ΠΌ ΠΎΡ€Π³Π°Π½Ρ–Ρ‡Π½ΠΎΡ— Π΄Π΅Π³Ρ€Π°Π΄Π°Ρ†Ρ–Ρ—", + "material.tfg.gas_fraction": "Π“Π°Π·ΠΎΠ²Π° фракція", + "material.tfg.isotopic_solvent": "Π†Π·ΠΎΡ‚ΠΎΠΏΠ½ΠΈΠΉ Ρ€ΠΎΠ·Ρ‡ΠΈΠ½Π½ΠΈΠΊ", + "material.tfg.residual_sludge": "Π—Π°Π»ΠΈΡˆΠΊΠΎΠ²ΠΈΠΉ шлам", + "material.tfg.sodium_fluoride": "Π€Π»ΡƒΠΎΡ€ΠΈΠ΄ Π½Π°Ρ‚Ρ€Ρ–ΡŽ", + "material.tfg.trace_catalyst_salt_e": "Π‘Π»Ρ–Π΄ΠΎΠ²ΠΈΠΉ ΠΊΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€Π½ΠΈΠΉ ΡΡ–Π»ΡŒ E", + "material.tfg.copper_trace_catalyst_dust": "Π‘Π»Ρ–Π΄ΠΎΠ²ΠΈΠΉ ΠΊΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€ ΠΌΡ–Π΄Ρ–", + "material.tfg.organic_stabilizer": "ΠžΡ€Π³Π°Π½Ρ–Ρ‡Π½ΠΈΠΉ стабілізатор", + "material.tfg.inert_dust_fraction": "Π†Π½Π΅Ρ€Ρ‚Π½Π° фракція", + "material.tfg.recovered_ionic_complex": "Π’Ρ–Π΄Π½ΠΎΠ²Π»Π΅Π½ΠΈΠΉ Ρ–ΠΎΠ½Π½ΠΈΠΉ комплСкс", + "material.tfg.glucose": "Π“Π»ΡŽΠΊΠΎΠ·Π°", + "material.tfg.galactose": "Π“Π°Π»Π°ΠΊΡ‚ΠΎΠ·Π°", + "material.tfg.fructose": "Π€Ρ€ΡƒΠΊΡ‚ΠΎΠ·Π°", + "material.tfg.sorbitol": "Π‘ΠΎΡ€Π±Ρ–Ρ‚ΠΎΠ»", + "material.tfg.14_sorbitan": "1,4-Π‘ΠΎΡ€Π±Ρ–Ρ‚Π°Π½", + "material.tfg.isosorbide": "Ізосорбід", + "material.tfg.linolenic_acid": "Ξ±-Π›Ρ–Π½ΠΎΠ»Π΅Π½ΠΎΠ²Π° кислота", + "material.tfg.isosorbide_ln": "Ізосорбід Π»Ρ–Π½ΠΎΠ»Π΅Π½Π°Ρ‚", + "material.tfg.epox_isosorbide_ln": "Епоксидований ізосорбід Π»Ρ–Π½ΠΎΠ»Π΅Π½Π°Ρ‚", + "material.tfg.ozone": "Озон", + "material.tfg.tin_chloride": "Π₯Π»ΠΎΡ€ΠΈΠ΄ стануму", + "material.tfg.cyclohexanone": "ЦиклогСксанон", + "material.tfg.cyclohex_diperoxide": "1,1-ЦиклогСксандиїл дігідропСроксид", + "material.tfg.aciditic_waste": "ΠšΠΈΡΠ»ΠΎΡ‚Π½Ρ– Π²Ρ–Π΄Ρ…ΠΎΠ΄ΠΈ", + "material.tfg.tpaoh": "Гідроксид Ρ‚Π΅Ρ‚Ρ€Π°ΠΏΡ€ΠΎΠΏΡ–Π»Π°ΠΌΠΎΠ½Ρ–ΡŽ", + "material.tfg.sodium_silicate": "Натрій силікат", + "material.tfg.metal_rich_solution": "ΠœΠ΅Ρ‚Π°Π»ΠΎΠ½Π°ΡΠΈΡ‡Π΅Π½ΠΈΠΉ Ρ€ΠΎΠ·Ρ‡ΠΈΠ½", + "material.tfg.crude_mixed_gas": "Π‘ΠΈΡ€ΠΈΠΉ Π·ΠΌΡ–ΡˆΠ°Π½ΠΈΠΉ Π³Π°Π·", + "material.tfg.zsm5_gel": "Π“Π΅Π»ΡŒ ZSM-5", + "material.tfg.leachate": "Π Π΅Π½Ρ–ΠΉΠ½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€Π°Ρ‚", + "material.tfg.clean_powder": "ΠžΡ‡ΠΈΡ‰Π΅Π½ΠΈΠΉ рСсилікатний ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ", + "material.tfg.catalyser_powder": "ΠšΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€Π½ΠΈΠΉ ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ Re ZSM-5", + "material.tfg.sodium_aluminium": "Натрій Π°Π»ΡŽΠΌΡ–Π½Ρ–ΠΉ", "ore_vein.tfg.deep_sheldonite": "Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚ Ρ– Π‘ΠΎΡ€Π½Ρ–Ρ‚", "ore_vein.tfg.deep_garnet_amethyst": "АмСтист Ρ– Π“Ρ€Π°Π½Π°Ρ‚", "ore_vein.tfg.deep_garnet_opal": "Опал Ρ– Π“Ρ€Π°Π½Π°Ρ‚", @@ -1090,6 +1300,7 @@ "ore_vein.tfg.normal_sphalerite": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– ΠŸΡ–Ρ€ΠΈΡ‚", "ore_vein.tfg.normal_spodumene": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ Ρ‚Π° Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚", "ore_vein.tfg.normal_sulfur": "Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚", + "ore_vein.tfg.normal_tarkianite": "Π’Π°Ρ€ΠΊΡ–Π°Π½Ρ–Ρ‚ Ρ‚Π° Нафтові піски", "ore_vein.tfg.normal_tetrahedrite": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (Π—Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)", "ore_vein.tfg.surface_bismuthinite": "Вісмут (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)", "ore_vein.tfg.surface_cassiterite": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΈΠ²ΠΈΠΉ)", @@ -1097,7 +1308,7 @@ "ore_vein.tfg.surface_sphalerite": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– Π‘Ρ–Ρ€ΠΊΠ°", "ore_vein.tfg.surface_tetrahedrite": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)", "ore_vein.tfg.deep_mars_chromite": "РСдстоун Ρ– Π₯Ρ€ΠΎΠΌΡ–Ρ‚", - "ore_vein.tfg.deep_mars_pitchblende": "Настуран, Π’ΠΎΡ€Ρ–ΠΉ Ρ– Π£Ρ€Π°Π½Ρ–Π½Ρ–Ρ‚", + "ore_vein.tfg.deep_mars_pitchblende": "Настуран, Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚ Ρ– Π£Ρ€Π°Π½Ρ–Π½Ρ–Ρ‚", "ore_vein.tfg.deep_mars_sheldonite": "Π‘ΠΎΡ€Π½Ρ–Ρ‚ Ρ– ΠšΡƒΠΏΠ΅Ρ€ΠΈΡ‚", "ore_vein.tfg.mars_almandine": "Альмандин Ρ– Π‘Π°ΠΏΡ„Ρ–Ρ€", "ore_vein.tfg.mars_apatite": "Апатит Ρ– ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€", @@ -1108,10 +1319,11 @@ "ore_vein.tfg.mars_sapphire": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½ Ρ– Боксит", "ore_vein.tfg.mars_graphite": "Π“Ρ€Π°Ρ„Ρ–Ρ‚ Ρ– Π”Ρ–Π°ΠΌΠ°Π½Ρ‚", "ore_vein.tfg.mars_hematite": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ Ρ‚Π° Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚", + "ore_vein.tfg.mars_lapis": "Лапіс, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ Ρ‚Π° Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚", "ore_vein.tfg.mars_lubricant": "Π‘Ρ‚Π΅Π°Ρ‚ΠΈΡ‚, Вальк Ρ– Π“Π»Π°ΡƒΠΊΠΎΠ½Ρ–Ρ‚", "ore_vein.tfg.mars_neodynium": "БастнСзит Ρ– ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", "ore_vein.tfg.mars_nickel": "Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚ Ρ– ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", - "ore_vein.tfg.mars_pitchblende": "Настуран, Π’ΠΎΡ€Ρ–ΠΉ Ρ– Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "ore_vein.tfg.mars_pitchblende": "Настуран, Π’ΠΎΡ€Ρ–Π°Π½Ρ–Ρ‚ Ρ– Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", "ore_vein.tfg.mars_quartzite": "ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, АзбСст Ρ– Π‘Π°Ρ€ΠΈΡ‚", "ore_vein.tfg.mars_salt": "Π‘ΠΎΠ»Ρ– Ρ– Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½", "ore_vein.tfg.mars_stibnite": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (Π—Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)", @@ -1186,6 +1398,8 @@ "ore_vein.tfg.nether_sylvite": "Π‘ΠΈΠ»ΡŒΠ²Ρ–Π½", "ore_vein.tfg.nether_tetrahedrite": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚", "ore_vein.tfg.nether_topaz": "Π’ΠΎΠΏΠ°Π· Ρ– Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚", + "ore_vein.tfg.venus_manual_salt": "Π‘ΠΎΠ»Ρ– Ρ– Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½", + "ore_vein.tfg.venus_manual_sulfur": "Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚", "tfg.creative_tab.tfg": "TerraFirmaGreg", "tfg.disabled_portal": "ΠœΠ°Π³Ρ–Ρ ΠΏΠΎΡ€Ρ‚Π°Π»Ρƒ Π·Π΄Π°Ρ”Ρ‚ΡŒΡΡ заблокованою Π½Π΅Π²Ρ–Π΄ΠΎΠΌΠΎΡŽ силою, спробуйтС дістатися Π΄ΠΎ Ρ–Π½ΡˆΠΎΠ³ΠΎ Π²ΠΈΠΌΡ–Ρ€Ρƒ, ΡΠΏΡƒΡΠΊΠ°ΡŽΡ‡ΠΈΡΡŒ Π²Π½ΠΈΠ· Π°Π±ΠΎ ΠΏΡ–Π΄Ρ–ΠΉΠΌΠ°ΡŽΡ‡ΠΈΡΡŒ ΡƒΠ³ΠΎΡ€Ρƒ", "tfg.tooltip.food_trait.refrigerating": "Β§bΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΠ΅Π½Π½Ρ", @@ -1208,8 +1422,30 @@ "entity.tfg.wraptor.male": "Π’Ρ€Π°ΠΏΡ‚ΠΎΡ€", "entity.tfg.wraptor.female": "Π’Ρ€Π°ΠΏΡ‚ΠΎΡ€", "tfg.tooltip.attribution.wraptor": "Β§9Β§oCredit: Species", + "entity.tfg.surfer": "Π‘Π΅Ρ€Ρ„Π΅Ρ€", + "tfg.tooltip.surfer_variant.base": "Π‘Ρ–Ρ€ΡŽΠ·ΠΎΠ²Π° ΡˆΠΊΡ–Ρ€Π°", + "tfg.tooltip.surfer_variant.bubble": "Π¨ΠΊΡ–Ρ€Π° Π· ягідного Ρ†Π²Ρ–Ρ‚Ρƒ", + "tfg.tooltip.surfer_variant.horn": "Π—ΠΎΠ»ΠΎΡ‚Π° ΡˆΠΊΡ–Ρ€Π°", + "tfg.tooltip.surfer_variant.tube": "Π¨ΠΊΡ–Ρ€Π° Π· ягід Нокс", + "tfg.tooltip.surfer_variant.fire": "Π¨ΠΊΡ–Ρ€Π° Π‘Π°Π½Π³Π½ΡƒΠΌ", + "tfg.tooltip.surfer_variant.brain": "Π¨ΠΊΡ–Ρ€Π° Π»Π°Ρ†Ρ–Π°Π½", + "tfg.tooltip.attribution.surfer": "Β§9Β§oАвтор: Wan's Ancient Beasts", + "entity.tfg.rnr_plow": "Π’Ρ–Π·ΠΎΠΊ для мощСння", "effect.tfg.cooling": "Β§bΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΠ΅Π½Π½Ρ", "effect.tfg.warming": "Β§6Π ΠΎΠ·Ρ–Π³Ρ€Ρ–Π²", + "effect.tfg.instant_radiation": "ΠœΠΈΡ‚Ρ‚Ρ”Π²Π΅ Π²ΠΈΠΏΡ€ΠΎΠΌΡ–Π½ΡŽΠ²Π°Π½Π½Ρ", + "effect.tfg.chemical_burns_warning": "ΠžΡ‚Ρ€ΠΈΠΌΠ°Π½Π½Ρ Ρ…Ρ–ΠΌΡ–Ρ‡Π½ΠΈΡ… ΠΎΠΏΡ–ΠΊΡ–Π²", + "effect.tfg.poison_warning": "Воксична Ρ€Π΅Ρ‡ΠΎΠ²ΠΈΠ½Π°", + "effect.tfg.weak_poison_warning": "Блаботоксична Ρ€Π΅Ρ‡ΠΎΠ²ΠΈΠ½Π°", + "effect.tfg.irritant_warning": "ΠŸΠΎΠ΄Ρ€Π°Π·Π½ΡŽΠ²Π°Π»ΡŒΠ½Π° Ρ€Π΅Ρ‡ΠΎΠ²ΠΈΠ½Π°", + "effect.tfg.nausea_warning": "Нудотна Ρ€Π΅Ρ‡ΠΎΠ²ΠΈΠ½Π°", + "effect.tfg.carcinogen_warning": "ΠšΠ°Π½Ρ†Π΅Ρ€ΠΎΠ³Π΅Π½Π½Π° Ρ€Π΅Ρ‡ΠΎΠ²ΠΈΠ½Π°", + "effect.tfg.asbestosis_warning": "АзбСстоз", + "effect.tfg.arsenicosis_warning": "АрсСнікоз", + "effect.tfg.silicosis_warning": "Π‘ΠΈΠ»Ρ–ΠΊΠΎΠ·", + "effect.tfg.berylliosis_warning": "Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΎΠ·", + "effect.tfg.methanol_poisoning_warning": "ΠžΡ‚Ρ€ΡƒΡ”Π½Π½Ρ ΠΌΠ΅Ρ‚Π°Π½ΠΎΠ»ΠΎΠΌ", + "effect.tfg.carbon_monoxide_poisoning_warning": "ΠžΡ‚Ρ€ΡƒΡ”Π½Π½Ρ монооксидом Π²ΡƒΠ³Π»Π΅Ρ†ΡŽ", "tfg.greate.uls_limit": "Β§432Β§r (Β§8ULSΒ§r)", "tfg.greate.ls_limit": "Β§f128Β§r (Β§7LSΒ§r)", "tfg.greate.windmill_hint_1": "Вітряки Π·Π°Π»Π΅ΠΆΠ°Ρ‚ΡŒ Π²Ρ–Π΄ відносної", @@ -1232,7 +1468,7 @@ "trim_material.tfc.salt_tfc": "ΡΡ–Π»ΡŒ", "trim_material.tfc.sapphire_tfc": "Π‘Π°ΠΏΡ„Ρ–Ρ€", "trim_material.tfc.sodalite_tfc": "Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚", - "trim_material.tfc.coke_tfc": "Кокс", + "trim_material.tfc.armalcolite_tfc": "Армалколіт", "trim_material.tfc.spessartine_tfc": "БпСсартин", "trim_material.tfc.topaz_tfc": "Π’ΠΎΠΏΠ°Π·", "trim_material.tfc.uvarovite_tfc": "Π£Π²Π°Ρ€ΠΎΠ²Ρ–Ρ‚", @@ -1266,10 +1502,14 @@ "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.y_ranges": "Π Ρ–Π²Π΅Π½ΡŒ Y: %d Π΄ΠΎ %d", "tfg.emi.ore_veins.size": "Π ΠΎΠ·ΠΌΡ–Ρ€: %d", "tfg.emi.ore_veins.height": "Висота: %d", "tfg.emi.ore_veins.radius": "Радіус: %d", + "ore_vein.tfg.rose_quartz": "Π ΠΎΠΆΠ΅Π²ΠΈΠΉ ΠΊΠ²Π°Ρ€Ρ†", + "ore_vein.tfg.rose_quartz.emi.0": "Π—ΡƒΡΡ‚Ρ€Ρ–Ρ‡Π°Ρ”Ρ‚ΡŒΡΡ Π² Π±Ρ–ΠΎΠΌΠ°Ρ…", + "ore_vein.tfg.rose_quartz.emi.1": "Π½ΠΈΠ·ΡŒΠΊΠΎΡ— висоти Ρƒ ΠΊΠ»Ρ–ΠΌΠ°Ρ‚Π°Ρ…", + "ore_vein.tfg.rose_quartz.emi.2": "Π½ΠΈΠΆΡ‡Π΅ -10Β°C.", "emi.category.tfg.ore_vein_info": "Π–ΠΈΠ»ΠΈ Ρ€ΡƒΠ΄ΠΈ", "tfg.emi.liquid_bb_burn_time": "Π’Ρ€ΠΈΠ²Π°Π»Ρ–ΡΡ‚ΡŒ: %d с", "tfg.emi.liquid_bb_superheat": "Β§lΠŸΠ΅Ρ€Π΅Π³Ρ€Ρ–Ρ‚ΠΈΠΉ", @@ -1326,10 +1566,31 @@ "tfg.tooltip.cooling_foods": "Β§bΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΡ” вас Π½Π°: 2Β°C", "tfg.tooltip.cooling_foods_strong": "Β§bΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΡ” вас Π½Π°: 10Β°C", "tfg.tooltip.warming_foods": "Β§bΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΡ” вас Π½Π°: 4Β°C", + "tfg.tooltip.hotornot_container": "Β§aΠ‘Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ” Β§6гарячі§a, Β§bΡ…ΠΎΠ»ΠΎΠ΄Π½Ρ–Β§a Ρ‚Π° Β§eΠ»Π΅Π³ΡˆΡ– Π·Π° повітря§a ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ ΠΉ Ρ€Ρ–Π΄ΠΈΠ½ΠΈ.Β§r", + "tfg.tooltip.hotornot_hot_equipment": "Β§7Π—Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡ” захист Π²Ρ–Π΄ усіх Β§6гарячих§7 ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π², Ρ€Ρ–Π΄ΠΈΠ½ Ρ– Ρ‚Ρ€ΡƒΠ±.Β§r", + "tfg.tooltip.hotornot_cold_equipment": "Β§7Π—Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡ” захист Π²Ρ–Π΄ усіх Β§bΡ…ΠΎΠ»ΠΎΠ΄Π½ΠΈΡ…Β§7 ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π², Ρ€Ρ–Π΄ΠΈΠ½ Ρ– Ρ‚Ρ€ΡƒΠ±.Β§r", + "tfg.tooltip.hotornot_floating_equipment": "Β§7Π—Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡ” захист Π²Ρ–Π΄ усіх Β§eΠ»Π΅Π³ΡˆΠΈΡ… Π·Π° повітря§7 Π³Π°Π·Ρ–Π².Β§r", + "tfg.tooltip.machine.one_energy_hatch": "ΠŸΡ€ΠΈΠΉΠΌΠ°Ρ” Ρ€Ρ–Π²Π½ΠΎ Β§6Один§r Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк.", + "tfg.tooltip.machine.two_energy_hatches": "ΠŸΡ€ΠΈΠΉΠΌΠ°Ρ” Π΄ΠΎ Β§6Π”Π²ΠΎΡ…Β§r Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… Π»ΡŽΠΊΡ–Π².", + "tfg.tooltip.machine.subtick": "Ця машина ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” Β§2ΠŸΡ–Π΄Ρ‚Π°ΠΊΡ‚Β§r!", + "tfg.tooltip.machine.coil_energy_discount": "КоТна ΠΊΠΎΡ‚ΡƒΡˆΠΊΠ° після Β§6ΠœΠ΅Π»ΡŒΡ…Ρ–ΠΎΡ€ΡƒΒ§r Π·ΠΌΠ΅Π½ΡˆΡƒΡ” Π²ΠΈΡ‚Ρ€Π°Ρ‚ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π½Π° 10%.", + "tfg.tooltip.machine.coil_speed_discount": "Β§6ΠœΠ΅Π»ΡŒΡ…Ρ–ΠΎΡ€ΠΎΠ²Ρ–Β§r ΠΊΠΎΡ‚ΡƒΡˆΠΊΠΈ ΠΏΡ€Π°Ρ†ΡŽΡŽΡ‚ΡŒ Π½Π° 75% ΠΏΠΎΠ²Ρ–Π»ΡŒΠ½Ρ–ΡˆΠ΅. КоТна ΠΊΠΎΡ‚ΡƒΡˆΠΊΠ° після Β§3ΠšΠ°Π½Ρ‚Π°Π»ΡƒΒ§r Π·Π±Ρ–Π»ΡŒΡˆΡƒΡ” ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ Π½Π° 50%.", + "tfg.tooltip.machine.bioreactor_1": "Β§7Π₯імія Π·ΡƒΡΡ‚Ρ€Ρ–Ρ‡Π°Ρ”Ρ‚ΡŒΡΡ Π· Π‘Ρ–ΠΎΠ»ΠΎΠ³Ρ–Ρ”ΡŽΒ§r", + "tfg.tooltip.machine.bioreactor_2": "Β§7ΠŸΠΎΡ”Π΄Π½ΡƒΡ” ΠΎΡ€Π³Π°Π½Ρ–Ρ‡Π½Ρ– Ρ‚Π° Π½Π΅ΠΎΡ€Π³Π°Π½Ρ–Ρ‡Π½Ρ– Ρ–Π½Π³Ρ€Π΅Π΄Ρ–Ρ”Π½Ρ‚ΠΈ для отримання синтСтичних Π±Ρ–ΠΎΠ»ΠΎΠ³Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π².Β§r", + "tfg.tooltip.machine.growth_chamber_1": "Β§7Вирощування Π½ΠΎΠ²ΠΎΠ³ΠΎ Тиття§r", + "tfg.tooltip.machine.growth_chamber_2": "Β§7ΠœΡ–ΡΡ‚ΠΈΡ‚ΡŒ усС Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Π΅ для Π±Ρ–ΠΎΡ–Π½ΠΆΠ΅Π½Π΅Ρ€Ρ–Ρ—.Β§r", + "tfg.tooltip.machine.evaporation_tower_1": "Β§7Not to be confused with the Distillation TowerΒ§r", + "tfg.tooltip.machine.evaporation_tower_2": "Β§7ΠŸΠΎΠ·Π±Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ надлишкового Ρ€ΠΎΠ·Ρ‡ΠΈΠ½Π½ΠΈΠΊΠ°, Ρ‰ΠΎΠ± скондСнсувати Ρ€ΠΎΠ·Ρ‡ΠΈΠ½ΠΈ.Β§r", + "tfg.tooltip.machine.electric_greenhouse_1": "Β§7Π”ΠΎΠ΄Π°Ρ” Β«Π€Π°Π±Ρ€ΠΈΠΊΡƒΒ» Ρƒ Ρ„Π°Π±Ρ€ΠΈΡ‡Π½Π΅ Ρ‚Π²Π°Ρ€ΠΈΠ½Π½ΠΈΡ†Ρ‚Π²ΠΎΒ§r", + "tfg.tooltip.machine.electric_greenhouse_2": "Β§7Використовує Π²ΠΎΠ΄Ρƒ для вирощування Π΄Π΅Ρ€Π΅Π², ΠΊΡƒΠ»ΡŒΡ‚ΡƒΡ€ Ρ‚Π° Ρ–Π½ΡˆΠΈΡ… рослин. МоТС Π±ΡƒΡ‚ΠΈ прискорСно Π·Π° допомогою Π΄ΠΎΠ±Ρ€ΠΈΠ². ШвидшС ΠΉ ΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠ΅, Π½Ρ–ΠΆ Ρ–Π½ΡˆΡ– способи вирощування рослин, Π°Π»Π΅ ΠΊΠΎΡˆΡ‚ΡƒΡ” Π΅Π½Π΅Ρ€Π³Ρ–Ρ—.Β§r", + "tfg.tooltip.machine.cooling_tower_1": "Β§7Нагрівання атмосфСри§r", + "tfg.tooltip.machine.cooling_tower_2": "Β§7ΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΡ” гарячий тСплоносій, Ρ€ΠΎΠ·ΡΡ–ΡŽΡŽΡ‡ΠΈ надлишковС Ρ‚Π΅ΠΏΠ»ΠΎ Π² атмосфСру.Β§r", "tfg.tooltip.obsolete.depreciated": "Β§cЗастарілС, Π±Ρ–Π»ΡŒΡˆΠ΅ Π½Π΅ ΡΡ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ", - "tfg.tooltip.dna_syringe.empty": "ΠŸΠΎΡ€ΠΎΠΆΠ½Ρ–ΠΉ ΡˆΠΏΡ€ΠΈΡ†.", - "tfg.tooltip.dna_syringe.dirty1": "Використаний ΡˆΠΏΡ€ΠΈΡ†.", - "tfg.tooltip.dna_syringe.dirty2": "ΠžΠ±Π΅Ρ€Π΅ΠΆΠ½ΠΎ, Π½Π΅ Π²ΠΊΠΎΠ»Ρ–Ρ‚ΡŒ Ρ†ΠΈΠΌ Π½Ρ–ΠΊΠΎΠ³ΠΎ...", + "tfg.tooltip.antipoison_pill": "Β§9Π›Ρ–ΠΊΡƒΡ” отруєння", + "tfg.tooltip.antipoison_tablet": "Β§9Усуває всі Π°ΠΊΡ‚ΠΈΠ²Π½Ρ– ΡˆΠΊΡ–Π΄Π»ΠΈΠ²Ρ– Π΅Ρ„Π΅ΠΊΡ‚ΠΈ", + "tfg.tooltip.dna_syringe.empty": "Β§7ΠŸΠΎΡ€ΠΎΠΆΠ½Ρ–ΠΉ ΡˆΠΏΡ€ΠΈΡ†.Β§r", + "tfg.tooltip.dna_syringe.dirty1": "Β§7Використаний ΡˆΠΏΡ€ΠΈΡ†.Β§r", + "tfg.tooltip.dna_syringe.dirty2": "Β§7Π‘ΡƒΠ΄ΡŒΡ‚Π΅ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½Ρ–, Ρ‰ΠΎΠ± Π½Ρ–ΠΊΠΎΠ³ΠΎ Π½Π΅ Π²ΠΊΠΎΠ»ΠΎΡ‚ΠΈ Ρ†ΠΈΠΌ...Β§r", "tfg.tooltip.dna_syringe.full": "Π—Ρ€Π°Π·ΠΎΠΊ Π”ΠΠš: ", "tfg.tooltip.dna_syringe.explain": "ΠšΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ ПКМ ΠΏΠΎ ΠΌΠΎΠ±Ρƒ, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π·Ρ€Π°Π·ΠΎΠΊ Π”ΠΠš. Π ΠΎΠ·ΠΌΡ–ΡΡ‚Ρ–Ρ‚ΡŒ Ρƒ сітці ΠΊΡ€Π°Ρ„Ρ‚Π°, Ρ‰ΠΎΠ± очистити вміст.", "tfg.tooltip.shift_hint": "[Hold-Shift]", @@ -1349,9 +1610,30 @@ "tfg.tooltip.component.moderate_core_frame": "МоТна розмістити всСрСдині Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° ΠΏΠΎΠ΄Ρ–Π»Ρƒ, Ρ‰ΠΎΠ± ΠΏΡ–Π΄Π²ΠΈΡ‰ΠΈΡ‚ΠΈ максимальнС Ρ‚Π΅ΠΏΠ»ΠΎ Π½Π° Β§910Β§r", "tfg.tooltip.component.dry_ice": "МоТС використовуватися як Π²Ρ…Ρ–Π΄ Ρƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ– ΠΏΠΎΠ΄Ρ–Π»Ρƒ для ΠΉΠΎΠ³ΠΎ охолодТСння, ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” Ρ‚Ρ€ΠΈΠΌΠ°Ρ‡Π° ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²", "tfg.tooltip.component.refrigerant_pellet": "МоТС використовуватися як Π²Ρ…Ρ–Π΄ Ρƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ– ΠΏΠΎΠ΄Ρ–Π»Ρƒ для ΠΉΠΎΠ³ΠΎ охолодТСння, ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” Ρ‚Ρ€ΠΈΠΌΠ°Ρ‡Π° ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²", - "tfg.tooltip.component.nuclear_turbine_1": "Β§eΠ‘Π°Π·ΠΎΠ²Π΅ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ:Β§r 4096 EU/t", + "tfg.tooltip.component.nuclear_turbine_1": "Β§eΠ‘Π°Π·ΠΎΠ²Π΅ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ:Β§r 8192 EU/t", "tfg.tooltip.component.nuclear_turbine_2": "КоТСн Ρ‚Ρ€ΠΈΠΌΠ°Ρ‡ Ρ€ΠΎΡ‚ΠΎΡ€Π° Π²ΠΈΡ‰Π΅ Β§5EVΒ§r Β§7Π΄ΠΎΠ΄Π°Ρ”Β§r 10% СфСктивності Ρ‚Π° ΠΌΠ½ΠΎΠΆΠΈΡ‚ΡŒ EU/t Π½Π° 2.", + "tfg.tooltip.component.smr_generator_1": "Β§eΠ‘Π°Π·ΠΎΠ²Π΅ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ:Β§r 4096 EU/t", + "tfg.tooltip.component.smr_generator_2": "ΠŸΡ€ΠΈΠ·Π½Π°Ρ‡Π΅Π½ΠΈΠΉ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π· sCOβ‚‚ Ρ‚Π° ΠΌΠ°Π»ΠΎΠ³ΠΎ ΠΌΠΎΠ΄ΡƒΠ»ΡŒΠ½ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° \nВикористовуйтС мастило Ρ‚Π° ΠΏΡ€ΠΈΡΠΊΠΎΡ€ΡŽΠ²Π°Ρ‡ для підвищСння СфСктивності Ρ‚Π° кСрування ΠΊΠΎΠ½Ρ‚ΡƒΡ€ΠΎΠΌ охолодТСння ММР.", + "tfg.gui.refrigerator.unify_dates.enabled": "Уніфікація Π΄Π°Ρ‚ΠΈ закінчСння: Β§aΠ£Π²Ρ–ΠΌΠΊΠ½Π΅Π½ΠΎ", + "tfg.gui.refrigerator.unify_dates.disabled": "Уніфікація Π΄Π°Ρ‚ΠΈ закінчСння: Β§cΠ’ΠΈΠΌΠΊΠ½Π΅Π½ΠΎ", "tfg.machine.food_refrigerator_power_usage": "Β§7Π‘ΠΏΠΎΠΆΠΈΠ²Π°Ρ”Β§r %s EU/t Β§7ΠΏΡ–Π΄ час Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ, Ρ‰ΠΎΠ± Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ Π²Π°ΡˆΡƒ Ρ—ΠΆΡƒ ΡΠ²Ρ–ΠΆΠΎΡŽ.Β§r", + "tfg.gui.rnr_plow.random_mode": "Π Π°Π½Π΄ΠΎΠΌΡ–Π·ΡƒΠ²Π°Ρ‚ΠΈ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ", + "tfg.gui.rnr_plow.width": "Π¨ΠΈΡ€ΠΈΠ½Π° ΡˆΠ»ΡΡ…Ρƒ: %d Π±Π»ΠΎΠΊΡ–Π²", + "tfg.gui.rnr_plow.empty_crushed_base_course": "Β§cВідсутній ΡˆΠ°Ρ€ Ρ‰Π΅Π±Π΅Π½Π΅Π²ΠΎΡ— основи!!", + "tfg.tooltip.progenitor_cells.mob": "Π’Π²Π°Ρ€ΠΈΠ½Π½ΠΈΡ†Ρ‚Π²ΠΎ: ", + "tfg.tooltip.fake_nutrition_info_listener": "Β§7Β§oΠ£Ρ‚Ρ€ΠΈΠΌΡƒΠΉΡ‚Π΅ (Shift), Ρ‰ΠΎΠ± пСрСглянути Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–ΡŽ ΠΏΡ€ΠΎ ΠΏΠΎΠΆΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ", + "tfg.tooltip.fake_nutrition_info": "Β§7ΠŸΠΎΠΆΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ:", + "tfg.tooltip.cheese_slice_microplastics": "Β§b- ΠœΡ–ΠΊΡ€ΠΎΠΏΠ»Π°ΡΡ‚ΠΈΠΊ: 1.9", + "tfg.gui.menu.field_guide_splash_text": "ΠŸΠΎΡ€Π°Π΄Π°: ΠŸΡ€ΠΎΡ‡ΠΈΡ‚Π°ΠΉΡ‚Π΅ польовий посібник!!!", + "tfg.gui.menu.ram_usage": "RAM:", + "tfg.gui.menu.fps_count": "FPS:", + "tfg.gui.smr_generator.credit": "ΠŸΡ€ΠΈΡΠ²ΡΡ‡Π΅Π½ΠΎ ΠΊΠΎΠΌΠ°Π½Π΄Ρ– Frontiers", + "tfg.gui.smr_generator.lubricant_used": "ΠœΠ°ΡΡ‚ΠΈΠ»ΠΎ: %s", + "tfg.gui.smr_generator.booster_used": "ΠŸΡ€ΠΈΡΠΊΠΎΡ€ΡŽΠ²Π°Ρ‡: %s", + "tfg.gui.max_energy_per_tick_amps.prefix": "Макс. EU/Ρ‚: ", + "tfg.gui.consumes": "Π‘ΠΏΠΎΠΆΠΈΠ²Π°Ρ”: ", + "tfg.gui.per_cycle": "Π·Π° Ρ†ΠΈΠΊΠ»", + "tfg.gui.cycle_duration": "Π’Ρ€ΠΈΠ²Π°Π»Ρ–ΡΡ‚ΡŒ Ρ†ΠΈΠΊΠ»Ρƒ: ", "tfc.jei.flint_knapping": "ΠžΠ±Ρ€ΠΎΠ±ΠΊΠ° ΠšΡ€Π΅ΠΌΠ΅Π½ΡŽ", "tfc.jei.straw_knapping": "Вибивання Π‘ΠΎΠ»ΠΎΠΌΠΈ", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Ѐарбування", @@ -1404,6 +1686,7 @@ "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_dust": "ΠžΠ±Ρ€ΠΎΠ±ΠΊΠ° Π΄Π΅Ρ€Π΅Π²Π½ΠΎΠ³ΠΎ ΠΏΠΈΠ»Ρƒ", "tfc.recipe.barrel.tfg.barrel.treated_wood_planks": "ΠžΠ±Ρ€ΠΎΠ±ΠΊΠ° Π”Π΅Ρ€Π΅Π²'яних Планок", "tfc.recipe.barrel.tfg.barrel.packed_ice": "ЗамСрзання Π»ΡŒΠΎΠ΄Ρƒ", "tfc.recipe.barrel.tfg.barrel.cooling_water_1": "ΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½Π° Π’ΠΎΠ΄Π°", @@ -1555,6 +1838,9 @@ "quests.ae2.cutting_knife.desc": "Π¦Π΅ інструмСнти для Π·Ρ€ΡƒΡ‡Π½ΠΎΠ³ΠΎ пСрСймСнування всіх Π²Π°ΡˆΠΈΡ… ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² ME. Навіщо Ρ†Π΅ Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ? Π―ΠΊΡ‰ΠΎ Π²ΠΈ ΠΏΠ΅Ρ€Π΅ΠΉΠΌΠ΅Π½ΡƒΡ”Ρ‚Π΅ свої ΠŸΠΎΡΡ‚Π°Ρ‡Π°Π»ΡŒΠ½ΠΈΠΊΠΈ ΡˆΠ°Π±Π»ΠΎΠ½Ρ–Π², Ρ—Ρ…Π½Ρ– Π½Π°Π·Π²ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ відобраТатися Π² Π’Π΅Ρ€ΠΌΠΈΠ½Π°Π»Ρ– ΡˆΠ°Π±Π»ΠΎΠ½Ρ–Π², Ρ‰ΠΎ Π΄ΡƒΠΆΠ΅ Π·Ρ€ΡƒΡ‡Π½ΠΎ для відстСТСння, який ΠŸΠΎΡΡ‚Π°Ρ‡Π°Π»ΡŒΠ½ΠΈΠΊ ΡˆΠ°Π±Π»ΠΎΠ½Ρ–Π² ΠΏΡ–Π΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠΉ Π΄ΠΎ якої машини.\n\nНаприклад, Π½Π°Π·Π²Π° Малий СкструдСр ΡˆΠ΅ΡΡ‚Π΅Ρ€Π΅Π½ΡŒ для ΠŸΠΎΡΡ‚Π°Ρ‡Π°Π»ΡŒΠ½ΠΈΠΊΠ° ΡˆΠ°Π±Π»ΠΎΠ½Ρ–Π² Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ Π²Π°ΠΌ Π»Π΅Π³ΠΊΠΎ Π·Ρ€ΠΎΠ·ΡƒΠΌΡ–Ρ‚ΠΈ, Ρ‰ΠΎ Ρ†Π΅ΠΉ СкструдСр ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ Ρ„ΠΎΡ€ΠΌΡƒ для ΠΌΠ°Π»ΠΈΡ… ΡˆΠ΅ΡΡ‚Π΅Ρ€Π΅Π½ΡŒ, Ρ‚ΠΎΠΆ сюди слід класти лишС шаблони ΠΌΠ°Π»ΠΈΡ… ΡˆΠ΅ΡΡ‚Π΅Ρ€Π΅Π½ΡŒ.", "quests.ae2.cutting_knife.task": "Π‘ΡƒΠ΄ΡŒ-який Π½Ρ–ΠΆ для різання", "quests.ae2.pattern_box.desc": "Π‘ΠΊΡ€ΠΈΠ½ΡŒΠΊΠ° ΡˆΠ°Π±Π»ΠΎΠ½Ρ–Π² ΠΌΠΎΠΆΠ΅ Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ всі Ρ‚Π²ΠΎΡ— ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ– Ρ‚Π° Π·Π°ΠΊΠΎΠ΄ΠΎΠ²Π°Π½Ρ– шаблони Π² ΠΎΠ΄Π½ΠΎΠΌΡƒ слоті інвСнтаря, Ρ– Π²ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π²ΠΈΠ΄ΠΈΠΌΡ– Π² Π±ΡƒΠ΄ΡŒβ€‘ΡΠΊΠΎΠΌΡƒ інтСрфСйсі пристроїв AE2, Π΄ΠΎΠΊΠΈ ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠ° Π·Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒΡΡ Ρƒ Ρ‚Π²ΠΎΡ”ΠΌΡƒ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Ρ–.", + "quests.ae2.wireless_access.title": "ME Π‘Π΅Π·Π΄Ρ€ΠΎΡ‚ΠΎΠ²Π° ΠΌΠ΅Ρ€Π΅ΠΆΠ°", + "quests.ae2.wireless_access.subtitle": "ΠžΡ‚Ρ€ΠΈΠΌΡƒΠΉ Π±Π΅Π·ΠΊΠΎΡˆΡ‚ΠΎΠ²Π½ΠΈΠΉ Wi‑Fi Π±ΡƒΠ΄ΡŒ-Π΄Π΅, ΠΊΡƒΠ΄ΠΈ Π± Ρ‚ΠΈ Π½Π΅ ΠΏΡ–ΡˆΠΎΠ²", + "quests.ae2.wireless_access.desc": "Коли Π²ΠΈ досягнСтС &5EV&r, ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅ доступ Π΄ΠΎ ME Π‘Π΅Π·Π΄Ρ€ΠΎΡ‚ΠΎΠ²ΠΎΡ— Π’ΠΎΡ‡ΠΊΠΈ Доступу, яка Ρ„Π°ΠΊΡ‚ΠΈΡ‡Π½ΠΎ ΠΏΡ€Π°Ρ†ΡŽΡ” як Wi‑Fi Ρ€ΠΎΡƒΡ‚Π΅Ρ€ для Π²Π°ΡˆΠΎΡ— ME‑мСрСТі. \nΠŸΡ–Π΄β€™Ρ”Π΄Π½Π°ΠΉΡ‚Π΅ Ρ—Ρ— Π΄ΠΎ Ρ†Π΅Π½Ρ‚Ρ€Π°Π»ΡŒΠ½ΠΎΡ— Ρ‚ΠΎΡ‡ΠΊΠΈ Ρƒ Π²Π°ΡˆΡ–ΠΉ Π±Π°Π·Ρ–, вставтС ΡΡ‚Ρ–Π»ΡŒΠΊΠΈ ΠΊΠ°Ρ€Ρ‚ΠΎΠΊ Π‘Π΅Π·Π΄Ρ€ΠΎΡ‚ΠΎΠ²ΠΎΠ³ΠΎ ΠŸΡ–Π΄ΡΠΈΠ»ΡŽΠ²Π°Ρ‡Π°, ΡΠΊΡ–Π»ΡŒΠΊΠΈ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ, Ρ‰ΠΎΠ± Π·Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ радіус Π΄Ρ–Ρ— (Ρ– споТивання Π΅Π½Π΅Ρ€Π³Ρ–Ρ—), Π° ΠΏΠΎΡ‚Ρ–ΠΌ ΠΏΡ€ΠΈΠ²β€™ΡΠΆΡ–Ρ‚ΡŒ Π΄ΠΎ Π½Π΅Ρ— Π‘Π΅Π·Π΄Ρ€ΠΎΡ‚ΠΎΠ²ΠΈΠΉ Π’Π΅Ρ€ΠΌΡ–Π°Π». \n\nКоли Ρƒ вас Π·β€™ΡΠ²Π»ΡΡ‚ΡŒΡΡ Епоксидна смола Ρ‚Π° Π ΠΎΠ΄Ρ–ΠΉ, Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ об’єднати всі свої Π‘Π΅Π·Π΄Ρ€ΠΎΡ‚ΠΎΠ²Ρ– Π’Π΅Ρ€ΠΌΡ–Π½Π°Π»ΠΈ Π² Π£Π½Ρ–Π²Π΅Ρ€ΡΠ°Π»ΡŒΠ½ΠΈΠΉ Π’Π΅Ρ€ΠΌΡ–Π°Π»!", "quests.ae2.interplanetary_wireless.subtitle": "Π—Π°Π±ΡƒΠ² Ρ‰ΠΎΡΡŒ ΡƒΠ΄ΠΎΠΌΠ°?", "quests.ae2.interplanetary_wireless.desc": "Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΌΠΎΠ΄Π΅Ρ€Π½Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ свій Π‘Π΅Π·Π΄Ρ€ΠΎΡ‚ΠΎΠ²ΠΈΠΉ Ρ‚Π΅Ρ€ΠΌΡ–Π½Π°Π» Π·Π° допомогою Ρ†Ρ–Ρ”Ρ— ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΎΡ— ΠΊΠ°Ρ€Ρ‚ΠΊΠΈ, ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π²ΡˆΠΈ доступ Π΄ΠΎ Π²Π°ΡˆΠΎΡ— ΠΌΠ΅Ρ€Π΅ΠΆΡ– Π· Π±ΡƒΠ΄ΡŒβ€‘ΡΠΊΠΎΡ— відстані, Π½Π°Π²Ρ–Ρ‚ΡŒ Π· Ρ–Π½ΡˆΠΈΡ… світів! Π—Π²ΡƒΡ‡ΠΈΡ‚ΡŒ Π·Π°Π½Π°Π΄Ρ‚ΠΎ Π΄ΠΎΠ±Ρ€Π΅, Ρ‰ΠΎΠ± Π±ΡƒΡ‚ΠΈ ΠΏΡ€Π°Π²Π΄ΠΎΡŽ? Π„ суттєвий Π½Π΅Π΄ΠΎΠ»Ρ–ΠΊ β€” пСрСдавання ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² споТиває Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—. \n\nЧастково ΠΎΠ±Ρ–ΠΉΡ‚ΠΈ Ρ†Π΅ ΠΌΠΎΠΆΠ½Π° Π·Π° допомогою Π•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… ΠΊΠ°Ρ€Ρ‚ΠΎΠΊ Ρ– Π±Π°Ρ‚Π°Ρ€Π΅Ρ— Ρƒ Π²Π°ΡˆΠΎΠΌΡƒ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Ρ–, встановлСної Π² Ρ€Π΅ΠΆΠΈΠΌ Розрядки, Π°Π»Π΅ Ρ†ΡŒΠΎΠ³ΠΎ ΠΌΠ°Ρ” вистачити для Ρ‚ΠΈΡ… Π²ΠΈΠΏΠ°Π΄ΠΊΡ–Π², ΠΊΠΎΠ»ΠΈ Π²ΠΈ Π²ΠΈΠΏΠ°Π΄ΠΊΠΎΠ²ΠΎ залишили Ρ‰ΠΎΡΡŒ Π½Π° своїй Π±Π°Π·Ρ– Π½Π° Π—Π΅ΠΌΠ»Ρ– ΠΉ Π½Π΅ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π»Π΅Ρ‚Ρ–Ρ‚ΠΈ Π½Π°Π·Π°Π΄. \n\nДля ΠΏΠΎΠ²Π½ΠΎΡ†Ρ–Π½Π½ΠΎΠ³ΠΎ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΎΠ²Π°Π½ΠΎΠ³ΠΎ пСрСнСсСння Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π Π΅ΠΉΠΊΠΎΡ‚Ρ€ΠΎΠ½.", "quests.ae2.iv.title": "AE2 рівня IV", @@ -1584,9 +1870,72 @@ "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.cell_component_64m.desc": "&c64M ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ ЗбСрігання MEGA&r β€” Ρ†Π΅ Π½Π°ΠΉΠ±Ρ–Π»ΡŒΡˆΠΈΠΉ, який ΠΌΠΎΠΆΠ½Π° створити Ρƒ &7TerraFirmaGreg&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.combat_tips.stone_main.title": "ΠšΠ°ΠΌβ€™ΡΠ½Π° Π΄ΠΎΠ±Π°", + "quests.combat_tips.hammer.title": "ΠœΠΎΠ»ΠΎΡ‚ΠΈ", + "quests.combat_tips.hammer.subtitle": "Час ΠΏΠΎΠΌΠ°Ρ…Π°Ρ‚ΠΈ ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΌ!", + "quests.combat_tips.hammer.description": "Π₯ΠΎΡ‡Π° Π±Ρ–ΠΉ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Π½Π΅ ΠΏΠ΅Ρ€ΡˆΠΈΠΌ, Ρ‰ΠΎ спадає Π½Π° Π΄ΡƒΠΌΠΊΡƒ ΠΏΡ€ΠΈ використанні ΠΌΠΎΠ»ΠΎΡ‚Π°, Π²Ρ–Π½ ΠΌΠΎΠΆΠ΅ виявитися Π½Π°ΠΏΡ€ΠΎΡ‡ΡƒΠ΄ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΌ. ΠœΠΎΠ»ΠΎΡ‚ΠΈ Π·Π°Π²Π΄Π°ΡŽΡ‚ΡŒ &2Π”Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½ΠΈΡ…&r ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ, Ρ‰ΠΎ ΠΌΠΎΠΆΠ΅ Π΄ΠΎΠΏΠΎΠΌΠΎΠ³Ρ‚ΠΈ ΠΏΡ€ΠΎΡ‚ΠΈ Π‘ΠΊΠ΅Π»Π΅Ρ‚Ρ–Π². \n\nДля отримання Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΎΡ— Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— ΠΏΡ€ΠΎ &cΠ’ΠΈΠΏΠΈ ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ&r звСрнися Π΄ΠΎ &3Польового посібника&r.", + "quests.combat_tips.hammer.task": "Π‘ΡƒΠ΄ΡŒ-який ΠΌΠΎΠ»ΠΎΡ‚", + "quests.combat_tips.javelin.title": "Π”Ρ€ΠΎΡ‚ΠΈΠΊΠΈ", + "quests.combat_tips.javelin.subtitle": "Π›ΡƒΠΊ ΠΏΠ΅Ρ‡Π΅Ρ€Π½ΠΎΡ— людини", + "quests.combat_tips.javelin.description": "Π―ΠΊΡ‰ΠΎ Ρ‚ΠΈ Ρ…ΠΎΡ‡Π΅Ρˆ Ρ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π²ΠΎΡ€ΠΎΠ³Ρ–Π² Π½Π° відстані, Π΄Ρ€ΠΎΡ‚ΠΈΠΊΠΈ β€” Ρ†Π΅ самС Ρ‚Π° зброя для Ρ‚Π΅Π±Π΅. Π’ΠΎΠ½ΠΈ Ρ” Π½Π°ΠΉΡ€Π°Π½Ρ–ΡˆΠΈΠΌΠΈ Π΄Π°Π»ΡŒΠ½ΠΎΠ±Ρ–ΠΉΠ½ΠΈΠΌΠΈ Π²ΠΈΠ΄Π°ΠΌΠΈ Π·Π±Ρ€ΠΎΡ—, доступними Ρ‚ΠΎΠ±Ρ–. Π’ΠΎΠ½ΠΈ Π·Π°Π²Π΄Π°ΡŽΡ‚ΡŒ &9ΠŸΡ€ΠΎΠ½ΠΈΠΊΠ°ΡŽΡ‡ΠΈΡ…&r ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ, Ρ‰ΠΎ ΠΌΠΎΠΆΠ΅ Π΄ΠΎΠΏΠΎΠΌΠΎΠ³Ρ‚ΠΈ ΠΏΡ€ΠΎΡ‚ΠΈ Π—ΠΎΠΌΠ±Ρ–. \n\nДля отримання Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΎΡ— Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— ΠΏΡ€ΠΎ &cΠ’ΠΈΠΏΠΈ ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ&r звСрнися Π΄ΠΎ &3Польового посібника&r. \n\nКоли Ρ‚ΠΈ Π·Π΄ΠΎΠ±ΡƒΠ΄Π΅Ρˆ ΡˆΠΊΡ–Ρ€Ρƒ, змоТСш створити &5ΠšΠΎΠ»Ρ‡Π°Π½&r, який Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ Π»Π΅Π³ΠΊΠΎ носити Π΄ΠΎ 8 Π΄Ρ€ΠΎΡ‚ΠΈΠΊΡ–Π²! ", + "quests.combat_tips.javelin.task": "Π‘ΡƒΠ΄ΡŒ-який Π”Ρ€ΠΎΡ‚ΠΈΠΊ", + "quests.combat_tips.axe.title": "Π‘ΠΎΠΊΠΈΡ€ΠΈ", + "quests.combat_tips.axe.subtitle": "ΠšΠΎΡ€ΠΈΡΠ½ΠΈΠΉ Π½Π΅ лишС для Π΄Π΅Ρ€Π΅Π²Π°", + "quests.combat_tips.axe.description": "Поки Ρ‚ΠΈ Π½Π΅ змоТСш Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ покращСння, сокира Π±ΡƒΠ΄Π΅ Ρ‚Π²ΠΎΡ”ΡŽ Π½Π°ΠΉΠ½Π°Π΄Ρ–ΠΉΠ½Ρ–ΡˆΠΎΡŽ Π·Π±Ρ€ΠΎΡ”ΡŽ. ΠžΠΊΡ€Ρ–ΠΌ високої шкоди, Π²ΠΎΠ½Π° Π·Π°Π²Π΄Π°Ρ” &6Π Ρ–ΠΆΡƒΡ‡ΠΈΡ…&r ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ, Ρ‰ΠΎ Π΄ΠΎΠΏΠΎΠΌΠΎΠΆΠ΅ ΠΏΡ€ΠΎΡ‚ΠΈ ΠšΡ€ΠΈΠΏΠ΅Ρ€Ρ–Π². \n\nДля отримання Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΎΡ— Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— ΠΏΡ€ΠΎ &cΠ’ΠΈΠΏΠΈ ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ&r звСрнися Π΄ΠΎ &3Польового посібника&r.", + "quests.combat_tips.axe.task": "Π‘ΡƒΠ΄ΡŒ-яка сокира", + "quests.combat_tips.knife.title": "НоТі", + "quests.combat_tips.knife.subtitle": "Вицяти-ΠΊΠΎΠ»ΠΎΡ‚ΠΈ", + "quests.combat_tips.knife.description": "НоТі Π½Π°ΠΉΠ±Ρ–Π»ΡŒΡˆ корисні для ΠΊΡ€Π°Ρ„Ρ‚Ρƒ, Π°Π»Π΅ Π² Ρ€Π°Π·Ρ– ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ стати Π·Π±Ρ€ΠΎΡ”ΡŽ. Π’ΠΎΠ½ΠΈ Π·Π°Π²Π΄Π°ΡŽΡ‚ΡŒ &9ΠŸΡ€ΠΎΠ½ΠΈΠΊΠ°ΡŽΡ‡ΠΈΡ…&r ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ, Ρ‰ΠΎ ΠΌΠΎΠΆΠ΅ Π΄ΠΎΠΏΠΎΠΌΠΎΠ³Ρ‚ΠΈ ΠΏΡ€ΠΎΡ‚ΠΈ Π—ΠΎΠΌΠ±Ρ–. \n\nДля отримання Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΎΡ— Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— ΠΏΡ€ΠΎ &cΠ’ΠΈΠΏΠΈ ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ&r звСрнися Π΄ΠΎ &3Польового посібника&r.", + "quests.combat_tips.knife.task": "Π‘ΡƒΠ΄ΡŒ-який Π½Ρ–ΠΆ", + "quests.combat_tips.club.title": "ΠšΡ€Π΅ΠΌΠ½Ρ–Ρ”Π²Π° Π΄ΡƒΠ±ΠΈΠ½Π°", + "quests.combat_tips.club.subtitle": "Π“Ρ€ΠΎΠ½ΠΊ-Π‘ΠΎΠ½ΠΊ", + "quests.combat_tips.club.description": "ΠšΡ€Π΅ΠΌβ€™ΡΠ½Ρ– Π΄ΡƒΠ±ΠΈΠ½ΠΈ Ρ” Π΄ΠΎΡΠΈΡ‚ΡŒ Π½Π΅Ρ‚Ρ€Π°Π΄ΠΈΡ†Ρ–ΠΉΠ½ΠΎΡŽ Π·Π±Ρ€ΠΎΡ”ΡŽ. Π—Π°ΠΌΡ–ΡΡ‚ΡŒ Ρ‚ΠΎΠ³ΠΎ Ρ‰ΠΎΠ± Π·Π°Π²Π΄Π°Π²Π°Ρ‚ΠΈ шкоди, Π²ΠΎΠ½ΠΈ Π»Π°ΠΌΠ°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ кістки Π²ΠΎΡ€ΠΎΠ³Ρ–Π², Π·ΡƒΠΏΠΈΠ½ΡΡŽΡ‡ΠΈ Ρ—Ρ… Π½Π° місці. \n\nΠ† стандартну, Ρ– посилСну крСм’яну Π΄ΡƒΠ±ΠΈΠ½Ρƒ ΠΌΠΎΠΆΠ½Π° створити Π· ΠΏΡ€ΠΈΠΌΡ–Ρ‚ΠΈΠ²Π½ΠΈΡ… ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π². ПосилСна крСм’яна Π΄ΡƒΠ±ΠΈΠ½Π° Π²ΠΈΡ€Ρ–Π·Π½ΡΡ”Ρ‚ΡŒΡΡ швидшою ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŽ Π°Ρ‚Π°ΠΊΠΈ Ρ‚Π° Π±Ρ–Π»ΡŒΡˆΠΎΡŽ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŽ.", + "quests.combat_tips.mold_main.title": "ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΈΠ²Π½Π° мСталургія", + "quests.combat_tips.wood_shield.title": "Π”Π΅Ρ€Π΅Π²'яний Ρ‰ΠΈΡ‚", + "quests.combat_tips.wood_shield.subtitle": "Π‘ΠΊΠ΅Π»Π΅Ρ‚ΠΈ болячС Π±β€™ΡŽΡ‚ΡŒ, Ρ‚Π° Ρ‰Π΅ ΠΉ сильно", + "quests.combat_tips.wood_shield.description": "Π©ΠΈΡ‚ Π·Π°Ρ…ΠΈΡΡ‚ΠΈΡ‚ΡŒ Ρ‚Π΅Π±Π΅ Π²Ρ–Π΄ Π±Ρ–Π»ΡŒΡˆΠΎΡΡ‚Ρ– Π΄ΠΆΠ΅Ρ€Π΅Π» шкоди, Π½Π° які Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ ΡΠΏΡ€ΡΠΌΡƒΡ”Ρˆ. АлС ΠΌΠ°ΠΉ Π½Π° ΡƒΠ²Π°Π·Ρ–: Π²Ρ–Π½ &4Π½Π΅&r Π·Π°Ρ…ΠΈΡΡ‚ΠΈΡ‚ΡŒ Π²Ρ–Π΄ Π²ΠΈΠ±ΡƒΡ…Ρ–Π².", + "quests.combat_tips.leather.title": "Шкіряні ΠΎΠ±Π»Π°Π΄ΡƒΠ½ΠΊΠΈ", + "quests.combat_tips.leather.subtitle": "ΠΠ°Ρ€Π΅ΡˆΡ‚Ρ– одяг", + "quests.combat_tips.leather.description": "Коли Ρ‚ΠΈ Π·Π΄ΠΎΠ±ΡƒΠ΄Π΅Ρˆ ΡˆΠΊΡ–Ρ€Ρƒ, змоТСш ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ свою ΠΏΠ΅Ρ€ΡˆΡƒ ΡΠΏΡ€Π°Π²ΠΆΠ½ΡŽ Π±Ρ€ΠΎΠ½ΡŽ. Π’ΠΎΠ½Π° Π½Π΅ Π½Π°Π΄Ρ‚ΠΎ Ρ…ΠΎΡ€ΠΎΡˆΠ°, Π°Π»Π΅ Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΠΉ захист, який ΠΌΠΎΠΆΠ΅ знадобитися. \n\nΠ’ΠΎΠ½Π° Ρ‚Π°ΠΊΠΎΠΆ Π΄Π°Ρ” Π½Π΅Π²Π΅Π»ΠΈΠΊΠΈΠΉ ΠΎΠΏΡ–Ρ€ ΠΏΡ€ΠΎΡ‚ΠΈ &6Π Ρ–ΠΆΡƒΡ‡ΠΈΡ…&r ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ.", + "quests.combat_tips.mold_weapons.title": "Π€ΠΎΡ€ΠΌΠΎΠ²Π°Π½a зброя", + "quests.combat_tips.mold_weapons.subtitle": "Π‘ΠΈΠ»Π° ΠΌΠ΅Ρ‚Π°Π»Ρƒ", + "quests.combat_tips.mold_weapons.description": "Π€ΠΎΡ€ΠΌΠΈ Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ΡŒ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ ΠΌΡ–Π΄Π½Ρ– Ρ‚Π° Π±Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ– вСрсії всієї Π·Π±Ρ€ΠΎΡ—, Π²ΠΊΠ»ΡŽΡ‡Π½ΠΎ Π· Ρ‚Ρ€ΡŒΠΎΠΌΠ° Π½ΠΎΠ²ΠΈΠΌΠΈ Ρ‚ΠΈΠΏΠ°ΠΌΠΈ: ΠΌΠ΅Ρ‡Π°ΠΌΠΈ, косами Ρ‚Π° Π±ΡƒΠ»Π°Π²Π°ΠΌΠΈ. \n\nΠœΠ΅Ρ‡Ρ–: Ця збалансована зброя Π·Π°Π²Π΄Π°Ρ” &6Π Ρ–ΠΆΡƒΡ‡ΠΈΡ…&r ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ. \n\nКоси: Π’ΠΎΠ½ΠΈ Π·Π°Π²Π΄Π°ΡŽΡ‚ΡŒ Π±Ρ–Π»ΡŒΡˆΠ΅ шкоди, Π½Ρ–ΠΆ ΠΌΠ΅Ρ‡Ρ–, Π°Π»Π΅ Ρ” ΠΏΠΎΠ²Ρ–Π»ΡŒΠ½Ρ–ΡˆΠΈΠΌΠΈ. Π’ΠΎΠ½ΠΈ Π·Π°Π²Π΄Π°ΡŽΡ‚ΡŒ &6Π Ρ–ΠΆΡƒΡ‡ΠΈΡ…&r ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ. \n\nΠ‘ΡƒΠ»Π°Π²ΠΈ: Π¦Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π° зброя, Ρ‰ΠΎ Π·Π°Π²Π΄Π°Ρ” &2Π”Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½ΠΈΡ…&r ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ.", + "quests.combat_tips.mold_weapons.task1": "Π‘ΡƒΠ΄ΡŒ-який ΠœΠ΅Ρ‡", + "quests.combat_tips.mold_weapons.task2": "Π‘ΡƒΠ΄ΡŒ-яка Коса", + "quests.combat_tips.mold_weapons.task3": "Π‘ΡƒΠ΄ΡŒ-яка Π‘ΡƒΠ»Π°Π²Π°", + "quests.combat_tips.bow.title": "Π›ΡƒΠΊ Ρ– стріли", + "quests.combat_tips.bow.subtitle": "А ΠΏΠΎΡ‚Ρ–ΠΌ я ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π² стрілу Π² ΠΊΠΎΠ»Ρ–Π½ΠΎ...", + "quests.combat_tips.bow.description": "Π₯ΠΎΡ‡Π° Π΄Ρ€ΠΎΡ‚ΠΈΠΊΠΈ β€” Ρ†Π΅ ΠΊΡ€ΡƒΡ‚ΠΎ, Π²Π°ΠΆΠΊΠΎ ΠΏΠ΅Ρ€Π΅Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ Π»ΡƒΠΊ Π·Ρ– стрілами. Π‘Ρ‚Ρ€Ρ–Π»ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ Π΄ΠΎΡ€ΠΎΠ³ΠΈΠΌΠΈ, Ρ‚ΠΎΠΆ ΠΎΠ±Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ ΠΏΡ‚Π°ΡˆΠΈΠ½Ρƒ Ρ„Π΅Ρ€ΠΌΡƒ β€” Π½Π΅ΠΏΠΎΠ³Π°Π½Π° ідСя. Π‘Ρ‚Ρ€Ρ–Π»ΠΈ Π·Π°Π²Π΄Π°ΡŽΡ‚ΡŒ &9ΠŸΡ€ΠΎΠ½ΠΈΠΊΠ°ΡŽΡ‡ΠΈΡ…&r ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ. \n\nКоли Ρ‚ΠΈ Π·Π΄ΠΎΠ±ΡƒΠ΄Π΅Ρˆ ΡˆΠΊΡ–Ρ€Ρƒ, змоТСш створити &5ΠšΠΎΠ»Ρ‡Π°Π½&r, який Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ Π»Π΅Π³ΠΊΠΎ носити Π΄ΠΎ 8 стосів стріл!", + "quests.combat_tips.bow.task2": "Π‘ΡƒΠ΄ΡŒ-яка стріла", + "quests.combat_tips.bronze_main.title": "Π‘Ρ€ΠΎΠ½Π·ΠΎΠ²Π° Π΄ΠΎΠ±Π°", + "quests.combat_tips.forged_weapons.title": "Кована зброя", + "quests.combat_tips.forged_weapons.subtitle": "Π”ΠΎ ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π° ΠΉ Π΄Π°Π»Ρ–!", + "quests.combat_tips.forged_weapons.description": "ΠŸΠΎΡ‡ΠΈΠ½Π°ΡŽΡ‡ΠΈ Π· ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π° ΠΉ Π²ΠΈΡ‰Π΅, для Ρ—Ρ…Π½ΡŒΠΎΠ³ΠΎ кування Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Π° ΠΊΠΎΠ²Π°Π΄Π»Π°. ΠšΡ€Ρ–ΠΌ Ρ‚ΠΎΠ³ΠΎ, ΠΊΠΎΠ²Π°Π΄Π»Π° Π²Ρ–Π΄ΠΊΡ€ΠΈΠ²Π°Ρ” доступ Π΄ΠΎ Π½ΠΎΠΆΡ–Π² м’ясника. \n\nНоТі м’ясника: Π’ΠΎΠ½ΠΈ ΡˆΠ²ΠΈΠ΄ΡˆΡ– Π·Π° ΠΌΠ΅Ρ‡Ρ–, Π°Π»Π΅ Π·Π°Π²Π΄Π°ΡŽΡ‚ΡŒ мСншС шкоди. Π’ΠΎΠ½ΠΈ Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ΡŒ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ &cΠΏΠΎΠ΄Π²Ρ–ΠΉΠ½Ρƒ&r ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ м’яса Π· ΠΌΠΎΠ±Ρ–Π². Π¦Π΅ Π½Π΅ Π²ΠΏΠ»ΠΈΠ²Π°Ρ” Π½Π° Ρ–Π½ΡˆΡ– Ρ‚Ρ€ΠΎΡ„Π΅Ρ—.", + "quests.combat_tips.forged_weapons.task": "Π‘ΡƒΠ΄ΡŒ-який Π½Ρ–ΠΆ м’ясника", + "quests.combat_tips.shield.title": "ΠœΠ΅Ρ‚Π°Π»Π΅Π²ΠΈΠΉ Ρ‰ΠΈΡ‚", + "quests.combat_tips.shield.subtitle": "ΠŸΡ€Π΅ΠΌΡ–ΡƒΠΌ-захист", + "quests.combat_tips.shield.description": "Ось Ρ†Π΅ Π²ΠΆΠ΅ справТні Ρ‰ΠΈΡ‚ΠΈ. Використання ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π· Π½ΠΈΡ… Π·Π°Ρ…ΠΈΡΡ‚ΠΈΡ‚ΡŒ Ρ‚Π΅Π±Π΅ Π²Ρ–Π΄ Π±ΡƒΠ΄ΡŒ-якої шкоди, Π²ΠΊΠ»ΡŽΡ‡Π½ΠΎ Π· Π²ΠΈΠ±ΡƒΡ…Π°ΠΌΠΈ. \n\nΠ”ΠΎ Ρ‚ΠΎΠ³ΠΎ ΠΆ Π²ΠΎΠ½ΠΈ Π±ΡƒΠ²Π°ΡŽΡ‚ΡŒ Ρƒ ΠΊΡƒΠΏΡ– вСсСлих Ρ„ΠΎΡ€ΠΌ!", + "quests.combat_tips.shield.task": "Π‘ΡƒΠ΄ΡŒ-який ΠΌΠ΅Ρ‚Π°Π»Π΅Π²ΠΈΠΉ Ρ‰ΠΈΡ‚", + "quests.combat_tips.armor.title": "ΠœΠ΅Ρ‚Π°Π»Π΅Π²ΠΈΠΉ ΠΎΠ±Π»Π°Π΄ΡƒΠ½ΠΎΠΊ", + "quests.combat_tips.armor.subtitle": "Π›ΠΈΡˆΠ΅ Π½Π°ΠΉΡΡΠΊΡ€Π°Π²Ρ–ΡˆΠΈΠΉ ΠΎΠ±Π»Π°Π΄ΡƒΠ½ΠΎΠΊ", + "quests.combat_tips.armor.description": "ΠœΠ΅Ρ‚Π°Π»Π΅Π²Π° броня ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” Π΄Π²ΠΎΠ΅Ρ‚Π°ΠΏΠ½ΠΎΠ³ΠΎ процСсу кування, Π°Π»Π΅ Π½Π΅ лякайся ΠΉΠΎΠ³ΠΎ складності. Π’ΠΎΠ½Π° Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΡ–Π΄Π²ΠΈΡ‰ΠΈΡ‚ΡŒ Ρ‚Π²ΠΎΡ— шанси Π½Π° виТивання, ΠΊΠΎΠ»ΠΈ Π²ΠΈΡ€ΡƒΡˆΠΈΡˆ Ρƒ &dΠŸΡ–Π΄Π·Π΅ΠΌΠ΅Π»Π»Ρ&r Π°Π±ΠΎ якщо Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ відбиватися Π²Ρ–Π΄ Π³Ρ€ΡƒΠΏΠΈ &3Π ΠΎΠ·Π±Ρ–ΠΉΠ½ΠΈΠΊΡ–Π²&r. \n\nУся ΠΌΠ΅Ρ‚Π°Π»Π΅Π²Π° броня Π½Π°Π΄Π°Ρ” Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΠΉ захист Π²Ρ–Π΄ &6Π Ρ–ΠΆΡƒΡ‡ΠΈΡ…&r, &9ΠŸΡ€ΠΎΠ½ΠΈΠΊΠ°ΡŽΡ‡ΠΈΡ…&r Ρ‚Π° &2Π”Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½ΠΈΡ…&r ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ", + "quests.combat_tips.armor.task1": "Π‘ΡƒΠ΄ΡŒ-який ΠΌΠ΅Ρ‚Π°Π»Π΅Π²ΠΈΠΉ шолом", + "quests.combat_tips.armor.task2": "Π‘ΡƒΠ΄ΡŒ-який ΠΌΠ΅Ρ‚Π°Π»Π΅Π²ΠΈΠΉ Π½Π°Π³Ρ€ΡƒΠ΄Π½ΠΈΠΊ", + "quests.combat_tips.armor.task3": "Π‘ΡƒΠ΄ΡŒ-які ΠΌΠ΅Ρ‚Π°Π»Π΅Π²Ρ– Π½Π°Π³ΠΎΠ»Ρ–Π½Π½ΠΈΠΊΠΈ", + "quests.combat_tips.armor.task4": "Π‘ΡƒΠ΄ΡŒ-які ΠΌΠ΅Ρ‚Π°Π»Π΅Π²Ρ– Ρ‡ΠΎΠ±ΠΎΡ‚ΠΈ", + "quests.combat_tips.iron_main.title": "Π—Π°Π»Ρ–Π·Π½Π° Π”ΠΎΠ±Π°", + "quests.combat_tips.crossbow.title": "АрбалСт", + "quests.combat_tips.crossbow.subtitle": "Π¦Π΅ Π½Π°Ρ‡Π΅ Ρ€ΡƒΡ‡Π½Π° Π³Π°Ρ€ΠΌΠ°Ρ‚Π°", + "quests.combat_tips.crossbow.description": "ΠŸΡ€ΠΎΡΡ‚Ρ–ΡˆΠ΅ ΠΊΠ°ΠΆΡƒΡ‡ΠΈ, Π²Ρ–Π½ ΠΏΡ€Π°Ρ†ΡŽΡ” Ρ‚Π°ΠΊ само, як стандартний Π°Ρ€Π±Π°Π»Π΅Ρ‚. ΠŸΠΎΠ΄Ρ–Π±Π½ΠΎ Π΄ΠΎ Π»ΡƒΠΊΠ°, Ρ‚ΠΈ моТСш використовувати &5ΠšΠΎΠ»Ρ‡Π°Π½&r, Ρ‰ΠΎΠ± Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ Π΄ΠΎ 8 стосів стріл.", + "quests.combat_tips.flintlock_mechanism.title": "ΠšΡ€Π΅ΠΌβ€™ΡΠ½ΠΈΠΉ ΡƒΠ΄Π°Ρ€Π½ΠΈΠΉ ΠΌΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ", + "quests.combat_tips.flintlock_mechanism.subtitle": "Іскри Π·Π° ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈ!", + "quests.combat_tips.flintlock_mechanism.description": "Π¦Π΅ Ρ‚Π²Ρ–ΠΉ ΠΏΠ΅Ρ€ΡˆΠΈΠΉ &2ΠœΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ для Ρ€ΡƒΡˆΠ½ΠΈΡ†Ρ–&r, який Ρ” основним ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠΌ Π±Ρ–Π»ΡŒΡˆΠΎΡΡ‚Ρ– Π²ΠΈΠ΄Ρ–Π² Π²ΠΎΠ³Π½Π΅ΠΏΠ°Π»ΡŒΠ½ΠΎΡ— Π·Π±Ρ€ΠΎΡ—. &6ΠšΡ€Π΅ΠΌΡ–Π½Π½ΠΈΠΉ ΠΌΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ&r дозволяє створити Ρ‚Π²ΠΎΡ— ΠΏΠ΅Ρ€ΡˆΡ– Π΄Π²Ρ– Ρ€ΡƒΡˆΠ½ΠΈΡ†Ρ–! ΠŸΠ΅Ρ€ΡˆΠΎΡŽ Π· Π½ΠΈΡ… Ρ” &9ΠšΡ€Π΅ΠΌΡ–Π½Π½ΠΈΠΉ ΠΏΡ–ΡΡ‚ΠΎΠ»ΡŒ&r. \n\nКоли Ρ‚ΠΈ Π·Π΄ΠΎΠ±ΡƒΠ΄Π΅Ρˆ ΡΡ‚Π°Π»ΡŒ, змоТСш Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΠΈ Π·Π½Π°Ρ‡Π½ΠΎ дСшСвший &6ΠšΡ€Π΅ΠΌΡ–Π½Π½ΠΈΠΉ ΠΌΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ&r.", + "quests.combat_tips.flintlock_gun.title": "ΠšΡ€Π΅ΠΌΠ΅Π½Π΅Π²ΠΈΠΉ ΠŸΡ–ΡΡ‚ΠΎΠ»Π΅Ρ‚", + "quests.combat_tips.flintlock_gun.subtitle": "Π₯Π°ΠΏΠ°ΠΉ ΡΠ²ΠΈΠ½Π΅Ρ†ΡŒ!", + "quests.combat_tips.flintlock_gun.description": "Ось ΠΌΠΎΠΌΠ΅Π½Ρ‚, Π½Π° який Ρ‚ΠΈ Ρ‡Π΅ΠΊΠ°Π² β€” Ρ†Π΅ Ρ€ΡƒΡˆΠ½ΠΈΡ†Ρ. Π’ΠΎΠ½Π° Π½Π΅ Π½Π°Π΄Ρ‚ΠΎ Π΄ΠΎΠ±Ρ€Π°, Π°Π»Π΅ ΠΆ Ρ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³Ρ–Ρ— ΠΌΡƒΡΡΡ‚ΡŒ Ρ–Π· Ρ‡ΠΎΠ³ΠΎΡΡŒ починатися. Π’ΠΎΠ³Π½Π΅ΠΏΠ°Π»ΡŒΠ½Π° зброя ΠΌΠ°Ρ” Π±Π°Π³Π°Ρ‚ΠΎ ΠΏΠ΅Ρ€Π΅Π²Π°Π³ Ρƒ порівнянні Π· Ρ–Π½ΡˆΠΈΠΌΠΈ Π΄Π°Π»ΡŒΠ½ΠΎΠ±Ρ–ΠΉΠ½ΠΈΠΌΠΈ Π²ΠΈΠ΄Π°ΠΌΠΈ Π·Π±Ρ€ΠΎΡ—. ΠšΠΎΡ€ΠΈΡΠ½ΠΎ для Ρ‚Π΅Π±Π΅ Π·Π°Ρ€Π°Π· Ρ‚Π΅, Ρ‰ΠΎ &3Π»Π΅ΠΉΠ·ΠΈ&r Ρ‚Π° &2КлСйзи&r Π½Π΅ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±Π»ΠΎΠΊΡƒΠ²Π°Ρ‚ΠΈ ΠΊΡƒΠ»Ρ–. \n\nΠ©ΠΎΠ± дізнатися Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΡ€ΠΎ Ρ€ΠΎΠ±ΠΎΡ‚Ρƒ Ρ€ΡƒΡˆΠ½ΠΈΡ†ΡŒ TACZ, ΠΏΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒ Ρ€ΡƒΡˆΠ½ΠΈΡ†ΡŽ Π½Π° ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ Ρ†ΡŒΠΎΠ³ΠΎ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ завдання.", "quests.tasktype.checkmark": "ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ Ρ‚ΡƒΡ‚, Ρ‰ΠΎΠ± Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ Ρ†Π΅ завдання/квСст", "quests.tasktype.item.any": "Π‘ΡƒΠ΄ΡŒ-який Ρ‚ΠΈΠΏ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρƒ:", "quests.tasktype.lookat": "ΠŸΠΎΠ³Π»ΡΠ½ΡŒΡ‚Π΅ Π½Π°:", @@ -1602,7 +1951,7 @@ "quests.create_logistics": "Логістика Create", "quests.create_logistics.subtitle": "Управління складом для Ρ‡Π°ΠΉΠ½ΠΈΠΊΡ–Π²", "quests.create_logistics.introduction.title": "ΠšΠΌΡ–Ρ‚Π»ΠΈΠ²Ρ–ΡΡ‚ΡŒ Ρƒ Π΄Ρ–Ρ—", - "quests.create_logistics.introduction.desc": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ ΠΊΡ–Π»ΡŒΠΊΠ° машин Ρ–Π· &3Create&r, Ρ‚ΠΈ змоТСш суттєво ΠΏΠΎΠΊΡ€Π°Ρ‰ΠΈΡ‚ΠΈ транспортування Ρ‚Π° збСрігання ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π². А Π·Π³ΠΎΠ΄ΠΎΠΌ, ΠΊΠΎΠ»ΠΈ досягнСш &2Π•ΠΏΠΎΡ…ΠΈ Π’ΠΎΠ»ΡŒΡ‚Π°Ρ—ΠΊΠΈ&r, змоТСш Π½Π°Π²Ρ–Ρ‚ΡŒ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ процСси для Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ замовлСння ΠΏΠ΅Π²Π½ΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π°Π±ΠΎ Ρ—Ρ… ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†Ρ–Ρ— ΠΏΠΎ Π±Π°Π·Ρ–!\n\nΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ ця Π³Ρ–Π»ΠΊΠ° квСстів Π·Π΄Π΅Π±Ρ–Π»ΡŒΡˆΠΎΠ³ΠΎ ΡΡ‚ΠΎΡΡƒΡ”Ρ‚ΡŒΡΡ машин Ρ–Π· Create, Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΌ Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎΠΌ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— (ΠΎΠΊΡ€Ρ–ΠΌ самих квСстів) Π±ΡƒΠ΄Π΅ &5ΠžΠ±ΠΌΡ–Ρ€ΠΊΠΎΠ²ΡƒΠ²Π°Π½Π½Ρ&r машин β€” обов’язково ΠΏΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Ρ– записи.", + "quests.create_logistics.introduction.desc": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ ΠΊΡ–Π»ΡŒΠΊΠ° машин Ρ–Π· &3Create&r, Ρ‚ΠΈ змоТСш суттєво ΠΏΠΎΠΊΡ€Π°Ρ‰ΠΈΡ‚ΠΈ транспортування Ρ‚Π° збСрігання ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π². А Π·Π³ΠΎΠ΄ΠΎΠΌ, ΠΊΠΎΠ»ΠΈ досягнСш &2Π•ΠΏΠΎΡ…ΠΈ Π’ΠΎΠ»ΡŒΡ‚Π°Ρ—ΠΊΠΈ&r, змоТСш Π½Π°Π²Ρ–Ρ‚ΡŒ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ процСси для Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ замовлСння ΠΏΠ΅Π²Π½ΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π°Π±ΠΎ Ρ—Ρ… ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†Ρ–Ρ— ΠΏΠΎ Π±Π°Π·Ρ–!\n\nΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ ця Π³Ρ–Π»ΠΊΠ° квСстів Π·Π΄Π΅Π±Ρ–Π»ΡŒΡˆΠΎΠ³ΠΎ ΡΡ‚ΠΎΡΡƒΡ”Ρ‚ΡŒΡΡ машин Ρ–Π· Create, Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΌ Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎΠΌ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ—, ΠΎΠΊΡ€Ρ–ΠΌ самих квСстів, Π±ΡƒΠ΄Π΅ &5ΠžΠ±ΠΌΡ–Ρ€ΠΊΠΎΠ²ΡƒΠ²Π°Π½Π½Ρ&r машин β€” обов’язково ΠΏΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Ρ– записи.", "quests.create_logistics.packager.title": "ΠŸΠ°ΠΊΡƒΠ²Π°Π»ΡŒΠ½ΠΈΠΊ", "quests.create_logistics.packager.subtitle": "Π—Π°ΠΏΠ°ΠΊΡƒΠΉ усС", "quests.create_logistics.packager.desc.1": "Коли ΠΏΠΎΠ΄Π°Ρ”Ρ‚ΡŒΡΡ &cсигнал рСдстоуну&r, &3ΠŸΠ°ΠΊΡƒΠ²Π°Π»ΡŒΠ½ΠΈΠΊ&r Π·Π°ΠΏΠ°ΠΊΠΎΠ²ΡƒΡ” ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Π· Π±Π»ΠΎΠΊΠ°, Π΄ΠΎ якого Π²Ρ–Π½ ΠΏΡ€ΠΈΠΊΡ€Ρ–ΠΏΠ»Π΅Π½ΠΈΠΉ (Π±Ρ–ΠΊ ΠΏΡ–Π΄ΠΊΠ»ΡŽΡ‡Π΅Π½Π½Ρ ΠΌΠΎΠΆΠ½Π° Π·ΠΌΡ–Π½ΠΈΡ‚ΠΈ Π·Π° допомогою &5Π³Π°ΠΉΠΊΠΎΠ²ΠΎΠ³ΠΎ ΠΊΠ»ΡŽΡ‡Π°&r), Ρ– Π²ΠΈΠ΄Π°Ρ” Π°ΠΊΡƒΡ€Π°Ρ‚Π½Ρƒ ΠΊΠ°Ρ€Ρ‚ΠΎΠ½Π½Ρƒ ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΡƒ. КоТна Ρ‚Π°ΠΊΠ° ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΠ° ΠΌΠ°Ρ” обсяг Π½Π° 9 слотів, Ρ‚ΠΎΠΆ Ρ†Π΅ Ρ‡ΡƒΠ΄ΠΎΠ²ΠΈΠΉ спосіб ΠΏΠ΅Ρ€Π΅ΠΌΡ–Ρ‰ΡƒΠ²Π°Ρ‚ΠΈ Π±Π°Π³Π°Ρ‚ΠΎ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² одночасно. Π©ΠΎΠ± створити ΠŸΠ°ΠΊΡƒΠ²Π°Π»ΡŒΠ½ΠΈΠΊ, Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Ρ‡ΠΈΠΌΠ°Π»ΠΎ &dКованого Π·Π°Π»Ρ–Π·Π°&r Ρ‚Π° &dΠ•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½Π½Π° Ρ‚Ρ€ΡƒΠ±ΠΊΠ°&r, Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΊΡƒΠΏΠ° &dΠšΠ°Ρ€Ρ‚ΠΎΠ½Ρƒ&r (&dΠŸΠ°ΠΏΡ–Ρ€&r Ρ– &dКлСй&r).\n\nΠ—Π²Π΅Ρ€Π½ΠΈ ΡƒΠ²Π°Π³Ρƒ: після створСння ΠŸΠ°ΠΊΡƒΠ²Π°Π»ΡŒΠ½ΠΈΠΊ ΠΏΡ€Π°Ρ†ΡŽΡ” Π±Π΅Π· Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΎΠ³ΠΎ ΠΊΠ°Ρ€Ρ‚ΠΎΠ½Ρƒ, Ρ‚ΠΎΠΆ ΠΏΡ€ΠΎ обслуговування ΠΌΠΎΠΆΠ½Π° Π½Π΅ Ρ‚ΡƒΡ€Π±ΡƒΠ²Π°Ρ‚ΠΈΡΡŒ!", @@ -1616,7 +1965,7 @@ "quests.create_logistics.package_filter.desc": "Π£ΠΏΠ°ΠΊΠΎΠ²ΠΊΠΈ ΠΌΠΎΠΆΠ½Π° ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·ΡƒΠ²Π°Ρ‚ΠΈ Π·Π° допомогою ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΎΠ³ΠΎ &3Π€Ρ–Π»ΡŒΡ‚Ρ€Π° ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΎΠΊ&r, який ΠΏΡ€Π°Ρ†ΡŽΡ” Ρ‚Π°ΠΊ само, як Ρ– Π±ΡƒΠ΄ΡŒ-який Ρ–Π½ΡˆΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Ρƒ ΠΌΠ°ΡˆΠΈΠ½Π°Ρ… &3Create&r, Ρ‰ΠΎ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ΡƒΠ²Π°Π»ΡŒΠ½Ρ– слоти. ΠŸΡ€ΠΎΡΡ‚ΠΎ ΠΊΠ»Π°Ρ†Π½ΠΈ Пкм, Ρ‚Ρ€ΠΈΠΌΠ°ΡŽΡ‡ΠΈ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Ρƒ Ρ€ΡƒΡ†Ρ–, Ρ– Π²Π²Π΅Π΄ΠΈ адрСсу, яку ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ΡƒΠ²Π°Ρ‚ΠΈ β€” усі ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΠΈ Π· Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎΡŽ Π°Π΄Ρ€Π΅ΡΠΎΡŽ призначСння ΠΏΡ€ΠΎΡ…ΠΎΠ΄ΠΈΡ‚ΠΈΠΌΡƒΡ‚ΡŒ Π΄Π°Π»Ρ–. Π¦Π΅ особливо корисно для &3Π›Π°Ρ‚ΡƒΠ½Π½ΠΈΡ… Ρ‚ΡƒΠ½Π΅Π»Ρ–Π²&r, Ρ‰ΠΎΠ± твоя стрічкова ΠΌΠ΅Ρ€Π΅ΠΆΠ° ΠΌΠΎΠ³Π»Π° направляти ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΠΈ Π·Π° Π°Π΄Ρ€Π΅ΡΠΎΡŽ.", "quests.create_logistics.postbox.title": "ΠŸΠΎΡˆΡ‚ΠΎΠΌΠ°Ρ‚ΠΈ", "quests.create_logistics.postbox.subtitle": "Π’Π°ΠΌ лист", - "quests.create_logistics.postbox.desc.1": "&3ΠŸΠΎΡˆΡ‚ΠΎΠ²Ρ– ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠΈ&r Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†Ρ–Ρ— ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΎΠΊ Ρ‡Π΅Ρ€Π΅Π· &aΠ—Π°Π»Ρ–Π·Π½ΠΈΡ‡Π½Ρ– ΠΌΠ΅Ρ€Π΅ΠΆΡ–&r. Π‘ΠΏΠ΅Ρ€ΡˆΡƒ ΠΊΠ»Π°Ρ†Π½ΠΈ Пкм ΠΏΠΎ &3Π—Π°Π»Ρ–Π·Π½ΠΈΡ‡Π½Ρ–ΠΉ станції&r, Ρ‰ΠΎΠ± прив’язати ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΡƒ Π΄ΠΎ Π½Π΅Ρ—, Π° ΠΏΠΎΡ‚Ρ–ΠΌ розмісти ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΡƒ β€” Π· Ρ†ΡŒΠΎΠ³ΠΎ ΠΌΠΎΠΌΠ΅Π½Ρ‚Ρƒ всі потяги, Ρ‰ΠΎ Π·ΡƒΠΏΠΈΠ½ΡΡŽΡ‚ΡŒΡΡ Π½Π° Ρ†Ρ–ΠΉ станції (якщо ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠ° Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Π° Π² ΠΌΠ΅ΠΆΠ°Ρ… 4 Π±Π»ΠΎΠΊΡ–Π²), Π·ΠΌΠΎΠΆΡƒΡ‚ΡŒ Ρ–Π· нСю взаємодіяти.\n\nΠ’Π°ΠΊ само, як Ρ– &3Π–Π°Π±ΠΎΠΏΠΎΡ€Ρ‚ΠΈ&r, ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠΈ ΠΌΠΎΠΆΠ½Π° Π½Π°Π·ΠΈΠ²Π°Ρ‚ΠΈ. ΠŸΠΎΡ‚ΡΠ³ΠΈ, Ρ‰ΠΎ ΠΏΡ€ΠΎΡ—ΠΆΠ΄ΠΆΠ°ΡŽΡ‚ΡŒ ΠΏΠΎΠ²Π·, Π·Π°Π±ΠΈΡ€Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ усі ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΠΈ, чия адрСса призначСння &Π½Π΅ Π·Π±Ρ–Π³Π°Ρ”Ρ‚ΡŒΡΡ&r Π· назвою ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠΈ. ΠΠ°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ, якщо Π² потязі Ρ” ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΠΈ, адрСса яких &Π·Π±Ρ–Π³Π°Ρ”Ρ‚ΡŒΡΡ&r Π· назвою ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠΈ, Π²ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π°Π½Ρ– Π΄ΠΎ Ρ—Ρ— інвСнтаря.", + "quests.create_logistics.postbox.desc.1": "&3ΠŸΠΎΡˆΡ‚ΠΎΠ²Ρ– ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠΈ&r Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†Ρ–Ρ— ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΎΠΊ Ρ‡Π΅Ρ€Π΅Π· &aΠ—Π°Π»Ρ–Π·Π½ΠΈΡ‡Π½Ρ– ΠΌΠ΅Ρ€Π΅ΠΆΡ–&r. Π‘ΠΏΠ΅Ρ€ΡˆΡƒ ΠΊΠ»Π°Ρ†Π½ΠΈ Пкм ΠΏΠΎ &3Π—Π°Π»Ρ–Π·Π½ΠΈΡ‡Π½Ρ–ΠΉ станції&r, Ρ‰ΠΎΠ± прив’язати ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΡƒ Π΄ΠΎ Π½Π΅Ρ—, Π° ΠΏΠΎΡ‚Ρ–ΠΌ розмісти ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΡƒ β€” Π· Ρ†ΡŒΠΎΠ³ΠΎ ΠΌΠΎΠΌΠ΅Π½Ρ‚Ρƒ всі потяги, Ρ‰ΠΎ Π·ΡƒΠΏΠΈΠ½ΡΡŽΡ‚ΡŒΡΡ Π½Π° Ρ†Ρ–ΠΉ станції (якщо ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠ° Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Π° Π² ΠΌΠ΅ΠΆΠ°Ρ… 4 Π±Π»ΠΎΠΊΡ–Π²), Π·ΠΌΠΎΠΆΡƒΡ‚ΡŒ Ρ–Π· нСю взаємодіяти.\n\nΠ’Π°ΠΊ само, як Ρ– &3Π–Π°Π±ΠΎΠΏΠΎΡ€Ρ‚ΠΈ&r, ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠΈ ΠΌΠΎΠΆΠ½Π° Π½Π°Π·ΠΈΠ²Π°Ρ‚ΠΈ. ΠŸΠΎΡ‚ΡΠ³ΠΈ, Ρ‰ΠΎ ΠΏΡ€ΠΎΡ—ΠΆΠ΄ΠΆΠ°ΡŽΡ‚ΡŒ ΠΏΠΎΠ²Π·, Π·Π°Π±ΠΈΡ€Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ усі ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΠΈ, чия адрСса призначСння &Π½Π΅ Π·Π±Ρ–Π³Π°Ρ”Ρ‚ΡŒΡΡ&r Π· назвою ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠΈ. ΠΠ°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ, якщо Π² потязі Ρ” ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΠΈ, адрСса яких &oΠ·Π±Ρ–Π³Π°Ρ”Ρ‚ΡŒΡΡ&r Π· назвою ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠΈ, Π²ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π°Π½Ρ– Π΄ΠΎ Ρ—Ρ— інвСнтаря.", "quests.create_logistics.postbox.desc.2": "Π©Π΅ ΠΎΠ΄Π½Π° класна Ρ€Ρ–Ρ‡ Ρ‰ΠΎΠ΄ΠΎ &3ΠŸΠΎΡˆΡ‚ΠΎΠ²ΠΈΡ… ΡΠΊΡ€ΠΈΠ½ΡŒΠΎΠΊ&r: ΠΏΡ–Π΄ час Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ вилучСння Π· Π½ΠΈΡ… (Ρ‡Π΅Ρ€Π΅Π· ΠΆΠΎΠ»ΠΎΠ±ΠΈ, Π²ΠΎΡ€ΠΎΠ½ΠΊΠΈ Ρ‚ΠΎΡ‰ΠΎ) Π·Π°Π±ΠΈΡ€Π°ΡŽΡ‚ΡŒΡΡ лишС Ρ‚Ρ– пакування, чия адрСса &aΠ·Π±Ρ–Π³Π°Ρ”Ρ‚ΡŒΡΡ Π· назвою ΡΠΊΡ€ΠΈΠ½ΡŒΠΊΠΈ&r. Усі Ρ–Π½ΡˆΡ– Π·Π°Π»ΠΈΡˆΠ°ΡŽΡ‚ΡŒΡΡ всСрСдині, Ρ‰ΠΎΠ± ΠΏΡ–Π·Π½Ρ–ΡˆΠ΅ Π±ΡƒΡ‚ΠΈ Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΈΠΌΠΈ Ρƒ потяги.", "quests.create_logistics.nbt_handling.title": "Π ΠΎΠ·ΠΊΠ°ΠΆΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅", "quests.create_logistics.nbt_handling.subtitle": "Π†Π½ΡˆΠ° інформація ΠΏΡ€ΠΎ ΡƒΠΏΠ°ΠΊΠΎΠ²ΠΊΠΈ Ρ‚Π° адрСси", @@ -1719,6 +2068,263 @@ "quests.development.hull_zpm.title": "БтворСння Π½Π° &cZPM&r", "quests.development.hull_zpm.subtitle": "М'яка Ρ– ΠœΠΎΠΊΡ€Π° Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½Ρ–ΠΊΠ°", "quests.development.hull_zpm.desc": "Π¦Π΅ лінія &9ΠœΠΎΠΊΡ€ΠΎΡ—&r Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½Ρ–ΠΊΠΈ.\n\nΠ¦Π΅ Π±ΡƒΠ΄Π΅ Π½Π°ΠΉΠ±Ρ–Π»ΡŒΡˆΠΈΠΉ Π²ΠΈΠΊΠ»ΠΈΠΊ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†Ρ–Ρ— Ρƒ Ρ†ΡŒΠΎΠΌΡƒ ΠΌΠΎΠ΄ΠΏΠ°ΠΊΡƒ. Π‘Π°ΠΆΠ°ΡŽ успіху.", + "quests.extreme_voltage": "&5EV&r – Π•ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½Π° Π½Π°ΠΏΡ€ΡƒΠ³Π°", + "quests.extreme_voltage.subtitle": "Π”ΠΎΡΡΠ³Π½Ρ–Ρ‚ΡŒ ΠœΠ°Ρ€ΡΠ°, Π²Ρ–Π΄ΠΊΡ€ΠΈΠΉΡ‚Π΅ ядСрний ΠΏΠΎΠ΄Ρ–Π» Ρ– Π±ΡƒΠ΄ΡƒΠΉΡ‚Π΅ Π½ΠΎΠ²Ρ– Π³Ρ–Π³Π°Π½Ρ‚ΡΡŒΠΊΡ– Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΎΠ²Ρ– структури", + "quests.extreme_voltage.welcome_to_ev.title": "Π¦Π΅ Π΅ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½Π° Π½Π°ΠΏΡ€ΡƒΠ³Π°", + "quests.extreme_voltage.welcome_to_ev.subtitle": "Π’ΠΏΠ΅Ρ€Π΅Π΄ Π΄ΠΎ ядСрної Π΅Ρ€ΠΈ Π½Π° ΠœΠ°Ρ€ΡΡ–", + "quests.extreme_voltage.welcome_to_ev.desc.1": "Π’ΠΈ Π·Π±ΡƒΠ΄ΡƒΠ²Π°Π»ΠΈ Π½ΠΎΠ²Ρ– &6Ρ…Ρ–ΠΌΡ–Ρ‡Π½Ρ– Π»Ρ–Π½Ρ–Ρ—&r, Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΠΈΠ»ΠΈ ΠΏΠ΅Ρ€Π΅Π΄ΠΎΠ²Ρ– &bсплави&r Ρ– Π½Π°Π²Ρ–Ρ‚ΡŒ запустили &dΡ€Π°ΠΊΠ΅Ρ‚Ρƒ&r, Ρ‰ΠΎΠ± дістатися ΠœΡ–ΡΡΡ†Ρ. Π‘ΠΏΠΎΠ΄Ρ–Π²Π°Ρ”ΠΌΠΎΡΡŒ, Π²Π°ΠΌ сподобалася ця ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆ, Π°Π΄ΠΆΠ΅ Ρ‚Π΅ΠΏΠ΅Ρ€ усС станС Ρ‰Π΅ ΡΠΊΠ»Π°Π΄Π½Ρ–ΡˆΠΈΠΌ β€” ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Ρƒ ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ– Π½ΠΎΠ²Ρ– машини Ρ‚Π° Π²ΠΈΠΌΠΎΠ³Π»ΠΈΠ²Ρ– процСси.\n\nΠ£ &5Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– EV&r вашою головною ΠΌΠ΅Ρ‚ΠΎΡŽ Π±ΡƒΠ΄Π΅ створСння Π²Π°ΡˆΠΈΡ… ΠΏΠ΅Ρ€ΡˆΠΈΡ… схСм &1IV&r Ρ‚Π° &dLuV&r.", + "quests.extreme_voltage.welcome_to_ev.desc.2": "На вас Ρ‡Π΅ΠΊΠ°ΡŽΡ‚ΡŒ ΠΊΡ–Π»ΡŒΠΊΠ° ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΈΡ… Π²ΠΈΠΏΡ€ΠΎΠ±ΡƒΠ²Π°Π½ΡŒ:\n\nβ€’ Π—Π±ΡƒΠ΄ΡƒΠΉΡ‚Π΅ свій ΠΏΠ΅Ρ€ΡˆΡƒ &6Π”ΠΎΠΌΠ΅Π½Π½Ρƒ плавильню сплавів&r β€” ΡˆΠ²ΠΈΠ΄ΡˆΡƒ Π²Π΅Ρ€ΡΡ–ΡŽ Π•Π”ΠŸ, спСціалізовану для сплавів. Завдяки ΠΉΠΎΠΌΡƒ Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ створити свою ΠΏΠ΅Ρ€ΡˆΡƒ Π²Π΅Π»ΠΈΠΊΡƒ ΠΌΠ°ΡˆΠΈΠ½Ρƒ: &6Π’Π΅Π»ΠΈΠΊΡƒ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Ρƒ&r, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Ρƒ для Π»Ρ–Π½Ρ–Ρ— ядСрного ΠΏΠΎΠ΄Ρ–Π»Ρƒ. Π’Π°ΠΊΠΎΠΆ Ρ†Π΅ Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ ΠΌΠΎΠ΄Π΅Ρ€Π½Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΊΡƒ Ρ€ΡƒΠ΄ΠΈ Π·Π° допомогою ΡˆΠ²ΠΈΠ΄ΡˆΠΎΡ— Ρ‚Π΅Ρ€ΠΌΡ–Ρ‡Π½ΠΎΡ— Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΠΈ.\n\nβ€’ ОпaΠ½ΡƒΠΉΡ‚Π΅ Π½Π°ΡˆΡƒ ΠΎΡ€ΠΈΠ³Ρ–Π½Π°Π»ΡŒΠ½Ρƒ &eΠ²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Ρƒ Π»Ρ–Π½Ρ–ΡŽ&r β€” замикання всіх ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΈΡ… ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π² Π²ΠΈΠΏΡ€ΠΎΠ±ΡƒΡ” Ρ– Π²Π°ΡˆΡ– знання, Ρ– вашС тСрпіння.\n\nβ€’ ГотуйтСся Π»Π΅Ρ‚Ρ–Ρ‚ΠΈ Π½Π° &4ΠœΠ°Ρ€Ρ&r, Π΄Π΅ Π²ΠΈ станСтС &aΠΏΠΎΠ·Π°Π·Π΅ΠΌΠ½ΠΈΠΌ Ρ„Π΅Ρ€ΠΌΠ΅Ρ€ΠΎΠΌ&r, Π° Ρ‚Π°ΠΊΠΎΠΆ навчитСся використовувати &cсилу Π°Ρ‚ΠΎΠΌΠ°&r.\n\nΠ‘Π°ΠΆΠ°Ρ”ΠΌΠΎ успіху β€” самС Ρ‚ΡƒΡ‚ GregTech ΠΏΠΎΡ‡ΠΈΠ½Π°Ρ” ΠΏΠΎΠΊΠ°Π·ΡƒΠ²Π°Ρ‚ΠΈ свою ΡΠΏΡ€Π°Π²ΠΆΠ½ΡŽ Π³Π»ΠΈΠ±ΠΈΠ½Ρƒ!", + "quests.extreme_voltage.distillation_tower.title": "Дистиляційна Π²Π΅ΠΆΠ°", + "quests.extreme_voltage.distillation_tower.subtitle": "ПанС ΠŸΡ€Π΅Π·ΠΈΠ΄Π΅Π½Ρ‚Π΅, Ρ‰Π΅ ΠΎΠ΄Π½Π° дистиляційна Π²Π΅ΠΆΠ° з’явилася Π½Π° Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ‡ΠΎΠΌΡƒ ΠΌΠ°ΠΉΠ΄Π°Π½Ρ‡ΠΈΠΊΡƒ", + "quests.extreme_voltage.distillation_tower.desc.1": "&6Дистиляційна Π²Π΅ΠΆΠ°&r (Π”Π’) β€” Ρ†Π΅ прямС Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΎΠ²Π΅ оновлСння &6дистилятору&r. Π‘Ρ–Π»ΡŒΡˆΠ΅ Π½Π΅ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ ΠΎΠ±ΠΈΡ€Π°Ρ‚ΠΈ Π²ΠΈΡ…Ρ–Π΄Π½Ρ– ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ β€” Π”Π’ обробляє Ρ—Ρ… усі Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ, Π°Π»Π΅ Π· ΠΏΡ–Π΄Π²ΠΈΡ‰Π΅Π½ΠΈΠΌ СнСргоспоТиванням.\n\nЦя машина станС вашим основним інструмСнтом Ρƒ Π²ΡΡŒΠΎΠΌΡƒ, Ρ‰ΠΎ ΡΡ‚ΠΎΡΡƒΡ”Ρ‚ΡŒΡΡ &eΠΏΠ΅Ρ‚Ρ€ΠΎΡ…Ρ–ΠΌΡ–Ρ—&r Ρ‡ΠΈ &eΠΎΡ€Π³Π°Π½Ρ–Ρ‡Π½ΠΎΡ— дистиляції&r.", + "quests.extreme_voltage.distillation_tower.desc.2": "Π―ΠΊ Ρ– &6чиста ΠΊΡ–ΠΌΠ½Π°Ρ‚Π°&r, Π”Π’ ΠΌΠΎΠΆΠ½Π° Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π²ΠΈΡ‰ΠΎΡŽ, Π°Π»Π΅ Π½Π΅ ΡˆΠΈΡ€ΡˆΠΎΡŽ. ΠŸΠΎΡ‡ΠΈΠ½Π°ΡŽΡ‡ΠΈ Π· Π΄Ρ€ΡƒΠ³ΠΎΠ³ΠΎ ΡˆΠ°Ρ€Ρƒ, ΠΊΠΎΠΆΠ΅Π½ Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ Π²ΠΈΠΌΠ°Π³Π°Ρ” &9Π²ΠΈΡ…Ρ–Π΄Π½ΠΎΠ³ΠΎ люка&r Ρ– Π½Π°Π΄Π°Ρ” ΠΎΠ΄ΠΈΠ½ Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΠΉ слот для Π²ΠΈΡ…ΠΎΠ΄Ρƒ Ρ€Ρ–Π΄ΠΈΠ½ΠΈ; якщо Π½Π° Ρ€Ρ–Π²Π½Ρ– Π½Π΅ΠΌΠ°Ρ” Π²ΠΈΡ…Ρ–Π΄Π½ΠΎΠ³ΠΎ люка, Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Π° Ρ€Ρ–Π΄ΠΈΠ½Π° Π±ΡƒΠ΄Π΅ Π²Ρ‚Ρ€Π°Ρ‡Π΅Π½Π°. ΠŸΠΎΡ€Π°Ρ…ΡƒΠΉΡ‚Π΅ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π²ΠΈΡ…ΠΎΠ΄Ρ–Π² Π·Π° допомогою &dEMI&r, Ρ‰ΠΎΠ± Π·Π½Π°Ρ‚ΠΈ, ΡΠΊΡ–Π»ΡŒΠΊΠΈ ΡˆΠ°Ρ€Ρ–Π² Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ. Π―ΠΊ Π·Π°Π²ΠΆΠ΄ΠΈ, використовуйтС Π²ΠΊΠ»Π°Π΄ΠΊΡƒ ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎΠ³ΠΎ пСрСгляду Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΡƒ Π² &dEMI&r Ρ– Π½Π°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ Π½Π° Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊ, Ρ‰ΠΎΠ± ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ, Π΄Π΅ ΠΌΠΎΠΆΠ½Π° розмістити ΠΊΠΎΠΆΠ½Ρƒ частину.", + "quests.extreme_voltage.distillation_tower.desc.3": "&cΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°:&r Π‘ΡƒΠ΄ΡŒΡ‚Π΅ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½Ρ–: Π½Π΅ пСрСрозганяйтС Π”Π’ ΠΏΡ–Π΄ час Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° пального! Надмірний Ρ€ΠΎΠ·Π³Ρ–Π½ ΠΌΠΎΠΆΠ΅ Π·ΠΌΠ΅Π½ΡˆΠΈΡ‚ΠΈ Π·Π°Π³Π°Π»ΡŒΠ½Ρƒ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½Ρƒ Π²Ρ–Π΄Π΄Π°Ρ‡Ρƒ, особливо для дизСльного пального. Π—Ρ€ΠΎΠ±Ρ–Ρ‚ΡŒ Ρ€ΠΎΠ·Ρ€Π°Ρ…ΡƒΠ½ΠΊΠΈ Ρ‚Π° Π΄Π²Ρ–Ρ‡Ρ– Ρ—Ρ… ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€Ρ‚Π΅.", + "quests.extreme_voltage.cracker.subtitle": "Π’ΠΈ ΠΌΠ΅Π½Π΅ Π΄ΠΎ сліз ΡΠΌΡ–ΡˆΠΈΡˆ", + "quests.extreme_voltage.cracker.desc": "&3ΠšΡ€Π΅ΠΊΠ΅Ρ€&r β€” Ρ†Π΅ Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊ, створСний Π²ΠΈΠΊΠ»ΡŽΡ‡Π½ΠΎ для ΠΊΡ€Π΅ΠΊΡ–Π½Π³Ρƒ Ρ€Ρ–Π΄ΠΈΠ½. Π’Ρ–Π½ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” всі Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ &3Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r для ΠΊΡ€Π΅ΠΊΡ–Π½Π³Ρƒ, Π°Π»Π΅ Ρ” &6Π±Π΅Π·Π²Ρ‚Ρ€Π°Ρ‚Π½ΠΈΠΌ&r.\n\nΠ¦Π΅ Ρ‡ΡƒΠ΄ΠΎΠ²ΠΈΠΉ спосіб Π·Π°ΠΎΡ‰Π°Π΄ΠΈΡ‚ΠΈ Π±Π°Π³Π°Ρ‚ΠΎ ΠΏΠ°Π»ΠΈΠ²Π° Π² довгостроковій пСрспСктиві!\n\nΠ’ΠΈΡ‰Ρ– Ρ€Ρ–Π²Π½Ρ– ΠΊΠΎΡ‚ΡƒΡˆΠΎΠΊ Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡŽΡ‚ΡŒ Π½Π΅Π²Π΅Π»ΠΈΠΊΡƒ Π·Π½ΠΈΠΆΠΊΡƒ Π½Π° споТивання Π΅Π½Π΅Ρ€Π³Ρ–Ρ— β€” Π΄ΠΎ 70%% Π· Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΌΠΈ доступними ΠΊΠΎΡ‚ΡƒΡˆΠΊΠ°ΠΌΠΈ.", + "quests.extreme_voltage.ev_components.title": "ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ Π΅ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½ΠΎΡ— Π½Π°ΠΏΡ€ΡƒΠ³ΠΈ", + "quests.extreme_voltage.ev_components.subtitle": "\"ВСсСлощі\" Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ Π·Π°ΠΊΡ–Π½Ρ‡Π°Ρ‚ΡŒΡΡ", + "quests.extreme_voltage.ev_components.desc": "&7На Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– Ρ‚ΠΈ Π²ΠΆΠ΅ ΠΌΠ°Ρ”Ρˆ Π·Π²ΠΈΠΊΠ½ΡƒΡ‚ΠΈ Π΄ΠΎ ΡˆΠ°Π±Π»ΠΎΠ½Ρƒ: Π· ΠΊΠΎΠΆΠ½ΠΈΠΌ Π½ΠΎΠ²ΠΈΠΌ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΌ Ρ€Ρ–Π²Π½Π΅ΠΌ Π·β€™ΡΠ²Π»ΡΡ”Ρ‚ΡŒΡΡ Π½ΠΎΠ²Π° партія ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π².&r\n\nΠ Ρ–Π²Π΅Π½ΡŒ &5EV&r ΠΌΠ°Ρ” ΠΊΡ–Π»ΡŒΠΊΠ° особливостСй β€” ΠΏΠΎ-ΠΏΠ΅Ρ€ΡˆΠ΅, &eНСодим&r. МоТливо, Ρ‚ΠΈ Π²ΠΆΠ΅ ΠΌΠ°Ρ”Ρˆ Ρ‚Ρ€ΠΎΡ…ΠΈ Π· ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½Ρ–Ρ… ΡˆΠ°Ρ…Ρ‚Π°Ρ€ΡΡŒΠΊΠΈΡ… Π²ΠΈΠ»Π°Π·ΠΎΠΊ, Π°Π»Π΅ Ρ‚Π°ΠΊΠΎΠΆ знайдСш ΠΉΠΎΠ³ΠΎ Ρƒ Π²Π΅Π»ΠΈΠΊΠΈΡ… ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚ΡΡ… ΠΏΡ€ΠΈ ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±Ρ†Ρ– &eΠœΠΎΠ½Π°Ρ†ΠΈΡ‚Π½ΠΎΡ— Ρ€ΡƒΠ΄ΠΈ&r.\n\nПо-Π΄Ρ€ΡƒΠ³Π΅, для сСнсорів Ρ– Π²ΠΈΠΏΡ€ΠΎΠΌΡ–Π½ΡŽΠ²Π°Ρ‡Ρ–Π² ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– &bΠšΡ€Ρ–ΠΎΠ³Π΅Π½Ρ–Π·ΠΎΠ²Π°Π½Ρ– ΠΏΠ΅Ρ€Π»ΠΈ Ρ„Π»ΡŽΡ–ΠΊΡΡƒ&r. Π‘ΠΏΠΎΠ΄Ρ–Π²Π°ΡŽΡΡŒ, твоя інфраструктура Π½Π° &dΠœΡ–ΡΡΡ†Ρ–&r Π²ΠΆΠ΅ ΠΏΡ€Π°Ρ†ΡŽΡ” Ρ– ΠΌΠΎΠΆΠ΅ Ρ—Ρ… Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎ постачати.\n\nΠ† Π½Π°Ρ€Π΅ΡˆΡ‚Ρ–, для ΠΌΠΎΡ‚ΠΎΡ€Ρ–Π² ΠΏΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ Π΄Ρ€Ρ–Ρ‚ Π· ΠΊΠ°Π½Ρ‚Π°Π»Ρƒ. Π―ΠΊΡ‰ΠΎ Ρ‚ΠΈ сумлінно оновлював свій Π•Π”ΠŸ, Ρ—Ρ… виготовлСння ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ Π·Π½Π°Ρ‡Π½ΠΎ швидшим, Π½Ρ–ΠΆ Π½Π° Ρ€Ρ–Π²Π½Ρ– MV (Ρ– Ρ‚ΠΈ моТСш ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ старі ΠΊΠΎΡ‚ΡƒΡˆΠΊΠΈ!), Π°Π»Π΅ Плавильник сплавів Π·Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ Ρ†Π΅ Ρ‰Π΅ швидшС.", + "quests.extreme_voltage.t2_rocket.title": "Π Π°ΠΊΠ΅Ρ‚Π° 2: Π’ΠΈΡ‚Π°Π½ΠΎΠ²Π° Π±Ρƒ‘Π°Π»Ρƒ", + "quests.extreme_voltage.t2_rocket.subtitle": "Π¦Π΅ΠΉ β€” Ρ„Ρ–ΠΎΠ»Π΅Ρ‚ΠΎΠ²ΠΈΠΉ", + "quests.extreme_voltage.t2_rocket.desc": "Цю Π½ΠΎΠ²Ρƒ Ρ€Π°ΠΊΠ΅Ρ‚Ρƒ Π½Π΅ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ Π½Π°Π΄Ρ‚ΠΎ складно Π·Ρ–Π±Ρ€Π°Ρ‚ΠΈ, Π°Π»Π΅ Ρ‚ΠΈ ΠΏΠΎΠΌΡ–Ρ‚ΠΈΡˆ явнС зростання Π²ΠΈΡ‚Ρ€Π°Ρ‚ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π² порівняно Π· ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎΡŽ модСллю.\n\nΠžΠ½ΠΎΠ²Π»Π΅Π½Ρ– &6Π Π°ΠΊΠ΅Ρ‚Π½Ρ– сплави&r Ρ‚Π΅ΠΏΠ΅Ρ€ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ як &bΠ”ΠΈΡΡ‚ΠΈΠ»ΡŒΠΎΠ²Π°Π½Ρƒ Π²ΠΎΠ΄Ρƒ&r, Ρ‚Π°ΠΊ Ρ– &bΠšΡ€Ρ–ΠΎΠ³Π΅Π½Ρ–Π·ΠΎΠ²Π°Π½ΠΈΠΉ Ρ„Π»ΡŽΡ–ΠΊΡ&r для охолодТСння.\n\nΠŸΠ΅Ρ€Π΅ΠΊΠΎΠ½Π°ΠΉΡΡ, Ρ‰ΠΎ твоя Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ‡Π° лінія &eΠ’ΠΈΡ‚Π°Π½Ρƒ&r ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π½Π°Π»Π°Π³ΠΎΠ΄ΠΆΠ΅Π½Π°, Π°Π΄ΠΆΠ΅ Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ ΠΉΠΎΠ³ΠΎ Π΄ΡƒΠΆΠ΅ Π±Π°Π³Π°Ρ‚ΠΎ! Π‘Π΅Π·ΠΏΠ΅Ρ€Π΅Ρ€Π²Π½Π΅ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ Π·Π΅ΠΊΠΎΠ½ΠΎΠΌΠΈΡ‚ΡŒ Ρ‚ΠΎΠ±Ρ– Ρ‡ΠΈΠΌΠ°Π»ΠΎ Π½Π΅Ρ€Π²Ρ–Π² Ρƒ ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½ΡŒΠΎΠΌΡƒ.", + "quests.extreme_voltage.mars.title": "Π― Π½Π° &4ΠœΠ°Ρ€ΡΡ–&r!", + "quests.extreme_voltage.mars.subtitle": "Π§Π΅Ρ€Π²ΠΎΠ½Π° ΠΏΠ»Π°Π½Π΅Ρ‚Π°", + "quests.extreme_voltage.mars.desc.1": "ΠŸΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ висадитися Π½Π° &4ΠœΠ°Ρ€Ρ&r, Π²Π°Ρ€Ρ‚ΠΎ пам’ятати ΠΊΡ–Π»ΡŒΠΊΠ° Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΡ… Ρ€Π΅Ρ‡Π΅ΠΉ. \n\nΠŸΠΎβ€‘ΠΏΠ΅Ρ€ΡˆΠ΅, як Ρ– Π½Π° ΠœΡ–ΡΡΡ†Ρ–, Π½Π° &4ΠœΠ°Ρ€ΡΡ–&r Ρ‚Π°ΠΊΠΎΠΆ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π²ΠΎΡ€ΠΎΠΆΡ– істоти Π½Π° ΠΏΠΎΠ²Π΅Ρ€Ρ…Π½Ρ–. Π―ΠΊΡ‰ΠΎ Π²ΠΈ Ρ‰Π΅ Π½Π΅ з’ясували, як Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ‚Π°ΠΊ, Ρ‰ΠΎΠ± ваш ΠšΠΎΡΠΌΡ–Ρ‡Π½ΠΈΠΉ ΠΊΠΎΡΡ‚ΡŽΠΌ залишався Π· Π²Π°ΠΌΠΈ після смСрті, Π°Π±ΠΎ Π½Π΅ інвСстували Π² Π½ΠΎΠ²Ρƒ Π·Π±Ρ€ΠΎΡŽ рівня EV, Π²Π°ΠΌ Π±ΡƒΠ΄Π΅ Π½Π΅Π»Π΅Π³ΠΊΠΎ. \n\nΠŸΠ»Π°Π½Π΅Ρ‚Π° Π·Π΄Π΅Π±Ρ–Π»ΡŒΡˆΠΎΠ³ΠΎ Ρ” &eΠΏΡƒΡΡ‚Π΅Π»ΡŒΠ½ΠΈΠΌ світом&r, усіяним Β«&aостровами&rΒ», Π΄Π΅ ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ &bΠ²ΠΎΠ΄Ρƒ&r, Π±Π°Π³Π°Ρ‚Ρƒ Ρ„Π°ΡƒΠ½Ρƒ Ρ‚Π° Π·Π½Π°Ρ‡Π½ΠΎ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½Ρ–ΡˆΡ– місця для ΠΏΠΎΠ±ΡƒΠ΄ΠΎΠ²ΠΈ ΠΏΠ΅Ρ€ΡˆΠΎΡ— Π±Π°Π·ΠΈ. \nΠ’ΠΈΠΌ часом Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚Π° пустСля Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½Π°, якщо Π½Π΅ стСТити Π·Π° ΠΊΠΎΠΆΠ½ΠΈΠΌ ΠΊΡ€ΠΎΠΊΠΎΠΌ, Π°Π»Π΅ самС Ρ‚Π°ΠΌ ΠΌΡ–ΡΡ‚ΡΡ‚ΡŒΡΡ ΠΉ Ρ–Π½ΡˆΡ– Π²Π°ΠΆΠ»ΠΈΠ²Ρ– рСсурси!", + "quests.extreme_voltage.mars.desc.2": "Усі &bΠΆΠΈΠ»ΠΊΠΈ Ρ€Ρ–Π΄ΠΈΠ½&r Ρ€ΠΎΠ·ΠΊΠΈΠ΄Π°Π½Ρ– ΠΏΠΎ Π²ΡΡŒΠΎΠΌΡƒ ΠœΠ°Ρ€ΡΡƒ, Π·Π° винятком &eΠ’Π°ΠΆΠΊΠΎΡ— Π°ΠΌΡ–Π°Ρ‡Π½ΠΎΡ— Π²ΠΎΠ΄ΠΈ&r, яку ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ лишС ΠΏΠΎΠ·Π° ΠΏΡƒΡΡ‚Π΅Π»Π΅ΡŽ. Π¦Π΅ Ρ‰Π΅ ΠΎΠ΄Π½Π° Π²Π°Π³ΠΎΠΌΠ° ΠΏΡ€ΠΈΡ‡ΠΈΠ½Π° ΠΎΠ±Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Π±Π°Π·Ρƒ самС Ρ‚Π°ΠΌ. \n\nΠ©ΠΎΠ΄ΠΎ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—, &4ΠœΠ°Ρ€Ρ&r ΡΠΏΠ΅Ρ€ΡˆΡƒ Π½Π΅ Π±ΡƒΠ΄Π΅ Π΄ΠΎ вас ΠΏΡ€ΠΈΡ…ΠΈΠ»ΡŒΠ½ΠΈΠΌ. \n\nМайТС ΠΊΠΎΠΆΠ΅Π½ Π·Π²ΠΈΡ‡Π½ΠΈΠΉ &6ΠΌΠ΅Ρ‚ΠΎΠ΄ Π³Π΅Π½Π΅Ρ€Π°Ρ†Ρ–Ρ— Π΅Π½Π΅Ρ€Π³Ρ–Ρ—&r Π½Π° Ρ†Ρ–ΠΉ ΠΏΠ»Π°Π½Π΅Ρ‚Ρ– Π²Ρ–Π΄ΠΊΠ»ΡŽΡ‡Π΅Π½ΠΈΠΉ Π°Π±ΠΎ ΠΌΠ°Ρ€Π½ΠΈΠΉ, Ρ‚ΠΎΠΆ Π²Π°ΠΌ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ ΠΌΠ°ΠΉΠΆΠ΅ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ покладатися Π½Π° &cΠ―Π΄Π΅Ρ€Π½ΠΈΠΉ ΠΏΠΎΠ΄Ρ–Π»&r для ТивлСння своєї Π±Π°Π·ΠΈ. \n\nНа самому ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”Ρ‚ΡŒΡΡ взяти Ρ–Π· собою ΠΊΡ–Π»ΡŒΠΊΠ° &bзарядТСних Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ&r, Π½Π°ΠΏΡ€ΠΈΠΊΠ»Π°Π΄ &bΠšΡ€ΠΈΡΡ‚Π°Π»ΠΈ Π›Π°ΠΏΠΎΡ‚Ρ€ΠΎΠ½Ρƒ&r, Ρ‰ΠΎΠ± Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ, Π° Π΄Π°Π»Ρ– Π²ΠΆΠ΅ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΠΈΡ‚ΠΈ Π΄ΠΎ встановлСння ΠŸΠ°Π»ΠΈΠ²Π½ΠΈΡ… стриТнів Ρ–Π· Π’ΠΎΡ€Ρ–ΡŽ. \n\nДосягнСння Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΎΡ— ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½ΠΎΡΡ‚Ρ– Π½Π° ΠœΠ°Ρ€ΡΡ– ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅ часу Ρ‚Π° Π·ΡƒΡΠΈΠ»ΡŒ, Π°Π»Π΅ ΠΊΠΎΠ»ΠΈ Π²Π°ΡˆΡ– систСми ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ Π±Π΅Π· Π·Π±ΠΎΡ—Π², Π²ΠΈ Π²Ρ–Π΄Ρ‡ΡƒΡ”Ρ‚Π΅, Ρ‰ΠΎ &9Π½Π΅ΠΎΠ±ΠΌΠ΅ΠΆΠ΅Π½Π° СнСргія&r Π±ΡƒΠΊΠ²Π°Π»ΡŒΠ½ΠΎ Ρƒ вас Π½Π° Π΄ΠΎΠ»ΠΎΠ½Ρ–.", + "quests.extreme_voltage.mars.desc.3": "Π† Ρ‰Π΅ ΠΎΠ΄Π½Π° ΠΏΠΎΡ€Π°Π΄Π°: Π½Π΅ Π²Π±ΠΈΠ²Π°ΠΉΡ‚Π΅ всС, Ρ‰ΠΎ Π±Π°Ρ‡ΠΈΡ‚Π΅. ДСяких &aΡ‚Π²Π°Ρ€ΠΈΠ½&r ΠΌΠΎΠΆΠ½Π° &fΡ€ΠΎΠ·Π²ΠΎΠ΄ΠΈΡ‚ΠΈ&r, Ρ– Π²ΠΎΠ½ΠΈ Π²Π°ΠΌ обов’язково Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ ΠΏΡ–Π·Π½Ρ–ΡˆΠ΅ Ρƒ прогрСсі. \n\nΠžΠ±ΠΎΠ²β€™ΡΠ·ΠΊΠΎΠ²ΠΎ ΠΏΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒΡ‚Π΅ Ρ€ΠΎΠ·Π΄Ρ–Π» &aВиТивання Π² космосі&r для Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΡ… ΠΏΠΎΡ€Π°Π΄, пов’язаних Ρ–Π· ΠœΠ°Ρ€ΡΠΎΠΌ! \n\nΠ‘ΡƒΠ΄ΡŒΡ‚Π΅ пильними, ΠΏΠ»Π°Π½ΡƒΠΉΡ‚Π΅ Π½Π°ΠΏΠ΅Ρ€Π΅Π΄ β€” Ρ– ΠœΠ°Ρ€Ρ Π²ΠΈΠ½Π°Π³ΠΎΡ€ΠΎΠ΄ΠΈΡ‚ΡŒ Π²Π°ΡˆΡƒ Π²Ρ–Π΄Π²Π°Π³Ρƒ.", + "quests.extreme_voltage.mars.task": "Висадка Π½Π° ΠœΠ°Ρ€Ρ", + "quests.extreme_voltage.nuclear_fuel_factory.title": "Π€Π°Π±Ρ€ΠΈΠΊΠ° ядСрного ΠΏΠ°Π»ΠΈΠ²Π°", + "quests.extreme_voltage.nuclear_fuel_factory.subtitle": "Гарячий ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ", + "quests.extreme_voltage.nuclear_fuel_factory.desc": "&6Π—Π°Π²ΠΎΠ΄ ядСрного ΠΏΠ°Π»ΠΈΠ²Π°&r ΠΌΠ°Ρ” лишС ΠΎΠ΄Π½Ρƒ ΠΌΠ΅Ρ‚Ρƒ: Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΡ… стриТнів для вашого &cΡ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° ΠΏΠΎΠ΄Ρ–Π»Ρƒ&r.\n\nΠ’Ρ–Π½ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” &9ΠΏΠ°Ρ€Π°Π»Π΅Π»ΡŒΠ½Ρ– люки&r, які Π²ΠΈ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ”Ρ‚Π΅ Π½Π΅Π·Π°Π±Π°Ρ€ΠΎΠΌ, Π°Π»Π΅ Π½Π°Ρ€Π°Π·Ρ– Π²ΠΎΠ½ΠΈ Π½Π΅ Ρ” обов’язковими. Π—Π° Ρ„ΡƒΠ½ΠΊΡ†Ρ–ΠΎΠ½Π°Π»ΠΎΠΌ Π²Ρ–Π½ ΠΏΡ€Π°Ρ†ΡŽΡ” ΠΏΠΎΠ΄Ρ–Π±Π½ΠΎ Π΄ΠΎ ΠΏΡ–Ρ€ΠΎΠ»Ρ–Π·Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–: Ρ‰ΠΎ &eΠΊΡ€Π°Ρ‰Ρ– ΠΊΠΎΡ‚ΡƒΡˆΠΊΠΈ&r Π²ΠΈ встановитС, Ρ‚ΠΎ швидшС Π²ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒΡΡ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ.\n\nΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΡ… стриТнів Ρ” Ρ– &cΠΏΠΎΠ²Ρ–Π»ΡŒΠ½ΠΈΠΌ&r, Ρ– &cΠ΄ΠΎΡ€ΠΎΠ³ΠΈΠΌ&r, ΠΌΠΈ Π½Π°ΠΏΠΎΠ»Π΅Π³Π»ΠΈΠ²ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ використовувати &aΠΊΠΎΡ‚ΡƒΡˆΠΊΠΈ Π½Π°ΠΉΠ²ΠΈΡ‰ΠΎΠ³ΠΎ рівня&r. НС Π²ΠΈΡ‚Ρ€Π°Ρ‡Π°ΠΉΡ‚Π΅ час Π½Π° ΠΌΠ΅Π»ΡŒΡ…Ρ–ΠΎΡ€ΠΎΠ²Ρ– β€” Ρ†ΠΈΠΌ Π²ΠΈ лишС ΠΎΠ±ΠΌΠ΅ΠΆΠΈΡ‚Π΅ власний прогрСс.", + "quests.extreme_voltage.heavy_water.title": "Π’Π°ΠΆΠΊΠ° Π²ΠΎΠ΄Π°", + "quests.extreme_voltage.heavy_water.subtitle": "Π’ΠΎΠ΄Π° для Ρ…Π°Ρ€Π΄ΠΊΠΎΡ€Ρƒ", + "quests.extreme_voltage.heavy_water.desc": "Π©ΠΎΠ± запустити ваш &cΡ€Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΏΠΎΠ΄Ρ–Π»Ρƒ&r, Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½Π΅ постачання &bΠ²Π°ΠΆΠΊΠΎΡ— Π²ΠΎΠ΄ΠΈ&r, Ρ– Π·Π½Π°ΠΉΡ‚ΠΈ Ρ—Ρ— ΠΌΠΎΠΆΠ½Π° лишС Π² ΠΎΠ΄Π½ΠΎΠΌΡƒ місці.\n\nΠ’ΠΎΠ½Π° Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Π° Ρƒ &aΠ³Π»ΠΈΠ±ΠΎΠΊΠΈΡ… ΠΆΠΈΠ»Π°Ρ… Ρ€Ρ–Π΄ΠΈΠ½&r, Ρ‰ΠΎ Ρ‚Ρ€Π°ΠΏΠ»ΡΡŽΡ‚ΡŒΡΡ Π²ΠΈΠΊΠ»ΡŽΡ‡Π½ΠΎ ΠΏΡ–Π΄ &aΠ·Π΅Π»Π΅Π½ΠΈΠΌΠΈ островами&r ΠœΠ°Ρ€ΡΠ°. Π’Ρ–Π·ΡŒΠΌΡ–Ρ‚ΡŒ свій &6Ρ€ΡƒΠ΄Π½ΠΈΠΉ Ρ€ΠΎΠ·Π²Ρ–Π΄Π½ΠΈΠΊ&r, ΠΏΠ΅Ρ€Π΅ΠΌΠΊΠ½Ρ–Ρ‚ΡŒ ΠΉΠΎΠ³ΠΎ Π² &bΡ€Π΅ΠΆΠΈΠΌ Ρ€Ρ–Π΄ΠΈΠ½&r Ρ– ΠΏΠΎΡ‡ΠΈΠ½Π°ΠΉΡ‚Π΅ сканування.\n\nΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ &bΠ²Π°ΠΆΠΊΠΎΡ— Π²ΠΎΠ΄ΠΈ&r, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΎΡ— для Π±Π΅Π·ΠΏΠ΅Ρ€Π΅Ρ€Π²Π½ΠΎΡ— Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°, Ρ” Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½ΠΎΡŽ, Π²Π°ΠΌ Π²Π°Ρ€Ρ‚ΠΎ сСрйозно розглянути Ρ–Π½Π²Π΅ΡΡ‚ΠΈΡ†Ρ–ΡŽ Ρƒ &6Π’Π΅Π»ΠΈΠΊΡƒ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Ρƒ&r, Ρ‰ΠΎΠ± виробляти Ρ—Ρ— самостійно.\n\nΠ’ΡΡ‚Π°Π½ΠΎΠ²Ρ–Ρ‚ΡŒ &516A EV Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк&r β€” Ρ– Π²ΠΈ Π±ΡƒΠ΄Π΅Ρ‚Π΅ Π³ΠΎΡ‚ΠΎΠ²Ρ– Π΄ΠΎ ΡΠΏΡ€Π°Π²ΠΆΠ½ΡŒΠΎΠ³ΠΎ масового Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π°, якС Π³Π°Ρ€Π°Π½Ρ‚ΡƒΡ”, Ρ‰ΠΎ ваш Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ Π·Π°Π»ΠΈΡˆΠΈΡ‚ΡŒΡΡ Π±Π΅Π· охолодТСння.\n\nНадійнС охолодТСння ΠΎΠ·Π½Π°Ρ‡Π°Ρ” Π½Π°Π΄Ρ–ΠΉΠ½Ρƒ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ β€” Π±ΡƒΠ΄ΡƒΠΉΡ‚Π΅ Π· Ρ€ΠΎΠ·ΡƒΠΌΠΎΠΌ!", + "quests.extreme_voltage.nuclear_turbine.title": "Π―Π΄Π΅Ρ€Π½Π° ΠΏΠ°Ρ€ΠΎΠ²Π° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°", + "quests.extreme_voltage.nuclear_turbine.subtitle": "ΠŸΠ°Ρ€ΠΎΠ²Π° СнСргія Π·Π½ΠΎΠ²Ρƒ Π² Π³Ρ€Ρ–, ΠΊΡ€ΠΈΡ…Ρ–Ρ‚ΠΊΠΎ", + "quests.extreme_voltage.nuclear_turbine.desc": "Завдяки Π―Π΄Π΅Ρ€Π½ΠΎΠΌΡƒ ΠΏΠΎΠ΄Ρ–Π»Ρƒ Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ”Ρ‚Π΅ доступ Π΄ΠΎ Π°Π±ΡΠΎΠ»ΡŽΡ‚Π½ΠΎ Π½ΠΎΠ²ΠΎΡ— &6Π‘ΠΏΠ΅Ρ†Ρ–Π°Π»Ρ–Π·ΠΎΠ²Π°Π½ΠΎΡ— Π’ΡƒΡ€Π±Ρ–Π½ΠΈ&r! (Π—Π²ΠΈΡ‡Π°ΠΉΠ½Π° Π’Π΅Π»ΠΈΠΊΠ° ΠŸΠ°Ρ€ΠΎΠ²Π° Π’ΡƒΡ€Π±Ρ–Π½Π° ΠΌΠΎΠΆΠ΅ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ лишС Π·Ρ– Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎΡŽ ΠΏΠ°Ρ€ΠΎΡŽ.) \n\nΠ’ΠΎΠ½Π° ΠΏΡ€Π°Ρ†ΡŽΡ” Ρ‚Π°ΠΊ само, як Ρ– ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½Ρ– Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΈ, Π°Π»Π΅, ΠΏΠΎΠ΄Ρ–Π±Π½ΠΎ Π΄ΠΎ Π“Π°Π·ΠΎΠ²ΠΎΡ— Π’ΡƒΡ€Π±Ρ–Π½ΠΈ, Π²ΠΈΠΌΠ°Π³Π°Ρ” Ρ‰ΠΎΠ½Π°ΠΉΠΌΠ΅Π½ΡˆΠ΅ &5EV Π’Ρ€ΠΈΠΌΠ°Ρ‡Π° Ρ€ΠΎΡ‚ΠΎΡ€Π°&r для Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ. \n\nΠšΠΎΡ‚ΡƒΡˆΠΊΠΈ всСрСдині Ρ†Ρ–Ρ”Ρ— Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ Π· &7ΠšΡƒΠΏΡ€ΠΎΠ½Ρ–ΠΊΠ΅Π»ΡŽ&r, Ρ– Π²ΠΎΠ½ΠΈ ΠΆΠΎΠ΄Π½ΠΈΠΌ Ρ‡ΠΈΠ½ΠΎΠΌ Π½Π΅ Π²ΠΏΠ»ΠΈΠ²Π°ΡŽΡ‚ΡŒ Π½Π° ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ (Π°Π»Π΅, Ρ‚Ρ€Π΅Π±Π° Π²ΠΈΠ·Π½Π°Ρ‚ΠΈ, Π²ΠΈΠ³Π»ΡΠ΄Π°ΡŽΡ‚ΡŒ Π΄ΠΎΠ²ΠΎΠ»Ρ– ΡΡ‚ΠΈΠ»ΡŒΠ½ΠΎ). \n\nΠ£ Ρ†ΡŒΠΎΠΌΡƒ Π·Π°Π²Π΄Π°Π½Π½Ρ– ΠΌΠΈ ΠΏΡ€ΠΎΠΏΠΎΠ½ΡƒΡ”ΠΌΠΎ Π΄Π²Π° &aΠ ΠΎΡ‚ΠΎΡ€ΠΈ&r, які Π΄ΠΎΠ±Ρ€Π΅ ΠΏΡ–Π΄Ρ…ΠΎΠ΄ΡΡ‚ΡŒ для Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΈ Π½Π° Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ–, Π°Π»Π΅ сміливо СкспСримСнтуйтС ΠΉ використовуйтС Π±ΡƒΠ΄ΡŒβ€‘ΡΠΊΠΈΠΉ &bΡ€ΠΎΡ‚ΠΎΡ€&r, Ρ‰ΠΎ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π΅ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” Π²Π°ΡˆΡ–ΠΉ Π·Π±Ρ–Ρ€Ρ†Ρ–.", + "quests.extreme_voltage.reactor_components.title": "ΠšΠ΅Ρ€ΡƒΠ²Π°Π½Π½Ρ тСпловиділСнням Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°", + "quests.extreme_voltage.reactor_components.subtitle": "Активні Ρ‚Π° пасивні способи охолодТСння Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°", + "quests.extreme_voltage.reactor_components.desc.1": "ΠžΠ΄Π½Ρ–Ρ”ΡŽ Π· Π½Π°ΠΉΡ†Ρ–ΠΊΠ°Π²Ρ–ΡˆΠΈΡ… особливостСй Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° ΠΏΠΎΠ΄Ρ–Π»Ρƒ Ρ” ΠΉΠΎΠ³ΠΎ Π·Π΄Π°Ρ‚Π½Ρ–ΡΡ‚ΡŒ ΠΌΠ°Ρ‚ΠΈ Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Ρ– Π±Π»ΠΎΠΊΠΈ всСрСдині для Π·ΠΌΡ–Π½ΠΈ &eΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½ΠΎΡ— Ρ‚Π΅ΠΏΠ»ΠΎΠ²ΠΎΡ— місткості&r. \n\nΠ’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Ρ€ΠΎΠ·ΠΌΡ–Ρ‰ΡƒΠ²Π°Ρ‚ΠΈ ΠΏΠ΅Π²Π½Ρ– &6ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Π½Ρ– Π±Π»ΠΎΠΊΠΈ&r Ρƒ ΠΊΡƒΡ‚Π°Ρ… Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°, Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‡ΠΈ встановити Π΄ΠΎ &e20 Π±Π»ΠΎΠΊΡ–Π²&r Π·Π°Π³Π°Π»ΠΎΠΌ. Наприклад, ΠΌΠΎΠΆΠ½Π° використати &9Π’Ρ€ΠΈΠΌΠ°Ρ‡Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²&r Ρ‚Π° вставити ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½Ρ– Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚ΠΈ Ρ‡Π΅Ρ€Π΅Π· Π²Ρ…Ρ–Π΄Π½Ρ– шини, Ρ‰ΠΎ Π΄ΠΎΠΏΠΎΠΌΠ°Π³Π°Ρ” ΠΊΠ΅Ρ€ΡƒΠ²Π°Ρ‚ΠΈ накопичСнням Ρ‚Π΅ΠΏΠ»Π°. \n\nΠ’Π°ΠΆΠ»ΠΈΠ²ΠΎ Π·Π°Π·Π½Π°Ρ‡ΠΈΡ‚ΠΈ, Ρ‰ΠΎ Π’Ρ€ΠΈΠΌΠ°Ρ‡Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π² β€” Ρ†Π΅ &cΡ”Π΄ΠΈΠ½ΠΈΠΉ спосіб&r ΡƒΠ²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ &bΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π²&r Ρƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ– ΠΏΠΎΠ΄Ρ–Π»Ρƒ. \n\nΠ ΠΎΠ·ΡƒΠΌΠ½Π° Π²Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½Ρ конфігурація станС Π²ΠΈΡ€Ρ–ΡˆΠ°Π»ΡŒΠ½ΠΎΡŽ Ρ€Ρ–Π·Π½ΠΈΡ†Π΅ΡŽ ΠΌΡ–ΠΆ ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½ΠΈΠΌ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΎΠΌ Ρ– Ρ‚ΠΈΠΌ, Ρ‰ΠΎ ΠΉΠ΄Π΅ Π½Π° охолодТСння, Ρ‚ΠΎΠΆ Ρ€Π΅Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΏΠ»Π°Π½ΡƒΠΉΡ‚Π΅ свою схСму!", + "quests.extreme_voltage.reactor_components.desc.2": "Π―ΠΊ ΡƒΠΆΠ΅ ΠΎΠ±Π³ΠΎΠ²ΠΎΡ€ΡŽΠ²Π°Π»ΠΎΡΡ Ρ€Π°Π½Ρ–ΡˆΠ΅, використання Ρ‚Ρ€ΡŒΠΎΡ… &eΠ’ΠΎΡ€Ρ–Ρ”Π²ΠΈΡ… стриТнів&r ΠΏΡ–Π΄Π½Ρ–ΠΌΠ΅ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ вашого Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ Π΄ΠΎ &c420&r, Ρ‰ΠΎ Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΏΠ΅Ρ€Π΅Π²ΠΈΡ‰ΡƒΡ” стандартний Π»Ρ–ΠΌΡ–Ρ‚. Однак Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ досягти Ρ†ΡŒΠΎΠ³ΠΎ ΠΏΠΎΡ€ΠΎΠ³Ρƒ, ΠΏΠΎΠΊΡ€Π°Ρ‰ΠΈΠ²ΡˆΠΈ &6Ρ–Π·ΠΎΠ»ΡΡ†Ρ–ΡŽ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r. \n\nДодавання &e10 ΠšΠ°Ρ€ΠΊΠ°ΡΠ½ΠΈΡ… Π»ΡŒΠΎΠ΄ΠΎΠ²ΠΈΡ… вовняних Π±Π»ΠΎΠΊΡ–Π²&r Π°Π±ΠΎ &e20 ΠšΠ°Ρ€ΠΊΠ°ΡΠ½ΠΈΡ… Π±Π»ΠΎΠΊΡ–Π² ізоляції AES&r усСрСдині конструкції ΠΏΡ–Π΄Π²ΠΈΡ‰ΠΈΡ‚ΡŒ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½Ρƒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° Π΄ΠΎ &e420&r, Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‡ΠΈ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ Π· Ρ‚Ρ€ΡŒΠΎΠΌΠ° Π’ΠΎΡ€Ρ–Ρ”Π²ΠΈΠΌΠΈ стриТнями Π±Π΅Π· ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄Ρƒ Π² Ρ€Π΅ΠΆΠΈΠΌ охолодТСння. \n\nΠœΠ°ΠΉΡ‚Π΅ Π½Π° ΡƒΠ²Π°Π·Ρ–, Ρ‰ΠΎ Π·Π±Ρ–Π»ΡŒΡˆΠ΅Π½Π½Ρ ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΡ… стриТнів Ρ‚Π°ΠΊΠΎΠΆ ΠΏΡ€ΠΈΡΠΊΠΎΡ€ΡŽΡ” Ρ—Ρ… &aΠ·Π½ΠΎΡˆΡƒΠ²Π°Π½Π½Ρ&r. Π¦Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ ΠΊΠΎΠΆΠ΅Π½ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ Ρƒ ΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎΠΌΡƒ вироблятимС мСншС ΠΏΠ°Ρ€ΠΈ Π·Π° Ρ‚ΠΈΠΊ, Π·Π½ΠΈΠΆΡƒΡŽΡ‡ΠΈ ΠΉΠΎΠ³ΠΎ &aΠ΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ&r, Π°Π»Π΅ водночас Ρ†Π΅ &bΠ·Π½Π°Ρ‡Π½ΠΎ ΠΏΡ€ΠΈΡΠΊΠΎΡ€ΠΈΡ‚ΡŒ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π² ΠΏΠΎΠ΄Ρ–Π»Ρƒ&r. \n\nΠ§ΠΈ віддастС Π²ΠΈ ΠΏΠ΅Ρ€Π΅Π²Π°Π³Ρƒ &aСфСктивності&r Ρ‡ΠΈ &bпропускній здатності&r β€” ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°Π»Π΅ΠΆΠΈΡ‚ΡŒ Π²Ρ–Π΄ вас. Π‘Π°ΠΌΠ΅ Ρ†Π΅ΠΉ баланс Ρ– Ρ” ΡΠ΅Ρ€Ρ†Π΅Π²ΠΈΠ½ΠΎΡŽ майстСрності Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Π· &6Π―Π΄Π΅Ρ€Π½ΠΈΠΌ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΎΠΌ&r.", + "quests.extreme_voltage.heat_exchanger.title": "Π’Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΡ–Π½Π½ΠΈΠΊ", + "quests.extreme_voltage.heat_exchanger.subtitle": "УсС Ρ†Π΅ Ρ‚Π΅ΠΏΠ»ΠΎ ΠΆ ΠΌΠ°Ρ” ΠΊΡƒΠ΄ΠΈΡΡŒ діватися!", + "quests.extreme_voltage.heat_exchanger.desc.1": "&6Π’Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΡ–Π½Π½ΠΈΠΊ&r β€” Ρ†Π΅ ΠΊΡ€ΠΈΡ‚ΠΈΡ‡Π½ΠΎ Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΠΉ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ наступного Π΅Ρ‚Π°ΠΏΡƒ Π²Π°ΡˆΠΎΡ— Π›Ρ–Π½Ρ–Ρ— ΠΏΠΎΠ΄Ρ–Π»Ρƒ: Π²Ρ–Π½ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ Π½Π΅ лишС для охолодТСння, Π° ΠΉ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π±Ρ–Π»ΡŒΡˆΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– &eΠŸΠ°Ρ€ΠΈ високого тиску&r, яка ΠΆΠΈΠ²ΠΈΡ‚ΡŒ Π²Π°ΡˆΡƒ Π―Π΄Π΅Ρ€Π½Ρƒ Ρ‚ΡƒΡ€Π±Ρ–Π½Ρƒ. \n\nΠ’Ρ–Π½ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” &bΠ†Π΄Π΅Π°Π»ΡŒΠ½ΠΈΠΉ Ρ€ΠΎΠ·Π³Ρ–Π½&r Ρ‚Π° &bΠ‘ΡƒΠ±Ρ‚Π°ΠΊΡ‚ ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ&r. Π―ΠΊΡ‰ΠΎ Ρ†Ρ– Ρ‚Π΅Ρ€ΠΌΡ–Π½ΠΈ Π²Π°ΠΌ Π½Π΅Π·Π½Π°ΠΉΠΎΠΌΡ–, настійно Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ пСрСглянути Ρ€ΠΎΠ·Π΄Ρ–Π» &dΠ•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΠΊΠ° GregTech&r, Ρ‰ΠΎΠ± ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Ρ€ΠΎΠ·ΡƒΠΌΡ–Ρ‚ΠΈ, як Π²ΠΎΠ½ΠΈ Π²ΠΏΠ»ΠΈΠ²Π°ΡŽΡ‚ΡŒ Π½Π° ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ.", + "quests.extreme_voltage.heat_exchanger.desc.2": "НС стримуйтСся! Π’ΡΡ‚Π°Π½ΠΎΠ²Ρ–Ρ‚ΡŒ &516A EV Π•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк&r Π²Ρ–Π΄ самого ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ, Ρ‰ΠΎΠ± Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ пСрСйматися обмСТСннями ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ– Ρ‡ΠΈ пропускної здатності. \n\nМи Ρ‚Π°ΠΊΠΎΠΆ Π½Π°Π΄Π°Ρ”ΠΌΠΎ Π²Π°ΠΌ &9ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π΅Ρ€ машини&r, який слід під’єднати Π΄ΠΎ Π³ΠΎΠ»ΠΎΠ²Π½ΠΎΠ³ΠΎ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π΅Ρ€Π° вашого Π’Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΡ–Π½Π½ΠΈΠΊΠ°. Ми ΠΏΠΎΠΌΡ–Ρ‚ΠΈΠ»ΠΈ, Ρ‰ΠΎ машина Ρ–Π½ΠΎΠ΄Ρ– ΠΌΠΎΠΆΠ΅ нСсподівано вимикатися, Ρ‚ΠΎΠΆ обов’язково ΡƒΠ²Ρ–ΠΌΠΊΠ½Ρ–Ρ‚ΡŒ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ &eЗапобігання Π·Π±ΠΎΡ—Π² ТивлСння&r. Π¦Π΅ Π½Π΅ΠΉΡ‚Ρ€Π°Π»Ρ–Π·ΡƒΡ” ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΡƒ GregTech, яка Π²ΠΈΠΌΠΈΠΊΠ°Ρ” машини ΠΏΡ€ΠΈ короткочасній Π²Ρ‚Ρ€Π°Ρ‚Ρ– Π΅Π½Π΅Ρ€Π³Ρ–Ρ—.", + "quests.extreme_voltage.refrigerant_pellet.title": "ΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½Ρ– Π³Ρ€Π°Π½ΡƒΠ»ΠΈ", + "quests.extreme_voltage.refrigerant_pellet.subtitle": "ВимчасовС Ρ€Ρ–ΡˆΠ΅Π½Π½Ρ для Π΅ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½ΠΈΡ… Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€", + "quests.extreme_voltage.refrigerant_pellet.desc": "&eΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΈΠΉ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ&r ΠΏΡ€Π°Ρ†ΡŽΡ” ΠΏΡ€ΠΈ Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ високих Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π°Ρ… β€” Π½Π°ΡΡ‚Ρ–Π»ΡŒΠΊΠΈ високих, Ρ‰ΠΎ Π²Π°ΠΌ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ використовувати &bΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½Ρ– ΠΏΠ΅Π»Π΅Ρ‚ΠΈ&r усСрСдині Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°, Π°Π±ΠΈ Π·Π°ΠΏΠΎΠ±Ρ–Π³Ρ‚ΠΈ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄Ρƒ Π² Ρ€Π΅ΠΆΠΈΠΌ охолодТСння. \n\nΠ¦Ρ– ΠΏΠ΅Π»Π΅Ρ‚ΠΈ Π΄ΠΎΡΠΈΡ‚ΡŒ Π΄ΠΎΡ€ΠΎΠ³Ρ– Ρƒ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Ρ–, Π°Π»Π΅ Π²ΠΈ всС ΠΆ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°Π»Π°Π³ΠΎΠ΄ΠΈΡ‚ΠΈ Ρ—Ρ… масовС виготовлСння Π½Π° Ρ€Π°Π½Π½ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– β€” Π°Π±ΠΎ ΠΏΡ€ΠΈΠ½Π°ΠΉΠΌΠ½Ρ– Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ, Ρ‰ΠΎΠ± ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ Ρ€ΠΎΠ±ΠΎΡ‚Ρƒ ΠΏΠ΅Ρ€ΡˆΠΈΡ… ΠΊΡ–Π»ΡŒΠΊΠΎΡ… ΠΏΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΈΡ… стриТнів. Для ΠΏΠΎΠ²Π½ΠΎΠ³ΠΎ Ρ†ΠΈΠΊΠ»Ρƒ ΠΎΠ΄Π½ΠΎΠ³ΠΎ ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΎΠ³ΠΎ стриТня ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ &9256&r. \n\nΠŸΡ–Π·Π½Ρ–ΡˆΠ΅, якщо Π²Π°ΠΌ Π½Π΅ ΠΏΠΎΠ΄ΠΎΠ±Π°Ρ”Ρ‚ΡŒΡΡ постійно ΠΊΡ€Π°Ρ„Ρ‚ΠΈΡ‚ΠΈ Ρ†Ρ– Π²ΠΈΡ‚Ρ€Π°Ρ‚Π½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ, Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅ доступ Π΄ΠΎ &6ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½ΠΈΡ… ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r. Π— Π½ΠΈΠΌΠΈ ваш Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Π·ΠΌΠΎΠΆΠ΅ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ досягати &e600 Макс. Ρ‚Π΅ΠΏΠ»Π°&r, Ρ‰ΠΎ Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΡ–Π΄Π²ΠΈΡ‰ΠΈΡ‚ΡŒ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ Ρ– ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ. \n\nІнвСстуйтС Π² ΠΊΡ€Π°Ρ‰Ρ– Π²Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½Ρ– частини Π·Π°Π·Π΄Π°Π»Π΅Π³Ρ–Π΄ΡŒ, Ρ‰ΠΎΠ± Π²ΠΈΡ‚Ρ€Π°Ρ‡Π°Ρ‚ΠΈ мСншС часу Π½Π° Β«Π½ΡΠ½ΡŒΠΊΡƒΠ²Π°Π½Π½ΡΒ» вашого Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ ядра.", + "quests.extreme_voltage.important_info.title": "ΠŸΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ ΠΏΠΎΡ‡Π°Ρ‚ΠΈ", + "quests.extreme_voltage.important_info.subtitle": "НС Π½Π°ΠΉΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠ΅ місцС для ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ", + "quests.extreme_voltage.important_info.desc.1": "ΠŸΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ свою Π±Π°Π·Ρƒ Π½Π° &cΠœΠ°Ρ€ΡΡ–&r, ось ΠΊΡ–Π»ΡŒΠΊΠ° Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΡ… ΠΏΠΎΡ€Π°Π΄, які Π΄ΠΎΠΏΠΎΠΌΠΎΠΆΡƒΡ‚ΡŒ Π²Π°ΠΌ ΡƒΡΠΏΡ–ΡˆΠ½ΠΎ ΠΎΠ±Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈΡΡ.&r \n\nΠŸΡ–Π΄ час дослідТСння Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°Ρ‚Ρ€Π°ΠΏΠΈΡ‚ΠΈ Π½Π° &6ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΡ– Ρ€ΡƒΡ—Π½ΠΈ&r, Ρ‰ΠΎ ΠΌΡ–ΡΡ‚ΡΡ‚ΡŒ &eАтомні корпуси&r Ρ‚Π° &eΠšΠΎΡ€ΠΏΡƒΡΠΈ для високотСмпСратурного плавлСння&r. Π’ΠΎΠ½ΠΈ Π½Π΅ Π·Π°ΠΌΡ–Π½ΡΡ‚ΡŒ Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ, яка Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π²Π°ΠΌ ΠΏΡ–Π·Π½Ρ–ΡˆΠ΅, Π°Π»Π΅ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π΄Π°Ρ‚ΠΈ Π½Π΅Π²Π΅Π»ΠΈΠΊΠΈΠΉ старт ΠΏΡ–Π΄ час ΠΏΠΎΡˆΡƒΠΊΡƒ Ρ–Π΄Π΅Π°Π»ΡŒΠ½ΠΎΠ³ΠΎ місця для Π±Π°Π·ΠΈ.&r", + "quests.extreme_voltage.important_info.desc.2": "Коли ΠΉΠ΄Π΅Ρ‚ΡŒΡΡ ΠΏΡ€ΠΎ Π²Π°ΡˆΡƒ ΠΌΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΡƒ інфраструктуру, існує Π΄Π²Π° основні ΠΏΡ–Π΄Ρ…ΠΎΠ΄ΠΈ:&r \n\nβ€’ &aΠžΡ€Ρ–Ρ”Π½Ρ‚ΠΎΠ²Π°Π½ΠΈΠΉ Π½Π° ΠΏΡ–Π΄Π³ΠΎΡ‚ΠΎΠ²ΠΊΡƒ&r: Π—Π±ΡƒΠ΄ΡƒΠΉΡ‚Π΅ всС Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Π΅ для ΠΏΠΎΠ²Π½ΠΎΡ— &6Π›Ρ–Π½Ρ–Ρ— ΠΏΠΎΠ΄Ρ–Π»Ρƒ&r Ρ‰Π΅ Π΄ΠΎ заснування Π±Π°Π·ΠΈ. Π¦Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ” Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΡŒΠ½Ρ– Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈ, Π°Π»Π΅ Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ самодостатнім після запуску. \n\nβ€’ &aΠŸΠΎΡΡ‚ΡƒΠΏΠΎΠ²Π΅ розгортання&r: ΠŸΠΎΡ‡Π½Ρ–Ρ‚ΡŒ Ρ–Π· мСншого β€” Π²Π°ΡˆΠΎΡ— &6Π€Π°Π±Ρ€ΠΈΠΊΠΈ ядСрного ΠΏΠ°Π»ΠΈΠ²Π°&r, ΠΏΠ΅Ρ€ΡˆΠΎΠ³ΠΎ &6Π―Π΄Π΅Ρ€Π½ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r (Π½Π° &eΠ’ΠΎΡ€Ρ–Ρ—&r) Ρ‚Π° &6Π―Π΄Π΅Ρ€Π½ΠΎΡ— Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΈ&r. Π¦Π΅ΠΉ ΡˆΠ»ΡΡ… швидший Π½Π° старті, Π°Π»Π΅ кСрування Π΅Π½Π΅Ρ€Π³Ρ–Ρ”ΡŽ Π±ΡƒΠ΄Π΅ складним, Π΄ΠΎΠΊΠΈ систСма ΠΏΠΎΠ΄Ρ–Π»Ρƒ Π½Π΅ ΡΡ‚Π°Π±Ρ–Π»Ρ–Π·ΡƒΡ”Ρ‚ΡŒΡΡ. \n\nΠ£ Π±ΡƒΠ΄ΡŒβ€‘ΡΠΊΠΎΠΌΡƒ Π²ΠΈΠΏΠ°Π΄ΠΊΡƒ ΠΌΠΈ Π·Π°Π²ΠΆΠ΄ΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ провСсти Ρ€ΠΎΠ·Π²Ρ–Π΄ΡƒΠ²Π°Π»ΡŒΠ½Ρƒ ΠΌΡ–ΡΡ–ΡŽ, ΠΏΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ осСлятися!", + "quests.extreme_voltage.important_info.desc.3": "ΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ ΠΆΠΎΠ΄Π΅Π½ Π²ΠΈΠ΄ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π½Π° основі згоряння Π½Π΅ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈΠΌΠ΅ Π½Π° ΠœΠ°Ρ€ΡΡ–, Π²Π°ΠΌ слід ΠΏΡ€ΠΈΠ²Π΅Π·Ρ‚ΠΈ Π΄ΠΎΠ±Ρ€ΠΈΠΉ запас &bΠšΡ€ΠΈΡΡ‚Π°Π»Ρ–Π² Π›Π°ΠΏΠΎΡ‚Ρ€ΠΎΠ½Ρƒ&r, Ρ‰ΠΎΠ± ΠΆΠΈΠ²ΠΈΡ‚ΠΈ ΠΏΠ΅Ρ€ΡˆΡ– Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ Ρ‚Π° систСми ΠΏΠΎΠ΄Π°Ρ‡Ρ– кисню. \n\nМи Ρ‚Π°ΠΊΠΎΠΆ Π½Π°ΠΏΠΎΠ»Π΅Π³Π»ΠΈΠ²ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ встановити &6Дистиляційну Π²Π΅ΠΆΡƒ&r. &eΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠ΅ повітря&r ΠΌΠΎΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π½Π° ΠΏΡ€ΠΈΠ΄Π°Ρ‚Π½Π΅ для дихання &bΠŸΠΎΠ²Ρ–Ρ‚Ρ€Ρ&r Ρ‚Π° ΠΊΡ–Π»ΡŒΠΊΠ° Ρ–Π½ΡˆΠΈΡ… корисних Π³Π°Π·Ρ–Π². \nΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½ΠΎ, усС Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Π΅ для БтиснСного Нітроксу ΠΌΠΎΠΆΠ½Π° ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π· місцСвої НапівваТкої Π°ΠΌΡ–Π°Ρ‡Π½ΠΎΡ— Π²ΠΎΠ΄ΠΈ. \n\nВиТивання Π½Π° ΠœΠ°Ρ€ΡΡ– β€” Ρ†Π΅ Π½Π΅ питання ΡƒΠ΄Π°Ρ‡Ρ–, Π° питання ΠΏΡ–Π΄Π³ΠΎΡ‚ΠΎΠ²ΠΊΠΈ!", + "quests.extreme_voltage.important_info.task": "Час ΠœΠ°Ρ€ΡΡƒΠ²Π°Ρ‚ΠΈ", + "quests.extreme_voltage.dense_lead.title": "Π¨Π²ΠΈΠ΄ΡˆΡ– Ρ‰Ρ–Π»ΡŒΠ½Ρ– свинцСві пластини", + "quests.extreme_voltage.dense_lead.subtitle": "НС Ρ€ΠΎΠ·Ρ€Π°Ρ…ΠΎΠ²ΡƒΠΉΡ‚Π΅ Π½Π° Ρ†Π΅ для Ρ–Π½ΡˆΠΈΡ… Ρ‰Ρ–Π»ΡŒΠ½ΠΈΡ… пластин", + "quests.extreme_voltage.dense_lead.desc": "Π§Π΅Ρ€Π΅Π· Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π©Ρ–Π»ΡŒΠ½ΠΈΡ… свинцСвих пластин, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΡ… для Атомних корпусів, ΠΌΠΈ ΠΏΡ€ΠΎΠΏΠΎΠ½ΡƒΡ”ΠΌΠΎ Π½ΠΎΠ²ΠΈΠΉ, Ρ…ΠΎΡ‡Π° ΠΉ мСнш Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π·Π° допомогою Π†ΠΌΠΏΠ»ΠΎΠ·Ρ–ΠΉΠ½ΠΎΠ³ΠΎ компрСсора. \nΠ‘ΠΌΡ–Π»ΠΈΠ²ΠΎ використовуйтС ΠΉΠΎΠ³ΠΎ, якщо Π½Π΅ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Ρ‡Π΅ΠΊΠ°Ρ‚ΠΈ Π²Ρ–Ρ‡Π½Ρ–ΡΡ‚ΡŒ Π½Π° Ρ€ΠΎΠ±ΠΎΡ‚Ρƒ Π²Π°ΡˆΠΈΡ… Π·Π³ΠΈΠ½Π°Ρ‡Ρ–Π².", + "quests.extreme_voltage.thorium_rod.title": "ΠŸΠ°Π»ΠΈΠ²Π½Ρ– стриТні", + "quests.extreme_voltage.thorium_rod.subtitle": "ΠšΠΎΡ€ΠΈΡΡ‚ΡƒΠΉΡ‚Π΅ΡΡ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½ΠΎ", + "quests.extreme_voltage.thorium_rod.desc.1": "КоТСн &6Паливний ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ&r ΠΌΠ°Ρ” власний Π½Π°Π±Ρ–Ρ€ характСристик, Π·ΠΎΠΊΡ€Π΅ΠΌΠ° &aΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ&r (Ρ‚Ρ€ΠΈΠ²Π°Π»Ρ–ΡΡ‚ΡŒ Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Π² Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ–), &cтСпловиділСння&r (ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Ρ‚Π΅ΠΏΠ»Π°, якС Π²Ρ–Π½ виробляє), Π° Ρ‚Π°ΠΊΠΎΠΆ Ρ€Ρ–Π·Π½Ρ– &eΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ&r Ρ‚Π° Ρ€Ρ–Π²Π½Ρ– &bвироблСння ΠΏΠ°Ρ€ΠΈ&r. УсС Ρ†Π΅ ΠΌΠΎΠΆΠ½Π° пСрСглянути Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Ρƒ Π²ΠΊΠ»Π°Π΄ΠΊΠ°Ρ… &aEMI&r для ΠΊΠΎΠΆΠ½ΠΎΠ³ΠΎ стриТня.&r\n\nΠŸΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ Π·Π°Π½ΡƒΡ€ΡŽΠ²Π°Ρ‚ΠΈΡΡ Π² ΠΏΡ€ΠΈΠ½Ρ†ΠΈΠΏ Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Π Π΅Π°ΠΊΡ‚ΠΎΡ€Π° ΠΏΠΎΠ΄Ρ–Π»Ρƒ, ось ΠΊΡ–Π»ΡŒΠΊΠ° ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΈΡ… ΠΌΠΎΠΌΠ΅Π½Ρ‚Ρ–Π², які Π²Π°Ρ€Ρ‚ΠΎ Π·Ρ€ΠΎΠ·ΡƒΠΌΡ–Ρ‚ΠΈ:&r", + "quests.extreme_voltage.thorium_rod.desc.2": "β€’ Показник &eВідсотка Ρ‚Π΅ΠΏΠ»Π°&r, Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½ΠΈΠΉ Π½Π° ΠΏΠ°Π»ΠΈΠ²Π½ΠΎΠΌΡƒ стриТні, ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ Ρƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ– Π½Π° Ρ‚Ρ€ΠΎΡ…ΠΈ мСншС Π½Ρ–ΠΆ ΠΏΠΎΠ΄Π²ΠΎΡ”Π½Π΅ значСння. \nНаприклад, &eΠ’ΠΎΡ€Ρ–Ρ”Π²ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ&r Ρ–Π· &cΠ’Π΅ΠΏΠ»ΠΎΠΌ&r 70%% Π³Π΅Π½Π΅Ρ€ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅ Ρ‚Ρ€ΠΎΡ…ΠΈ мСншС Π½Ρ–ΠΆ 140 Ρ‚Π΅ΠΏΠ»Π°, якщо Π² Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Π±ΡƒΠ΄Π΅ Π·Π°ΠΊΠ°Ρ‡Π°Π½ΠΎ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ &bΠ’Π°ΠΆΠΊΠΎΡ— Π²ΠΎΠ΄ΠΈ&r. \nΠ¦Π΅ підвищСння Ρ‚Π΅ΠΏΠ»Π° Ρ” &aΠ°Π΄ΠΈΡ‚ΠΈΠ²Π½ΠΈΠΌ&r, Ρ‚ΠΎΠ±Ρ‚ΠΎ 2 Π’ΠΎΡ€Ρ–Ρ”Π²ΠΈΡ… стриТні ΠΏΡ–Π΄Π½Ρ–ΠΌΡƒΡ‚ΡŒ загальнС Ρ‚Π΅ΠΏΠ»ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ Π΄ΠΎ 280.&r", + "quests.extreme_voltage.thorium_rod.desc.3": "β€’ &aΠœΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ&r Π·ΠΌΠ΅Π½ΡˆΡƒΡ”Ρ‚ΡŒΡΡ Π· однаковою базовою ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŽ для всіх стриТнів. \nОднак Ρ‡ΠΈΠΌ Π²ΠΈΡ‰Π° Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°, Ρ‚ΠΈΠΌ швидшС стриТні Π·Π½ΠΎΡˆΡƒΡŽΡ‚ΡŒΡΡ. \nΠ§Π΅Ρ€Π΅Π· Ρ†Π΅, Π½Π°Π²Ρ–Ρ‚ΡŒ якщо ΠΏΠ΅Π²Π½ΠΈΠΉ Ρ‚ΠΈΠΏ стриТня ΠΌΠ°Ρ” Ρƒ 4Γ— Π±Ρ–Π»ΡŒΡˆΡƒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ Π·Π° Ρ–Π½ΡˆΠΈΠΉ, Ρ†Π΅ Π½Π΅ обов’язково ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ Π²Ρ–Π½ ΠΏΡ€ΠΎΡΠ»ΡƒΠΆΠΈΡ‚ΡŒ Ρƒ 4Γ— довшС, Π°Π΄ΠΆΠ΅ &cΡ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π²ΠΏΠ»ΠΈΠ²Π°Ρ” Π½Π° Ρ‚Ρ€ΠΈΠ²Π°Π»Ρ–ΡΡ‚ΡŒ слуТби&r.&r \n\nБалансування ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– стриТнів Ρƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ– станС вашим ΠΏΠ΅Ρ€ΡˆΠΈΠΌ Π²ΠΈΠΊΠ»ΠΈΠΊΠΎΠΌ Ρƒ Ρ€ΠΎΠ±ΠΎΡ‚Ρ– Π· ΠΏΠΎΠ΄Ρ–Π»ΠΎΠΌ.", + "quests.extreme_voltage.fission_reactor.title": "Π Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΏΠΎΠ΄Ρ–Π»Ρƒ", + "quests.extreme_voltage.fission_reactor.subtitle": "О Π½Ρ–, Π²Ρ–Π½ Π·Π½ΠΎΠ²Ρƒ ΠΏΠ΅Ρ€Π΅ΠΉΡˆΠΎΠ² Ρƒ Ρ€Π΅ΠΆΠΈΠΌ охолодТСння", + "quests.extreme_voltage.fission_reactor.desc.1": "Для ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ, якщо Π²ΠΈ ΡˆΡƒΠΊΠ°Ρ”Ρ‚Π΅ глибшС занурСння Π² ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΡƒ &6Π―Π΄Π΅Ρ€Π½ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r, Π²ΠΊΠ»ΡŽΡ‡Π½ΠΎ Π· Ρ„ΠΎΡ€ΠΌΡƒΠ»Π°ΠΌΠΈ, Π΄Π΅Ρ‚Π°Π»ΡŒΠ½ΠΈΠΌΠΈ Ρ€ΠΎΠ·Ρ€Π°Ρ…ΡƒΠ½ΠΊΠ°ΠΌΠΈ Ρ‚Π° ΠΏΠΎΠ²Π΅Π΄Ρ–Π½ΠΊΠΎΡŽ систСми, ознайомтСся Ρ–Π· завданням Ρƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– &aΠ•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΠΊΠ° GregTech&r. Π’Π°ΠΌ Π²ΠΈ Π·Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ всС Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Π΅, якщо Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ розібратися Π² ΠΌΠ°Ρ‚Π΅ΠΌΠ°Ρ‚ΠΈΡ†Ρ–, Ρ‰ΠΎ ΡΡ‚ΠΎΡ—Ρ‚ΡŒ Π·Π° систСмами Ρ‚Π΅ΠΏΠ»Π° Ρ‚Π° СфСктивності.&r \n\nА Π·Π°Ρ€Π°Π· зосСрСдимося Π½Π° Π²Π°ΡˆΠΎΠΌΡƒ ΠΏΠ΅Ρ€ΡˆΠΎΠΌΡƒ &6Π’ΠΎΡ€Ρ–Ρ”Π²ΠΎΠΌΡƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ–&r. Π™ΠΎΠ³ΠΎ Π±Π°Π·ΠΎΠ²Π΅ &cМакс. Ρ‚Π΅ΠΏΠ»ΠΎ&r ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ &e400&r. Π―ΠΊ пояснювалося Π² ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎΠΌΡƒ Π·Π°Π²Π΄Π°Π½Π½Ρ–, Ρ€ΠΎΠ±ΠΎΡ‚Π° Π· Π΄Π²ΠΎΠΌΠ° Π’ΠΎΡ€Ρ–Ρ”Π²ΠΈΠΌΠΈ стриТнями ΠΏΡ–Π΄Π½Ρ–ΠΌΠ΅ Π²Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½Ρ” Ρ‚Π΅ΠΏΠ»ΠΎ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ Π΄ΠΎ &e280&r, Ρ‰ΠΎ Ρ” Ρ†Ρ–Π»ΠΊΠΎΠΌ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΈΠΌ. Однак додавання Ρ‚Ρ€Π΅Ρ‚ΡŒΠΎΠ³ΠΎ стриТня ΠΏΡ–Π΄Π½Ρ–ΠΌΠ΅ загальнС Ρ‚Π΅ΠΏΠ»ΠΎ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ Π΄ΠΎ &c420&r, ΠΏΠ΅Ρ€Π΅Π²ΠΈΡ‰ΡƒΡŽΡ‡ΠΈ Π»Ρ–ΠΌΡ–Ρ‚ Ρ– Π·Π°ΠΏΡƒΡΠΊΠ°ΡŽΡ‡ΠΈ &cΡ€Π΅ΠΆΠΈΠΌ охолодТСння&r.", + "quests.extreme_voltage.fission_reactor.desc.2": "НС Ρ…Π²ΠΈΠ»ΡŽΠΉΡ‚Π΅ΡΡ, Π²ΠΈΠ±ΡƒΡ…Ρƒ Π½Π΅ Π±ΡƒΠ΄Π΅, Π°Π»Π΅ ваш Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Π²ΠΈΠΌΠΊΠ½Π΅Ρ‚ΡŒΡΡ Ρ– Π½Π΅ ΠΏΠ΅Ρ€Π΅Π·Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒΡΡ, Π΄ΠΎΠΊΠΈ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π½Π΅ ΠΎΡ…ΠΎΠ»ΠΎΠ½Π΅ Π΄ΠΎ 0 Ρ‚Π΅ΠΏΠ»Π°. Π¦Π΅ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·ΡƒΠΏΠΈΠ½ΠΈΡ‚ΡŒ як &aΠ²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—&r, Ρ‚Π°ΠΊ Ρ– Π³Π΅Π½Π΅Ρ€Π°Ρ†Ρ–ΡŽ &aΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π² ΠΏΠΎΠ΄Ρ–Π»Ρƒ&r β€” сСрйозний Π²Ρ–Π΄ΠΊΠ°Ρ‚. \n\nΠšΠ΅Ρ€ΡƒΠ²Π°Π½Π½Ρ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΡ… стриТнів станС вашим ΠΏΠ΅Ρ€ΡˆΠΈΠΌ &6Π²ΠΈΠΊΠ»ΠΈΠΊΠΎΠΌ&r Ρ– головною Β«ΠΌΡ–Π½Ρ–β€‘Π³Ρ€ΠΎΡŽΒ» Ρƒ Ρ€ΠΎΠ±ΠΎΡ‚Ρ– Π· ΠΏΠΎΠ΄Ρ–Π»ΠΎΠΌ. \n\nΠ„ ΠΊΡ–Π»ΡŒΠΊΠ° способів ΠΏΡ–Π΄Ρ–ΠΉΡ‚ΠΈ Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ, Ρ– СкспСримСнти β€” частина задоволСння. \n\nОдин Π·Ρ– способів β€” під’єднати Π΄ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° &6РСдстоун ΠΏΠΎΡ€Ρ‚&r Ρ–, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ &aΠ“Π°ΠΉΠΊΠΎΠ²ΠΈΠΉ ΠΊΠ»ΡŽΡ‡&r, ΠΏΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Ρ€Π΅ΠΆΠΈΠΌ ΠΌΠΎΠ½Ρ–Ρ‚ΠΎΡ€ΠΈΠ½Π³Ρƒ ΠΌΡ–ΠΆ &eΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ стриТнів&r Ρ‚Π° &cΡ€Ρ–Π²Π½Π΅ΠΌ Ρ‚Π΅ΠΏΠ»Π°&r. \n\nΠΠ°Ρ€Π΅ΡˆΡ‚Ρ–, ΠΌΠ°ΠΉΡ‚Π΅ Π½Π° ΡƒΠ²Π°Π·Ρ–, Ρ‰ΠΎ всі стриТні Π·Π±Π΅Ρ€Ρ–Π³Π°ΡŽΡ‚ΡŒΡΡ всСрСдині &6Π’Ρ€ΠΈΠΌΠ°Ρ‡Π° ΠΏΠ°Π»ΠΈΠ²Π°&r. Π¦Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ обмСТСння ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΡ… стриТнів β€” Ρ†Π΅ Π½Π΅ просто покласти 2 стриТні Ρƒ Π²Ρ…Ρ–Π΄Π½ΠΈΠΉ Π±ΡƒΡ„Π΅Ρ€, &cΠ²Π°ΠΌ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŽΠ²Π°Ρ‚ΠΈ, Ρ‰ΠΎ самС потрапляє Ρƒ Π’Ρ…Ρ–Π΄Π½ΠΈΠΉ Π±ΡƒΡ„Π΅Ρ€&r, Ρ‰ΠΎΠ± Ρ‚ΠΎΡ‡Π½ΠΎ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Ρ€ΠΎΠ±ΠΎΡ‚Ρƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°.", + "quests.extreme_voltage.high_pressure_steam.title": "ΠŸΠ°Ρ€Π° високого тиску", + "quests.extreme_voltage.high_pressure_steam.subtitle": "ΠšΡ€Π°Ρ‰Π° ΠΏΠ°Ρ€Π°, Π±Ρ–Π»ΡŒΡˆΠ° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°", + "quests.extreme_voltage.high_pressure_steam.desc": "&4Π’Π°ΠΆΠ»ΠΈΠ²Π° інформація&r: Π―ΠΊΡ‰ΠΎ Π² Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ– Π½Π΅ΠΌΠ°Ρ” Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ місця для вивСдСння ΠŸΠ°Ρ€Ρƒ високого тиску, Π²Ρ–Π½ просто Π±ΡƒΠ΄Π΅ Π²Ρ‚Ρ€Π°Ρ‡Π΅Π½ΠΈΠΉ. \n\nΠ— ΠΌΡ–Ρ€ΠΊΡƒΠ²Π°Π½ΡŒ балансування (Ρ‚Π° пропускної здатності Ρ‚Ρ€ΡƒΠ±) &6Π―Π΄Π΅Ρ€Π½ΠΈΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€&r Π½Π΅ виробляє Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρƒ ΠΏΠ°Ρ€Ρƒ. ΠΠ°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ Π²Ρ–Π½ Π³Π΅Π½Π΅Ρ€ΡƒΡ” &bΠŸΠ°Ρ€Ρƒ високого тиску&r, яку ΠΌΠΎΠΆΠ½Π° використовувати лишС Ρƒ &6Π―Π΄Π΅Ρ€Π½Ρ–ΠΉ ΠΏΠ°Ρ€ΠΎΠ²Ρ–ΠΉ Ρ‚ΡƒΡ€Π±Ρ–Π½Ρ–&r. \n\nΠ‘ΠΏΡ€ΠΎΠ±Π° запустити Ρ—Ρ— Ρ‡Π΅Ρ€Π΅Π· стандартну ΠŸΠ°Ρ€ΠΎΠ²Ρƒ Ρ‚ΡƒΡ€Π±Ρ–Π½Ρƒ &cΠ½Π΅ ΡΠΏΡ€Π°Ρ†ΡŽΡ”&r.", + "quests.extreme_voltage.ev_superconductor.title": "EV Надпровідники", + "quests.extreme_voltage.ev_superconductor.subtitle": "ΠŸΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡˆΠ° Π·Π΄Π°Ρ‚Π½Ρ–ΡΡ‚ΡŒ Π΄ΠΎ Π°ΠΌΠΏΠ΅Ρ€Ρ–Π²", + "quests.extreme_voltage.ev_superconductor.desc": "Π’Π΅ΠΏΠ΅Ρ€, ΠΊΠΎΠ»ΠΈ Π²ΠΈ Π²ΠΆΠ΅ ΠΎΠ±Ρ€ΠΎΠ±ΠΈΠ»ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ &eΠ£Ρ€Π°Π½Ρƒ&r, Π²Π°ΠΌ Π²Π°Ρ€Ρ‚ΠΎ Π·Π²Π΅Ρ€Π½ΡƒΡ‚ΠΈ ΡƒΠ²Π°Π³Ρƒ Π½Π° &5EV Надпровідники&r. \n\nΠ¦Ρ– Π½Π°Π΄ΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΊΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π²ΠΈΡ‰Ρƒ Π°ΠΌΠΏΠ΅Ρ€Π½Ρƒ пропускну Π·Π΄Π°Ρ‚Π½Ρ–ΡΡ‚ΡŒ, Ρ‰ΠΎ Π΄ΠΎΠΏΠΎΠΌΠ°Π³Π°Ρ” Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ ΠΏΠΎ всій Π²Π°ΡˆΡ–ΠΉ Π±Π°Π·Ρ– Ρ‚Π° Π³Π°Ρ€Π°Π½Ρ‚ΡƒΡ”, Ρ‰ΠΎ Π²ΠΈΡ…Ρ–Π΄ Π²Ρ–Π΄ Π²Π°ΡˆΠΈΡ… &6Π―Π΄Π΅Ρ€Π½ΠΈΡ… ΠΏΠ°Ρ€ΠΎΠ²ΠΈΡ… Ρ‚ΡƒΡ€Π±Ρ–Π½&r досягнС всіх машин Π±Π΅Π· Π²Ρ‚Ρ€Π°Ρ‚.", + "quests.extreme_voltage.uraninite_dust.subtitle": "Π¦Π΅ Π±Π°Π³Π°Ρ‚ΠΎ стриТнів", + "quests.extreme_voltage.uraninite_dust.desc": "Π©ΠΎΠ± створити &eΠ£Ρ€Π°Π½ΠΎΠ²Ρ– ΠΏΠ°Π»ΠΈΠ²Π½Ρ– стриТні&r, Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π·Π½Π°Ρ‡Π½Π° ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ &eΠ£Ρ€Π°Π½Ρ–Π½Ρ–Ρ‚Ρƒ&r β€” ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ &c240 ΠΏΠΈΠ»Ρƒ&r Π½Π° ΠΎΠ΄ΠΈΠ½ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ. ΠŸΠΎΡ‡Π½Ρ–Ρ‚ΡŒ Π²ΠΈΠ΄ΠΎΠ±ΡƒΠ²Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π·Π°Π·Π΄Π°Π»Π΅Π³Ρ–Π΄ΡŒ, Ρ‰ΠΎΠ± Π·Π°Π΄ΠΎΠ²ΠΎΠ»ΡŒΠ½ΠΈΡ‚ΠΈ ΠΏΠΎΠΏΠΈΡ‚ Ρƒ ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½ΡŒΠΎΠΌΡƒ. \n\nΠΠ°ΠΉΠ±Ρ–Π»ΡŒΡˆΡ– ΠΆΠΈΠ»ΠΈ ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ Π½Π° ΠœΠ°Ρ€ΡΡ–, Π΄Π΅ дСякі ΠΏΠΎΠΊΠ»Π°Π΄ΠΈ Π΄ΠΎΡΡΠ³Π°ΡŽΡ‚ΡŒ &aΠ²Ρ€Π°ΠΆΠ°ΡŽΡ‡ΠΈΡ… Ρ€ΠΎΠ·ΠΌΡ–Ρ€Ρ–Π²&r. \nΠŸΡ–Π·Π½Ρ–ΡˆΠ΅ Ρƒ Π²Π°ΡˆΠΎΠΌΡƒ прогрСсі Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ виробляти Настуран Ρ– ΠΏΠΈΠ» Π£Ρ€Π°Π½Ρ–Π½Ρ–Ρ‚Ρƒ &aнСскінчСнно&r Π·Π° допомогою &6Π›Ρ–Π½Ρ–ΠΉΠ½ΠΎΠ³ΠΎ ΠΏΡ€ΠΈΡΠΊΠΎΡ€ΡŽΠ²Π°Ρ‡Π° Π· ΠžΡΡ‚Ρ€ΡƒΠΌΡƒ&r, Π°Π»Π΅ ΠΌΠΈ розглянСмо Ρ†Π΅ Π΄Π΅Ρ‚Π°Π»ΡŒΠ½Ρ–ΡˆΠ΅ Π² ΠΎΠ΄Π½ΠΎΠΌΡƒ Π· наступних завдань.", + "quests.extreme_voltage.uranium_line.title": "Π£Ρ€Π°Π½ΠΎΠ²Π° лінія", + "quests.extreme_voltage.uranium_line.subtitle": "Π¦Π΅ Ρ‰Π΅ ΠΎΠ΄Π½Π° Π½ΠΎΠ²Π° лінія ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ", + "quests.extreme_voltage.uranium_line.desc": "Π©ΠΎΠ± обробляти &eΠ£Ρ€Π°Π½&r Ρ‚Π° ΠΉΠΎΠ³ΠΎ &eΠ†Π·ΠΎΡ‚ΠΎΠΏ Уран‑235&r, Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ ΠΎΠΊΡ€Π΅ΠΌΡƒ Π½Π΅Π²Π΅Π»ΠΈΠΊΡƒ Π»Ρ–Π½Ρ–ΡŽ ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΊΠΈ. \n\nΠœΠΎΠΆΠ΅Ρ‚Π΅ Π±ΡƒΡ‚ΠΈ ΠΏΠ΅Π²Π½Ρ–, Ρ‰ΠΎ &aΠ€Ρ‚ΠΎΡ€&r ΠΌΠΎΠΆΠ½Π° &aΠ·Π°Ρ†ΠΈΠΊΠ»ΡŽΠ²Π°Ρ‚ΠΈ&r, Ρ‚ΠΎΠΆ Ρ”Π΄ΠΈΠ½ΠΈΠΌ Π²Ρ…Ρ–Π΄Π½ΠΈΠΌ рСсурсом Π·Π°Π»ΠΈΡˆΠ°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ &eПил ΡƒΡ€Π°Π½Ρ–Π½Ρ–Ρ‚Ρƒ&r. \n\nЦю Π»Ρ–Π½Ρ–ΡŽ ΠΌΠΎΠΆΠ½Π° Π·Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ Π½Π° Π—Π΅ΠΌΠ»Ρ–, Π°Π»Π΅ Π·Ρ€ΡƒΡ‡Π½Ρ–ΡˆΠ΅ Π±ΡƒΠ΄Π΅ розмістити Ρ—Ρ— Π½Π° ΠœΠ°Ρ€ΡΡ–, Π΄Π΅ Π²ΠΈΠ΄ΠΎΠ±ΡƒΠ²Π°Ρ”Ρ‚ΡŒΡΡ Π±Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ ΡƒΡ€Π°Π½Ρ–Π½Ρ–Ρ‚ΠΎΠ²ΠΎΡ— Ρ€ΡƒΠ΄ΠΈ.", + "quests.extreme_voltage.radioactive_waste.title": "Π Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Ρ– Π²Ρ–Π΄Ρ…ΠΎΠ΄ΠΈ", + "quests.extreme_voltage.radioactive_waste.subtitle": "Бміття для ΠΎΠ΄Π½ΠΎΠ³ΠΎ β€” ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» для прогрСсу для Ρ–Π½ΡˆΠΎΠ³ΠΎ", + "quests.extreme_voltage.radioactive_waste.desc": "Π Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Ρ– Π²Ρ–Π΄Ρ…ΠΎΠ΄ΠΈ Ρ” &cΠΊΡ€ΠΈΡ‚ΠΈΡ‡Π½ΠΈΠΌ ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΠΌ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠΌ&r для створСння Π²Π°ΡˆΠΈΡ… наступних ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΡ… стриТнів, Ρ‚ΠΎΠΌΡƒ Π·Π°Π²ΠΆΠ΄ΠΈ пСрСконуйтСся, Ρ‰ΠΎ Ρ” Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ місця для Ρ—Ρ… Π²ΠΈΠ²ΠΎΠ΄Ρƒ. Π―ΠΊΡ‰ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΏΠΎΠ΄Ρ–Π»Ρƒ Π½Π΅ Π·Π½Π°ΠΉΠ΄Π΅ доступного Π²ΠΈΡ…ΠΎΠ΄Ρƒ, Π²Ρ–Π½ просто &cΠ²ΠΈΠ΄Π°Π»ΠΈΡ‚ΡŒ Π²Ρ–Π΄Ρ…ΠΎΠ΄ΠΈ&r, Π²Ρ‚Ρ€Π°Ρ‚ΠΈΠ²ΡˆΠΈ Ρ†Ρ–Π½Π½Ρ– рСсурси. \n\nМи Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ Π°Π±ΠΎ: \n- Встановити ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΈΠΉ Π’ΠΈΡ…Ρ–Π΄Π½ΠΈΠΉ люк Ρƒ &Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΎΠΌΡƒ Ρ€Π΅ΠΆΠΈΠΌΡ–&r \n- Використати Π‘ΡƒΠΏΠ΅Ρ€Π±Π°ΠΊ Ρ–Π· ΠŸΠΎΠΊΡ€ΠΈΡ‚Ρ‚ΡΠΌ Ρ€ΠΎΠ·ΡˆΠΈΡ€Π΅Π½ΠΎΠ³ΠΎ Π΄Π΅Ρ‚Π΅ΠΊΡ‚ΠΎΡ€Π° Ρ€Ρ–Π΄ΠΈΠ½ΠΈ \n\nΠ―ΠΊΡ‰ΠΎ Ρƒ вас Ρ” &dME ΠΌΠ΅Ρ€Π΅ΠΆΠ°&r Π½Π° ΠœΠ°Ρ€ΡΡ–, Ρ–Π½ΡˆΠΈΠΌ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΎΠΌ Ρ” Π½Π΅Ρ‰ΠΎΠ΄Π°Π²Π½ΠΎ Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΈΠΉ &6ME Π²ΠΈΡ…Ρ–Π΄Π½ΠΈΠΉ люк&r.", + "quests.extreme_voltage.uranium_rod.subtitle": "ΠΠ°Ρ€Π΅ΡˆΡ‚Ρ–, справТня ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡΡ‚ΡŒ!", + "quests.extreme_voltage.uranium_rod.desc.1": "Π¦Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ Π΄Ρ€ΡƒΠ³ΠΎΠ³ΠΎ покоління β€” Π²ΠΎΠ½ΠΎ ΠΌΠ°Ρ” &aΠ² 4Γ— Π±Ρ–Π»ΡŒΡˆΡƒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ&r Ρ– виробляє &aΠ² 5Γ— Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΠ°Ρ€ΠΈ&r Ρƒ порівнянні Π·Ρ– стандартним &eΠ’ΠΎΡ€Ρ–Ρ”Π²ΠΈΠΌ стриТнСм&r. ΠŸΡ€ΠΎΡ‚Π΅ Ρ–ΡΠ½ΡƒΡŽΡ‚ΡŒ Π²Π°ΠΆΠ»ΠΈΠ²Ρ– компроміси, які ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π²Ρ€Π°Ρ…ΡƒΠ²Π°Ρ‚ΠΈ. \n\n&9Π’Π°Ρ€Ρ‚Ρ–ΡΡ‚ΡŒ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Ρ‚Π° Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ:&r \nβ€’ Π’ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ ΠΏΠ°Π»ΠΈΠ²Π° постійно споТиває &eΠ’ΠΎΡ€Ρ–Ρ”Π²Ρ– стриТні&r, Ρ‚ΠΎΠΌΡƒ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”Ρ‚ΡŒΡΡ виділяти ΠΎΠΊΡ€Π΅ΠΌΠΈΠΉ &6Π―Π΄Π΅Ρ€Π½ΠΈΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€&r для ΠΊΠΎΠΆΠ½ΠΎΠ³ΠΎ Π· Ρ†ΠΈΡ… удосконалСних стриТнів. Π₯ΠΎΡ‡Π°, якщо Π²ΠΈ Π³ΠΎΡ‚ΠΎΠ²Ρ– Π΄ΠΎ Π²ΠΈΠΊΠ»ΠΈΠΊΡƒ кСрування Π½ΠΈΠΌΠΈ Π² ΠΎΠ΄Π½ΠΎΠΌΡƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ–, Ρ†Π΅ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ.", + "quests.extreme_voltage.uranium_rod.desc.2": "Π’Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ тСпловідвСдСння: Один Π£Ρ€Π°Π½ΠΎΠ²ΠΈΠΉ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ Π³Π΅Π½Π΅Ρ€ΡƒΡ” близько &c435 Ρ‚Π΅ΠΏΠ»Π°&r Ρƒ стандартному Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ–, Ρ‰ΠΎ Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΠ΅Ρ€Π΅Π²ΠΈΡ‰ΡƒΡ” Π±Π°Π·ΠΎΠ²ΠΈΠΉ Π»Ρ–ΠΌΡ–Ρ‚. Π©ΠΎΠ± впоратися Π· Ρ†ΠΈΠΌ, Ρƒ вас Ρ” Ρ‚Ρ€ΠΈ основні Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ: \n\n&7β†’&r &eΠ’ΡΡ‚Π°Π½ΠΎΠ²Ρ–Ρ‚ΡŒ 20 Π±Π»ΠΎΠΊΡ–Π² ΠšΠ°Ρ€ΠΊΠ°ΡΠ½ΠΎΡ— ΠΊΡ€ΠΈΠΆΠ°Π½ΠΎΡ— Π²ΠΎΠ²Π½ΠΈ&r всСрСдині Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°, Ρ‰ΠΎΠ± підняти &cМакс. Ρ‚Π΅ΠΏΠ»ΠΎ&r Π΄ΠΎ &e440&r, Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‡ΠΈ ΠΎΠ΄Π½ΠΎΠΌΡƒ ΡΡ‚Ρ€ΠΈΠΆΠ½ΡŽ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ. \n\n&7β†’&r &6ВикористовуйтС Π’Ρ€ΠΈΠΌΠ°Ρ‡Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²&r Ρ– Π·Π°ΠΊΠ°Ρ‡ΡƒΠΉΡ‚Π΅ Π²Π΅Π»ΠΈΠΊΡ– обсяги &bΠ‘ΡƒΡ…ΠΎΠ³ΠΎ Π»ΡŒΠΎΠ΄Ρƒ&r для зниТСння Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°. Π¦Π΅ Π²ΠΈΠΌΠ°Π³Π°Ρ” Ρ€ΠΎΠ·Π²ΠΈΠ½Π΅Π½ΠΎΡ— інфраструктури Ρ‚Π° доступу Π΄ΠΎ &bΠΆΠΈΠ» Ρ€Ρ–Π΄ΠΈΠ½ΠΈ CO2&r Π½Π° ΠœΠ°Ρ€ΡΡ–. \n\n&7β†’&r &bВикористовуйтС Π₯ΠΎΠ»ΠΎΠ΄ΠΎΠ°Π³Π΅Π½Ρ‚Π½Ρ– Π³Ρ€Π°Π½ΡƒΠ»ΠΈ&r, Ρ€ΠΎΠ·ΠΌΡ–Ρ‰Π΅Π½Ρ– Ρƒ Π’Ρ€ΠΈΠΌΠ°Ρ‡Π°Ρ… ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π². Π’ΠΎΠ½ΠΈ ΠΏΡ€Π°Ρ†ΡŽΡŽΡ‚ΡŒ ΠΏΠΎΠ΄Ρ–Π±Π½ΠΎ Π΄ΠΎ Π‘ΡƒΡ…ΠΎΠ³ΠΎ Π»ΡŒΠΎΠ΄Ρƒ, Π°Π»Π΅ Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡˆΡ–. Π—Π²Π΅Ρ€Π½Ρ–Ρ‚ΡŒ ΡƒΠ²Π°Π³Ρƒ, Ρ‰ΠΎ для створСння Π₯ΠΎΠ»ΠΎΠ΄ΠΎΠ°Π³Π΅Π½Ρ‚Π½ΠΈΡ… Π³Ρ€Π°Π½ΡƒΠ» Π²ΠΈΡ‚Ρ€Π°Ρ‡Π°Ρ”Ρ‚ΡŒΡΡ Ρ‡ΠΈΠΌΠ°Π»Π° ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ &eΠ€Ρ‚ΠΎΡ€Ρƒ&r, Ρ– Π½Π° Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– Ρƒ вас Π½Π΅ΠΌΠ°Ρ” ΠΉΠΎΠ³ΠΎ нСскінчСнного запасу. \n\nЗвісно, Π²ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ власний мікс Ρ– ΠΏΠΎΡ”Π΄Π½Π°Ρ‚ΠΈ всі Ρ†Ρ– Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ.", + "quests.extreme_voltage.uranium_rod.desc.3": "&cΠ’Π°ΠΆΠ»ΠΈΠ²Π° ΠΏΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ° Ρ‰ΠΎΠ΄ΠΎ Π£Ρ€Π°Π½ΠΎΠ²ΠΈΡ… ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΡ… стриТнів:&r Π Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΈ, Ρ‰ΠΎ ΠΏΡ€Π°Ρ†ΡŽΡŽΡ‚ΡŒ Π½Π° &eΠ£Ρ€Π°Π½ΠΎΠ²ΠΈΡ… стриТнях&r, ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ Π·Π½Π°Ρ‡Π½ΠΎ Π±Ρ–Π»ΡŒΡˆΠΎΠ³ΠΎ запасу &bΠ’Π°ΠΆΠΊΠΎΡ— Π²ΠΎΠ΄ΠΈ&r для охолодТСння. ΠŸΠ΅Ρ€Π΅ΠΊΠΎΠ½Π°ΠΉΡ‚Π΅ΡΡ, Ρ‰ΠΎ Ρƒ вас Ρ” достатнє Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ Π°Π±ΠΎ сховищС Π’Π°ΠΆΠΊΠΎΡ— Π²ΠΎΠ΄ΠΈ, ΠΏΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ запускати Ρ†Ρ– стриТні, Ρ–Π½Π°ΠΊΡˆΠ΅ ваш Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Π΄ΡƒΠΆΠ΅ швидко досягнС ΠΊΡ€ΠΈΡ‚ΠΈΡ‡Π½ΠΈΡ… ΠΌΠ΅ΠΆ охолодТСння. \n\nΠ Π΅Ρ‚Π΅Π»ΡŒΠ½ΠΎ ΠΏΠ»Π°Π½ΡƒΠΉΡ‚Π΅ свої Π»Ρ–Π½Ρ–Ρ— постачання Ρ‚Π° ΡΡ‚Ρ€Π°Ρ‚Π΅Π³Ρ–ΡŽ охолодТСння β€” Ρ†Ρ– Π²ΠΈΠ΄ΠΈ ΠΏΠ°Π»ΠΈΠ²Π° ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–, Π°Π»Π΅ Π²ΠΎΠ½ΠΈ Π²ΠΈΠΌΠ°Π³Π°ΡŽΡ‚ΡŒ сСрйозної інфраструктури.", + "quests.extreme_voltage.uranium_waste.title": "Π£Ρ€Π°Π½ΠΎΠ²Ρ– Π²Ρ–Π΄Ρ…ΠΎΠ΄ΠΈ Ρ‚Π° Π Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Π° ΠΏΠ°Ρ€Π°", + "quests.extreme_voltage.uranium_waste.subtitle": "Π’ΠΈ Π²Π³Π°Π΄Π°Π»ΠΈ, Ρ‰Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΊΠΈ", + "quests.extreme_voltage.uranium_waste.desc.1": "ΠŸΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ Π²Ρ–Π΄ &eΠ£Ρ€Π°Π½ΠΎΠ²ΠΈΡ… ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΡ… стриТнів&r Ρ‚Ρ€ΠΎΡ…ΠΈ ΡΠΊΠ»Π°Π΄Π½Ρ–ΡˆΡ–, Π½Ρ–ΠΆ Ρƒ Ρ‚ΠΎΡ€Ρ–ΡŽ. \n\n&6β€’ Π£Ρ€Π°Π½ΠΎΠ²Ρ– Π²Ρ–Π΄Ρ…ΠΎΠ΄ΠΈ&r β€” Ρ†Π΅ сировина, Π· якої ΠΏΠΎΡ‡ΠΈΠ½Π°Ρ”Ρ‚ΡŒΡΡ &dЛінія ΠΏΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΡŽ&r. Π‡Ρ… ΠΌΠΎΠΆΠ½Π° обробляти ΠΎΠ΄Ρ€Π°Π·Ρƒ. \n\n&6β€’ Π Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Π° ΠΏΠ°Ρ€Π°&r, Π½Π° Π²Ρ–Π΄ΠΌΡ–Π½Ρƒ Π²Ρ–Π΄ Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎΡ—, ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ Ρƒ &6Π’Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΡ–Π½Π½ΠΈΠΊΡƒ&r. ΠŸΡ€ΠΎΠΏΡƒΡΡ‚Ρ–Ρ‚ΡŒ Ρ€Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Ρƒ ΠΏΠ°Ρ€Ρƒ Ρ‡Π΅Ρ€Π΅Π· Π’Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΡ–Π½Π½ΠΈΠΊ, Ρ‰ΠΎΠ± Π²Ρ–Π΄Π½ΠΎΠ²ΠΈΡ‚ΠΈ ΠŸΠ°Ρ€Ρƒ високого тиску.", + "quests.extreme_voltage.uranium_waste.desc.2": "ΠšΡ€Ρ–ΠΌ Ρ‚ΠΎΠ³ΠΎ, ваша Π Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Π° ΠΏΠ°Ρ€Π° ΠΏΠΎΠ²ΠΈΠ½Π½Π° Π½Π°Π³Ρ€Ρ–Π²Π°Ρ‚ΠΈ &eΠ€ΠΎΡ€ΠΌΡ–Π°Ρ‚ Π°ΠΌΠΎΠ½Ρ–ΡŽ&r Π΄ΠΎ &eΠ€ΠΎΡ€ΠΌΠ°ΠΌΡ–Π΄Ρƒ&r, який Ρ” ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΈΠΌ ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΠΈΠΊΠΎΠΌ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° ΠΏΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΎΠ³ΠΎ ΠΏΠ°Π»ΠΈΠ²Π°. Π¦Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ ΠΏΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°Π΄Ρ–ΠΉΠ½ΠΎ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ ΠŸΠ°Ρ€Ρƒ високого тиску Π· Π£Ρ€Π°Π½ΠΎΠ²ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ—, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΎ Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΠΈ Π±Π΅Π·ΠΏΠ΅Ρ€Π΅Ρ€Π²Π½Π΅ постачання &eΠ€ΠΎΡ€ΠΌΡ–Π°Ρ‚Ρƒ Π°ΠΌΠΎΠ½Ρ–ΡŽ&r для Ρ†ΡŒΠΎΠ³ΠΎ Π»Π°Π½Ρ†ΡŽΠ³Π° пСрСтворСння. \n\n&cΠŸΡ€Π°ΠΊΡ‚ΠΈΡ‡Π½Π° ΠΏΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°:&r ΠΠ°Π»Π°ΡˆΡ‚ΡƒΠΉΡ‚Π΅ ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½Ρƒ, Π±Π΅Π·ΠΏΠ΅Ρ€Π΅Ρ€Π²Π½Ρƒ Π»Ρ–Π½Ρ–ΡŽ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &eΠ€ΠΎΡ€ΠΌΡ–Π°Ρ‚Ρƒ Π°ΠΌΠΎΠ½Ρ–ΡŽ&r. Π‘Π΅Π· ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½ΠΎΠ³ΠΎ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π€ΠΎΡ€ΠΌΡ–Π°Ρ‚Ρƒ Π°ΠΌΠΎΠ½Ρ–ΡŽ ваш ΠΏΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΈΠΉ Ρ†ΠΈΠΊΠ» Ρ– Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ ΠŸΠ°Ρ€ΠΈ високого тиску Π·ΡƒΠΏΠΈΠ½ΡΡ‚ΡŒΡΡ.", + "quests.extreme_voltage.ammonium_formate.title": "Π€ΠΎΡ€ΠΌΡ–Π°Ρ‚ ΠΠΌΠΎΠ½Ρ–ΡŽ", + "quests.extreme_voltage.ammonium_formate.subtitle": "Π—Π°Π²ΠΆΠ΄ΠΈ Ρ‚Ρ€ΠΈΠΌΠ°ΠΉΡ‚Π΅ запас!", + "quests.extreme_voltage.ammonium_formate.desc": "ΠœΠΎΠΆΠ»ΠΈΠ²Ρ–ΡΡ‚ΡŒ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ нСскінчСнний &eΠ€ΠΎΡ€ΠΌΡ–Π°Ρ‚ Π°ΠΌΠΎΠ½Ρ–ΡŽ&r Ρ” ΠΎΠ±ΠΎΠ²β€™ΡΠ·ΠΊΠΎΠ²ΠΎΡŽ для забСзпСчСння ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½ΠΎΠ³ΠΎ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ—, Π°Π΄ΠΆΠ΅ Π±Π΅Π· нього Π²ΠΈ Π½Π΅ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ пСрСробляти &bΠ Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Ρƒ ΠΏΠ°Ρ€Ρƒ&r Ρƒ ΠŸΠ°Ρ€Ρƒ високого тиску. На щастя, Ρ†Π΅ Π½Π΅ Π΄ΡƒΠΆΠ΅ складно! \n\nΠ‘ΠΏΠ΅Ρ€ΡˆΡƒ, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ &eΠœΡƒΡ€Π°ΡˆΠΈΠ½Ρƒ кислоту&r, просто ΠΏΠΎΡ”Π΄Π½Π°ΠΉΡ‚Π΅ COβ‚‚, який ΠΌΠΎΠΆΠ½Π° Π΄ΠΎΠ±ΡƒΡ‚ΠΈ Π· атмосфСри ΠœΠ°Ρ€ΡΠ°, Π· водою Π· Водяного акумулятора. \n\nΠ”Π°Π»Ρ–, для &eАмоніаку&r, просто Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·ΡƒΠΉΡ‚Π΅ &eПил Ρ…Π»ΠΎΡ€ΠΈΠ΄Ρƒ Π°ΠΌΠΎΠ½Ρ–ΡŽ&r, який Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ після цСнтрифугування (Напів) Π²Π°ΠΆΠΊΠΎΡ— Π°ΠΌΡ–Π°Ρ‡Π½ΠΎΡ— Π²ΠΎΠ΄ΠΈ. \n\nΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅ надлишок &bКисню&r Ρ‚Π° &bΠ₯Π»ΠΎΡ€ΠΎΠ²ΠΎΠ΄Π½Π΅Π²ΠΎΡ— кислоти&r, обов’язково ΡƒΡ‚ΠΈΠ»Ρ–Π·ΡƒΠΉΡ‚Π΅ Ρ†Ρ– Ρ€Ρ–Π΄ΠΈΠ½ΠΈ ΠΏΡ€ΠΈ ΠΏΠ΅Ρ€Π΅Π²ΠΈΡ‰Π΅Π½Π½Ρ– ΠΏΠΎΡ€ΠΎΠ³Ρƒ, Ρ‰ΠΎΠ± Π²ΠΎΠ½ΠΈ Π½Π΅ Π·Π°Π±Π»ΠΎΠΊΡƒΠ²Π°Π»ΠΈ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ &eΠ€ΠΎΡ€ΠΌΡ–Π°Ρ‚Ρƒ Π°ΠΌΠΎΠ½Ρ–ΡŽ&r.", + "quests.extreme_voltage.nuclear_residue_dust.title": "Пил ядСрних Π·Π°Π»ΠΈΡˆΠΊΡ–Π²", + "quests.extreme_voltage.nuclear_residue_dust.subtitle": "О, Ρ‚Π°ΠΊ ось Π·Π²Ρ–Π΄ΠΊΠΈ Π±Π΅Ρ€Π΅Ρ‚ΡŒΡΡ Π Π°Π΄ΠΎΠ½", + "quests.extreme_voltage.nuclear_residue_dust.desc": "ΠžΡ‚Ρ€ΠΈΠΌΠ°Π½Π½Ρ &eΠŸΠΈΠ»Ρƒ ядСрного Π·Π°Π»ΠΈΡˆΠΊΡƒ&r β€” Ρ†Π΅ ΠΏΠ΅Ρ€ΡˆΠΈΠΉ ΠΊΡ€ΠΎΠΊ Ρƒ &dΠ›Ρ–Π½Ρ–Ρ— ΠΏΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΡŽ&r. \nДля ΠΉΠΎΠ³ΠΎ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° ΠΏΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ &5EV Π“Π°Π·ΠΎΠ²ΠΈΠΉ прСс&r Π½Π° ΠœΠ°Ρ€ΡΡ–. \n\nΠ£ процСсі Ρ‚Π°ΠΊΠΎΠΆ ΡƒΡ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ &bΠ Π°Π΄ΠΎΠ½&r як ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΠΉ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚, Ρ– Ρ…ΠΎΡ‡Π° Π²Ρ–Π½ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π²Π°ΠΌ Π½Π° наступних Π΅Ρ‚Π°ΠΏΠ°Ρ…, надлишок Ρ–Π· Ρ†Ρ–Ρ”Ρ— Π»Ρ–Π½Ρ–Ρ— Π±ΡƒΠ΄Π΅ Π·Π½Π°Ρ‡Π½ΠΈΠΌ. Π¦Π΅ Π±ΡƒΠ΄Π΅ вашим Ρ”Π΄ΠΈΠ½ΠΈΠΌ Π½Π°Π΄Ρ–ΠΉΠ½ΠΈΠΌ Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎΠΌ Π Π°Π΄ΠΎΠ½Ρƒ Π½Π° Π΄Π°Π½ΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ–. \n\nНа щастя, &eΠ―Π΄Π΅Ρ€Π½ΠΈΠΉ залишок&r Π½Π΅ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” складного Ρ†ΠΈΠΊΠ»Ρƒ: просто ΠΏΠΎΠ΄Π°ΠΉΡ‚Π΅ Π²ΠΈΡ…Ρ–Π΄Π½Ρ– ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ Π· вашого Π£Ρ€Π°Π½ΠΎΠ²ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° Ρ‚Π° Π’Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΡ–Π½Π½ΠΈΠΊΠ°, Π΄ΠΎΠ΄Π°ΠΉΡ‚Π΅ &eΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΈΠΉ ΠΌΡƒΠ»&r, Ρ– &6Π“Π°Π·ΠΎΠ²ΠΈΠΉ прСс&r Π²ΠΈΡ€ΠΎΠ±ΠΈΡ‚ΡŒ Пил ядСрного Π·Π°Π»ΠΈΡˆΠΊΡƒ. Π’ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΠ΄Ρ€Π°Π·Ρƒ ΠΏΡ€ΠΎΠ΄ΠΎΠ²ΠΆΠΈΡ‚ΠΈ ΠΏΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΈΠΉ Π»Π°Π½Ρ†ΡŽΠ³.", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.subtitle": "Π©ΠΎ Ρ†Π΅ Π·Π° Π΄ΠΈΠ²Π½Π° ΡΡƒΠΌΡ–Ρˆ?", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.desc.1": "Π¦Π΅ΠΉ наступний ΠΊΡ€ΠΎΠΊ Ρ” ΠΏΠΎΡ‡Π°Ρ‚ΠΊΠΎΠΌ числСнних Ρ†ΠΈΠΊΠ»Ρ–Π², Ρ‰ΠΎ ΠΎΡ‚ΠΎΡ‡ΡƒΡŽΡ‚ΡŒ &dΠ›Ρ–Π½Ρ–ΡŽ ΠΏΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΡŽ&r. \n\nΠ©ΠΎΠ± створити &bОкислСний ΠΏΠΈΠ» ядСрного Π·Π°Π»ΠΈΡˆΠΊΡƒ&r, Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ &bДіоксигСн Π΄ΠΈΡ„Ρ‚ΠΎΡ€ΠΈΠ΄&r. На щастя, Π²Ρ–Π΄ вас Π½Π΅ Π²ΠΈΠΌΠ°Π³Π°Ρ”Ρ‚ΡŒΡΡ нСскінчСнна ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π€Ρ‚ΠΎΡ€Ρƒ, Π°Π΄ΠΆΠ΅ для Π±Π΅Π·ΠΏΠ΅Ρ€Π΅Ρ€Π²Π½ΠΎΡ— Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Ρ†ΡŒΠΎΠ³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° Π²ΠΈ Π·Π³ΠΎΠ΄ΠΎΠΌ Π²Ρ–Π΄Π½ΠΎΠ²ΠΈΡ‚Π΅ Π€Ρ‚ΠΎΡ€ Ρƒ вигляді &bΠŸΠ»Π°Π²ΠΈΠΊΠΎΠ²ΠΎΡ— кислоти&r, яку ΠΌΠΎΠΆΠ½Π° Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ.", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.desc.2": "ΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ Π·Π°ΠΉΠΌΠ°ΡŽΡ‚ΡŒ Π±Π°Π³Π°Ρ‚ΠΎ часу, ΠΌΠΈ всС ΠΆ Ρ€Π°Π΄ΠΈΠΌΠΎ ΠΏΡ–Π΄Π³ΠΎΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΉ стартовий запас Π€Ρ‚ΠΎΡ€Ρƒ, Ρ‰ΠΎΠ± запустити Ρ†ΠΈΠΊΠ». \n\nΠ―ΠΊ Π·Π°Π²ΠΆΠ΄ΠΈ, ΠΏΡ–Π΄ час Ρ†ΡŒΠΎΠ³ΠΎ Ρ†ΠΈΠΊΠ»Ρƒ Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΡƒΠ²Π°ΠΆΠ½Ρ– Π·Ρ– збСріганням: ΠΏΠΎΠ²Π½ΠΈΠΉ Π±Π°ΠΊ Π°Π±ΠΎ Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΈΠΉ Π±ΡƒΡ„Π΅Ρ€ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π·ΡƒΠΏΠΈΠ½ΠΈΡ‚ΠΈ всю Π²Π°ΡˆΡƒ Π»Ρ–Π½Ρ–ΡŽ, Π° Π»Π΅Ρ‚Ρ–Ρ‚ΠΈ Π½Π° ΠœΠ°Ρ€Ρ, Ρ‰ΠΎΠ± Ρ†Π΅ Π²ΠΈΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ, Π±ΡƒΠ΄Π΅ Π΄ΠΎΠ²ΠΎΠ»Ρ– ΠΊΠ»ΠΎΠΏΡ–Ρ‚Π½ΠΎ. &aΠ‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€ΠΈ&r Π°Π±ΠΎ Π±Ρ–Π»ΠΈΠΉ список &aAE2 дисків&r Π· Π°ΠΏΠ³Ρ€Π΅ΠΉΠ΄Π°ΠΌΠΈ Π½Π° ΡƒΡ‚ΠΈΠ»Ρ–Π·Π°Ρ†Ρ–ΡŽ β€” корисні Ρ€Ρ–ΡˆΠ΅Π½Π½Ρ. \n\nΠ—Π²Π΅Ρ€Π½Ρ–Ρ‚ΡŒ ΡƒΠ²Π°Π³Ρƒ, Ρ‰ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Ρ‚Π°ΠΊΠΎΠΆ виробляє &eΠ—Π°Π»ΠΈΡˆΠΊΠΎΠ²Ρƒ Ρ€Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Ρƒ ΡΡƒΠΌΡ–Ρˆ&r. НамагайтСся Π½Π΅ ΡƒΡ‚ΠΈΠ»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ Ρ—Ρ—, Π°Π΄ΠΆΠ΅ Π²ΠΎΠ½Π° станС корисним ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΎΠΌ для ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½Ρ–Ρ… систСм, Ρ‚Π°ΠΊΠΈΡ… як &6Π›Ρ–Π½Ρ–ΠΉΠ½ΠΈΠΉ ΠΏΡ€ΠΈΡΠΊΠΎΡ€ΡŽΠ²Π°Ρ‡ Π· ΠžΡΡ‚Ρ€ΡƒΠΌΡƒ&r (нСскінчСнні Ρ€ΡƒΠ΄ΠΈ Π· ΠœΠ°Ρ€ΡΠ°), &6ΠšΠ°ΠΌΠ΅Ρ€Π° росту&r (ΠΏΠ΅Ρ€ΡˆΡ– ΠΊΡ€ΠΎΠΊΠΈ Π² Π±Ρ–ΠΎΡ–Π½ΠΆΠ΅Π½Π΅Ρ€Ρ–Ρ—) Ρ‚Π° Π½Π°Π²Ρ–Ρ‚ΡŒ &6Π―Π΄Π΅Ρ€Π½Ρ– Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΈ&r ΠΏΠΎΠ·Π° ΠœΠ°Ρ€ΡΠΎΠΌ.", + "quests.extreme_voltage.refined_nuclear_dust.subtitle": "О, Ρ‚Π°ΠΊ ось ΠΊΡƒΠ΄ΠΈ подівся ΠΌΡ–ΠΉ Π€Ρ‚ΠΎΡ€", + "quests.extreme_voltage.refined_nuclear_dust.desc": "&eΠžΡ‡ΠΈΡ‰Π΅Π½ΠΈΠΉ ΠΏΠΈΠ» ядСрного Π·Π°Π»ΠΈΡˆΠΊΡƒ&r дозволяє Π²Ρ–Π΄Π½ΠΎΠ²ΠΈΡ‚ΠΈ Π€Ρ‚ΠΎΡ€ Ρƒ вигляді ΠŸΠ»Π°Π²ΠΈΠΊΠΎΠ²ΠΎΡ— кислоти, Ρ‰ΠΎΠ± Π²ΠΈ ΠΌΠΎΠ³Π»ΠΈ ΠΏΠΎΠ²Π΅Ρ€Π½ΡƒΡ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π½Π°Π·Π°Π΄ Ρƒ &bДіоксигСн Π΄ΠΈΡ„Ρ‚ΠΎΡ€ΠΈΠ΄&r. \n\nΠ’ΠΈ Π²ΠΆΠ΅ ΠΏΠΎΠ²ΠΈΠ½Π½Ρ– Π·Π½Π°Ρ‚ΠΈ, як Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π”ΠΈΡΡ‚ΠΈΠ»ΡŒΠΎΠ²Π°Π½Ρƒ Π²ΠΎΠ΄Ρƒ, Ρ– Π½Π΅ Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΡƒΡ‚ΠΈΠ»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ надлишок Кисню, якщо Π²Π°ΠΌ Π½Ρ–Π΄Π΅ ΠΉΠΎΠ³ΠΎ Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ. \n\nΠ¦Π΅ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π΄ΡƒΠΆΠ΅ ΠΏΠΎΠ²Ρ–Π»ΡŒΠ½ΠΈΠΉ. Π―ΠΊΡ‰ΠΎ Π²ΠΈ Π²ΠΏΠ΅Π²Π½Π΅Π½Ρ– Ρƒ своїх Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… моТливостях, Ρ€ΠΎΠ·Π³Π»ΡΠ½ΡŒΡ‚Π΅ ΠΌΠΎΠΆΠ»ΠΈΠ²Ρ–ΡΡ‚ΡŒ запуску ΠΉΠΎΠ³ΠΎ Ρƒ &6Π’Π΅Π»ΠΈΠΊΡ–ΠΉ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ·Ρ–&r, Ρ‰ΠΎΠ± ΠΏΡ€ΠΈΡˆΠ²ΠΈΠ΄ΡˆΠΈΡ‚ΠΈ процСс. АлС Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½Ρ– β€” Π½Π΅ Π²Π°Ρ€Ρ‚ΠΎ виснаТувати Π·Π°Π½Π°Π΄Ρ‚ΠΎ Π±Π°Π³Π°Ρ‚ΠΎ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π½Π° Ρ€Π°Π½Π½Ρ–Ρ… Π΅Ρ‚Π°ΠΏΠ°Ρ… вашого прогрСсу.", + "quests.extreme_voltage.plutonium.title": "ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΠΉ", + "quests.extreme_voltage.plutonium.subtitle": "Подивись Π½Π° Ρ†ΡŽ Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½Ρƒ Π°Ρ‚ΠΎΠΌΠ½Ρƒ масу", + "quests.extreme_voltage.plutonium.desc": "Π’ΠΈ Π½Π°Ρ€Π΅ΡˆΡ‚Ρ– дісталися Π΄ΠΎ ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΡŽ! Π™ΠΎΠ³ΠΎ Ρ”Π΄ΠΈΠ½Π΅ ΠΏΡ€Π°ΠΊΡ‚ΠΈΡ‡Π½Π΅ застосування Π½Π° Π΄Π°Π½ΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– β€” Ρ†Π΅ створСння &dΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΈΡ… ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΡ… стриТнів&r, Ρ‚ΠΎΠΆ Π½Π΅ Π²Π°Ρ€Ρ‚ΠΎ Π½Π°ΠΊΠΎΠΏΠΈΡ‡ΡƒΠ²Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π±Π΅Π· ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈ. \n\nΠ‘ΡƒΠ΄ΡŒ-яку Π½Π°Π΄Π»ΠΈΡˆΠΊΠΎΠ²Ρƒ ΠΏΠ°Ρ€Ρƒ ΠΌΠΎΠΆΠ½Π° ΡƒΡ‚ΠΈΠ»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ Π°Π±ΠΎ використати Ρƒ Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρ–ΠΉ ΠΏΠ°Ρ€ΠΎΠ²Ρ–ΠΉ Ρ‚ΡƒΡ€Π±Ρ–Π½Ρ–, Π°Π»Π΅ &6Π―Π΄Π΅Ρ€Π½Π° ΠΏΠ°Ρ€ΠΎΠ²Π° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°&r Ρ†ΡŽ ΠΏΠ°Ρ€Ρƒ Π½Π΅ ΠΏΡ€ΠΈΠΉΠΌΠ΅. \n\nΠ―ΠΊΡ‰ΠΎ Π²ΠΈ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π²Ρ–Π΄Π½ΠΎΠ²ΠΈΡ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ, спрямуйтС надлишок Ρƒ Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρ– ΠΏΠ°Ρ€ΠΎΠ²Ρ– Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΈ; Ρ–Π½Π°ΠΊΡˆΠ΅ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ ΡƒΡ‚ΠΈΠ»Ρ–Π·ΡƒΠΉΡ‚Π΅ ΠΉΠΎΠ³ΠΎ, Ρ‰ΠΎΠ± ΡƒΠ½ΠΈΠΊΠ½ΡƒΡ‚ΠΈ Π±Π»ΠΎΠΊΡƒΠ²Π°Π½ΡŒ.", + "quests.extreme_voltage.plutonium_rod.subtitle": "Колись Ρƒ ΠΌΠ΅Π½Π΅ Π±ΡƒΠ»Π° ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠ° Π· Π΅Π½Π΅Ρ€Π³Ρ–Ρ”ΡŽ", + "quests.extreme_voltage.plutonium_rod.desc.1": "Π”Π°Π²Π°ΠΉΡ‚Π΅ Π±ΡƒΠ΄Π΅ΠΌΠΎ Π²Ρ–Π΄Π²Π΅Ρ€Ρ‚ΠΈΠΌΠΈ: &dΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΈΠΉ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ&r ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ справТнім ΠΊΠ»ΠΎΠΏΠΎΡ‚ΠΎΠΌ Ρƒ Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ–, Π°Π»Π΅ Ρ†Π΅ справТній &aмонстр Π΅Π½Π΅Ρ€Π³Ρ–Ρ—&r. Π’Ρ–Π½ виробляє ΠΌΠ°ΠΉΠΆΠ΅ &eΠ² 4 Ρ€Π°Π·ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠŸΠ°Ρ€ΠΈ високого тиску&r, Π½Ρ–ΠΆ Π£Ρ€Π°Π½ΠΎΠ²ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ, Ρ‰ΠΎ Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ ΠΉΠΎΠ³ΠΎ Ρ–Π΄Π΅Π°Π»ΡŒΠ½ΠΈΠΌ для ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ Π²Π°ΡˆΠΎΡ— ΠΌΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΎΡ— інфраструктури, Π½Π°Π²Ρ–Ρ‚ΡŒ якщо Π²ΠΈ запускаєтС ΠΉΠΎΠ³ΠΎ Ρ€Ρ–Π΄ΡˆΠ΅.", + "quests.extreme_voltage.plutonium_rod.desc.2": "Однак ΠΉΠΎΠ³ΠΎ &cΠ²Π΅Π»ΠΈΡ‡Π΅Π·Π½Π΅ Ρ‚Π΅ΠΏΠ»ΠΎ&r ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ сСрйозну ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΡƒ. Π”ΠΎΡΡΠ³Π°ΡŽΡ‡ΠΈ Π°ΠΆ &6595 Ρ‚Π΅ΠΏΠ»Π°&r, Π½Π°Ρ€Π°Π·Ρ– Π½Π΅ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ запускати ΠΉΠΎΠ³ΠΎ Π±Π΅Π· &bΠ₯ΠΎΠ»ΠΎΠ΄ΠΎΠ°Π³Π΅Π½Ρ‚Π½ΠΈΡ… Π³Ρ€Π°Π½ΡƒΠ»&r. ΠŸΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒΡ‚Π΅ завдання ΠΏΡ€Π°Π²ΠΎΡ€ΡƒΡ‡, Ρ‰ΠΎΠ± дізнатися Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΡ€ΠΎ Ρ†Π΅ΠΉ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π», який ΠΌΠΎΠΆΠ½Π° вставити Ρƒ &6Π’Ρ€ΠΈΠΌΠ°Ρ‡ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²&r. \n\nΠ”ΠΎΠ±Ρ€Π° Π½ΠΎΠ²ΠΈΠ½Π°? Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ стабілізувати Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ лишС Π· &61 Π’Ρ€ΠΈΠΌΠ°Ρ‡Π΅ΠΌ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²&r, знизивши Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ Π΄ΠΎ &e430 Ρ‚Π΅ΠΏΠ»Π°&r, Ρ‰ΠΎ ΠΌΠΎΠΆΠ½Π° ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŽΠ²Π°Ρ‚ΠΈ Π·Π° допомогою &fΠšΠ°Ρ€ΠΊΠ°ΡΠ½ΠΎΡ— ΠΊΡ€ΠΈΠΆΠ°Π½ΠΎΡ— Π²ΠΎΠ²Π½ΠΈ&r. Π’ Ρ–Π½ΡˆΠΎΠΌΡƒ Π²ΠΈΠΏΠ°Π΄ΠΊΡƒ &62 Π’Ρ€ΠΈΠΌΠ°Ρ‡Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²&r ΠΏΠΎΠ²ΠΈΠ½Π½Ρ– ΡƒΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ ΠΏΡ–Π΄ ΠΏΠΎΠ²Π½ΠΈΠΌ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π΅ΠΌ.", + "quests.extreme_voltage.tritiated_water.title": "Π’Ρ€ΠΈΡ‚Ρ–ΠΉΠΎΠ²Π°Π½Π° Π²ΠΎΠ΄Π°", + "quests.extreme_voltage.tritiated_water.subtitle": "Π Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Π° Π²ΠΎΠ΄Π°? Π’Π° всС Ρ‚ΡƒΡ‚ Ρ€Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Π΅?", + "quests.extreme_voltage.tritiated_water.desc": "Ця &bΠ Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Π° Π²ΠΎΠ΄Π°&r β€” ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΈΠΉ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &eНанопроцСсорних пластин&r Ρ– Π·Ρ€Π΅ΡˆΡ‚ΠΎΡŽ Π²Π°ΡˆΠΈΡ… &6ΠΏΠ΅Ρ€ΡˆΠΈΡ… IV‑схСм&r. \n\nΠ’ΠΎΠ½Π° Ρ‚Π°ΠΊΠΎΠΆ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Π² Π›Ρ–Π½Ρ–ΠΉΠ½ΠΎΠΌΡƒ ΠΏΡ€ΠΈΡΠΊΠΎΡ€ΡŽΠ²Π°Ρ‡Ρ– Π· ΠžΡΡ‚Ρ€ΡƒΠΌΡƒ Ρ‚Π° ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·ΠΎΠ²Π°Π½Π° Π² &6Π’Ρ€ΠΈΡ‚Ρ–ΠΉ&r, Ρ…ΠΎΡ‡Π° Π²Π°ΠΌ Ρ†Π΅ Π½Π΅ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Ρ‰Π΅ Π΄ΠΎΠ²Π³ΠΈΠΉ час. \n\n&cΠ‘ΡƒΠ΄ΡŒΡ‚Π΅ Π²ΠΊΡ€Π°ΠΉ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½Ρ–&r: &bΠ’Ρ€ΠΈΡ‚Ρ–Ρ”Π²Π° Π²ΠΎΠ΄Π°&r Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ Ρ†Ρ–Π½Π½Π°, Ρ‚ΠΎΠΆ Π½Π΅ Π²Ρ‚Ρ€Π°Ρ‚ΡŒΡ‚Π΅ ΠΆΠΎΠ΄Π½ΠΎΡ— ΠΊΡ€Π°ΠΏΠ»Ρ–!", + "quests.extreme_voltage.nano_cpu_wafer.subtitle": "Π—Π²ΡƒΡ‡ΠΈΡ‚ΡŒ як Ρ€Π΅ΠΊΠ»Π°ΠΌΠ°", + "quests.extreme_voltage.nano_cpu_wafer.desc": "&dНанопроцСсорна пластина&r β€” Ρ†Π΅ ваш пропуск Π΄ΠΎ IV‑схСм, Π° Ρ‚Π°ΠΊΠΎΠΆ Π΄ΠΎ &b64k ΠΊΠΎΠΌΡ–Ρ€ΠΎΠΊ збСрігання AE2&r. \n\nΠ’Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½Π° ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Ρ†ΠΈΡ… схСм, Π°Π΄ΠΆΠ΅ Π²Ρ–Π΄Ρ‚Π΅ΠΏΠ΅Ρ€ Π²ΠΎΠ½ΠΈ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ ΠΌΠ°ΠΉΠΆΠ΅ Π² ΠΊΠΎΠΆΠ½ΠΎΠΌΡƒ вдосконалому Ρ€Ρ–Π²Π½Ρ– схСм β€” як ΠΏΡ€ΠΈ &eΠΎΠ½ΠΎΠ²Π»Π΅Π½Ρ– самої пластини&r, Ρ‚Π°ΠΊ Ρ– ΠΏΡ€ΠΈ створСнні &aΠ½Π°ΠΉΠ²ΠΈΡ‰ΠΈΡ… вСрсій схСм&r. \n\nΠ’ΠΎΠ½ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– для Π²Π°ΡˆΠΈΡ… &6IV Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ&r, &dΠ›Π°ΠΏΠΎΡ‚Ρ€ΠΎΠ½Π½ΠΈΡ… Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… сфСр&r. \n\nДля Π΄ΠΎΠ²Ρ–Π΄ΠΊΠΈ: &b1 ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΈΠΉ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ&r Π²ΠΈΡ€ΠΎΠ±ΠΈΡ‚ΡŒ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ Π’Ρ€ΠΈΡ‚Ρ–Ρ”Π²ΠΎΡ— Π²ΠΎΠ΄ΠΈ для &eΡ€Ρ–Π²Π½ΠΎ 9 НанопроцСсорних пластин&r.", + "quests.extreme_voltage.first_iv_circuit.title": "ΠœΠ΅ΠΉΠ½Ρ„Ρ€Π΅ΠΉΠΌΠΈ β€” Ρ†Π΅ ΠΏΠ΅Ρ€ΡˆΡ– IV схСми!", + "quests.extreme_voltage.first_iv_circuit.subtitle": "Ми Π²ΠΆΠ΅ Π·Π°ΠΊΡ–Π½Ρ‡ΠΈΠ»ΠΈ Π· EV?", + "quests.extreme_voltage.first_iv_circuit.desc": "ΠΠ°Ρ€Π΅ΡˆΡ‚Ρ–, після всього Ρ†ΡŒΠΎΠ³ΠΎ часу, Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π»ΠΈ Π½ΠΎΠ²Ρƒ схСму Ρ‚Π° Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΠ²Π°Π»ΠΈ Π°Π±ΡΠΎΠ»ΡŽΡ‚Π½ΠΎ Π½ΠΎΠ²ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ. Π’Π΅ΠΏΠ΅Ρ€ ΠΏΠ΅Ρ€Π΅Π΄ Π²Π°ΠΌΠΈ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΎ Π±Π°Π³Π°Ρ‚ΠΎ моТливостСй, Π°Π»Π΅ вашим Π³ΠΎΠ»ΠΎΠ²Π½ΠΈΠΌ ΠΏΡ€Ρ–ΠΎΡ€ΠΈΡ‚Π΅Ρ‚ΠΎΠΌ ΠΌΠ°Ρ” стати &6IV Π—Π±ΠΈΡ€Π°Ρ‡&r, Π°Π΄ΠΆΠ΅ Π²Ρ–Π½ Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ створити &eΠšΠ°Ρ€ΠΊΠ°ΡΠ½Π΅ ΠΏΠΎΠΌΡ–Ρ€Π½Π΅ ядро&r, якС Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΡ–Π΄Π²ΠΈΡ‰ΡƒΡ” &cМакс. Ρ‚Π΅ΠΏΠ»ΠΎ&r вашого Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°, ΡƒΡΡƒΠ²Π°ΡŽΡ‡ΠΈ ΠΏΠΎΡ‚Ρ€Π΅Π±Ρƒ Π² Π₯ΠΎΠ»ΠΎΠ΄ΠΎΠ°Π³Π΅Π½Ρ‚Π½ΠΈΡ… Π³Ρ€Π°Π½ΡƒΠ»Π°Ρ…. \n\nΠ’ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ &5EV Π‘Ρ…Π΅ΠΌΠΎΡ‚ΠΎΡ‚Π΅Ρ…Π½Ρ–Ρ‡Π½ΠΈΠΉ Π·Π±ΠΈΡ€Π°Ρ‡&r, Ρ‰ΠΎΠ± Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΠ²Π°Ρ‚ΠΈ &bНанопроцСсорні схСми&r. ΠŸΡ€ΠΎΡ‚Π΅ ΠΌΠ°ΠΉΡ‚Π΅ Π½Π° ΡƒΠ²Π°Π·Ρ–, Ρ‰ΠΎ для Π½ΠΈΡ… Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ НанопроцСсорні Ρ‡ΠΈΠΏΠΈ, Ρ‚ΠΎΠΆ Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Π° Π΄ΠΎΠ±Ρ€Π΅ Π½Π°Π»Π°Π³ΠΎΠ΄ΠΆΠ΅Π½Π° установка ядСрного ΠΏΠΎΠ΄Ρ–Π»Ρƒ, Ρ‰ΠΎΠ± Ρ—Ρ… ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ. \n\nΠ‘Ρ–Π»ΡŒΡˆΠ΅ Π΄Π΅Ρ‚Π°Π»Π΅ΠΉ Π±ΡƒΠ΄Π΅ Π½Π°Π΄Π°Π½ΠΎ Ρƒ &6IV Π ΠΎΠ·Π΄Ρ–Π»Ρ–&r, Ρ‚ΠΎΠΆ Π²ΠΈ Π½Π°Ρ€Π΅ΡˆΡ‚Ρ– Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ почуватися ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π²ΠΏΠ΅Π²Π½Π΅Π½ΠΎ, ΠΏΡ€ΠΎΡΡƒΠ²Π°ΡŽΡ‡ΠΈΡΡŒ Ρƒ Ρ†ΡŒΠΎΠΌΡƒ Π½ΠΎΠ²ΠΎΠΌΡƒ Ρ€Ρ–Π²Π½Ρ–.", + "quests.extreme_voltage.moderate_core.subtitle": "Π¦Π΅ Π²Π΅Π»ΠΈΠΊΠ΅ оновлСння", + "quests.extreme_voltage.moderate_core.desc": "Настав час для сСрйозного оновлСння вашого &6Π―Π΄Π΅Ρ€Π½ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r. &eΠšΠ°Ρ€ΠΊΠ°ΡΠ½Ρ– ΠΏΠΎΠΌΡ–Ρ€Π½Ρ– ядра&r Ρ–ΡΠ½ΡƒΡŽΡ‚ΡŒ Ρƒ Π΄Π²ΠΎΡ… вСрсіях, Π·Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ Π²Π°ΡˆΠΎΡ— Π²Π΄Π°Ρ‡Ρ–. ΠšΡ€Π°Ρ‰Π° вСрсія дозволяє Π²Π°ΡˆΠΎΠΌΡƒ &dΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΎΠΌΡƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρƒ&r ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ &aΠ· ΠΎΠ΄Π½ΠΈΠΌ стриТнСм ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ пасивно&r, Ρ‚ΠΎΠΆ Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ попрощатися Π· постійним виготовлСнням &bΠ₯ΠΎΠ»ΠΎΠ΄ΠΎΠ°Π³Π΅Π½Ρ‚Π½ΠΈΡ… Π³Ρ€Π°Π½ΡƒΠ»&r! Π’ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ поСкспСримСнтувати, ΠΏΠΎΡ”Π΄Π½ΡƒΡŽΡ‡ΠΈ Ρ—Ρ… Ρ–Π· Π½ΠΎΠ²ΠΈΠΌΠΈ каркасними ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Π°ΠΌΠΈ, ΠΏΠΎΡ‚Π΅Π½Ρ†Ρ–ΠΉΠ½ΠΎ Π·Π°ΠΏΡƒΡΡ‚ΠΈΠ²ΡˆΠΈ &aΠ΄Π²Π° ΠΏΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΈΡ… стриТні&r одночасно. \n\nΠ’Π°ΠΊΠΎΠΆ Π²Ρ–Π΄ΠΎΠΌΠΈΠΉ як &6Π“Ρ€Π°Ρ„Ρ–Ρ‚ΠΎΠ²Π° лінія&r, процСс створСння Ρ†ΠΈΡ… Π½ΠΎΠ²ΠΈΡ… Π±Π»ΠΎΠΊΡ–Π² Ρ” Π΄Π΅Ρ‰ΠΎ Π²ΠΈΠΏΠ°Π΄ΠΊΠΎΠ²ΠΈΠΌ: Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΎΠ²Π°Π»ΠΈΡ‚ΠΈ ΠΊΡ€Π°Ρ„Ρ‚ Π°Π±ΠΎ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π½ΠΈΠΆΡ‡ΠΎΡ€Ρ–Π²Π½Π΅Π²Ρƒ Π²Π΅Ρ€ΡΡ–ΡŽ. Π¦Π΅ ΠΌΠΎΠΆΠ΅ ускладнити ΠΏΠΎΠ²Π½Ρƒ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†Ρ–ΡŽ Π·Π° допомогою &dAE2&r, Ρ…ΠΎΡ‡Π° Π· Ρ€Π΅Ρ‚Π΅Π»ΡŒΠ½ΠΈΠΌ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½ΡΠΌ Ρ†Π΅ всС ΠΆ ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ. \n\nМи Π·Π°Π»ΠΈΡˆΠ°Ρ”ΠΌΠΎ Π²Π°ΠΌ простір для СкспСримСнтів Ρ– ΠΏΠΎΡˆΡƒΠΊΡƒ Π½Π°ΠΉΠ±Ρ–Π»ΡŒΡˆ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ способу Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Ρ†ΠΈΡ… ядСр.", + "quests.extreme_voltage.abs.subtitle": "Ми ΠΎΠ±ΠΎΠΆΠ½ΡŽΡ”ΠΌΠΎ Ρ†Π΅ΠΉ Π½Π°Π³Ρ€Ρ–Π²Π°Ρ‡", + "quests.extreme_voltage.abs.desc": "&6Π”ΠΎΠΌΠ΅Π½Π½Π° плавильна сплавів&r β€” Ρ†Π΅ Π΄ΡƒΠΆΠ΅ особливий ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ. Π’ΠΎΠ½Π° ΠΏΡ€Π°Ρ†ΡŽΡ” ΠΏΠΎΠ΄Ρ–Π±Π½ΠΎ Π΄ΠΎ &6Π•Π”ΠŸ&r, Π°Π»Π΅ Π· ΠΊΡ€Π°Ρ‰ΠΈΠΌΠΈ ΠΊΠΎΡ‚ΡƒΡˆΠΊΠ°ΠΌΠΈ, Ρ‰ΠΎ Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ΡŒ Ρ–Π΄Π΅Π°Π»ΡŒΠ½Π΅ Ρ€ΠΎΠ·Π³Ρ–Π½Π½Π΅ прискорСння (Π΄ΠΈΠ². Ρ€ΠΎΠ·Π΄Ρ–Π» ΠΏΡ€ΠΎ Π•Π½Π΅Ρ€Π³Ρ–ΡŽ), Ρ– ΠΌΠΎΠΆΠ΅ обробляти Π±Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π² Π•Π”ΠŸ &aΠ½Π° 25% швидшС&r. Π—Π²Π΅Ρ€Π½Ρ–Ρ‚ΡŒ ΡƒΠ²Π°Π³Ρƒ, Ρ‰ΠΎ Π²ΠΎΠ½Π° Π²ΠΈΠ΄Π°Ρ” Ρ€ΠΎΠ·ΠΏΠ»Π°Π²Π»Π΅Π½Ρ– Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Π·Π°ΠΌΡ–ΡΡ‚ΡŒ гарячих Π·Π»ΠΈΡ‚ΠΊΡ–Π²! \n\nΠžΠ΄Π½Ρ–Ρ”ΡŽ Π· ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΈΡ… особливостСй &6Π”ΠŸΠ‘&r Ρ” Ρ—Ρ— Π·Π΄Π°Ρ‚Π½Ρ–ΡΡ‚ΡŒ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ сплави, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Ρ– для &6Π’Π΅Π»ΠΈΠΊΠΈΡ… ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ²ΠΈΡ… машин&r. По суті, ΠΊΠΎΠΆΠ½Π° Π±Π°Π·ΠΎΠ²Π° машина, як-ΠΎΡ‚ ΠŸΠΎΠ΄Ρ€Ρ–Π±Π½ΡŽΠ²Π°Ρ‡ Π°Π±ΠΎ Дистилятор, ΠΌΠ°Ρ” власний ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ, Ρ‰ΠΎ ΠΏΡ€ΠΎΠΏΠΎΠ½ΡƒΡ” ΡˆΠΈΡ€ΠΎΠΊΡ– моТливості Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ, Ρ‚Π°ΠΊΡ– як ΠΊΡ–Π»ΡŒΠΊΠ° шин/Π»ΡŽΠΊΡ–Π² ввСдСння-вивСдСння Π°Π±ΠΎ Π½Π°Π²Ρ–Ρ‚ΡŒ додавання ΠŸΠ°Ρ€Π°Π»Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ люка. \n\nДля Π΄Π΅Ρ‚Π°Π»ΡŒΠ½Ρ–ΡˆΠΎΡ— Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— ΠΏΡ€ΠΎ Ρ†Ρ– ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ Π·Π²Π΅Ρ€Π½Ρ–Ρ‚ΡŒΡΡ Π΄ΠΎ &6Π ΠΎΠ·Π΄Ρ–Π»Ρƒ ΠΏΡ€ΠΎ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ Gregtech&r.", + "quests.extreme_voltage.ev_mixer.title": "&5EV Π—ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‡&r", + "quests.extreme_voltage.ev_mixer.subtitle": "Швидший, Π½Ρ–ΠΆ ваш місцСвий Π±Π°Ρ€ΠΌΠ΅Π½", + "quests.extreme_voltage.ev_mixer.desc": "ДСякі машини Ρ” ΠΊΡ€ΠΈΡ‚ΠΈΡ‡Π½ΠΎ Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΠΌΠΈ для прогрСсу, Ρ– &6Π—ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‡&r β€” ΠΎΠ΄Π½Π° Π· Π½ΠΈΡ…. \n\nΠ’Ρ–Π½ Π²Ρ–Π΄ΠΊΡ€ΠΈΠ²Π°Ρ” ΠΊΡ–Π»ΡŒΠΊΠ° Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΡ… сплавів, ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΈΡ… для подальшого Ρ€ΠΎΠ·Π²ΠΈΡ‚ΠΊΡƒ, Π·ΠΎΠΊΡ€Π΅ΠΌΠ° &6RTM сплав&r, який Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ для оновлСння ΠΊΠΎΡ‚ΡƒΡˆΠΎΠΊ Ρƒ Π²Π°ΡˆΠΎΠΌΡƒ &6Π•Π”ΠŸ&r. Π¦Π΅ΠΉ сплав Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½ΠΈΠΉ як Π·Π° Π›Ρ–Π½Ρ–Ρ”ΡŽ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΡƒ, Ρ‚Π°ΠΊ Ρ– частково Π·Π° ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²ΠΎΡŽ Π»Ρ–Π½Ρ–Ρ”ΡŽ, Ρ‚ΠΎΠΆ Π½Π΅ ΠΎΡ‡Ρ–ΠΊΡƒΠΉΡ‚Π΅, Ρ‰ΠΎ Π²Ρ–Π½ Π±ΡƒΠ΄Π΅ Π»Π΅Π³ΠΊΠΈΠΌ. \n\nНСзабаром Π²ΠΈ Ρ‚Π°ΠΊΠΎΠΆ Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΡ”Ρ‚Π΅ &5Π’Π΅Π»ΠΈΠΊΠΈΠΉ Π·ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‡&r, який дозволяє встановити Π΄Π²Π° Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½Ρ– люки. Π¦Π΅ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ останній Ρ€Π°Π·, ΠΊΠΎΠ»ΠΈ Π²Π°ΠΌ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΠΊΠΎΠ²ΠΈΠΉ Π—ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‡, Ρ…ΠΎΡ‡Π°, як Π·Π°Π²ΠΆΠ΄ΠΈ, Π²ΠΈΠ±Ρ–Ρ€ Π·Π°Π»ΠΈΡˆΠ°Ρ”Ρ‚ΡŒΡΡ Π·Π° Π²Π°ΠΌΠΈ.", + "quests.extreme_voltage.rtm.title": "Π‘ΠΏΠ»Π°Π² RTM", + "quests.extreme_voltage.rtm.subtitle": "Π ΡƒΡ‚Π΅Π½Ρ–ΠΉβ€‘Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌβ€‘ΠΌΠΎΠ»Ρ–Π±Π΄Π΅Π½ΠΎΠ²ΠΈΠΉ сплав", + "quests.extreme_voltage.rtm.desc": "Π©ΠΎΠ± створити &6RTM сплав&r, Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ Ρ– &dΠ ΡƒΡ‚Π΅Π½Ρ–ΠΉ&r, ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ сумнозвісної &dΠΏΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²ΠΎΡ— Π»Ρ–Π½Ρ–Ρ—&r, Ρ– &aΠ’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ&r, який Ρƒ TFG Π·Ρ€ΠΎΠ±ΠΈΠ»ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ ΡΠΊΠ»Π°Π΄Π½Ρ–ΡˆΠΈΠΌ для отримання.\n\nΠŸΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ кидатися Ρƒ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ RTM, пСрСконайся, Ρ‰ΠΎ ΠΎΠ±ΠΈΠ΄Π²Ρ– Ρ†Ρ– Π»Ρ–Π½Ρ–Ρ— ΠΏΡ€Π°Ρ†ΡŽΡŽΡ‚ΡŒ ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½ΠΎ.\n\nΠ£ Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎΠΌΡƒ GregTech RTM сплав часто Ρ” лишС ΠΊΠΎΡ€ΠΎΡ‚ΠΊΠΈΠΌ ΠΏΡ€ΠΎΠΌΡ–ΠΆΠ½ΠΈΠΌ Π΅Ρ‚Π°ΠΏΠΎΠΌ, Π°Π»Π΅ Π½Π΅ Ρ‚ΡƒΡ‚. Π£ &bTerraFirmaGreg&r Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ RTM сплав для ΠΊΡ–Π»ΡŒΠΊΠΎΡ… частин ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½Ρ–Ρ… Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΡ–Π² ΠΏΠΎΠ΄Ρ–Π»Ρƒ. ΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ HSS‑G ΠΊΠΎΡ‚ΡƒΡˆΠΊΠΈ Ρ‰Π΅ Π΄Π°Π»Π΅ΠΊΠΎ ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Ρƒ, ΠΌΠΈ Π½Π°ΠΏΠΎΠ»Π΅Π³Π»ΠΈΠ²ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ використовувати &6RTM ΠΊΠΎΡ‚ΡƒΡˆΠΊΠΈ&r як ΠΏΠΎΡ‚ΡƒΠΆΠ½Π΅ покращСння для Π±Π°Π³Π°Ρ‚ΡŒΠΎΡ… Ρ‚Π²ΠΎΡ—Ρ… наявних Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΡ–Π².", + "quests.extreme_voltage.rtm_coil.subtitle": "ΠΠ°ΡΠΊΡ–Π»ΡŒΠΊΠΈ гарячим Π²ΠΎΠ½ΠΎ ΠΌΠΎΠΆΠ΅ стати?", + "quests.extreme_voltage.rtm_coil.desc": "&6RTM ΠΊΠΎΡ‚ΡƒΡˆΠΊΠΈ&r ΠΌΠΎΠΆΡƒΡ‚ΡŒ досягати Π²Ρ€Π°ΠΆΠ°ΡŽΡ‡ΠΈΡ… &e4500 K&r, Π²Ρ–Π΄ΠΊΡ€ΠΈΠ²Π°ΡŽΡ‡ΠΈ доступ Π΄ΠΎ ΠΊΠ°Ρ€Π±Ρ–Π΄Ρƒ Ρ‚Π°Π½Ρ‚Π°Π»Ρƒ β€” ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΎΠ³ΠΎ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρƒ для Ρ‚Π²ΠΎΠ³ΠΎ просування. Π’Ρ–Π½ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ для створСння &5сплавного Π²ΠΈΠ±ΡƒΡ…ΠΎΠΏΠ»Π°Π²ΠΈΠ»ΡŒΠ½ΠΈΠΊΠ°&r, Π° Ρ‚Π°ΠΊΠΎΠΆ Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΡ€ΠΈΡΠΊΠΎΡ€ΠΈΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ Ρƒ Ρ‚Π²ΠΎΡ—ΠΉ Π•Π”ΠŸ Ρ‡ΠΈ Ρ„Π°Π±Ρ€ΠΈΡ†Ρ– ядСрного ΠΏΠ°Π»ΠΈΠ²Π°.\n\nΠ¦Ρ– ΠΊΠΎΡ‚ΡƒΡˆΠΊΠΈ Π½Π°Π²Ρ–Ρ‚ΡŒ Π΄ΠΎΠΏΠΎΠΌΠ°Π³Π°ΡŽΡ‚ΡŒ Π·Π½ΠΈΠ·ΠΈΡ‚ΠΈ Π²Π°Ρ€Ρ‚Ρ–ΡΡ‚ΡŒ Π²ΠΈΠ΄ΠΎΠ±ΡƒΡ‚ΠΊΡƒ &aмісячного Ρ€Π΅Π³ΠΎΠ»Ρ–Ρ‚Ρƒ&r Ρ‚Π° &dΠžΡΡ‚Ρ€ΡƒΠΌΡƒ&r, Ρ‰ΠΎ Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ Ρ—Ρ… Ρ†Ρ–Π½Π½ΠΈΠΌΠΈ Ρ– ΠΏΠΎΠ·Π° Ρ—Ρ… основним призначСнням.\n\nΠ—Π°Π·Π²ΠΈΡ‡Π°ΠΉ Ρ‚ΠΈ швидко ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΠΈΡˆ Π΄ΠΎ HSS‑G, Π°Π»Π΅ Π² &bTFG&r Ρ‚ΠΈ Π½Π΅ змоТСш створити свій &1IV Π·Π±ΠΈΡ€Π°Ρ‡&r, Π΄ΠΎΠΊΠΈ Π½Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡˆ &5ΠΏΡ€ΠΎΠ³Ρ€Π΅ΡΡ–ΡŽ ΠΏΠΎΠ΄Ρ–Π»Ρƒ&r, Ρ‰ΠΎ Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ &6RTM ΠΊΠΎΡ‚ΡƒΡˆΠΊΠΈ&r Π½Π°Π±Π°Π³Π°Ρ‚ΠΎ Π²Π°ΠΆΠ»ΠΈΠ²Ρ–ΡˆΠΈΠΌ Ρ– Π΄ΠΎΠ²Π³ΠΎΡ‚Ρ€ΠΈΠ²Π°Π»Ρ–ΡˆΠΈΠΌ покращСнням.", + "quests.extreme_voltage.ruthenium.title": "Π ΡƒΡ‚Π΅Π½Ρ–ΠΉ", + "quests.extreme_voltage.ruthenium.subtitle": "Рідкісний ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»", + "quests.extreme_voltage.ruthenium.desc": "Π©ΠΎΠ± Π΄ΠΎΠΏΠΎΠΌΠΎΠ³Ρ‚ΠΈ Ρ‚ΠΎΠ±Ρ–, ось огляд усіх ΠΊΡ€ΠΎΠΊΡ–Π², Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΡ… для отримання &dΠ ΡƒΡ‚Π΅Π½Ρ–ΡŽ&r Ρ‡Π΅Ρ€Π΅Π· ΠΏΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²Ρƒ Π»Ρ–Π½Ρ–ΡŽ. НС Ρ…Π²ΠΈΠ»ΡŽΠΉΡΡ, Ρ‚ΠΎΠ±Ρ– Ρ‰Π΅ Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΡƒΠ²Π°Ρ‚ΠΈ всю &dΠΏΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²Ρƒ Π»Ρ–Π½Ρ–ΡŽ&r.\n\n(Π—Π°ΡƒΠ²Π°ΠΆ, Ρ‰ΠΎ &7ΠΏΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²Π° лінія ΠΌΠΎΠΆΠ΅ змінитися Π· &4Π’Π΅Π½Π΅Ρ€ΠΎΡŽ&r ΠΏΡ–Π·Π½Ρ–ΡˆΠ΅.)", + "quests.extreme_voltage.gcym_alloys.title": "Π’Π΅Π»ΠΈΠΊΡ– Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΎΠ²Ρ– сплави", + "quests.extreme_voltage.gcym_alloys.subtitle": "Π‘Ρ–Π»ΡŒΡˆΠ΅ сплавів β€” Π±Ρ–Π»ΡŒΡˆΠ΅ Ρ€ΠΎΠ·Π²Π°Π³!", + "quests.extreme_voltage.gcym_alloys.desc": "Ласкаво просимо Ρƒ світ &dΠ²Π΅Π»ΠΈΠΊΠΈΡ… Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΡ–Π²&r. Усі Ρ†Ρ– сплави Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ для Π±Π°Π³Π°Ρ‚ΡŒΠΎΡ… ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½Ρ–Ρ… Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΡ–Π², Ρ– всі Π²ΠΎΠ½ΠΈ ΠΏΠΎΡ‡ΠΈΠ½Π°ΡŽΡ‚ΡŒΡΡ Π·Ρ– &eсплавного Π²ΠΈΠ±ΡƒΡ…ΠΎΠΏΠ»Π°Π²ΠΈΠ»ΡŒΠ½ΠΈΠΊΠ°&r. ДСякі Ρ‚Π°ΠΊΠΎΠΆ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– для &eвисокотСмпСратурних ΠΏΠ»Π°Π²ΠΈΠ»ΡŒΠ½ΠΈΡ… корпусів&r, які Ρ” Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΠΌΠΈ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Π°ΠΌΠΈ для ядСрних Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΡ–Π².\n\n&o&6&lΠ›ΠΎΡ€&r:&r &oGregicality Multiblocks спочатку починався як ΠΌΠΎΠ΄ для GTCEu Π½Π° Minecraft 1.12, Π΄ΠΎΠ΄Π°ΡŽΡ‡ΠΈ Π²Π΅Π»ΠΈΠΊΡ– вСрсії машин GregTech Ρ‚Π° &6ΠΏΠ°Ρ€Π°Π»Π΅Π»ΡŒΠ½ΠΈΠΉ люк&r. &oКоли GTCEu Π±ΡƒΠ»ΠΎ пСрСнСсСно Π½Π° 1.20, Ρ†Π΅ΠΉ ΠΌΠΎΠ΄ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Ρ–Π½Ρ‚Π΅Π³Ρ€ΡƒΠ²Π°Π»ΠΈ Π² &dGTm&r β€” &oΡ– Π½Ρ–Ρ…Ρ‚ΠΎ Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ скарТився Π½Π° Ρ†Π΅&r. Для Ρ‚ΠΈΡ…, Ρ…Ρ‚ΠΎ насолодТувався 1.12, Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ пам’ятати Ρ—Ρ… як &dGCYM ΠΌΡƒΠ»ΡŒΡ‚ΠΈ&r.", + "quests.extreme_voltage.tungsten_steel.title": "Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Π° Π‘Ρ‚Π°Π»ΡŒ", + "quests.extreme_voltage.tungsten_steel.subtitle": "Основний ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» IV", + "quests.extreme_voltage.tungsten_steel.desc": "Π’ΠΈ Π²ΠΆΠ΅ Π·Π½Π°Ρ”Ρˆ порядок Π΄Ρ–ΠΉ. &6Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Π° ΡΡ‚Π°Π»ΡŒ&r Π±ΡƒΠ΄Π΅ Ρ‚Π²ΠΎΡ—ΠΌ основним ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΎΠΌ для &1IV&r, Ρ– Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π΄ΡƒΠΆΠ΅ Π²Π΅Π»ΠΈΠΊΠ° Ρ—Ρ— ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ. ΠŸΠ΅Ρ€Π΅ΠΊΠΎΠ½Π°ΠΉΡΡ, Ρ‰ΠΎ ΠΌΠ°Ρ”Ρˆ ΠΎΠΊΡ€Π΅ΠΌΡƒ &6Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Ρƒ Π»Ρ–Π½Ρ–ΡŽ&r, яка ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ, ΠΏΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ рухатися Π΄Π°Π»Ρ–.\n\nΠ―ΠΊΡ‰ΠΎ Ρ‚ΠΎΠ±Ρ– ΠΊΠΎΠ»ΠΈβ€‘Π½Π΅Π±ΡƒΠ΄ΡŒ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Ρ–Π»ΡŒΡˆΠ΅ &aΡˆΠ΅Ρ”Π»Ρ–Ρ‚Ρƒ&r Ρ‡ΠΈ &aΠ²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚Ρƒ&r, пам’ятай, Ρ‰ΠΎ Π½Π° ΠœΠ°Ρ€ΡΡ– Ρ” Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ Π²Π΅Π»ΠΈΠΊΡ– ΠΆΠΈΠ»ΠΈ, які ΠΌΠΎΠΆΠ½Π° Π²ΠΈΠ΄ΠΎΠ±ΡƒΠ²Π°Ρ‚ΠΈ. Π―ΠΊΡ‰ΠΎ Ρ‚Π΅Π±Π΅ Ρ‚ΡƒΡ€Π±ΡƒΡ” ΠΏΡ–Ρ‰Π°Π½ΠΈΠΉ Ρ…Ρ€ΠΎΠ±Π°ΠΊ, інвСстиція Ρƒ &bΠ²Π΅Π»ΠΈΠΊΠΈΠΉ Π±ΡƒΡ€&r ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Π΄ΡƒΠΆΠ΅ ΠΊΠΎΡ€ΠΈΡΠ½ΠΎΡŽ, Π°Π΄ΠΆΠ΅ Π²Ρ–Π½ Π½Π΅ ΠΏΡ€ΠΈΠ²Π΅Ρ€Ρ‚Π°Ρ” ΡƒΠ²Π°Π³ΠΈ ΠΏΡ–Ρ‰Π°Π½ΠΎΠ³ΠΎ Ρ…Ρ€ΠΎΠ±Π°ΠΊΠ°.\n\nМоТливо, Ρ†Π΅ Ρ‡Π΅Ρ€Π΅Π· Π±ΡƒΡ€ΠΎΠ²Ρƒ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ?", + "quests.extreme_voltage.tungsten.title": "Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ", + "quests.extreme_voltage.tungsten.subtitle": "ΠŸΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ самодостатній, Ρ‚Π°ΠΊ само як Ρ‚ΠΈΡ‚Π°Π½", + "quests.extreme_voltage.tungsten.desc": "Π’Ρ–Ρ‚Π°Ρ”ΠΌΠΎ Π· отриманням Ρ‚Π²ΠΎΠ³ΠΎ ΠΏΠ΅Ρ€ΡˆΠΎΠ³ΠΎ &6Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΡƒ&r! Бподіваємося, Ρ‚ΠΈ насолодишся Ρ†ΠΈΠΌ Π½Π΅Π²Π΅Π»ΠΈΠΊΠΈΠΌ зростанням складності. ΠŸΠ°ΠΌβ€™ΡΡ‚Π°ΠΉ, Ρ‰ΠΎ спочатку Π½Π΅Π²Π΅Π»ΠΈΠΊΡƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ &6Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΡƒ&r, яка Ρ‚ΠΎΠ±Ρ– ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Π°, ΠΌΠΎΠΆΠ½Π° ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ просто подавши &aсоду&r, яку Ρ‚ΠΈ Π²ΠΈΠ΄ΠΎΠ±ΡƒΠ². Π¦Π΅ ΠΌΠΎΠΆΠ΅ Π½Π°Π΄ΠΈΡ…Π½ΡƒΡ‚ΠΈ Ρ‚Π΅Π±Π΅ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°ΠΌΠΊΠ½ΡƒΡ‚ΠΈ процСс, Ρ‰ΠΎΠ± Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΡƒΠ²Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ спокійно.\n\nΠ’Π°ΠΊΠΎΠΆ пам’ятай, Ρ‰ΠΎ Ρ‡ΠΈΠΌ Π΄Π°Π»Ρ– Ρ‚ΠΈ ΠΏΡ€ΠΎΡΡƒΠ²Π°Ρ”ΡˆΡΡ, Ρ‚ΠΈΠΌ Π²Π°ΠΆΠ»ΠΈΠ²Ρ–ΡˆΠΈΠΌ стає Π±ΡƒΠ΄Ρ–Π²Π½ΠΈΡ†Ρ‚Π²ΠΎ ΠΎΠΊΡ€Π΅ΠΌΠΈΡ… Ρ– пасивних Π»Ρ–Π½Ρ–ΠΉ для всіх Ρ†ΠΈΡ… складних процСсів, які Π±ΡƒΠ΄ΡƒΡ‚ΡŒ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– Π°ΠΆ Π΄ΠΎ кінця ΠΏΠ°ΠΊΡƒ. НС бійся нСстачі рСсурсів β€” бійся нСстачі часу.", + "quests.extreme_voltage.iv_hull.subtitle": "Π’ΠΆΠ΅ IV?", + "quests.extreme_voltage.iv_hull.desc": "Π₯ΠΎΡ‡Π° Ρ‚ΠΈ Π²ΠΆΠ΅ Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΠ²Π°Π² &1IV&r корпус машини, Π²Ρ–Π½ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Π½Π΅ Π΄ΡƒΠΆΠ΅ корисним, Π΄ΠΎΠΊΠΈ Ρ‚ΠΈ Π½Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡˆ Π»Ρ–Π½Ρ–ΡŽ ΠΏΠΎΠ΄Ρ–Π»Ρƒ, Π°Π΄ΠΆΠ΅ &1IV&r схСми Π·Π°Π±Π»ΠΎΠΊΠΎΠ²Π°Π½Ρ– Π·Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΎΡŽ &dΠΏΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²ΠΈΡ… стриТнів&r. ΠŸΡ€ΠΎΡ‚Π΅ Ρ‚ΠΈ всС ΠΆ моТСш Π·Π½Π°ΠΉΡ‚ΠΈ для нього однС‑два застосування, Ρ– ΠΏΡ€ΠΈΠ½Π°ΠΉΠΌΠ½Ρ– Π±ΡƒΠ΄Π΅Ρˆ Π³ΠΎΡ‚ΠΎΠ²ΠΈΠΉ Π·Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ &1IV Π·Π±ΠΈΡ€Π°Ρ‡&r, Ρ‰ΠΎΠΉΠ½ΠΎ Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΡ”Ρˆ свої ΠΏΠ΅Ρ€ΡˆΡ– &1IV&r схСми.", + "quests.extreme_voltage.large_miner.title": "Π’Π΅Π»ΠΈΠΊΠΈΠΉ Π±ΡƒΡ€ MK I", + "quests.extreme_voltage.large_miner.subtitle": "Π’Π²Ρ–ΠΉ ΠΏΠ΅Ρ€ΡˆΠΈΠΉ справді Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΉ Π±ΡƒΡ€", + "quests.extreme_voltage.large_miner.desc": "&bΠ’Π΅Π»ΠΈΠΊΠΈΠΉ Π±ΡƒΡ€&r β€” Ρ†Π΅ Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ Π²Ρ€Π°ΠΆΠ°ΡŽΡ‡ΠΈΠΉ Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊ для Π²ΠΈΠ΄ΠΎΠ±ΡƒΡ‚ΠΊΡƒ ΠΏΠΎΡ‚ΡƒΠΆΠ½ΠΈΡ… ΠΆΠΈΠ», які Ρ‚ΠΈ моТСш зустріти. Π’Ρ–Π½ Π²ΠΈΠ΄Π°Π²Π°Ρ‚ΠΈΠΌΠ΅ Ρ€ΡƒΠ΄ΠΈ Ρƒ Ρ—Ρ… &aΠΏΠΎΠ΄Ρ€Ρ–Π±Π½Π΅Π½Ρ–ΠΉ Ρ„ΠΎΡ€ΠΌΡ–&r, Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡŽΡ‡ΠΈ Π² ΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎΠΌΡƒ Π½Π° 50% Π±Ρ–Π»ΡŒΡˆΠ΅ рСсурсів! ΠŸΡ€ΠΎΡ‚Π΅ Π²Ρ–Π½ ΠΌΠ°Ρ” ΠΏΠ΅Π²Π½Ρ– обмСТСння: ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Ρ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠ΅Π½ΠΈΠΌ Ρƒ Ρ‡Π°Π½ΠΊΡƒ Ρ‚Π° постійно постачати Π±ΡƒΡ€ΠΎΠ²Ρƒ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ.\n\nМи Π½Π°ΠΏΠΎΠ»Π΅Π³Π»ΠΈΠ²ΠΎ Ρ€Π°Π΄ΠΈΠΌΠΎ ΠΏΠ΅Ρ€Π΅ΠΌΡ–Ρ‰Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π·Π° допомогою &bінструмСнта ΠΊΠΎΠΏΡ–ΡŽΠ²Π°Π½Π½Ρβ€‘Π²ΡΡ‚Π°Π²ΠΊΠΈ&r Π· Building Gadgets, Ρ‰ΠΎΠΉΠ½ΠΎ Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΡ”Ρˆ. Π’ΠΈ моТСш Π΄ΠΎΠ΄Π°Ρ‚ΠΈ Π±ΡƒΡ„Π΅Ρ€ Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ, Π²Π΅Π»ΠΈΠΊΠΈΠΉ запас Π±ΡƒΡ€ΠΎΠ²ΠΎΡ— Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Ρ‚Π° достатнє сховищС (Π½Π°ΠΏΡ€ΠΈΠΊΠ»Π°Π΄, Π΄ΠΎΠ±Ρ€Π΅ ΠΏΡ€ΠΎΠΊΠ°Ρ‡Π°Π½ΠΈΠΉ Ρ€ΡŽΠΊΠ·Π°ΠΊ Π°Π±ΠΎ ME ΡΠΊΡ€ΠΈΠ½ΡŽ), Ρ‰ΠΎΠ± Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΠΈ ΠΉΠΎΠ³ΠΎ ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½Ρƒ Ρ€ΠΎΠ±ΠΎΡ‚Ρƒ протягом Ρ‚Ρ€ΠΈΠ²Π°Π»ΠΎΠ³ΠΎ часу.", + "quests.extreme_voltage.ostrum_harvester.title": "Π—Π±ΠΈΡ€Π°Ρ‡ ΠžΡΡ‚Ρ€ΠΎΠΌΡƒ", + "quests.extreme_voltage.ostrum_harvester.subtitle": "ΠšΡ€Π°Ρ‰Ρ– ΠΊΠΎΡ‚ΡƒΡˆΠΊΠΈ ΠΎΠ·Π½Π°Ρ‡Π°ΡŽΡ‚ΡŒ мСншС СнСргоспоТивання", + "quests.extreme_voltage.ostrum_harvester.desc": "&bΠ—Π±ΠΈΡ€Π°Ρ‡ оструму&r β€” Ρ†Π΅ близький Ρ€ΠΎΠ΄ΠΈΡ‡ &6Π·Π±ΠΈΡ€Π°Ρ‡Π° місячного Ρ€Π΅Π³ΠΎΠ»Ρ–Ρ‚Ρƒ&r. Π™ΠΎΠ³ΠΎ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ½Π° ΠΏΠΎΠΊΡ€Π°Ρ‰ΠΈΡ‚ΠΈ ΠΊΡ€Π°Ρ‰ΠΈΠΌΠΈ ΠΊΠΎΡ‚ΡƒΡˆΠΊΠ°ΠΌΠΈ, Ρ‰ΠΎΠ± Π·ΠΌΠ΅Π½ΡˆΠΈΡ‚ΠΈ Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—, Π°Π»Π΅ Π²Ρ–Π½ Π½Π΅ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½ΠΎΠ³ΠΎ Π±Ρ–ΠΎΠΌΡƒ. Π’ΠΎΠ±Ρ– ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π±ΡƒΠ΄Π΅ ΠΏΠΎΠ±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π½Π°Π΄ &aΠΏΠΎΠΊΠ»Π°Π΄ΠΎΠΌ оструму&r, Ρ‰ΠΎΠ± Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊ сформувався.\n\nΠ©Π΅ ΠΎΠ΄Π½Π° Ρ€Ρ–Ρ‡: Π½Π° Π²Ρ–Π΄ΠΌΡ–Π½Ρƒ Π²Ρ–Π΄ місячної вСрсії, Ρ†Π΅ΠΉ Π²ΠΈΠΌΠ°Π³Π°Ρ” Π±ΡƒΡ€ΠΎΠ²ΠΎΡ— Ρ€Ρ–Π΄ΠΈΠ½ΠΈ для Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ, Ρ‚ΠΎΠΆ Π²Π°Ρ€Ρ‚ΠΎ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Π΄Π²ΠΎΡΡ‚ΠΎΡ€ΠΎΠ½Π½ΡŽ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†Ρ–ΡŽ, Ρ‰ΠΎΠ± Π²Ρ–Π½ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Π² Π±Π΅Π·ΠΏΠ΅Ρ€Π΅Ρ€Π²Π½ΠΎ.", + "quests.extreme_voltage.ostrum_dust.title": "Π™ΠΎΠ΄ΠΈΡ‚ ΠžΡΡ‚Ρ€ΡƒΠΌΡƒ", + "quests.extreme_voltage.ostrum_dust.subtitle": "ΠœΠ΅Π½Ρ– Π·Π½ΠΎΠ²Ρƒ Ρ‚Ρ€Π΅Π±Π° Ρ‰ΠΎ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ?!", + "quests.extreme_voltage.ostrum_dust.desc": "Π„ Π±Π°Π³Π°Ρ‚ΠΎ Π·Π°ΡΡ‚ΠΎΡΡƒΠ²Π°Π½ΡŒ для &aоструму&r, Π°Π»Π΅ Π·Π°Ρ€Π°Π· Ρ” ΠΎΠ΄Π½Π΅, ΠΏΡ€ΠΎ якС Ρ‚ΠΎΠ±Ρ– слід особливо ΠΏΠΎΠ΄Π±Π°Ρ‚ΠΈ: створСння &aΠΉΠΎΠ΄ΠΈΠ΄Ρƒ оструму&r, Π°Π΄ΠΆΠ΅ Π²Ρ–Π½ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ для ΠΊΡ€Π°Ρ„Ρ‚Ρƒ Ρ‚Π²ΠΎΠ³ΠΎ Ρ‚Π΅ΠΏΠ»ΠΎΠΎΠ±ΠΌΡ–Π½Π½ΠΈΠΊΠ°.\n\nΠ£ Ρ†ΡŒΠΎΠΌΡƒ Π½Π΅ΠΌΠ°Ρ” Π½Ρ–Ρ‡ΠΎΠ³ΠΎ Π½Π°Π΄Ρ‚ΠΎ складного, Ρ…Ρ–Π±Π° Ρ‰ΠΎ отримання ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎΠ³ΠΎ &eΠΉΠΎΠ΄Ρƒ&r. Ми Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΠΌΠΎ Ρ‚ΠΎΠ±Ρ– звСрнутися Π΄ΠΎ квСсту Π»Ρ–Π²ΠΎΡ€ΡƒΡ‡, Ρ‰ΠΎΠ± Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ &l6&r ΠΎΠ΄ΠΈΠ½ΠΈΡ†ΡŒ ΠΉΠΎΠ΄Ρƒ, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΡ… для Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ Π»Ρ–Π½Ρ–Ρ— ΠΏΠΎΠ΄Ρ–Π»Ρƒ.", + "quests.extreme_voltage.formamide.title": "Π€ΠΎΡ€ΠΌΠ°ΠΌΡ–Π΄", + "quests.extreme_voltage.formamide.subtitle": "Π’Π°ΠΊΠΎΠΆ Ρ€ΠΎΠ·Ρ‡ΠΈΠ½Π½ΠΈΠΊ Ρ–Π· Π±Π°Π³Π°Ρ‚ΡŒΠΌΠ° застосуваннями Π² Ρ€Π΅Π°Π»ΡŒΠ½ΠΎΠΌΡƒ ΠΆΠΈΡ‚Ρ‚Ρ–", + "quests.extreme_voltage.formamide.desc": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΡƒΠΉΡΡ ΡƒΡ‚ΠΈΠ»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ Π±ΡƒΠ΄ΡŒ-які надлишки, які Ρ‚ΠΈ Π²ΠΈΡ€ΠΎΠ±Π»ΡΡ”Ρˆ, якщо Π½Π΅ Ρ…ΠΎΡ‡Π΅Ρˆ, Ρ‰ΠΎΠ± Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ ΠΏΠ°Ρ€ΠΈ зупинилося.", + "quests.extreme_voltage.radioactive_concoction.title": "Π—Π°Π»ΠΈΡˆΠΊΠΎΠ²Π° Ρ€Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Π° ΡΡƒΠΌΡ–Ρˆ", + "quests.extreme_voltage.radioactive_concoction.subtitle": "Π¦Π΅ΠΉ Π½Π΅ ΡƒΡ‚ΠΈΠ»Ρ–Π·ΡƒΠΉ!", + "quests.extreme_voltage.radioactive_concoction.desc": "&dΠ—Π°Π»ΠΈΡˆΠΊΠΎΠ²Π° Ρ€Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Π° ΡΡƒΠΌΡ–Ρˆ&r β€” Ρ†Π΅ Π΄ΡƒΠΆΠ΅ Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΠΉ ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΠΉ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ Π»Ρ–Π½Ρ–Ρ— ΠΏΠΎΠ΄Ρ–Π»Ρƒ. Π‡Ρ— основнС застосування β€” Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ нСскінчСнних Ρ€ΡƒΠ΄ Π·Π° допомогою &bΠ»Ρ–Π½Ρ–ΠΉΠ½ΠΎΠ³ΠΎ ΠΏΡ€ΠΈΡΠΊΠΎΡ€ΡŽΠ²Π°Ρ‡Π° оструму&r, Π°Π»Π΅ Π²ΠΎΠ½Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Π° для розблокування &bΠΊΠ°ΠΌΠ΅Ρ€ΠΈ росту&r.\n\nΠ―ΠΊΡ‰ΠΎ Ρ‚ΠΈ Ρ…ΠΎΡ‡Π΅Ρˆ Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΈ ΠΏΠΎΠ΄Ρ–Π»Ρƒ ΠΏΠΎΠ·Π° ΠΌΠ΅ΠΆΠ°ΠΌΠΈ ΠœΠ°Ρ€ΡΠ°, Ρ‚ΠΎΠ±Ρ– Ρ‚Π°ΠΊΠΎΠΆ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Π΅Π·ΠΏΠ΅Ρ€Π΅Ρ€Π²Π½Π΅ Ρ—Ρ— постачання.", + "quests.extreme_voltage.ostrum_linear.subtitle": "НСскінчСннС, Π°Π»Π΅ Π½Π° Π½ΠΎΠ²ΠΎΠΌΡƒ Ρ€Ρ–Π²Π½Ρ–", + "quests.extreme_voltage.ostrum_linear.desc": "&bΠ›Ρ–Π½Ρ–ΠΉΠ½ΠΈΠΉ ΠΏΡ€ΠΈΡΠΊΠΎΡ€ΡŽΠ²Π°Ρ‡ оструму&r дозволяє ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Ρ€Ρ–Π·Π½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ Π· Π»Ρ–Π½Ρ–Ρ— ΠΏΠΎΠ΄Ρ–Π»Ρƒ. Π¦Π΅ΠΉ Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” Π²Π΅Π»ΠΈΠΊΡƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ &bΠ²Π²Ρ–Π΄Π½ΠΈΡ… шин&r Ρ‚Π° &bΠ²Π²Ρ–Π΄Π½ΠΈΡ… Π»ΡŽΠΊΡ–Π²&r, Ρ– ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ всі ΠΉΠΎΠ³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ Π΄ΠΎΡΠΈΡ‚ΡŒ ΡˆΠ²ΠΈΠ΄ΠΊΡ–, ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π±Π»ΠΎΠΊΡƒ ΠΌΠ°Ρ” вистачити, Ρ‰ΠΎΠ± ΠΏΠΎΠΊΡ€ΠΈΡ‚ΠΈ всі Ρ‚Π²ΠΎΡ— ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈ.\n\nМи Π½Π°ΠΏΠΎΠ»Π΅Π³Π»ΠΈΠ²ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ створити ΠΊΡ–Π»ΡŒΠΊΠ° &eΠ±Π°Π»ΠΎΠ½Ρ‡ΠΈΠΊΡ–Π²&r Π· Ρ€Ρ–Π·Π½ΠΈΠΌΠΈ ΠΊΠΎΠ»ΡŒΠΎΡ€Π°ΠΌΠΈ, Ρ‰ΠΎΠ± ΠΎΡ€Π³Π°Π½Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ Π²Π²Ρ–Π΄ Ρ– Π²ΠΈΠ²Ρ–Π΄. Наприклад, якщо Ρ‚ΠΈ ΠΏΠΎΡ„Π°Ρ€Π±ΡƒΡ”Ρˆ Π²Π²Ρ–Π΄Π½Ρƒ ΡˆΠΈΠ½Ρƒ Ρ‚Π° Π²Π²Ρ–Π΄Π½ΠΈΠΉ люк Ρƒ &9синій&r, Ρ‚ΠΎ взаємодіяти Π±ΡƒΠ΄ΡƒΡ‚ΡŒ лишС Π²ΠΎΠ½ΠΈ, Ρ‰ΠΎ Π·Π°ΠΏΠΎΠ±Ρ–Π³Π°Ρ‚ΠΈΠΌΠ΅ ΠΊΠΎΠ½Ρ„Π»Ρ–ΠΊΡ‚Π°ΠΌ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π² Ρ– Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ Π±Ρ–Π»ΡŒΡˆ ΠΏΠ»Π°Π²Π½Ρƒ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†Ρ–ΡŽ.", + "quests.extreme_voltage.pss.subtitle": "Π ΠΎΠ·ΠΏΡ–Π°Ρ€Π΅Π½Π° батарСя", + "quests.extreme_voltage.pss.desc": "&eΠ•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½Π° підстанція&r Π±ΡƒΠ»Π° пСрСнСсСна Π· &1IV&r Π½Π° &5EV&r, Ρ‰ΠΎΠ± Ρ‚ΠΈ ΠΌΡ–Π³ Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ Ρ—Ρ— Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π½Π° ΠœΠ°Ρ€ΡΡ–, Π΄Π΅ кСрування Π΅Π½Π΅Ρ€Π³Ρ–Ρ”ΡŽ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Π΄ΠΎΡΠΈΡ‚ΡŒ складним Ρ–Π· використанням Π΅Π½Π΅Ρ€Π³Ρ–Ρ— ΠΏΠΎΠ΄Ρ–Π»Ρƒ. Π’ΠΎΠ½Π° Π½Π΅ Ρ” ΠΎΠ±ΠΎΠ²β€™ΡΠ·ΠΊΠΎΠ²ΠΎΡŽ, Ρ‚ΠΎΠΆ моТСш пропустити Ρ—Ρ—, якщо Π±Π°ΠΆΠ°Ρ”Ρˆ.\n\nΠ―ΠΊΡ‰ΠΎ Ρ…ΠΎΡ‡Π΅Ρˆ дізнатися Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΡ€ΠΎ Ρ‚Π΅, як ΠΏΡ€Π°Ρ†ΡŽΡ” Ρ†Π΅ΠΉ Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊ, ΠΏΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒ ΠΉΠΎΠ³ΠΎ Π΄Π΅Ρ‚Π°Π»ΡŒΠ½ΠΈΠΉ опис Ρƒ &aΡ€ΠΎΠ·Π΄Ρ–Π»Ρ– ΠΏΡ€ΠΎ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ&r.", + "quests.extreme_voltage.liquid_air.title": "Π—Π΅ΠΌΠ½Π΅ повітря", + "quests.extreme_voltage.liquid_air.subtitle": "Π’Π°ΠΊ Π±Π°Π³Π°Ρ‚ΠΎ Π³Π°Π·Ρ–Π²", + "quests.extreme_voltage.liquid_air.desc": "ΠŸΠ΅Ρ€Π΅Π³ΠΎΠ½ΠΊΠ° &bΡ€Ρ–Π΄ΠΊΠΎΠ³ΠΎ повітря&r β€” Ρ†Π΅ основний ΠΌΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ Ρƒ &6GregTech&r для отримання &oнСскінчСнного запасу&r дСяких рідкісних Π³Π°Π·Ρ–Π².\n\nДистиляція Π·Π΅ΠΌΠ½ΠΎΠ³ΠΎ повітря β€” Ρ†Π΅ Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΉ спосіб ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ &bΠ°Ρ€Π³ΠΎΠ½&r, &6кисСнь&r, &eΠ³Π΅Π»Ρ–ΠΉ&r, &3Π°Π·ΠΎΡ‚&r Ρ‚Π° &aвуглСкислий Π³Π°Π·&r.", + "quests.extreme_voltage.liquid_mars_air.title": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠ΅ повітря", + "quests.extreme_voltage.liquid_mars_air.subtitle": "Π©Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅ Π³Π°Π·Ρ–Π²", + "quests.extreme_voltage.liquid_mars_air.desc": "ΠŸΠ΅Ρ€Π΅Π³ΠΎΠ½ΠΊΠ° &bΡ€Ρ–Π΄ΠΊΠΎΠ³ΠΎ повітря&r β€” Ρ†Π΅ основний ΠΌΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ Ρƒ &6GregTech&r для отримання &lнСскінчСнного запасу&r дСяких рідкісних ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π². ΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ Π² TFG Ρ‚ΠΈ Π½Π΅ моТСш ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ повітря НСзСру Ρ‡ΠΈ Π•Π½Π΄Ρƒ, ΠΌΠΈ ΠΏΡ€ΠΎΠΏΠΎΠ½ΡƒΡ”ΠΌΠΎ Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Ρƒ β€” &cΠΌΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠ΅ повітря&r.\n\nΠ’ΠΎΠ½ΠΎ Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ Π±Π°Π³Π°Ρ‚Π΅ Π½Π° &bΠ°Ρ€Π³ΠΎΠ½&r Ρ‚Π° &aвуглСкислий Π³Π°Π·&r, Π°Π»Π΅ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅ Π΄Π°Π²Π°Ρ‚ΠΈ рідкісні Π³Π°Π·ΠΈ, Ρ‚Π°ΠΊΡ– як &eΠ½Π΅ΠΎΠ½&r, &3ΠΊΡ€ΠΈΠΏΡ‚ΠΎΠ½&r Ρ‚Π° &9ксСнон&r, які Π±Ρ–Π»ΡŒΡˆΠ΅ Π½Ρ–Π΄Π΅ нСдоступні.\n\nΠ—Π²Π΅Ρ€Π½ΠΈ ΡƒΠ²Π°Π³Ρƒ, Ρ‰ΠΎ Π² ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½Ρ–Ρ… оновлСннях дСякі Π· Ρ†ΠΈΡ… Π±Π»Π°Π³ΠΎΡ€ΠΎΠ΄Π½ΠΈΡ… Π³Π°Π·Ρ–Π² ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ ΠΏΠ΅Ρ€Π΅ΠΌΡ–Ρ‰Π΅Π½Ρ–, ΠΊΠΎΠ»ΠΈ ΠΌΠΈ Π·Π°Π²Π΅Ρ€ΡˆΠΈΠΌΠΎ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΠ»Π°Π½Π΅Ρ‚. Π—Π°Π²ΠΆΠ΄ΠΈ пСрСвіряй &6списки Π·ΠΌΡ–Π½&r для оновлСнь!", + "quests.extreme_voltage.epoxy.title": "Епоксид", + "quests.extreme_voltage.epoxy.subtitle": "Π¨Ρ‚ΡƒΡ‡Π½Π° смола", + "quests.extreme_voltage.epoxy.desc.1": "&aЕпоксид&r β€” Ρ†Π΅ основа для всіх ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½Ρ–Ρ… Π΄Ρ€ΡƒΠΊΠΎΠ²Π°Π½ΠΈΡ… ΠΏΠ»Π°Ρ‚ Ρƒ Π³Ρ€Ρ–!\n\n&9&lΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°:&r Π¦Π΅ завдання Π΄ΠΎΡΠΈΡ‚ΡŒ складнС, Ρ‚ΠΎΠΆ займися всім Ρ–Π½ΡˆΠΈΠΌ, ΠΏΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ намагатися створити Споксид. Π’ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ вся Π΄ΠΎΠΏΠΎΠΌΠΎΠ³Π°, яку Ρ‚Ρ–Π»ΡŒΠΊΠΈ ΠΌΠΎΠΆΠ½Π° ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ!", + "quests.extreme_voltage.epoxy.desc.2": "Π„ ΠΊΡ–Π»ΡŒΠΊΠ° способів ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Ρ–Π½Π³Ρ€Π΅Π΄Ρ–Ρ”Π½Ρ‚ΠΈ для &aСпоксиду&r.\n\nМи ΠΏΡ€ΠΎΡ–Π³Π½ΠΎΡ€ΡƒΡ”ΠΌΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ, пов’язані Π· Π³Π»Ρ–Ρ†Π΅Ρ€ΠΈΠ½ΠΎΠΌ, ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ Π²ΠΎΠ½ΠΈ Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ Π²Π°Ρ€Ρ‚Ρ– Π·ΡƒΡΠΈΠ»ΡŒ.\n\nНамагайся використовувати &3Π²Π΅Π»ΠΈΠΊΡ– Ρ…Ρ–ΠΌΡ–Ρ‡Π½Ρ– Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΈ&r, Ρ‰ΠΎΠ± скоротити Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ.", + "quests.extreme_voltage.epoxy.desc.3": "&dΠ₯Π»ΠΎΡ€&r ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±Π»ΡΡ”Ρ‚ΡŒΡΡ лишС частково, Ρ‚ΠΎΠΆ Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ постійнС ΠΉΠΎΠ³ΠΎ постачання. Π‘ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ Π±ΡƒΠ΄Π΅ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π²Ρ€ΡƒΡ‡Π½Ρƒ.\n\nΠ Π΅Ρ†Π΅ΠΏΡ‚ΠΈ, Ρ‰ΠΎ Π²ΠΊΠ»ΡŽΡ‡Π°ΡŽΡ‚ΡŒ &dгідроксид Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r, ΠΌΠΎΠΆΠ½Π° Π·Π°Ρ†ΠΈΠΊΠ»ΠΈΡ‚ΠΈ ΡˆΠ»ΡΡ…ΠΎΠΌ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·Ρƒ ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρƒ β€” &9солоної Π²ΠΎΠ΄ΠΈ&r.\n\nДля Ρ†ΡŒΠΎΠ³ΠΎ, ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½ΠΎ, Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ ΠΊΡ–Π»ΡŒΠΊΠ° Ρ‡ΠΎΡ‚ΠΈΡ€ΡŒΠΎΡ…Ρ‚Ρ€ΡƒΠ±Π½ΠΈΡ… систСм, насосних ΠΊΡ€ΠΈΡˆΠΎΠΊ, Ρ„Ρ–Π»ΡŒΡ‚Ρ€Ρ–Π² для Ρ€Ρ–Π΄ΠΈΠ½... Π°Π±ΠΎ ΠΆ прокласти всС Ρ‡Π΅Ρ€Π΅Π· AE2.\n\nΠ—Π°Π³Π°Π»ΠΎΠΌ, Π·Π°ΠΌΠΊΠ½Π΅Π½Ρ– Ρ†ΠΈΠΊΠ»ΠΈ Π·Ρ€ΡƒΡ‡Π½Ρ–, Ρ‰ΠΎΠ± ΡƒΠ½ΠΈΠΊΠ½ΡƒΡ‚ΠΈ Π½Π°Π΄Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Ρ‡ΠΈ Π½Π°Π΄ΠΌΡ–Ρ€Π½ΠΎΠ³ΠΎ споТивання, Π°Π»Π΅ ΠΎΠ±ΠΈΡ€Π°ΠΉ Ρ‚Π΅, Ρ‰ΠΎ для Ρ‚Π΅Π±Π΅ Π²Π΅ΡΠ΅Π»Ρ–ΡˆΠ΅.", + "quests.extreme_voltage.epichlorohydrin.title": "Π•ΠΏΡ–Ρ…Π»ΠΎΡ€Π³Ρ–Π΄Ρ€ΠΈΠ½", + "quests.extreme_voltage.epichlorohydrin.desc": "Π’ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ використати Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Ρƒ &3Π’Π₯Π &r для свого ΠΏΠ΅Ρ€ΡˆΠΎΠ³ΠΎ &aΠ΅ΠΏΡ–Ρ…Π»ΠΎΡ€Π³Ρ–Π΄Ρ€ΠΈΠ½Ρƒ&r.\n\nΠ¦Π΅ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π²ΠΈΠΌΠ°Π³Π°Ρ” &aΠΏΡ€ΠΎΠΏΠ΅Π½&r, Ρ‰ΠΎ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΎ зайнятися &dΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΊΠΎΡŽ Π½Π°Ρ„Ρ‚ΠΈ&r Ρ‚Π° &dΠΊΡ€Π΅ΠΊΡ–Π½Π³ΠΎΠΌ ΠΏΠ°Π»ΠΈΠ²Π°&r. Π’ΠΈΠ±Π°Ρ‡Π°ΠΉ, якщо Ρ‚ΠΈ Π²Ρ–Π΄ΠΊΠ»Π°Π΄Π°Π² Ρ†Π΅ Π½Π° ΠΏΠΎΡ‚Ρ–ΠΌ!\n\nΠ”ΡƒΠΆΠ΅ Π²Π°ΠΆΠ»ΠΈΠ²ΠΎ, Ρ‰ΠΎΠ± Ρ‚ΠΈ Π·Ρ€ΠΎΠ±ΠΈΠ² свою ΠΏΠ΅Ρ€ΡˆΡƒ &3дистиляційну Π²Π΅ΠΆΡƒ&r ΠΏΠ΅Ρ€Π΅Π΄ Ρ‚ΠΈΠΌ, як рухатися Π΄Π°Π»Ρ–.\n\nΠ† Π½Π°ΡΠ°ΠΌΠΊΡ–Π½Π΅Ρ†ΡŒ, якщо Ρ‚ΠΈ Ρ‰Π΅ Π½Π΅ ΠΏΠΎΠΌΡ–Ρ‚ΠΈΠ², ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΠΉ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ &dсолона Π²ΠΎΠ΄Π°&r ΠΌΠΎΠΆΠ½Π° Π·Π°Ρ†ΠΈΠΊΠ»ΠΈΡ‚ΠΈ, Ρ‰ΠΎΠ± запустити Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ &dгідроксиду Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r.", + "quests.extreme_voltage.phenol.title": "Π€Π΅Π½ΠΎΠ»", + "quests.extreme_voltage.phenol.desc.1": "ΠžΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ &aΠ€Π΅Π½ΠΎΠ»&r ΠΌΠΎΠΆΠ½Π° Π·:\n\n&91 -&r ΠŸΠ΅Ρ€Π΅Π³ΠΎΠ½ΠΊΠ° &aΠ΄Π΅Ρ€Π΅Π²Π½ΠΎΡ— смоли&r.\n\n&92 -&r РСакція &aΠ±Π΅Π½Π·ΠΎΠ»Ρƒ&r Π· &dΡ…Π»ΠΎΡ€ΠΎΠΌ&r Ρ‚Π° &dгідроксидом Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r. Π¦Π΅ слід Π²ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈ Ρƒ &3Π’Π₯Π &r, Ρ– Ρ…Π»ΠΎΡ€ Ρƒ Ρ†ΡŒΠΎΠΌΡƒ Π²ΠΈΠΏΠ°Π΄ΠΊΡƒ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°Ρ†ΠΈΠΊΠ»ΡŽΡ”Ρ‚ΡŒΡΡ.\n\n&93 -&r Π‘ΠΏΡ€ΠΎΡ‰Π΅Π½ΠΈΠΉ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎΠ³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° Π±Π΅Π· використання &dгідроксиду Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r. Π£ Ρ†ΡŒΠΎΠΌΡƒ Π²ΠΈΠΏΠ°Π΄ΠΊΡƒ ΡΠΏΠΎΡΡ‚Π΅Ρ€Ρ–Π³Π°Ρ”Ρ‚ΡŒΡΡ чиста Π²Ρ‚Ρ€Π°Ρ‚Π° &dΡ…Π»ΠΎΡ€Ρƒ&r.\n\n&94 -&r РСакція &aΠ±Π΅Π½Π·ΠΎΠ»Ρƒ&r, &dΠΏΡ€ΠΎΠΏΠ΅Π½Ρƒ&r Ρ‚Π° &dкисню&r Π· використанням Π½Π΅Π²Π΅Π»ΠΈΠΊΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– &4фосфорної кислоти&r β€” Π·Π°Π·Π²ΠΈΡ‡Π°ΠΉ ΠΊΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€Π°, Π°Π»Π΅ Ρ‚ΡƒΡ‚ Π²ΠΎΠ½Π° Π²ΠΈΡ‚Ρ€Π°Ρ‡Π°Ρ”Ρ‚ΡŒΡΡ Ρƒ ΠΌΠ°Π»ΠΈΡ… ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚ΡΡ…. Π¦Π΅ΠΉ ΠΌΠ΅Ρ‚ΠΎΠ΄ Π½Π°Π·ΠΈΠ²Π°Ρ”Ρ‚ΡŒΡΡ ΠΊΡƒΠΌΠΎΠ»ΡŒΠ½ΠΈΠΌ процСсом.", + "quests.extreme_voltage.phenol.desc.2": "Π―ΠΊΡ‰ΠΎ Ρ‚ΠΎΠ±Ρ– Π²Π°ΠΆΠΊΠΎ визначитися ΠΌΡ–ΠΆ Π½Π°Π²Π΅Π΄Π΅Π½ΠΈΠΌΠΈ Π²Π°Ρ€Ρ–Π°Π½Ρ‚Π°ΠΌΠΈ, ось ΠΏΡ€ΠΈΠ²Π°Π±Π»ΠΈΠ²Ρ–ΡΡ‚ΡŒ ΠΊΠΎΠΆΠ½ΠΎΠ³ΠΎ Π· Π½ΠΈΡ…:\n\n&91 -&r Π§ΡƒΠ΄ΠΎΠ²ΠΈΠΉ Π²ΠΈΠ±Ρ–Ρ€, якщо Ρ‚ΠΈ Π³ΠΎΡ‚ΠΎΠ²ΠΈΠΉ Π·Ρ–Π±Ρ€Π°Ρ‚ΠΈ ΠΊΠΎΠΌΠ±ΠΎ Π· &3ΠΏΡ–Ρ€ΠΎΠ»Ρ–Π·Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–&r + &3дистиляційної Π²Π΅ΠΆΡ–&r.\n\n&92 -&r Π¦Π΅ наш ΡƒΠ»ΡŽΠ±Π»Π΅Π½ΠΈΠΉ Π²Π°Ρ€Ρ–Π°Π½Ρ‚! Π’ΠΈ моТСш використати &dΡΡ–Π»ΡŒ&r, Ρ‰ΠΎΠ± Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅ &dсолоної Π²ΠΎΠ΄ΠΈ&r, Π° ΠΏΠΎΡ‚Ρ–ΠΌ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ Ρ—Ρ— для створСння Ρ†ΠΈΠΊΠ»Ρƒ.\n\n&93 -&r Π”ΡƒΠΆΠ΅ ΠΏΡ€ΠΈΠ²Π°Π±Π»ΠΈΠ²ΠΎ, якщо ΠΌΠ°Ρ”Ρˆ нСскінчСннС Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎ &dΡ…Π»ΠΎΡ€Ρƒ&r. Π¦Π΅ ΠΌΠΎΠΆΠ½Π° Ρ€Π΅Π°Π»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ, Π²ΡΡ‚Π°Π½ΠΎΠ²ΠΈΠ²ΡˆΠΈ &3Π±ΡƒΡ€ΠΎΠ²Ρƒ установку для Ρ€Ρ–Π΄ΠΈΠ½&r Π½Π° ΠΆΠΈΠ»Ρ– Π· солоною водою.\n\n&94 -&r ...&4Ѐосфорну кислоту&r Π΄ΡƒΠΆΠ΅ складно виробляти. Π’Ρ€Π΅Π±Π° Π±ΡƒΡ‚ΠΈ Π±ΠΎΠΆΠ΅Π²Ρ–Π»ΡŒΠ½ΠΈΠΌ, Ρ‰ΠΎΠ± розглядати Ρ†Π΅ΠΉ Π²Π°Ρ€Ρ–Π°Π½Ρ‚.", + "quests.extreme_voltage.phenol.desc.3": "&l&3Π›ΠΎΡ€:&r&o Π Π΅Ρ†Π΅ΠΏΡ‚ Π±Π΅Π½Π·ΠΎΠ»Ρƒ + кисню Π±ΡƒΠ² Π΄ΠΎΠ΄Π°Π½ΠΈΠΉ Ρƒ GTCE Π· ΠΌΠ΅Ρ‚ΠΎΡŽ виправлСння відсутніх Ρ…Ρ–ΠΌΡ–Ρ‡Π½ΠΈΡ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π², ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ Π²Π΅Π»ΠΈΠΊΠΎΠ³ΠΎ Ρ…Ρ–ΠΌΡ–Ρ‡Π½ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° Ρ‚ΠΎΠ΄Ρ– Π½Π΅ існувало. Π’Π΅ΠΏΠ΅Ρ€, ΠΊΠΎΠ»ΠΈ CEu Π½Π°Π΄Π°Ρ” Π±Ρ–Π»ΡŒΡˆ рСалістичні Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ, ΠΌΠΈ ΠΌΠΎΠΆΠ΅ΠΌΠΎ Π²ΠΈΠ΄Π°Π»ΠΈΡ‚ΠΈ Ρ†Π΅ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Ρƒ ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½ΡŒΠΎΠΌΡƒ.", + "quests.extreme_voltage.acetone.title": "АцСтон", + "quests.extreme_voltage.acetone.desc.1": "Π₯ΠΎΡ‡Π° ΠΏΠ΅Ρ€Π΅Π³ΠΎΠ½ΠΊΠ° &aΠ΄Π΅Ρ€Π΅Π²Π½ΠΎΠ³ΠΎ ΠΎΡ†Ρ‚Ρƒ&r Π΄Π°Ρ” &aΠ°Ρ†Π΅Ρ‚ΠΎΠ½&r, Π²ΠΈΡ…Ρ–Π΄ Ρ” низьким Ρ– ΠΌΠΎΠΆΠ΅ Π½Π΅ Π·Π°Π΄ΠΎΠ²ΠΎΠ»ΡŒΠ½ΠΈΡ‚ΠΈ Ρ‚Π²ΠΎΡ— ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈ.\n\nМоТСш скористатися прямим Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠΌ Ρƒ &3Π’Π₯Π &r Π· &aΠΎΡ†Ρ‚ΠΎΠ²ΠΎΡ— кислоти&r для отримання &aΠ°Ρ†Π΅Ρ‚ΠΎΠ½Ρƒ&r.\n\nА якщо Ρ…ΠΎΡ‡Π΅Ρˆ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ всС Β«ΠΏΠΎ-старому», ΠΌΠΎΠΆΠ½Π° використати Ρ†ΠΈΠΊΠ» &aΠΎΡ†Ρ‚ΠΎΠ²Π° кислота&r -> &dΡ€ΠΎΠ·Ρ‡ΠΈΠ½Π΅Π½ΠΈΠΉ Π°Ρ†Π΅Ρ‚Π°Ρ‚ ΠΊΠ°Π»ΡŒΡ†Ρ–ΡŽ&r -> &aΠ°Ρ†Π΅Ρ‚ΠΎΠ½&r, який Π½Π΅ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” &3Π’Π₯Π &r, Π°Π»Π΅ ΠΏΡ€ΠΈ Ρ†ΡŒΠΎΠΌΡƒ Ρ–Π΄Π΅Π°Π»ΡŒΠ½ΠΎ пСрСробляє сполуку ΠΊΠ°Π»ΡŒΡ†Ρ–ΡŽ.", + "quests.extreme_voltage.acetone.desc.2": "Ми Π²ΠΆΠ΅ Π³ΠΎΠ²ΠΎΡ€ΠΈΠ»ΠΈ ΠΏΡ€ΠΎ ΠΎΡ†Ρ‚ΠΎΠ²Ρƒ кислоту, Π°Π»Π΅ Ρ‰Π΅ Π½Π΅ пояснили, як Ρ—Ρ— ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ. Π‘ΡƒΠ»ΠΎ Π± Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎ Ρ†Π΅ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ, Ρ‡ΠΈ Π½Π΅ Ρ‚Π°ΠΊ?\n\n&aΠžΡ†Ρ‚ΠΎΠ²Ρƒ кислоту&r ΠΌΠΎΠΆΠ½Π° синтСзувати Ρƒ &3Ρ…Ρ–ΠΌΡ–Ρ‡Π½ΠΎΠΌΡƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ–&r. Наш ΡƒΠ»ΡŽΠ±Π»Π΅Π½ΠΈΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ β€” Π· &dΠ΅Ρ‚ΠΈΠ»Π΅Π½Ρƒ&r.", + "quests.extreme_voltage.aes_insulation.title": "Π›ΡƒΠΆΠ½ΠΎΠ·Π΅ΠΌΠ½Π΅ силікатнС Ρ–Π·ΠΎΠ»ΡŽΠ²Π°Π½Π½Ρ", + "quests.extreme_voltage.aes_insulation.subtitle": "Π’Π°ΠΊΠΎΠΆ Π²Ρ–Π΄ΠΎΠΌΠ΅ як кам’яна Π²Π°Ρ‚Π°", + "quests.extreme_voltage.aes_insulation.desc": "Новий Ρ€Ρ–Π²Π΅Π½ΡŒ ΠΎΠ·Π½Π°Ρ‡Π°Ρ” Π½ΠΎΠ²ΠΈΠΉ Ρ‚ΠΈΠΏ ізоляції!\n\nΠ©ΠΎΠ± Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π· Ρ†ΠΈΠΌ, Π·Π²Π΅Ρ€Π½ΠΈ ΡƒΠ²Π°Π³Ρƒ Π½Π° Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Ρƒ міксСрі для &dΠΏΠΈΠ»Ρƒ ΡΡƒΠΌΡ–ΡˆΡ– Π»ΡƒΠΆΠ½ΠΎΠ·Π΅ΠΌΠ½ΠΎΠ³ΠΎ силікату&r. Π—Ρ€Π΅ΡˆΡ‚ΠΎΡŽ, Ρ‚ΠΈ змоТСш Π½Π°Π»Π°Π³ΠΎΠ΄ΠΈΡ‚ΠΈ нСскінчСннС ΠΉΠΎΠ³ΠΎ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ Π½Π° ΠœΠ°Ρ€ΡΡ– завдяки ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½Π½ΡŽ ΠΡŽΡ…Π°Ρ‡Ρ–Π² Ρ– Π’Ρ€Π°ΠΏΡ‚ΠΎΡ€Ρ–Π², Π°Π΄ΠΆΠ΅ Π²Ρ–Π½ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Π½Π΅ лишС для Ρ‚Π²ΠΎΠ³ΠΎ наступного Π Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ ΠΏΡ€ΠΎΡ”ΠΊΡ‚Ρƒ.", + "quests.extreme_voltage.epoxy_board.subtitle": "Нова ΠΏΠ»Π°Ρ‚Π°, Ρ– ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Ρƒ Ρ‰Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅", + "quests.extreme_voltage.epoxy_board.desc": "Епоксидні ΠΏΠ»Π°Ρ‚ΠΈ Ρ” ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΈΠΌ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΎΠΌ, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΠΌ для створСння Ρ‚Π²ΠΎΡ—Ρ… &bΠ½Π°Π½ΠΎ-схСм&r, Π°Π»Π΅ ΠΏΠΎΠ·Π° Ρ†ΠΈΠΌ призначСнням Π²ΠΎΠ½ΠΈ ΠΌΠ°ΠΉΠΆΠ΅ Π½Π΅ ΠΌΠ°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ застосування.", + "quests.extreme_voltage.ev_circuit_assembler.title": "&5EV&r Π‘Ρ…Π΅ΠΌΠ°Ρ‚ΠΎΠ»ΠΎΠ³Ρ–Ρ‡Π½ΠΈΠΉ Π·Π±ΠΈΡ€Π°Ρ‡", + "quests.extreme_voltage.ev_circuit_assembler.subtitle": "МСнш корисний, Π½Ρ–ΠΆ Π·Π±ΠΈΡ€Π°Ρ‡, ΠΏΡ€ΠΈΠ½Π°ΠΉΠΌΠ½Ρ– Π½Π°Ρ€Π°Π·Ρ–", + "quests.extreme_voltage.ev_circuit_assembler.desc": "&5EV&r схСматологічний Π·Π±ΠΈΡ€Π°Ρ‡ Π½Π΅ Π±ΡƒΠ΄Π΅ Π½Π°Π΄Ρ‚ΠΎ корисним, Π΄ΠΎΠΊΠΈ Ρ‚ΠΈ Π½Π΅ ΠΌΠ°Ρ‚ΠΈΠΌΠ΅Ρˆ ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½ΠΎΠ³ΠΎ постачання &bΠ½Π°Π½ΠΎ CPU пластин&r. \nΠ’Ρ‚Ρ–ΠΌ, Π²Ρ–Π½ Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ Π·Π½Π°Ρ‡Π½ΠΎ швидшС ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ мікропроцСсорні схСми Ρ‚Π° Π·Ρ€Π΅ΡˆΡ‚ΠΎΡŽ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ” доступ Π΄ΠΎ Ρ‚Π²ΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡˆΠΈΡ… &dLuV схСм&r, які ΡΡ‚Π°Π½ΡƒΡ‚ΡŒ Ρƒ ΠΏΡ€ΠΈΠ³ΠΎΠ΄Ρ–, Ρ‰ΠΎΠΉΠ½ΠΎ Ρ‚ΠΈ ΠΌΠ°Ρ‚ΠΈΠΌΠ΅Ρˆ &1IV&r Π·Π±ΠΈΡ€Π°Ρ‡.", + "quests.extreme_voltage.nano_hv_circuit.subtitle": "Π’ΠΎΠ½ΠΎ Π½Π΅ &овиглядає&r Π°ΠΆ Ρ‚Π°ΠΊΠΈΠΌ мСншим...", + "quests.extreme_voltage.nano_hv_circuit.desc": "Π’Π²ΠΎΡ— ΠΏΠ΅Ρ€ΡˆΡ– &eΠ½Π°Π½ΠΎ схСми&r! Для Π½ΠΈΡ… Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ &bΠ½Π°Π½ΠΎ CPU&r, Π° ΠΎΡ‚ΠΆΠ΅ β€” Π±Π΅Π·ΠΏΠ΅Ρ€Π΅Ρ€Π²Π½Π° лінія &cΡ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ–Π² ΠΏΠΎΠ΄Ρ–Π»Ρƒ&r, Ρ‰ΠΎ ΡΠΏΠ°Π»ΡŽΡŽΡ‚ΡŒ ΠΏΠ»ΡƒΡ‚ΠΎΠ½Ρ–Ρ”Π²Ρ– стриТні для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΎΡ— &dΡ‚Ρ€ΠΈΡ‚Ρ–ΠΉΠΎΠ²Π°Π½ΠΎΡ— Π²ΠΎΠ΄ΠΈ&r.\n\nΠ‘ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ &eΠ½Π°Π½ΠΎ-схСми&r Π·Π΄Π°Π²Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒΡΡ Π΄ΠΎΠ²ΠΎΠ»Ρ– Π΄ΠΎΡ€ΠΎΠ³ΠΈΠΌΠΈ, Π°Π»Π΅ Ρ‰ΠΎΠΉΠ½ΠΎ твоя &dлінія ΠΏΠΎΠ΄Ρ–Π»Ρƒ&r станС ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ пасивною, Π²ΠΎΠ½ΠΈ ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΡΡ‚ΡŒΡΡ Π½Π° ΠΎΠ΄Π½Ρ– Π· Π½Π°ΠΉΠ΄Π΅ΡˆΠ΅Π²ΡˆΠΈΡ…!", + "quests.extreme_voltage.nano_ev.subtitle": "ΠŸΠΎΠ²Π΅Ρ€Ρ‚Π°Ρ”ΠΌΠΎΡΡŒ Π΄ΠΎ Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎΡ— прогрСсії схСм", + "quests.extreme_voltage.nano_ev.desc": "Π’ΠΎΠ½ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ виявитися Π½Π°Π²Ρ–Ρ‚ΡŒ дСшСвшими Ρƒ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Ρ–, Π½Ρ–ΠΆ &bмікропроцСсори&r, якщо Ρ‚ΠΈ змоТСш Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎ Π½Π°Π»Π°Π³ΠΎΠ΄ΠΈΡ‚ΠΈ масовС Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ &bΠ½Π°Π½ΠΎ CPU&r. \nΠ©ΠΎΠΉΠ½ΠΎ твоя &cлінія ΠΏΠΎΠ΄Ρ–Π»Ρƒ&r Π±ΡƒΠ΄Π΅ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΎΠ²Π°Π½Π°, Ρ†Ρ– схСми ΡΡ‚Π°Π½ΡƒΡ‚ΡŒ Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ Π²ΠΈΠ³Ρ–Π΄Π½ΠΈΠΌ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΎΠΌ для Ρ‚Π²ΠΎΡ—Ρ… високорівнСвих ΠΏΡ€ΠΎΡ”ΠΊΡ‚Ρ–Π².\n\nΠ’Π°ΠΊΠΎΠΆ Π·Π²Π΅Ρ€Π½ΠΈ ΡƒΠ²Π°Π³Ρƒ, Ρ‰ΠΎ Π²Ρ–Π΄Ρ‚Π΅ΠΏΠ΅Ρ€ Ρ‚ΠΈ моТСш використовувати вдосконалСні SMD ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ!", + "quests.extreme_voltage.nano_iv.subtitle": "ВсС Π±Π»ΠΈΠΆΡ‡Π΅ Π΄ΠΎ Ρ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³Ρ–ΠΉ LuV", + "quests.extreme_voltage.nano_iv.desc": "Π¦Ρ– &1IV&r схСми всС Ρ‰Π΅ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ ΠΎΠ΄Π½ΠΎΠ³ΠΎ &bΠ½Π°Π½ΠΎ CPU Ρ‡ΠΈΠΏΠ°&r, Ρ‚ΠΎΠΆ Ρƒ Ρ†ΡŒΠΎΠΌΡƒ сСнсі Π²ΠΎΠ½ΠΈ насправді Π½Π΅ Π΄Π΅ΡˆΠ΅Π²ΡˆΡ– Π·Π° &bмікропроцСсори&r.\n\nΠ’Ρ‚Ρ–ΠΌ, Π²ΠΎΠ½ΠΈ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΠΌΠΈ для просування Π΄ΠΎ наступного рівня Ρ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³Ρ–ΠΉ.", + "quests.extreme_voltage.nano_luv.subtitle": "Π’Π²ΠΎΡ— ΠΏΠ΅Ρ€ΡˆΡ– &1IV&r схСми", + "quests.extreme_voltage.nano_luv.desc": "Π’Ρ–Ρ‚Π°Ρ”ΠΌΠΎ Π· ΡƒΡΠΏΡ–ΡˆΠ½ΠΈΠΌ досягнСнням Π½ΠΎΠ²ΠΎΠ³ΠΎ рівня схСм! Π¦Ρ– &dLuV&r схСми ΠΏΠΎΠΊΠΈ Ρ‰ΠΎ Π½Π΅ ΠΌΠ°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ Π²Π΅Π»ΠΈΠΊΠΎΠ³ΠΎ застосування, Π°Π΄ΠΆΠ΅ Ρ‚ΠΈ Π½Π΅ змоТСш ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ &dLuV&r машини, Π΄ΠΎΠΊΠΈ Π½Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡˆ &bΠΏΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²Ρƒ Π»Ρ–Π½Ρ–ΡŽ&r. \nΠ’Ρ‚Ρ–ΠΌ, Π²ΠΎΠ½ΠΈ всС ΠΎΠ΄Π½ΠΎ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Ρ†Ρ–Π½Π½ΠΈΠΌΠΈ для створСння Π½ΠΎΠ²ΠΈΡ… інструмСнтів Ρ– ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² &dAE2&r.\n\nΠ‘Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ Ρ†ΠΈΡ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π² Π²ΠΈΠΌΠ°Π³Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ &1IV&r Π·Π±ΠΈΡ€Π°Ρ‡Π°, Ρ‚ΠΎΠΆ пСрСконайся, Ρ‰ΠΎ Π²Ρ–Π½ Ρƒ Ρ‚Π΅Π±Π΅ Π³ΠΎΡ‚ΠΎΠ²ΠΈΠΉ.", + "quests.extreme_voltage.me_part.title": "Частини ME ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΡƒ", + "quests.extreme_voltage.me_part.subtitle": "ΠŸΡ–Π΄ΠΊΠ»ΡŽΡ‡ΠΈ GregTech Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π΄ΠΎ своєї ΠΌΠ΅Ρ€Π΅ΠΆΡ– AE2", + "quests.extreme_voltage.me_part.task": "Π‘ΡƒΠ΄ΡŒ-який ME шина Ρ‡ΠΈ люк", + "quests.extreme_voltage.me_part.desc": "Π¦Ρ– Π±Π»ΠΎΠΊΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π·Π°ΠΌΡ–Π½ΠΈΡ‚ΠΈ Ρ‚Π²ΠΎΡ— Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρ– Π²Ρ…Ρ–Π΄Π½Ρ– Ρ‚Π° Π²ΠΈΡ…Ρ–Π΄Π½Ρ– шини/люки Π² ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠ°Ρ…. Особливо корисними Ρ” вСрсії &bΠ²ΠΈΡ…ΠΎΠ΄Ρƒ&r, Π°Π΄ΠΆΠ΅ Π²ΠΎΠ½ΠΈ Π·Π΄Π°Ρ‚Π½Ρ– Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π°Π±ΠΎ Ρ€Ρ–Π΄ΠΈΠ½ β€” Π±Ρ–Π»ΡŒΡˆ Π½Ρ–ΠΆ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ для Π±Ρ–Π»ΡŒΡˆΠΎΡΡ‚Ρ– сСтапів. Π¦Π΅ Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ Ρ—Ρ… Ρ–Π΄Π΅Π°Π»ΡŒΠ½ΠΈΠΌΠΈ для ΠΎΠ±ΠΌΡ–Π½Ρƒ рСсурсами ΠΌΡ–ΠΆ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠ°ΠΌΠΈ Ρ‡ΠΈ уникнСння забивання Π²ΠΈΡ…ΠΎΠ΄Ρƒ.\n\nΠ’ΠΎΠ½ΠΈ ΠΏΡ–Π΄ΠΊΠ»ΡŽΡ‡Π°ΡŽΡ‚ΡŒΡΡ Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π΄ΠΎ ΠΊΠ°Π±Π΅Π»Ρ–Π² &dAE2&r, Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‡ΠΈ ΠΎΠ±Ρ–ΠΉΡ‚ΠΈ використання шин збСрігання Ρ‡ΠΈ інтСрфСйсів. Однак Π±ΡƒΠ΄ΡŒ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½ΠΈΠΌ: Π²ΠΎΠ½ΠΈ ΠΏΠΎΠ²ΠΎΠ΄ΡΡ‚ΡŒΡΡ як інтСрфСйси, Π° Π½Π΅ як справТнє сховищС. Π¦Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ Ρ‚ΠΈ Π½Π΅ змоТСш ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ доступ Π΄ΠΎ Ρ—Ρ…Π½ΡŒΠΎΠ³ΠΎ вмісту Ρ‡Π΅Ρ€Π΅Π· Ρ–Π½ΡˆΠΈΠΉ інтСрфСйс.", + "quests.extreme_voltage.tunsgten_line_step.title": "ЗациклСння ΠΊΠ°Ρ€Π±ΠΎΠ½Π°Ρ‚Ρƒ Π½Π°Ρ‚Ρ€Ρ–ΡŽ", + "quests.extreme_voltage.tunsgten_line_step.subtitle": "МоТливо, Ρ‚ΠΈ Π½Π΅ Π·Π°Ρ…ΠΎΡ‡Π΅Ρˆ Π΄ΠΎΠ±ΡƒΠ²Π°Ρ‚ΠΈ Ρ†Π΅ Π²Ρ–Ρ‡Π½ΠΎ", + "quests.extreme_voltage.tunsgten_line_step.desc.1": "Π†Π΄Π΅Π°Π»ΡŒΠ½ΠΎ Π·Π°Ρ†ΠΈΠΊΠ»ΠΈΡ‚ΠΈ &5Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Ρƒ Π»Ρ–Π½Ρ–ΡŽ&r β€” завдання Π½Π΅ Π· Π½Π°ΠΉΠ»Π΅Π³ΡˆΠΈΡ…, Ρ‚ΠΎΠΆ ΠΌΠΈ використаємо Ρ†Π΅ΠΉ квСст, Ρ‰ΠΎΠ± спрямувати Ρ‚Π΅Π±Π΅ Π² ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠΌΡƒ напрямку.\n\nΠžΡ‚Ρ€ΠΈΠΌΠ°Π½Ρƒ &bΡΡ–Π»ΡŒ&r слід ΠΏΠΎΡ”Π΄Π½Π°Ρ‚ΠΈ Π· &aвуглСкислим Π³Π°Π·ΠΎΠΌ&r Ρ‚Π° &6Π°ΠΌΡ–Π°ΠΊΠΎΠΌ&r, Ρ‰ΠΎΠ± ΡƒΡ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ &3Ρ…Π»ΠΎΡ€ΠΈΠ΄ Π°ΠΌΠΎΠ½Ρ–ΡŽ&r. Π™ΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½Π° Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ, Π°Π±ΠΈ Π²Ρ–Π΄Π½ΠΎΠ²ΠΈΡ‚ΠΈ свій &6Π°ΠΌΡ–Π°ΠΊ&r Ρ– ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ &9Ρ…Π»ΠΎΡ€ΠΎΠ²ΠΎΠ΄Π½Π΅Π²Ρƒ кислоту&r, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Ρƒ для &eΠ²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚Ρƒ Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r.\n\nΠ£ Ρ†ΡŒΠΎΠΌΡƒ процСсі Ρ‚Π°ΠΊΠΎΠΆ ΡƒΡ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ &bΠ³Ρ–Π΄Ρ€ΠΎΠΊΠ°Ρ€Π±ΠΎΠ½Π°Ρ‚ Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r, який слід Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ, Ρ‰ΠΎΠ± ΠΏΠΎΠ²Π΅Ρ€Π½ΡƒΡ‚ΠΈ свою &dΠΊΠ°Ρ€Π±ΠΎΠ½Π°Ρ‚ Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r.", + "quests.extreme_voltage.tunsgten_line_step.desc.2": "ΠΠ°Ρ€Π΅ΡˆΡ‚Ρ–, Ρ‰ΠΎΠ± Π·Π°ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Ρ†ΠΈΠΊΠ», ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΠΊΠ΅Ρ€ΡƒΠ²Π°Ρ‚ΠΈ своїм &aВуглСкислим Π³Π°Π·ΠΎΠΌ&r. Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ &dΠ“Ρ–Π΄Ρ€ΠΎΠΊΠ°Ρ€Π±ΠΎΠ½Π°Ρ‚ Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r Ρ‚Π° &aВуглСкислий Π³Π°Π·&r Ρ– ΠΏΠΎΡ”Π΄Π½Π°Ρ‚ΠΈ &bΠ’ΡƒΠ³Π»Π΅Ρ†ΡŒ&r Ρ‚Π° &bКисСнь&r, ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π½Ρ– Π· ΠΊΠ°Π»ΡŒΡ†ΠΈΡ‚Ρƒ Ρ‚Π° Π»Ρ–Ρ‚Ρ–ΡŽ. Або застосувати Π³Ρ€ΡƒΠ±Ρƒ силу, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ Π΄ΠΈΡΡ‚ΠΈΠ»ΡΡ†Ρ–ΡŽ &bΠ Ρ–Π΄ΠΊΠΎΠ³ΠΎ повітря&r для отримання нСскінчСнного запасу &aВуглСкислого Π³Π°Π·Ρƒ&r.", + "quests.extreme_voltage.tunsgten_line_step_1.title": "Нова Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Π° лінія", + "quests.extreme_voltage.tunsgten_line_step_1.subtitle": "Π§ΠΎΠΌΡƒ? ΠŸΡ€ΠΎΡΡ‚ΠΎ Ρ‡ΠΎΠΌΡƒ?", + "quests.extreme_voltage.tunsgten_line_step_1.desc": "&eΠ’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Π° лінія&r Ρƒ TerraFirmaGreg Π±ΡƒΠ»Π° ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±Π»Π΅Π½Π°, Ρ– Ρ‚ΠΎΠ±Ρ– Π±ΡƒΠ΄Π΅ ΠΏΡ€ΠΈΡ”ΠΌΠ½ΠΎ (Π°Π±ΠΎ ΠΉ Π½Ρ–) дізнатися, Ρ‰ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ Π²ΠΎΠ½Π° &cΠ½Π°Π±Π°Π³Π°Ρ‚ΠΎ ΡΠΊΠ»Π°Π΄Π½Ρ–ΡˆΠ°&r.\n\nМоТливо &aΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°Ρ†ΠΈΠΊΠ»ΠΈΡ‚ΠΈ&r ΠΊΠΎΠΆΠ΅Π½ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» Ρƒ Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Ρ–ΠΉ Π»Ρ–Π½Ρ–Ρ—, Π°Π»Π΅ для Ρ†ΡŒΠΎΠ³ΠΎ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Ρ‡ΠΈΠΌΠ°Π»ΠΎ Ρ–Π½ΠΆΠ΅Π½Π΅Ρ€Ρ–Ρ—. Або ΠΆ Ρ‚ΠΈ моТСш ΠΏΡ–Ρ‚ΠΈ Β«Π² Π»ΠΎΠ±Β» Ρ– &cмасово виробляти&r ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– рСсурси.\n\nНСвСлика ΠΏΡ–Π΄ΠΊΠ°Π·ΠΊΠ°: Π½Π° &4ΠœΠ°Ρ€ΡΡ–&r Ρ” ΠΊΡ–Π»ΡŒΠΊΠ° &aΡ…ΠΎΡ€ΠΎΡˆΠΈΡ… ΠΆΠΈΠ» Ρ€ΡƒΠ΄ΠΈ&r для &eΠΊΠ°Ρ€Π±ΠΎΠ½Π°Ρ‚Ρƒ Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r Ρ‚Π° &eΠ²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΡƒ&r.\n\nНС ΠΏΠΎΡΠΏΡ–ΡˆΠ°ΠΉ, ΠΎΠΏΡ‚ΠΈΠΌΡ–Π·ΡƒΠΉ, Ρ– Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Π° лінія станС основою Ρ‚Π²ΠΎΠ³ΠΎ прогрСсу Π² сСрСдній Ρ‚Π° ΠΏΡ–Π·Π½Ρ–ΠΉ Π³Ρ€Ρ–.", + "quests.extreme_voltage.tunsgten_line_step_2.title": "ΠžΡΡ‚Π°Π½Π½Ρ частина Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²ΠΎΡ— Π»Ρ–Π½Ρ–Ρ—", + "quests.extreme_voltage.tunsgten_line_step_2.subtitle": "Ця частина Π·Π°Ρ†ΠΈΠΊΠ»ΡŽΡ”Ρ‚ΡŒΡΡ сама ΠΏΠΎ собі", + "quests.extreme_voltage.tunsgten_line_step_2.desc": "Коли Ρ‚ΠΈ Π²ΠΆΠ΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π² &bΠ²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Ρƒ кислоту&r Ρ– Π·Π°Ρ†ΠΈΠΊΠ»ΠΈΠ² &cΠΊΠ°Ρ€Π±ΠΎΠ½Π°Ρ‚ Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r, Ρ‚ΠΎ Π½Π°ΠΉΠ²Π°ΠΆΡ‡Ρƒ частину Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ. \nΠ”Π°Π»Ρ– Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ лишС &6Π²Π΅ΠΆΠ° випаровування&r, Ρ‰ΠΎΠ± ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°Ρ†ΠΈΠΊΠ»ΠΈΡ‚ΠΈ &aводСнь&r, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΠΉ для &6Π΄ΡƒΠ³ΠΎΠ²ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–&r, Ρ‚Π° &6ΠΏΡ–Ρ€ΠΎΠ»Ρ–Π·Π½Π° ΠΏΡ–Ρ‡&r, Ρ‰ΠΎΠ± Π²Ρ–Π΄Π½ΠΎΠ²ΠΈΡ‚ΠΈ &3Π°ΠΌΡ–Π°ΠΊ&r, використаний Π½Π° ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ.\n\nНічого Π½Π°Π΄Ρ‚ΠΎ складного, Ρ‚ΠΎΠΆ насолодТуйся своїм &5Π²ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠΌ&r!", + "quests.extreme_voltage.advanced_fluid_rig.title": "Π•ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½Π΅ буріння Ρ€Ρ–Π΄ΠΈΠ½", + "quests.extreme_voltage.advanced_fluid_rig.subtitle": "Π•ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½Π΅ β€” справді Π²Π»ΡƒΡ‡Π½ΠΈΠΉ опис", + "quests.extreme_voltage.advanced_fluid_rig.desc.1": "Π—Π° Ρ€Π°Ρ…ΡƒΠ½ΠΎΠΊ Ρƒ 4 Ρ€Π°Π·ΠΈ Π±Ρ–Π»ΡŒΡˆΠΎΠ³ΠΎ споТивання Π΅Π½Π΅Ρ€Π³Ρ–Ρ— &3ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½Π° Ρ€Ρ–Π΄ΠΈΠ½Π½Π° Π±ΡƒΡ€ΠΎΠ²Π° установка&r ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ” &616-ΠΊΡ€Π°Ρ‚Π½ΠΈΠΉ Π²ΠΈΡ…Ρ–Π΄&r Ρ€Ρ–Π΄ΠΈΠ½ΠΈ.\n\nВиснаТСння ΠΆΠΈΠ» Ρ‚Π°ΠΊΠΎΠΆ Π·ΠΌΠ΅Π½ΡˆΡƒΡ”Ρ‚ΡŒΡΡ Π²Π΄Π²Ρ–Ρ‡Ρ–. Π¦Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ Ρ‚ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρˆ Π·Π°Π³Π°Π»ΠΎΠΌ &632-ΠΊΡ€Π°Ρ‚Π½ΠΈΠΉ&r обсяг Π½Π°Ρ„Ρ‚ΠΈ (Π°Π±ΠΎ Π±ΡƒΠ΄ΡŒ-якої Ρ–Π½ΡˆΠΎΡ— Ρ€Ρ–Π΄ΠΈΠ½ΠΈ) Π· Π±Π°Π·ΠΎΠ²ΠΎΡ— Ρ€Ρ–Π΄ΠΈΠ½Π½ΠΎΡ— ΠΆΠΈΠ»ΠΈ Π΄ΠΎ Ρ—Ρ— виснаТСння!\n\nΠΠ°Π²Ρ–Ρ‚ΡŒ після виснаТСння Ρ‚ΠΈ всС ΠΎΠ΄Π½ΠΎ моТСш Ρ—Ρ— використовувати ΠΉ Π·Π°Π»ΠΈΡˆΠ°Ρ‚ΠΈΡΡ Ρƒ Π²ΠΏΠ΅Π²Π½Π΅Π½ΠΎΠΌΡƒ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΎΠΌΡƒ ΠΏΠ»ΡŽΡΡ–.\n\nΠžΠ΄Π½Ρ–Ρ”Ρ— &3ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½ΠΎΡ— Ρ€Ρ–Π΄ΠΈΠ½Π½ΠΎΡ— Π±ΡƒΡ€ΠΎΠ²ΠΎΡ— установки&r ΠΌΠ°Ρ” вистачити, Ρ‰ΠΎΠ± Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ”ΡŽ Π±Π°Π·Ρƒ Π°ΠΆ Π΄ΠΎ рівня &dLuV&r… Ρ–, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Π½Π°Π²Ρ–Ρ‚ΡŒ Π΄Π°Π»Ρ–!", + "quests.extreme_voltage.advanced_fluid_rig.desc.2": "Π―ΠΊ &9нагадування&r, Π°Π΄ΠΆΠ΅ востаннє Ρ†Π΅ з’являлося Ρ‰Π΅ Π² &bMV&r:\n\n&9-&r &aΠ›Π΅Π³ΠΊΠ° Π½Π°Ρ„Ρ‚Π°&r ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ використана для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &dΠ’Π“Π’&r Ρ‚Π° &dΠΌΠ΅Ρ‚Π°Π½Ρƒ&r для Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Ρƒ &3Π²Π΅Π»ΠΈΠΊΠΈΡ… Π³Π°Π·ΠΎΠ²ΠΈΡ… Ρ‚ΡƒΡ€Π±Ρ–Π½Π°Ρ…&r.\n\n&9-&r &aНафта&r ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ використана для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &dдизСля&r Ρ‚Π° &dΡ†Π΅Ρ‚Π°Π½ ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½ΠΎΠ³ΠΎ дизСля&r для Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Ρƒ &3Π²Π΅Π»ΠΈΠΊΠΈΡ… Π΄Π²ΠΈΠ³ΡƒΠ½Π°Ρ… Π²Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½ΡŒΠΎΠ³ΠΎ згоряння&r.\n\n&9-&r &aΠ’Π°ΠΆΠΊΠ° Π½Π°Ρ„Ρ‚Π°&r ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ використана для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &dΠ½Ρ–Ρ‚Ρ€ΠΎΠ±Π΅Π½Π·ΠΎΠ»Ρƒ&r для Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Ρƒ &3Π²Π΅Π»ΠΈΠΊΠΈΡ… Π³Π°Π·ΠΎΠ²ΠΈΡ… Ρ‚ΡƒΡ€Π±Ρ–Π½Π°Ρ…&r.", + "quests.extreme_voltage.mpic_chip.title": "Π†Π½Ρ‚Π΅Π³Ρ€Π°Π»ΡŒΠ½Π° схСма ТивлСння", + "quests.extreme_voltage.mpic_chip.desc": "Нова Ρ€Ρ–Π·Π°Π»ΡŒΠ½Π° машина? &aβœ“&r\n\nНова Π»Ρ–Π½Π·Π°? &aβœ“&r\n\nНова схСма ТивлСння? &aβœ“&r\n\nНовий ΠΌΠ΅Ρ‚Π°Π» для Π•Π”ΠŸ? &aβœ“&r\n\nНова ΠΊΠΎΡ‚ΡƒΡˆΠΊΠ° для Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ люка? &aβœ“&r", + "quests.extreme_voltage.ev_energy_hatch.desc": "Π©Π΅ ΠΎΠ΄ΠΈΠ½ Ρ€Ρ–Π²Π΅Π½ΡŒ β€” Ρ‰Π΅ ΠΎΠ΄ΠΈΠ½ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк. Π’ΠΈ Π·Π½Π°Ρ”Ρˆ, Ρ‰ΠΎ Π· Ρ†ΠΈΠΌ Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ!", + "quests.extreme_voltage.ev_dynamo_hatch.title": "EV Π΄ΠΈΠ½Π°ΠΌΠΎ люк", + "quests.extreme_voltage.ev_dynamo_hatch.desc": "Π―ΠΊΡ‰ΠΎ Ρ‚ΠΈ Ρ‰Π΅ Π½Π΅ зустрічав Ρ—Ρ…, Π΄ΠΈΠ½Π°ΠΌΠΎ люки β€” Ρ†Π΅, ΠΏΠΎ суті, Π²ΠΈΡ…Ρ–Π΄Π½ΠΈΠΉ Π΅ΠΊΠ²Ρ–Π²Π°Π»Π΅Π½Ρ‚ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… Π»ΡŽΠΊΡ–Π². Використовуй Ρ—Ρ… Ρƒ своїх Π½ΠΎΠ²ΠΈΡ… Π²Π΅Π»ΠΈΠΊΠΈΡ… Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°Ρ…, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΡΠΏΡ€Π°Π²ΠΆΠ½ΡŽ EV Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ, ΠΏΡ€ΠΎ Ρ‰ΠΎ ΠΉΡ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ Π² наступних квСстах.", + "quests.extreme_voltage.ev_dynamo_hatch.task": "Π‘ΡƒΠ΄ΡŒ-який EV Π΄ΠΈΠ½Π°ΠΌΠΎ люк", + "quests.extreme_voltage.oil_distillation.title": "БправТня дистиляція Π½Π°Ρ„Ρ‚ΠΈ", + "quests.extreme_voltage.oil_distillation.desc": "Ось Ρ‡ΠΎΡ‚ΠΈΡ€ΠΈ Π½Π°ΠΉΠ±Ρ–Π»ΡŒΡˆ Π²Π°ΠΆΠ»ΠΈΠ²Ρ– &dΠ²ΡƒΠ³Π»Π΅Π²ΠΎΠ΄Π½Ρ–&r, які Ρ‚ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρˆ ΠΏΡ€ΠΈ дистиляції ΠΏΠ°Ρ€ΠΎ-ΠΊΡ€Π΅ΠΊΡ–Π½Π³ΠΎΠ²ΠΈΡ… ΠΏΠ°Π»ΠΈΠ².\n\nΠ’ΠΎΠ±Ρ– Π²Π°Ρ€Ρ‚ΠΎ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Ρ†Π΅ &lΠΏΠ΅Ρ€Π΅Π΄&r ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΠΎΠΌ Π΄ΠΎ &1IV&r.\n\n&aΠŸΠ°Ρ€ΠΎ-ΠΊΡ€Π΅ΠΊΡ–Π½Π³ Π»Π΅Π³ΠΊΠΎΠ³ΠΎ ΠΏΠ°Π»ΠΈΠ²Π°&r як Π²Ρ…Ρ–Π΄, ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½ΠΎ, Ρ” Π½Π°ΠΉΠ±Ρ–Π»ΡŒΡˆ Π²ΠΈΠ³Ρ–Π΄Π½ΠΈΠΌ, Π°Π»Π΅ Ρ‚ΠΈ Π²Ρ–Π»ΡŒΠ½ΠΈΠΉ СкспСримСнтувати.\n\nΠ―ΠΊΡ‰ΠΎ Ρ‚ΠΎΠ±Ρ– Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ Π²ΠΈΡ…Ρ–Π΄ &dΠ²ΡƒΠ³Π»Π΅Ρ†ΡŽ&r, просто постав Π½Π° нього ΠΊΡ€ΠΈΡˆΠΊΡƒ для ΡƒΡ‚ΠΈΠ»Ρ–Π·Π°Ρ†Ρ–Ρ—.", + "quests.extreme_voltage.oil_distillation.task": "Π‘ΡƒΠ΄ΡŒ-яка Π½Π°Ρ„Ρ‚Π°", + "quests.extreme_voltage.wood_distillation.title": "БправТня ΠΎΡ€Π³Π°Π½Ρ–Ρ‡Π½Π° дистиляція", + "quests.extreme_voltage.wood_distillation.desc.1": "Π¦Π΅ΠΉ квСст Π²ΠΈΠΌΠ°Π³Π°Ρ” &3ΠΏΡ–Ρ€ΠΎΠ»Ρ–Π·Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–&r Ρ– Ρ” &dнСобов’язковим&r, Π°Π»Π΅ Π·Ρ€ΡƒΡ‡Π½ΠΈΠΌ.\n\nОсь Ρ‡ΠΎΡ‚ΠΈΡ€ΠΈ Π²Π°ΠΆΠ»ΠΈΠ²Ρ– Ρ€Ρ–Π΄ΠΈΠ½ΠΈ, Ρ‰ΠΎ ΡƒΡ‚Π²ΠΎΡ€ΡŽΡŽΡ‚ΡŒΡΡ ΠΏΡ€ΠΈ дистиляції &aΠ΄Π΅Ρ€Π΅Π²Π½ΠΎΡ— смоли&r:\n\n&9-&r Π€Π΅Π½ΠΎΠ»: Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для Споксиду Ρ‚Π° PBI \n&9-&r Π‘Π΅Π½Π·ΠΎΠ»: Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΠΉ Π²ΡƒΠ³Π»Π΅Π²ΠΎΠ΄Π΅Π½ΡŒ \n&9-&r Π’ΠΎΠ»ΡƒΠΎΠ»: Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для TNT\n&9-&r Π”ΠΈΠΌΠ΅Ρ‚ΠΈΠ»Π±Π΅Π½Π·ΠΎΠ»: Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для PBI \n\nНа Π²Ρ–Π΄ΠΌΡ–Π½Ρƒ Π²Ρ–Π΄ Π½Π°Ρ„Ρ‚ΠΈ, ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΊΠ° &aΠ΄Π΅Ρ€Π΅Π²Π½ΠΎΡ— смоли&r Ρƒ &3дистиляційній Π²Π΅ΠΆΡ–&r Π·Π°Ρ€Π°Π΄ΠΈ ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π² Ρ– використання &dΠ½Ρ–Ρ‚Ρ€ΠΎΠ±Π΅Π½Π·ΠΎΠ»Ρƒ&r як ΠΏΠ°Π»ΠΈΠ²Π° Ρ†Ρ–Π»ΠΊΠΎΠΌ Π²ΠΈΠΏΡ€Π°Π²Π΄Π°Π½Π°.", + "quests.extreme_voltage.wood_distillation.desc.2": "Ось Ρ‚Ρ€ΠΈ Π²Π°ΠΆΠ»ΠΈΠ²Ρ– ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ Π· &aДистиляції Π΄Π΅Ρ€Π΅Π²Π½ΠΎΠ³ΠΎ ΠΎΡ†Ρ‚Ρƒ&r:\n\n&9-&r ΠžΡ†Ρ‚ΠΎΠ²Π° кислота: корисна для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π±Ρ–Π»ΡŒΡˆΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π°Ρ†Π΅Ρ‚ΠΎΠ½Ρƒ \n\n&9-&r ΠœΠ΅Ρ‚Π°Π½ΠΎΠ»: ΠΏΠΎΠΌΡ–Ρ€Π½ΠΎ Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΠΉ Π²ΡƒΠ³Π»Π΅Π²ΠΎΠ΄Π΅Π½ΡŒ \n\n&9-&r АцСтон: Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для Споксидну Ρ‚Π° Π±Π΅Π½Π·ΠΈΠ½Ρƒ", + "quests.extreme_voltage.wood_distillation.desc.3": "Π’Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ½Π° використати β€œΠΏΠΎΠ²Π½Ρƒ ΠΊΠΎΠΌΠ±Ρ–Π½Π°Ρ†Ρ–ΡŽβ€ Π· 4 &3Дистиляційних Π²Π΅ΠΆ&r β€” ΠΏΠΎΠ΄Π°ΠΉ &aΠŸΠΎΠ±Ρ–Ρ‡Π½Ρ– ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ Π΄Π΅Ρ€Π΅Π²Π½ΠΎΠ³ΠΎ вугілля&r Ρƒ ΠΏΠ΅Ρ€ΡˆΡƒ Π²Π΅ΠΆΡƒ, Ρ‰ΠΎΠ± Ρ€ΠΎΠ·Π΄Ρ–Π»ΠΈΡ‚ΠΈ Ρ—Ρ… Π½Π° &aΠ”Π΅Ρ€Π΅Π²Π½Ρƒ смолу&r, &aΠ”Π΅Ρ€Π΅Π²Π½ΠΈΠΉ Π³Π°Π·&r Ρ– &aΠ”Π΅Ρ€Π΅Π²Π½ΠΈΠΉ ΠΎΡ†Π΅Ρ‚&r.\n\nΠ¦Π΅ Π½Π΅ Π½Π°ΠΉΠ΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡˆΠ΅ ΡΠΏΡ–Π²Π²Ρ–Π΄Π½ΠΎΡˆΠ΅Π½Π½Ρ Π²ΠΈΡ‚Ρ€Π°Ρ‚ Π΄ΠΎ продуктивності, Π°Π»Π΅ Ρ‚Π°ΠΊΠ° опція існує, якщо Ρ‚ΠΎΠ±Ρ– станС Π½ΡƒΠ΄Π½ΠΎ.", + "quests.extreme_voltage.wood_distillation.task": "Π‘ΡƒΠ΄ΡŒ-який Π· Π½ΠΈΡ…", + "quests.extreme_voltage.new_qol.title": "НовС покращСння якості Тиття?", + "quests.extreme_voltage.new_qol.desc": "Ось ΠΊΡ–Π»ΡŒΠΊΠ° корисних інструмСнтів, які Ρ‚ΠΈ Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΠ²Π°Π² Ρ–Π· &5EV&r Π·Π±ΠΈΡ€Π°Ρ‡Π΅ΠΌ.", + "quests.extreme_voltage.building_gadgets.title": "Building Gadgets", + "quests.extreme_voltage.building_gadgets.subtitle": "Засипати прСкрасні Π»Π°Π½Π΄ΡˆΠ°Ρ„Ρ‚ΠΈ ΠΎΠ΄Π½ΠΈΠΌ натисканням ΠΊΠ½ΠΎΠΏΠΊΠΈ!", + "quests.extreme_voltage.building_gadgets.desc": "Π₯ΠΎΡ‡Π΅Ρˆ Ρ€ΠΎΠ·ΡˆΠΈΡ€ΠΈΡ‚ΠΈ свою Ρ„Π°Π±Ρ€ΠΈΠΊΡƒ Ρ‰Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅? ΠŸΡ€ΠΎΡΡ‚ΠΎ вставити Ρ‡Π΅Ρ€Π³ΠΎΠ²ΠΈΠΉ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ? А ΠΌΠΎΠΆΠ΅, Ρ‚Π° Π³ΠΎΡ€Π° Π·Π°Π²Π°ΠΆΠ°Ρ” огляду?\n\nΠ’ΠΎΠ΄Ρ– Ρ‚ΠΎΠ±Ρ– Ρ‚ΠΎΡ‡Π½ΠΎ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– Building Gadgets β€” Π½Π°Π±Ρ–Ρ€ інструмСнтів, які ΠΌΠΎΠΆΡƒΡ‚ΡŒ усС Ρ†Π΅ ΠΉ Π½Π°Π²Ρ–Ρ‚ΡŒ Π±Ρ–Π»ΡŒΡˆΠ΅. Π¦Π΅ Ρ–Π΄Π΅Π°Π»ΡŒΠ½Ρ– Π±ΡƒΠ΄Ρ–Π²Π΅Π»ΡŒΠ½Ρ– ‘Π°Π΄ΠΆΠ΅Ρ‚ΠΈ Π½Π° ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½Ρ”, Ρ– Π²ΠΎΠ½ΠΈ Ρ‰Π΅ ΠΉ Π· Ρ–Π½ΡΡ‚Ρ€ΡƒΠΊΡ†Ρ–Ρ”ΡŽ!", + "quests.extreme_voltage.gasoline.title": "Π‘Π΅Π½Π·ΠΈΠ½", + "quests.extreme_voltage.gasoline.desc": "&aΠ‘Π΅Π½Π·ΠΈΠ½&r β€” Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ ΠΏΠΎΡ‚ΡƒΠΆΠ½Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ для згоряння. Π™ΠΎΠ³ΠΎ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½Π° Ρ‰Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ Π±Ρ–Π»ΡŒΡˆ Π½Ρ–ΠΆ Ρƒ &63 Ρ€Π°Π·ΠΈ&r ΠΏΠ΅Ρ€Π΅Π²ΠΈΡ‰ΡƒΡ” Ρ‰Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ &dДизСля&r!\n\n&9ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°:&r Π¦Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ для згоряння існує Π²ΠΈΠΊΠ»ΡŽΡ‡Π½ΠΎ як &eΠ²ΠΈΠΊΠ»ΠΈΠΊ&r, який Ρ‚ΠΈ моТСш прийняти, якщо Π³ΠΎΡ‚ΠΎΠ²ΠΈΠΉ.\n\nΠ¦Π΅ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ &dнСобов’язково&r, Ρ‚ΠΎΠΆ ΠΌΠΈ Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΠΌΠΎ Ρ‚ΠΎΠ±Ρ– самостійно з’ясувати, як ΠΉΠΎΠ³ΠΎ Π·Π΄ΠΎΠ±ΡƒΡ‚ΠΈ β€” Π±Π΅Π· ΠΆΠΎΠ΄Π½ΠΈΡ… ΠΏΡ–Π΄ΠΊΠ°Π·ΠΎΠΊ.", + "quests.extreme_voltage.radiation.title": "ПоводТСння Π· Ρ€Π°Π΄Ρ–Π°Ρ†Ρ–Ρ”ΡŽ", + "quests.extreme_voltage.radiation.subtitle": "Особливо гострі ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ", + "quests.extreme_voltage.radiation.desc.1": "Π₯ΠΎΡ‡ GregTech Ρ– Π½Π΅ ΠΌΠ°Ρ” ΠΆΠΎΠ΄Π½ΠΎΡ— β€œΡ„ΠΎΠ½ΠΎΠ²ΠΎΡ— радіації”, як дСякі Ρ–Π½ΡˆΡ– ΠΌΠΎΠ΄ΠΈ, &aΡ€Π°Π΄Ρ–ΠΎΠ°ΠΊΡ‚ΠΈΠ²Π½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ&r усС ΠΎΠ΄Π½ΠΎ Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½Ρ– для гравця ΠΏΡ€ΠΈ ΡƒΡ‚Ρ€ΠΈΠΌΠ°Π½Π½Ρ–! Π¦Π΅ ΡΡ‚ΠΎΡΡƒΡ”Ρ‚ΡŒΡΡ Π±ΡƒΠ΄ΡŒ-якого ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π° Π· ΠΏΠΎΠ·Π½Π°Ρ‡ΠΊΠΎΡŽ &eΠšΠ°Π½Ρ†Π΅Ρ€ΠΎΠ³Π΅Π½Π½ΠΈΠΉ&r, Ρ‰ΠΎ Π²ΠΈΠΊΠ»ΠΈΠΊΠ°Ρ”Ρ‚ΡŒΡΡ &eΠ‘ΡƒΠ΄ΡŒ-яким ΠΊΠΎΠ½Ρ‚Π°ΠΊΡ‚ΠΎΠΌ&r.\n\nΠ„ ΠΊΡ–Π»ΡŒΠΊΠ° способів Π·ΠΌΠ΅Π½ΡˆΠΈΡ‚ΠΈ Ρ€ΠΈΠ·ΠΈΠΊ, Ρ– Π½Π°ΠΉΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΈΠΉ β€” просто ΡƒΠ½ΠΈΠΊΠ°Ρ‚ΠΈ ΠΊΠΎΠ½Ρ‚Π°ΠΊΡ‚Ρƒ Π· Ρ‚Π°ΠΊΠΈΠΌΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°ΠΌΠΈ: ΠΏΠ΅Ρ€Π΅ΠΌΡ–Ρ‰ΡƒΠΉ Ρ—Ρ… Ρ‚Ρ€ΡƒΠ±Π°ΠΌΠΈ, Ρ€ΡŽΠΊΠ·Π°ΠΊΠ°ΠΌΠΈ Π°Π±ΠΎ Π½Π°Π²Ρ–Ρ‚ΡŒ Малими ΠŸΠΎΡΡƒΠ΄ΠΈΠ½Π°ΠΌΠΈ. Π§ΠΈΠΌ мСншС часу Π²ΠΎΠ½ΠΈ ΠΏΠ΅Ρ€Π΅Π±ΡƒΠ²Π°ΡŽΡ‚ΡŒ Ρƒ Ρ‚Π²ΠΎΡ”ΠΌΡƒ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Ρ– β€” Ρ‚ΠΈΠΌ ΠΊΡ€Π°Ρ‰Π΅!", + "quests.extreme_voltage.radiation.desc.2": "ΠžΠΊΡ€Ρ–ΠΌ Ρ†ΡŒΠΎΠ³ΠΎ, Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ ΠΉ Ρ–Π½ΡˆΡ– способи захисту. Носіння спорядТСння Π· Ρ‚Π΅Π³ΠΎΠΌ &e#ppe_armor&r Ρƒ всіх Ρ‡ΠΎΡ‚ΠΈΡ€ΡŒΠΎΡ… слотах Π·Π°Ρ…ΠΈΡΡ‚ΠΈΡ‚ΡŒ Ρ‚Π΅Π±Π΅ Π²Ρ–Π΄ Ρ€Π°Π΄Ρ–Π°Ρ†Ρ–Ρ—. ΠŸΡ€ΠΎΡ‚Π΅ Ρ‚Π°ΠΊΠ΅ спорядТСння всС ΠΎΠ΄Π½ΠΎ Π±ΡƒΠ΄Π΅ ΠΏΠΎΡˆΠΊΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‚ΠΈΡΡŒ Π· часом (Π·Ρ– ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŽ, Π΅ΠΊΠ²Ρ–Π²Π°Π»Π΅Π½Ρ‚Π½ΠΎΡŽ Π²ΠΏΠ»ΠΈΠ²Ρƒ Ρ€Π°Π΄Ρ–Π°Ρ†Ρ–Ρ—), &oΠ·Π° винятком&r &6ΠšΠΎΡΡ‚ΡŽΠΌΠ° для Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΈΡ… ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²&r, який Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ” пошкодТСння Π²Ρ–Π΄ Ρ€Π°Π΄Ρ–Π°Ρ†Ρ–Ρ—.\n\nНСдолік Ρƒ Ρ‚ΠΎΠΌΡƒ, Ρ‰ΠΎ ΠΊΠΎΡΡ‚ΡŽΠΌ Ρ…Π°Π·ΠΌΠ°Ρ‚ β€” Ρ†Π΅ Π½Π΅ космічний ΠΊΠΎΡΡ‚ΡŽΠΌ, Ρ‚ΠΎΠΆ Π½Π° ΠœΠ°Ρ€ΡΡ– Ρ‚ΠΎΠ±Ρ– Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Π°Π±ΠΎ ΠΎΠ±Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Π·Π°ΠΊΡ€ΠΈΡ‚Ρƒ Π±Π°Π·Ρƒ Π· киснСм для Ρ…Π°Π·ΠΌΠ°Ρ‚Ρƒ, Π°Π±ΠΎ змиритися Π· пошкодТСнням Ρ‚Π²ΠΎΠ³ΠΎ космічного ΠΊΠΎΡΡ‚ΡŽΠΌΠ°.", + "quests.extreme_voltage.radiation.desc.3": "ΠΠ°Ρ€Π΅ΡˆΡ‚Ρ–, Ρ‚ΠΈ моТСш ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€ΠΈΡ‚ΠΈ Ρ€Ρ–Π²Π΅Π½ΡŒ Ρ€Π°Π΄Ρ–Π°Ρ†Ρ–ΠΉΠ½ΠΎΠ³ΠΎ отруєння Π² Π±ΡƒΠ΄ΡŒ-який ΠΌΠΎΠΌΠ΅Π½Ρ‚ Π·Π° допомогою ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ &a/medical_condition query&r. Π―ΠΊΡ‰ΠΎ Π²Ρ–Π½ станС Π½Π°Π΄Ρ‚ΠΎ високим, Ρ‚ΠΈ ΠΏΠΎΡ‡Π½Π΅Ρˆ ΠΏΠ΅Ρ€Ρ–ΠΎΠ΄ΠΈΡ‡Π½ΠΎ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ ΡˆΠΊΠΎΠ΄Ρƒ Π°Π±ΠΎ просто Ρ€Π°ΠΏΡ‚ΠΎΠ²ΠΎ ΠΏΠΎΠΌΡ€Π΅Ρˆ β€” Ρ‚ΠΎΠΆ ΠΊΡ€Π°Ρ‰Π΅ Π·Π°ΠΏΠΎΠ±Ρ–Π³Ρ‚ΠΈ Ρ†ΡŒΠΎΠΌΡƒ.\n\nΠ„Π΄ΠΈΠ½ΠΈΠΉ Ρ–Π½ΡˆΠΈΠΉ спосіб лікування β€” створити Ρ‚Π° з’їсти ΠΏΡ–Π³ΡƒΠ»ΠΊΠΈ &bRad Away&r, ΠΊΠΎΠΆΠ½Π° Π· яких Π·ΠΌΠ΅Π½ΡˆΡƒΡ” накопичСння Π½Π° 50%%.", + "quests.extreme_voltage.radiation.task": "Π‘Π΅Π·ΠΏΠ΅ΠΊΠ° ΠΏΠΎΠ½Π°Π΄ усС!", + "quests.extreme_voltage.hexafluorosilic_acid.title": "ГСксафторокрСмнієва кислота", + "quests.extreme_voltage.hexafluorosilic_acid.subtitle": "Щось Ρ” Ρƒ Π²ΠΎΠ΄Ρ–...", + "quests.extreme_voltage.hexafluorosilic_acid.desc": "ГСксафторокрСмнієву кислоту ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒ ΡˆΠ»ΡΡ…ΠΎΠΌ замочування ΠΏΠΈΠ»Ρƒ Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΠ³ΠΎ Π³Ρ€Π°Π½Ρ–Ρ‚Ρƒ, Ρ‚Ρ€Π°Ρ…Ρ–Ρ‚Ρƒ Π°Π±ΠΎ Π°Ρ€Π³Ρ–Π»Ρ–Ρ‚Ρƒ Π² ΠΏΠ»Π°Π²ΠΈΠΊΠΎΠ²Ρ–ΠΉ кислоті. Π¦Π΅ΠΉ ΠΏΠΈΠ» ΠΌΠΎΠΆΠ½Π° ΠΎΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ Π² Π½Π΅ΠΎΠ±ΠΌΠ΅ΠΆΠ΅Π½Ρ–ΠΉ ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π·Π° допомогою ΠšΠ°ΠΌβ€™ΡΠ½ΠΎΡ— Π”Ρ€ΠΎΠ±Π°Ρ€ΠΊΠΈ.", + "quests.extreme_voltage.martian_sludge.title": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΈΠΉ ΠΌΡƒΠ»", + "quests.extreme_voltage.martian_sludge.subtitle": "Лінія ΠΏΠΎΠΌΠΈΡ—Π²", + "quests.extreme_voltage.martian_sludge.desc": "Π¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³ΡƒΠΉ гСксафторокрСмнієву кислоту, Ρ‰ΠΎΠ± ΠΏΠΎΠ²Π΅Ρ€Π½ΡƒΡ‚ΠΈ Ρ„Ρ‚ΠΎΡ€, Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ &6ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΎΠ³ΠΎ ΠΌΡƒΠ»Ρƒ&r β€” Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΎΠ³ΠΎ для Ρ€Π°Π΄ΠΎΠ½Ρƒ Ρ‚Π° ядСрних Π·Π°Π»ΠΈΡˆΠΊΡ–Π².", + "quests.extreme_voltage.large_generators.title": "Π•ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½Π΅ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—", + "quests.extreme_voltage.large_generators.desc": "Π Ρ–Π·Π½Ρ– ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΠΊΠΎΠ²Ρ– Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΈ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒ лишС Π΄ΠΎ HV, Ρ‚ΠΎΠΆ Π΄Π°Π»Ρ– Ρ‚ΠΎΠ±Ρ– Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ використовувати Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΈ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π±Ρ–Π»ΡŒΡˆΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– Π΅Π½Π΅Ρ€Π³Ρ–Ρ—. Π”Π²Π° Π· Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΡ… Π²Π°Ρ€Ρ–Π°Π½Ρ‚Ρ–Π² Π½Π° EV β€” Ρ†Π΅ &dΠ’Π΅Π»ΠΈΠΊΠ° Π³Π°Π·ΠΎΠ²Π° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°&r Ρ‚Π° &dΠ’Π΅Π»ΠΈΠΊΠΈΠΉ Π΄Π²ΠΈΠ³ΡƒΠ½ Π²Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½ΡŒΠΎΠ³ΠΎ згоряння&r, Ρ‚ΠΎΠΆ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΡŒ Π΄ΠΎ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ β€œΠ•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΠΊΠ° GregTech”, Ρ‰ΠΎΠ± дізнатися Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΡ€ΠΎ Π½ΠΈΡ….", + "quests.extreme_voltage.large_centrifuge.subtitle": "ΠšΠ°Ρ€ΡƒΡΠ΅Π»ΡŒ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²", + "quests.extreme_voltage.large_centrifuge.desc": "&6Π’Π΅Π»ΠΈΠΊΠΈΠΉ Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠΆΠ½ΠΈΠΉ Π±Π»ΠΎΠΊ&r Ρ” обов’язковим ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠΌ для Π²Π°ΡˆΠΎΡ— Π»Ρ–Π½Ρ–Ρ— ΠΏΠΎΠ΄Ρ–Π»Ρƒ. \n\nΠ’Ρ–Π½ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” Π΄ΠΎ &52x EV Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… Π»ΡŽΠΊΡ–Π²&r, Ρ‰ΠΎ дозволяє обробляти &1IV-Ρ€Ρ–Π²Π½Π΅Π²Ρ–&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ Ρ‚ΠΎΠΉ самий ΠΌΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ, Ρ‰ΠΎ ΠΉ Π•Π‘ΠŸ, Ρ‚ΠΎΠΆ Π²Ρ–Π½ Π·Π΄Π°Π²Π°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ Π²Π°ΠΌ Π·Π½Π°ΠΉΠΎΠΌΠΈΠΌ. \n\nЦя машина ΠΌΠΎΠΆΠ΅ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ Ρƒ Π΄Π²ΠΎΡ… Ρ€Π΅ΠΆΠΈΠΌΠ°Ρ…: &bΠ¦Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°&r Ρ‚Π° &6Π’Π΅Ρ€ΠΌΡ–Ρ‡Π½Π° Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π°&r. Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π»Π΅Π³ΠΊΠΎ ΠΏΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°Ρ‚ΠΈ Ρ—Ρ… Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π² інтСрфСйсі ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π΅Ρ€Π°, Π°Π»Π΅, Π½Π° Таль, Π²ΠΎΠ½Π° Π½Π΅ ΠΌΠΎΠΆΠ΅ кСруватися Ρ‡Π΅Ρ€Π΅Π· AE2 Ρ‡ΠΈ Ρ–Π½ΡˆΡƒ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†Ρ–ΡŽ. \n\nΠ— Ρ†ΠΈΠΌ покращСнням Π²ΠΈ Π½Π°Ρ€Π΅ΡˆΡ‚Ρ– Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ підняти свою &aΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ Ρ€ΡƒΠ΄ΠΈ&r Π½Π° Π°Π±ΡΠΎΠ»ΡŽΡ‚Π½ΠΎ Π½ΠΎΠ²ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ–.", + "quests.extreme_voltage.btx.title": "BTX Паливо", + "quests.extreme_voltage.btx.subtitle": "Π”Π°Π²Π½ΠΎ Π·Π°Π³ΡƒΠ±Π»Π΅Π½ΠΈΠΉ ΠΊΡƒΠ·Π΅Π½ Π½Ρ–Ρ‚Ρ€ΠΎΠ±Π΅Π½Π·ΠΎΠ»Ρƒ", + "quests.extreme_voltage.btx.desc.1": "&eBTX Паливо&r Ρ” покращСнням порівняно Π· &eΠ Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΈΠΌ Π³Π°Π·ΠΎΠΌ&r, Π±ΡƒΠ΄ΡƒΡ‡ΠΈ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ Ρƒ ΠΏβ€™ΡΡ‚ΡŒ Ρ€Π°Π·Ρ–Π² ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡˆΠΈΠΌ Π½Π° ΠΌΠ‘. ΠŸΡ€ΠΎΡ†Π΅Ρ Π½Π°Π±Π°Π³Π°Ρ‚ΠΎ Π±Ρ–Π»ΡŒΡˆ виснаТливий, Π°Π»Π΅ Π²Ρ–Π½ Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡ” Π·Π½Π°Ρ‡Π½Π΅ підсилСння Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Ρ‚Π²ΠΎΡ—Ρ… &6Π’Π΅Π»ΠΈΠΊΠΈΡ… Π³Π°Π·ΠΎΠ²ΠΈΡ… Ρ‚ΡƒΡ€Π±Ρ–Π½&r. Π―ΠΊ Ρ– ΠΉΠΎΠ³ΠΎ ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΠΈΠΊ, Ρ†Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π²Ρ–Π΄Π½ΠΎΠ²Π»ΡŽΠ²Π°Π½Π΅ ΠΉ ΠΌΠΎΠΆΠ΅ вироблятися Π²ΠΈΠΊΠ»ΡŽΡ‡Π½ΠΎ Ρ‡Π΅Ρ€Π΅Π· &aΠŸΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΊΡƒ Π΄Π΅Ρ€Π΅Π²ΠΈΠ½ΠΈ&r. \n\nΠ©ΠΎΠ± пояснити, як ΡΡ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ &eBTX Паливо&r, ΠΌΠΈ Π΄Ρ–Π»ΠΈΠΌΠΎ ΠΉΠΎΠ³ΠΎ ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ Π½Π° Ρ‚Ρ€ΠΈ частини. &bΠšΡ€Π°Ρ„Ρ‚ BTX Палива&r, створСння &eΠšΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€Π°&r Ρ– Π½Π°Ρ€Π΅ΡˆΡ‚Ρ– Ρ†ΠΈΠΊΠ» &eΠ Π΅Π½Ρ–ΡŽ&r Ρ‚Π° &eΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΈ&r.", + "quests.extreme_voltage.btx.desc.2": "ΠŸΠΎΡ‡Π½Π΅ΠΌΠΎ Π· &bΠšΡ€Π°Ρ„Ρ‚Ρƒ BTX Палива&r. Π’ΠΎΠ±Ρ– ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π·ΠΌΡ–ΡˆΠ°Ρ‚ΠΈ &eΠ Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΈΠΉ Π³Π°Π·&r Ρ–Π· &eΠšΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€ΠΎΠΌ&r Ρ‚Π° нСвСликою ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ &eΠŸΡ€ΠΎΠΏΠ΅Π½Ρƒ&r. Новий ΡˆΠ»ΡΡ… ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ дозволяє виробляти &eΠœΠ΅Ρ‚Π°Π½ΠΎΠ»&r Ρ–Π· &eΠ‘ΠΈΠ½‘Π°Π·Ρƒ&r, який ΠΏΠΎΡ‚Ρ–ΠΌ ΠΌΠΎΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅Π³Π½Π°Ρ‚ΠΈ Ρƒ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΈΠΉ ΠŸΡ€ΠΎΠΏΠ΅Π½. Π¦Π΅ Ρ‡ΡƒΠ΄ΠΎΠ²ΠΈΠΉ спосіб ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎ використати син‘Π°Π·, Ρ‰ΠΎ ΡƒΡ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ ΠΏΡ–Π΄ час Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &eΠ Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΎΠ³ΠΎ Π³Π°Π·Ρƒ&r. \n\nКоли Ρ†Π΅ Π±ΡƒΠ΄Π΅ Π·Ρ€ΠΎΠ±Π»Π΅Π½ΠΎ, ΠΏΠ΅Ρ€Π΅Π³ΠΎΠ½ΠΊΠ° &eΠ”Π΅Ρ€Π΅Π²Π½ΠΎΠ³ΠΎ Π΄ΡŒΠΎΠ³Ρ‚ΡŽ&r Ρƒ &6Дистиляційній Π²Π΅ΠΆΡ–&r Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ усС Ρ–Π½ΡˆΠ΅, Ρ‰ΠΎ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ для Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ ΡΡƒΠΌΡ–ΡˆΡ–. Π”ΠΎΡΠΈΡ‚ΡŒ просто. Π£ наступних завданнях ΠΌΠΈ розглянСмо, як створити &eΠšΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€&r Ρ‚Π° як Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎ ΠΉΠΎΠ³ΠΎ пСрСробляти.", + "quests.extreme_voltage.btx_catalyser.title": "ΠšΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€ Pt-Re ZSM-5", + "quests.extreme_voltage.btx_catalyser.subtitle": "Π―ΠΊΠ° складна Π½Π°Π·Π²Π°", + "quests.extreme_voltage.btx_catalyser.desc": "Π©ΠΎΠ± створити &ePt-Re ZSM-5 ΠšΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€&r, ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π½Π°Π»Π°Π³ΠΎΠ΄ΠΈΡ‚ΠΈ нСскінчСнні Π΄ΠΆΠ΅Ρ€Π΅Π»Π° &aΠ›ΡƒΠ³Ρƒ&r, &aΠΠ°Ρ‚Ρ€Ρ–ΡŽ&r Ρ‚Π° &dΠšΠ²Π°Ρ€Ρ†Ρƒ НиТнього світу&r, Π° Ρ‚Π°ΠΊΠΎΠΆ &aАмоніаку&r Ρ– &aΠ•Ρ‚Π°Π½ΠΎΠ»Ρƒ&r. &bΠΠ»ΡŽΠΌΡ–Π½Ρ–ΠΉ&r Π±ΡƒΠ΄Π΅ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°Ρ†ΠΈΠΊΠ»Π΅Π½ΠΈΠΉ, Ρ‚ΠΎΠ΄Ρ– як Ρ–Π½ΡˆΡ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ лишС частково Π²Ρ–Π΄Π½ΠΎΠ²Π»ΡŽΠ²Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒΡΡ. \n\nΠ―ΠΊΡ‰ΠΎ Ρ‚ΠΈ Π½Π΅ Π²ΠΏΠ΅Π²Π½Π΅Π½ΠΈΠΉ Ρ‰ΠΎΠ΄ΠΎ &dΠšΠ²Π°Ρ€Ρ†Ρƒ НиТнього світу&r, ΠΏΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒ Π»Π°Π½Ρ†ΡŽΠ³ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π², Ρ‰ΠΎ ΠΏΠΎΡ‡ΠΈΠ½Π°Ρ”Ρ‚ΡŒΡΡ Π· &eΠŸΡ–ΡΠΊΡƒ&r. &aНатрій&r, ΡΠ²ΠΎΡ”ΡŽ Ρ‡Π΅Ρ€Π³ΠΎΡŽ, Π»Π΅Π³ΠΊΠΎ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π· ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ &bΠœΠΎΡ€ΡΡŒΠΊΠΎΡ— Π²ΠΎΠ΄ΠΈ&r, Π° Π›ΡƒΠ³ β€” Ρ–Π· Π΄Π΅Ρ€Π΅Π²Π½ΠΎΡ— Π·ΠΎΠ»ΠΈ. \n\nΠΠ°Ρ€Π΅ΡˆΡ‚Ρ–, Π·ΠΌΡ–ΡˆΠ°ΠΉ усС Ρ€Π°Π·ΠΎΠΌ Ρ–Π· нСвСликою ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ &5ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΈ&r Ρ‚Π° &5Π Π΅Π½Ρ–ΡŽ&r, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ свій &eΠšΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€&r. Π”ΠΎΠ±Ρ€Π° Π½ΠΎΠ²ΠΈΠ½Π° полягає Π² Ρ‚ΠΎΠΌΡƒ, Ρ‰ΠΎ Ρ– ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°, Ρ– Π Π΅Π½Ρ–ΠΉ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±Π»ΡΡŽΡ‚ΡŒΡΡ Π² Ρ†ΡŒΠΎΠΌΡƒ процСсі, Ρ‚ΠΎΠΆ Ρ…Π²ΠΈΠ»ΡŽΠ²Π°Ρ‚ΠΈΡΡ Π½Π΅ Π²Π°Ρ€Ρ‚ΠΎ β€” Ρ—Ρ… Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Π²ΠΈΠ΄ΠΎΠ±ΡƒΡ‚ΠΈ лишС ΠΎΠ΄ΠΈΠ½ Ρ€Π°Π·.", + "quests.extreme_voltage.btx_loop.title": "ΠŸΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΊΠ° використаного ΠΊΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€Π°", + "quests.extreme_voltage.btx_loop.subtitle": "ΠŸΠΎΠ²Π΅Ρ€Π½ΡƒΡ‚ΠΈ якомога Π±Ρ–Π»ΡŒΡˆΠ΅", + "quests.extreme_voltage.btx_loop.desc.1": "ΠžΡΡ‚Π°Π½Π½Ρ частина Ρ†ΡŒΠΎΠ³ΠΎ Π»Π°Π½Ρ†ΡŽΠ³Π° полягає Ρƒ ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±Ρ†Ρ– використаного ΠΊΠ°Ρ‚Π°Π»Ρ–Π·Π°Ρ‚ΠΎΡ€Π°. Π—Π°Π³Π°Π»ΡŒΠ½ΠΈΠΉ процСс Π΄ΠΎΡΠΈΡ‚ΡŒ простий, Π° головною ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠΎΡŽ Π±ΡƒΠ΄Π΅ підтримання Π±Π΅Π·ΠΏΠ΅Ρ€Π΅Ρ€Π²Π½ΠΎΠ³ΠΎ постачання &aУсилСних Споксидних смоляних пластин&r Ρ‚Π° &eКлСю&r. \n\nΠ―ΠΊΡ‰ΠΎ Ρƒ Ρ‚Π΅Π±Π΅ досі ΠΏΡ€Π°Ρ†ΡŽΡ” &2систСма підсочки&r, Ρ†ΡŒΠΎΠ³ΠΎ Π±Ρ–Π»ΡŒΡˆ Π½Ρ–ΠΆ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ, Ρ‰ΠΎΠ± Π²ΠΈΡ€ΠΎΠ±ΠΈΡ‚ΠΈ всю смолу, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Ρƒ для створСння клСю. ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½ΠΎ, використання &bЕкстрактора&r Π½Π° ΠΊΠΎΠ»ΠΎΠ΄Π°Ρ… Ρ‚Π°ΠΊΠΎΠΆ Ρ” Ρ†Ρ–Π»ΠΊΠΎΠΌ ΠΆΠΈΡ‚Ρ‚Ρ”Π·Π΄Π°Ρ‚Π½ΠΈΠΌ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΎΠΌ. Π¦Π΅ΠΉ ΠΌΠ΅Ρ‚ΠΎΠ΄ Ρ‚Ρ€ΠΎΡ…ΠΈ Π±Ρ–Π»ΡŒΡˆ &cΠ΅Π½Π΅Ρ€Π³ΠΎΡ”ΠΌΠ½ΠΈΠΉ&r, Π°Π»Π΅ Π²ΠΈΠ±Ρ–Ρ€ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°Π»Π΅ΠΆΠΈΡ‚ΡŒ Π²Ρ–Π΄ Ρ‚Π²ΠΎΡ”Ρ— інфраструктури.", + "quests.extreme_voltage.btx_loop.desc.2": "НСвСлика ΠΏΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ° Ρ‰ΠΎΠ΄ΠΎ &9Π ΠΎΠ·Π±Π°Π²Π»Π΅Π½ΠΎΡ— Ρ…Π»ΠΎΡ€ΠΎΠ²ΠΎΠ΄Π½Π΅Π²ΠΎΡ— кислоти&r: Ρ—Ρ— Π»Π΅Π³ΠΊΠΎ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Ρ€Π΅Π°ΠΊΡ†Ρ–Ρ”ΡŽ &bΠ’ΠΎΠ΄ΠΈ&r Π· &aΠ₯Π»ΠΎΡ€ΠΎΠΌ&r. Π’ΠΈ моТСш Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ свою &dΠ₯лорнуватисту кислоту&r Π°Π±ΠΎ провСсти Ρ—Ρ— &7Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·&r, якщо Ρ…ΠΎΡ‡Π΅Ρˆ ΠΏΠΎΠ²Π΅Ρ€Π½ΡƒΡ‚ΠΈ &fΠΏΠΎΠ»ΠΎΠ²ΠΈΠ½Ρƒ Π₯Π»ΠΎΡ€Ρƒ&r. \n\nΠ©ΠΎ ΡΡ‚ΠΎΡΡƒΡ”Ρ‚ΡŒΡΡ &6Π‘ΡƒΠ»ΡŒΡ„Π°Ρ‚Π½ΠΎΡ— кислоти&r, Ρ‚ΠΎ Ρ‚ΠΈ Π²ΠΆΠ΅ ΠΌΠ°Ρ”Ρˆ доступ Π΄ΠΎ &aнСскінчСнного Π΄ΠΆΠ΅Ρ€Π΅Π»Π° Π‘Ρ–Ρ€ΠΊΠΈ&r Ρ‡Π΅Ρ€Π΅Π· свою систСму &eΠŸΠ΅Ρ‚Ρ€ΠΎΡ…Ρ–ΠΌΡ–Ρ‡Π½ΠΎΡ— дистиляції&r. Π―ΠΊΡ‰ΠΎ Ρ†Π΅ Ρ‰Π΅ Π½Π΅ Ρ‚Π°ΠΊ, ΠΌΠΈ Π½Π°ΠΏΠΎΠ»Π΅Π³Π»ΠΈΠ²ΠΎ Ρ€Π°Π΄ΠΈΠΌΠΎ Π²ΠΈΡ€Ρ–ΡˆΠΈΡ‚ΠΈ Ρ†Π΅ якомога швидшС. ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½ΠΎ, &7ΠšΠ°ΠΌβ€™ΡΠ½ΠΎΠ²ΡƒΠ³Ρ–Π»ΡŒΠ½ΠΈΠΉ Π΄ΡŒΠΎΠ³ΠΎΡ‚ΡŒ&r, ΠΎΡ‚Ρ€ΠΈΠΌΠ°Π½ΠΈΠΉ ΠΏΡ–Π΄ час Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &bΠ Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΎΠ³ΠΎ Π³Π°Π·Ρƒ&r, ΠΌΠΎΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Π½Π°Π·Π°Π΄ Ρƒ &2Π‘Ρ–Ρ€ΠΊΠΎΠ²ΠΎΠ΄Π΅Π½ΡŒ&r Ρ– Π·Ρ€Π΅ΡˆΡ‚ΠΎΡŽ Π·Π½ΠΎΠ²Ρƒ очистити Π΄ΠΎ &6Π‘Ρ–Ρ€ΠΊΠΈ&r.", "quests.gregtech_energy": "GregTech ЕнСргія", "quests.gregtech_energy.subtitle": "ΠžΡ‚ΠΎ як усС Ρ†Π΅ ΠΏΡ€Π°Ρ†ΡŽΡ”?", "quests.gregtech_energy.start.title": "Π”Π°Π²Π°ΠΉ Ρ‰ΠΎΡΡŒ пояснимо", @@ -1727,14 +2333,14 @@ "quests.gregtech_energy.start.subtitle": "ВсС Π½Π΅ Ρ‚Π°ΠΊ ΡƒΠΆΠ΅ ΠΉ ΠΏΠΎΠ³Π°Π½ΠΎ, як Ρ‚ΠΈ Π΄ΡƒΠΌΠ°Ρ”Ρˆ", "quests.gregtech_energy.moving.title": "ΠŸΠ΅Ρ€Π΅ΠΌΡ–Ρ‰Π΅Π½Π½Ρ Ρ‚Π²ΠΎΡ”Ρ— Π΅Π½Π΅Ρ€Π³Ρ–Ρ—", "quests.gregtech_energy.moving.subtitle": "ΠžΡ‚ΠΆΠ΅, ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ—, Π³Π°", - "quests.gregtech_energy.moving.desc": "ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‡Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π² GregTech ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” розуміння ΠΊΡ–Π»ΡŒΠΊΠΎΡ… основних ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊ.\n\nПо-ΠΏΠ΅Ρ€ΡˆΠ΅, &bΠ•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½Ρ– Ρ€Ρ–Π²Π½Ρ–&r. Π’Ρ–Π΄ &aLV&r Π΄ΠΎ &cUHV&r β€” усС Π² GregTech (Π΄Ρ€ΠΎΡ‚ΠΈ, машини, Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ) прив’язанС Π΄ΠΎ ΠΏΠ΅Π²Π½ΠΎΠ³ΠΎ рівня. Π©ΠΎΠ± ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ, ΠΏΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ &eΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΈΠΉ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» кабСлю&r. Наприклад:\n&8β€’&r ΠžΠ»ΠΎΠ²β€™ΡΠ½ΠΈΠΉ Π΄Ρ€Ρ–Ρ‚ = &aLV&r\n&8β€’&r ΠœΡ–Π΄Π½ΠΈΠΉ Π΄Ρ€Ρ–Ρ‚ = &bMV&r\n\nПо-Π΄Ρ€ΡƒΠ³Π΅ β€” ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΠ° &bΠ‘ΠΈΠ»ΠΈ струму&r. Уяви, Ρ‰ΠΎ 1 АмпСр (Π°Π±ΠΎ 1A) β€” Ρ†Π΅ &eΠΏΠ°ΠΊΠ΅Ρ‚ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—&r. Машини Π·Π°ΠΏΠΈΡ‚ΡƒΡŽΡ‚ΡŒ Ρ†Ρ– \"ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈ\", які ΠΏΠΎΡ‚Ρ–ΠΌ ΠΏΡ€ΠΎΡ…ΠΎΠ΄ΡΡ‚ΡŒ ΠΏΠΎ Π΄Ρ€ΠΎΡ‚Π°Ρ….\n&8β€’&r 1A Π½Π° LV = &a32 EU&r\n&8β€’&r 1A Π½Π° HV = &e512 EU&r\n\nΠ‘Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ машин Ρ– Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… ΡˆΠ»ΡŽΠ·Ρ–Π² Π·Π°ΠΏΠΈΡ‚ΡƒΡŽΡ‚ΡŒ максимум &62A&r.\n\nΠžΠΏΠ°Π½ΠΎΠ²ΡƒΠ²Π°Π½Π½Ρ Ρ†ΠΈΡ… Π΄Π²ΠΎΡ… ΠΏΠΎΠ½ΡΡ‚ΡŒ Ρ” ΠΊΠ»ΡŽΡ‡Π΅ΠΌ Π΄ΠΎ подальшого розуміння Π΅Π½Π΅Ρ€Π³ΠΎΡ€ΠΎΠ·ΠΏΠΎΠ΄Ρ–Π»Ρƒ.", + "quests.gregtech_energy.moving.desc": "ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‡Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π² GregTech ΠΎΠ·Π½Π°Ρ‡Π°Ρ” розуміння ΠΊΡ–Π»ΡŒΠΊΠΎΡ… основних ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊ.\n\nПо-ΠΏΠ΅Ρ€ΡˆΠ΅, &bΠ•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½Ρ– Ρ€Ρ–Π²Π½Ρ–&r. Π’Ρ–Π΄ &aLV&r Π΄ΠΎ &cUHV&r, усС Π² GregTech β€” Π΄Ρ€ΠΎΡ‚ΠΈ, машини, Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ β€” прив’язанС Π΄ΠΎ рівня. Π’Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ &eΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΈΠΉ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» кабСлю&r для ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Ρ– Π΅Π½Π΅Ρ€Π³Ρ–Ρ—. Наприклад:\n&7β€’&r ΠžΠ»ΠΎΠ²β€™ΡΠ½ΠΈΠΉ Π΄Ρ€Ρ–Ρ‚ = &aLV&r\n&7β€’&r ΠœΡ–Π΄Π½ΠΈΠΉ Π΄Ρ€Ρ–Ρ‚ = &bMV&r\n\nПо-Π΄Ρ€ΡƒΠ³Π΅, існує ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΠ° &bАмпСраТу&r. Π£ΡΠ²Ρ–Ρ‚ΡŒ 1 АмпСр (Π°Π±ΠΎ 1A) як &eΠΏΠ°ΠΊΠ΅Ρ‚ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—&r. Машини Π·Π°ΠΏΠΈΡ‚ΡƒΡŽΡ‚ΡŒ Β«ΠΏΠ°ΠΊΠ΅Ρ‚ΠΈΒ» Π΅Π½Π΅Ρ€Π³Ρ–Ρ—, які ΠΏΠΎΡ‚Ρ–ΠΌ Π½Π°Π΄Ρ…ΠΎΠ΄ΡΡ‚ΡŒ ΠΏΠΎ Π΄Ρ€ΠΎΡ‚Ρƒ.\n&7β€’&r 1A рівня LV = &a32 EU&r\n&7β€’&r 1A рівня HV = &e512 EU&r\n\nΠ‘Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ машин Ρ‚Π° Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… Π»ΡŽΠΊΡ–Π² Π·Π°ΠΏΠΈΡ‚ΡƒΡŽΡ‚ΡŒ максимум &62A&r.\n\nΠžΠΏΠ°Π½ΡƒΠ²Π°Π½Π½Ρ Ρ†ΠΈΡ… Π΄Π²ΠΎΡ… ΠΏΠΎΠ½ΡΡ‚ΡŒ Ρ” ΠΊΠ»ΡŽΡ‡Π΅ΠΌ ΠΏΠ΅Ρ€Π΅Π΄ Ρ‚ΠΈΠΌ, як ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΠΈΡ‚ΠΈ Π΄ΠΎ Ρ€ΠΎΠ·ΠΏΠΎΠ΄Ρ–Π»Ρƒ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—.", "quests.gregtech_energy.moving.task": "Π― Ρ€ΠΎΠ·ΡƒΠΌΡ–ΡŽ", "quests.gregtech_energy.transformer.title": "Π‘ΡƒΠΏΠ΅Ρ€ Врансформатор", "quests.gregtech_energy.transformer.subtitle": "ΠšΡ€Π°Ρ‰Π΅, Π½Ρ–ΠΆ ΠžΠΏΡ‚ΠΈΠΌΡƒΡ ΠŸΡ€Π°ΠΉΠΌ", - "quests.gregtech_energy.transformer.desc": "Π£ GregTech Π½Π° ΠΊΠΎΠΆΠ½Ρƒ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΡƒ Π·Π½Π°ΠΉΠ΄Π΅Ρ‚ΡŒΡΡ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ-Ρ€Ρ–ΡˆΠ΅Π½Π½Ρ. Зустрічай: &dАктивний Врансформатор&r.\n\nΠ¦Π΅ΠΉ монстр β€” Ρ‚Π²Ρ–ΠΉ Ρ„Ρ–Π½Π°Π»ΡŒΠ½ΠΈΠΉ трансформатор. Π’Ρ–Π½ Π·Π΄Π°Ρ‚Π΅Π½ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ ΠΌΡ–ΠΆ Π±ΡƒΠ΄ΡŒ-якими рівнями β€” Π²Ρ–Π΄ &aLV&r Π΄ΠΎ &cUHV&r β€” Π±Π΅Π· ΠΆΠΎΠ΄Π½ΠΈΡ… Π²ΠΈΠ±ΡƒΡ…Ρ–Π². АлС Ρ†Π΅ Ρ‰Π΅ Π½Π΅ Π½Π°ΠΉΡ†Ρ–ΠΊΠ°Π²Ρ–ΡˆΠ΅.\n\nΠ’Ρ–Π½ ΠΌΠΎΠΆΠ΅ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ Ρ‡Π΅Ρ€Π΅Π· Π›Π°Π·Π΅Ρ€Π½Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ:\n&8β€’&r Π›Π°Π·Π΅Ρ€ΠΈ Π½Π°Π΄ΡΠΈΠ»Π°ΡŽΡ‚ΡŒ Π½Π΅ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ АмпСрів.\n&8β€’&r Π‘Π΅Π· Π²Ρ‚Ρ€Π°Ρ‚. Π‘Π΅Π· ΠΊΠ°Π±Π΅Π»Ρ–Π². Π›ΠΈΡˆΠ΅ чиста СнСргія.\n&8β€’&r Π„ лишС ΠΎΠ΄Π½Π° ΡƒΠΌΠΎΠ²Π°: &cΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ Ρ–Π΄Π΅Π°Π»ΡŒΠ½ΠΎ пряма лінія&r.\n\nКоли ΠΊΠ°Π±Π΅Π»Ρ– Π½Π΅ ΡΠΏΡ€Π°Π²Π»ΡΡŽΡ‚ΡŒΡΡ β€” &lвикористовуй Π»Π°Π·Π΅Ρ€ΠΈ&r.", + "quests.gregtech_energy.transformer.desc": "Для ΠΊΠΎΠΆΠ½ΠΎΡ— ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠΈ Π² GregTech існує ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠ²Π΅ Ρ€Ρ–ΡˆΠ΅Π½Π½Ρ. Зустрічай &dАктивний трансформатор&r. \n\nΠ¦Π΅ΠΉ монстр β€” Ρ‚Π²Ρ–ΠΉ Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΉ трансформатор. Π’Ρ–Π½ ΠΌΠΎΠΆΠ΅ ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ ΠΌΡ–ΠΆ Π±ΡƒΠ΄ΡŒ-якими рівнями β€” Π²Ρ–Π΄ &aLV&r Π΄ΠΎ &cUHV&r β€” Π±Π΅Π· урахування Π°ΠΌΠΏΠ΅Ρ€ Ρ‡ΠΈ ΠΏΠ»ΡƒΡ‚Π°Π½ΠΈΠ½ΠΈ Π· ΠΊΡƒΠΏΠΎΡŽ ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΠΊΠΎΠ²ΠΈΡ… трансформаторів. \n\nАлС Ρ†Π΅ Ρ‰Π΅ Π½Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π° частина: Π²Ρ–Π½ ΠΌΠΎΠΆΠ΅ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ Ρ‡Π΅Ρ€Π΅Π· Π›Π°Π·Π΅Ρ€Π½Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ. \n&7β€’&r Π›Π°Π·Π΅Ρ€ΠΈ ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ΡŒ абсурдну ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π°ΠΌΠΏΠ΅Ρ€. \n&7β€’&r Π–ΠΎΠ΄Π½ΠΈΡ… Π²Ρ‚Ρ€Π°Ρ‚. Π–ΠΎΠ΄Π½ΠΈΡ… ΠΊΠ°Π±Π΅Π»Ρ–Π². Π›ΠΈΡˆΠ΅ чиста СнСргія. \n&7β€’&r Π„ лишС ΠΎΠ΄Π½Π° ΡƒΠΌΠΎΠ²Π°: &cΠ²ΠΎΠ½ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Ρ– Ρ–Π΄Π΅Π°Π»ΡŒΠ½ΠΎ ΠΏΠΎ прямій&r. \n\nКоли ΠΊΠ°Π±Π΅Π»Ρ– Π·Π΄Π°ΡŽΡ‚ΡŒΡΡ слабкими, &lвикористовуй Π»Π°Π·Π΅Ρ€ΠΈ&r.", "quests.gregtech_energy.moving_wire.title": "Π ΡƒΡ…Π°ΡŽΡ‡ΠΈΡΡŒ Π· Π΄Ρ€ΠΎΡ‚Π°ΠΌΠΈ", "quests.gregtech_energy.moving_wire.subtitle": "Π”ΠΈΠ²Π½ΠΎ Ρ€ΠΎΠ·ΠΌΡ–Ρ‰ΡƒΡ”Ρ‚ΡŒΡΡ", - "quests.gregtech_energy.moving_wire.desc": "ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‡Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π² GregTech β€” справа нСпроста: &bΠ±Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ ΠΊΠ°Π±Π΅Π»Ρ–Π² ΠΌΠ°ΡŽΡ‚ΡŒ Π²Ρ‚Ρ€Π°Ρ‚ΠΈ&r. Π— ΠΊΠΎΠΆΠ½ΠΈΠΌ Π±Π»ΠΎΠΊΠΎΠΌ, Π· ΠΊΠΎΠΆΠ½ΠΈΠΌ Π°ΠΌΠΏΠ΅Ρ€ΠΎΠΌ, частина Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π·Π½ΠΈΠΊΠ°Ρ” ΠΏΡ–Π΄ час Ρ€ΡƒΡ…Ρƒ Π΄Ρ€ΠΎΡ‚Π°ΠΌΠΈ. АлС Ρ€Ρ–ΡˆΠ΅Π½Π½Ρ Ρ”:\n\n&8β€’&r ΠŸΠΎΠΊΡ€ΠΈΠΉ Π΄Ρ€ΠΎΡ‚ΠΈ Π³ΡƒΠΌΠΎΡŽ. Π¦Π΅ Π·Π½Π°Ρ‡Π½ΠΎ Π·ΠΌΠ΅Π½ΡˆΠΈΡ‚ΡŒ Π²Ρ‚Ρ€Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π½Π° відстані. ΠŸΡ€ΠΎΡΡ‚ΠΎ заглянь Ρƒ квСстові ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ для ΠΏΡ€ΠΈΠΊΠ»Π°Π΄Ρƒ.\n&8β€’&r Використовуй Π΄Ρ€ΠΎΡ‚ΠΈ Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня. Наприклад, ΠΏΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²Ρ– Π΄Ρ€ΠΎΡ‚ΠΈ Π²Ρ‚Ρ€Π°Ρ‡Π°ΡŽΡ‚ΡŒ лишС 1 EU Π½Π° Π±Π»ΠΎΠΊ β€” ΠΏΡ€Π°ΠΊΡ‚ΠΈΡ‡Π½ΠΎ Π½Ρ–Ρ‡ΠΎΠ³ΠΎ, якщо Π²Ρ€Π°Ρ…ΡƒΠ²Π°Ρ‚ΠΈ, Ρ‰ΠΎ Π²ΠΎΠ½ΠΈ ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ΡŒ Π΄ΠΎ 8192 EU.\n&8β€’&r &bНадпровідники&r. Π¦Ρ– красСні ΠΊΠΎΡˆΡ‚ΡƒΡŽΡ‚ΡŒ нСдСшСво, Π°Π»Π΅ ΠΌΠ°ΡŽΡ‚ΡŒ &90 Π²Ρ‚Ρ€Π°Ρ‚&r. Π‡ΠΌ Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– Π³ΡƒΠΌΠΎΠ²Ρ– ΠΎΠ±Π³ΠΎΡ€Ρ‚ΠΊΠΈ, Ρ– Π²ΠΎΠ½ΠΈ Π½Π΅ Π·Π°Π²Π΄Π°ΡŽΡ‚ΡŒ шкоди. Π©ΠΎΠΏΡ€Π°Π²Π΄Π°, Π·Π°Π·Π²ΠΈΡ‡Π°ΠΉ Ρ—Ρ… ΠΌΠΎΠΆΠ½Π° створити Ρ‚Ρ–Π»ΡŒΠΊΠΈ Π±Π»ΠΈΠΆΡ‡Π΅ Π΄ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ свого рівня.\n\nΠžΠΏΡ‚ΠΈΠΌΡ–Π·ΡƒΠΉ ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Ρƒ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— β€” &bΠ·ΠΌΠ΅Π½ΡˆΡƒΠΉ Π²Ρ‚Ρ€Π°Ρ‚ΠΈ&r Ρ‚Π° Π·Ρ€ΠΎΠ±ΠΈ свою систСму Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡˆΠΎΡŽ.", + "quests.gregtech_energy.moving_wire.desc": "ΠŸΠ΅Ρ€Π΅Π΄Π°Ρ‡Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π² GregTech β€” справа нСпроста: &bΠ±Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ ΠΊΠ°Π±Π΅Π»Ρ–Π² ΠΌΠ°ΡŽΡ‚ΡŒ Π²Ρ‚Ρ€Π°Ρ‚ΠΈ&r. Π— ΠΊΠΎΠΆΠ½ΠΈΠΌ Π±Π»ΠΎΠΊΠΎΠΌ, Π· ΠΊΠΎΠΆΠ½ΠΈΠΌ Π°ΠΌΠΏΠ΅Ρ€ΠΎΠΌ, частина Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π·Π½ΠΈΠΊΠ°Ρ” ΠΏΡ–Π΄ час Ρ€ΡƒΡ…Ρƒ Π΄Ρ€ΠΎΡ‚Π°ΠΌΠΈ. АлС Ρ€Ρ–ΡˆΠ΅Π½Π½Ρ Ρ”:\n\n&7β€’&r ΠŸΠΎΠΊΡ€ΠΈΠΉ Π΄Ρ€ΠΎΡ‚ΠΈ Π³ΡƒΠΌΠΎΡŽ. Π¦Π΅ Π·Π½Π°Ρ‡Π½ΠΎ Π·ΠΌΠ΅Π½ΡˆΠΈΡ‚ΡŒ Π²Ρ‚Ρ€Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π½Π° відстані. ΠŸΡ€ΠΎΡΡ‚ΠΎ заглянь Ρƒ квСстові ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ для ΠΏΡ€ΠΈΠΊΠ»Π°Π΄Ρƒ.\n\n&7β€’&r Використовуй Π΄Ρ€ΠΎΡ‚ΠΈ Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня. Наприклад, ΠΏΠ»Π°Ρ‚ΠΈΠ½ΠΎΠ²Ρ– Π΄Ρ€ΠΎΡ‚ΠΈ Π²Ρ‚Ρ€Π°Ρ‡Π°ΡŽΡ‚ΡŒ лишС 1 EU Π½Π° Π±Π»ΠΎΠΊ β€” ΠΏΡ€Π°ΠΊΡ‚ΠΈΡ‡Π½ΠΎ Π½Ρ–Ρ‡ΠΎΠ³ΠΎ, якщо Π²Ρ€Π°Ρ…ΡƒΠ²Π°Ρ‚ΠΈ, Ρ‰ΠΎ Π²ΠΎΠ½ΠΈ ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ΡŒ Π΄ΠΎ 8192 EU.\n\n&7β€’&r &bНадпровідники&r. Π¦Ρ– красСні ΠΊΠΎΡˆΡ‚ΡƒΡŽΡ‚ΡŒ нСдСшСво, Π°Π»Π΅ ΠΌΠ°ΡŽΡ‚ΡŒ &90 Π²Ρ‚Ρ€Π°Ρ‚&r. Π‡ΠΌ Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– Π³ΡƒΠΌΠΎΠ²Ρ– ΠΎΠ±Π³ΠΎΡ€Ρ‚ΠΊΠΈ, Ρ– Π²ΠΎΠ½ΠΈ Π½Π΅ Π·Π°Π²Π΄Π°ΡŽΡ‚ΡŒ шкоди. Π©ΠΎΠΏΡ€Π°Π²Π΄Π°, Π·Π°Π·Π²ΠΈΡ‡Π°ΠΉ Ρ—Ρ… ΠΌΠΎΠΆΠ½Π° створити Ρ‚Ρ–Π»ΡŒΠΊΠΈ Π±Π»ΠΈΠΆΡ‡Π΅ Π΄ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ свого рівня.\n\nΠžΠΏΡ‚ΠΈΠΌΡ–Π·ΡƒΠΉ ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Ρƒ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— β€” &bΠ·ΠΌΠ΅Π½ΡˆΡƒΠΉ Π²Ρ‚Ρ€Π°Ρ‚ΠΈ&r Ρ‚Π° Π·Ρ€ΠΎΠ±ΠΈ свою систСму Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡˆΠΎΡŽ.", "quests.gregtech_energy.moving_wire.task": "Π― Π·Π°Π²Π΅Ρ€ΡˆΠΈΠ² огляд Π΄Ρ€ΠΎΡ‚Ρ–Π²", "quests.gregtech_energy.moving_amp.title": "ΠšΠ΅Ρ€ΡƒΠ²Π°Π½Π½Ρ АмпСрами", "quests.gregtech_energy.moving_amp.subtitle": "Π’ΠΎΠ½ΠΎ Π³ΠΎΡ€ΠΈΡ‚ΡŒ?", @@ -1751,6 +2357,7 @@ "quests.gregtech_energy.lv_generator.desc.2": "&e1. ΠŸΠ°Ρ€ΠΎΠ²Π° СнСргія&r:\n\nΠ¦Π΅ Π½Π°ΠΉΠΊΠ»Π°ΡΠΈΡ‡Π½Ρ–ΡˆΠΈΠΉ ΠΌΠ΅Ρ‚ΠΎΠ΄. Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ ΠΏΠ°Ρ€Ρƒ, Π²ΠΈΡ€ΠΎΠ±Π»Π΅Π½Ρƒ вашими ΠšΠΎΡ‚Π»Π°ΠΌΠΈ Високого Виску, Π½Π° EU Π·Π° допомогою ΠŸΠ°Ρ€ΠΎΠ²ΠΎΡ— Π’ΡƒΡ€Π±Ρ–Π½ΠΈ.\n\nΠ’ΠΎΠ½Π° Π³Π΅Π½Π΅Ρ€ΡƒΡ” &e32 EU/t&r ΠΏΡ€ΠΈ &e64 mB/t&r ΠΏΠ°Ρ€ΠΈ. Π―ΠΊΡ‰ΠΎ Π²ΠΈ ΠΎΠ±Π΅Ρ€Π΅Ρ‚Π΅ Ρ†Π΅ΠΉ ΡˆΠ»ΡΡ…, ΠΌΠΈ Π½Π°ΠΏΠΎΠ»Π΅Π³Π»ΠΈΠ²ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ створити Π’Π΅Π»ΠΈΠΊΠΈΠΉ Π‘Ρ€ΠΎΠ½Π·ΠΎΠ²ΠΈΠΉ ΠšΠΎΡ‚Π΅Π», який Π»Π΅Π³ΠΊΠΎ ΠΌΠΎΠΆΠ½Π° Π·Π°ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ лавою, ΠΊΡ€Π΅Π·ΠΎΡ‚ΠΎΠΌ Π°Π±ΠΎ Ρ–Π½ΡˆΠΈΠΌΠΈ Ρ‚Π²Π΅Ρ€Π΄ΠΈΠΌΠΈ ΠΏΠ°Π»ΠΈΠ²Π°ΠΌΠΈ (ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€Ρ‚Π΅ JEI!).", "quests.gregtech_energy.lv_generator.desc.3": "&e2. ΠžΠ±Π΅Ρ€Ρ‚Π°Π»ΡŒΠ½Π° СнСргія&r:\n\nΠ’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використати ΠΎΠ±Π΅Ρ€Ρ‚Π°Π»ΡŒΠ½Ρƒ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ Π· ΠΌΠΎΠ΄ΠΈΡ„Ρ–ΠΊΠ°Ρ†Ρ–Ρ— Create Ρ€Π°Π·ΠΎΠΌ Π· ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€ΠΎΠΌ для Π³Π΅Π½Π΅Ρ€Π°Ρ†Ρ–Ρ— RF, Π° ΠΏΠΎΡ‚Ρ–ΠΌ ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Ρ—Ρ— Π½Π° EU Π·Π° допомогою &7ΠŸΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‡Π° LV&r.\n\n(ΠŸΠ΅Ρ€Π΅Π²Ρ–Ρ€Ρ‚Π΅ завдання \"ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€ΠΈ\" Ρƒ LV для отримання Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΎΡ— Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ—.)", "quests.gregtech_energy.lv_generator.desc.4": "&e3. Π‘Ρ–ΠΎΠ΄ΠΈΠ·Π΅Π»ΡŒΠ½Π° СнСргія (TFG-Сксклюзив)&r:\n\nКанола Ρ‚Π° соняшники ΠΌΠΎΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρƒ Π²Π΅Π»ΠΈΠΊΡ– об’єми Масла Π· Насіння. Об'Ρ”Π΄Π½Π°ΠΉΡ‚Π΅ ΠΉΠΎΠ³ΠΎ Π· TFC-Π‘ΠΏΠΈΡ€Ρ‚ΠΎΠΌ, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π‘Ρ–ΠΎΠ΄ΠΈΠ·Π΅Π»ΡŒ.\n\nΠ¦Π΅ΠΉ ΠΌΠ΅Ρ‚ΠΎΠ΄ ΠΌΠΎΠΆΠ΅ здатися ΡΠΊΠ»Π°Π΄Π½Ρ–ΡˆΠΈΠΌ, Π°Π»Π΅ Π‘Ρ–ΠΎΠ΄ΠΈΠ·Π΅Π»ΡŒ Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ ΠΏΠΎΡ‚ΡƒΠΆΠ½ΠΈΠΉ Π½Π° рівнях &7LV&r Ρ‚Π° &bMV&r. Π£ ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½ΡŒΠΎΠΌΡƒ Π²Ρ–Π½ Π΄ΠΎΠ±Ρ€Π΅ ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΡ”Ρ‚ΡŒΡΡ Π°ΠΆ Π΄ΠΎ &5EV&r завдяки &eΠ‘Ρ–ΠΎΠ΄ΠΈΠ·Π΅Π»ΡŽ Π· ΠŸΡ–Π΄Π²ΠΈΡ‰Π΅Π½ΠΈΠΌ Π¦Π΅Ρ‚Π°Π½ΠΎΠ²ΠΈΠΌ Числом&r.\n\nΠ©ΠΎΠ± використовувати Π‘Ρ–ΠΎΠ΄ΠΈΠ·Π΅Π»ΡŒ, Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ &7LV&r Π”Π²ΠΈΠ³ΡƒΠ½ Π’Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½ΡŒΠΎΠ³ΠΎ Згоряння. Π₯ΠΎΡ‡Π° Π²Ρ–Π½ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ Π΄ΠΎΡ€ΠΎΠΆΡ‡ΠΈΠΌ, ΠΊΠΎΠΆΠ΅Π½ mB Π‘Ρ–ΠΎΠ΄ΠΈΠ·Π΅Π»ΡŽ Π΄Π°Ρ” Π²Π΅Π»ΠΈΠΊΡƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ EU, Ρ‰ΠΎ спрощує транспортування Ρ‚Π° збСрігання.\n\nΠ’ΠΈΠ±Ρ–Ρ€ Π·Π° Π²Π°ΠΌΠΈ β€” як ΠΏΠΎΡ‡Π°Ρ‚ΠΈ своє Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½Π΅ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ.", + "quests.gregtech_energy.lv_generator.desc.5": "&e4. ЕнСргія Π· синтСз-Π³Π°Π·Ρƒ (Сксклюзив TFG)&r:\n\nΠ—Π° допомогою &6ΠšΠΎΠΊΡΠΎΠ²ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–&r Ρ‚Π° &6Π’Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΡ— ΠΊΠ°ΠΌΠ΅Ρ€ΠΈ&r Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Ρ†Π΅ΠΉ Ρ€Π°Π½Π½ΡŒΠΎΡ–Π³Ρ€ΠΎΠ²ΠΈΠΉ Π³Π°Π·. Π¦Π΅ Π½Π΅ Π½Π°ΠΉΡΠΈΠ»ΡŒΠ½Ρ–ΡˆΠΈΠΉ Π²Π°Ρ€Ρ–Π°Π½Ρ‚, Π°Π»Π΅ Ρ†Ρ–Π»ΠΊΠΎΠΌ достатній, якщо Π²ΠΈ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ ΠΉΡ‚ΠΈ ΡˆΠ»ΡΡ…ΠΎΠΌ &eΠ›ΠΈΡˆΠ΅ газовою&r Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΠΊΠΈ. \nДля Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΎΡ— СфСктивності настійно Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”Ρ‚ΡŒΡΡ &6Create&r Ρ„Π΅Ρ€ΠΌΠ° Π΄Π΅Ρ€Π΅Π².", "quests.gregtech_energy.lv_generator.task": "Π‘ΡƒΠ΄ΡŒ-який Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ LV", "quests.gregtech_energy.mv_generator.title": "Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΈ MV", "quests.gregtech_energy.mv_generator.subtitle": "Π£ ΠΏΡ€ΠΈΠ½Ρ†ΠΈΠΏΡ– Ρ‚Π°ΠΊΡ– самі, як Ρ– LV-Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΈ", @@ -1782,7 +2389,7 @@ "quests.gregtech_energy.lst.desc.2": "Π‘Π°Π·ΠΎΠ²ΠΈΠΉ Π²ΠΈΡ…Ρ–Π΄ Π’ΠŸΠ’ ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ &e1024 EU/t&r. Π’Ρ–Π·ΡŒΠΌΠ΅ΠΌΠΎ ΠΏΡ€ΠΈΠΊΠ»Π°Π΄: Π· Π”Π΅Ρ€ΠΆΠ°Ρ‚Π΅Π»Π΅ΠΌ Π ΠΎΡ‚ΠΎΡ€Π° IV (Γ—4) Ρ– Π’ΡƒΡ€Π±Ρ–Π½Π½ΠΈΠΌ Π ΠΎΡ‚ΠΎΡ€ΠΎΠΌ HSS-E (280%% потуТності) Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅:\n1024 Γ— 4 Γ— 2.8 = &e11,468.8 EU/t&r β€” Ρ†Π΅ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ &a1.4A IV&r.\n\nΠ©ΠΎΠ± Π²ΠΈΠ»ΡƒΡ‡ΠΈΡ‚ΠΈ Ρ†ΡŽ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ, Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π°Π±ΠΎ Π”ΠΈΠ½Π°ΠΌΠΎ-люк IV, Π°Π±ΠΎ Π”ΠΈΠ½Π°ΠΌΠΎ-люк EV Π½Π° 16A.\n\nΠ₯ΠΎΡ‡Π° Π’ΠŸΠ’ Π½Π΅ Ρ” Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΎΡŽ Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΎΡŽ Π· Ρ–ΡΠ½ΡƒΡŽΡ‡ΠΈΡ…, якщо Ρƒ вас Ρ” Π²Π΄ΠΎΡΡ‚Π°Π»ΡŒ Π’Π΅Π»ΠΈΠΊΠΈΡ… ΠšΠΎΡ‚Π»Ρ–Π² Π°Π±ΠΎ доступ Π΄ΠΎ Π²Π΅Π»ΠΈΠΊΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– пального, Ρ†Ρ– сталСві, доступні Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎ Π²Π°ΠΌ послуТити.", "quests.gregtech_energy.lce.title": "Π’Π΅Π»ΠΈΠΊΠΈΠΉ Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ Згоряння", "quests.gregtech_energy.lce.subtitle": "НС Π²Ρ–Ρ€ ΠΉΠΎΠ³ΠΎ GUI", - "quests.gregtech_energy.lce.desc.1": "Π¦Ρ– Π΄Π²ΠΎΡ” &6ΠΊΡ€ΡƒΡ‚Π΅Π»ΠΈΠΊΡ–Π²&r β€” Π²Π°ΡˆΡ– Ρ‡Π΅ΠΌΠΏΡ–ΠΎΠ½ΠΈ, якщо Π²ΠΈ Π·Π°ΠΉΠΌΠ°Ρ”Ρ‚Π΅ΡΡŒ пСрСтворСнням ΠžΠ»Ρ–ΠΉ Π½Π° ΠΏΠ°Π»ΠΈΠ²ΠΎ. &6Π’Π΅Π»ΠΈΠΊΠΈΠΉ Π”Π²ΠΈΠ³ΡƒΠ½ Π’Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½ΡŒΠΎΠ³ΠΎ Згоряння&r (&dΠ’Π”Π’Π‘&r) Ρ‚Π° &5Π•ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½ΠΈΠΉ Π”Π²ΠΈΠ³ΡƒΠ½ Π’Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½ΡŒΠΎΠ³ΠΎ Згоряння&r (&dΠ•Π”Π’Π‘&r) Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒ ΠΎΠ΄Π½Π°ΠΊΠΎΠ²Ρ– Π²ΠΈΠ΄ΠΈ пального Ρ‚Π° Π½Π°Π²Ρ–Ρ‚ΡŒ Π²ΠΈΠ³Π»ΡΠ΄Π°ΡŽΡ‚ΡŒ ΠΏΠΎΠ΄Ρ–Π±Π½ΠΎ β€” Π°Π»Π΅ для Ρ—Ρ… створСння ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– Ρ€Ρ–Π·Π½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ.\n\nΠ©ΠΎΠ± скрафтити Π’Π”Π’Π‘, ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ досягти рівня &5EV&r Ρ– Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Π’ΠΈΡ‚Π°Π½, Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠ°Ρ‚ΠΈ Ρ‰ΠΎΠ½Π°ΠΉΠΌΠ΅Π½ΡˆΠ΅ ΠΎΠ΄Π½Ρƒ IV-Π‘Ρ…Π΅ΠΌΡƒ. Для створСння Π•Π”Π’Π‘ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Π° Π‘Ρ‚Π°Π»ΡŒ Ρ– LuV-Π‘Ρ…Π΅ΠΌΠ° β€” Ρ†Π΅ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ ΠΊΠΎΠΌΡ„ΠΎΡ€Ρ‚Π½ΠΎ доступним для вас Π½Π° Ρ€Ρ–Π²Π½Ρ– &1IV&r.", + "quests.gregtech_energy.lce.desc.1": "&6Π’Π΅Π»ΠΈΠΊΠΈΠΉ Π”Π²ΠΈΠ³ΡƒΠ½ Π’Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½ΡŒΠΎΠ³ΠΎ Згоряння&r (&dΠ’Π”Π’Π—&r) Ρ‚Π° &5Π•ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½ΠΈΠΉ Π”Π²ΠΈΠ³ΡƒΠ½ Π’Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½ΡŒΠΎΠ³ΠΎ Згоряння&r (&dΠ•Π”Π’Π—&r) β€” Ρ†Π΅ Π²Π°ΡˆΡ– Ρ‡Π΅ΠΌΠΏΡ–ΠΎΠ½ΠΈ, якщо Π²ΠΈ Π·Π°ΠΉΠΌΠ°Ρ”Ρ‚Π΅ΡΡŒ пСрСтворСнням Нафти Π½Π° ΠΏΠ°Π»ΠΈΠ²ΠΎ. \nΠ¦Ρ– Π΄Π²ΠΎΡ” &6ΠΊΡ€ΡƒΡ‚ΠΈΡ… Ρ…Π»ΠΎΠΏΡ†Ρ–Π²&r Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒ ΠΎΠ΄Π½Π°ΠΊΠΎΠ²Ρ– Π²ΠΈΠ΄ΠΈ ΠΏΠ°Π»ΠΈΠ²Π° ΠΉ Π½Π°Π²Ρ–Ρ‚ΡŒ Π²ΠΈΠ³Π»ΡΠ΄Π°ΡŽΡ‚ΡŒ ΠΏΠΎΠ΄Ρ–Π±Π½ΠΎ β€” Π°Π»Π΅ для Ρ—Ρ… створСння ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– Ρ€Ρ–Π·Π½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ. \n\nΠ©ΠΎΠ± скрафтити Π’Π”Π’Π—, Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ досягти &5EV&r Ρ– Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Π’ΠΈΡ‚Π°Π½, Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠ°Ρ‚ΠΈ Ρ‰ΠΎΠ½Π°ΠΉΠΌΠ΅Π½ΡˆΠ΅ ΠΎΠ΄Π½Ρƒ IV‑БхСму. \nДля Π•Π”Π’Π— Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²Π° ΡΡ‚Π°Π»ΡŒ Ρ– LuV‑БхСма β€” Ρ‚Π΅, Ρ‰ΠΎ Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Ρ–Π±Ρ€Π°Ρ‚ΠΈ Π±Π΅Π· ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌ ΠΏΡ–Π΄ час &1IV&r.", "quests.gregtech_energy.lce.desc.2": "ΠžΠ±ΠΈΠ΄Π²Ρ– машини ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ Π’Ρ…Ρ–Π΄Π½ΠΎΠ³ΠΎ Π›ΡŽΠΊΠ° для пального, Π° Ρ‚Π°ΠΊΠΎΠΆ Π—ΠΌΠ°Ρ‰ΡƒΠ²Π°Π»ΡŒΠ½ΠΎΡ— Π Ρ–Π΄ΠΈΠ½ΠΈ. Для &dECE&r додавання Кисню Π°Π±ΠΎ Π Ρ–Π΄ΠΊΠΎΠ³ΠΎ Кисню Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ &cΠΏΠΎΡ‚ΡƒΠΆΠ½ΠΈΠΉ приріст Π΅Π½Π΅Ρ€Π³Ρ–Ρ—&r. ΠŸΠ΅Ρ€Π΅Π²Ρ–Ρ€Ρ‚Π΅ ΠΏΡ–Π΄ΠΊΠ°Π·ΠΊΡƒ Π΄ΠΎ вашого пального, Ρ‰ΠΎΠ± ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ, ΡΠΊΡ–Π»ΡŒΠΊΠΈ Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΎΡ— Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ”Ρ‚Π΅ Π· ΠΎΠΊΠΈΡΠ»ΡŽΠ²Π°Ρ‡Π°ΠΌΠΈ β€” Ρ†Π΅ справді Ρ‚ΠΎΠ³ΠΎ Π²Π°Ρ€Ρ‚Π΅.\n\nΠœΠ°ΠΉΡ‚Π΅ Π½Π° ΡƒΠ²Π°Π·Ρ–: ΠΎΠ±ΠΈΠ΄Π²Π° Π΄Π²ΠΈΠ³ΡƒΠ½ΠΈ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ Π“Π»ΡƒΡˆΠ½ΠΈΠΊΠ°.", "quests.gregtech_energy.lpt_fuel.title": "ΠŸΠ»Π°Π·ΠΌΠΎΠ²Ρ– Палива", "quests.gregtech_energy.lpt_fuel.subtitle": "Π’ΠΎΠ½ΠΎ Π΄ΡƒΠΆΠ΅ гарячС", @@ -1791,9 +2398,35 @@ "quests.gregtech_energy.lpt_fuel.task": "Π― Π½Π΅ Ρ…ΠΎΡ‡Ρƒ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Π²Ρ–Π΄Ρ€ΠΎ Плазми", "quests.gregtech_energy.lgt_fuel.title": "Π“Π°Π·ΠΎΠ²Ρ– Палива", "quests.gregtech_energy.lgt_fuel.subtitle": "Π£Π»ΡŽΠ±Π»Π΅Π½Π΅Ρ†ΡŒ усіх", - "quests.gregtech_energy.lgt_fuel.desc.1": "Коли ΠΌΠΈ Π³ΠΎΠ²ΠΎΡ€ΠΈΠΌΠΎ ΠΏΡ€ΠΎ Π³Π°Π·ΠΎΠ²Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ, насправді ΠΌΠ°Ρ”ΠΌΠΎ Π½Π° ΡƒΠ²Π°Π·Ρ– лишС ΠΎΠ΄Π½Π΅ β€” &eНітробСнзол&r.\n\nΠ’ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ виробляти ΠΉΠΎΠ³ΠΎ після досягнСння рівня &6HV&r, Ρ– ΠΌΠΈ &aΠ½Π°ΠΏΠΎΠ»Π΅Π³Π»ΠΈΠ²ΠΎ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ&r ΠΉΠΎΠ³ΠΎ, якщо ΠΏΠ»Π°Π½ΡƒΡ”Ρ‚Π΅ використовувати Π’Π΅Π»ΠΈΠΊΡƒ Π“Π°Π·ΠΎΠ²Ρƒ Π’ΡƒΡ€Π±Ρ–Π½Ρƒ.\n\nΠ”ΠΎ Ρ‚ΠΎΠ³ΠΎ як Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅ доступ Π΄ΠΎ НітробСнзолу, &eΠ‘Π΅Π½Π·ΠΎΠ»&r β€” Ρ†Π΅ Ρ‡ΡƒΠ΄ΠΎΠ²ΠΈΠΉ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ для старту. Π™ΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½Π° Π΄ΠΎΠ±ΡƒΡ‚ΠΈ Π· Π΄Π΅Ρ€Π΅Π²Π½ΠΎΡ— Ρ„Π΅Ρ€ΠΌΠΈ Π°Π±ΠΎ ΡˆΠ»ΡΡ…ΠΎΠΌ ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΊΠΈ Π’Π°ΠΆΠΊΠΎΡ— Нафти, якщо Π²Π°ΠΌ пощастило ΠΌΠ°Ρ‚ΠΈ Ρ—Ρ— ΠΏΠΎΠ±Π»ΠΈΠ·Ρƒ.", - "quests.gregtech_energy.lgt_fuel.desc.2": "Π’ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ НітробСнзолу Π²ΠΊΠ»ΡŽΡ‡Π°Ρ” ΠΊΡ–Π»ΡŒΠΊΠ° Π΅Ρ‚Π°ΠΏΡ–Π² β€” Π°ΠΆ ΠΏΠΎΠΊΠΈ Π²ΠΈ створитС свій ΠΏΠ΅Ρ€ΡˆΠΈΠΉ Π’Π΅Π»ΠΈΠΊΠΈΠΉ Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΈΠΉ Π Π΅Π°ΠΊΡ‚ΠΎΡ€ (Π’Π₯Π ), який Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ Π²Π°ΠΌ пропустити Π±Π°Π³Π°Ρ‚ΠΎ ΠΏΡ–Π΄Π΅Ρ‚Π°ΠΏΡ–Π² Ρ– спростити процСс.\n\nΠ£ Ρ†ΡŒΠΎΠΌΡƒ Π½Π΅ΠΌΠ°Ρ” Π½Ρ–Ρ‡ΠΎΠ³ΠΎ Π½Π°Π΄Ρ‚ΠΎ складного: ΠΏΠΎΡ”Π΄Π½Π°ΠΉΡ‚Π΅ Π’ΠΎΠ΄Π΅Π½ΡŒ, Азот Ρ– КисСнь, Ρ‰ΠΎΠ± створити &eНітратну ΠšΠΈΡΠ»ΠΎΡ‚Ρƒ&r Ρƒ Π½Π΅ΠΎΠ±ΠΌΠ΅ΠΆΠ΅Π½Ρ–ΠΉ ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ–. Π©ΠΎ ΠΆ Π΄ΠΎ Π‘Ρ–Ρ€Ρ‡Π°Π½ΠΎΡ— ΠšΠΈΡΠ»ΠΎΡ‚ΠΈ β€” Π²ΠΈ, ΠΌΠ°Π±ΡƒΡ‚ΡŒ, ΡƒΠΆΠ΅ Π·Π½Π°Ρ”Ρ‚Π΅, Ρ‰ΠΎ Ρ†Π΅ просто Π‘Ρ–Ρ€ΠΊΠ° Ρ– Π’ΠΎΠ΄Π°, ΠΏΡ€Π°Π²Π΄Π° ΠΆ?\n\nΠ©ΠΎΠΉΠ½ΠΎ Ρ†Π΅ΠΉ Π»Π°Π½Ρ†ΡŽΠ³ Π·Π°ΠΏΡ€Π°Ρ†ΡŽΡ”, НітробСнзол стає ΠΎΠ΄Π½ΠΈΠΌ Ρ–Π· Π½Π°ΠΉΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡˆΠΈΡ… ΠΏΠ°Π»ΠΈΠ² для Π³Π°Π·ΠΎΠ²ΠΈΡ… Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ–Π².", + "quests.gregtech_energy.lgt_fuel.desc.1": "Усі Ρ†Ρ– Π²ΠΈΠ΄ΠΈ ΠΏΠ°Π»ΠΈΠ²Π° Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для &2Π“Π°Π·ΠΎΠ²ΠΈΡ… Ρ‚ΡƒΡ€Π±Ρ–Π½&r β€” Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Ρ– Ρ‚ΡƒΡ‚ Π²Ρ–Π΄ наймСнш Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΈΡ… Π΄ΠΎ Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΡ….\n\n&bΠ“Π°Π·ΠΎΠ²Π° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°&r Π·Π°Π³Π°Π»ΠΎΠΌ Ρ‚Ρ€ΠΎΡ…ΠΈ дСшСвша Π·Π° свій Π°Π½Π°Π»ΠΎΠ³, &bΠ“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ згоряння&r, Π°Π»Π΅ &eΠ“Π°Π·ΠΎΠ²Ρ– ΠΏΠ°Π»ΠΈΠ²Π°&r Ρ‚Π°ΠΊΠΎΠΆ мСнш Π΅Π½Π΅Ρ€Π³ΠΎΡ”ΠΌΠ½Ρ–, Π½Ρ–ΠΆ ΠΏΠ°Π»ΠΈΠ²ΠΎ для згоряння. Π¦Π΅ Π½Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ Π²ΠΎΠ½ΠΈ Π³Ρ–Ρ€ΡˆΡ– β€” лишС Ρ‚Π΅, Ρ‰ΠΎ Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΌΡ–Π»Ρ–Π±Π°ΠΊΠ΅Ρ‚Ρ–Π² (mB), Ρ‰ΠΎΠ± досягти Ρ‚ΠΎΠ³ΠΎ самого Π²ΠΈΡ…ΠΎΠ΄Ρƒ. \nΠŸΡ–Π·Π½Ρ–ΡˆΠ΅ Π² прогрСсії Ρ—Ρ… ΠΌΠΎΠΆΠ½Π° використовувати всСрСдині &2Π’Π΅Π»ΠΈΠΊΠΎΡ— Π³Π°Π·ΠΎΠ²ΠΎΡ— Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΈ&r β€” Π΄ΡƒΠΆΠ΅ ΠΏΠΎΡ‚ΡƒΠΆΠ½ΠΎΠ³ΠΎ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΡƒ, який ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” Ρ‚Ρ€ΠΎΡ…ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅ кСрування.", + "quests.gregtech_energy.lgt_fuel.desc.2": "Π£ TerraFirmaGreg &eΠ“Π°Π·ΠΎΠ²Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ&r Π±ΡƒΠ»ΠΎ суттєво пСрСбалансовано. &6Ми Π½Π΅ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ покладатися Π½Π° &eΠ‘Π΅Π½Π·ΠΎΠ»&r Π°Π±ΠΎ &eНітробСнзол&r, ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ Π²ΠΎΠ½ΠΈ Π±ΡƒΠ»ΠΈ сильно ослаблСні.&r На ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ &7LV&r ΠΌΠΈ Ρ€Π°Π΄ΠΈΠΌΠΎ використовувати &eΠ‘ΠΈΠ½Ρ‚Π΅Π·-Π³Π°Π·&r Π°Π±ΠΎ &eΠ—Π’Π“&r, якщо Π²ΠΈ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ пСрСробляти Π½Π°Ρ„Ρ‚ΠΎΠ²Ρ– піски. ΠŸΡ–Π·Π½Ρ–ΡˆΠ΅ Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° &eΠ Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΈΠΉ Π³Π°Π·&r Π½Π° Ρ€Ρ–Π²Π½Ρ– &bMV&r Ρ‚Π° Ρ‰Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΠΎΠΊΡ€Π°Ρ‰ΠΈΡ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ після розблокування &2ΠšΡ€Π΅ΠΊΠ΅Ρ€Π°&r.", "quests.gregtech_energy.lgt_fuel.task": "Π“Π°Π· Ρƒ Π²Ρ–Π΄Ρ€Ρ–?", + "quests.gregtech_energy.syngas.title": "Π‘ΠΈΠ½Ρ‚Π΅Π· Π³Π°Π·", + "quests.gregtech_energy.syngas.subtitle": "Π― ΠΌΠΎΠΆΡƒ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π³Π°Π·ΠΎΠ²Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ Π½Π° LV?", + "quests.gregtech_energy.syngas.desc": "&eΠ‘ΠΈΠ½Ρ‚Π΅Π· Π³Π°Π·&r β€” Ρ†Π΅ Π½ΠΎΠ²Π΅ Π³Π°Π·ΠΎΠ²Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ TFG. Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΠ²Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π΄ΡƒΠΆΠ΅ Ρ€Π°Π½ΠΎ Π½Π° &8ULV&r Ρ– використовувати Ρƒ своїх ΠΏΠ΅Ρ€ΡˆΠΈΡ… &6Π“Π°Π·ΠΎΠ²ΠΈΡ… Ρ‚ΡƒΡ€Π±Ρ–Π½Π°Ρ…&r ΠΏΡ–Π΄ час &7LV&r. Π¦Π΅ Π½Π΅ Π½Π°Π΄Ρ‚ΠΎ ΠΏΠΎΡ‚ΡƒΠΆΠ½Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ, Π°Π»Π΅ ΠΉΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Π½Π° Ρ†Ρ–Π½Π½Ρ– ΠΏΠΎΠ±Ρ–Ρ‡Π½Ρ– ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ, Ρ‚Π°ΠΊΡ– як &eΠœΠ°ΡΡ‚ΠΈΠ»ΠΎ&r, &eΠœΠ΅Ρ‚Π°Π½&r Ρ‚Π° &eΠ’ΠΎΠ΄Π΅Π½ΡŒ&r.\n\nΠ₯ΠΎΡ‡Π° Π²ΠΎΠ½ΠΎ Π½Π΅ Ρ” Π½Π°ΠΉΡΠΈΠ»ΡŒΠ½Ρ–ΡˆΠΈΠΌ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΎΠΌ Ρ– ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ складним для ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ лишС Ρ‚Ρ€ΠΈ &6ΠšΠΎΠΊΡΠΎΠ²Ρ– ΠΏΠ΅Ρ‡Ρ–&r Ρ‚Π° ΠΎΠ΄Π½Ρƒ &6Π’Π°Ρ€ΠΈΠ»ΡŒΠ½ΡŽ&r Π°Π±ΠΎ &6Π’Π°ΠΊΡƒΡƒΠΌΠ½Ρƒ ΠΊΠ°ΠΌΠ΅Ρ€Ρƒ&r, Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ виробляти ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½ΠΈΠΉ запас, якого ΠΌΠ°Ρ” вистачити, Ρ‰ΠΎΠ± досягти &bMV&r Ρ– Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΠ²Π°Ρ‚ΠΈ Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡˆΠΈΠΉ &eΠ Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΈΠΉ Π³Π°Π·&r.", + "quests.gregtech_energy.reformate_gas.title": "Π Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΈΠΉ Π³Π°Π·", + "quests.gregtech_energy.reformate_gas.subtitle": "Π¦Π΅ Ρ€Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚ β€” Π±Π΅Π½Π·ΠΎΠ»?", + "quests.gregtech_energy.reformate_gas.desc.1": "&9Π Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΈΠΉ Π³Π°Π·&r β€” Ρ†Π΅ ΠΏΠΎΡ‚ΡƒΠΆΠ½Π΅ ΠΉ Π½ΠΎΠ²Π΅ Π³Π°Π·ΠΎΠΏΠΎΠ΄Ρ–Π±Π½Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ, якС Π½Π° Ρ€Ρ–Π²Π½Ρ– &bMV&r Π·Π°Π·Π²ΠΈΡ‡Π°ΠΉ Π·Π°ΠΌΡ–Π½ΡŽΡ” Π±Π΅Π½Π·ΠΎΠ».\n\nΠ©ΠΎΠ± ΠΉΠΎΠ³ΠΎ Π²ΠΈΡ€ΠΎΠ±ΠΈΡ‚ΠΈ, Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π·Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ &6Π’Π΅ΠΆΡƒ скраплСння&r Ρ– Π΄ΠΎΠ±ΡƒΡ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ &5Π Π΅Π½Ρ–ΡŽ&r Π· ΠΆΠΈΠ» &6Π’Π°Ρ€ΠΊΡ–Π°Π½Ρ–Ρ‚Ρƒ&r, які Ρ‚Ρ€Π°ΠΏΠ»ΡΡŽΡ‚ΡŒΡΡ лишС Π² сухому Ρ‚Π° спСкотному ΠΊΠ»Ρ–ΠΌΠ°Ρ‚Ρ–. Π”Π²Ρ– &6ΠŸΡ–Ρ€ΠΎΠ»Ρ–Π·Π½Ρ– ΠΏΠ΅Ρ‡Ρ–&r β€” ΠΎΠ΄Π½Π° для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° ΠΊΡ€Π΅Π·ΠΎΡ‚Ρƒ, Ρ–Π½ΡˆΠ° для Π΄Π΅Ρ€Π΅Π²Π½ΠΎΠ³ΠΎ Π΄ΡŒΠΎΠ³Ρ‚ΡŽ β€” Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡Π°Ρ‚ΡŒ усі Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ для створСння Ρ†ΡŒΠΎΠ³ΠΎ ΠΏΠ°Π»ΠΈΠ²Π°. НС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅, Ρ‰ΠΎ ΠΏΠ°Ρ€Ρƒ ΠΌΠΎΠΆΠ½Π° ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π·Π° допомогою &6Нагрівача Ρ€Ρ–Π΄ΠΈΠ½&r, якщо Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ спростити схСму.", + "quests.gregtech_energy.reformate_gas.desc.2": "Π’Π°ΠΊΠΎΠΆ Π²Π°ΠΆΠ»ΠΈΠ²ΠΎ Π²Ρ€Π°Ρ…ΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈ ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½ΠΈΠΉ Π²ΠΈΡ…Ρ–Π΄ Π½Π° &6HV&r ΠΏΡ€ΠΈ використанні &6ΠšΡ€Π΅ΠΊΠ΅Ρ€Π°&r. Π¦Π΅ Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ Π²Π°ΠΌ ΠΏΠΎΠ²Ρ‚ΠΎΡ€Π½ΠΎ використовувати Π±Ρ–Π»ΡŒΡˆΡƒ частину свого &5Π Π΅Π½Ρ–ΡŽ&r, роблячи Π Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΈΠΉ Π³Π°Π· Ρ„Π°ΠΊΡ‚ΠΈΡ‡Π½ΠΎ нСскінчСнним ΠΏΠ°Π»ΠΈΠ²ΠΎΠΌ.\n\nДодавання &9Азоту&r Ρ‚Π° &9Π’ΠΎΠ΄Π½ΡŽ&r Π΄ΠΎ процСсу Ρ‰Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΠΎΡΠΈΠ»ΠΈΡ‚ΡŒ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ вашого Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π°.", + "quests.gregtech_energy.btx.title": "BTX Паливо", + "quests.gregtech_energy.btx.subtitle": "Π¦Π΅ Π½Π΅ ΠΊΠΎΡ€Π΅ΠΉΡΡŒΠΊΠ° Π³Ρ€ΡƒΠΏΠ°", + "quests.gregtech_energy.btx.desc": "ΠžΡ‚Ρ€ΠΈΠΌΠ°Π½Π½Ρ &5EV Π•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… Π»ΡŽΠΊΡ–Π²&r ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ Ρ‚ΠΈ Π½Π°Ρ€Π΅ΡˆΡ‚Ρ– моТСш Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ &eBTX Палива&r (Π‘Π΅Π½Π·ΠΎΠ»-Π’ΠΎΠ»ΡƒΠΎΠ»-Ксилол). Π¦Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ ΠΏΡ€ΠΎΡΠ»ΡƒΠΆΠΈΡ‚ΡŒ Ρ‚ΠΎΠ±Ρ– Π΄ΡƒΠΆΠ΅ Π΄ΠΎΠ²Π³ΠΎ ΠΉ Π·Π°Π»ΠΈΡˆΠ°Ρ‚ΠΈΠΌΠ΅Ρ‚ΡŒΡΡ ΠΊΠΎΠ½ΠΊΡƒΡ€Π΅Π½Ρ‚Π½ΠΈΠΌ Ρƒ &6Π’Π΅Π»ΠΈΠΊΡ–ΠΉ Ρ‚ΡƒΡ€Π±Ρ–Π½Ρ–&r Π°ΠΆ Π΄ΠΎ ΠΏΡ–Π·Π½ΡŒΠΎΡ— Π³Ρ€ΠΈ. ΠΠ°Π²Ρ–Ρ‚ΡŒ якщо ΡΠΏΠ΅Ρ€ΡˆΡƒ Ρ†Π΅ виглядає як Π³Ρ€Π°Π½Π΄Ρ–ΠΎΠ·Π½Π΅ завдання, Π±ΡƒΠ΄ΡŒ ΠΏΠ΅Π²Π΅Π½ β€” Π²ΠΎΠ½ΠΎ Ρ‚ΠΎΠ³ΠΎ Π²Π°Ρ€Ρ‚Π΅. \n\nЦя Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ‡Π° лінія ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” Π²Π΅Π»ΠΈΠΊΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π² Π½Π° основі Π΄Π΅Ρ€Π΅Π²ΠΈΠ½ΠΈ. Π‘ΠΌΠΎΠ»Π° Π·Π½ΠΎΠ²Ρƒ стає Π°ΠΊΡ‚ΡƒΠ°Π»ΡŒΠ½ΠΎΡŽ Ρ‡Π΅Ρ€Π΅Π· ΠΏΠΎΡ‚Ρ€Π΅Π±Ρƒ Π² &eΠšΠ»Π΅Ρ—&r β€” Ρ‚ΠΈ моТСш Π°Π±ΠΎ пасивно підсочувати Π΄Π΅Ρ€Π΅Π²Π°, Π°Π±ΠΎ Π²ΠΈΠ΄ΠΎΠ±ΡƒΠ²Π°Ρ‚ΠΈ Ρ—Ρ— Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π· ΠΊΠΎΠ»ΠΎΠ΄. Π’Π°ΠΊΠΎΠΆ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ пСрСганяти &eΠ”Π΅Ρ€Π΅Π²Π½ΠΈΠΉ Π΄ΡŒΠΎΠ³ΠΎΡ‚ΡŒ&r Ρƒ &6Дистиляційній Π±Π°ΡˆΡ‚Ρ–&r. ΠžΠΊΡ€Ρ–ΠΌ Ρ†ΡŒΠΎΠ³ΠΎ, пСрСконайся, Ρ‰ΠΎ моТСш виробляти нСскінчСнні ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– &eΠ•Ρ‚Π°Π½ΠΎΠ»Ρƒ&r, &eΠšΠ²Π°Ρ€Ρ†Ρƒ НиТнього світу&r, &eΠΠ°Ρ‚Ρ€Ρ–ΡŽ&r, &eАмоніаку&r, &eΠ›ΡƒΠ³Ρƒ&r Ρ‚Π° &eУсилСних Споксидних смоляних листів&r. \n\nΠ―ΠΊΡ‰ΠΎ Ρ…ΠΎΡ‡Π΅Ρˆ Π±Ρ–Π»ΡŒΡˆ Π΄Π΅Ρ‚Π°Π»ΡŒΠ½ΠΈΠΉ Ρ€ΠΎΠ·Π±Ρ–Ρ€ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ‡ΠΎΠ³ΠΎ Π»Π°Π½Ρ†ΡŽΠ³Π° BTX Палива, звСрнися Π΄ΠΎ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρƒ &5EV&r.", + "quests.gregtech_energy.fission_rod.title": "Паливо для ΠΏΠΎΠ΄Ρ–Π»Ρƒ", + "quests.gregtech_energy.fission_rod.subtitle": "НС Ρ€ΠΎΠ·Ρ–Π³Ρ€Ρ–ΠΉ ΠΌΠ΅Π½Π΅ Π·Π°Π½Π°Π΄Ρ‚ΠΎ сильно", + "quests.gregtech_energy.fission_rod.desc.1": "ΠœΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ для ΠΏΠΎΠ΄Ρ–Π»Ρƒ Π—Π΅ΠΌΠ»Ρ– Ρ‰Π΅ Π½Π΅ Ρ€Π΅Π°Π»Ρ–Π·ΠΎΠ²Π°Π½Ρ–, Π°Π»Π΅ ΠΌΠΎΠΆΡƒΡ‚ΡŒ з’явитися Π΄ΠΎΡΠΈΡ‚ΡŒ скоро", + "quests.gregtech_energy.fission_rod.desc.2": "", + "quests.gregtech_energy.fission_rod.task": "", + "quests.gregtech_energy.smr.title": "Малий ΠΌΠΎΠ΄ΡƒΠ»ΡŒΠ½ΠΈΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€", + "quests.gregtech_energy.smr.subtitle": "ΠΠ°Ρ€Π΅ΡˆΡ‚Ρ– β€” СнСргія для Ρ†ΠΈΡ… Π΄Π°Π»Π΅ΠΊΠΈΡ… форпостів", + "quests.gregtech_energy.smr.desc.1": "Малий ΠΌΠΎΠ΄ΡƒΠ»ΡŒΠ½ΠΈΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Ρ‰Π΅ Π½Π΅ Ρ€Π΅Π°Π»Ρ–Π·ΠΎΠ²Π°Π½ΠΈΠΉ, Π°Π»Π΅ ΠΌΠΎΠΆΠ΅ з’явитися Π΄ΠΎΡΠΈΡ‚ΡŒ скоро", + "quests.gregtech_energy.smr.desc.2": "", + "quests.gregtech_energy.smr.task": "", + "quests.gregtech_energy.gasoline.title": "Π‘Π΅Π½Π·ΠΈΠ½", + "quests.gregtech_energy.gasoline.subtitle": "БСрСдня Π΄ΠΈΡ‚ΠΈΠ½Π°", + "quests.gregtech_energy.gasoline.desc": "&aΠ‘Π΅Π½Π·ΠΈΠ½&r β€” Ρ†Π΅ справді ΠΏΠΎΡ‚ΡƒΠΆΠ½Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ для згоряння, якС Π²ΠΈ Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΡ”Ρ‚Π΅ Π½Π° &6HV&r, Π°Π»Π΅ Π½Π° ΠΏΡ€Π°ΠΊΡ‚ΠΈΡ†Ρ– ΠΏΠΎΡ‡ΠΈΠ½Π°Ρ”Ρ‚Π΅ виробляти лишС після ΠΏΠΎΠ±ΡƒΠ΄ΠΎΠ²ΠΈ своїх ΠΏΠ΅Ρ€ΡˆΠΈΡ… &6Дистиляційних Π²Π΅ΠΆ&r. &7Π’ΠΎΠ»ΡƒΠΎΠ»&r Π»Π΅Π³ΠΊΠΎ Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»ΡΡ”Ρ‚ΡŒΡΡ Π· &7Π”Π΅Ρ€Π΅Π²Π½ΠΎΠ³ΠΎ Π΄ΡŒΠΎΠ³Ρ‚ΡŽ&r Π°Π±ΠΎ &7Π’Π°ΠΆΠΊΠΎΠ³ΠΎ ΠΏΠ°Π»ΠΈΠ²Π°&r, Π° всС Ρ–Π½ΡˆΠ΅, Ρ‰ΠΎ Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ β€” Ρ†Π΅ &dНафтовий Π³Π°Π·&r, &7Нафта&r Ρ‚Π° ΡΡƒΠΌΡ–Ρˆ Π· &3Кисню&r, &bΠ’ΠΎΠ΄Π½ΡŽ&r Ρ– &1Π’ΡƒΠ³Π»Π΅Ρ†ΡŽ&r.\n\nΠ¦Π΅ ΠΏΠΎΡ‚ΡƒΠΆΠ½Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ, Π΄ΠΎΡΠΈΡ‚ΡŒ простС Ρƒ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Ρ–, Ρ– Ρ‰ΠΎ Ρ‰Π΅ ΠΊΡ€Π°Ρ‰Π΅ β€” ΠΉΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½Π° ΠΏΠΎΠΊΡ€Π°Ρ‰ΠΈΡ‚ΠΈ Π΄ΠΎ &cΠ‘Π΅Π½Π·ΠΈΠ½Ρƒ Π· високим ΠΎΠΊΡ‚Π°Π½ΠΎΠ²ΠΈΠΌ числом&r.", + "quests.gregtech_energy.high_gasoline.title": "Π‘Π΅Π½Π·ΠΈΠ½ Π· високим ΠΎΠΊΡ‚Π°Π½ΠΎΠ²ΠΈΠΌ числом (HOG)", + "quests.gregtech_energy.high_gasoline.subtitle": "Надзвичайно ΠΏΠΎΡ‚ΡƒΠΆΠ½ΠΈΠΉ", + "quests.gregtech_energy.high_gasoline.desc": "ΠŸΡ€ΡΠΌΠ΅ покращСння &cΠ‘Π΅Π½Π·ΠΈΠ½Ρƒ&r β€” Ρ†Π΅ &5ΠΏΠ°Π»ΠΈΠ²ΠΎ, Π²Π΄Π²Ρ–Ρ‡Ρ– ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡˆΠ΅&r. ΠŸΠΎΠΏΡ€ΠΈ Π½Π°Π·Π²Ρƒ, Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π΄ΠΎΠ΄Π°Ρ‚ΠΈ Π½Π΅ лишС &dΠžΠΊΡ‚Π°Π½&r, Π° ΠΉ Ρ–Π½ΡˆΡ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ Π· &7ΠŸΠ΅Ρ‚Ρ€ΠΎΡ…Ρ–ΠΌΡ–Ρ—&r. На Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– ΠΌΠΈ ΠΎΡ‡Ρ–ΠΊΡƒΡ”ΠΌΠΎ, Ρ‰ΠΎ Π²ΠΈ Π²ΠΆΠ΅ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ орієнтуватися Π² &bEMI&r Ρ– Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ виготовлСння Ρ†ΡŒΠΎΠ³ΠΎ Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ ΠΏΠΎΡ‚ΡƒΠΆΠ½ΠΎΠ³ΠΎ ΠΏΠ°Π»ΠΈΠ²Π°.", "quests.gregtech_energy.lst_fuel.title": "Π¦Π΅ ΠŸΠ°Ρ€", "quests.gregtech_energy.lst_fuel.subtitle": "НС Π½Π°Π΄Ρ‚ΠΎ Π²Π΅Π»ΠΈΠΊΠΈΠΉ Π²ΠΈΠ±Ρ–Ρ€", "quests.gregtech_energy.lst_fuel.desc": "ΠŸΠ°Ρ€Π° β€” Ρ†Π΅ Π½Π΅ складно: просто ΠΊΠΈΠΏβ€™ΡΡ‚Ρ–Ρ‚ΡŒ Π²ΠΎΠ΄Ρƒ.\n\nΠ©ΠΎΠ± Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ†Π΅ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎ, ΠΌΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ використовувати &6Π’Π΅Π»ΠΈΠΊΡ– ΠšΠΎΡ‚Π»ΠΈ&r. Існує Ρ‡ΠΎΡ‚ΠΈΡ€ΠΈ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ: для &8ULV&r, &bMV&r, &5EV&r Ρ‚Π° &1IV&r. КоТСн Ρ€Ρ–Π²Π΅Π½ΡŒ суттєво Π·Π±Ρ–Π»ΡŒΡˆΡƒΡ” обсяг Π²ΠΈΡ€ΠΎΠ±Π»Π΅Π½ΠΎΡ— ΠΏΠ°Ρ€ΠΈ.\n\nΠŸΡ€ΠΎΡ‚Π΅ ΠΌΠ°ΠΉΡ‚Π΅ Π½Π° ΡƒΠ²Π°Π·Ρ–: ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Π½Π½Ρ &dΠ’Π΅Π»ΠΈΠΊΠΎΡ— ΠŸΠ°Ρ€ΠΎΠ²ΠΎΡ— Π’ΡƒΡ€Π±Ρ–Π½ΠΈ&r Π· Ρ†ΠΈΠΌΠΈ ΠΊΠΎΡ‚Π»Π°ΠΌΠΈ Π½Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π΅ порівняно Π· Ρ–Π½ΡˆΠΈΠΌΠΈ ΠΌΠ΅Ρ‚ΠΎΠ΄Π°ΠΌΠΈ Π³Π΅Π½Π΅Ρ€Π°Ρ†Ρ–Ρ— Π΅Π½Π΅Ρ€Π³Ρ–Ρ—.\n\nΠ‘Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ Π³Ρ€Π°Π²Ρ†Ρ–Π² Ρ–Π³Π½ΠΎΡ€ΡƒΡŽΡ‚ΡŒ Π’ΠΈΡ‚Π°Π½ΠΎΠ²Ρ– Ρ‚Π° Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠΎΠ²ΠΎΡΡ‚Π°Π»Π΅Π²Ρ– ΠšΠΎΡ‚Π»ΠΈ β€” Π²ΠΎΠ½ΠΈ Ρ–ΡΠ½ΡƒΡŽΡ‚ΡŒ, якщо Π²ΠΈ Π·Π°Ρ…ΠΎΡ‡Π΅Ρ‚Π΅, Π°Π»Π΅ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Ρ—Ρ… Π½Π΅ Π½Π°Π΄Ρ‚ΠΎ Π²ΠΈΠ³Ρ–Π΄Π½ΠΎ. ΠŸΠ°Ρ€Π° просто Π½Π΅ Π΄ΡƒΠΆΠ΅ Π΄ΠΎΠ±Ρ€Π΅ ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΡ”Ρ‚ΡŒΡΡ!\n\nНагадуємо: &e2 mB&r ΠΏΠ°Ρ€ΠΈ = &e1 EU&r.", @@ -1801,7 +2434,7 @@ "quests.gregtech_energy.lst_fuel.task.1": "Π’Π΅Π»ΠΈΠΊΡ– ΠΊΠΎΡ‚Π»ΠΈ", "quests.gregtech_energy.lce_fuel.title": "Π Ρ–Π΄ΠΊΠ΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ", "quests.gregtech_energy.lce_fuel.subtitle": "Π£Π»ΡŽΠ±Π»Π΅Π½Π΅Ρ†ΡŒ Π·Π°Π±Ρ€ΡƒΠ΄Π½ΡŽΠ²Π°Ρ‡Ρ–Π²", - "quests.gregtech_energy.lce_fuel.desc.1": "Усі Ρ†Ρ– Π²ΠΈΠ΄ΠΈ пального Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для &6Π”Π²ΠΈΠ³ΡƒΠ½Ρ–Π² Π’Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½ΡŒΠΎΠ³ΠΎ Згоряння&r β€” Ρ€Π°Π½ΠΆΠΎΠ²Π°Π½Ρ– Ρ‚ΡƒΡ‚ Π²Ρ–Π΄ наймСнш Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ Π΄ΠΎ Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΎΠ³ΠΎ.\n\nΠŸΡ–Π΄ час &bMV&r ΠΌΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π· Π”ΠΈΠ·Π΅Π»ΡŽ Π°Π±ΠΎ Π‘Ρ–ΠΎΠ΄ΠΈΠ·Π΅Π»ΡŽ. Π—Π³ΠΎΠ΄ΠΎΠΌ Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° Π¦Π΅Ρ‚Π°Π½-ΠŸΡ–Π΄ΡΠΈΠ»Π΅Π½ΠΈΠΉ Π”ΠΈΠ·Π΅Π»ΡŒ Π½Π° Ρ€Ρ–Π²Π½Ρ– &6HV&r, Π·ΠΌΡ–ΡˆΡƒΡŽΡ‡ΠΈ ΠΉΠΎΠ³ΠΎ Π· Азотом, Π’ΠΎΠ΄Π½Π΅ΠΌ Ρ– КиснСм.", + "quests.gregtech_energy.lce_fuel.desc.1": "Усі Ρ†Ρ– Π²ΠΈΠ΄ΠΈ ΠΏΠ°Π»ΠΈΠ²Π° Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для &6Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ–Π² згоряння&r β€” Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Ρ– Ρ‚ΡƒΡ‚ Ρƒ порядку Π²Ρ–Π΄ наймСнш Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ Π΄ΠΎ Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΎΠ³ΠΎ.\n\nНа Ρ€Π°Π½Π½Ρ–Ρ… Π΅Ρ‚Π°ΠΏΠ°Ρ… Π³Ρ€ΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π· ДизСля Π°Π±ΠΎ БіодизСля. Π—Π³ΠΎΠ΄ΠΎΠΌ, Π½Π° Ρ€Ρ–Π²Π½Ρ– &6HV&r, Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° Π”ΠΈΠ·Π΅Π»ΡŒ Ρ–Π· ΠΏΡ–Π΄Π²ΠΈΡ‰Π΅Π½ΠΈΠΌ Ρ†Π΅Ρ‚Π°Π½ΠΎΠ²ΠΈΠΌ числом, Π·ΠΌΡ–ΡˆΡƒΡŽΡ‡ΠΈ ΠΉΠΎΠ³ΠΎ Π· Азотом, Π’ΠΎΠ΄Π½Π΅ΠΌ Ρ– КиснСм.", "quests.gregtech_energy.lce_fuel.desc.2": "Π©ΠΎΠΉΠ½ΠΎ Π²ΠΈ досягнСтС рівня &5EV&r Ρ– ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅ доступ Π΄ΠΎ &6Дистиляційної Π’Π΅ΠΆΡ–&r, настав час ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΠΈΡ‚ΠΈ Π½Π° Π‘Π΅Π½Π·ΠΈΠ½ Ρ– Високооктановий Π‘Π΅Π½Π·ΠΈΠ½. НС Π²Π°Ρ€Ρ‚ΠΎ Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ†Π΅ Π½Π°Π΄Ρ‚ΠΎ Ρ€Π°Π½ΠΎ β€” Π½Π°Ρ„Ρ‚ΠΈ слід ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎ Π΄ΠΈΡΡ‚ΠΈΠ»ΡŽΠ²Π°Ρ‚ΠΈ, Ρ– Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ†Π΅ Π·Π° допомогою Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎΡ— ДистилСрії зовсім Π½Π΅Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎ.\n\nДля Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Ρ†Ρ–Ρ”Ρ— систСми Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ поєднання дистиляції Π½Π°Ρ„Ρ‚ΠΈ Ρ‚Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ ΠΎΡ€Π³Π°Π½Ρ–Ρ‡Π½ΠΈΡ… сполук. На щастя, ΠŸΡ–Ρ€ΠΎΠ»Ρ–Π·Π½Π° ΠŸΡ–Ρ‡ Ρ– Дистиляційна Π’Π΅ΠΆΠ° ΡΠΏΡ€Π°Π²Π»ΡΡŽΡ‚ΡŒΡΡ Π· Ρ†ΠΈΠΌ Π½Π°ΠΏΡ€ΠΎΡ‡ΡƒΠ΄ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎ.\n\nΠ―ΠΊΡ‰ΠΎ Π²Π°ΠΌ Π²Π΄Π°ΡΡ‚ΡŒΡΡ Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΠΈ ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½Π΅ постачання Високооктанового Π‘Π΅Π½Π·ΠΈΠ½Ρƒ, Ρ‚ΠΎ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΎΠΉΡ‚ΠΈ вСсь ΠΌΠΎΠ΄ΠΏΠ°ΠΊ, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ лишС Π”Π²ΠΈΠ³ΡƒΠ½ΠΈ Π’Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½ΡŒΠΎΠ³ΠΎ Згоряння.", "quests.gregtech_energy.lce_fuel.task": "Π£ ΠΌΠ΅Π½Π΅ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ", "quests.gregtech_energy.large_solar.subtitle": "Π’Π΅Π»ΠΈΡ‡Π΅Π·Π½Π° проста СнСргія", @@ -1832,7 +2465,7 @@ "quests.gregtech_energy.pss.title": "Π•Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Π° ΠŸΡ–Π΄ΡΡ‚Π°Π½Ρ†Ρ–Ρ", "quests.gregtech_energy.pss.subtitle": "УсС Π² ΠΎΠ΄Π½Ρƒ ΠΊΠ°Ρ€Ρ‚Ρƒ", "quests.gregtech_energy.pss.desc.1": "&dΠŸΡ–Π΄ΡΡ‚Π°Π½Ρ†Ρ–Ρ ТивлСння&r β€” Ρ‚Π°ΠΊΠΎΠΆ Π²Ρ–Π΄ΠΎΠΌΠ° як &dPSS&r β€” Ρ†Π΅ &6ΡƒΠ»ΡŒΡ‚ΠΈΠΌΠ°Ρ‚ΠΈΠ²Π½Π° ΠΏΡ€ΠΈΠ·Π½Π°Ρ‡Π΅Π½Π° для користувача Π±Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Π° ΠΌΡƒΠ»ΡŒΡ‚ΠΈΡΡ‚Ρ€ΡƒΠΊΡ‚ΡƒΡ€Π°&r. Π©ΠΎΠΉΠ½ΠΎ Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ створити Ρ—Ρ— Π½Π° &1IV&r, Π²ΠΎΠ½Π° Π»Π΅Π³ΠΊΠΎ станС Ρ†Π΅Π½Ρ‚Ρ€Π°Π»ΡŒΠ½ΠΈΠΌ Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎΠΌ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π²Π°ΡˆΠΎΡ— Π±Π°Π·ΠΈ, Ρ‚ΠΎΠΆ Π²Π°Ρ€Ρ‚ΠΎ Π½Π° Ρ†Π΅ орієнтуватися.\n\nΠ’ΠΎΠ½Π° Π·Π΄Π°Ρ‚Π½Π° Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ ΡΡ‚Ρ–Π»ΡŒΠΊΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—... Π²Π°ΠΌ Π±ΠΈ знадобилося ΠΊΡ–Π»ΡŒΠΊΠ° ΠΆΠΈΡ‚Ρ‚Ρ–Π², Ρ‰ΠΎΠ± Ρ—Ρ— Π·Π°ΠΏΠΎΠ²Π½ΠΈΡ‚ΠΈ.", - "quests.gregtech_energy.pss.desc.2": "&eΠ―ΠΊ Ρ†Π΅ ΠΏΡ€Π°Ρ†ΡŽΡ”&r: \n- ΠŸΠΎΠ±ΡƒΠ΄ΡƒΠΉ структуру, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ &aΠžΠ±ΡˆΠΈΠ²ΠΊΡƒ ΠŸΡ–Π΄ΡΡ‚Π°Π½Ρ†Ρ–Ρ— Π· ΠŸΠ°Π»Π°Π΄Ρ–ΡŽ&r. \n- Π”ΠΎΠ΄Π°ΠΉ Ρ‰ΠΎΠ½Π°ΠΉΠΌΠ΅Π½ΡˆΠ΅ &b1 Π•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ Π›ΡŽΠΊ&r (Π²Ρ…Ρ–Π΄) Ρ‚Π° &b1 Π”ΠΈΠ½Π°ΠΌΠΎ Π›ΡŽΠΊ&r (Π²ΠΈΡ…Ρ–Π΄). \n- ΠŸΡ€ΠΈΠΉΠΌΠ°Ρ” &aΠ±ΡƒΠ΄ΡŒ-який люк&r β€” &8Π½Π° основі Π°ΠΌΠΏΠ΅Ρ€Π°ΠΆΡƒ&r Π°Π±ΠΎ &6Π»Π°Π·Π΅Ρ€Π½ΠΈΠΉ&r. \n- &cНСмає Ρ€ΠΈΠ·ΠΈΠΊΡƒ Π²ΠΈΠ±ΡƒΡ…Ρƒ&r β€” трансформатори &aΡ–Π½Ρ‚Π΅Π³Ρ€ΠΎΠ²Π°Π½Ρ–&r. \n\n&eΠ¨Π°Ρ€ΠΈ ΠšΠΎΠ½Π΄Π΅Π½ΡΠ°Ρ‚ΠΎΡ€Ρ–Π²&r: \n- МоТна Π΄ΠΎΠ΄Π°Ρ‚ΠΈ Π΄ΠΎ &d17 ΡˆΠ°Ρ€Ρ–Π²&r &9Π‘Π»ΠΎΠΊΡ–Π² ΠšΠΎΠ½Π΄Π΅Π½ΡΠ°Ρ‚ΠΎΡ€Ρ–Π²&r ΠΏΠΎΠ²Π΅Ρ€Ρ… структури. \n- КоТСн ΡˆΠ°Ρ€ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ &cΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°ΠΏΠΎΠ²Π½Π΅Π½ΠΈΠΉ&r β€” Π±Π΅Π· ΠΏΡ€ΠΎΠ³Π°Π»ΠΈΠ½. \n- МоТна Π·ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‚ΠΈ &fΠΏΠΎΡ€ΠΎΠΆΠ½Ρ–&r Ρ‚Π° &6Π·Π°ΠΏΠΎΠ²Π½Π΅Π½Ρ–&r кондСнсатори як Π·Π°Π²Π³ΠΎΠ΄Π½ΠΎ. \n\nΠžΡ‚ΠΎΡ‡ΠΈ ΠΊΠΎΠΆΠ΅Π½ ΡˆΠ°Ρ€ &bΠ›Π°ΠΌΡ–Π½ΠΎΠ²Π°Π½ΠΈΠΌ Π‘ΠΊΠ»ΠΎΠΌ&r. \n\nΠ‘ΡƒΠ΄ΡŒΠΌΠΎ чСсними: &cΠ’ΠΎΠ±Ρ– Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ 17 ΡˆΠ°Ρ€Ρ–Π²&r... Π°Π»Π΅, Π·Π½Π°Ρ”Ρˆ, мріяти Π½Π΅ Π·Π°Π±ΠΎΡ€ΠΎΠ½Π΅Π½ΠΎ. \nΠ―ΠΊΡ‰ΠΎ Ρ‚ΠΈ справді ΠΏΠΎΠ±ΡƒΠ΄ΡƒΡ”Ρˆ ΠΏΠΎΠ²Π½Ρƒ 17-ΡˆΠ°Ρ€ΠΎΠ²Ρƒ ΠŸΡ–Π΄ΡΡ‚Π°Π½Ρ†Ρ–ΡŽ, &lΠ±ΡƒΠ΄ΡŒ ласка, Π·Π²Π΅Ρ€Π½ΠΈΡΡŒ Π΄ΠΎ лікаря&r β€” Ρ‚ΠΈ зайшов Π½Π°Π΄Ρ‚ΠΎ Π΄Π°Π»Π΅ΠΊΠΎ.", + "quests.gregtech_energy.pss.desc.2": "&eΠ―ΠΊ Ρ†Π΅ ΠΏΡ€Π°Ρ†ΡŽΡ”&r: \n- ΠŸΠΎΠ±ΡƒΠ΄ΡƒΠΉ структуру, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ &aΠžΠ±ΡˆΠΈΠ²ΠΊΡƒ ΠŸΡ–Π΄ΡΡ‚Π°Π½Ρ†Ρ–Ρ— Π· ΠŸΠ°Π»Π°Π΄Ρ–ΡŽ&r. \n- Π”ΠΎΠ΄Π°ΠΉ Ρ‰ΠΎΠ½Π°ΠΉΠΌΠ΅Π½ΡˆΠ΅ &b1 Π•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ Π›ΡŽΠΊ&r (Π²Ρ…Ρ–Π΄) Ρ‚Π° &b1 Π”ΠΈΠ½Π°ΠΌΠΎ Π›ΡŽΠΊ&r (Π²ΠΈΡ…Ρ–Π΄). \n- ΠŸΡ€ΠΈΠΉΠΌΠ°Ρ” &aΠ±ΡƒΠ΄ΡŒ-який люк&r β€” &7Π½Π° основі Π°ΠΌΠΏΠ΅Ρ€Π°ΠΆΡƒ&r Π°Π±ΠΎ &6Π»Π°Π·Π΅Ρ€Π½ΠΈΠΉ&r. \n- &cНСмає Ρ€ΠΈΠ·ΠΈΠΊΡƒ Π²ΠΈΠ±ΡƒΡ…Ρƒ&r β€” трансформатори &aΡ–Π½Ρ‚Π΅Π³Ρ€ΠΎΠ²Π°Π½Ρ–&r. \n\n&eΠ¨Π°Ρ€ΠΈ ΠšΠΎΠ½Π΄Π΅Π½ΡΠ°Ρ‚ΠΎΡ€Ρ–Π²&r: \n- МоТна Π΄ΠΎΠ΄Π°Ρ‚ΠΈ Π΄ΠΎ &d17 ΡˆΠ°Ρ€Ρ–Π²&r &9Π‘Π»ΠΎΠΊΡ–Π² ΠšΠΎΠ½Π΄Π΅Π½ΡΠ°Ρ‚ΠΎΡ€Ρ–Π²&r ΠΏΠΎΠ²Π΅Ρ€Ρ… структури. \n- КоТСн ΡˆΠ°Ρ€ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ &cΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°ΠΏΠΎΠ²Π½Π΅Π½ΠΈΠΉ&r β€” Π±Π΅Π· ΠΏΡ€ΠΎΠ³Π°Π»ΠΈΠ½. \n- МоТна Π·ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‚ΠΈ &fΠΏΠΎΡ€ΠΎΠΆΠ½Ρ–&r Ρ‚Π° &6Π·Π°ΠΏΠΎΠ²Π½Π΅Π½Ρ–&r кондСнсатори як Π·Π°Π²Π³ΠΎΠ΄Π½ΠΎ. \n\nΠžΡ‚ΠΎΡ‡ΠΈ ΠΊΠΎΠΆΠ΅Π½ ΡˆΠ°Ρ€ &bΠ›Π°ΠΌΡ–Π½ΠΎΠ²Π°Π½ΠΈΠΌ Π‘ΠΊΠ»ΠΎΠΌ&r. \n\nΠ‘ΡƒΠ΄ΡŒΠΌΠΎ чСсними: &cΠ’ΠΎΠ±Ρ– Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ 17 ΡˆΠ°Ρ€Ρ–Π²&r... Π°Π»Π΅, Π·Π½Π°Ρ”Ρˆ, мріяти Π½Π΅ Π·Π°Π±ΠΎΡ€ΠΎΠ½Π΅Π½ΠΎ. \nΠ―ΠΊΡ‰ΠΎ Ρ‚ΠΈ справді ΠΏΠΎΠ±ΡƒΠ΄ΡƒΡ”Ρˆ ΠΏΠΎΠ²Π½Ρƒ 17-ΡˆΠ°Ρ€ΠΎΠ²Ρƒ ΠŸΡ–Π΄ΡΡ‚Π°Π½Ρ†Ρ–ΡŽ, &lΠ±ΡƒΠ΄ΡŒ ласка, Π·Π²Π΅Ρ€Π½ΠΈΡΡŒ Π΄ΠΎ лікаря&r β€” Ρ‚ΠΈ зайшов Π½Π°Π΄Ρ‚ΠΎ Π΄Π°Π»Π΅ΠΊΠΎ.", "quests.gregtech_energy.batteries.title": "Π‘ΡƒΠΏΠ΅Ρ€ Акумулятори", "quests.gregtech_energy.batteries.subtitle": "Науково-фантастичнС збСрігання Π΅Π½Π΅Ρ€Π³Ρ–Ρ—", "quests.gregtech_energy.batteries.desc": "Π£ &7LV&r Ρ‚Π° &bMV&r Π²ΠΈ, ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½ΠΎ, створили свої ΠΏΠ΅Ρ€ΡˆΡ– Π±Π°Ρ‚Π°Ρ€Π΅Ρ— Π· ΠΠ°Ρ‚Ρ€Ρ–ΡŽ Π°Π±ΠΎ Π›Ρ–Ρ‚Ρ–ΡŽ.\n\nАлС Π±ΡƒΠ΄ΡŒΠΌΠΎ чСсні β€” Ρ†Π΅ Π½Π°ΠΉΡΠ»Π°Π±ΡˆΡ– Π±Π°Ρ‚Π°Ρ€Π΅Ρ—, які ΠΏΡ€ΠΎΠΏΠΎΠ½ΡƒΡ” GregTech.\n\nΠ£ Ρ†ΡŒΠΎΠΌΡƒ Π·Π°Π²Π΄Π°Π½Π½Ρ– ΠΌΠΈ розглянСмо ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ– Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²ΠΈ: &aкристалічні Π±Π°Ρ‚Π°Ρ€Π΅Ρ—&r.\nΠ’ΠΎΠ½ΠΈ Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡˆΡ–, Π·Π±Π΅Ρ€Ρ–Π³Π°ΡŽΡ‚ΡŒ Π½Π°Π±Π°Π³Π°Ρ‚ΠΎ Π±Ρ–Π»ΡŒΡˆΠ΅ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Ρ‚Π° Π΄ΠΎΠΏΠΎΠΌΠΎΠΆΡƒΡ‚ΡŒ Π²Π°ΠΌ підняти Ρ„Π°Π±Ρ€ΠΈΠΊΡƒ Π½Π° Π½ΠΎΠ²ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ.\n\nΠ’ΠΎΠ½ΠΈ Π΄ΠΎΡ€ΠΎΠΆΡ‡Ρ–? Звісно. АлС Π±ΡƒΠ΄ΡŒΠΌΠΎ чСсні...\nЕнСргія β€” Ρ†Π΅ СнСргія. Π₯Ρ‚ΠΎ Ρ—Ρ— Ρ€Π°Ρ…ΡƒΡ”?", @@ -1840,14 +2473,14 @@ "quests.gregtech_energy.spending_energy.title": "Витрачання Π•Π½Π΅Ρ€Π³Ρ–Ρ—", "quests.gregtech_energy.spending_energy.subtitle": "О, Ρ‚ΠΈ Π²ΠΈΡ‚Ρ€Π°Ρ‡Π°Ρ‚ΠΈΠΌΠ΅Ρˆ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ", "quests.gregtech_energy.spending_energy.desc.1": "Π―ΠΊ Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈΡ‚ΠΈ всю Ρ†ΡŽ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ?\n\nΠšΠΎΡ€ΠΈΡΡ‚ΡƒΠΉΡ‚Π΅ΡΡŒ своїми машинами! Π—Π²ΡƒΡ‡ΠΈΡ‚ΡŒ просто, ΠΏΡ€Π°Π²Π΄Π°?\nНу... Π½Π΅ зовсім. Π„ Π±Π°Π³Π°Ρ‚ΠΎ Π΄Ρ€Ρ–Π±Π½ΠΈΡ… Π΄Π΅Ρ‚Π°Π»Π΅ΠΉ, які Π²Π°Ρ€Ρ‚ΠΎ Π²ΠΈΠ²Ρ‡ΠΈΡ‚ΠΈ, Ρ‰ΠΎΠ± Π΄ΠΎΠΏΠΎΠΌΠΎΠ³Ρ‚ΠΈ Π²Π°ΠΌ Ρƒ ΠΏΡ€ΠΎΡ…ΠΎΠ΄ΠΆΠ΅Π½Π½Ρ– &3TerraFirmaGreg&r.\n\nΠ‘Π°Π·ΠΎΠ²Ρ– машини:\n- Π¦Ρ– машини прості.\n- Π’ΠΎΠ½ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π·Π°ΠΏΠΈΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Π΄ΠΎ &a2A&r ΠΊΠΎΠΆΠ½Π°.\n- Π―ΠΊΡ‰ΠΎ ΠΏΠΎΠ΄Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня... &4\uD83D\uDCA5 Π²ΠΎΠ½ΠΈ Π²ΠΈΠ±ΡƒΡ…Π°ΡŽΡ‚ΡŒ&r.\n\nGregTech-ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ:\nΠ’ΡƒΡ‚ ΠΏΠΎΡ‡ΠΈΠ½Π°Ρ”Ρ‚ΡŒΡΡ Ρ†Ρ–ΠΊΠ°Π²Π΅. ΠœΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ ΠΏΡ€ΠΎΠΏΠΎΠ½ΡƒΡŽΡ‚ΡŒ Π±Ρ–Π»ΡŒΡˆΠ΅ гнучкості Ρ‚Π° потуТності β€” &eякщо&r Π²ΠΈ Ρ€ΠΎΠ·ΡƒΠΌΡ–Ρ”Ρ‚Π΅, як Π²ΠΎΠ½ΠΈ ΠΏΡ€Π°Ρ†ΡŽΡŽΡ‚ΡŒ.", - "quests.gregtech_energy.spending_energy.desc.2": "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½Π° ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΠ°:\n- Π―ΠΊΡ‰ΠΎ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ ΠΌΠΎΠΆΠ΅ ΠΏΡ€ΠΈΠΉΠΌΠ°Ρ‚ΠΈ Π΄Π²Π° Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… люки (Π±Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ Π· Π½ΠΈΡ…), Ρ†Π΅ дозволяє використовувати Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня, Π½Ρ–ΠΆ Π±Π°Π·ΠΎΠ²ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ машини.\n\nΠŸΡ€ΠΈΠΊΠ»Π°Π΄:\nΠ―ΠΊΡ‰ΠΎ Π²ΠΈ використовуєтС Π’Π΅Π»ΠΈΠΊΡƒ Π—ΠΌΡ–ΡˆΡƒΠ²Π°Π»ΡŒΠ½Ρƒ Π„ΠΌΠ½Ρ–ΡΡ‚ΡŒ Ρ– встановитС Π΄Π²Π° Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… люки IV, Π²ΠΎΠ½Π° Π·ΠΌΠΎΠΆΠ΅ обробляти Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ Π—ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‡Π° рівня &cLuV&r.\n\nΠ¦Π΅ ΠΎΠ΄Π½Π° Π· ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΈΡ… ΠΏΠ΅Ρ€Π΅Π²Π°Π³ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΡ–Π² Π½Π°Π΄ ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΠΊΠΎΠ²ΠΈΠΌΠΈ машинами β€” Ρ‰ΠΎΠ± ΠΎΠ½ΠΎΠ²ΠΈΡ‚ΠΈ Ρ—Ρ… Π΄ΠΎ наступного рівня, Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ Π·Π°ΠΌΡ–Π½ΠΈΡ‚ΠΈ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½Ρ– люки, Π° Π½Π΅ всю ΠΌΠ°ΡˆΠΈΠ½Ρƒ.", - "quests.gregtech_energy.spending_energy.desc.3": "ДСякі ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ ΠΏΡ€ΠΈΠΉΠΌΠ°ΡŽΡ‚ΡŒ лишС ΠΎΠ΄ΠΈΠ½ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк, Π°Π»Π΅ Ρ†Π΅ Π½Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ Π²ΠΈ ΠΎΠ±ΠΌΠ΅ΠΆΠ΅Π½Ρ– 1A!\n\nΠ’ΠΈ всС Ρ‰Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використовувати Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк Π½Π° 4A Π°Π±ΠΎ 16A. Π¦Π΅ Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ &bΠ ΠΎΠ·Π³ΠΎΠ½Ρƒ&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π², Π°Π»Π΅ Π½Π΅ Π·ΠΌΡ–Π½ΠΈΡ‚ΡŒ Ρ—Ρ… Ρ€Ρ–Π²Π΅Π½ΡŒ.\n\nΠŸΡ€ΠΈΠΊΠ»Π°Π΄:\nΠ’Π΅Π»ΠΈΠΊΠΈΠΉ Π—Π±ΠΈΡ€Π°Ρ‡ Π‘Ρ…Π΅ΠΌ ΠΏΡ€ΠΈΠΉΠΌΠ°Ρ” лишС ΠΎΠ΄ΠΈΠ½ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк. Π―ΠΊΡ‰ΠΎ встановити Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк IV Π½Π° 4A, Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Ρ€ΠΎΠ·Ρ–Π³Π½Π°Ρ‚ΠΈ всі Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ рівня IV Ρ– Π½ΠΈΠΆΡ‡Π΅.\n\nОднак Π²Ρ–Π½ Π½Π΅ ΠΌΠΎΠΆΠ΅ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ рівня LuV, ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ машина Π½Π΅ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” ΠΊΡ–Π»ΡŒΠΊΠ° Π»ΡŽΠΊΡ–Π². Π¦Π΅ обмСТСння Π·Ρ€ΠΎΠ±Π»Π΅Π½ΠΎ навмисно, Ρ‰ΠΎΠ± Π·Π°ΠΏΠΎΠ±Ρ–Π³Ρ‚ΠΈ пропуску систСми прогрСсу GregTech.", + "quests.gregtech_energy.spending_energy.desc.2": "Π‘Ρ‚Π°Π½Π΄Π°Ρ€Ρ‚Π½Π° ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΠ°:\n- Π―ΠΊΡ‰ΠΎ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ ΠΌΠΎΠΆΠ΅ ΠΏΡ€ΠΈΠΉΠΌΠ°Ρ‚ΠΈ Π΄Π²Π° Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… люки (Π° Π±Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ Π· Π½ΠΈΡ… ΠΌΠΎΠΆΡƒΡ‚ΡŒ), Ρ†Π΅ дозволяє використовувати Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня, Π½Ρ–ΠΆ Π±Π°Π·ΠΎΠ²ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ машини.\n\nΠŸΡ€ΠΈΠΊΠ»Π°Π΄:\nΠ―ΠΊΡ‰ΠΎ Π²ΠΈ Π±ΡƒΠ΄ΡƒΡ”Ρ‚Π΅ Π•Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Ρƒ Π΄ΠΎΠΌΠ΅Π½Π½Ρƒ ΠΏΡ–Ρ‡ Ρ– Π²ΡΡ‚Π°Π½ΠΎΠ²Π»ΡŽΡ”Ρ‚Π΅ Π΄Π²Π° &7LV&r Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΡ… люки, Π²ΠΎΠ½Π° Π·ΠΌΠΎΠΆΠ΅ обробляти Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ рівня &6MV&r для Π•Π”ΠŸ.\n\nΠ¦Π΅ ΠΎΠ΄Π½Π° Π· ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΈΡ… ΠΏΠ΅Ρ€Π΅Π²Π°Π³ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΡ–Π² Π½Π°Π΄ ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΡ‡Π½ΠΈΠΌΠΈ машинами β€” Ρ‰ΠΎΠ± ΠΎΠ½ΠΎΠ²ΠΈΡ‚ΠΈ Ρ—Ρ… Π΄ΠΎ наступного рівня, Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ Π·Π°ΠΌΡ–Π½ΠΈΡ‚ΠΈ лишС Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½Ρ– люки, Π° Π½Π΅ всю ΠΌΠ°ΡˆΠΈΠ½Ρƒ.", + "quests.gregtech_energy.spending_energy.desc.3": "ДСякі ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ ΠΏΡ€ΠΈΠΉΠΌΠ°ΡŽΡ‚ΡŒ лишС ΠΎΠ΄ΠΈΠ½ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк, Π°Π»Π΅ Ρ†Π΅ Π½Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ Π²ΠΈ ΠΎΠ±ΠΌΠ΅ΠΆΠ΅Π½Ρ– лишС 1 Π°ΠΌΠΏΠ΅Ρ€ΠΎΠΌ!\n\nΠ’ΠΈ всС ΠΎΠ΄Π½ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використовувати 4A Π°Π±ΠΎ 16A Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк. Π¦Π΅ Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ &bΡ€ΠΎΠ·Π³Ρ–Π½&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π², Π°Π»Π΅ Π½Π΅ ΠΏΡ–Π΄Π²ΠΈΡ‰ΠΈΡ‚ΡŒ Ρ—Ρ…Π½Ρ–ΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ.\n\nΠŸΡ€ΠΈΠΊΠ»Π°Π΄:\nВСликийсхСматологічний Π·Π±ΠΈΡ€Π°Ρ‡ дозволяє встановити лишС ΠΎΠ΄ΠΈΠ½ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк. Π―ΠΊΡ‰ΠΎ Π²ΠΈ встановитС 4A IV Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк, Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅Π²ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈ всі Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ рівня IV Ρ– Π½ΠΈΠΆΡ‡Π΅.\n\nОднак Π²Ρ–Π½ Π½Π΅ Π·ΠΌΠΎΠΆΠ΅ обробляти Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ рівня LuV, ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ машина Π½Π΅ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” ΠΊΡ–Π»ΡŒΠΊΠ° Π»ΡŽΠΊΡ–Π². Π¦Π΅ обмСТСння Π·Ρ€ΠΎΠ±Π»Π΅Π½ΠΎ навмисно, Ρ‰ΠΎΠ± Π½Π΅ ΠΏΠΎΡ€ΡƒΡˆΠΈΡ‚ΠΈ ΠΏΡ€ΠΎΠ³Ρ€Π΅ΡΡ–ΡŽ GregTech.", "quests.gregtech_energy.spending_energy.desc.4": "Π’ΠΎΠΆ пам’ятайтС: Π±Ρ–Π»ΡŒΡˆΠ΅ Π°ΠΌΠΏΠ΅Ρ€Ρ–Π² Π½Π° ΠΎΠ΄Π½ΠΎΠΌΡƒ Π»ΡŽΠΊΡƒ ΠΎΠ·Π½Π°Ρ‡Π°Ρ” ΡˆΠ²ΠΈΠ΄ΡˆΡƒ ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ, Π°Π»Π΅ для розблокування Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π² Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– Π΄Π²Π° люки.", "quests.gregtech_energy.spending_energy.task": "Π― Ρ€ΠΎΠ·ΡƒΠΌΡ–ΡŽ", "quests.gregtech_energy.overclock.title": "Π ΠΎΠ·Π³Ρ–Π½", "quests.gregtech_energy.overclock.subtitle": "Π‘Π°Π·ΠΎΠ²Π° ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΠ° покращСння", "quests.gregtech_energy.overclock.desc.1": "Π§ΡƒΠ»ΠΈ ΠΏΡ€ΠΎ Ρ€ΠΎΠ·Π³Ρ–Π½, Π°Π»Π΅ Π½Π΅ зовсім Ρ€ΠΎΠ·ΡƒΠΌΡ–Ρ”Ρ‚Π΅, Ρ‰ΠΎ Ρ†Π΅? Π”Π°Π²Π°ΠΉΡ‚Π΅ Ρ‚Ρ€ΠΎΡ…ΠΈ Ρ€ΠΎΠ·Π±Π΅Ρ€Π΅ΠΌΠΎΡΡŒ.\n\nΠŸΠΎΡ‡Π½Π΅ΠΌΠΎ Π· основ:\n&dLV&r β€” максимум 32 EU/t β€” Ρ–Π½ΠΎΠ΄Ρ– мСншС, Π°Π»Π΅ Π½Ρ–ΠΊΠΎΠ»ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅.\n&dMV&r β€” Π΄ΠΎ 128 EU/t.\n&dHV&r β€” досягає 512 EU/t.\nΠ€Π°ΠΊΡ‚ΠΈΡ‡Π½ΠΎ, ΠΊΠΎΠΆΠ΅Π½ Ρ€Ρ–Π²Π΅Π½ΡŒ β€” Ρ†Π΅ Π·Π±Ρ–Π»ΡŒΡˆΠ΅Π½Π½Ρ споТивання Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π² 4 Ρ€Π°Π·ΠΈ.", - "quests.gregtech_energy.overclock.desc.2": "Π©ΠΎ Π²Ρ–Π΄Π±ΡƒΠ²Π°Ρ”Ρ‚ΡŒΡΡ, ΠΊΠΎΠ»ΠΈ Π²ΠΈ запускаєтС Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π½ΠΈΠΆΡ‡ΠΎΠ³ΠΎ рівня Π² ΠΌΠ°ΡˆΠΈΠ½Ρ– Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня? Π¦Π΅ Π½Π°Π·ΠΈΠ²Π°Ρ”Ρ‚ΡŒΡΡ &eΠ ΠΎΠ·Π³ΠΎΠ½ΠΎΠΌ&r!\n\nΠ Π΅Ρ†Π΅ΠΏΡ‚ &dMV&r (33–128 EU/t), Π·Π°ΠΏΡƒΡ‰Π΅Π½ΠΈΠΉ Ρƒ ΠΌΠ°ΡˆΠΈΠ½Ρ– &dHV&r, Π±ΡƒΠ΄Π΅: 1) споТивати Π² 4 Ρ€Π°Π·ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—, Ρ– 2) ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ Π² 2 Ρ€Π°Π·ΠΈ швидшС.\n\nΠ’ΠΎΠΉ самий Ρ€Π΅Ρ†Π΅ΠΏΡ‚ MV Ρƒ ΠΌΠ°ΡˆΠΈΠ½Ρ– &dEV&r? Π’ΠΈΡ‚Ρ€Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π·Ρ€ΠΎΡΡ‚Π°ΡŽΡ‚ΡŒ Ρƒ 8 Ρ€Π°Π·Ρ–Π², Π°Π»Π΅ ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ β€” лишС Π² 4 Ρ€Π°Π·ΠΈ.\n\nΠ―ΠΊ Π±Π°Ρ‡ΠΈΡ‚Π΅, Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡˆΠ΅ ΠΏΠΎ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— використовувати ΠΊΡ–Π»ΡŒΠΊΠ° машин, Π½Ρ–ΠΆ Ρ€ΠΎΠ·Ρ–Π³Π½Π°Ρ‚ΠΈ ΠΎΠ΄Π½Ρƒ.\n\nАлС Π±ΡƒΠ΄ΡŒΠΌΠΎ чСсні: Ρƒ Π±Ρ–Π»ΡŒΡˆΠΎΡΡ‚Ρ– схСм Π²ΠΈ надастС ΠΏΠ΅Ρ€Π΅Π²Π°Π³Ρƒ Ρ€ΠΎΠ·Π³ΠΎΠ½Ρƒ, Π½Ρ–ΠΆ Π±ΡƒΠ΄Ρ–Π²Π½ΠΈΡ†Ρ‚Π²Ρƒ ΠΊΡƒΠΏΠΈ ΠΎΠ΄Π½Π°ΠΊΠΎΠ²ΠΈΡ… машин.\n\nΠ’Ρ‚Ρ–ΠΌ, Π΄ΠΎΠ±Ρ€Π΅ Π·Π½Π°Ρ‚ΠΈ Ρ†Π΅ Π½Π° Ρ€Π°Π½Π½ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ–, ΠΊΠΎΠ»ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— обмаль.", + "quests.gregtech_energy.overclock.desc.2": "Π©ΠΎ Π²Ρ–Π΄Π±ΡƒΠ²Π°Ρ”Ρ‚ΡŒΡΡ, ΠΊΠΎΠ»ΠΈ Π²ΠΈ запускаєтС Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π½ΠΈΠΆΡ‡ΠΎΠ³ΠΎ рівня Π² ΠΌΠ°ΡˆΠΈΠ½Ρ– Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня? Π¦Π΅ Π½Π°Π·ΠΈΠ²Π°Ρ”Ρ‚ΡŒΡΡ &eΠ ΠΎΠ·Π³ΠΎΠ½ΠΎΠΌ&r!\n\nΠ Π΅Ρ†Π΅ΠΏΡ‚ &dMV&r (33–128 EU/t), Π²ΠΈΠΊΠΎΠ½Π°Π½ΠΈΠΉ Ρƒ ΠΌΠ°ΡˆΠΈΠ½Ρ– &dHV&r, Π±ΡƒΠ΄Π΅: \n1) Π‘ΠΏΠΎΠΆΠΈΠ²Π°Ρ‚ΠΈ Π² 4x Π±Ρ–Π»ΡŒΡˆΠ΅ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— \n2) Π’ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈΡΡŒ Ρƒ 2x швидшС\n\nΠ’ΠΎΠΉ самий Ρ€Π΅Ρ†Π΅ΠΏΡ‚ MV Ρƒ ΠΌΠ°ΡˆΠΈΠ½Ρ– &dEV&r? \n16x споТивання Π΅Π½Π΅Ρ€Π³Ρ–Ρ—, Π°Π»Π΅ лишС 4x прискорСння.\n\nΠ―ΠΊ Π±Π°Ρ‡ΠΈΡ‚Π΅, Π· Ρ‚ΠΎΡ‡ΠΊΠΈ Π·ΠΎΡ€Ρƒ СнСргоСфСктивності ΠΊΡ€Π°Ρ‰Π΅ використовувати ΠΊΡ–Π»ΡŒΠΊΠ° машин, Π½Ρ–ΠΆ розганяти ΠΎΠ΄Π½Ρƒ. \nАлС Π±ΡƒΠ΄ΡŒΠΌΠΎ чСсні: Ρƒ Π±Ρ–Π»ΡŒΡˆΠΎΡΡ‚Ρ– Π²ΠΈΠΏΠ°Π΄ΠΊΡ–Π² Π²Π°ΠΌ Π±ΡƒΠ΄Π΅ Π·Ρ€ΡƒΡ‡Π½Ρ–ΡˆΠ΅ розганяти, Π½Ρ–ΠΆ Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ дСсятки ΠΎΠ΄Π½Π°ΠΊΠΎΠ²ΠΈΡ… машин.\n\nΠŸΡ€ΠΎΡ‚Π΅ Ρ†Π΅ Π²Π°Ρ€Ρ‚ΠΎ Π·Π½Π°Ρ‚ΠΈ Ρ‰Π΅ Π½Π° ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ Π³Ρ€ΠΈ, ΠΊΠΎΠ»ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— обмаль.", "quests.gregtech_energy.overclock.desc.3": "Існує особливий Ρ‚ΠΈΠΏ Ρ€ΠΎΠ·Π³ΠΎΠ½Ρƒ, доступний лишС для ΠΊΡ–Π»ΡŒΠΊΠΎΡ… ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΡ–Π²: &eΠ†Π΄Π΅Π°Π»ΡŒΠ½ΠΈΠΉ Π ΠΎΠ·Π³Ρ–Π½&r.\nΠ’ΡƒΡ‚ Π·Π°ΠΌΡ–ΡΡ‚ΡŒ 4x Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π·Π° 2x ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ”Ρ‚Π΅ &a4x Π΅Π½Π΅Ρ€Π³Ρ–Ρ—&r Π·Π° &a4x ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ&r! Π¦Π΅ Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ ΠΉΠΎΠ³ΠΎ Ρ‚Π°ΠΊΠΈΠΌ ΠΆΠ΅ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΌ, як Ρ– використання ΠΊΡ–Π»ΡŒΠΊΠΎΡ… машин.\n\nНаразі Π² TerraFirmaGreg Ρ†Π΅ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒ лишС Ρ‚Π°ΠΊΡ– ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ:\n- Π•Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Π° Π”ΠΎΠΌΠ΅Π½Π½Π° ΠŸΡ–Ρ‡\n- Плавильник Π‘ΠΏΠ»Π°Π²Ρ–Π²\n- Π ΠΎΡ‚Π°Ρ†Ρ–ΠΉΠ½Π° Π’Π΅ΠΏΠ»ΠΎΠ²Π° ΠŸΡ–Ρ‡\n- Π’Π΅Π»ΠΈΠΊΠΈΠΉ Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΈΠΉ Π Π΅Π°ΠΊΡ‚ΠΎΡ€\n- Π•Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Π° ВСплиця", "quests.gregtech_energy.overclock.task": "Π’ΠΎΠ±Ρ‚ΠΎ Ρ‡Π΅Ρ€Π²ΠΎΠ½Ρ– ΡˆΠ²ΠΈΠ΄ΡˆΡ–, Π·Ρ€ΠΎΠ·ΡƒΠΌΡ–Π»ΠΎ", "quests.gregtech_energy.blast_oc.title": "Π’ΠΈΠ±ΡƒΡ…ΠΎΠ²ΠΈΠΉ Π ΠΎΠ·Π³Ρ–Π½", @@ -1868,16 +2501,16 @@ "quests.gregtech_energy.rotor.title": "Π ΠΎΡ‚ΠΎΡ€ΠΈ Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΈ", "quests.gregtech_energy.rotor.subtitle": "Π‘Ρ‚Ρ–Π»ΡŒΠΊΠΈ Π²Π°Ρ€Ρ–Π°Π½Ρ‚Ρ–Π²!", "quests.gregtech_energy.rotor.desc.1": "Π’Ρ€ΠΈΠΌΠ°Ρ‡Ρ– Ρ€ΠΎΡ‚ΠΎΡ€Ρ–Π² ΠΏΡ€ΠΈΡ€ΠΎΠ΄Π½ΠΎ Π²ΠΈΠΌΠ°Π³Π°ΡŽΡ‚ΡŒ встановлСння Π ΠΎΡ‚ΠΎΡ€Π°, Π°Π»Π΅ існує Π±Π°Π³Π°Ρ‚ΠΎ Π²Π°Ρ€Ρ–Π°Π½Ρ‚Ρ–Π², Ρ– всі Π²ΠΎΠ½ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Ρ€Ρ–Π·Π½Ρ– характСристики. Π’ΠΎ Ρ‰ΠΎ ΠΆ Π²ΠΎΠ½ΠΈ ΠΎΠ·Π½Π°Ρ‡Π°ΡŽΡ‚ΡŒ?\n\nΠ’ΠΈΡ‰Π° &9Π•Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ&r Π·Π±Ρ–Π»ΡŒΡˆΡƒΡ” час використання ΠΊΠΎΠΆΠ½ΠΎΠ³ΠΎ ΠΌΠ‘ ΠΏΠ°Π»ΠΈΠ²Π°, Ρ„Π°ΠΊΡ‚ΠΈΡ‡Π½ΠΎ Π·ΠΌΠ΅Π½ΡˆΡƒΡŽΡ‡ΠΈ ΠΉΠΎΠ³ΠΎ Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈ. Π’ΠΈΠΌ часом &9ΠŸΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡΡ‚ΡŒ&r ΠΏΡ–Π΄Π²ΠΈΡ‰ΡƒΡ” ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ EU, яку Π³Π΅Π½Π΅Ρ€ΡƒΡ” Ρ‚ΡƒΡ€Π±Ρ–Π½Π°. Π† Π½Π°Ρ€Π΅ΡˆΡ‚Ρ–, &9ΠœΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ&r β€” Ρ†Π΅ ΠΎΡ‡Π΅Π²ΠΈΠ΄Π½ΠΈΠΉ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€.", - "quests.gregtech_energy.rotor.desc.2": "Π’ Ρ–Π΄Π΅Π°Π»Ρ– Π²ΠΈ Π·Π°Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ максимізувати всі Ρ‚Ρ€ΠΈ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΈ, Π°Π»Π΅ Π²ΠΈΠ±Ρ–Ρ€ Π·Π°Π»Π΅ΠΆΠ°Ρ‚ΠΈΠΌΠ΅ Π²Ρ–Π΄ Ρ‚ΠΎΠ³ΠΎ, ΡΠΊΡ–Π»ΡŒΠΊΠΈ ΠΏΠ°Π»ΠΈΠ²Π° Π²ΠΈ виробляєтС, ΡΠΊΡ–Π»ΡŒΠΊΠΈ Ρ‚ΡƒΡ€Π±Ρ–Π½ ΠΌΠ°Ρ”Ρ‚Π΅ Ρ‚Π° як часто Π³ΠΎΡ‚ΠΎΠ²Ρ– Ρ—Ρ… Π·Π°ΠΌΡ–Π½ΡŽΠ²Π°Ρ‚ΠΈ, Ρ‚ΠΎΠΆ ΠΎΠ΄Π½ΠΎΠ·Π½Π°Ρ‡Π½ΠΎ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠ³ΠΎ Π²Π°Ρ€Ρ–Π°Π½Ρ‚Ρƒ Π½Π΅ΠΌΠ°Ρ”. &8(ΠžΠΊΡ€Ρ–ΠΌ Π½Π΅ΠΉΡ‚Ρ€ΠΎΠ½Ρ–ΡŽ, звісно...)&r\n\nΠ— огляду Π½Π° Ρ†Π΅, якщо Π²ΠΈ зовсім розгубилися, ΠΌΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ Π²Π°Π½Π°Π΄Ρ–Ρ”Π²Ρƒ ΡΡ‚Π°Π»ΡŒ Ρƒ &6HV&r, Ultimet Ρƒ &5EV&r Ρ‚Π° HSS-S Ρƒ &9IV&r.\n\nНа Таль, Π²ΠΈ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΠΈ Π½ΠΎΠ²Ρ– Ρ€ΠΎΡ‚ΠΎΡ€ΠΈ Π² Ρ‚Ρ€ΠΈΠΌΠ°Ρ‡Ρ– Ρ€ΠΎΡ‚ΠΎΡ€Ρ–Π², ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ Π±Π»ΠΎΠΊ ΠΏΠ΅Ρ€Π΅Π΄ Π½ΠΈΠΌΠΈ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ–ΠΌ, Π°Π»Π΅ &aΠœΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½Π° Ρ€ΡƒΠΊΠ°&r Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎ Π²ΠΏΠΎΡ€Π°Ρ”Ρ‚ΡŒΡΡ!", + "quests.gregtech_energy.rotor.desc.2": "Π’ Ρ–Π΄Π΅Π°Π»Ρ– Π²ΠΈ Π·Π°Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ максимізувати всі Ρ‚Ρ€ΠΈ ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΈ, Π°Π»Π΅ Π²ΠΈΠ±Ρ–Ρ€ Π·Π°Π»Π΅ΠΆΠ°Ρ‚ΠΈΠΌΠ΅ Π²Ρ–Π΄ Ρ‚ΠΎΠ³ΠΎ, ΡΠΊΡ–Π»ΡŒΠΊΠΈ ΠΏΠ°Π»ΠΈΠ²Π° Π²ΠΈ виробляєтС, ΡΠΊΡ–Π»ΡŒΠΊΠΈ Ρ‚ΡƒΡ€Π±Ρ–Π½ ΠΌΠ°Ρ”Ρ‚Π΅ Ρ‚Π° як часто Π³ΠΎΡ‚ΠΎΠ²Ρ– Ρ—Ρ… Π·Π°ΠΌΡ–Π½ΡŽΠ²Π°Ρ‚ΠΈ, Ρ‚ΠΎΠΆ ΠΎΠ΄Π½ΠΎΠ·Π½Π°Ρ‡Π½ΠΎ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠ³ΠΎ Π²Π°Ρ€Ρ–Π°Π½Ρ‚Ρƒ Π½Π΅ΠΌΠ°Ρ”. &7(ΠžΠΊΡ€Ρ–ΠΌ Π½Π΅ΠΉΡ‚Ρ€ΠΎΠ½Ρ–ΡŽ, звісно...)&r\n\nΠ— огляду Π½Π° Ρ†Π΅, якщо Π²ΠΈ зовсім розгубилися, ΠΌΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ Π²Π°Π½Π°Π΄Ρ–Ρ”Π²Ρƒ ΡΡ‚Π°Π»ΡŒ Ρƒ &6HV&r, Ultimet Ρƒ &5EV&r Ρ‚Π° HSS-S Ρƒ &9IV&r.\n\nНа Таль, Π²ΠΈ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΠΈ Π½ΠΎΠ²Ρ– Ρ€ΠΎΡ‚ΠΎΡ€ΠΈ Π² Ρ‚Ρ€ΠΈΠΌΠ°Ρ‡Ρ– Ρ€ΠΎΡ‚ΠΎΡ€Ρ–Π², ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ Π±Π»ΠΎΠΊ ΠΏΠ΅Ρ€Π΅Π΄ Π½ΠΈΠΌΠΈ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ–ΠΌ, Π°Π»Π΅ &aΠœΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½Π° Ρ€ΡƒΠΊΠ°&r Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎ Π²ΠΏΠΎΡ€Π°Ρ”Ρ‚ΡŒΡΡ!", "quests.gregtech_energy.rotor.task": "Π‘ΡƒΠ΄ΡŒ-які Ρ€ΠΎΡ‚ΠΎΡ€ΠΈ Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΈ", "quests.gregtech_energy.fission_reactor.title": "Π Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΏΠΎΠ΄Ρ–Π»Ρƒ MK I", "quests.gregtech_energy.fission_reactor.subtitle": "ΠŸΡ€ΠΈΡΡ‚Π΅Π±Π½ΠΈΡΡŒ, Π·Π°Ρ€Π°Π· Π±ΡƒΠ΄Π΅ складно", "quests.gregtech_energy.fission_reactor.desc.1": "&dΠ Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΏΠΎΠ΄Ρ–Π»Ρƒ&r β€” Π΄ΠΎΠ²ΠΎΠ»Ρ– рідкіснС Π²ΠΈΠ΄ΠΎΠ²ΠΈΡ‰Π΅ Ρƒ GregTech, як Π·Π° Ρ‚Π΅ΠΌΠ°Ρ‚ΠΈΠΊΠΎΡŽ, Ρ‚Π°ΠΊ Ρ– Π·Π° ΠΏΡ€ΠΈΠ½Ρ†ΠΈΠΏΠΎΠΌ Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ. АлС Π½Π΅ Ρ…Π²ΠΈΠ»ΡŽΠΉΡΡ, ΠΌΠΈ Π΄ΠΎΠΏΠΎΠΌΠΎΠΆΠ΅ΠΌΠΎ розібратися Π· Ρ†ΠΈΠΌ Π±Π°Π³Π°Ρ‚ΠΎΡ„ΡƒΠ½ΠΊΡ†Ρ–ΠΎΠ½Π°Π»ΡŒΠ½ΠΈΠΌ Β«ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΎΠΌ для Π³Π΅Π½Ρ–Ρ—Π²Β»!\n\nΠ€Ρ–Π·ΠΈΠΊΡƒ ΠΏΠΎΠΊΠΈ пропустимо, &eΡ–Π½ΠΆΠ΅Π½Π΅Ρ€Π΅&r. ΠΠ°ΠΉΠ²Π°ΠΆΠ»ΠΈΠ²Ρ–ΡˆΠ΅, Ρ‰ΠΎ Ρ‚Ρ€Π΅Π±Π° Π·Π½Π°Ρ‚ΠΈ: Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΏΡ€Π°Ρ†ΡŽΡ” як Π²Π΅Π»ΠΈΠΊΠΈΠΉ Ρ‚Π΅ΠΏΠ»ΠΎΠ²ΠΈΠΉ &dакумулятор‑гСнСратор&r. Π’ΠΈ ΠΏΠΎΠ΄Π°Ρ”Ρ‚Π΅ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ ΠΉ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ”Ρ‚Π΅ &cΡ‚Π΅ΠΏΠ»ΠΎ&r (Π°Π½Π°Π»ΠΎΠ³ &6EU/t&r), якС Π½Π°ΠΊΠΎΠΏΠΈΡ‡ΡƒΡ”Ρ‚ΡŒΡΡ Π² Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ– Ρƒ вигляді &cΠ·Ρ€ΠΎΡΡ‚Π°ΡŽΡ‡ΠΎΡ— Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ&r (Π½Π°ΠΊΠΎΠΏΠΈΡ‡Π΅Π½Ρ– &6EU&r).\n\nΠ”Π°Π»Ρ– Ρ†Π΅ Ρ‚Π΅ΠΏΠ»ΠΎ ΠΌΠΎΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‚ΠΈ Ρƒ &9ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½Ρ– Ρ€Ρ–Π΄ΠΈΠ½ΠΈ&r для Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Ρ‚ΡƒΡ€Π±Ρ–Π½ Π°Π±ΠΎ виконання Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π² Ρƒ стилі Π•Π”ΠŸ. Π†Π½ΠΎΠ΄Ρ– ΠΉΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Π½Π°Π²Ρ–Ρ‚ΡŒ &cΠ·Π°Π½Π°Π΄Ρ‚ΠΎ Π±Π°Π³Π°Ρ‚ΠΎ&r. А Ρ‰Π΅ Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ”Ρ‚Π΅ Π½ΠΎΠ²Ρ– Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚ΠΈ для створСння ΠΏΠ°Π»ΠΈΠ²Π°, схСм Ρ‚Π° Ρ–Π½ΡˆΠΎΠ³ΠΎ. МоТливо, Π²Π°Ρ€Ρ‚ΠΎ Ρ‚Ρ€ΠΎΡ…ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅ дослідити Бонячну систСму? Нуднувато, Π°Π»Π΅ корисно.", "quests.gregtech_energy.fission_reactor.desc.2": "Для ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ Π΄Ρ–ΡΡ‚Π°Π½ΡŒΡ‚Π΅ Ρ‚Ρ€ΠΎΡ…ΠΈ &dΡ‚ΠΎΡ€Ρ–ΡŽ&r. НС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΠΏΡ€ΠΎ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Ρ– засоби Ρ–Π½Π΄ΠΈΠ²Ρ–Π΄ΡƒΠ°Π»ΡŒΠ½ΠΎΠ³ΠΎ захисту β€” &eDeatek Intergalactic&r Π½Π΅ нСсС Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Π»ΡŒΠ½ΠΎΡΡ‚Ρ– Π·Π° ΡˆΠΊΠΎΠ΄Ρƒ Π·Π΄ΠΎΡ€ΠΎΠ²β€™ΡŽ внаслідок Π½Π΅Π½Π°Π»Π΅ΠΆΠ½ΠΎΠ³ΠΎ поводТСння Π· ΠΏΠΎΠ΄Ρ–Π»ΡŒΠ½ΠΈΠΌΠΈ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Π°ΠΌΠΈ. На Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– ΠΌΠΈ Π²ΠΆΠ΅ Π½Π΅ ΠΏΠΎΠ²ΠΈΠ½Π½Ρ– Π½Π°Π³Π°Π΄ΡƒΠ²Π°Ρ‚ΠΈ ΠΏΡ€ΠΎ Ρ†Π΅. Π—Π° ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈ ΠΏΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒΡ‚Π΅ завдання Π· Π½Π΅Π±Π΅Π·ΠΏΠ΅ΠΊ.\n\nΠ”Π°Π»Ρ– ΡΡ‚Π²ΠΎΡ€Ρ–Ρ‚ΡŒ ΠΏΠΎΡ€ΠΎΠΆΠ½Ρ– &dΠΏΠ°Π»ΠΈΠ²Π½Ρ– стриТні&r Ρ‚Π° Π·Π°ΠΏΠΎΠ²Π½Ρ–Ρ‚ΡŒ Ρ—Ρ… Ρƒ &dΠ·Π°Π²ΠΎΠ΄Ρ– Π· ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΊΠΈ ядСрного ΠΏΠ°Π»ΠΈΠ²Π°&r. Π‘Ρ‚Ρ€ΠΈΠΆΠ½Ρ– Π±Π°Π³Π°Ρ‚ΠΎΡ€Π°Π·ΠΎΠ²Ρ–, Ρ‚ΠΎΠΆ виготовляти Ρ—Ρ… Π·Π°Π±Π°Π³Π°Ρ‚ΠΎ Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ. ВласнС, Π½Π°Ρ€Π°Π·Ρ– Π²Π°ΠΌ ΠΌΠΎΠΆΠ΅ вистачити ΠΎΠ΄Π½ΠΎΠ³ΠΎ.\n\nЗвісно, Π²Π°ΠΌ Ρ‚Π°ΠΊΠΎΠΆ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π·Ρ–Π±Ρ€Π°Π½ΠΈΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€. ΠŸΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒΡ‚Π΅ ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½Ρ–ΠΉ пСрСгляд Ρƒ EMI. Π—Π²Π΅Ρ€Π½Ρ–Ρ‚ΡŒ ΡƒΠ²Π°Π³Ρƒ Π½Π° Ρ†Π΅Π½Ρ‚Ρ€Π°Π»ΡŒΠ½Ρƒ ΠΊΠΎΠ»ΠΎΠ½ΠΊΡƒ Ρ‚Ρ€ΠΈΠΌΠ°Ρ‡Ρ–Π² ΠΏΠ°Π»ΠΈΠ²Π°, Π° Ρ‚Π°ΠΊΠΎΠΆ Π½Π° Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Ρ– ΠΊΠΎΠ»ΠΎΠ½ΠΊΠΈ для ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² Ρ– Ρ‚Ρ€ΠΈΠΌΠ°Ρ‡Ρ–Π² ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π² β€” ΠΏΡ€ΠΎ Π½ΠΈΡ… ΠΏΠΎΠ³ΠΎΠ²ΠΎΡ€ΠΈΠΌΠΎ Π΄Π°Π»Ρ–.\n\nΠ—Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅. Π§ΠΎΠΌΡƒ лишС &oΠΎΠ΄ΠΈΠ½&r ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ? О, як ΠΌΠΈ &eΡ€Π°Π΄Ρ–&r, Ρ‰ΠΎ Π²ΠΈ Π·Π°ΠΏΠΈΡ‚Π°Π»ΠΈ. На наступній сторінці заглибимося Π² ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΡƒ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°.", "quests.gregtech_energy.fission_reactor.desc.3": "Π§ΠΈΠΌ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΡ… стриТнів Π²ΠΈ встановитС Π² Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€, Ρ‚ΠΈΠΌ &cΠ³Π°Ρ€ΡΡ‡Ρ–ΡˆΠΈΠΌ&r Π²Ρ–Π½ стає. А Ρ‰ΠΎ Π³Π°Ρ€ΡΡ‡Ρ–ΡˆΠΈΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€, Ρ‚ΠΎ Π±Ρ–Π»ΡŒΡˆΠ΅ Ρ‚Π΅ΠΏΠ»Π° Π²Ρ–Π½ ΠΌΠΎΠΆΠ΅ ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‚ΠΈ Π² ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½Ρƒ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ Ρ‚Π° ΠΎΠ±Ρ€ΠΎΠ±Π»ΡŽΠ²Π°Π½Ρ– ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ. АлС Ρ„Ρ–Π·ΠΈΠΊΠ° ΠΌΠ°Ρ” свої ΠΌΠ΅ΠΆΡ–: Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΌΠΎΠΆΠ΅ нагрітися лишС &cΠ΄ΠΎ ΠΏΠ΅Π²Π½ΠΎΡ— ΠΌΠ΅ΠΆΡ–&r, Ρ‚ΠΎΠΆ Π½Π΅ Π²ΡΡ‚Π°Π½ΠΎΠ²Π»ΡŽΠΉΡ‚Π΅ Π·Π°Π½Π°Π΄Ρ‚ΠΎ Π±Π°Π³Π°Ρ‚ΠΎ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΡ… Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚Ρ–Π².\n\nАлС Π½Π΅ Ρ…Π²ΠΈΠ»ΡŽΠΉΡ‚Π΅ΡΡ! На Π²Ρ–Π΄ΠΌΡ–Π½Ρƒ Π²Ρ–Π΄ Ρ‚ΠΎΠ³ΠΎ, Ρ‰ΠΎ Ρ‚Π²Π΅Ρ€Π΄ΠΈΡ‚ΡŒ &0ΠΏΡ€ΠΎΠΏΠ°Π³Π°Π½Π΄ΠΈΡΡ‚ΡΡŒΠΊΠ° машина Π½Π°Ρ„Ρ‚ΠΎΠ²ΠΈΡ… ΠΊΠΎΡ€ΠΏΠΎΡ€Π°Ρ†Ρ–ΠΉ&r, ядСрна СнСргія Ρ” &aΡ†Ρ–Π»ΠΊΠΎΠΌ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎΡŽ&r. Π―ΠΊΡ‰ΠΎ Ρ€Ρ–Π²Π΅Π½ΡŒ Ρ‚Π΅ΠΏΠ»Π° Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° Π½Π°Π±Π»ΠΈΠΆΠ°Ρ”Ρ‚ΡŒΡΡ Π΄ΠΎ Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎΡ— ΠΌΠ΅ΠΆΡ–, Π²Ρ–Π½ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ Ρƒ Ρ€Π΅ΠΆΠΈΠΌ &9Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ охолодТСння&r Ρ– Π½Π΅ Π·Π°ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒΡΡ Π·Π½ΠΎΠ²Ρƒ, Π΄ΠΎΠΊΠΈ всС Ρ‚Π΅ΠΏΠ»ΠΎ Π½Π΅ Π±ΡƒΠ΄Π΅ &aΠ±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΈΠΌ Ρ‡ΠΈΠ½ΠΎΠΌ розсіянС&r. Π¦Π΅ Π΄ΠΎΠ²ΠΎΠ»Ρ– ΠΏΠΎΠ²Ρ–Π»ΡŒΠ½ΠΈΠΉ процСс.\n\nΠ§ΠΈ Ρ” спосіб Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π³Π°Ρ€ΡΡ‡Ρ–ΡˆΠΈΠΌ Ρ– швидшим? Π† Π·Π½ΠΎΠ²Ρƒ ΠΆ Ρ‚Π°ΠΊΠΈ, Π΄ΠΎΠ±Ρ€Π΅, Ρ‰ΠΎ Π²ΠΈ Π·Π°ΠΏΠΈΡ‚Π°Π»ΠΈ! &eΠΠ°ΡˆΡ– блискучі Ρ–Π½ΠΆΠ΅Π½Π΅Ρ€ΠΈ&r ΠΌΠ°ΡŽΡ‚ΡŒ для вас Ρ€Ρ–ΡˆΠ΅Π½Π½Ρ!", - "quests.gregtech_energy.fission_reactor.desc.4": "ΠžΠΊΡ€Ρ–ΠΌ 5 &dΡ‚Ρ€ΠΈΠΌΠ°Ρ‡Ρ–Π² ΠΏΠ°Π»ΠΈΠ²Π°&r, Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ встановити &oΠ΄ΠΎ&r 20 &dΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π²&r. Π Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΈ дСяких Ρ–Π½ΡˆΠΈΡ… Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΠΊΡ–Π² Π²ΠΈΠΌΠ°Π³Π°ΡŽΡ‚ΡŒ Π΄ΡƒΠΆΠ΅ Ρ‚ΠΎΡ‡Π½ΠΎΠ³ΠΎ Ρ€ΠΎΠ·Ρ‚Π°ΡˆΡƒΠ²Π°Π½Π½Ρ, Π°Π»Π΅ наш Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Ρ€ΠΎΠ·ΡƒΠΌΠ½Ρ–ΡˆΠΈΠΉ. &6Π₯арактСристики&r усіх встановлСних ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² просто &6ΠΏΡ–Π΄ΡΡƒΠΌΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ&r β€” Ρ– всС!\n\nНаразі Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΌΠΎΠΆΠ΅ використовувати Ρ—Ρ… Ρ‚Ρ€ΡŒΠΎΠΌΠ°&8*&r Ρ€Ρ–Π·Π½ΠΈΠΌΠΈ способами: \n&e1)&r Максимальна Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° &7(ізолятор)&r \n&e2)&r Π•Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ &7(ΠΏΠ°Π»ΠΈΠ²ΠΎ ΡΠ»ΡƒΠΆΠΈΡ‚ΡŒ довшС)&r \n&e3)&r Π Π΅Π³ΡƒΠ»ΡŽΠ²Π°Π½Π½Ρ &7(ΡƒΠΏΠΎΠ²Ρ–Π»ΡŒΠ½ΡŽΡ” Ρ€Π΅Π°ΠΊΡ†Ρ–Ρ—)&r \n\n&8*)&r МоТливо, Ρƒ Π²Π°ΡˆΡ–ΠΉ Π»ΠΎΠΊΠ°Π»ΡŒΠ½Ρ–ΠΉ Π³Π°Π»Π°ΠΊΡ‚ΠΈΡ†Ρ– Π½Π΅ΠΌΠ°Ρ” Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΡ… ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π² для всіх ΠΊΠ°Ρ‚Π΅Π³ΠΎΡ€Ρ–ΠΉ. Ми ΠΎΡ†Ρ–Π½ΡŽΡ”ΠΌΠΎ, Ρ‰ΠΎ Π·Π½Π°ΠΉΡ‚ΠΈ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ Π²Π΄Π°ΡΡ‚ΡŒΡΡ лишС для ΠΏΠ΅Ρ€ΡˆΠΎΡ—.\n\nАлС Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½Ρ–. ΠŸΡ–Π΄Π²ΠΈΡ‰Π΅Π½Π½Ρ &cΡ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ&r ΠΌΠ°Ρ” Ρ– &cΠ½Π΅Π΄ΠΎΠ»Ρ–ΠΊ&r.", + "quests.gregtech_energy.fission_reactor.desc.4": "ΠžΠΊΡ€Ρ–ΠΌ 5 &dΡ‚Ρ€ΠΈΠΌΠ°Ρ‡Ρ–Π² ΠΏΠ°Π»ΠΈΠ²Π°&r, Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ встановити &oΠ΄ΠΎ&r 20 &dΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π²&r. Π Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΈ дСяких Ρ–Π½ΡˆΠΈΡ… Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΠΊΡ–Π² Π²ΠΈΠΌΠ°Π³Π°ΡŽΡ‚ΡŒ Π΄ΡƒΠΆΠ΅ Ρ‚ΠΎΡ‡Π½ΠΎΠ³ΠΎ Ρ€ΠΎΠ·Ρ‚Π°ΡˆΡƒΠ²Π°Π½Π½Ρ, Π°Π»Π΅ наш Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Ρ€ΠΎΠ·ΡƒΠΌΠ½Ρ–ΡˆΠΈΠΉ. &6Π₯арактСристики&r усіх встановлСних ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² просто &6ΠΏΡ–Π΄ΡΡƒΠΌΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ&r β€” Ρ– всС!\n\nНаразі Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΌΠΎΠΆΠ΅ використовувати Ρ—Ρ… Ρ‚Ρ€ΡŒΠΎΠΌΠ°&7*&r Ρ€Ρ–Π·Π½ΠΈΠΌΠΈ способами: \n&e1)&r Максимальна Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° &7(ізолятор)&r \n&e2)&r Π•Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ &7(ΠΏΠ°Π»ΠΈΠ²ΠΎ ΡΠ»ΡƒΠΆΠΈΡ‚ΡŒ довшС)&r \n&e3)&r Π Π΅Π³ΡƒΠ»ΡŽΠ²Π°Π½Π½Ρ &7(ΡƒΠΏΠΎΠ²Ρ–Π»ΡŒΠ½ΡŽΡ” Ρ€Π΅Π°ΠΊΡ†Ρ–Ρ—)&r \n\n&7*)&r МоТливо, Ρƒ Π²Π°ΡˆΡ–ΠΉ Π»ΠΎΠΊΠ°Π»ΡŒΠ½Ρ–ΠΉ Π³Π°Π»Π°ΠΊΡ‚ΠΈΡ†Ρ– Π½Π΅ΠΌΠ°Ρ” Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΡ… ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π² для всіх ΠΊΠ°Ρ‚Π΅Π³ΠΎΡ€Ρ–ΠΉ. Ми ΠΎΡ†Ρ–Π½ΡŽΡ”ΠΌΠΎ, Ρ‰ΠΎ Π·Π½Π°ΠΉΡ‚ΠΈ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ Π²Π΄Π°ΡΡ‚ΡŒΡΡ лишС для ΠΏΠ΅Ρ€ΡˆΠΎΡ—.\n\nАлС Π±ΡƒΠ΄ΡŒΡ‚Π΅ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½Ρ–. ΠŸΡ–Π΄Π²ΠΈΡ‰Π΅Π½Π½Ρ &cΡ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ&r ΠΌΠ°Ρ” Ρ– &cΠ½Π΅Π΄ΠΎΠ»Ρ–ΠΊ&r.", "quests.gregtech_energy.fission_reactor.desc.5": "Π₯ΠΎΡ‡Π° &cΠ³Π°Ρ€ΡΡ‡Ρ–ΡˆΠΈΠΉ&r Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‡Ρ– Ρ‚Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ &cшвидшими&r, Π²Ρ–Π½ Ρ‚Π°ΠΊΠΎΠΆ Π±Ρ–Π»ΡŒΡˆΠ΅ Π½Π°Π²Π°Π½Ρ‚Π°ΠΆΡƒΡ” ΠΏΠ°Π»ΠΈΠ²Π½Ρ– стриТні. КоТСн ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ ΠΌΠ°Ρ” ΠΎΠ±ΠΌΠ΅ΠΆΠ΅Π½Ρƒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ, Ρ– Π²ΠΎΠ½Π° Π·ΠΌΠ΅Π½ΡˆΡƒΡ”Ρ‚ΡŒΡΡ Π»Ρ–Π½Ρ–ΠΉΠ½ΠΎ Π·Ρ– зростанням Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ.\n\nΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ для Π²ΠΈΡ‰ΠΈΡ… Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΡ… стриТнів, Ρ„Π°ΠΊΡ‚ΠΈΡ‡Π½ΠΎ пошкодТСння ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΡ”Ρ‚ΡŒΡΡ &nΠΊΠ²Π°Π΄Ρ€Π°Ρ‚ΠΈΡ‡Π½ΠΎ&r. Π―ΠΊΡ‰ΠΎ Π²ΠΈ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π½Π°ΠΉΠ΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡˆΠ΅ Π½Π°Π³Ρ€Ρ–Π²Π°Ρ‚ΠΈ ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‡Ρ–, використовуйтС Π½ΠΈΠ·ΡŒΠΊΡƒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ. АлС якщо Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Π΅ швидшС пСрСтворСння ΠΏΠΎΠ΄Ρ–Π»ΡŒΠ½ΠΈΡ… ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π², застосовуйтС Π½Π°ΡΡ‚Ρ–Π»ΡŒΠΊΠΈ високу Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Ρƒ, Π½Π°ΡΠΊΡ–Π»ΡŒΠΊΠΈ дозволяє ізоляція.", - "quests.gregtech_energy.fission_reactor.desc.6": "Π’Π΅ΠΏΠ΅Ρ€ Π²ΠΈ Π½Π°Ρ€Π΅ΡˆΡ‚Ρ– Π³ΠΎΡ‚ΠΎΠ²Ρ– ознайомитися Π· Ρ€Ρ–Π·Π½ΠΈΠΌΠΈ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°ΠΌΠΈ, пов’язаними Π· Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΎΠΌ; ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€Ρ‚Π΅, Π΄Π΅ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ &dΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π΅Ρ€&r, Ρ– Π²ΠΈ Π·Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ Ρ‡ΠΎΡ‚ΠΈΡ€ΠΈ Π²ΠΊΠ»Π°Π΄ΠΊΠΈ &eEMI&r:\n\n&e1)&r Π Π΅Π°ΠΊΡ‚ΠΎΡ€ ΠΏΠΎΠ΄Ρ–Π»Ρƒ &7(ΠΏΠ°Π»ΠΈΠ²Π° Ρ‚Π° сумісні ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‡Ρ–)&r \n&e2)&r Π’Π΅ΠΏΠ»ΠΎΠ²Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠ° Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° ΠΏΠΎΠ΄Ρ–Π»Ρƒ &7(Π°Π½Π°Π»ΠΎΠ³ Π•Π”ΠŸ)&r \n&e3)&r ΠŸΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ ΠΏΠΎΠ΄Ρ–Π»Ρƒ &7(ΠΊΠΎΠ»ΠΈ ΠΏΠ°Π»ΠΈΠ²ΠΎ Π²ΠΈΡ‡Π΅Ρ€ΠΏΡƒΡ”Ρ‚ΡŒΡΡ)&r \n&e4)&r ΠŸΠΎΠΏΠ΅Ρ€Π΅Π΄Π½Ρ–ΠΉ пСрСгляд ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΡƒ \n\nΠ Ρ–Π·Π½Ρ– &aΠΏΠ°Π»ΠΈΠ²Π°&r сумісні лишС Π· ΠΏΠ΅Π²Π½ΠΈΠΌΠΈ &9ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½ΠΈΠΌΠΈ Ρ€Ρ–Π΄ΠΈΠ½Π°ΠΌΠΈ&r, Ρ‚ΠΎΠΆ Π·Π²Π΅Ρ€Ρ‚Π°ΠΉΡ‚Π΅ Π½Π° Ρ†Π΅ ΡƒΠ²Π°Π³Ρƒ. А ΠΊΠΎΠ»ΠΈ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ використано, ΠΌΠΎΠΆΠ½Π° Π· ΡƒΠΏΠ΅Π²Π½Π΅Π½Ρ–ΡΡ‚ΡŽ сказати, Ρ‰ΠΎ Π²Ρ–Π½ &bпСрСтворився&r Π½Π° Π½ΠΎΠ²Ρ– Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚ΠΈ.\n\nΠΠ°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ виконуватися Π½Π΅Π·Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ Ρ‚ΠΈΠΏΡƒ ΠΏΠ°Π»ΠΈΠ²Π° β€” Π³ΠΎΠ»ΠΎΠ²Π½Π΅, Ρ‰ΠΎΠ± Ρ€Ρ–Π²Π΅Π½ΡŒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ Π±ΡƒΠ² Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ високим.", + "quests.gregtech_energy.fission_reactor.desc.6": "Π’ΠΈ Π½Π°Ρ€Π΅ΡˆΡ‚Ρ– Π³ΠΎΡ‚ΠΎΠ²Ρ– ознайомитися Π· Ρ€Ρ–Π·Π½ΠΈΠΌΠΈ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°ΠΌΠΈ, пов’язаними Π· Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ΠΎΠΌ; ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€Ρ‚Π΅, Π΄Π΅ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ &dΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π΅Ρ€&r, Ρ– Π²ΠΈ Π·Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ Ρ‚Ρ€ΠΈ Π²ΠΊΠ»Π°Π΄ΠΊΠΈ &eEMI&r:\n\n&e1)&r Π―Π΄Π΅Ρ€Π½ΠΈΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ &7(ΠΏΠ°Π»ΠΈΠ²Π° Ρ‚Π° сумісні ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‡Ρ–)&r \n&e2)&r ΠžΠ±Ρ€ΠΎΠ±ΠΊΠ° Ρ‚Π΅ΠΏΠ»Π° Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° &7(Π°Π½Π°Π»ΠΎΠ³ Π•ΠŸΠŸ β€” Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠΏΠ΅Ρ‡Ρ– високої Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ)&r \n&e3)&r ΠŸΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ ΠΏΠΎΠ΄Ρ–Π»Ρƒ &7(ΠΊΠΎΠ»ΠΈ ΠΏΠ°Π»ΠΈΠ²ΠΎ Π²ΠΈΡ‡Π΅Ρ€ΠΏΡƒΡ”Ρ‚ΡŒΡΡ)&r \n&e4)&r ΠŸΠΎΠΏΠ΅Ρ€Π΅Π΄Π½Ρ–ΠΉ пСрСгляд ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΡƒ \n\nΠ Ρ–Π·Π½Ρ– &aΠΏΠ°Π»ΠΈΠ²Π°&r сумісні лишС Π· ΠΏΠ΅Π²Π½ΠΈΠΌΠΈ &9ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½ΠΈΠΌΠΈ Ρ€Ρ–Π΄ΠΈΠ½Π°ΠΌΠΈ&r, Ρ‚ΠΎΠΆ Π·Π²Π΅Ρ€Ρ‚Π°ΠΉΡ‚Π΅ Π½Π° Ρ†Π΅ ΡƒΠ²Π°Π³Ρƒ. \nА ΠΊΠΎΠ»ΠΈ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π²ΠΈΡ‡Π΅Ρ€ΠΏΡƒΡ”Ρ‚ΡŒΡΡ, ΠΌΠΎΠΆΠ½Π° Π· ΡƒΠΏΠ΅Π²Π½Π΅Π½Ρ–ΡΡ‚ΡŽ сказати, Ρ‰ΠΎ Π²Ρ–Π½ &bΠΏΠ΅Ρ€Π΅Ρ‚&dΠ²ΠΎΡ€&bився&r Π½Π° Π½ΠΎΠ²Ρ– Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚ΠΈ. \n\nΠΠ°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ виконуватися Π½Π΅Π·Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ ΠΏΠ°Π»ΠΈΠ²Π°, якщо Ρ€Ρ–Π²Π΅Π½ΡŒ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ високий.", "quests.gregtech_energy.fission_reactor.desc.7": "Π‘ΠΏΡ€ΠΎΡ‰Π΅Π½Π° ΠΌΠ°Ρ‚Π΅ΠΌΠ°Ρ‚ΠΈΠΊΠ° Ρ‚Π°ΠΊΠ°: Π·Π° наявності Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½ΠΎΡ— Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Ρ‚Π° &c100%%&r ΠΏΠ°Π»ΠΈΠ²Π½ΠΎΠ³ΠΎ стриТня Ρ‚Π΅ΠΏΠ»Π° Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ досягнС Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ &c200&r. Π¦Π΅ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ½Π° Π½Π°Π·ΠΈΠ²Π°Ρ‚ΠΈ Ρ€Ρ–Π²Π½Π΅ΠΌ Ρ‚Π΅ΠΏΠ»Π° Π°Π±ΠΎ просто Ρ‚Π΅ΠΏΠ»ΠΎΠΌ. Використання &dΠ΄Π²ΠΎΡ…&r &c100%%&r ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΡ… Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚Ρ–Π² Π΅ΠΊΠ²Ρ–Π²Π°Π»Π΅Π½Ρ‚Π½Π΅ &dΠΎΠ΄Π½ΠΎΠΌΡƒ&r &c200%%&r Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚Ρƒ, Ρ– ΠΎΠ±ΠΈΠ΄Π²Π° Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ Π΄Π°ΡŽΡ‚ΡŒ близько &c400&r Ρ‚Π΅ΠΏΠ»Π°.\n\nΠ¦Π΅ Π²Ρ–Π΄Π±ΡƒΠ²Π°Ρ”Ρ‚ΡŒΡΡ Ρ‚ΠΎΠΌΡƒ, Ρ‰ΠΎ ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ ΡΡ‚Ρ€ΠΈΠΆΠ΅Π½ΡŒ Π³Π΅Π½Π΅Ρ€ΡƒΡ” &6200 HU/t&r (ΠΎΠ΄ΠΈΠ½ΠΈΡ†ΡŒ Ρ‚Π΅ΠΏΠ»Π°). ΠžΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Π»ΡŒΠ½Ρ– Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Π·Π΄Π°Ρ‚Π½Ρ– Π²Ρ–Π΄Π²ΠΎΠ΄ΠΈΡ‚ΠΈ &61 HU/t&r Π½Π° ΠΊΠΎΠΆΠ΅Π½ &c1&r градус Ρ‚Π΅ΠΏΠ»Π°.\n\nΠ―ΠΊΡ‰ΠΎ максимальна Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ &c190&r, Ρ‚ΠΎ &c100%%&r ΠΏΠ°Π»ΠΈΠ²Π½ΠΈΠΉ Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚ ΠΉΠΎΠ³ΠΎ ΠΏΠ΅Ρ€Π΅Π³Ρ€Ρ–Ρ”. Π¦Π΅ ΠΌΠΎΠΆΠ½Π° компСнсувати Π·Π° допомогою ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² Π°Π±ΠΎ ΠΆ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ &dΠ°ΠΊΡ‚ΠΈΠ²Π½Ρ– ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‡Ρ–&r Ρ‡Π΅Ρ€Π΅Π· систСму ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ. КоТСн Ρ€Π΅Ρ†Π΅ΠΏΡ‚ ΠΌΠ°Ρ” свій Ρ‚Π΅ΠΏΠ»ΠΎΠ²ΠΈΠΉ Π²ΠΏΠ»ΠΈΠ².", "quests.gregtech_energy.fission_reactor.desc.8": "Наприклад, якщо Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ &c100&r, Π° Π²ΠΏΠ»ΠΈΠ² &6-10 HU/t&r, Π²Ρ–Π½ Π·Π΄Π°Ρ‚Π΅Π½ ΠΎΡ…ΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‚ΠΈ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Π½Π° &619 HU/t &rΠΏΡ€ΠΈ &c190&r градусах.\n\nΠ¦Π΅ дозволяє запускати Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€ Ρ–Π· Π½ΠΈΠΆΡ‡ΠΎΡŽ максимальною Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΎΡŽ ΠΉ ΡƒΠ½ΠΈΠΊΠ°Ρ‚ΠΈ ΠΏΠ΅Ρ€Π΅Π³Ρ€Ρ–Π²Ρƒ! Π―ΠΊΡ‰ΠΎ ΠΆ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π° Π½ΠΈΠΆΡ‡Π° Π·Π° &c100&r, Π²Ρ–Π½ Π²Π·Π°Π³Π°Π»Ρ– Π½Π΅ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈΠΌΠ΅ β€” Ρ‚Π°ΠΊ само, як Ρ– Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ Π•Π”ΠŸ ΠΌΠ°ΡŽΡ‚ΡŒ свої обмСТСння.\n\nНа Ρ†ΡŒΠΎΠΌΡƒ всС, Ρ‰ΠΎ &eΠΌΠΈ&r ΠΌΠΎΠΆΠ΅ΠΌΠΎ Π½Π°Π²Ρ‡ΠΈΡ‚ΠΈ вас Π·Π°Ρ€Π°Π·. ΠŸΠΎΠ²Π΅Ρ€Ρ‚Π°ΠΉΡ‚Π΅ΡΡ ΠΏΡ–Π·Π½Ρ–ΡˆΠ΅, Ρ‰ΠΎΠ± дізнатися ΠΏΡ€ΠΎ Π½ΠΎΠ²Ρ– досягнСння, &eядСрний Ρ–Π½ΠΆΠ΅Π½Π΅Ρ€Π΅&r!", "quests.high_voltage": "&6HV&r - Висока Напруга", @@ -1930,7 +2563,7 @@ "quests.high_voltage.vacuum_freezer.desc": "&3Π’Π°ΠΊΡƒΡƒΠΌΠ½Π° ΠœΠΎΡ€ΠΎΠ·ΠΈΠ»ΡŒΠ½Π° ΠšΠ°ΠΌΠ΅Ρ€Π°&r β€” Ρ†Π΅ ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊ, який Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для охолодТСння &eГарячих Π—Π»ΠΈΠ²ΠΊΡ–Π²&r. Усі Π·Π»ΠΈΠ²ΠΊΠΈ, створСні Π² Π•Π”ΠŸ Π· Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΎΡŽ ΠΏΠΎΠ½Π°Π΄ &d1750K&r, ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ охолодТСння.\n\nΠ£ Π±Ρ–Π»ΡŒΡˆΠΎΡΡ‚Ρ– Π²ΠΈΠΏΠ°Π΄ΠΊΡ–Π² &3Π•Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Π° Π”ΠΎΠΌΠ΅Π½Π½Π° ΠŸΡ–Ρ‡&r Π±ΡƒΠ΄Π΅ Π²ΡƒΠ·ΡŒΠΊΠΈΠΌ місцСм, Ρ‚ΠΎΠΌΡƒ Π²Π°ΠΌ Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Ρ‚ΡƒΡ€Π±ΡƒΠ²Π°Ρ‚ΠΈΡΡŒ ΠΏΡ€ΠΎ Ρ€ΠΎΠ·Π³Ρ–Π½ ΠΌΠΎΡ€ΠΎΠ·ΠΈΠ»ΡŒΠ½ΠΎΡ— ΠΊΠ°ΠΌΠ΅Ρ€ΠΈ.\n\nΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ &eГарячі Π—Π»ΠΈΠ²ΠΊΠΈ&r &cΠ·Π°Π²Π΄Π°ΡŽΡ‚ΡŒ шкоди&r ΠΏΡ€ΠΈ ΡƒΡ‚Ρ€ΠΈΠΌΠ°Π½Π½Ρ–, ΠΌΠ°Ρ€ΡˆΡ€ΡƒΡ‚ΠΈΠ·Π°Ρ†Ρ–Ρ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π±ΡƒΠ΄Π΅ Π΄ΡƒΠΆΠ΅ ΠΊΠΎΡ€ΠΈΡΠ½ΠΎΡŽ.", "quests.high_voltage.mv_superconductors.title": "MV Надпровідники", "quests.high_voltage.mv_superconductors.desc": "&a4A&r ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Π° &bMV&r Π΅Π½Π΅Ρ€Π³Ρ–Ρ— ΠΌΠΎΠΆΠ΅ виглядати ΠΏΡ€ΠΈΠ²Π°Π±Π»ΠΈΠ²ΠΎ, Π°Π»Π΅ Π½Π°Ρ€Π°Π·Ρ– Ρ‚ΠΎΠ±Ρ–, ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½ΠΎ, Ρ†Π΅ Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ. Π’Ρ‚Ρ–ΠΌ, Ρ‚Π°ΠΊΠ° опція Π·Π°Π²ΠΆΠ΄ΠΈ доступна, якщо Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ.", - "quests.high_voltage.circuit_assembler.title": "HV Π—Π±ΠΈΡ€Π°Ρ‡ схСм", + "quests.high_voltage.circuit_assembler.title": "HV схСматологічний Π·Π±ΠΈΡ€Π°Ρ‡", "quests.high_voltage.circuit_assembler.subtitle": "Π’Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Чиста ΠΊΡ–ΠΌΠ½Π°Ρ‚Π°, ΠΏΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ створити Ρ†Π΅ΠΉ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚", "quests.high_voltage.circuit_assembler.desc": "Наступний &3Π—Π±ΠΈΡ€Π°Ρ‡ схСм&r. Π¦Π΅ΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ Π—Π±ΠΈΡ€Π°Ρ‡Π° схСм ΠΏΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ лишС для ΠΎΠ΄Π½ΠΎΠ³ΠΎ Ρ‚ΠΈΠΏΡƒ схСм β€” Ρ‚Π²ΠΎΠ³ΠΎ ΠΏΠ΅Ρ€ΡˆΠΎΠ³ΠΎ &aΠœΠ΅ΠΉΠ½Ρ„Ρ€Π΅ΠΉΠΌΡƒ&r. МоТливо, Ρ‚ΠΈ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚Π°Ρ”Ρˆ ΠΉΠΎΠ³ΠΎ лишС ΠΎΠ΄ΠΈΠ½ Ρ€Π°Π·, ΠΏΠ΅Ρ€Π΅Π΄ ΠΏΠ΅Ρ€Π΅Ρ…ΠΎΠ΄ΠΎΠΌ Π΄ΠΎ &5EV Π—Π±ΠΈΡ€Π°Ρ‡Π° схСм&r.\n\nМоТСш відкласти ΠΉΠΎΠ³ΠΎ Π΄ΠΎ &5EV&r Π°Π±ΠΎ просто використати для ΠΏΡ€ΠΈΡˆΠ²ΠΈΠ΄ΡˆΠ΅Π½ΠΎΠ³ΠΎ складання схСм.", "quests.high_voltage.microprocessor_mainframe.title": "ΠœΠ΅ΠΉΠ½Ρ„Ρ€Π΅ΠΉΠΌΠΈ β€” Ρ†Π΅ ΠΏΠ΅Ρ€ΡˆΡ– IV схСми!", @@ -1939,6 +2572,7 @@ "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.cleanroom.task": "Π›ΡŽΠΊ Ρ‚Π΅Ρ…Π½Ρ–Ρ‡Π½ΠΎΠ³ΠΎ обслуговування Π°Π±ΠΎ Автоматичний люк Ρ‚Π΅Ρ…Π½Ρ–Ρ‡Π½ΠΎΠ³ΠΎ обслуговування", "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 Π§Π΅Ρ€Π΅Π· Π±Π°Π³ відобраТСння Π² Π ΠΎΠ·Π²Ρ–Π΄Π½ΠΈΠΊΡƒ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Π·ΠΌΡ–Ρ‰Π΅Π½Π΅ Π½Π° ΠΎΠ΄ΠΈΠ½ Ρ‡Π°Π½ΠΊ, Ρ‚ΠΎΠΌΡƒ ΡƒΠ½ΠΈΠΊΠ°ΠΉ розміщСння установки Π² ΠΊΡƒΡ‚Π°Ρ… Ρ€Ρ–Π΄ΠΈΠ½Π½ΠΎΡ— ΠΆΠΈΠ»ΠΈ β€” Ρ–Π½Π°ΠΊΡˆΠ΅ моТСш ΠΏΠΎΡ‡Π°Ρ‚ΠΈ ΠΊΠ°Ρ‡Π°Ρ‚ΠΈ Π½Π΅ Ρ‚Ρƒ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ!", @@ -1949,7 +2583,8 @@ "quests.high_voltage.ptfe.subtitle": "Π’Ρ–Π΄ΠΎΠΌΠΈΠΉ Ρ‚Π°ΠΊΠΎΠΆ як β€” Π’Π΅Ρ„Π»ΠΎΠ½", "quests.high_voltage.ptfe.desc": "&aΠŸΠΎΠ»Ρ–Ρ‚Π΅Ρ‚Ρ€Π°Ρ„Ρ‚ΠΎΡ€Π΅Ρ‚ΠΈΠ»Π΅Π½ (PTFE)&r β€” Ρ†Π΅ &7Π²ΡƒΠ³Π»Π΅Ρ†Π΅Π²ΠΎ&r-&bΡ„Ρ‚ΠΎΡ€Π½ΠΈΠΉ&r ΠΏΠΎΠ»Ρ–ΠΌΠ΅Ρ€. ΠŸΠΎΠ΄Ρ–Π±Π½ΠΎ Π΄ΠΎ ΠŸΠ’Π₯, PTFE ΠΌΠΎΠΆΠ½Π° використовувати для підвищСння Π²ΠΈΡ…ΠΎΠ΄Ρƒ &aΠŸΠ»Π°ΡΡ‚ΠΈΠΊΠΎΠ²ΠΈΡ… ΠΏΠ»Π°Ρ‚&r Ρ‚Π° Ρ–Π½ΡˆΠΈΡ… Π²ΠΈΡ€ΠΎΠ±Ρ–Π². Наразі Π²Ρ–Π½ Π·Π°ΡΡ‚ΠΎΡΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для створСння стінок &3Π’Π΅Π»ΠΈΠΊΠΎΠ³ΠΎ Ρ…Ρ–ΠΌΡ–Ρ‡Π½ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r.\n\n&3Π₯Π»ΠΎΡ€&r ΠΏΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ Ρƒ Ρ†ΡŒΠΎΠΌΡƒ процСсі, Π°Π»Π΅ ΠΉΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½Π° ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ ΡˆΠ»ΡΡ…ΠΎΠΌ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·Ρƒ &aΠ²Ρ–Π΄Ρ…ΠΎΠ΄Ρ–Π² Ρ…Π»ΠΎΡ€ΠΎΠ²ΠΎΠ΄Π½Π΅Π²ΠΎΡ— кислоти&r.\n\n&bΠ€Ρ‚ΠΎΡ€&r Ρ‚Π°ΠΊΠΎΠΆ Π±ΡƒΠ΄Π΅ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈΡΡŒ Ρƒ процСсах очищСння &aΠ£Ρ€Π°Π½Ρƒ&r Ρ‚Π° &7Наквада&r.\n\n&9ΠŸΠΎΡ€Π°Π΄Π°:&r Π’Ρ–Π΄Ρ‚Π΅ΠΏΠ΅Ρ€ Π²Π°Ρ€Ρ‚ΠΎ Π·Π°Ρ‚Π²Π΅Ρ€Π΄ΠΆΡƒΠ²Π°Ρ‚ΠΈ ΠΏΠΎΠ»Ρ–ΠΌΠ΅Ρ€ΠΈ Ρƒ &dΠ€ΠΎΡ€ΠΌΡ–&r (Π—Π»ΠΈΡ‚ΠΊΡ–Π²), Π°Π΄ΠΆΠ΅ Ρ—Ρ… Π»Π΅Π³ΠΊΠΎ Ρ„ΠΎΡ€ΠΌΡƒΠ²Π°Ρ‚ΠΈ Ρƒ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– Π΄Π΅Ρ‚Π°Π»Ρ– Π·Π° допомогою &3ЕкструдСра&r.", "quests.high_voltage.nitrobenzene.title": "НітробСнзол", - "quests.high_voltage.nitrobenzene.desc": "Π’ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ &aНітробСнзолу&r ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ &6Π²Ρ‡Π΅Ρ‚Π²Π΅Ρ€ΠΎ&r ΠΏΡ–Π΄Π²ΠΈΡ‰ΠΈΡ‚ΡŒ Π΅Π½Π΅Ρ€Π³ΠΎΠ΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ &aΠ‘Π΅Π½Π·ΠΎΠ»Ρƒ&r. Π¦Π΅ Π½Π΅ ΠΌΠΎΠΆΠ΅ Π½Π΅ Ρ‚Ρ–ΡˆΠΈΡ‚ΠΈ.\n\nΠ„ нюанс β€” ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Π° &dΠ”ΠΈΡΡ‚ΠΈΠ»ΡŒΠΎΠ²Π°Π½Π° Π²ΠΎΠ΄Π°&r Ρ– Π½Π° ΠΊΠΎΠΆΠ½ΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– Π²ΠΈΡ‚Ρ€Π°Ρ‡Π°Ρ”Ρ‚ΡŒΡΡ Ρ‚Ρ€ΠΎΡ…ΠΈ &dΠ‘Ρ–Ρ€ΠΊΠΈ&r.", + "quests.high_voltage.nitrobenzene.subtitle": "Π’Ρ–Π½ΡŒ самого сСбС", + "quests.high_voltage.nitrobenzene.desc": "Π£ TerraFirmaGreg &aНітробСнзол&r Ρ– &aΠ‘Π΅Π½Π·ΠΎΠ»&r Π±ΡƒΠ»ΠΈ суттєво ослаблСні. Π’ΠΎΠ½ΠΈ всС Ρ‰Π΅ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈΡΡŒ як ΠΏΠ°Π»ΠΈΠ²ΠΎ, Π°Π»Π΅ Ρ‚Π΅ΠΏΠ΅Ρ€ Ρ—Ρ… основнС призначСння β€” як Ρ–Π½Π³Ρ€Π΅Π΄Ρ–Ρ”Π½Ρ‚ΠΈ Π² Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π°Ρ….\n\nΠ—Π²Π΅Ρ€Π½Ρ–Ρ‚ΡŒ ΡƒΠ²Π°Π³Ρƒ, Ρ‰ΠΎ створСння НітробСнзолу Π½Π° ΠΊΠΎΠΆΠ½ΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– споТиває Ρ‚Ρ€ΠΎΡ…ΠΈ &dΠ‘Ρ–Ρ€ΠΊΠΈ&r.", "quests.high_voltage.lcr.title": "Π’Π΅Π»ΠΈΠΊΠΈΠΉ Ρ…Ρ–ΠΌΡ–Ρ‡Π½ΠΈΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€", "quests.high_voltage.lcr.desc.1": "&3Π’Π΅Π»ΠΈΠΊΠΈΠΉ Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΈΠΉ Π Π΅Π°ΠΊΡ‚ΠΎΡ€ (Π’Π₯Π )&r β€” Ρ†Π΅ Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΎΠ²ΠΈΠΉ &3Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΈΠΉ Π Π΅Π°ΠΊΡ‚ΠΎΡ€&r Π· Π±Ρ–Π»ΡŒΡˆΠΎΡŽ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ слотів ввСдСння/вивСдСння. Π™ΠΎΠ³ΠΎ Ρ‚Π΅Ρ„Π»ΠΎΠ½ΠΎΠ²Ρ– ΠΎΠ±ΠΎΠ»ΠΎΠ½ΠΊΠΈ Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ΡŒ обробляти Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Ρ– Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ.\n\n&3Π’Π₯Π &r Π·Π΄Π°Ρ‚Π΅Π½ Π²ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈ дСякі Π΅ΠΊΡΠΊΠ»ΡŽΠ·ΠΈΠ²Π½Ρ– Ρ€Π΅Π°ΠΊΡ†Ρ–Ρ—, які Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ΡŒ ΠΎΠ±'Ρ”Π΄Π½ΡƒΠ²Π°Ρ‚ΠΈ ΠΊΡ–Π»ΡŒΠΊΠ° стандартних Π΅Ρ‚Π°ΠΏΡ–Π² &3Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΎΠ³ΠΎ Π Π΅Π°ΠΊΡ‚ΠΎΡ€Π°&r Π² &6ΠΎΠ΄ΠΈΠ½ Π΅Ρ‚Π°ΠΏ&r. ΠŸΡ€ΠΈΠΊΠ»Π°Π΄ΠΈ Π½ΠΈΠΆΡ‡Π΅:\n\n&9-&r &aДіоксид НітрогСну&r (для Азотної кислоти Ρ‚Π° ВСтроксиду Π΄ΠΈΠ½Ρ–Ρ‚Ρ€ΠΎΠ³Π΅Π½Ρƒ) \n&9-&r &aΠ‘Ρ–Ρ€Ρ‡Π°Π½Π° кислота&r \n&9-&r &aΠ€Π΅Π½ΠΎΠ»&r \n&9-&r &aΠ•ΠΏΡ–Ρ…Π»ΠΎΡ€Π³Ρ–Π΄Ρ€ΠΈΠ½&r (ΠΏΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ для Епоксиду!) \n&9-&r &aЕпоксид&r", "quests.high_voltage.lcr.desc.2": "Π†ΡΠ½ΡƒΡŽΡ‚ΡŒ Ρ‚Π°ΠΊΠΎΠΆ Π΅ΠΊΡΠΊΠ»ΡŽΠ·ΠΈΠ²Π½Ρ– Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ для &3Π’Π₯Π &r. Наприклад, &dΠ Π°Π΄ΠΎΠ½&r Π½Π°Ρ€Π°Π·Ρ– ΠΌΠΎΠΆΠ½Π° створити лишС Π² Π’Π₯Π .\n\nУсі &dΠ ΠΎΠ·Π³ΠΎΠ½ΠΈ&r Π² &3Π’Π₯Π &r ΠΌΠ°ΡŽΡ‚ΡŒ &6100%% Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ&r (Ρ‚Π°ΠΊ Π·Π²Π°Π½Ρ– \"Π†Π΄Π΅Π°Π»ΡŒΠ½Ρ– Ρ€ΠΎΠ·Π³ΠΎΠ½ΠΈ\"); ΠΊΠΎΠΆΠ΅Π½ Ρ€ΠΎΠ·Π³Ρ–Π½ &5Π²Ρ‡Π΅Ρ‚Π²Π΅Ρ€ΠΎ&r ΠΏΡ€ΠΈΡˆΠ²ΠΈΠ΄ΡˆΡƒΡ” ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ, Π½Π° Π²Ρ–Π΄ΠΌΡ–Π½Ρƒ Π²Ρ–Π΄ Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎΠ³ΠΎ подвоєння.\n\n&3Π’Π₯Π &r ΠΌΠ°Ρ” Ρ‰Π΅ ΠΎΠ΄Π½Ρƒ &6ΠΏΠ΅Ρ€Π΅Π²Π°Π³Ρƒ&r: ΠΌΠΎΠΆΠ½Π° використати &32 Π•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½Ρ– люки&r, Ρ‰ΠΎΠ± запускати Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ &5Π½Π° наступному Ρ€Ρ–Π²Π½Ρ–&r, ΠΏΠΎΠ΄Ρ–Π±Π½ΠΎ Π΄ΠΎ &3Π•Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½ΠΎΡ— Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–&r.", @@ -1961,7 +2596,7 @@ "quests.high_voltage.tnt.desc.3": "Ніяких простих ΠΏΠΎΡ€Π°Π΄ Ρ‰ΠΎΠ΄ΠΎ &aΠ’ΠΎΠ»ΡƒΠΎΠ»Ρƒ&r ΠΌΠΈ Π½Π΅ ΠΌΠ°Ρ”ΠΌΠΎ β€” яким Π±ΠΈ ΡˆΠ»ΡΡ…ΠΎΠΌ Ρ‚ΠΈ Π½Π΅ ΠΏΡ–ΡˆΠΎΠ², Ρ†Π΅ Π±ΡƒΠ΄Π΅ нСпросто.\n\nАлС Π½Π΅ пропусти прямий Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π· &aΠ’Π°ΠΆΠΊΠΎΠ³ΠΎ пального&r Ρƒ &aΠ’ΠΎΠ»ΡƒΠΎΠ»&r Ρƒ ΠΎΠ΄Π½ΠΎΠ±Π»ΠΎΠΊΠΎΠ²Ρ–ΠΉ &3Дистилярні&r.\n\n&aΠ’ΠΎΠ»ΡƒΠΎΠ»&r Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ½Π° ΠΎΠΏΡ†Ρ–ΠΎΠ½Π°Π»ΡŒΠ½ΠΎ використати Π½Π° &5EV&r Ρ€Ρ–Π²Π½Ρ– для створСння &dΠ‘Π΅Π½Π·ΠΈΠ½Ρƒ&r.\n\n&cВНВ&r Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Π² &3Π†ΠΌΠΏΠ»ΠΎΠ·Ρ–ΠΉΠ½ΠΎΠΌΡƒ компрСсорі&r для створСння Π‘Π°ΠΌΠΎΡ†Π²Ρ–Ρ‚Ρ–Π². А Ρ‰Π΅ Π²Ρ–Π½ Π²ΠΈΠ±ΡƒΡ…Π°Ρ”.", "quests.high_voltage.ender_pearls.title": "ΠŸΠ΅Ρ€Π»ΠΈΠ½ΠΈ Π•Π½Π΄Ρƒ", "quests.high_voltage.ender_pearls.subtitle": "Π’Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³Ρ–Ρ‡Π½Ρ– дорогоцінності", - "quests.high_voltage.ender_pearls.desc": "Π–ΠΎΠ΄Π΅Π½ Π•Π½Π΄Π΅Ρ€ΠΌΠ΅Π½ Π½Π΅ Π²ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ ΠŸΠ΅Ρ€Π»ΠΈΠ½Ρƒ ΠšΡ€Π°ΡŽ Ρƒ TFG.\nΠΠ°Π²Ρ–Ρ‚ΡŒ Ρ‚Ρ–, Ρ‰ΠΎ ΠΏΡ€ΠΈΡ‡Π°Ρ—Π»ΠΈΡΡŒ Ρƒ Π‘Π΅Π·ΠΎΠ΄Π½Ρ–, Π½Π΅ Π΄ΠΎΠΏΠΎΠΌΠΎΠΆΡƒΡ‚ΡŒ.\n\nΠΠ°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ Ρ‚Π²Ρ–ΠΉ Ρ”Π΄ΠΈΠ½ΠΈΠΉ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ Π½Π°Ρ€Π°Π·Ρ– β€” створити Ρ—Ρ— власноруч:\n\nΠ—ΠΌΡ–ΡˆΠ°ΠΉ &2Пил Π‘Π΅Ρ€ΠΈΠ»Ρ–ΡŽ&r Ρ‚Π° &2Пил ΠšΠ°Π»Ρ–ΡŽ&r Ρƒ &6HV&r Π—ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‡Ρ–, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ рідкісний &5Пил Π•Π½Π΄Π΅Ρ€&r.\n\nА ΠΏΠΎΡ‚Ρ–ΠΌ закинь ΠΉΠΎΠ³ΠΎ Π² &8Π†ΠΌΠΏΠ»ΠΎΠ·Ρ–ΠΉΠ½ΠΈΠΉ компрСсор&r Ρ– Π²Ρ–Π΄Ρ‚Π²ΠΎΡ€ΠΈ Π·Π½Π°ΠΊΠΎΠ²Ρƒ ΠŸΠ΅Ρ€Π»ΠΈΠ½Ρƒ ΠšΡ€Π°ΡŽ β€” Ρƒ стилі GregTech.", + "quests.high_voltage.ender_pearls.desc": "Π–ΠΎΠ΄Π΅Π½ Π•Π½Π΄Π΅Ρ€ΠΌΠ΅Π½ Π½Π΅ Π²ΠΏΡƒΡΡ‚ΠΈΡ‚ΡŒ ΠŸΠ΅Ρ€Π»ΠΈΠ½Ρƒ ΠšΡ€Π°ΡŽ Ρƒ TFG.\nΠΠ°Π²Ρ–Ρ‚ΡŒ Ρ‚Ρ–, Ρ‰ΠΎ ΠΏΡ€ΠΈΡ‡Π°Ρ—Π»ΠΈΡΡŒ Ρƒ Π‘Π΅Π·ΠΎΠ΄Π½Ρ–, Π½Π΅ Π΄ΠΎΠΏΠΎΠΌΠΎΠΆΡƒΡ‚ΡŒ.\n\nΠΠ°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ Ρ‚Π²Ρ–ΠΉ Ρ”Π΄ΠΈΠ½ΠΈΠΉ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ Π½Π°Ρ€Π°Π·Ρ– β€” створити Ρ—Ρ— власноруч:\n\nΠ—ΠΌΡ–ΡˆΠ°ΠΉ &2Пил Π‘Π΅Ρ€ΠΈΠ»Ρ–ΡŽ&r Ρ‚Π° &2Пил ΠšΠ°Π»Ρ–ΡŽ&r Ρƒ &6HV&r Π—ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‡Ρ–, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ рідкісний &5Пил Π•Π½Π΄Π΅Ρ€&r.\n\nА ΠΏΠΎΡ‚Ρ–ΠΌ закинь ΠΉΠΎΠ³ΠΎ Π² &7Π†ΠΌΠΏΠ»ΠΎΠ·Ρ–ΠΉΠ½ΠΈΠΉ компрСсор&r Ρ– Π²Ρ–Π΄Ρ‚Π²ΠΎΡ€ΠΈ Π·Π½Π°ΠΊΠΎΠ²Ρƒ ΠŸΠ΅Ρ€Π»ΠΈΠ½Ρƒ ΠšΡ€Π°ΡŽ β€” Ρƒ стилі GregTech.", "quests.high_voltage.boules.title": "Ѐосфорні Π±ΡƒΠ»Ρ–", "quests.high_voltage.boules.subtitle": "Π–Π΅ΡΡ‚ΡŒ, як ΠΊΡ€ΡƒΡ‚ΠΎ!", "quests.high_voltage.boules.desc": "Допування β€” Ρ†Π΅ процСс навмисного ввСдСння Π΄ΠΎΠΌΡ–ΡˆΠΎΠΊ Ρƒ Π½Π°ΠΏΡ–Π²ΠΏΡ€ΠΎΠ²Ρ–Π΄Π½ΠΈΠΊΠΈ для Π·ΠΌΡ–Π½ΠΈ Ρ—Ρ…Π½Ρ–Ρ… властивостСй.\n\n&7ΠšΡ€Π΅ΠΌΠ½Ρ–ΠΉ&r ΠΌΠΎΠΆΠ½Π° Π΄ΠΎΠΏΡƒΠ²Π°Ρ‚ΠΈ нСвСликою ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ &eЀосфору&r, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ вдосконалСну &eΠšΡ€Π΅ΠΌΠ½Ρ–Ρ”Π²Ρƒ Π±ΡƒΠ»ΡŽ&r.\n\nΠ‘ΡƒΠ»Ρ– Π· Π΄ΠΎΠΏΠΎΠ²Π°Π½ΠΈΠΌ фосфором Π·Π°Π·Π²ΠΈΡ‡Π°ΠΉ Π΄Π°ΡŽΡ‚ΡŒ &68 Ρ€Π°Π·Ρ–Π²&r Π±Ρ–Π»ΡŒΡˆΠ΅ пластин, Π½Ρ–ΠΆ Ρ—Ρ… Π½Π΅Π΄ΠΎΠΏΠΎΠ²Π°Π½Ρ– Π°Π½Π°Π»ΠΎΠ³ΠΈ. ΠŸΡ€ΠΎΡ‚Π΅ Π²ΠΎΠ½ΠΈ Π½Π΅ Ρ” строго Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΠΌΠΈ Π΄ΠΎ &5EV&r, Π΄Π΅ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для ΡΠΊΠ»Π°Π΄Π½Ρ–ΡˆΠΈΡ… пластин.\n\n&9ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°&r: Уся ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠ° фосфорних Π±ΡƒΠ»Ρ–Π² Ρ– пластин ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” &dЧистої ΠΊΡ–ΠΌΠ½Π°Ρ‚ΠΈ&r.", @@ -1998,13 +2633,13 @@ "quests.high_voltage.hv_hull.subtitle": "Π‘ΠΊΠΎΡ€ΠΎ ΡΡ‚Π°Π½Π΅Ρˆ мінСстронавтом", "quests.high_voltage.hv_hull.desc.1": "&2Π‘ΠΏΠΎΠ΄Ρ–Π²Π°Ρ”ΠΌΠΎΡΡŒ, Ρ‚ΠΈ Π²ΠΆΠ΅ освоївся Π· &9GregTech&r, Π±ΠΎ настав час Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΏΡ–Π΄Π²ΠΈΡ‰ΠΈΡ‚ΠΈ Ρ€Ρ–Π²Π΅Π½ΡŒ своїх Π½Π°Π²ΠΈΡ‡ΠΎΠΊ. \nΠ£ Ρ†ΡŒΠΎΠΌΡƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– Ρ‚ΠΈ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ”Ρˆ &eпросунуті ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ&r, &eскладні процСси&r Ρ– Π½Π°Π²Ρ–Ρ‚ΡŒ Π·Ρ€ΠΎΠ±ΠΈΡˆ ΠΏΠ΅Ρ€ΡˆΡ– ΠΊΡ€ΠΎΠΊΠΈ Π½Π° &fΠœΡ–ΡΡΡ†ΡŒ&r!\n\n&6Π£ Ρ†ΡŒΠΎΠΌΡƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– ΠΏΠ΅Ρ€Π΅Π΄ Ρ‚ΠΎΠ±ΠΎΡŽ ΡΡ‚ΠΎΡΡ‚ΡŒ Π΄Π²Ρ– основні Ρ†Ρ–Π»Ρ–:&r \n- Π‘Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ свою ΠΏΠ΅Ρ€ΡˆΡƒ &5EV&r ΠœΠ°ΡˆΠΈΠ½Π½Ρƒ ΠžΠ±ΠΎΠ»ΠΎΠ½ΠΊΡƒ \n- Π ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆ Π½Π° &fΠœΡ–ΡΡΡ†ΡŒ&r\n\nВідкриття ΠœΡ–ΡΡΡ†Ρ Ρ‚Π°ΠΊΠΎΠΆ Π½Π°Π΄Π°ΡΡ‚ΡŒ доступ Π΄ΠΎ &bІстинний ΠšΠ²Π°Ρ€Ρ†&r, Ρ‰ΠΎ Π²Ρ–Π΄ΠΊΡ€ΠΈΠ²Π°Ρ” ΡˆΠ»ΡΡ… Π΄ΠΎ &dApplied Energistics 2&r. \nΠ’ΠΈ моТСш Π²ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈ Ρ†Ρ– завдання Π² Π±ΡƒΠ΄ΡŒ-якому порядку β€” як Ρ‚ΠΎΠ±Ρ– Π·Ρ€ΡƒΡ‡Π½ΠΎ.", "quests.high_voltage.hv_hull.desc.2": "Π©ΠΎΠ± створити &5EV&r ΠœΠ°ΡˆΠΈΠ½Π½Ρƒ ΠžΠ±ΠΎΠ»ΠΎΠ½ΠΊΡƒ:\n- ΠŸΠΎΠ±ΡƒΠ΄ΡƒΠΉ свою ΠΏΠ΅Ρ€ΡˆΡƒ &aЧисту ΠšΡ–ΠΌΠ½Π°Ρ‚Ρƒ&r \n- Π—Ρ€ΠΎΠ±ΠΈ &bΠ’Π°ΠΊΡƒΡƒΠΌΠ½Ρƒ ΠœΠΎΡ€ΠΎΠ·ΠΈΠ»ΡŒΠ½Ρƒ ΠšΠ°ΠΌΠ΅Ρ€Ρƒ&r для охолодТСння гарячих Π·Π»ΠΈΡ‚ΠΊΡ–Π² \n- ΠžΠ±Ρ€ΠΎΠ±ΠΈ &9Π ΡƒΡ‚ΠΈΠ»&r Ρƒ &7Π’ΠΈΡ‚Π°Π½&r\n\n&9Π ΡƒΡ‚ΠΈΠ»&r Ρƒ Π²Π΅Π»ΠΈΠΊΡ–ΠΉ ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ Π½Π° &fΠœΡ–ΡΡΡ†Ρ–&r, Π°Π»Π΅ Π²Ρ–Π½ Ρ‚Π°ΠΊΠΎΠΆ Ρ‚Ρ€Π°ΠΏΠ»ΡΡ”Ρ‚ΡŒΡΡ Π² ΠΆΠΈΠ»Π°Ρ… &eБокситу&r Π² &aΠžΡΠ½ΠΎΠ²Π½ΠΎΠΌΡƒ світі&r.", - "quests.high_voltage.hv_hull.desc.3": "Π©ΠΎΠ± дістатися Π΄ΠΎ &fΠœΡ–ΡΡΡ†Ρ&r:\n- Π‘Ρ‚Π²ΠΎΡ€ΠΈ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŽ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ &6Π Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ Π‘ΠΏΠ»Π°Π²Ρƒ&r \n- Π’ΠΈΠ³ΠΎΡ‚ΠΎΠ² свою ΠΏΠ΅Ρ€ΡˆΠ΅ &eОко Π•Π½Π΄Ρƒ&r Π·Π° допомогою &3Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΎΡ— Π’Π°Π½Π½ΠΈ&r Ρ‚Π° &8Π†ΠΌΠΏΠ»ΠΎΠ·Ρ–ΠΉΠ½ΠΎΠ³ΠΎ ΠšΠΎΠΌΠΏΡ€Π΅ΡΠΎΡ€Π°&r \n- ΠŸΡ–Π΄Π³ΠΎΡ‚ΡƒΠΉ усС &bспорядТСння&r, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Π΅ для &bдихання Π² космосі&r\n\nΠžΡ‚Ρ€ΠΈΠΌΠ°Π½Π½Ρ &bΠ’Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΡ— ΠœΠΎΡ€ΠΎΠ·ΠΈΠ»ΡŒΠ½ΠΎΡ— ΠšΠ°ΠΌΠ΅Ρ€ΠΈ&r Ρ‚Π° &6ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½ΠΈΡ… ΠΊΠΎΡ‚ΡƒΡˆΠΎΠΊ&r ΠΏΡ€ΠΈΡˆΠ²ΠΈΠ΄ΡˆΠΈΡ‚ΡŒ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ &6Π Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ Π‘ΠΏΠ»Π°Π²Ρƒ&r, Π°Π»Π΅ Ρ†Π΅ Π½Π΅ обов’язково.\n\n&dΠžΠ±Π΅Ρ€ΠΈ свій ΡˆΠ»ΡΡ…!&r", + "quests.high_voltage.hv_hull.desc.3": "Π©ΠΎΠ± дістатися Π΄ΠΎ &fΠœΡ–ΡΡΡ†Ρ&r:\n- Π‘Ρ‚Π²ΠΎΡ€ΠΈ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŽ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ &6Π Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ Π‘ΠΏΠ»Π°Π²Ρƒ&r \n- Π’ΠΈΠ³ΠΎΡ‚ΠΎΠ² свою ΠΏΠ΅Ρ€ΡˆΠ΅ &eОко Π•Π½Π΄Ρƒ&r Π·Π° допомогою &3Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΎΡ— Π’Π°Π½Π½ΠΈ&r Ρ‚Π° &7Π†ΠΌΠΏΠ»ΠΎΠ·Ρ–ΠΉΠ½ΠΎΠ³ΠΎ ΠšΠΎΠΌΠΏΡ€Π΅ΡΠΎΡ€Π°&r \n- ΠŸΡ–Π΄Π³ΠΎΡ‚ΡƒΠΉ усС &bспорядТСння&r, Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Π΅ для &bдихання Π² космосі&r\n\nΠžΡ‚Ρ€ΠΈΠΌΠ°Π½Π½Ρ &bΠ’Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΡ— ΠœΠΎΡ€ΠΎΠ·ΠΈΠ»ΡŒΠ½ΠΎΡ— ΠšΠ°ΠΌΠ΅Ρ€ΠΈ&r Ρ‚Π° &6ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½ΠΈΡ… ΠΊΠΎΡ‚ΡƒΡˆΠΎΠΊ&r ΠΏΡ€ΠΈΡˆΠ²ΠΈΠ΄ΡˆΠΈΡ‚ΡŒ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ &6Π Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ Π‘ΠΏΠ»Π°Π²Ρƒ&r, Π°Π»Π΅ Ρ†Π΅ Π½Π΅ обов’язково.\n\n&dΠžΠ±Π΅Ρ€ΠΈ свій ΡˆΠ»ΡΡ…!&r", "quests.high_voltage.nichrome.title": "Π—Π»ΠΈΡ‚ΠΊΠΈ Ніхрому", "quests.high_voltage.nichrome.subtitle": "Π— нього ΠΌΠ°Π»ΠΎ користі", "quests.high_voltage.nichrome.desc": "Π’Π°Ρˆ Ρ‚Ρ€Π΅Ρ‚Ρ–ΠΉ сплав ΡƒΠΆΠ΅ Ρ‚ΡƒΡ‚, Ρ– Π²Ρ–Π½ Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΠΉ для наступного Π½Π°Π±ΠΎΡ€Ρƒ ΠΊΠΎΡ‚ΡƒΡˆΠΎΠΊ Ρƒ &6Π•Π”ΠŸ&r.\n\nΠ―ΠΊ Ρ– Π·Π°Π·Π²ΠΈΡ‡Π°ΠΉ, Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ &9128 Π·Π»ΠΈΡ‚ΠΊΡ–Π²&r, Π°Π»Π΅ Ρ†ΡŒΠΎΠ³ΠΎ Ρ€Π°Π·Ρƒ Π²ΠΈ ΠΏΠΎΠΌΡ–Ρ‚ΠΈΡ‚Π΅, Ρ‰ΠΎ Π½Π΅ ΠΌΠΎΠΆΠ½Π° використати &6Π₯Ρ–ΠΌΡ–Ρ‡Π½Ρƒ ΠΌΠΈΠΉΠ½Ρƒ ΠΌΠ°ΡˆΠΈΠ½Ρƒ&r. ΠΠ°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ скористатися &6Π’Π°ΠΊΡƒΡƒΠΌΠ½ΠΎΡŽ ΠΌΠΎΡ€ΠΎΠ·ΠΈΠ»ΡŒΠ½ΠΎΡŽ ΠΊΠ°ΠΌΠ΅Ρ€ΠΎΡŽ&r.\n\nΠ”ΠΎΠ±Ρ€Π° Π½ΠΎΠ²ΠΈΠ½Π°: Ρ†Π΅ насправді ΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠ΅ ΠΉ швидшС.\n\nДля Ρ†ΠΈΡ… ΠΊΠΎΡ‚ΡƒΡˆΠΎΠΊ Π²ΠΈ використовуватимСтС лишС &6Π½Ρ–Ρ…Ρ€ΠΎΠΌ&r, Π°Π»Π΅ Π½Π΅ розслабляйтСся β€” Π²Ρ–Π½ Ρ‰Π΅ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ ΠΏΡ–Π·Π½Ρ–ΡˆΠ΅ для наступного Π½Π°Π±ΠΎΡ€Ρƒ &5RTM ΠΊΠΎΡ‚ΡƒΡˆΠΎΠΊ&r.", "quests.high_voltage.rocket_t1.title": "Π’Π°ΡˆΠ° ΠΏΠ΅Ρ€ΡˆΠ° Ρ€Π°ΠΊΠ΅Ρ‚Π°!", "quests.high_voltage.rocket_t1.subtitle": "ΠŸΠ΅Ρ€ΡˆΠΈΠΉ Ρ–Π· Π±Π°Π³Π°Ρ‚ΡŒΠΎΡ…", - "quests.high_voltage.rocket_t1.desc": "Ого, настав час Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ свій &6Π Π°ΠΊΠ΅Ρ‚Π½ΠΈΠΉ Апарат&r!\n\nΠ—Π±Π΅Ρ€ΠΈ всі частини Π· &d8 Π‘ΠΏΠ»Π°Π²Ρƒ для Π Π°ΠΊΠ΅Ρ‚&r. \nΠ©ΠΎΠ± Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ Ρ–Π·ΠΎΠ»ΡΡ†Ρ–ΡŽ, Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ &b2304mb&r &bΠ Ρ–Π΄ΠΊΠΎΠ³ΠΎ Π‘ΠΈΠ»Ρ–ΠΊΠΎΠ½Ρƒ&r (&b16 Π·Π»ΠΈΡ‚ΠΊΡ–Π²&r) Ρ– &f16 ΠΎΠ΄ΠΈΠ½ΠΈΡ†ΡŒ ΠΏΠΈΠ»Ρƒ&r.\n\nΠ£ Ρ‚Π΅Π±Π΅ Ρ” Π΄Π²Π° Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ:\n&e-&r &eПил Боросилікатного Π‘ΠΊΠ»Π°&r β€” ΡΡ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ Ρƒ &6ΠœΡ–ΠΊΡΠ΅Ρ€Ρ–&r Π· &dΠ‘ΠΎΡ€ΠΎΠΌ&r Ρ– &fПилом Π‘ΠΊΠ»Π°&r \n&e-&r &5Π’Ρ–Ρ‚Ρ€ΠΈΡ„Ρ–ΠΊΠΎΠ²Π°Π½Π° АзбСстова Π‘ΡƒΠΌΡ–Ρˆ&r β€” Π΄ΠΎΠ±ΡƒΠ²Π°Ρ”Ρ‚ΡŒΡΡ Ρ‡Π΅Ρ€Π΅Π· &6ΠŸΡ–Ρ€ΠΎΠ»Ρ–Π·Π½Ρƒ ΠŸΡ–Ρ‡&r\n\nΠžΠ±ΠΈΡ€Π°ΠΉ Ρ‚Π΅, Ρ‰ΠΎ Ρ‚ΠΎΠ±Ρ– Π·Ρ€ΡƒΡ‡Π½Ρ–ΡˆΠ΅!", + "quests.high_voltage.rocket_t1.desc": "Π’Π°Ρƒ, настав час Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ свою &6Π Π°ΠΊΠ΅Ρ‚Ρƒ&r! \n\nΠ—Π±Π΅Ρ€Ρ–Ρ‚ΡŒ усі частини Π· &d8 Π©Ρ–Π»ΡŒΠ½ΠΎΠ³ΠΎ Ρ€Π°ΠΊΠ΅Ρ‚Π½ΠΎΠ³ΠΎ сплаву&r. Π©ΠΎΠ± Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ Ρ–Π·ΠΎΠ»ΡΡ†Ρ–ΡŽ, Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ &b2304ΠΌΠ²&r &bΠ Ρ–Π΄ΠΊΠΎΠ³ΠΎ ΠΊΡ€Π΅ΠΌΠ½Ρ–ΡŽ&r (&b16 Π·Π»ΠΈΡ‚ΠΊΡ–Π²&r) Ρ‚Π° &f16 ΡˆΠΌΠ°Ρ‚ΠΊΡ–Π² ΠΏΠΈΠ»Ρƒ&r. \n\nΠ£ вас Ρ” Π΄Π²Π° Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ: \n&e-&r &eБоросилікатний скляний ΠΏΠΈΠ»&r β€” ΡΡ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ Ρƒ &6Π—ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‡Ρ–&r Π· &dΠ‘ΠΎΡ€&r Ρ‚Π° &fБкляний ΠΏΠΈΠ»&r \n\n&e-&r &5Π’Ρ–Ρ‚Ρ€ΠΈΡ„Ρ–ΠΊΠΎΠ²Π°Π½ΠΈΠΉ азбСст&r β€” ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ”Ρ‚ΡŒΡΡ Ρƒ &6ΠŸΡ–Ρ€ΠΎΠ»Ρ–Π·Π½Ρ–ΠΉ ΠΏΠ΅Ρ‡Ρ–&r \n\nΠžΠ±ΠΈΡ€Π°ΠΉΡ‚Π΅ Ρ‚Π΅, Ρ‰ΠΎ для вас ΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠ΅!", "quests.high_voltage.vitrified_pearl.title": "Π’Ρ–Ρ‚Ρ€ΠΈΡ„Ρ–ΠΊΠΎΠ²Π°Π½Π° ΠŸΠ΅Ρ€Π»ΠΈΠ½Π° Π•Π½Π΄Π΅Ρ€Π°", "quests.high_voltage.vitrified_pearl.subtitle": "Π•ΠΊΠ·ΠΎΡ‚ΠΈΡ‡Π½Π° ΠšΠ΅Ρ€Π°ΠΌΡ–ΠΊΠ°", "quests.high_voltage.vitrified_pearl.desc": "НагрійтС ΠŸΠ΅Ρ€Π»ΠΈΠ½Ρƒ ΠšΡ€Π°ΡŽ Π² &eΠŸΡ–Ρ€ΠΎΠ»Ρ–Π·Π½Ρ–ΠΉ ΠŸΠ΅Ρ‡Ρ–&r Ρ€Π°Π·ΠΎΠΌ Ρ–Π· Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎΡŽ Ρ–Π·ΠΎΠ»ΡΡ†Ρ–Ρ”ΡŽ, Ρ‰ΠΎΠ± ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎ Ρ—Ρ— Π²Ρ–Ρ‚Ρ€ΠΈΡ„Ρ–ΠΊΡƒΠ²Π°Ρ‚ΠΈ β€” ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Π½Π° Ρ‰ΠΎΡΡŒ, Ρ‰ΠΎ Π½Π°Π³Π°Π΄ΡƒΡ” &3ΠΊΠ΅Ρ€Π°ΠΌΡ–ΠΊΡƒ&r.\n\nНаразі Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π½Π΅Π±Π°Π³Π°Ρ‚ΠΎ β€” Ρ‰ΠΎΠ½Π°ΠΉΠΌΠ΅Π½ΡˆΠ΅ ΠΎΠ΄Π½Π° для Π²Π°ΡˆΠΎΡ— &6Π Π°ΠΊΠ΅Ρ‚ΠΈ&r Ρ‚Π° Ρ‰Π΅ ΠΎΠ΄Π½Π° для &6HV Бкладальника Π‘Ρ…Π΅ΠΌ&r.\nАлС ΠΌΠ°ΠΉΡ‚Π΅ Π½Π° ΡƒΠ²Π°Π·Ρ–: ΠΏΠΎΡ‡ΠΈΠ½Π°ΡŽΡ‡ΠΈ Π· &5EV&r, ΠΏΠΎΠΏΠΈΡ‚ Π½Π° Π½ΠΈΡ… швидко зростатимС.", @@ -2032,7 +2667,7 @@ "quests.high_voltage.steel_engine.subtitle": "Биня ΡΡ‚Π°Π»ΡŒ ΠΏΠΎΠ²Π΅Ρ€Ρ‚Π°Ρ”Ρ‚ΡŒΡΡ, Π±Π΅ΠΉΠ±Ρ–", "quests.high_voltage.steel_engine.desc": "&6Π‘Ρ‚Π°Π»Π΅Π²ΠΈΠΉ Π΄Π²ΠΈΠ³ΡƒΠ½&r Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΠΉ, Ρ‰ΠΎΠ± твоя Ρ€Π°ΠΊΠ΅Ρ‚Π° ΠΌΠΎΠ³Π»Π° &aдістатися Π΄ΠΎ ΠœΡ–ΡΡΡ†Ρ&r.\n\nΠ Π΅Ρ†Π΅ΠΏΡ‚ Π½Π΅ Π½Π°Π΄Ρ‚ΠΎ складний β€” ΠΌΠΈ припускаємо, Ρ‰ΠΎ Ρ‚ΠΈ Π³ΠΎΡ‚ΠΎΠ²ΠΈΠΉ впоратися Π· коТною Ρ‡Π°ΡΡ‚ΠΈΠ½ΠΎΡŽ.\n\nΠ©ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ &91152mb Π Ρ–Π΄ΠΊΠΎΡ— ΡΠΈΠ½ΡŒΠΎΡ— сталі&r, Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ &78 Π·Π»ΠΈΡ‚ΠΊΡ–Π²&r.", "quests.high_voltage.rocket_fins.subtitle": "Π’ΠΎΠΆ Ρ‚ΠΈ Π΄Ρ–ΡΡ‚Π°Π½Π΅ΡˆΡΡ Π΄ΠΎ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠ³ΠΎ ΠΏΡƒΠ½ΠΊΡ‚Ρƒ призначСння", - "quests.high_voltage.rocket_fins.desc": "Ми Π·Ρ€ΠΎΠ±ΠΈΠ»ΠΈ &6Π Π°ΠΊΠ΅Ρ‚Π½Ρ– стабілізатори&r Ρ‚Π°ΠΊΠΈΠΌΠΈ, Ρ‰ΠΎ Ρ—Ρ… ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Π² &bΠ‘ΠΏΠ»Π°Π²Π½ΠΈΠΊΡƒ&r β€” просто Ρ‰ΠΎΠ± Π½Π°Π³Π°Π΄Π°Ρ‚ΠΈ Ρ‚ΠΎΠ±Ρ–, Ρ‰ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ Ρƒ Ρ‚Π΅Π±Π΅ Ρ” доступ Π΄ΠΎ &bΠœΡƒΠ»ΡŒΡ‚ΠΈ-ΠΏΠ΅Ρ‡Ρ–&r β€” Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎΡ— ΠΌΠ°Π»ΠΎΡ— Π•Π”ΠŸ, яку ΠΌΠΎΠΆΠ½Π° використовувати як &eΠŸΡ–Ρ‡&r Ρ‚Π° &bΠ‘ΠΏΠ»Π°Π²Π½ΠΈΠΊ&r.\n\nΠšΠ²Π΅ΡΡ‚ Π½Π° Ρ—Ρ— створСння Π·Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒΡΡ Π² Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– &bMV&r. Ми Ρ‰ΠΈΡ€ΠΎ Ρ€Π°Π΄ΠΈΠΌΠΎ замислитися Π½Π°Π΄ Ρ†ΠΈΠΌ, якщо Ρ‚ΠΈ Ρ‰Π΅ Π½Π΅ брався.", + "quests.high_voltage.rocket_fins.desc": "Π‘ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ ΠΌΠΈ Π·Ρ€ΠΎΠ±ΠΈΠ»ΠΈ Ρ‚Π°ΠΊ, Ρ‰ΠΎΠ± &6Π Π°ΠΊΠ΅Ρ‚Π½Ρ– стабілізатори&r виготовлялися Ρƒ &bΠŸΠ»Π°Π²ΠΈΠ»ΡŒΠ½Ρ–ΠΉ ΠΏΠ΅Ρ‡Ρ– сплавів&r лишС для Ρ‚ΠΎΠ³ΠΎ, Ρ‰ΠΎΠ± Π½Π°Π³Π°Π΄Π°Ρ‚ΠΈ Π²Π°ΠΌ, Ρ‰ΠΎ Ρ‚Π΅ΠΏΠ΅Ρ€ Ρƒ вас Ρ” доступ Π΄ΠΎ &bΠœΡƒΠ»ΡŒΡ‚ΠΈΠΏΠ»Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–&r β€” Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎΡ— ΠΌΠ°Π»ΠΎΡ— Π•Π”ΠŸ, яку ΠΌΠΎΠΆΠ½Π° використовувати як &eΠŸΡ–Ρ‡&r Ρ– як &bΠŸΠ»Π°Π²ΠΈΠ»ΡŒΠ½Ρƒ ΠΏΡ–Ρ‡ сплавів&r. \n\nЗавдання Π½Π° Ρ—Ρ— створСння Π·Π½Π°Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒΡΡ Π² Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– &bMV&r. \n\nМи Π·ΠΌΡ–Π½ΠΈΠ»ΠΈ Ρ†Π΅ΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ Π½Π° Π·Π±ΠΈΡ€Π°Ρ‡, Π°Π΄ΠΆΠ΅ Β«Ρ€Π°ΠΊΠ΅Ρ‚Π½Ρ– стабілізатори» Π½Π΅ зовсім Ρ” сплавом.", "quests.high_voltage.rocket_nose_cone.subtitle": "Ніс Π·Π½Π°Ρ”...", "quests.high_voltage.rocket_nose_cone.desc": "&6Носова частина Ρ€Π°ΠΊΠ΅Ρ‚ΠΈ&r β€” Ρ†Π΅ Π½Π°ΠΉΡΠΊΠ»Π°Π΄Π½Ρ–ΡˆΠ° частина Ρ‚Π²ΠΎΡ”Ρ— Ρ€Π°ΠΊΠ΅Ρ‚ΠΈ.\nΠ’ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Ρ‡ΠΈΠΌΠ°Π»Π° ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ &aΠŸΠΎΠ»Ρ–Π΅Ρ‚ΠΈΠ»Π΅Π½Ρƒ&r β€” ΡΠΏΠΎΠ΄Ρ–Π²Π°Ρ”ΠΌΠΎΡΡŒ, Ρ‚ΠΈ Π²ΠΆΠ΅ Π½Π°Π»Π°Π³ΠΎΠ΄ΠΈΠ² ΠΉΠΎΠ³ΠΎ пасивнС Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ β€” Π° Ρ‚Π°ΠΊΠΎΠΆ &6HV&r Π•ΠΌΡ–Ρ‚Π΅Ρ€.\n&dΠ₯Ρ€ΠΎΠΌ&r ΠΌΠΎΠΆΠ½Π° Π΄ΠΎΠ±ΡƒΡ‚ΠΈ ΡˆΠ»ΡΡ…ΠΎΠΌ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·Ρƒ &cΠ ΡƒΠ±Ρ–Π½ΠΎΠ²ΠΎΠ³ΠΎ ΠΏΠΈΠ»Ρƒ&r.\n\nА ΠΎΡ‚ &aΠ’Ρ–Ρ‚Ρ€ΠΈΡ„Ρ–ΠΊΠΎΠ²Π°Π½Π° Π•Π½Π΄Π΅Ρ€-ΠΏΠ΅Ρ€Π»ΠΈΠ½Π°&r β€” Ρ†Π΅ Π²ΠΆΠ΅ ΡΠΊΠ»Π°Π΄Π½Ρ–ΡˆΠ΅. Π©ΠΎΠ± Ρ—Ρ— ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ, ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΠΏΡ€ΠΎΠΉΡ‚ΠΈ квСст, який Π²Ρ–Π΄ΠΊΡ€ΠΈΠ²Π°Ρ”Ρ‚ΡŒΡΡ після створСння &6HV&r Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π°.\nΠŸΡ€ΠΈΠ³ΠΎΡ‚ΡƒΠΉΡΡ виготовляти &cВНВ&r, Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ &5Π†ΠΌΠΏΠ»ΠΎΠ·Ρ–ΠΉΠ½ΠΈΠΉ компрСсор&r Ρ– Π²Ρ–Π΄Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Π»Π΅Π³Π΅Π½Π΄Π°Ρ€Π½ΠΈΠΉ Π΄Ρ€ΠΎΠΏ Π•Π½Π΄Π΅Ρ€ΠΌΠ΅Π½Π° β€” Π°Π΄ΠΆΠ΅ Π•Π½Π΄Π΅Ρ€-ΠΏΠ΅Ρ€Π»ΠΈΠ½ΠΈ Π½Π΅ Π·ΡƒΡΡ‚Ρ€Ρ–Ρ‡Π°ΡŽΡ‚ΡŒΡΡ ΠΏΡ€ΠΈΡ€ΠΎΠ΄Π½ΠΎ Π² &2TFG&r.", "quests.high_voltage.launch_pad.subtitle": "Π“ΠΎΡ‚ΠΎΠ²Π½Ρ–ΡΡ‚ΡŒ Π΄ΠΎ запуску Ρ‡Π΅Ρ€Π΅Π· T-10...", @@ -2052,7 +2687,7 @@ "quests.high_voltage.gun.subtitle": "А якщо Ρ†Π΅ Π½Π΅ ΡΠΏΡ€Π°Ρ†ΡŽΡ” β€” використайтС Π±Ρ–Π»ΡŒΡˆΠ΅ Π·Π±Ρ€ΠΎΡ—", "quests.high_voltage.gun.task1": "Π‘ΡƒΠ΄ΡŒ-яка зброя", "quests.high_voltage.gun.task2": "Π‘ΡƒΠ΄ΡŒ-які Π»Ρ–ΠΊΠΈ Π°Π±ΠΎ Π²ΠΈΡ‚Ρ€ΠΈΠΌΠ°Π½ΠΈΠΉ алкоголь", - "quests.high_voltage.gun.desc": "Π’Ρ–Π΄Ρ‡ΡƒΠ²Π°Ρ”Ρ‚Π΅ сСбС Π·Π°Π½Π°Π΄Ρ‚ΠΎ ΠΊΠΎΠΌΡ„ΠΎΡ€Ρ‚Π½ΠΎ Π½Π° Π—Π΅ΠΌΠ»Ρ–? На ΠœΡ–ΡΡΡ†Ρ– Π²ΠΈ Π±ΡƒΠ΄Π΅Ρ‚Π΅ Π½Π΅ самі, Ρ‚ΠΎΠΆ ΠΏΠΎΠ΄Π±Π°ΠΉΡ‚Π΅ ΠΏΡ€ΠΎ Π½Π°Π»Π΅ΠΆΠ½ΠΈΠΉ захист β€” Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Ρ–Π»ΡŒΡˆΠ΅, Π½Ρ–ΠΆ просто ΠΌΠ΅Ρ‡ Ρ‡ΠΈ кам’яні Π΄Ρ€ΠΎΡ‚ΠΈΠΊΠΈ.\n\n%4ΠœΡ–ΡΡΡ†ΡŒ Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΈΠΉ%r, Ρ– Π²ΠΈ ΠΆ Π½Π΅ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π²Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΠΈ свою Ρ†Ρ–Π½Π½Ρƒ Ρ€Π°ΠΊΠ΅Ρ‚Ρƒ, ΠΏΡ€Π°Π²Π΄Π°?\n\nΠ’ΠΈΠ±Π΅Ρ€Ρ–Ρ‚ΡŒ Π³Π°Ρ€Π½Ρƒ Π²ΠΎΠ³Π½Π΅ΠΏΠ°Π»ΡŒΠ½Ρƒ Π·Π±Ρ€ΠΎΡŽ (якщо Π½Π΅ Π²ΠΏΠ΅Π²Π½Π΅Π½Ρ–, Ρ€Π°Π΄ΠΈΠΌΠΎ &oΒ«ClockworkΒ» ΡΠ½Π°ΠΉΠΏΠ΅Ρ€ΡΡŒΠΊΡƒ Π³Π²ΠΈΠ½Ρ‚Ρ–Π²ΠΊΡƒ&r), ΡΡ‚Π²ΠΎΡ€Ρ–Ρ‚ΡŒ Π½Π°Π±ΠΎΡ— Ρ‚Π°, Π·Π° баТання, спробуйтС встановити Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Ρ– ΠΌΠΎΠ΄ΡƒΠ»Ρ–.\n\nΠ’Π°ΠΊΠΎΠΆ Π²Π°Ρ€Ρ‚ΠΎ взяти ΠΏΠΎΠΆΠΈΠ²Π½Ρƒ Ρ—ΠΆΡƒ, Ρ‰ΠΎΠ± ΠΏΡ–Π΄Π²ΠΈΡ‰ΠΈΡ‚ΠΈ максимальний запас здоров’я (спробуйтС Ρ…Π°Ρ€Ρ‡ΠΎΠ²Ρ– Π½Π°Π±ΠΎΡ€ΠΈ!), Π° Ρ‰Π΅ алкоголь Ρ– Π»Ρ–ΠΊΠΈ для отримання Π±Π°Ρ„Ρ–Π² Ρ‚Π° зцілСння.", + "quests.high_voltage.gun.desc": "Π’Ρ–Π΄Ρ‡ΡƒΠ²Π°Ρ”Ρ‚Π΅ сСбС Π·Π°Π½Π°Π΄Ρ‚ΠΎ ΠΊΠΎΠΌΡ„ΠΎΡ€Ρ‚Π½ΠΎ Π½Π° Π—Π΅ΠΌΠ»Ρ–? На ΠœΡ–ΡΡΡ†Ρ– Π²ΠΈ Π±ΡƒΠ΄Π΅Ρ‚Π΅ Π½Π΅ самі, Ρ‚ΠΎΠΆ ΠΏΠΎΠ΄Π±Π°ΠΉΡ‚Π΅ ΠΏΡ€ΠΎ Π½Π°Π»Π΅ΠΆΠ½ΠΈΠΉ захист β€” Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Ρ–Π»ΡŒΡˆΠ΅, Π½Ρ–ΠΆ просто ΠΌΠ΅Ρ‡ Ρ‡ΠΈ кам’яні Π΄Ρ€ΠΎΡ‚ΠΈΠΊΠΈ.\n\n&4ΠœΡ–ΡΡΡ†ΡŒ Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΈΠΉ&r, Ρ– Π²ΠΈ ΠΆ Π½Π΅ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π²Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΠΈ свою Ρ†Ρ–Π½Π½Ρƒ Ρ€Π°ΠΊΠ΅Ρ‚Ρƒ, ΠΏΡ€Π°Π²Π΄Π°?\n\nΠ’ΠΈΠ±Π΅Ρ€Ρ–Ρ‚ΡŒ Π³Π°Ρ€Π½Ρƒ Π²ΠΎΠ³Π½Π΅ΠΏΠ°Π»ΡŒΠ½Ρƒ Π·Π±Ρ€ΠΎΡŽ (якщо Π½Π΅ Π²ΠΏΠ΅Π²Π½Π΅Π½Ρ–, Ρ€Π°Π΄ΠΈΠΌΠΎ &oΒ«ClockworkΒ» ΡΠ½Π°ΠΉΠΏΠ΅Ρ€ΡΡŒΠΊΡƒ Π³Π²ΠΈΠ½Ρ‚Ρ–Π²ΠΊΡƒ&r), ΡΡ‚Π²ΠΎΡ€Ρ–Ρ‚ΡŒ Π½Π°Π±ΠΎΡ— Ρ‚Π°, Π·Π° баТання, спробуйтС встановити Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Ρ– ΠΌΠΎΠ΄ΡƒΠ»Ρ–.\n\nΠ’Π°ΠΊΠΎΠΆ Π²Π°Ρ€Ρ‚ΠΎ взяти ΠΏΠΎΠΆΠΈΠ²Π½Ρƒ Ρ—ΠΆΡƒ, Ρ‰ΠΎΠ± ΠΏΡ–Π΄Π²ΠΈΡ‰ΠΈΡ‚ΠΈ максимальний запас здоров’я (спробуйтС Ρ…Π°Ρ€Ρ‡ΠΎΠ²Ρ– Π½Π°Π±ΠΎΡ€ΠΈ!), Π° Ρ‰Π΅ алкоголь Ρ– Π»Ρ–ΠΊΠΈ для отримання ΠΏΡ–Π΄ΡΠΈΠ»Π΅Π½ΡŒ Ρ‚Π° зцілСння.", "quests.high_voltage.space_survival.title": "Π—Π°Ρ‚ΠΈΡˆΠΎΠΊ Π΄Π°Π»Π΅ΠΊΠΎ Π²Ρ–Π΄ Π΄ΠΎΠΌΡƒ", "quests.high_voltage.space_survival.subtitle": "Π‘Ρ–Π»ΡŒΡˆΠ΅, Π½Ρ–ΠΆ просто ΡˆΠ°Ρ…Ρ‚Π°Ρ€ΡΡŒΠΊΠΈΠΉ Π²ΠΈΠΌΡ–Ρ€", "quests.high_voltage.space_survival.desc": "Π―ΠΊΡ‰ΠΎ Ρ‚ΠΈ Ρ‰Π΅ Π½Π΅ ознайомився, обов’язково ΠΏΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒ Ρ€ΠΎΠ·Π΄Ρ–Π» завдань &3ΠŸΠΎΡ€Π°Π΄ΠΈ β€” ΠšΠΎΡΠΌΡ–Ρ‡Π½Π΅ виТивання&r! Π£ Π½ΡŒΠΎΠΌΡƒ Ρ” вся Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Π° інформація для створСння ΠΏΠΎΠ²Π½ΠΎΡ†Ρ–Π½Π½ΠΎΡ— ΠΊΠΎΠ»ΠΎΠ½Ρ–Ρ— Π½Π° ΠœΡ–ΡΡΡ†Ρ–.", @@ -2067,7 +2702,7 @@ "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.desc": "Π©ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ ваш &bПил Π Π΅Π³ΠΎΠ»Ρ–Ρ‚Ρƒ&r, Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ &bΠ’ΠΈΠΏΠ°Ρ€Π½ΠΈΠΉ Π Π΅Π³ΠΎΠ»Ρ–Ρ‚&r β€” Ρ– ΠΉΠΎΠ³ΠΎ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Ρ‚Ρ€ΠΎΡ…ΠΈ ΡΠΊΠ»Π°Π΄Π½Ρ–ΡˆΠ΅.\n\nОсь Ρ‰ΠΎ Π²Π°ΠΌ Π±ΡƒΠ΄Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ:\n\nβ€’ &7ΠœΡ–ΡΡΡ‡Π½ΠΈΠΉ ΠŸΡ–ΡΠΎΠΊ&r β€” ΠΌΠΎΠΆΠ½Π° ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ нСскінчСнно Π·Π° допомогою &6Π“Π»ΠΈΠ±ΠΈΠ½Π½ΠΎΠ³ΠΎ Π‘ΡƒΡ€Π°&r.\nβ€’ &eДіоксид ΠšΠ°Ρ€Π±ΠΎΠ½Ρƒ&r β€” Π²ΠΈΡ€ΠΎΠ±Π»ΡΡ”Ρ‚ΡŒΡΡ Π· &9Кисню&r Ρ‚Π° &7Π’ΡƒΠ³Ρ–Π»ΡŒΠ½ΠΎΠ³ΠΎ ΠŸΠΈΠ»Ρƒ&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": "Π’Ρ€ΠΈ ΠΌΡƒΡˆΠΊΠ΅Ρ‚Π΅Ρ€ΠΈ", @@ -2079,12 +2714,14 @@ "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.high_voltage.titanium_greate.title": "Π’ΠΈΡ‚Π°Π½ΠΎΠ²ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ Greate", + "quests.high_voltage.titanium_greate.desc": "Π¦Π΅ Ρ„Ρ–Π½Π°Π»ΡŒΠ½ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ Greate, доступний Ρƒ TerraFirmaGreg. Π„Π΄ΠΈΠ½Π΅ Β«Π΅ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½Π΅Β», Ρ‰ΠΎ Π²Ρ–Π½ Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ β€” Ρ†Π΅ Ρ‚Π΅, Ρ‰ΠΎ Π²Ρ–Π½ Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ нСобов’язковий.", "quests.low_voltage": "&7LV&r – Низька Π½Π°ΠΏΡ€ΡƒΠ³Π°", "quests.low_voltage.subtitle": "ΠŸΡ€ΠΈΠ±ΠΎΡ€ΠΊΠ°ΠΉ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΠΊΡƒ Ρ‚Π° Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π½ΠΈ свою ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆ Ρƒ GregTech", "quests.low_voltage.lv_machine_hull.title": "Π’Π²Ρ–ΠΉ Π΄Ρ€ΡƒΠ³ΠΈΠΉ корпус машини", "quests.low_voltage.lv_machine_hull.subtitle": "Час ΠΏΠΎΡ€ΠΈΠ½ΡƒΡ‚ΠΈ Ρƒ світ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΠΊΠΈ", "quests.low_voltage.lv_machine_hull.desc.1": "Π’ΠΈ Π²ΠΆΠ΅ Π΄ΡƒΠΆΠ΅ близько Π΄ΠΎ своєї &6ΠΏΠ΅Ρ€ΡˆΠΎΡ— LV-машини&r Ρ‚Π° ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½ΠΎΡ— Π΅Ρ€ΠΈ! \nΠ―ΠΊΡ‰ΠΎ Ρ‚ΠΈ Ρ‰Π΅ Π½Π΅ створив &4Π§Π΅Ρ€Π²ΠΎΠ½Ρƒ ΡΡ‚Π°Π»ΡŒ&r, Ρ‚Π΅ΠΏΠ΅Ρ€ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Ρ†Π΅ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ, Π°Π»Π΅ Π½Π°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ Ρ‚ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρˆ &6Π½ΠΎΠ²Ρ– способи&r ΠΏΠΎΠΊΡ€Π°Ρ‰ΠΈΡ‚ΠΈ своє Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ. \n\nΠ¦Π΅ філософія GregTech: &6Ρ‡ΠΈΠΌ Π΄Π°Π»Ρ– Ρ‚ΠΈ ΠΏΡ€ΠΎΡΡƒΠ²Π°Ρ”ΡˆΡΡ, Ρ‚ΠΈΠΌ ΠΊΡ€Π°Ρ‰ΠΈΠΌΠΈ ΡΡ‚Π°ΡŽΡ‚ΡŒ Π½ΠΎΠ²Ρ– Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ&r. \n\nΠ‘ΠΏΡ€ΠΎΠ±ΡƒΠΉ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ‰ΠΎΠ½Π°ΠΉΠΌΠ΅Π½ΡˆΠ΅ 3 Π°Π±ΠΎ 4 корпуси для ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ.", - "quests.low_voltage.lv_machine_hull.desc.2": "Для дСяких Π³Ρ€Π°Π²Ρ†Ρ–Π² ΠΏΠ΅Ρ€Π΅Ρ…Ρ–Π΄ Π½Π° Π½ΠΎΠ²ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ ΠΎΠ·Π½Π°Ρ‡Π°Ρ” створСння ΠΏΠ΅Ρ€ΡˆΠΎΡ— &6схСми&r, для Ρ–Π½ΡˆΠΈΡ… β€” &6корпусу машини&r Π°Π±ΠΎ &6Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ люка&r. Π’ΠΈ моТСш використовувати Ρ‚Π΅, Ρ‰ΠΎ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π΅ ΠΏΡ–Π΄Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ Ρ‚ΠΎΠ±Ρ–, Π°Π»Π΅ для зручності Ρ†Ρ– завдання Π±ΡƒΠ΄ΡƒΡ‚ΡŒ орієнтуватися Π½Π° корпус машини.", + "quests.low_voltage.lv_machine_hull.desc.2": "Для дСяких Π³Ρ€Π°Π²Ρ†Ρ–Π² ΠΏΠ΅Ρ€Π΅Ρ…Ρ–Π΄ Π½Π° Π½ΠΎΠ²ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ Π°ΡΠΎΡ†Ρ–ΡŽΡ”Ρ‚ΡŒΡΡ Π·Ρ– створСнням ΠΏΠ΅Ρ€ΡˆΠΎΡ— &6мікросхСми&r, для Ρ–Π½ΡˆΠΈΡ… β€” Π· &6корпусом машини&r Π°Π±ΠΎ &6Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΌ люком&r. Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΠ±Ρ€Π°Ρ‚ΠΈ Π±ΡƒΠ΄ΡŒ-який ΠΎΡ€Ρ–Ρ”Π½Ρ‚ΠΈΡ€, який Π²Π°ΠΌ Π·Ρ€ΡƒΡ‡Π½ΠΈΠΉ, Π°Π»Π΅ для впорядкування Ρ†Ρ– квСсти Π±ΡƒΠ΄ΡƒΡ‚ΡŒ орієнтуватися Π½Π° корпус машини.\n\nНС Π·Π½Π°Ρ”Ρ‚Π΅, Π· Ρ‡ΠΎΠ³ΠΎ ΠΏΠΎΡ‡Π°Ρ‚ΠΈ? Ми Ρ€Π°Π΄ΠΈΠΌΠΎ ΡˆΡƒΠΊΠ°Ρ‚ΠΈ машини, які Π·Π΄Π΅ΡˆΠ΅Π²Π»ΡΡ‚ΡŒ усС Ρ–Π½ΡˆΠ΅ β€” ΠΏΠΎΡ‡Π½Ρ–Ρ‚ΡŒ Ρ–Π· Ρ‚ΠΎΠ³ΠΎ, Ρ‰ΠΎ Π½Π°ΠΉΠ±Ρ–Π»ΡŒΡˆΠ΅ Π΄Ρ€Π°Ρ‚ΡƒΡ”.", "quests.low_voltage.lv_machine_casing.title": "ΠšΠΎΡ€ΠΏΡƒΡ машини LV для Create?", "quests.low_voltage.lv_machine_casing.subtitle": "Π‘Ρ–Π»ΡŒΡˆΠ΅ моТливостСй!", "quests.low_voltage.lv_machine_casing.desc": "Π©ΠΎΠ± Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ ΠΏΠ΅Ρ€Π΅Ρ…Ρ–Π΄ Π½Π° LV мСнш складним, &5TFG&r Π΄Π°Ρ” Ρ‚ΠΎΠ±Ρ– ΠΌΠΎΠΆΠ»ΠΈΠ²Ρ–ΡΡ‚ΡŒ використовувати машини &6Create&r Π·Π°ΠΌΡ–ΡΡ‚ΡŒ дСяких машин &6GregTech&r. \n\nМи прСдставили Ρ—Ρ… &6Ρƒ ΠΌΠΈΠ½ΡƒΠ»ΠΎΠΌΡƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ–&r, Π°Π»Π΅ просто Π·Π½Π°ΠΉ: якщо існує Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π° ΠΌΠ°ΡˆΠΈΠ½Ρ– GregTech, Ρ‚ΠΈ ΠΌΠ°Ρ‚ΠΈΠΌΠ΅Ρˆ Π²ΠΈΠ±Ρ–Ρ€ Ρƒ ΠΌΠ΅ΠΆΠ°Ρ… завдання.", @@ -2095,22 +2732,22 @@ "quests.low_voltage.lv_age_progression.subtitle": "Π—Π°Π±Π°Π³Π°Ρ‚ΠΎ Π²Π°Ρ€Ρ–Π°Π½Ρ‚Ρ–Π², Π·Π°Π½Π°Π΄Ρ‚ΠΎ ΠΌΠ°Π»ΠΎ часу!", "quests.low_voltage.lv_age_progression.desc": "&7LV&r Π²ΠΈΠΌΠ°Π³Π°Ρ‚ΠΈΠΌΠ΅ Π²Ρ–Π΄ Ρ‚Π΅Π±Π΅ створСння Π±Π°Π³Π°Ρ‚ΡŒΠΎΡ… Ρ€Ρ–Π·Π½ΠΈΡ… машин! Ось друТня ΠΏΠΎΡ€Π°Π΄Π°, якщо Ρ‚ΠΎΠ±Ρ– Π²Π°ΠΆΠΊΠΎ Π²ΠΈΠ·Π½Π°Ρ‡ΠΈΡ‚ΠΈ Ρ†Ρ–Π»Ρ–: Π²ΠΈΠ±Π΅Ρ€ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ Ρƒ ΠΏΡ–Π·Π½Ρ–ΡˆΠΎΠΌΡƒ квСсті Ρ‚Π° рухайся Π½Π°Π·Π°Π΄ Π²Ρ–Π΄ нього. \n\nΠ—Π²Π°ΠΆΠ°ΡŽΡ‡ΠΈ Π½Π° Ρ†Π΅... Ρ‡ΠΎΠΌΡƒ Π± Π½Π΅ ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π· &5ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π΅Ρ€Π° тСрмоядСрного синтСзу&r? Π₯ΠΎΡ‡Π°, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Ρ†Π΅ Ρ‚Ρ€ΠΎΡ…ΠΈ Π½Π°Π΄Ρ‚ΠΎ Π°ΠΌΠ±Ρ–Ρ‚Π½ΠΎβ€”Π΄Π°Π²Π°ΠΉ ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€ΠΈΠΌΠΎ Π±Π»ΠΈΠΆΡ‡Ρƒ Ρ†Ρ–Π»ΡŒ. Ага, &3Π•Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Π° випалювальна ΠΏΡ–Ρ‡&rβ€”Ρ†Π΅ Π³ΠΎΠ»ΠΎΠ²Π½Π° ΠΊΡ–Π½Ρ†Π΅Π²Π° ΠΌΠ΅Ρ‚Π° &7LV&r, Ρ– Π²ΠΎΠ½Π° Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎ ΠΏΡ–Π΄Ρ…ΠΎΠ΄ΠΈΡ‚ΡŒ як ΠΎΡ€Ρ–Ρ”Π½Ρ‚ΠΈΡ€. \n\nΠ•Π”ΠŸ &aΠ΄ΠΎΡ€ΠΎΠ³Π°&r, Ρ‚ΠΎΠΌΡƒ спочатку слід зосСрСдитися Π½Π° ΠΌΠ°ΡˆΠΈΠ½Π°Ρ… для здСшСвлСння ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π². ΠΠ°ΡˆΡ– квСсти Π½Π°ΠΌΠ°Π³Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒΡΡ спрямувати Ρ‚Π΅Π±Π΅ Ρƒ ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎΠΌΡƒ напрямку. \n\nΠ†Π½ΡˆΡ– Π²Π°ΠΆΠ»ΠΈΠ²Ρ– цілі—створСння &3LV АсСмблСра&r, Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ Ρ‚Π²ΠΎΡ—Ρ… ΠΏΠ΅Ρ€ΡˆΠΈΡ… &aMV схСм&r Ρ‚Π° отримання ΠΏΠ΅Ρ€ΡˆΠΎΠ³ΠΎ &bАсСмблСра схСм&r.", "quests.low_voltage.lv_age_progression.task": "Π―... Π·Π΄Π°Ρ”Ρ‚ΡŒΡΡ, ΠΏΠΎΡ‡ΠΈΠ½Π°ΡŽ Ρ€ΠΎΠ·ΡƒΠΌΡ–Ρ‚ΠΈ, ΠΊΡƒΠ΄ΠΈ рухатися", - "quests.low_voltage.lv_steam_turbine.title": "ГСнСрація Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ΅Π½Π΅Ρ€Π³Ρ–Ρ—", + "quests.low_voltage.lv_steam_turbine.title": "ΠŸΠ°Ρ€ΠΎΠ²Π° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°", "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.1": "&3ΠŸΠ°Ρ€ΠΎΠ²Π° Π’ΡƒΡ€Π±Ρ–Π½Π°&r β€” ΠΎΠ΄ΠΈΠ½ Ρ–Π· Π½Π΅Π±Π°Π³Π°Ρ‚ΡŒΠΎΡ… Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ–Π², які Π²ΠΈ Ρ€Π΅Π°Π»ΡŒΠ½ΠΎ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використовувати Π½Π° &7LV&r. \n&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.subtitle": "Π‘ΡƒΠΌ, Π±ΡƒΠΌ, Π±ΡƒΠΌ, Π±ΡƒΠΌ", "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": "ΠŸΡ–ΡΠ»Ρ ΠΏΠΎΠ²Π½ΠΎΠ³ΠΎ нагрівання &3Π’Π‘Πš&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 Ρƒ вас Ρ” ΠΊΡ–Π»ΡŒΠΊΠ° Π²Π°Ρ€Ρ–Π°Π½Ρ‚Ρ–Π² ΠΏΠ°Π»ΠΈΠ²Π°. Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використати Π¨Π»Π°Π½Π³ΠΎΠ²ΠΈΠΉ Π¨ΠΊΡ–Π², Ρ‰ΠΎΠ± Π²Ρ–Π΄ΠΊΠ°Ρ‡Π°Ρ‚ΠΈ Π»Π°Π²Ρƒ Π· Π³Π»ΠΈΠ±ΠΎΠΊΠΎΠ³ΠΎ ΠΏΡ–Π΄Π·Π΅ΠΌΠ½ΠΎΠ³ΠΎ ΠΎΠ·Π΅Ρ€Π°, Π°Π±ΠΎ ΠΎΡ€Π³Π°Π½Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ лісопосадку Π· ΠΏΠΎΠ΄Π°Ρ‡Π΅ΡŽ Π΄Π΅Ρ€Π΅Π²ΠΈΠ½ΠΈ Π² коксову ΠΏΡ–Ρ‡ для отримання Π΄Π΅Ρ€Π΅Π²Π½ΠΎΠ³ΠΎ вугілля Ρ‚Π° ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚Ρƒ. ΠΠ°Ρ€Π΅ΡˆΡ‚Ρ–, Ρ–ΡΠ½ΡƒΡŽΡ‚ΡŒ Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½Ρ– Π²ΡƒΠ³Ρ–Π»ΡŒΠ½Ρ– ΠΆΠΈΠ»ΠΈ Π½Π° ΠΏΠΎΠ²Π΅Ρ€Ρ…Π½Ρ–, які ΠΌΠΎΠΆΠ½Π° розробляти Π·Π° допомогою Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΎΠ²Π°Π½ΠΈΡ… Π±ΡƒΡ€Ρ–Π² Ρ– пСрСробляти Π² кокс, ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡŽΡ‡ΠΈ Π·Π½Π°Ρ‡Π½ΠΎ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚Ρƒ, Π½Ρ–ΠΆ Ρ–Π· Π΄Π΅Ρ€Π΅Π²Π½ΠΎΠ³ΠΎ вугілля. \n\nΠ―ΠΊΡ‰ΠΎ Π²ΠΈ ΠΎΠ±Π΅Ρ€Π΅Ρ‚Π΅ ΡˆΠ»ΡΡ… Ρ–Π· Π»Ρ–ΡΠΎΠΏΠΎΡΠ°Π΄ΠΊΠΎΡŽ, Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Ρ‚Ρ€ΠΈ коксові ΠΏΠ΅Ρ‡Ρ–, Ρ‰ΠΎΠ± Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΠΈ Ρ€ΠΎΠ±ΠΎΡ‚Ρƒ Π’Π‘Πš Π½Π° ΠΏΠΎΠ²Π½Ρ–ΠΉ потуТності.", - "quests.low_voltage.lv_polariser.title": "Π‘Π°Π·ΠΎΠ²ΠΈΠΉ поляризатор", + "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.link_chapter.title": "ΠŸΠΎΡΡΠ½Ρ–Ρ‚ΡŒ ΠΌΠ΅Π½Ρ– Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ", "quests.low_voltage.link_chapter.subtitle": "Π„ Ρ†Ρ–Π»ΠΈΠΉ Ρ€ΠΎΠ·Π΄Ρ–Π», присвячСний Π΅Π½Π΅Ρ€Π³Ρ–Ρ—", - "quests.low_voltage.link_chapter.desc": "ΠžΠ·Π½Π°ΠΉΠΎΠΌΠΈΡ‚ΠΈΡΡ Π· Ρ€ΠΎΠ·Π΄Ρ–Π»ΠΎΠΌ ΠΌΠΎΠΆΠ½Π°, Π½Π°Ρ‚ΠΈΡΠ½ΡƒΠ²ΡˆΠΈ Ρ‚ΡƒΡ‚", - "quests.low_voltage.link_chapter.task": "ΠŸΡ€ΠΎΡ‡ΠΈΡ‚Π°ΠΉ", + "quests.low_voltage.link_chapter.desc": "ΠŸΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒ Ρ€ΠΎΠ·Π΄Ρ–Π», Π½Π°Ρ‚ΠΈΡΠ½ΡƒΠ²ΡˆΠΈ Ρ‚ΡƒΡ‚", + "quests.low_voltage.link_chapter.task": "Π― Ρ†Π΅ ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Π²(Π»Π°)", "quests.low_voltage.lv_combuston_gen.title": "Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ згоряння", "quests.low_voltage.lv_combuston_gen.subtitle": "Π’Ρ–Π½ Π²ΠΈΠ±ΡƒΡ…Π°Ρ” Ρ– виробляє Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ", "quests.low_voltage.lv_combuston_gen.desc": "&7Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ згоряння LV&r ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ Π΄ΠΎΡ€ΠΎΠΆΡ‡ΠΈΠΌ Ρƒ Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Ρ– порівняно Π· Ρ–Π½ΡˆΠΈΠΌΠΈ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°ΠΌΠΈ, Π°Π»Π΅ ΠΉΠΎΠ³ΠΎ ΠΏΠ°Π»ΠΈΠ²ΠΎ ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ Π±Π°Π³Π°Ρ‚ΠΎ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—. Π¦Π΅ ΠΏΠΎΠ»Π΅Π³ΡˆΡƒΡ” транспортування, Π° якщо ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΠΆΠΈΠ²ΠΈΡ‚ΠΈ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ Π΄Π°Π»Π΅ΠΊΠΎ Π²Ρ–Π΄ Π±Π°Π·ΠΈ, Π±ΠΎΡ‡ΠΊΠ°, Π·Π°ΠΏΠΎΠ²Π½Π΅Π½ΠΈΠΉ &2Π‘Ρ–ΠΎΠ΄ΠΈΠ·Π΅Π»Π΅ΠΌ&r, Π·ΠΌΠΎΠΆΠ΅ пСрСнСсти Π²Π΅Π»ΠΈΠΊΡƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ EU.\n\nΠ―ΠΊ Ρ– Ρ–Π½ΡˆΡ– &7Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΈ LV&r, Π²Ρ–Π½ виробляє &a32 EU/t&r.", @@ -2124,6 +2761,15 @@ "quests.low_voltage.lv_seeds.subtitle": "Π¦Π΅ високі рослини", "quests.low_voltage.lv_seeds.desc": "Π―ΠΊΡ‰ΠΎ Π½Π°Ρ‚Ρ€Π°ΠΏΠΈΡ‚Π΅ Π½Π° Ρ†Ρ– рослини β€” обов’язково ΠΏΡ–Π΄Π±Π΅Ρ€Ρ–Ρ‚ΡŒ Ρ– ΠΏΠΎΡ‡Π½Ρ–Ρ‚ΡŒ Π²ΠΈΡ€ΠΎΡ‰ΡƒΠ²Π°Ρ‚ΠΈ.\n\nΠ’ΠΎΠ½ΠΈ ΡΡ‚Π°Π½ΡƒΡ‚ΡŒ вашим Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΌ Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎΠΌ &aРослиної ΠΎΠ»Ρ–Ρ—&r β€” Ρ€Ρ–Π΄ΠΈΠ½ΠΈ, Ρ‰ΠΎ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &eΠ‘Ρ–ΠΎΠ΄ΠΈΠ·Π΅Π»ΡŽ&r. Канола Ρ‚Ρ€ΠΎΡ…ΠΈ ΡΡ‚Ρ–ΠΉΠΊΡ–ΡˆΠ° Π΄ΠΎ Π½ΠΈΠ·ΡŒΠΊΠΈΡ… Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€, Π° соняшники ΠΊΡ€Π°Ρ‰Π΅ ΠΏΠΎΡ‡ΡƒΠ²Π°ΡŽΡ‚ΡŒΡΡ Π² Ρ‚Π΅ΠΏΠ»Ρ–ΡˆΠΎΠΌΡƒ ΠΊΠ»Ρ–ΠΌΠ°Ρ‚Ρ–. Π’ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π²ΠΈΡ€ΠΎΡ‰ΡƒΠ²Π°Ρ‚ΠΈ Ρ—Ρ… Π² Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Ρ–ΠΉ Ρ‚Π΅ΠΏΠ»ΠΈΡ†Ρ–, якщо Π½Π΅ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π²ΠΈΡ‚Ρ€Π°Ρ‡Π°Ρ‚ΠΈ Π±Π°Π³Π°Ρ‚ΠΎ часу Π½Π° фСрмСрство β€” Ρ‰ΠΎΠΏΡ€Π°Π²Π΄Π°, Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Π²ΠΈΡ‚Ρ€Π°Ρ‡Π°Ρ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π½Π° Ρ—Ρ…Π½Ρ” зростання.", "quests.low_voltage.lv_seeds.task": "Канола Π°Π±ΠΎ Боняшник", + "quests.low_voltage.lv_gas_turbine.title": "Π“Π°Π·ΠΎΠ²Π° Ρ‚ΡƒΡ€Π±Ρ–Π½Π°", + "quests.low_voltage.lv_gas_turbine.subtitle": "ΠŸΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π±Ρ–Π»ΡŒΡˆΠ΅ мікросхСм, Π°Π»Π΅ мСншС ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π²", + "quests.low_voltage.lv_gas_turbine.desc": "Завдяки &7Π‘ΠΈΠ½Ρ‚Π΅Π· Π³Π°Π·Ρƒ&r Ρƒ вас Ρ‚Π΅ΠΏΠ΅Ρ€ Ρ” Ρ€Π΅Π°Π»ΡŒΠ½Π° ΠΌΠΎΠΆΠ»ΠΈΠ²Ρ–ΡΡ‚ΡŒ використовувати &7Π“Π°Π·ΠΎΠ²Ρƒ Ρ‚ΡƒΡ€Π±Ρ–Π½Ρƒ&r Π½Π° Ρ€Ρ–Π²Π½Ρ– &7LV&r. Π’ΠΎΠ½Π° ΠΏΡ€Π°Ρ†ΡŽΡ” Ρ‚Π°ΠΊ само, як Ρ– Ρ–Π½ΡˆΡ– &6Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΈ&r, Π°Π»Π΅ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ дСшСвшою Π·Π° &6Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ згоряння&r.", + "quests.low_voltage.lv_gas_syngas.title": "Π‘ΠΈΠ½Ρ‚Π΅Π· Π³Π°Π·", + "quests.low_voltage.lv_gas_syngas.subtitle": "НС Π΄Π΅Ρ€Π΅Π²Π½ΠΈΠΉ Π³Π°Π·", + "quests.low_voltage.lv_gas_syngas.desc": "Виробляти &7Π‘ΠΈΠ½Ρ‚Π΅Π· Π³Π°Π·&r Π΄ΡƒΠΆΠ΅ просто. Π’Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ лишС &b3 ΠšΠΎΠΊΡΡƒΠ²Π°Π»ΡŒΠ½Ρ– ΠΏΠ΅Ρ‡Ρ–&r Π½Π° ΠΊΠΎΠΆΠ½Ρƒ &6Π’Π°Ρ€ΠΈΠ»ΡŒΠ½ΡŽ&r Π°Π±ΠΎ &6Π’Π°ΠΊΡƒΡƒΠΌΠ½Ρƒ ΠΊΠ°ΠΌΠ΅Ρ€Ρƒ&r. ΠŸΠΎΡ‚Ρ–ΠΌ Π·Π±ΠΈΡ€Π°Ρ”Ρ‚Π΅ &7Π΄Π΅Ρ€Π΅Π²ΠΈΠ½Ρƒ&r Π·Π° допомогою &bΠ€Π΅Ρ€ΠΌΠΈ Π΄Π΅Ρ€Π΅Π² Create&r, Ρ‰ΠΎΠ± ΠΌΡ–Π½Ρ–ΠΌΡ–Π·ΡƒΠ²Π°Ρ‚ΠΈ Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— β€” Ρ– ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°ΡΠΎΠ»ΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‚ΠΈΡΡŒ Ρ†ΠΈΠΌ слабким, Π°Π»Π΅ Π»Π΅Π³ΠΊΠΈΠΌ Ρƒ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Ρ– &7Π³Π°Π·ΠΎΠ²ΠΎΠ³ΠΎ ΠΏΠ°Π»ΠΈΠ²Π°&r.", + "quests.low_voltage.lv_naphtha_light.title": "Нафта Ρ– Π›Π΅Π³ΠΊΠ΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ", + "quests.low_voltage.lv_naphtha_light.subtitle": "Π— Π½ΠΈΡ… ΠΌΠΎΠΆΠ½Π° виготовляти пластик", + "quests.low_voltage.lv_naphtha_light.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ справді Π½Π΅Π½Π°Π²ΠΈΠ΄ΠΈΡ‚Π΅ фСрмСрство ΠΉ Π½Π°Π΄Π°Ρ”Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅Π²Π°Π³Ρƒ ΠΏΡ€ΠΈΠ³ΠΎΠ΄Π°ΠΌ Ρƒ &6пустСлі&r Π°Π±ΠΎ Π²ΠΈΠ΄ΠΎΠ±ΡƒΡ‚ΠΊΡƒ Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½ΠΈΡ… обсягів &7Нафтового піску&r, Ρ‚ΠΎΠ΄Ρ–, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Π²Π°Ρ€Ρ‚ΠΎ Π·Π²Π΅Ρ€Π½ΡƒΡ‚ΠΈ ΡƒΠ²Π°Π³Ρƒ Π½Π° &7Нафту&r (ΠΊΡ€Π°Ρ‰Π΅ Π· &7Π‘ΠΈΡ€ΠΎΡ— Π½Π°Ρ„Ρ‚ΠΈ&r) Π°Π±ΠΎ &7Π›Π΅Π³ΠΊΠ΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ&r (ΠΊΡ€Π°Ρ‰Π΅ Π· &7Нафти&r).\n\nΠ’ΠΎΠ½ΠΈ Π΄ΠΎΡΠΈΡ‚ΡŒ Ρ…ΠΎΡ€ΠΎΡˆΡ–, Π²Ρ€Π°Ρ…ΠΎΠ²ΡƒΡŽΡ‡ΠΈ простоту Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π°, Π°Π»Π΅ Π½Π° Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– Ρ—Ρ… Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Π·Π±ΠΈΡ€Π°Ρ‚ΠΈ Π²Ρ€ΡƒΡ‡Π½Ρƒ.", "quests.low_voltage.lv_turbo_charge.title": "Π¨Π²ΠΈΠ΄ΠΊΠ° зарядка", "quests.low_voltage.lv_turbo_charge.subtitle": "ΠšΠΎΡ€ΠΈΡΠ½ΠΎ для швидшого зарядТання СлСктроінструмСнтів", "quests.low_voltage.lv_turbo_charge.desc": "&oЦя Ρ‚Π΅ΠΌΠ° квСсту Ρ” Π½Π΅ΠΎΠ±ΠΎΠ²β€™ΡΠ·ΠΊΠΎΠ²ΠΎΡŽ, Π°Π»Π΅ ΠΌΠΎΠΆΠ΅ Π·Π°Ρ†Ρ–ΠΊΠ°Π²ΠΈΡ‚ΠΈ Ρ‚Π΅Π±Π΅. Ми Π΄ΠΎΠ΄Π°Π»ΠΈ Ρ—Ρ— Π·Π°Ρ€Π°Π΄ΠΈ ΠΏΠΎΠ²Π½ΠΎΡ‚ΠΈ.&r \n\n&3Π¨Π²ΠΈΠ΄ΠΊΠ° зарядка&r зарядТає &6RF Ρ‚Π° EU&r ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ, Ρ‚Π°ΠΊΡ– як &9Π”Ρ€ΠΈΠ»Ρ–&r, Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ швидко. \n\nΠ’Ρ–Π½ ΠΏΡ€ΠΈΠΉΠΌΠ°Ρ” Π΄ΠΎ 4 АмпСр Π½Π° ΠΊΠΎΠΆΠ΅Π½ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚, який зарядТає, Ρ‰ΠΎ Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ ΠΉΠΎΠ³ΠΎ &6Π²Π΄Π²Ρ–Ρ‡Ρ– швидшим&r Π·Π° &3Π‘ΡƒΡ„Π΅Ρ€ Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ&r. Однак Π²Ρ–Π½ Π½Π΅ ΠΌΠΎΠΆΠ΅ розрядТати. \n\n&eΠ‘ΡƒΠ΄ΡŒ-який&r Зарядний пристрій Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΡŒ Ρ†Π΅ΠΉ квСст.", @@ -2143,7 +2789,7 @@ "quests.low_voltage.lv_aqueous_accumulator.task": "Π‘ΡƒΠ΄ΡŒ-який Π²ΠΎΠ΄Π½ΠΈΠΉ акумулятор", "quests.low_voltage.lv_wiremill.title": "Π‘Π°Π·ΠΎΠ²ΠΈΠΉ Π”Ρ€ΠΎΡ‚ΠΎΠΏΡ€ΠΎΠΊΠ°Ρ‚Π½ΠΈΠΊ", "quests.low_voltage.lv_wiremill.subtitle": "Π‘Ρ–Π»ΡŒΡˆΠ΅ ніяких ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌ Π· Π΄Ρ€ΠΎΡ‚Π°ΠΌΠΈ!", - "quests.low_voltage.lv_wiremill.desc.1": "Π’ΠΈ моТСш створити Π±ΡƒΠ΄ΡŒ-яку Ρ–Π½ΡˆΡƒ &7LV&r ΠœΠ°ΡˆΠΈΠ½Ρƒ, Π°Π»Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π΅ ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π· Π½Π°ΠΉΠΊΠΎΡ€ΠΈΡΠ½Ρ–ΡˆΠΎΡ—. Π—Π½Π°Ρ”ΠΌΠΎ, Π·Π½Π°Ρ”ΠΌΠΎ... Ρ‚ΠΎΠ±Ρ– Ρ…ΠΎΡ‡Π΅Ρ‚ΡŒΡΡ спочатку Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ‰ΠΎΡΡŒ Π±ΠΎΠΆΠ΅Π²Ρ–Π»ΡŒΠ½Π΅, Π°Π»Π΅ довірся Π½Π°ΠΌ β€” Ρ†Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π° Π²Ρ–Π΄ΠΏΡ€Π°Π²Π½Π° Ρ‚ΠΎΡ‡ΠΊΠ°. \n\nΠ”Ρ€ΠΎΡ‚ΠΎΠΏΡ€ΠΎΠΊΠ°Ρ‚Π½Π° машина дозволяє ΠΎΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ &6Π΄Π²Π° Π”Ρ€ΠΎΡ‚ΠΈ Π· ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π—Π»ΠΈΡ‚ΠΊΠ°&r. Π¦Π΅ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ Π²Ρ‚Ρ€ΠΈΡ‡Ρ– дСшСвшС, Π½Ρ–ΠΆ Ρ‚Π΅, Ρ‰ΠΎ Ρ‚ΠΈ Ρ€ΠΎΠ±ΠΈΠ² Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ! \n\nΠŸΡ€Π°Π²ΠΎΡ€ΡƒΡ‡ Π²Ρ–Π΄ Ρ†ΡŒΠΎΠ³ΠΎ ΠšΠ²Π΅ΡΡ‚Ρƒ Ρ‚ΠΈ знайдСш Π²Π°ΠΆΠ»ΠΈΠ²Ρ– машини, які Π΄Π°Π΄ΡƒΡ‚ΡŒ Ρ‚ΠΎΠ±Ρ– Π΄Π΅ΡˆΠ΅Π²ΡˆΡ– ΠΏΡ€ΠΎΠΌΡ–ΠΆΠ½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ.", + "quests.low_voltage.lv_wiremill.desc.1": "Π’ΠΈ ΠΌΠΎΠ³Π»ΠΈ Π± Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π±ΡƒΠ΄ΡŒβ€‘ΡΠΊΡƒ Ρ–Π½ΡˆΡƒ &7LV&r ΠœΠ°ΡˆΠΈΠ½Ρƒ, Π°Π»Π΅ Π½Π°ΠΉΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠ΅ ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π· Π½Π°ΠΉΠΊΠΎΡ€ΠΈΡΠ½Ρ–ΡˆΠΎΡ—. \nΠ—Π½Π°Ρ”ΠΌΠΎ, знаємо… Π²Π°ΠΌ Ρ…ΠΎΡ‡Π΅Ρ‚ΡŒΡΡ Π·Ρ–Π±Ρ€Π°Ρ‚ΠΈ Ρ‰ΠΎΡΡŒ Π±Ρ–Π»ΡŒΡˆ Π±ΠΎΠΆΠ΅Π²Ρ–Π»ΡŒΠ½Π΅ спочатку, Π°Π»Π΅ ΠΏΠΎΠ²Ρ–Ρ€Ρ‚Π΅ β€” Ρ†Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π° Π²Ρ–Π΄ΠΏΡ€Π°Π²Π½Π° Ρ‚ΠΎΡ‡ΠΊΠ°. \n\nΠ’ΠΎΠ»ΠΎΠΊ дозволяє Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ &6Π΄Π²Π° Π΄Ρ€ΠΎΡ‚ΠΈ Π· ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π·Π»ΠΈΡ‚ΠΊΠ°&r. Π¦Π΅ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ ΡƒΡ‚Ρ€ΠΈΡ‡Ρ– дСшСвшС, Π½Ρ–ΠΆ Ρ‚Π΅, Ρ‰ΠΎ Π²ΠΈ Ρ€ΠΎΠ±ΠΈΠ»ΠΈ Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ!", "quests.low_voltage.lv_wiremill.desc.2": "Π’ΠΈ моТСш створити Π±ΡƒΠ΄ΡŒ-яку Ρ–Π½ΡˆΡƒ &7LV&r ΠœΠ°ΡˆΠΈΠ½Ρƒ, Π°Π»Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π΅ ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π· Π½Π°ΠΉΠΊΠΎΡ€ΠΈΡΠ½Ρ–ΡˆΠΎΡ—. Π—Π½Π°Ρ”ΠΌΠΎ, Π·Π½Π°Ρ”ΠΌΠΎ... Ρ‚ΠΎΠ±Ρ– Ρ…ΠΎΡ‡Π΅Ρ‚ΡŒΡΡ спочатку Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ‰ΠΎΡΡŒ Π±ΠΎΠΆΠ΅Π²Ρ–Π»ΡŒΠ½Π΅, Π°Π»Π΅ довірся Π½Π°ΠΌ β€” Ρ†Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π° Π²Ρ–Π΄ΠΏΡ€Π°Π²Π½Π° Ρ‚ΠΎΡ‡ΠΊΠ°. \n\nΠ”Ρ€ΠΎΡ‚ΠΎΠΏΡ€ΠΎΠΊΠ°Ρ‚Π½Π° машина дозволяє ΠΎΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ &6Π΄Π²Π° Π”Ρ€ΠΎΡ‚ΠΈ Π· ΠΎΠ΄Π½ΠΎΠ³ΠΎ Π—Π»ΠΈΡ‚ΠΊΠ°&r. Π¦Π΅ ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ Π²Ρ‚Ρ€ΠΈΡ‡Ρ– дСшСвшС, Π½Ρ–ΠΆ Ρ‚Π΅, Ρ‰ΠΎ Ρ‚ΠΈ Ρ€ΠΎΠ±ΠΈΠ² Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ! \n\nΠŸΡ€Π°Π²ΠΎΡ€ΡƒΡ‡ Π²Ρ–Π΄ Ρ†ΡŒΠΎΠ³ΠΎ ΠšΠ²Π΅ΡΡ‚Ρƒ Ρ‚ΠΈ знайдСш Π²Π°ΠΆΠ»ΠΈΠ²Ρ– машини, які Π΄Π°Π΄ΡƒΡ‚ΡŒ Ρ‚ΠΎΠ±Ρ– Π΄Π΅ΡˆΠ΅Π²ΡˆΡ– ΠΏΡ€ΠΎΠΌΡ–ΠΆΠ½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ!", "quests.low_voltage.lv_wiremill.task": "Π‘ΡƒΠ΄ΡŒ-який Π· Π½ΠΈΡ…", "quests.low_voltage.lv_bender.title": "Π‘Π°Π·ΠΎΠ²ΠΈΠΉ Π·Π³ΠΈΠ½Π°Ρ‡", @@ -2157,12 +2803,12 @@ "quests.low_voltage.lv_lathe.task": "Π‘ΡƒΠ΄ΡŒ-який Π· Π½ΠΈΡ…", "quests.low_voltage.universal_cell.title": "ΠšΡ€Π°Ρ‰Π΅ Π²Ρ–Π΄Ρ€ΠΎ", "quests.low_voltage.universal_cell.subtitle": "Π’ΠΈ моТСш дивитися всСрСдину, Π½Π° Π²Ρ–Π΄ΠΌΡ–Π½Ρƒ Π²Ρ–Π΄ Ρ‚ΠΈΡ… Π±ΠΎΡ‡ΠΎΠΊ...", - "quests.low_voltage.universal_cell.desc.1": "ΠšΠ°ΠΏΡΡƒΠ»ΠΈ β€” Ρ†Π΅ Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½Π° Ρ„ΠΎΡ€ΠΌΠ° збСрігання Ρ€Ρ–Π΄ΠΈΠ½. Усі Ρ‚ΠΈΠΏΠΈ ΠšΠ°ΠΏΡΡƒΠ» Π· ΠΎΠ΄Π½Π°ΠΊΠΎΠ²ΠΈΠΌ Ρ‚ΠΈΠΏΠΎΠΌ Ρ‚Π° ΠΎΠ±'Ρ”ΠΌΠΎΠΌ Ρ€Ρ–Π΄ΠΈΠ½ΠΈ &6ΡΡ‚Π΅ΠΊΡƒΡŽΡ‚ΡŒΡΡ&r. Π‡Ρ… ΠΌΠΎΠΆΠ½Π° Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π·Π°ΠΏΠΎΠ²Π½ΡŽΠ²Π°Ρ‚ΠΈ Π·Π° допомогою &3ΠšΠΎΠ½ΡΠ΅Ρ€Π²ΡƒΠ²Π°Π»ΡŒΠ½ΠΎΡ— Машини&r. \n\nΠšΠ°ΠΏΡΡƒΠ»ΠΈ Π²ΠΌΡ–Ρ‰ΡƒΡŽΡ‚ΡŒ &dΠΎΠ΄Π½Π΅ Π²Ρ–Π΄Ρ€ΠΎ&r Ρ€Ρ–Π΄ΠΈΠ½ΠΈ.", + "quests.low_voltage.universal_cell.desc.1": "ΠšΠΎΠΌΡ–Ρ€ΠΊΠΈ β€” Ρ†Π΅ Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½Π° Ρ„ΠΎΡ€ΠΌΠ° збСрігання Ρ€Ρ–Π΄ΠΈΠ½. Усі Ρ‚ΠΈΠΏΠΈ ΠΊΠΎΠΌΡ–Ρ€ΠΎΠΊ Π· ΠΎΠ΄Π½Π°ΠΊΠΎΠ²ΠΈΠΌ Ρ‚ΠΈΠΏΠΎΠΌ Ρ– ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ Ρ€Ρ–Π΄ΠΈΠ½ΠΈ всСрСдині &6ΡΡ‚Π΅ΠΊΠ°ΡŽΡ‚ΡŒΡΡ&r. Π‡Ρ… ΠΌΠΎΠΆΠ½Π° Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π·Π°ΠΏΠΎΠ²Π½ΡŽΠ²Π°Ρ‚ΠΈ Π·Π° допомогою &3ΠšΠΎΠ½ΡΠ΅Ρ€Π²ΡƒΠ²Π°Π»ΡŒΠ½ΠΎΡ— машини&r.\n\nОдна ΠΊΠΎΠΌΡ–Ρ€ΠΊΠ° Π²ΠΌΡ–Ρ‰ΡƒΡ” &dΠΎΠ΄Π½Π΅ Π²Ρ–Π΄Ρ€ΠΎ&r Ρ€Ρ–Π΄ΠΈΠ½ΠΈ.\n\nΠ©Π΅ Π½Π΅ ΠΏΠ΅Ρ€Π΅ΠΊΠΎΠ½Π°Π½Ρ–? На Π²Ρ–Π΄ΠΌΡ–Π½Ρƒ Π²Ρ–Π΄ Π±ΠΎΡ‡ΠΎΠΊ Ρ– Π²Ρ–Π΄Π΅Ρ€, ΠΊΠΎΠΌΡ–Ρ€ΠΊΠΈ &aΠ±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ ΡƒΡ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒ&r вміст, Π½Π΅ Π΄Π°ΡŽΡ‡ΠΈ Π²Π°ΠΌ ΠΎΠ±ΠΏΠ΅ΠΊΡ‚ΠΈΡΡŒ, Π·Π°ΠΌΠ΅Ρ€Π·Π½ΡƒΡ‚ΠΈ Ρ‡ΠΈ спливти.", "quests.low_voltage.universal_cell.desc.2": "Π£Π½Ρ–Π²Π΅Ρ€ΡΠ°Π»ΡŒΠ½Ρ– ΠšΠ°ΠΏΡΡƒΠ»ΠΈ Π²ΠΌΡ–Ρ‰ΡƒΡŽΡ‚ΡŒ Π΄ΠΎ &dΠΎΠ΄Π½ΠΎΠ³ΠΎ Π²Ρ–Π΄Ρ€Π°&r, Π°Π»Π΅ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ &9частки&r Π’Ρ–Π΄Π΅Ρ€. Π’ΠΎΠ½ΠΈ особливо Ρ–Π΄Π΅Π°Π»ΡŒΠ½Ρ–, якщо Ρ‚ΠΈ Ρ…ΠΎΡ‡Π΅Ρˆ Π·Π±Π΅Ρ€Π΅Π³Ρ‚ΠΈ Π·Π°Π»ΠΈΡˆΠΊΠΎΠ²Ρƒ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ Π±Π΅Π· ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Ρ†Ρ–Π»Ρƒ Π‘ΠΎΡ‡ΠΊΡƒ. \n\nΠšΠ°ΠΏΡΡƒΠ»ΠΈ, Π·Ρ€ΠΎΠ±Π»Π΅Π½Ρ– Π· ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π² Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня, ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π²ΠΌΡ–Ρ‰ΡƒΠ²Π°Ρ‚ΠΈ Ρ‰Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅ Ρ€Ρ–Π΄ΠΈΠ½ΠΈ, Π°Π»Π΅ &9Π‘ΠΎΡ‡ΠΊΠΈ&r Ρ– &9Π‘ΡƒΠΏΠ΅Ρ€ Π Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€&r ΠΌΠ°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ Π±Ρ–Π»ΡŒΡˆΠΈΠΉ ΠΎΠ±'Ρ”ΠΌ. \n\nΠ―ΠΊ Ρ– Π‘ΠΎΡ‡ΠΊΠΈ, ΠšΠ°ΠΏΡΡƒΠ»ΠΈ ΠΌΠΎΠΆΠ½Π° помістити Π² сітку створСння, Ρ‰ΠΎΠ± очистити Ρ—Ρ…Π½Ρ–ΠΉ вміст.", - "quests.low_voltage.universal_cell.task": "", + "quests.low_voltage.universal_cell.task": "Π‘ΡƒΠ΄ΡŒ-яка ΠΊΠΎΠΌΡ–Ρ€ΠΊΠ°", "quests.low_voltage.machine_auto_output_behaviour.title": "ΠŸΠΎΠ²Π΅Π΄Ρ–Π½ΠΊΠ° Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ Π²ΠΈΠ²ΠΎΠ΄Ρƒ машини", "quests.low_voltage.machine_auto_output_behaviour.subtitle": "Π”Π°Π²Π°ΠΉ навчатися.", - "quests.low_voltage.machine_auto_output_behaviour.desc.1": "Усі машини Π·Π°Π·Π²ΠΈΡ‡Π°ΠΉ ΠΌΠ°ΡŽΡ‚ΡŒ ΠΎΠ΄Π½Ρƒ &7Π›ΠΈΡ†ΡŒΠΎΠ²Ρƒ Π‘Ρ‚ΠΎΡ€ΠΎΠ½Ρƒ&r Ρ‚Π° ΠΎΠ΄Π½Ρƒ &9Π’ΠΈΡ…Ρ–Π΄Π½Ρƒ Π‘Ρ‚ΠΎΡ€ΠΎΠ½Ρƒ&r. \n\n&7Π›ΠΈΡ†ΡŒΠΎΠ²Π° Π‘Ρ‚ΠΎΡ€ΠΎΠ½Π°&r ΠΏΠΎΠ²ΠΈΠ½Π½Π° Π±ΡƒΡ‚ΠΈ ΠΎΡ‡Π΅Π²ΠΈΠ΄Π½ΠΎΡŽ. \n&9Π’ΠΈΡ…Ρ–Π΄Π½Π° Π‘Ρ‚ΠΎΡ€ΠΎΠ½Π°&r β€” Ρ†Π΅ сторона Π· Ρ‚ΠΎΡ‡ΠΊΠΎΡŽ Π°Π±ΠΎ ΠΎΡ‚Π²ΠΎΡ€ΠΎΠΌ. Π—Π° замовчуванням Π²ΠΎΠ½Π° Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Π° Π½Π° Π·Π°Π΄Π½Ρ–ΠΉ частині машини ΠΏΡ€ΠΈ Ρ—Ρ— встановлСнні. \n\nМашини ΠΌΠΎΠΆΡƒΡ‚ΡŒ &aΠ°Π²Ρ‚ΠΎΠ²ΠΈΠ²Π°Π½Ρ‚Π°ΠΆΡƒΠ²Π°Ρ‚ΠΈ&r Ρ‡Π΅Ρ€Π΅Π· свою Π²ΠΈΡ…Ρ–Π΄Π½Ρƒ сторону. \nΠ©ΠΎΠ± ΡƒΠ²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ автовивантаТСння, натисни Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Ρƒ ΠΊΠ½ΠΎΠΏΠΊΡƒ Π² GUI.\nАвтовивантаТСння Ρ€Ρ–Π΄ΠΈΠ½ Ρ‚Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² ΠΏΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°ΡŽΡ‚ΡŒΡΡ ΠΎΠΊΡ€Π΅ΠΌΠΎ. \nΠ”ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΠΉ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŒ Π½Π°Π΄ автовивантаТСнням ΠΌΠΎΠΆΠ½Π° здійснити Π·Π° допомогою &dΠ€Ρ–Π»ΡŒΡ‚Ρ€Ρ–Π²&r Ρ‚Π° &dΠšΡ€ΠΈΡˆΠΎΠΊ&r, які описані Π² квСсті Ρƒ Π²Π΅Ρ€Ρ…Π½ΡŒΠΎΠΌΡƒ Π»Ρ–Π²ΠΎΠΌΡƒ ΠΊΡƒΡ‚Ρ– Ρ†ΡŒΠΎΠ³ΠΎ.", + "quests.low_voltage.machine_auto_output_behaviour.desc.1": "Усі машини Π·Π°Π·Π²ΠΈΡ‡Π°ΠΉ ΠΌΠ°ΡŽΡ‚ΡŒ ΠΎΠ΄Π½Ρƒ &7ΠŸΠ΅Ρ€Π΅Π΄Π½ΡŽ Π³Ρ€Π°Π½ΡŒ&r Ρ‚Π° ΠΎΠ΄Π½Ρƒ &9Π’ΠΈΡ…Ρ–Π΄Π½Ρƒ Π³Ρ€Π°Π½ΡŒ&r. \n\n&7ΠŸΠ΅Ρ€Π΅Π΄Π½Ρ Π³Ρ€Π°Π½ΡŒ&r ΠΌΠ°Ρ” Π±ΡƒΡ‚ΠΈ ΠΎΡ‡Π΅Π²ΠΈΠ΄Π½ΠΎΡŽ. \n&9Π’ΠΈΡ…Ρ–Π΄Π½Π° Π³Ρ€Π°Π½ΡŒ&r β€” Ρ†Π΅ Π³Ρ€Π°Π½ΡŒ Ρ–Π· Ρ‚ΠΎΡ‡ΠΊΠΎΡŽ Π°Π±ΠΎ ΠΎΡ‚Π²ΠΎΡ€ΠΎΠΌ. Π—Π° замовчуванням Π²ΠΎΠ½Π° Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Π° Π·Π·Π°Π΄Ρƒ машини ΠΏΡ–Π΄ час встановлСння. \n\nМашини ΠΌΠΎΠΆΡƒΡ‚ΡŒ &aΠ°Π²Ρ‚ΠΎΠ²ΠΈΠ²Π°Π½Ρ‚Π°ΠΆΡƒΠ²Π°Ρ‚ΠΈ&r Ρ‡Π΅Ρ€Π΅Π· свою Π²ΠΈΡ…Ρ–Π΄Π½Ρƒ Π³Ρ€Π°Π½ΡŒ. Π©ΠΎΠ± ΡƒΠ²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ автовивантаТСння, Π½Π°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Ρƒ ΠΊΠ½ΠΎΠΏΠΊΡƒ Π² GUI. \nАвтовивантаТСння Ρ€Ρ–Π΄ΠΈΠ½ Ρ‚Π° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² ΠΏΠ΅Ρ€Π΅ΠΌΠΈΠΊΠ°ΡŽΡ‚ΡŒΡΡ ΠΎΠΊΡ€Π΅ΠΌΠΎ. \nΠ”ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΠΉ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŒ Π½Π°Π΄ автовивантаТСнням ΠΌΠΎΠΆΠ½Π° ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π·Π° допомогою &dΠ€Ρ–Π»ΡŒΡ‚Ρ€Ρ–Π²&r Ρ‚Π° &dНакладок&r, які ΠΏΠΎΡΡΠ½ΡŽΡŽΡ‚ΡŒΡΡ Ρƒ Π·Π°Π²Π΄Π°Π½Π½Ρ– &dΠŸΠΎΠ²Π΅Π΄Ρ–Π½ΠΊΠ° Π½Π°ΠΊΠ»Π°Π΄ΠΎΠΊ&r Ρƒ Ρ†ΡŒΠΎΠΌΡƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ–.", "quests.low_voltage.machine_auto_output_behaviour.desc.2": "ПКМ Π½Π° ΠΌΠ°ΡˆΠΈΠ½Ρ– Π· &5Π“Π°ΠΉΠΊΠΎΠ²ΠΈΠΌ ΠΊΠ»ΡŽΡ‡Π΅ΠΌ&r Π·ΠΌΡ–Π½ΡŽΡ” Π²ΠΈΡ…Ρ–Π΄Π½Ρƒ сторону, Π° shift+клацання Π·ΠΌΡ–Π½ΡŽΡ” Π»ΠΈΡ†ΡŒΠΎΠ²Ρƒ сторону. Май Π½Π° ΡƒΠ²Π°Π·Ρ–, Ρ‰ΠΎ Π»ΠΈΡ†ΡŒΠΎΠ²Π° сторона &cΠ½Π΅ ΠΌΠΎΠΆΠ΅&r Π±ΡƒΡ‚ΠΈ Π²ΠΈΡ…Ρ–Π΄Π½ΠΎΡŽ ΡΡ‚ΠΎΡ€ΠΎΠ½ΠΎΡŽ! \n\nΠ—Π° замовчуванням ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Ρ‚Π° Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Π½Π΅ ΠΌΠΎΠΆΠ½Π° вставляти Ρ‡Π΅Ρ€Π΅Π· Π²ΠΈΡ…Ρ–Π΄Π½Ρƒ сторону, Π°Π»Π΅ Ρ†Π΅ ΠΌΠΎΠΆΠ½Π° Π·ΠΌΡ–Π½ΠΈΡ‚ΠΈ Π·Π° допомогою &5Π’ΠΈΠΊΡ€ΡƒΡ‚ΠΊΠΈ&r. \nАбо ΠΊΠ»Π°Ρ†Π½ΠΈ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ– Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π½Π° Π²ΠΈΡ…Ρ–Π΄Π½Ρ–ΠΉ стороні, Π°Π±ΠΎ shift+ΠΊΠ»Π°Ρ†Π½ΠΈ Π½Π° сітці, Ρ‰ΠΎ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π°Ρ” стороні Π²ΠΈΡ…ΠΎΠ΄Ρƒ. \n\nΠ„ ΡƒΠ½Ρ–ΠΊΠ°Π»ΡŒΠ½Ρ– машини, які Π½Π΅ ΠΎΠ±Ρ€ΠΎΠ±Π»ΡΡŽΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ, Ρ‚Π°ΠΊΡ– як &3Насос&r, &3Π‘ΡƒΡ€&r, &3Π ΠΈΠ±Π°Π»ΠΊΠ°&r, &3ΠšΠΎΠ»Π΅ΠΊΡ‚ΠΎΡ€ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²&r Ρ‚ΠΎΡ‰ΠΎ. Π¦Ρ– машини Π²ΠΈΠ²Π°Π½Ρ‚Π°ΠΆΡƒΡŽΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Π½Π° свою &7Π›ΠΈΡ†ΡŒΠΎΠ²Ρƒ сторону&r (яка всС Ρ‰Π΅ ΠΏΠΎΠ·Π½Π°Ρ‡Π΅Π½Π° ΠΊΡ€Π°ΠΏΠΊΠΎΡŽ).", "quests.low_voltage.machine_auto_output_behaviour.task": "Π₯ΠΌ, як Ρ†Ρ–ΠΊΠ°Π²ΠΎ!", "quests.low_voltage.programmed_circuits.title": "ΠŸΡ€ΠΎΠ³Ρ€Π°ΠΌΠΎΠ²Π°Π½Ρ– схСми", @@ -2230,7 +2876,7 @@ "quests.low_voltage.lv_electroliser.desc.3": "&cΠ‘ΡƒΠ΄ΡŒ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½ΠΈΠΌ!&r Π§Π΅Ρ€Π΅Π· особливості Ρ€ΡƒΠ΄, прямС виплавлСння ΠΏΠΈΠ»Ρƒ Π² Π—Π»ΠΈΡ‚ΠΊΠΈ ΠΌΠΎΠΆΠ΅ Π΄Π°Ρ‚ΠΈ Π²ΠΈΡ‰ΠΈΠΉ Π²ΠΈΡ…Ρ–Π΄ ΠΌΠ΅Ρ‚Π°Π»Ρƒ, Π½Ρ–ΠΆ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·. Однак Ρ†Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ” Π²Ρ‚Ρ€Π°Ρ‚Ρƒ Ρ–Π½ΡˆΠΈΡ… ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π² Ρƒ ΠΏΠΈΠ»Ρƒ. Π’ΠΎΠ±Ρ– Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Π²ΠΈΡ€Ρ–ΡˆΠΈΡ‚ΠΈ, Ρ‰ΠΎ Π²Π°ΠΆΠ»ΠΈΠ²Ρ–ΡˆΠ΅: пряма Ρ†Ρ–Π½Π½Ρ–ΡΡ‚ΡŒ Ρ‡ΠΈ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π².", "quests.low_voltage.lv_mixer.title": "Π‘Π°Π·ΠΎΠ²ΠΈΠΉ Π—ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‡", "quests.low_voltage.lv_mixer.subtitle": "ΠœΡ–ΠΊΡΠ΅Ρ€ Π·ΠΌΡ–ΡˆΡƒΡ”...", - "quests.low_voltage.lv_mixer.desc": "Використання міксСра &6Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΡ€ΠΈΡΠΊΠΎΡ€ΠΈΡ‚ΡŒ&r процСс створСння ΠΊΠΎΠ»ΡŒΠΎΡ€ΠΎΠ²ΠΎΡ— сталі, особливо &4Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі&r для Ρ‚Π²ΠΎΡ—Ρ… корпусів машин. ΠΠ°Π²Ρ–Ρ‚ΡŒ якщо Π·Π°Ρ€Π°Π· Ρ‚ΠΎΠ±Ρ– Π·Π΄Π°Ρ”Ρ‚ΡŒΡΡ, Ρ‰ΠΎ Ρ†Π΅ Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ, Π·Π³ΠΎΠ΄ΠΎΠΌ Ρ‚ΠΈ Π·Ρ€ΠΎΠ·ΡƒΠΌΡ–Ρ”Ρˆ, Ρ‰ΠΎ Ρ†Π΅ &6Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΎ&r.", + "quests.low_voltage.lv_mixer.desc": "Використання міксСра &6Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΡ€ΠΈΡˆΠ²ΠΈΠ΄ΡˆΠΈΡ‚ΡŒ&r процСс виготовлСння ΠΊΠΎΠ»ΡŒΠΎΡ€ΠΎΠ²ΠΎΡ— сталі, особливо &4Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі&r для корпусів машин. ΠΠ°Π²Ρ–Ρ‚ΡŒ якщо Π·Π°Ρ€Π°Π· Π²Π°ΠΌ Π·Π΄Π°Ρ”Ρ‚ΡŒΡΡ, Ρ‰ΠΎ Π²Ρ–Π½ Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ β€” Π·Π³ΠΎΠ΄ΠΎΠΌ Π²Ρ–Π½ станС &6Π½Π΅Π·Π°ΠΌΡ–Π½Π½ΠΈΠΌ&r.\n\nΠ’ΠΈ Π·Π²ΠΈΠΊΠ»ΠΈ сплавляти ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ Π² Ρ‚ΠΈΠ³Π»Ρ–, Π°Π»Π΅ для всіх Π½ΠΎΠ²ΠΈΡ… (Π° Ρ‚Π°ΠΊΠΎΠΆ старих) сплавів Ρƒ GregTech ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΈΠΉ ΠΏΡ–Π΄Ρ…Ρ–Π΄ β€” Ρ†Π΅ &aΠ·ΠΌΡ–ΡˆΡƒΠ²Π°Ρ‚ΠΈ ΠΏΠΈΠ»&r, Π° ΠΏΠΎΡ‚Ρ–ΠΌ Π½Π°Π³Ρ€Ρ–Π²Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π΄ΠΎ Π·Π»ΠΈΡ‚ΠΊΡ–Π² Π°Π±ΠΎ витягувати Ρƒ вигляді Ρ€Ρ–Π΄ΠΈΠ½ΠΈ. НС Π·Π²Π΅Ρ€Ρ‚Π°ΠΉΡ‚Π΅ ΡƒΠ²Π°Π³ΠΈ Π½Π° Alloy Blast Smelter Ρƒ JEI β€” Π²Ρ–Π½ Π·β€™ΡΠ²ΠΈΡ‚ΡŒΡΡ лишС Π½Π° Ρ€Ρ–Π²Π½Ρ– &5EV&r.", "quests.low_voltage.lv_mixer.task": "Π’Ρ–Π΄ Create Π°Π±ΠΎ GregTech", "quests.low_voltage.soldering_alloy.title": "Паяльний сплав", "quests.low_voltage.soldering_alloy.subtitle": "Π£ ΠΌΠ΅Π½Π΅ Ρ” Π΄ΡƒΡˆΠ°, Π°Π»Π΅ я Π½Π΅ паяльник", @@ -2248,7 +2894,7 @@ "quests.low_voltage.t2_circuit_board.desc.2": "&l&3Π›ΠΎΡ€:&r&o Π£ GTCEu 1.12.2 Ρ†Ρ– Π΄Ρ€ΡƒΠΊΠΎΠ²Π°Π½Ρ– ΠΏΠ»Π°Ρ‚ΠΈ називалися &2Good Circuit Boards&f. НС зовсім Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½Π° Π½Π°Π·Π²Π°, Π°Π΄ΠΆΠ΅ Ρ—Ρ… &4Π΄ΠΎΠ²ΠΎΠ»Ρ– складно&r ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ.", "quests.low_voltage.lv_diode.title": "Π”Ρ–ΠΎΠ΄", "quests.low_voltage.lv_diode.subtitle": "НС піддавайся Π²ΠΏΠ»ΠΈΠ²Ρƒ EMI!", - "quests.low_voltage.lv_diode.desc": "НС Π΄Π°ΠΉ JEI сСбС ΠΎΠ±Π΄ΡƒΡ€ΠΈΡ‚ΠΈ... Π·Π°Ρ€Π°Π· Ρ” лишС ΠΎΠ΄ΠΈΠ½ ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΈΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ для Ρ†ΡŒΠΎΠ³ΠΎ ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ Π”Ρ–ΠΎΠ΄Π° β€” Ρ‚ΠΎΠΉ, Ρ‰ΠΎ використовує Ρ€Ρ–Π΄ΠΊΠ΅ скло. \n\nΠ”Ρ–ΠΎΠ΄ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ &4Π½Π΅ΠΏΡ€ΠΈΡ”ΠΌΠ½ΠΈΠΉ Ρ€Π΅Ρ†Π΅ΠΏΡ‚&r, Π°Π»Π΅ Π²ΠΎΠ½ΠΈ ΡΡ‚Π°Π½ΡƒΡ‚ΡŒ дСшСвшими Ρ‚Π° Π·Ρ€ΡƒΡ‡Π½Ρ–ΡˆΠΈΠΌΠΈ, як Ρ‚Ρ–Π»ΡŒΠΊΠΈ Ρ‚ΠΈ змоТСш ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ &eΠŸΠΎΠ»Ρ–Π΅Ρ‚ΠΈΠ»Π΅Π½&r. \n\nΠ¦Π΅ Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΎ для &dMV Π‘Ρ…Π΅ΠΌ&r.", + "quests.low_voltage.lv_diode.desc": "НС Π΄Π°ΠΉΡ‚Π΅ JEI вас ΠΎΠ±Π΄ΡƒΡ€ΠΈΡ‚ΠΈ... Π½Π°Ρ€Π°Π·Ρ– існує лишС Π΄Π²Π° ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΈΡ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ для Ρ†ΡŒΠΎΠ³ΠΎ ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ Π΄Ρ–ΠΎΠ΄Π° β€” Ρ‚Ρ–, Ρ‰ΠΎ Π· Ρ€Ρ–Π΄ΠΊΠΈΠΌ склом.\n\nΠ”Ρ–ΠΎΠ΄ΠΈ Π²Ρ–Π΄ΠΎΠΌΡ– своїм &4ΠΆΠ°Ρ…Π»ΠΈΠ²ΠΈΠΌ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠΌ&r, Π°Π»Π΅ Π· часом Π²ΠΎΠ½ΠΈ ΡΡ‚Π°Π½ΡƒΡ‚ΡŒ дСшСвшими ΠΉ Π·Ρ€ΡƒΡ‡Π½Ρ–ΡˆΠΈΠΌΠΈ, Ρ‰ΠΎΠΉΠ½ΠΎ Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅ &eΠŸΠΎΠ»Ρ–Π΅Ρ‚ΠΈΠ»Π΅Π½&r.\n\nΠ¦Π΅ Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΎ для &dMV ΠœΡ–ΠΊΡ€ΠΎΡΡ…Π΅ΠΌ&r.", "quests.low_voltage.1_mv_circuit.title": "ΠŸΠ΅Ρ€ΡˆΠΈΠΉ MV ΠšΠΎΠ½Ρ‚ΡƒΡ€!", "quests.low_voltage.1_mv_circuit.subtitle": "Π¦Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ ΠΌΠΈ Π²ΠΆΠ΅ Π½Π° Ρ€Ρ–Π²Π½Ρ– MV?", "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.", @@ -2290,7 +2936,7 @@ "quests.low_voltage.lv_nitrogen.task": "Азот", "quests.low_voltage.lv_arc_furnace.title": "Π”ΡƒΠ³ΠΎΠ²a ΠŸΡ–Ρ‡", "quests.low_voltage.lv_arc_furnace.subtitle": "Π”ΡƒΠ³ΠΎΠ²Π° ΠΏΡ–Ρ‡ Ρ‰Π΅ Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ Π±ΡƒΠ»Π° Ρ‚Π°ΠΊΠΎΡŽ Π³Π°Ρ€Π½ΠΎΡŽ", - "quests.low_voltage.lv_arc_furnace.desc.1": "&3Π”ΡƒΠ³ΠΎΠ²Π° ΠΏΡ–Ρ‡&r використовує Ρ‚Ρ€ΠΎΡ…ΠΈ &9кисню&r для Π²ΠΈΠΏΠ»Π°Π²ΠΊΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Ρ–Π½ΡˆΠΈΠΌ способом, Π½Ρ–ΠΆ Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρ– ΠΏΠ΅Ρ‡Ρ–. \n\nΠ’ΠΈ моТСш використовувати Ρ—Ρ— для ΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΎΠ³ΠΎ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &aΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π°&r, подвоєння &aскла&r Ρ‚Π° отримання &aΠ²Ρ–Π΄ΠΏΠ°Π»Π΅Π½ΠΎΠ³ΠΎ ΠΌΡ–Π΄Ρ–&r для Π΄Π΅ΡˆΠ΅Π²ΡˆΠΈΡ… Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½Π½ΠΈΡ… ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π². Π¦Π΅ Ρ‚Π°ΠΊΠΎΠΆ Ρ‚Π²Ρ–ΠΉ Π½ΠΎΠ²ΠΈΠΉ Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΉ спосіб створСння &4Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΠ³ΠΎ сталі&r Ρ‚Π° &1синього сталі&r Ρƒ Π·Π»ΠΈΡ‚ΠΊΠ°Ρ…! \n\nΠ’ΠΎΠ½Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅ пСрСробляти Ρ€Ρ–Π·Π½Ρ– ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ Ρ‚Π° машини Π½Π°Π·Π°Π΄ Ρƒ Ρ—Ρ…Π½Ρ– Π²ΠΈΡ…Ρ–Π΄Π½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ.", + "quests.low_voltage.lv_arc_furnace.desc.1": "&3Π”ΡƒΠ³ΠΎΠ²Π° ΠΏΡ–Ρ‡&r використовує Ρ‚Ρ€ΠΎΡ…ΠΈ &9Кисню&r, Ρ‰ΠΎΠ± пСрСплавляти ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Ρ–Π½ΡˆΠΈΠΌ способом, Π½Ρ–ΠΆ Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρ– ΠΏΠ΅Ρ‡Ρ–. \n\nΠ’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ застосовувати ΠΉΠΎΠ³ΠΎ для ΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΎΠ³ΠΎ отримання &aКованого Π·Π°Π»Ρ–Π·Π°&r, подвоєння &aΠ‘ΠΊΠ»Π°&r Ρ‚Π° доступу Π΄ΠΎ &aΠ’Ρ–Π΄ΠΏΠ°Π»Π΅Π½ΠΎΠ³ΠΎ ΠΌΡ–Π΄Ρ–&r для Π΄Π΅ΡˆΠ΅Π²ΡˆΠΈΡ… Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½Π½ΠΈΡ… ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π². \n\nΠ’Ρ–Π½ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅ пСрСробляти Ρ€Ρ–Π·Π½Ρ– ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ Ρ‚Π° машини Π½Π°Π·Π°Π΄ Ρƒ Ρ—Ρ…Π½Ρ– Π²ΠΈΡ…Ρ–Π΄Π½Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ.", "quests.low_voltage.lv_arc_furnace.desc.2": "&l&3Π›ΠΎΡ€:&r&o Π£ ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½Ρ–Ρ… вСрсіях GregTech Π±ΡƒΠ»ΠΈ Ρ– Π”ΡƒΠ³ΠΎΠ²Π° ΠΏΡ–Ρ‡, Ρ– &bПлазмова Π΄ΡƒΠ³ΠΎΠ²Π° ΠΏΡ–Ρ‡&f. Π£ Ρ‚Π°ΠΊΠΎΠΌΡƒ Ρ€Π°Π·Ρ–, Ρ‡ΠΎΠΌΡƒ Π± Π½Π΅ використовувати ΠΎΠ΄Π½Ρƒ ΠΌΠ°ΡˆΠΈΠ½Ρƒ для ΠΎΠ±ΠΎΡ…? \nНу, самС Ρ‚Π°ΠΊ ΠΌΠΈ Ρ– Π΄ΡƒΠΌΠ°Π»ΠΈ β€” Π°Π»Π΅ Π²Ρ€Π΅ΡˆΡ‚Ρ–-Ρ€Π΅ΡˆΡ‚ Π²ΠΈΡ€Ρ–ΡˆΠΈΠ»ΠΈ ΠΏΡ€ΠΈΠ±Ρ€Π°Ρ‚ΠΈ ΠΎΠ΄ΠΈΠ½ Ρ–Π· Π΄Π²ΠΎΡ… &bΠΏΠ»Π°Π·ΠΌΠΎΠ²ΠΈΡ…&f Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π². А ΠΏΠΎΡ‚Ρ–ΠΌ Ρ– Π΄Ρ€ΡƒΠ³ΠΈΠΉ &bΠΏΠ»Π°Π·ΠΌΠΎΠ²ΠΈΠΉ&f Ρ€Π΅Ρ†Π΅ΠΏΡ‚. \n\n&oΠšΠΎΡ€ΠΎΡ‚ΠΊΠΎ ΠΊΠ°ΠΆΡƒΡ‡ΠΈ, &bПлазмова Π΄ΡƒΠ³ΠΎΠ²Π° ΠΏΡ–Ρ‡&f &4Π·Π½ΠΈΠΊΠ»Π°&f. RIP.", "quests.low_voltage.lv_extractor.title": "Основи Ρ€Ρ–Π΄ΠΈΠ½Π½ΠΎΡ— Скстракції", "quests.low_voltage.lv_extractor.subtitle": "Екстрактор Скстрагує...", @@ -2309,10 +2955,10 @@ "quests.low_voltage.mold_rotor.desc": "Використовуй ΠΎΠ±ΠΈΠ΄Π²Ρ– Π½ΠΎΠ²Ρ– машини, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» Ρƒ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ, Π° ΠΏΠΎΡ‚Ρ–ΠΌ Π·Π°Ρ‚Π²Π΅Ρ€Π΄ΠΈΡ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π½Π°Π·Π°Π΄ Ρƒ Π ΠΎΡ‚ΠΎΡ€! Π¦Π΅ поєднання Π·Π½Π°Ρ‡Π½ΠΎ спрощує створСння Π ΠΎΡ‚ΠΎΡ€Ρ–Π² β€” &6Ρ‡ΠΎΡ‚ΠΈΡ€ΠΈ Π—Π»ΠΈΡ‚ΠΊΠΈ Π½Π° ΠΎΠ΄ΠΈΠ½ Π ΠΎΡ‚ΠΎΡ€&r. \n\nΠ’ΠΈ моТСш Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ‚Π΅ самС для &6Π¨Π΅ΡΡ‚Π΅Ρ€Π΅Π½ΡŒ&r Ρ‚Π° &6ΠœΠ°Π»ΠΈΡ… Π¨Π΅ΡΡ‚Π΅Ρ€Π΅Π½ΡŒ&r, які Π·Π³ΠΎΠ΄ΠΎΠΌ Π±ΡƒΠ΄ΡƒΡ‚ΡŒ Π·Π°ΠΌΡ–Π½Π΅Π½Ρ–, ΠΊΠΎΠ»ΠΈ Ρ‚ΠΈ ΡΡ‚Π²ΠΎΡ€ΠΈΡˆ &3MV ЕкструдСр&r. \n\n&9ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°:&r ДСякі ΠΌΠ΅Ρ‚Π°Π»ΠΈ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ Π²ΠΈΡ‰ΠΎΡ— Π½Π°ΠΏΡ€ΡƒΠ³ΠΈ, Π½Ρ–ΠΆ &7LV&r, для Екстракції Π Ρ–Π΄ΠΈΠ½ΠΈ, Ρ‚ΠΎΠΌΡƒ слідкуй Π·Π° Ρ€Ρ–Π²Π½Π΅ΠΌ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρƒ Π² EMI.", "quests.low_voltage.mold_plate.title": "Π›ΠΈΠ²Π°Ρ€Π½Π° Ρ„ΠΎΡ€ΠΌΠ° Ρ‚Π° Π“ΡƒΠΌΠΎΠ²Ρ– Листи", "quests.low_voltage.mold_plate.subtitle": "Π©Π΅ дСшСвша Π³ΡƒΠΌΠ°", - "quests.low_voltage.mold_plate.desc": "ΠŸΡ€ΠΈΠΏΠΈΠ½ΠΈ ΠΌΠ°Ρ€Π½ΡƒΠ²Π°Ρ‚ΠΈ час Ρ–Π· &6сплавною плавильною ΠΏΡ–Ρ‡Ρ‡ΡŽ&r. Π’ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Π°Π³Π°Ρ‚ΠΎ &6Π³ΡƒΠΌΠΎΠ²ΠΈΡ… листів&r, Π° ΠΏΡ–Π·Π½Ρ–ΡˆΠ΅ Ρ‚ΠΈ Ρ‚Π°ΠΊΠΎΠΆ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅Ρˆ Ρ—Ρ… для Ρ–Π½ΡˆΠΈΡ… Π²ΠΈΠ΄Ρ–Π² пластмас. \n\nМоТливо, Ρ‚ΠΈ Π΄ΡƒΠΌΠ°Ρ”Ρˆ, Ρ‰ΠΎ ΠΌΠΎΠΆΠ½Π° використовувати СкструдСр для створСння Π³ΡƒΠΌΠΎΠ²ΠΈΡ… листів, Π°Π»Π΅ &6Ρ‚Π²Π΅Ρ€Π΄ΠΎΡ‚Ρ–Π»ΡŒΠ½ΠΈΠΉ Ρ€Ρ–Π΄ΠΈΠ½Π½ΠΈΠΉ Ρ„ΠΎΡ€ΠΌΡƒΠ²Π°Ρ‡&r ΠΌΠΎΠΆΠ΅ Π½Π°Π±Π°Π³Π°Ρ‚ΠΎ Π±Ρ–Π»ΡŒΡˆΠ΅, \nΡ‚ΠΎΠ΄Ρ– як СкструдСр ΠΌΠ°ΠΉΠΆΠ΅ Π½Π΅ ΠΌΠ°Ρ” сСнсу Π΄ΠΎ &bMV&r.", + "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": "Π’Π΅Π»ΠΈΠΊΠ° частина прогрСсу Π² GregTech пов’язана Π· отриманням Π½ΠΎΠ²ΠΈΡ… ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π², які Π²ΠΈ Π±ΡƒΠ΄Π΅Ρ‚Π΅ використовувати для ΠΌΠΎΠ΄Π΅Ρ€Π½Ρ–Π·Π°Ρ†Ρ–Ρ— своїх машин Π°Π±ΠΎ відкриття вдосконалСних ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π². \n\nОдним Ρ–Π· Ρ‚Π°ΠΊΠΈΡ… ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π², Π· яким Π²ΠΈ зіткнСтСся, Ρ” &bΠœΠ΅Π»ΡŒΡ…Ρ–ΠΎΡ€&r β€” ΠΏΠΎΡ‡Π°Ρ‚ΠΎΠΊ Π΄ΠΎΠ²Π³ΠΎΡ— ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆΡ–. \nΠ¦Π΅ΠΉ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для створСння Π²Π°ΡˆΠΎΡ— ΠΏΠ΅Ρ€ΡˆΠΎΡ— &6Π•Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½ΠΎΡ— Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–&r, Ρ‰ΠΎ Ρ” Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΠΌ ΠΊΡ€ΠΎΠΊΠΎΠΌ Ρƒ Π²Π°ΡˆΠΎΠΌΡƒ промисловому Ρ€ΠΎΠ·Π²ΠΈΡ‚ΠΊΡƒ. \n\nНа щастя, Ρ†Π΅ΠΉ ΠΏΠ΅Ρ€ΡˆΠΈΠΉ ΠΊΡ€ΠΎΠΊ Π΄ΠΎΠ²ΠΎΠ»Ρ– простий: плавильник сплавів Π²ΠΏΠΎΡ€Π°Ρ”Ρ‚ΡŒΡΡ Ρ–Π· завданням. \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", @@ -2320,6 +2966,7 @@ "quests.low_voltage.lv_ebf.subtitle": "Одна Π· основних машин GregTech. Ми любимо Ρ—Ρ— вСликою.", "quests.low_voltage.lv_ebf.desc.1": "Π¦Π΅ΠΉ квСст ΠΏΠΎΡΡΠ½ΡŽΡ” Π±Π°Π·ΠΎΠ²ΠΈΠΉ ΠΏΡ€ΠΈΠ½Ρ†ΠΈΠΏ Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ &3Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠΏΠ΅Ρ‡Ρ–&r, Π° квСст ΠΏΠΎΡ€ΡƒΡ‡ Ρ–Π· Π½ΠΈΠΌ Ρ€ΠΎΠ·ΠΏΠΎΠ²Ρ–ΡΡ‚ΡŒ ΠΏΡ€ΠΎ ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΡƒ Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΡ‡Π½ΠΈΡ… ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π², які Ρ‚ΠΎΠ±Ρ– Ρ‚Π°ΠΊΠΎΠΆ Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ. ΠžΠ±ΠΎΠ²β€™ΡΠ·ΠΊΠΎΠ²ΠΎ ознайомся Π· Ρ‚ΠΈΠΌ квСстом.\n\nΠžΡ‚ΠΆΠ΅, &3Π•Π”ΠŸ&r β€” Ρ†Π΅ Ρ‚Π²Ρ–ΠΉ &eΠΏΠ΅Ρ€ΡˆΠΈΠΉ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½ΠΈΠΉ Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊ&r! Π’Ρ–Ρ‚Π°Ρ”ΠΌΠΎ. Π’ΠΎΠ½Π° Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π² ΠΏΡ€ΠΈ високих Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π°Ρ….\n\nΠ’ΠΈ познайомишся Π· Π•Π”ΠŸ, Ρ‰ΠΎΠ± виготовляти &aΠΠ»ΡŽΠΌΡ–Π½Ρ–ΠΉ&r Ρ– ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π΄ΠΎ &d&bΠ•Ρ€ΠΈ MV&r. Π’ΠΎΠ½Π° Ρ‚Π°ΠΊΠΎΠΆ дозволяє ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ &7Π‘Ρ‚Π°Π»ΡŒ&r швидшС, Π½Ρ–ΠΆ &6Π—Π²ΠΈΡ‡Π°ΠΉΠ½Π° ΠΏΡ–Ρ‡&r, Ρ‚ΠΎΠΆ Ρ‚ΠΈ Π½Π°Ρ€Π΅ΡˆΡ‚Ρ– моТСш Π΄Π΅ΠΌΠΎΠ½Ρ‚ΡƒΠ²Π°Ρ‚ΠΈ свою стару ΠΊΡƒΠ·Π½ΡŽ Π· TFC, якщо Π±Π°ΠΆΠ°Ρ”Ρˆ.", "quests.low_voltage.lv_ebf.desc.2": "Π’Π°Ρ€Ρ‚ΠΎ пам’ятати, Ρ‰ΠΎ Π•Π”ΠŸβ€” Ρ†Π΅ справТній Π²Π΅Π»Π΅Ρ‚Π΅Π½ΡŒ. ΠœΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Π° Π²ΠΈΡ‚Ρ€Π°Ρ‚Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ— для запуску Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρƒ ΡΡ‚Π°Π½ΠΎΠ²ΠΈΡ‚ΡŒ &9120 EU/t&r! Π¦Π΅ Ρ‚Ρ€ΠΎΡ…ΠΈ мСншС, Π½Ρ–ΠΆ ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡΡ‚ΡŒ 4 &7LV&r Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Ρ–Π² Π°Π±ΠΎ ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€Ρ–Π².\n\nМоТливо, Π²Π°Ρ€Ρ‚ΠΎ розглянути Π²Π°Ρ€Ρ–Π°Π½Ρ‚ створСння ΠΎΠΊΡ€Π΅ΠΌΠΎΡ— Π»Ρ–Π½Ρ–Ρ— ТивлСння, Π· ΠΎΠΊΡ€Π΅ΠΌΠΈΠΌΠΈ Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€Π°ΠΌΠΈ ΠΏΠΎΡ€ΡƒΡ‡ Ρ–Π· Π•Π”ΠŸ Ρ‚Π° Π±ΡƒΡ„Π΅Ρ€ΠΎΠΌ Π±Π°Ρ‚Π°Ρ€Π΅ΠΉ. Π‘ΡƒΠ΄ΡŒ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½ΠΈΠΉ β€” Π²Ρ‚Ρ€Π°Ρ‚ΠΈ Π² кабСлях ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ суттєвими.", + "quests.low_voltage.lv_ebf.desc.3": "Π’Π°ΡˆΠ° Π•Π”ΠŸ ΠΌΠ΅Ρ€Π΅Ρ…Ρ‚ΠΈΡ‚ΡŒ Ρ– Π½Π΅ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ” Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—? Π™ΠΌΠΎΠ²Ρ–Ρ€Π½ΠΎ, Π²ΠΈ зіткнулися Π· Π²Ρ‚Ρ€Π°Ρ‚ΠΎΡŽ кабСлю β€” ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°ΠΉΡ‚Π΅ Ρ€ΠΎΠ·Π΄Ρ–Π» ΠΏΡ€ΠΎ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΠΊΡƒ GregTech, Ρ‰ΠΎΠ± дізнатися Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΡ€ΠΎ Ρ†Π΅ΠΉ ΠΌΠ΅Ρ…Π°Π½Ρ–Π·ΠΌ.\n\nΠŸΠ΅Ρ€Π΅ΠΊΠΎΠ½Π°ΠΉΡ‚Π΅ΡΡ, Ρ‰ΠΎ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΈ Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Ρ– якомога Π±Π»ΠΈΠΆΡ‡Π΅ Π΄ΠΎ Π•Π‘ΠŸ, Ρ– використовуйтС Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΈΠΉ кабСль β€” ΠΌΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ 2Γ— олов’яний кабСль, Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½ΠΈΠΉ Ρ‚Π°ΠΊ, як ΠΏΠΎΠΊΠ°Π·Π°Π½ΠΎ Π½Π° Π·ΠΎΠ±Ρ€Π°ΠΆΠ΅Π½Π½Ρ– Π²ΠΈΡ‰Π΅.", "quests.low_voltage.multiblock_tech.title": "Π’Π΅Ρ…Π½Ρ–ΠΊΠΈ Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΎΠ²ΠΈΡ… структур", "quests.low_voltage.multiblock_tech.subtitle": "О, ΠΌΠΈ ΠΆ любимо ΠΌΡƒΠ»ΡŒΡ‚ΠΈΠ±Π»ΠΎΠΊΠΈ, ΠΏΡ€Π°Π²Π΄Π°?", "quests.low_voltage.multiblock_tech.desc": "Π¦Π΅ &6основи&r Ρ‚ΠΎΠ³ΠΎ, Ρ‰ΠΎ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ для ΠΏΠΎΠ±ΡƒΠ΄ΠΎΠ²ΠΈ Ρ‚Π²ΠΎΠ³ΠΎ ΠΏΠ΅Ρ€ΡˆΠΎΠ³ΠΎ &bΠ•Π”ΠŸ&r, Ρ…ΠΎΡ‡Π° Π²ΠΎΠ½Π° Π΄ΠΎΠ²ΠΎΠ»Ρ– Π³Π½ΡƒΡ‡ΠΊΠ° для Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½ΡŒ. НС Π·Π°Π±ΡƒΠ΄ΡŒ скористатися &6EMI&r, натиснути &6U&r Π½Π° ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π΅Ρ€Ρ– Ρ‚Π° Π½Π΅ соромся &6ΠΊΠ»Π°Ρ†Π°Ρ‚ΠΈ ΠΏΠΎ структурних Π±Π»ΠΎΠΊΠ°Ρ…&r, Ρ‰ΠΎΠ± ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ ΠΌΠΎΠΆΠ»ΠΈΠ²Ρ– Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ.\n\nΠ’Π°ΠΆΠ»ΠΈΠ²Π΅ зауваТСння: ΠΊΠΎΠΆΠ΅Π½ Π•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ люк ΠΌΠΎΠΆΠ΅ ΠΏΡ€ΠΈΠΉΠΌΠ°Ρ‚ΠΈ &a2A&r, Ρ‚ΠΎΠ±Ρ‚ΠΎ Π½Π° Ρ€Ρ–Π²Π½Ρ– &7LV&r Π²ΠΎΠ½ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ обробляти ΠΏΠΎ &a64 EU/t&r. Π— Π΄Π²ΠΎΠΌΠ° люками твоя &eΠ•Π”ΠŸ&r Π·ΠΌΠΎΠΆΠ΅ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ Π½Π° &a128 EU/t&r.\n\nΠ©ΠΎΠ± дізнатися Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΡ€ΠΎ Ρ†ΡŽ ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΡƒ, ΠΏΠ΅Ρ€Π΅Π³Π»ΡΠ½ΡŒ &eΠ ΠΎΠ·Π΄Ρ–Π» ΠΏΡ€ΠΎ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ GregTech&r, Π·ΠΎΠΊΡ€Π΅ΠΌΠ° ΡΠ΅ΠΊΡ†Ρ–ΡŽ &eΠ’ΠΈΡ‚Ρ€Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—&r.\n\nΠ‘Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π±Π°Π³Π°Ρ‚ΠΎ Ρ†Ρ–ΠΊΠ°Π²ΠΈΡ… ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊ, які ΠΌΠΎΠΆΡƒΡ‚ΡŒ здаватися складними, Π°Π»Π΅ Π½Π΅ Ρ…Π²ΠΈΠ»ΡŽΠΉΡΡ β€” Ρ‚ΠΎΠ±Ρ– Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π½Ρ–Ρ‡ΠΎΠ³ΠΎ Π½Π°Π΄Ρ‚ΠΎ складного Π½Π° Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ–. УсС ΠΏΡ€ΠΈΠΉΠ΄Π΅ Π· досвідом!", @@ -2340,6 +2987,15 @@ "quests.low_voltage.mv_hull.subtitle": "Π¦Π΅ ΠΉΠ΄Π΅ Π΄ΠΎΡΠΈΡ‚ΡŒ Π΄ΠΎΠ±Ρ€Π΅, залишилося лишС 7!", "quests.low_voltage.mv_hull.desc1": "ΠœΠΎΠ»ΠΎΠ΄Π΅Ρ†ΡŒ, Ρ‚Π΅ΠΏΠ΅Ρ€ Ρƒ Ρ‚Π΅Π±Π΅ Ρ” &bMV корпус машини&r, твоя ΠΏΠ΅Ρ€ΡˆΠ° &bMV схСма&r Ρ– Ρ‚Π²Ρ–ΠΉ ΠΏΠ΅Ρ€ΡˆΠΈΠΉ &6Π—Π±ΠΈΡ€Π°Ρ‡ схСм&r. \n\nΠ¦Π΅ ΡΡƒΡ‚ΡŒ &6GregTech&r: Π½Π° ΠΊΠΎΠΆΠ½ΠΎΠΌΡƒ Ρ€Ρ–Π²Π½Ρ– Ρ‚ΠΈ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈΠΌΠ΅Ρˆ Π½ΠΎΠ²Ρ– &6машини&r, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ Π½ΠΎΠ²Ρ– &6ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ&r Ρ‚Π° &6Ρ…Ρ–ΠΌΡ–ΠΊΠ°Ρ‚ΠΈ&r. Π’ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρˆ &5ΡΡ‚Ρ–Π»ΡŒΠΊΠΈ задоволСння&r, Ρ‰ΠΎ ΠΌΠΈ Π½Π°Π²Ρ–Ρ‚ΡŒ Ρ‚Ρ€ΠΎΡ…ΠΈ Π·Π°Π·Π΄Ρ€ΠΈΠΌΠΎ!", "quests.low_voltage.mv_hull.desc2": "ΠŸΠ΅Ρ€Ρˆ Π½Ρ–ΠΆ Π·Π°Π³Π»ΠΈΠ±Π»ΡŽΠ²Π°Ρ‚ΠΈΡΡ Π² &bMV&r, пам’ятай, Ρ‰ΠΎ Π² &6TFG&r Ρ‚ΠΈ моТСш використовувати &6Create&r \nдля зміцнСння своєї інфраструктури, якщо Π½Π΅ Ρ…ΠΎΡ‡Π΅Ρˆ Π½Π°Π΄Ρ‚ΠΎ покладатися Π½Π° GregTech. ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²Ρ– Π²Π°Π»ΠΈ Ρ‚Π° зубчасті колСса ΠΌΠ°ΡŽΡ‚ΡŒ Ρƒ 4 Ρ€Π°Π·ΠΈ Π±Ρ–Π»ΡŒΡˆΡƒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ Π½Π° навантаТСння, Π½Ρ–ΠΆ сталСві, Ρ‚ΠΎΠΆ Ρ‚ΠΈ змоТСш запускати всі свої машини Π½Π°Π±Π°Π³Π°Ρ‚ΠΎ швидшС!", + "quests.low_voltage.aluminium_greate.title": "ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ Greate", + "quests.low_voltage.aluminium_greate.subtitle": "Π’Π°ΠΊΠΎΠΆ Π²Ρ–Π΄ΠΎΠΌΠΈΠΉ як Π‘Π΅Ρ€Π΅Π΄Π½Ρ–ΠΉ БтрСс", + "quests.low_voltage.aluminium_greate.desc": "ΠœΠΈΠ½ΡƒΠ»ΠΎ Ρ‡ΠΈΠΌΠ°Π»ΠΎ часу Π²Ρ–Π΄ вашого ΠΎΡΡ‚Π°Π½Π½ΡŒΠΎΠ³ΠΎ оновлСння, Π°Π»Π΅ Ρ‚Π΅ΠΏΠ΅Ρ€ Ρƒ вас Ρ” доступ Π΄ΠΎ наступного рівня Greate ΡˆΠ΅ΡΡ‚Π΅Ρ€Π΅Π½ΡŒ Ρ‚Π° Π²Π°Π»Ρ–Π². Π―ΠΊ Ρ– Ρ€Π°Π½Ρ–ΡˆΠ΅, Π°Π»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²Ρ– ΠΌΠ°ΡŽΡ‚ΡŒ &bΡƒ Ρ‡ΠΎΡ‚ΠΈΡ€ΠΈ Ρ€Π°Π·ΠΈ&r Π±Ρ–Π»ΡŒΡˆΡƒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ Π½Π° навантаТСння, Π½Ρ–ΠΆ сталСві. \n\nΠŸΡ€ΠΎΠ΄ΠΎΠ²ΠΆΠ΅Π½Π½Ρ Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Π· Greate після Ρ†ΡŒΠΎΠ³ΠΎ ΠΌΠΎΠΌΠ΅Π½Ρ‚Ρƒ Ρ” Π΄ΡƒΠΆΠ΅ нСобов’язковим, Ρ– ΠΌΠΈ Ρ€Π°Π΄ΠΈΠΌΠΎ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π΄ΠΎ GregTech, Π°Π»Π΅ оновлСння ΠΌΠΎΠΆΠ΅ Π΄ΠΎΠΏΠΎΠΌΠΎΠ³Ρ‚ΠΈ Π²Π°ΠΌ «розспагСтизувати» дСякі старі схСми, якщо Π²ΠΈ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ ΠΉ Π½Π°Π΄Π°Π»Ρ– Ρ—Ρ… використовувати. \n\nΠ’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Ρ‰Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΌΠ°ΡΡˆΡ‚Π°Π±ΡƒΠ²Π°Ρ‚ΠΈ навантаТСння Π·Π° допомогою &eΠŸΠ°Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Π΄Π²ΠΈΠ³ΡƒΠ½Π°&r Π°Π±ΠΎ ΠΊΠΎΠ½Π²Π΅Ρ€Ρ‚ΡƒΠ²Π°Ρ‚ΠΈ EU Ρƒ SU Ρ‡Π΅Ρ€Π΅Π· &9Create Additions&r &eΠ•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ΄Π²ΠΈΠ³ΡƒΠ½&r.", + "quests.low_voltage.oil.title": "Π—Π½Π°ΠΉΡˆΠ»ΠΈ Π½Π°Ρ„Ρ‚Ρƒ Ρ€Π°Π½ΠΎ?", + "quests.low_voltage.oil.subtitle": "Для ΠΏΠ΅Ρ€Π΅Π²ΠΈΠΊΠΎΠ½Π°Π²Ρ†Ρ–Π² рівня LV", + "quests.low_voltage.oil.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ знайшли Ρ€ΡƒΠ΄ΠΈ Π½Π°Ρ„Ρ‚ΠΎΠ²ΠΈΡ… пісків Π°Π±ΠΎ Π½Π°Ρ„Ρ‚ΠΎΠ²Ρ– Π³Π΅ΠΉΠ·Π΅Ρ€ΠΈ (Π² пустСлях) ΠΏΡ–Π΄ час своїх ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆΠ΅ΠΉ, Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΡ‡Π°Ρ‚ΠΈ використовувати Ρ‚Ρ€ΠΎΡ…ΠΈ Ρ†ΡŒΠΎΠ³ΠΎ Π²ΠΆΠ΅ Π½Π° Ρ€Ρ–Π²Π½Ρ– LV. \n\nΠ’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π°Π±ΠΎ ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Ρ†Π΅ Π½Π° Π²Π°ΠΆΠΊΠ΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ ΠΉ Π·Π°Π»ΠΈΡ‚ΠΈ Ρƒ свої ΠΊΠΎΡ‚Π»ΠΈ, Π°Π±ΠΎ Ρ‰Π΅ ΠΊΡ€Π°Ρ‰Π΅ β€” використати для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Ρ‚Ρ€ΠΎΡ…ΠΈ &bΠŸΠΎΠ»Ρ–Π΅Ρ‚ΠΈΠ»Π΅Π½Ρƒ&r! \n\nΠ”Π΅Ρ‚Π°Π»Ρ– Ρ†ΡŒΠΎΠ³ΠΎ процСсу Π½Π°Π²Π΅Π΄Π΅Π½Ρ– Π² Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– MV, Π°Π»Π΅ Π²ΠΆΠ΅ Π½Π° Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ застосовувати ΠΏΠΎΠ»Ρ–Π΅Ρ‚ΠΈΠ»Π΅Π½ для створСння ΠΊΡ–Π»ΡŒΠΊΠΎΡ… Ρ€Π΅Ρ‡Π΅ΠΉ, Ρ‚Π°ΠΊΠΈΡ… як Π΄Π΅ΡˆΠ΅Π²ΡˆΡ– корпуси машин Ρ‚Π° Π΄Ρ–ΠΎΠ΄ΠΈ.", + "quests.low_voltage.glowstone.title": "ΠŸΠΎΡΡ‚Ρ–ΠΉΠ½Π΅ освітлСння", + "quests.low_voltage.glowstone.subtitle": "ΠžΠ±Ρ…Ρ–Π΄Π½ΠΈΠΉ спосіб винайдСння Π»Π°ΠΌΠΏΠΎΡ‡ΠΎΠΊ", + "quests.low_voltage.glowstone.desc": "Π¨ΡƒΠΊΠ°Ρ”Ρ‚Π΅ Π΄Π΅ΡˆΠ΅Π²Ρ–, постійні Π΄ΠΆΠ΅Ρ€Π΅Π»Π° світла? Π’Π΅ΠΏΠ΅Ρ€, ΠΊΠΎΠ»ΠΈ Ρƒ вас Ρ” LV Екстрактор (Π° Π½Π΅Π·Π°Π±Π°Ρ€ΠΎΠΌ Ρ– LV Π—Π°Ρ‚Π²Π΅Ρ€Π΄ΠΆΡƒΠ²Π°Ρ‡ Ρ€Ρ–Π΄ΠΈΠ½), Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π½Π°Ρ€Π΅ΡˆΡ‚Ρ– використати вСсь Ρ‚ΠΎΠΉ &6Π‘ΡΡŽΡ‡ΠΈΠΉ ΠΏΠΈΠ»&r, який знайшли Π² Π‘Π΅Π·ΠΎΠ΄Π½Ρ–. Закінчився? Π™ΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½Π° Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π² ΠœΡ–ΠΊΡΠ΅Ρ€Ρ–.\n\nΠ—Π°Π·ΠΈΡ€Π½Ρ–Ρ‚ΡŒ Ρƒ JEI, Ρ‰ΠΎΠ± ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ всі Π½ΠΎΠ²Ρ– Π΄ΠΆΠ΅Ρ€Π΅Π»Π° світла, які ΠΌΠΎΠΆΠ½Π° створити Π· Ρ€Ρ–Π΄ΠΊΠΎΠ³ΠΎ ΡΡΡŽΡ‡ΠΎΠ³ΠΎ камСню Π°Π±ΠΎ Π±Π»ΠΎΠΊΡ–Π² ΡΡΡŽΡ‡ΠΎΠ³ΠΎ камСню. Π£ GregTech Ρ‚Π°ΠΊΠΎΠΆ Ρ” Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ, які Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»ΡΡŽΡ‚ΡŒΡΡ Π· ΡΡΡŽΡ‡ΠΎΠ³ΠΎ ΠΏΠΈΠ»Ρƒ Π² Π·Π±ΠΈΡ€Π°Ρ‡Ρ–.\n\nБонус: Ρ€Ρ–Π΄ΠΊΠΈΠΉ ΡΡΡŽΡ‡ΠΈΠΉ ΠΊΠ°ΠΌΡ–Π½ΡŒ ΠΌΠΎΠΆΠ½Π° використовувати як нСскінчСннС ΠΏΠ°Π»ΠΈΠ²ΠΎ для Π»Π°ΠΌΠΏ!", "quests.medium_voltage": "&bMV&r - БСрСдня Напруга", "quests.medium_voltage.subtitle": "ЗанурСння Π² Π½Π°Ρ„Ρ‚ΠΎΡ…Ρ–ΠΌΡ–ΡŽ Ρ‚Π° вдосконалСння Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½Ρ–ΠΊΠΈ", "quests.medium_voltage.mv_machine_hull.title": "Ласкаво просимо Π΄ΠΎ MV!", @@ -2351,8 +3007,8 @@ "quests.medium_voltage.mv_miner.title": "АвтоматичнС Видобування", "quests.medium_voltage.mv_miner.subtitle": "Π’Π°ΠΊ Ρ‰ΠΎ Π²Π°ΠΌ Π½Π°Π±Ρ€ΠΈΠ΄Π»ΠΎ Π΄ΠΎΠ±ΡƒΠ²Π°Ρ‚ΠΈ самому?", "quests.medium_voltage.mv_miner.desc.1": "Ця Π΄ΠΎΠ±Ρ€Π° Π΄ΡƒΡˆΠ°&r Π±ΡƒΠ΄Π΅ Π΄ΠΎΠ±ΡƒΠ²Π°Ρ‚ΠΈ Ρ€ΡƒΠ΄ΠΈ для Ρ‚Π΅Π±Π΅, якщо Ρ—Ρ— розмістити Π½Π°Π΄ Тилою. \n\nΠ’Π΅Ρ€Ρ‚ΠΈΠΊΠ°Π»ΡŒΠ½ΠΈΠΉ Π΄Ρ–Π°ΠΏΠ°Π·ΠΎΠ½ Π½Π΅ΠΎΠ±ΠΌΠ΅ΠΆΠ΅Π½ΠΈΠΉ ΠΏΡ–Π΄ ΠΌΠ°ΠΉΠ½Π΅Ρ€ΠΎΠΌ. Π“ΠΎΡ€ΠΈΠ·ΠΎΠ½Ρ‚Π°Π»ΡŒΠ½ΠΈΠΉ Π΄Ρ–Π°ΠΏΠ°Π·ΠΎΠ½ Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ”Ρ‚ΡŒΡΡ Ρƒ ΠΏΡ–Π΄ΠΊΠ°Π·Ρ†Ρ–. \n\nΠ’Π°Ρ€Ρ–Π°Π½Ρ‚ &bMV&r ΠΌΠΎΠΆΠ΅ Π½Π΅ ΠΌΠ°Ρ‚ΠΈ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎΠ³ΠΎ Π΄Ρ–Π°ΠΏΠ°Π·ΠΎΠ½Ρƒ для Π²ΠΈΠ΄ΠΎΠ±ΡƒΡ‚ΠΊΡƒ всієї ΠΆΠΈΠ»ΠΈ, Π°Π»Π΅ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ &6HV&r ΠΌΠ°Ρ”, Ρ‚ΠΎΠΌΡƒ ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ Π²Π°Ρ€Ρ‚ΠΎ Π·Π°Ρ‡Π΅ΠΊΠ°Ρ‚ΠΈ. ΠžΡ‚Ρ€ΠΈΠΌΠ°ΠΉ &eΠ±ΡƒΠ΄ΡŒ-який&r, Ρ‰ΠΎΠ± Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ Ρ†Π΅ завдання.", - "quests.medium_voltage.mv_miner.desc.2": "Π’ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ &9ЕнСргія&r. &aЗарядТСні Π‘Π°Ρ‚Π°Ρ€Π΅Ρ—&r ΠΌΠΎΠΆΡƒΡ‚ΡŒ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ, Π°Π»Π΅ Π²ΠΎΠ½ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π²Π»Π°ΡΡ‚ΠΈΠ²Ρ–ΡΡ‚ΡŒ швидко розрядТатися, Ρ‰ΠΎ Ρ‚Ρ€ΠΎΡ…ΠΈ Π½Π΅Π·Ρ€ΡƒΡ‡Π½ΠΎ. \n\nНайкраща рСкомСндація β€” використовувати Π·Π°ΠΏΠΎΠ²Π½Π΅Π½Ρƒ &3Π‘ΠΎΡ‡ΠΊΡƒ&r Π· якимось ΠΏΠ°Π»ΠΈΠ²ΠΎΠΌ &7(якщо Ρ‚ΠΈ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρˆ ΠŸΠ°Ρ€, Ρ†Π΅ Π½Π΅ ΡΠΏΡ€Π°Ρ†ΡŽΡ”!)&r Ρ‚Π° &3Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€&r. \n\nРозмісти Π‘ΠΎΡ‡ΠΊΡƒ Π½Π°Π΄ Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠΌ Ρ– ΠΊΠ»Π°Ρ†Π½ΠΈ ΠΏΠΎ Π½ΡŒΠΎΠΌΡƒ &5Киянкою&r, Ρ‰ΠΎΠ± Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΠΈ ΠΏΠ°Π»ΠΈΠ²ΠΎ Π² Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€.", - "quests.medium_voltage.mv_miner.desc.3": "&cΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°:&r НС Π·Π°Π±ΡƒΠ΄ΡŒ &dΠ·Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ Ρ‡Π°Π½ΠΊΠΈ&r всіх 9 ΡˆΠΌΠ°Ρ‚ΠΊΡ–Π² Ρ€ΡƒΠ΄Π½ΠΎΡ— ΠΆΠΈΠ»ΠΈ &7(Π²Ρ–Π΄ΠΊΡ€ΠΈΠΉ ΠΊΠ°Ρ€Ρ‚Ρƒ, Π·Π°Ρ…ΠΎΠΏΠΈ Ρ‡Π°Π½ΠΊΠΈ Π·Π° допомогою Ctrl + Π›ΠšΠœ Ρ– ΡƒΠ²Ρ–ΠΌΠΊΠ½ΠΈ примусовС завантаТСння після Ρ—Ρ… захоплСння)&r. \n\n&9ΠŸΠΎΡ€Π°Π΄Π°:&r Π’ΠΈ моТСш використовувати Π°Π±ΠΎ &3ME Π‘ΠΊΡ€ΠΈΠ½ΡŽ&r, Π°Π±ΠΎ &3GT Π―Ρ‰ΠΈΠΊ&r як Π²ΠΈΡ…Ρ–Π΄Π½ΠΈΠΉ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€, Ρ‰ΠΎΠ± Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ транспортування Ρ€ΡƒΠ΄ Π΄ΠΎΠ΄ΠΎΠΌΡƒ ΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΈΠΌ. &3ME Бкриня&r ΠΌΠΎΠΆΠ½Π° ΠΆΠΈΠ²ΠΈΡ‚ΠΈ Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π²Ρ–Π΄ EU, Π°Π»Π΅ Ρ†Π΅ Π±ΡƒΠ΄Π΅ доступно Π½Π΅ Π²Ρ–Π΄Ρ€Π°Π·Ρƒ.", + "quests.medium_voltage.mv_miner.desc.2": "Π’Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ &9ЕнСргія&r. &aЗарядТСні Π±Π°Ρ‚Π°Ρ€Π΅Ρ—&r ΠΌΠΎΠΆΡƒΡ‚ΡŒ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ, Π°Π»Π΅ Π²ΠΎΠ½ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π²Π»Π°ΡΡ‚ΠΈΠ²Ρ–ΡΡ‚ΡŒ швидко розрядТатися, Ρ‰ΠΎ Ρ‚Ρ€ΠΎΡ…ΠΈ Π½Π΅Π·Ρ€ΡƒΡ‡Π½ΠΎ. \n\nНаша Π³ΠΎΠ»ΠΎΠ²Π½Π° ΠΏΠΎΡ€Π°Π΄Π° β€” використати Π·Π°ΠΏΠΎΠ²Π½Π΅Π½Ρƒ &3Π‘ΠΎΡ‡ΠΊΡƒ&r Ρ–Π· якимось ΠΏΠ°Π»ΠΈΠ²ΠΎΠΌ &7(якщо Π²ΠΈ використовуєтС ΠΏΠ°Ρ€Ρƒ β€” Π½Π΅ ΡΠΏΡ€Π°Ρ†ΡŽΡ”!)&r Ρ‚Π° &3Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€&r. \n\nΠ ΠΎΠ·ΠΌΡ–ΡΡ‚Ρ–Ρ‚ΡŒ Π±ΠΎΡ‡ΠΊΡƒ Π½Π°Π΄ Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€ΠΎΠΌ Ρ– ΠΊΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ ΠΏΠΎ Π½ΡŒΠΎΠΌΡƒ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ– Π·Π° допомогою &5Киянки&r Π°Π±ΠΎ &5Π’ΠΈΠΊΡ€ΡƒΡ‚ΠΊΠΈ&r, Ρ‰ΠΎΠ± Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‚ΠΈ ΠΏΠ°Π»ΠΈΠ²ΠΎ Π² Π³Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€.", + "quests.medium_voltage.mv_miner.desc.3": "&cΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°:&r НС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ &dΠ·Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ Ρ‡Π°Π½ΠΊΠΈ&r усіх 9 Ρ‡Π°Π½ΠΊΡ–Π² Ρ€ΡƒΠ΄Π½ΠΎΡ… ΠΏΠΎΠΊΠ»Π°Π΄Ρ–Π² &7(Π²Ρ–Π΄ΠΊΡ€ΠΈΠΉΡ‚Π΅ ΠΊΠ°Ρ€Ρ‚Ρƒ, Π²ΠΈΠ΄Ρ–Π»Ρ–Ρ‚ΡŒ Ρ‡Π°Π½ΠΊΠΈ Π·Π° допомогою ctrl + Π»Ρ–Π²ΠΈΠΉ ΠΊΠ»Ρ–ΠΊ Ρ‚Π° ΡƒΠ²Ρ–ΠΌΠΊΠ½Ρ–Ρ‚ΡŒ примусовС завантаТСння після Ρ—Ρ… захоплСння)&r. \n\n&9ΠŸΠΎΡ€Π°Π΄Π°:&r Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використати &3ME ΡΠΊΡ€ΠΈΠ½ΡŽ&r, &3Рюкзак&r Π°Π±ΠΎ &3GT ящик&r як Π²ΠΈΡ…Ρ–Π΄Π½ΠΈΠΉ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€, Ρ‰ΠΎΠ± спростити транспортування Ρ€ΡƒΠ΄ΠΈ Π΄ΠΎΠ΄ΠΎΠΌΡƒ. Π”ΠΎ Ρ€Π΅Ρ‡Ρ–, &3ME ΡΠΊΡ€ΠΈΠ½ΡŽ&r ΠΌΠΎΠΆΠ½Π° ΠΆΠΈΠ²ΠΈΡ‚ΠΈ Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π²Ρ–Π΄ EU.", "quests.medium_voltage.mv_miner.task": "Π‘ΡƒΠ΄ΡŒ-який Π±ΡƒΡ€", "quests.medium_voltage.mv_component.title": "ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ MV", "quests.medium_voltage.mv_component_.subtitle": "НСнавидів ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Ρ†Π΅ Π½Π° ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎΠΌΡƒ Ρ€Ρ–Π²Π½Ρ–?", @@ -2360,10 +3016,10 @@ "quests.medium_voltage.electrolyzer.title": "MV Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·Π΅Ρ€", "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.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&7Π† ΠΌΠΈ Π½Π΅ ΡˆΠΊΠΎΠ΄ΡƒΡ”ΠΌΠΎ.&r", "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_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.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Π£ Π±ΡƒΠ΄ΡŒ-якому Π²ΠΈΠΏΠ°Π΄ΠΊΡƒ, Ρ†Π΅ Π½Π°Π΄Ρ–ΠΉΠ½Π° машина, Ρ– Π²ΠΎΠ½Π° Π½Π΅ Π½Π°Π΄Ρ‚ΠΎ Π΄ΠΎΡ€ΠΎΠ³Π°. ΠŸΠΎΠ±ΡƒΠ΄ΡƒΠΉ Ρ—Ρ—, ΠΊΠΎΠ»ΠΈ ΠΌΠ°Ρ‚ΠΈΠΌΠ΅Ρˆ Ρ‚Ρ€ΠΎΡ…ΠΈ Π²Ρ–Π»ΡŒΠ½ΠΎΠ³ΠΎ часу.", @@ -2372,7 +3028,7 @@ "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.1": "ΠŸΡ€ΠΈΠ²Ρ–Ρ‚ Ρ– ласкаво просимо Π΄ΠΎ &bMV Π’ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π•Π½Π΅Ρ€Π³Ρ–Ρ—&r. \n\nΠ£ Ρ†ΡŒΠΎΠΌΡƒ Π·Π°Π²Π΄Π°Π½Π½Ρ– ΠΌΠΈ розглянСмо Ρ€Ρ–Π·Π½Ρ– Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ, які Π΄ΠΎΠΏΠΎΠΌΠΎΠΆΡƒΡ‚ΡŒ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ Ρ€ΠΎΠ±ΠΎΡ‚Ρƒ Ρ‚Π²ΠΎΡ—Ρ… &bMV машин&r Π±Π΅Π·ΠΏΠ΅Ρ€Π΅Π±Ρ–ΠΉΠ½ΠΎ. \n\nМи Π½Π΅ Π±ΡƒΠ΄Π΅ΠΌΠΎ розглядати Ρ†Π΅ Π² ΠΊΠΎΠΆΠ½ΠΎΠΌΡƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ–, Ρ‚ΠΎΠΌΡƒ настійно Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ Ρ‚ΠΎΠ±Ρ– &aΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Ρ‚ΠΈ ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΈΠΉ Ρ€ΠΎΠ·Π΄Ρ–Π» ΠΏΡ€ΠΎ Π•Π½Π΅Ρ€Π³Ρ–ΡŽ GregTech&r, Ρ‰ΠΎΠ± глибшС Π·Ρ€ΠΎΠ·ΡƒΠΌΡ–Ρ‚ΠΈ, як усС ΠΏΡ€Π°Ρ†ΡŽΡ”. \n\nА ΠΏΠΎΠΊΠΈ Ρ‰ΠΎ ось Ρ‚Π²ΠΎΡ— &aΡ‚Ρ€ΠΈ основні Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ&r: \n\n&7- &bВикористовуй MV Π“Π΅Π½Π΅Ρ€Π°Ρ‚ΠΎΡ€&r для прямого Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &bMV-рівня Π΅Π½Π΅Ρ€Π³Ρ–Ρ—&r. \n\n&7- &bΠŸΡ–Π΄Π²ΠΈΡ‰ΡƒΠΉ ΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡΡ‚ΡŒ &7LV&r Π·Π° допомогою трансформаторів&r, Π· &e4:1 ΡΠΏΡ–Π²Π²Ρ–Π΄Π½ΠΎΡˆΠ΅Π½Π½ΡΠΌ&r ΠΌΡ–ΠΆ &7LV&r Ρ‚Π° &bMV&r. \n\n&7- &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.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ΠžΠΊΡ€Ρ–ΠΌ Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ машин Π½Π° Ρ€Ρ–Π·Π½ΠΈΡ… рівнях Π½Π°ΠΏΡ€ΡƒΠ³ΠΈ, Врансформатори корисні для ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Ρ– Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π½Π° Π²Π΅Π»ΠΈΠΊΡ– відстані, ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ Π²Ρ‚Ρ€Π°Ρ‚ΠΈ Π² кабСлях ΠΌΠ΅Π½ΡˆΡ– ΠΏΡ€ΠΈ Π²ΠΈΡ‰ΠΈΡ… Π½Π°ΠΏΡ€ΡƒΠ³Π°Ρ…. Π―ΠΊ Ρ– Π² Ρ€Π΅Π°Π»ΡŒΠ½ΠΎΠΌΡƒ ΠΆΠΈΡ‚Ρ‚Ρ–!", @@ -2387,7 +3043,7 @@ "quests.medium_voltage.mv_batteries.desc": "&bMV&r Π‘Π°Ρ‚Π°Ρ€Π΅Ρ— ΡΠΏΠΎΠ΄ΠΎΠ±Π°ΡŽΡ‚ΡŒΡΡ Ρ‚ΠΎΠ±Ρ–, якщо Ρ‚ΠΈ Ρ…ΠΎΡ‡Π΅Ρˆ Π±ΡƒΡ„Π΅Ρ€ΠΈΠ·ΡƒΠ²Π°Ρ‚ΠΈ Π•Π½Π΅Ρ€Π³Ρ–ΡŽ, Ρ‚Π°ΠΊ само як &7LV&r. \n\nΠ’Π°Ρ€Ρ‚Ρ–ΡΡ‚ΡŒ Ρƒ &aНатрії&r, &aΠ›Ρ–Ρ‚Ρ–Ρ—&r Π°Π±ΠΎ &aΠšΠ°Π΄ΠΌΡ–Ρ—&r зростає Π΄ΠΎ 8 ΠΏΠΈΠ»Ρƒ, Ρ‚ΠΎΠΌΡƒ Π²Π°Ρ€Ρ‚ΠΎ використовувати Ρ‚Π΅, Ρ‡ΠΎΠ³ΠΎ Ρƒ Ρ‚Π΅Π±Π΅ Π½Π°ΠΉΠ±Ρ–Π»ΡŒΡˆΠ΅. Різниця Π² ємності Π½Π΅ &7ВАК&r Π²Π΅Π»ΠΈΠΊΠ°, Π·Ρ€Π΅ΡˆΡ‚ΠΎΡŽ! \n\nΠžΡ‚Ρ€ΠΈΠΌΠ°ΠΉ &eΠ±ΡƒΠ΄ΡŒ-яку&r Π‘Π°Ρ‚Π°Ρ€Π΅ΡŽ, Ρ‰ΠΎΠ± Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ Завдання.", "quests.medium_voltage.mv_steel_alloy.title": "Π‘Ρ‚Π°Π»Π΅Π²Ρ– Π‘ΠΏΠ»Π°Π²ΠΈ", "quests.medium_voltage.mv_steel_alloy.subtitle": "Π—Π°Π³Π°Ρ€Ρ‚ΡƒΠΉ своє сСрцС", - "quests.medium_voltage.mv_steel_alloy.desc": "Π’Π°Π½Π°Π΄Ρ–Ρ”Π²Π° ΡΡ‚Π°Π»ΡŒ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Π° Π² Π½Π΅Π²Π΅Π»ΠΈΠΊΠΈΡ… ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚ΡΡ… Ρƒ прогрСсії. Π’ΠΎΠ½Π° &6ΠΌΠ°ΠΉΠΆΠ΅ Π²Ρ‡Π΅Ρ‚Π²Π΅Ρ€ΠΎ ΠΌΡ–Ρ†Π½Ρ–ΡˆΠ°&r Π·Π° Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρƒ ΡΡ‚Π°Π»ΡŒ, якщо Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Π² інструмСнтах GregTech. Π’Π°Π½Π°Π΄Ρ–ΠΉ Π΄ΠΎΠ±ΡƒΠ²Π°Ρ”Ρ‚ΡŒΡΡ Π· &aΠ’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΎΠ³ΠΎ ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚Ρƒ&r, який Ρ‚ΠΈ ΠΌΡ–Π³ зустріти Ρƒ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚ΠΎΠ²ΠΈΡ… ΠΆΠΈΠ»Π°Ρ…. \n\nΠ†Π½ΡˆΡ– сталСві сплави Π²ΠΊΠ»ΡŽΡ‡Π°ΡŽΡ‚ΡŒ Биню Π‘Ρ‚Π°Π»ΡŒ, Π§Π΅Ρ€Π²ΠΎΠ½Ρƒ Π‘Ρ‚Π°Π»ΡŒ Ρ‚Π° Π§ΠΎΡ€Π½Ρƒ Π‘Ρ‚Π°Π»ΡŒ! \n\nΠ’Ρ–Π·ΡŒΠΌΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ Π‘ΠΈΠ½ΡŒΠΎΡ— Π‘Ρ‚Π°Π»Ρ– Π±Π΅Π·ΠΊΠΎΡˆΡ‚ΠΎΠ²Π½ΠΎ β€” Π²ΠΎΠ½Π° Π²Π΄Π²Ρ–Ρ‡Ρ– ΠΌΡ–Ρ†Π½Ρ–ΡˆΠ° Π·Π° Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρƒ ΡΡ‚Π°Π»ΡŒ.", + "quests.medium_voltage.mv_steel_alloy.desc": "Π’Π°Π½Π°Π΄Ρ–Ρ”Π²Π° ΡΡ‚Π°Π»ΡŒ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Π° Π² Π½Π΅Π²Π΅Π»ΠΈΠΊΠΈΡ… ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚ΡΡ… для прогрСсу. Π’ΠΎΠ½Π° &6ΠΌΠ°ΠΉΠΆΠ΅ Π² Ρ‡ΠΎΡ‚ΠΈΡ€ΠΈ Ρ€Π°Π·ΠΈ ΠΌΡ–Ρ†Π½Ρ–ΡˆΠ°&r Π·Π° ΡΡ‚Π°Π»ΡŒ, якщо Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Π² інструмСнтах GregTech. Π’Π°Π½Π°Π΄Ρ–ΠΉ ΠΏΠΎΡ…ΠΎΠ΄ΠΈΡ‚ΡŒ Ρ–Π· &aΠ’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΎΠ³ΠΎ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚Ρƒ&r, який Π²ΠΈ ΠΌΠΎΠ³Π»ΠΈ зустріти Ρƒ ΠΏΠΎΠΊΠ»Π°Π΄Π°Ρ… ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚Ρƒ.", "quests.medium_voltage.pyrolyse.title": "ΠŸΡ–Ρ€ΠΎΠ»Ρ–Π·Π½Π° ΠŸΡ–Ρ‡", "quests.medium_voltage.pyrolyse.subtitle": "Π’Π΅Ρ€ΠΌΡ–Ρ‡Π½ΠΈΠΉ Π ΠΎΠ·ΠΊΠ»Π°Π΄", "quests.medium_voltage.pyrolyse.desc.1": "&3ΠŸΡ–Ρ€ΠΎΠ»Ρ–Π·Π½Π° ΠŸΡ–Ρ‡&r β€” Ρ†Π΅ Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½ΠΈΠΉ Π°Π½Π°Π»ΠΎΠ³ &3ΠšΠΎΠΊΡΠΎΠ²ΠΎΡ— ΠŸΠ΅Ρ‡Ρ–&r. Π’ΠΎΠ½Π° ΠΌΠΎΠΆΠ΅ виробляти &9КоксовС Вугілля&r Ρ‚Π° &9Π”Π΅Ρ€Π΅Π²Π½Π΅ Вугілля&r Π· ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΠΌ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠΌ &9ΠšΡ€Π΅ΠΎΠ·ΠΎΡ‚ΠΎΠΌ&r, як Ρ– Ρ€Π°Π½Ρ–ΡˆΠ΅, Π°Π»Π΅ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠ°Ρ” Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Ρ– &6ΠžΡ€Π³Π°Π½Ρ–Ρ‡Π½Ρ– ΠŸΠΎΠ±Ρ–Ρ‡Π½Ρ– ΠŸΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ&r, Π½Π°ΠΉΠΊΠΎΡ€ΠΈΡΠ½Ρ–ΡˆΠΈΠΌ Π· яких Ρ” &aΠ”Π΅Ρ€Π΅Π²Π½ΠΈΠΉ Π”ΡŒΠΎΠ³ΠΎΡ‚ΡŒ&r. \n\nΠ©Π΅ ΠΎΠ΄Π½ΠΈΠΌ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΎΠΌ Ρ” &aБіомаса&r, яка Π·Π°Ρ€Π°Π· Ρ” Π±Ρ–Π»ΡŒΡˆ Π°ΠΊΡ‚ΡƒΠ°Π»ΡŒΠ½ΠΎΡŽ для Ρ‚Π²ΠΎΠ³ΠΎ прогрСсу.", @@ -2399,7 +3055,7 @@ "quests.medium_voltage.mv_fluid_rig.desc.1": "Володіння &3Π Ρ–Π΄ΠΈΠ½Π½ΠΎΡŽ Π‘ΡƒΡ€ΠΎΠ²ΠΎΡŽ Π£ΡΡ‚Π°Π½ΠΎΠ²ΠΊΠΎΡŽ&r β€” Ρ†Π΅ Π·Π½Π°Ρ‡Π½Π° інвСстиція, Π°Π»Π΅ Π²ΠΎΠ½Π° Ρ” &oΠ±Π΅Π·ΠΏΡ€Π΅Ρ‡Π½ΠΎ&r Π½Π°ΠΉΠ²Π°ΠΆΠ»ΠΈΠ²Ρ–ΡˆΠΈΠΌ &6Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎΠΌ Нафти&r. \n\nΠ’ΠΎΠ½Π° ΠΊΠ°Ρ‡Π°Ρ” Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Π·-ΠΏΡ–Π΄ самої Π•ΠΎΡ€Ρ–Π½Π½ΠΎΡ— ΠΏΠΎΡ€ΠΎΠ΄ΠΈ. Π—Π²Π΅Ρ€Π½ΠΈ ΡƒΠ²Π°Π³Ρƒ, Ρ‰ΠΎ Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Ρ‚Π°ΠΌ насправді Π½Π΅ΠΌΠ°Ρ” β€” Π²ΠΎΠ½ΠΈ лишС Ρ–ΠΌΡ–Ρ‚ΡƒΡŽΡ‚ΡŒΡΡ. \n\nΠ Ρ–Π΄ΠΈΠ½Π½Ρ– ΠΆΠΈΠ»ΠΈ Π·Π±Π΅Ρ€Ρ–Π³Π°ΡŽΡ‚ΡŒΡΡ Ρƒ &cΡ€Π΅Π³Ρ–ΠΎΠ½Π°Ρ… Ρ€ΠΎΠ·ΠΌΡ–Ρ€ΠΎΠΌ Π· Ρ‡Π°Π½ΠΊΠΈ&r. КоТна ΠΆΠΈΠ»Π° ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ Ρ€Ρ–Π·Π½Ρƒ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ, Π°Π»Π΅ Π·Π΄Π΅Π±Ρ–Π»ΡŒΡˆΠΎΠ³ΠΎ Ρ†Π΅ Ρ€Ρ–Π·Π½Ρ– Ρ‚ΠΈΠΏΠΈ Нафти. \n\nΠ’ΠΈ ΠΏΠΎΠΊΠΈ Ρ‰ΠΎ Π½Π΅ моТСш ΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΈΡ‚ΠΈ Ρ€ΠΎΠ·Π²Ρ–Π΄ΠΊΡƒ Ρ€Ρ–Π΄ΠΈΠ½Π½ΠΈΡ… ΠΆΠΈΠ» &oΠΏΠΎΠΊΠΈΡ‰ΠΎ&r β€” Ρ†Π΅ станС доступним Π½Π° Ρ€Ρ–Π²Π½Ρ– &6HV&r.", "quests.medium_voltage.mv_fluid_rig.desc.2": "КоТна ΠΆΠΈΠ»Π° Π³Π΅Π½Π΅Ρ€ΡƒΡ”Ρ‚ΡŒΡΡ Π· Ρ€Ρ–Π·Π½ΠΎΡŽ базовою ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŽ. Π—Π°Π·Π²ΠΈΡ‡Π°ΠΉ Ρ†Π΅ Π²Ρ–Π΄ &d150L&r Π΄ΠΎ &d300L Π·Π° сСкунду&r. \n\nΠŸΡ€ΠΈ виснаТСнні Ρ€Ρ–Π΄ΠΈΠ½Π½Ρ– ΠΆΠΈΠ»ΠΈ поступово Π²ΠΈΡ‡Π΅Ρ€ΠΏΡƒΡŽΡ‚ΡŒΡΡ. Π¦Π΅ ΠΏΡ€ΠΈΠ·Π²ΠΎΠ΄ΠΈΡ‚ΡŒ Π΄ΠΎ змСншСння продуктивності Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Π· часом, ΠΏΠΎΠΊΠΈ Π²ΠΎΠ½Π° Π½Π΅ досягнС рівня виснаТСння. Π£ Ρ†Π΅ΠΉ ΠΌΠΎΠΌΠ΅Π½Ρ‚ Ρ‚ΠΎΠ±Ρ– слід пСрСмістити Установку Π΄ΠΎ Ρ–Π½ΡˆΠΎΡ— ΠΆΠΈΠ»ΠΈ. \n\n&3Π‘Π°Π·ΠΎΠ²Π° Π Ρ–Π΄ΠΈΠ½Π½Π° Π‘ΡƒΡ€ΠΎΠ²Π° Установка&r ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈΠΌΠ΅ 100 000 ΠΎΠΏΠ΅Ρ€Π°Ρ†Ρ–ΠΉ (ΠΏΠΎ 1 сСкунді Π½Π° ΠΎΠΏΠ΅Ρ€Π°Ρ†Ρ–ΡŽ) Π΄ΠΎ виснаТСння. Π¦Π΅ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ для &6Π±Ρ–Π»ΡŒΡˆ Π½Ρ–ΠΆ 10 000&r Π²Ρ–Π΄Π΅Ρ€ Нафти. Установки Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня Π·Π½Π°Ρ‡Π½ΠΎ Π·Π±Ρ–Π»ΡŒΡˆΡƒΡŽΡ‚ΡŒ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ, одночасно Π·ΠΌΠ΅Π½ΡˆΡƒΡŽΡ‡ΠΈ ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ виснаТСння.", "quests.medium_voltage.mv_fluid_rig.desc.3": "&lΠ©ΠΎ ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ Π² &2ΠžΡΠ½ΠΎΠ²Π½ΠΎΠΌΡƒ світі&r&l:&r\n\n&9Нафта:&r Π±Π°Π³Π°Ρ‚ΡˆΠ° Π½Π° &aΠ›Π΅Π³ΠΊΠ΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ&r β€” Π½Π°ΠΉΡ†Ρ–Π½Π½Ρ–ΡˆΠΈΠΉ Π²Π°Ρ€Ρ–Π°Π½Ρ‚. \n&9Π›Π΅Π³ΠΊΠ° Π½Π°Ρ„Ρ‚Π°:&r Π±Π°Π³Π°Ρ‚ΡˆΠ° Π½Π° &aΠ Π°Ρ„Ρ–Π½Π΅Ρ€Ρ–ΠΉΠ½ΠΈΠΉ Π³Π°Π·&r, ΠΏΡ€ΠΈΠ΄Π°Ρ‚Π½ΠΈΠΉ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ—. \n&9Π’Π°ΠΆΠΊΠ° Π½Π°Ρ„Ρ‚Π°:&r Π±Π°Π³Π°Ρ‚ΡˆΠ° Π½Π° &aΠ’Π°ΠΆΠΊΠ΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ&r, якС ΠΌΠ°Ρ” Π±Ρ–Π»ΡŒΡˆ Π²ΡƒΠ·ΡŒΠΊΠ΅ застосування, Π·ΠΎΠΊΡ€Π΅ΠΌΠ° для отримання Ρ‚ΠΎΠ»ΡƒΠΎΠ»Ρƒ. \n&9Π‘ΠΈΡ€Π° Π½Π°Ρ„Ρ‚Π°:&r Π±Π°Π³Π°Ρ‚ΡˆΠ° Π½Π° &aНафту&r, Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π΅ Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎ Π½Π°Ρ„Ρ‚ΠΎΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π² Π½Π° Ρ€Π°Π½Π½Ρ–Ρ… Π΅Ρ‚Π°ΠΏΠ°Ρ… Π³Ρ€ΠΈ. \n&9ΠŸΡ€ΠΈΡ€ΠΎΠ΄Π½ΠΈΠΉ Π³Π°Π·:&r Π΄Π°Ρ” &aΠ Π°Ρ„Ρ–Π½Π΅Ρ€Ρ–ΠΉΠ½ΠΈΠΉ Π³Π°Π·&r Π±Π΅Π· ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈ Π² ΠΏΠ΅Ρ€Π΅Π³ΠΎΠ½Ρ†Ρ–. \n&9ΠœΠΎΡ€ΡΡŒΠΊΠ° Π²ΠΎΠ΄Π°:&r Π΄Π°Ρ” &aНатрій&r Ρ‚Π° &aΠ₯Π»ΠΎΡ€&r, корисні Π½Π° ΠΏΡ–Π·Π½Ρ–ΡˆΠΈΡ… Π΅Ρ‚Π°ΠΏΠ°Ρ….", - "quests.medium_voltage.mv_fluid_rig.desc.4": "&lΠ©ΠΎ Ρ‚ΠΈ моТСш Π·Π½Π°ΠΉΡ‚ΠΈ Π² &cНСзСрі&r&l:&r \n\n&9ΠŸΡ€ΠΈΡ€ΠΎΠ΄Π½ΠΈΠΉ Π“Π°Π·:&r Π΄Π°Ρ” &aΠ Π°Ρ„Ρ–Π½ΠΎΠ²Π°Π½ΠΈΠΉ Π“Π°Π·&r, Π°Π»Π΅ Π· Π²ΠΈΡ‰ΠΈΠΌ Π²ΠΈΡ…ΠΎΠ΄ΠΎΠΌ, Π½Ρ–ΠΆ Ρƒ ΠΆΠΈΠ»Π°Ρ… Π’Π΅Ρ€Ρ…Π½ΡŒΠΎΠ³ΠΎ світу. \n&9Π›Π°Π²Π°:&r ΡΠΏΠΎΠ΄Ρ–Π²Π°ΡŽΡΡ, Ρ‚ΠΈ Π·Π½Π°Ρ”Ρˆ, Ρ‰ΠΎ Ρ†Π΅ Ρ‚Π°ΠΊΠ΅. \n\nНа ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ Ρ‚ΠΎΠ±Ρ–, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ ΠΏΡ€ΠΎΠ±ΡƒΠ²Π°Ρ‚ΠΈ Π²ΠΈΠΏΠ°Π΄ΠΊΠΎΠ²Ρ– місця, ΠΏΠΎΠΊΠΈ Π½Π΅ знайдСш Ρ‰ΠΎΡΡŒ кориснС. ΠŸΠ°ΠΌβ€™ΡΡ‚Π°ΠΉ, Ρ‰ΠΎ всС, Ρ‰ΠΎ Ρ‚ΠΈ ΠΊΠ°Ρ‡Π°Ρ”Ρˆ, Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ½Π° використовувати для Π΄ΠΎΠ·Π°ΠΏΡ€Π°Π²ΠΊΠΈ Ρ‚Π²ΠΎΡ”Ρ— Π Ρ–Π΄ΠΈΠ½Π½ΠΎΡ— Установки.", + "quests.medium_voltage.mv_fluid_rig.desc.4": "&lΠ©ΠΎ ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ Π² &cΠ‘Π΅Π·ΠΎΠ΄Π½Ρ–&r&l:&r\n\n&9ΠŸΡ€ΠΈΡ€ΠΎΠ΄Π½ΠΈΠΉ Π³Π°Π·:&r Π΄Π°Ρ” &aΠ Π°Ρ„Ρ–Π½Π΅Ρ€Ρ–ΠΉΠ½ΠΈΠΉ Π³Π°Π·&r, Π°Π»Π΅ Π· Π²ΠΈΡ‰ΠΈΠΌ Π²ΠΈΡ…ΠΎΠ΄ΠΎΠΌ, Π½Ρ–ΠΆ ΠΆΠΈΠ»Π° Π² Overworld. \n&9Π›Π°Π²Π°:&r ΡΠΏΠΎΠ΄Ρ–Π²Π°Ρ”ΠΌΠΎΡΡŒ, Π²ΠΈ Π·Π½Π°Ρ”Ρ‚Π΅, Ρ‰ΠΎ Ρ†Π΅ Ρ‚Π°ΠΊΠ΅.\n\nНа ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Π±ΡƒΡ€ΠΈΡ‚ΠΈ навмання, ΠΏΠΎΠΊΠΈ Π½Π΅ Π·Π½Π°ΠΉΠ΄Π΅Ρ‚Π΅ Ρ‰ΠΎΡΡŒ кориснС. ΠŸΠ°ΠΌβ€™ΡΡ‚Π°ΠΉΡ‚Π΅: усС, Ρ‰ΠΎ Π²ΠΈ ΠΏΠ΅Ρ€Π΅ΠΊΠ°Ρ‡ΡƒΡ”Ρ‚Π΅, Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ½Π° використати для Π·Π°ΠΏΡ€Π°Π²ΠΊΠΈ Π²Π°ΡˆΠΎΡ— Π Ρ–Π΄ΠΈΠ½Π½ΠΎΡ— установки.", "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, яка Π΄ΠΎΠΏΠΎΠΌΠΎΠΆΠ΅ Ρ‚ΠΎΠ±Ρ– Π΄ΠΎ ΠΌΠΎΠΌΠ΅Π½Ρ‚Ρƒ розблокування Π Ρ–Π΄ΠΈΠ½Π½ΠΈΡ… Π‘ΡƒΡ€ΠΎΠ²ΠΈΡ… Установок.", @@ -2423,9 +3079,13 @@ "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.subtitle": "Π—Ρ€Π΅ΡˆΡ‚ΠΎΡŽ, Ρ†Π΅ Π·Π°Π²ΠΆΠ΄ΠΈ Π‘Π΅Π½Π·ΠΎΠ»", + "quests.medium_voltage.mv_benzene.subtitle": "Π—Ρ€Π΅ΡˆΡ‚ΠΎΡŽ, Ρ†Π΅ &lΠ·Π°Π²ΠΆΠ΄ΠΈ Π±ΡƒΠ²&r Π‘Π΅Π½Π·ΠΎΠ»", "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_benzene.desc.2": "Π©ΠΎΠ± дізнатися, як обробляти Π½Π°Ρ„Ρ‚Ρƒ, Π·Π²Π΅Ρ€Π½Ρ–Ρ‚ΡŒΡΡ Π΄ΠΎ завдань Ρ–Π· &dΠ›Π΅Π³ΠΊΠΈΠΌ ΠΏΠ°Π»ΠΈΠ²ΠΎΠΌ&r Ρ‚Π° &dΠΠ°Ρ„Ρ‚ΠΎΡŽ&r.\n\nΠ—Π°Π³Π°Π»ΠΎΠΌ ΠΊΡ€Π°Ρ‰Π΅ Π²Ρ–Π΄Π΄Π°Π²Π°Ρ‚ΠΈ ΠΏΠ΅Ρ€Π΅Π²Π°Π³Ρƒ Π²ΡΡ‚Π°Π½ΠΎΠ²Π»Π΅Π½Π½ΡŽ Π±Ρ–Π»ΡŒΡˆΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– машин (&dпаралСлізація&r), Π½Ρ–ΠΆ Ρ€ΠΎΠ·Π³ΠΎΠ½Ρƒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π². Π’Π°ΠΊ Π²ΠΈ Π²ΠΈΡ‚Ρ€Π°Ρ‡Π°Ρ‚ΠΈΠΌΠ΅Ρ‚Π΅ мСншС Π΅Π½Π΅Ρ€Π³Ρ–Ρ— Π½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΊΡƒ рСсурсів.\n\n&aΠ‘Π΅Π½Π·ΠΎΠ»&r ΡΠΏΠ°Π»ΡŽΡ”Ρ‚ΡŒΡΡ Π² &3Π“Π°Π·ΠΎΠ²Ρ–ΠΉ Ρ‚ΡƒΡ€Π±Ρ–Π½Ρ–&r Π· Π΄ΠΎΡΠΈΡ‚ΡŒ ΠΏΠΎΠ³Π°Π½ΠΈΠΌ Ккд. Π¦Π΅ Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— спочатку слабшС Π·Π° свого &eΠ”ΠΈΠ·Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ&r Ρ€ΠΎΠ΄ΠΈΡ‡Π°, Π°Π»Π΅ ΠΉΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½Π° ΠΏΠΎΠΊΡ€Π°Ρ‰ΠΈΡ‚ΠΈ, ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΈΠ²ΡˆΠΈ Π² &6Π Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΈΠΉ Π³Π°Π·&r. Π—Ρ€Π΅ΡˆΡ‚ΠΎΡŽ, Π²ΠΈΠ±Ρ–Ρ€ Π΄ΠΆΠ΅Ρ€Π΅Π»Π° Π΅Π½Π΅Ρ€Π³Ρ–Ρ— β€” Π·Π° Π²Π°ΠΌΠΈ.", + "quests.medium_voltage.mv_benzene.desc.3": "&l&3Π›ΠΎΡ€:&r&o Π‘Π΅Π½Π·ΠΎΠ» Π±ΡƒΠ² ΠΎΠ΄Π½ΠΈΠΌ Ρ–Π· Π½Π°ΠΉΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡˆΠΈΡ… Π³Π°Π·ΠΎΠ²ΠΈΡ… ΠΏΠ°Π»ΠΈΠ² Ρ‰Π΅ Π· часів GTCEu β€” Π½Π°ΡΡ‚Ρ–Π»ΡŒΠΊΠΈ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΌ, Ρ‰ΠΎ став ΠΌΠ΅ΠΌΠΎΠΌ. АлС ΡΡŒΠΎΠ³ΠΎΠ΄Π½Ρ– ΠΉΠΎΠ³ΠΎ Π΄Π½Ρ– Π²ΠΆΠ΅ ΠΏΠΎΠ»Ρ–Ρ‡Π΅Π½Ρ– ΠΌΠ°ΠΉΠΆΠ΅ всюди.", + "quests.medium_voltage.reformate_gas.title": "Царство Π Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π°", + "quests.medium_voltage.reformate_gas.subtitle": "Коли ΠΎΠ΄ΠΈΠ½ Π³Ρ–Π³Π°Π½Ρ‚ ΠΏΠ°Π΄Π°Ρ” β€” Ρ–Π½ΡˆΠΈΠΉ постає", + "quests.medium_voltage.reformate_gas.desc": "&7Π Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΈΠΉ Π³Π°Π·&r β€” Ρ†Π΅ вашС Π½ΠΎΠ²Π΅ основнС Π³Π°Π·ΠΎΠ²Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ Π½Π° Ρ€Ρ–Π²Π½Ρ– &bMV&r, якщо Π²ΠΈ ΠΎΠ±Ρ€Π°Π»ΠΈ Ρ†Π΅ΠΉ ΡˆΠ»ΡΡ…. Для Ρ–Π΄Π΅Π°Π»ΡŒΠ½ΠΎΡ— СфСктивності Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ лишС &61 Π’Π΅ΠΆΠ° скраплСння&r Ρ– &62 ΠŸΡ–Ρ€ΠΎΠ»Ρ–Π·Π½Ρ– ΠΏΠ΅Ρ‡Ρ–&r β€” Ρ– Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π±Π΅Π·ΠΏΠ΅Ρ€Π΅Ρ€Π²Π½ΠΎ виробляти Ρ†Π΅ΠΉ Ρ†Ρ–Π½Π½ΠΈΠΉ Π³Π°Π·.\n\nАлС Π·Π°Ρ‡Π΅ΠΊΠ°ΠΉΡ‚Π΅, ΡΠΏΠ΅Ρ€ΡˆΡƒ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π·Π½Π°ΠΉΡ‚ΠΈ &5Π Π΅Π½Ρ–ΠΉ&r β€” Π½ΠΎΠ²ΠΈΠΉ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π», який Ρ‚Ρ€Π°ΠΏΠ»ΡΡ”Ρ‚ΡŒΡΡ лишС Π² гарячих Ρ– ΠΏΠΎΡΡƒΡˆΠ»ΠΈΠ²ΠΈΡ… Ρ€Π΅Π³Ρ–ΠΎΠ½Π°Ρ… &7TerraFirmaCraft&r. Π™ΠΎΠ³ΠΎ Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈ Π½Π°ΡΡ‚Ρ–Π»ΡŒΠΊΠΈ ΠΌΠ°Π»Ρ–, Ρ‰ΠΎ ΠΎΠ΄Π½Ρ–Ρ”Ρ— ΠΆΠΈΠ»ΠΈ Π²ΠΈΡΡ‚Π°Ρ‡ΠΈΡ‚ΡŒ Π΄ΠΎ кінця ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠ°, Π°Π±ΠΎ ΠΏΡ€ΠΈΠ½Π°ΠΉΠΌΠ½Ρ– Π΄ΠΎ рівня &6HV&r, Π΄Π΅ β€” Π·Π° допомогою &6ΠšΡ€Π΅ΠΊΠ΅Ρ€Π°&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, Π°Π»Π΅ Ρ” Π΄Π΅Ρ‰ΠΎ Ρ‰Π΅ ΠΊΡ€Π°Ρ‰Π΅... ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€ ΠšΠ²Π΅ΡΡ‚ Π»Ρ–Π²ΠΎΡ€ΡƒΡ‡.", @@ -2434,6 +3094,10 @@ "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.coal_tower.title": "Π’Π΅ΠΆΠ° скраплСння", + "quests.medium_voltage.coal_tower.subtitle": "Π₯Ρ‚ΠΎ ΠΆ Π½Π΅ Π»ΡŽΠ±ΠΈΡ‚ΡŒ Π½ΠΎΠ²Ρ– Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΈ", + "quests.medium_voltage.coal_tower.desc.1": "&bΠ’Π΅ΠΆΠ° скраплСння&r β€” Ρ†Π΅ Π½ΠΎΠ²Π° &bΠ±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΡ‡Π½Π°&r машина, яка Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° &aΠ Π΅Ρ„ΠΎΡ€ΠΌΠ°Ρ‚Π½ΠΎΠ³ΠΎ Π³Π°Π·Ρƒ&r Ρ‚Π° ΠΉΠΎΠ³ΠΎ ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π²: &7ΠšΠ°ΠΌβ€™ΡΠ½ΠΎΠ²ΡƒΠ³Ρ–Π»ΡŒΠ½ΠΎΡ— смоли&r Ρ– &7Π‘ΠΈΠ½Ρ‚Π΅Π·-Π³Π°Π·Ρƒ&r. Π—Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ Ρ‚ΠΎΠ³ΠΎ, яку &9ΠšΠΎΡ‚ΡƒΡˆΠΊΡƒ&r Π²ΠΈ використовуєтС, Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅ Π·Π½ΠΈΠΆΠΊΡƒ Π½Π° &7Ρ‚Ρ€ΠΈΠ²Π°Π»Ρ–ΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρƒ&r для ΠΊΠΎΠΆΠ½ΠΎΠ³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρƒ. ΠŸΡ€ΠΎΡΡ‚ΠΎ Π½Π°Π²Π΅Π΄Ρ–Ρ‚ΡŒ курсор Π½Π° ΠΊΠΎΡ‚ΡƒΡˆΠΊΡƒ Ρ‚Π° Π½Π°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ Shift, Ρ‰ΠΎΠ± ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ Ρ—Ρ— бонуси.\n\nΠ—Π²Π΅Ρ€Π½Ρ–Ρ‚ΡŒ ΡƒΠ²Π°Π³Ρƒ, Ρ‰ΠΎ &9Π’Π΅ΠΆΡƒ скраплСння&r ΠΌΠΎΠΆΠ½Π° прискорити Π·Π° допомогою &7Π’ΠΎΠ΄Π½ΡŽ&r β€” Ρ†Π΅ Π·ΠΌΠ΅Π½ΡˆΡƒΡ” Ρ‚Ρ€ΠΈΠ²Π°Π»Ρ–ΡΡ‚ΡŒ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρƒ, Π° ΠΎΡ‚ΠΆΠ΅, Ρ– Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈ. НС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅ встановити ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½Ρƒ &6схСму&r, Ρ‰ΠΎΠ± усС ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Π»ΠΎ.\n\nΠ”ΠΎ Ρ€Π΅Ρ‡Ρ–, якщо Π²ΠΈ Π½Π΅ Π·Π½Π°Π»ΠΈ: ΠΎΠ΄Π½Π° сСкунда β€” Ρ†Π΅ 20 Ρ‚Ρ–ΠΊΡ–Π². Π’ΠΎΠΆ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ, яку споТиває машина Π·Π° Ρ‚Ρ–ΠΊΡ‚, ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΠΌΠ½ΠΎΠΆΠΈΡ‚ΠΈ Π½Π° 20, Ρ‰ΠΎΠ± дізнатися споТивання Π·Π° сСкунду.", + "quests.medium_voltage.coal_tower.desc.2": "&l&3Π›ΠΎΡ€:&r&o Π’Π° сама людина, Ρ‰ΠΎ створила Π―Π΄Π΅Ρ€Π½ΠΈΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€, Ρ‚Π°ΠΊΠΎΠΆ Ρ€ΠΎΠ·Ρ€ΠΎΠ±ΠΈΠ»Π° ΠΏΠ΅Ρ€ΡˆΠΈΠΉ Π΄ΠΈΠ·Π°ΠΉΠ½ Π’Π΅ΠΆΡ– скраплСння. Π₯Ρ–Π±Π° Ρ†Π΅ Π½Π΅ боТСвілля.", "quests.medium_voltage.mv_jetpack.title": "Π― Π’Ρ–Ρ€ΡŽ, Π©ΠΎ ΠœΠΎΠΆΡƒ Π›Ρ–Ρ‚Π°Ρ‚ΠΈ", "quests.medium_voltage.mv_jetpack.subtitle": "...Π½Ρƒ, ΠΌΠ°ΠΉΠΆΠ΅ Π›Π΅Ρ‚Ρ–Ρ‚ΠΈ", "quests.medium_voltage.mv_jetpack.desc": "Π¦Π΅ΠΉ Π Π΅Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΉ Π Π°Π½Π΅Ρ†ΡŒ використовує Π±Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ &aПалив для Горіння&r (Π·Π° винятком масСл) для забСзпСчСння ΠΏΡ€ΠΈΠΌΡ–Ρ‚ΠΈΠ²Π½ΠΎΡ— Ρ„ΠΎΡ€ΠΌΠΈ ΠΏΠΎΠ»ΡŒΠΎΡ‚Ρƒ. \n\nΠ—Π°ΠΏΡ€Π°Π² ΠΉΠΎΠ³ΠΎ Ρ‚Π°ΠΊ само, як Π·Π°ΠΏΠΎΠ²Π½ΡŽΡ”Ρˆ Π‘ΠΎΡ‡ΠΊΡƒ, Π°Π±ΠΎ скористайся &3ΠšΠΎΠ½ΡΠ΅Ρ€Π²ΡƒΠ²Π°Π»ΡŒΠ½ΠΎΡŽ Машиною&r. \n\nНатисни &4H&r (Π·Π° замовчуванням), Ρ‰ΠΎΠ± ΡƒΠ²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π Π΅ΠΆΠΈΠΌ Зависання.", @@ -2464,7 +3128,7 @@ "quests.medium_voltage.mv_aciditic.title": "Π¦Π΅ Ρ€ΠΎΠ·ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒ Ρ‚Π²ΠΎΡŽ ΠΏΠ»ΠΎΡ‚ΡŒ", "quests.medium_voltage.mv_aciditic.subtitle": "...якщо Ρ‚ΠΈ Π½Π΅ ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Ρ”Ρˆ Ρ†Π΅ΠΉ квСст.", "quests.medium_voltage.mv_aciditic.desc.1": "Π’ΠΈ моТСш ΠΏΠΎΠΌΡ–Ρ‚ΠΈΡ‚ΠΈ, Ρ‰ΠΎ дСякі Ρ€Ρ–Π΄ΠΈΠ½ΠΈ ΠΏΠΎΠ·Π½Π°Ρ‡Π΅Π½Ρ– як &aΠšΠΈΡΠ»ΠΎΡ‚Π½Ρ–&r, Ρ– &9Π‘Ρ–Ρ€Ρ‡Π°Π½Π° ΠšΠΈΡΠ»ΠΎΡ‚Π°&r β€” ΠΎΠ΄Π½Π° Π· Π½ΠΈΡ…. \n\nΠ¦Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ Π±Π°Π³Π°Ρ‚ΠΎ Ρ€Ρ–Π΄ΠΈΠ½Π½ΠΈΡ… Ρ‚Ρ€ΡƒΠ± Π½Π΅ Π·ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ Ρ—Ρ… транспортувати! \n\nНа Ρ€Ρ–Π²Π½Ρ– &bMV&r Π½Π°ΠΉΠ΄Π΅ΡˆΠ΅Π²ΡˆΡ– Ρ‚Ρ€ΡƒΠ±ΠΈ для транспортування кислот β€” ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½ΠΎ, &aΠ—ΠΎΠ»ΠΎΡ‚Ρ–&r, Π° Π±Ρ–Π»ΡŒΡˆ Π΄ΠΎΡ€ΠΎΠ³Ρ– &aΠ’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΎ-Π‘Ρ‚Π°Π»ΡŒΠ½Ρ–&r Π°Π±ΠΎ &aΠ₯Ρ€ΠΎΠΌΠΎΠ²Ρ–&r Π·Π°ΠΉΠΌΠ°ΡŽΡ‚ΡŒ Π΄Ρ€ΡƒΠ³Π΅ Ρ‚Π° Ρ‚Ρ€Π΅Ρ‚Ρ” місцС. \n\n&aΠΠ΅Ρ€ΠΆΠ°Π²Ρ–ΡŽΡ‡Π° Π‘Ρ‚Π°Π»ΡŒ&r Π°Π±ΠΎ &aΠŸΠΎΠ»Ρ–Ρ‚Π΅Ρ‚Ρ€Π°Ρ„Ρ‚ΠΎΡ€Π΅Ρ‚ΠΈΠ»Π΅Π½&r (спробуй Π²ΠΈΠΌΠΎΠ²ΠΈΡ‚ΠΈ Ρ†Π΅ швидко) ΡΡ‚Π°Π½ΡƒΡ‚ΡŒ доступними Π²Π°Ρ€Ρ–Π°Π½Ρ‚Π°ΠΌΠΈ, ΠΊΠΎΠ»ΠΈ Ρ‚ΠΈ досягнСш рівня &6HV&r.", - "quests.medium_voltage.mv_aciditic.desc.2": "Π£ Ρ‚Π΅Π±Π΅ Ρ” Ρ‚Ρ€ΠΈ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ збСрігання кислот Π½Π° Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ–: &dБкляні Π€Π»Π°ΠΊΠΎΠ½ΠΈ&r, &dΠ—ΠΎΠ»ΠΎΡ‚Ρ– Π‘ΠΎΡ‡ΠΊΠΈ&r Π°Π±ΠΎ &dΠ‘ΡƒΠΏΠ΅Ρ€ Π‘Π°ΠΊΠΈ&r. Бкляні Π€Π»Π°ΠΊΠΎΠ½ΠΈ схоТі Π½Π° &9Π Ρ–Π΄ΠΈΠ½Π½Ρ– ΠšΠ°ΠΏΡΡƒΠ»ΠΈ&r Ρ– ΠΏΡ€ΠΈΠ·Π½Π°Ρ‡Π΅Π½Ρ– для збСрігання кислот. Π—ΠΎΠ»ΠΎΡ‚Ρ– Π‘ΠΎΡ‡ΠΊΠΈβ€” ΠΎΡ‡Π΅Π²ΠΈΠ΄Π½ΠΈΠΉ Π²ΠΈΠ±Ρ–Ρ€. Π‘ΡƒΠΏΠ΅Ρ€ Π‘Π°ΠΊΠΈ ΡΡ‚Π°Π½ΡƒΡ‚ΡŒ доступними після &9ΠŸΠΎΠ»Ρ–Π΅Ρ‚ΠΈΠ»Π΅Π½Ρƒ&r Ρ– ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ Π±ΡƒΠ΄ΡŒ-яку Ρ€Ρ–Π΄ΠΈΠ½Ρƒ Π±Π΅Π· обмСТСнь. \n\n&cУВАГА:&r ΠšΠΈΡΠ»ΠΎΡ‚ΠΈ Ρƒ Π½Π΅ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΈΡ… Ρ‚Ρ€ΡƒΠ±Π°Ρ… ΠΌΠΎΠΆΡƒΡ‚ΡŒ спричинити &cΠ²Ρ‚Ρ€Π°Ρ‚ΠΈ&r, &cзгоряння Ρ‚Ρ€ΡƒΠ±&r Ρ‚Π° високий Ρ€ΠΈΠ·ΠΈΠΊ &cсмСрті&r! Π‘ΡƒΠ΄ΡŒ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½ΠΈΠΌ! \n\n&l&3Π›ΠΎΡ€:&r&o ΠœΠ΅Ρ…Π°Π½Ρ–ΠΊΠ° транспортування Ρ‚Π° збСрігання кислот ΠΏΠΎΡ…ΠΎΠ΄ΠΈΡ‚ΡŒ Ρ–Π· GregTech 6.", + "quests.medium_voltage.mv_aciditic.desc.2": "Π£ вас Ρ” Ρ‚Ρ€ΠΈ ΠΏΡ€Π°ΠΊΡ‚ΠΈΡ‡Π½Ρ– Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ збСрігання кислот Π½Π° Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ–: &dБкляні Ρ„Π»Π°ΠΊΠΎΠ½ΠΈ&r, &dΠ—ΠΎΠ»ΠΎΡ‚Ρ– Π±ΠΎΡ‡ΠΊΠΈ&r Π°Π±ΠΎ &dΠ‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€&r. Бкляні Ρ„Π»Π°ΠΊΠΎΠ½ΠΈ схоТі Π½Π° &9Π Ρ–Π΄ΠΈΠ½Π½Ρ– ΠΊΠΎΠΌΡ–Ρ€ΠΊΠΈ&r Ρ– ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΎ ΠΏΡ€ΠΈΠ·Π½Π°Ρ‡Π΅Π½Ρ– для збСрігання кислот. Π—ΠΎΠ»ΠΎΡ‚Ρ– Π±ΠΎΡ‡ΠΊΠΈ β€” Ρ†Π΅ Ρ‚Π΅, Ρ‰ΠΎ ΠΉ ΠΎΡ‡Ρ–ΠΊΡƒΡ”Ρ‚ΡŒΡΡ. Π‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ Π±ΡƒΠ΄ΡŒ-яку Ρ€Ρ–Π΄ΠΈΠ½Ρƒ Π±Π΅Π· обмСТСнь, Π°Π»Π΅ Π²ΠΎΠ½ΠΈ Π½Π°ΠΉΠ΄ΠΎΡ€ΠΎΠΆΡ‡Ρ–.\n\n&cУВАГА:&r ΠšΠΈΡΠ»ΠΎΡ‚ΠΈ Π² Π½Π΅ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΈΡ… Ρ‚Ρ€ΡƒΠ±Π°Ρ… ΠΏΡ€ΠΈΠ·Π²Π΅Π΄ΡƒΡ‚ΡŒ Π΄ΠΎ &cΠ²Ρ‚Ρ€Π°Ρ‚ΠΈ Ρ€Ρ–Π΄ΠΈΠ½ΠΈ&r, &cпошкодТСння Ρ‚Ρ€ΡƒΠ±&r Ρ– високої ймовірності &cсмСрті&r! Π‘ΡƒΠ΄ΡŒΡ‚Π΅ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½Ρ–!\n\n&l&3Π›ΠΎΡ€:&r&o ΠœΠ΅Ρ…Π°Π½Ρ–ΠΊΠ° транспортування Ρ‚Π° збСрігання кислот ΠΏΠΎΡ…ΠΎΠ΄ΠΈΡ‚ΡŒ Ρ–Π· GregTech 6.", "quests.medium_voltage.mv_aciditic.task": "Π― профСсіонал Ρƒ кислотах, Π½Π΅ Ρ…Π²ΠΈΠ»ΡŽΠΉΡΡ", "quests.medium_voltage.mv_hydrochloric.title": "Π₯Π»ΠΎΡ€ΠΈΠ΄Π½Π° ΠšΠΈΡΠ»ΠΎΡ‚Π°", "quests.medium_voltage.mv_hydrochloric.subtitle": "Π’ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Π°Π³Π°Ρ‚ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ!", @@ -2485,9 +3149,6 @@ "quests.medium_voltage.mv_polyethylene.title": "ΠŸΠΎΠ»Ρ–Π΅Ρ‚ΠΈΠ»Π΅Π½", "quests.medium_voltage.mv_polyethylene.subtitle": "ΠŸΠ΅Ρ€ΡˆΠΈΠΉ ΠΏΠΎΠ»Ρ–ΠΌΠ΅Ρ€ малюка!", "quests.medium_voltage.mv_polyethylene.desc": "Π―ΠΊΡ‰ΠΎ Ρ…ΠΎΡ‡Π΅Ρˆ Π±ΡƒΡ‚ΠΈ мСнш ΠΎΡ„Ρ–Ρ†Ρ–ΠΉΠ½ΠΈΠΌ, просто Π½Π°Π·ΠΈΠ²Π°ΠΉ Ρ†Π΅ пластиком. \n\nДля процСсу ΠΏΠΎΠ»Ρ–ΠΌΠ΅Ρ€ΠΈΠ·Π°Ρ†Ρ–Ρ— Π΄ΠΎΠ΄Π°ΠΉ &aКисСнь&r, який Π΄Π°Ρ” ΠΊΡ€Π°Ρ‰ΠΈΠΉ Π²ΠΈΡ…Ρ–Π΄, Π½Ρ–ΠΆ ΠŸΠΎΠ²Ρ–Ρ‚Ρ€Ρ, Π° ΠΏΠΎΡ‚Ρ–ΠΌ Π·Π°Ρ‚Π²Π΅Ρ€Π΄ΠΈ, як Ρ‚ΠΈ Π± Π·Ρ€ΠΎΠ±ΠΈΠ² Ρ–Π· Π“ΡƒΠΌΠΎΡŽ. \n\n&aΠŸΠΎΠ»Ρ–Π΅Ρ‚ΠΈΠ»Π΅Π½ (PE)&r β€” Ρ†Π΅ ΠΊΠ»ΡŽΡ‡ Π΄ΠΎ &6Π±Π°Π³Π°Ρ‚ΡŒΠΎΡ… Π½ΠΎΠ²ΠΈΡ… Ρ€Π΅Ρ‡Π΅ΠΉ&r. Π’Ρ–Π½ Π·Π°Π·Π²ΠΈΡ‡Π°ΠΉ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Ρƒ вигляді &dЛистів&r Π°Π±ΠΎ Ρƒ &dΠ Ρ–Π΄ΠΊΡ–ΠΉ&r Ρ„ΠΎΡ€ΠΌΡ–. \n\n&l&3Π›ΠΎΡ€:&r&o Π£ 1.12.2 GTCEu Π½Π°Π·Π²Π° OreDict Ρ– Ρ€Ρ–Π΄ΠΈΠ½Π½Π° Π½Π°Π·Π²Π° для ΠŸΠΎΠ»Ρ–Π΅Ρ‚ΠΈΠ»Π΅Π½Ρƒ Π±ΡƒΠ»Π° &bplastic&f, для сумісності ΠΌΡ–ΠΆ ΠΌΠΎΠ΄Π°ΠΌΠΈ.", - "quests.medium_voltage.mv_tank.title": "Π‘ΡƒΠΏΠ΅Ρ€ Π‘Π°ΠΊ", - "quests.medium_voltage.mv_tank.subtitle": "Π‘ΡƒΠΏΠ΅Ρ€ Π‘Π°ΠΊΠΈ β€” Ρ†Π΅ ОР!", - "quests.medium_voltage.mv_tank.desc": "Ні, Π°Π»Π΅ сСрйозно. \n\nΠ¦Π΅ &cu&6l&et&ai&bm&9a&5t&4e&r ΠΏΠΎΡ€Ρ‚Π°Ρ‚ΠΈΠ²Π½Π΅ Ρ€Ρ–ΡˆΠ΅Π½Π½Ρ для збСрігання Ρ€Ρ–Π΄ΠΈΠ½. &64 000 Π²Ρ–Π΄Π΅Ρ€&r Ρƒ ΠΎΠ΄Π½ΠΎΠΌΡƒ Π±Π»ΠΎΡ†Ρ–β€”Π±Π΅Π· ΠΆΠΎΠ΄Π½ΠΈΡ… обмСТСнь Ρ‰ΠΎΠ΄ΠΎ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ Ρ‡ΠΈ кислотності! \n\nΠ―ΠΊ Ρ– Π‘ΠΎΡ‡ΠΊΠΈ, Π‘ΡƒΠΏΠ΅Ρ€ Π‘Π°ΠΊΠΈ &6Π·Π±Π΅Ρ€Ρ–Π³Π°ΡŽΡ‚ΡŒ свої Ρ€Ρ–Π΄ΠΈΠ½ΠΈ ΠΏΡ€ΠΈ Ρ€ΡƒΠΉΠ½ΡƒΠ²Π°Π½Π½Ρ–&r Ρ– ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ ΠΎΡ‡ΠΈΡ‰Π΅Π½Ρ– Ρƒ ΠΊΡ€Π°Ρ„Ρ‚ΠΎΠ²Ρ–ΠΉ сітці. \n\nΠ―ΠΊΡ‰ΠΎ Ρ‚ΠΎΠ±Ρ– ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ &9Ρ‰Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅&r місця для збСрігання, Π·Π²Π΅Ρ€Π½ΠΈ ΡƒΠ²Π°Π³Ρƒ Π½Π° Π±Π°ΠΊΠΈ Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня Π°Π±ΠΎ AE2 Fluid Storage Cells.", "quests.medium_voltage.mv_pvc.title": "ΠŸΠΎΠ»Ρ–Π²Ρ–Π½Ρ–Π»Ρ…Π»ΠΎΡ€ΠΈΠ΄", "quests.medium_voltage.mv_pvc.subtitle": "Π’ΠΈ Π²ΠΆΠ΅ Π·Ρ€ΠΎΠ±ΠΈΠ² ΠΎΠ΄ΠΈΠ½ ΠΏΠΎΠ»Ρ–ΠΌΠ΅Ρ€, Ρ‰ΠΎ Ρ‚Π°ΠΊΠ΅ Π΄Π²Π°?", "quests.medium_voltage.mv_pvc.desc": "&aΠŸΠΎΠ»Ρ–Π²Ρ–Π½Ρ–Π»Ρ…Π»ΠΎΡ€ΠΈΠ΄ (PVC)&r β€” Ρ‚Ρ€Π΅Ρ‚Ρ–ΠΉ Π·Π° обсягом Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° пластик Ρƒ Ρ€Π΅Π°Π»ΡŒΠ½ΠΎΠΌΡƒ ΠΆΠΈΡ‚Ρ‚Ρ–. Π£ CEu ΠΉΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ½Π° використовувати Π·Π°ΠΌΡ–ΡΡ‚ΡŒ ΠŸΠΎΠ»Ρ–Π΅Ρ‚ΠΈΠ»Π΅Π½Ρƒ для створСння &aΠŸΠ»Π°ΡΡ‚ΠΈΠΊΠΎΠ²ΠΈΡ… Π‘Ρ…Π΅ΠΌ&r Ρ‚Π° Ρ–Π½ΡˆΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π², Ρ‰ΠΎΠ± Π·Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ Π²ΠΈΡ…Ρ–Π΄. Π’Ρ–Π½ стає Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΠΌ Π· рівня &5EV&r для обгортання ΠšΠ°Π±Π΅Π»Ρ–Π². \n\nΠ’Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄ΠΈ для ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π· PVC Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠ°ΡŽΡ‚ΡŒ &6Π½Π°ΠΉΠ²ΠΈΡ‰Ρƒ пропускну Π·Π΄Π°Ρ‚Π½Ρ–ΡΡ‚ΡŒ&r Π½Π° дСякий час, Π°Π»Π΅ Π±Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ Ρ‚Π²ΠΎΡ—Ρ… ΠΏΠΎΡ‚ΠΎΡ‡Π½ΠΈΡ… Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½ΡŒ Π½Π΅ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅ Ρ‚Π°ΠΊΠΎΡ— ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ–. ВсС ΠΆ, корисно ΠΌΠ°Ρ‚ΠΈ Ρ†ΡŽ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–ΡŽ ΠΏΡ–Π΄ Ρ€ΡƒΠΊΠΎΡŽ. \n\n&9ΠŸΠΎΡ€Π°Π΄Π°:&r Π Ρ–Π΄ΠΊΠ° Ρ„ΠΎΡ€ΠΌΠ° PVC Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Ρƒ Π±Π°Π·ΠΎΠ²ΠΎΠΌΡƒ GTCEu, Ρ‚ΠΎΠΌΡƒ сміливо Π·Π°Ρ‚Π²Π΅Ρ€Π΄ΠΆΡƒΠΉ вСсь ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» Ρƒ листи.", @@ -2554,11 +3215,11 @@ "quests.medium_voltage.mv_cells.desc": "ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²Ρ– ΠšΠ°ΠΏΡΡƒΠ»ΠΈ β€” Ρ†Π΅ Π·Π½Π°Ρ‡Π½Π΅ покращСння порівняно Π·Ρ– Π‘Ρ‚Π°Π»Π΅Π²ΠΈΠΌΠΈ ΠšΠ°ΠΏΡΡƒΠ»Π°ΠΌΠΈ Π°Π±ΠΎ Π£Π½Ρ–Π²Π΅Ρ€ΡΠ°Π»ΡŒΠ½ΠΈΠΌΠΈ ΠšΠ°ΠΏΡΡƒΠ»Π°ΠΌΠΈ Π Ρ–Π΄ΠΈΠ½ΠΈ. \n\nΠ’ΠΎΠ½ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ ΡƒΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ Π±ΡƒΠ΄ΡŒ-яку частку Ρ€Ρ–Π΄ΠΈΠ½ΠΈ β€” Π΄ΠΎ &d32 Π²Ρ–Π΄Π΅Ρ€&r!", "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_jetpack_2.desc": "Π¦Π΅ΠΉ Ρ€Π΅Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΉ Ρ€Π°Π½Π΅Ρ†ΡŒ дозволяє Π»Ρ–Ρ‚Π°Ρ‚ΠΈ Ρ‚Π° ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” Π΅Π½Π΅Ρ€Π³Ρ–Ρ—. \n\nЗарядТай ΠΉΠΎΠ³ΠΎ Ρ‚Π°ΠΊ само, як Ρ– Π±Π°Ρ‚Π°Ρ€Π΅ΡŽ. \n\nНатисни &4H&r (Π·Π° замовчуванням), Ρ‰ΠΎΠ± ΡƒΠ²Ρ–ΠΌΠΊΠ½ΡƒΡ‚ΠΈ Π Π΅ΠΆΠΈΠΌ Зависання. \n\n&o&7(Π’Π°ΠΊ, Ρ‚Π°ΠΊ, Ρ€Π΅Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΉ Ρ€Π°Π½Π΅Ρ†ΡŒ ΠΌΠ°Ρ” ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ Π½Π° ΠΏΡ€ΠΎΠΏΠ΅Π»Π΅Π½Ρ‚Π°Ρ…. Π’ΠΈ Π·Π°Π²ΠΆΠ΄ΠΈ Ρ‚ΡƒΡ‚, Ρ‰ΠΎΠ± прискіпуватися.)&r", "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": "Π‘ΡƒΠ΄ΡŒ-яка Броварня", + "quests.medium_voltage.mv_cutter.desc": "&3Π Ρ–Π·Π°ΠΊ Mv&r ΠΏΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ для нарізання &7ΠšΡ€Π΅ΠΌΠ½Ρ–Ρ”Π²ΠΈΡ… Π·Π»ΠΈΡ‚ΠΊΡ–Π²&r, Ρ‰ΠΎΠ± ΠΏΡ–Π΄Π³ΠΎΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Ρ—Ρ… Π΄ΠΎ &aΠ›Π°Π·Π΅Ρ€Π½ΠΎΠ³ΠΎ Π³Ρ€Π°Π²Ρ–ΡŽΠ²Π°Π½Π½Ρ&r.\n\nΠ Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΠΈ Π² Ρ†ΡŽ ΠΌΠ°ΡˆΠΈΠ½Ρƒ ΡΡ‚Π°Π±Ρ–Π»ΡŒΠ½ΠΈΠΉ ΠΏΠΎΡ‚Ρ–ΠΊ &dΠœΠ°ΡΡ‚ΠΈΠ»Π°&r, Ρ‰ΠΎΠ± Π·ΠΌΠ΅Π½ΡˆΠΈΡ‚ΠΈ час ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ.\n\nΠœΠ°ΡΡ‚ΠΈΠ»ΠΎ ΠΌΠΎΠΆΠ½Π° &3Π·Π²Π°Ρ€ΠΈΡ‚ΠΈ&r Π· &eНафти&r Ρ‚Π° &aΠ’Π°Π»ΡŒΠΊΡƒ&r, &2Валькового камСню&r Π°Π±ΠΎ &cРСдстоуна&r.\n\n&7ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°: Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використати Π²Π΅Ρ€ΡΡ–ΡŽ Π· &6Greate&r β€” Π²ΠΎΠ½Π° ΠΌΠ°Ρ” Π±Π°ΠΊ для заповнСння Ρ€Ρ–Π΄ΠΈΠ½ΠΎΡŽ&r", + "quests.medium_voltage.mv_cutter.task": "Π‘ΡƒΠ΄ΡŒ-який Π Ρ–Π·Π°ΠΊ", "quests.medium_voltage.mv_laser_engraver.title": "Π›Π°Π·Π΅Ρ€Π½Π΅ Π“Ρ€Π°Π²Ρ–ΡŽΠ²Π°Π½Π½Ρ", "quests.medium_voltage.mv_laser_engraver.subtitle": "Π¦Π΅ Π²Π΅Ρ€ΡˆΠΈΠ½Π° Ρ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³Ρ–ΠΉ, Π°Π»Π΅ Ρ†Π΅ Ρ‚Π°ΠΊΠΎΠΆ ΠΏΠΎΠ²Ρ–Π»ΡŒΠ½ΠΎ", "quests.medium_voltage.mv_laser_engraver.desc": "&3Π›Π°Π·Π΅Ρ€Π½ΠΈΠΉ Π“Ρ€Π°Π²Π΅Ρ€&r Π½Π°Π½ΠΎΡΠΈΡ‚ΡŒ Π²Ρ–Π·Π΅Ρ€ΡƒΠ½ΠΊΠΈ Π½Π° &9Π‘ΠΈΠ»Ρ–ΠΊΠΎΠ½ΠΎΠ²Ρ– Π’Π°Ρ„Π»Ρ–&r Π·Π°Π»Π΅ΠΆΠ½ΠΎ Π²Ρ–Π΄ Ρ‚ΠΈΠΏΡƒ &9Π›Ρ–Π½Π·ΠΈ&r, яку Π²Ρ–Π½ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ”. ΠŸΡ–ΡΠ»Ρ Π³Ρ€Π°Π²Ρ–ΡŽΠ²Π°Π½Π½Ρ Π²Π°Ρ„Π»Ρ– ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ пропустити Ρ‡Π΅Ρ€Π΅Π· &3Π Ρ–Π·Π°Π»ΡŒΠ½Ρƒ ΠœΠ°ΡˆΠΈΠ½Ρƒ&r, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Ρ—Ρ… Π½Π° ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ, Π³ΠΎΡ‚ΠΎΠ²Ρ– Π΄ΠΎ використання Π² Π‘Ρ…Π΅ΠΌΠ°Ρ…. \n\nΠ“Ρ€Π°Π²Π΅Ρ€ΠΈ Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π³Ρ€Π°Π²Ρ–ΡŽΠ²Π°Ρ‚ΠΈ ΡΠΊΠ»Π°Π΄Π½Ρ–ΡˆΡ– Π²Π°Ρ„Π»Ρ– для Π±Ρ–Π»ΡŒΡˆ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΈΡ… Π‘Ρ…Π΅ΠΌ.", @@ -2566,12 +3227,12 @@ "quests.medium_voltage.mv_silicon_boule.subtitle": "Π¦Ρ– Π²Π°Ρ„Π»Ρ– ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π²Π·Π°Ρ”ΠΌΠΎΠ·Π°ΠΌΡ–Π½Π½Ρ–", "quests.medium_voltage.mv_silicon_boule.desc": "&9Π‘ΠΈΠ»Ρ–ΠΊΠΎΠ½ΠΎΠ²Ρ– Π‘ΡƒΠ»Ρ–&r ΡΡ‚Π²ΠΎΡ€ΡŽΡŽΡ‚ΡŒΡΡ Π² &3Π•Π”ΠŸ&r Π· ΠΏΠΎΠ»ΠΎΠ²ΠΈΠ½ΠΈ стака &aΠ‘ΠΈΠ»Ρ–ΠΊΠΎΠ½ΠΎΠ²ΠΎΠ³ΠΎ ΠŸΠΈΠ»Ρƒ&r Ρ‚Π° Π΄Ρ€Ρ–Π±ΠΊΠΈ &aАрсСніду Π“Π°Π»Ρ–ΡŽ&r. Π‡Ρ… основнС призначСння β€” Π³Ρ€Π°Π²Ρ–ΡŽΠ²Π°Π½Π½Ρ &6Π’Π°Ρ„Π΅Π»ΡŒ для Π‘Ρ…Π΅ΠΌ&r. \n\nΠŸΡ–ΡΠ»Ρ створСння Π‘ΡƒΠ»Ρ– ΠΎΠ±Ρ€ΠΎΠ±ΠΈ Ρ—Ρ— Π² &3Π Ρ–Π·Π°ΠΊΡƒ&r, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ 16 Π‘ΠΈΠ»Ρ–ΠΊΠΎΠ½ΠΎΠ²ΠΈΡ… Π’Π°Ρ„Π΅Π»ΡŒ, Π³ΠΎΡ‚ΠΎΠ²ΠΈΡ… Π΄ΠΎ Π³Ρ€Π°Π²Ρ–ΡŽΠ²Π°Π½Π½Ρ. \n\n&cΠŸΠΎΠΏΠ΅Ρ€Π΅Π΄ΠΆΠ΅Π½Π½Ρ:&r КоТна Π‘ΠΈΠ»Ρ–ΠΊΠΎΠ½ΠΎΠ²Π° Буля Π·Π°ΠΉΠΌΠ°Ρ” &47.5 Ρ…Π²ΠΈΠ»ΠΈΠ½&r для створСння ΠΏΡ€ΠΈ 120 EU/t, Π°Π±ΠΎ 1,080,000 EU! Π―ΠΊΡ‰ΠΎ Π•Π”ΠŸ Π²Ρ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ТивлСння Π² процСсі, Ρ€Π΅Ρ†Π΅ΠΏΡ‚ ΠΏΠΎΡ‡Π½Π΅ &Π·Π°ΠΊΡ€ΠΈΠ²Π°Ρ‚ΠΈ прогрСс&r. \n\nΠ— огляду Π½Π° Ρ†Π΅, Π‘ΠΈΠ»Ρ–ΠΊΠΎΠ½ΠΎΠ²Ρ– Π‘ΡƒΠ»Ρ– ΡΡ‚Π²ΠΎΡ€ΡŽΡŽΡ‚ΡŒΡΡ Π΄ΡƒΠΆΠ΅ Π΄ΠΎΠ²Π³ΠΎ, Ρ‚ΠΎΠΌΡƒ Π²Π°Ρ€Ρ‚ΠΎ розглянути ΠΌΠΎΠΆΠ»ΠΈΠ²Ρ–ΡΡ‚ΡŒ ΠΏΠ°Ρ€Π°Π»Π΅Π»ΡŒΠ½ΠΎΠ³ΠΎ виконання Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρƒ Π² Π΄Π΅ΠΊΡ–Π»ΡŒΠΊΠΎΡ… &3Π•Π”ΠŸ&r Ρ‚Π° накопичСння Ρ—Ρ… запасів.", "quests.medium_voltage.mv_silicon.title": "Π‘ΠΈΠ»Ρ–ΠΊΠΎΠ½ΠΎΠ²ΠΈΠΉ Пил", - "quests.medium_voltage.mv_silicon.subtitle": "", + "quests.medium_voltage.mv_silicon.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_ulpic.title": "ULPIC Π§Ρ–ΠΏΠΈ", "quests.medium_voltage.mv_ulpic.subtitle": "Π—Π±ΠΈΡ€Π°ΡŽΡ‡ΠΈ Π§Ρ–ΠΏΠΈ", - "quests.medium_voltage.mv_ulpic.desc": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ Π‘Π°ΠΏΡ„Ρ–Ρ€ΠΎΠ²Ρƒ Π›Ρ–Π½Π·Ρƒ, Π³Ρ€Π°Π²Ρ–ΡŽΠΉ Π‘ΠΈΠ»Ρ–ΠΊΠΎΠ½ΠΎΠ²Ρƒ Π’Π°Ρ„Π»ΡŽ Ρƒ ULPIC Π’Π°Ρ„Π»ΡŽ. \n\nΠ¦Π΅ ΠΌΠΎΠΆΠ½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π² Π Ρ–Π·Π°ΠΊΡƒ для отримання ULPIC Π§Ρ–ΠΏΡ–Π², які Π²Π°ΠΆΠ»ΠΈΠ²Ρ– для дСяких Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΎΠ²ΠΈΡ… ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π²! \n\nΠ‘Ρ–Π»ΡŒΡˆ ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½ΠΎ ", + "quests.medium_voltage.mv_ulpic.desc": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ сапфірову Π»Ρ–Π½Π·Ρƒ, Π³Ρ€Π°Π²Ρ–ΡŽΠΉ ΠΊΡ€Π΅ΠΌΠ½Ρ–Ρ”Π²Ρƒ пластину Π² ULPIC-пластину.\n\nΠ‡Ρ— ΠΌΠΎΠΆΠ½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρƒ Ρ€Ρ–Π·Π°ΠΊΡƒ для отримання ULPIC Ρ‡ΠΈΠΏΡ–Π², які Ρ” Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΠΌΠΈ для дСяких Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΎΠ²ΠΈΡ… ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π²!\n\nΠ—ΠΎΠΊΡ€Π΅ΠΌΠ°, для Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ люка &bMV&r, який Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ, Ρ‰ΠΎΠ± підняти Ρ‚Π²Ρ–ΠΉ Π•Π”ΠŸ Π΄ΠΎ Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ рівня &bHV&r.", "quests.medium_voltage.mv_ic.title": "IC Π§Ρ–ΠΏΠΈ", "quests.medium_voltage.mv_ic.subtitle": "I C U", "quests.medium_voltage.mv_ic.desc": "Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ Π ΡƒΠ±Ρ–Π½ΠΎΠ²Ρƒ Π›Ρ–Π½Π·Ρƒ, Π³Ρ€Π°Π²Ρ–ΡŽΠΉ Π‘ΠΈΠ»Ρ–ΠΊΠΎΠ½ΠΎΠ²Ρƒ Π’Π°Ρ„Π»ΡŽ Π² ILC Π’Π°Ρ„Π»ΡŽ. \n\nΠ¦Π΅ ΠΌΠΎΠΆΠ½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π² Π Ρ–Π·Π°ΠΊΡƒ для отримання IC Π§Ρ–ΠΏΡ–Π², які Ρ” Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΠΌΠΈ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Π°ΠΌΠΈ Ρ‚Π° ΡΡ‚Π°Π½ΡƒΡ‚ΡŒ Ρ†Ρ–Π½Π½ΠΈΠΌΠΈ ΠΏΡ€ΠΈ вдосконалСнні Ρ‚Π²ΠΎΡ—Ρ… моТливостСй створСння схСм.", @@ -2584,6 +3245,9 @@ "quests.medium_voltage.lsb.title": "Π‘Ρ‚Π°Ρ” Π΄ΡƒΠΆΠ΅ ΠΏΠ°Ρ€ΠΊΠΎ", "quests.medium_voltage.lsb.subtitle": "Π―ΠΊΡ‰ΠΎ Ρƒ Ρ‚Π΅Π±Π΅ Π½Π΅ΠΎΠ±ΠΌΠ΅ΠΆΠ΅Π½Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ, Ρ†Π΅ всС ΠΎΠ΄Π½ΠΎ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ корисним", "quests.medium_voltage.lsb.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ &lдосі&r ΠΏΡ€Π°Ρ†ΡŽΡ”Ρ‚Π΅ Π½Π° &3Π’Π΅Π»ΠΈΠΊΠΎΠΌΡƒ Π±Ρ€ΠΎΠ½Π·ΠΎΠ²ΠΎΠΌΡƒ ΠΊΠΎΡ‚Π»Ρ–&r, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Π²Π°Ρ€Ρ‚ΠΎ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π½Π° &3Π’Π΅Π»ΠΈΠΊΠΈΠΉ сталСвий ΠΊΠΎΡ‚Π΅Π»&r.\n\nΠ’Ρ–Π½ Ρ‚Ρ€ΠΎΡ…ΠΈ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡˆΠΈΠΉ Π·Π° &3Π’Π‘Πš&r Ρ– виробляє &d1800 ΠΌΠ‘/Ρ‚ ΠΏΠ°Ρ€ΠΈ&r.\n\nНа Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ– ΠΌΠΈ Ρ€Π°Π΄ΠΈΠΌΠΎ Π²Π°ΠΌ спробувати ΠΉ Ρ–Π½ΡˆΡ– Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ Π³Π΅Π½Π΅Ρ€Π°Ρ†Ρ–Ρ— Π΅Π½Π΅Ρ€Π³Ρ–Ρ—.", + "quests.medium_voltage.stainless_greate.title": "Π Ρ–Π²Π΅Π½ΡŒ Π½Π΅Ρ€ΠΆΠ°Π²Ρ–ΡŽΡ‡ΠΎΡ— сталі Greate", + "quests.medium_voltage.stainless_greate.subtitle": "Високий БтрСс", + "quests.medium_voltage.stainless_greate.desc": "Π¦Π΅ завдання існує лишС для Ρ‚ΠΎΠ³ΠΎ, Ρ‰ΠΎΠ± ΠΏΠΎΠ²Ρ–Π΄ΠΎΠΌΠΈΡ‚ΠΈ Π²Π°ΠΌ, Ρ‰ΠΎ Greate ΠΌΠ°Ρ” Ρ‰Π΅ ΠΎΠ΄Π½Π΅ оновлСння Π½Π° Ρ†ΡŒΠΎΠΌΡƒ Π΅Ρ‚Π°ΠΏΡ–. \n\nΠ’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π½Π°ΠΉΡ‚ΠΈ наступний Ρ€Ρ–Π²Π΅Π½ΡŒ Π΄Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½ΠΈΡ… коліс корисним, Π°Π΄ΠΆΠ΅ Π²ΠΎΠ½ΠΈ Π΄Π°ΡŽΡ‚ΡŒ ΠΏΠΎΠ²Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π², Ρ‚Π°ΠΊ само як HV Π΄Ρ€ΠΎΠ±ΠΈΠ»ΡŒΠ½ΠΈΠΊ, Π°Π»Π΅ Ρ‰Π΅ ΠΉ Π·Π΄Π°Ρ‚Π½Ρ– обробляти ΠΊΡ–Π»ΡŒΠΊΠ° ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² одночасно!", "quests.metal_age": "Π•ΠΏΠΎΡ…Π° ΠœΠ΅Ρ‚Π°Π»ΡƒΡ€Π³Ρ–Ρ—", "quests.metal_age.subtitle": "Π’Π°ΡˆΡ– ΠΏΠ΅Ρ€ΡˆΡ– Ρ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³Ρ–Ρ‡Π½Ρ– досягнСння.", "quests.metal_age.weld_bronze_ingots.title": "Π—Π²Π°Ρ€ΡŽΠ²Π°Π½Π½Ρ Π‘Ρ€ΠΎΠ½Π·ΠΈ", @@ -2655,7 +3319,7 @@ "quests.metal_age.crucible.desc": "ВигСль Π²ΡΡ‚Π°Π½ΠΎΠ²Π»ΡŽΡ”Ρ‚ΡŒΡΡ Π½Π° Π³ΠΎΡ€Π½ΠΎ. Π’Ρ–Π½ ΠΌΠ°Ρ” 9 слотів інвСнтаря Ρ‚Π° ΠΌΡ–ΡΡ‚ΠΊΡ–ΡΡ‚ΡŒ для 4032mB Ρ€Ρ–Π΄ΠΈΠ½ΠΈ, Π²ΠΊΠ»ΡŽΡ‡Π°ΡŽΡ‡ΠΈ інтСрфСйс для ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€ΠΊΠΈ ΡΠΏΡ–Π²Π²Ρ–Π΄Π½ΠΎΡˆΠ΅Π½Π½Ρ сплавів. ВигСль Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ” свій вміст ΠΏΡ€ΠΈ Ρ€ΡƒΠΉΠ½ΡƒΠ²Π°Π½Π½Ρ–. Π’Π°ΠΊΠΎΠΆ Π²Ρ–Π½ ΠΌΠΎΠΆΠ΅ Π·Π±ΠΈΡ€Π°Ρ‚ΠΈ сирий Ρ‡Π°Π²ΡƒΠ½, якщо ΠΉΠΎΠ³ΠΎ розмістити ΠΏΡ–Π΄ домСнною ΠΏΡ–Ρ‡Ρ‡ΡŽ.\n\nΠ’Π°Ρ€Ρ‚ΠΎ пам’ятати, Ρ‰ΠΎ Ρ‚ΠΈΠ³Π΅Π»ΡŒ Π‘Π£Π”Π• намагатися ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ сплав Ρ–Π· ΡƒΡΡŒΠΎΠ³ΠΎ, Ρ‰ΠΎ Ρ” всСрСдині β€” Π²Ρ–Π½ Π½Π΅ розділяє ΠΌΠ΅Ρ‚Π°Π»ΠΈ, як плавильня Π· Tinkers’ Construct, Ρ‚ΠΎΠΌΡƒ ΠΊΡ€Π°Ρ‰Π΅ Ρ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ чистим, ΠΊΠΎΠ»ΠΈ Π²ΠΈ Π½ΠΈΠΌ Π½Π΅ користуєтСся.", "quests.metal_age.fire_bricks.title": "Π’ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΡ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ", "quests.metal_age.fire_bricks.subtitle": "Для Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–", - "quests.metal_age.fire_bricks.desc": "Π’ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΡ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для Π±ΡƒΠ΄Ρ–Π²Π½ΠΈΡ†Ρ‚Π²Π° Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–. Для створСння ΠΏΠ΅Ρ‡Ρ– Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ Ρ‰ΠΎΠ½Π°ΠΉΠΌΠ΅Π½ΡˆΠ΅ 4 Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ.\n\nΠ©ΠΎΠ± Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΠΈ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΉ процСс створСння сталі, Ρ†Π΅Π³Π»ΠΈ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ ізоляції. Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π°Π±ΠΎ розмістити 3 листи ΠΊΠΎΠ²ΠΊΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π° Π½Π°Π²ΠΊΠΎΠ»ΠΎ Π²ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½, Π°Π±ΠΎ використати Ρ–Π·ΠΎΠ»ΡΡ†Ρ–ΡŽ для Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–", + "quests.metal_age.fire_bricks.desc": "Π’ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΡ– Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для Π±ΡƒΠ΄Ρ–Π²Π½ΠΈΡ†Ρ‚Π²Π° Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–, для Ρ†ΡŒΠΎΠ³ΠΎ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Ρ‰ΠΎΠ½Π°ΠΉΠΌΠ΅Π½ΡˆΠ΅ 4 Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ. \n\nΠ©ΠΎΠ± процСс Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° сталі Π±ΡƒΠ² Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΌ, Ρ†Π΅Π³Π»ΠΈΠ½ΠΈ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ ізоляції, ΠΌΠΎΠΆΠ½Π° розмістити 3 ΠΊΠΎΠ²Π°Π½Ρ– Π·Π°Π»Ρ–Π·Π½Ρ– пластини Π½Π°Π²ΠΊΠΎΠ»ΠΎ Π²ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½, Π°Π±ΠΎ використати Ρ–Π·ΠΎΠ»ΡΡ†Ρ–ΡŽ Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–", "quests.metal_age.fully_stacked_blast_furnace.title": "ΠŸΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ ΡƒΠΊΠΎΠΌΠΏΠ»Π΅ΠΊΡ‚ΠΎΠ²Π°Π½Π° Π΄ΠΎΠΌΠ΅Π½Π½Π° ΠΏΡ–Ρ‡", "quests.metal_age.fully_stacked_blast_furnace.subtitle": "Π—Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π° Π΄ΠΎΠΌΠ΅Π½Π½Π° ΠΏΡ–Ρ‡", "quests.metal_age.fully_stacked_blast_furnace.desc": "ΠŸΠΎΠ²Π½ΠΎΡ€ΠΎΠ·ΠΌΡ–Ρ€Π½Π° Π΄ΠΎΠΌΠ΅Π½Π½Π° ΠΏΡ–Ρ‡ Π·Π΄Π°Ρ‚Π½Π° ΠΏΠ»Π°Π²ΠΈΡ‚ΠΈ Ρ‚Π° обробляти Π²Π΅Π»ΠΈΠΊΡ– обсяги Π·Π°Π»Ρ–Π·Π° одночасно. Коли Π±ΡƒΠ΄Π΅ ΠΌΠΎΠΆΠ»ΠΈΠ²Ρ–ΡΡ‚ΡŒ, Π²Π°Ρ€Ρ‚ΠΎ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ—Ρ— Π±Ρ–Π»ΡŒΡˆΠΎΡŽ, Π°Π΄ΠΆΠ΅ Π² ΠΌΠ°ΠΉΠ±ΡƒΡ‚Π½ΡŒΠΎΠΌΡƒ Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Π°Π³Π°Ρ‚ΠΎ сталі. \n\nΠŸΡ–ΡΠ»Ρ Ρ‚ΠΎΠ³ΠΎ, як Ρ‚ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρˆ свою ΠΏΠ΅Ρ€ΡˆΡƒ ΠΏΠ°Ρ€ΠΎΠ²Ρƒ сплавну плавильню, Ρ‚ΠΈ змоТСш ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅ Π²ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΠΈΡ… Ρ†Π΅Π³Π»ΠΈΠ½ Π·Π° Π½ΠΈΠΆΡ‡ΠΎΡŽ Ρ†Ρ–Π½ΠΎΡŽ.", @@ -2679,7 +3343,7 @@ "quests.metal_age.weak_steel.task3": "1 Частина Π§ΠΎΡ€Π½ΠΎΡ— Π‘Ρ€ΠΎΠ½Π·ΠΈ", "quests.metal_age.highcarb_black_steel.title": "Π†Π½Π³Ρ€Π΅Π΄Ρ–Ρ”Π½Ρ‚ΠΈ Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі", "quests.metal_age.highcarb_black_steel.subtitle": "Π—Π°ΠΊΠΎΠ½ збСрСТСння ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Ρ— Π½Π΅ Π·Π°ΡΡ‚ΠΎΡΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ", - "quests.metal_age.highcarb_black_steel.desc": "ΠžΡΡ‚Π°Π½Π½Ρ– Π΄Π²Ρ– ΠΊΠΎΠ²Π°Π΄Π»Π° Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»ΡΡŽΡ‚ΡŒΡΡ Π·Ρ– складних сплавів, для створСння яких Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Π°Π³Π°Ρ‚ΠΎ ΠΌΠ΅Ρ‚Π°Π»Ρƒ. Π‘Π»Π°Π±ΠΊΠ° ΡΡ‚Π°Π»ΡŒ Ρ– сирий Ρ‡Π°Π²ΡƒΠ½ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ Π·Π²Π°Ρ€Π΅Π½Ρ–, Ρ‰ΠΎΠ± ΡƒΡ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ високо Π²ΡƒΠ³Π»Π΅Ρ†Π΅Π²Ρƒ Ρ‡ΠΎΡ€Π½Ρƒ ΡΡ‚Π°Π»ΡŒ, яку ΠΏΠΎΡ‚Ρ–ΠΌ ΠΌΠΎΠΆΠ½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π½Π° ΠΊΠΎΠ²Π°Π΄Π»Ρ– для отримання Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі.", + "quests.metal_age.highcarb_black_steel.desc": "ΠžΡΡ‚Π°Π½Π½Ρ– Π΄Π²Π° ΠΊΠΎΠ²Π°Π΄Π»Π° Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»ΡΡŽΡ‚ΡŒΡΡ Π· комплСксних сплавів, для створСння яких Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Π°Π³Π°Ρ‚ΠΎ ΠΌΠ΅Ρ‚Π°Π»Ρƒ. Π‘Π»Π°Π±ΠΊΠ° ΡΡ‚Π°Π»ΡŒ Ρ– Ρ‡Π°Π²ΡƒΠ½ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ Π·Π²Π°Ρ€Π΅Π½Ρ– Ρƒ ВисоковуглСцСву Ρ‡ΠΎΡ€Π½Ρƒ ΡΡ‚Π°Π»ΡŒ, яку ΠΏΠΎΡ‚Ρ–ΠΌ ΠΌΠΎΠΆΠ½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π½Π° ΠΊΠΎΠ²Π°Π΄Π»Ρ–, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π§ΠΎΡ€Π½Ρƒ ΡΡ‚Π°Π»ΡŒ.\n\nΠ©ΠΎΠΉΠ½ΠΎ Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅ ΠŸΠ°Ρ€ΠΎΠ²ΠΈΠΉ палвильник сплавів, використовуйтС ΠΉΠΎΠ³ΠΎ, Ρ‰ΠΎΠ± &6ΠΏΠΎΠ΄Π²ΠΎΡ—Ρ‚ΠΈ Π²ΠΈΡ…Ρ–Π΄ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ†Ρ–Ρ—&r.", "quests.metal_age.black_steel_anvil.title": "Ковадло T5: Π§ΠΎΡ€Π½Π° ΡΡ‚Π°Π»ΡŒ", "quests.metal_age.black_steel_anvil.subtitle": "ΠŸΠ°Ρ€ΠΎΠ²Π° СнСргія Ρƒ вас Π½Π° Π΄ΠΎΠ»ΠΎΠ½Ρ–", "quests.metal_age.black_steel_anvil.desc": "Завдяки ΠšΠΎΠ²Π°Π΄Π»Ρƒ Π· Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі Ρ‚ΠΈ Ρ‚Π΅ΠΏΠ΅Ρ€ змоТСш обробляти Π·Π»ΠΈΡ‚ΠΊΠΈ Ρ‡ΠΎΡ€Π½ΠΎΡ— сталі Ρƒ Ρ€Ρ–Π·Π½Ρ– ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ. \n\nΠšΡ€Ρ–ΠΌ Ρ‚ΠΎΠ³ΠΎ, Π²Ρ–Π΄ΠΊΡ€ΠΈΠ²Π°Ρ”Ρ‚ΡŒΡΡ Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½ΠΈΠΉ Π½ΠΎΠ²ΠΈΠΉ Ρ€ΠΎΠ·Π΄Ρ–Π» Ρƒ Π³Π»Π°Π²Ρ– Рання автоматизація, присвячСний ΠΏΠ°Ρ€ΠΎΠ²Ρ–ΠΉ Π΅Π½Π΅Ρ€Π³Ρ–Ρ— високого тиску! \n\nЗвідси Ρ‚ΠΈ моТСш Π°Π±ΠΎ ΠΎΠ΄Ρ€Π°Π·Ρƒ зануритися Π² Ρ–Π½Π΄ΡƒΡΡ‚Ρ€Ρ–Π°Π»Ρ–Π·Π°Ρ†Ρ–ΡŽ, Π°Π±ΠΎ ΠΆ Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ останній Ρ€Ρ–Π²Π΅Π½ΡŒ ΠΊΠΎΠ²Π°Π΄Π΅Π», якщо Ρ…ΠΎΡ‡Π΅Ρˆ. \nАлС ΡƒΠ½ΠΈΠΊΠ°Ρ‚ΠΈ ΠΊΠΎΠ»ΡŒΠΎΡ€ΠΎΠ²ΠΎΡ— сталі Π²Ρ–Ρ‡Π½ΠΎ Π½Π΅ Π²ΠΈΠΉΠ΄Π΅!", @@ -2704,23 +3368,27 @@ "quests.metal_age.weak_blue_steel.sterling_silver": "1 Частина Π‘Ρ‚Π΅Ρ€Π»Ρ–Π½Π³ΠΎΠ²ΠΎΠ³ΠΎ Π‘Ρ€Ρ–Π±Π»Π°", "quests.metal_age.weak_blue_steel.bismuth_bronze": "1 Частина Вісмутової Π‘Ρ€ΠΎΠ½Π·ΠΈ", "quests.metal_age.highcarb_red_steel.title": "Π†Π½Π³Ρ€Π΅Π΄Ρ–Ρ”Π½Ρ‚ΠΈ Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі", - "quests.metal_age.highcarb_red_steel.subtitle": "Π§ΠΈ ΠΌΠΎΠΆΠ΅ видалСння ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Ρ— Ρ‚Π°ΠΊΠΈΠΌ Ρ‡ΠΈΠ½ΠΎΠΌ Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ для ядСрної Π±ΠΎΠΌΠ±ΠΈ?", - "quests.metal_age.highcarb_red_steel.desc": "Π§Π΅Ρ€Π²ΠΎΠ½Π° ΡΡ‚Π°Π»ΡŒ ΠΏΠΎΡ‡ΠΈΠ½Π°Ρ”Ρ‚ΡŒΡΡ Π· високо Π²ΡƒΠ³Π»Π΅Ρ†Π΅Π²ΠΎΡ— Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі, яку ΡΡ‚Π²ΠΎΡ€ΡŽΡŽΡ‚ΡŒ, Π·Π²Π°Ρ€ΡŽΡŽΡ‡ΠΈ слабку Ρ‡Π΅Ρ€Π²ΠΎΠ½Ρƒ ΡΡ‚Π°Π»ΡŒ Ρ‚Π° Ρ‡ΠΎΡ€Π½Ρƒ ΡΡ‚Π°Π»ΡŒ. ΠŸΡ–ΡΠ»Ρ Ρ†ΡŒΠΎΠ³ΠΎ Ρ—Ρ— Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΎ ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π½Π° ΠΊΠΎΠ²Π°Π΄Π»Ρ–, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Π½Π° Ρ‡Π΅Ρ€Π²ΠΎΠ½Ρƒ ΡΡ‚Π°Π»ΡŒ", + "quests.metal_age.highcarb_red_steel.subtitle": "Minecraft β€” Ρ†Π΅ Π½Π΅ симулятор Ρ„Ρ–Π·ΠΈΠΊΠΈ", + "quests.metal_age.highcarb_red_steel.desc": "Π§Π΅Ρ€Π²ΠΎΠ½Π° ΡΡ‚Π°Π»ΡŒ спочатку ΡƒΡ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ як ВисоковуглСцСва Ρ‡Π΅Ρ€Π²ΠΎΠ½Π° ΡΡ‚Π°Π»ΡŒ, яку ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒ ΡˆΠ»ΡΡ…ΠΎΠΌ Π·Π²Π°Ρ€ΡŽΠ²Π°Π½Π½Ρ Π‘Π»Π°Π±ΠΊΠΎΡ— Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі Ρ‚Π° Π§ΠΎΡ€Π½ΠΎΡ— сталі. ΠŸΠΎΡ‚Ρ–ΠΌ Ρ—Ρ— ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π½Π° ΠΊΠΎΠ²Π°Π΄Π»Ρ–, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Π½Π° Π§Π΅Ρ€Π²ΠΎΠ½Ρƒ ΡΡ‚Π°Π»ΡŒ.\n\nΠ―ΠΊΡ‰ΠΎ Ρƒ вас Ρ” ΠŸΠ°Ρ€ΠΎΠ²ΠΈΠΉ плавильник сплавів, використовуйтС ΠΉΠΎΠ³ΠΎ, Ρ‰ΠΎΠ± &6ΠΏΠΎΠ΄Π²ΠΎΡ—Ρ‚ΠΈ Π²ΠΈΡ…Ρ–Π΄ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ†Ρ–Ρ—&r.", "quests.metal_age.highcarb_blu_steel.title": "Π†Π½Π³Ρ€Π΅Π΄Ρ–Ρ”Π½Ρ‚ΠΈ ΡΠΈΠ½ΡŒΠΎΡ— сталі", "quests.metal_age.highcarb_blu_steel.subtitle": "Π›Π°Π²ΡƒΠ°Π·ΡŒΡ” ΠΏΠ΅Ρ€Π΅Π²Π΅Ρ€Ρ‚Π°Ρ”Ρ‚ΡŒΡΡ Π² ΠΌΠΎΠ³ΠΈΠ»Ρ–", - "quests.metal_age.highcarb_blu_steel.desc": "Биня Π‘Ρ‚Π°Π»ΡŒ спочатку ΡƒΡ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ як ВисоковуглСцСва Биня Π‘Ρ‚Π°Π»ΡŒ, яку ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒ ΡˆΠ»ΡΡ…ΠΎΠΌ Π·Π²Π°Ρ€ΡŽΠ²Π°Π½Π½Ρ Π‘Π»Π°Π±ΠΊΠΎΡ— Π‘ΠΈΠ½ΡŒΠΎΡ— Π‘Ρ‚Π°Π»Ρ– Π· Π§ΠΎΡ€Π½ΠΎΡŽ Π‘Ρ‚Π°Π»Π»ΡŽ. Π©ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Π½Π° Биню Π‘Ρ‚Π°Π»ΡŒ, Ρ—Ρ— ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π½Π° ΠšΠΎΠ²Π°Π΄Π»Ρ–", + "quests.metal_age.highcarb_blu_steel.desc": "Биня ΡΡ‚Π°Π»ΡŒ спочатку ΡƒΡ‚Π²ΠΎΡ€ΡŽΡ”Ρ‚ΡŒΡΡ як ВисоковуглСцСва синя ΡΡ‚Π°Π»ΡŒ, яку ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒ ΡˆΠ»ΡΡ…ΠΎΠΌ Π·Π²Π°Ρ€ΡŽΠ²Π°Π½Π½Ρ Π‘Π»Π°Π±ΠΊΠΎΡ— ΡΠΈΠ½ΡŒΠΎΡ— сталі Ρ‚Π° Π§ΠΎΡ€Π½ΠΎΡ— сталі. ΠŸΠΎΡ‚Ρ–ΠΌ Ρ—Ρ— ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π½Π° ΠΊΠΎΠ²Π°Π΄Π»Ρ–, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Π½Π° Биню ΡΡ‚Π°Π»ΡŒ.\n\nΠ―ΠΊΡ‰ΠΎ Ρƒ вас Ρ” ΠŸΠ°Ρ€ΠΎΠ²ΠΈΠΉ плавильник сплавів, використовуйтС ΠΉΠΎΠ³ΠΎ, Ρ‰ΠΎΠ± &6ΠΏΠΎΠ΄Π²ΠΎΡ—Ρ‚ΠΈ Π²ΠΈΡ…Ρ–Π΄ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ†Ρ–Ρ—&r.", "quests.metal_age.redblu_anvil.title": "Ковадло T6: Π§Π΅Ρ€Π²ΠΎΠ½Π° Π°Π±ΠΎ синя ΡΡ‚Π°Π»ΡŒ", "quests.metal_age.redblu_anvil.subtitle": "Π¦Π΅ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½ΠΎ", "quests.metal_age.redblu_anvil.desc": "ΠžΡΡ‚Π°Π½Π½Ρ–ΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ ΠΊΠΎΠ²Π°Π΄Π»Π°! Π— ΠΊΠΎΠ²Π°Π΄Π»ΠΎΠΌ 6-Π³ΠΎ рівня Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ обробляти як Ρ‡Π΅Ρ€Π²ΠΎΠ½Ρ–, Ρ‚Π°ΠΊ Ρ– сині сталСві Π·Π»ΠΈΡ‚ΠΊΠΈ Ρƒ Ρ€Ρ–Π·Π½ΠΎΠΌΠ°Π½Ρ–Ρ‚Π½Ρ– ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ.\n\nΠ¦Π΅ ΠΏΠΎΠ·Π½Π°Ρ‡Π°Ρ” Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ прогрСсії TerraFirmaCraft. Π’Π΅ΠΏΠ΅Ρ€ настав час Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚ΠΈ Π†Π½Π΄ΡƒΡΡ‚Ρ€Ρ–Π°Π»ΡŒΠ½Ρƒ Π•Ρ€Ρƒ Ρ‚Π° створити свої ΠΏΠ΅Ρ€ΡˆΡ– Π½ΠΈΠ·ΡŒΠΊΠΎΠ²ΠΎΠ»ΡŒΡ‚Π½Ρ– схСми.", "quests.metal_age.red_steel_flask.title": "Ѐляга Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі", "quests.metal_age.red_steel_flask.subtitle": "Π¦Π΅ Π½Ρ–Ρ‰ΠΎ Π² порівнянні Π· Π·Π°Π»Ρ–Π·Π½ΠΎΡŽ Ρ„Π»ΡΠ³ΠΎΡŽ", - "quests.metal_age.red_steel_flask.desc": "Π§Π΅Ρ€Π²ΠΎΠ½Π° сталСва фляга β€” Ρ†Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π° доступна фляга. Π’ΠΎΠ½Π° ΠΌΠΎΠΆΠ΅ Π²ΠΌΡ–Ρ‰ΡƒΠ²Π°Ρ‚ΠΈ ΡΡ‚Ρ–Π»ΡŒΠΊΠΈ ΠΆ Ρ€Ρ–Π΄ΠΈΠ½ΠΈ, як Ρ– Π·Π°Π»Ρ–Π·Π½Π° фляга, Π°Π»Π΅ Ρ‡Π΅Ρ€Π²ΠΎΠ½Π° сталСва фляга Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ Π»Π°ΠΌΠ°Ρ”Ρ‚ΡŒΡΡ.", + "quests.metal_age.red_steel_flask.desc": "Ѐляга Π· Π§Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі β€” Π½Π°ΠΉΠΊΡ€Π°Ρ‰Π° Π· доступних. Π’ΠΎΠ½Π° Π²ΠΌΡ–Ρ‰ΡƒΡ” ΡΡ‚Ρ–Π»ΡŒΠΊΠΈ ΠΆ Ρ€Ρ–Π΄ΠΈΠ½ΠΈ, ΡΠΊΡ–Π»ΡŒΠΊΠΈ ΠΉ Π—Π°Π»Ρ–Π·Π½Π° фляга, Π°Π»Π΅ Π½Ρ–ΠΊΠΎΠ»ΠΈ Π½Π΅ Π»Π°ΠΌΠ°Ρ”Ρ‚ΡŒΡΡ.\n\nΠ©ΠΎΠ΄ΠΎ Π¨ΠΎΠ²ΠΊΡƒ β€” Π€Π°Π½Ρ‚ΠΎΠΌΠΈ Ρ‚Ρ€Π°ΠΏΠ»ΡΡŽΡ‚ΡŒΡΡ ΠΏΠΎ Π²ΡΡŒΠΎΠΌΡƒ ΠŸΡ–Π΄Π·Π΅ΠΌΠ΅Π»Π»ΡŽ, Π°Π»Π΅ Π½Π°ΠΉΡ‡Π°ΡΡ‚Ρ–ΡˆΠ΅ β€” Π½Π° Π½ΠΈΠΆΠ½ΡŒΠΎΠΌΡƒ Ρ€Ρ–Π²Π½Ρ–.", "quests.metal_age.redblu_buckets.title": "ΠšΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚ΠΈ Π²Ρ–Π΄Ρ€Π°", "quests.metal_age.redblu_buckets.subtitle": "Π Π΅Π°ΠΊΡ‚ΠΎΡ€ тСрмоядСрного синтСзу Ρƒ Π²Ρ–Π΄Ρ€Ρ–", "quests.metal_age.redblu_buckets.desc": "ΠžΡΡ‚Π°Π½Π½Ρ–ΠΌ завданням Ρƒ ΠœΠ΅Ρ‚Π°Π»ΡƒΡ€Π³Ρ–ΠΉΠ½Ρ–ΠΉ Π•Ρ€Ρ– Ρ” створСння Π²Ρ–Π΄Ρ€Π°. На Π²Ρ–Π΄ΠΌΡ–Π½Ρƒ Π²Ρ–Π΄ Π΄Π΅Ρ€Π΅Π²'яного Π²Ρ–Π΄Ρ€Π° Ρ‚Π° Ρ–Π½ΡˆΠΈΡ… ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€Ρ–Π² для Ρ€Ρ–Π΄ΠΈΠ½, які Π²ΠΈ використовували Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ часу, Π²Ρ–Π΄Ρ€ΠΎ ΠΌΠΎΠΆΠ½Π° використовувати для пСрСнСсСння Π»Π°Π²ΠΈ Ρ‚Π° пСрСміщСння Π²ΠΈΡ…Ρ–Π΄Π½ΠΈΡ… Π±Π»ΠΎΠΊΡ–Π² Ρ–Π½ΡˆΠΈΡ… Ρ€Ρ–Π΄ΠΈΠ½.", "quests.metal_age.this_is_a_bucket.title": "Π¦Π΅... Π’Ρ–Π΄Ρ€ΠΎ.", "quests.metal_age.this_is_a_bucket.subtitle": "О, Π‘ΠΎΠΆΠ΅...", "quests.metal_age.this_is_a_bucket.desc": "Π’Ρ–Ρ‚Π°ΡŽ вас Π·Ρ– створСнням Π²Ρ–Π΄Ρ€Π°. ΠœΠ΅Ρ‚Π°Π»ΡƒΡ€Π³Ρ–ΠΉΠ½Π° Π•Ρ€Π° ΠΎΡ„Ρ–Ρ†Ρ–ΠΉΠ½ΠΎ Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π°.\n\nНастав час приступити Π΄ΠΎ Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Π½Π°Π΄ ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Π°ΠΌΠΈ Π½ΠΈΠ·ΡŒΠΊΠΎΠ²ΠΎΠ»ΡŒΡ‚Π½ΠΎΡ— Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ½Ρ–ΠΊΠΈ!", + "quests.metal_age.temperature_protection.title": "Обладнання Π· ΠšΠΎΠ»ΡŒΠΎΡ€ΠΎΠ²ΠΎΡ— сталі", + "quests.metal_age.temperature_protection.subtitle": "ΠŸΠΎΡΡ‚Ρ–ΠΉΠ½ΠΈΠΉ захист Π²Ρ–Π΄ Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ", + "quests.metal_age.temperature_protection.desc": "Втомився Ρ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Ρ‰ΠΈΠΏΡ†Ρ–? Π’Ρ–Π΄ΠΌΡ–Π½Π½Ρ– тСрмозахисні властивості ΠΊΠΎΠ»ΡŒΠΎΡ€ΠΎΠ²ΠΎΡ— сталі ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ΡŒΡΡ ΠΉ Π½Π° спорядТСння!\n\nОбладнання Π· &9Π‘ΠΈΠ½ΡŒΠΎΡ— сталі&r Π·Π°Ρ…ΠΈΡ‰Π°Ρ” Π²Ρ–Π΄ Π΅ΠΊΡΡ‚Ρ€Π΅ΠΌΠ°Π»ΡŒΠ½ΠΎΠ³ΠΎ Ρ‚Π΅ΠΏΠ»Π° β€” Π½Π°ΠΏΡ€ΠΈΠΊΠ»Π°Π΄, ΠΏΡ€ΠΈ Ρ‚Ρ€ΠΈΠΌΠ°Π½Π½Ρ– Ρ€ΠΎΠ·ΠΏΠ΅Ρ‡Π΅Π½ΠΈΡ… Π·Π»ΠΈΡ‚ΠΊΡ–Π² Π°Π±ΠΎ Ρ…ΠΎΠ΄Ρ–Π½Π½Ρ– ΠΏΠΎ Ρ‚Ρ€ΡƒΠ±Π°Ρ… Ρ–Π· ΠΏΠ°Ρ€ΠΎΡŽ, Ρ‚ΠΎΠ΄Ρ– як обладнання Π· &cΠ§Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— сталі&r Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡ” Ρ‚Π°ΠΊΠΈΠΉ самий захист, Π°Π»Π΅ Π²Ρ–Π΄ Ρ…ΠΎΠ»ΠΎΠ΄Ρƒ. Нагрудники Π·Π°Ρ…ΠΈΡ‰Π°ΡŽΡ‚ΡŒ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€, Π° Ρ‡Π΅Ρ€Π΅Π²ΠΈΠΊΠΈ β€” Π²Ρ–Π΄ Ρ‚Ρ€ΡƒΠ±.\n\nΠŸΠ΅Ρ€Π΅Π²Ρ–Ρ€Ρ‚Π΅ Ρ‚Π΅Π³ΠΈ &6#hot_protection_equipment&r Ρ‚Π° &b#cold_protection_equipment&r, Ρ‰ΠΎΠ± ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ ΠΏΠΎΠ²Π½ΠΈΠΉ список!", + "quests.metal_age.temperature_protection.task": "Π‘ΡƒΠ΄ΡŒ-якС обладнання Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΎΡ— Π°Π±ΠΎ ΡΠΈΠ½ΡŒΠΎΡ— сталі", "quests.ore_proc": "ΠžΠ±Ρ€ΠΎΠ±ΠΊΠ° Ρ€ΡƒΠ΄ΠΈ", "quests.ore_proc.subtitle": "ВсС, Ρ‰ΠΎ Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ, Ρ‰ΠΎΠ± максимально Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½ΠΎ використовувати Ρ€ΡƒΠ΄Ρƒ", "quests.ore_proc.native_ore.title": "Ласкаво просимо Π΄ΠΎ ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ Ρ€ΡƒΠ΄ΠΈ", @@ -2777,7 +3445,7 @@ "quests.ore_proc.macerator_byproduct.task": "Або HV ΠŸΠΎΠ΄Ρ€Ρ–Π±Π½ΡŽΠ²Π°Ρ‡, Π°Π±ΠΎ ΠŸΠΎΠ΄Ρ€Ρ–Π±Π½ΡŽΠ²Π°Π»ΡŒΠ½Ρ– HS", "quests.ore_proc.sodium_persulfate.title": "Π—Π°Π½ΡƒΡ€ Ρ—Ρ… Ρƒ Π½Π°Ρ‚Ρ€Ρ–Ρ”Π²ΠΈΠΉ ΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚", "quests.ore_proc.sodium_persulfate.subtitle": "НС лишС для травлСння Π΄Ρ€ΡƒΠΊΠΎΠ²Π°Π½ΠΈΡ… ΠΏΠ»Π°Ρ‚", - "quests.ore_proc.sodium_persulfate.desc": "Коли Ρ‚ΠΈ досягнСш LV, Ρ‚ΠΎΠ±Ρ– ΠΌΠΎΠΆΠ΅ стати Ρ†Ρ–ΠΊΠ°Π²ΠΎ використовувати &bΠ₯Ρ–ΠΌΡ–Ρ‡Π½Ρƒ Π²Π°Π½Π½Ρƒ&r Π· &dНатрієвим ΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ΠΎΠΌ&r для отримання Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΡ… ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π². НС всі Ρ€ΡƒΠ΄ΠΈ ΠΌΠΎΠΆΠ½Π° ΠΎΠ±Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ‚Π°ΠΊΠΈΠΌ способом, Π°Π»Π΅ Ρ‚Ρ–, Ρ‰ΠΎ ΠΌΠΎΠΆΠ½Π°, ΠΌΠ°ΡŽΡ‚ΡŒ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ &670 відсотків&r шанс ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π², порівняно Π· &630 відсотків&r Ρƒ &bΠŸΡ€ΠΎΠΌΠΈΠ²Π½Ρ–ΠΉ ΠΌΠ°ΡˆΠΈΠ½Ρ–&r.\n\nНатрієвий ΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Π΄ΠΎΡΠΈΡ‚ΡŒ складним для масового Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π°, Π°Π»Π΅ якщо Ρ‚ΠΎΠ±Ρ– ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ, &9ΠœΠΎΡ€ΡΡŒΠΊΠ° Π²ΠΎΠ΄Π°&r Ρ” Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎΡŽ Π²Ρ–Π΄ΠΏΡ€Π°Π²Π½ΠΎΡŽ Ρ‚ΠΎΡ‡ΠΊΠΎΡŽ.\n\nЗавдання Π·Π»Ρ–Π²Π° ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ ΠΊΡ–Π»ΡŒΠΊΠ° ΠΏΡ€ΠΈΠΊΠ»Π°Π΄Ρ–Π², які ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π²ΠΈΠΏΡ€Π°Π²Π΄Π°Ρ‚ΠΈ вкладСння.", + "quests.ore_proc.sodium_persulfate.desc": "Коли Π²ΠΈ Π΄Ρ–ΡΡ‚Π°Π½Π΅Ρ‚Π΅ΡΡŒ Π΄ΠΎ &7LV&r, Π²Π°ΠΌ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Ρ†Ρ–ΠΊΠ°Π²ΠΎ використати &bΠ₯Ρ–ΠΌΡ–Ρ‡Π½Ρƒ Π²Π°Π½Π½Ρƒ&r Π· &dΠŸΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ΠΎΠΌ Π½Π°Ρ‚Ρ€Ρ–ΡŽ&r, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²Ρ– ΠΏΠΎΠ±Ρ–Ρ‡Π½Ρ– ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ. \nНС всі Ρ€ΡƒΠ΄ΠΈ ΠΌΠΎΠΆΠ½Π° обробляти Ρ‚Π°ΠΊΠΈΠΌ способом, Π°Π»Π΅ Ρ‚Ρ–, Ρ‰ΠΎ ΠΌΠΎΠΆΠ½Π°, Π΄Π°ΡŽΡ‚ΡŒ близько &670 відсотків&r ΡˆΠ°Π½ΡΡ–Π² Π½Π° ΠΏΠΎΠ±Ρ–Ρ‡Π½Ρ– ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈ, порівняно Π· &630 відсотками&r Ρƒ &bΠ ΡƒΠ΄ΠΎΠΌΠΈΠΉΠΊΠΈ&r. \n\nΠŸΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ Π½Π°Ρ‚Ρ€Ρ–ΡŽ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΊΠ»ΠΎΠΏΡ–Ρ‚Π½ΠΈΠΌ Ρƒ масовому Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Ρ–, Ρ…ΠΎΡ‡Π°, якщо Π±Π°ΠΆΠ°Ρ”Ρ‚Π΅, &9ΠœΠΎΡ€ΡΡŒΠΊΠ° Π²ΠΎΠ΄Π°&r Ρ” Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎΡŽ Π²Ρ–Π΄ΠΏΡ€Π°Π²Π½ΠΎΡŽ Ρ‚ΠΎΡ‡ΠΊΠΎΡŽ. \n\nЗавдання Π»Ρ–Π²ΠΎΡ€ΡƒΡ‡ Π½Π°Π²ΠΎΠ΄ΠΈΡ‚ΡŒ ΠΏΡ€ΠΈΠΊΠ»Π°Π΄ΠΈ, які ΠΌΠΎΠΆΡƒΡ‚ΡŒ виявитися Π²Π°Ρ€Ρ‚ΠΈΠΌΠΈ інвСстицій.", "quests.ore_proc.sodium_ores.title": "ΠŸΡ€ΠΈΠΊΠ»Π°Π΄ΠΈ ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ Π½Π°Ρ‚Ρ€Ρ–Ρ”Π²ΠΈΠΌ ΠΏΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ΠΎΠΌ", "quests.ore_proc.sodium_ores.subtitle": "ΠšΠΎΡ€ΠΈΡΠ½ΠΈΠΉ засіб для Π΅ΠΊΠΎΠ½ΠΎΠΌΡ–Ρ— часу", "quests.ore_proc.sodium_ores.desc": "Ось ΠΊΡ–Π»ΡŒΠΊΠ° Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄Π°Ρ†Ρ–ΠΉ Ρ‰ΠΎΠ΄ΠΎ ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ ΠŸΠ΅Ρ€ΡΡƒΠ»ΡŒΡ„Π°Ρ‚ΠΎΠΌ ΠΠ°Ρ‚Ρ€Ρ–ΡŽ:\n\n- &6ΠŸΠΎΠ΄Ρ€Ρ–Π±Π½Π΅Π½ΠΈΠΉ ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΠΉ&r: для &dΠ ΡƒΡ‚ΠΈΠ»Ρƒ&r (Π’ΠΈΡ‚Π°Π½)\n\n- &6ΠŸΠΎΠ΄Ρ€Ρ–Π±Π½Π΅Π½ΠΈΠΉ Боксит&r: &dΠ“Π°Π»Ρ–ΠΉ&r\n\n- &6ΠŸΠΎΠ΄Ρ€Ρ–Π±Π½Π΅Π½ΠΈΠΉ ΠšΠΎΠ±Π°Π»ΡŒΡ‚&r: &dΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΠ½&r для &dΠœΠΈΡˆβ€™ΡΠΊΡƒ&r", @@ -2857,14 +3525,15 @@ "quests.space_survival.solar_panels.title": "Бонячні ΠŸΠ°Π½Π΅Π»Ρ–", "quests.space_survival.solar_panels.subtitle": "Π‘Π»Π°Π²Π° ΡΠΎΠ½Ρ†ΡŽ!", "quests.space_survival.solar_panels.desc": "На ΠœΡ–ΡΡΡ†Ρ– доступно Π΄ΡƒΠΆΠ΅ ΠΌΠ°Π»ΠΎ Π΄ΠΆΠ΅Ρ€Π΅Π» Π΅Π½Π΅Ρ€Π³Ρ–Ρ—, Π°Π»Π΅ Ρ†Ρ– &eБонячні ΠŸΠ°Π½Π΅Π»Ρ–&r ΠΌΠ°ΡŽΡ‚ΡŒ Ρ‡ΡƒΠ΄ΠΎΠ²ΠΈΠΉ Π²ΠΈΠ΄ Π½Π° Π‘ΠΎΠ½Ρ†Π΅ звідси!\n\nНа ΠœΡ–ΡΡΡ†Ρ– ΠΊΠΎΠΆΠ½Π° Бонячна ПанСль Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡ” Π΅ΠΊΠ²Ρ–Π²Π°Π»Π΅Π½Ρ‚ &932 EU/t&r вдСнь Π±Π΅Π· ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈ Ρƒ ΠΏΠ°Π»ΠΈΠ²Ρ– Ρ‡ΠΈ обслуговуванні, Π°Π»Π΅ Π½Π° ΠΏΠΎΠ²Π΅Ρ€Ρ…Π½Ρ– Π—Π΅ΠΌΠ»Ρ– Π²ΠΎΠ½ΠΈ Π²ΠΈΡ€ΠΎΠ±Π»ΡΡŽΡ‚ΡŒ лишС Π²ΠΎΡΡŒΠΌΡƒ частину Ρ†Ρ–Ρ”Ρ— потуТності. Π’Ρ–Π·ΡŒΠΌΠΈ Π· собою якомога Π±Ρ–Π»ΡŒΡˆΠ΅!", + "quests.space_survival.solar_panels.task": "Π‘ΡƒΠ΄ΡŒ-який ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‡ FE Ρƒ EU", "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.2": "2) Π’ΠΈΠΊΠ°Ρ‡Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π· ‘Ρ€ΡƒΠ½Ρ‚Ρƒ Π·Π° допомогою &9Π Ρ–Π΄ΠΈΠ½Π½ΠΎΡ— Π±ΡƒΡ€ΠΎΠ²ΠΎΡ— установки&r. Π¦Π΅ΠΉ ΠΌΠ΅Ρ‚ΠΎΠ΄ ΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΈΠΉ, Π°Π»Π΅ Π½Π΅ Π΄Π°Ρ” ΠΆΠΎΠ΄Π½ΠΈΡ… корисних ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π².\n\nΠ“Π΅Π»Ρ–ΠΉ-3 Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для ΠΊΡ–Π»ΡŒΠΊΠΎΡ… Ρ€Π΅Ρ‡Π΅ΠΉ, Π½Π°ΠΉΠ²Π°ΠΆΠ»ΠΈΠ²Ρ–ΡˆΠ° Π· яких β€” Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΎΠ³ΠΎ повітря для дихання Ρ‡Π΅Ρ€Π΅Π· &6ГСліокс-3&r! Π™ΠΎΠ³ΠΎ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ½Π° використовувати як Β«Π΄ΠΎΠ±Ρ€ΠΈΠ²ΠΎΒ» для ΠΏΠ»ΠΎΠ΄Ρ–Π² хорусу Π² Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Ρ–ΠΉ Ρ‚Π΅ΠΏΠ»ΠΈΡ†Ρ–, Π° Π·Π³ΠΎΠ΄ΠΎΠΌ β€” як Ρ‰Π΅ ΠΎΠ΄Π½Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ для тСрмоядСрної Π΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΠΊΠΈ.", + "quests.space_survival.stone_dust_centrifuging.desc.2": "2) Π’ΠΈΠΊΠ°Ρ‡ΡƒΠΉΡ‚Π΅ ΠΉΠΎΠ³ΠΎ Π·-ΠΏΡ–Π΄ Π·Π΅ΠΌΠ»Ρ– Π·Π° допомогою &9Π Ρ–Π΄ΠΈΠ½Π½ΠΎΠ³ΠΎ Π±ΡƒΡ€Ρƒ&r. Π¦Π΅ΠΉ ΠΌΠ΅Ρ‚ΠΎΠ΄ ΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΈΠΉ, Π°Π»Π΅ Π½Π΅ Π΄Π°Ρ” ΠΆΠΎΠ΄Π½ΠΈΡ… корисних ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π². \n\nΠ“Π΅Π»Ρ–ΠΉ-3 Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для ΠΊΡ–Π»ΡŒΠΊΠΎΡ… Ρ€Π΅Ρ‡Π΅ΠΉ, Π½Π°ΠΉΠ²Π°ΠΆΠ»ΠΈΠ²Ρ–ΡˆΠ° Π· яких β€” створСння Π±Ρ–Π»ΡŒΡˆΠΎΡ— ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚Ρ– повітря для дихання Ρ‡Π΅Ρ€Π΅Π· &6ГСліокс-3&r! \nΠ’ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ застосовувати ΠΉΠΎΠ³ΠΎ як Β«Π΄ΠΎΠ±Ρ€ΠΈΠ²ΠΎΒ» для ΠΏΠ»ΠΎΠ΄Ρ–Π² хоруса Π² Π•Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Ρ–ΠΉ Ρ‚Π΅ΠΏΠ»ΠΈΡ†Ρ–, Π° Π·Π³ΠΎΠ΄ΠΎΠΌ β€” як Ρ‰Π΅ ΠΎΠ΄Π½Π΅ ΠΏΠ°Π»ΠΈΠ²ΠΎ для тСрмоядСрної Π΅Π½Π΅Ρ€Π³Ρ–Ρ—.", "quests.space_survival.stone_dust_centrifuging.task": "Π‘ΡƒΠ΄ΡŒ-якС ", "quests.space_survival.compressed_gases.title": "БтиснСні Π³Π°Π·ΠΈ, ΠΏΡ€ΠΈΠ΄Π°Ρ‚Π½Ρ– для дихання", "quests.space_survival.compressed_gases.subtitle": "Π‘ΠΎ чистий кисСнь β€” Ρ†Π΅ ΡΠΌΠ΅Ρ€Ρ‚Π΅Π»ΡŒΠ½ΠΎ Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ", - "quests.space_survival.compressed_gases.desc": "Π’Ρ–Π΄Ρ‡ΡƒΠ²Π°Ρ”Ρˆ, Ρ‰ΠΎ Ρ‚Ρ€ΠΎΡ…ΠΈ Π½Π΅ вистачає повітря? Π£ космосі Π±Π΅Π· Ρ‡ΠΎΠ³ΠΎΡΡŒ для дихання Π½Π΅ ΠΎΠ±Ρ–ΠΉΡ‚ΠΈΡΡŒ, Ρ‚ΠΎΠΆ Π²Π°Ρ€Ρ‚ΠΎ Π·Π²Π΅Ρ€Π½ΡƒΡ‚ΠΈ ΡƒΠ²Π°Π³Ρƒ Π½Π° Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ стиснСних Π³Π°Π·Ρ–Π² β€” Π²ΠΎΠ½ΠΈ засновані Π½Π° Ρ€Π΅Π°Π»ΡŒΠ½ΠΈΡ… ΡΡƒΠΌΡ–ΡˆΠ°Ρ…, які Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для Π³Π»ΠΈΠ±ΠΎΠΊΠΎΠ²ΠΎΠ΄Π½ΠΎΠ³ΠΎ занурСння!\n\nΠšΠΎΡΠΌΡ–Ρ‡Π½ΠΈΠΉ ΠΊΠΎΡΡ‚ΡŽΠΌ ΠΌΠΎΠΆΠ½Π° Π·Π°ΠΏΠΎΠ²Π½ΠΈΡ‚ΠΈ Π½ΠΈΠΌΠΈ Ρ‚Π°ΠΊ само, як Π·Π°ΠΏΠΎΠ²Π½ΡŽΡ”Ρ‚ΡŒΡΡ Π²Ρ–Π΄Ρ€ΠΎ, Π°Π±ΠΎ ΠΆ, якщо взяти Π· собою &bΠ“Π°Π·ΠΎΠ²ΠΈΠΉ Π±Π°Π»ΠΎΠ½&r, Ρ‚ΠΈ змоТСш Β«ΠΏΠΈΡ‚ΠΈΒ» Π· нього, Ρ‰ΠΎΠ± ΠΏΠΎΠΏΠΎΠ²Π½ΠΈΡ‚ΠΈ запас Π³Π°Π·Ρƒ Π² ΠΊΠΎΡΡ‚ΡŽΠΌΡ– Π±Π΅Π· нСобхідності ΠΉΠΎΠ³ΠΎ Π·Π½Ρ–ΠΌΠ°Ρ‚ΠΈ.\n\n&2Нітрокс&r β€” Π½Π°ΠΉΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΈΠΉ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π½Π° Π—Π΅ΠΌΠ»Ρ–, Π° &eГСліокс-3&r ΠΌΠΎΠΆΠ½Π° Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Π½Π° ΠœΡ–ΡΡΡ†Ρ–.\n\nΠŸΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°ΠΏΠΎΠ²Π½Π΅Π½ΠΈΠΉ ΠΊΠΎΡΡ‚ΡŽΠΌ (2000 ΠΌΠ‘) Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ &c20 Ρ…Π²ΠΈΠ»ΠΈΠ½&r дихання.", + "quests.space_survival.compressed_gases.desc": "Π’Ρ–Π΄Ρ‡ΡƒΠ²Π°Ρ”Ρˆ, Ρ‰ΠΎ Ρ‚Ρ€ΠΎΡ…ΠΈ Π½Π΅ вистачає повітря? Π£ космосі Π±Π΅Π· Ρ‡ΠΎΠ³ΠΎΡΡŒ для дихання Π½Π΅ ΠΎΠ±Ρ–ΠΉΡ‚ΠΈΡΡŒ, Ρ‚ΠΎΠΆ Π²Π°Ρ€Ρ‚ΠΎ Π·Π²Π΅Ρ€Π½ΡƒΡ‚ΠΈ ΡƒΠ²Π°Π³Ρƒ Π½Π° Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ стиснСних Π³Π°Π·Ρ–Π² β€” Π²ΠΎΠ½ΠΈ засновані Π½Π° Ρ€Π΅Π°Π»ΡŒΠ½ΠΈΡ… ΡΡƒΠΌΡ–ΡˆΠ°Ρ…, які Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для Π³Π»ΠΈΠ±ΠΎΠΊΠΎΠ²ΠΎΠ΄Π½ΠΎΠ³ΠΎ занурСння!\n\nΠšΠΎΡΠΌΡ–Ρ‡Π½ΠΈΠΉ ΠΊΠΎΡΡ‚ΡŽΠΌ ΠΌΠΎΠΆΠ½Π° Π·Π°ΠΏΠΎΠ²Π½ΠΈΡ‚ΠΈ Π½ΠΈΠΌΠΈ Ρ‚Π°ΠΊ само, як Π·Π°ΠΏΠΎΠ²Π½ΡŽΡ”Ρ‚ΡŒΡΡ Π²Ρ–Π΄Ρ€ΠΎ, Π°Π±ΠΎ ΠΆ, якщо взяти Π· собою &bΠ“Π°Π·ΠΎΠ²ΠΈΠΉ Π±Π°Π»ΠΎΠ½&r, Ρ‚ΠΈ змоТСш Β«ΠΏΠΈΡ‚ΠΈΒ» Π· нього, Ρ‰ΠΎΠ± ΠΏΠΎΠΏΠΎΠ²Π½ΠΈΡ‚ΠΈ запас Π³Π°Π·Ρƒ Π² ΠΊΠΎΡΡ‚ΡŽΠΌΡ– Π±Π΅Π· нСобхідності ΠΉΠΎΠ³ΠΎ Π·Π½Ρ–ΠΌΠ°Ρ‚ΠΈ.\n\n&2Нітрокс&r β€” Π½Π°ΠΉΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΈΠΉ для Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²Π° Π½Π° Π—Π΅ΠΌΠ»Ρ–, Π° &eГСліокс-3&r ΠΌΠΎΠΆΠ½Π° Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Ρ‚ΠΈ Π½Π° ΠœΡ–ΡΡΡ†Ρ–.\n\nΠŸΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π°ΠΏΠΎΠ²Π½Π΅Π½ΠΈΠΉ ΠΊΠΎΡΡ‚ΡŽΠΌ (2500 ΠΌΠ‘) Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΠΈΡ‚ΡŒ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ &c45 Ρ…Π²ΠΈΠ»ΠΈΠ½&r дихання.", "quests.space_survival.compressed_gases.task": "Π‘ΡƒΠ΄ΡŒ-який стиснСний Π³Π°Π·, ΠΏΡ€ΠΈΠ΄Π°Ρ‚Π½ΠΈΠΉ для дихання", "quests.space_survival.zip_gun.title": "ΠŸΠΎΠ²Ρ–Ρ‚Ρ€ΡΠ½Π° зброя", "quests.space_survival.zip_gun.subtitle": "НачС Ρ€Π΅Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΉ Ρ€Π°Π½Π΅Ρ†ΡŒ Ρƒ Ρ‚Π²ΠΎΡ—ΠΉ Π΄ΠΎΠ»ΠΎΠ½Ρ–", @@ -2930,10 +3599,10 @@ "quests.space_survival.mars_desert.task": "Π’Ρ–Π΄Π²Ρ–Π΄Π°ΠΉΡ‚Π΅ Π±Ρ–ΠΎΠΌ ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠ° Π³Π»ΠΈΠ±ΠΎΠΊΠ° пустСля", "quests.space_survival.sandworm.title": "ΠŸΡ–Ρ‰Π°Π½ΠΈΠΉ Ρ‡Π΅Ρ€Π²", "quests.space_survival.sandworm.subtitle": "SHAI-HULUD", - "quests.space_survival.sandworm.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ створитС Π·Π°Π½Π°Π΄Ρ‚ΠΎ Π±Π°Π³Π°Ρ‚ΠΎ ΡˆΡƒΠΌΡƒ Π² пустСлі, ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΈΠ²Π΅Ρ€Π½ΡƒΡ‚ΠΈ ΡƒΠ²Π°Π³Ρƒ ΠΌΠΎΠ³ΡƒΡ‚Π½ΡŒΠΎΠ³ΠΎ &6ΠŸΡ–Ρ‰Π°Π½ΠΎΠ³ΠΎ Ρ…Ρ€ΠΎΠ±Π°ΠΊΠ°&r! Π¦Π΅ Ρ€Π°Π΄ΡˆΠ΅ ΠΏΡ€ΠΈΡ€ΠΎΠ΄Π½Π° Π½Π΅Π±Π΅Π·ΠΏΠ΅ΠΊΠ°, Π½Ρ–ΠΆ бос, якого ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π²Π±ΠΈΡ‚ΠΈ, Ρ‚ΠΎΠΆ Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΉ спосіб Π²ΠΈΠΆΠΈΡ‚ΠΈ β€” просто Ρ‚Ρ–ΠΊΠ°Ρ‚ΠΈ! \n\nΠ―ΠΊΡ‰ΠΎ ΠΆ Π²Π°ΠΌ Π²Π΄Π°ΡΡ‚ΡŒΡΡ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ Ρ€Π°Π·Ρ–Π² Π²Π»ΡƒΡ‡ΠΈΡ‚ΠΈ ΠΉΠΎΠΌΡƒ Π² Π³ΠΎΠ»ΠΎΠ²Ρƒ, Π·Π°Π²Π΄Π°ΡŽΡ‡ΠΈ &bΠ²ΠΈΠ±ΡƒΡ…ΠΎΠ²ΠΈΡ… ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΡŒ&r, Π²Ρ–Π½ Π·Π°Π»ΠΈΡˆΠΈΡ‚ΡŒ вас Ρƒ спокої... Π½Π° дСякий час. \n\nНа щастя, ΠŸΡ–Ρ‰Π°Π½ΠΈΠΉ Ρ…Ρ€ΠΎΠ±Π°ΠΊ ΠΌΠΎΠΆΠ΅ Π·Π°Π²Π΄Π°Π²Π°Ρ‚ΠΈ шкоди лишС сутностям, Π° Π½Π΅ будівлям, Ρ– ΠΉΠΎΠ³ΠΎ ΠΏΡ€ΠΈΠ²Π°Π±Π»ΡŽΡŽΡ‚ΡŒ лишС &6сліди Π³Ρ€Π°Π²Ρ†Ρ–Π²&r, Ρ‚ΠΎΠΆ Π΄ΠΈΠΊΡ– Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ, транспорт Ρ‡ΠΈ потяги ΠΉΠΎΠ³ΠΎ Π½Π΅ Ρ€ΠΎΠ·Π»ΡŽΡ‚ΡΡ‚ΡŒ.", + "quests.space_survival.sandworm.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ Π½Π°Ρ€ΠΎΠ±ΠΈΡ‚Π΅ Π·Π°Π½Π°Π΄Ρ‚ΠΎ Π±Π°Π³Π°Ρ‚ΠΎ ΡˆΡƒΠΌΡƒ Π² пустСлі, ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΈΠ²Π΅Ρ€Π½ΡƒΡ‚ΠΈ ΡƒΠ²Π°Π³Ρƒ ΠΌΠΎΠ³ΡƒΡ‚Π½ΡŒΠΎΠ³ΠΎ &6ΠŸΡ–Ρ‰Π°Π½ΠΎΠ³ΠΎ Π₯Ρ€ΠΎΠ±Π°ΠΊΠ°&r! Π¦Π΅ Ρ€Π°Π΄ΡˆΠ΅ ΠΏΡ€ΠΈΡ€ΠΎΠ΄Π½Π° Π½Π΅Π±Π΅Π·ΠΏΠ΅ΠΊΠ°, Π½Ρ–ΠΆ бос для вбивства, Ρ‚ΠΎΠΆ Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΉ спосіб Π²ΠΈΠΆΠΈΡ‚ΠΈ β€” просто Ρ‚Ρ–ΠΊΠ°Ρ‚ΠΈ! \n\nΠ―ΠΊΡ‰ΠΎ ΠΆ Π²Π°ΠΌ Π²Π΄Π°ΡΡ‚ΡŒΡΡ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ Ρ€Π°Π·Ρ–Π² Π²Π»ΡƒΡ‡ΠΈΡ‚ΠΈ ΠΉΠΎΠΌΡƒ Π² Π³ΠΎΠ»ΠΎΠ²Ρƒ &bΠ²ΠΈΠ±ΡƒΡ…ΠΎΠ²ΠΈΠΌ ΡƒΡ€ΠΎΠ½ΠΎΠΌ&r, Π²Ρ–Π½ Π·Π°Π»ΠΈΡˆΠΈΡ‚ΡŒ вас Ρƒ спокої… Π½Π° дСякий час. \n\nНа щастя, ΠŸΡ–Ρ‰Π°Π½ΠΈΠΉ Π₯Ρ€ΠΎΠ±Π°ΠΊ ΠΌΠΎΠΆΠ΅ ΠΏΠΎΡˆΠΊΠΎΠ΄ΠΆΡƒΠ²Π°Ρ‚ΠΈ лишС сутності, Π° Π½Π΅ Π±ΡƒΠ΄Ρ–Π²Π»Ρ–, Ρ– ΠΉΠΎΠ³ΠΎ ΠΏΡ€ΠΈΠ²Π°Π±Π»ΡŽΡŽΡ‚ΡŒ лишС &6сліди Π³Ρ€Π°Π²Ρ†Ρ–Π²&r. Π’ΠΎΠΆ Π±ΡƒΠ΄ΡŒβ€‘ΡΠΊΠΈΠΉ спосіб Ρ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ &bсвої Π½ΠΎΠ³ΠΈ&r ΠΏΠΎΠ΄Π°Π»Ρ– Π²Ρ–Π΄ Π·Π΅ΠΌΠ»Ρ– Π½Π΅ Ρ€ΠΎΠ·Π»ΡŽΡ‚ΠΈΡ‚ΡŒ ΠΉΠΎΠ³ΠΎ. АтмосфСра Π·Π°Π½Π°Π΄Ρ‚ΠΎ Ρ€ΠΎΠ·Ρ€Ρ–Π΄ΠΆΠ΅Π½Π° для Π»Ρ–Ρ‚Π°ΠΊΡ–Π² Ρ– Π΄Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½Ρ–Π², Π°Π»Π΅ Ρ” ΠΉ Ρ–Π½ΡˆΡ– інструмСнти...", "quests.space_survival.spice.title": "Поклад ΠžΡΡ‚Ρ€ΠΎΠΌΡƒ", "quests.space_survival.spice.subtitle": "ΠŸΡ€ΡΠ½Ρ–ΡΡ‚ΡŒ МСланТ", - "quests.space_survival.spice.desc": "&dПоклади оструму&r β€” Ρ†Π΅ Π½Π΅Ρ€ΡƒΡ…ΠΎΠΌΡ– Π±Π»ΠΎΠΊΠΈ, які ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ лишС Π² ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΡ–ΠΉ Π³Π»ΠΈΠ±ΠΎΠΊΡ–ΠΉ пустСлі, Π΄Π°Π»Π΅ΠΊΠΎ Π²Ρ–Π΄ Π±Ρ–Π»ΡŒΡˆ Ρ€ΠΎΠ΄ΡŽΡ‡ΠΈΡ… ΠΌΡ–ΡΡ†ΡŒ. Π’ΠΎΠ½ΠΈ Π·β€™ΡΠ²Π»ΡΡŽΡ‚ΡŒΡΡ Π½Π΅Π²Π΅Π»ΠΈΠΊΠΈΠΌΠΈ скупчСннями ΠΉ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ Π·Ρ€ΡƒΠΉΠ½ΠΎΠ²Π°Π½Ρ–, Ρ‰ΠΎΠ± Π·Π²Ρ–Π»ΡŒΠ½ΠΈΡ‚ΠΈ місцС для вашого Π·Π±ΠΈΡ€Π°Ρ‡Π° оструму, якщо Ρ‚Ρ– Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Ρ– Π½Π° схилі. Π‘ΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ скористатися &6ΠΏΡ–Π΄Π·ΠΎΡ€Π½ΠΎΡŽ Ρ‚Ρ€ΡƒΠ±ΠΎΡŽ&r, Ρ‰ΠΎΠ± ΠΏΠΎΠΌΡ–Ρ‚ΠΈΡ‚ΠΈ Ρ—Ρ… Π·Π΄Π°Π»Π΅ΠΊΡƒ!\n\nΠ’Π°ΠΌ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ ΠΏΡ€ΠΎΠ΄ΡƒΠΌΠ°Ρ‚ΠΈ Π΄Π°Π»Π΅ΠΊΠΎΠ±Ρ–ΠΉΠ½Ρƒ логістику, Π°Π±ΠΈ доставити острум Π½Π°Π·Π°Π΄ Π½Π° Π±Π°Π·Ρƒ. (Π‘ΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΏΠΎΡ—Π·Π΄, Π° акумулятори ΠΌΠΎΠΆΡƒΡ‚ΡŒ ΠΏΠ΅Ρ€Π΅Π΄Π°Π²Π°Ρ‚ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ!)\n\nΠžΡΡ‚Ρ€ΡƒΠΌ Ρ” ΠΊΡ€ΠΈΡ‚ΠΈΡ‡Π½ΠΎ Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΠΌ рСсурсом як для прогрСсу Π² &5EV&r, Ρ‚Π°ΠΊ Ρ– для ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΠΊΠΈ Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Π²Π°ΡˆΠΈΡ… Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ–Π² ΠΏΠΎΠ΄Ρ–Π»Ρƒ.", + "quests.space_survival.spice.desc": "&dΠ ΠΎΠ΄ΠΎΠ²ΠΈΡ‰Π° ΠžΡΡ‚Ρ€ΡƒΠΌΡƒ&r β€” Ρ†Π΅ Π½Π΅Ρ€ΡƒΡ…ΠΎΠΌΡ– Π±Π»ΠΎΠΊΠΈ, які ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ лишС Π² Π“Π»ΠΈΠ±ΠΎΠΊΡ–ΠΉ пустСлі ΠœΠ°Ρ€ΡΠ°, Π΄Π°Π»Π΅ΠΊΠΎ Π²Ρ–Π΄ Π±Ρ–Π»ΡŒΡˆ Π·Π΅Π»Π΅Π½ΠΈΡ… Ρ€Π΅Π³Ρ–ΠΎΠ½Ρ–Π². Π’ΠΎΠ½ΠΈ Π·β€™ΡΠ²Π»ΡΡŽΡ‚ΡŒΡΡ Π½Π΅Π²Π΅Π»ΠΈΠΊΠΈΠΌΠΈ скупчСннями, Ρ– Ρ—Ρ… ΠΌΠΎΠΆΠ½Π° Π·Π»Π°ΠΌΠ°Ρ‚ΠΈ, Ρ‰ΠΎΠ± Π·Π²Ρ–Π»ΡŒΠ½ΠΈΡ‚ΠΈ місцС для вашого Π—Π±ΠΈΡ€Π°Ρ‡Π° ΠžΡΡ‚Ρ€ΡƒΠΌΡƒ, якщо Π²ΠΎΠ½ΠΈ Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½Ρ– Π½Π° схилі. Π‘ΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ скористатися &6ΠŸΡ–Π΄Π·ΠΎΡ€Π½ΠΎΡŽ Ρ‚Ρ€ΡƒΠ±ΠΎΡŽ&r, Ρ‰ΠΎΠ± ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ Ρ—Ρ… Π·Π΄Π°Π»Π΅ΠΊΡƒ!\n\nΠ’Π°ΠΌ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ ΠΏΡ€ΠΎΠ΄ΡƒΠΌΠ°Ρ‚ΠΈ логістику Π½Π° Π²Π΅Π»ΠΈΠΊΡ– відстані, Ρ‰ΠΎΠ± доставити ΠžΡΡ‚Ρ€ΡƒΠΌ Π½Π°Π·Π°Π΄ Π½Π° Π±Π°Π·Ρƒ. (Π‘ΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΏΠΎΡ—Π·Π΄!)\n\nΠžΡΡ‚Ρ€ΡƒΠΌ β€” Ρ†Π΅ ΠΊΡ€ΠΈΡ‚ΠΈΡ‡Π½ΠΎ Π²Π°ΠΆΠ»ΠΈΠ²ΠΈΠΉ рСсурс як для прогрСсу Π½Π° Ρ€Ρ–Π²Π½Ρ– &5EV&r, Ρ‚Π°ΠΊ Ρ– для створСння нСскінчСнних Ρ€ΡƒΠ΄ Π½Π° ΠœΠ°Ρ€ΡΡ–.", "quests.space_survival.spice.task": "НСхай прянощі Ρ‚Π΅Ρ‡ΡƒΡ‚ΡŒ Ρ€Ρ–ΠΊΠΎΡŽ", "quests.space_survival.mars_islands.title": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΡ– Π΄ΠΆΡƒΠ½Π³Π»Ρ–", "quests.space_survival.mars_islands.subtitle": "Π¦Π΅ Π΄ΠΈΠ½ΠΎΠ·Π°Π²Ρ€?!", @@ -2959,7 +3628,7 @@ "quests.space_survival.t2_space_suit.desc": "Π— Ρ†ΠΈΠΌ наступним скафандром Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π²ΠΈΠΆΠΈΡ‚ΠΈ як Ρƒ &bΠ½Π°ΠΉΡ…ΠΎΠ»ΠΎΠ΄Π½Ρ–ΡˆΠΈΡ…&r, Ρ‚Π°ΠΊ Ρ– Π² &cΠ½Π°ΠΉΡΠΏΠ΅ΠΊΠΎΡ‚Π½Ρ–ΡˆΠΈΡ…&r ΡƒΠΌΠΎΠ²Π°Ρ…, які Ρ‚Ρ–Π»ΡŒΠΊΠΈ ΠΌΠΎΠΆΠ΅ ΠΏΡ–Π΄ΠΊΠΈΠ½ΡƒΡ‚ΠΈ космос! Π’Ρ–Π½ Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½ΠΈΠΉ, Ρ‰ΠΎΠ± Π²ΠΈ Π½Π΅ Π·Π³ΠΎΡ€Ρ–Π»ΠΈ ΠΌΠΈΡ‚Ρ‚Ρ”Π²ΠΎ, Ρ‰ΠΎΠΉΠ½ΠΎ ΡΡ‚ΡƒΠΏΠΈΡ‚ΡŒ Π½ΠΎΠ³Π° Π½Π° &6Π’Π΅Π½Π΅Ρ€Ρƒ&r Ρ‡ΠΈ &5ΠœΠ΅Ρ€ΠΊΡƒΡ€Ρ–ΠΉ&r.\n\nΠ―ΠΊ бонус, Π²Ρ–Π½ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠ°Ρ” Π΄ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΠΉ захист Ρ– Π·Π±Ρ–Π»ΡŒΡˆΠ΅Π½ΠΈΠΉ запас повітря!", "quests.space_survival.mars_tapping.title": "ΠšΡ€Ρ–ΠΌΡΡ–Π½ Ρ– Π’ΠΎΡ€ΠΏΠ΅ΠΉΠ½", "quests.space_survival.mars_tapping.subtitle": "Π’ΠΈ просто ΠžΠ‘ΠžΠ–ΠΠΠ„Π¨ Π·Π±ΠΈΡ€Π°Ρ‚ΠΈ сік Ρ–Π· Π΄Π΅Ρ€Π΅Π²!", - "quests.space_survival.mars_tapping.desc": "Π†Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΈΡ… Ρ‚Π° Π²ΠΈΠΊΡ€ΠΈΠ²Π»Π΅Π½ΠΈΡ… Π³Ρ€ΠΈΠ±Ρ–Π² ΠΌΠΎΠΆΠ½Π° Π·Ρ–Π±Ρ€Π°Ρ‚ΠΈ сік для отримання &4ΠšΡ€Ρ–ΠΌΡΡ–Π½Ρƒ&r Ρ‚Π° &3Π’ΠΎΡ€ΠΏΠ΅ΠΉΠ½Ρƒ&r Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎ.\n\nОбидва ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ–, Ρ‰ΠΎΠ± Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ &9ΠΉΠΎΠ΄Ρƒ&r, Π°Π»Π΅ Π²ΠΎΠ½ΠΈ Ρ€Ρ–Π΄ΠΊΠΎ Ρ€ΠΎΡΡ‚ΡƒΡ‚ΡŒ ΠΏΠΎΡ€ΡƒΡ‡, Ρ‚ΠΎΠΆ, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆΡƒΠ²Π°Ρ‚ΠΈ. Π§Π΅Ρ€Π²ΠΎΠ½Ρ– Π³Ρ€ΠΈΠ±ΠΈ Ρ‡Π°ΡΡ‚Ρ–ΡˆΠ΅ Ρ‚Ρ€Π°ΠΏΠ»ΡΡŽΡ‚ΡŒΡΡ Π½Π° східному Π±ΠΎΡ†Ρ– ΠœΠ°Ρ€ΡΠ°, Π° Π²ΠΈΠΊΡ€ΠΈΠ²Π»Π΅Π½Ρ– β€” Π½Π° Π·Π°Ρ…Ρ–Π΄Π½ΠΎΠΌΡƒ.\n\nНС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅, Ρ‰ΠΎ ΠΌΠΎΠΆΠ½Π° ΠΏΡ–Π΄ΠΊΠ»ΡŽΡ‡Π°Ρ‚ΠΈ Π·Π±Ρ–Ρ€ соку Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π΄ΠΎ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈΡ… Ρ‚Ρ€ΡƒΠ± GregTech!\n\n&9ΠŸΠΎΡ€Π°Π΄Π°:&r Π₯ΠΎΡ‡Π΅Ρ‚Π΅ похизуватися? Π’ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ ΠΊΠ°Π½ΠΎΠ΅ Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΈΡ… стовбурів Ρ– Ρ‡ΠΎΠ²Π΅Π½β€‘Π²Π΅ΡΠ»ΡƒΠ²Π°Π»ΡŒΠ½ΠΈΠΉ Π°Π±ΠΎ шлюп Ρ–Π· Π²ΠΈΠΊΡ€ΠΈΠ²Π»Π΅Π½ΠΈΡ…!", + "quests.space_survival.mars_tapping.desc": "Π§Π΅Ρ€Π²ΠΎΠ½Ρ– Ρ‚Π° Ρ…ΠΈΠΌΠ΅Ρ€Π½Ρ– Π³Ρ€ΠΈΠ±ΠΈ ΠΌΠΎΠΆΠ½Π° ΠΏΡ–Π΄'Ρ”Π΄Π½ΡƒΠ²Π°Ρ‚ΠΈ Π΄ΠΎ Π΄Π΅Ρ€Π΅Π²Π° для отримання &4ΠšΡ€Ρ–ΠΌΡΠ΅Π½Ρƒ&r Ρ‚Π° &3Π’Π°Ρ€ΠΏΠ°Π½Ρƒ&r Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎ. \n\nΠ’Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ ΠΎΠ±ΠΈΠ΄Π²Π°, Ρ‰ΠΎΠ± Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Π²ΠΈΡ€ΠΎΠ±Π½ΠΈΡ†Ρ‚Π²ΠΎ &9Π™ΠΎΠ΄Ρƒ&r, Π°Π»Π΅ Π²ΠΎΠ½ΠΈ Ρ€Ρ–Π΄ΠΊΠΎ Ρ€ΠΎΡΡ‚ΡƒΡ‚ΡŒ Π² ΠΎΠ΄Π½ΠΎΠΌΡƒ місці, Ρ‚ΠΎΠΆ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆΡƒΠ²Π°Ρ‚ΠΈ. \nΠ§Π΅Ρ€Π²ΠΎΠ½Ρ– Π³Ρ€ΠΈΠ±ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅ Ρ‚Ρ€Π°ΠΏΠ»ΡΡŽΡ‚ΡŒΡΡ Π½Π° східному Π±ΠΎΡ†Ρ– ΠœΠ°Ρ€ΡΠ°, Π° Ρ…ΠΈΠΌΠ΅Ρ€Π½Ρ– β€” Π½Π° Π·Π°Ρ…Ρ–Π΄Π½ΠΎΠΌΡƒ. \nΠ’Π°ΠΊΠΎΠΆ Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ садТанці Π²Ρ–Π΄ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΈΡ… Π΅Π½Π΄Π΅Ρ€ΠΌΠ΅Π½Ρ–Π². \n\nНС Π·Π°Π±ΡƒΠ΄ΡŒΡ‚Π΅, Ρ‰ΠΎ ΠΌΠΎΠΆΠ½Π° напряму ΠΏΡ–Π΄'Ρ”Π΄Π½ΡƒΠ²Π°Ρ‚ΠΈ Π΄ΠΎ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈΡ… Ρ€Ρ–Π΄ΠΈΠ½Π½ΠΈΡ… Ρ‚Ρ€ΡƒΠ± GregTech! \n\n&9ΠŸΠΎΡ€Π°Π΄Π°:&r Π₯ΠΎΡ‡Π΅Ρ‚Π΅ похизуватися? Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ ΠΊΠ°Π½ΠΎΠ΅ Π· Ρ‡Π΅Ρ€Π²ΠΎΠ½ΠΈΡ… стовбурів, Π° Ρ‡ΠΎΠ²Π΅Π½ Π°Π±ΠΎ шлюп β€” Ρ–Π· Ρ…ΠΈΠΌΠ΅Ρ€Π½ΠΈΡ…!", "quests.space_survival.iodine.title": "Лінія ΠΉΠΎΠ΄Ρƒ", "quests.space_survival.iodine.subtitle": "Π₯імія Π³Ρ€ΠΈΠ±Ρ–Π²!", "quests.space_survival.iodine.desc": "Π—ΠΌΡ–ΡˆΠ°ΠΉΡ‚Π΅ ΠšΡ€Ρ–ΠΌΡΡ–Π½ Ρ– Π’ΠΎΡ€ΠΏΠ΅ΠΉΠ½ Ρ€Π°Π·ΠΎΠΌ Ρ–Π· ΠΊΡ€ΠΈΠΏΡ‚ΠΎΠ½ΠΎΠΌ Ρ–Π· дистиляції ΠΌΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΎΠ³ΠΎ повітря (процСс Ρ†ΠΈΠΊΠ»Ρ–Ρ‡Π½ΠΈΠΉ) Ρ‚Π° Ρ‚Π΅ΠΏΠ»ΠΎΠΌ Π²Ρ–Π΄ вашого ядСрного Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° ΠΏΠΎΠ΄Ρ–Π»Ρƒ β€” Ρ– Π²ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚Π΅ ΠΉΠΎΠ΄!\n\nΠ¦Π΅ΠΉ процСс ΠΏΠΎΠ²Ρ–Π»ΡŒΠ½ΠΈΠΉ, Π°Π»Π΅ Π½Π°Ρ€Π°Π·Ρ– Π²Π°ΠΌ Π½Π΅ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Π°Π³Π°Ρ‚ΠΎ ΠΉΠΎΠ΄Ρƒ, Π° Π½Π° ΠΏΠΎΠ΄Π°Π»ΡŒΡˆΠΈΡ… ΠΏΠ»Π°Π½Π΅Ρ‚Π°Ρ… Π·β€™ΡΠ²Π»ΡΡ‚ΡŒΡΡ ΠΊΡ€Π°Ρ‰Ρ– ΠΌΠ΅Ρ‚ΠΎΠ΄ΠΈ ΠΉΠΎΠ³ΠΎ отримання.", @@ -2969,7 +3638,7 @@ "quests.space_survival.mars_crops.task": "Π‘ΡƒΠ΄ΡŒ-якС ΠΌΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠ΅ насіння", "quests.space_survival.bulbkin_pie.title": "ΠœΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠ° кухня", "quests.space_survival.bulbkin_pie.subtitle": "Π©Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΊΡƒΠ»Ρ–Π½Π°Ρ€Π½ΠΈΡ… ΠΆΠ°Ρ…Ρ–Ρ‚ΡŒ Ρƒ Π²Π°ΡˆΠΎΠΌΡƒ розпорядТСнні", - "quests.space_survival.bulbkin_pie.desc": "Яйця Π’Ρ€Π°ΠΏΡ‚ΠΎΡ€Ρ–Π² ΠΌΠΎΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Π½Π° Π·Π°ΠΌΡ–Π½Π½ΠΈΠΊ Ρ†ΡƒΠΊΡ€Ρƒ, Ρ‚ΠΎΠ΄Ρ– як яйця ΠΡŽΡ…Π°Ρ‡Ρ–Π² сповнСні Π²Π΅Ρ€ΡˆΠΊΡ–Π². \n\n&eΠŸΠΈΡ€Ρ–Π³ Ρ–Π· Π±ΡƒΠ»ΡŒΠ±ΠΊΡ–Π½Π°&r, ΠΌΠ°Π±ΡƒΡ‚ΡŒ, Ρ” Π²Π΅Ρ€ΡˆΠΈΠ½ΠΎΡŽ ΠΌΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΎΡ— ΠΊΡƒΡ…Π½Ρ–, Π°Π΄ΠΆΠ΅ ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ Π²Π΅Π»ΠΈΠΊΡƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Ρ‡ΠΎΡ‚ΠΈΡ€ΡŒΠΎΡ… Ρ€Ρ–Π·Π½ΠΈΡ… Π²ΠΈΠ΄Ρ–Π² ΠΏΠΎΠΆΠΈΠ²Π½ΠΈΡ… Ρ€Π΅Ρ‡ΠΎΠ²ΠΈΠ½, Ρ…ΠΎΡ‡Π° ΠΉΠΎΠ³ΠΎ створСння Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΊΠ»ΠΎΠΏΡ–Ρ‚ΠΊΠ΅. \n\n&9ΠŸΠΎΡ€Π°Π΄Π°:&r Π¦Π΅ Π½Π΅ зовсім Ρ—ΠΆΠ°, Π°Π»Π΅ Π²ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·ΠΌΡ–ΡˆΠ°Ρ‚ΠΈ ΡˆΠΌΠ°Ρ‚ΠΊΠΈ Π±ΡƒΠ»ΡŒΠ±ΠΊΡ–Π½Π° Ρ‚Π° Π±Π»ΠΎΠΊΠΈ Π³Ρ€ΠΈΠ±Ρ–Π² Π°Π»ΡŒΡ„Π°Ρ†Π΅Π½Ρƒ, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΡΠ²Ρ–Ρ‚Π»ΠΎΠΊΠ°ΠΌΡ–Π½ΡŒ.", + "quests.space_survival.bulbkin_pie.desc": "Яйця Π’Ρ€Π°ΠΏΡ‚ΠΎΡ€Π° ΠΌΠΎΠΆΠ½Π° використати для отримання Π·Π°ΠΌΡ–Π½Π½ΠΈΠΊΠ° Π¦ΡƒΠΊΡ€Ρƒ, Ρ‚ΠΎΠ΄Ρ– як яйця ΠΡŽΡ…Π°Ρ‡Π° сповнСні Π’Π΅Ρ€ΡˆΠΊΡ–Π². \n\n&eΠŸΠΈΡ€Ρ–Π³ Ρ–Π· Π‘ΡƒΠ»ΡŒΠ±ΠΊΡ–Π½Π°&r, ΠΌΠ°Π±ΡƒΡ‚ΡŒ, Ρ” Π²Π΅Ρ€ΡˆΠΈΠ½ΠΎΡŽ ΠΌΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΎΡ— ΠΊΡƒΡ…Π½Ρ–, Π°Π΄ΠΆΠ΅ ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ Π²Π΅Π»ΠΈΠΊΡƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Ρ‡ΠΎΡ‚ΠΈΡ€ΡŒΠΎΡ… Ρ€Ρ–Π·Π½ΠΈΡ… Π²ΠΈΠ΄Ρ–Π² ΠΏΠΎΠΆΠΈΠ²Π½ΠΈΡ… Ρ€Π΅Ρ‡ΠΎΠ²ΠΈΠ½, Ρ…ΠΎΡ‡ Ρ– Ρ” Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΊΠ»ΠΎΠΏΡ–Ρ‚ΠΊΠΈΠΌ Ρƒ створСнні. \n\n&eΠ”ΠΈΠ½ΠΎΠ·Π°Π²Ρ€ΠΎΠ²Ρ– нагСтси Π² ΠΏΠΈΠ²Π½ΠΎΠΌΡƒ клярі&r ΠΏΠΎΡ”Π΄Π½ΡƒΡŽΡ‚ΡŒ Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Π±Ρ–Π»ΠΊΠ° Π· м’яса Π΄ΠΈΠ½ΠΎΠ·Π°Π²Ρ€Π° Π· нСвСликою ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ Π·Π΅Ρ€Π½Π°, Ρ– Ρ—Ρ… Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ½Π° покласти Ρƒ Π²Π°ΡˆΡ– Ρ…Π°Ρ€Ρ‡ΠΎΠ²Ρ– сумки. \n\n&9ΠŸΠΎΡ€Π°Π΄Π°:&r Π¦Π΅ Π½Π΅ зовсім Ρ—ΠΆΠ°, Π°Π»Π΅ Π²ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·ΠΌΡ–ΡˆΠ°Ρ‚ΠΈ ΠšΡƒΡΠ½Ρ– Π‘ΡƒΠ»ΡŒΠ±ΠΊΡ–Π½Π° Ρ‚Π° Π‘Π»ΠΎΠΊΠΈ Π³Ρ€ΠΈΠ±Ρ–Π² ΠΠ»ΡŒΡ„Π°Ρ†Π΅Π½Π°, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Пил ΡΠ²Ρ–Ρ‚Π»ΠΎΠΊΠ°ΠΌΠ΅Π½ΡŽ.", "quests.space_survival.soarer.title": "ΠŸΠ°Ρ€ΠΈΡ‚Π΅Π»ΡŒ", "quests.space_survival.soarer.subtitle": "ΠŸΠΎΡ‚Ρ€Ρ–Π±Π΅Π½ ΠΏΡ–Π΄ΠΉΠΎΠΌ?", "quests.space_survival.soarer.desc": "Π›Ρ–Ρ‚Π°ΠΊΠΈ Π½Π° ΠœΠ°Ρ€ΡΡ– Π½Π΅ ΠΏΡ€Π°Ρ†ΡŽΡŽΡ‚ΡŒ, Π° Ρƒ Π²Π°ΡˆΠΎΠΌΡƒ скафандрі Π½Π΅ΠΌΠ°Ρ” Ρ€Π΅Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ ранця, Ρ‚ΠΎΠΆ Ρ–Π½ΡˆΠΎΠ³ΠΎ способу Π»Ρ–Ρ‚Π°Ρ‚ΠΈ, Π·Π΄Π°Ρ”Ρ‚ΡŒΡΡ, Π½Π΅ΠΌΠ°Ρ”, Ρ‚Π°ΠΊ? \n\nΠ―ΠΊΡ‰ΠΎ ΠΆ Π²Π°ΠΌ ΠΏΠΎΡ‰Π°ΡΡ‚ΠΈΡ‚ΡŒ Π·Π½Π°ΠΉΡ‚ΠΈ Π½Π΅Π²Π»ΠΎΠ²ΠΈΠΌΠΎΠ³ΠΎ &4ΠŸΠ°Ρ€ΠΈΡ‚Π΅Π»Ρ&r, Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΡ€ΠΈΡ€ΡƒΡ‡ΠΈΡ‚ΠΈ ΠΉΠΎΠ³ΠΎ ΡΠΈΡ€ΠΎΡŽ Ρ€ΠΈΠ±ΠΎΡŽ Ρ‚Π° оснастити сідлом, Ρ‰ΠΎΠ± Ρ–Π· Π»Π΅Π³ΠΊΡ–ΡΡ‚ΡŽ ΠΏΠ»Π°Π²Π°Ρ‚ΠΈ ΠΌΠ°Ρ€ΡΡ–Π°Π½ΡΡŒΠΊΠΈΠΌΠΈ нСбСсами. \n\nΠ’Ρ‚Ρ–ΠΌ, Π²ΠΎΠ½ΠΈ Π½Π΅ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π»Ρ–Ρ‚Π°Ρ‚ΠΈ Π±Π΅Π·ΠΊΡ–Π½Π΅Ρ‡Π½ΠΎ β€” ΠΏΡ€ΠΎ Ρ†Π΅ ΡΠ²Ρ–Π΄Ρ‡Π°Ρ‚ΡŒ Ρ–ΠΊΠΎΠ½ΠΊΠΈ ΠΊΡ€ΠΈΠ» Ρƒ Π²Π΅Ρ€Ρ…Π½ΡŒΠΎΠΌΡƒ Π»Ρ–Π²ΠΎΠΌΡƒ ΠΊΡƒΡ‚Ρ–, Ρ‚ΠΎΠΆ час Π²Ρ–Π΄ часу Ρ—ΠΌ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ призСмлятися. ΠŸΠΎΠΏΡ€ΠΈ Ρ†Π΅, Ρ†Π΅ Ρ‡ΡƒΠ΄ΠΎΠ²ΠΈΠΉ Π²Π°Ρ€Ρ–Π°Π½Ρ‚ для ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆΠ΅ΠΉ Π½Π° Π²Π΅Π»ΠΈΠΊΡ– відстані, Ρ– Π²Ρ–Π½ Π½Π΅ Ρ€ΠΎΠ·ΡΠ΅Ρ€Π΄ΠΈΡ‚ΡŒ ΠΏΡ–Ρ‰Π°Π½ΠΎΠ³ΠΎ Ρ…Ρ€ΠΎΠ±Π°ΠΊΠ°! \n\n&9ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°&r: ΠŸΠ°Ρ€ΠΈΡ‚Π΅Π»Ρ– Π½Π΅ Π·Π΄Π°Ρ‚Π½Ρ– Π²ΠΈΠΆΠΈΡ‚ΠΈ Π½Π° особливо гарячих ΠΏΠ»Π°Π½Π΅Ρ‚Π°Ρ…, Ρ‚Π°ΠΊΠΈΡ… як &6Π’Π΅Π½Π΅Ρ€Π°&r.", @@ -3019,19 +3688,23 @@ "quests.steam_age.horse_crank.title": "Π’Π°ΡˆΠ΅ ΠΏΠ΅Ρ€ΡˆΠ΅ Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—", "quests.steam_age.horse_crank.subtitle": "Π—ΠΌΡƒΡΡŒΡ‚Π΅ свою Ρ…ΡƒΠ΄ΠΎΠ±Ρƒ ΠΏΠ»Π°Ρ‚ΠΈΡ‚ΠΈ ΠΎΡ€Π΅Π½Π΄Ρƒ", "quests.steam_age.horse_crank.desc.1": "&3Π’Π²Π°Ρ€ΠΈΠ½Π½ΠΈΠΉ ΠŸΡ€ΠΈΠ²Ρ–Π΄&r β€” Ρ†Π΅ Ρ‚Π²Ρ–ΠΉ ΠΏΠ΅Ρ€ΡˆΠ΅ доступнС Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎ ΠΌΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½ΠΎΡ— Π΅Π½Π΅Ρ€Π³Ρ–Ρ—. Π©ΠΎΠ± Π½ΠΈΠΌ скористатися, постав ΠΏΡ€ΠΈΠ²Ρ–Π΄ Ρƒ Ρ†Π΅Π½Ρ‚Ρ€Ρ– ΠΎΡ‡ΠΈΡ‰Π΅Π½ΠΎΡ— ділянки Ρ€ΠΎΠ·ΠΌΡ–Ρ€ΠΎΠΌ 7x7 Π±Π»ΠΎΠΊΡ–Π² Ρ– прив’яТи Π΄ΠΎ нього Ρ‚Π²Π°Ρ€ΠΈΠ½Ρƒ. Π Ρ–Π·Π½Ρ– Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ Π³Π΅Π½Π΅Ρ€ΡƒΡŽΡ‚ΡŒ Ρ€Ρ–Π·Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ потуТності, Π° Π±Π»ΠΎΠΊΠΈ ΠΏΡ–Π΄ Π½ΠΈΠΌ Π²ΠΏΠ»ΠΈΠ²Π°ΡŽΡ‚ΡŒ Π½Π° ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ Π²ΠΈΡ…Ρ–Π΄Π½ΠΎΡ— Π΅Π½Π΅Ρ€Π³Ρ–Ρ—. Π—ΠΎΠ½ΠΈ ΠΊΡ–Π»ΡŒΠΊΠΎΡ… ΠΏΡ€ΠΈΠ²ΠΎΠ΄Ρ–Π² ΠΌΠΎΠΆΡƒΡ‚ΡŒ пСрСкриватися.\n\nМоТливо, Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Ρ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π΄Ρ€ΡƒΠ³ΠΈΠΉ ΠΏΠΎΠ²ΠΎΠ΄ΠΎΠΊ, Ρ‰ΠΎΠ± ΠΏΡ€ΠΈΡ”Π΄Π½Π°Ρ‚ΠΈ Ρ‚Π²Π°Ρ€ΠΈΠ½Ρƒ.", - "quests.steam_age.horse_crank.desc.2": "&3ΠœΠ°Π»Π΅Π½ΡŒΠΊΡ– Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ (4 SU):&r\nΠ’ΠΎΠ²ΠΊ, Π‘ΠΎΠ±Π°ΠΊΠ°, Бвиня, Вівця, Коза, Альпака\n\n&3Π‘Π΅Ρ€Π΅Π΄Π½Ρ– Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ (6 SU):&r\nΠšΠΎΡ€ΠΎΠ²Π°, ОсСл\n\n&3Π’Π΅Π»ΠΈΠΊΡ– Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ (8 SU):&r\nΠšΡ–Π½ΡŒ, ΠœΡƒΠ», ΠœΡƒΡΠΊΡƒΡΠ½ΠΈΠΉ Π²Ρ–Π», Π―ΠΊ", + "quests.steam_age.horse_crank.desc.2": "&3ΠœΠ°Π»Ρ– Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ (8 ОО):&r \nΠ’ΠΎΠ²ΠΊ, Π‘ΠΎΠ±Π°ΠΊΠ°, Бвиня, Вівця, Коза, Альпака\n\n&3Π‘Π΅Ρ€Π΅Π΄Π½Ρ– Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ (12 ОО):&r \nΠšΠΎΡ€ΠΎΠ²Π°, ОсСл\n\n&3Π’Π΅Π»ΠΈΠΊΡ– Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ (16 ОО):&r \nΠšΡ–Π½ΡŒ, ΠœΡƒΠ», ΠœΡƒΡΠΊΡƒΡΠ½ΠΈΠΉ Π²Ρ–Π», Π―ΠΊ", "quests.steam_age.poor_paths.title": "ΠŸΠΎΠ³Π°Π½Ρ– ΡˆΠ»ΡΡ…ΠΈ", "quests.steam_age.poor_paths.subtitle": "Π¦Π΅ просто Π±Ρ€ΡƒΠ΄", - "quests.steam_age.poor_paths.desc": "Π¦Π΅ Π½Π°ΠΉΠ³Ρ–Ρ€ΡˆΠΈΠΉ Ρ‚ΠΈΠΏ Π΄ΠΎΡ€ΠΎΠ³ΠΈ, яку ΠΌΠΎΠΆΠ½Π° використовувати. Π’Π²Π°Ρ€ΠΈΠ½Π½ΠΈΠΉ ΠΏΡ€ΠΈΠ²Ρ–Π΄ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈΠΌΠ΅ Π·Ρ– ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŽ 2 ΠΎΠ±/Ρ…Π².", + "quests.steam_age.poor_paths.desc": "Π¦Π΅ Π½Π°ΠΉΠ³Ρ–Ρ€ΡˆΠΈΠΉ Ρ‚ΠΈΠΏ Π΄ΠΎΡ€ΠΎΠ³ΠΈ, яку ΠΌΠΎΠΆΠ½Π° використовувати. Π’Π²Π°Ρ€ΠΈΠ½Π½ΠΈΠΉ ΠΏΡ€ΠΈΠ²Ρ–Π΄ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈΠΌΠ΅ Π·Ρ– ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŽ 8 ΠΎΠ±/Ρ…Π².", "quests.steam_age.normal_paths.title": "Π‘Π΅Ρ€Π΅Π΄Π½Ρ– ΡˆΠ»ΡΡ…ΠΈ", "quests.steam_age.normal_paths.subtitle": "Π“Π°Ρ€Π°Π·Π΄, Π²ΠΈ Π΄ΠΎΠΊΠ»Π°Π»ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ Π·ΡƒΡΠΈΠ»ΡŒ", - "quests.steam_age.normal_paths.desc": "Π‘Π΅Ρ€Π΅Π΄Π½Ρ– Π΄ΠΎΡ€Ρ–ΠΆΠΊΠΈ ΠΏΡ€Π°Ρ†ΡŽΡŽΡ‚ΡŒ Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΊΡ€Π°Ρ‰Π΅ β€” Π²ΠΎΠ½ΠΈ Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ΡŒ Ρ‚Π²Π°Ρ€ΠΈΠ½Π°ΠΌ ΠΎΠ±Π΅Ρ€Ρ‚Π°Ρ‚ΠΈ ΠΏΡ€ΠΈΠ²Ρ–Π΄ Π·Ρ– ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŽ 4 ΠΎΠ±/Ρ…Π² (RPM).\n\nΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°: Π‘Π»ΠΎΠΊ Π΄ΠΎΡ€Ρ–ΠΆΠΊΠ° Π· Π“Ρ€ΡƒΠ½Ρ‚Ρƒ Π½Π΅ ΠΌΠΎΠΆΠ½Π° Ρ€ΠΎΠ·ΠΌΡ–Ρ‰ΡƒΠ²Π°Ρ‚ΠΈ Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ ΠΏΡ–Π΄ Π’Π²Π°Ρ€ΠΈΠ½Π½ΠΈΠΌ ΠŸΡ€ΠΈΠ²ΠΎΠ΄ΠΎΠΌ, Ρ‚ΠΎΠΌΡƒ Π² Ρ†ΡŒΠΎΠΌΡƒ місці Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ використати Π“Ρ€Π°Π²Ρ–ΠΉ.", + "quests.steam_age.normal_paths.desc": "Π‘Π΅Ρ€Π΅Π΄Π½Ρ– Π΄ΠΎΡ€Ρ–ΠΆΠΊΠΈ ΠΏΡ€Π°Ρ†ΡŽΡŽΡ‚ΡŒ Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΊΡ€Π°Ρ‰Π΅ β€” Π²ΠΎΠ½ΠΈ Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ΡŒ Ρ‚Π²Π°Ρ€ΠΈΠ½Π°ΠΌ ΠΎΠ±Π΅Ρ€Ρ‚Π°Ρ‚ΠΈ ΠΏΡ€ΠΈΠ²Ρ–Π΄ Π·Ρ– ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŽ 16 ΠΎΠ±/Ρ…Π² \n\nΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°: Π‘Π»ΠΎΠΊ Π΄ΠΎΡ€Ρ–ΠΆΠΊΠ° Π· Π“Ρ€ΡƒΠ½Ρ‚Ρƒ Π½Π΅ ΠΌΠΎΠΆΠ½Π° Ρ€ΠΎΠ·ΠΌΡ–Ρ‰ΡƒΠ²Π°Ρ‚ΠΈ Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ ΠΏΡ–Π΄ Π’Π²Π°Ρ€ΠΈΠ½Π½ΠΈΠΌ ΠŸΡ€ΠΈΠ²ΠΎΠ΄ΠΎΠΌ, Ρ‚ΠΎΠΌΡƒ Π² Ρ†ΡŒΠΎΠΌΡƒ місці Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ використати Π“Ρ€Π°Π²Ρ–ΠΉ.", "quests.steam_age.good_paths.title": "Great Path", "quests.steam_age.good_paths.subtitle": "ΠŸΡ–Π΄ΠΊΠΎΠ²ΠΈ Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ–!", - "quests.steam_age.good_paths.desc": "Π¦Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΉ Ρ‚ΠΈΠΏ ΡˆΠ»ΡΡ…Ρ–Π², які Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використовувати, Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‡ΠΈ Ρ€ΡƒΡ‡Ρ†Ρ– досягати Π²ΠΈΡ…Ρ–Π΄Π½ΠΎΡ— ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ– 8 ΠΎΠ±/Ρ…Π². Π’Π°ΠΊΡ– ΡˆΠ»ΡΡ…ΠΈ Ρ‚Π°ΠΊΠΎΠΆ Π·Π±Ρ–Π»ΡŒΡˆΡƒΡŽΡ‚ΡŒ ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ пСрСміщСння гравця, Ρ‚ΠΎΠΌΡƒ Π²ΠΎΠ½ΠΈ Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎ ΠΏΡ–Π΄Ρ…ΠΎΠ΄ΡΡ‚ΡŒ для прокладання Π²Π°ΡˆΠΎΡ— Π±Π°Π·ΠΈ!", + "quests.steam_age.good_paths.desc": "Π¦Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΉ Ρ‚ΠΈΠΏ ΡˆΠ»ΡΡ…Ρ–Π², які Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використовувати, Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‡ΠΈ Ρ€ΡƒΡ‡Ρ†Ρ– досягати Π²ΠΈΡ…Ρ–Π΄Π½ΠΎΡ— ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ– 32 ΠΎΠ±/Ρ…Π². Π’Π°ΠΊΡ– ΡˆΠ»ΡΡ…ΠΈ Ρ‚Π°ΠΊΠΎΠΆ Π·Π±Ρ–Π»ΡŒΡˆΡƒΡŽΡ‚ΡŒ ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ пСрСміщСння гравця, Ρ‚ΠΎΠΌΡƒ Π²ΠΎΠ½ΠΈ Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎ ΠΏΡ–Π΄Ρ…ΠΎΠ΄ΡΡ‚ΡŒ для прокладання Π²Π°ΡˆΠΎΡ— Π±Π°Π·ΠΈ!", "quests.steam_age.helve_hammer.title": "Π“ΠΎΠΉΠ΄Π΅Π»ΡŒΠ½ΠΈΠΉ ΠΌΠΎΠ»ΠΎΡ‚", "quests.steam_age.helve_hammer.subtitle": "Π‘ΠΠœ... Π‘ΠΠœ... Π‘ΠΠœ...", - "quests.steam_age.helve_hammer.desc": "ВиготовлСння всіх Ρ†ΠΈΡ… пластин для Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ– виглядає виснаТливим? &3Π“ΠΎΠΉΠ΄Π΅Π»ΡŒΠ½ΠΈΠΉ ΠΌΠΎΠ»ΠΎΡ‚&r Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ (Ρ…ΠΎΡ‡Π° ΠΉ ΠΏΠΎΠ²Ρ–Π»ΡŒΠ½ΠΎ) ΡΠΏΠ»ΡŽΡ‰ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅ ΠΏΠΎΠ΄Π²Ρ–ΠΉΠ½Ρ– Π·Π»ΠΈΡ‚ΠΊΠΈ Π² пластини Π·Π°ΠΌΡ–ΡΡ‚ΡŒ вас. АлС Π·Π²Π°Ρ€ΡŽΠ²Π°Π½Π½Ρ всС ΠΎΠ΄Π½ΠΎ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ самостійно. ΠŸΡ€ΠΎΡΡ‚ΠΎ Ρ€ΠΎΠ·ΠΌΡ–ΡΡ‚Ρ–Ρ‚ΡŒ ΠΊΠΎΠ²Π°Π΄Π»ΠΎ Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ ΠΏΡ–Π΄ ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΌ Ρ– ΠΊΠΈΠ½ΡŒΡ‚Π΅ Π½Π° нього ΠΏΠΎΠ΄Π²Ρ–ΠΉΠ½Ρ– Π·Π»ΠΈΡ‚ΠΊΠΈ, Π° ΠΏΠΎΡ‚Ρ–ΠΌ Π½Π°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ– Π½Π° ΠΌΠΎΠ»ΠΎΡ‚, Ρ‰ΠΎΠ± Π·Π°Π±Ρ€Π°Ρ‚ΠΈ Π²Π°ΡˆΡ– пластини.\n\nКовадла Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня Ρ‚Π°ΠΊΠΎΠΆ Π²ΠΈΠΌΠ°Π³Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ мСншС ΡƒΠ΄Π°Ρ€Ρ–Π², Ρ‰ΠΎΠ± створити пластини Π· ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎΠ³ΠΎ рівня.", + "quests.steam_age.helve_hammer.desc.1": "ВиготовлСння всіх Ρ‚ΠΈΡ… пластин для Π΄ΠΎΠΌΠ½ΠΈ Π·Π΄Π°Ρ”Ρ‚ΡŒΡΡ виснаТливим? &3ΠšΠΎΡ€ΠΎΠΌΠΈΡΠ»ΠΎΠ²ΠΈΠΉ ΠΌΠΎΠ»ΠΎΡ‚&r Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ (Π°Π»Π΅ ΠΏΠΎΠ²Ρ–Π»ΡŒΠ½ΠΎ) Ρ€ΠΎΠ·ΠΏΠ»ΡŽΡ‰ΡƒΡ” ΠΏΠΎΠ΄Π²Ρ–ΠΉΠ½Ρ– Π·Π»ΠΈΡ‚ΠΊΠΈ Ρƒ пластини. ΠŸΡ€ΠΎΡ‚Π΅ Π·Π²Π°Ρ€ΡŽΠ²Π°Π½Π½Ρ всС ΠΎΠ΄Π½ΠΎ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Π²ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈ Π²Ρ€ΡƒΡ‡Π½Ρƒ. ΠŸΡ€ΠΎΡΡ‚ΠΎ Ρ€ΠΎΠ·ΠΌΡ–ΡΡ‚Ρ–Ρ‚ΡŒ ΠΊΠΎΠ²Π°Π΄Π»ΠΎ Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ ΠΏΡ–Π΄ ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΌ Ρ– ΠΊΠΈΠ½ΡŒΡ‚Π΅ Π½Π° нього ΠΏΠΎΠ΄Π²Ρ–ΠΉΠ½Ρ– Π·Π»ΠΈΡ‚ΠΊΠΈ, Π½Π°Ρ‚ΠΈΡΠ½ΡƒΠ²ΡˆΠΈ &2ΠΊΠ»Π°Π²Ρ–ΡˆΡƒ кидання ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π° (Π’ΠΈΠΏΠΎΠ²ΠΎ: Q)&r, Π° ΠΏΠΎΡ‚Ρ–ΠΌ ΠΊΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ– ΠΏΠΎ ΠΌΠΎΠ»ΠΎΡ‚Ρƒ, Ρ‰ΠΎΠ± Π·Π°Π±Ρ€Π°Ρ‚ΠΈ Π³ΠΎΡ‚ΠΎΠ²Ρ– пластини.\n\nКовадла Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня Ρ‚Π°ΠΊΠΎΠΆ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ мСншС ΡƒΠ΄Π°Ρ€Ρ–Π² для виготовлСння пластин Ρ–Π· ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎΠ³ΠΎ рівня.", + "quests.steam_age.helve_hammer.desc.2": "ΠžΠ±ΠΎΠ²β€™ΡΠ·ΠΊΠΎΠ²ΠΎ використовуй ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½Ρ–, Ρ‰ΠΎΠ± Π·Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ! \n\nΠ‘ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ Ρ†Π΅ ΠΌΠΎΠΆΠ΅ виглядати Π½Π΅ΠΏΠ΅Ρ€Π΅ΠΊΠΎΠ½Π»ΠΈΠ²ΠΎ, Π°Π»Π΅ ΠΊΠΎΠ»ΠΈ Ρ‚ΠΈ змоТСш Ρ€ΠΎΠ·Ρ–Π³Π½Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π΄ΠΎ 256 ΠΎΠ±/Ρ…Π² Π·Π° допомогою сталСвих ΡˆΠ΅ΡΡ‚Π΅Ρ€Π΅Π½ΡŒ Ρ– Π²Π°Π»Ρ–Π², &3Ковальський ΠΌΠΎΠ»ΠΎΡ‚&r справді засяє.", + "quests.steam_age.multiblock_tank.title": "Π‘Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΡ‡Π½Ρ– Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€ΠΈ", + "quests.steam_age.multiblock_tank.subtitle": "Π’Π΅Π»ΠΈΡ‡Π΅Π·Π½Ρ– обсяги збСрігання Ρ€Ρ–Π΄ΠΈΠ½", + "quests.steam_age.multiblock_tank.desc": "ΠœΠ°Ρ”Ρˆ Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½Ρƒ ΠΊΡƒΠΏΡƒ дСрСв’яних Π±ΠΎΡ‡ΠΎΠΊ, Π½Π°ΠΌΠ°Π³Π°ΡŽΡ‡ΠΈΡΡŒ Π·Π±Π΅Ρ€Π΅Π³Ρ‚ΠΈ вСсь Ρ‚ΠΎΠΉ ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚? \n\nΠ’ΠΎΠ΄Ρ– Π·Π²Π΅Ρ€Π½ΠΈ ΡƒΠ²Π°Π³Ρƒ Π½Π° Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΡ‡Π½Ρ– Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€ΠΈ, Π΄Π΅ Π½Π°Π²Ρ–Ρ‚ΡŒ найдСшСвший дСрСв’яний ΠΌΠΎΠΆΠ΅ вмістити Π½Π΅ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½Ρ– 1 000 Π²Ρ–Π΄Π΅Ρ€. Π„ Ρ‚Π°ΠΊΠΎΠΆ Π±Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ– Ρ‚Π° сталСві Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ, якщо ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Ρ‰Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅ місця для збСрігання! \n\nΠ©ΠΎΠ± Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π½Π°ΠΏΠΎΠ²Π½ΡŽΠ²Π°Ρ‚ΠΈ Π°Π±ΠΎ ΡΠΏΠΎΡ€ΠΎΠΆΠ½ΡŽΠ²Π°Ρ‚ΠΈ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€ΠΈ, використовуй ΠΊΠ»Π°ΠΏΠ°Π½.", "quests.steam_age.water_wheel.title": "Водяні колСса", "quests.steam_age.water_wheel.subtitle": "Π‘ΠΏΠΎΠ΄Ρ–Π²Π°ΡŽΡΡ, Π²ΠΈ розмістили свою Π±Π°Π·Ρƒ ΠΏΠΎΡ€ΡƒΡ‡ Ρ–Π· Ρ€Ρ–Ρ‡ΠΊΠΎΡŽ!", "quests.steam_age.water_wheel.desc": "Водяні колСса Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡŽΡ‚ΡŒ Π·Π½Π°Ρ‡Π½ΠΎ Π±Ρ–Π»ΡŒΡˆΠ΅ потуТності, Π½Ρ–ΠΆ Ρ‚Π²Π°Ρ€ΠΈΠ½Π½ΠΈΠΉ ΠΏΡ€ΠΈΠ²Ρ–Π΄, Π°Π»Π΅ ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ ΠΏΡ€ΠΎΡ‚ΠΎΡ‡Π½ΠΎΡ— Π²ΠΎΠ΄ΠΈ. Π’ΠΈ Ρ‰Π΅ Π½Π΅ ΠΌΠ°Ρ”Ρ‚Π΅ моТливості пСрСсувати Π΄ΠΆΠ΅Ρ€Π΅Π»Π° Π²ΠΎΠ΄ΠΈ, Ρ‚ΠΎΠΆ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ Π·Π½Π°ΠΉΡ‚ΠΈ Ρ€Ρ–Ρ‡ΠΊΡƒ, Ρ‰ΠΎΠ± ΠΆΠΈΠ²ΠΈΡ‚ΠΈ Ρ—Ρ…. ОкСани ΠΉ ΠΎΠ·Π΅Ρ€Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π΄Π°Ρ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ Π΅Π½Π΅Ρ€Π³Ρ–Ρ—, Π°Π»Π΅ якщо Π²ΠΈ Π΄Π°Π»Π΅ΠΊΠΎ Π²Ρ–Π΄ узбСрСТТя, ΠΊΡ€Π°Ρ‰Π΅ розглянути Π±ΡƒΠ΄Ρ–Π²Π½ΠΈΡ†Ρ‚Π²ΠΎ вітряка. \n\nΠžΠ±Ρ€ΠΎΠ±Π»Π΅Π½Ρƒ Π΄Π΅Ρ€Π΅Π²ΠΈΠ½Ρƒ ΠΌΠΎΠΆΠ½Π° ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ, Π·Π°ΠΌΠΎΡ‡ΠΈΠ²ΡˆΠΈ Π±ΡƒΠ΄ΡŒβ€‘ΡΠΊΡ– дошки Π² ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚Ρ– Π· Π²Π°ΡˆΠΎΡ— коксової ΠΏΠ΅Ρ‡Ρ–.", @@ -3079,11 +3752,11 @@ "quests.steam_age.mold_table.desc.2": "Π―ΠΊΡ‰ΠΎ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅, ΠΌΠΎΠΆΠ½Π° використовувати Π–ΠΎΠ»ΠΎΠ± для скидання ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Ρƒ Π²Π΅Ρ€Ρ…Π½ΡŽ частину Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ–, Π° Автоматизатор для Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎΡ— Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Π· ΠΌΡ–Ρ…Π°ΠΌΠΈ. НадмірнС надування ΠΌΡ–Ρ…Ρ–Π² швидко Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈΡ‚ΡŒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ Π²Π°ΡˆΠΎΡ— Π’ΡƒΡ”Ρ€ΠΈ, Ρ…ΠΎΡ‡Π° Ρ‚Ρ€ΡƒΠ±Π°ΠΌΠΈ для ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² ΠΌΠΎΠΆΠ½Π° вставити Π½ΠΎΠ²Ρƒ.\n\nΠ’ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використовувати ΠΏΠΎΠΌΠΏΡƒ, Ρ‰ΠΎΠ± витягувати Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Π· Π΄ΠΎΠΌΠ΅Π½Π½ΠΎΡ— ΠΏΠ΅Ρ‡Ρ– Ρ‚Π° тигля одночасно, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ Клапан для Ρ€Ρ–Π΄ΠΈΠ½, Ρ‰ΠΎΠ± Π·ΡƒΠΏΠΈΠ½ΠΈΡ‚ΠΈ ΠΏΠΎΠΌΠΏΡƒ ΠΏΡ–Π΄ час створСння сплавів, Ρ– Π·Π½ΠΎΠ²Ρƒ Π²ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΠΈ Ρ—Ρ— після Π·Π°Π²Π΅Ρ€ΡˆΠ΅Π½Π½Ρ.", "quests.steam_age.fluid_pipes.title": "Π’Ρ€ΡƒΠ±ΠΈ для Π Ρ–Π΄ΠΈΠ½", "quests.steam_age.fluid_pipes.subtitle": "Π Ρ–Π΄ΠΈΠ½ΠΈ, Π³Π°Π·ΠΈ... ΠΌΠΈ Π½Π΅ дискримінуємо", - "quests.steam_age.fluid_pipes.desc.1": "&bΠ’Ρ€ΡƒΠ±ΠΈ для Π Ρ–Π΄ΠΈΠ½&r Ρ‚Ρ€Π°Π½ΡΠΏΠΎΡ€Ρ‚ΡƒΠ²Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ &7ΠŸΠ°Ρ€&r ΠΌΡ–ΠΆ машинами Π·Π° вас.\n\nКоТна Π’Ρ€ΡƒΠ±Π° ΠΌΠ°Ρ” ΠΏΠ΅Π²Π½Ρƒ пропускну Π·Π΄Π°Ρ‚Π½Ρ–ΡΡ‚ΡŒ Ρƒ mB/Ρ‚ Ρ‚Π° &6Π’Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π½ΠΈΠΉ Π›Ρ–ΠΌΡ–Ρ‚&r. Π¦Π΅ Π²Π°ΠΆΠ»ΠΈΠ²ΠΎ Π·Π°Ρ€Π°Π·, ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ ΠŸΠ°Ρ€ ΠΌΠΎΠΆΠ΅ спалити Π”Π΅Ρ€Π΅Π²'яні Π’Ρ€ΡƒΠ±ΠΈ. ДСякі Ρ‚Ρ€ΡƒΠ±ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ &bособливі&r властивості, ΠΏΡ€ΠΎ які Π·Π°Ρ€Π°Π· ΠΌΠΎΠΆΠ½Π° Π½Π΅ турбуватися.\n\nКоТСн ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» ΠΌΠ°Ρ” ΠΊΡ–Π»ΡŒΠΊΠ° Ρ€ΠΎΠ·ΠΌΡ–Ρ€Ρ–Π² Π’Ρ€ΡƒΠ±. Π§ΠΈΠΌ Π±Ρ–Π»ΡŒΡˆΠ° Π’Ρ€ΡƒΠ±Π°, Ρ‚ΠΈΠΌ &aΠ²ΠΈΡ‰Π°&r пропускна Π·Π΄Π°Ρ‚Π½Ρ–ΡΡ‚ΡŒ, Π°Π»Π΅ ΠΉ Ρ‚ΠΈΠΌ &dΠ΄ΠΎΡ€ΠΎΠΆΡ‡ΠΈΠΉ&r ΠΊΡ€Π°Ρ„Ρ‚. Наприклад, Π·Π²ΠΈΡ‡Π°ΠΉΠ½Π° &6Π‘Ρ€ΠΎΠ½Π·ΠΎΠ²Π° Π’Ρ€ΡƒΠ±Π° для Π Ρ–Π΄ΠΈΠ½&r ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ” 120mB/Ρ‚. (Π’ΠΎΠ½Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠ°Ρ” Π²Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½Ρ–ΠΉ Π±ΡƒΡ„Π΅Ρ€ Π½Π° 1,200mB!)\n\nНа ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ ΠΌΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ використовувати Π”Π΅Ρ€Π΅Π²'яні Ρ‚Ρ€ΡƒΠ±ΠΈ для Ρ…ΠΎΠ»ΠΎΠ΄Π½ΠΈΡ… Ρ€Ρ–Π΄ΠΈΠ½ Ρ– Π‘Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ– β€” для гарячих.", + "quests.steam_age.fluid_pipes.desc.1": "&bΠ Ρ–Π΄ΠΈΠ½Π½Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ&r Ρ‚Ρ€Π°Π½ΡΠΏΠΎΡ€Ρ‚ΡƒΡŽΡ‚ΡŒ &7ΠŸΠ°Ρ€&r ΠΌΡ–ΠΆ машинами Π·Π°ΠΌΡ–ΡΡ‚ΡŒ вас.\n\nКоТна Ρ‚Ρ€ΡƒΠ±Π° ΠΌΠ°Ρ” ΠΏΠ΅Π²Π½Ρƒ пропускну Π·Π΄Π°Ρ‚Π½Ρ–ΡΡ‚ΡŒ Ρƒ ΠΌΠ‘/Ρ‚, Π° Ρ‚Π°ΠΊΠΎΠΆ &6Π’Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€Π½Π΅ обмСТСння&r. Π¦Π΅ Π²Π°ΠΆΠ»ΠΈΠ²ΠΎ Π²ΠΆΠ΅ Π·Π°Ρ€Π°Π·, Π°Π΄ΠΆΠ΅ ΠŸΠ°Ρ€ ΠΌΠΎΠΆΠ΅ спалити дСрСв’яні Ρ‚Ρ€ΡƒΠ±ΠΈ. ДСякі Ρ‚Ρ€ΡƒΠ±ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ &bособливі&r властивості, ΠΏΡ€ΠΎ які ΠΏΠΎΠΊΠΈ Ρ‰ΠΎ ΠΌΠΎΠΆΠ½Π° Π½Π΅ Ρ‚ΡƒΡ€Π±ΡƒΠ²Π°Ρ‚ΠΈΡΡŒ.\n\nКоТСн ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» ΠΌΠ°Ρ” ΠΊΡ–Π»ΡŒΠΊΠ° Ρ€ΠΎΠ·ΠΌΡ–Ρ€Ρ–Π² Ρ‚Ρ€ΡƒΠ±. Π§ΠΈΠΌ Π±Ρ–Π»ΡŒΡˆΠ° Ρ‚Ρ€ΡƒΠ±Π°, Ρ‚ΠΈΠΌ &aΠ²ΠΈΡ‰Π°&r Ρ—Ρ— пропускна Π·Π΄Π°Ρ‚Π½Ρ–ΡΡ‚ΡŒ, Π°Π»Π΅ ΠΉ Ρ‚ΠΈΠΌ &dΠ΄ΠΎΡ€ΠΎΠΆΡ‡Π΅&r Ρ—Ρ— виготовлСння. Наприклад, Π·Π²ΠΈΡ‡Π°ΠΉΠ½Π° &6Π‘Ρ€ΠΎΠ½Π·ΠΎΠ²Π° Ρ€Ρ–Π΄ΠΈΠ½Π½Π° Ρ‚Ρ€ΡƒΠ±Π°&r ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ” 120 ΠΌΠ‘/Ρ‚. (Π’ΠΎΠ½Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠ°Ρ” Π²Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½Ρ–ΠΉ Π±ΡƒΡ„Π΅Ρ€ Π½Π° 1 200 ΠΌΠ‘!)\n\nДля ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ використовувати дСрСв’яні Ρ‚Ρ€ΡƒΠ±ΠΈ для Ρ€Ρ–Π΄ΠΈΠ½ ΠΊΡ–ΠΌΠ½Π°Ρ‚Π½ΠΎΡ— Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ, Π° Π±Ρ€ΠΎΠ½Π·ΠΎΠ²Ρ– β€” для гарячих.", "quests.steam_age.fluid_pipes.desc.2": "&aНагадування:&r 1 сСкунда = 20 Ρ‚Π°ΠΊΡ‚Ρ–Π²... якщо сСрвСр Π½Π΅ Π»Π°Π³Π°Ρ”.\n\n&dΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°:&r Π’Ρ€ΡƒΠ±ΠΈ ΡΡ‚ΠΈΠ»ΡŽ GT6 ΡƒΠ²Ρ–ΠΌΠΊΠ½Π΅Π½Ρ–. Π¦Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ ΠΏΡ€ΠΈ Ρ€ΠΎΠ·ΠΌΡ–Ρ‰Π΅Π½Π½Ρ– Ρ‚Ρ€ΡƒΠ± Π²ΠΎΠ½ΠΈ Π·'Ρ”Π΄Π½ΡƒΡŽΡ‚ΡŒΡΡ лишС Π· Π±Π»ΠΎΠΊΠΎΠΌ, Π΄ΠΎ якого Π±ΡƒΠ»ΠΈ встановлСні. Π©ΠΎΠ± Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅ Π·'Ρ”Π΄Π½Π°Π½ΡŒ, використовуйтС ваш Π“Π°ΠΉΠΊΠΎΠ²ΠΈΠΉ ΠšΠ»ΡŽΡ‡ Π½Π° Ρ‚Ρ€ΡƒΠ±Ρ–.\n\nΠ’ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ натиснути Shift Ρ– ΠΊΠ»Π°Ρ†Π½ΡƒΡ‚ΠΈ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ– Π· вашим Π“Π°ΠΉΠΊΠΎΠ²ΠΈΠΌ ΠšΠ»ΡŽΡ‡Π΅ΠΌ, Ρ‰ΠΎΠ± Π²ΠΈΠΌΠΊΠ½ΡƒΡ‚ΠΈ ввСдСння Π· ΠΏΠ΅Π²Π½ΠΎΡ— сторони. Π¦Π΅ ΠΌΠΎΠΆΠ΅ Π΄ΠΎΠΏΠΎΠΌΠΎΠ³Ρ‚ΠΈ ΡƒΠ½ΠΈΠΊΠ½ΡƒΡ‚ΠΈ Π΅Ρ„Π΅ΠΊΡ‚Ρƒ хитання (Ρ€ΡƒΡ… Ρ€Ρ–Π΄ΠΈΠ½ Ρƒ Π½Π΅Π±Π°ΠΆΠ°Π½ΠΎΠΌΡƒ напрямку).", "quests.steam_age.fluid_drums.title": "Π•Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Π΅ ЗбСрігання Π Ρ–Π΄ΠΈΠ½", "quests.steam_age.fluid_drums.subtitle": "Π― Π½Π΅ Π΄ΡƒΠΌΠ°ΡŽ, Ρ‰ΠΎ Π΄Π΅Ρ€Π΅Π²'яна Π±ΠΎΡ‡ΠΊΠ° ΠΌΠΎΠΆΠ΅ ΡƒΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ Ρ€ΠΎΠ·ΠΏΠ»Π°Π²Π»Π΅Π½Ρƒ ΡΡ‚Π°Π»ΡŒ", - "quests.steam_age.fluid_drums.desc.1": "&6TFG&r ΠΌΠΎΠΆΠ΅ швидко стати &4ΠΏΠ΅Ρ€Π΅Π²Π°ΠΆΠ½ΠΈΠΌ&r Ρ‡Π΅Ρ€Π΅Π· Π²Π΅Π»ΠΈΠΊΡƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Ρ€Ρ–Π΄ΠΈΠ½, які Π²Ρ–Π½ Π΄ΠΎΠ΄Π°Ρ”, Ρ‚ΠΎΠΌΡƒ Π²ΠΈ, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, ΡˆΡƒΠΊΠ°Ρ”Ρ‚Π΅ спосіб Ρ—Ρ… Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ.\n\nЗустрічайтС... &aΠ‘ΠΎΡ‡ΠΊΠΈ&r! Π’ΠΎΠ½ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π²Π΅Π»ΠΈΠΊΡ– Π²Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½Ρ– Π±ΡƒΡ„Π΅Ρ€ΠΈ, Ρ– Π±ΡƒΠ΄ΡŒ-яку &aΠ‘ΠΎΡ‡ΠΊΡƒ&r ΠΌΠΎΠΆΠ½Π° Ρ€ΠΎΠ·Π±ΠΈΡ‚ΠΈ, ΠΏΡ–Π΄Ρ–Π±Ρ€Π°Ρ‚ΠΈ, Ρ– Π²ΠΎΠ½Π° &dΠ·Π±Π΅Ρ€Π΅ΠΆΠ΅ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ&r всСрСдині. ΠšΠ»Π°Ρ†Π°Π½Π½Ρ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ– Π·Π° допомогою Киянки дозволяє Π‘ΠΎΡ‡Ρ†Ρ– Π·Π»ΠΈΡ‚ΠΈ Ρ—Ρ— вміст Ρƒ Ρ–Π½ΡˆΠΈΠΉ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€, Ρ€ΠΎΠ·ΠΌΡ–Ρ‰Π΅Π½ΠΈΠΉ ΠΏΡ–Π΄ нСю.", + "quests.steam_age.fluid_drums.desc.1": "&6TFG&r ΠΌΠΎΠΆΠ΅ швидко стати &4пСрСобтяТСним&r Ρ‡Π΅Ρ€Π΅Π· Π±Π΅Π·Π»Ρ–Ρ‡ Ρ€Ρ–Π΄ΠΈΠ½, які Π²Ρ–Π½ Π΄ΠΎΠ΄Π°Ρ”, Ρ‚ΠΎΠΆ Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡˆΡƒΠΊΠ°Ρ‚ΠΈ спосіб Ρ—Ρ… Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ. \n\nΠ—Π½Π°ΠΉΠΎΠΌΡ‚Π΅ΡΡŒ... &aΠ‘ΠΎΡ‡ΠΊΠΈ&r! Π’ΠΎΠ½ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π²Π΅Π»ΠΈΠΊΡ– Π²Π½ΡƒΡ‚Ρ€Ρ–ΡˆΠ½Ρ– Π±ΡƒΡ„Π΅Ρ€ΠΈ, Ρ– Π±ΡƒΠ΄ΡŒ-яка &aΠ‘ΠΎΡ‡ΠΊΠ°&r ΠΌΠΎΠΆΠ½Π° Ρ€ΠΎΠ·Π±ΠΈΡ‚ΠΈ Ρ‚Π° підняти β€” Π²Ρ–Π½ &dΠ·Π±Π΅Ρ€Π΅ΠΆΠ΅ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ&r всСрСдині. \n\nΠšΠ»Π°Ρ†Π°Π½Π½Ρ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ– Π·Π° допомогою Киянки Π°Π±ΠΎ Π’ΠΈΠΊΡ€ΡƒΡ‚ΠΊΠΈ дозволяє Π±ΠΎΡ‡Ρ†Ρ– Π·Π»ΠΈΡ‚ΠΈ свій вміст Ρƒ Ρ–Π½ΡˆΠΈΠΉ ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€, Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²Π°Π½ΠΈΠΉ ΠΏΡ–Π΄ Π½ΠΈΠΌ.", "quests.steam_age.fluid_drums.desc.2": "&l&3Π›ΠΎΡ€:&r&o Π¦Ρ– Π±ΠΎΡ‡ΠΊΠΈ насправді Π±ΡƒΠ»ΠΈ пСрСнСсСні Π· GregTech 6.", "quests.steam_age.boilers.title": "ΠŸΠ°Ρ€ΠΎΠ²Ρ– ΠšΠΎΡ‚Π»ΠΈ", "quests.steam_age.boilers.subtitle": "ΠŸΠ΅Ρ€Π΅Π½ΠΎΡΠ½Π° ΠŸΠ°Ρ€ΠΎΠ²Π° ΠšΡ–ΠΌΠ½Π°Ρ‚Π°", @@ -3129,7 +3802,7 @@ "quests.steam_age.extractor.desc": "Мало які ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»ΡΡŽΡ‚ΡŒΡΡ Π² &3Екстракторі&r ΠΏΡ–Π΄ час &6ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Π²Ρ–ΠΊΡƒ&r, ΠΎΡΠΊΡ–Π»ΡŒΠΊΠΈ Π²Ρ–Π½ Π½Π΅ ΠΌΠ°Ρ” моТливості витягувати Ρ€Ρ–Π΄ΠΈΠ½ΠΈ.", "quests.steam_age.glass_tube.title": "Бкляні Π’Ρ€ΡƒΠ±ΠΊΠΈ", "quests.steam_age.glass_tube.subtitle": "Π’Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π±Π°Π³Π°Ρ‚ΠΎ Ρ‚Π°ΠΊΠΈΡ…", - "quests.steam_age.glass_tube.desc": "Π₯ΠΎΡ‡Π° всі Ρ†Ρ– Ρ‚Ρ€ΡƒΠ±ΠΊΠΈ ΠΌΠΎΠΆΠ½Π° Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΠΈ Π²Ρ€ΡƒΡ‡Π½Ρƒ Π·Π° допомогою склодувного мистСцтва, Π½Π°Π±Π°Π³Π°Ρ‚ΠΎ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡˆΠ΅ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Ρ—Ρ… Ρƒ ΠŸΠ»Π°Π²ΠΈΠ»ΡŒΠ½Ρ–ΠΉ ΠŸΠ΅Ρ‡Ρ– Π‘ΠΏΠ»Π°Π²Ρ–Π² Ρ–Π· Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎΡŽ Ρ„ΠΎΡ€ΠΌΠΎΡŽ. ΠŸΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π±Π°Π³Π°Ρ‚ΠΎ скляного ΠΏΠΈΠ»Ρƒ? Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ склодувати 16 ΠΏΠ°Π½Π΅Π»Π΅ΠΉ одночасно, Ρ‰ΠΎΠ± ΠΏΠΎΡ‚Ρ–ΠΌ ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ—Ρ… Ρƒ Π΄Ρ€ΠΎΠ±Π°Ρ€Ρ†Ρ–, Π°Π±ΠΎ скористатися Π”Ρ€ΠΎΠ±Π°Ρ€ΠΊΠΎΡŽ КамСню Ρ‚Π° ΠšΡƒΠ²Π°Π»ΡŒΠ½ΠΈΠΌ ΠœΠΎΠ»ΠΎΡ‚ΠΎΠΌ, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π±Π°Π³Π°Ρ‚ΠΎ піску, Π° ΠΏΠΎΡ‚Ρ–ΠΌ Π΄ΠΎΠ΄Π°Ρ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΏΠΈΠ»Ρƒ Π· ΠšΡ€Π΅ΠΌΠ΅Π½ΡŽ, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π½Π° скляний ΠΏΠΈΠ».", + "quests.steam_age.glass_tube.desc": "Π₯ΠΎΡ‡Π° ΠΏΠ΅Ρ€ΡˆΡ– скляні Ρ‚Ρ€ΡƒΠ±ΠΊΠΈ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ виготовляти Π²Ρ€ΡƒΡ‡Π½Ρƒ Π·Π° допомогою видування скла, Π·Π³ΠΎΠ΄ΠΎΠΌ Π½Π°Π±Π°Π³Π°Ρ‚ΠΎ Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡˆΠ΅ Π±ΡƒΠ΄Π΅ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Ρ—Ρ… Ρƒ Π²Π°ΡˆΠΎΠΌΡƒ Плавильни сплаваів Π· Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎΡŽ Ρ„ΠΎΡ€ΠΌΠΎΡŽ.\n\nΠŸΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π±Π°Π³Π°Ρ‚ΠΎ скляного ΠΏΠΈΠ»Ρƒ? Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π°Π±ΠΎ Π²ΠΈΠ΄ΡƒΠ²Π°Ρ‚ΠΈ ΠΎΠ΄Ρ€Π°Π·Ρƒ 16 скляних ΠΏΠ°Π½Π΅Π»Π΅ΠΉ Ρ– ΠΏΠΎΠ΄Ρ€Ρ–Π±Π½ΡŽΠ²Π°Ρ‚ΠΈ Ρ—Ρ…, Π°Π±ΠΎ скористатися ΠšΠ°ΠΌΠ΅Π½Π΅Π΄Ρ€ΠΎΠ±Π°Ρ€ΠΊΠΎΡŽ Ρ‚Π° ΠšΡƒΠ²Π°Π»Π΄ΠΎΡŽ, Ρ‰ΠΎΠ± ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ Π±Π°Π³Π°Ρ‚ΠΎ піску, Π° ΠΏΠΎΡ‚Ρ–ΠΌ Π΄ΠΎΠ΄Π°Ρ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ ΠΊΡ€Π΅ΠΌΠ΅Π½Π΅Π²ΠΎΠ³ΠΎ ΠΏΠΈΠ»Ρƒ, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π½Π° скляний ΠΏΠΈΠ».", "quests.steam_age.treated_planks.title": "ΠžΠ±Ρ€ΠΎΠ±Π»Π΅Π½Ρ– Π”ΠΎΡˆΠΊΠΈ", "quests.steam_age.treated_planks.subtitle": "Π’Π°ΠΊΠΎΠΆ Π²Ρ–Π΄ΠΎΠΌΡ– як ΠžΠ±Ρ€ΠΎΠ±Π»Π΅Π½Π° Π€Π°Π½Π΅Ρ€Π°", "quests.steam_age.treated_planks.desc": "Π‘ΠΏΠΎΠ΄Ρ–Π²Π°ΡŽΡΡ, Π²ΠΈ Π½Π°ΠΊΠΎΠΏΠΈΡ‡ΡƒΠ²Π°Π»ΠΈ свій ΠΊΡ€Π΅ΠΎΠ·ΠΎΡ‚, Π°Π΄ΠΆΠ΅ виготовлСння Ρ†ΠΈΡ… спрСсованих Ρ– ΠΎΠ±Ρ€ΠΎΠ±Π»Π΅Π½ΠΈΡ… Π΄ΠΎΡ‰ΠΎΠΊ Ρ” Ρ‰Π΅ ΠΎΠ΄Π½ΠΈΠΌ способом ΠΉΠΎΠ³ΠΎ використання.\n\n&l&3Π›ΠΎΡ€:&r&o Π£ Ρ€Π°Π½Π½Ρ–Ρ… вСрсіях TerraFirmaGreg Ρ†Π΅ Π±ΡƒΠ»Π° Ρ‚ΠΎΡ‡ΠΊΠ°, Π· якої Π²ΠΈ ΠΌΠΎΠ³Π»ΠΈ насправді Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ Create!", @@ -3195,7 +3868,7 @@ "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Π’ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ застосовувати Ρ—Ρ— для Π΄Π΅ΡˆΠ΅Π²ΡˆΠΈΡ… Π³ΡƒΠΌΠΎΠ²ΠΈΡ… листів, якщо ΡΠΏΠ΅Ρ€ΡˆΡƒ використаєтС плавильник сплавів, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Π²Π°ΡˆΡƒ масу Π½Π° Π±Π»ΠΎΠΊ. \n\nΠ©Π΅ Π½Π΅ Ρ€ΠΎΠ±ΠΈΠ»ΠΈ ΠΊΠΎΠ±Π°Π»ΡŒΡ‚ΠΎΠ²ΠΎΡ— Π»Π°Ρ‚ΡƒΠ½Ρ–? Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π°Π±ΠΎ сплавити Ρ—Ρ— Ρƒ Ρ‚ΠΈΠ³Π»Ρ–, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ Π±ΡƒΠ΄ΡŒ-Ρ‰ΠΎ, Ρ‰ΠΎ ΠΏΠ»Π°Π²ΠΈΡ‚ΡŒΡΡ Ρƒ Π°Π»ΡŽΠΌΠΎΡΠΈΠ»Ρ–ΠΊΠ°Ρ‚, Π°Π±ΠΎ застосувати міксСр Π· Π°Π»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²ΠΈΠΌ ΠΏΠΈΠ»ΠΎΠΌ Ρ–Π· ΠΏΠ΅Ρ€Π΅Ρ€ΠΎΠ±ΠΊΠΈ Ρ€ΡƒΠ΄ΠΈ.", "quests.steam_age.rolling_mill.title": "Π’Π°Π»ΡŒΡ†ΡŽΠ²Π°Π»ΡŒΠ½ΠΈΠΉ Π‘Ρ‚Π°Π½ΠΎΠΊ", "quests.steam_age.rolling_mill.subtitle": "Π”Ρ€ΡƒΠ³Π° ΠΏΠΎΠ»ΠΎΠ²ΠΈΠ½Π° LV Π—Π³ΠΈΠ½Π°Π»ΡŒΠ½ΠΎΠ³ΠΎ ВСрстата", "quests.steam_age.rolling_mill.desc.1": "Π— усіх машин ΠΏΠ°Ρ€ΠΎΠ²ΠΎΡ— Π΅ΠΏΠΎΡ…ΠΈ, які Π²ΠΈ ΠΌΠΎΠ³Π»ΠΈ Π± створити, &3Π’Π°Π»ΡŒΡ†ΡŽΠ²Π°Π»ΡŒΠ½ΠΈΠΉ Π‘Ρ‚Π°Π½ΠΎΠΊ&r Ρ” ΠΎΠ΄Π½ΠΈΠΌ Π· Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΡ…, Π· простої ΠΏΡ€ΠΈΡ‡ΠΈΠ½ΠΈ: Π²Ρ–Π½ виготовляє ΠΎΠ΄ΠΈΠ½Π°Ρ€Π½Ρ– пластини Π· ΠΎΠ΄ΠΈΠ½Π°Ρ€Π½ΠΈΡ… Π·Π»ΠΈΡ‚ΠΊΡ–Π². Бонусом Ρ” Ρ‚Π΅, Ρ‰ΠΎ Π²Ρ–Π½ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅ виготовляти Ρ‚ΠΎΠ½ΠΊΡ– листи дСшСвшС, Π½Ρ–ΠΆ Π²Ρ€ΡƒΡ‡Π½Ρƒ!", @@ -3213,7 +3886,7 @@ "quests.steam_age.miner.desc.2": "ΠŸΠ°Ρ€ΠΎΠ²ΠΈΠΉ Π‘ΡƒΡ€, Π· Ρ–Π½ΡˆΠΎΠ³ΠΎ Π±ΠΎΠΊΡƒ, Π²ΠΈΠ΄ΠΎΠ±ΡƒΠ²Π°Ρ” лишС Ρ€ΡƒΠ΄Π½Ρ– Π±Π»ΠΎΠΊΠΈ ΠΉ Π·Π°ΠΌΡ–Π½ΡŽΡ” Ρ—Ρ… Π±Ρ€ΡƒΠΊΡ–Π²ΠΊΠΎΡŽ, Π·Π°Π»ΠΈΡˆΠ°ΡŽΡ‡ΠΈ Ρ€Π΅ΡˆΡ‚Ρƒ ‘Ρ€ΡƒΠ½Ρ‚Ρƒ Π½Π΅Π΄ΠΎΡ‚ΠΎΡ€ΠΊΠ°Π½ΠΎΡŽ. Π’ΠΎΠ½Π° ΠΌΠΎΠΆΠ΅ Π²ΠΈΠ΄ΠΎΠ±ΡƒΠ²Π°Ρ‚ΠΈ Ρ€ΡƒΠ΄Ρƒ Π² (ΠΌΠ°Π»ΠΎΠΌΡƒ) радіусі, Ρ‰ΠΎ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ Ρ—Ρ— ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ ΠΏΠ΅Ρ€Π΅ΠΌΡ–Ρ‰Π°Ρ‚ΠΈ Ρ€Ρ–Π΄ΡˆΠ΅, Π½Ρ–ΠΆ ΠΌΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½Ρƒ ΡˆΠ°Ρ…Ρ‚Π°Ρ€ΠΊΡƒ, Π°Π»Π΅ Π²ΠΎΠ½Π° Ρ‚Π°ΠΊΠΎΠΆ Π½Π°Π±Π°Π³Π°Ρ‚ΠΎ ΠΏΠΎΠ²Ρ–Π»ΡŒΠ½Ρ–ΡˆΠ°.", "quests.steam_age.paper.title": "ΠŸΠ°ΠΏΡ–Ρ€", "quests.steam_age.paper.subtitle": "НС Π· Ρ†ΡƒΠΊΡ€ΠΎΠ²ΠΎΡ— тростини", - "quests.steam_age.paper.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ Ρ‰Π΅ Π½Π΅ Π·Ρ€ΠΎΠ±ΠΈΠ»ΠΈ ΠΆΠΎΠ΄Π½ΠΎΠ³ΠΎ ΠΏΠ°ΠΏΠ΅Ρ€Ρƒ, Ρ” Ρ‚Ρ€ΠΈ Ρ€Ρ–Π·Π½Ρ– способи ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π±Π΅Π· Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΠΊΠΈ:\n\n1) Π‘Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ ΠΏΠ΅Ρ€Π³Π°ΠΌΠ΅Π½Ρ‚ Π·Ρ– ΡˆΠΊΡ–Ρ€ΠΈ, ΠΏΠ΅ΠΌΠ·ΠΈ Ρ‚Π° яйця.\n\n2) БплСсти Ρ€Π°Π·ΠΎΠΌ папірус.\n\n3) Π’ΠΈΠ³ΠΎΡ‚ΠΎΠ²ΠΈΡ‚ΠΈ ΠΏΠ°ΠΏΡ–Ρ€ Ρ–Π· Ρ‚Π²Π΅Ρ€Π΄ΠΎΡ— Π΄Π΅Ρ€Π΅Π²ΠΈΠ½ΠΈ Ρ‡Π΅Ρ€Π΅Π· Ρ‚Ρ€ΠΈΠ²Π°Π»ΠΈΠΉ процСс.\n\nΠŸΡ–Π·Π½Ρ–ΡˆΠ΅ Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Π΄Π΅Ρ€Π΅Π²Π½Ρƒ масу Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π² ΠΏΠ°ΠΏΡ–Ρ€ Π·Π° допомогою LV Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΎΡ— Π’Π°Π½Π½ΠΈ.", + "quests.steam_age.paper.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ Ρ‰Π΅ Π½Π΅ Π·Ρ€ΠΎΠ±ΠΈΠ»ΠΈ Ρ†ΡŒΠΎΠ³ΠΎ, існує Ρ‚Ρ€ΠΈ Ρ€Ρ–Π·Π½Ρ– способи ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΠΏΠ°ΠΏΡ–Ρ€ Π±Π΅Π· Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΠΊΠΈ. \n\n1) Π‘Ρ‚Π²ΠΎΡ€Ρ–Ρ‚ΡŒ ΠΏΠ΅Ρ€Π³Π°ΠΌΠ΅Π½Ρ‚ Π·Ρ– ΡˆΠΊΡƒΡ€ΠΈ, ΠΏΠ΅ΠΌΠ·ΠΈ Ρ‚Π° яйця. \n\n2) Π‘ΠΏΠ»Π΅Ρ‚Ρ–Ρ‚ΡŒ папірус. \n\n3) Π’ΠΈΠ³ΠΎΡ‚ΠΎΠ²Ρ‚Π΅ ΠΉΠΎΠ³ΠΎ Π· Ρ‚Π²Π΅Ρ€Π΄ΠΎΡ— Π΄Π΅Ρ€Π΅Π²ΠΈΠ½ΠΈ Ρ‡Π΅Ρ€Π΅Π· Ρ‚Ρ€ΠΈΠ²Π°Π»ΠΈΠΉ процСс. \n\nΠ—Π³ΠΎΠ΄ΠΎΠΌ Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Π΄Π΅Ρ€Π΅Π²Π½Ρƒ масу Π±Π΅Π·ΠΏΠΎΡΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎ Π½Π° ΠΏΠ°ΠΏΡ–Ρ€ Ρ–Π· мСншою ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ ΠΊΡ€ΠΎΠΊΡ–Π².", "quests.steam_age.lv_circuit.title": "Π’Π°Ρˆ ΠΏΠ΅Ρ€ΡˆΠΈΠΉ схСмний ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚!", "quests.steam_age.lv_circuit.subtitle": "Π‘Π²Ρ–Ρ‚Π°Π½ΠΎΠΊ Π½ΠΎΠ²ΠΎΡ— Π΅ΠΏΠΎΡ…ΠΈ", "quests.steam_age.lv_circuit.desc": "Π Π΅Ρ†Π΅ΠΏΡ‚ для Ρ†ΡŒΠΎΠ³ΠΎ ΠΌΠΎΠΆΠ΅ виглядати Π»ΡΠΊΠ°ΡŽΡ‡Π΅ Π½Π° ΠΏΠ΅Ρ€ΡˆΠΈΠΉ погляд, Π°Π»Π΅ якщо Π²ΠΈ ΠΏΡ€ΠΎΠ²Π΅Π»ΠΈ Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ часу Π² Π΅ΠΏΠΎΡ…Ρƒ ΠΏΠ°Ρ€ΠΈ, усС ΠΏΠΎΠ²ΠΈΠ½Π½ΠΎ Π±ΡƒΡ‚ΠΈ Π»Π΅Π³ΠΊΠΎ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΠΎΠ²Π°Π½ΠΈΠΌ. Π’ΠΈ Π±ΡƒΠ΄Π΅Ρ‚Π΅ виготовляти Ρ—Ρ… Ρƒ Π²Π΅Π»ΠΈΠΊΠΈΡ… ΠΊΡ–Π»ΡŒΠΊΠΎΡΡ‚ΡΡ… протягом ΠΏΠ΅Π²Π½ΠΎΠ³ΠΎ часу, Π°Π»Π΅ Π²Π°ΡˆΡ– наступні Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Ρ– машини Π΄ΠΎΠΏΠΎΠΌΠΎΠΆΡƒΡ‚ΡŒ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ—Ρ… Ρ‰Π΅ дСшСвшими, ΠΏΠΎΠΊΠΈ Π²ΠΈ Π½Π΅ дістанСтС АссСмблСр Π‘Ρ…Π΅ΠΌ Π½Π°ΠΏΡ€ΠΈΠΊΡ–Π½Ρ†Ρ– LV.", @@ -3222,7 +3895,7 @@ "quests.steam_age.what_next.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ ΠΏΠΎΡΠΏΡ–ΡˆΠΈΠ»ΠΈ дістатися сюди, ΠΌΠΈ Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ ΡΠΏΠ΅Ρ€ΡˆΡƒ зосСрСдитися Π½Π° Ρ‚Π°ΠΊΠΈΡ… ΠΌΠ°ΡˆΠΈΠ½Π°Ρ…, як LV Π—Π³ΠΈΠ½Π°Π»ΡŒΠ½ΠΈΠΉ ВСрстат, Π”Ρ€ΠΎΡ‚ΠΎΠ²ΠΈΠΉ ВСрстат Π°Π±ΠΎ ΠœΡ–ΠΊΡΠ΅Ρ€. \nΠ†Π½Π°ΠΊΡˆΠ΅, якщо Π²ΠΈ Π²ΠΆΠ΅ створили ΠΊΡ–Π½Π΅Ρ‚ΠΈΡ‡Π½Ρ– машини, ΠΌΠΈ ΠΏΡ€ΠΎΠΏΠΎΠ½ΡƒΡ”ΠΌΠΎ Π·Π²Π΅Ρ€Π½ΡƒΡ‚ΠΈ ΡƒΠ²Π°Π³Ρƒ Π½Π° АсСмблСр, Π”ΡƒΠ³ΠΎ ΠΏΠ»Π°Π²ΠΈΠ»ΡŒΠ½Ρƒ ΠŸΡ–Ρ‡, Π₯Ρ–ΠΌΡ–Ρ‡Π½ΠΈΠΉ Π Π΅Π°ΠΊΡ‚ΠΎΡ€ Π°Π±ΠΎ ΠŸΠΎΠ»ΡΡ€ΠΈΠ·Π°Ρ‚ΠΎΡ€.", "quests.steam_age.alternator.title": "ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€ΠΈ", "quests.steam_age.alternator.subtitle": "ΠŸΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€Π΅Π½Π½Ρ Π½Π°ΠΏΡ€ΡƒΠ³ΠΈ Π² Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ", - "quests.steam_age.alternator.desc.1": "Π―ΠΊΡ‰ΠΎ Ρƒ вас Π²Π΅Π»ΠΈΠΊΠ΅ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ Π΅ΠΏΠΎΡ…ΠΈ ΠΏΠ°Ρ€ΠΈ, Π²ΠΈ, ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½ΠΎ, Π½Π΅ Π·Π°Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ ΠΎΠ΄Ρ€Π°Π·Ρƒ всС списати, Ρ‰ΠΎΠ± повСрнутися Π΄ΠΎ ΠΊΡ–Π»ΡŒΠΊΠΎΡ… ΠΊΠΎΡ‚Π»Ρ–Π² Ρ– LV ΠŸΠ°Ρ€ΠΎΠ²ΠΈΡ… Π’ΡƒΡ€Π±Ρ–Π½. ΠΠ°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ &3ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€&r Π±ΡƒΠ΄Π΅ ΠΊΠΎΠ½Π²Π΅Ρ€Ρ‚ΡƒΠ²Π°Ρ‚ΠΈ SU Π· Π²Π°ΡˆΠΈΡ… ΠΏΠ°Ρ€ΠΎΠ²ΠΈΡ… Π΄Π²ΠΈΠ³ΡƒΠ½Ρ–Π² Π² Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΠΊΡƒ. КоТСн ΠΏΠ°Ρ€ΠΎΠ²ΠΈΠΉ Π΄Π²ΠΈΠ³ΡƒΠ½ + Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€ ΠΏΠΎΠ²ΠΈΠ½Π΅Π½ Π΄Π°Π²Π°Ρ‚ΠΈ 1A LV! На Таль, Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€ΠΈ ΠΊΠΎΠ½Π²Π΅Ρ€Ρ‚ΡƒΡŽΡ‚ΡŒ Π½Π°ΠΏΡ€ΡƒΠ³Ρƒ Ρƒ Π²Ρ–Π΄ΠΌΡ–Π½Π½Ρƒ Π²Ρ–Π΄ GregTech систСму Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΠΊΠΈ, Ρ‚ΠΎΠΌΡƒ Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Π•Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ ΠšΠΎΠ½Π²Π΅Ρ€Ρ‚Π΅Ρ€, Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Ρ—Ρ— Ρƒ ΠΏΡ€ΠΈΠ΄Π°Ρ‚Π½Ρƒ для використання LV Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ.", + "quests.steam_age.alternator.desc.1": "Π―ΠΊΡ‰ΠΎ Ρƒ вас Π²ΠΆΠ΅ Ρ” Π²Π΅Π»ΠΈΠΊΠ° ΠΏΠ°Ρ€ΠΎΠ²Π° установка, Π²ΠΈ навряд Ρ‡ΠΈ Π·Π°Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ ΠΎΠ΄Ρ€Π°Π·Ρƒ всС Π·Π»Π°ΠΌΠ°Ρ‚ΠΈ, Ρ‰ΠΎΠ± повСрнутися Π΄ΠΎ ΠΊΠΎΡ‚Π»Ρ–Π² Ρ‚Π° LV ΠΏΠ°Ρ€ΠΎΠ²ΠΎΡ— Ρ‚ΡƒΡ€Π±Ρ–Π½ΠΈ. ΠΠ°Ρ‚ΠΎΠΌΡ–ΡΡ‚ΡŒ &3ΠΠ»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€&r ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈΠΌΠ΅ SU Π²Ρ–Π΄ Π²Π°ΡˆΠΈΡ… ΠΏΠ°Ρ€ΠΎΠ²ΠΈΡ… Π΄Π²ΠΈΠ³ΡƒΠ½Ρ–Π² Π½Π° Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΠΊΡƒ. КоТСн ΠΏΠ°Ρ€ΠΎΠ²ΠΈΠΉ Π΄Π²ΠΈΠ³ΡƒΠ½ + Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€ Π΄Π°Ρ” 1A LV!\n\nНа Таль, Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΎΡ€ΠΈ ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΡŽΡŽΡ‚ΡŒ навантаТСння Π² Ρ–Π½ΡˆΡƒ систСму Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΈΠΊΠΈ (Forge Energy), Π½Ρ–ΠΆ Ρ‚Π°, яку використовує GregTech (Energy Units), Ρ‚ΠΎΠΌΡƒ Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Energy Converter, Ρ‰ΠΎΠ± Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ LV Π΅Π½Π΅Ρ€Π³Ρ–ΡŽ ΠΏΡ€ΠΈΠ΄Π°Ρ‚Π½ΠΎΡŽ для використання. ΠžΠ±ΠΎΠ²β€™ΡΠ·ΠΊΠΎΠ²ΠΎ Π²Π΄Π°Ρ€Ρ‚Π΅ ΠΉΠΎΠ³ΠΎ киянкою Ρ‰ΠΎΠ± ΠΏΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡ΠΈΡ‚ΠΈ Ρ€Π΅ΠΆΠΈΠΌ Π· FE Π½Π° EU.", "quests.steam_age.alternator.desc.2": "ΠŸΡ€ΠΈΠΊΠ»Π°Π΄ ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Π΄Π²ΠΈΠ³ΡƒΠ½Π°, Ρ‰ΠΎ виробляє 8 Π°ΠΌΠΏΠ΅Ρ€ LV!\n", "quests.steam_age.packager.title": "Логістика Create", "quests.steam_age.packager.subtitle": "Β«Π£ нас ΡƒΠΆΠ΅ Ρ” AE2 Π²Π΄ΠΎΠΌΠ°Β»", @@ -3234,6 +3907,10 @@ "quests.steam_age.steel_mech_press.subtitle": "МайТС ковальський ΠΌΠΎΠ»ΠΎΡ‚", "quests.steam_age.steel_mech_press.desc.1": "Ковальський ΠΌΠΎΠ»ΠΎΡ‚ΠΎ Π½Π° ΠΏΠ°Ρ€Ρ– високого тиску Π²ΠΆΠ΅ Π½Π΅ Π·Π° Π³ΠΎΡ€Π°ΠΌΠΈ β€” Π²Ρ–Π½ ΠΌΠΎΠΆΠ΅ Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ ΠΌΠ°ΠΉΠΆΠ΅ всС Ρ‚Π΅, Ρ‰ΠΎ ΠΉ ця машина. АлС якщо Π²Π°ΠΌ ΠΊΠΎΠ½Ρ‡Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½Ρ– Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ Π·Π²Π°Ρ€ΡŽΠ²Π°Π½Π½Ρ Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня β€” Ρ†Π΅ ваш шанс.\n\nΠ―ΠΊΡ‰ΠΎ Π²ΠΈ Π½Π΅ Π·Π½Π°ΠΉΠΎΠΌΡ– Π· ковальським ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΌ, Ρ‚ΠΎ Ρ– Π²Ρ–Π½, Ρ– сталСвий ΠΌΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½ΠΈΠΉ прСс ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π΄Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ€ΡƒΠ΄ΠΈ (Π±Π΅Π· ΠΏΠΎΠ±Ρ–Ρ‡Π½ΠΈΡ… ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Ρ–Π²), ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ ΠΊΠ°ΠΌΡ–Π½ΡŒ Ρƒ Π±ΡƒΠ»ΠΈΠΆΠ½ΠΈΠΊ, ΠΏΠΎΡ‚Ρ–ΠΌ Ρƒ Π³Ρ€Π°Π²Ρ–ΠΉ, Π° Π΄Π°Π»Ρ– Π² пісок, Π° Ρ‚Π°ΠΊΠΎΠΆ Ρ€ΠΎΠ·Π±ΠΈΠ²Π°Ρ‚ΠΈ Ρ†Π΅Π³Π»Ρƒ. Однак лишС ковальський ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΊ ΠΌΠΎΠΆΠ΅ Π·Π°ΠΏΡ€ΠΎΠΏΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈ &3дСшСвший Ρ€Π΅Ρ†Π΅ΠΏΡ‚ ΠΌΠ΅Ρ‚Π°Π»Π΅Π²ΠΈΡ… пластин&r...", "quests.steam_age.steel_mech_press.desc.2": "&l&3Π›ΠΎΡ€:&r&o ΠœΠ΅Ρ…Π°Π½Ρ–Ρ‡Π½ΠΈΠΉ прСс Π· ΠΌΠΎΠ΄Π° Create колись Π±ΡƒΠ² ΠΊΠ»ΡŽΡ‡ΠΎΠ²ΠΈΠΌ Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚ΠΎΠΌ прогрСсу Π² ΠΏΡ–Π·Π½Ρ–ΠΉ ΠΏΠ°Ρ€ΠΎΠ²Ρ–ΠΉ Спосі Π΄ΠΎ вСрсії 0.9 TerraFirmaGreg, Π°Π΄ΠΆΠ΅ Π²Ρ–Π½ виробляв пластини Π·Π° Ρ‰Π΅ Π²ΠΈΠ³Ρ–Π΄Π½Ρ–ΡˆΠΈΠΌ ΡΠΏΡ–Π²Π²Ρ–Π΄Π½ΠΎΡˆΠ΅Π½Π½ΡΠΌ 5 Π΄ΠΎ 4. ΠŸΡ€ΠΎΡ‚Π΅ ΠΉΠΎΠ³ΠΎ рСалізація насправді ΠΎΠ·Π½Π°Ρ‡Π°Π»Π°: Β«20 відсотків часу Π²ΠΈ Π½Π΅ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ”Ρ‚Π΅ Π½Ρ–Ρ‡ΠΎΠ³ΠΎΒ», Ρ‰ΠΎ змусило Π±Π°Π³Π°Ρ‚ΡŒΠΎΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π² заявити, як сильно Π²ΠΎΠ½ΠΈ Π»ΡŽΠ±Π»ΡΡ‚ΡŒ Π°Π·Π°Ρ€Ρ‚Π½Ρ– Ρ–Π³Ρ€ΠΈ ΠΏΡ–Π΄ час ΠΉΠΎΠ³ΠΎ використання.", + "quests.steam_age.supers.title": "Π‘ΡƒΠΏΠ΅Ρ€ скрині Ρ‚Π° Π‘ΡƒΠΏΠ΅Ρ€ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€ΠΈ", + "quests.steam_age.supers.subtitle": "Π‘ΡƒΠΏΠ΅Ρ€ΡˆΡƒΡ…Π»ΡΠ΄ΠΈ для збСрігання", + "quests.steam_age.supers.desc": "Π¦Π΅ &cΡƒ&6ль&eΡ‚&aΠΈ&bΠΌ&9Ρ‚ΠΈ&5Π²&4Π½Π΅&r ΠΏΠΎΡ€Ρ‚Π°Ρ‚ΠΈΠ²Π½Π΅ Ρ€Ρ–ΡˆΠ΅Π½Π½Ρ для збСрігання, якщо Ρƒ вас Π±Π°Π³Π°Ρ‚ΠΎ ΠΎΠ΄Π½ΠΎΡ‚ΠΈΠΏΠ½ΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π°Π±ΠΎ Ρ€Ρ–Π΄ΠΈΠ½. Π₯ΠΎΡ‡Π° Ρ†Ρ– &dΠ‘Π°Π·ΠΎΠ²Ρ–&r (&8ULV&r) Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ ΠΏΠΎΡ‡ΠΈΠ½Π°ΡŽΡ‚ΡŒΡΡ Π· відносно Π½Π΅Π²Π΅Π»ΠΈΠΊΠΎΠ³ΠΎ обсягу, Π²ΠΈΡ‰Ρ– Ρ€Ρ–Π²Π½Ρ– Π‘ΡƒΠΏΠ΅Ρ€ΡΠΊΡ€ΠΈΠ½ΡŒ Ρ– Π‘ΡƒΠΏΠ΅Ρ€Π±Π°ΠΊΡ–Π² ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π²ΠΌΡ–Ρ‰ΡƒΠ²Π°Ρ‚ΠΈ Π½Π΅ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Ρ€Π΅Ρ‡Π΅ΠΉ β€” усС Π² ΠΎΠ΄Π½ΠΎΠΌΡƒ Π±Π»ΠΎΡ†Ρ–, Π±Π΅Π· урахування Ρ‚Π΅ΠΌΠΏΠ΅Ρ€Π°Ρ‚ΡƒΡ€ΠΈ Ρ‡ΠΈ кислотності!\n\nΠ―ΠΊ Ρ– Π‘Π°Ρ€Π°Π±Π°Π½ΠΈ, Π‘ΡƒΠΏΠ΅Ρ€Π±Π°ΠΊΠΈ Ρ‚Π° БупСрскрині &6Π·Π±Π΅Ρ€Ρ–Π³Π°ΡŽΡ‚ΡŒ вміст після Π·Π»Π°ΠΌΡƒ&r, ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ ΠΎΡ‡ΠΈΡ‰Π΅Π½Ρ– Π² ΠΊΡ€Π°Ρ„Ρ‚ΠΎΠ²Ρ–ΠΉ сітці Ρ‚Π° Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ ΡƒΡ‚ΠΈΠ»Ρ–Π·ΡƒΡŽΡ‚ΡŒ надлишки. ΠŸΡ€ΠΎΡ‚Π΅, Π½Π° Π²Ρ–Π΄ΠΌΡ–Π½Ρƒ Π²Ρ–Π΄ Π±Π°Ρ€Π°Π±Π°Π½Ρ–Π², Π‘ΡƒΠΏΠ΅Ρ€Π±Π°ΠΊΠΈ Ρ‚Π°ΠΊΠΎΠΆ &aΠ±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ ΡƒΡ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒ&r свій вміст, Π·Π°ΠΏΠΎΠ±Ρ–Π³Π°ΡŽΡ‡ΠΈ ΠΎΠΏΡ–ΠΊΠ°ΠΌ, ΠΎΠ±ΠΌΠΎΡ€ΠΎΠΆΠ΅Π½Π½ΡŽ Ρ‡ΠΈ спливанню.\n\nΠ―ΠΊΡ‰ΠΎ ΠΆΠ°Π΄Π°Ρ”Ρ‚Π΅ &9Ρ‰Π΅ Π±Ρ–Π»ΡŒΡˆΠ΅&r збСрігання β€” Π·Π²Π΅Ρ€Π½Ρ–Ρ‚ΡŒ ΡƒΠ²Π°Π³Ρƒ Π½Π° Π‘ΡƒΠΏΠ΅Ρ€ΠΏΠΎΠ·ΠΈΡ†Ρ–ΠΉΠ½Ρ– скрині Ρ‚Π° Π±Π°ΠΊΠΈ Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня Π°Π±ΠΎ ΠΊΠΎΠΌΡ–Ρ€ΠΊΠΈ збСрігання AE2.", + "quests.steam_age.supers.task": "Π‘ΡƒΠ΄ΡŒ-яка супСр скриня Π°Π±ΠΎ Ρ€Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€", "quests.stone_age": "ΠšΠ°ΠΌβ€™ΡΠ½Π° Π΄ΠΎΠ±Π°", "quests.stone_age.subtitle": "Π‘ΠΊΡ€ΠΎΠΌΠ½ΠΈΠΉ ΠΏΠΎΡ‡Π°Ρ‚ΠΎΠΊ", "quests.stone_age.foods.title": "Π—Π³ΠΎΠ»ΠΎΠ΄Π½Ρ–Π²?", @@ -3392,6 +4069,11 @@ "quests.stone_age.hazards.subtitle": "Π”ΡƒΠΌΠ°Π»ΠΈ, Ρ‰ΠΎ повСрхня Π±ΡƒΠ»Π° складною? Помилково Π΄ΡƒΠΌΠ°Π»ΠΈ.", "quests.stone_age.hazards.desc.1": "ΠžΠΊΡ€Ρ–ΠΌ монстрів, Π½Π°ΠΉΠ±Ρ–Π»ΡŒΡˆΠΈΠΌ Π²ΠΈΠΊΠ»ΠΈΠΊΠΎΠΌ ΠΏΡ€ΠΈ Π²ΠΈΠ΄ΠΎΠ±ΡƒΡ‚ΠΊΡƒ Ρ” ΠΎΠ±Π²Π°Π»ΠΈ. Π―ΠΊΡ‰ΠΎ ΠΏΡ–Π΄ НСоброблСним ΠΊΠ°ΠΌΠ΅Π½Π΅ΠΌ Π°Π±ΠΎ Π±Π»ΠΎΠΊΠΎΠΌ Ρ€ΡƒΠ΄ΠΈ Ρ” повітря, Π²Ρ–Π½ Π²Π²Π°ΠΆΠ°Ρ”Ρ‚ΡŒΡΡ Β«Π½Π΅ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΠ²Π°Π½ΠΈΠΌΒ» Ρ– ΠΌΠ°Ρ” шанс спричинити ΠΎΠ±Π²Π°Π» ΠΊΠΎΠΆΠ½ΠΎΠ³ΠΎ Ρ€Π°Π·Ρƒ, ΠΊΠΎΠ»ΠΈ ΠΏΠΎΡ€ΡƒΡ‡ Π· Π½ΠΈΠΌ Π΄ΠΎΠ±ΡƒΠ²Π°Ρ”Ρ‚ΡŒΡΡ Ρ–Π½ΡˆΠΈΠΉ Π±Π»ΠΎΠΊ. Π‘Ρ‚Π΅Π»Ρ– ΠΏΠ΅Ρ‡Π΅Ρ€ Π²ΠΊΡ€ΠΈΡ‚Ρ– Π·Π°Π³Π°Ρ€Ρ‚ΠΎΠ²Π°Π½ΠΈΠΌ ΠΊΠ°ΠΌΠ΅Π½Π΅ΠΌ, який Π½Π΅ спричиняє ΠΎΠ±Π²Π°Π»Ρ–Π². \nΠ©ΠΎΠ± Π·ΠΌΠ΅Π½ΡˆΠΈΡ‚ΠΈ Ρ€ΠΈΠ·ΠΈΠΊ, Π½Π°ΠΉΠ±Π΅Π·ΠΏΠ΅Ρ‡Π½Ρ–ΡˆΠ΅ β€” Π΄ΠΎΠ±ΡƒΠ²Π°Ρ‚ΠΈ лишС ΠΏΡ–Π΄Π»ΠΎΠ³Ρƒ, Π°Π»Π΅ якщо Π²ΠΈ Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ Π΄ΠΎΠ±ΡƒΠ²Π°Ρ‚ΠΈ Ρ‰ΠΎΡΡŒ Ρ–Π½ΡˆΠ΅, Π²Π°ΠΌ Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ навчитися використовувати ΠΏΡ–Π΄ΠΏΡ–Ρ€ΠΊΠΈ! Π’ΠΎΠ½ΠΈ ΡΡ‚Π²ΠΎΡ€ΡŽΡŽΡ‚ΡŒΡΡ Π· ΠΊΠΎΠ»ΠΎΠ΄ Ρ‚Π° ΠΏΠΈΠ»ΠΊΠΈ.", "quests.stone_age.hazards.desc.2": "Польовий Π΄ΠΎΠ²Ρ–Π΄Π½ΠΈΠΊ ΠΌΠ°Ρ” Π±Ρ–Π»ΡŒΡˆΠ΅ Π΄Π΅Ρ‚Π°Π»Π΅ΠΉ Ρ‚Π° Π΄Ρ–Π°Π³Ρ€Π°ΠΌ ΠΏΡ€ΠΎ Ρ‚Π΅, як самС ΠΏΡ€Π°Ρ†ΡŽΡŽΡ‚ΡŒ ΠΏΡ–Π΄ΠΏΡ–Ρ€ΠΊΠΈ, Π°Π»Π΅ ΠΊΠΎΡ€ΠΎΡ‚ΠΊΠ° вСрсія: Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Ρ€ΠΎΠ·Ρ‚Π°ΡˆΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈ Ρ—Ρ… ось Ρ‚Π°ΠΊ Π½Π° відстані Π² Ρ‡ΠΎΡ‚ΠΈΡ€ΠΈ Π±Π»ΠΎΠΊΠΈ ΠΎΠ΄Π½Π° Π²Ρ–Π΄ ΠΎΠ΄Π½ΠΎΡ—. Π’Ρ–Π»ΡŒΠΊΠΈ Π²Π΅Ρ€Ρ…Π½Ρ– Π²Π΅Ρ€Ρ‚ΠΈΠΊΠ°Π»ΡŒΠ½Ρ– ΠΏΡ–Π΄ΠΏΡ–Ρ€ΠΊΠΈ Ρ„Π°ΠΊΡ‚ΠΈΡ‡Π½ΠΎ ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡŽΡ‚ΡŒ ΠΊΠΎΠ½ΡΡ‚Ρ€ΡƒΠΊΡ†Ρ–ΡŽ, Ρ– Π²ΠΎΠ½ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Π½Π΅Π²Π΅Π»ΠΈΠΊΠΈΠΉ радіус.", + "quests.stone_age.medical_conditions.title": "ΠœΠ΅Π΄ΠΈΡ‡Π½Ρ– Π‘Ρ‚Π°Π½ΠΈ", + "quests.stone_age.medical_conditions.subtitle": "НС Ρ—ΠΆ азбСст", + "quests.stone_age.medical_conditions.desc.1": "Π‘ΡƒΠ΄ΡŒ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½ΠΈΠΉ Ρ–Π· Ρ‚ΠΈΠΌ, Ρ‰ΠΎ ΠΏΡ–Π΄Π½Ρ–ΠΌΠ°Ρ”Ρˆ! НС всі Ρ€ΡƒΠ΄ΠΈ Ρ‡ΠΈ ΠΏΠΈΠ» Π±Π΅Π·ΠΏΠ΅Ρ‡Π½Ρ– для Π΄ΠΎΡ‚ΠΈΠΊΡƒ, Ρ– дСякі ΠΌΠΎΠΆΡƒΡ‚ΡŒ спричинити накопичСння &6ΠœΠ΅Π΄ΠΈΡ‡Π½ΠΎΠ³ΠΎ стану&r. \n\nУсС &cНСбСзпСчнС&r ΠΏΠΎΠ·Π½Π°Ρ‡Π΅Π½ΠΎ Ρƒ ΠΏΡ–Π΄ΠΊΠ°Π·Ρ†Ρ– ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°, Ρ‚ΠΎΠΆ якщо Ρ€Π°ΠΏΡ‚ΠΎΠΌ з’явився Π΄Π΅Π±Π°Ρ„Ρ„ β€” Π½Π΅Π³Π°ΠΉΠ½ΠΎ ΠΏΡ€ΠΈΠ±Π΅Ρ€ΠΈ Ρ†Π΅ΠΉ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ Ρ–Π· інвСнтаря! ΠŸΠΎΠΊΠ»Π°ΡΡ‚ΠΈ ΠΉΠΎΠ³ΠΎ Π² ΠΊΠΎΠ½Ρ‚Π΅ΠΉΠ½Π΅Ρ€, Π½Π°ΠΏΡ€ΠΈΠΊΠ»Π°Π΄ Ρƒ ΠΌΠ°Π»Ρƒ посудину Ρ‡ΠΈ Ρ€ΡŽΠΊΠ·Π°ΠΊ, Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ. \n\nΠ‘Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ Ρ†ΠΈΡ… Π΅Ρ„Π΅ΠΊΡ‚Ρ–Π² поступово Π·Π½ΠΈΠΊΠ°ΡŽΡ‚ΡŒ самі, Π°Π»Π΅ якщо Π΄Π°Ρ‚ΠΈ Ρ—ΠΌ накопичитися, Ρ‚ΠΈ ΠΏΠΎΡ‡Π½Π΅Ρˆ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ Ρ†Ρ–Π»Ρƒ Π½ΠΈΠ·ΠΊΡƒ Π½Π΅ΠΏΡ€ΠΈΡ”ΠΌΠ½ΠΈΡ… наслідків β€” Π°ΠΆ Π΄ΠΎ &cсмСрті&r.", + "quests.stone_age.medical_conditions.desc.2": "Π—Ρ€Π΅ΡˆΡ‚ΠΎΡŽ Ρ‚ΠΎΠ±Ρ– Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈ Π· дСякими Π· Ρ†ΠΈΡ… ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π², Ρ‚ΠΎΠΆ Ρ–ΡΠ½ΡƒΡŽΡ‚ΡŒ способи впоратися Π· Π½ΠΈΠΌΠΈ. \n\nНайкращий спосіб β€” Π²Π·Π°Π³Π°Π»Ρ– ΡƒΠ½ΠΈΠΊΠ°Ρ‚ΠΈ отримання Π±ΡƒΠ΄ΡŒ-яких станів: маска для обличчя Ρ‚Π° Π³ΡƒΠΌΠΎΠ²Ρ– Ρ€ΡƒΠΊΠ°Π²ΠΈΡ‡ΠΊΠΈ Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎ Π·Π°Ρ…ΠΈΡΡ‚ΡΡ‚ΡŒ Π²Ρ–Π΄ Π½Π΅Π±Π΅Π·ΠΏΠ΅ΠΊΠΈ вдихання Ρ‚Π° ΠΊΠΎΠ½Ρ‚Π°ΠΊΡ‚Ρƒ. \n\nΠ”Ρ€ΡƒΠ³ΠΈΠΉ Π·Π° Π΅Ρ„Π΅ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŽ спосіб β€” лікування: ознайомся Π· &aΠŸΡ–Π³ΡƒΠ»ΠΊΠ°ΠΌΠΈ, Π’Π°Π±Π»Π΅Ρ‚ΠΊΠ°ΠΌΠΈ Ρ‚Π° Мазями&r, які ΠΌΠΎΠΆΠ½Π° створити. Π’ΠΎΠ½ΠΈ Π΄ΠΎΠΏΠΎΠΌΠ°Π³Π°ΡŽΡ‚ΡŒ Π²ΠΈΠ»Ρ–ΠΊΡƒΠ²Π°Ρ‚ΠΈ ΠΏΠ΅Π²Π½Ρ– Π΅Ρ„Π΅ΠΊΡ‚ΠΈ (Ρ– Π½Π°Π²Ρ–Ρ‚ΡŒ Π΄Π°ΡŽΡ‚ΡŒ корисні Π±Π°Ρ„ΠΈ!), Ρ…ΠΎΡ‡Π° ΡΠΈΠ»ΡŒΠ½Ρ–ΡˆΡ– засоби ΠΌΠ°ΡŽΡ‚ΡŒ Π±Ρ–Π»ΡŒΡˆ Π½Π΅ΠΏΡ€ΠΈΡ”ΠΌΠ½Ρ– ΠΏΠΎΠ±Ρ–Ρ‡Π½Ρ– Π΄Ρ–Ρ—.", + "quests.stone_age.medical_conditions.task": "Π― власний Π»Ρ–ΠΊΠ°Ρ€", "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 ΡˆΠΌΠ°Ρ‚ΠΊΡ–Π² ΠΌΠ°Π»ΠΎΡ— ΠΌΡ–Π΄Ρ– β€” Ρ†Π΅ нСпростС завдання.", @@ -3401,7 +4083,7 @@ "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.rock_anvil.title": "Кам'яна ΠΊΠΎΠ²Π°Π΄Π»Π°", + "quests.stone_age.rock_anvil.title": "Кам'яна Ковадло", "quests.stone_age.rock_anvil.subtitle": "Π¦Π΅ Π½Π΅ ΠΏΡ€ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρ‚ΡŒΡΡ Π΄ΠΎΠ²Π³ΠΎ", "quests.stone_age.rock_anvil.desc": "Ковадла Ρ” основою всього мСталооброблСння Π½Π° Ρ€Π°Π½Π½Ρ–Ρ… Π΅Ρ‚Π°ΠΏΠ°Ρ… Π³Ρ€ΠΈ. Π©ΠΎΠ± створити ΡΠΏΡ€Π°Π²ΠΆΠ½ΡŽ ΠΌΠ΅Ρ‚Π°Π»Π΅Π²Ρƒ ΠΊΠΎΠ²Π°Π΄Π»Ρƒ, Π²Π°ΠΌ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Π·Π²Π°Ρ€ΠΈΡ‚ΠΈ Π·Π»ΠΈΠ²ΠΊΠΈ, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ ΠΊΠΎΠ²Π°Π΄Π»Ρƒ ΠΏΠΎΠΏΠ΅Ρ€Π΅Π΄Π½ΡŒΠΎΠ³ΠΎ рівня. ΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ ΠΌΡ–Π΄ΡŒ Ρ” ΠΏΠ΅Ρ€ΡˆΠΈΠΌ Ρ€Ρ–Π²Π½Π΅ΠΌ, Π²ΠΈ ΠΏΠΎΠ²ΠΈΠ½Π½Ρ– використовувати ΠΊΠ°ΠΌ'яну ΠΊΠΎΠ²Π°Π΄Π»Ρƒ для Ρ—Ρ… Π·Π²Π°Ρ€ΡŽΠ²Π°Π½Π½Ρ. Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ створити ΠΊΠ°ΠΌ'яну ΠΊΠΎΠ²Π°Π΄Π»Ρƒ, ΠΊΠ»Π°Ρ†Π½ΡƒΠ²ΡˆΠΈ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ– ΠΏΠΎ Π±Π»ΠΎΠΊΡƒ НСоброблСного ΠΌΠ°Π³ΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎΠ³ΠΎ камСню Π·Π° допомогою ΠΌΠΎΠ»ΠΎΡ‚Π°. На Таль, Π·Π²Π°Ρ€ΡŽΠ²Π°Π½Π½Ρ Π·Π»ΠΈΠ²ΠΊΡ–Π² β€” Ρ†Π΅ Ρ”Π΄ΠΈΠ½Π΅, Ρ‰ΠΎ Π²ΠΎΠ½Π° ΠΌΠΎΠΆΠ΅ Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ, Π²Π°ΠΌ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ ΠΌΠ΅Ρ‚Π°Π»Π΅Π²Π° ΠΊΠΎΠ²Π°Π΄Π»Π°, Ρ‰ΠΎΠ± Π½Π°Π΄Π°Π²Π°Ρ‚ΠΈ Ρ—ΠΌ Ρ„ΠΎΡ€ΠΌΡƒ.", "quests.stone_age.quern.title": "Π–ΠΎΡ€Π½Π° Ρ‚Π° Ρ€ΡƒΡ‡Π½ΠΈΠΉ ΠΊΠ°ΠΌΡ–Π½ΡŒ", @@ -3429,13 +4111,15 @@ "quests.tfg.subtitle": "Ласкаво просимо Π΄ΠΎ TerraFirmaGreg!", "quests.tfg.welcome.title": "Ласкаво просимо Π΄ΠΎ TerraFirmaGreg!", "quests.tfg.welcome.subtitle": "Модпак виТивання, яким Π²Ρ–Π½ ΠΌΠ°Π² Π±ΡƒΡ‚ΠΈ", - "quests.tfg.welcome.desc": "Дякуємо, Ρ‰ΠΎ Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Π² TerraFirmaGreg Modern!\n\nΠ£ Ρ†ΡŒΠΎΠΌΡƒ ΠΌΠΎΠ΄ΠΏΠ°ΠΊΡƒ Ρ‚ΠΎΠ±Ρ– Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ взяти ΠΏΡ–Π΄ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŒ Π½Π΅Π·Π°ΠΉΠΌΠ°Π½Ρƒ ΠΏΡ€ΠΈΡ€ΠΎΠ΄Ρƒ Ρ‚Π° ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Ρ—Ρ— Π½Π° Ρ–Π½Π΄ΡƒΡΡ‚Ρ€Ρ–Π°Π»ΡŒΠ½Π΅ Π΄ΠΈΠ²ΠΎ. ΠŸΠΎΡ‡Π½ΠΈ Π·Ρ– скромного збирання ΠΊΠ°ΠΌΡ–Π½Ρ†Ρ–Π², Π° Π·Π°Π²Π΅Ρ€ΡˆΠΈ, ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆΡƒΡŽΡ‡ΠΈ міТзоряним простором!", + "quests.tfg.welcome.desc": "Дякуємо, Ρ‰ΠΎ Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Π»ΠΈ Π³Ρ€Ρƒ Π² TerraFirmaGreg Modern!\n\nΠ£ Ρ†ΡŒΠΎΠΌΡƒ ΠΌΠΎΠ΄ΠΏΠ°Ρ†Ρ– Π²Π°ΠΌ Π½Π°Π»Π΅ΠΆΠΈΡ‚ΡŒ взяти ΠΏΡ–Π΄ ΠΊΠΎΠ½Ρ‚Ρ€ΠΎΠ»ΡŒ Π½Π΅Π·Π°ΠΉΠΌΠ°Π½Ρƒ Π΄ΠΈΠΊΡƒ ΠΏΡ€ΠΈΡ€ΠΎΠ΄Ρƒ Ρ‚Π° ΠΏΠ΅Ρ€Π΅Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ Ρ—Ρ— Π½Π° Ρ–Π½Π΄ΡƒΡΡ‚Ρ€Ρ–Π°Π»ΡŒΠ½Π΅ Π΄ΠΈΠ²ΠΎ. ΠŸΠΎΡ‡Π½Ρ–Ρ‚ΡŒ Π·Ρ– скромного ΠΏΠΎΡ‡Π°Ρ‚ΠΊΡƒ β€” ΠΏΡ–Π΄Π±ΠΈΡ€Π°ΡŽΡ‡ΠΈ ΠΊΠ°ΠΌΡ–Π½Ρ†Ρ–, Π° Π·Π°Π²Π΅Ρ€ΡˆΠΈΡ‚Π΅ β€” ΠΌΠ°Π½Π΄Ρ€ΡƒΡŽΡ‡ΠΈ міТзоряним простором!", "quests.tfg.create_team.title": "Π―ΠΊ створити ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ?", "quests.tfg.create_team.subtitle": "Π“Ρ€Π°Ρ”Ρˆ Π· друзями?", "quests.tfg.create_team.desc": "Π’ΠΈ моТСш створити ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ, Ρ‰ΠΎΠ± Π²ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈ квСсти Ρ€Π°Π·ΠΎΠΌ. Для Ρ†ΡŒΠΎΠ³ΠΎ Π²Ρ–Π΄ΠΊΡ€ΠΈΠΉ Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€, Π° ΠΏΠΎΡ‚Ρ–ΠΌ Ρƒ Π²Π΅Ρ€Ρ…Π½ΡŒΠΎΠΌΡƒ Π»Ρ–Π²ΠΎΠΌΡƒ ΠΊΡƒΡ‚Ρ– Π²ΠΈΠ±Π΅Ρ€ΠΈ ΠΊΠ½ΠΎΠΏΠΊΡƒ Ρ–Π· зобраТСнням Ρ‚Ρ€ΡŒΠΎΡ… ΠΊΠΎΠ»ΡŒΠΎΡ€ΠΎΠ²ΠΈΡ… людСй. ΠŸΡ–ΡΠ»Ρ Ρ†ΡŒΠΎΠ³ΠΎ Π²Ρ–Π΄ΠΊΡ€ΠΈΡ”Ρ‚ΡŒΡΡ інтСрфСйс, Ρƒ якому ΠΌΠΎΠΆΠ½Π° створити ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ. Натисни ΠΊΠ½ΠΎΠΏΠΊΡƒ Β§aΠ‘Ρ‚Π²ΠΎΡ€ΠΈΡ‚ΠΈ ΠΊΠΎΠΌΠ°Π½Π΄ΡƒΒ§r, Π·Π°Π΄Π°ΠΉ Ρ—ΠΉ Π½Π°Π·Π²Ρƒ Ρ‚Π°, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Ρ–Π½ΡˆΡ– ΠΏΠ°Ρ€Π°ΠΌΠ΅Ρ‚Ρ€ΠΈ. ΠŸΡ–ΡΠ»Ρ ΡƒΡΠΏΡ–ΡˆΠ½ΠΎΠ³ΠΎ створСння ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ Ρ‚ΠΈ змоТСш запросити Ρ–Π½ΡˆΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π² Π·Π° допомогою ΠΊΠ½ΠΎΠΏΠΊΠΈ плюс Ρƒ Π·Π΅Π»Π΅Π½ΠΎΠΌΡƒ ΠΊΠΎΠ»Ρ– Ρƒ Π²Π΅Ρ€Ρ…Π½ΡŒΠΎΠΌΡƒ ΠΏΡ€Π°Π²ΠΎΠΌΡƒ ΠΊΡƒΡ‚Ρ–. Π— Ρ†ΡŒΠΎΠ³ΠΎ ΠΌΠΎΠΌΠ΅Π½Ρ‚Ρƒ Ρ‚Π²ΠΎΡ— квСсти Π±ΡƒΠ΄ΡƒΡ‚ΡŒ синхронізовані, Ρ– Π±ΡƒΠ΄ΡŒ-який Ρ‡Π»Π΅Π½ ΠΊΠΎΠΌΠ°Π½Π΄ΠΈ Π·ΠΌΠΎΠΆΠ΅ Ρ—Ρ… Π²ΠΈΠΊΠΎΠ½ΡƒΠ²Π°Ρ‚ΠΈ. Успіхів!", "quests.tfg.capture_territory.title": "Π―ΠΊ Π·Π°Ρ…ΠΎΠΏΠΈΡ‚ΠΈ Ρ‚Π΅Ρ€ΠΈΡ‚ΠΎΡ€Ρ–ΡŽ?", "quests.tfg.capture_territory.subtitle": "А як Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ Ρ‡Π°Π½ΠΊΠΈ Ρƒ своїй Ρ‚Π΅Ρ€ΠΈΡ‚ΠΎΡ€Ρ–Ρ—?", - "quests.tfg.capture_territory.desc": "Π―ΠΊΡ‰ΠΎ Ρ‚ΠΈ Π³Ρ€Π°Ρ”Ρˆ Π½Π° сСрвСрі, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Π·Π°Ρ…ΠΎΡ‡Π΅Ρˆ ΠΏΠΎΠ·Π½Π°Ρ‡ΠΈΡ‚ΠΈ свою Ρ‚Π΅Ρ€ΠΈΡ‚ΠΎΡ€Ρ–ΡŽ, Ρ‰ΠΎΠ± Ρ–Π½ΡˆΡ– Π³Ρ€Π°Π²Ρ†Ρ– Π½Π΅ ΠΌΠΎΠ³Π»ΠΈ втручатися. Використай ΠΊΠ»Π°Π²Ρ–ΡˆΡƒ відкриття заявок (Π·Π° замовчуванням \"Ctrl+M\"), Ρ‰ΠΎΠ± Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Π²Ρ–ΠΊΠ½ΠΎ, ΠΏΠΎΡ‚Ρ–ΠΌ ΠΊΠ»Π°Ρ†Π½ΠΈ Π»Ρ–Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ–, Ρ‰ΠΎΠ± ΠΏΠΎΠ·Π½Π°Ρ‡ΠΈΡ‚ΠΈ Ρ‡Π°Π½ΠΊ, Ρ– ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою, Ρ‰ΠΎΠ± зняти ΠΏΠΎΠ·Π½Π°Ρ‡ΠΊΡƒ. Π„ обмСТСння, Ρ‚ΠΎΠΌΡƒ Ρ‚ΠΈ Π½Π΅ моТСш ΠΏΠΎΠ·Π½Π°Ρ‡ΠΈΡ‚ΠΈ всС. Π’ΠΈ моТСш Shift+Π›ΠΊΠΌ Π½Π° Ρ‡Π°Π½ΠΊΡƒ, Ρ‰ΠΎΠ± примусово Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ ΠΉΠΎΠ³ΠΎ (\"chunk load\"), Ρ– Shift+ΠŸΠΊΠΌΠΊΠΌΡ‰ΠΎΠ± скасувати примусовС завантаТСння. ΠŸΠΎΠ·Π½Π°Ρ‡Π΅Π½Ρ– Ρ‡Π°Π½ΠΊΠΈ Π²ΠΊΠ»ΡŽΡ‡Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ всю Ρ‚Π²ΠΎΡŽ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ, якщо Ρ‚ΠΈ Ρ—Ρ— Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρˆ.", + "quests.tfg.capture_territory.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ Π³Ρ€Π°Ρ”Ρ‚Π΅ Π½Π° сСрвСрі, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Π²Π°ΠΌ Π·Π°Ρ…ΠΎΡ‡Π΅Ρ‚ΡŒΡΡ Π·Π°Ρ…ΠΎΠΏΠΈΡ‚ΠΈ свою Ρ‚Π΅Ρ€ΠΈΡ‚ΠΎΡ€Ρ–ΡŽ, Ρ‰ΠΎΠ± Ρ–Π½ΡˆΡ– Π³Ρ€Π°Π²Ρ†Ρ– Π½Π΅ Π·Π°Π²Π°ΠΆΠ°Π»ΠΈ. ΠΠ°Ρ‚ΠΈΡΠ½Ρ–Ρ‚ΡŒ ΠΊΠ»Π°Π²Ρ–ΡˆΡƒ відкриття мСню привласнСння (Ρ‚ΠΈΠΏΠΎΠ²ΠΎ \"Ctrl+M\"), Ρ‰ΠΎΠ± Π²Ρ–Π΄ΠΊΡ€ΠΈΡ‚ΠΈ Π²Ρ–ΠΊΠ½ΠΎ, ΠΏΠΎΡ‚Ρ–ΠΌ ΠΊΠ»Π°Ρ†Π½Ρ–Ρ‚ΡŒ Π»Ρ–Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ–, Ρ‰ΠΎΠ± Π·Π°Ρ…ΠΎΠΏΠΈΡ‚ΠΈ Ρ‡Π°Π½ΠΊ, Ρ– ΠΏΡ€Π°Π²ΠΎΡŽ β€” Ρ‰ΠΎΠ± скасувати захоплСння.\n\nІснує обмСТСння Π½Π° ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ Ρ‡Π°Π½ΠΊΡ–Π², які ΠΌΠΎΠΆΠ½Π° Π·Π°Ρ…ΠΎΠΏΠΈΡ‚ΠΈ, Ρ‚ΠΎΠΆ Π²ΠΈ Π½Π΅ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π°Ρ…ΠΎΠΏΠΈΡ‚ΠΈ всС. Π’ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ натиснути Shift + Π›ΠΊΠΌ ΠΏΠΎ Ρ‡Π°Π½ΠΊΡƒ, Ρ‰ΠΎΠ± примусово ΠΉΠΎΠ³ΠΎ Π·Π°Π²Π°Π½Ρ‚Π°ΠΆΠΈΡ‚ΠΈ (Ρ‚Π°ΠΊ Π·Π²Π°Π½Π΅ \"chunk load\"), Π°Π±ΠΎ Shift + ПКМ Ρ‰ΠΎΠ± скасувати Ρ†Π΅. ЗахоплСння Ρ‡Π°Π½ΠΊΡ–Π² ΠΏΠΎΡˆΠΈΡ€ΡŽΡ”Ρ‚ΡŒΡΡ Π½Π° всю Π²Π°ΡˆΡƒ ΠΊΠΎΠΌΠ°Π½Π΄Ρƒ, якщо Π²ΠΈ Π² ΠΎΠ΄Π½Ρ–ΠΉ.", + "quests.tfg.chunk_limit.title": "Π―ΠΊ Π·Π±Ρ–Π»ΡŒΡˆΠΈΡ‚ΠΈ Π»Ρ–ΠΌΡ–Ρ‚ завантаТСння Ρ‡Π°Π½ΠΊΡ–Π²?", + "quests.tfg.chunk_limit.desc": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ Π³Ρ€Π°Ρ”Ρ‚Π΅ Π½Π° сСрвСрі, Π·Π° замовчуванням Ρƒ вас Ρ” лишС Π½Π΅Π²Π΅Π»ΠΈΠΊΠ° ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ доступних Ρ‡Π°Π½ΠΊΡ–Π² Ρ–Π· примусовим завантаТСнням.\n\nВласники сСрвСрів ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π·ΠΌΡ–Π½ΠΈΡ‚ΠΈ Ρ†Π΅ (ΠΏΠ΅Ρ€Π΅Π²Ρ–Ρ€Ρ‚Π΅ Ρ„Π°ΠΉΠ» README.txt!), Π°Π»Π΅ якщо Ρƒ вас Ρ” ΠΏΡ€Π°Π²Π° ΠΎΠΏΠ΅Ρ€Π°Ρ‚ΠΎΡ€Π° (Π°Π±ΠΎ Π²Π²Ρ–ΠΌΠΊΠ½Π΅Π½Ρ– Ρ‡Ρ–Ρ‚ΠΈ), Π²ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ скористатися командою \n&a/ftbchunks admin extra_force_load_chunks @p set X&r, \nΠ΄Π΅ **X** β€” Ρ†Π΅ Π½ΠΎΠ²ΠΈΠΉ Π»Ρ–ΠΌΡ–Ρ‚.", "quests.tfg.field_guide.title": "Π’Π°ΠΆΠ»ΠΈΠ²Π° інформація ΠΏΡ€ΠΎ квСсти!", "quests.tfg.field_guide.subtitle": "ΠœΠ΅Π½Ρ– ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Ρ‡ΠΈΡ‚Π°Ρ‚ΠΈ Π±Ρ–Π»ΡŒΡˆΠ΅?", "quests.tfg.field_guide.desc": "ΠšΠ²Π΅ΡΡ‚ΠΈ Ρ‰Π΅ Π² Ρ€ΠΎΠ·Ρ€ΠΎΠ±Ρ†Ρ–, Ρ– ΠΌΠΈ постійно ΠΏΡ€Π°Ρ†ΡŽΡ”ΠΌΠΎ Π½Π°Π΄ Ρ—Ρ… покращСнням! Π‘Π°Π³Π°Ρ‚ΠΎ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— ΠΏΡ€ΠΎ ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½Ρ– ΠΌΠ΅Ρ…Π°Π½Ρ–ΠΊΠΈ Ρ‚Π°ΠΊΠΎΠΆ Ρ” Ρƒ Ρ‚Π²ΠΎΡ”ΠΌΡƒ \"ΠŸΠΎΠ»ΡŒΠΎΠ²ΠΎΠΌΡƒ Π΄ΠΎΠ²Ρ–Π΄Π½ΠΈΠΊΡƒ\", який ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ Ρ‡Π΅Ρ€Π΅Π· Π²ΠΊΠ»Π°Π΄ΠΊΡƒ Книги Π² Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€Ρ–.\n\nΠŸΠ°ΠΌβ€™ΡΡ‚Π°ΠΉ, Ρ‰ΠΎ Ρ– JEI, Ρ– \"Польовий Π΄ΠΎΠ²Ρ–Π΄Π½ΠΈΠΊ\" β€” Ρ‚Π²ΠΎΡ— союзники, Π°Π΄ΠΆΠ΅ Π½Π΅ всС Π±ΡƒΠ΄Π΅ пояснСно Ρ‡Π΅Ρ€Π΅Π· квСсти.", @@ -3489,7 +4173,7 @@ "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", - "quests.tfg_tips.aluminium_backpack.title": "Рюкзак Π· ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²ΠΎΡ— Π‘Ρ‚Π°Π»Ρ–", + "quests.tfg_tips.aluminium_backpack.title": "Рюкзак Π· ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ", "quests.tfg_tips.aluminium_backpack.subtitle": "Π¦Π΅ ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΠΉ Ρ‡ΠΈ ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡƒΠΌ?", "quests.tfg_tips.aluminium_backpack.desc": "&bРюкзак Π· ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ&r β€” Ρ†Π΅ Ρ‚Π²ΠΎΡ” Π΄Ρ€ΡƒΠ³Π΅ ΠΏΠΎΠ²Π½ΠΎΡ†Ρ–Π½Π½Π΅ ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½Π½ΡΡ–Π½Π²Π΅Π½Ρ‚Π°Ρ€ΡŽΡ Ρ€ΡŽΠΊΠ·Π°ΠΊΠ°. \nΠ’Ρ–Π½ ΠΌΠ°Ρ” Π·Π°Π³Π°Π»ΡŒΠ½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ слотів &c81&r Ρ‚Π° ΠΌΠΎΠΆΠ΅ Π²ΠΌΡ–Ρ‰ΡƒΠ²Π°Ρ‚ΠΈ &aΡ‚Ρ€ΠΈ покращСння.&r", "quests.tfg_tips.titanium_backpack.title": "Рюкзак Π· Π’ΠΈΡ‚Π°Π½Ρƒ", @@ -3513,15 +4197,52 @@ "quests.tfg_tips.gt.title": "GregTech", "quests.tfg_tips.gt.subtitle": "Одна Ρ‚Ρ€Π΅Ρ‚ΠΈΠ½Π° Π½Π°Π·Π²ΠΈ ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠ°, Π·Ρ€Π΅ΡˆΡ‚ΠΎΡŽ.", "quests.tfg_tips.gt.desc": "&3GregTech&r ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Π΄ΠΎΡΠΈΡ‚ΡŒ складним, Π°Π»Π΅ ця Π³Ρ–Π»ΠΊΠ° квСстів ΠΌΠ°Ρ” Π΄ΠΎΠΏΠΎΠΌΠΎΠ³Ρ‚ΠΈ Ρ‚ΠΎΠ±Ρ– розібратися.", + "quests.tfg_tips.gt_power_tools.title": "Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎ-інструмСнти", + "quests.tfg_tips.gt_power_tools.subtitle": "Π§ΠΎΠ»ΠΎΠ²Ρ–ΠΊΠΈ Ρ…ΠΎΡ‡ΡƒΡ‚ΡŒ лишС ΠΎΠ΄Π½ΠΎΠ³ΠΎ, Ρ– Ρ†Π΅ ΠΊ&лятС& ΠΎΠ³ΠΈΠ΄Π½ΠΎ", + "quests.tfg_tips.gt_power_tools.desc.1": "Π―ΠΊ Ρ– Π±ΡƒΠ΄ΡŒ-який Ρ…ΠΎΡ€ΠΎΡˆΠΈΠΉ Ρ‚Π΅Ρ…Π½Ρ–Ρ‡Π½ΠΈΠΉ ΠΌΠΎΠ΄, &5GregTech&r ΠΏΡ€ΠΎΠΏΠΎΠ½ΡƒΡ” ΡˆΠΈΡ€ΠΎΠΊΠΈΠΉ Π²ΠΈΠ±Ρ–Ρ€ &6інструмСнтів&r, які ΠΌΠΎΠΆΠ½Π° використовувати. \nΠ©ΠΎΠ± Π²ΠΎΠ½ΠΈ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Π»ΠΈ, Ρ—Ρ… ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ &aзарядТати Π΅Π½Π΅Ρ€Π³Ρ–Ρ”ΡŽ&r β€” Ρ– Ρ” ΠΊΡ–Π»ΡŒΠΊΠ° способів Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ†Π΅: покласти інструмСнт Ρƒ &6Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½ΠΈΠΉ Π±ΡƒΡ„Π΅Ρ€&r, Ρƒ &dΠ΅Π½Π΅Ρ€Π³Π΅Ρ‚ΠΈΡ‡Π½ΠΈΠΉ слот&r машини Π°Π±ΠΎ, Ρ‰Π΅ ΠΊΡ€Π°Ρ‰Π΅, скористатися &eΠ’ΡƒΡ€Π±ΠΎ-зарядником&r. \n\nΠŸΠ°ΠΌβ€™ΡΡ‚Π°ΠΉ: зарядТати ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ ΠΌΠΎΠΆΠ½Π° лишС Π²Ρ–Π΄ Π΄ΠΆΠ΅Ρ€Π΅Π»Π° ТивлСння &7Ρ‚ΠΎΠ³ΠΎ ΠΆ&r Π°Π±ΠΎ &aΠ²ΠΈΡ‰ΠΎΠ³ΠΎ рівня&r. &cΠ”ΠΆΠ΅Ρ€Π΅Π»Π° Π½ΠΈΠΆΡ‡ΠΎΠ³ΠΎ рівня&r Π½Π΅ ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ Π· інструмСнтами Π²ΠΈΡ‰ΠΎΠ³ΠΎ рівня β€” Π°Π»Π΅ Π½Π΅ Ρ…Π²ΠΈΠ»ΡŽΠΉΡΡ, &cΠ½Ρ–Ρ‡ΠΎΠ³ΠΎ Π½Π΅ ΠΏΠΎΠ²ΠΈΠ½Π½ΠΎ Π²ΠΈΠ±ΡƒΡ…Π½ΡƒΡ‚ΠΈ&r. НапСвно.", + "quests.tfg_tips.gt_power_tools.desc.2": "Π‘Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ &5інструмСнтів GregTech&r ΡΡ‚Π²ΠΎΡ€ΡŽΡŽΡ‚ΡŒΡΡ Π· &6Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ інструмСнта&r. Π‘ΠΏΡ€ΠΎΠ±ΡƒΠΉ використовувати &aEMI&r, Ρ‰ΠΎΠ± дослідити, Ρ‰ΠΎ ΠΌΠΎΠΆΠ½Π° Π· Π½ΠΈΠΌΠΈ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ β€” просто пам’ятай Π΄Π²Ρ– Π²Π°ΠΆΠ»ΠΈΠ²Ρ– Ρ€Π΅Ρ‡Ρ–: \n\n- Π§ΠΈΠΌ &eΠ²ΠΈΡ‰ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ інструмСнта&r, Ρ‚ΠΈΠΌ &cΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡˆΠΈΠΌ&r Π±ΡƒΠ΄Π΅ інструмСнт Ρ– Ρ‚ΠΈΠΌ &6Π±Ρ–Π»ΡŒΡˆΠΈΠΉ акумулятор&r Π²Ρ–Π½ використовуватимС. \n- НС ΠΊΠΎΠΆΠ΅Π½ інструмСнт ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” ΠΊΠΎΠΆΠ΅Π½ Ρ€Ρ–Π²Π΅Π½ΡŒ Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ. Наприклад, &6Π±Π΅Π½Π·ΠΎΠΏΠΈΠ»Π°&r ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ створСна лишС Π· &7LV головкою інструмСнта&r.", "quests.tfg_tips.nano_saber.title": "Нано-шабля", "quests.tfg_tips.nano_saber.subtitle": "26 ΠΎΠ΄ΠΈΠ½ΠΈΡ†ΡŒ шкоди ΠΏΡ€ΠΈ Π°ΠΊΡ‚ΠΈΠ²Π°Ρ†Ρ–Ρ—!", - "quests.tfg_tips.nano_saber.desc": "&6Нано-шабля&r β€” Ρ†Π΅ ΠΏΠΎΡ‚ΡƒΠΆΠ½Π° зброя, яку Ρ‚ΠΈ змоТСш Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΠ²Π°Ρ‚ΠΈ, ΠΊΠΎΠ»ΠΈ досягнСш &5EV&r. ΠŸΡ€ΠΎΡΡ‚ΠΎ використовуй &dShift + ΠŸΡ€Π°Π²ΠΈΠΉ ΠΊΠ»Ρ–ΠΊ&r, Ρ‰ΠΎΠ± Π°ΠΊΡ‚ΠΈΠ²ΡƒΠ²Π°Ρ‚ΠΈ &cbzzzzz Ρ€Π΅ΠΆΠΈΠΌ&r.", - "quests.tfg_tips.gt_tools.title": "ІнструмСнти GregTech", - "quests.tfg_tips.gt_tools.subtitle": "", - "quests.tfg_tips.gt_tools.desc": "Π‘Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ &5інструмСнтів GregTech&r ΡΡ‚Π²ΠΎΡ€ΡŽΡŽΡ‚ΡŒΡΡ Π· &6Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ інструмСнта&r. Π‘ΠΏΡ€ΠΎΠ±ΡƒΠΉ використовувати &aEMI&r, Ρ‰ΠΎΠ± дослідити, Ρ‰ΠΎ ΠΌΠΎΠΆΠ½Π° Π· Π½ΠΈΠΌΠΈ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ β€” просто пам’ятай Π΄Π²Ρ– Π²Π°ΠΆΠ»ΠΈΠ²Ρ– Ρ€Π΅Ρ‡Ρ–: \n\n- Π§ΠΈΠΌ &eΠ²ΠΈΡ‰ΠΈΠΉ Ρ€Ρ–Π²Π΅Π½ΡŒ Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ інструмСнта&r, Ρ‚ΠΈΠΌ &cΠΏΠΎΡ‚ΡƒΠΆΠ½Ρ–ΡˆΠΈΠΌ&r Π±ΡƒΠ΄Π΅ інструмСнт Ρ– Ρ‚ΠΈΠΌ &6Π±Ρ–Π»ΡŒΡˆΠΈΠΉ акумулятор&r Π²Ρ–Π½ використовуватимС. \n- НС ΠΊΠΎΠΆΠ΅Π½ інструмСнт ΠΏΡ–Π΄Ρ‚Ρ€ΠΈΠΌΡƒΡ” ΠΊΠΎΠΆΠ΅Π½ Ρ€Ρ–Π²Π΅Π½ΡŒ Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ. Наприклад, &6Π±Π΅Π½Π·ΠΎΠΏΠΈΠ»Π°&r ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ створСна лишС Π· &7LV головкою інструмСнта&r.", + "quests.tfg_tips.nano_saber.desc": "&6Нано-шабля&r β€” Ρ†Π΅ ΠΏΠΎΡ‚ΡƒΠΆΠ½Π° зброя, яку Π²ΠΈ Π·ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Ρ€ΠΎΠ·Π±Π»ΠΎΠΊΡƒΠ²Π°Ρ‚ΠΈ, ΠΊΠΎΠ»ΠΈ досягнСтС ΠΏΡ–Π·Π½ΡŒΠΎΠ³ΠΎ рівня &5EV&r. ΠŸΡ€ΠΎΡΡ‚ΠΎ використайтС &dShift + Пкм&r, Ρ‰ΠΎΠ± Π°ΠΊΡ‚ΠΈΠ²ΡƒΠ²Π°Ρ‚ΠΈ &cΡ€Π΅ΠΆΠΈΠΌ Β«Π±Π·Π·Π·Π·Π·Β»&r.", "quests.tfg_tips.magnets.title": "ΠœΠ°Π³Π½Ρ–Ρ‚ΠΈ для ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²", - "quests.tfg_tips.magnets.subtitle": "", + "quests.tfg_tips.magnets.subtitle": "2010 ΠΏΠΎΠ΄Π·Π²ΠΎΠ½ΠΈΠ² β€” Π²Ρ–Π½ Ρ…ΠΎΡ‡Π΅ Π½Π°Π·Π°Π΄ свій Π΄ΠΆΠ°Π³Π³Π°Π»ΠΎ-ΠΌΠ΅ΠΌ", "quests.tfg_tips.magnets.desc": "&6ΠœΠ°Π³Π½Ρ–Ρ‚ для ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²&r β€” Ρ†Π΅ самС Ρ‚Π΅, Ρ‰ΠΎ Ρ‚ΠΈ ΠΎΡ‡Ρ–ΠΊΡƒΡ”Ρˆ β€” ΠΌΠ°Π³Π½Ρ–Ρ‚, який притягує &6ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ&r прямо Π΄ΠΎ Ρ‚Π΅Π±Π΅. &aΠ”ΡƒΠΆΠ΅ корисно&r. Π©ΠΎ Ρ‰Π΅ ΠΌΠΎΠΆΠ½Π° Π±Π°ΠΆΠ°Ρ‚ΠΈ?", + "quests.tfg_tips.long_distance_items.title": "Π”Π°Π»Π΅ΠΊΠΎΠ±Ρ–ΠΉΠ½Ρ– ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ", + "quests.tfg_tips.long_distance_items.subtitle": "Π¦Ρ–ΠΊΠ°Π²ΠΎ, як пСрСсувати Ρ†Ρ– Ρ€ΡƒΠ΄ΠΈ?", + "quests.tfg_tips.long_distance_items.desc": "&3Π”Π°Π»Π΅ΠΊΠΎΠ±Ρ–ΠΉΠ½Ρ– ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ&r ΠΌΠΎΠΆΠ½Π° використовувати для транспортування ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Π½Π° Π²Π΅Π»ΠΈΠΊΡ– відстані. Розмісти ΠΎΠ΄ΠΈΠ½ ΠΊΡ–Π½Ρ†Π΅Π²ΠΈΠΉ Π²ΡƒΠ·ΠΎΠ» Π½Π° ΠΊΠΎΠΆΠ½ΠΎΠΌΡƒ ΠΊΡ–Π½Ρ†Ρ– Ρ‚Π° з’єднай Ρ—Ρ… Π±Π»ΠΎΠΊΠ°ΠΌΠΈ Ρ‚Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄Ρƒ. \n\nΠ¦Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ ΠΌΠΈΡ‚Ρ‚Ρ”Π²ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ΡŒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Π· Π±ΠΎΠΊΡƒ ввСдСння Π½Π° Π±Ρ–ΠΊ вивСдСння. \n\nΠ’ΠΎΠ½ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠ°ΡŽΡ‚ΡŒ ΠΌΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Ρƒ Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ ΠΌΡ–ΠΆ ΠΊΡ–Π½Ρ†Π΅Π²ΠΈΠΌΠΈ Π²ΡƒΠ·Π»Π°ΠΌΠΈ, Ρ‚ΠΎΠΆ Ρ—Ρ… Π½Π΅ ΠΌΠΎΠΆΠ½Π° застосовувати для короткодистанційних ΠΎΠΏΠ΅Ρ€Π°Ρ†Ρ–ΠΉ.", + "quests.tfg_tips.long_distance_fluids.title": "Π”Π°Π»Π΅ΠΊΠΎΠ±Ρ–ΠΉΠ½Ρ– Ρ€Ρ–Π΄ΠΈΠ½Π½Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ", + "quests.tfg_tips.long_distance_fluids.subtitle": "Π¦Ρ–ΠΊΠ°Π²ΠΎ, як пСрСсувати Ρ‚Ρƒ Π½Π°Ρ„Ρ‚Ρƒ?", + "quests.tfg_tips.long_distance_fluids.desc": "&3Π”Π°Π»Π΅ΠΊΠΎΠ±Ρ–ΠΉΠ½Ρ– Ρ€Ρ–Π΄ΠΈΠ½Π½Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ&r ΠΌΠΎΠΆΠ½Π° використовувати для пСрСсилання Ρ€Ρ–Π΄ΠΈΠ½ Π½Π° Π²Π΅Π»ΠΈΠΊΡ– відстані. Розмісти ΠΎΠ΄ΠΈΠ½ ΠΊΡ–Π½Ρ†Π΅Π²ΠΈΠΉ Π²ΡƒΠ·ΠΎΠ» Π½Π° ΠΊΠΎΠΆΠ½ΠΎΠΌΡƒ ΠΊΡ–Π½Ρ†Ρ– Ρ‚Π° з’єднай Ρ—Ρ… Π±Π»ΠΎΠΊΠ°ΠΌΠΈ Ρ‚Ρ€ΡƒΠ±ΠΎΠΏΡ€ΠΎΠ²ΠΎΠ΄Ρƒ. \n\nΠ¦Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ ΠΌΠΈΡ‚Ρ‚Ρ”Π²ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π°ΡŽΡ‚ΡŒ Ρ€Ρ–Π΄ΠΈΠ½Ρƒ Π· Π±ΠΎΠΊΡƒ ввСдСння Π½Π° Π±Ρ–ΠΊ вивСдСння. \n\nΠ’ΠΎΠ½ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠ°ΡŽΡ‚ΡŒ ΠΌΡ–Π½Ρ–ΠΌΠ°Π»ΡŒΠ½Ρƒ Π²Ρ–Π΄ΡΡ‚Π°Π½ΡŒ ΠΌΡ–ΠΆ ΠΊΡ–Π½Ρ†Π΅Π²ΠΈΠΌΠΈ Π²ΡƒΠ·Π»Π°ΠΌΠΈ, Ρ‚ΠΎΠΆ Ρ—Ρ… Π½Π΅ ΠΌΠΎΠΆΠ½Π° застосовувати для короткодистанційних ΠΎΠΏΠ΅Ρ€Π°Ρ†Ρ–ΠΉ. \n\nΠ¦Ρ– Ρ‚Ρ€ΡƒΠ±ΠΈ ΠΌΠ°ΡŽΡ‚ΡŒ Ρ€Π΅ΠΏΡƒΡ‚Π°Ρ†Ρ–ΡŽ &4Π±Π°Π³ΠΎΠ²Π°Π½ΠΈΡ…&r ΠΏΡ€ΠΈ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ–. Π―ΠΊΡ‰ΠΎ Π²ΠΎΠ½ΠΈ ΡΠΏΠ΅Ρ€ΡˆΡƒ Π½Π΅ ΠΏΡ€Π°Ρ†ΡŽΡŽΡ‚ΡŒ, спробуй ΠΏΠΎΠ²Π΅Ρ€Π½ΡƒΡ‚ΠΈ ΠΊΡ–Π½Ρ†Π΅Π²Ρ– Π²ΡƒΠ·Π»ΠΈ Π·Π° допомогою &eΠ“Π°ΠΉΠΊΠΎΠ²ΠΎΠ³ΠΎ ΠΊΠ»ΡŽΡ‡Π°&r.", + "quests.tfg_tips.crates.title": "Π‘Ρ…ΠΎΠ²ΠΈΡ‰Π΅ GregTech", + "quests.tfg_tips.crates.subtitle": "Ранньо-Ρ–Π³Ρ€ΠΎΠ²Π΅ буфСрування", + "quests.tfg_tips.crates.desc": "Π’Π΅ΠΎΡ€Π΅Ρ‚ΠΈΡ‡Π½ΠΎ, Π―Ρ‰ΠΈΠΊΠΈ β€” Ρ†Π΅ прямС покращСння Π‘ΠΊΡ€ΠΈΠ½ΡŒ. Один Π±Π»ΠΎΠΊ простору, Ρ‰ΠΎ Π²ΠΌΡ–Ρ‰ΡƒΡ” Π±Ρ–Π»ΡŒΡˆΠ΅ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² β€” Ρ‡ΠΎΠ³ΠΎ Ρ‰Π΅ ΠΌΠΎΠΆΠ½Π° Π±Π°ΠΆΠ°Ρ‚ΠΈ? \n\nΠ’ΠΎΠ½ΠΈ Π΄ΠΎΡ€ΠΎΠΆΡ‡Ρ– Π·Π° Π·Π²ΠΈΡ‡Π°ΠΉΠ½Ρ– Π‘ΠΊΡ€ΠΈΠ½Ρ– ΠΉ Π½Π΅ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ ΠΏΡ€ΠΈΡ”Π΄Π½Π°Π½Ρ– Π΄ΠΎ ΠΌΠ΅Ρ…Π°Π½Ρ–Π·ΠΌΡ–Π² Create, Π°Π»Π΅ Π·Π΄Π°Ρ‚Π½Ρ– Π·Π±Π΅Ρ€Ρ–Π³Π°Ρ‚ΠΈ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΈ Π±ΡƒΠ΄ΡŒ-якого Ρ€ΠΎΠ·ΠΌΡ–Ρ€Ρƒ Ρ‚Π° ΠΌΠΎΠΆΡƒΡ‚ΡŒ &6ΠΏΡ€ΠΈΠΉΠΌΠ°Ρ‚ΠΈ Π½Π°ΠΊΠ»Π°Π΄ΠΊΠΈ&r, Ρ‰ΠΎ Ρ€ΠΎΠ±ΠΈΡ‚ΡŒ Ρ—Ρ… Ρ–Π΄Π΅Π°Π»ΡŒΠ½ΠΈΠΌΠΈ ΠΊΠ°Π½Π΄ΠΈΠ΄Π°Ρ‚Π°ΠΌΠΈ для Π±ΡƒΡ„Π΅Ρ€Ρ–Π² Π² Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†Ρ–Ρ—.", + "quests.tfg_tips.tape.title": "Π‘ΠΊΠΎΡ‚Ρ‡ для Π―Ρ‰ΠΈΠΊΡ–Π²", + "quests.tfg_tips.tape.subtitle": "ΠŸΠ΅Ρ€Π΅ΡΡƒΠ²Π°Π½Π½Ρ Ρ€Π΅Ρ‡Π΅ΠΉ", + "quests.tfg_tips.tape.desc": "Π’ΠΈ моТСш ΠΊΠ»Π°Ρ†Π½ΡƒΡ‚ΠΈ ПКМ ΠΏΠΎ Π―Ρ‰ΠΈΠΊΡƒ Π·Ρ– Π‘ΠΊΠΎΡ‚Ρ‡Π΅ΠΌ, Ρ– Ρ‚ΠΎΠ΄Ρ– Π²Ρ–Π½ Π·Π±Π΅Ρ€Π΅ΠΆΠ΅ свій вміст після руйнування, Ρ‰ΠΎ Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΠΎΠ»Π΅Π³ΡˆΡƒΡ” ΠΉΠΎΠ³ΠΎ пСрСміщСння. Однак Ρ†Π΅ ΠΏΡ€Π°Ρ†ΡŽΡ” лишС ΠΎΠ΄ΠΈΠ½ Ρ€Π°Π· Π½Π° ΠΊΠΎΠΆΠ½Ρƒ стрічку. \n\nΠ”ΠΎΠ±Ρ€Π΅, Ρ‰ΠΎ Π²Ρ–Π½ дСшСвий!", + "quests.tfg_tips.terminal.subtitle": "Автоматичний Π·Π±ΠΈΡ€Π°Ρ‡ Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΠΎΠ²ΠΈΡ… конструкцій", + "quests.tfg_tips.terminal.desc": "&bΠ’Π΅Ρ€ΠΌΡ–Π½Π°Π»&r ΠΌΠ°Ρ” ΠΎΠ΄Π½Ρƒ Π³ΠΎΠ»ΠΎΠ²Π½Ρƒ ΠΌΠ΅Ρ‚Ρƒ, Ρ– &aΠΌΠΈ настійно Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ ΠΉΠΎΠ³ΠΎ створити&r. \n\nΠ‘ΡƒΠ΄Ρ–Π²Π½ΠΈΡ†Ρ‚Π²ΠΎ всіх Ρ†ΠΈΡ… &eΠ‘Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΡ–Π²&r ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ &cΠ»ΡΠΊΠ°ΡŽΡ‡ΠΈΠΌ&r, Ρ‡ΠΈ Π½Π΅ Ρ‚Π°ΠΊ? Ось ΠΏΠΎΡ€Π°Π΄Π°: використай &dShift + ПКМ&r Π½Π° Π±ΡƒΠ΄ΡŒ-якому &6ΠšΠΎΠ½Ρ‚Ρ€ΠΎΠ»Π΅Ρ€Ρ– Π±Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΡƒ&r, Ρ‰ΠΎΠ± &aΠ°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π·Ρ–Π±Ρ€Π°Ρ‚ΠΈ всю ΠΊΠΎΠ½ΡΡ‚Ρ€ΡƒΠΊΡ†Ρ–ΡŽ&r! \n\nМоТливо, Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ &eпСрСмістити дСякі шини Ρ‚Π° люки&r ΠΏΡ–Π΄ свою ΠΊΠΎΠ½Ρ„Ρ–Π³ΡƒΡ€Π°Ρ†Ρ–ΡŽ, Π°Π»Π΅ Π·Π°Π³Π°Π»ΠΎΠΌ ця функція Π·Π°ΠΎΡ‰Π°Π΄ΠΈΡ‚ΡŒ Ρ‚ΠΎΠ±Ρ– &aΠ±Π°Π³Π°Ρ‚ΠΎ часу&r.", + "quests.tfg_tips.memory_card.subtitle": "ΠšΠΎΠΏΡ–ΡŽΠ²Π°Ρ‚ΠΈ Ρ‚Π° вставити", + "quests.tfg_tips.memory_card.desc": "Коли Ρ‚ΠΈ Π½Π°ΠΌΠ°Π³Π°Ρ”ΡˆΡΡ &aΠΏΠ°Ρ€Π°Π»Π΅Π»Ρ–Π·ΡƒΠ²Π°Ρ‚ΠΈ свою систСму&r Π· Π±Ρ–Π»ΡŒΡˆΠΎΡŽ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ машин, ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ ΠΊΠ»ΠΎΠΏΡ–Ρ‚Π½ΠΎ Π½Π°Π»Π°ΡˆΡ‚ΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈ всі &eΠ²Ρ…ΠΎΠ΄ΠΈ&r Ρ‚Π° &eΠ²ΠΈΡ…ΠΎΠ΄ΠΈ&r для ΠΊΠΎΠΆΠ½ΠΎΡ— Π· Π½ΠΈΡ…. Π’Π°ΠΊ, ΠΌΠΈ ΠΌΠ°Ρ”ΠΌΠΎ Π½Π° ΡƒΠ²Π°Π·Ρ– Ρ‚Π΅Π±Π΅, &dΠ‘ΡƒΠΏΠ΅Ρ€ Π‘ΠΊΡ€ΠΈΠ½Ρ–&r Ρ‚Π° &dΠ Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€ΠΈ&r. \n\nΠ―ΠΊΡ‰ΠΎ ΠΊΠΎΠ»ΠΈ-Π½Π΅Π±ΡƒΠ΄ΡŒ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ Ρ†Π΅ΠΉ малСнький інструмСнт β€” Π½Π΅ вагайся ΠΉΠΎΠ³ΠΎ використати.", + "quests.tfg_tips.portable_scanner.subtitle": "Для Π½Π°ΠΉΡ†Ρ–ΠΊΠ°Π²Ρ–ΡˆΠΈΡ… Π³Ρ€Π°Π²Ρ†Ρ–Π² GregTech", + "quests.tfg_tips.portable_scanner.desc.1": "&aΠŸΠΎΡ€Ρ‚Π°Ρ‚ΠΈΠ²Π½ΠΈΠΉ сканСр&r, Π°Π±ΠΎ &aΠ’Ρ€ΠΈΠΊΠΎΡ€Π΄Π΅Ρ€&r, Ρ” інструмСнтом налагодТСння GTCEu. \n\nΠ™ΠΎΠ³ΠΎ використання ΠΏΠΎΠΊΠ°ΠΆΠ΅ Π΄Π΅Ρ‚Π°Π»Ρ– Π±Π»ΠΎΠΊΠ°, Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–ΡŽ ΠΏΡ€ΠΎ Π΅Π½Π΅Ρ€Π³ΠΎΠΌΠ΅Ρ€Π΅ΠΆΡƒ, ΠΏΠΎΡ‚ΠΎΡ‡Π½ΠΈΠΉ стан Ρ– вміст, Π° Ρ‚Π°ΠΊΠΎΠΆ Π²ΠΏΠ»ΠΈΠ² Π½Π° ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚ΠΈΠ²Π½Ρ–ΡΡ‚ΡŒ. \n\nΠ’Ρ–Π½ Ρ‚Π°ΠΊΠΎΠΆ Π²Ρ–Π΄ΠΎΠ±Ρ€Π°ΠΆΠ°Ρ” відсоток Ρ€Ρ–Π΄ΠΈΠ½ΠΈ, Ρ‰ΠΎ залишилася Ρƒ Ρ€Ρ–Π΄ΠΈΠ½Π½Ρ–ΠΉ ΠΆΠΈΠ»Ρ– для &3Π Ρ–Π΄ΠΈΠ½Π½ΠΈΡ… Π±ΡƒΡ€ΠΎΠ²ΠΈΡ… установок&r.", + "quests.tfg_tips.portable_scanner.desc.2": "&l&3Π›ΠΎΡ€:&r&o Π¦Π΅ΠΉ корисний пристрій ΠΏΠΎΡ…ΠΎΠ΄ΠΈΡ‚ΡŒ Ρ–Π· GregTech 5. Π’Ρ–Π½ Π±ΡƒΠ² Π½Π°Π΄Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎ корисним Ρƒ ΠΏΠ΅Ρ€ΡˆΡ– Π΄Π½Ρ–, Π°Π΄ΠΆΠ΅ Π³Ρ€Π°Ρ„Ρ–Ρ‡Π½Ρ– інтСрфСйси Ρ‚Π° WAILA ΠΌΠ°ΠΉΠΆΠ΅ Π½Π΅ Π½Π°Π΄Π°Π²Π°Π»ΠΈ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— (Ρ„Π°ΠΊΡ‚ΠΈΡ‡Π½ΠΎ Π½Ρ–Ρ‡ΠΎΠ³ΠΎ).", + "quests.tfg_tips.duct_tape.subtitle": "Π―ΠΊΡ‰ΠΎ Π²ΠΈ Π½Π΅ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π²ΠΈΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ Ρ†Π΅ Π·Π° допомогою Ρ†ΡŒΠΎΠ³ΠΎ, використовуйтС Π±Ρ–Π»ΡŒΡˆΠ΅!", + "quests.tfg_tips.duct_tape.desc": "Π’ΠΈ, ΠΌΠ°Π±ΡƒΡ‚ΡŒ, ΠΏΠΎΠΌΡ–Ρ‚ΠΈΠ², Ρ‰ΠΎ Π±Ρ–Π»ΡŒΡˆΡ–ΡΡ‚ΡŒ &eΠ‘Π°Π³Π°Ρ‚ΠΎΠ±Π»ΠΎΠΊΡ–Π²&r ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡŽΡ‚ΡŒ &6Π›ΡŽΠΊ обслуговування&r. Π”ΠΎ &6HV&r, Π΄Π΅ ΠΌΠΎΠΆΠ½Π° ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ &aАвтоматичний люк обслуговування&r, Ρ‚ΠΈ моТСш використати Ρ†Π΅ΠΉ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚, Ρ‰ΠΎΠ± ΠΏΠΎΠ»Π°Π³ΠΎΠ΄ΠΈΡ‚ΠΈ люк Π±Π΅Π· ΠΏΠΎΡ‚Ρ€Π΅Π±ΠΈ застосовувати всі інструмСнти для обслуговування. \n\nΠ¦Π΅ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ Π΄ΡƒΠΆΠ΅ корисним, якщо Ρ‚ΠΈ Ρ‰Π΅ Π½Π΅ Ρ…ΠΎΡ‡Π΅Ρˆ вкладатися Π² &aАвто люк обслуговування&r Π°Π±ΠΎ якщо Ρ‚ΠΈ просто &cΡ‰Π΅ Π½Π΅ Π΄Ρ–ΠΉΡˆΠΎΠ² Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ&r.", + "quests.tfg_tips.gt_filters.title": "Π€Ρ–Π»ΡŒΡ‚Ρ€ΠΈ", + "quests.tfg_tips.gt_filters.desc": "Π— &5GregTech&r Ρ‚ΠΈ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ”Ρˆ доступ Π΄ΠΎ Ρ€Ρ–Π·Π½ΠΈΡ… &6Ρ„Ρ–Π»ΡŒΡ‚Ρ€Ρ–Π²&r, які Π΄ΠΎΠΏΠΎΠΌΠ°Π³Π°ΡŽΡ‚ΡŒ ΠΏΠ»Π°Π²Π½ΠΎ ΠΏΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ Π΄ΠΎ &aΠ°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·Π°Ρ†Ρ–Ρ—&r. \nУсі Π²ΠΎΠ½ΠΈ сумісні Π· Ρ€Ρ–Π·Π½ΠΈΠΌΠΈ &dНакладками&r, ΠΏΡ€ΠΎ які Ρ‚ΠΈ Π΄Ρ–Π·Π½Π°Ρ”ΡˆΡΡ Π±Ρ–Π»ΡŒΡˆΠ΅ Π² Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– &7LV&r. \n\nΠ’ΡƒΡ‚ ΠΌΠΈ прСдставляємо Ρ‰Π΅ Π΄Π²Π° Π±Ρ–Π»ΡŒΡˆ спСцифічні Ρ„Ρ–Π»ΡŒΡ‚Ρ€ΠΈ, які ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ &bкорисними&r Ρƒ ΠΏΠ΅Π²Π½ΠΈΡ… ситуаціях. \n\nΠ©ΠΎΠ± використати Ρ„Ρ–Π»ΡŒΡ‚Ρ€, просто застосуй ΠΉΠΎΠ³ΠΎ як &dНакладку&r Π½Π° Π±ΡƒΠ΄ΡŒ-яку &5GT ΠœΠ°ΡˆΠΈΠ½Ρƒ&r Π°Π±ΠΎ &6Ρ‚Ρ€ΡƒΠ±Ρƒ&r.", + "quests.tfg_tips.smart_item_filter.subtitle": "Вук‑тук β€” Ρ…Ρ‚ΠΎ Ρ‚Π°ΠΌ? Π¦Π΅ MENSA!", + "quests.tfg_tips.smart_item_filter.desc.1": "Π£ Ρ†ΡŒΠΎΠΌΡƒ Π·Π°Π²Π΄Π°Π½Π½Ρ– ΠΌΠΈ Π΄Π°Ρ€ΡƒΡ”ΠΌΠΎ Ρ‚ΠΎΠ±Ρ– &5прокляту ΠΌΡƒΠ΄Ρ€Ρ–ΡΡ‚ΡŒ&r... уміння Π»Π΅Π³ΠΊΠΎ Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΠ·ΡƒΠ²Π°Ρ‚ΠΈ Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·Π΅Ρ€. \n\n&9Π ΠΎΠ·ΡƒΠΌΠ½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²&r β€” Ρ†Π΅ Ρ„Ρ–Π»ΡŒΡ‚Ρ€, Ρ‰ΠΎ Ρ€ΠΎΠ·ΠΏΡ–Π·Π½Π°Ρ” ΠšΠ°Ρ€Ρ‚ΠΈ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π². Π―ΠΊΡ‰ΠΎ розмістити ΠΉΠΎΠ³ΠΎ Π· Π±ΠΎΠΊΡƒ машини, ΠΌΠΎΠΆΠ½Π° встановити Ρ€Π΅ΠΆΠΈΠΌ \"&3Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·Π΅Ρ€&r\", Ρ‰ΠΎΠ± Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΠΈ вставку самС Π΅Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·ΠΎΠ²Π°Π½ΠΈΡ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π². Π’Π°ΠΊ, Ρ‚ΠΈ ΠΏΠΎΡ‡ΡƒΠ² ΠΏΡ€Π°Π²ΠΈΠ»ΡŒΠ½ΠΎ β€” Π±Ρ–Π»ΡŒΡˆΠ΅ Π½Π΅ ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ΡƒΠ²Π°Ρ‚ΠΈ Π²Ρ€ΡƒΡ‡Π½Ρƒ! \n\nΠ† Ρ†Π΅ стає &aΡ‰Π΅ ΠΊΡ€Π°Ρ‰ΠΈΠΌ&r. Π―ΠΊΡ‰ΠΎ ΠΏΠΎΡ”Π΄Π½Π°Ρ‚ΠΈ Ρ†ΡŒΠΎΠ³ΠΎ хлопця Π· &aΠ ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΎΠ²Π°Π½ΠΎΡŽ Ρ€ΡƒΠΊΠΎΡŽ&r, Π²Ρ–Π½ ΠΏΠΎΠ΄Π°Π²Π°Ρ‚ΠΈΠΌΠ΅ лишС &6Ρ‚ΠΎΡ‡Π½Ρƒ ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŒ&r ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π², Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Ρƒ для ΡƒΡΠΏΡ–ΡˆΠ½ΠΎΠ³ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρƒ Π² ΠΌΠ°ΡˆΠΈΠ½Ρƒ.", + "quests.tfg_tips.smart_item_filter.desc.2": "Встанови &aΠ ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΎΠ²Π°Π½Ρƒ Ρ€ΡƒΠΊΡƒ&r Π½Π° свій Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·Π΅Ρ€, Π²Ρ–Π΄ΠΊΡ€ΠΈΠΉ ΠΉΠΎΠ³ΠΎ GUI Ρ‚Π° помісти всСрСдину &9Π ΠΎΠ·ΡƒΠΌΠ½ΠΈΠΉ Ρ„Ρ–Π»ΡŒΡ‚Ρ€&r. ΠŸΠ΅Ρ€Π΅ΠΊΠΎΠ½Π°ΠΉΡΡ, Ρ‰ΠΎ Ρ„Ρ–Π»ΡŒΡ‚Ρ€ Π½Π°Π»Π°ΡˆΡ‚ΠΎΠ²Π°Π½ΠΈΠΉ Π½Π° Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·Π΅Ρ€. \n\nΠ”Π°Π»Ρ– сконфігуруй ΠΉΠΎΠ³ΠΎ Π½Π° &d&lΠ†ΠΌΠΏΠΎΡ€Ρ‚&r Ρ‚Π° &d&lΠ’ΠΎΡ‡Π½Π΅ постачання&r. ΠΠ°Ρ€Π΅ΡˆΡ‚Ρ–, ΠΏΡ€ΠΈΡ”Π΄Π½Π°ΠΉ Π±ΡƒΠ΄ΡŒ-якС сховищС &7(ΠΏΡ–Π΄Ρ–ΠΉΠ΄Π΅ ΠΉ Бкриня)&r Π΄ΠΎ Ρ‚Ρ–Ρ”Ρ— сторони, Π΄Π΅ Ρ‚ΠΈ розмістив &aΠ ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΎΠ²Π°Π½Ρƒ Ρ€ΡƒΠΊΡƒ&r. Π’Π°-Π΄Π°! Π’ΠΈ розібрався, як обробляти &6усі&r Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΈ Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·Π΅Ρ€Π°! \n\nА Ρ‰ΠΎ Ρ‰ΠΎΠ΄ΠΎ Π²ΠΈΡ…ΠΎΠ΄Ρƒ Π· &3Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΠ»Ρ–Π·Π΅Ρ€Π°&r? МоТна Π½Π°ΠΏΡ€Π°Π²ΠΈΡ‚ΠΈ Ρ€Ρ–Π΄ΠΈΠ½ΠΈ Π΄ΠΎ ΠΊΡ–Π»ΡŒΠΊΠΎΡ… Π Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ–Π²β€” Π°Π±ΠΎ Π½Π°Π²Ρ–Ρ‚ΡŒ Π΄ΠΎ &3Π‘ΡƒΠΏΠ΅Ρ€ Π Π΅Π·Π΅Ρ€Π²ΡƒΠ°Ρ€Ρ–Π²&r, якщо Ρ‚ΠΈ Π²ΠΆΠ΅ Π΄Ρ–ΠΉΡˆΠΎΠ² Π΄ΠΎ Ρ†ΡŒΠΎΠ³ΠΎ Π΅Ρ‚Π°ΠΏΡƒ. Ми настійно Ρ€Π΅ΠΊΠΎΠΌΠ΅Π½Π΄ΡƒΡ”ΠΌΠΎ ΡƒΠ½ΠΈΠΊΠ°Ρ‚ΠΈ Π±ΡƒΠ΄ΡŒ-яких ΠΌΠ΅Ρ‚ΠΎΠ΄Ρ–Π², Ρ‰ΠΎ ΠΏΠ΅Ρ€Π΅Π΄Π±Π°Ρ‡Π°ΡŽΡ‚ΡŒ видалСння Ρ€Ρ–Π΄ΠΈΠ½.&7.&7. ΠΎΠΊΡ€Ρ–ΠΌ Π’ΠΎΠ΄ΠΈ Π· ΠΎΡ‡Π΅Π²ΠΈΠ΄Π½ΠΈΡ… ΠΏΡ€ΠΈΡ‡ΠΈΠ½.", + "quests.tfg_tips.smart_item_filter.desc.3": "&9ΠŸΡ€ΠΈΠΌΡ–Ρ‚ΠΊΠ°:&r Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΎΠ²Π°Π½Π° Ρ€ΡƒΠΊΠ° ΠΏΠΎΠ²ΠΈΠ½Π½Π° Π·Π΄Ρ–ΠΉΡΠ½ΡŽΠ²Π°Ρ‚ΠΈ ΠΏΠ΅Ρ€Π΅Π΄Π°Ρ‡Ρƒ ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π², Ρ‰ΠΎΠ± Ρ—Ρ— функція Ρ„Ρ–Π»ΡŒΡ‚Ρ€Π°Ρ†Ρ–Ρ— ΠΏΡ€Π°Ρ†ΡŽΠ²Π°Π»Π°! ΠŸΡ€ΡΠΌΠ΅ вставляння Π² ΠΌΠ°ΡˆΠΈΠ½Ρƒ &7(Π½Π°ΠΏΡ€ΠΈΠΊΠ»Π°Π΄, Π·Π° допомогою Π’ΠΎΡ€ΠΎΠ½ΠΊΠΈ!)&r Ρ–Π³Π½ΠΎΡ€ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅ Π½Π°Π»Π°ΡˆΡ‚ΡƒΠ²Π°Π½Π½Ρ &dΠ’ΠΎΡ‡Π½ΠΎΠ³ΠΎ постачання&r Π ΠΎΠ±ΠΎΡ‚ΠΈΠ·ΠΎΠ²Π°Π½ΠΎΡ— Ρ€ΡƒΠΊΠΈ.", + "quests.tfg_tips.hazard_materials.title": "НСбСзпСчні ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ", + "quests.tfg_tips.hazard_materials.subtitle": "НСбСзпСка Π·Π°Π΄ΡƒΡ…ΠΈ, Π²Ρ–Π΄ 3+ Ρ€ΠΎΠΊΡ–Π²", + "quests.tfg_tips.hazard_materials.desc": "Π£ Π½ΠΎΠ²Ρ–ΠΉ вСрсії &5Gregtech&r Π±ΡƒΠ»ΠΎ Π·Π°ΠΏΡ€ΠΎΠ²Π°Π΄ΠΆΠ΅Π½ΠΎ &cсистСму Π½Π΅Π±Π΅Π·ΠΏΠ΅ΠΊ&r. Π―ΠΊΡ‰ΠΎ ΡƒΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ &dShift&r, Π½Π°Π²Ρ–Π²ΡˆΠΈ курсор Π½Π° &cНСбСзпСчні ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ&r, ΠΌΠΎΠΆΠ½Π° ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ, як Π²ΠΎΠ½ΠΈ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π²ΠΏΠ»ΠΈΠ½ΡƒΡ‚ΠΈ Π½Π° Ρ‚Π΅Π±Π΅. \n\nМи настійно Ρ€Π°Π΄ΠΈΠΌΠΎ використовувати Π½Π°Π»Π΅ΠΆΠ½Π΅ &6захиснС спорядТСння&r, Ρ‰ΠΎΠ± Π·Π±Π΅Ρ€Π΅Π³Ρ‚ΠΈ свої &cΠΎΡ€Π³Π°Π½ΠΈ Π½Π΅ΡƒΡˆΠΊΠΎΠ΄ΠΆΠ΅Π½ΠΈΠΌΠΈ&r.", + "quests.tfg_tips.face_mask.desc": "&6Захисна маска&r ΡƒΠ±Π΅Ρ€Π΅ΠΆΠ΅ Ρ‚Π΅Π±Π΅ Π²Ρ–Π΄ &cвдихання Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎΠ³ΠΎ ΠΏΠΈΠ»Ρƒ&r. Π’ΠΎΠ½Π° Π΄ΠΎΡΠΈΡ‚ΡŒ &aпроста Ρƒ створСнні&r Ρ‚Π° ΠΌΠ°Ρ” Π·Π°ΠΏΠΎΠ±Ρ–Π³Ρ‚ΠΈ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠ°ΠΌ ΠΏΡ–Π΄ час Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Π· &5ΠΌΠΈΡˆβ€™ΡΠΊΠΎΠΌ&r.", + "quests.tfg_tips.rubber_gloves.desc": "&6Π ΡƒΠΊΠ°Π²ΠΈΡ‡ΠΊΠΈ&r ΠΎΡ‡Π΅Π²ΠΈΠ΄Π½ΠΎ Π·Π°Ρ…ΠΈΡΡ‚ΡΡ‚ΡŒ Ρ‚Π΅Π±Π΅ Π²Ρ–Π΄ &cΠ½Π΅Π±Π΅Π·ΠΏΠ΅ΠΊΠΈ ΠΊΠΎΠ½Ρ‚Π°ΠΊΡ‚Ρƒ Π·Ρ– ΡˆΠΊΡ–Ρ€ΠΎΡŽ&r. Π„ Π΄Π²Π° способи Ρ—Ρ… створити: &7довший Ρ– Π±Ρ–Π»ΡŒΡˆ складний ΡˆΠ»ΡΡ…&r Ρ‡Π΅Ρ€Π΅Π· &2TerrafirmaCraft&r Π°Π±ΠΎ Π·Π½Π°Ρ‡Π½ΠΎ &aΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΈΠΌ ΠΌΠ΅Ρ‚ΠΎΠ΄ΠΎΠΌ&r Π·Π° допомогою &6ВисокотСмпСратурного ΠΏΠ°Ρ€ΠΎΠ²ΠΎΠ³ΠΎ Ρ€Π»Π°Π²ΠΈΠ»ΡŒΠ½ΠΈΠΊΠ° сплавів&r.", + "quests.tfg_tips.hazmat.title": "ΠšΠΎΡΡ‚ΡŽΠΌ для Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Π· Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΈΠΌΠΈ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Π°ΠΌΠΈ", + "quests.tfg_tips.hazmat.desc": "&6ΠšΠΎΡΡ‚ΡŽΠΌ для Ρ€ΠΎΠ±ΠΎΡ‚ΠΈ Π· Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΈΠΌΠΈ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Π°ΠΌΠΈ&r β€” Ρ†Π΅ Π½Π°ΠΉΠΊΡ€Π°Ρ‰ΠΈΠΉ спосіб захистити сСбС Π²Ρ–Π΄ &cΠ±ΡƒΠ΄ΡŒ-якої шкоди&r. Π’ΠΈ змоТСш створити ΠΉΠΎΠ³ΠΎ, ΠΊΠΎΠ»ΠΈ досягнСш &bMV&r, Ρ– &aΡ‚ΠΎΠ±Ρ– обов’язково Π²Π°Ρ€Ρ‚ΠΎ Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈΡ‚ΠΈ час, Ρ‰ΠΎΠ± Ρ†Π΅ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ&r.", + "quests.tfg_tips.armor.title": "Броня GregTech", + "quests.tfg_tips.armor.desc": "Π— &5GregTech&r ΠΏΡ€ΠΈΡ…ΠΎΠ΄ΠΈΡ‚ΡŒ власна Π»Ρ–Π½Ρ–ΠΉΠΊΠ° Π±Ρ€ΠΎΠ½Ρ–. Звісно, Π±ΡƒΠ»ΠΎ ΠΊΡ€ΡƒΡ‚ΠΎ носити &7ΠΌΠ΅Ρ‚Π°Π»Π΅Π²Ρ– пластини&r, Π°Π»Π΅ Ρ‚Π΅ΠΏΠ΅Ρ€, ΠΊΠΎΠ»ΠΈ Ρ‚ΠΈ став &bΡ–Π½Π΄ΡƒΡΡ‚Ρ€Ρ–Π°Π»ΡŒΠ½ΠΈΠΌ маніяком&r, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, настав час придивитися Π΄ΠΎ &aΡ‚Π΅Ρ…Π½ΠΎΠ»ΠΎΠ³Ρ–Ρ‡Π½ΠΎΡ— Π±Ρ€ΠΎΠ½Ρ–&r. \n\n&5GregTech&r ΠΏΡ€ΠΎΠΏΠΎΠ½ΡƒΡ” Π΄Π²Ρ– ΠΌΠΎΠ΄Π΅Π»Ρ–. ΠŸΠ΅Ρ€ΡˆΠ° стає Π΄ΠΎΡΡ‚ΡƒΠΏΠ½ΠΎΡŽ ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ Π½Π° Ρ€Ρ–Π²Π½Ρ– &6HV&r Ρ– Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡ” ΠΊΡ€Π°Ρ‰ΠΈΠΉ захист, Π½Ρ–ΠΆ Π±ΡƒΠ΄ΡŒ-Ρ‰ΠΎ, Ρ‰ΠΎ Ρ‚ΠΈ носив Ρ€Π°Π½Ρ–ΡˆΠ΅. Π’ΠΎΠ½Π° оснащСна &eсильним утСплСнням&r, Ρ‰ΠΎΠ± Π²ΠΈΡ‚Ρ€ΠΈΠΌΡƒΠ²Π°Ρ‚ΠΈ суворий ΠΊΠ»Ρ–ΠΌΠ°Ρ‚ Π—Π΅ΠΌΠ»Ρ–, Ρ– Π½Π°Π²Ρ–Ρ‚ΡŒ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ вдосконалСна Π·Π° допомогою &dΠ Π΅Π°ΠΊΡ‚ΠΈΠ²Π½ΠΎΠ³ΠΎ ранця&r. \n\nΠ”Ρ€ΡƒΠ³Π° модСль Π±ΡƒΠ΄Π΅ доступна Π·Π½Π°Ρ‡Π½ΠΎ ΠΏΡ–Π·Π½Ρ–ΡˆΠ΅ β€” ΠΏΡ€ΠΈΠ±Π»ΠΈΠ·Π½ΠΎ Π½Π° рівнях &1IV&r Ρ‚Π° &dLuV&r. Π’ΠΎΠ½Π° Π΄ΠΎΠ·Π²ΠΎΠ»ΠΈΡ‚ΡŒ Ρ‚ΠΎΠ±Ρ– &9Π΄ΠΈΡ…Π°Ρ‚ΠΈ Π² космосі&r, Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‡ΠΈ &3кисСнь&r.", "quests.tfg_tips.terrafirmacraft.title": "ДоповнСння TerraFirmaCraft", "quests.tfg_tips.terrafirmacraft.subtitle": "Π†Π½ΡˆΡ– Π΄Π²Ρ– Ρ‚Ρ€Π΅Ρ‚ΠΈΠ½ΠΈ Π½Π°Π·Π²ΠΈ ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠ°", "quests.tfg_tips.terrafirmacraft.desc": "&3TerraFirmaCraft&r β€” ΠΎΠ΄ΠΈΠ½ Π· основних ΠΌΠΎΠ΄Ρ–Π² Ρƒ &2TerraFirmaGreg.&r \nЦя Π³Ρ–Π»ΠΊΠ° Π·Π΄Π΅Π±Ρ–Π»ΡŒΡˆΠΎΠ³ΠΎ Π·ΠΎΡΠ΅Ρ€Π΅Π΄ΠΆΡƒΡ”Ρ‚ΡŒΡΡ Π½Π° дСяких ΠΉΠΎΠ³ΠΎ функціях виТивання Ρ‚Π° Ρ–Π½ΡˆΠΈΡ… &dДоповнСннях&r ΠΌΠΎΠ΄ΠΏΠ°ΠΊΠ°, Ρ‚Π°ΠΊΠΈΡ… як &4Π’ΠΈΡ‚Ρ€ΠΈΠΌΠ°Π½ΠΈΠΉ Алкоголь&r Ρ‚Π° &bВростини.&r", @@ -3533,6 +4254,10 @@ "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.feeding_troughs.title": "Годівниця", + "quests.tfg_tips.feeding_troughs.subtitle": "ΠœΠ΅Ρ‚Π°Π»Π΅Π²ΠΈΠΉ ΠΏΠΎΠΌΡ–Ρ‡Π½ΠΈΠΊ Π½Π° Ρ„Π΅Ρ€ΠΌΡ–", + "quests.tfg_tips.feeding_troughs.desc": "Π“ΠΎΠ΄Ρ–Π²Π½ΠΈΡ†Ρ– (Ρ‚Π°ΠΊΠΎΠΆ Π²Ρ–Π΄ΠΎΠΌΡ– як Π‘Ρ‚Π°Π½Ρ†Ρ–Ρ— догляду) β€” Ρ†Π΅ спосіб Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π³ΠΎΠ΄ΡƒΠ²Π°Ρ‚ΠΈ своїх Ρ‚Π²Π°Ρ€ΠΈΠ½ Ρ‰ΠΎΡ€Π°Π½ΠΊΡƒ. Π’ΠΎΠ½ΠΈ Π½Π°Π²Ρ–Ρ‚ΡŒ ΠΌΠ°ΡŽΡ‚ΡŒ ΠΎΠΏΡ†Ρ–ΡŽ, яка дозволяє ΡƒΠ½ΠΈΠΊΠ°Ρ‚ΠΈ годування Ρ‚Π²Π°Ρ€ΠΈΠ½ Ρ–Π· максимальною ΠΏΡ€ΠΈΡ…ΠΈΠ»ΡŒΠ½Ρ–ΡΡ‚ΡŽ, якщо Ρ‚ΠΈ Π½Π΅ Ρ…ΠΎΡ‡Π΅Ρˆ Ρ—Ρ… Ρ€ΠΎΠ·Π²ΠΎΠ΄ΠΈΡ‚ΠΈ. \n\nΠ’ΠΈΡ‰Ρ– Ρ€Ρ–Π²Π½Ρ– Π·Π°Π±Π΅Π·ΠΏΠ΅Ρ‡ΡƒΡŽΡ‚ΡŒ Π±Ρ–Π»ΡŒΡˆΠΈΠΉ радіус СфСктивності. \n\n&3&lΠŸΠΎΡ€Π°Π΄Π°:&r&o НС Π²Π°Ρ€Ρ‚ΠΎ ставити Π³ΠΎΠ΄Ρ–Π²Π½ΠΈΡ†ΡŽ прямо біля ΠΏΠ°Ρ€ΠΊΠ°Π½Ρƒ, Ρ–Π½Π°ΠΊΡˆΠ΅ Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ ΡΠΏΡ€ΠΎΠ±ΡƒΡŽΡ‚ΡŒ використати Ρ—Ρ—, Ρ‰ΠΎΠ± ΡƒΡ‚Π΅ΠΊΡ‚ΠΈ Π·Ρ– свого Π·Π°Π³ΠΎΠ½Ρƒ!", + "quests.tfg_tips.feeding_troughs.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", @@ -3639,9 +4364,6 @@ "quests.tfg_tips.grappling_hook.title": "Π“Π°ΠΊ-ΠΊΡ–ΡˆΠΊΠ°", "quests.tfg_tips.grappling_hook.subtitle": "Π¦Π΅ Π·Π°ΠΊΡ–Π½Ρ‡ΠΈΡ‚ΡŒΡΡ ΠΏΠΎΠ³Π°Π½ΠΎ", "quests.tfg_tips.grappling_hook.desc": "Об'Ρ”Π΄Π½Π°Π²ΡˆΠΈ 2 ΡˆΠΌΠ°Ρ‚ΠΊΠΈ &aΠœΠΎΡ‚ΡƒΠ·ΠΊΠΎΠ²ΠΎΠ³ΠΎ ΠšΠΎΡ‚ΠΊΠ°&r Ρ‚Π° &bΠ—Π°Π»Ρ–Π·Π½Π΅ Кайло&r, Ρ‚ΠΈ моТСш створити &dΠ“Π°ΠΊ-ΠΊΡ–ΡˆΠΊΡƒ!&r Π†Π΄Π΅Π°Π»ΡŒΠ½ΠΈΠΉ інструмСнт для ΠΏΡ–Π΄ΠΉΠΎΠΌΡƒ Π½Π° Π²Π΅Π»ΠΈΠΊΡ– Π³ΠΎΡ€ΠΈ, дослідТСння ΠΏΠ΅Ρ‡Π΅Ρ€ Ρ‚Π° ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆΠ΅ΠΉ світом. сВін ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ &eсистСму ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½ΡŒ&r, яка дозволяє ΠΊΠΎΠΌΠ±Ρ–Π½ΡƒΠ²Π°Ρ‚ΠΈ Ρ‚Π° ΠΌΠΎΠ΄ΠΈΡ„Ρ–ΠΊΡƒΠ²Π°Ρ‚ΠΈ Ρ‚Π²Ρ–ΠΉ &dΠ“Π°ΠΊ&r Π½Π° власний розсуд.", - "quests.tfg_tips.grapple_repair.title": "ΠŸΠΎΠΏΠ΅Ρ€Π΅Π΄ΠΆΠ΅Π½Π½Ρ Ρ‰ΠΎΠ΄ΠΎ Π³Π°ΠΊΠ°-ΠΊΡ–ΡˆΠΊΠΈ", - "quests.tfg_tips.grapple_repair.subtitle": "ΠŸΠ ΠžΠ§Π˜Π’ΠΠ™ ΠœΠ•ΠΠ•, ΠΠ‘Πž ΠœΠžΠ–Π•Π¨ ΠŸΠžΠ¨ΠšΠžΠ”Π£Π’ΠΠ’Π˜ ΠŸΠ†Π—ΠΠ†Π¨Π•!", - "quests.tfg_tips.grapple_repair.desc": "Усі Π²Π°ΡˆΡ– &dпокращСння Π³Π°ΠΊΠ°-ΠΊΡ–ΡˆΠΊΠΈ&r Π·Π±Π΅Ρ€Ρ–Π³Π°ΡŽΡ‚ΡŒΡΡ як NBT-Π΄Π°Π½Ρ– всСрСдині ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π°. Π¦Π΅ ΠΎΠ·Π½Π°Ρ‡Π°Ρ”, Ρ‰ΠΎ спроба Π²Ρ–Π΄Ρ€Π΅ΠΌΠΎΠ½Ρ‚ΡƒΠ²Π°Ρ‚ΠΈ ваш Π³Π°ΠΊ Π·Π° допомогою &cΡ–Π½ΡˆΠΎΠ³ΠΎ&r Π³Π°ΠΊΠ°-ΠΊΡ–ΡˆΠΊΠΈ &l&cΠ—ΠΠ˜Π©Π˜Π’Π¬ усі Π²Π°ΡˆΡ– покращСння!&r\n\nΠ—Π°ΠΌΡ–ΡΡ‚ΡŒ Ρ†ΡŒΠΎΠ³ΠΎ Π²Π°ΠΌ слід покласти свій &dΠ³Π°ΠΊ-ΠΊΡ–ΡˆΠΊΡƒ&r Ρ‚Π° Ρ‚Ρ€ΠΎΡ…ΠΈ &bΠΏΠΈΠ»Ρƒ ΠΊΠΎΠ²Π°Π½ΠΎΠ³ΠΎ Π·Π°Π»Ρ–Π·Π°&r Ρƒ &3ВСрстак&r, Ρ‰ΠΎΠ± Π²Ρ–Π΄Ρ€Π΅ΠΌΠΎΠ½Ρ‚ΡƒΠ²Π°Ρ‚ΠΈ ΠΉΠΎΠ³ΠΎ.\n\nΠ’Π°ΠΊΠΎΠΆ Π½Π΅ використовуйтС Π³Π°ΠΊ-ΠΊΡ–ΡˆΠΊΡƒ ΠΏΡ–Π΄ час ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆΠ΅ΠΉ ΠΌΡ–ΠΆ Π’Π΅Ρ€Ρ…Π½Ρ–ΠΌ світом Ρ‚Π° ΠŸΡ–Π΄Π·Π΅ΠΌΠ΅Π»Π»ΡΠΌ β€” Ρ†Π΅ ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ ΡΠΌΠ΅Ρ€Ρ‚Π΅Π»ΡŒΠ½ΠΎ Π½Π΅Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ.", "quests.tfg_tips.grapple_upgrades.title": "ΠŸΠΎΠΊΡ€Π°Ρ‰Π΅Π½Π½Ρ Ρ‚Π²ΠΎΠ³ΠΎ Π“Π°ΠΊΠ°-ΠΊΡ–ΡˆΠΊΠΈ", "quests.tfg_tips.grapple_upgrades.subtitle": "Збалансовано Π½Π°Π²ΠΊΠΎΠ»ΠΎ TFG, звісно!", "quests.tfg_tips.grapple_upgrades.desc.1": "ΠŸΠΎΠΊΡ€Π°Ρ‰Π΅Π½Π½Ρ Ρ‚Π²ΠΎΠ³ΠΎ &dΠ“Π°ΠΊΠ°-ΠΊΡ–ΡˆΠΊΠΈ&r полягає Ρƒ Π΄ΠΎΠ΄Π°Π²Π°Π½Π½Ρ– Π°Π±ΠΎ Π²ΠΈΠ΄Π°Π»Π΅Π½Π½Ρ– ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π² Ρ‡Π΅Ρ€Π΅Π· &3ВСрстак&r.&r \n\nΠ©ΠΎΠ± пСрСглянути всі доступні покращСння для &dΠ“Π°ΠΊ-ΠΊΡ–ΡˆΠΊΠΈ&r, натисни ΠΊΠ»Π°Π²Ρ–ΡˆΡƒ \"Usage\" Ρƒ &2EMI.&r \nКоТСн Π· ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΈΡ… Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ–Π² міститимС тСкст Ρ–Π· описом внСсСних Π·ΠΌΡ–Π½.", @@ -3760,6 +4482,9 @@ "quests.tfg_tips.self_defense.title": "Π‘Π°ΠΌΠΎΠΎΠ±ΠΎΡ€ΠΎΠ½Π°", "quests.tfg_tips.self_defense.subtitle": "Π£ Ρ‚Π΅Π±Π΅ Π·ΠΎΠΌΠ±Ρ– Π½Π° Π³Π°Π·ΠΎΠ½Ρ–?", "quests.tfg_tips.self_defense.desc": "ΠŸΠΎΡΡ‚Π°Π² &3ΠŸΠ°ΡΡ‚ΠΊΡƒ Π· Ρ€ΡƒΡ‡ΠΊΠΎΡŽ&r ΠΏΠΎΡ€ΡƒΡ‡ Ρ–Π· Π½Π°Ρ‚ΠΈΡΠΊΠ½ΠΎΡŽ ΠΏΠ»ΠΈΡ‚ΠΎΡŽ β€” Ρ– Π²ΠΎΠ½Π° ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π·Π½Π΅Ρ€ΡƒΡ…ΠΎΠΌΠΈΡ‚ΡŒ Π±ΡƒΠ΄ΡŒ-яку Ρ‚Π²Π°Ρ€ΠΈΠ½Ρƒ (Π°Π±ΠΎ монстра!), Ρ‰ΠΎ Π½Π° Π½Π΅Ρ— Π½Π°ΡΡ‚ΡƒΠΏΠΈΡ‚ΡŒ. Π†Π΄Π΅Π°Π»ΡŒΠ½ΠΎ для упіймання Ρ…ΠΈΡ‚Ρ€ΠΎΡ— лісової істоти Π°Π±ΠΎ захисту Π΄ΠΎΠΌΡƒ.\n\n&3ΠšΠΎΠ»ΡŽΡ‡ΠΈΠΉ Π΄Ρ€Ρ–Ρ‚&r β€” Ρ†Π΅ пасивний Π΅Π»Π΅ΠΌΠ΅Π½Ρ‚, який просто Π·Π°Π²Π΄Π°Ρ” шкоди Π²ΡΡŒΠΎΠΌΡƒ, Ρ‰ΠΎ ΠΏΡ€ΠΎΡ…ΠΎΠ΄ΠΈΡ‚ΡŒ ΠΊΡ€Ρ–Π·ΡŒ нього.", + "quests.tfg_tips.lightning_rod.title": "Π“Ρ€ΠΎΠ·ΠΎΠ²Ρ–Π΄Π²Ρ–Π΄", + "quests.tfg_tips.lightning_rod.subtitle": "НСбаТана Π½Π°ΠΏΡ€ΡƒΠ³Π°", + "quests.tfg_tips.lightning_rod.desc": "ΠžΡΠΊΡ–Π»ΡŒΠΊΠΈ Π³Ρ€ΠΎΠ·ΠΈ Π² TerraFirmaCraft Π½Π°Π±Π°Π³Π°Ρ‚ΠΎ Π°ΠΊΡ‚ΠΈΠ²Π½Ρ–ΡˆΡ– Ρ‚Π° ΠΆΠΎΡ€ΡΡ‚ΠΊΡ–ΡˆΡ–, частота блискавок ΠΌΠΎΠΆΠ΅ добрячС Π΄Ρ€Π°Ρ‚ΡƒΠ²Π°Ρ‚ΠΈ. Π©ΠΎΠ± ΠΏΠΎΠ²Π½Ρ–ΡΡ‚ΡŽ Π²ΠΈΡ€Ρ–ΡˆΠΈΡ‚ΠΈ Ρ†ΡŽ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΡƒ, ΠΌΠΎΠΆΠ½Π° скористатися &dΠ“Ρ€ΠΎΠ·ΠΎΠ²Ρ–Π΄Π²ΠΎΠ΄ΠΎΠΌ&r β€” всього Π·Π° 3 ΠΌΡ–Π΄Π½Ρ– стСрТні.\n\n&dΠ“Ρ€ΠΎΠ·ΠΎΠ²Ρ–Π΄Π²Ρ–Π΄&r пСрСнаправляє всі блискавки Π½Π° сСбС Π² сфСричному радіусі &3128 Π±Π»ΠΎΠΊΡ–Π²&r.\nΠ£Π²Π°Π³Π°: Π²Ρ–Π½ &oпСрСнаправляє&r блискавки, Π°Π»Π΅ Π½Π΅ Π½Π΅ΠΉΡ‚Ρ€Π°Π»Ρ–Π·ΡƒΡ” Ρ—Ρ…, Ρ‚ΠΎΠΆ Π½Π°Π²ΠΊΠΎΠ»ΠΎ нього всС ΠΎΠ΄Π½ΠΎ Π²ΠΈΠ½ΠΈΠΊΠ°Ρ‚ΠΈΠΌΡƒΡ‚ΡŒ ΠΏΠΎΠΆΠ΅ΠΆΡ– Π² ΠΌΠ΅ΠΆΠ°Ρ… &33 Π±Π»ΠΎΠΊΡ–Π²&r β€” Ρ€ΠΎΠ·ΠΌΡ–Ρ‰ΡƒΠΉ ΠΉΠΎΠ³ΠΎ ΠΏΠΎΠ΄Π°Π»Ρ– Π²Ρ–Π΄ Π±ΡƒΠ΄ΡŒ-яких займистих ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π².", "quests.tfg_tips.arborfirmacraft.title": "ArborFirmaCraft", "quests.tfg_tips.arborfirmacraft.subtitle": "Збирання ΠΆΠΈΡ‚Ρ‚Ρ”Π²ΠΎΡ— ΠΊΡ€ΠΎΠ²Ρ– Π΄Π΅Ρ€Π΅Π²", "quests.tfg_tips.arborfirmacraft.desc": "&2ArborFirmaCraft&r β€” Ρ†Π΅ ΠΌΠΎΠ΄, Ρ‰ΠΎ Π΄ΠΎΠ΄Π°Ρ” Π±Π΅Π·Π»Ρ–Ρ‡ Π½ΠΎΠ²ΠΈΡ… Π΄Π΅Ρ€Π΅Π² Ρƒ &3TFG&r: дСякі Ρ” Π²Π°Ρ€Ρ–Π°Π½Ρ‚Π°ΠΌΠΈ Ρ–ΡΠ½ΡƒΡŽΡ‡ΠΈΡ… Π΄Π΅Ρ€Π΅Π² TFC, Ρ‚Π°ΠΊΠΈΡ… як &dΠ‘Ρ‚Π°Ρ€ΠΎΠ΄Π°Π²Π½Ρ–ΠΉ Капок&r, Π° Ρ–Π½ΡˆΡ– β€” Π°Π±ΡΠΎΠ»ΡŽΡ‚Π½ΠΎ Π½ΠΎΠ²Ρ–, Π½Π°ΠΏΡ€ΠΈΠΊΠ»Π°Π΄, &aΠ‘Π°ΠΎΠ±Π°Π±&r Ρ‚Π° &aГСвСя.&r ДСякі тСкстури Π΄ΠΎΡ‰ΠΎΠΊ Ρ– ΠΊΠΎΠ»ΠΎΠ΄ Ρ†ΠΈΡ… Π΄Π΅Ρ€Π΅Π² ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π½Π°Π³Π°Π΄ΡƒΠ²Π°Ρ‚ΠΈ ΠΊΠΎΠ»ΡŒΠΎΡ€ΠΈ Π²Π°Π½Ρ–Π»ΡŒΠ½ΠΈΡ… Π΄Π΅Ρ€Π΅Π²... \n\nΠ£ Ρ†ΡŒΠΎΠΌΡƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– розглянСмо &bΠ—Π±Ρ–Ρ€ Π‘ΠΎΠΊΡƒ&r. \n\nΠ―ΠΊ бонус, всі ΠΏΠΎΡ€ΠΎΠ΄ΠΈ Π΄Π΅Ρ€Π΅Π² &2ArborFirmaCraft&r сумісні Π· &3FirmaLife&r Ρ‚Π° &3Firma:Civ&r β€” ΠΌΠΈ ΠΏΠΎΠ΄Π±Π°Π»ΠΈ ΠΏΡ€ΠΎ Ρ†Π΅!", @@ -3787,7 +4512,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 Ρ‡Π΅Ρ€Π΅Π· ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΈΠΉ процСс. \nΠŸΠΎΡ‚Ρ–ΠΌ ΠΌΠΎΠΆΠ½Π° ΠΏΠ΅Ρ€Π΅ΠΏΠ»Π°Π²ΠΈΡ‚ΠΈ 3 &dΠ‘ΠΈΡ€Ρ– Π³ΡƒΠΌΠΎΠ²Ρ– маси&r Π· нСвСликою ΠΊΡ–Π»ΡŒΠΊΡ–ΡΡ‚ΡŽ &eΠŸΠΈΠ»Ρƒ сірки&r Ρƒ &bΠŸΠ»Π°Π²ΠΈΠ»ΡŒΠ½ΠΈΠΊΡƒ сплавів&r, Ρ‰ΠΎΠ± створити &dΠ“ΡƒΠΌΠΎΠ²Ρ– Π·Π»ΠΈΡ‚ΠΊΠΈ&r β€” Ρ–Π΄Π΅Π°Π»ΡŒΠ½Ρ– для ізоляції ΠΊΠ°Π±Π΅Π»Ρ–Π² Ρ‚Π° Π°Π±ΡΠΎΠ»ΡŽΡ‚Π½ΠΎ Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Ρ– для просування Ρƒ &2Π’ΠΎΠ»ΡŒΡ‚ΠΎΠ²Ρƒ Π΅ΠΏΠΎΡ…Ρƒ&r Ρ– Π΄Π°Π»Ρ–... \n\n&9ΠŸΠΎΡ€Π°Π΄Π°:&r Π£ ΠΌΡ–Ρ€Ρƒ прогрСсу Π·β€™ΡΠ²ΠΈΡ‚ΡŒΡΡ ΠΊΡ–Π»ΡŒΠΊΠ° способів Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ†Π΅ΠΉ процСс дСшСвшим Ρ– ΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΈΠΌ. ΠŸΠΎΡΡ‚Ρ–ΠΉΠ½ΠΎ пСрСвіряй EMI! Π’ΠΈ Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΠ²Π°Ρ‚ΠΈΠΌΠ΅Ρˆ Π“ΡƒΠΌΡƒ Ρ‰Π΅ Π΄ΠΎΠ²Π³ΠΎ, Ρ‚ΠΎΠΆ автоматизація Ρ†ΡŒΠΎΠ³ΠΎ процСсу Ρ‚ΠΎΡ‡Π½ΠΎ Π²Π°Ρ€Ρ‚Π° Π·ΡƒΡΠΈΠ»ΡŒ.", "quests.tfg_tips.transportation.title": "Вранспортування", "quests.tfg_tips.transportation.subtitle": "Для ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆΠ΅ΠΉ Ρ†ΠΈΠΌ Π²Π΅Π»ΠΈΡ‡Π΅Π·Π½ΠΈΠΌ світом", "quests.tfg_tips.transportation.desc": "Π‘Π²Ρ–Ρ‚ β€” Π΄ΡƒΠΆΠ΅ Π²Π΅Π»ΠΈΠΊΠ΅ місцС, Ρ– Ρ‚ΠΎΠ±Ρ–, ΠΌΠΎΠΆΠ»ΠΈΠ²ΠΎ, Π΄ΠΎΠ²Π΅Π΄Π΅Ρ‚ΡŒΡΡ ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆΡƒΠ²Π°Ρ‚ΠΈ Π½Π° Π²Π΅Π»ΠΈΠΊΡ– відстані, \nΡ‰ΠΎΠ± Π·Π½Π°ΠΉΡ‚ΠΈ ΠΊΠΎΠ½ΠΊΡ€Π΅Ρ‚Π½Ρ– рСсурси для виТивання Ρ‚Π° Ρ€ΠΎΠ·Π²ΠΈΡ‚ΠΊΡƒ. Моди Π² Ρ†ΡŒΠΎΠΌΡƒ Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– Π½Π°Π΄Π°Π΄ΡƒΡ‚ΡŒ Ρ‚ΠΎΠ±Ρ– Ρ€Ρ–Π·Π½ΠΎΠΌΠ°Π½Ρ–Ρ‚Π½Ρ– Π²Π°Ρ€Ρ–Π°Π½Ρ‚ΠΈ транспорту.", @@ -3795,8 +4520,8 @@ "quests.tfg_tips.glider.subtitle": "Π¦Π΅ Π½Π΅ Breath of the Wild", "quests.tfg_tips.glider.desc": "&dΠ”Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½&r ΠΌΠΎΠΆΠ½Π° використовувати для ковзання Ρƒ ΠΏΠΎΠ²Ρ–Ρ‚Ρ€Ρ–. Π’ΠΈ &cΠ½Π΅ моТСш Π½Π°Π±ΠΈΡ€Π°Ρ‚ΠΈ висоту&r Π· Π½ΠΈΠΌ, Π°Π»Π΅ Π²Ρ–Π½ корисний для подолання Π²Π΅Π»ΠΈΠΊΠΈΡ… відстанСй, \nякщо стрибати Π· висоти. \nΠ§ΡƒΠ΄ΠΎΠ²ΠΎ ΠΏΠΎΡ”Π΄Π½ΡƒΡ”Ρ‚ΡŒΡΡ Π· &bΠ Π΅Π°ΠΊΡ‚ΠΈΠ²Π½ΠΈΠΌΠΈ Ранцями&r!", "quests.tfg_tips.reinforced_glider.title": "ПосилСний Π΄Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½", - "quests.tfg_tips.reinforced_glider.subtitle": "Π•Π»Ρ–Ρ‚Ρ€Π° Π²ΠΈΡ‚Ρ€Π°Ρ‡Π΅Π½Π° Π½Π΅ Π΄Π°Ρ€ΠΌΠ°...?", - "quests.tfg_tips.reinforced_glider.desc": "Π―ΠΊΡ‰ΠΎ Ρ‚ΠΈ ΠΏΠΎΡ”Π΄Π½Π°Ρ”Ρˆ &aΠ•Π»Ρ–Ρ‚Ρ€Ρƒ&r, створСну Π² &6HV&r, Π· &aΠ”Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½ΠΎΠΌ&r, Ρ‚ΠΎ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ”Ρˆ &dПосилСний Π”Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½.&r Π’Ρ–Π½ ΠΌΠ°Ρ” Π±Ρ–Π»ΡŒΡˆΡƒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ Ρ– Π²ΠΈΡ‰Ρƒ ΠΌΠ΅ΠΆΡƒ ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ–.", + "quests.tfg_tips.reinforced_glider.subtitle": "Π›Π΅Π³ΠΊΠΈΠΉ, ΠΌΠΎΠ² пір’їнка!", + "quests.tfg_tips.reinforced_glider.desc": "&dПосилСний Π΄Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½&r β€” Ρ†Π΅ ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½Π° вСрсія &aΠ”Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½Π°&r. Завдяки вдосконалСній Ρ€Π°ΠΌΡ– Π· &aΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ&r Ρ‚Π° ΠΏΠΎΠ»ΠΎΡ‚Π½Ρƒ, Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½ΠΎΠΌΡƒ Π· &aΠŸΠΎΡΠΈΠ»Π΅Π½ΠΎΡ— Ρ‚ΠΊΠ°Π½ΠΈΠ½ΠΈ&r Π°Π±ΠΎ &aΠ›Π΅Π³ΠΊΠΎΡ— Ρ‚ΠΊΠ°Π½ΠΈΠ½ΠΈ&r, Π²ΠΈ Ρ‚Π΅ΠΏΠ΅Ρ€ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΡˆΠΈΡ€ΡΡ‚ΠΈ Π½Π΅Π±ΠΎΠΌ Π½Π° &cΠΏΠΎΠ΄Π²Ρ–ΠΉΠ½Ρ–ΠΉ ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ–&r! \nΠ’Ρ–Π½ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠ°Ρ” &cΠ±Ρ–Π»ΡŒΡˆΡƒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ&r, Π½Ρ–ΠΆ Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ Π΄Π΅Π»ΡŒΡ‚Π°ΠΏΠ»Π°Π½, Ρ– ΠΌΠΎΠΆΠ΅ Π±ΡƒΡ‚ΠΈ &cΠ²Ρ–Π΄Ρ€Π΅ΠΌΠΎΠ½Ρ‚ΠΎΠ²Π°Π½ΠΈΠΉ&r Π² Π·Π±ΠΈΡ€Π°Ρ‡Ρ–. \n\n&3ΠŸΠΎΡ€Π°Π΄Π°:&r \nВикористання &aΠ¨ΠΎΠ²ΠΊΠΎΠ²ΠΎΡ— Ρ‚ΠΊΠ°Π½ΠΈΠ½ΠΈ&r Π°Π±ΠΎ &aΠ€Π°Π½Ρ‚ΠΎΠΌΠ½ΠΎΠ³ΠΎ ΡˆΠΎΠ²ΠΊΡƒ&r, Π·Π΄ΠΎΠ±ΡƒΡ‚ΠΈΡ… Ρƒ &4Π‘Π΅Π·ΠΎΠ΄Π½Ρ–&r, Π·ΠΌΠ΅Π½ΡˆΡƒΡ” Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈ Ρ‚ΠΊΠ°Π½ΠΈΠ½ΠΈ Π½Π° &e2/3&r як для створСння, Ρ‚Π°ΠΊ Ρ– для Ρ€Π΅ΠΌΠΎΠ½Ρ‚Ρƒ! \nΠ”ΠΎΡΡΠ³Π½ΡƒΠ²ΡˆΠΈ рівня &6HV&r, Π²ΠΈ Ρ‚Π°ΠΊΠΎΠΆ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використовувати &aΠŸΠΎΠ»Ρ–ΠΊΠ°ΠΏΡ€ΠΎΠ»Π°ΠΊΡ‚Π°ΠΌΠΎΠ²Ρƒ Ρ‚ΠΊΠ°Π½ΠΈΠ½Ρƒ&r як ΠΎΠ΄ΠΈΠ½ Ρ–Π· ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»Ρ–Π² Π·Ρ– Π·Π½ΠΈΠΆΠ΅Π½ΠΈΠΌΠΈ Π²ΠΈΡ‚Ρ€Π°Ρ‚Π°ΠΌΠΈ.", "quests.tfg_tips.immersive_aircraft.title": "Immersive Aircraft", "quests.tfg_tips.immersive_aircraft.subtitle": "Π›Π΅Ρ‚ΠΈ ΠΊΡ€Ρ–Π·ΡŒ нСбСса Π·Ρ– стилСм.", "quests.tfg_tips.immersive_aircraft.desc": "&2Immersive Aircraft&r β€” Ρ†Π΅ ΠΌΠΎΠ΄, присвячСний Π°Π²Ρ–Π°Ρ†Ρ–Ρ—, Ρ‰ΠΎ дозволяє Π΄ΠΎΠ»Π°Ρ‚ΠΈ Π²Π΅Π»ΠΈΠΊΡ– відстані Ρƒ Π½Π΅Π±Ρ–.", @@ -3805,7 +4530,7 @@ "quests.tfg_tips.aircraft_upgrades.desc": "&2Immersive Aircraft&r ΠΌΠ°Ρ” &aОновлСння Авіації&r, які ΠΌΠΎΠΆΠ½Π° встановити, Ρ‰ΠΎΠ± ΠΏΠΎΠΊΡ€Π°Ρ‰ΠΈΡ‚ΠΈ характСристики Π»Ρ–Ρ‚Π°Π»ΡŒΠ½ΠΈΡ… Π°ΠΏΠ°Ρ€Π°Ρ‚Ρ–Π², Π·ΠΎΠΊΡ€Π΅ΠΌΠ° ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ, ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŒ Π·Π»ΡŒΠΎΡ‚Ρƒ, Π²ΠΈΡ‚Ρ€Π°Ρ‚ΠΈ пального Ρ‚ΠΎΡ‰ΠΎ. Існує Π΄Π²Π° Ρ‚ΠΈΠΏΠΈ оновлСнь: &bΠ·Π²ΠΈΡ‡Π°ΠΉΠ½Ρ–&r Ρ‚Π° &dΡ€Π°Π½Π³ΠΎΠ²Ρ–.&r \n\nΠ£ Ρ†ΡŒΠΎΠΌΡƒ Π·Π°Π²Π΄Π°Π½Π½Ρ– прСдставлСні &bΠ·Π²ΠΈΡ‡Π°ΠΉΠ½Ρ–&r оновлСння. Π”ΡƒΠΌΠ°Ρ”Ρˆ, змоТСш Π·Ρ–Π±Ρ€Π°Ρ‚ΠΈ Ρ—Ρ… усі?", "quests.tfg_tips.steam_upgrades.title": "ОновлСння Π°Π²Ρ–Π°Ρ†Ρ–Ρ—: ΠŸΠ°Ρ€ΠΎΠ²Ρ–", "quests.tfg_tips.steam_upgrades.subtitle": "Immersive Aircraft Π·ΡƒΡΡ‚Ρ€Ρ–Ρ‡Π°Ρ”Ρ‚ΡŒΡΡ Π· ранТуванням GregTech!", - "quests.tfg_tips.steam_upgrades.desc": "Π”Ρ€ΡƒΠ³ΠΈΠΉ Ρ‚ΠΈΠΏ оновлСнь Π°Π²Ρ–Π°Ρ†Ρ–Ρ— β€” Ρ†Π΅ &dΠ Π°Π½Π³ΠΎΠ²Ρ– ОновлСння.&r Π’ΠΎΠ½ΠΈ створСні Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎ Π΄ΠΎ &3GregTech&r систСми Ρ€Π°Π½Π³Ρ–Π², ΠΏΠΎΡ‡ΠΈΠ½Π°ΡŽΡ‡ΠΈ Π· &8ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠ³ΠΎ&r рівня Ρ– Π°ΠΆ Π΄ΠΎ &5EV.&r \n\nΠŸΠ°Ρ€ΠΎΠ²Ρ– оновлСння β€” Π½Π°ΠΉΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΡ– Ρ‚Π° Π½Π°ΠΉΡ€Π°Π½Ρ–ΡˆΡ– Ρƒ створСнні, Π²ΠΎΠ½ΠΈ Π²ΠΈΠΌΠ°Π³Π°ΡŽΡ‚ΡŒ Ρ…ΠΎΡ‡Π° Π± Π±Π°Π·ΠΎΠ²ΠΈΡ… знань ΠΏΡ€ΠΎ &bΠ§ΠΎΡ€Π½Ρƒ Π‘Ρ‚Π°Π»ΡŒ.&r \n\n&dΠŸΠ°Ρ€ΠΎΠ²Ρ– Авіаційні Π”Π²ΠΈΠ³ΡƒΠ½ΠΈ&r Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для створСння Π±Ρ–Π»ΡŒΡˆ складних Π»Ρ–Ρ‚Π°Π»ΡŒΠ½ΠΈΡ… Π°ΠΏΠ°Ρ€Π°Ρ‚Ρ–Π², Ρ‚Π°ΠΊΠΈΡ… як &eΠ‘Ρ–ΠΏΠ»Π°Π½&r Ρ‚Π° &cΠ’Ρ–ΠΉΡΡŒΠΊΠΎΠ²ΠΈΠΉ ΠšΠΎΡ€Π°Π±Π΅Π»ΡŒ.&r", + "quests.tfg_tips.steam_upgrades.desc": "Π”Ρ€ΡƒΠ³ΠΈΠΉ Ρ‚ΠΈΠΏ оновлСнь Π°Π²Ρ–Π°Ρ†Ρ–Ρ— β€” Ρ†Π΅ &dΠ Π°Π½Π³ΠΎΠ²Ρ– ОновлСння.&r Π’ΠΎΠ½ΠΈ створСні Π²Ρ–Π΄ΠΏΠΎΠ²Ρ–Π΄Π½ΠΎ Π΄ΠΎ &3GregTech&r систСми Ρ€Π°Π½Π³Ρ–Π², ΠΏΠΎΡ‡ΠΈΠ½Π°ΡŽΡ‡ΠΈ Π· &7ΠŸΠ°Ρ€ΠΎΠ²ΠΎΠ³ΠΎ&r рівня Ρ– Π°ΠΆ Π΄ΠΎ &5EV.&r \n\nΠŸΠ°Ρ€ΠΎΠ²Ρ– оновлСння β€” Π½Π°ΠΉΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΡ– Ρ‚Π° Π½Π°ΠΉΡ€Π°Π½Ρ–ΡˆΡ– Ρƒ створСнні, Π²ΠΎΠ½ΠΈ Π²ΠΈΠΌΠ°Π³Π°ΡŽΡ‚ΡŒ Ρ…ΠΎΡ‡Π° Π± Π±Π°Π·ΠΎΠ²ΠΈΡ… знань ΠΏΡ€ΠΎ &bΠ§ΠΎΡ€Π½Ρƒ Π‘Ρ‚Π°Π»ΡŒ.&r \n\n&dΠŸΠ°Ρ€ΠΎΠ²Ρ– Авіаційні Π”Π²ΠΈΠ³ΡƒΠ½ΠΈ&r Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡŽΡ‚ΡŒΡΡ для створСння Π±Ρ–Π»ΡŒΡˆ складних Π»Ρ–Ρ‚Π°Π»ΡŒΠ½ΠΈΡ… Π°ΠΏΠ°Ρ€Π°Ρ‚Ρ–Π², Ρ‚Π°ΠΊΠΈΡ… як &eΠ‘Ρ–ΠΏΠ»Π°Π½&r Ρ‚Π° &cΠ’Ρ–ΠΉΡΡŒΠΊΠΎΠ²ΠΈΠΉ ΠšΠΎΡ€Π°Π±Π΅Π»ΡŒ.&r", "quests.tfg_tips.steam_upgrades.task": "Π‘ΡƒΠ΄ΡŒ-якС ΠΏΠ°Ρ€ΠΎΠ²Π΅ оновлСння Π°Π²Ρ–Π°Ρ†Ρ–Ρ—", "quests.tfg_tips.lv_upgrades.title": "ОновлСння Π°Π²Ρ–Π°Ρ†Ρ–Ρ—: LV", "quests.tfg_tips.lv_upgrades.subtitle": "Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Ρ– синій β€” Ρ‚ΠΎΡ‡Π½ΠΎ Π½Π΅ ΠΊΠΎΠ½Ρ„Π»Ρ–ΠΊΡ‚ΡƒΡŽΡ‚ΡŒ.", @@ -3850,7 +4575,7 @@ "quests.tfg_tips.scarlet_biplane.title": "Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π±Ρ–ΠΏΠ»Π°Π½", "quests.tfg_tips.scarlet_biplane.subtitle": "Π©ΠΎ Π·Π° Π²ΠΈΠ΄ΠΎΠ²ΠΈΡ‰e", "quests.tfg_tips.scarlet_biplane.desc": "&3Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π±Ρ–ΠΏΠ»Π°Π½&r β€” Ρ†Π΅ Ρ„Ρ–Π½Π°Π»ΡŒΠ½Π΅ оновлСння для &bΠ›Ρ–Ρ‚Π°ΠΊΡ–Π²&r, Ρ‰ΠΎ Π²ΠΈΠΌΠ°Π³Π°Ρ” &6HV&r ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π². \n\nΠ’Ρ–Π½ ΠΌΡ–ΡΡ‚ΠΈΡ‚ΡŒ &b27 слотів Ρ–Π½Π²Π΅Π½Ρ‚Π°Ρ€ΡŽ&r, &a4 слоти для ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½ΡŒ&r, &c2 слоти для Π·Π±Ρ€ΠΎΡ—&r, Π° Ρ‚Π°ΠΊΠΎΠΆ &4слот для прискорСння&r, як Ρ– Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ Π±Ρ–ΠΏΠ»Π°Π½. \n\nΠ₯ΠΎΡ‡Π° Π²Ρ–Π½ Π΄ΠΎΡ€ΠΎΠ³ΠΈΠΉ, &3Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π±Ρ–ΠΏΠ»Π°Π½&r компСнсує Ρ†Π΅ ΠΏΡ–Π΄Π²ΠΈΡ‰Π΅Π½ΠΎΡŽ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŽ, Π·Π±Ρ–Π»ΡŒΡˆΠ΅Π½ΠΎΡŽ максимальною ΡˆΠ²ΠΈΠ΄ΠΊΡ–ΡΡ‚ΡŽ Ρ‚Π° загальним стилСм.", - "quests.tfg_tips.aluminium_hopper.title": "ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²Π° Π²ΠΎΡ€ΠΎΠ½ΠΊΠ°", + "quests.tfg_tips.aluminium_hopper.title": "ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²Π° Π»Ρ–ΠΉΠΊΠ°", "quests.tfg_tips.aluminium_hopper.subtitle": "Π’Π°ΠΊΠΈΠΉ Π»Π΅Π³ΠΊΠΈΠΉ, Ρ‰ΠΎ ΠΏΠ»Π°Π²Π°Ρ” Π½Π° Π²ΠΎΠ΄Ρ–!", "quests.tfg_tips.aluminium_hopper.desc": "&3ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²ΠΈΠΉ Π₯ΠΎΠΏΠ΅Ρ€&r β€” Ρ†Π΅ ΠΎΠ΄Π½Π΅ Π· Π΄Π²ΠΎΡ… Ρ„Ρ–Π½Π°Π»ΡŒΠ½ΠΈΡ… ΠΏΠΎΠΊΡ€Π°Ρ‰Π΅Π½ΡŒ для &bΠ›Ρ–Ρ‚Π°ΠΊΡ–Π²&r, якС ΠΏΠΎΡ‚Ρ€Π΅Π±ΡƒΡ” ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π² &6HV&r рівня.\n\nΠ’Ρ–Π½ ΠΌΠ°Ρ” &b16 Π‘Π»ΠΎΡ‚Ρ–Π² Π†Π½Π²Π΅Π½Ρ‚Π°Ρ€ΡŽ&r, &a4 Π‘Π»ΠΎΡ‚ΠΈ для ΠŸΠΎΠΊΡ€Π°Ρ‰Π΅Π½ΡŒ&r, &c2 Π‘Π»ΠΎΡ‚ΠΈ для Π—Π±Ρ€ΠΎΡ—&r, 3 місця для сидіння, Π° Ρ‚Π°ΠΊΠΎΠΆ &4Π‘Π»ΠΎΡ‚ для ΠŸΡ–Π΄ΡΠΈΠ»ΡŽΠ²Π°Ρ‡Π°&r β€” як Ρ– стандартний Π±Ρ–ΠΏΠ»Π°Π½.\n\nΠŸΠΎΠΏΡ€ΠΈ високу Π²Π°Ρ€Ρ‚Ρ–ΡΡ‚ΡŒ, &3ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²ΠΈΠΉ Π₯ΠΎΠΏΠ΅Ρ€&r компСнсує Ρ†Π΅ Π½Π°ΡΠ²Π½Ρ–ΡΡ‚ΡŽ Ρ‚Ρ€ΡŒΠΎΡ… ΠΌΡ–ΡΡ†ΡŒ Ρ‚Π° ΠΌΠΎΠΆΠ»ΠΈΠ²Ρ–ΡΡ‚ΡŽ призСмлСння Π½Π° Π²ΠΎΠ΄Ρƒ.", "quests.tfg_tips.firmaciv.title": "Firma: Civilization", @@ -3861,7 +4586,7 @@ "quests.tfg_tips.firmaciv_info.desc": "&3Firma:Civ&r ΠΌΠ°Ρ” 4 Ρ€Ρ–Π·Π½Ρ– Π½Π°Π²Ρ–Π³Π°Ρ†Ρ–ΠΉΠ½Ρ– інструмСнти, ΠΊΠΎΠΆΠ΅Π½ Π· яких Π½Π°Π΄Π°Ρ” Π²Π°ΠΆΠ»ΠΈΠ²Ρƒ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–ΡŽ ΠΏΡ€ΠΎ Ρ‚Π²ΠΎΡ” місцСзнаходТСння Ρƒ світі. Π”ΠΎ Π½ΠΈΡ… Π²Ρ…ΠΎΠ΄ΡΡ‚ΡŒ &dБСкстант&r, &dНавігаційний Ρ…Ρ€ΠΎΠ½ΠΎΠΌΠ΅Ρ‚Ρ€&r, &dΠ‘Π°Ρ€ΠΎΠΌΠ΅Ρ‚Ρ€&r Ρ‚Π° &dКомпас&r; Π±Ρ–Π»ΡŒΡˆΠ΅ Ρ–Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–Ρ— ΠΏΡ€ΠΎ інструмСнти ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ Ρƒ &2ΠŸΠΎΠ»ΡŒΠΎΠ²ΠΎΠΌΡƒ ΠΏΡƒΡ‚Ρ–Π²Π½ΠΈΠΊΡƒ.&r \n\n&3&lΠ›ΠΎΡ€:&r&o Π—Π° замовчуванням Firma:Civ ΠΏΡ€ΠΈΠ±ΠΈΡ€Π°Ρ” ΠΊΠΎΠΎΡ€Π΄ΠΈΠ½Π°Ρ‚ΠΈ, Ρ‰ΠΎΠ± змусити Ρ‚Π΅Π±Π΅ використовувати Ρ—Ρ— Π½Π°Π²Ρ–Π³Π°Ρ†Ρ–ΠΉΠ½Ρ– інструмСнти. Ми Π½Π΅ ΠΌΠΎΠΆΠ΅ΠΌΠΎ Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ†Π΅ Ρ‚ΡƒΡ‚, Ρ‚ΠΎΠΌΡƒ... використовуй Ρ—Ρ…, якщо Ρ…ΠΎΡ‡Π΅Ρˆ зануритися Π² Ρ€ΠΎΠ»ΡŒΠΎΠ²Ρƒ Π³Ρ€Ρƒ.", "quests.tfg_tips.warfare.title": "ΠœΠΎΡ€ΡΡŒΠΊΠ° Π²Ρ–ΠΉΠ½Π°", "quests.tfg_tips.warfare.subtitle": "Π’Π†Π”ΠšΠ Π˜Π™Π’Π• Π’ΠžΠ“ΠžΠΠ¬ Π— Π£Π‘Π†Π₯ Π“ΠΠ ΠœΠΠ’!", - "quests.tfg_tips.warfare.desc": "Π’ΠΈ моТСш оснастити свою &bΠ¨Π»ΡŽΠΏΠΊΡƒ&r вогнСвою ΠΌΡ–Ρ†Ρ†ΡŽ Π·Π° допомогою &dΠ“Π°Ρ€ΠΌΠ°Ρ‚ΠΈ&r Ρ‚Π° Π³Π°Ρ€ΠΌΠ°Ρ‚Π½ΠΈΡ… ядСр, якщо Ρ…ΠΎΡ‡Π΅Ρˆ рознСсти Ρ‰ΠΎΡΡŒ Π½Π° Π΄Ρ€ΡƒΠ·ΠΊΠΈ. \n\nΠ©ΠΎΠ± вистрілити Π· Π³Π°Ρ€ΠΌΠ°Ρ‚ΠΈ, ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ зарядити Ρ—Ρ— &aΠŸΠΎΡ€ΠΎΡ…ΠΎΠΌ, НСоброблСним ΠŸΠ°ΠΏΠ΅Ρ€ΠΎΠΌ&r Ρ‚Π° своїм &aΠ“Π°Ρ€ΠΌΠ°Ρ‚Π½ΠΈΠΌ ядром&r. ΠŸΠΎΡ‚Ρ–ΠΌ Π·Π°ΠΏΠ°Π»ΠΈ ‘Π½Ρ–Ρ‚ Π·Π° допомогою &cΠšΡ€Π΅ΠΌΠ΅Π½ΡŽ Ρ‚Π° Π‘Ρ‚Π°Π»Ρ–.&r", + "quests.tfg_tips.warfare.desc": "Π’ΠΈ моТСш ΠΎΠ·Π±Ρ€ΠΎΡ—Ρ‚ΠΈ свій &bШлюп&r &dΠ“Π°Ρ€ΠΌΠ°Ρ‚ΠΎΡŽ&r Ρ‚Π° ядрами, якщо Π·Π°Ρ…ΠΎΡ‡Π΅Ρˆ рознСсти Ρ‰ΠΎΡΡŒ Π½Π° Π΄Ρ€ΡƒΠ·ΠΊΠΈ. Π©ΠΎΠ± вистрілити Π· Π³Π°Ρ€ΠΌΠ°Ρ‚ΠΈ, ΠΏΠΎΡ‚Ρ€Ρ–Π±Π½ΠΎ зарядити Ρ—Ρ— &aΠŸΠΎΡ€ΠΎΡ…ΠΎΠΌ, НСочищСним ΠΏΠ°ΠΏΠ΅Ρ€ΠΎΠΌ&r Ρ‚Π° своїм &aΠ“Π°Ρ€ΠΌΠ°Ρ‚Π½ΠΈΠΌ ядром&r. ΠŸΠΎΡ‚Ρ–ΠΌ ΠΏΡ–Π΄ΠΏΠ°Π»ΠΈ ‘Π½Ρ–Ρ‚ Π·Π° допомогою &cΠšΡ€Π΅ΡΠ°Π»Π° Ρ‚Π° сталі.&r \n\nНСмає &bШлюпа&r? НС Ρ…Π²ΠΈΠ»ΡŽΠΉΡΡ! Π“Π°Ρ€ΠΌΠ°Ρ‚ΠΈ ΠΌΠΎΠΆΠ½Π° Π²ΡΡ‚Π°Π½ΠΎΠ²Π»ΡŽΠ²Π°Ρ‚ΠΈ ΠΉ стріляти Π· Π·Π΅ΠΌΠ»Ρ– Ρ‚Π°ΠΊ само, як Ρ– Π½Π° &bΠ¨Π»ΡŽΠΏΡ–&r.", "quests.tfg_tips.kayak_materials.title": "Каяк", "quests.tfg_tips.kayak_materials.subtitle": "Π—Π΄ΠΎΠ±ΡƒΠ΄ΡŒ собі Ρ†Π΅ΠΉ каяк.", "quests.tfg_tips.kayak_materials.desc": "&dКаяк&r β€” Ρ†Π΅ Π΄Ρ€ΡƒΠ³ΠΈΠΉ Π½Π°ΠΉΠΏΡ€ΠΎΡΡ‚Ρ–ΡˆΠΈΠΉ Ρ‡ΠΎΠ²Π΅Π½, який ΠΌΠΎΠΆΠ½Π° створити, Π²ΠΈΠΌΠ°Π³Π°ΡŽΡ‡ΠΈ &bВоски&r для &aΠ’ΠΎΠ΄ΠΎΠ½Π΅ΠΏΡ€ΠΎΠ½ΠΈΠΊΠ½ΠΈΡ… ΡˆΠΊΡ–Ρ€&r. Π¦Π΅ Ρ‚Π°ΠΊΠΎΠΆ &cΡ”Π΄ΠΈΠ½ΠΈΠΉ&r Ρ‡ΠΎΠ²Π΅Π½, який ΠΌΠΎΠΆΠ½Π° ΠΏΡ–Π΄Ρ–Π±Ρ€Π°Ρ‚ΠΈ як ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚. ΠŸΠΎΠΏΡ€ΠΈ Ρ‚Π΅, Ρ‰ΠΎ Π²Ρ–Π½ ΠΌΠ°Ρ” &dΠΎΠ΄Π½Π΅ ΠΏΠ°ΡΠ°ΠΆΠΈΡ€ΡΡŒΠΊΠ΅&r місцС, Ρ†Π΅ найшвидший Ρ‡ΠΎΠ²Π΅Π½ Ρƒ Π³Ρ€Ρ– Π΄ΠΎ сталСвої Π΅ΠΏΠΎΡ…ΠΈ &dШлюпки!&r", @@ -3935,7 +4660,7 @@ "quests.tfg_tips.beehive.desc": "Π©ΠΎΠ± Ρ€ΠΎΠ·ΠΏΠΎΡ‡Π°Ρ‚ΠΈ свою ΠΏΠΎΠ΄ΠΎΡ€ΠΎΠΆ Ρƒ Π±Π΄ΠΆΡ–Π»ΡŒΠ½ΠΈΡ†Ρ‚Π²Ρ–, Ρ‚ΠΎΠ±Ρ– Π·Π½Π°Π΄ΠΎΠ±Π»ΡΡ‚ΡŒΡΡ &bΠ’ΡƒΠ»ΠΈΠΊ&r Ρ‚Π° &aΠ Π°ΠΌΠΊΠ° для Π²ΡƒΠ»ΠΈΠΊΠ°.&r На Π²Ρ–Π΄ΠΌΡ–Π½Ρƒ Π²Ρ–Π΄ Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΎΠ³ΠΎ Minecraft, Π²ΡƒΠ»ΠΈΠΊΠΈ Π½Π΅ Π·β€™ΡΠ²Π»ΡΡŽΡ‚ΡŒΡΡ ΠΏΡ€ΠΈΡ€ΠΎΠ΄Π½ΠΈΠΌ Ρ‡ΠΈΠ½ΠΎΠΌβ€” Π±Π΄ΠΆΠΎΠ»ΠΈ Π·β€™ΡΠ²Π»ΡΡŽΡ‚ΡŒΡΡ лишС Ρƒ створСних Π³Ρ€Π°Π²Ρ†Π΅ΠΌ &bΠ’ΡƒΠ»ΠΈΠΊΠ°Ρ…&r Π· Ρ€Π°ΠΌΠΊΠ°ΠΌΠΈ, засСлСними &eΠšΠΎΡ€ΠΎΠ»Π΅Π²Π°ΠΌΠΈ.&r Шанс засСлСння Ρ€Π°ΠΌΠΊΠΈ ΠΊΠΎΡ€ΠΎΠ»Π΅Π²ΠΎΡŽ Π·Π°Π»Π΅ΠΆΠΈΡ‚ΡŒ Π²Ρ–Π΄ випадковості, Π°Π»Π΅ Ρ‚ΠΈ моТСш ΠΏΡ–Π΄Π²ΠΈΡ‰ΠΈΡ‚ΠΈ свої шанси, Ρ€ΠΎΠ·ΠΌΡ–ΡΡ‚ΠΈΠ²ΡˆΠΈ &dΠΊΠ²Ρ–Ρ‚ΠΈ&r Π½Π°Π²ΠΊΠΎΠ»ΠΎ Π²ΡƒΠ»ΠΈΠΊΠ°. \n\nΠ―ΠΊ Ρ‚Ρ–Π»ΡŒΠΊΠΈ Ρ€Π°ΠΌΠΊΠ° Π±ΡƒΠ΄Π΅ засСлСна, Π²ΠΎΠ½Π° ΠΏΠΎΡ‡Π½Π΅ ΡΡ‚Π²ΠΎΡ€ΡŽΠ²Π°Ρ‚ΠΈ Π±Π΄ΠΆΡ–Π», які Π²ΠΈΡ€ΠΎΠ±Π»ΡΡ‚ΠΈΠΌΡƒΡ‚ΡŒ ΠΌΠ΅Π΄.", "quests.tfg_tips.not_the_bees.title": "Π‘Π΄ΠΆΠΎΠ»ΡΡ€ΡΡŒΠΊΠ° броня", "quests.tfg_tips.not_the_bees.subtitle": "Π’Π†Π›Π¬ΠšΠ˜ НЕ Π‘Π”Π–ΠžΠ›Π˜!", - "quests.tfg_tips.not_the_bees.desc": "Π‘Π΄ΠΆΠΎΠ»ΠΈ Π½Π΅ Π»ΡŽΠ±Π»ΡΡ‚ΡŒ, ΠΊΠΎΠ»ΠΈ Ρ—Ρ… Ρ‚ΡƒΡ€Π±ΡƒΡŽΡ‚ΡŒ Ρ– Π·Π±ΠΈΡ€Π°ΡŽΡ‚ΡŒ Ρ—Ρ…Π½Ρ–ΠΉ Ρ†Ρ–Π½Π½ΠΈΠΉ ΠΌΠ΅Π΄ Ρ‚Π° віск. Π„ Ρ‚Ρ€ΠΈ способи Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ†Π΅ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ: \n\n* &dΠ—Π±Ρ–Ρ€ Ρƒ Π½Ρ–Ρ‡Π½ΠΈΠΉ час&r \n* &dВикористання багаття&r \n* &dВикористання Π±Π΄ΠΆΠΎΠ»ΡΡ€ΡΡŒΠΊΠΎΡ— Π±Ρ€ΠΎΠ½Ρ–&r", + "quests.tfg_tips.not_the_bees.desc": "Π‘Π΄ΠΆΠΎΠ»Π°ΠΌ Π½Π΅ ΠΏΠΎΠ΄ΠΎΠ±Π°Ρ”Ρ‚ΡŒΡΡ, ΠΊΠΎΠ»ΠΈ Ρ—Ρ… Ρ‚ΡƒΡ€Π±ΡƒΡŽΡ‚ΡŒ Ρ– Π·Π±ΠΈΡ€Π°ΡŽΡ‚ΡŒ Ρ—Ρ…Π½Ρ–ΠΉ Π΄ΠΎΡ€ΠΎΠ³ΠΎΡ†Ρ–Π½Π½ΠΈΠΉ ΠΌΠ΅Π΄ Ρ‚Π° віск Π°Π±ΠΎ Ρ€ΡƒΡ…Π°ΡŽΡ‚ΡŒ Ρ€Π°ΠΌΠΊΠΈ. Π„ Ρ‚Ρ€ΠΈ способи Π·Ρ€ΠΎΠ±ΠΈΡ‚ΠΈ Ρ†Π΅ Π±Π΅Π·ΠΏΠ΅Ρ‡Π½ΠΎ: \n\n* &dΠ—Π±Ρ–Ρ€ ΡƒΠ½ΠΎΡ‡Ρ–&r \n* &dВикористання багаття&r \n* &dВикористання Π‘Ρ€ΠΎΠ½Ρ– пасічника&r", "quests.tfg_tips.not_the_bees.task": "Π― Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚Π°ΡŽ Π°Π±ΠΎ Багаття, Π°Π±ΠΎ ΠΏΠΎΡ‡Π΅ΠΊΠ°ΡŽ Π—Π°Ρ…ΠΎΠ΄Ρƒ сонця.", "quests.tfg_tips.honey.title": "МСд", "quests.tfg_tips.honey.subtitle": "Ой, Ρ…Π°Π»Π΅ΠΏΠ°...", @@ -4093,7 +4818,7 @@ "quests.tfg_tips.tools_tips.subtitle": "Основи закручування ΠΉ відкручування 101.", "quests.tfg_tips.tools_tips.tools.title": "ІнструмСнти", "quests.tfg_tips.tools_tips.tools.subtitle": "Π’Π° Π·Ρ€Π΅ΡˆΡ‚ΠΎΡŽ β€” всС ΠΎΠ΄Π½ΠΎ ΠΌΠΎΠ»ΠΎΡ‚ΠΎΠΊ.", - "quests.tfg_tips.tools_tips.tools.desc": "Π„Π΄ΠΈΠ½Π΅, Ρ‰ΠΎ відрізняє Π»ΡŽΠ΄ΠΈΠ½Ρƒ Π²Ρ–Π΄ Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ β€” Ρ†Π΅ нашС використання &l&bІнструмСнтів&r&r. &8&oΠ₯ΠΎΡ‡Π°... ΠΌΠ°Π²ΠΏΠΈ, мавпСнята, Π΄Π΅Π»ΡŒΡ„Ρ–Π½ΠΈ, Π²ΠΎΡ€ΠΎΠ½ΠΈ, Π²ΠΈΠ΄Ρ€ΠΈ, Π²ΠΎΡΡŒΠΌΠΈΠ½ΠΎΠ³ΠΈβ€¦&r&r Використовуй свої Π½Π°Π²ΠΈΡ‡ΠΊΠΈ Ρ‚Π° інструмСнти, Ρ‰ΠΎΠ± якнайкращС ΠΏΡ€ΠΎΠΆΠΈΡ‚ΠΈ Ρ†Π΅ΠΉ світ Ρ– &5Π·Π΅ΠΊΠΎΠ½ΠΎΠΌΠΈΡ‚ΠΈ собі&r Ρ‚Ρ€ΠΎΡ…ΠΈ Π·ΡƒΡΠΈΠ»ΡŒ", + "quests.tfg_tips.tools_tips.tools.desc": "Π„Π΄ΠΈΠ½Π΅, Ρ‰ΠΎ відрізняє Π»ΡŽΠ΄ΠΈΠ½Ρƒ Π²Ρ–Π΄ Ρ‚Π²Π°Ρ€ΠΈΠ½ΠΈ β€” Ρ†Π΅ нашС використання &l&bІнструмСнтів&r&r. &7&oΠ₯ΠΎΡ‡Π°... ΠΌΠ°Π²ΠΏΠΈ, мавпСнята, Π΄Π΅Π»ΡŒΡ„Ρ–Π½ΠΈ, Π²ΠΎΡ€ΠΎΠ½ΠΈ, Π²ΠΈΠ΄Ρ€ΠΈ, Π²ΠΎΡΡŒΠΌΠΈΠ½ΠΎΠ³ΠΈβ€¦&r&r Використовуй свої Π½Π°Π²ΠΈΡ‡ΠΊΠΈ Ρ‚Π° інструмСнти, Ρ‰ΠΎΠ± якнайкращС ΠΏΡ€ΠΎΠΆΠΈΡ‚ΠΈ Ρ†Π΅ΠΉ світ Ρ– &5Π·Π΅ΠΊΠΎΠ½ΠΎΠΌΠΈΡ‚ΠΈ собі&r Ρ‚Ρ€ΠΎΡ…ΠΈ Π·ΡƒΡΠΈΠ»ΡŒ", "quests.tfg_tips.tools_tips.seed_oil.title": "ПальнС для Π›Π°ΠΌΠΏΠΈ: ΠžΠ»Ρ–Ρ Π· Насіння", "quests.tfg_tips.tools_tips.seed_oil.subtitle": "Π‘ΠΌΠ°Ρ‡Π½ΠΎ ΠΏΠ°Ρ…Π½Π΅, ΠΊΠΎΠ»ΠΈ Π³ΠΎΡ€ΠΈΡ‚ΡŒ.", "quests.tfg_tips.tools_tips.seed_oil.desc": "&dΠžΠ»Ρ–Ρ Π· Насіння&r слугуватимС Ρ‚ΠΎΠ±Ρ– Π²Ρ€Π°ΠΆΠ°ΡŽΡ‡Ρ– &c72&r Π΄Π½Ρ–.", @@ -4112,5 +4837,27 @@ "quests.tfg_tips.tools_tips.harvest_basket.title": "Кошики для Π²Ρ€ΠΎΠΆΠ°ΡŽ", "quests.tfg_tips.tools_tips.harvest_basket.subtitle": "Для Π·ΠΌΠ°Π³Π°Π»ΡŒΠ½ΠΈΡ… ΠΏΠΈΡ€ΠΎΠ³Ρ–Π² ΠΏΠ΅ΠΊΠ°Ρ€Ρ–Π².", "quests.tfg_tips.tools_tips.harvest_basket.task": "Π‘ΡƒΠ΄ΡŒ-який #tfg:harvester", - "quests.tfg_tips.tools_tips.harvest_basket.desc": "&l&2Кошики для Π²Ρ€ΠΎΠΆΠ°ΡŽ&r&r β€” Π½ΠΎΠ²ΠΈΠΉ інструмСнт, створСний ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΎ для &5TFG&r! Π¦Ρ– кошики Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ΡŒ Π·Π±ΠΈΡ€Π°Ρ‚ΠΈ Ρ†Ρ–Π»Ρ– Π΄Π΅Ρ€Π΅Π²Π° Ρ‚Π° ΠΊΡƒΡ‰Ρ– Π· Ρ„Ρ€ΡƒΠΊΡ‚Π°ΠΌΠΈ ΠΎΠ΄Π½ΠΈΠΌ клацанням ПКМ! Π—Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ &6Кошик для Π²Ρ€ΠΎΠΆΠ°ΡŽ&r ΠΌΠ°Ρ” Π±Π°Π·ΠΎΠ²Ρƒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ &n128&r. А ΠΎΡ‚ &3ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²ΠΈΠΉ кошик&r Π½Π΅ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ” ΠΆΠΎΠ΄Π½ΠΈΡ… пошкодТСнь ΠΏΡ€ΠΈ використанні." + "quests.tfg_tips.tools_tips.harvest_basket.desc": "&l&2Кошики для Π²Ρ€ΠΎΠΆΠ°ΡŽ&r&r β€” Π½ΠΎΠ²ΠΈΠΉ інструмСнт, створСний ΡΠΏΠ΅Ρ†Ρ–Π°Π»ΡŒΠ½ΠΎ для &5TFG&r! Π¦Ρ– кошики Π΄ΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‚ΡŒ Π·Π±ΠΈΡ€Π°Ρ‚ΠΈ Ρ†Ρ–Π»Ρ– Π΄Π΅Ρ€Π΅Π²Π° Ρ‚Π° ΠΊΡƒΡ‰Ρ– Π· Ρ„Ρ€ΡƒΠΊΡ‚Π°ΠΌΠΈ ΠΎΠ΄Π½ΠΈΠΌ клацанням ПКМ! Π—Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ &6Кошик для Π²Ρ€ΠΎΠΆΠ°ΡŽ&r ΠΌΠ°Ρ” Π±Π°Π·ΠΎΠ²Ρƒ ΠΌΡ–Ρ†Π½Ρ–ΡΡ‚ΡŒ &n128&r. А ΠΎΡ‚ &3ΠΠ»ΡŽΠΌΡ–Π½Ρ–Ρ”Π²ΠΈΠΉ кошик&r Π½Π΅ ΠΎΡ‚Ρ€ΠΈΠΌΡƒΡ” ΠΆΠΎΠ΄Π½ΠΈΡ… пошкодТСнь ΠΏΡ€ΠΈ використанні.", + "quests.tfg_tips.transportation_tips.rnr_plow.title": "Π’Ρ–Π·ΠΎΠΊ для мощСння", + "quests.tfg_tips.transportation_tips.rnr_plow.subtitle": "Римляни Π±ΡƒΠ»ΠΈ Π± Π³ΠΎΡ€Π΄Ρ–.", + "quests.tfg_tips.transportation_tips.rnr_plow.desc": "Π”ΠΎΡ€ΠΎΠ³ΠΈ β€” Ρ†Π΅ Ρ‡ΡƒΠ΄ΠΎΠ²ΠΎ! АлС Ρ–Π½ΠΎΠ΄Ρ– Π²ΠΈ Ρ‚Ρ€ΠΎΡ…ΠΈ Π²Ρ‚ΠΎΠΌΠ»ΡŽΡ”Ρ‚Π΅ΡΡ Π²Ρ–Π΄ постійних ΠΏΡ€Π°Π²ΠΈΡ… ΠΊΠ»Ρ–ΠΊΡ–Π². Π—Π°ΠΌΡ–ΡΡ‚ΡŒ Ρ‚ΠΎΠ³ΠΎ, Ρ‰ΠΎΠ± Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ Π΄ΠΎΡ€ΠΎΠ³ΠΈ для свого коня, &3Π΄ΠΎΠ·Π²ΠΎΠ»ΡŒΡ‚Π΅ коню Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ Π΄ΠΎΡ€ΠΎΠ³ΠΈ для вас&r! \n&dΠ’Ρ–Π·ΠΎΠΊ для мощСння&r β€” Ρ†Π΅ ΡƒΠ½Ρ–ΠΊΠ°Π»ΡŒΠ½ΠΈΠΉ &cΠ²Ρ–Π·ΠΎΠΊ Astikor&r, Ρ€ΠΎΠ·Ρ€ΠΎΠ±Π»Π΅Π½ΠΈΠΉ для TFG. Π¦Π΅ΠΉ Π²Ρ–Π·ΠΎΠΊ дозволяє Π°Π²Ρ‚ΠΎΠΌΠ°Ρ‚ΠΈΡ‡Π½ΠΎ Π±ΡƒΠ΄ΡƒΠ²Π°Ρ‚ΠΈ &cRnR Π΄ΠΎΡ€ΠΎΠ³ΠΈ&r Ρ–Π· Π½Π°Π»Π°ΡˆΡ‚ΠΎΠ²ΡƒΠ²Π°Π½ΠΎΡŽ ΡˆΠΈΡ€ΠΈΠ½ΠΎΡŽ Ρ‚Π° Π½Π°Π²Ρ–Ρ‚ΡŒ Ρƒ Ρ€Π΅ΠΆΠΈΠΌΡ– Ρ€Π°Π½Π΄ΠΎΠΌΡ–Π·Π°Ρ†Ρ–Ρ—.", + "quests.tfg_tips.tools_tips.mattocks.title": "Mattocks", + "quests.tfg_tips.tools_tips.mattocks.subtitle": "Π›ΠΎΠΏΠ°Ρ‚ΠΈ просто Π½Π΅Π΄ΠΎΡΡ‚Π°Ρ‚Π½ΡŒΠΎ.", + "quests.tfg_tips.tools_tips.mattocks.task0": "Any Mattock", + "quests.tfg_tips.tools_tips.mattocks.task1": "Π‘ΡƒΠ΄ΡŒ-який Π΄ΠΎΡ€ΠΎΠΆΠ½Ρ–ΠΉ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»", + "quests.tfg_tips.tools_tips.mattocks.desc": "&cMattocks&r β€” Ρ†Π΅ ваш ΠΊΠ»ΡŽΡ‡ Π΄ΠΎ Π±ΡƒΠ΄Ρ–Π²Π½ΠΈΡ†Ρ‚Π²Π° Π΄ΠΎΡ€Ρ–Π³ Ρƒ TFG. Π‡Ρ… ΠΌΠΎΠΆΠ½Π° ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ ΡˆΠ»ΡΡ…ΠΎΠΌ відливання Ρƒ Ρ„ΠΎΡ€ΠΌΡƒ, як Ρ– Π±ΡƒΠ΄ΡŒ-який Ρ–Π½ΡˆΠΈΠΉ інструмСнт TFC. Π©ΠΎΠ± використати mattocks, Π·ΠΌΡ–Π½Ρ–Ρ‚ΡŒ ΠΉΠΎΠ³ΠΎ Ρ€Π΅ΠΆΠΈΠΌ (ΠΊΠ»Π°Π²Ρ–ΡˆΠ° Π·Π° замовчуванням: &3&lN&r&r) Π½Π° Β«ΠΏΠΎΠ²Π½ΠΈΠΉ Π±Π»ΠΎΠΊΒ». \nΠŸΡ–ΡΠ»Ρ Ρ†ΡŒΠΎΠ³ΠΎ Π²ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΊΠ»Π°Ρ†Π½ΡƒΡ‚ΠΈ ΠΏΡ€Π°Π²ΠΎΡŽ кнопкою ΠΌΠΈΡˆΡ– ΠΏΠΎ Π·Π΅ΠΌΠ»Ρ– Ρ‡ΠΈ Ρ‚Ρ€Π°Π²Ρ–, Ρ‰ΠΎΠ± ΡƒΡ‚Ρ€Π°ΠΌΠ±ΡƒΠ²Π°Ρ‚ΠΈ Ρ—Ρ—. ΠŸΠΎΡ‚Ρ–ΠΌ ΠΌΠΎΠΆΠ½Π° накласти &6Ρ‰Π΅Π±Π΅Π½Π΅Π²Ρƒ основу&r, Π° після Ρ†ΡŒΠΎΠ³ΠΎ β€” ΠΎΠ±Ρ€Π°Π½ΠΈΠΉ Π²Π°ΠΌΠΈ ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π».", + "quests.tfg_tips.tools_tips.base_course.title": "Основа Π΄ΠΎΡ€ΠΎΠ³ΠΈ", + "quests.tfg_tips.tools_tips.base_course.subtitle": "Основа всіх Π΄ΠΎΠ±Ρ€ΠΈΡ… Π΄ΠΎΡ€Ρ–Π³.", + "quests.tfg_tips.tools_tips.base_course.task": "ΠŸΠΎΠ΄ΠΈΠ²Ρ–Ρ‚ΡŒΡΡ Π½Π° основу Π΄ΠΎΡ€ΠΎΠ³ΠΈ", + "quests.tfg_tips.tools_tips.gravel_roads.title": "Π“Ρ€Π°Π²Ρ–ΠΉΠ½Ρ– Π΄ΠΎΡ€ΠΎΠ³ΠΈ", + "quests.tfg_tips.tools_tips.gravel_roads.subtitle": "На вас Ρ‡Π΅ΠΊΠ°Ρ” вибоїста ΠΏΠΎΡ—Π·Π΄ΠΊΠ°.", + "quests.tfg_tips.tools_tips.gravel_roads.task": "Π‘ΡƒΠ΄ΡŒ-який ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» для Π³Ρ€Π°Π²Ρ–ΠΉΠ½ΠΎΡ— Π΄ΠΎΡ€ΠΎΠ³ΠΈ", + "quests.tfg_tips.tools_tips.gravel_roads.desc": "Π¦Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ β€” ΠΏΡ€ΠΈ нанСсСнні Π½Π° основу Π΄ΠΎΡ€ΠΎΠ³ΠΈ β€” ΡƒΡ‚Π²ΠΎΡ€ΡŽΡŽΡ‚ΡŒ покриття, якС Π΄Π°Ρ” &b&l10%%&r&r приріст ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ– Ρ…ΠΎΠ΄ΡŒΠ±ΠΈ.", + "quests.tfg_tips.tools_tips.brick_roads.title": "ЦСгляні Π΄ΠΎΡ€ΠΎΠ³ΠΈ", + "quests.tfg_tips.tools_tips.brick_roads.subtitle": "БкСйтбордисти, остСрігайтСся.", + "quests.tfg_tips.tools_tips.brick_roads.task": "Π‘ΡƒΠ΄ΡŒ-який ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π» для цСгляної Π΄ΠΎΡ€ΠΎΠ³ΠΈ", + "quests.tfg_tips.tools_tips.brick_roads.desc": "Π¦Ρ– ΠΌΠ°Ρ‚Π΅Ρ€Ρ–Π°Π»ΠΈ β€” ΠΏΡ€ΠΈ нанСсСнні Π½Π° основу Π΄ΠΎΡ€ΠΎΠ³ΠΈ β€” ΡƒΡ‚Π²ΠΎΡ€ΡŽΡŽΡ‚ΡŒ покриття, якС Π΄Π°Ρ” &b&l20%%&r&r приріст ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ– Ρ…ΠΎΠ΄ΡŒΠ±ΠΈ.", + "quests.tfg_tips.tools_tips.concrete_roads.title": "Π‘Π΅Ρ‚ΠΎΠ½Π½Ρ– Π΄ΠΎΡ€ΠΎΠ³ΠΈ", + "quests.tfg_tips.tools_tips.concrete_roads.subtitle": "МайТС Π²Π°Ρ€Ρ‚Π΅ всіх Π·ΡƒΡΠΈΠ»ΡŒ.", + "quests.tfg_tips.tools_tips.concrete_roads.desc": "&6Π’ΠΎΠ»ΠΎΠ³Ρƒ Π±Π΅Ρ‚ΠΎΠ½Π½Ρƒ ΡΡƒΠΌΡ–Ρˆ&r ΠΌΠΎΠΆΠ½Π° нанСсти Π½Π° основу Π΄ΠΎΡ€ΠΎΠ³ΠΈ, Ρ‰ΠΎΠ± створити покриття, якС Π΄Π°Ρ” &b&l30%%&r&r бонус Π΄ΠΎ ΡˆΠ²ΠΈΠ΄ΠΊΠΎΡΡ‚Ρ– пСрСсування. \n\n&4Π‘ΡƒΠ΄ΡŒΡ‚Π΅ ΠΎΠ±Π΅Ρ€Π΅ΠΆΠ½Ρ–&r ΠΏΡ–Π΄ час створСння Π±Π΅Ρ‚ΠΎΠ½Π½ΠΈΡ… Π΄ΠΎΡ€Ρ–Π³. Π„ Π±Π°Π³Π°Ρ‚ΠΎ ΠΏΡ€Π°Π²ΠΈΠ», яких слід дотримуватися, Ρ‰ΠΎΠ± Π½Π΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ тріснуту Ρ‡ΠΈ зіпсовану ΠΏΠΎΠ²Π΅Ρ€Ρ…Π½ΡŽ. Π—Π²Π΅Ρ€Π½Ρ–Ρ‚ΡŒΡΡ Π΄ΠΎ &3Польового посібника&r для Π΄Π΅Ρ‚Π°Π»ΡŒΠ½ΠΈΡ… інструкцій." } \ No newline at end of file diff --git a/kubejs/assets/tfg/lang/zh_cn.json b/kubejs/assets/tfg/lang/zh_cn.json index 4c3c875b4..cc9f187a1 100644 --- a/kubejs/assets/tfg/lang/zh_cn.json +++ b/kubejs/assets/tfg/lang/zh_cn.json @@ -35,6 +35,15 @@ "biome.tfg.mars/sangnum_edge": "θ΅€θ‘€θΎΉηΌ˜", "biome.tfg.mars/sangnum_plains": "θ΅€θ‘€θ‰εŽŸ", "biome.tfg.mars/sangnum_hills": "θ΅€θ‘€ζ²Όεœ°", + "biome.tfg.venus/arachnoids": "ι‡‘ζ˜Ÿθ››η½‘ηŠΆεœ°θ²Œ", + "biome.tfg.venus/fractured_pools": "破裂池", + "biome.tfg.venus/fumaroles": "气态喷气孔", + "biome.tfg.venus/geysers": "ζ»šηƒ«ι—΄ζ­‡ζ³‰", + "biome.tfg.venus/jagged_tablelands": "ι”―ι½ΏηŠΆε°εœ°", + "biome.tfg.venus/salt_flats": "盐滩", + "biome.tfg.venus/stromatolite_beach": "ε ε±‚ηŸ³ζ»©", + "biome.tfg.venus/sulfuric_ravine": "瑫酸峑谷", + "biome.tfg.venus/scorching_volcanoes": "炽热火山", "block.tfg.piglin_disguise": "ηŒͺ灡δΌͺθ£…", "block.tfg.piglin_disguise_block": "ηŒͺ灡δΌͺθ£…", "block.tfg.dry_ice": "εΉ²ε†°", @@ -103,8 +112,8 @@ "block.tfg.gabbro_support": "辉长岩支撑撁", "block.tfg.shale_support_horizontal": "鑡岩水平支撑撁", "block.tfg.shale_support": "鑡岩支撑撁", - "block.tfg.claystone_support_horizontal": "η²˜εœŸε²©ζ°΄εΉ³ζ”―ζ’‘ζ’", - "block.tfg.claystone_support": "η²˜εœŸε²©ζ”―ζ’‘ζ’", + "block.tfg.claystone_support_horizontal": "ι»εœŸε²©ζ°΄εΉ³ζ”―ζ’‘ζ’", + "block.tfg.claystone_support": "ι»εœŸε²©ζ”―ζ’‘ζ’", "block.tfg.limestone_support_horizontal": "ηŸ³η°ε²©ζ°΄εΉ³ζ”―ζ’‘ζ’", "block.tfg.limestone_support": "ηŸ³η°ε²©ζ”―ζ’‘ζ’", "block.tfg.conglomerate_support_horizontal": "砾岩水平支撑撁", @@ -242,20 +251,24 @@ "block.tfg.rock.aqueduct_nether": "角斑岩引水ζ‘₯", "block.tfg.rock.hardened_moon_stone": "η‘¬εŒ–ζ–œι•Ώε²©", "block.tfg.rock.moon_stone_wall": "ε€©η„Άζ–œι•Ώε²©ε’™", - "block.tfg.rock.cobble_moon_stone_wall": "ζ–œι•Ώε²©εœ†ηŸ³ε’™", + "block.tfg.rock.cobble_moon_wall": "ζ–œι•Ώε²©εœ†ηŸ³ε’™", "block.tfg.rock.mossy_cobble_moon": "θ¦†θ‹”ζ–œι•Ώε²©εœ†ηŸ³", "block.tfg.rock.mossy_cobble_moon_stairs": "θ¦†θ‹”ζ–œι•Ώε²©εœ†ηŸ³ζ₯Όζ’―", "block.tfg.rock.mossy_cobble_moon_slab": "θ¦†θ‹”ζ–œι•Ώε²©εœ†ηŸ³ε°ι˜Ά", "block.tfg.rock.mossy_cobble_moon_wall": "θ¦†θ‹”ζ–œι•Ώε²©εœ†ηŸ³ε’™", - "block.tfg.rock.mossy_bricks_moon_stone": "θ¦†θ‹”ζ–œι•Ώε²©η –", - "block.tfg.rock.mossy_bricks_moon_stone_stairs": "θ¦†θ‹”ζ–œι•Ώε²©η –ζ₯Όζ’―", - "block.tfg.rock.mossy_bricks_moon_stone_slab": "θ¦†θ‹”ζ–œι•Ώε²©η –ε°ι˜Ά", - "block.tfg.rock.mossy_bricks_moon_stone_wall": "θ¦†θ‹”ζ–œι•Ώε²©η –ε’™", + "block.tfg.rock.mossy_bricks_moon": "θ¦†θ‹”ζ–œι•Ώε²©η –", + "block.tfg.rock.mossy_bricks_moon_stairs": "θ¦†θ‹”ζ–œι•Ώε²©η –ζ₯Όζ’―", + "block.tfg.rock.mossy_bricks_moon_slab": "θ¦†θ‹”ζ–œι•Ώε²©η –ε°ι˜Ά", + "block.tfg.rock.mossy_bricks_moon_wall": "θ¦†θ‹”ζ–œι•Ώε²©η –ε’™", "block.tfg.rock.chiseled_bricks_moon_wall": "ι›•ηΊΉζ–œι•Ώε²©ε’™", "block.tfg.rock.gravel_moon": "ζ–œι•Ώε²©ζ²™η Ύ", "block.tfg.spike.moon_stone_spike": "ζ–œι•Ώε²©ε°–εˆΊ", "block.tfg.loose.moon_stone": "ζ–œι•Ώε²©ηŸ³ε­", "block.tfg.rock.aqueduct_moon_stone": "ζ–œι•Ώε²©εΌ•ζ°΄ζ‘₯", + "block.tfg.rock.polished_moon_wall": "η£¨εˆΆζ–œι•Ώε²©ε’™", + "block.tfg.rock.cracked_bricks_moon_stairs": "θ£‚ηΊΉζ–œι•Ώε²©η –ζ₯Όζ’―", + "block.tfg.rock.cracked_bricks_moon_slab": "θ£‚ηΊΉζ–œι•Ώε²©η –ε°ι˜Ά", + "block.tfg.rock.cracked_bricks_moon_wall": "θ£‚ηΊΉζ–œι•Ώε²©η –ε’™", "block.tfg.rock.hardened_moon_deepslate": "η‘¬εŒ–θ‹ι•Ώε²©", "block.tfg.rock.moon_deepslate_stairs": "倩焢苏长岩ζ₯Όζ’―", "block.tfg.rock.moon_deepslate_slab": "ε€©η„Άθ‹ι•Ώε²©ε°ι˜Ά", @@ -289,19 +302,25 @@ "block.tfg.spike.moon_deepslate_spike": "θ‹ι•Ώε²©ε°–εˆΊ", "block.tfg.loose.moon_deepslate": "θ‹ι•Ώε²©ηŸ³ε­", "block.tfg.rock.aqueduct_moon_deepslate": "苏长岩引水ζ‘₯", + "block.tfg.rock.mossy_bricks_moon_deepslate": "覆苔苏长岩砖", + "block.tfg.rock.mossy_bricks_moon_deepslate_stairs": "覆苔苏长岩砖ζ₯Όζ’―", + "block.tfg.rock.mossy_bricks_moon_deepslate_slab": "θ¦†θ‹”θ‹ι•Ώε²©η –ε°ι˜Ά", + "block.tfg.rock.mossy_bricks_moon_deepslate_wall": "覆苔苏长岩砖咙", "block.tfg.rock.hardened_mars_stone": "η‘¬εŒ–ζ³₯板岩", "block.tfg.rock.mars_stone_wall": "倩焢ζ³₯板岩咙", - "block.tfg.rock.cobble_mars_stone_wall": "ζ³₯ζΏε²©εœ†ηŸ³ε’™", + "block.tfg.rock.cobble_mars_wall": "ζ³₯ζΏε²©εœ†ηŸ³ε’™", "block.tfg.rock.mossy_cobble_mars": "覆苔ζ³₯ζΏε²©εœ†ηŸ³", "block.tfg.rock.mossy_cobble_mars_stairs": "覆苔ζ³₯ζΏε²©εœ†ηŸ³ζ₯Όζ’―", "block.tfg.rock.mossy_cobble_mars_slab": "覆苔ζ³₯ζΏε²©εœ†ηŸ³ε°ι˜Ά", "block.tfg.rock.mossy_cobble_mars_wall": "覆苔ζ³₯ζΏε²©εœ†ηŸ³ε’™", "block.tfg.rock.polished_mars_wall": "磨刢ζ³₯板岩咙", - "block.tfg.rock.mossy_bricks_mars_stone": "覆苔ζ³₯板岩砖", - "block.tfg.rock.mossy_bricks_mars_stone_stairs": "覆苔ζ³₯板岩砖ζ₯Όζ’―", - "block.tfg.rock.mossy_bricks_mars_stone_slab": "覆苔ζ³₯ζΏε²©η –ε°ι˜Ά", - "block.tfg.rock.mossy_bricks_mars_stone_wall": "覆苔ζ³₯板岩砖咙", - "block.tfg.rock.cracked_bricks_mars_stone_wall": "裂纹ζ³₯板岩砖咙", + "block.tfg.rock.mossy_bricks_mars": "覆苔ζ³₯板岩砖", + "block.tfg.rock.mossy_bricks_mars_stairs": "覆苔ζ³₯板岩砖ζ₯Όζ’―", + "block.tfg.rock.mossy_bricks_mars_slab": "覆苔ζ³₯ζΏε²©η –ε°ι˜Ά", + "block.tfg.rock.mossy_bricks_mars_wall": "覆苔ζ³₯板岩砖咙", + "block.tfg.rock.cracked_bricks_mars_stairs": "裂纹ζ³₯板岩砖ζ₯Όζ’―", + "block.tfg.rock.cracked_bricks_mars_slab": "裂纹ζ³₯ζΏε²©η –ε°ι˜Ά", + "block.tfg.rock.cracked_bricks_mars_wall": "裂纹ζ³₯板岩砖咙", "block.tfg.rock.chiseled_bricks_mars_wall": "ι›•ηΊΉζ³₯板岩咙", "block.tfg.rock.gravel_mars": "ζ³₯板岩沙砾", "block.tfg.spike.mars_stone_spike": "ζ³₯ζΏε²©ε°–εˆΊ", @@ -309,17 +328,19 @@ "block.tfg.rock.aqueduct_mars_stone": "ζ³₯板岩引水ζ‘₯", "block.tfg.rock.hardened_venus_stone": "η‘¬εŒ–η²—ι’ε²©", "block.tfg.rock.venus_stone_wall": "倩焢粗青岩咙", - "block.tfg.rock.cobble_venus_stone_wall": "η²—ι’ε²©εœ†ηŸ³ε’™", + "block.tfg.rock.cobble_venus_wall": "粗青ε²©εœ†ηŸ³ε’™", "block.tfg.rock.mossy_cobble_venus": "θ¦†θ‹”η²—ι’ε²©εœ†ηŸ³", "block.tfg.rock.mossy_cobble_venus_stairs": "θ¦†θ‹”η²—ι’ε²©εœ†ηŸ³ζ₯Όζ’―", "block.tfg.rock.mossy_cobble_venus_slab": "θ¦†θ‹”η²—ι’ε²©εœ†ηŸ³ε°ι˜Ά", "block.tfg.rock.mossy_cobble_venus_wall": "θ¦†θ‹”η²—ι’ε²©εœ†ηŸ³ε’™", "block.tfg.rock.polished_venus_wall": "η£¨εˆΆη²—ι’ε²©ε’™", - "block.tfg.rock.mossy_bricks_venus_stone": "覆苔粗青岩砖", - "block.tfg.rock.mossy_bricks_venus_stone_stairs": "覆苔粗青岩砖ζ₯Όζ’―", - "block.tfg.rock.mossy_bricks_venus_stone_slab": "θ¦†θ‹”η²—ι’ε²©η –ε°ι˜Ά", - "block.tfg.rock.mossy_bricks_venus_stone_wall": "覆苔粗青岩砖咙", - "block.tfg.rock.cracked_bricks_venus_stone_wall": "裂纹粗青岩砖咙", + "block.tfg.rock.mossy_bricks_venus": "覆苔粗青岩砖", + "block.tfg.rock.mossy_bricks_venus_stairs": "覆苔粗青岩砖ζ₯Όζ’―", + "block.tfg.rock.mossy_bricks_venus_slab": "θ¦†θ‹”η²—ι’ε²©η –ε°ι˜Ά", + "block.tfg.rock.mossy_bricks_venus_wall": "覆苔粗青岩砖咙", + "block.tfg.rock.cracked_bricks_venus_stairs": "裂纹粗青岩砖ζ₯Όζ’―", + "block.tfg.rock.cracked_bricks_venus_slab": "θ£‚ηΊΉη²—ι’ε²©η –ε°ι˜Ά", + "block.tfg.rock.cracked_bricks_venus_wall": "裂纹粗青岩砖咙", "block.tfg.rock.chiseled_bricks_venus_wall": "雕纹粗青岩咙", "block.tfg.rock.gravel_venus": "粗青岩沙砾", "block.tfg.spike.venus_stone_spike": "η²—ι’ε²©ε°–εˆΊ", @@ -327,17 +348,19 @@ "block.tfg.rock.aqueduct_venus_stone": "粗青岩引水ζ‘₯", "block.tfg.rock.hardened_mercury_stone": "η‘¬εŒ–η§‘ι©¬ζε²©", "block.tfg.rock.mercury_stone_wall": "倩焢科马提岩咙", - "block.tfg.rock.cobble_mercury_stone_wall": "η§‘ι©¬ζε²©εœ†ηŸ³ε’™", + "block.tfg.rock.cobble_mercury_wall": "η§‘ι©¬ζε²©εœ†ηŸ³ε’™", "block.tfg.rock.mossy_cobble_mercury": "θ¦†θ‹”η§‘ι©¬ζε²©εœ†ηŸ³", "block.tfg.rock.mossy_cobble_mercury_stairs": "θ¦†θ‹”η§‘ι©¬ζε²©εœ†ηŸ³ζ₯Όζ’―", "block.tfg.rock.mossy_cobble_mercury_slab": "θ¦†θ‹”η§‘ι©¬ζε²©εœ†ηŸ³ε°ι˜Ά", "block.tfg.rock.mossy_cobble_mercury_wall": "θ¦†θ‹”η§‘ι©¬ζε²©εœ†ηŸ³ε’™", "block.tfg.rock.polished_mercury_wall": "η£¨εˆΆη§‘ι©¬ζε²©ε’™", - "block.tfg.rock.mossy_bricks_mercury_stone": "覆苔科马提岩砖", - "block.tfg.rock.mossy_bricks_mercury_stone_stairs": "覆苔科马提岩砖ζ₯Όζ’―", - "block.tfg.rock.mossy_bricks_mercury_stone_slab": "θ¦†θ‹”η§‘ι©¬ζε²©η –ε°ι˜Ά", - "block.tfg.rock.mossy_bricks_mercury_stone_wall": "覆苔科马提岩砖咙", - "block.tfg.rock.cracked_bricks_mercury_stone_wall": "裂纹科马提岩砖咙", + "block.tfg.rock.mossy_bricks_mercury": "覆苔科马提岩砖", + "block.tfg.rock.mossy_bricks_mercury_stairs": "覆苔科马提岩砖ζ₯Όζ’―", + "block.tfg.rock.mossy_bricks_mercury_slab": "θ¦†θ‹”η§‘ι©¬ζε²©η –ε°ι˜Ά", + "block.tfg.rock.mossy_bricks_mercury_wall": "覆苔科马提岩砖咙", + "block.tfg.rock.cracked_bricks_mercury_stairs": "裂纹科马提岩砖ζ₯Όζ’―", + "block.tfg.rock.cracked_bricks_mercury_slab": "θ£‚ηΊΉη§‘ι©¬ζε²©η –ε°ι˜Ά", + "block.tfg.rock.cracked_bricks_mercury_wall": "裂纹科马提岩砖咙", "block.tfg.rock.chiseled_bricks_mercury_wall": "雕纹科马提岩咙", "block.tfg.rock.gravel_mercury": "科马提岩沙砾", "block.tfg.spike.mercury_stone_spike": "η§‘ι©¬ζε²©ε°–εˆΊ", @@ -345,17 +368,19 @@ "block.tfg.rock.aqueduct_mercury_stone": "科马提岩引水ζ‘₯", "block.tfg.rock.hardened_glacio_stone": "η‘¬εŒ–ε“ε²©", "block.tfg.rock.glacio_stone_wall": "倩焢响岩咙", - "block.tfg.rock.cobble_glacio_stone_wall": "ε“ε²©εœ†ηŸ³ε’™", + "block.tfg.rock.cobble_glacio_wall": "ε“ε²©εœ†ηŸ³ε’™", "block.tfg.rock.mossy_cobble_glacio": "θ¦†θ‹”ε“ε²©εœ†ηŸ³", "block.tfg.rock.mossy_cobble_glacio_stairs": "θ¦†θ‹”ε“ε²©εœ†ηŸ³ζ₯Όζ’―", "block.tfg.rock.mossy_cobble_glacio_slab": "θ¦†θ‹”ε“ε²©εœ†ηŸ³ε°ι˜Ά", "block.tfg.rock.mossy_cobble_glacio_wall": "θ¦†θ‹”ε“ε²©εœ†ηŸ³ε’™", "block.tfg.rock.polished_glacio_wall": "η£¨εˆΆε“ε²©ε’™", - "block.tfg.rock.mossy_bricks_glacio_stone": "覆苔响岩砖", - "block.tfg.rock.mossy_bricks_glacio_stone_stairs": "覆苔响岩砖ζ₯Όζ’―", - "block.tfg.rock.mossy_bricks_glacio_stone_slab": "θ¦†θ‹”ε“ε²©η –ε°ι˜Ά", - "block.tfg.rock.mossy_bricks_glacio_stone_wall": "覆苔响岩砖咙", - "block.tfg.rock.cracked_bricks_glacio_stone_wall": "裂纹响岩砖咙", + "block.tfg.rock.mossy_bricks_glacio": "覆苔响岩砖", + "block.tfg.rock.mossy_bricks_glacio_stairs": "覆苔响岩砖ζ₯Όζ’―", + "block.tfg.rock.mossy_bricks_glacio_slab": "θ¦†θ‹”ε“ε²©η –ε°ι˜Ά", + "block.tfg.rock.mossy_bricks_glacio_wall": "覆苔响岩砖咙", + "block.tfg.rock.cracked_bricks_glacio_stairs": "裂纹响岩砖ζ₯Όζ’―", + "block.tfg.rock.cracked_bricks_glacio_slab": "θ£‚ηΊΉε“ε²©η –ε°ι˜Ά", + "block.tfg.rock.cracked_bricks_glacio_wall": "裂纹响岩砖咙", "block.tfg.rock.chiseled_bricks_glacio_wall": "雕纹响岩咙", "block.tfg.rock.gravel_glacio": "响岩沙砾", "block.tfg.spike.glacio_stone_spike": "ε“ε²©ε°–εˆΊ", @@ -369,6 +394,7 @@ "block.tfg.rock.cobble_permafrost_stairs": "ε†»εœŸεœ†ηŸ³ζ₯Όζ’―", "block.tfg.rock.cobble_permafrost_slab": "ε†»εœŸεœ†ηŸ³ε°ι˜Ά", "block.tfg.rock.cobble_permafrost_wall": "ε†»εœŸεœ†ηŸ³ε’™", + "block.tfg.rock.mossy_cobble_permafrost": "θ¦†θ‹”ε†»εœŸεœ†ηŸ³", "block.tfg.rock.mossy_cobble_permafrost_stairs": "θ¦†θ‹”ε†»εœŸεœ†ηŸ³ζ₯Όζ’―", "block.tfg.rock.mossy_cobble_permafrost_slab": "θ¦†θ‹”ε†»εœŸεœ†ηŸ³ε°ι˜Ά", "block.tfg.rock.mossy_cobble_permafrost_wall": "θ¦†θ‹”ε†»εœŸεœ†ηŸ³ε’™", @@ -377,7 +403,10 @@ "block.tfg.rock.mossy_bricks_permafrost_stairs": "θ¦†θ‹”ε†»εœŸη –ζ₯Όζ’―", "block.tfg.rock.mossy_bricks_permafrost_slab": "θ¦†θ‹”ε†»εœŸη –ε°ι˜Ά", "block.tfg.rock.mossy_bricks_permafrost_wall": "θ¦†θ‹”ε†»εœŸη –ε’™", - "block.tfg.rock.cracked_bricks_permafrost_stone_wall": "θ£‚ηΊΉε†»εœŸη –ε’™", + "block.tfg.rock.cracked_bricks_permafrost_stairs": "θ£‚ηΊΉε†»εœŸη –ζ₯Όζ’―", + "block.tfg.rock.cracked_bricks_permafrost_slab": "θ£‚ηΊΉε†»εœŸη –ε°ι˜Ά", + "block.tfg.rock.cracked_bricks_permafrost_wall": "θ£‚ηΊΉε†»εœŸη –ε’™", + "block.tfg.rock.chiseled_bricks_permafrost_wall": "ι›•ηΊΉε†»εœŸε’™", "block.tfg.rock.gravel_permafrost": "ε†»εœŸζ²™η Ύ", "block.tfg.spike.permafrost_spike": "ε†»εœŸε°–εˆΊ", "block.tfg.loose.permafrost": "ε†»εœŸε²©ηŸ³ε­", @@ -416,15 +445,29 @@ "block.tfg.rock.cracked_bricks_stone_wall": "θ£‚ηΊΉε†η”ŸηŸ³η –ε’™", "block.tfg.rock.aqueduct_stone": "ε†η”ŸηŸ³εΌ•ζ°΄ζ‘₯", "block.tfg.rock.smooth_red_sandstone_wall": "εΉ³ζ»‘θ΅€ι“ηŸΏη ‚ε²©ε’™", + "block.tfg.rock.cut_red_sandstone_stairs": "εˆ‡εˆΆθ΅€ι“ηŸΏη ‚ε²©ζ₯Όζ’―", "block.tfg.rock.cut_red_sandstone_wall": "εˆ‡εˆΆθ΅€ι“ηŸΏη ‚ε²©ε’™", + "block.tfg.rock.bricks_venus_sandstone_wall": "粗青岩砂岩砖咙", + "block.tfg.rock.cracked_bricks_venus_sandstone_stairs": "裂纹粗青岩砂岩砖ζ₯Όζ’―", + "block.tfg.rock.cracked_bricks_venus_sandstone_slab": "θ£‚ηΊΉη²—ι’ε²©η ‚ε²©η –ε°ι˜Ά", + "block.tfg.rock.cracked_bricks_venus_sandstone_wall": "裂纹粗青岩砂岩砖咙", + "block.tfg.rock.quartz_wall": "ηŸ³θ‹±ε’™", + "block.tfg.rock.smooth_quartz_wall": "εΉ³ζ»‘ηŸ³θ‹±ε’™", "block.tfg.rock.raw.stromatolite": "ε€©η„Άε ε±‚ηŸ³", "block.tfg.rock.spike.stromatolite": "ε ε±‚ηŸ³ε°–εˆΊ", + "block.tfg.stromatolite_cluster_small": "ε°εž‹ε ε±‚ηŸ³η°‡", + "block.tfg.stromatolite_cluster_medium": "ε€§εž‹ε ε±‚ηŸ³η°‡", "block.tfg.rock.raw.geyserite": "ε€©η„Άη‘…εŽ", "block.tfg.rock.spike.geyserite": "η‘…εŽε°–εˆΊ", + "block.tfg.geyser_source_small": "ε°εž‹θ’Έζ±½ι—΄ζ­‡ζ³‰", + "block.tfg.geyser_source": "蒸汽间歇泉", + "block.tfg.smoker_source": "η†”ε²©ηƒŸι“", + "block.tfg.lava_source": "熔岩喷口", + "block.tfg.rock.halite": "岩晢", "block.tfg.mushroom_roots": "菌丝根鑻", "block.tfg.mushroom_sprouts": "菌丝嫩芽", "block.tfg.charred_log": "η„¦εŒ–εŽŸζœ¨", - "block.tfg.ash_pile": "灰烬堆", + "block.tfg.ash_pile": "θ‰ζœ¨η°ε †", "block.tfg.pile.white_sand": "η™½ζ²™", "block.tfg.pile.black_sand": "ι»‘ζ²™", "block.tfg.pile.brown_sand": "棕沙", @@ -439,6 +482,7 @@ "block.tfg.pile.venus_sand_covering": "粗青岩沙", "block.tfg.pile.hematitic_sand": "θ΅€ι“ηŸΏζ²™", "block.tfg.pile.hematitic_sand_covering": "θ΅€ι“ηŸΏζ²™", + "block.tfg.pile.volcanic_ash": "火山灰堆", "block.tfg.lunar_roots": "ζœˆηƒε…‰η»½θŠ±", "block.tfg.lunar_sprouts": "ζœˆηƒε…‰ι’–θ‰", "block.tfg.lunar_chorus_plant": "紫钂怍ζ ͺ", @@ -493,15 +537,17 @@ "block.tfg.zpm_gas_pressurizer": "Β§cη²Ύθ‹±ζ°”δ½“εŠ εŽ‹ε™¨ IIIΒ§r", "block.tfg.uv_gas_pressurizer": "Β§3η»ˆζžζ°”δ½“εŠ εŽ‹ε™¨Β§r", "block.tfg.fluid.semiheavy_ammoniacal_water": "εŠι‡ζ°¨ζ°΄", + "block.tfg.fluid.sulfur_fumes": "ζ΅“η‘«ι…ΈηƒŸι›Ύ", + "block.tfg.fluid.geyser_slurry": "θΆ…ι«˜ζΈ©ζ΅†ζΆ²", "block.tfg.grass.mars_dirt": "火星土壀", - "block.tfg.grass.mars_clay_dirt": "火星粘土质土壀", + "block.tfg.grass.mars_clay_dirt": "火星黏土质土壀", "block.tfg.grass.mars_farmland": "η«ζ˜Ÿε†œη”°", "block.tfg.grass.mars_path": "η«ζ˜Ÿθ·―εΎ„", "block.tfg.grass.amber_mycelium": "η₯η€θŒδΈ", "block.tfg.grass.amber_clay_mycelium": "η₯η€ι»εœŸθŒδΈ", "block.tfg.grass.amber_kaolin_mycelium": "η₯η€ι«˜ε²­εœŸθŒδΈ", "block.tfg.grass.rusticus_mycelium": "ηΊ’ι”ˆθŒδΈ", - "block.tfg.grass.rusticus_clay_mycelium": "ηΊ’ι”ˆη²˜εœŸθŒδΈ", + "block.tfg.grass.rusticus_clay_mycelium": "ηΊ’ι”ˆι»εœŸθŒδΈ", "block.tfg.grass.rusticus_kaolin_mycelium": "ηΊ’ι”ˆι«˜ε²­εœŸθŒδΈ", "block.tfg.grass.sangnum_mycelium": "θ΅€θ‘€θŒδΈ", "block.tfg.grass.sangnum_clay_mycelium": "θ΅€θ‘€ι»εœŸθŒδΈ", @@ -509,7 +555,7 @@ "block.tfg.spice": "η΄«ι‡‘ηŸΏεΊŠ", "block.tfg.saplings.crimson": "绯纒菌类", "block.tfg.saplings.warped": "ζ‰­ζ›²θŒη±»", - "block.tfg.saplings.alphacene": "ι˜Ώε°”ζ³•θΎ›θ˜‘θ‡", + "block.tfg.saplings.alphacene": "ι¦–ζ–°δΈ–θ˜‘θ‡", "block.tfg.saplings.aeronos": "η©Ίζžœθ‡", "block.tfg.saplings.strophar": "ε­‘θŠ‚θ‡", "block.tfg.saplings.glacian": "ιœœεŽŸθ‡", @@ -518,7 +564,7 @@ "block.tfg.groundcover.aeronos_stick": "η©Ίζžœζ ‘ζž", "block.tfg.groundcover.strophar_stick": "ε­‘θŠ‚ζ ‘ζž", "block.tfg.groundcover.glacian_stick": "ιœœεŽŸζ ‘ζž", - "block.tfg.groundcover.alphacene_stick": "ι˜Ώε°”ζ³•θΎ›ζ ‘ζž", + "block.tfg.groundcover.alphacene_stick": "ι¦–ζ–°δΈ–ζ ‘ζž", "block.tfg.mars_ice": "εŠι‡ζ°¨ε†°", "block.tfg.mars_icicle": "εŠι‡ζ°¨ε†°ζŸ±", "block.tfg.electromagnetic_accelerator": "η”΅η£εŠ ι€Ÿε™¨", @@ -574,7 +620,9 @@ "block.tfg.casings.machine_casing_ostrum_carbon": "η΄«ι‡‘ζœΊζ’°ζ–Ήε—", "block.tfg.casings.heat_pipe_casing": "高温η‘道倖壳", "block.tfg.glacian_wool_frame": "ιœœεŽŸηΎŠζ―›ζ‘†ζžΆ", - "block.tfg.aes_insulation_frame": "η’±εœŸη‘…ι…Έη›η»ηΌ˜ζ‘†ζžΆ", + "block.tfg.aes_insulation_frame": "η’±εœŸη‘…ι…Έη›ιš”ηƒ­ζ‘†ζžΆ", + "block.tfg.machine_casing_power_casing": "η»ηΌ˜εŠ¨εŠ›ζœΊζ’°ζ–Ήε—", + "block.tfg.active_power_transformer": "ζœ‰ζΊθƒ½ι‡ε˜εŽ‹ε™¨", "block.tfg.sand.fluorapatite.blue": "θ“θ‰²ζ°Ÿη£·η°ηŸ³ζ²™", "block.tfg.sandstone.raw.fluorapatite.blue": "ε€©η„Άθ“θ‰²ζ°Ÿη£·η°ηŸ³η ‚ε²©", "block.tfg.sandstone.wall.raw.fluorapatite.blue": "ε€©η„Άθ“θ‰²ζ°Ÿη£·η°ηŸ³η ‚ε²©ε’™", @@ -651,20 +699,25 @@ "block.tfg.titanium_concrete_bricks": "ι’›η­‹ζ··ε‡εœŸη –", "block.tfg.titanium_concrete_bricks_small": "ε°εž‹ι’›η­‹ζ··ε‡εœŸη –", "block.tfg.titanium_concrete_bricks_square": "ζ–Ήε½’ι’›η­‹ζ··ε‡εœŸη –", - "block.tfg.nuclear_turbine": "ζ ΈεŠ¨εŠ›θ’Έζ±½θ½ζœΊ", + "block.tfg.nuclear_turbine": "核能蒸汽梑θ½", "block.tfg.evaporation_tower": "蒸发呔", "block.tfg.cooling_tower": "核能冷却呔", + "block.tfg.smr_generator": "ε°εž‹ζ¨‘ε—εŒ–ζΆ‘θ½", + "block.tfg.casings.machine_casing_desh_ptfe": "ι˜²θΎε°„ζˆ΄ζ–―ζœΊζ’°ζ–Ήε—", "block.tfg.growth_monitor": "η”Ÿι•Ώη›‘ζŽ§ε™¨", "block.tfg.sample_rack": "样本枢", "block.tfg.casings.machine_casing_sterilizing_pipes": "ι™€θŒη‘道", - "fluid.tfg.nether_slurry": "δΈ‹η•Œζ΅†ζΆ²", - "fluid.tfg.enriched_nether_slurry": "ε―Œι›†δΈ‹η•Œζ΅†ζΆ²", - "fluid.tfg.ender_slurry": "ζœ«εœ°ζ΅†ζΆ²", - "fluid.tfg.enriched_ender_slurry": "ε―Œι›†ζœ«εœ°ζ΅†ζΆ²", + "block.tfg.moderate_core": "ζ…’εŒ–ε †θŠ―", + "block.tfg.impure_moderate_core": "δΈηΊ―ζ…’εŒ–ε †θŠ―", + "block.tfg.moderate_core_frame": "ζ…’εŒ–ε †θŠ―ζ‘†ζžΆ", + "block.tfg.impure_moderate_core_frame": "δΈηΊ―ζ…’εŒ–ε †θŠ―ζ‘†ζžΆ", + "fluid.tfg.heavy_ammoniacal_water": "重氨水", "fluid.tfg.semiheavy_ammoniacal_water": "εŠι‡ζ°¨ζ°΄", - "fluid.tfg.sulfur_fumes": "η‘«η£ΊηƒŸζ°”", - "fluid.tfg.super_heated_slurry": "θΆ…ι«˜ζΈ©ζ΅†ζΆ²", + "fluid.tfg.sulfur_fumes": "ζ΅“η‘«ι…ΈηƒŸι›Ύ", + "fluid.tfg.geyser_slurry": "θΆ…ι«˜ζΈ©ζ΅†ζΆ²", "fluid.tfg.cryogenized_fluix": "δ½ŽζΈ©η¦ι²δΌŠε…‹ζ–―", + "fluid.tfg.bw_photographic_developer": "ι»‘η™½ζ‘„ε½±ζ˜Ύε½±ε‰‚", + "fluid.tfg.color_photographic_developer": "ε½©θ‰²ζ‘„ε½±ζ˜Ύε½±ε‰‚", "quests.naming-1": "t - Title", "quests.naming-2": "st - Subtitle", "quests.naming-3": "d* - Description, where * description number, for example: d1, d2, d3, d4...", @@ -783,6 +836,8 @@ "item.tfg.invisibility_salvo": "ιšθΊ«θ―θ†", "item.tfg.luck_salvo": "幸运药膏", "item.tfg.resistance_salvo": "ζŠ—ζ€§ζε‡θ―θ†", + "item.tfg.paracetamol_pill": "ε―ΉδΉ™ι…°ζ°¨εŸΊι…šθ―η‰‡", + "item.tfg.rad_away_pill": "梈辐εβ„’药片", "item.tfg.paraffin_wax": "石蜑", "item.tfg.flint_arrow_head": "η‡§ηŸ³η­ε€΄", "item.tfg.fletching": "η­ηΎ½", @@ -803,6 +858,7 @@ "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": "ζœͺηƒ§εˆΆηš„η²‰η¬”", @@ -875,7 +931,6 @@ "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": "ε†»εΉ²ε‘ε…‰ζ΅†ζžœ", @@ -913,10 +968,8 @@ "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.food.raw_wraptor": "η”Ÿθ―‘ζιΈŸθ‚‰", "item.tfg.food.cooked_wraptor": "η†Ÿθ―‘ζιΈŸθ‚‰", "item.tfg.food.raw_springling_collar": "η”Ÿη°§ι’ˆε…½θ„–", @@ -942,11 +995,37 @@ "item.tfg.food.cooked_cruncher_ribs": "η†Ÿθ΄ͺε’€ε…½ζŽ’", "item.tfg.food.raw_dino_nugget": "η²ΎεˆΆζιΎ™ε—", "item.tfg.food.cooked_dino_nugget": "啀酒裹炸恐龙块", + "item.tfg.food.raw_beer_battered_cheese_curds": "η”Ÿε•€ι…’ι’η³ŠθŠε£«ε‡ε—", + "item.tfg.food.cooked_beer_battered_cheese_curds": "ζ²Ήη‚Έε•€ι…’ι’η³ŠθŠε£«ε‡ε—", + "item.tfg.food.raw_fries": "η”Ÿζ³•εΌθ–―ζ‘", + "item.tfg.food.cooked_fries": "法式薯村", + "item.tfg.food.poutine": "肉汁ε₯Άι…ͺ薯村", + "item.tfg.food.brioche_dough": "εΈƒι‡Œζ¬§δΏι’ε›’", + "item.tfg.food.brioche_bun": "εΈƒι‡Œζ¬§δΏι’εŒ…", + "item.tfg.food.raw_burger_patty": "η”Ÿζ±‰ε ‘θ‚‰ι₯Ό", + "item.tfg.food.cooked_burger_patty": "汉堑肉ι₯Ό", + "item.tfg.food.slice_of_cheese": "δΈ€η‰‡β€œθŠε£«β€", + "item.tfg.food.hamburger": "ζ±‰ε ‘εŒ…", + "item.tfg.food.cheeseburger": "θŠε£«ζ±‰ε ‘", + "item.tfg.food.oatmeal": "燕麦η²₯", + "item.tfg.food.raw_instant_mac": "η”Ÿι€Ÿι£Ÿι€šεΏƒη²‰ε’ŒθŠε£«", + "item.tfg.food.cooked_instant_mac": "ι€Ÿι£Ÿι€šεΏƒη²‰ε’ŒθŠε£«", + "item.tfg.spice.bay_leaf": "ζœˆζ‘‚εΆ", + "item.tfg.spice.cardamom_pods": "ε°θ±†θ”»θš", + "item.tfg.spice.cilantro_leaves": "ι¦™θœεΆ", + "item.tfg.spice.cumin_seeds": "ε­œη„Άη±½", + "item.tfg.spice.oregano_leaves": "牛至叢", + "item.tfg.spice.allspice": "ε€šι¦™ζžœ", "item.tfg.roasted_sunflower_seeds": "烀向ζ—₯θ‘΅η±½", "item.tfg.sunflower_seeds": "向ζ—₯葡种子", "item.tfg.sunflower_product": "向ζ—₯θ‘΅θŠ±η›˜", "item.tfg.rapeseed_seeds": "油菜籽", "item.tfg.rapeseed_product": "油菜籽荚", + "item.tfg.spawn_egg.moon_rabbit": "ζœˆε…”εˆ·ζ€ͺθ›‹", + "item.tfg.spawn_egg.surfer": "η ΄ζ΅ͺε…½εˆ·ζ€ͺθ›‹", + "item.tfg.spawn_egg.wraptor": "译恐鸟刷ζ€ͺθ›‹", + "item.tfg.spawn_egg.glacian_ram": "霜原羊刷ζ€ͺθ›‹", + "item.tfg.spawn_egg.sniffer": "ε—…ζŽ’ε…½εˆ·ζ€ͺθ›‹", "item.tfg.flintlock_mechanism": "η‡§ε‘ζœΊζž„", "item.tfg.advanced_clockwork_mechanism": "ι«˜ηΊ§ε‘ζ‘ζœΊζž„", "item.tfg.certus_mechanism": "θ΅›η‰Ήζ–―ζœΊζž„", @@ -956,8 +1035,8 @@ "item.tfg.nitrocellulose": "η‘εŒ–ηΊ€η»΄", "item.tfg.aes_wool": "η’±εœŸη‘…ι…Έη›ζ£‰", "item.tfg.aes_compressed_wool": "εŽ‹ηΌ©η’±εœŸη‘…ι…Έη›ζ£‰", - "item.tfg.aes_insulation_sheet": "η’±εœŸη‘…ι…Έη›η»ηΌ˜ζΏ", - "item.tfg.aes_insulation_roll": "η’±εœŸη‘…ι…Έη›η»ηΌ˜ε·", + "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": "δ½ŽζΈ©η¦ι²δΌŠε…‹ζ–―ηη ", @@ -968,8 +1047,8 @@ "item.tfg.marker.mercury_orbit": "ζ°΄ζ˜Ÿθ½¨ι“", "item.tfg.marker.glacio_orbit": "ζœ¨ε«δΊŒθ½¨ι“", "item.tfg.railgun_ammo_shell": "轨道η‚εΌΉε£³", - "item.tfg.sulfur_fumes_bucket": "η‘«η£ΊηƒŸζ°”ζ‘Ά", - "item.tfg.super_heated_slurry_bucket": "θΆ…ι«˜ζΈ©ζ΅†ζΆ²ζ‘Ά", + "item.tfg.sulfur_fumes_bucket": "ζ΅“η‘«ι…ΈηƒŸι›Ύζ‘Ά", + "item.tfg.geyser_slurry_bucket": "θΆ…ι«˜ζΈ©ζ΅†ζΆ²ζ‘Ά", "item.tfg.cryogenized_fluix_bucket": "δ½ŽζΈ©η¦ι²δΌŠε…‹ζ–―ζ‘Ά", "item.tfg.fluix_bucket": "ζΆ²ζ€η¦ι²δΌŠε…‹ζ–―ζ‘Ά", "item.tfg.latex_bucket": "δΉ³θƒΆζ‘Ά", @@ -980,6 +1059,7 @@ "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.heavy_ammoniacal_water_bucket": "重氨水摢", "item.tfg.semiheavy_ammoniacal_water_bucket": "εŠι‡ζ°¨ζ°΄ζ‘Ά", "item.tfg.harvest_basket": "ζ”ΆθŽ·η―", "item.tfg.aluminium_harvest_basket": "ι“εˆΆζ”ΆθŽ·η―", @@ -989,7 +1069,7 @@ "item.tfg.twigs.aeronos": "η©Ίζžœζ ‘ζž", "item.tfg.twigs.strophar": "ε­‘θŠ‚ζ ‘ζž", "item.tfg.twigs.glacian": "ιœœεŽŸζ ‘ζž", - "item.tfg.twigs.alphacene": "ι˜Ώε°”ζ³•θΎ›ζ ‘ζž", + "item.tfg.twigs.alphacene": "ι¦–ζ–°δΈ–ζ ‘ζž", "item.tfg.crimsene_gem": "η»―ηΊ’ζ ‘θ„‚", "item.tfg.warpane_gem": "θ―‘εΌ‚ζ ‘θ„‚", "item.tfg.glacian_wool": "ιœœεŽŸηΎŠζ―›", @@ -1010,7 +1090,7 @@ "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.sword_head_extruder_mold": "ζ¨‘ε€΄οΌˆε‰‘θΊ«οΌ‰", "item.tfg.pickaxe_head_extruder_mold": "ζ¨‘ε€΄οΌˆι•ε€΄οΌ‰", "item.tfg.shovel_head_extruder_mold": "ζ¨‘ε€΄οΌˆι“²ε€΄οΌ‰", "item.tfg.axe_head_extruder_mold": "ζ¨‘ε€΄οΌˆζ–§ε€΄οΌ‰", @@ -1067,11 +1147,7 @@ "item.tfg.pure_graphite_rod": "ηΊ―ε‡€ηŸ³ε’¨ζ£’", "item.tfg.impure_graphite_rod": "δΈηΊ―ηŸ³ε’¨ζ£’", "item.tfg.annealed_graphite_rod": "ι€€η«ηŸ³ε’¨ζ£’", - "item.tfg.impure_annealed_graphite_row": "δΈηΊ―ι€€η«ηŸ³ε’¨ζ£’", - "item.tfg.moderate_core": "ζ…’εŒ–ε †θŠ―", - "item.tfg.impure_moderate_core": "δΈηΊ―ζ…’εŒ–ε †θŠ―", - "item.tfg.moderate_core_frame": "ζ…’εŒ–ε †θŠ―ζ‘†ζžΆ", - "item.tfg.impure_moderate_core_frame": "δΈηΊ―ζ…’εŒ–ε †θŠ―ζ‘†ζžΆ", + "item.tfg.impure_annealed_graphite_rod": "δΈηΊ―ι€€η«ηŸ³ε’¨ζ£’", "item.tfg.graphite_moderator": "ηŸ³ε’¨ζ…’εŒ–ε‰‚", "item.tfg.impure_graphite_moderator": "δΈηΊ―ηŸ³ε’¨ζ…’εŒ–ε‰‚", "item.tfg.advanced_polymer_binder": "ι«˜ηΊ§θšεˆη‰©η²˜εˆε‰‚", @@ -1079,8 +1155,8 @@ "item.tfg.beaker.filled": "%s烧杯", "item.tfg.flask": "烧瓢", "item.tfg.flask.filled": "%s烧瓢", - "item.tfg.vial": "θ―•η‘", - "item.tfg.vial.filled": "%sθ―•η‘", + "item.tfg.vial": "η§»ζΆ²η‘", + "item.tfg.vial.filled": "%sη§»ζΆ²η‘", "item.tfg.lab_equipment": "εžιͺŒε™¨ζ", "item.tfg.dirty_lab_equipment": "ζ±‘ζŸ“ηš„εžιͺŒε™¨ζ", "item.tfg.wireless_card": "ζ˜Ÿι™…ζ— ηΊΏε‡ηΊ§ε‘", @@ -1104,14 +1180,31 @@ "item.tfg.trapdoor_casting_mold": "ζ¨‘ε…·οΌˆζ΄»ζΏι—¨οΌ‰", "item.tfg.chain_casting_mold": "ζ¨‘ε…·οΌˆι”ι“ΎοΌ‰", "item.tfg.bell_casting_mold": "ζ¨‘ε…·οΌˆι’ŸοΌ‰", + "item.tfg.rnr_plow": "铺路车", + "item.tfg.cobalt_brass_wheel": "ι’΄ι»„ι“œθ½¦θ½", + "item.tfg.cellulose_matrix": "纀维素基质", + "item.tfg.smooth_endoplasmic_reticula": "光滑内质网", + "item.tfg.rough_endoplasmic_reticula": "粗糙内质网", + "item.tfg.alpha_keratin": "Ξ±-θ§’θ›‹η™½", + "item.tfg.progenitor_cells": "η₯–η»†θƒž", + "item.tfg.catalyser_pt_re_zsm": "ι“‚-ι“Ό/ZSM-5ε‚¬εŒ–ε‰‚", + "item.tfg.used_catalyser": "εΊŸι“‚-ι“Ό/ZSM-5ε‚¬εŒ–ε‰‚", + "item.tfg.loaded_resin": "ι“Όθ΄Ÿθ½½ζ ‘θ„‚", + "item.tfg.rod_mold": "耐火铸杆樑具", + "item.tfg.small_gear_mold": "θ€η«ε°εž‹ι½Ώθ½ζ¨‘ε…·", + "item.tfg.nugget_mold": "铸粒樑具", + "item.tfg.unfired_rod_mold": "ζœͺηƒ§εˆΆηš„θ€η«ι“Έζ†ζ¨‘ε…·", + "item.tfg.unfired_small_gear_mold": "ζœͺηƒ§εˆΆηš„θ€η«ε°εž‹ι½Ώθ½ζ¨‘ε…·", + "item.tfg.unfired_nugget_mold": "ζœͺηƒ§εˆΆηš„ι“Έη²’ζ¨‘ε…·", "material.tfg.latex": "δΉ³θƒΆ", "material.tfg.vulcanized_latex": "η‘«εŒ–δΉ³θƒΆ", "material.tfg.fluix": "η¦ι²δΌŠε…‹ζ–―", "material.tfg.conifer_pitch": "松脂", + "material.tfg.pyrogallol": "η„¦ζ£“ι…š", "material.gtceu.lactose": "δΉ³η³–", "material.tfg.gabbro": "辉长岩", "material.tfg.shale": "鑡岩", - "material.tfg.claystone": "粘土岩", + "material.tfg.claystone": "黏土岩", "material.tfg.limestone": "石灰岩", "material.tfg.conglomerate": "砾岩", "material.tfg.dolomite": "白云岩", @@ -1193,6 +1286,80 @@ "material.tfg.cooked_mycelienzane": "1,3-θŒδΈηƒ·", "material.tfg.iodomethane": "η’˜η”²ηƒ·", "material.tfg.trideuteroiodomethane": "δΈ‰ζ°˜δ»£η’˜η”²ηƒ·", + "material.tfg.lauryl_alcohol": "ζœˆζ‘‚ι†‡", + "material.tfg.chlorosulfuric_acid": "ζ°―η£Ίι…Έ", + "material.tfg.sodium_dodecyl_sulfate": "εδΊŒηƒ·εŸΊη‘«ι…Έι’ ", + "material.tfg.sodium_hypochlorite": "欑氯酸钠", + "material.tfg.mutative_yeast": "ηͺε˜ι…΅ζ―", + "material.tfg.proto_growth_medium": "εŽŸδ»£η”Ÿι•ΏεŸΉε…»εŸΊ", + "material.tfg.fibroblast_feeder_cells": "成纀维ι₯²ε…»η»†θƒž", + "material.tfg.gram_stain": "ι©ε…°ζ°ζŸ“θ‰²ζΆ²", + "material.tfg.crystal_violet": "η»“ζ™Άη΄«", + "material.tfg.n_n_dimethylaniline": "N,N-δΊŒη”²εŸΊθ‹―θƒΊ", + "material.tfg.triglyceride_oil": "η”˜ζ²ΉδΈ‰ι…―ζ²Ή", + "material.tfg.cholesterol": "胆固醇", + "material.tfg.butyric_acid": "丁酸", + "material.tfg.citric_acid": "柠ζͺ¬ι…Έ", + "material.tfg.sodium_dihydrogen_citrate": "柠ζͺ¬ι…ΈδΊŒζ°’ι’ ", + "material.tfg.light_stock": "ζΈ…ι«˜ζ±€", + "material.tfg.rich_stock": "ζ΅“ι«˜ζ±€", + "material.tfg.brown_gravy": "棕色肉汁", + "material.tfg.zircon": "ι”†ηŸ³", + "material.tfg.silicon_tetrachloride": "ε››ζ°―εŒ–η‘…", + "material.tfg.zirconium_tetrachloride": "ε››ζ°―εŒ–ι”†", + "material.tfg.zirconium_oxide": "ζ°§εŒ–ι”†", + "material.tfg.zirconium_bromide": "ζΊ΄εŒ–ι”†(IV)", + "material.tfg.zirconium_diboride": "δΊŒη‘ΌεŒ–ι”†", + "material.tfg.boron_carbide": "η’³εŒ–η‘Ό", + "material.tfg.syngas": "εˆζˆζ°”", + "material.tfg.raw_aromatic_mix": "η²—θŠ³ι¦™ζ··εˆη‰©", + "material.tfg.aromatic_feedstock": "θŠ³ι¦™εŽŸζ–™", + "material.tfg.reformed_aromatic_feedstock": "ι‡ζ•΄θŠ³ι¦™εŽŸζ–™", + "material.tfg.reformate_gas": "重整气", + "material.tfg.cracker_off_gas": "θ£‚εŒ–ι‡ζ•΄ε°Ύζ°”", + "material.tfg.btx_fuel": "θŠ³ηƒƒη‡ƒζ–™", + "material.tfg.critical_steam": "δΈ΄η•Œθ’Έζ±½", + "material.tfg.americium_241": "ι•…-241", + "material.tfg.californium_252": "ι”Ž-252", + "material.tfg.neptunium_237": "ι•Ž-237", + "material.tfg.mixed_radioactive_fluid": "ζ··εˆζ”Ύε°„ζ€§ζ΅δ½“", + "material.tfg.degraded_solvent_stream": "降解溢剂桁", + "material.tfg.boron_enriched_coolant": "ε―Œη‘Όε†·ε΄ε‰‚", + "material.tfg.hot_boron_enriched_coolant": "ηƒ­ε―Œη‘Όε†·ε΄ε‰‚", + "material.tfg.polyalkylene_lubricant": "θšηƒ―ηƒƒζΆ¦ζ»‘ε‰‚", + "material.tfg.organic_degradation_slurry": "ζœ‰ζœΊι™θ§£ζ΅†ζΆ²", + "material.tfg.gas_fraction": "ζ°”η›Έι¦εˆ†", + "material.tfg.isotopic_solvent": "εŒδ½η΄ εˆ†η¦»ζΊΆε‰‚", + "material.tfg.residual_sludge": "ζ‹δ½™ζ³₯ζΈ£", + "material.tfg.sodium_fluoride": "ζ°ŸεŒ–ι’ ", + "material.tfg.trace_catalyst_salt_e": "η—•ι‡ε‚¬εŒ–ε‰‚η›E", + "material.tfg.copper_trace_catalyst_dust": "ι“œεŸΊη—•ι‡ε‚¬εŒ–ε‰‚η²‰", + "material.tfg.organic_stabilizer": "ζœ‰ζœΊη¨³εšε‰‚", + "material.tfg.inert_dust_fraction": "ζƒ°ζ€§η²‰δ½“ι¦εˆ†", + "material.tfg.recovered_ionic_complex": "ε›žζ”Άη¦»ε­η»œεˆη‰©", + "material.tfg.glucose": "葑萄糖", + "material.tfg.galactose": "εŠδΉ³η³–", + "material.tfg.fructose": "ζžœη³–", + "material.tfg.sorbitol": "山撨醇", + "material.tfg.14_sorbitan": "1,4-脱水山撨醇", + "material.tfg.isosorbide": "异山撨醇", + "material.tfg.linolenic_acid": "Ξ±-δΊšιΊ»ι…Έ", + "material.tfg.isosorbide_ln": "δΊšιΊ»ι…ΈεΌ‚ε±±ζ’¨ι†‡ι…―", + "material.tfg.epox_isosorbide_ln": "ηŽ―ζ°§εŒ–δΊšιΊ»ι…ΈεΌ‚ε±±ζ’¨ι†‡ι…―", + "material.tfg.ozone": "θ‡­ζ°§", + "material.tfg.tin_chloride": "ζ°―εŒ–δΊšι”‘", + "material.tfg.cyclohexanone": "环己ι…", + "material.tfg.cyclohex_diperoxide": "1,1-ηŽ―ε·±ηƒ·δΊŒεŸΊδΊŒζ°’θΏ‡ζ°§εŒ–η‰©", + "material.tfg.aciditic_waste": "ι…Έζ€§ηŽ―ζ°§εΊŸζ–™", + "material.tfg.tpaoh": "ε››δΈ™εŸΊζ°’ζ°§εŒ–ι“΅", + "material.tfg.sodium_silicate": "η‘…ι…Έι’ ", + "material.tfg.metal_rich_solution": "ζ΅Έε‡Ίε―Œι‡‘ε±žζΊΆζΆ²", + "material.tfg.crude_mixed_gas": "η²—ζ··εˆζ°”", + "material.tfg.zsm5_gel": "ZSM-5凝胢", + "material.tfg.leachate": "ι“Όζ΅Έε‡ΊζΆ²", + "material.tfg.clean_powder": "纯净铼瑅酸盐", + "material.tfg.catalyser_powder": "ι“Ό/ZSM-5ε‚¬εŒ–ε‰‚", + "material.tfg.sodium_aluminium": "ι“ι’ εˆι‡‘", "ore_vein.tfg.deep_sheldonite": "η‘«ι“‚ηŸΏ, ζ–‘ι“œηŸΏ", "ore_vein.tfg.deep_garnet_amethyst": "η΄«ζ°΄ζ™Ά, 石榴石", "ore_vein.tfg.deep_garnet_opal": "θ›‹η™½ηŸ³, 石榴石", @@ -1235,6 +1402,7 @@ "ore_vein.tfg.normal_sphalerite": "ι—ͺι”ŒηŸΏ, ι»„ι“ηŸΏ", "ore_vein.tfg.normal_spodumene": "ι”‚θΎ‰ηŸ³, 锂云母", "ore_vein.tfg.normal_sulfur": "η‘«, ι»„ι“ηŸΏ", + "ore_vein.tfg.normal_tarkianite": "ε‘”εŸΊε‰ηŸΏ, ζ²Ήη ‚", "ore_vein.tfg.normal_tetrahedrite": "ι»ι“œηŸΏ (ζ™ι€š)", "ore_vein.tfg.surface_bismuthinite": "θΎ‰ι“‹ηŸΏ (地葨)", "ore_vein.tfg.surface_cassiterite": "ι”‘ηŸ³ηŸΏ (地葨)", @@ -1242,7 +1410,7 @@ "ore_vein.tfg.surface_sphalerite": "ι—ͺι”ŒηŸΏ, η‘«", "ore_vein.tfg.surface_tetrahedrite": "ι»ι“œηŸΏ (地葨)", "ore_vein.tfg.deep_mars_chromite": "纒石, ι“¬ι“ηŸΏ", - "ore_vein.tfg.deep_mars_pitchblende": "ζ²₯ι’ι“€ηŸΏ, ι’ηŸΏ, ζ™Άθ΄¨ι“€ηŸΏ", + "ore_vein.tfg.deep_mars_pitchblende": "ζ²₯ι’ι“€ηŸΏ, ζ–Ήι’ηŸ³, ζ™Άθ΄¨ι“€ηŸΏ", "ore_vein.tfg.deep_mars_sheldonite": "ζ–‘ι“œηŸΏ, η‘«ι“‚ηŸΏ", "ore_vein.tfg.mars_almandine": "ι“ι“ζ¦΄ηŸ³, 蓝εηŸ³", "ore_vein.tfg.mars_apatite": "磷灰石, ηƒ§η»ΏηŸ³", @@ -1253,10 +1421,11 @@ "ore_vein.tfg.mars_sapphire": "ι‡‘ηŸΏ, θ“ηŸ³, ι“εœŸηŸΏ", "ore_vein.tfg.mars_graphite": "石咨, ι’»ηŸ³", "ore_vein.tfg.mars_hematite": "θ΅€ι“ηŸΏ, θ€ι“ηŸΏ", + "ore_vein.tfg.mars_lapis": "ι’ι‡‘ηŸ³, θ“ι‡‘ηŸ³, ζ–Ήι’ ηŸ³", "ore_vein.tfg.mars_lubricant": "ηš‚ηŸ³, ζ»‘ηŸ³, ζ΅·η»ΏηŸ³ηŸΏη ‚", "ore_vein.tfg.mars_neodynium": "ζ°Ÿη’³ι•§ι“ˆηŸΏ, η‹¬ε±…ηŸ³", "ore_vein.tfg.mars_nickel": "η‘…ι•ι•ηŸΏ, θΎ‰ι’΄ηŸΏ", - "ore_vein.tfg.mars_pitchblende": "ζ²₯ι’ι“€ηŸΏ, ι’ηŸΏ, θ΅€ι“ηŸΏ", + "ore_vein.tfg.mars_pitchblende": "ζ²₯ι’ι“€ηŸΏ, ζ–Ήι’ηŸ³, θ΅€ι“ηŸΏ", "ore_vein.tfg.mars_quartzite": "ηŸ³θ‹±ε²©, ηŸ³ζ£‰, ι‡ζ™ΆηŸ³", "ore_vein.tfg.mars_salt": "盐, ι”‚θΎ‰ηŸ³", "ore_vein.tfg.mars_stibnite": "ι»ι“œηŸΏ (ζ™ι€š)", @@ -1331,6 +1500,8 @@ "ore_vein.tfg.nether_sylvite": "ι’ΎηŸ³η›", "ore_vein.tfg.nether_tetrahedrite": "ι»ι“œηŸΏ", "ore_vein.tfg.nether_topaz": "ι»„ηŽ‰, θΎ‰ι“œηŸΏ", + "ore_vein.tfg.venus_manual_salt": "盐, ι”‚θΎ‰ηŸ³", + "ore_vein.tfg.venus_manual_sulfur": "η‘«, ι»„ι“ηŸΏ", "tfg.creative_tab.tfg": "羀峦格雷(ηŽ°δ»£η‰ˆ)", "tfg.disabled_portal": "δΌ ι€ι—¨ι­”ζ³•δΌΌδΉŽθ’«ζœͺηŸ₯εŠ›ι‡ι˜»ζŒ‘οΌŒθ―·ε°θ―•ι€šθΏ‡ε‘δΈ‹ζˆ–ε‘δΈŠζŽ’η΄’ε‰εΎ€ε…Άδ»–η»΄εΊ¦", "tfg.tooltip.food_trait.refrigerating": "Β§bε†·θ—δΏι²œ", @@ -1354,15 +1525,32 @@ "entity.tfg.wraptor.female": "译恐鸟", "tfg.tooltip.attribution.wraptor": "Β§9Β§oη‰ˆζƒε½’ε±žοΌšSpecies", "entity.tfg.surfer": "η ΄ζ΅ͺε…½", - "tfg.tooltip.surfer_variant.base": "水蓝色ηšι©", - "tfg.tooltip.surfer_variant.bubble": "η™ΎθŠ±ηΊ’ηšι©", - "tfg.tooltip.surfer_variant.horn": "黄金ηšι©", - "tfg.tooltip.surfer_variant.tube": "倜影紫ηšι©", - "tfg.tooltip.surfer_variant.fire": "葀纒色ηšι©", - "tfg.tooltip.surfer_variant.brain": "ιœœεŽŸη²‰ηšι©", + "tfg.tooltip.surfer_variant.base": "水蓝色毛ηš", + "tfg.tooltip.surfer_variant.bubble": "η™ΎθŠ±ηΊ’ζ―›ηš", + "tfg.tooltip.surfer_variant.horn": "黄金毛ηš", + "tfg.tooltip.surfer_variant.tube": "ε€œε½±θ“ζ―›ηš", + "tfg.tooltip.surfer_variant.fire": "葀纒色毛ηš", + "tfg.tooltip.surfer_variant.brain": "ιœœεŽŸη²‰ζ―›ηš", "tfg.tooltip.attribution.surfer": "Β§9Β§oη‰ˆζƒε½’ε±žοΌšWan's Ancient Beasts", + "entity.tfg.rnr_plow": "铺路车", "effect.tfg.cooling": "Β§b降温", "effect.tfg.warming": "Β§6δΏζš–", + "effect.tfg.instant_radiation": "ηž¬ι—΄θΎε°„", + "effect.tfg.chemical_burns_warning": "εŒ–ε­¦ηƒ§δΌ€", + "effect.tfg.poison_warning": "剧毒物质", + "effect.tfg.weak_poison_warning": "弱毒物质", + "effect.tfg.irritant_warning": "εˆΊζΏ€ζ€§η‰©θ΄¨", + "effect.tfg.nausea_warning": "致呕物质", + "effect.tfg.carcinogen_warning": "θ‡΄η™Œη‰©θ΄¨", + "effect.tfg.asbestosis_warning": "ηŸ³ζ£‰θ‚Ί", + "effect.tfg.arsenicosis_warning": "η ·δΈ­ζ―’", + "effect.tfg.silicosis_warning": "η‘…θ‚Ίη—…", + "effect.tfg.berylliosis_warning": "铍中毒", + "effect.tfg.methanol_poisoning_warning": "甲醇中毒", + "effect.tfg.carbon_monoxide_poisoning_warning": "δΈ€ζ°§εŒ–η’³δΈ­ζ―’", + "effect.tfg.radioactive_warning": "辐射", + "gtceu.medical_condition.radioactive": "Β§4辐射性", + "symptom.tfg.glowing": "发光", "tfg.greate.uls_limit": "Β§432Β§r (Β§8ULSΒ§r)", "tfg.greate.ls_limit": "Β§f128Β§r (Β§7LSΒ§r)", "tfg.greate.windmill_hint_1": "Β§7ι£ŽεŠ›η£¨εŠηš„ζ•ˆηŽ‡ε—ε…Άη›Έε―Ή", @@ -1385,7 +1573,7 @@ "trim_material.tfc.salt_tfc": "盐", "trim_material.tfc.sapphire_tfc": "蓝εηŸ³", "trim_material.tfc.sodalite_tfc": "ζ–Ήι’ ηŸ³", - "trim_material.tfc.coke_tfc": "焦煀", + "trim_material.tfc.armalcolite_tfc": "ι˜Ώε§†ι˜Ώε°”ζŸ―ε°”ηŸΏ", "trim_material.tfc.spessartine_tfc": "ι”°ι“ζ¦΄ηŸ³", "trim_material.tfc.topaz_tfc": "ι»„ηŽ‰", "trim_material.tfc.uvarovite_tfc": "ι’™ι“¬ζ¦΄ηŸ³", @@ -1419,10 +1607,14 @@ "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.y_ranges": "Y轴高度:%d 至 %d", "tfg.emi.ore_veins.size": "尺寸:%d", "tfg.emi.ore_veins.height": "高度:%d", "tfg.emi.ore_veins.radius": "εŠεΎ„οΌš%d", + "ore_vein.tfg.rose_quartz": "ηŽ«η‘°ηŸ³θ‹±", + "ore_vein.tfg.rose_quartz.emi.0": "η”ŸζˆδΊŽζ΅·ζ‹”θΎƒδ½Ž", + "ore_vein.tfg.rose_quartz.emi.1": "δΈ”ζ°”ε€™δ½ŽδΊŽ-10Β°Cηš„", + "ore_vein.tfg.rose_quartz.emi.2": "η”Ÿη‰©ηΎ€η³»δΈ­γ€‚", "emi.category.tfg.ore_vein_info": "ηŸΏθ„‰δΏ‘ζ―", "tfg.emi.liquid_bb_burn_time": "θ€—ζ—ΆοΌš%sη§’", "tfg.emi.liquid_bb_superheat": "Β§lθΏ‡ηƒ­", @@ -1479,10 +1671,31 @@ "tfg.tooltip.cooling_foods": "Β§bδ½Ώδ½ δ½“ζΈ©ι™δ½ŽοΌš2Β°C", "tfg.tooltip.cooling_foods_strong": "Β§bδ½Ώδ½ δ½“ζΈ©ι™δ½ŽοΌš10Β°C", "tfg.tooltip.warming_foods": "Β§6δ½Ώδ½ δ½“ζΈ©ε‡ι«˜οΌš4Β°C", + "tfg.tooltip.hotornot_container": "Β§a可ε‰ε…¨εΉηΊ³Β§6高温§a、§b低温§aδ»₯及§eζ―”η©Ίζ°”θ½»Β§aηš„η‰©ε“δΈŽζ΅δ½“γ€‚Β§r", + "tfg.tooltip.hotornot_hot_equipment": "Β§7ζδΎ›ε―Ήζ‰€ζœ‰Β§6高温§7η‰©ε“γ€ζ΅δ½“ε’Œη‘ι“ηš„ι˜²ζŠ€γ€‚Β§r", + "tfg.tooltip.hotornot_cold_equipment": "Β§7ζδΎ›ε―Ήζ‰€ζœ‰Β§b低温§7η‰©ε“γ€ζ΅δ½“ε’Œη‘ι“ηš„ι˜²ζŠ€γ€‚Β§r", + "tfg.tooltip.hotornot_floating_equipment": "Β§7ζδΎ›ε―Ήζ‰€ζœ‰Β§eζ―”η©Ίζ°”θ½»Β§7dηš„ζ°”δ½“ηš„ι˜²ζŠ€γ€‚Β§r", + "tfg.tooltip.machine.one_energy_hatch": "εͺ允θΈζœ‰δΈ”δ»…ζœ‰Β§61δΈͺΒ§f能源仓。", + "tfg.tooltip.machine.two_energy_hatches": "允θΈζœ‰ζœ€ε€šΒ§62δΈͺΒ§r能源仓。", + "tfg.tooltip.machine.subtick": "θΏ™ε°ζœΊε™¨ζ”―ζŒΒ§2子刻机刢§r!", + "tfg.tooltip.machine.coil_energy_discount": "使用§6η™½ι“œΒ§rεŽηš„ζ―δΈͺηΊΏεœˆη­‰ηΊ§ε―δ»₯减少10%ηš„θƒ½ζΊζΆˆθ€—γ€‚", + "tfg.tooltip.machine.coil_speed_discount": "Β§aη™½ι“œΒ§7ηΊΏεœˆδΌšδ½Ώε€„η†ι€ŸεΊ¦ε‡ζ…’75%,§3εŽε‘”ε°”εˆι‡‘Β§rεŽηš„ζ―δΈͺηΊΏεœˆιƒ½δΌšε’žεŠ 50%ηš„ι€ŸεΊ¦γ€‚", + "tfg.tooltip.machine.bioreactor_1": "Β§7εŒ–ε­¦δΈŽη”Ÿη‰©ε­¦ηš„δΊ€ζ±‡Β§r", + "tfg.tooltip.machine.bioreactor_2": "Β§7ι€šθΏ‡θžεˆζœ‰ζœΊδΈŽζ— ζœΊζˆεˆ†εˆΆι€ εˆζˆη”Ÿη‰©εˆΆε“Β§r", + "tfg.tooltip.machine.growth_chamber_1": "Β§7ε­•θ‚²ζ–°η”ŸΒ§r", + "tfg.tooltip.machine.growth_chamber_2": "Β§7η”Ÿη‰©ε·₯η¨‹ηš„ε…¨ε₯—θ§£ε†³ζ–Ήζ‘ˆγ€‚Β§r", + "tfg.tooltip.machine.evaporation_tower_1": "Β§7θ―·ε‹ΏδΈŽθ’Έι¦ε‘”ζ··ζ·†Β§r", + "tfg.tooltip.machine.evaporation_tower_2": "Β§7ι€šθΏ‡εŽ»ι™€ε€šδ½™ζΊΆε‰‚ζ₯桓缩溢梲。§r", + "tfg.tooltip.machine.electric_greenhouse_1": "Β§7打造ε·₯εŽ‚εŒ–ε†œδΈšηš„ηœŸζ­£ε«δΉ‰Β§r", + "tfg.tooltip.machine.electric_greenhouse_2": "Β§7εˆ©η”¨ζ°΄εŸΉθ‚²ζ ‘ζœ¨γ€δ½œη‰©εŠε…Άδ»–ζ€η‰©οΌŒε―ι€šθΏ‡θ‚₯ζ–™εŠ ι€Ÿη”Ÿι•Ώγ€‚θ™½ζΆˆθ€—θƒ½ζΊοΌŒδ½†ζ―”ε…Άδ»–η§ζ€ζ–ΉεΌζ›΄εΏ«ι€Ÿι«˜ζ•ˆγ€‚Β§r", + "tfg.tooltip.machine.cooling_tower_1": "Β§7η»™η©Ίζ°”εŠ ηƒ­Β§r", + "tfg.tooltip.machine.cooling_tower_2": "Β§7ι€šθΏ‡ε‘η©Ίζ°”ζ•£ι€Έδ½™ηƒ­ζ₯η»™ηƒ­ε†·ε΄ε‰‚εˆΆε†·γ€‚Β§r", "tfg.tooltip.obsolete.depreciated": "Β§cε·²εΌƒη”¨οΌŒζ— ζ³•ε†εˆζˆ", - "tfg.tooltip.dna_syringe.empty": "一支空注射器。", - "tfg.tooltip.dna_syringe.dirty1": "δΈ€ζ”―δ½Ώη”¨θΏ‡ηš„ζ³¨ε°„ε™¨γ€‚", - "tfg.tooltip.dna_syringe.dirty2": "注意不要用εƒεˆΊδΌ€δ»»δ½•δΊΊ...", + "tfg.tooltip.antipoison_pill": "Β§9θ§£ζ―’", + "tfg.tooltip.antipoison_tablet": "Β§9ζ²»ζ„ˆζ‰€ζœ‰ζœ‰ε³ηŠΆζ€", + "tfg.tooltip.dna_syringe.empty": "Β§7一支空注射器。§r", + "tfg.tooltip.dna_syringe.dirty1": "Β§7δΈ€ζ”―δ½Ώη”¨θΏ‡ηš„ζ³¨ε°„ε™¨γ€‚Β§r", + "tfg.tooltip.dna_syringe.dirty2": "Β§7注意不要用εƒεˆΊδΌ€δ»»δ½•δΊΊ...Β§r", "tfg.tooltip.dna_syringe.full": "DNA样本:", "tfg.tooltip.dna_syringe.explain": "右ι”η‚Ήε‡»η”Ÿη‰©θŽ·ε–DNAζ ·ζœ¬γ€‚ζ”Ύε…₯εˆζˆζ ε―ζΈ…η©Ίε…Άε†…εΉη‰©γ€‚", "tfg.tooltip.shift_hint": "[ζŒ‰δ½Shift]", @@ -1502,11 +1715,32 @@ "tfg.tooltip.component.moderate_core_frame": "可η½δΊŽθ£‚ε˜εεΊ”ε †ε†…οΌŒδ½Ώηƒ­ι‡δΈŠι™ζε‡ Β§910Β§r", "tfg.tooltip.component.dry_ice": "ε―δ½œδΈΊθ£‚ε˜εεΊ”ε †ηš„θΎ“ε…₯物δ»₯ε†·ε΄εεΊ”ε †οΌŒιœ€θ¦ζζ–™ζ”―ζžΆ", "tfg.tooltip.component.refrigerant_pellet": "ε―δ½œδΈΊθ£‚ε˜εεΊ”ε †ηš„θΎ“ε…₯物δ»₯ε†·ε΄εεΊ”ε †οΌŒιœ€θ¦ζζ–™ζ”―ζžΆ", - "tfg.tooltip.component.nuclear_turbine_1": "Β§eεŸΊη‘€δΊ§ε‡ΊοΌšΒ§r 4096 EU/t", + "tfg.tooltip.component.nuclear_turbine_1": "Β§eεŸΊη‘€δΊ§ε‡ΊοΌšΒ§r 8192 EU/t", "tfg.tooltip.component.nuclear_turbine_2": "每δΈͺ高于 Β§5EVΒ§r 阢ζ΅ηš„转子支枢 Β§7可提升§r 10% ζ•ˆηŽ‡οΌŒεΉΆδ½Ώ EU/t 产出翻倍。", + "tfg.tooltip.component.smr_generator_1": "Β§eεŸΊη‘€δΊ§ε‡ΊοΌšΒ§r 4096 EU/t", + "tfg.tooltip.component.smr_generator_2": "δΈ“δΈΊεˆ©η”¨θΆ…δΈ΄η•ŒδΊŒζ°§εŒ–η’³δΈŽε°ζ¨‘ε—εŒ–εεΊ”ε †ε‘η”΅θ€ŒθΎθ‘。\nδ½Ώη”¨ζΆ¦ζ»‘ε‰‚δΈŽεŠ ι€Ÿε‰‚ε―ζε‡ε…Άζ•ˆηŽ‡οΌŒεΉΆη‘η†εεΊ”ε †ηš„ε†·ε΄ε›žθ·―γ€‚", "tfg.gui.refrigerator.unify_dates.enabled": "θΏ‡ζœŸζ—₯ζœŸη»ŸδΈ€οΌšΒ§aεΌ€", "tfg.gui.refrigerator.unify_dates.disabled": "θΏ‡ζœŸζ—₯ζœŸη»ŸδΈ€οΌšΒ§aε…³", "tfg.machine.food_refrigerator_power_usage": "Β§7ε·₯δ½œζ—ΆζΆˆθ€—Β§r %s EU/t Β§7δ»₯δΏζŒι£Ÿη‰©ζ–°ι²œγ€‚Β§r", + "tfg.gui.rnr_plow.random_mode": "ιšζœΊζζ–™", + "tfg.gui.rnr_plow.width": "θ·―εΎ„ε½εΊ¦οΌš%d ζ Ό", + "tfg.gui.rnr_plow.empty_crushed_base_course": "Β§cηΌΊε°‘η’ŽηŸ³εŸΊε±‚!!", + "tfg.tooltip.progenitor_cells.mob": "εŠ¨η‰©εŸΉε…»οΌš", + "tfg.tooltip.fake_nutrition_info_listener": "Β§7Β§oζŒ‰δ½(Shift)ζŸ₯ηœ‹θ₯养俑息", + "tfg.tooltip.fake_nutrition_info": "Β§7θ₯ε…»οΌš", + "tfg.tooltip.cheese_slice_microplastics": "Β§b- εΎε‘‘ζ–™: 1.9", + "tfg.gui.menu.field_guide_splash_text": "ζη€ΊοΌšι˜…θ―»ι‡Žε€–ζŒ‡ε—οΌοΌοΌ", + "tfg.gui.menu.ram_usage": "ε†…ε­˜οΌš", + "tfg.gui.menu.fps_count": "εΈ§ηŽ‡οΌš", + "tfg.gui.smr_generator.credit": "θ‡΄θ°’οΌšFrontiersε›’ι˜Ÿ", + "tfg.gui.smr_generator.lubricant_used": "ζΆ¦ζ»‘ε‰‚οΌš%s", + "tfg.gui.smr_generator.booster_used": "εŠ©η‡ƒε‰‚οΌš%s", + "tfg.gui.max_energy_per_tick_amps.prefix": "ζœ€ε€§EU/t:", + "tfg.gui.consumes": "ζΆˆθ€—οΌš", + "tfg.gui.per_cycle": "ζ―ε‘¨ζœŸ", + "tfg.gui.cycle_duration": "ε‘¨ζœŸζ—Άι•ΏοΌš", + "tfg.emi.bacon_requirement": "培根 - εΏ…ι‘»ε…ˆε―Ήη”ŸηŒͺθ‚‰θΏ›θ‘ŒηƒŸη†ε€„η†", + "tag.item.tfg.dried_fruit": "干果", "tfc.jei.flint_knapping": "ζ‰“εˆΆηŸ³ε™¨", "tfc.jei.straw_knapping": "ηΌ–εˆΆεΉ²θ‰", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "ζŸ“θ‰²", @@ -1559,7 +1793,8 @@ "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.treated_wood_dust": "ι˜²θ…ζœ¨η²‰", + "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": "冷却水", @@ -1570,6 +1805,8 @@ "tfc.recipe.barrel.tfg.barrel.sunflower_to_oil": "ζε–θ‘΅θŠ±η±½ζ²Ή", "tfc.recipe.barrel.tfg.barrel.maple_syrup_to_sugar": "εˆΆη³–", "tfc.recipe.barrel.tfg.barrel.birch_syrup_to_sugar": "εˆΆη³–", + "tfc.recipe.barrel.tfg.barrel.develop_black_and_white_film": "冲洗胢卷", + "tfc.recipe.barrel.tfg.barrel.develop_color_film": "冲洗胢卷", "tfc.recipe.barrel.tfg.barrel.light_concrete": "ζ··ε‡εœŸε›ΊεŒ–", "tfc.recipe.barrel.tfg.barrel.reinforced_light_concrete_support": "ζ··ε‡εœŸε›ΊεŒ–", "tfc.recipe.barrel.tfg.barrel.dark_concrete": "ζŸ“θ‰²", @@ -1580,6 +1817,7 @@ "tfg.food_recipe.smoking": "η†εˆΆ", "tfg.food_recipe.drying": "εΉ²η‡₯", "tfg.food_recipe.freeze_drying": "冷冻干η‡₯", + "tfg.food_recipe.deep_frying": "ζ²Ήη‚Έ", "tfg.recipe.macerator_warning": "ι«˜εŽ‹ι˜Άζ΅ε‰δ»…输出第一格物品", "tfg.grapplemod.repair": "δΏε€ι…ζ–ΉοΌŒδΏη•™ζ‰€ζœ‰ε‡ηΊ§ζ¨‘块。§lεˆ‡ε‹ΏεˆεΉΆδΈ€δΈͺζŠ“ι’©οΌŒε¦εˆ™ε°†δΈ’ε€±ε…¨ιƒ¨ε‡ηΊ§οΌΒ§r", "tfg.grapplemod.upgrades.maxlen": "ε°†Β§lζœ€ε€§ι•ΏεΊ¦Β§r提升20οΌŒζœ€ι«˜ε―θΎΎ200。", @@ -1715,9 +1953,12 @@ "quests.ae2.wireless_access.desc": "ε½“δ½ θΏ›ε±•εˆ°&5EV&r阢ζ΅ζ—ΆοΌŒε°†θ§£ι”MEζ— ηΊΏθΏι—η‚ΉοΌŒε…ΆεŠŸθƒ½η›Έε½“δΊŽMEη½‘η»œηš„WiFiθ·―η”±ε™¨γ€‚ε°†ε…ΆθΏžζŽ₯θ‡³εŸΊεœ°ηš„δΈ­εΏƒθŠ‚η‚ΉοΌŒζ’ε…₯δ»»ζ„ζ•°ι‡ηš„ζ— ηΊΏδΏ‘ε·ε’žεΉ…ε‘δ»₯ζ‰©ε€§θ¦†η›–θŒƒε›΄οΌˆεŒζ—ΆδΌšε’žεŠ θƒ½θ€—οΌ‰οΌŒιšεŽε°†ζ— ηΊΏη»ˆη«―δΈŽδΉ‹η»‘εšγ€‚\n\nε½“ε…·ε€‡ηŽ―ζ°§ζ ‘θ„‚δΈŽι“‘ζζ–™εŽοΌŒδΎΏε―ι€šθΏ‡ι€šη”¨η»ˆη«―ε°†ζ‰€ζœ‰ζ— ηΊΏη»ˆη«―ζ•΄εˆδΈΊδΈ€δ½“οΌ", "quests.ae2.interplanetary_wireless.subtitle": "把东θ₯ΏεΏ˜εœ¨εΆι‡ŒδΊ†οΌŸ", "quests.ae2.interplanetary_wireless.desc": "θΏ™εΌ η‰ΉζŠε‘片可δ»₯ε‡ηΊ§δ½ ηš„ζ— ηΊΏη»ˆη«―οΌŒθ©δ½ θƒ½εœ¨δ»»δ½•距离下θΏι—η½‘η»œοΌŒε“ͺζ€•ζ˜―δΈεŒηš„δΈ–η•ŒοΌθΏ™ε¬θ΅·ζ₯ε₯½εΎ—δ»€δΊΊιšΎδ»₯η½δΏ‘?εƒζœ‰δΈ€δΈͺι‡ε€§ηΌΊη‚Ήβ€”β€”δΌ θΎ“η‰©ε“δΌšζΆˆθ€—ε·¨ι‡θƒ½ζΊγ€‚\n\n你可δ»₯ι€šθΏ‡εœ¨η‰©ε“ζ δΈ­ι…η½δΈ€δΊ›θƒ½ζΊε‘ε’ŒθΎη½δΈΊζ”Ύη”΅ζ¨‘εΌηš„η”΅ζ± ζ₯ε‹‰εΌΊθ§£ε†³οΌŒδ½†ε½“δ½ ζŠŠδΈœθ₯ΏεΏ˜εœ¨εœ°ηƒεŸΊεœ°εˆδΈζƒ³ι£žε›žεŽ»ζ—ΆοΌŒεƒεΊ”θ―₯θƒ½θΆ³ε€Ÿε₯½η”¨γ€‚\n\nθ¦θΏ›θ‘Œζ°ε½“ηš„θ‡ͺεŠ¨εŒ–δΌ θΎ“οΌŒδ½ θΏ˜ζ˜―ιœ€θ¦δΈ€δΈͺ轨道η‚。", + "quests.ae2.universal_circuits.title": "ι€šη”¨η”΅θ·―", + "quests.ae2.universal_circuits.subtitle": "原ζ₯ε¦‚ζ­€οΌŒθΏ™ε°±ζ˜―εƒδ»¬ηš„用途!", + "quests.ae2.universal_circuits.desc": "ζ˜―δΈζ˜―δΈ€η›΄ε₯½ε₯‡θΏ™δΊ›β€œι€šη”¨η”΅θ·―β€εˆ°εΊ•ζœ‰δ»€δΉˆη”¨οΌŸι™€δΊ†ε½“δΈͺε₯½ηœ‹ηš„δ»»εŠ‘ε›Ύζ ‡οΌŒεƒδ»¬δΈ»θ¦ζ˜―η”¨εœ¨AE2ι‡Œηš„οΌ\n\nε› δΈΊAE2ηš„ζ ·ζΏδΈζ€ŽδΉˆθ€η‰©ε“ζ ‡η­ΎοΌŒζ‰€δ»₯θΏ™δΊ›ι€šη”¨η”΅θ·―ε°±ζ˜―θΎθ‘ζ₯ε½“β€œδΈ‡ι‡‘ζ²Ήβ€ηš„οΌŒδ»»δ½•ιœ€θ¦η”΅θ·―ηš„ζ ·ζΏιƒ½θƒ½η”¨εƒγ€‚θΏ™ζ ·δΈ€ζ₯οΌŒζ―ε½“δ½ θ§£ι”δΈ€η§ζ–°η”΅θ·―οΌŒδ½ εͺιœ€θ¦ζ·»εŠ δΈ€δΈͺ样板ζ₯ε°†ζ–°η”΅θ·―θ½¬εŒ–δΈΊι€šη”¨η”΅θ·―οΌŒθ€Œζ— ιœ€ζ›΄ζ–°δ½ &oζ‰€ζœ‰&rηš„ζ—§ζ ·ζΏοΌ", "quests.ae2.iv.title": "IVηΊ§AE2", "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ηš„TNTη±»εž‹γ€‚\n\n仔细θ‘εˆ’οΌŒθΏ™δΈ€ζ­₯θ¦ζ±‚η›Έε½“ι«˜οΌ", + "quests.ae2.accumulation_press.desc": "θ¦θŽ·εΎ—θΏ™δΈͺ&eζ–°εž‹εŽ‹ε°ζ¨‘ζΏ&rοΌŒδ½ ιœ€θ¦ζŠ•ε…₯一些衄源。\n\nι¦–ε…ˆοΌŒδ½ εΏ…ι‘»η”¨&5δΈ€δΈͺEV级能源仓&rε‡ηΊ§δ½ ηš„θšηˆ†εŽ‹ηΌ©ζœΊγ€‚\n\nη„ΆεŽοΌŒε¦‚ζžœδ½ θΏ˜ζ²‘ζœ‰ηš„θ―οΌŒδΈΊθ‡ͺε·±ε‡†ε€‡δΈ€ε°ζ–°ηš„IVηΊ§ζΏ€ε…‰θš€εˆ»ζœΊγ€‚\n\nζœ€εŽοΌŒε‡†ε€‡ε€§ι‡ηš„ε·₯业TNTβ€”β€”θΏ™ζ˜―&cε”―δΈ€ζœ‰ζ•ˆ&rηš„TNTη±»εž‹γ€‚\n\n仔细θ‘εˆ’οΌŒθΏ™δΈ€ζ­₯θ¦ζ±‚η›Έε½“ι«˜οΌ", "quests.ae2.accumulation_processor.desc": "&eη΄―εŠ ε€„η†ε™¨&rζ―ζ¬‘εˆΆδ½œιœ€θ¦ε€§ι‡η‘…γ€‚\n\nζˆ‘δ»¬εΈŒζœ›δ½ ε·²η»ζœ‰δΈ€δΈͺδΈ“ι—¨ηš„η”΅εŠ›ι«˜η‚‰η”ŸδΊ§η‘…οΌŒζˆ–θ€…θ‡³ε°‘ζœ‰δΈ€δΈͺεΌΊε€§ηš„εŸΊη‘€θΎζ–½ζ₯εΏ«ι€ŸεˆΆι€ εƒγ€‚\n\nθ―·η›ΈεΊ”ε‡†ε€‡οΌŒε› δΈΊδ½ δΌšιœ€θ¦εΎˆε€šοΌ", "quests.ae2.mega_crafting.desc": "θΏ™δΊ›ζ˜―ε―Ή&bεˆζˆε•ε…ƒ&rηš„ε·§ε¦™ε‡ηΊ§γ€‚\n\nεƒδ»¬ε°†ζœ‰εŠ©δΊŽεŠ ι€Ÿθ‡ͺ动合成,幢θ©δ½ θ½»ζΎε€„η†ζ›΄ε€§ηš„δ»»εŠ‘。", "quests.ae2.mega_battery.desc": "ζ›΄ε€§ηš„η½‘η»œιœ€θ¦&eζ›΄ε€§ηš„η”΅ζ± &rγ€‚δ»…ζ­€θ€Œε·²οΌ", @@ -1742,9 +1983,72 @@ "quests.ae2.cell_component_1m.desc": "刢作&3MEGAε­˜ε‚¨η»„δ»Ά&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ε­˜ε‚¨η»„δ»Ά&r是你在&8TerraFirmaGreg&r中可δ»₯εˆΆδ½œηš„ζœ€ε€§η»„δ»Άγ€‚θ€εžθ―΄οΌŒζˆ‘δ»¬η›ΈδΏ‘δ½ ζ°ΈθΏœδΈιœ€θ¦εƒοΌŒδ½†εƒδΈΊεŒηΎŽδΈ»δΉ‰θ€…θ€Œε­˜εœ¨γ€‚", + "quests.ae2.cell_component_64m.desc": "&c64Mε­˜ε‚¨η»„δ»Ά&r是你在&cTerraFirmaGreg&r中可δ»₯εˆΆδ½œηš„ζœ€ε€§η»„δ»Άγ€‚θ€εžθ―΄οΌŒζˆ‘δ»¬η›ΈδΏ‘δ½ ζ°ΈθΏœδΈιœ€θ¦εƒοΌŒδ½†εƒδΈΊεŒηΎŽδΈ»δΉ‰θ€…θ€Œε­˜εœ¨γ€‚", "quests.ae2.oversize_interface.desc": "&dMEθΆ…ε€§ζŽ₯口&rζ˜―δΈ€δΈͺ&dME扩展ζŽ₯口&rοΌŒδ½†ζ―δΈͺ槽位可δ»₯εΉηΊ³16ε€ε€šηš„η‰©ε“ζˆ–ζ΅δ½“γ€‚ε¦‚ζžœδ½ ζœ‰ιœ€θ¦ε€§ι‡η‰©ε“ζˆ–ζ΅δ½“ηš„ζ΅η¨‹οΌŒθΏ™ε―θƒ½ζ˜―δ½ ηš„ι¦–ι€‰γ€‚", "quests.ae2.assembler_matrix.desc": "&6θ£…ι…ηŸ©ι˜΅&rεŸΊζœ¬δΈŠζ˜―δΈ€δΈͺ可εšεˆΆηš„ε€šζ–Ήε—εˆ†ε­θ£…ι…ε€γ€‚ζ­€δ»»εŠ‘ηš„θ¦ζ±‚εΊ”θ©δ½ θƒ½ε€Ÿζž„ε»ΊδΈ€δΈͺζˆ‘δ»¬θ€δΈΊθΆ³ε€ŸεΌΊε€§ηš„θ£…ι…ηŸ©ι˜΅γ€‚ε¦‚ζžœδ½ ζ„Ώζ„οΌŒε―δ»₯ζ·»εŠ ζ›΄ε€š&b样板核心&rζˆ–&aεˆζˆζ ΈεΏƒ&r层。\n\nεƒεΎ€εΈΈδΈ€ζ ·οΌŒζŸ₯ηœ‹ζΈΈζˆε†…ζŒ‡ε—δ»₯θŽ·ε–θ―¦η»†δΏ‘ζ―γ€‚", + "quests.combat_tips.stone_main.title": "ηŸ³ε™¨ζ—Άδ»£", + "quests.combat_tips.hammer.title": "销", + "quests.combat_tips.hammer.subtitle": "ζˆ˜ι”€ζ—Άεˆ»οΌ", + "quests.combat_tips.hammer.description": "θ™½η„Άζˆ˜ζ–—ε―θƒ½δΈζ˜―ι”€ε­ηš„ι¦–θ¦η”¨ι€”οΌŒδ½†εƒηš„ζ•ˆζžœε‡ΊδΊΊζ„ζ–™γ€‚ι”€ε­ε―ι€ ζˆ&2打击&rδΌ€ε³οΌŒθƒ½εΈεŠ©δ½ ε―Ήδ»˜ιͺ·ι«…。\n\nζ›΄ε€šε…³δΊŽ&cδΌ€ε³η±»εž‹&rηš„δΏ‘ζ―οΌŒθ―·ζŸ₯ι˜…&3ι‡Žε€–ζŒ‡ε—&r。", + "quests.combat_tips.hammer.task": "任意销", + "quests.combat_tips.javelin.title": "ζ ‡ζžͺ", + "quests.combat_tips.javelin.subtitle": "η©΄ε±…δΊΊηš„εΌ“", + "quests.combat_tips.javelin.description": "ε¦‚ζžœζƒ³ε’Œζ•ŒδΊΊδΏζŒθ·η¦»οΌŒζ ‡ζžͺε°±ζ˜―δΈΊδ½ ε‡†ε€‡ηš„ζ­¦ε™¨γ€‚θΏ™ζ˜―δ½ ζœ€ζ—©θƒ½θŽ·εΎ—ηš„θΏœη¨‹ζ­¦ε™¨γ€‚εƒδ»¬ι€ ζˆ&9ηͺεˆΊ&rδΌ€ε³οΌŒθƒ½εΈεŠ©δ½ ε―Ήδ»˜εƒ΅ε°Έγ€‚\n\nζ›΄ε€šε…³δΊŽ&cδΌ€ε³η±»εž‹&rηš„δΏ‘ζ―οΌŒθ―·ζŸ₯ι˜…&3ι‡Žε€–ζŒ‡ε—&r。\n\nδΈ€ζ—¦δ½ θŽ·εΎ—ηšι©οΌŒε°±ε―δ»₯εˆΆδ½œδΈ€δΈͺ&5η­θ’‹&r,εƒθ©δ½ θƒ½δΎΏζ·εœ°ε–η”¨ζœ€ε€š8ζ”―ζ ‡ζžͺ!", + "quests.combat_tips.javelin.task": "任意标ζžͺ", + "quests.combat_tips.axe.title": "ζ–§", + "quests.combat_tips.axe.subtitle": "δΈζ­’θƒ½η ζœ¨ε€΄", + "quests.combat_tips.axe.description": "εœ¨δ½ θƒ½ε‡ηΊ§θ£…ε€‡δΉ‹ε‰οΌŒζ–§ε€΄ε°†ζ˜―δ½ ζœ€ε―ι ηš„ζ­¦ε™¨γ€‚ι™€δΊ†ι«˜δΌ€ε³οΌŒεƒδ»¬θΏ˜ι€ ζˆ&6斩击&rδΌ€ε³οΌŒθΏ™ε°†εΈεŠ©δ½ ε―Ήδ»˜θ‹¦εŠ›ζ€•γ€‚\n\nζ›΄ε€šε…³δΊŽ&cδΌ€ε³η±»εž‹&rηš„δΏ‘ζ―οΌŒθ―·ζŸ₯ι˜…&3ι‡Žε€–ζŒ‡ε—&r。", + "quests.combat_tips.axe.task": "任意斧", + "quests.combat_tips.knife.title": "εˆ€", + "quests.combat_tips.knife.subtitle": "戳戳刺刺", + "quests.combat_tips.knife.description": "εˆ€δΈ»θ¦η”¨δΊŽεˆζˆοΌŒδ½†η΄§ζ€₯ζ—ΆδΉŸθƒ½δ½œδΈΊζ­¦ε™¨γ€‚εƒδ»¬ι€ ζˆ&9ηͺεˆΊ&rδΌ€ε³οΌŒθƒ½εΈεŠ©δ½ ε―Ήδ»˜εƒ΅ε°Έγ€‚\n\nζ›΄ε€šε…³δΊŽ&cδΌ€ε³η±»εž‹&rηš„δΏ‘ζ―οΌŒθ―·ζŸ₯ι˜…&3ι‡Žε€–ζŒ‡ε—&r。", + "quests.combat_tips.knife.task": "δ»»ζ„εˆ€", + "quests.combat_tips.club.title": "η‡§ηŸ³ζ£’", + "quests.combat_tips.club.subtitle": "撆撆!", + "quests.combat_tips.club.description": "η‡§ηŸ³ζ£’ζ˜―η›Έε½“ιžδΈ»ζ΅ηš„ζ­¦ε™¨γ€‚εƒδ»¬δΈη›΄ζŽ₯ι€ ζˆδΌ€ε³οΌŒθ€Œζ˜―δΌšζ‰“ζ–­η›ζ ‡ηš„ιͺ¨ε€΄οΌŒδ½Ώε…ΆεŠ¨εΌΉδΈεΎ—γ€‚\n\nζ™ι€šε’ŒεΌΊεŒ–η‡§ηŸ³ζ£’ιƒ½ε―δ»₯η”¨εŽŸε§‹ζζ–™εˆΆδ½œγ€‚εΌΊεŒ–η‡§ηŸ³ζ£’ζ‹₯ζœ‰ζ›΄εΏ«ηš„ζ”»ε‡»ι€ŸεΊ¦ε’Œζ›΄ι«˜ηš„θ€δΉ…εΊ¦γ€‚", + "quests.combat_tips.mold_main.title": "εŽŸε§‹ε†Άι‡‘ζœ―", + "quests.combat_tips.wood_shield.title": "ζœ¨η›Ύ", + "quests.combat_tips.wood_shield.subtitle": "ιͺ·ι«…ηš„η­οΌŒηœŸηš„εΎˆη—›", + "quests.combat_tips.wood_shield.description": "η›Ύη‰ŒδΌšδΏζŠ€δ½ ε…ε—ε…Άζœε‘ηš„ε€§ιƒ¨εˆ†δΌ€ε³ζΊγ€‚θ―·ζ³¨ζ„οΌŒεƒ&4不能&rδΏζŠ€δ½ ε…ε—ηˆ†η‚ΈδΌ€ε³γ€‚", + "quests.combat_tips.leather.title": "ηšι©ζŠ€η”²", + "quests.combat_tips.leather.subtitle": "η»ˆδΊŽζœ‰θ‘£ζœη©ΏδΊ†", + "quests.combat_tips.leather.description": "δΈ€ζ—¦δ½ ζœ‰δΊ†ηšι©οΌŒε°±θƒ½θŽ·εΎ—η¬¬δΈ€ε₯—ηœŸζ­£ηš„ζŠ€η”²γ€‚εƒδΈη—εΎˆζ£’οΌŒδ½†θƒ½ζδΎ›δ½ ε―θƒ½ιœ€θ¦ηš„ι’ε€–δΏζŠ€γ€‚\n\nεƒδ»¬θΏ˜θƒ½θ©δ½ ε―Ή&6斩击&rδΌ€ε³ζœ‰θ½»εΎζŠ—ζ€§γ€‚", + "quests.combat_tips.mold_weapons.title": "铸樑武器", + "quests.combat_tips.mold_weapons.subtitle": "ι‡‘ε±žηš„εŠ›ι‡", + "quests.combat_tips.mold_weapons.description": "樑具θ©δ½ ε―δ»₯εˆΆδ½œζ‰€ζœ‰ζ­¦ε™¨ηš„ι“œε’Œι’ι“œη‰ˆζœ¬οΌŒεŒ…ζ‹¬δΈ‰η§ζ–°η±»εž‹οΌšε‰‘γ€ι•°εˆ€ε’Œη‹Όη‰™ζ£’γ€‚\n\nε‰‘οΌšθΏ™η§ε‡θ‘‘ηš„ζ­¦ε™¨ι€ ζˆ&6斩击&rδΌ€ε³γ€‚\n\nι•°εˆ€οΌšεƒδ»¬ζ―”剑伀ε³ζ›΄ι«˜οΌŒδ½†ι€ŸεΊ¦ζ›΄ζ…’γ€‚ι€ ζˆ&6斩击&rδΌ€ε³γ€‚\n\nη‹Όη‰™ζ£’οΌšεƒδ»¬ζ˜―ι€ ζˆ&2打击&rδΌ€ε³ηš„ζœ€δ½³ζ­¦ε™¨γ€‚", + "quests.combat_tips.mold_weapons.task1": "任意剑", + "quests.combat_tips.mold_weapons.task2": "δ»»ζ„ι•°εˆ€", + "quests.combat_tips.mold_weapons.task3": "任意狼牙棒", + "quests.combat_tips.bow.title": "εΌ“δΈŽη­", + "quests.combat_tips.bow.subtitle": "η„ΆεŽζˆ‘θ†η›–ε°±δΈ­δΊ†δΈ€η­β€¦β€¦", + "quests.combat_tips.bow.description": "θ™½η„Άζ ‡ζžͺεΎˆι…·οΌŒδ½†εΎˆιšΎζ‰“θ΄₯εΌ“ε’Œη­γ€‚η­ε―θƒ½εΎˆζ˜‚θ΄΅οΌŒζ‰€δ»₯ε»ΊδΈͺ禽类养ζ–εœΊδΈζ˜―δΈͺ坏主意。η­ι€ ζˆ&9ηͺεˆΊ&rδΌ€ε³γ€‚\n\nδΈ€ζ—¦δ½ ζœ‰δΊ†ηšι©οΌŒε°±ε―δ»₯εˆΆδ½œδΈ€δΈͺ&5η­θ’‹&r,εƒθ©δ½ θƒ½δΎΏζ·εœ°ε–η”¨ζœ€ε€š8η»„η­οΌ", + "quests.combat_tips.bow.task2": "任意η­", + "quests.combat_tips.bronze_main.title": "ι’ι“œζ—Άδ»£", + "quests.combat_tips.forged_weapons.title": "锻造武器", + "quests.combat_tips.forged_weapons.subtitle": "θΏˆε‘ι”»ι“εŠζ›΄ι«˜ι˜Άζ΅οΌ", + "quests.combat_tips.forged_weapons.description": "δ»Žι”»ι“ι˜Άζ΅εΌ€ε§‹οΌŒδ½ ε°†ιœ€θ¦η›ΈεΊ”ηš„η §ζ₯ι”»ι€ εƒδ»¬γ€‚ζ­€ε€–οΌŒι“η §θ§£ι”δΊ†ε± ε°εˆ€γ€‚\n\nε± ε°εˆ€οΌšζ―”ε‰‘ζ›΄εΏ«οΌŒδ½†δΌ€ε³θΎƒδ½Žγ€‚εƒδ»¬ε…θΈδ½ δ»Žη”Ÿη‰©θΊ«δΈŠθŽ·εΎ—&cεŒε€&rθ‚‰γ€‚θΏ™δΈε½±ε“δ»»δ½•ε…Άδ»–ζŽ‰θ½η‰©γ€‚", + "quests.combat_tips.forged_weapons.task": "任意屠ε°εˆ€", + "quests.combat_tips.shield.title": "ι‡‘ε±žη›Ύη‰Œ", + "quests.combat_tips.shield.subtitle": "高级防技", + "quests.combat_tips.shield.description": "ηŽ°εœ¨θΏ™δΊ›ζ‰ζ˜―ηœŸζ­£ηš„η›Ύη‰Œγ€‚δ½Ώη”¨ε…ΆδΈ­δΉ‹δΈ€ε°†δΏζŠ€δ½ ε…ε—δ»»δ½•δΌ€ε³οΌŒεŒ…ζ‹¬ηˆ†η‚Έγ€‚\n\nεƒδ»¬θΏ˜ζœ‰δΈ€ε †ζœ‰θΆ£ηš„ε½’犢!", + "quests.combat_tips.shield.task": "δ»»ζ„ι‡‘ε±žη›Ύη‰Œ", + "quests.combat_tips.armor.title": "ι‡‘ε±žη›”η”²", + "quests.combat_tips.armor.subtitle": "εͺζœ‰ζœ€ι—ͺδΊηš„η›”η”²", + "quests.combat_tips.armor.description": "ι‡‘ε±žη›”η”²ιœ€θ¦δΈ€ζ­₯ι”»ι€ θΏ‡η¨‹οΌŒδ½†εˆ«θ’«εƒηš„ιšΎεΊ¦ε“ε€’γ€‚ι‡‘ε±žη›”η”²ε°†ζε‡δ½ θΏ›ε…₯&dεΉ½ε†₯δΉ‹εœ°&rζˆ–ε―ΉζŠ—δΈ€ηΎ€&3ηΎεŽ„ζ‘ζ°‘&rζ—Άηš„η”Ÿε­˜ε‡ ηŽ‡γ€‚\n\nζ‰€ζœ‰ι‡‘ε±žη›”η”²ιƒ½δΌšδΈΊδ½ ζδΎ›ε―Ή&6斩击&r、&9ηͺεˆΊ&rε’Œ&2打击&rδΌ€ε³ηš„ι’ε€–ι˜²ζŠ€γ€‚", + "quests.combat_tips.armor.task1": "δ»»ζ„ι‡‘ε±žε€΄η›”", + "quests.combat_tips.armor.task2": "δ»»ζ„ι‡‘ε±žθƒΈη”²", + "quests.combat_tips.armor.task3": "δ»»ζ„ι‡‘ε±žζŠ€θ…Ώ", + "quests.combat_tips.armor.task4": "δ»»ζ„ι‡‘ε±žι΄ε­", + "quests.combat_tips.iron_main.title": "铁器既代", + "quests.combat_tips.crossbow.title": "εΌ©", + "quests.combat_tips.crossbow.subtitle": "ε°±εƒζ‰‹εŠ¨ζ“δ½œηš„ζžͺ", + "quests.combat_tips.crossbow.description": "很η€ε•οΌŒεƒηš„εŠŸθƒ½ε’ŒεŽŸη‰ˆεΌ©δΈ€ζ ·γ€‚δΈŽεΌ“η±»δΌΌοΌŒδ½ ε―δ»₯使用&5η­θ’‹&rζ₯εΉηΊ³ζœ€ε€š8η»„η­γ€‚", + "quests.combat_tips.flintlock_mechanism.title": "η‡§ε‘ζœΊζž„", + "quests.combat_tips.flintlock_mechanism.subtitle": "ιšζ—ΆθΏΈε‘η«θŠ±οΌ", + "quests.combat_tips.flintlock_mechanism.description": "θΏ™ζ˜―δ½ ηš„η¬¬δΈ€δΈͺ&2ζžͺζ’°ζœΊζž„&rοΌŒζ˜―ε€§ε€šζ•°ζžͺζ”―ηš„δΈ»θ¦εˆζˆιƒ¨δ»Άγ€‚&6η‡§ε‘ζœΊζž„&rθ©δ½ ε―δ»₯εˆΆδ½œε‰δΈ€ζŠŠζžͺοΌη¬¬δΈ€ζŠŠζ˜―&9燧发手ζžͺ&r。\n\nδΈ€ζ—¦δ½ θŽ·εΎ—ι’’οΌŒε°±θƒ½εˆΆδ½œδΎΏεœεΎ—ε€šηš„&6η‡§ε‘ζœΊζž„&r。", + "quests.combat_tips.flintlock_gun.title": "燧发手ζžͺ", + "quests.combat_tips.flintlock_gun.subtitle": "εƒι“…ε­εŽ»ε§οΌ", + "quests.combat_tips.flintlock_gun.description": "ε₯½ε§οΌŒθΏ™ε°±ζ˜―δ½ δΈ€η›΄η­‰εΎ…ηš„ζ—Άεˆ»οΌŒθΏ™ζ˜―δΈ€ζŠŠζžͺ。虽焢εƒδΈζ˜―δΈ€ζŠŠεΎˆε₯½ηš„ζžͺοΌŒδ½†η§‘ζŠ€ζ€»εΎ—ζœ‰δΈͺθ΅·η‚Ήγ€‚δΈŽε…Άδ»–θΏœη¨‹ζ­¦ε™¨η›Έζ―”οΌŒζžͺζœ‰θΈε€šδΌ˜εŠΏοΌŒηŽ°εœ¨ε―Ήδ½ ζœ‰η”¨ηš„ζ˜―&3石咨黏土灡&rε’Œ&2高岭黏土灡&rζ— ζ³•ζ ΌζŒ‘ε­εΌΉγ€‚\n\nε…³δΊŽTACZζžͺζ’°ε·₯δ½œεŽŸη†ηš„ζ›΄ε€šδΏ‘ζ―οΌŒθ―·ζŸ₯ηœ‹ζœ¬η« θŠ‚ι‘Άιƒ¨ηš„ζžͺ撰图鉴。", "quests.tasktype.checkmark": "η‚Ήε‡»θΏ™ι‡ŒεŒζˆδ»»εŠ‘/η›ζ ‡", "quests.tasktype.item.any": "δ»»ζ„η±»εž‹η‰©ε“οΌš", "quests.tasktype.lookat": "ηœ‹ε‘οΌš", @@ -1755,6 +2059,7 @@ "quests.groups.interstellar": "ζ˜Ÿι™…ζ—Άδ»£", "quests.groups.technological_help": "ζŠ€ζœ―εΈεŠ©", "quests.groups.tips": "ζη€ΊδΈŽζŠ€ε·§", + "quests.groups.space_survival": "ε€ͺη©Ίη”Ÿε­˜", "quests.computer": "θ‘η—ζœΊε·₯θ‰Ί", "quests.computer.subtitle": "δΈ€ζ¬ΎιžεΈΈεΌΊε€§ηš„Luaθ„šζœ¬ζ¨‘η»„", "quests.create_logistics": "ζœΊζ’°εŠ¨εŠ›η‰©ζ΅", @@ -1824,7 +2129,7 @@ "quests.development.explanation.desc.1": "ζ Όι›·η§‘ζŠ€ηš„&l甡路发展进程&rθ΅·εˆε―θƒ½ηœ‹θ΅·ζ₯δ»€δΊΊη”Ÿη•οΌŒδ½†ε…Άεžζ²‘ι‚£δΉˆη³Ÿγ€‚\n\nι¦–ε…ˆοΌŒδ½ ιœ€θ¦ζ˜Žη™½η›ΈεŒη­‰ηΊ§ηš„η”΅θ·―ζ˜―ε―δ»₯δΊ’ζ’ηš„γ€‚δΎ‹ε¦‚οΌŒεˆΆδ½œδΈ€δΈͺ&6HV&r&6ζ…ζ‹ŒζœΊ&r,你可δ»₯使用任何&6HVη­‰ηΊ§&rηš„η”΅θ·―γ€‚", "quests.development.explanation.desc.2": "ηŽ°εœ¨οΌŒζˆ‘δ»¬ζ₯谈谈&l进程&rγ€‚δ½ ε―θƒ½ε·²η»ζ³¨ζ„εˆ°οΌŒζ―δΈͺη”΅θ·―εœ¨ε…Άε›Ύζ ‡δΈŠιƒ½ζœ‰δΈ€δΈͺι’œθ‰²δ»£η ε’ŒδΈ€δΈͺεη§°γ€‚δΎ‹ε¦‚οΌŒζ‰€ζœ‰ηš„&a量子倄理器&rιƒ½ζ˜―&a绿色&rηš„οΌŒεΉΆδΈ”εœ¨&1IVηΊ§&rη”΅θ·―η»„θ£…ζœΊδΈ­εˆΆδ½œγ€‚θ¦εˆΆδ½œδΈ€δΈͺοΌŒδ½ ι¦–ε…ˆιœ€θ¦ε‰δΈ€ηΊ§ηš„η”΅θ·―β€”β€”θΏ™ε°±ζ˜―δΈΊδ»€δΉˆοΌŒθ¦εˆΆδ½œδ½ ηš„η¬¬δΈ€δΈͺ&dLuV&r&dη”΅θ·―&rοΌˆηΊ³η±³ε€„η†ε™¨δΈ»ζœΊοΌ‰οΌŒδ½ εΏ…ι‘»δ»ŽεˆΆδ½œδΈ€δΈͺηΊ³η±³ε€„η†ε™¨εΌ€ε§‹οΌŒεΉΆι€ζ­₯εŒζˆζ―δΈ€δΈͺ&7ζ­₯ιͺ€&rγ€‚εœ¨θΏ™δΈͺδΎ‹ε­δΈ­οΌŒθΏ™ιœ€θ¦δΈ‰δΈͺζ­₯ιͺ€γ€‚\n\nθΏ™ε°±ζ˜―δΈΊδ»€δΉˆζ―δΈ€θ‘ŒδΈ­ζœ€ε³δΎ§ηš„&6η”΅θ·―&r在&a刢作&rδΈŠζ€»ζ˜―ζ›΄εžζƒ οΌšεƒδ»¬ιœ€θ¦ζ›΄ε°‘ηš„&7ζ­₯ιͺ€&r。", "quests.development.explanation.desc.3": "ζ­€ε€–οΌŒζˆ‘δ»¬θΏ˜ζ·»εŠ δΊ†&lι€šη”¨η”΅θ·―&r。εƒδ»¬ε―δ»₯η”¨δ»»δ½•η­‰ηΊ§ηš„&6η”΅θ·―&rβ€”β€”ζ— θΊζ˜―&1IVηΊ§&r、&dLuVηΊ§&r、&3UVηΊ§&rθΏ˜ζ˜―ε…Άδ»–δ»»δ½•η­‰ηΊ§β€”β€”&a合成&rθ€Œζ₯οΌŒεΉΆδΈ”εœ¨δΈŽεΊ”η”¨θƒ½ζΊ2(AE2οΌ‰θΏ›θ‘Œ&9θ‡ͺεŠ¨εŒ–&rζ—Άζžε…Άζœ‰η”¨γ€‚θ―·ε°θ―•εœ¨δ½ ζ‰€ζœ‰ηš„&f样板&r中都使用&lι€šη”¨η”΅θ·―&rθΏ›θ‘ŒηΌ–η οΌŒθΏ™ζ ·οΌŒζ―ε½“δ½ ε‡ηΊ§εˆ°ζ›΄ε₯½ηš„η”΅θ·―ζ—ΆοΌŒδ½ ε°±δΈεΏ…ι‡ζ–°εˆΆδ½œζ‰€ζœ‰ηš„&f样板&rβ€”β€”εͺιœ€θ¦ι‡ζ–°εˆΆδ½œι‚£δΊ›η”¨δΊŽεˆζˆι€šη”¨η”΅θ·―ηš„ζ ·ζΏε³ε―γ€‚", - "quests.development.explanation.task": "ε₯½ηš„οΌŒζˆ‘θ―»εŒδΊ†ε…¨ιƒ¨δΈ‰ι‘΅", + "quests.development.explanation.task": "OKοΌŒθΏ™δΈ‰ι‘΅ζˆ‘ε…¨ιƒ½θ―»θΏ‡δΊ†", "quests.development.ulv.title": "&8ULV&rη”΅θ·―", "quests.development.ulv.subtitle": "", "quests.development.ulv.desc": "εœ¨θΏ™δΈ€θ‘Œδ½ ε―δ»₯ηœ‹εˆ°θ’Έζ±½ζ—Άδ»£οΌŒζˆ–θ€…θ―΄&8ULV&rη­‰ηΊ§ηš„η­‰ζ•ˆη”΅θ·―γ€‚", @@ -1877,7 +2182,268 @@ "quests.development.hull_zpm.title": "可在&cZPM&r级刢作", "quests.development.hull_zpm.subtitle": "软仢与湿仢", "quests.development.hull_zpm.desc": "θΏ™ζ˜―&9ζΉΏδ»Ά&r甡路线。\n\nεƒε°†ζ˜―θΏ™δΈͺζ¨‘η»„εŒ…δΈ­ι’δΈ΄ηš„ζœ€ε€§θ‡ͺεŠ¨εŒ–ζŒ‘ζˆ˜γ€‚η₯δ½ ε₯½θΏγ€‚", - "quests.gregtech_energy": "ζ Όι›·η§‘ζŠ€θƒ½ζΊη³»η»Ÿ", + "quests.extreme_voltage": "&5EV&r - θΆ…ι«˜εŽ‹", + "quests.extreme_voltage.subtitle": "η™»ι™†η«ζ˜ŸοΌŒζŽ’η΄’ζ Έθ£‚ε˜ζŠ€ζœ―οΌŒε»Ίι€ ζ–°εž‹ε·¨εž‹ε€šζ–Ήε—η»“ζž„", + "quests.extreme_voltage.welcome_to_ev.title": "θΏ™ε°±ζ˜―θΆ…ι«˜εŽ‹", + "quests.extreme_voltage.welcome_to_ev.subtitle": "θ©ζˆ‘δ»¬εœ¨η«ζ˜ŸδΈŠεΌ€ε―核能既代", + "quests.extreme_voltage.welcome_to_ev.desc.1": "δ½ ε·²ε»Ίζˆζ–°ηš„&6εŒ–ε·₯δΊ§ηΊΏ&rοΌŒεˆΆι€ δΊ†ε…ˆθΏ›ηš„&bεˆι‡‘&rοΌŒη”šθ‡³ε‘ε°„&d火η­&rη™»δΈŠδΊ†ζœˆηƒγ€‚εΈŒζœ›δ½ ε–œζ¬’θΏ™ζ΅ζ—…η¨‹οΌŒε› δΈΊζŽ₯δΈ‹ζ₯δΊ‹ζƒ…ε°†ε˜εΎ—ζ›΄εŠ ε€ζ‚οΌŒεΌΊε€§ηš„ζ–°ζœΊε™¨ε’Œθ‹›εˆ»ηš„ε·₯艺正等着你。\n\n在&5EVη« θŠ‚&rδΈ­οΌŒδ½ ηš„δΈ»θ¦η›ζ ‡ζ˜―εˆΆι€ ε‡Ίη¬¬δΈ€ζ‰Ή&1IV&rε’Œ&dLuV&r甡路。", + "quests.extreme_voltage.welcome_to_ev.desc.2": "ζ²Ώι€”ζœ‰ε‡ δΈͺε…³ι”ζŒ‘ζˆ˜η­‰η€δ½ οΌš\n\n‒建造第一台&6εˆι‡‘ε†Άη‚Όη‚‰&rοΌŒθΏ™ζ˜―η”΅εŠ›ι«˜η‚‰ηš„εŠ ι€Ÿη‰ˆζœ¬οΌŒδΈ“η²ΎδΊŽεˆι‡‘ε†Άη‚Όγ€‚η”¨εƒδ½ ε°†θƒ½ε»Ίι€ η¬¬δΈ€δΈͺε€§εž‹ζœΊε™¨οΌš&6ε€§εž‹η¦»εΏƒζœΊ&rοΌŒθΏ™ε―Ήζ Έθ£‚ε˜δΊ§ηΊΏθ‡³ε…³ι‡θ¦γ€‚εƒθΏ˜θƒ½η”¨ζ›΄εΏ«ηš„ηƒ­εŠ›η¦»εΏƒζœΊε‡ηΊ§δ½ ηš„ηŸΏηŸ³ε€„η†γ€‚\n\nβ€’ζŽŒζ‘ζˆ‘δ»¬εŽŸεˆ›ηš„&eι’¨δΊ§ηΊΏ&rβ€”β€”εΎͺηŽ―ζ‰€ζœ‰ζ‰€ιœ€ζζ–™ε°†θ€ƒιͺŒδ½ ηš„ηŸ₯θ―†ε’Œθ€εΏƒγ€‚\n\nβ€’ε‡†ε€‡ι£žεΎ€&4火星&rοΌŒεœ¨ι‚£ι‡Œδ½ ε°†ζˆδΈΊδΈ€ε&aε€–ζ˜Ÿε†œεœΊδΈ»&rοΌŒεŒζ—Άε­¦δΉ ι©Ύι©­&cεŽŸε­ηš„εŠ›ι‡&r。\n\nη₯δ½ ε₯½θΏοΌŒδ»ŽθΏ™ι‡ŒεΌ€ε§‹ζ Όι›·η§‘ζŠ€ζ‰ηœŸζ­£ε±•ηŽ°ε…Άζ·±εΊ¦οΌ", + "quests.extreme_voltage.distillation_tower.title": "蒸馏呔", + "quests.extreme_voltage.distillation_tower.subtitle": "ζ€»η»Ÿε…ˆη”ŸοΌŒεˆδΈ€εΊ§θ’Έι¦ε‘”εœ¨ε·₯εŽ‚θ½εœ°δΊ†", + "quests.extreme_voltage.distillation_tower.desc.1": "&6蒸馏呔&r是&6蒸馏ε€&rηš„η›΄ζŽ₯ε‡ηΊ§η‰ˆε€šζ–Ήε—η»“ζž„γ€‚δ½ ζ— ιœ€ε†ζ‰‹εŠ¨ι€‰ζ‹©θΎ“ε‡ΊδΊ§η‰©οΌŒθ’Έι¦ε‘”δΌšθ‡ͺεŠ¨ε€„η†ζ‰€ζœ‰θΎ“ε‡ΊοΌŒδ½†δΌšζΆˆθ€—ζ›΄ε€šθƒ½ι‡γ€‚\n\nθΏ™ε°ζœΊε™¨ε°†ζˆδΈΊδ½ ζœͺζ₯θΏ›θ‘Œ&eηŸ³ζ²ΉεŒ–ε·₯&rζˆ–&eζœ‰ζœΊθ’Έι¦&rηš„ζ ΈεΏƒθΎε€‡γ€‚", + "quests.extreme_voltage.distillation_tower.desc.2": "与&6袅净间&rη±»δΌΌοΌŒθ’Έι¦ε‘”ε―ηΊ΅ε‘ζ‰©ε±•ι«˜εΊ¦δ½†ζ— ζ³•ζ‰©ε±•ε½εΊ¦γ€‚δ»Žη¬¬δΊŒε±‚εΌ€ε§‹οΌŒζ―ε’žεŠ δΈ€ε±‚ιƒ½ιœ€θ¦ι…ε€‡δΈ€δΈͺ&9θΎ“ε‡Ίδ»“&rδ»₯解锁钝倖桁体输出槽;θ‹₯ζŸε±‚ζœͺε‰θ£…θΎ“ε‡Ίδ»“οΌŒε―ΉεΊ”ζ΅δ½“ε°†δΌšθ’«ζΈ…η©Ίγ€‚ε―ι€šθΏ‡&dEMI&rζŸ₯诒配方输出数量ζ₯η‘εšζ‰€ιœ€ε±‚ζ•°γ€‚δΈ€ε¦‚ζ—’εΎ€οΌŒδ½Ώη”¨&dEMI&rηš„ε€šζ–Ήε—η»“ζž„ι’„θ§ˆεŠŸθƒ½εΉΆη‚Ήε‡»η»“ζž„ζŸ₯ηœ‹ε„ιƒ¨δ»Άε‰θ£…位η½γ€‚", + "quests.extreme_voltage.distillation_tower.desc.3": "&cζ³¨ζ„οΌš&rεœ¨η”ŸδΊ§η‡ƒζ–™ζ—Άθ―·θ°¨ζ…ŽζŽ§εˆΆθ’Έι¦ε‘”ηš„θΆ…ι’‘εΌΊεΊ¦οΌθΏ‡εΊ¦θΆ…ι’‘δΌšι™δ½Žζ€»θƒ½ι‡δΊ§ε‡ΊοΌŒε°€ε…Άε―ΉδΊŽζŸ΄ζ²Ήη‡ƒζ–™γ€‚θ―·δ»”η»†ζ Έη—幢反倍ιͺŒθ―θ‘η—η»“ζžœγ€‚", + "quests.extreme_voltage.cracker.subtitle": "δ½ θ©ζˆ‘裂开了", + "quests.extreme_voltage.cracker.desc": "&3θ£‚εŒ–ζœΊ&rζ˜―δΈ€δΈͺδΈ“ι—¨δΈΊθ£‚εŒ–ζ΅δ½“θ€Œε»Ίι€ ηš„ε€šζ–Ήε—η»“ζž„γ€‚εƒεŒ…ε«ζ‰€ζœ‰&3εŒ–ε­¦εεΊ”ι‡œ&rθ£‚εŒ–ι…ζ–ΉοΌŒεΉΆδΈ”ζ˜―&6ζ— ζŸ&rηš„γ€‚\n\nδ»Žι•ΏθΏœζ₯ηœ‹οΌŒθΏ™ζ˜―θŠ‚ηœε€§ι‡η‡ƒζ–™ηš„ε₯½ζ–Ήζ³•!\n\nζ›΄ι«˜ηš„ηΊΏεœˆη­‰ηΊ§ζδΎ›ε°εΉ…θƒ½ι‡ζŠ˜ζ‰£β€”β€”δ½Ώη”¨ζœ€δ½³ηΊΏεœˆζ—Άζœ€ι«˜ε―θΎΎ70%%。", + "quests.extreme_voltage.ev_components.title": "θΆ…ι«˜εŽ‹η»„δ»Ά", + "quests.extreme_voltage.ev_components.subtitle": "β€œδΉθΆ£β€ζ°ΈδΈεœζ­‡", + "quests.extreme_voltage.ev_components.desc": "&7εˆ°ηŽ°εœ¨οΌŒδ½ εΊ”θ―₯已经习惯了每δΈͺζ–°θƒ½ι‡η­‰ηΊ§ιƒ½δΌ΄ιšδΈ€ζ‰Ήζ–°η»„δ»Άηš„ζ¨‘εΌδΊ†γ€‚&r\n\n&5EV&rη­‰ηΊ§ζœ‰δΈ€δΊ›ε˜εŒ–β€”β€”ι¦–ε…ˆζ˜―&eι’•&rγ€‚δ½ ε―θƒ½εœ¨ζ—©ζœŸζŒ–ηŸΏζ—…θ‘ŒδΈ­ε·²η»ε‚¨ε­˜δΊ†δΈ€δΊ›οΌŒδ½†εœ¨ε€„η†&eη‹¬ε±…ηŸ³ηŸΏηŸ³&rζ—ΆδΉŸδΌšε‘ηŽ°ε€§ι‡ι’•γ€‚\n\nε…Άζ¬‘οΌŒδΌ ζ„Ÿε™¨ε’Œε‘ε°„ε™¨ιœ€θ¦&bδ½ŽζΈ©η¦ι²δΌŠε…‹ζ–―ηη &rγ€‚εΈŒζœ›δ½ ηš„&dζœˆηƒ&rεŸΊη‘€θΎζ–½ε·²η»ε»ΊζˆεΉΆθƒ½ζœ‰ζ•ˆδΎ›εΊ”εƒδ»¬γ€‚\n\nζœ€εŽοΌŒη”΅ζœΊιœ€θ¦εŽε‘”ε°”εˆι‡‘ηΊΏηΌ†γ€‚ε¦‚ζžœδ½ δΈ€η›΄εœ¨ε‹€ε‹‰εœ°ε‡ηΊ§δ½ ηš„η”΅εŠ›ι«˜η‚‰οΌŒεˆΆι€ εƒδ»¬εΊ”θ―₯ζ―”εœ¨MVζ—ΆεΏ«εΎ—ε€šοΌˆθ€ŒδΈ”δ½ θΏ˜ε―δ»₯ε›žζ”Άζ—§ηΊΏεœˆοΌοΌ‰οΌŒδ½†εˆι‡‘ε†Άη‚Όη‚‰θƒ½δ½Ώε…Άζ›΄εΏ«γ€‚", + "quests.extreme_voltage.assembler.title": "EVη»„θ£…ζœΊ", + "quests.extreme_voltage.assembler.subtitle": "开启EVε‘η”΅ε‰ηš„ζœ€εŽε†²εˆΊοΌ", + "quests.extreme_voltage.assembler.desc.1": "θ‡³ζ­€οΌŒθΏ™ε°ζœΊε™¨ηš„η”¨ζ³•δ½ εΊ”θ―₯ε·²η»δΊ†η„ΆδΊŽθƒΈγ€‚ηŽ°εœ¨ζ­£ζ˜―ζι†’δ½ ηš„ζœ€δ½³ζ—ΆζœΊοΌšε¦‚ζžœθΏ˜ζ²‘θ‘ŒεŠ¨οΌŒθ―·η«‹εˆ»η€ζ‰‹ζ‰©ε»Ίδ½ ηš„ε·₯εŽ‚γ€‚\n\nζ˜―ζ—Άε€™εœ¨δ½ ηš„εŸΊεœ°ε…¨ι’ιƒ¨η½²AE2θ‡ͺεŠ¨εŒ–δΊ†οΌŒθ©εƒδΈΊδ½ ζΊζΊδΈζ–­εœ°η”ŸδΊ§ε‡Ίζ•°εε°ζ–°ζœΊε™¨οΌŒη‘δΏζ•΄ζ‘η”ŸδΊ§ηΊΏδ»₯ζœ€ι«˜ζ•ˆηŽ‡θΏθ½¬γ€‚ε¦εˆ™οΌŒEV阢ζ΅ζŽ₯δΈ‹ζ₯ηš„ζŒ‘ζˆ˜οΌŒδΌšεƒδΈ€ε ΅ι«˜ε’™θˆ¬θ©δ½ ε―Έζ­₯ιšΎθ‘Œγ€‚\n\nεƒδΈ‡εˆ«η­‰εˆ°ζ’žδΊ†ε—ε’™ζ‰εŽζ‚”οΌ", + "quests.extreme_voltage.assembler.desc.2": "εœ¨ζˆ‘δ»¬ζ·±ε…₯排θ¨EV阢ζ΅δΉ‹ε‰οΌŒδ»₯δΈ‹ζ˜―ζˆ‘δ»¬ζŽ¨θηš„ζœ€δ½Žε‡†ε€‡ζΈ…ε•οΌš\n\n&9-&rε»Ίη«‹ζ©‘θƒΆγ€θšδΉ™ηƒ―γ€ζ°§ζ°”γ€ζ°’ζ°”γ€ζ°ζ°”δΈŽζ°―ζ°”ηš„θ‡ͺεŠ¨εŒ–δΊ§ηΊΏ\n&9-&r至少倇ε₯½δΈ€ε°η”΅εŠ›ι«˜η‚‰ε’Œε€šε°ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ\n&9-&r在AE2δΈ­δΈΊζ‰€ζœ‰η­‰ηΊ§ηš„η”΅θ·―οΌŒδ»₯εŠι©¬θΎΎγ€ζ³΅γ€ζΏζγ€ηΊΏηΌ†η­‰εΈΈη”¨ιƒ¨δ»ΆεˆΆδ½œε₯½ζ ·ζΏ\n&9-&r搭建一ε₯—δΈ“η”¨ηš„ηŸΏη‰©ε€„η†η³»η»Ÿ\n&9-&r准倇ε₯½θƒ½ζ»‘θΆ³ζ•°ε‰EVηΊ§η”΅εŠ›ιœ€ζ±‚ηš„ε‘η”΅ι˜΅εˆ—οΌˆθ―¦θ§εŽη»­δ»»εŠ‘οΌ‰\n\nδ½ η»ε―Ήθƒ½εšεˆ°οΌŒζ―•η«ŸδΈ€θ·―ι—―ε…³θ‡³ζ­€οΌŒζ—©ε·²θ―ζ˜Žδ½ ηš„εžεŠ›οΌ", + "quests.extreme_voltage.t2_rocket.title": "火η­2οΌšι’›εˆι‡‘η‹‚ζ¬’", + "quests.extreme_voltage.t2_rocket.subtitle": "θΏ™δΈͺζ˜―η΄«θ‰²ηš„", + "quests.extreme_voltage.t2_rocket.desc": "θΏ™ζ¬Ύζ–°εž‹η«η­εΊ”θ―₯δΈιšΎη»„θ£…οΌŒδ½†δ½ δΌšζ³¨ζ„εˆ°ζζ–™ζˆζœ¬η›Έζ―”δΉ‹ε‰ηš„εž‹ε·ζœ‰ζ˜Žζ˜Ύζε‡γ€‚\n\nε‡ηΊ§εŽηš„&6火η­εˆι‡‘&rηŽ°εœ¨ιœ€θ¦εŒζ—Άδ½Ώη”¨&b蒸馏水&rε’Œ&bδ½ŽζΈ©η¦ι²δΌŠε…‹ζ–―&rθΏ›θ‘Œε†·ε΄ε€„η†γ€‚\n\nθ―·η‘保已εŒε–„搭建&eι’›&rη”ŸδΊ§ηΊΏοΌŒεŽη»­ι˜Άζ΅ε°†ιœ€θ¦ε€§ι‡ι’›ζοΌε»Ίη«‹θΏžη»­η”ŸδΊ§ηΊΏδΌšδΈΊδ½ ε…εŽ»δΈε°‘ιΊ»ηƒ¦γ€‚", + "quests.extreme_voltage.mars.title": "ζˆ‘εœ¨&4火星&r上!", + "quests.extreme_voltage.mars.subtitle": "ηΊ’θ‰²ζ˜Ÿηƒ", + "quests.extreme_voltage.mars.desc.1": "εœ¨η™»ι™†&4火星&rδΉ‹ε‰οΌŒζœ‰ε‡ η‚Ήι‡θ¦δΊ‹ι‘Ήιœ€θ¦η‰’θ°γ€‚\n\nι¦–ε…ˆοΌŒδΈŽζœˆηƒη±»δΌΌοΌŒ&4火星&rθ‘¨ι’δΉŸδΌšε­˜εœ¨ζ•Œε―Ήη”Ÿη‰©γ€‚ε¦‚ζžœδ½ ε°šζœͺζŽŒζ‘ζ­»δΊ‘εŽδΏη•™ε‡θˆͺζœηš„ζ–Ήζ³•οΌŒζˆ–ζ˜―ζ²‘ζœ‰ι…ε€‡ζ–°ηš„&eEV级武器&rοΌŒδ½ ηš„ζ—…η¨‹ε°†δΌšδΈΎζ­₯维艰。\n\nθΏ™ι’—ζ˜Ÿηƒε€§ιƒ¨εˆ†ζ˜―&eθ’ζΌ δΈ–η•Œ&rοΌŒε…Άι—΄ζ•£εΈƒη€θ‹₯εΉ²\"&aε²›ε±Ώ&r\"β€”β€”εœ¨ι‚£ι‡Œδ½ θƒ½ζ‰Ύεˆ°&b水源&rγ€θŒ‚η››ηš„ζ€θ’«οΌŒδ»₯εŠζ›΄ι€‚εˆε»Ίι€ εˆε§‹εŸΊεœ°ηš„ε‰ε…¨εŒΊεŸŸγ€‚θ€ŒεΌ€ι˜”θ’ζΌ θ™½η„Άζ½œθ—η€ε…³ι”θ΅„ζΊοΌŒδ½†η¨ζœ‰δΈζ…ŽδΎΏδΌšε±ζœΊε››δΌοΌ", + "quests.extreme_voltage.mars.desc.2": "ζ‰€ζœ‰&bζ΅δ½“ηŸΏθ„‰&rε‡ιεΈƒη«ζ˜ŸοΌŒδ½†&e重氨水&rδ»…ε­˜εœ¨δΊŽθ’ζΌ δΉ‹ε€–β€”β€”θΏ™ζ­£ζ˜―εœ¨ι‚£ι‡Œε»Ίη«‹εŸΊεœ°ηš„ε¦δΈ€δΈͺ重要理由。\n\nεœ¨θƒ½ζΊζ–Ήι’οΌŒ&4火星&r在初期幢不会对你ε€ͺ友ε₯½γ€‚\n\nθΏ™ι’—ζ˜ŸηƒδΈŠε‡ δΉŽζ‰€ζœ‰ηš„εΈΈθ§„&6发甡方式&rε‡θ’«η¦η”¨ζˆ–ζ•ˆηŽ‡δ½ŽδΈ‹οΌŒθΏ™ζ„ε‘³η€δ½ εΏ…ι‘»ε‡ δΉŽεŒε…¨δΎθ΅–&cθ£‚ε˜εεΊ”ε †&rδΈΊεŸΊεœ°δΎ›θƒ½γ€‚\n\nεœ¨ζœ€εΌ€ε§‹ηš„ι˜Άζ΅οΌŒζˆ‘们建θ携带一些&b充能甡池&rοΌˆδΎ‹ε¦‚&bε…°ζ³’ι‘Ώζ°΄ζ™Ά&rοΌ‰δ½œδΈΊε―εŠ¨θƒ½ζΊοΌŒιšεŽε°½εΏ«ε»Ίη«‹ι’η‡ƒζ–™ζ£’η”ŸδΊ§δ½“η³»γ€‚\n\n在火星εžηŽ°θƒ½ζΊη¨³εšιœ€θ¦δ»˜ε‡Ίε€§ι‡ζ—Άι—΄δΈŽη²ΎεŠ›οΌŒδ½†δΈ€ζ—¦δ½ ηš„η³»η»ŸεΉ³η¨³θΏθ‘ŒοΌŒδ½ δΌšζ„Ÿθ§‰&9无限能量&rε·²ε°½εœ¨ζŽŒζ‘γ€‚", + "quests.extreme_voltage.mars.desc.3": "ζœ€εŽζι†’οΌšεˆ«θ§εˆ°ζ΄»η‰©ε°±ζ€γ€‚ζœ‰δΈ€ιƒ¨εˆ†&aεŠ¨η‰©&r可δ»₯&fι©―ε…»&r,εƒδ»¬εœ¨δ½ εŽη»­ε‘ε±•ι˜Άζ΅ε°†θ΅·εˆ°ε…³ι”δ½œη”¨γ€‚\n\nδΉŸθ―·εŠ‘εΏ…ζŸ₯ι˜…&aε€ͺη©Ίη”Ÿε­˜&rη« θŠ‚θŽ·ε–ζ›΄ε€šη«ζ˜Ÿη›Έε…³ζη€ΊοΌ\n\nδΏζŒθ­¦ζƒ•οΌŒζε‰θ§„εˆ’οΌŒη«ζ˜Ÿη»ˆε°†ε›žζŠ₯δ½ ηš„ε‹‡ζ°”γ€‚", + "quests.extreme_voltage.mars.task": "η™»ι™†η«ζ˜Ÿ", + "quests.extreme_voltage.nuclear_fuel_factory.title": "核燃料ε·₯εŽ‚", + "quests.extreme_voltage.nuclear_fuel_factory.subtitle": "ηƒ­ζ£’", + "quests.extreme_voltage.nuclear_fuel_factory.desc": "&6核燃料ε·₯εŽ‚&rδΈ“δΈΊ&cθ£‚ε˜εεΊ”ε †&rη”ŸδΊ§η‡ƒζ–™ζ£’θ€ŒθΎθ‘。\n\nθ―₯η»“ζž„ζ”―ζŒε³ε°†θ§£ι”ηš„&9εΉΆθ‘ŒζŽ§εˆΆδ»“&rοΌˆε½“ε‰ιžεΏ…ιœ€οΌ‰γ€‚ε…ΆθΏδ½œζ–ΉεΌδΈŽηƒ­θ§£η‚‰ι«˜εΊ¦η›ΈδΌΌοΌšε‰θ£…ηš„&eηΊΏεœˆη­‰ηΊ§θΆŠι«˜&rοΌŒι…ζ–Ήε€„η†ι€ŸεΊ¦θΆŠεΏ«γ€‚\n\nι‰΄δΊŽη‡ƒζ–™ζ£’η”ŸδΊ§ε…Όε…·&cθ€—ζ—Άζ€§&r与&cι«˜ζˆζœ¬ζ€§&rοΌŒζˆ‘δ»¬εΌΊηƒˆε»Ίθδ½Ώη”¨ε½“ε‰ε―η”¨ηš„&aζœ€ι«˜η­‰ηΊ§ηΊΏεœˆ&rγ€‚εˆ‡ε‹Ώεœ¨η™½ι“œηΊΏεœˆδΈŠζ΅ͺθ΄Ήζ—Άι—΄οΌŒδ½ εͺδΌšε‰ŠεΌ±θ‡ͺε·±ηš„η”ŸδΊ§ζ•ˆηŽ‡γ€‚", + "quests.extreme_voltage.heavy_water.title": "重水", + "quests.extreme_voltage.heavy_water.subtitle": "瑬核水源", + "quests.extreme_voltage.heavy_water.desc": "θ‹₯θ¦η»΄ζŒθ£‚ε˜εεΊ”ε †θΏθ‘ŒοΌŒδ½ ιœ€θ¦η¨³εšδΎ›εΊ”&b重水&rοΌŒθ€Œη›ε‰δ»…ζœ‰δΈ€δΈͺζ₯源。\n\nεƒδ½δΊŽη«ζ˜Ÿ&aηΉθŒ‚ε²›ε±Ώ&rεœ°δΈ‹ηš„&aζ·±ε±‚ζ΅δ½“ηŸΏθ„‰&rδΈ­γ€‚εΈ¦δΈŠδ½ ηš„&6排矿δ»ͺ&rοΌŒεˆ‡ζ’θ‡³&bζ΅δ½“ζŽ’ζ΅‹ζ¨‘εΌ&r开始扫描。\n\nη”±δΊŽεεΊ”ε †θΏθ‘Œζ‰€ιœ€ηš„&b重水&rι‡ζžε…ΆεΊžε€§οΌŒδ½ εΊ”θ€ηœŸθ€ƒθ™‘ζŠ•θ΅„ε»Ίι€ &6ε€§εž‹η¦»εΏƒζœΊ&rδ»₯εžηްθ‡ͺδΈ»η”ŸδΊ§γ€‚\n\nε‰θ£…&516A EV 能源仓&rεŽοΌŒδ½ ε°†εžηŽ°ηœŸζ­£ηš„ε€§θ§„ζ¨‘η”ŸδΊ§οΌŒη‘保反应堆永不断供。\n\n稳εšηš„冷却意味着稳εšηš„θƒ½ι‡β€”β€”ζ˜Žζ™Ίεœ°ε»Ίι€ ε§οΌ", + "quests.extreme_voltage.nuclear_turbine.title": "核能蒸汽梑θ½", + "quests.extreme_voltage.nuclear_turbine.subtitle": "θ’Έζ±½εŠ¨εŠ›ι‡η£…ε›žε½’", + "quests.extreme_voltage.nuclear_turbine.desc": "ι€šθΏ‡θ£‚ε˜εεΊ”οΌŒδ½ ε°†θ§£ι”ε…¨ζ–°ηš„&6专用梑θ½ζœΊ&r!(ζ™ι€šε€§εž‹θ’Έζ±½θ½ζœΊδ»…能倄理常规蒸汽。)\n\nε…ΆθΏδ½œεŽŸη†δΈŽηŽ°ζœ‰ζΆ‘θ½ζœΊη›ΈεŒοΌŒδ½†η±»δΌΌη‡ƒζ°”θ½ζœΊοΌŒεƒθ‡³ε°‘ιœ€θ¦&5EVθ½¬ε­ζ”―ζžΆ&rζ‰θƒ½θΏθ‘Œγ€‚\n\nθ―₯ζΆ‘θ½ζœΊε†…ιƒ¨ηΊΏεœˆεΏ…ι‘»δ½Ώη”¨&7η™½ι“œ&rοΌŒδΈ”δΈε½±ε“δ»»δ½•ζ€§θƒ½οΌˆδ½†εΏ…ι‘»ζ‰Ώθ€οΌŒεƒδ»¬ηœ‹θ΅·ζ₯相当不错)。\n\nζœ¬δ»»εŠ‘ζŽ¨θδΈ€η§ι€‚η”¨δΊŽε½“ε‰ι˜Άζ΅ηš„&a转子&rοΌŒδ½†δ½ ε°½ε―θ‡ͺη”±ε°θ―•δ»»δ½•ι€‚εˆηŽ°ζœ‰θ£…η½ηš„&b转子&r。", + "quests.extreme_voltage.reactor_components.title": "反应堆热η‘理", + "quests.extreme_voltage.reactor_components.subtitle": "δΈ»εŠ¨δΈŽθ’«εŠ¨ε†·ε΄ζ–Ήζ‘ˆ", + "quests.extreme_voltage.reactor_components.desc.1": "θ£‚ε˜εεΊ”ε †ζœ€ζœ‰θΆ£ηš„εŠŸθƒ½δΉ‹δΈ€οΌŒζ˜―ε―ι€šθΏ‡εœ¨ε†…ιƒ¨ζ·»εŠ ζ–Ήε—ζ₯θ°ƒζ•΄ε…Ά&eζœ€ε€§ηƒ­εΉι‡&r。\n\nδ½ ε―εœ¨εεΊ”ε †θΎΉθ§’δ½η½ε‰θ£…η‰Ήεš&6组仢方块&rοΌŒζœ€ε€šεΉηΊ³&e20δΈͺ&r。例如使用&9ζζ–™ζ”―ζžΆ&rεΉΆι€šθΏ‡θΎ“ε…₯总线注ε…₯ε†·ε΄ε…ƒδ»ΆοΌŒδ»₯ζ­€ζŽ§εˆΆηƒ­ι‡η§―η΄―γ€‚\n\nιœ€η‰Ήεˆ«ζ³¨ζ„οΌŒζζ–™ζ”―ζžΆζ˜―ε―η”¨θ£‚ε˜εεΊ”ε †&b配方倄理&rεŠŸθƒ½ηš„&cε”―δΈ€ι€”εΎ„&r。\n\nε·§ε¦™ηš„ε†…ζž„θΎθ‘将决εšεεΊ”ε †ε€„δΊŽη¨³εšθΏθ‘ŒθΏ˜ζ˜―εœζœΊε†·ε΄ηŠΆζ€οΌŒθ―·εŠ‘εΏ…θ°¨ζ…Žθ§„εˆ’εΈƒε±€οΌ", + "quests.extreme_voltage.reactor_components.desc.2": "ε¦‚ε‰ζ‰€θΏ°οΌŒεŒζ—ΆθΏθ‘ŒδΈ‰ζ Ή&e钍燃料棒&rδΌšδ½ΏεεΊ”ε †ηƒ­ι‡ε‡θ‡³ηΊ¦&c420&r,η•₯θΆ…ε‡Ίι»˜θ€δΈŠι™γ€‚δ½†ι€šθΏ‡εΌΊεŒ–&6εεΊ”ε †ιš”ηƒ­&r可ε‰ε…¨θΎΎεˆ°θ―₯ι˜ˆε€Όγ€‚\n\nεœ¨η»“ζž„ε†…ιƒ¨ζ·»εŠ &e10δΈͺιœœεŽŸηΎŠζ―›ζ‘†ζžΆ&rζˆ–&e20δΈͺη’±εœŸη‘…ι…Έη›ιš”ηƒ­ζ‘†ζžΆ&rοΌŒε―ε°†εεΊ”ε †ζœ€ε€§ηƒ­εΉι‡ζε‡θ‡³&e420&rοΌŒδ»Žθ€ŒεžηŽ°δΈ‰ζ Ήι’η‡ƒζ–™ζ£’ζŒη»­θΏθ‘Œθ€ŒδΈθ§¦ε‘ε†·ε΄ζ¨‘式。\n\nδ½†ιœ€ζ³¨ζ„οΌŒε’žεŠ ζΏ€ζ΄»ηš„η‡ƒζ–™ζ£’ζ•°ι‡δΌšεŠ ι€Ÿε…Ά&aθ€δΉ…ζŸθ€—&rγ€‚θΏ™ζ„ε‘³η€ζ―ζ Ήη‡ƒζ–™ζ£’ζ―εˆ»εΉ³ε‡δΊ§η”Ÿηš„θ’Έζ±½ι‡ε°†ε‡ε°‘οΌŒι™δ½Ž&aθƒ½ζ•ˆ&rοΌŒδ½†ε¦δΈ€ζ–Ήι’ε°†ζ˜Ύθ‘—&bεŠ ι€Ÿθ£‚ε˜ζζ–™δΊ§ε‡Ί&r。\n\nι€‰ζ‹©δΌ˜ε…ˆδΏιšœ&aθƒ½ζ•ˆ&rθΏ˜ζ˜―θΏ½ζ±‚&bεžει‡&rεŒε…¨ε–ε†³δΊŽδ½ β€”β€”θΏ™ζ­£ζ˜―掌揑&6θ£‚ε˜εεΊ”ε †&rζ ΈεΏƒζœΊεˆΆηš„εΉ³θ‘‘δΉ‹ι“γ€‚", + "quests.extreme_voltage.heat_exchanger.title": "热亀捒器", + "quests.extreme_voltage.heat_exchanger.subtitle": "ζ‰€ζœ‰θΏ™δΊ›ηƒ­ι‡ζ€»εΎ—ζœ‰δΈͺεŽ»ε€„οΌ", + "quests.extreme_voltage.heat_exchanger.desc.1": "&6热亀捒器&rζ˜―δ½ θ£‚ε˜η”ŸδΊ§ηΊΏε‡ηΊ§ηš„ε…³ι”η»„δ»Άβ€”β€”δΈδ»…η”¨δΊŽε†·ε΄οΌŒθΏ˜θƒ½η”ŸδΊ§ζ›΄ε€šι©±εŠ¨ζ Έθƒ½ζΆ‘θ½ηš„&eι«˜εŽ‹θ’Έζ±½&r。\n\nεƒε…·ε€‡&bεŒηΎŽθΆ…ι’‘&r与&bε­εˆ»ε€„η†&r特性。θ‹₯ε―ΉθΏ™δΊ›ζœ―θ―­δΈη†Ÿζ‚‰οΌŒεΌΊηƒˆε»Ίθε›žι‘Ύ&dζ Όι›·η§‘ζŠ€θƒ½ζΊη« θŠ‚&rδ»₯全青了解兢性能影响。", + "quests.extreme_voltage.heat_exchanger.desc.2": "δΈθ¦ηŠΉθ±«οΌεˆε§‹ε°±η›΄ζŽ₯ε‰θ£…&516A EV能源仓&rοΌŒδ»Žζ­€ζ— ιœ€ζ‹…εΏ§ι€ŸεΊ¦ζˆ–εžει‡ι™εˆΆγ€‚\n\nζˆ‘δ»¬εŒζ—ΆδΈΊδ½ ε‡†ε€‡δΊ†ε―θΏžζŽ₯ηƒ­δΊ€ζ’ε™¨δΈ»ζŽ§ε™¨ηš„&9ζœΊε™¨ζŽ§εˆΆθ¦†η›–ζΏ&rγ€‚ζˆ‘δ»¬ε‘ηŽ°θ―₯θΎε€‡εΆε°”δΌšζ„ε€–εœθΏοΌŒθ―·εŠ‘必启用&eι˜²ζ­’η”΅ζΊζ•…ιšœ&rεŠŸθƒ½οΌŒθΏ™ε°†θ§„ιΏζ Όι›·η§‘ζŠ€εœ¨ηž¬ζ—Άζ–­η”΅ζ—Άε…³ι—­ζœΊε™¨ηš„ζœΊεˆΆγ€‚", + "quests.extreme_voltage.refrigerant_pellet.title": "εˆΆε†·ε‰‚δΈΈ", + "quests.extreme_voltage.refrigerant_pellet.subtitle": "εΊ”ε―Ήζžη«―ζΈ©εΊ¦ηš„δΈ΄ζ—Άθ§£ε†³ζ–Ήζ‘ˆ", + "quests.extreme_voltage.refrigerant_pellet.desc": "&dι’šη‡ƒζ–™ζ£’&rθΏθ‘Œζ—ΆδΌšδΊ§η”Ÿζžι«˜ζΈ©εΊ¦β€”β€”δΊ‹εžδΈŠοΌŒδ½ ιœ€θ¦εœ¨δ½Ώη”¨&bεˆΆε†·ε‰‚δΈΈ&rζ‰θƒ½ι˜²ζ­’εεΊ”ε †θΏ›ε…₯冷却樑式。\n\nθΏ™η§δΈΈη²’η”ŸδΊ§ζˆζœ¬θΎƒι«˜οΌŒδ½†δ½ δ»ε―εœ¨ζ—©ζœŸεžηŽ°ζ‰Ήι‡η”ŸδΊ§οΌŒθ‡³ε°‘θΆ³ε€Ÿζ”―ζ’‘ζœ€εˆε‡ ζ Ήι’šη‡ƒζ–™ζ£’ηš„θΏθ‘Œγ€‚ε•ζ Ήι’šη‡ƒζ–™ζ£’ε…¨ε‘¨ζœŸθΏθ‘ŒηΊ¦ιœ€&9256&rι’—εˆΆε†·ε‰‚δΈΈγ€‚\n\n后续θ‹₯δΈζ„ΏζŒη»­εˆΆδ½œθΏ™η§ζΆˆθ€—ε“οΌŒδ½ ε°†θƒ½δ½Ώη”¨&6ι«˜ηΊ§εεΊ”ε †η»„δ»Ά&r。ε‰θ£…εŽεεΊ”ε †ζœ€ε€§ηƒ­εΉι‡ε―ε‰ε…¨ζε‡θ‡³&e600&rοΌŒζ˜Ύθ‘—ε’žεΌΊζ•ˆηŽ‡δΈŽη¨³εšζ€§γ€‚\n\nε°½ζ—©ζŠ•θ΅„ε‡ηΊ§ε†…ιƒ¨ιƒ¨δ»ΆοΌŒζ–Ήθƒ½ε‡ε°‘ε―Ήθƒ½ζΊζ ΈεΏƒηš„ι’‘ηΉη»΄ζŠ€γ€‚", + "quests.extreme_voltage.important_info.title": "ε‰ζœŸε‡†ε€‡", + "quests.extreme_voltage.important_info.subtitle": "εΌ€ε±€εΉΆιžζ˜“δΊ‹", + "quests.extreme_voltage.important_info.desc.1": "在&c火星&rε»Ίη«‹εŸΊεœ°ε‰οΌŒδ»₯δΈ‹ε‡ η‚Ήε…³ι”ε»Ίθε°†εŠ©δ½ ζˆεŠŸη«‹θΆ³οΌš\n\nεœ¨ζ‰“ι€ δΈ€ε₯—εŒζ•΄ηš„εŸΊεœ°ε»ΊθΎζ–Ήζ‘ˆδΉ‹ε‰οΌŒζˆ‘们建θδ½ ε…ˆθΏ›θ‘ŒδΈ€ζ¬‘ε‹˜ζŽ’δ»»εŠ‘οΌŒε†ε†³εšθ½θ„šη‚ΉοΌ", + "quests.extreme_voltage.important_info.desc.2": "火星基地建θΎδΈ»θ¦ζœ‰δΈ€η§ζ–Ήζ‘ˆοΌš\n\nβ€’&aε‡†ε€‡δΌ˜ε…ˆεž‹&r:在εšε±…ε‰ι’„ε…ˆι€ ι½εŒζ•΄&6θ£‚ε˜η”ŸδΊ§ηΊΏ&rζ‰€ιœ€θΎζ–½γ€‚θΏ™ζ„ε‘³η€ε·¨ι’ζζ–™ζŠ•ε…₯οΌŒδ½†ζŠ•δΊ§εŽε―εžηްθ‡ͺη»™θ‡ͺ袳。\n\nβ€’&a渐进建θΎεž‹&rοΌšε…ˆζ­ε»Ί&6核燃料ε·₯εŽ‚&r、首座&e钍燃料&r&6θ£‚ε˜εεΊ”ε †&r及&6核能蒸汽梑θ½&rγ€‚ζ­€ζ–Ήζ‘ˆε―εŠ¨ζ›΄εΏ«οΌŒδ½†εœ¨θ£‚ε˜η³»η»Ÿη¨³εšε‰θƒ½ζΊη‘η†ε°†θΎƒδΈΊθ‰°ιšΎγ€‚", + "quests.extreme_voltage.important_info.desc.3": "η”±δΊŽη«ζ˜ŸδΈŠζ‰€ζœ‰η‡ƒηƒ§δΎ›θƒ½ζ–ΉεΌε‡ζ— ζ•ˆοΌŒδ½ ιœ€θ¦ε‚¨ε€‡θΆ³ι‡&bε…°ζ³’ι‘Ώζ°΄ζ™Ά&rδΈΊεˆε§‹ι…ζ–ΉεŠδΎ›ζ°§η³»η»ŸδΎ›θƒ½γ€‚\n\nεΌΊηƒˆε»Ίθε»Ίη«‹&6蒸馏呔&r:&eη«ζ˜Ÿε€§ζ°”&r可蒫加ε·₯ζˆε―ε‘ΌεΈηš„&bη©Ίζ°”&r与倚种εžη”¨ζ°”δ½“γ€‚ζ­€ε€–οΌŒεŽ‹ηΌ©ζ°ζ°§ζ··εˆζ°”ζ‰€ιœ€εŽŸζ–™ηš†ε―取θ‡ͺζœ¬εœ°ηš„εŠι‡ζ°¨ζ°΄γ€‚\n\nη«ζ˜Ÿη”Ÿε­˜δΈι θΏζ°”οΌŒε…¨ι ε‡†ε€‡ε……εˆ†οΌ", + "quests.extreme_voltage.important_info.task": "η«ζ˜Ÿζ—Άι—΄εˆ°", + "quests.extreme_voltage.dense_lead.title": "εŠ ι€Ÿη”ŸδΊ§θ‡΄ε―†ι“…ζΏ", + "quests.extreme_voltage.dense_lead.subtitle": "ε…Άδ»–θ‡΄ε―†ζΏε―ζ²‘ζœ‰θΏ™η§εΎ…ι‡", + "quests.extreme_voltage.dense_lead.desc": "ι‰΄δΊŽεˆΆι€ &eεŽŸε­ζœΊζ’°ζ–Ήε—&rζ‰€ιœ€ηš„ε·¨ι‡&b致密铅板&rοΌŒζˆ‘δ»¬ι€šθΏ‡&6θšηˆ†εŽ‹ηΌ©ζœΊ&rζδΎ›δΊ†δΈ€η§ζ–°ηš„ζ›Ώδ»£ι…ζ–Ήγ€‚θ―₯ι…ζ–Ήζ•ˆηŽ‡θ™½η„Άη•₯ζœ‰ι™δ½ŽοΌŒδ½†θ‹₯δ½ δΈζ„Ώεœ¨&b卷板机&rε‰ζ°ΈθΏœη­‰εΎ…οΌŒε°½ε―δ»₯θ‡ͺ由选用。", + "quests.extreme_voltage.thorium_rod.title": "燃料棒", + "quests.extreme_voltage.thorium_rod.subtitle": "小心倄理", + "quests.extreme_voltage.thorium_rod.desc.1": "每根&6燃料棒&rιƒ½ε…·ε€‡η‹¬η‰Ήε±žζ€§οΌšεŒ…ζ‹¬&a耐久值&rοΌˆεœ¨εεΊ”ε †δΈ­ηš„ζŒη»­ζ—Άι•ΏοΌ‰γ€&c产热量&rδ»₯εŠδΈεŒηš„&eδΊ§η‰©η±»εž‹&r与&b蒸汽输出量&rγ€‚δ½ ε―εœ¨&aEMI&rηš„η‡ƒζ–™ζ£’ζ ‡η­Ύι‘΅η›΄ζŽ₯ζŸ₯ι˜…θΏ™δΊ›ζ•°ζγ€‚\n\n在深ε…₯δΊ†θ§£θ£‚ε˜εεΊ”ε †θΏθ‘ŒζœΊεˆΆε‰οΌŒιœ€ζŽŒζ‘δ»₯δΈ‹ε…³ι”θ¦η‚ΉοΌš", + "quests.extreme_voltage.thorium_rod.desc.2": "β€’η‡ƒζ–™ζ£’ζ˜Ύη€Ίηš„&eηƒ­ι‡η™Ύεˆ†ζ―”&rεœ¨εεΊ”ε †ε†…ιƒ¨δΌšθ½¬εŒ–δΈΊη•₯低于θ―₯ζ•°ε€ΌδΈ€ε€ηš„εžι™…ηƒ­ι‡γ€‚δΎ‹ε¦‚οΌŒε½“ζœ‰θΆ³ι‡&b重水&r泡ε…₯εεΊ”ε †ζ—ΆοΌŒ&c热量&rδΈΊ70%%ηš„&e钍燃料棒&rε°†δΊ§η”Ÿη•₯低于140ηš„ηƒ­ι‡γ€‚θΏ™η§ηƒ­ι‡ε’žι•Ώε…·ζœ‰&aε εŠ ζ€§&rοΌŒζ„ε‘³η€δΈ€ζ Ήι’η‡ƒζ–™ζ£’δΌšδ½ΏεεΊ”ε †ζ€»ηƒ­ι‡ε‡θ‡³ηΊ¦280。", + "quests.extreme_voltage.thorium_rod.desc.3": "β€’ζ‰€ζœ‰η‡ƒζ–™ζ£’ηš„&a耐久值&rεŸΊη‘€θ‘°ε‡ι€ŸηŽ‡η›ΈεŒοΌŒδ½†εεΊ”ε †ζΈ©εΊ¦θΆŠι«˜οΌŒη‡ƒζ–™ζ£’ζŸθ€—θΆŠεΏ«γ€‚ε› ζ­€οΌŒε³δ½ΏζŸη§η‡ƒζ–™ζ£’ηš„θ€δΉ…εΊ¦ζ˜―ε¦δΈ€η§ηš„4ε€οΌŒδΉŸζœͺεΏ…θƒ½ζŒη»­4倍既长——因为&cζΈ©εΊ¦δΌšη›΄ζŽ₯影响使用寿命&r。\n\nεΉ³θ‘‘εεΊ”ε †ε†…ηš„η‡ƒζ–™ζ£’ζ•°ι‡ε°†ζ˜―δ½ ι’δΈ΄ηš„ι¦–δΈͺθ£‚ε˜ζŒ‘ζˆ˜γ€‚", + "quests.extreme_voltage.fission_reactor.title": "θ£‚ε˜εεΊ”ε †", + "quests.extreme_voltage.fission_reactor.subtitle": "ε“¦δΈοΌŒεƒεˆθΏ›ε…₯冷却樑式了", + "quests.extreme_voltage.fission_reactor.desc.1": "θ‹₯想深ε…₯δΊ†θ§£&6θ£‚ε˜εεΊ”ε †&rηš„θΏθ‘ŒζœΊεˆΆοΌŒεŒ…ζ‹¬θ‘η—公式、详细运η—εŠη³»η»Ÿθ‘ŒδΈΊοΌŒθ―·ζŸ₯ι˜…&aζ Όι›·η§‘ζŠ€θƒ½ζΊ&rη« θŠ‚δΈ­ηš„δ»»εŠ‘γ€‚θ―₯ιƒ¨εˆ†ζΆ΅η›–δΊ†ηƒ­εŠ›ε­¦δΈŽθƒ½ζ•ˆη³»η»Ÿηš„ζ‰€ζœ‰ζ•°ε­¦εŽŸη†γ€‚\n\n现在θ©ζˆ‘δ»¬δΈ“ζ³¨δΊŽδ½ ηš„η¬¬δΈ€εΊ§&6钍反应堆&rοΌšε…ΆεŸΊη‘€&cζœ€ε€§ηƒ­εΉι‡&rδΈΊ&e400&rγ€‚ε¦‚ε…ˆε‰δ»»εŠ‘ζ‰€θΏ°οΌŒδΈ€ζ Ήι’η‡ƒζ–™ζ£’δΌšδ½Ώε†…ιƒ¨ηƒ­ι‡ε‡θ‡³ηΊ¦&e280&rοΌŒε€„δΊŽη»ε―Ήε‰ε…¨θŒƒε›΄οΌ›δ½†ε’žεŠ η¬¬δΈ‰ζ Ήη‡ƒζ–™ζ£’δΌšε°†ζ€»ηƒ­ι‡ζŽ¨θ‡³ηΊ¦&c420&rοΌŒθΆ…ε‡Ίι™ε€ΌεΉΆθ§¦ε‘&c冷却樑式&r。", + "quests.extreme_voltage.fission_reactor.desc.2": "εˆ«ζ‹…εΏƒοΌŒζ²‘ζœ‰ηˆ†η‚ΈοΌŒδ½†δ½ ηš„εεΊ”ε †ε°†εœζœΊη›΄θ‡³ηƒ­ι‡εŒε…¨ε†·ε΄θ‡³0方可重启。这将εŒε…¨δΈ­ζ–­δ½ ηš„&aθƒ½ζΊη”ŸδΊ§&r与&aθ£‚ε˜δΊ§η‰©&rη”Ÿζˆβ€”β€”ε ͺη§°ι‡ε€§ζŒ«ζŠ˜γ€‚\n\nε› ζ­€οΌŒη‘η†ζΏ€ζ΄»ηš„η‡ƒζ–™ζ£’ζ•°ι‡ε°†ζˆδΈΊδ½ ηš„ι¦–δΈͺ&6ζŒ‘ζˆ˜&rοΌŒδΉŸζ˜―θ£‚ε˜η³»η»Ÿηš„ζ ΈεΏƒηŽ©ζ³•γ€‚\n\nεΊ”ε―Ήζ–ΉεΌε€šη§ε€šζ ·οΌŒεžιͺŒζŽ’η΄’ζ­£ζ˜―δΉθΆ£ζ‰€εœ¨γ€‚\n\nζ–Ήζ³•δΉ‹δΈ€ζ˜―ι€šθΏ‡η»™εεΊ”ε †ε‰θ£…&6纒石端口&rοΌŒε―Ήε…Άδ½Ώη”¨&a扳手&r可在&e燃料棒θ‘ζ•°&r与&c热量等级&rη›‘ζŽ§ζ¨‘εΌι—΄εˆ‡ζ’γ€‚\n\nθ―·ζ³¨ζ„οΌŒζ‰€ζœ‰η‡ƒζ–™ζ£’ε‡ε­˜ε‚¨εœ¨&6η‡ƒζ–™ζ”―ζžΆ&rε†…γ€‚θΏ™ζ„ε‘³η€ι™εˆΆζΏ€ζ΄»η‡ƒζ–™ζ£’ζ•°ι‡εΉΆιžη€ε•εœ°εœ¨θΎ“ε…₯ζ€»ηΊΏζ”Ύη½2ζ Ήη‡ƒζ–™ζ£’ε³ε―θΎΎζˆβ€”β€”&cδ½ ιœ€θ¦η²Ύη‘ζŽ§εˆΆθΎ“ε…₯ζ€»ηΊΏηš„θΏ›ζ–™ι‡&rζ₯εžηŽ°εεΊ”ε †ηš„η²Ύε‡†θ°ƒζŽ§γ€‚", + "quests.extreme_voltage.high_pressure_steam.title": "ι«˜εŽ‹θ’Έζ±½", + "quests.extreme_voltage.high_pressure_steam.subtitle": "ζ›΄ε₯½ηš„θ’Έζ±½οΌŒζ›΄ε€§ηš„ζΆ‘θ½", + "quests.extreme_voltage.high_pressure_steam.desc": "&4重要俑息&r:θ‹₯εεΊ”ε †ζ— θΆ³ε€Ÿη©Ίι—΄θΎ“ε‡Ίι«˜εŽ‹θ’Έζ±½οΌŒε€šδ½™θ’Έζ±½ε°†η›΄ζŽ₯清空。\n\nε‡ΊδΊŽεΉ³θ‘‘ζ€§οΌˆεŠη‘ι“εžει‡οΌ‰θ€ƒι‡οΌŒ&6θ£‚ε˜εεΊ”ε †&rδΈδΊ§η”Ÿζ™ι€šθ’Έζ±½οΌŒθ€Œζ˜―η”Ÿζˆδ»…θƒ½εœ¨&6核能蒸汽θ½ζœΊ&rδΈ­δ½Ώη”¨ηš„&bι«˜εŽ‹θ’Έζ±½&r。\n\nθ‹₯尝试将兢输ε…₯标准蒸汽θ½ζœΊοΌŒε°†&cζ— ζ³•θΏδ½œ&r。", + "quests.extreme_voltage.ev_superconductor.title": "EV袅导体", + "quests.extreme_voltage.ev_superconductor.subtitle": "ζ›΄εΌΊη”΅ζ΅ζ‰Ώθ½½θƒ½εŠ›", + "quests.extreme_voltage.ev_superconductor.desc": "旒焢你已经倄理了一些&eι“€&rοΌŒδ½ εΊ”θ―₯ζŸ₯ηœ‹δΈ€δΈ‹&5EV袅导体&r。\n\nθΏ™δΊ›θΆ…ε―Όδ½“ε…·ζœ‰ζ›΄ι«˜ηš„η”΅ζ΅εΉι‡οΌŒεΈεŠ©δ½ εœ¨εŸΊεœ°ε†…ι«˜ζ•ˆδΌ θΎ“θƒ½ι‡οΌŒη‘δΏδ½ ηš„&6核能蒸汽梑θ½&rθΎ“ε‡Ίθƒ½ζ―«ζ— ζŸε€±εœ°εˆ°θΎΎζ‰€ζœ‰ζœΊε™¨γ€‚", + "quests.extreme_voltage.uraninite_dust.subtitle": "ε₯½ε€šη‡ƒζ–™ζ£’ε•Š", + "quests.extreme_voltage.uraninite_dust.desc": "刢作&e铀燃料棒&rιœ€θ¦ε€§ι‡&eζ™Άθ΄¨ι“€ηŸΏ&rβ€”β€”ζ―ζ Ήη‡ƒζ–™ζ£’ηΊ¦ιœ€&c240δ»½ηŸΏη²‰&rγ€‚θ―·ε°½ζ—©εΌ€ε§‹ι‡‡ηŸΏδ»₯ζ»‘θΆ³εŽη»­ιœ€ζ±‚γ€‚\n\nη«ζ˜ŸδΈŠεˆ†εΈƒη€&aθ§„ζ¨‘ζƒŠδΊΊ&rηš„ε€§εž‹ηŸΏθ„‰γ€‚εœ¨εŽη»­ηš„θΏ›η¨‹δΈ­οΌŒδ½ ε°†θƒ½ι€šθΏ‡&6η΄«ι‡‘ζ€§εŠ ι€Ÿε™¨&r&a无限量&rη”ŸδΊ§ζ²₯ι’ι“€ηŸΏδΈŽζ™Άθ΄¨ι“€ηŸΏη²‰οΌŒε…·δ½“η»†θŠ‚ε°†εœ¨εŽη»­δ»»εŠ‘δΈ­θ―¦η»†θ―΄ζ˜Žγ€‚", + "quests.extreme_voltage.uranium_line.title": "ι“€η”ŸδΊ§ηΊΏ", + "quests.extreme_voltage.uranium_line.subtitle": "εˆδΈ€ζ‘ε…¨ζ–°ηš„εŠ ε·₯δΊ§ηΊΏ", + "quests.extreme_voltage.uranium_line.desc": "为倄理&eι“€&rεŠε…Ά&eι“€-235同位素&rοΌŒδ½ ιœ€θ¦ζ­ε»ΊδΈ“η”¨ηš„ε°εž‹η”ŸδΊ§ηΊΏγ€‚\n\nθ―·ζ”ΎεΏƒοΌŒ&a氟&r可εΎͺηŽ―εˆ©η”¨οΌŒε› ζ­€ε”―δΈ€ιœ€θ¦ζŒη»­ζŠ•ε…₯ηš„εŽŸζ–™εͺζœ‰&eζ™Άθ΄¨ι“€ηŸΏη²‰&r。\n\nε―εœ¨εœ°ηƒε»Ίι€ θ―₯δΊ§ηΊΏοΌŒδ½†εœ¨η«ζ˜ŸθΏθ‘Œζˆ–θΈζ›΄δΈΊδΎΏζ·β€”β€”ζ―•η«Ÿη»ε€§ε€šζ•°ζ™Άθ΄¨ι“€ηŸΏιƒ½εΊ”εœ¨η«ζ˜ŸεΌ€ι‡‡γ€‚", + "quests.extreme_voltage.radioactive_waste.title": "ζ”Ύε°„ζ€§εΊŸζ–™", + "quests.extreme_voltage.radioactive_waste.subtitle": "δΈ€δΈͺδΊΊηš„εžƒεœΎζ˜―ε¦δΈ€δΈͺδΊΊηš„θΏ›η¨‹ζζ–™", + "quests.extreme_voltage.radioactive_waste.desc": "ζ”Ύε°„ζ€§εΊŸζ–™ζ˜―εˆΆι€ δΈ‹δΈ€δ»£η‡ƒζ–™ζ£’ηš„&cε…³ι”ε‰―产物&rοΌŒθ―·ε§‹η»ˆη‘δΏεεΊ”ε †η•™ζœ‰θΆ³ε€ŸθΎ“ε‡Ίη©Ίι—΄γ€‚θ‹₯θ£‚ε˜εεΊ”ε †ζ‰ΎδΈεˆ°ε―η”¨θΎ“ε‡Ίε£οΌŒεƒδΌšη›΄ζŽ₯&cζΈ…ι™€εΊŸζ–™&rοΌŒε―Όθ‡΄ηθ΄΅θ΅„ζΊζŸε€±γ€‚\n\nζˆ‘δ»¬ζŽ¨θδ»₯δΈ‹ζ–Ήζ‘ˆοΌš\n- 在&b锁εšζ¨‘式&rδΈ‹ε‰θ£…δΈ€δΈͺδΈ“η”¨ηš„θΎ“ε‡Ίδ»“\n- δ½Ώη”¨εΈ¦θΏ›ι˜Άζ΅δ½“ζŽ’ζ΅‹ε™¨θ¦†η›–ζΏηš„θΆ…ηΊ§ηΌΈ\n\nε¦‚ζžœδ½ εœ¨η«ζ˜Ÿε»Ίζœ‰&dMEη½‘η»œ&rοΌŒδΊ¦ε―ι€‰η”¨ζœ€ζ–°θ§£ι”ηš„&6MEθΎ“ε‡Ίδ»“&r。", + "quests.extreme_voltage.uranium_rod.subtitle": "η»ˆδΊŽοΌŒηœŸζ­£ηš„εŠ›ι‡οΌ", + "quests.extreme_voltage.uranium_rod.desc.1": "θΏ™ζ¬Ύη¬¬δΊŒδ»£εεΊ”ε †η‡ƒζ–™η›ΈθΎƒδΊŽζ ‡ε‡†&e钍燃料棒&rοΌŒε…·ε€‡&a4倍耐久度&rεΉΆθƒ½δΊ§η”Ÿ&a5ε€ε€šηš„θ’Έζ±½ι‡&rοΌŒδ½†δ½ ιœ€θ¦δΈΊθΏ™δΊ›δΌ˜εŠΏθ§„εˆ’η›ΈεΊ”ηš„δ»£δ»·γ€‚\n\n&9η”ŸδΊ§ζˆζœ¬δΈŽι…η½θ¦ζ±‚οΌš&r\nβ€’η”ŸδΊ§θ―₯η‡ƒζ–™δΌšζŒη»­ζΆˆθ€—&e钍燃料棒&r,建θδΈΊζ―η§ι«˜ηΊ§η‡ƒζ–™ζ£’δΈ“ι—¨ι…ε€‡η‹¬η«‹ηš„&6θ£‚ε˜εεΊ”ε †&rγ€‚ε½“η„ΆοΌŒθ‹₯δ½ ζ„Ώζ„ζŒ‘ζˆ˜εœ¨εŒδΈ€εεΊ”ε †ε†…εθ°ƒε€šη±»η‡ƒζ–™ζ£’οΌŒδΉŸζœͺ尝不可。", + "quests.extreme_voltage.uranium_rod.desc.2": "ηƒ­ι‡δΈŽθ°ƒζŽ§ζ–Ήζ‘ˆοΌšε•ζ Ήι“€η‡ƒζ–™ζ£’εœ¨ζ ‡ε‡†εεΊ”ε †ε†…δΌšδΊ§η”ŸηΊ¦&c435热量&rοΌŒθΏœθΆ…ι»˜θ€δΈŠι™γ€‚δ½ ε―ι€šθΏ‡δ»₯δΈ‹δΈ‰η§δΈ»θ¦ζ–Ήζ‘ˆεΊ”ε―ΉοΌš\n\n&7β†’&rεœ¨εεΊ”ε †ε†…ιƒ¨ε‰θ£…&e20δΈͺιœœεŽŸηΎŠζ―›ζ‘†ζžΆ&rοΌŒε°†&cζœ€ε€§ηƒ­εΉι‡&r提升至&e440&r,即可ε‰ε…¨θΏθ‘Œε•根燃料棒。\n\n&7β†’&r使用&6ζζ–™ζ”―ζžΆ&rεΉΆζŒη»­θΎ“ε…₯倧量&bεΉ²ε†°&rδ»₯ι™δ½ŽεεΊ”ε †ζΈ©εΊ¦γ€‚θ―₯ζ–Ήζ‘ˆιœ€εŒε€‡ηš„εŸΊη‘€θΎζ–½οΌŒεΉΆιœ€ζŽ₯ε…₯η«ζ˜ŸδΈŠηš„&bζΆ²ζ€δΊŒζ°§εŒ–η’³ζ΅δ½“ηŸΏθ„‰&r。\n\n&7β†’&rεœ¨ζζ–™ζ”―ζžΆδΈ­ζ”Ύη½&bεˆΆε†·ε‰‚δΈΈ&rγ€‚ε…ΆεŠŸζ•ˆδΈŽεΉ²ε†°η±»δΌΌοΌŒδ½†ε†·ε΄ζ•ˆθƒ½ζ›΄εΌΊγ€‚θ―·ζ³¨ζ„οΌŒεˆΆι€ εˆΆε†·ε‰‚δΈΈδΌšζΆˆθ€—ε€§ι‡&e氟&rοΌŒθ€ŒηŽ°ι˜Άζ΅δ½ ηš„ζ°Ÿθ΅„ζΊεΉΆιžζ— ι™γ€‚\n\nε½“η„ΆοΌŒδ½ δΉŸε―δ»₯θ‡ͺη”±θ°ƒι…οΌŒε°†θΏ™δΊ›ζ–Ήζ‘ˆη»„εˆδ½Ώη”¨γ€‚", + "quests.extreme_voltage.uranium_rod.desc.3": "&cι“€η‡ƒζ–™ζ£’ηš„ι‡θ¦ζη€ΊοΌš&r运葌&e铀燃料棒&rηš„εεΊ”ε †ιœ€θ¦ζΆˆθ€—ε·¨ι‡&b重水&rθΏ›θ‘Œε†·ε΄γ€‚εœ¨ε°θ―•δ½Ώη”¨θΏ™η±»η‡ƒζ–™ζ£’ε‰οΌŒθ―·η‘δΏε…·ε€‡ε……θΆ³ηš„ι‡ζ°΄δΊ§θƒ½ζˆ–ε‚¨ε€‡οΌŒε¦εˆ™εεΊ”ε †ε°†θΏ…ι€Ÿθ§¦εŠδΈ΄η•Œε†·ε΄ζžι™γ€‚\n\nθ―·ε‘ζ…Žθ§„εˆ’δΎ›εΊ”ι“ΎδΈŽε†·ε΄η­–η•₯β€”β€”θΏ™η±»η‡ƒζ–™θ™½θƒ½ι‡εΌΊε€§οΌŒδ½†ιœ€ι…ε₯—εŒε–„ηš„εŸΊη‘€θΎζ–½ζ”―撑。", + "quests.extreme_voltage.uranium_waste.title": "ι“€εΊŸζ–™ε’Œζ”Ύε°„ζ€§θ’Έζ±½", + "quests.extreme_voltage.uranium_waste.subtitle": "δ½ ηŒœε―ΉδΊ†οΌŒζ›΄ε€šεŠ ε·₯ζ­₯ιͺ€", + "quests.extreme_voltage.uranium_waste.desc.1": "&e铀燃料棒&rηš„δΊ§ε‡Ίη‰©ζ―”ι’η‡ƒζ–™ζ£’ζ›΄δΈΊε€ζ‚οΌš\n\n&6β€’ι“€εΊŸζ–™&rζ˜―εΌ€ε―&dι’šη”ŸδΊ§ηΊΏ&rηš„εŸΊη‘€εŽŸζ–™οΌŒε―η«‹ε³ζŠ•ε…₯倄理。\n\n&6β€’ζ”Ύε°„ζ€§θ’Έζ±½&r不同于ζ™ι€šθ’Έζ±½οΌŒιœ€ι€šθΏ‡&6热亀捒器&rθΏ›θ‘Œε€„η†β€”β€”ε°†ε…Άε―Όε…₯ηƒ­δΊ€ζ’ε™¨ε―ε›žζ”Άι«˜εŽ‹θ’Έζ±½γ€‚", + "quests.extreme_voltage.uranium_waste.desc.2": "ζ­€ε€–οΌŒζ”Ύε°„ζ€§θ’Έζ±½ιœ€ε°†&eη”²ι…Έι“΅&rεŠ ηƒ­θ½¬εŒ–δΈΊ&eη”²ι…°θƒΊ&rβ€”β€”θΏ™ζ˜―ι’šη‡ƒζ–™η”ŸδΊ§ηš„ζ ΈεΏƒε‰δ½“γ€‚θΏ™ζ„ε‘³η€εœ¨ε°†ι“€εεΊ”ε †δΊ§ε‡Ίηš„ι«˜εŽ‹θ’Έζ±½η”¨δΊŽδΎ›θƒ½ε‰οΌŒδ½ εΏ…ι‘»η‘保&eη”²ι…Έι“΅&rηš„ζŒη»­δΎ›εΊ”δ»₯η»΄ζŒθ½¬εŒ–ι“Ύζ‘γ€‚\n\n&cεžη”¨ζη€ΊοΌš&rε»Ίη«‹δΈ“η”¨δΈ”ζŒη»­θΏθ‘Œηš„δΊ§ηΊΏζ₯εˆΆι€ &eη”²ι…Έι“΅&r。θ‹₯缺乏稳εšηš„η”²ι…Έι“΅δΎ›εΊ”οΌŒδ½ ηš„ι’šη‡ƒζ–™ε·₯δ½œζ΅δΈŽι«˜εŽ‹θ’Έζ±½η”ŸδΊ§ιƒ½ε°†ι™·ε…₯εœζ»žγ€‚", + "quests.extreme_voltage.ammonium_formate.title": "η”²ι…Έι“΅", + "quests.extreme_voltage.ammonium_formate.subtitle": "ε§‹η»ˆδΏζŒεΊ“ε­˜οΌ", + "quests.extreme_voltage.ammonium_formate.desc": "要εžηŽ°ζŒη»­θƒ½ζΊη”ŸδΊ§οΌŒεΏ…ι‘»θƒ½ε€Ÿζ— ι™εˆΆι€ &eη”²ι…Έι“΅&rβ€”β€”θ‹₯缺乏θ―₯εŽŸζ–™οΌŒδ½ ε°†ζ— ζ³•ζŠŠ&bζ”Ύε°„ζ€§θ’Έζ±½&rθ½¬εŒ–δΈΊι«˜εŽ‹θ’Έζ±½γ€‚δΈθΏ‡θΏ™ε₯—桁程幢不倍杂!\n\nι¦–ε…ˆεˆΆδ½œ&eη”²ι…Έ&r:εͺιœ€ε°†η«ζ˜Ÿε€§ζ°”δΈ­ζε–ηš„δΊŒζ°§εŒ–η’³δΈŽζ₯θ‡ͺθ“„ζ°΄ε™¨ηš„ζ°΄η»“εˆε³ε―γ€‚\n\nθ‡³δΊŽ&eζ°¨ζ°”&rοΌŒη›΄ζŽ₯η”΅θ§£δ»ŽοΌˆεŠοΌ‰ι‡ζ°¨ζ°΄η¦»εΏƒθŽ·εΎ—ηš„&eζ°―εŒ–ι“΅η²‰&rε³ε―θŽ·εΎ—γ€‚\n\nη”±δΊŽδΌšδΊ§η”ŸθΏ‡ε‰©ηš„&bζ°§ζ°”&r与&b盐酸&r,请θΎεšι˜ˆε€ΌεšζœŸζΈ…ι™€θΏ™δΊ›ζ΅δ½“οΌŒιΏε…εƒδ»¬ι˜»ε‘ž&eη”²ι…Έι“΅&rη”ŸδΊ§ηΊΏγ€‚", + "quests.extreme_voltage.nuclear_residue_dust.title": "ζ ΈεΊŸζ–™η²‰ζœ«", + "quests.extreme_voltage.nuclear_residue_dust.subtitle": "ε“¦οΌŒζ°‘ε°±ζ˜―δ»ŽθΏ™ζ₯ηš„", + "quests.extreme_voltage.nuclear_residue_dust.desc": "θŽ·ε–&eζ ΈεΊŸζ–™η²‰&rζ˜―εΌ€ε―&dι’šη”ŸδΊ§ηΊΏ&rηš„η¬¬δΈ€ζ­₯。\nθ―₯θΏ‡η¨‹ιœ€θ¦εœ¨η«ζ˜ŸδΈŠδ½Ώη”¨&5EVζ°”δ½“εŠ εŽ‹ε™¨&rθΏ›θ‘Œη”ŸδΊ§γ€‚\n\nζ­€ε·₯εΊθΏ˜δΌšε‰―δΊ§&bζ°‘ζ°”&rβ€”β€”ε°½η‘后续阢ζ΅δΌšη”¨εˆ°ζ°‘ζ°”οΌŒδ½†θ―₯δΊ§ηΊΏε°†δΊ§η”Ÿζ˜Ύθ‘—η›ˆδ½™οΌŒθΏ™η›ε‰ζ˜―δ½ θŽ·ε–ζ°‘ζ°”ηš„ε”―δΈ€η¨³εšζ₯源。\n\n所幸&eζ ΈεΊŸζ–™&rζ— ιœ€ε€ζ‚εΎͺ环:εͺιœ€ζŠ•ε…₯ι“€εεΊ”ε †δΈŽηƒ­δΊ€ζ’ε™¨ηš„δΊ§ε‡Ίη‰©οΌŒζ·»εŠ &eη«ζ˜Ÿζ΅†ζΆ²&r,&6ζ°”δ½“εŠ εŽ‹ε™¨&rε³ε―ζŒη»­δΊ§ε‡Ίζ ΈεΊŸζ–™η²‰οΌŒεŠ©δ½ ε³εˆ»ζŽ¨θΏ›ι’šη”ŸδΊ§ι“Ύγ€‚", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.subtitle": "θΏ™ε₯‡ζ€ͺηš„ζ··εˆη‰©ζ˜―δ»€δΉˆοΌŸ", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.desc.1": "δΈ‹δΈ€ζ­₯将开启围绕&dι’šη”ŸδΊ§ηΊΏ&rηš„ε€šδΈͺεΎͺηŽ―ζ΅η¨‹γ€‚\n\nεˆΆι€ &bζ°§εŒ–ζ ΈεΊŸζ–™η²‰&rιœ€θ¦&bδΊŒζ°§εŒ–ζ°Ÿ&rγ€‚ε€ΌεΎ—εΊ†εΉΈηš„ζ˜―οΌŒζˆ‘δ»¬εΉΆζœͺθ¦ζ±‚δ½ ε‡†ε€‡ζ— ι™ι‡ηš„ζ°Ÿβ€”β€”θ―₯ι…ζ–Ήεœ¨ζŒη»­θΏθ‘Œζ—ΆδΌšδ»₯&bζ°’ζ°Ÿι…Έ&rε½’εΌε›žζ”Άζ°ŸοΌŒθΏ™δΊ›ζ°’ζ°Ÿι…Έε―ι€šθΏ‡η”΅θ§£ι‡ζ–°εˆ©η”¨γ€‚", + "quests.extreme_voltage.oxidized_nuclear_residue_dust.desc.2": "η”±δΊŽι…ζ–Ήθ€—ζ—ΆθΎƒι•ΏοΌŒζˆ‘δ»¬δ»ε»Ίθι’„ε…ˆε‚¨ε€‡θΆ³ι‡ζ°Ÿδ½œδΈΊεˆε§‹εΊ“ε­˜δ»₯启动εΎͺηŽ―γ€‚\n\n在歀εΎͺηŽ―θΏ‡η¨‹δΈ­θ―·ε§‹η»ˆζ³¨ζ„ε­˜ε‚¨ι—ι’˜οΌšε·²ζ»‘ηš„ε‚¨η½ζˆ–θ’«ι˜»ε‘žηš„ηΌ“ε­˜ε™¨δΌšδΈ­ζ–­ζ•΄ζ‘δΊ§ηΊΏοΌŒθ€ŒδΈ“η¨‹ι£žεΎ€η«ζ˜Ÿε€„η†ε°†εεˆ†ιΊ»ηƒ¦γ€‚δ½Ώη”¨&aθΆ…ηΊ§ηΌΈ&rζˆ–ι…ε€‡ζΊ’ε‡Ίι”€ζ―ε‡ηΊ§ηš„&aAE2ε­˜ε‚¨η£η›˜&r(θΎη½η™½εε•οΌ‰ζ˜―ζœ‰ζ•ˆηš„θ§£ε†³ζ–Ήζ‘ˆγ€‚\n\nιœ€ζ³¨ζ„θ―₯ι…ζ–ΉεŒζ—ΆδΌšδΊ§η”Ÿ&eζ”Ύε°„ζ€§ζ‹ζΆ²&rγ€‚θ―·ε°½ι‡ιΏε…ζΈ…ι™€ζ­€η‰©θ΄¨οΌŒεƒε°†ζˆδΈΊεŽη»­η³»η»Ÿηš„ι‡θ¦ζζ–™οΌŒδΎ‹ε¦‚η”¨δΊŽ&6η΄«ι‡‘ηΊΏζ€§εŠ ι€Ÿε™¨&rοΌˆδ»Žη«ζ˜ŸθŽ·ε–ζ— ι™ηŸΏηŸ³οΌ‰γ€&6η”Ÿι•Ώε€&rοΌˆη”Ÿη‰©ε·₯η¨‹ε­¦ηš„εˆζ­₯εΊ”η”¨οΌ‰δΉƒθ‡³η«ζ˜ŸδΉ‹ε€–ηš„&6θ£‚ε˜εεΊ”ε †&r。", + "quests.extreme_voltage.refined_nuclear_dust.subtitle": "ε•ŠοΌŒζˆ‘ηš„ζ°Ÿε°±ζ˜―εŽ»δΊ†θΏ™ι‡Œ", + "quests.extreme_voltage.refined_nuclear_dust.desc": "&eη²Ύη‚Όζ ΈεΊŸζ–™η²‰&rθ©δ½ ε―δ»₯δ»₯ζ°’ζ°Ÿι…Έηš„ε½’εΌε›žζ”Άζ°ŸοΌŒδ»Žθ€Œε°†ε…ΆεΎͺηŽ―η”¨δΊŽεˆΆε€‡&bδΊŒζ°§εŒ–ζ°Ÿ&r。\n\nδ½ εΊ”ε½“ε·²ζŽŒζ‘θ’Έι¦ζ°΄ηš„εˆΆζ³•οΌŒθ‹₯ζ— ε€„ε‚¨ε­˜θΏ‡ε‰©ζ°§ζ°”θ―·εŠζ—Άε°†ε…ΆζΈ…ι™€γ€‚\n\nθ―₯ι…ζ–Ήθ€—ζ—Άζžι•Ώγ€‚θ‹₯θƒ½ζΊε‚¨ε€‡ε……θΆ³οΌŒε―θ€ƒθ™‘δ½Ώη”¨&6ε€§εž‹η¦»εΏƒζœΊ&rεŠ ι€Ÿε€„η†γ€‚δ½†ιœ€θ°¨ζ…Žζ“δ½œοΌŒεœ¨ε‘ε±•ι˜Άζ΅εˆζœŸδΈεœζΆˆθ€—θΏ‡ε€šη”΅εŠ›γ€‚", + "quests.extreme_voltage.plutonium.title": "ι’š", + "quests.extreme_voltage.plutonium.subtitle": "ηœ‹ηœ‹θΏ™ε·¨ε€§ηš„εŽŸε­θ΄¨ι‡", + "quests.extreme_voltage.plutonium.desc": "δ½ η»ˆδΊŽζˆεŠŸεˆΆε€‡ε‡Ίι’šδΊ†οΌη›ε‰ε…Άε”―δΈ€εžη”¨ηš„η”¨ι€”ζ˜―εˆΆι€ &dι’šη‡ƒζ–™ζ£’&rοΌŒε› ζ­€ζ— ιœ€ε›€η§―θ―₯材料。\n\nδΊ§η”Ÿηš„ε€šδ½™θ’Έζ±½ε―ι€šθΏ‡εΈΈθ§„θ’Έζ±½θ½ζœΊεˆ©η”¨ζˆ–η›΄ζŽ₯ζŽ’ζ”ΎοΌŒδ½†ιœ€ζ³¨ζ„&6核能蒸汽梑θ½&r无法倄理歀类蒸汽。\n\nθ‹₯εΈŒζœ›ε›žζ”Άθƒ½ι‡οΌŒθ―·ε°†ε‰©δ½™θ’Έζ±½ε―Όε…₯εΈΈθ§„θ’Έζ±½θ½ζœΊοΌ›ε¦εˆ™θ―·ε‰ε…¨ζŽ’ζ”Ύε€šδ½™θ’Έζ±½δ»₯ι˜²η³»η»Ÿι˜»ε‘žγ€‚", + "quests.extreme_voltage.plutonium_rod.subtitle": "ζ›Ύε‡ δ½•ζ—ΆοΌŒζˆ‘δΉŸζœ‰η”΅εŠ›ι—ι’˜", + "quests.extreme_voltage.plutonium_rod.desc.1": "εΏ…ι‘»ζ‰Ώθ€οΌšθ™½η„Ά&dι’šη‡ƒζ–™ζ£’&rηš„εˆΆδ½œθΏ‡η¨‹η‘εžθ΄ΉδΊ‹οΌŒδ½†εƒζ˜―ε½“δΉ‹ζ— ζ„§ηš„&aθƒ½ι‡ηŒ›ε…½&rγ€‚ε…ΆδΊ§η”Ÿηš„&eι«˜εŽ‹θ’Έζ±½&rθΎ“ε‡Ίι‡θΏ‘δΉŽι“€η‡ƒζ–™ζ£’ηš„ε››ε€οΌŒε³δ½ΏθΏθ‘Œι’‘ηŽ‡θΎƒδ½ŽοΌŒδΉŸεŒε…¨θƒ½ζ»‘θΆ³η«ζ˜ŸεŸΊεœ°ηš„ζ‰©ε±•ιœ€ζ±‚γ€‚", + "quests.extreme_voltage.plutonium_rod.desc.2": "η„Άθ€ŒοΌŒε…Ά&cε·¨ε€§ηš„ηƒ­ι‡&rεΈ¦ζ₯δΊ†δΈ₯ε³»ζŒ‘ζˆ˜γ€‚ι«˜θΎΎ&c595ηš„ηƒ­ι‡&r意味着θ‹₯不使用&bεˆΆε†·ε‰‚δΈΈ&r,η›ε‰ζ Ήζœ¬ζ— ζ³•ε‰ε…¨θΏθ‘Œγ€‚θ―·ζŸ₯ι˜…ε³δΎ§δ»»εŠ‘θ―¦ζƒ…δΊ†θ§£θΏ™η§ε―ζ”Ύε…₯&6ζζ–™ζ”―ζžΆ&rηš„ζζ–™γ€‚\n\nε₯½ζΆˆζ―ζ˜―οΌŸδ»…ιœ€&61δΈͺζζ–™ζ”―ζžΆ&r即可稳εšεεΊ”ε †β€”β€”ι…εˆθ‹₯εΉ²&fιœœεŽŸηΎŠζ―›ζ‘†ζžΆ&r可将温度降至&e430热量&rηš„ε―ζŽ§θŒƒε›΄γ€‚θ‹₯使用&62δΈͺζζ–™ζ”―ζžΆ&rεˆ™θƒ½εžηްεŒηΎŽζΈ©ζŽ§γ€‚", + "quests.extreme_voltage.tritiated_water.title": "ζ°šεŒ–ζ°΄", + "quests.extreme_voltage.tritiated_water.subtitle": "ζ”Ύε°„ζ€§ζ°΄οΌŸζ€ŽδΉˆδ»€δΉˆιƒ½εΈ¦ζ”Ύε°„ζ€§οΌŸ", + "quests.extreme_voltage.tritiated_water.desc": "这种&bζ”Ύε°„ζ€§ζ°΄&rζ˜―εˆΆι€ &eηΊ³η±³CPUζ™Άεœ†&r乃至&6ι¦–ζ‰ΉIVη”΅θ·―&rηš„ζ ΈεΏƒζζ–™γ€‚\n\nεƒθΏ˜ε―η”¨δΊŽη΄«ι‡‘ηΊΏζ€§εŠ ι€Ÿε™¨οΌŒεΉΆθƒ½ι€šθΏ‡η”΅θ§£θ½¬εŒ–δΈΊ&6氚&rβ€”β€”δΈθΏ‡ηŸ­ζœŸε†…δ½ θΏ˜ζ— ιœ€ζΆ‰εŠζ­€η”¨ι€”γ€‚\n\n&cεŠ‘εΏ…ζžεΊ¦θ°¨ζ…Ž&r:&bζ°šεŒ–ζ°΄&rζžε…Άηθ΄΅οΌŒθ―·η‘δΏεŠζ»΄ιƒ½δΈζ΅ͺ费!", + "quests.extreme_voltage.nano_cpu_wafer.subtitle": "这听衷ζ₯像θ₯ι”€θ―ζœ―", + "quests.extreme_voltage.nano_cpu_wafer.desc": "&dηΊ³η±³CPUζ™Άεœ†&rζ˜―δ½ ι€šεΎ€IVη”΅θ·―ε’Œ&bAE2 64kε­˜ε‚¨ε…ƒδ»Ά&rηš„ε€§ι—¨γ€‚\n\nδ»ŽθΏ™δΈͺ阢ζ΅εΌ€ε§‹οΌŒε‡ δΉŽζ‰€ζœ‰ι«˜η­‰ηΊ§η”΅θ·―ιƒ½δΌšε€§ι‡ζΆˆθ€—θΏ™η§ζ™Άεœ†β€”β€”ζ— θΊζ˜―ι€šθΏ‡&eε‡ηΊ§ζ™Άεœ†ζœ¬θΊ«&r,还是刢作&aζœ€ι«˜η«―ηš„η”΅θ·―η‰ˆζœ¬&r。\n\nεƒδ»¬εŒζ—ΆδΉŸζ˜―εˆΆι€ &6IVη”΅ζ± &r(即&d兰泒鑿能量球&rοΌ‰ηš„εΏ…θ¦ζζ–™γ€‚\n\n参考数ζοΌš&b1ζ Ήι’šη‡ƒζ–™ζ£’&rδΊ§η”Ÿηš„ζ°šεŒ–ζ°΄ζ°ε₯½ε―εˆΆι€ &e9δΈͺηΊ³η±³CPUζ™Άεœ†&r。", + "quests.extreme_voltage.first_iv_circuit.title": "δΈ»ζœΊβ€”β€”η¬¬δΈ€δΈͺIV甡路!", + "quests.extreme_voltage.first_iv_circuit.subtitle": "EV阢ζ΅η»ˆδΊŽεŒη»“δΊ†ε—οΌŸ", + "quests.extreme_voltage.first_iv_circuit.desc": "εŽ†η»ζΌ«ι•Ώε‘ε±•οΌŒδ½ η»ˆδΊŽθŽ·εΎ—ζ–°εž‹η”΅θ·―εΉΆθ§£ι”δΊ†ε…¨ζ–°ζ—Άδ»£γ€‚δΌ—ε€šε―θƒ½ζ€§ηŽ°ε·²εΌ€ε―οΌŒδ½†δ½ ηš„ι¦–θ¦η›ζ ‡εΊ”ζ˜―ε»Ίι€ &6IVη»„θ£…ζœΊ&rβ€”β€”εƒε°†θƒ½εˆΆι€ &eζ…’εŒ–ε †θŠ―ζ‘†ζžΆ&rοΌŒε€§εΉ…ζε‡εεΊ”ε †ηš„&cζœ€ε€§ηƒ­εΉι‡&rοΌŒδ»Žζ­€δΈε†δΎθ΅–εˆΆε†·ε‰‚δΈΈγ€‚\n\n你还可δ»₯搭建&5EVη”΅θ·―η»„θ£…ζœΊ&rζ₯解锁&b纳米倄理器甡路&rγ€‚δ½†θ―·ζ³¨ζ„οΌŒθΏ™δΊ›η”΅θ·―ιœ€θ¦ηΊ³η±³CPUθŠ―η‰‡ζ”―ζ’‘οΌŒε› ζ­€εΏ…ι‘»ε»Ίη«‹εŒε–„ηš„θ£‚ε˜η”ŸδΊ§δ½“η³»δ½œδΈΊεŽη›Ύγ€‚\n\nζ›΄ε€šη»†θŠ‚ε°†εœ¨&6IVη―‡η« &r中详述,现在你终于可δ»₯ε‰εΏƒζŽ¨θΏ›θΏ™δΈͺε…¨ζ–°ι˜Άζ΅δΊ†γ€‚", + "quests.extreme_voltage.moderate_core.subtitle": "重倧升级ζ₯δΈ΄", + "quests.extreme_voltage.moderate_core.desc": "ζ˜―ζ—Άε€™ε―Ή&6θ£‚ε˜εεΊ”ε †&rθΏ›θ‘Œι‡ε€§ε‡ηΊ§δΊ†γ€‚&eζ…’εŒ–ε †θŠ―ζ‘†ζžΆ&rζ ΉζθΏζ°”δΌšδΊ§η”ŸδΈ€η§η‰ˆζœ¬οΌšδΌ˜θ΄¨η‰ˆζœ¬ε―δ½Ώ&dι’šεεΊ”ε †&r&aεŒε…¨θ’«εŠ¨θΏθ‘Œε•ζ Ήη‡ƒζ–™ζ£’&rοΌŒδ»Žζ­€ε‘Šεˆ«ζŒη»­εˆΆδ½œ&bεˆΆε†·ε‰‚δΈΈ&rηš„ε›°ζ‰°οΌδ½ δΉŸε―ε°θ―•ε°†ε…ΆδΈŽζ–°εΌζ‘†ζžΆη»„δ»Άη»„εˆοΌŒη”šθ‡³εžηް&aεŒι’šη‡ƒζ–™ζ£’&r同ζ­₯θΏθ‘Œγ€‚\n\nθΏ™ε₯—θ’«η§°δΈΊ&6ηŸ³ε’¨η”ŸδΊ§ηΊΏ&rηš„εˆΆι€ ζ΅η¨‹ε­˜εœ¨ιšζœΊζ€§οΌšε―θƒ½εˆΆδ½œε€±θ΄₯ζˆ–θŽ·εΎ—δ½Žι˜Άη‰ˆζœ¬γ€‚θ™½η„Άι€šθΏ‡η²Ύη»†ι…η½δ»ε―εžηް&dAE2&rε…¨θ‡ͺεŠ¨εŒ–οΌŒδ½†δΌšδ½Ώθ‡ͺεŠ¨εŒ–ζ΅η¨‹η¨ζ˜Ύε€ζ‚γ€‚\n\nζˆ‘δ»¬η•™εΎ…δ½ θ‡ͺθ‘ŒζŽ’η΄’ζœ€ι«˜ζ•ˆηš„ζ ΈεΏƒη”ŸδΊ§ζ–Ήζ‘ˆγ€‚", + "quests.extreme_voltage.abs.subtitle": "ζˆ‘δ»¬ε–œζ¬’θΏ™δΈͺεŠ ηƒ­ε™¨", + "quests.extreme_voltage.abs.desc": "&6εˆι‡‘ε†Άη‚Όη‚‰&rζ˜―δΈ€δΈͺιžεΈΈη‰ΉζŠηš„ε€šζ–Ήε—η»“ζž„γ€‚ε…ΆθΏδ½œζ–ΉεΌδΈŽ&6η”΅εŠ›ι«˜η‚‰&rη±»δΌΌοΌŒζ›΄ι«˜η­‰ηΊ§ηš„ηΊΏεœˆε―εžηްεŒηΎŽθΆ…ι’‘οΌˆθ―¦θ§θƒ½ζΊη« θŠ‚οΌ‰οΌŒεΉΆθƒ½δ»₯&aζι€Ÿ25%%&rε€„η†ε€§ε€šζ•°η”΅εŠ›ι«˜η‚‰ι…ζ–Ήγ€‚ιœ€ζ³¨ζ„θ―₯θΎε€‡θΎ“ε‡Ίηš„ζ˜―η†”θžζ΅δ½“θ€Œιžηƒ­ι”­οΌ\n\n&6εˆι‡‘ε†Άη‚Όη‚‰&rηš„ζ ΈεΏƒη‰Ήζ€§εœ¨δΊŽθƒ½εˆΆι€ &6ε€§εž‹ε€šζ–Ήε—ζœΊε™¨&rζ‰€ιœ€ηš„εˆι‡‘γ€‚εžι™…δΈŠοΌŒθ―Έε¦‚η ”η£¨ζœΊζˆ–θ’Έι¦ε€η­‰εŸΊη‘€ζœΊε™¨ιƒ½ζ‹₯ζœ‰ε―ΉεΊ”ηš„ε€šζ–Ήε—η‰ˆζœ¬οΌŒζδΎ›ι«˜εΊ¦θ‡ͺεšδΉ‰ι€‰ι‘Ήβ€”—例如配η½ε€šδΈͺθΎ“ε…₯/θΎ“ε‡Ίζ€»ηΊΏ/δ»“ε£οΌŒη”šθ‡³ε―εŠ θ£…εΉΆθ‘ŒζŽ§εˆΆδ»“γ€‚\n\nε…³δΊŽθΏ™δΊ›ε€šζ–Ήε—η»“ζž„ηš„θ―¦η»†δΏ‘ζ―οΌŒθ―·ε‚ι˜…&6ζ Όι›·η§‘ζŠ€θƒ½ζΊη« θŠ‚&r。", + "quests.extreme_voltage.ev_mixer.title": "&5EVζ…ζ‹ŒζœΊ&r", + "quests.extreme_voltage.ev_mixer.subtitle": "ζ―”ζœ¬εœ°ηš„ι…’δΏζ›΄εΏ«", + "quests.extreme_voltage.ev_mixer.desc": "ζŸδΊ›ζœΊε™¨ε―ΉθΏ›η¨‹θ‡³ε…³ι‡θ¦οΌŒ&6ζ…ζ‹ŒζœΊ&rδΎΏζ˜―ε…ΆδΈ­δΉ‹δΈ€γ€‚\n\nεƒθ§£ι”δΊ†ε€šη§ζŽ¨θΏ›ε‘ε±•εΏ…ιœ€ηš„ε…³ι”εˆι‡‘οΌŒε°€ε…Άζ˜―εˆΆι€ &6ι’Œι’¨ι’Όεˆι‡‘&rβ€”β€”θΏ™ζ˜―ε‡ηΊ§&6η”΅εŠ›ι«˜η‚‰&rηΊΏεœˆηš„εΏ…θ¦ζζ–™γ€‚θ―₯εˆι‡‘ιœ€εŒζ—ΆεŒζˆι’¨η”ŸδΊ§ηΊΏδΈŽιƒ¨εˆ†ι“‚η³»η”ŸδΊ§ηΊΏζ‰θƒ½εˆΆε€‡οΌŒθ―·εšε₯½ζ”»ε…³ε‡†ε€‡γ€‚\n\nδΈδΉ…εŽδ½ θΏ˜ε°†θ§£ι”&5ε€§εž‹ζ…ζ‹ŒζœΊ&r,θ―₯η»“ζž„ε―ε‰θ£…δΈ€δΈͺθƒ½ζΊδ»“γ€‚θΏ™ζˆ–θΈζ˜―δ½ ζœ€εŽδΈ€ζ¬‘ιœ€θ¦ζ­ε»Ίε•ζ–Ήε—ζ…ζ‹ŒζœΊοΌŒε½“η„Άζœ€η»ˆι€‰ζ‹©ζƒεœ¨δ½ ζ‰‹δΈ­γ€‚", + "quests.extreme_voltage.rtm.title": "ι’Œι’¨ι’Όεˆι‡‘", + "quests.extreme_voltage.rtm.subtitle": "ι’Œ-ι’¨-ι’Όεˆι‡‘", + "quests.extreme_voltage.rtm.desc": "εˆΆι€ &6ι’Œι’¨ι’Όεˆι‡‘&rιœ€θ¦εŒζ—ΆθŽ·ε–&dι’Œ&rοΌˆθ‡­εζ˜­θ‘—ηš„&dι“‚η³»ηŸΏζ³₯η”ŸδΊ§ηΊΏ&rηš„δΊ§η‰©οΌ‰ε’Œ&aι’¨&r(在TFGζ•΄εˆεŒ…δΈ­ε˜εΎ—ζ›΄ιšΎθŽ·ε–οΌ‰γ€‚\n\nεœ¨η€ζ‰‹η”ŸδΊ§ι’Œι’¨ι’Όεˆι‡‘ε‰οΌŒθ―·η‘δΏθΏ™δΈ€ζ‘δΊ§ηΊΏε‡ε·²εΉ³η¨³θΏθ‘Œγ€‚\n\nεœ¨εΈΈθ§„ζ Όι›·η§‘ζŠ€δΈ­οΌŒι’Œι’¨ι’Όεˆι‡‘ι€šεΈΈδ»…ζ˜―ηŸ­ζœŸθΏ‡ζΈ‘ζζ–™οΌŒδ½†ζœ¬ζ•΄εˆεŒ…δΈ­ζƒ…ε†΅δΈεŒγ€‚εœ¨&bTerraFirmaGreg&r中,后续倚δΈͺθ£‚ε˜ε€šζ–Ήε—η»“ζž„ιƒ½ιœ€θ¦θ―₯εˆι‡‘γ€‚ι‰΄δΊŽι«˜ι€Ÿι’’-G线圈仍ι₯ι₯ζ— ζœŸοΌŒζˆ‘δ»¬εΌΊηƒˆε»Ίθ使用&6ι’Œι’¨ι’Όεˆι‡‘ηΊΏεœˆ&rδ½œδΈΊηŽ°ζœ‰δΌ—ε€šε€šζ–Ήε—η»“ζž„ηš„εΌΊεŠ›ε‡ηΊ§ζ–Ήζ‘ˆγ€‚", + "quests.extreme_voltage.rtm_coil.subtitle": "εƒθƒ½ε˜εΎ—ε€šηƒ­οΌŸ", + "quests.extreme_voltage.rtm_coil.desc": "&6ι’Œι’¨ι’Όεˆι‡‘ηΊΏεœˆ&r可δ»₯θΎΎεˆ°ζƒŠδΊΊηš„&e4500K&rοΌŒη”±ζ­€θ§£ι”η’³εŒ–ι’½ηš„ε†Άη‚Όβ€”β€”θΏ™ζ˜―ζŽ¨θΏ›θΏ›η¨‹ηš„ε…³ι”ζζ–™γ€‚δ½ ιœ€θ¦ι€šθΏ‡εƒζ₯εˆΆι€ &5εˆι‡‘ε†Άη‚Όη‚‰&rοΌŒεŒζ—ΆεƒθΏ˜θƒ½ζ˜Ύθ‘—ζε‡η”΅εŠ›ι«˜η‚‰δΈŽζ Έη‡ƒζ–™ε·₯εŽ‚ηš„ι…ζ–Ήε€„η†ι€ŸεΊ¦γ€‚\n\nθΏ™δΊ›ηΊΏεœˆη”šθ‡³θƒ½εΈεŠ©ι™δ½Žζε–&aζœˆηƒι£ŽεŒ–εœŸ&r与&d紫金&rηš„ζˆζœ¬οΌŒδ½Ώε…Άδ»·ε€ΌθΏœθΆ…δΈ»θ¦η”¨ι€”γ€‚\n\nεœ¨εΈΈθ§„η‰ˆζœ¬δΈ­ηŽ©εΆι€šεΈΈδΌšεΏ«ι€ŸθΏ‡ζΈ‘θ‡³ι«˜ι€Ÿι’’-GηΊΏεœˆοΌŒδ½†εœ¨&bTFG&rζ•΄εˆεŒ…δΈ­οΌŒδ½ εΏ…ι‘»ε…ˆεŒζˆ&5θ£‚ε˜θΏ›η¨‹&rζ‰θƒ½εˆΆι€ &1IVη»„θ£…ζœΊ&rοΌŒθΏ™δ½ΏεΎ—&6ι’Œι’¨ι’Όεˆι‡‘ηΊΏεœˆ&rζˆδΈΊζ›΄ι‡θ¦δΈ”ζ›΄ε…·ζŒδΉ…ζ€§ηš„ε‡ηΊ§ζ–Ήζ‘ˆγ€‚", + "quests.extreme_voltage.ruthenium.title": "ι’Œ", + "quests.extreme_voltage.ruthenium.subtitle": "δΈ€η§η¨€ζœ‰ζζ–™", + "quests.extreme_voltage.ruthenium.desc": "δΈΊεŠ©δ½ ι‘Ίεˆ©ζŽ¨θΏ›οΌŒδ»₯δΈ‹ζ˜―η»η”±&dι“‚η³»η”ŸδΊ§ηΊΏ&rθŽ·ε–&dι’Œ&rηš„ζ‰€ζœ‰ζ­₯ιͺ€γ€‚δΈεΏ…ζ‹…εΏƒοΌŒδ½ η›ε‰ζ— ιœ€εŒζˆζ•΄δΈͺ&dι“‚η³»η”ŸδΊ§ηΊΏ&r。\n\nοΌˆθ―·ζ³¨ζ„&7θ―₯η”ŸδΊ§ηΊΏεŽη»­ε―θƒ½ιš&4ι‡‘ζ˜Ÿ&rη‰ˆζœ¬ζ›΄ζ–°θ°ƒζ•΄οΌ‰", + "quests.extreme_voltage.gcym_alloys.title": "ε€§εž‹ε€šζ–Ήε—εˆι‡‘", + "quests.extreme_voltage.gcym_alloys.subtitle": "ζ›΄ε€šεˆι‡‘ζ„ε‘³η€ζ›΄ε€šδΉθΆ£οΌ", + "quests.extreme_voltage.gcym_alloys.desc": "欒迎ζ₯到&dε€§εž‹ε€šζ–Ήε—η»“ζž„&rηš„δΈ–η•Œγ€‚ζ‰€ζœ‰θΏ™δΊ›εˆι‡‘ιƒ½ζ˜―ζœͺζ₯δΌ—ε€šε€šζ–Ήε—η»“ζž„ηš„εΏ…ε€‡ζζ–™οΌŒθ€Œεƒδ»¬ηš„θ΅·η‚Ήζ­£ζ˜―&eεˆι‡‘ε†Άη‚Όη‚‰&rγ€‚ε…ΆδΈ­ιƒ¨εˆ†εˆι‡‘θΏ˜ε°†η”¨δΊŽεˆΆι€ &eι«˜ζΈ©ε†Άη‚ΌζœΊζ’°ζ–Ήε—&rβ€”β€”θΏ™ζ˜―ζ Έθƒ½ε€šζ–Ήε—η»“ζž„δΈε―ζˆ–ηΌΊηš„ζ ΈεΏƒη»„δ»Άγ€‚\n\n&o&6&lθƒŒζ™―ηŸ₯θ―†&r:&r&oζ Όι›·η§‘ζŠ€ε€šζ–Ήε—ζ¨‘η»„ζœ€εˆζ˜―δΈΊGTCEu在Minecraft1.12η‰ˆζœ¬εΌ€ε‘ηš„ζ‰©ε±•οΌŒζ–°ε’žδΊ†ε€§εž‹ζ Όι›·ζœΊε™¨δΈŽ&6εΉΆθ‘ŒζŽ§εˆΆδ»“&r。&o当GTCEu移怍至1.20η‰ˆζœ¬ζ—ΆοΌŒθ―₯樑组蒫εŒζ•΄ζ•΄εˆθΏ›&dGTm&rβ€”β€”&oθΏ™δΈ€δΈΎζŽͺθ΅’εΎ—δΊ†εΉΏζ³›ε₯½θ―„&rγ€‚ε―ΉδΊŽδ»εœ¨1.12η‰ˆζœ¬ηš„θ€ηŽ©εΆθ€Œθ¨€οΌŒζˆ–θΈθΏ˜θ°εΎ—εƒδ»¬θ’«η§°δΈΊ&dGCYMε€šζ–Ήε—&r。", + "quests.extreme_voltage.tungsten_steel.title": "ι’¨ι’’", + "quests.extreme_voltage.tungsten_steel.subtitle": "IVζ—Άδ»£ηš„δΈ»θ¦ζζ–™", + "quests.extreme_voltage.tungsten_steel.desc": "至歀你应θ―₯εΎˆζΈ…ζ₯šοΌš&6ι’¨ι’’&rε°†ζˆδΈΊ&1IV&r阢ζ΅ηš„δΈ»θ¦ζζ–™οΌŒε…Άιœ€ζ±‚ι‡ζžδΈΊεΊžε€§γ€‚εœ¨ζŽ¨θΏ›εŽη»­ι˜Άζ΅ε‰οΌŒθ―·η‘δΏε»Ίζœ‰δΈ“η”¨ηš„&6ι’¨η”ŸδΊ§ηΊΏ&rδ»₯维持稳εšδΎ›εΊ”。\n\nθ‹₯ιœ€θ‘₯ε……&aη™½ι’¨ηŸΏ&rζˆ–&aι’¨ι…Έι”‚&rοΌŒεˆ‡θ°η«ζ˜Ÿθ•΄θ—η€ε‚¨ι‡ζƒŠδΊΊηš„ηŸΏθ„‰ε―供开采。θ‹₯ζ‹…εΏ§ζ²™θ™«ε¨θƒοΌŒι…η½&bε€§εž‹ι‡‡ηŸΏζœΊ&rδΌšζ˜―ζ˜Žζ™ΊδΉ‹ι€‰β€”β€”εƒδ»¬δΈδΌšζƒŠεŠ¨ζ²™θ™«γ€‚\n\nζˆ–θΈζ˜―ε› δΈΊι’»δΊ•ζΆ²ηš„ηΌ˜ζ•…οΌŸ", + "quests.extreme_voltage.tungsten.title": "ι’¨", + "quests.extreme_voltage.tungsten.subtitle": "εŒε…¨θ‡ͺη»™θ‡ͺθΆ³οΌŒε°±εƒι’›δΈ€ζ ·", + "quests.extreme_voltage.tungsten.desc": "ζ­ε–œδ½ ζˆεŠŸεˆΆε€‡δΊ†η¬¬δΈ€ζ‰Ή&6ι’¨&rοΌεΈŒζœ›δ½ ε–œζ¬’θΏ™η•₯εΎζε‡ηš„倍杂度。请θ°δ½οΌŒεˆζœŸζ‰€ιœ€ηš„少量&6ι’¨&rι€šθΏ‡η›΄ζŽ₯ζŠ•ε…₯εΌ€ι‡‡ηš„&aηΊ―η’±&rε³ε―ζ»‘θΆ³β€”β€”θΏ™ζˆ–θΈθƒ½ε―发你建立全εΎͺ环产线,εžηްε‰η¨³ηš„θ‡ͺεŠ¨εŒ–η”ŸδΊ§γ€‚\n\nθΏ˜ιœ€θ°¨θ°οΌšιšη€θΏ›η¨‹ζŽ¨θΏ›οΌŒδΈΊθΏ™δΊ›θ΄―η©Ώζ•΄δΈͺζ•΄εˆεŒ…ηš„ε€ζ‚ζ΅η¨‹ζ­ε»ΊδΈ“ε±žθ‡ͺεŠ¨εŒ–δΊ§ηΊΏε°†ζ„ˆε‘ι‡θ¦γ€‚δΈθ¦ζ‹…εΏƒηΌΊδΉθ΅„ζΊοΌŒθ€ŒεΊ”θ­¦ζƒ•ηΌΊδΉζ—Άι—΄γ€‚", + "quests.extreme_voltage.iv_hull.subtitle": "已经到IVδΊ†οΌŸ", + "quests.extreme_voltage.iv_hull.desc": "虽焢你已解锁&1IVζœΊε™¨ε€–ε£³&rοΌŒδ½†εœ¨εŒζˆθ£‚ε˜η”ŸδΊ§ηΊΏε‰ε…Άη”¨ι€”ζœ‰ι™β€”β€”ε› δΈΊ&1IVη”΅θ·―&rηš„εˆΆι€ ε—ι™δΊŽ&dι’šη‡ƒζ–™ζ£’&rηš„ε€„η†θΏ›εΊ¦γ€‚δΈθΏ‡δ½ δ»ε―ε‘ζŽ˜δΈ€δΈ€η§η”¨ι€”οΌŒθ‡³ε°‘ε½“θ§£ι”ι¦–ζ‰Ή&1IVη”΅θ·―&rζ—ΆοΌŒδ½ ε·²εšε₯½ε»Ίι€ &1IVη»„θ£…ζœΊ&rηš„ε……εˆ†ε‡†ε€‡γ€‚", + "quests.extreme_voltage.large_miner.title": "ε€§εž‹ι‡‡ηŸΏζœΊMK I", + "quests.extreme_voltage.large_miner.subtitle": "ι¦–ε°ηœŸζ­£δΌ˜η§€ηš„ι‡‡ηŸΏζœΊ", + "quests.extreme_voltage.large_miner.desc": "&bε€§εž‹ι‡‡ηŸΏζœΊ&rζ˜―δΈ€δΈͺδ»€δΊΊε°θ±‘ζ·±εˆ»ηš„ε€šζ–Ήε—η»“ζž„οΌŒη”¨δΊŽεΌ€ι‡‡δ½ ε―θƒ½ι‡εˆ°ηš„ε·¨εž‹ηŸΏθ„‰γ€‚εƒθƒ½θΎ“ε‡Ί&aη²‰η’Žε½’ζ€&rηš„ηŸΏηŸ³οΌŒεΉΆι’ε€–ζδΎ›εΉ³ε‡50%%ηš„ε’žδΊ§ζ”Άη›ŠοΌθ―₯θΎε€‡ε­˜εœ¨ιƒ¨εˆ†ι™εˆΆοΌšιœ€δΏζŒε…Άζ‰€εœ¨εŒΊε—ζŒη»­εŠ θ½½οΌŒεΉΆη¨³εšδΎ›εΊ”钻井梲。\n\nεΌΊηƒˆε»Ίθεœ¨θ§£ι”&b建筑小棒手&rηš„&b倍刢粘贴ε·₯ε…·&rεŽη”¨εƒθ½¬η§»θΎε€‡γ€‚ι€šθΏ‡ι…η½η”΅ζ± η±γ€ε€§ι‡ηš„ι’»δΊ•ζΆ²ε’ŒθΆ³ε€Ÿηš„ε­˜ε‚¨εΉε™¨οΌˆε¦‚εΌΊεŒ–ε‡ηΊ§ηš„θƒŒεŒ…ζˆ–MEε­˜ε‚¨η±οΌ‰οΌŒε―η‘δΏε…Άι•ΏζœŸη¨³εšθΏθ‘Œγ€‚", + "quests.extreme_voltage.ostrum_harvester.title": "紫金采集器", + "quests.extreme_voltage.ostrum_harvester.subtitle": "ζ›΄ε₯½ηš„ηΊΏεœˆζ„ε‘³η€ζ›΄ε°‘ηš„θ€—ζΊ", + "quests.extreme_voltage.ostrum_harvester.desc": "&b紫金采集器&r是&6ζœˆε£€ι‡‡ι›†ε™¨&rηš„θΏ‘δΊ²γ€‚εƒδΉŸε―δ»₯ι€šθΏ‡ζ›΄ε₯½ηš„ηΊΏεœˆε‡ηΊ§ζ₯ι™δ½Žθƒ½ζΊζˆζœ¬οΌŒδ½†εƒδΈιœ€θ¦η‰Ήεšηš„η”Ÿη‰©ηΎ€η³»γ€‚δ½ ιœ€θ¦ε°†ε…Άε»Ίι€ εœ¨&aη΄«ι‡‘ηŸΏεΊŠ&rδΈŠζ–Ήζ‰θƒ½ε½’ζˆε€šζ–Ήε—η»“ζž„γ€‚\n\nθΏ˜ζœ‰δΈ€δ»ΆδΊ‹οΌšδΈŽζœˆηƒη‰ˆζœ¬δΈεŒοΌŒθΏ™δΈͺιœ€θ¦ι’»δΊ•ζΆ²ζ‰θƒ½θΏθ‘ŒοΌŒζ‰€δ»₯δ½ ιœ€θ¦θΎη½δΈ€δΊ›εŒε‘θ‡ͺεŠ¨εŒ–ζ₯δΏζŒε…ΆθΏθ‘Œγ€‚", + "quests.extreme_voltage.ostrum_dust.title": "η’˜εŒ–η΄«ι‡‘", + "quests.extreme_voltage.ostrum_dust.subtitle": "ζˆ‘εˆεΎ—εšδ»€δΉˆοΌŸοΌ", + "quests.extreme_voltage.ostrum_dust.desc": "&a紫金&rζœ‰εΎˆε€šη”¨ι€”οΌŒδ½†ε½“ε‰δ½ ζœ€ιœ€ε…³ζ³¨ηš„ζ˜―εˆΆε€‡&aη’˜εŒ–η΄«ι‡‘&rβ€”β€”θΏ™ζ˜―εˆΆι€ ηƒ­δΊ€ζ’ε™¨ηš„εΏ…ε€‡ζζ–™γ€‚\n\nζ΅η¨‹ζœ¬θΊ«εΉΆδΈε€ζ‚οΌŒε”―δΈ€ιšΎη‚Ήεœ¨δΊŽθŽ·ε–ζ‰€ιœ€ηš„&e璘&r。请ζŸ₯ι˜…ε·¦δΎ§δ»»εŠ‘ζŒ‡ε—δ»₯εˆΆε€‡εŒζˆθ£‚ε˜η”ŸδΊ§ηΊΏζ‰€ιœ€ηš„&l6&rδΈͺη’˜γ€‚", + "quests.extreme_voltage.formamide.title": "η”²ι…°θƒΊ", + "quests.extreme_voltage.formamide.subtitle": "θΏ™δΉŸζ˜―ηŽ°εžη”Ÿζ΄»δΈ­ηš„一种常用溢剂", + "quests.extreme_voltage.formamide.desc": "θ‹₯δΈζƒ³δΈ­ζ–­θ’Έζ±½η”ŸδΊ§οΌŒθ―·εŠζ—ΆζΈ…ι™€δ½ η”ŸδΊ§ηš„δ»»δ½•θΏ‡ε‰©η”²ι…°θƒΊγ€‚", + "quests.extreme_voltage.radioactive_concoction.title": "ζ”Ύε°„ζ€§ζ‹ζΆ²", + "quests.extreme_voltage.radioactive_concoction.subtitle": "εˆ«ζΈ…η©ΊθΏ™δΈͺ!", + "quests.extreme_voltage.radioactive_concoction.desc": "&dζ”Ύε°„ζ€§ζ‹ζΆ²&rζ˜―θ£‚ε˜η”ŸδΊ§ηΊΏηš„ι‡θ¦ε‰―δΊ§η‰©οΌŒε…ΆδΈ»θ¦η”¨ι€”εœ¨δΊŽι€šθΏ‡&bη΄«ι‡‘ηΊΏζ€§εŠ ι€Ÿε™¨&rεžηŽ°ηŸΏηŸ³ζ— ι™εŒ–η”ŸδΊ§οΌŒεŒζ—ΆδΉŸζ˜―解锁&bη”Ÿι•Ώε€&rηš„εΏ…θ¦ζζ–™γ€‚\n\nθ‹₯θ‘εˆ’εœ¨η«ζ˜ŸδΉ‹ε€–ε»Ίι€ θ£‚ε˜εεΊ”ε †οΌŒδ½ δΉŸιœ€θ¦ζŒη»­δΎ›εΊ”θΏ™η§ζζ–™γ€‚", + "quests.extreme_voltage.ostrum_linear.subtitle": "ζ›΄ι«˜ηΊ§ηš„ζ— ι™θ΅„ζΊ", + "quests.extreme_voltage.ostrum_linear.desc": "&bη΄«ι‡‘ηΊΏζ€§εŠ ι€Ÿε™¨&rθƒ½εˆ©η”¨θ£‚ε˜η”ŸδΊ§ηΊΏηš„ε„η±»δΊ§η‰©εˆζˆε€šη§ζζ–™γ€‚θ―₯ε€šζ–Ήε—η»“ζž„ζ”―ζŒε€§ι‡&bθΎ“ε…₯ζ€»ηΊΏ&r与&bθΎ“ε…₯δ»“&rοΌŒδΈ”ζ‰€ζœ‰ι…ζ–Ήε€„η†ι€ŸεΊ¦ζžεΏ«οΌŒε•ε°θΎε€‡ε³ε―ζ»‘θΆ³ε…¨ι˜Άζ΅ιœ€ζ±‚。\n\nζˆ‘δ»¬εΌΊηƒˆε»ΊθεˆΆδ½œζ•°ζŠŠδΈεŒι’œθ‰²ηš„&e喷罐&rζ₯θ§„ζ•΄θΎ“ε…₯输出。例如用&9蓝色&rζ ‡θ°θΎ“ε…₯ζ€»ηΊΏδΈŽθΎ“ε…₯δ»“εŽοΌŒδ»…η€θ‰²ιƒ¨δ»ΆδΌšη›ΈδΊ’ε…³θ”οΌŒζ—’θƒ½ιΏε…ι…ζ–Ήε†²ηͺεˆε―η‘保θ‡ͺεŠ¨εŒ–ζ΅η•…θΏθ‘Œγ€‚", + "quests.extreme_voltage.pss.subtitle": "δΈ€δΈͺε‡ηΊ§η‰ˆη”΅ζ± ", + "quests.extreme_voltage.pss.desc": "&eθ“„θƒ½ε˜η”΅η«™&r已从&1IV&r阢ζ΅θ°ƒζ•΄θ‡³&5EV&r阢ζ΅οΌŒθΏ™ζ ·δ½ ε°±θƒ½ε€Ÿεœ¨η«ζ˜Ÿη›΄ζŽ₯ε»Ίι€ εƒοΌŒεœ¨ι‚£ι‡Œη”¨θ£‚ε˜θƒ½ζΊη‘η†θƒ½ι‡ι’‡ε…·ζŒ‘ζˆ˜ζ€§γ€‚εƒεΉΆδΈζ˜―εΌΊεˆΆζ€§ηš„οΌŒζ‰€δ»₯ε¦‚ζžœδ½ ε€Ύε‘δΊŽθ·³θΏ‡εƒδΉŸζ— ε¦¨γ€‚\n\nε¦‚ζžœδ½ ζƒ³δΊ†θ§£ζ›΄ε€šε…³δΊŽθΏ™δΈͺε€šζ–Ήε—η»“ζž„ηš„θ―¦η»†θΏδ½œεŽŸη†οΌŒθ―·ζŸ₯ι˜…&aθƒ½ζΊη« θŠ‚&rδΈ­ηš„θ―¦η»†ζ‘η›γ€‚", + "quests.extreme_voltage.liquid_air.title": "εœ°ηƒη©Ίζ°”", + "quests.extreme_voltage.liquid_air.subtitle": "ε₯½ε€šζ°”体", + "quests.extreme_voltage.liquid_air.desc": "蒸馏&b梲态空气&r是&6ζ Όι›·η§‘ζŠ€&rδΈ­θŽ·ε–η‰Ήεšη¨€ζœ‰ζ°”体&o无限供应&rηš„ζ ΈεΏƒι€”εΎ„γ€‚\n\nεœ°ηƒη©Ίζ°”θ’Έι¦θƒ½ζœ‰ζ•ˆεˆΆε–&bζ°©ζ°”&r、&6ζ°§ζ°”&r、&eζ°¦ζ°”&r、&3ζ°ζ°”&r与&aδΊŒζ°§εŒ–η’³&r。", + "quests.extreme_voltage.liquid_mars_air.title": "η«ζ˜Ÿη©Ίζ°”", + "quests.extreme_voltage.liquid_mars_air.subtitle": "η”šθ‡³ζ›΄ε€šζ°”δ½“", + "quests.extreme_voltage.liquid_mars_air.desc": "蒸馏&b梲态空气&r是&6ζ Όι›·η§‘ζŠ€&rδΈ­θŽ·ε–η‰Ήεšη¨€ζœ‰ζζ–™&l无限供应&rηš„ζ ΈεΏƒζœΊεˆΆγ€‚η”±δΊŽεœ¨TFGδΈ­ζ— ζ³•θŽ·ε–δΈ‹η•Œη©Ίζ°”ζˆ–ζœ«εœ°η©Ίζ°”οΌŒζˆ‘δ»¬ζδΎ›δΊ†&cη«ζ˜Ÿη©Ίζ°”&rδ½œδΈΊζ›Ώδ»£ζ–Ήζ‘ˆγ€‚\n\nη«ζ˜Ÿη©Ίζ°”ε―Œε«&bζ°©ζ°”&r与&aδΊŒζ°§εŒ–η’³&rοΌŒεŒζ—ΆθΏ˜θƒ½ζε–&eζ°–ζ°”&r、&3ζ°ͺζ°”&rε’Œ&9ζ°™ζ°”&rη­‰η¨€ζœ‰ζ°”δ½“β€”β€”θΏ™δΊ›ζ°”δ½“εœ¨ε…Άδ»–ι€”εΎ„ε‡ζ— ζ³•θŽ·εΎ—γ€‚\n\nθ―·ζ³¨ζ„οΌŒιšη€ζ›΄ε€šθ‘Œζ˜Ÿε†…εΉηš„εΌ€ε‘οΌŒζœͺζ₯η‰ˆζœ¬ε―θƒ½δΌšθ°ƒζ•΄θΏ™δΊ›η¨€ζœ‰ζ°”δ½“ηš„θŽ·ε–ζ–ΉεΌγ€‚θ―·εŠ‘εΏ…ε…³ζ³¨&6ζ›΄ζ–°ζ—₯εΏ—&rδ»₯θŽ·ε–ζœ€ζ–°ε˜εŠ¨δΏ‘ζ―οΌ", + "quests.extreme_voltage.epoxy.title": "ηŽ―ζ°§ζ ‘θ„‚", + "quests.extreme_voltage.epoxy.subtitle": "δΊΊι€ ζ ‘θ„‚", + "quests.extreme_voltage.epoxy.desc.1": "&aηŽ―ζ°§ζ ‘θ„‚&rζ˜―ζΈΈζˆδΈ­ζ‰€ζœ‰ζœͺζ₯η”΅θ·―ζΏηš„εˆΆι€ εŸΊη‘€οΌ\n\n&9&lζ³¨ζ„οΌš&rθ―₯δ»»εŠ‘η›Έε½“ε€ζ‚οΌŒθ―·εœ¨εŒζˆε…Άδ»–ζ‰€ζœ‰ε†…εΉεŽε†ε°θ―•εˆΆε€‡ηŽ―ζ°§ζ ‘θ„‚γ€‚ε±Šζ—Άδ½ ε°†ιœ€θ¦εŠ¨η”¨ζ‰€ζœ‰ε―η”¨ηš„θ΅„ζΊοΌ", + "quests.extreme_voltage.epoxy.desc.2": "&aηŽ―ζ°§ζ ‘θ„‚&rηš„εŽŸζ–™ζœ‰ε€šη§θŽ·ε–ι€”εΎ„γ€‚\n\nζˆ‘δ»¬ε°†εΏ½η•₯δΈŽη”˜ζ²Ήη›Έε…³ηš„ι…ζ–ΉοΌŒε› ε…Άζ€§δ»·ζ―”ε§‹η»ˆθΏ‡δ½Žγ€‚\n\n尝试使用&3ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ&rζ₯η€εŒ–配方。", + "quests.extreme_voltage.epoxy.desc.3": "&dζ°―ζ°”&rεͺθƒ½ιƒ¨εˆ†ε›žζ”ΆοΌŒζ‰€δ»₯δ½ ιœ€θ¦ζŒη»­θ‘₯ε……δΎ›εΊ”γ€‚εˆζœŸζ‰‹εŠ¨ζ·»εŠ ε°±ε€ŸδΊ†γ€‚\n\nζΆ‰εŠ&dζ°’ζ°§εŒ–ι’ &rηš„ι…ζ–Ήε―ι€šθΏ‡η”΅θ§£ε‰―δΊ§η‰©&9盐水&rζ₯εžηްεΎͺηŽ―γ€‚\n\nζ­€θΏ‡η¨‹ε―θƒ½ιœ€θ¦εˆΆδ½œε››ι‡η‘ι“γ€ζ³΅θ¦†η›–ζΏγ€ζ΅δ½“θΏ‡ζ»€ε‘η­‰η»„δ»ΆοΌŒζˆ–η›΄ζŽ₯使用AE2ζ₯ε»Ίη«‹η‰©ζ΅η½‘η»œγ€‚\n\nζ€»δ½“θ€Œθ¨€οΌŒι—­ηŽ―ι…η½θƒ½ζœ‰ζ•ˆι˜²ζ­’η”ŸδΊ§θΏ‡ε‰©ζˆ–θΏ‡εΊ¦ζΆˆθ€—οΌŒδ½†θ―·ι€‰ζ‹©δ½ θ€δΈΊζ›΄ζœ‰θΆ£ηš„εžηŽ°ζ–ΉεΌγ€‚", + "quests.extreme_voltage.epichlorohydrin.title": "ηŽ―ζ°§ζ°―δΈ™ηƒ·", + "quests.extreme_voltage.epichlorohydrin.desc": "η¬¬δΈ€ζ¬‘εˆΆι€ &aηŽ―ζ°§ζ°―δΈ™ηƒ·&rζ—Άε»Ίθ使用&3ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ&r配方。\n\nθ―₯ι…ζ–Ήιœ€θ¦&aδΈ™ηƒ―&rοΌŒθΏ™ζ„ε‘³η€δ½ εΏ…ι‘»εΌ€ε§‹θΏ›θ‘Œ&dηŸ³ζ²Ήε€„η†&r与&dη‡ƒζ²Ήθ£‚εŒ–&r。θ‹₯δ½ ζ­€ε‰δΈ€η›΄ζ‹–ε»ΆθΏ›ε±•οΌŒζˆ‘δ»¬ζ·±ζ„Ÿι—ζ†ΎοΌ\n\nεœ¨ε‘ε³ζŽ¨θΏ›θΏ›η¨‹ε‰οΌŒε»Ίι€ δ½ ηš„η¬¬δΈ€εΊ§&3蒸馏呔&rιžεΈΈι‡θ¦γ€‚\n\nζœ€εŽθ―·ζ³¨ζ„οΌŒδ½ ε―δ»₯ι€šθΏ‡εΎͺηŽ―εˆ©η”¨&d盐水&r副产物ζ₯启动&dζ°’ζ°§εŒ–ι’ &rηš„εΎͺηŽ―δΎ›εΊ”γ€‚", + "quests.extreme_voltage.phenol.title": "θ‹―ι…š", + "quests.extreme_voltage.phenol.desc.1": "θŽ·ε–&aθ‹―ι…š&rηš„ι€”εΎ„ε¦‚δΈ‹οΌš\n\n&91-&rι€šθΏ‡θ’Έι¦&aζœ¨η„¦ζ²Ή&rεˆΆε–γ€‚\n\n&92-&r在&3ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ&r中使用&aθ‹―&r与&dζ°―&r、&dζ°’ζ°§εŒ–ι’ &r反应——歀方法可εžηŽ°ζ°―ηš„εŒηΎŽεΎͺηŽ―γ€‚\n\n&93-&r省去&dζ°’ζ°§εŒ–ι’ &rηš„η€εŒ–ι…ζ–ΉοΌˆε°†ε―Όθ‡΄&dζ°―&rε‡€ζŸθ€—οΌ‰\n\n&94-&r使用少量&4η£·ι…Έ&rοΌˆι€šεΈΈδ½œδΈΊε‚¬εŒ–ε‰‚οΌŒζ­€ε€„εΎι‡ζΆˆθ€—οΌ‰δ½Ώ&aθ‹―&r、&dδΈ™ηƒ―&rε’Œ&dζ°§&r反应——即异丙苯法。", + "quests.extreme_voltage.phenol.desc.2": "ε¦‚ζžœδ½ εœ¨η‘εšη”¨ε“ͺδΈͺι€‰ι‘Ήζ—ΆιšΎδ»₯ζŠ‰ζ‹©οΌŒδ»₯δΈ‹ζ˜―ζ―ζ‘θ·―ηΊΏηš„δΌ˜εŠΏεˆ†ζžοΌš\n\n&91-&rι€‚εˆζ„Ώζ„ζ­ε»Ί&3热解炉&r+&3蒸馏呔&rη»„εˆηš„ζ–Ήζ‘ˆγ€‚\n\n&92-&rθΏ™ζ˜―ζˆ‘δ»¬ηš„ι¦–ι€‰οΌε―εˆ©η”¨&d盐&rεˆΆε€‡ζ›΄ε€š&d盐水&rοΌŒε†ι€šθΏ‡η”΅θ§£εžηްεΎͺηŽ―γ€‚\n\n&93-&rθ‹₯ζ‹₯ζœ‰&dζ°―ζ°”&rζ— ι™δΎ›εΊ”εˆ™ζžε…·εΈεΌ•εŠ›οΌŒε―ι€šθΏ‡εœ¨η›ζ°΄ηŸΏθ„‰θΎη½&3ζ΅δ½“ι’»ζœΊ&rεžηŽ°γ€‚\n\n&94-&rβ€¦β€¦η”ŸδΊ§&4η£·ι…Έ&rηš„θΏ‡η¨‹ζžδΈΊζ£˜ζ‰‹οΌŒθ€ƒθ™‘θΏ™δΈͺζ–Ήζ‘ˆδ½ δΌšη–―ηš„γ€‚", + "quests.extreme_voltage.phenol.desc.3": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oθ‹―+ζ°§ζ°”ηš„ι…ζ–Ήζœ€εˆζ˜―GTCEζ·»εŠ ηš„οΌŒζ—¨εœ¨ε‘«θ‘₯ε½“ζ—Άε› ηΌΊδΉε€§εž‹εŒ–ε­¦εεΊ”ι‡œθ€ŒηΌΊε€±ηš„εŒ–ε­¦εˆζˆθ·―εΎ„γ€‚ε¦‚δ»ŠGTCEuε·²ζδΎ›ζ›΄θ΄΄θΏ‘ηŽ°εžηš„ζ›Ώδ»£ζ–Ήζ‘ˆοΌŒθ―₯ι…ζ–Ήζˆ–ε°†εœ¨ζœͺζ₯η‰ˆζœ¬δΈ­η§»ι™€γ€‚", + "quests.extreme_voltage.acetone.title": "δΈ™ι…", + "quests.extreme_voltage.acetone.desc.1": "虽焢蒸馏&aζœ¨ι†‹ι…Έ&rε―θŽ·εΎ—&aδΈ™ι…&rοΌŒδ½†δΊ§ε‡ΊηŽ‡θΎƒδ½ŽοΌŒε―θƒ½ζ— ζ³•ζ»‘θΆ³ιœ€ζ±‚γ€‚\n\nε»Ίθη›΄ζŽ₯采用&aδΉ™ι…Έ&r在&3ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ&rδΈ­εˆΆε€‡&aδΈ™ι…&rηš„ι…ζ–Ήγ€‚\n\nθ‹₯θΏ½ζ±‚δΌ η»Ÿε·₯θ‰ΊοΌŒδ½ δΉŸε―δ»₯δ½Ώη”¨η»ε…Έηš„&aδΉ™ι…Έ&rβ†’&dδΉ™ι…Έι’™ζΊΆζΆ²&rβ†’&aδΈ™ι…&rεΎͺηŽ―θ·―εΎ„οΌŒθ―₯ζ–Ήζ‘ˆζ— ιœ€&3ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ&rοΌŒθΏ˜θƒ½εŒηΎŽε›žζ”Άι’™εŒ–εˆη‰©γ€‚", + "quests.extreme_voltage.acetone.desc.2": "ζˆ‘δ»¬δΈ€η›΄εœ¨θ¨θΊδΉ™ι…ΈοΌŒε΄θΏ˜ζ²‘ε‘Šθ―‰δ½ ε¦‚δ½•θŽ·ε–εƒγ€‚ηŽ°εœ¨ζ‰θ―΄ζ˜―δΈζ˜―εΎˆθ΄΄εΏƒοΌŸ\n\n&aδΉ™ι…Έ&r可δ»₯在&3εŒ–ε­¦εεΊ”ι‡œ&rδΈ­εˆζˆγ€‚ζˆ‘δ»¬ζœ€ε–œζ¬’ηš„ι…ζ–Ήζ˜―δ»Ž&dδΉ™ηƒ―&rεΌ€ε§‹ηš„γ€‚", + "quests.extreme_voltage.aes_insulation.title": "η’±εœŸη‘…ι…Έη›ιš”ηƒ­ζζ–™", + "quests.extreme_voltage.aes_insulation.subtitle": "δΉŸη§°δΈΊε²©ζ£‰", + "quests.extreme_voltage.aes_insulation.desc": "ζ–°ηš„η­‰ηΊ§ζ„ε‘³η€ζ–°η§η±»ηš„ιš”ηƒ­ζζ–™οΌ\n\nθ¦εˆΆι€ θΏ™η§ζζ–™οΌŒδ½ ι¦–ε…ˆιœ€θ¦ζŸ₯ηœ‹ζ…ζ‹ŒζœΊδΈ­&dη’±εœŸη‘…ι…Έη›ζ··εˆη²‰&rηš„ι…ζ–Ήγ€‚θΏ™η§ζζ–™ηš„η”¨ι€”δΈδ»…ι™δΊŽεˆΆι€ δ½ ηš„δΈ‹δΈ€δΈͺ火η­οΌŒζœ€η»ˆδ½ ε°†θƒ½ι€šθΏ‡εœ¨η«ζ˜ŸδΈŠη»™ε—…ζŽ’ε…½ε’Œθ―‘ζιΈŸε‰ͺζ―›ζ₯ζ— ι™ι‡εœ°η”ŸδΊ§εƒγ€‚", + "quests.extreme_voltage.epoxy_board.subtitle": "ζ–°εž‹η”΅θ·―ζΏοΌŒζ›΄ε€šε“η±»ε³ε°†η™»εœΊ", + "quests.extreme_voltage.epoxy_board.desc": "ηŽ―ζ°§ζ ‘θ„‚η”΅θ·―ζΏζ˜―εˆΆδ½œ&bηΊ³η±³η”΅θ·―&rζ‰€ιœ€ηš„ε…³ι”η»„δ»ΆοΌŒι™€ζ­€δΉ‹ε€–εΉΆζ— ε€ͺε€šε…Άδ»–η”¨ι€”γ€‚", + "quests.extreme_voltage.ev_circuit_assembler.title": "&5EV&rη”΅θ·―η»„θ£…ζœΊ", + "quests.extreme_voltage.ev_circuit_assembler.subtitle": "η›ε‰δΈε¦‚η»„θ£…ζœΊζœ‰η”¨", + "quests.extreme_voltage.ev_circuit_assembler.desc": "&5EVη”΅θ·―η»„θ£…ζœΊ&r在你ζ‹₯ζœ‰η¨³εšηš„&bηΊ³η±³CPUζ™Άεœ†&rδΎ›εΊ”δΉ‹ε‰δΈδΌšζœ‰ε€ͺε€§η”¨ε€„γ€‚δΈθΏ‡οΌŒεƒε°†ε…θΈδ½ ζ›΄εΏ«εœ°εˆΆι€ εΎε€„η†ε™¨η”΅θ·―οΌŒεΉΆζœ€η»ˆθ©δ½ θŽ·εΎ—η¬¬δΈ€ζ‰Ή&dLuVη”΅θ·―&rοΌŒθΏ™εœ¨δ½ ζœ‰&1IVη»„θ£…ζœΊ&rεŽδΌšεΎˆζœ‰η”¨γ€‚", + "quests.extreme_voltage.nano_hv_circuit.subtitle": "εƒ&oηœ‹θ΅·ζ₯&rεΉΆζ²‘ζœ‰ε°ι‚£δΉˆε€šβ€¦β€¦", + "quests.extreme_voltage.nano_hv_circuit.desc": "δ½ ηš„η¬¬δΈ€ζ‰Ή&eηΊ³η±³η”΅θ·―&r!εƒδ»¬ιœ€θ¦&bηΊ³η±³CPU&rζ₯εˆΆδ½œοΌŒε› ζ­€δ½ εΏ…ι‘»ε»Ίη«‹ζŒη»­ηš„&cθ£‚ε˜εεΊ”ε †&rδΊ§ηΊΏοΌŒι€šθΏ‡η‡ƒηƒ§ι’šη‡ƒζ–™ζ£’ζ₯η”ŸδΊ§εΏ…ιœ€ηš„&dζ°šεŒ–ζ°΄&r。\n\n初期&eηΊ³η±³η”΅θ·―&rηš„ι€ δ»·δΌšζ˜ΎεΎ—η›Έε½“ι«˜ζ˜‚οΌŒδ½†ε½“δ½ ηš„&dθ£‚ε˜η”ŸδΊ§ηΊΏ&rεžηްεŒε…¨θ’«εŠ¨εŒ–θΏθ½¬εŽοΌŒεƒδ»¬εθ€ŒδΌšζˆδΈΊζœ€ε»‰δ»·ηš„η”΅θ·―之一!", + "quests.extreme_voltage.nano_ev.subtitle": "ε›žεˆ°ι€šεΈΈηš„η”΅θ·―θΏ›η¨‹", + "quests.extreme_voltage.nano_ev.desc": "ε¦‚ζžœδ½ θƒ½εžηް&bηΊ³η±³CPU&rηš„θ§„ζ¨‘εŒ–ι«˜ζ•ˆη”ŸδΊ§οΌŒθΏ™η±»η”΅θ·―ηš„εžι™…εˆΆι€ ζˆζœ¬ζˆ–ε°†δ½ŽδΊŽη­‰ι‡&bεΎεž‹ε€„理器&r。当&cθ£‚ε˜η”ŸδΊ§ηΊΏ&rεžηŽ°ε…¨θ‡ͺεŠ¨εŒ–εŽοΌŒθΏ™δΊ›η”΅θ·―ε°†ζˆδΈΊι«˜η«―θΎε€‡εˆΆι€ ηš„ζžθ‡΄η»ζ΅ŽδΉ‹ι€‰γ€‚\n\nεŒζ—Άθ―·ζ³¨ζ„οΌŒδ»ŽηŽ°εœ¨θ΅·δ½ ε―δ»₯δ½Ώη”¨ι«˜ηΊ§θ΄΄η‰‡ε…ƒδ»ΆδΊ†οΌ", + "quests.extreme_voltage.nano_iv.subtitle": "ζ›΄ζŽ₯θΏ‘LuVζŠ€ζœ―δΊ†", + "quests.extreme_voltage.nano_iv.desc": "θΏ™δΊ›&1IV&rη”΅θ·―δ»η„Άιœ€θ¦δΈ€δΈͺ&bηΊ³η±³CPUθŠ―η‰‡&rοΌŒε°±ζ­€θ€Œθ¨€ε…Άζˆζœ¬εΉΆζœͺ低于&bεΎεž‹ε€„理器&r。\n\n但εƒδ»¬ζ˜―θΏˆε‘ζ›΄ι«˜ζŠ€ζœ―ε±‚ηΊ§ηš„εΏ…ε€‡θ¦η΄ γ€‚", + "quests.extreme_voltage.nano_luv.subtitle": "δ½ ηš„η¬¬δΈ€ζ‰ΉLuVη”΅θ·―", + "quests.extreme_voltage.nano_luv.desc": "ζ­ε–œδ½ ζˆεŠŸθ§£ι”ζ–°δΈ€δ»£η”΅θ·―οΌθΏ™δΊ›&dLuVη”΅θ·―&rη›ε‰η”¨ι€”δΈε€šβ€”β€”εœ¨εŒζˆ&bι“‚η³»η”ŸδΊ§ηΊΏ&rε‰δ½ ζ— ζ³•εˆΆι€ δ»»δ½•&dLuVζœΊε™¨&rοΌŒδ½†εƒδ»¬ε―ΉεˆΆδ½œζ–°εž‹&dAE2&rε·₯ε…·δΈŽη»„δ»Άδ»ε…·ζœ‰ι‡θ¦δ»·ε€Όγ€‚\n\nε€§ιƒ¨εˆ†η›Έε…³ι…ζ–Ήιœ€εœ¨&1IVη»„θ£…ζœΊ&rδΈ­εŒζˆοΌŒθ―·η‘保已倇ε₯½θ―₯θΎε€‡γ€‚", + "quests.extreme_voltage.me_part.title": "MEε€šζ–Ήε—ιƒ¨δ»Ά", + "quests.extreme_voltage.me_part.subtitle": "ε°†ζ Όι›·η§‘ζŠ€η›΄ζŽ₯连ζŽ₯εˆ°δ½ ηš„AE2η½‘η»œ", + "quests.extreme_voltage.me_part.task": "任意MEζ€»ηΊΏζˆ–δ»“", + "quests.extreme_voltage.me_part.desc": "θΏ™δΊ›ζ–Ήε—ε―ζ›Ώδ»£ε€šζ–Ήε—η»“ζž„δΈ­εΈΈθ§„ηš„θΎ“ε…₯ε’ŒθΎ“ε‡Ίζ€»ηΊΏ/仓。&bθΎ“ε‡Ί&rη‰ˆζœ¬η‰Ήεˆ«εžη”¨οΌŒε› δΈΊεƒδ»¬εΊžε€§ηš„物品/ζ΅δ½“ε­˜ε‚¨εΉι‡θΆ³δ»₯εΊ”ε―Ήε€§ε€šζ•°ι…η½ιœ€ζ±‚οΌŒιžεΈΈι€‚εˆεœ¨ε€šζ–Ήε—η»“ζž„ι—΄ε…±δΊ«θ΅„ζΊζˆ–ιΏε…θΎ“ε‡Ίε ΅ε‘žγ€‚\n\nεƒδ»¬ε―δ»₯η›΄ζŽ₯连ζŽ₯&dAE2&rηΊΏηΌ†οΌŒζ— ιœ€ε€ŸεŠ©ε­˜ε‚¨ζ€»ηΊΏζˆ–ζŽ₯ε£γ€‚δ½†ιœ€ζ³¨ζ„οΌŒε…Άθ‘ŒδΈΊζ¨‘εΌη±»δΌΌδΊŽζŽ₯ε£θ€Œιžεžδ½“ε­˜ε‚¨εΉε™¨γ€‚θΏ™ζ„ε‘³η€δ½ ζ— ζ³•ι€šθΏ‡ε…Άδ»–ζŽ₯口θΏι—εƒδ»¬ηš„ε†…εΉγ€‚", + "quests.extreme_voltage.tunsgten_line_step.title": "ηΊ―η’±εΎͺ环", + "quests.extreme_voltage.tunsgten_line_step.subtitle": "ζ€»δΈθƒ½ζ°ΈθΏœδΎθ΅–ι‡‡ηŸΏ", + "quests.extreme_voltage.tunsgten_line_step.desc.1": "εŒηΎŽεΎͺ环&5ι’¨η”ŸδΊ§ηΊΏ&rεΉΆιžζ˜“δΊ‹οΌŒζœ¬δ»»εŠ‘ε°†δΈΊδ½ ζŒ‡εΌ•ζ­£η‘方向。\n\nθŽ·εΎ—ηš„&b盐&rεΊ”δΈŽ&aδΊŒζ°§εŒ–η’³&rε’Œ&6ζ°¨ζ°”&rη»“εˆοΌŒη”Ÿζˆ&3ζ°―εŒ–ι“΅&rοΌ›ιšεŽε°†ε…Άη”΅θ§£οΌŒε³ε―ε›žζ”Ά&6ζ°¨ζ°”&rοΌŒεΉΆθŽ·εΎ—εˆΆε€‡&eι’¨ι…Έι’ &rζ‰€ιœ€ηš„&9盐酸&r。\n\nζ­€θΏ‡η¨‹θΏ˜δΌšδΊ§η”Ÿ&bη’³ι…Έζ°’ι’ &rοΌŒιœ€ι€šθΏ‡η”΅θ§£ε›žζ”Άε…ΆδΈ­ηš„&dηΊ―η’±&r。", + "quests.extreme_voltage.tunsgten_line_step.desc.2": "ζœ€εŽοΌŒδΈΊεŒζˆι—­ηŽ―οΌŒδ½ ιœ€θ¦η‘理ε₯½&aδΊŒζ°§εŒ–η’³&rγ€‚ε―ι€šθΏ‡η”΅θ§£&dη’³ι…Έζ°’ι’ &rε›žζ”Ά&aδΊŒζ°§εŒ–η’³&rοΌŒεΉΆε°†δ»Žζ–Ήθ§£ηŸ³ε’Œι”‚δΈ­εΎ—εˆ°ηš„&bη’³&r与&bζ°§&rη»“εˆγ€‚ζˆ–ι‡‡η”¨εΌΊεˆΆζ–Ήζ‘ˆοΌšεˆ©η”¨&b梲态空气&rεˆ†ι¦ζ₯无限供应&aδΊŒζ°§εŒ–η’³&r。", + "quests.extreme_voltage.tunsgten_line_step_1.title": "ζ–°ηš„ι’¨δΊ§ηΊΏ", + "quests.extreme_voltage.tunsgten_line_step_1.subtitle": "δΈΊδ»€δΉˆοΌŸεˆ°εΊ•δΈΊδ»€δΉˆοΌŸ", + "quests.extreme_voltage.tunsgten_line_step_1.desc": "TerraFirmaGregδΈ­ηš„&eι’¨δΊ§ηΊΏ&rε·²θ’«ε½»εΊ•ι‡εˆΆβ€”β€”δ½ δΌšοΌˆζˆ–θ€…δΈδΌšοΌ‰ι«˜ε…΄εœ°εΎ—ηŸ₯现在难度&c倧幅提升&r。\n\n虽焢可δ»₯&aεŒε…¨εΎͺ环&rι’¨δΊ§ηΊΏδΈ­ηš„ζ‰€ζœ‰ζζ–™οΌŒδ½†θΏ™ιœ€θ¦ε€§ι‡ηš„ε·₯η¨‹θ§„εˆ’γ€‚ζˆ–θ€…δ½ δΉŸε―δ»₯ι€šθΏ‡&cε€§θ§„ζ¨‘η”ŸδΊ§&rζ‰€ιœ€θ΅„ζΊζ₯εΌΊθ‘ŒζŽ¨θΏ›γ€‚\n\n小提瀺:&4火星&rδΈŠε­˜εœ¨ε€šε€„ε―Œε«&eηΊ―η’±&rε’Œ&eι’¨&rηš„&aδΌ˜θ΄¨ηŸΏθ„‰&r。\n\nη¨³ζ‰Žη¨³ζ‰“οΌŒδΌ˜εŒ–ζ΅η¨‹οΌŒι’¨δΊ§ηΊΏη»ˆε°†ζˆδΈΊδ½ δΈ­εŽζœŸε‘ε±•ηš„εŸΊηŸ³γ€‚", + "quests.extreme_voltage.tunsgten_line_step_2.title": "ι’¨δΊ§ηΊΏηš„ζœ€εŽιƒ¨εˆ†", + "quests.extreme_voltage.tunsgten_line_step_2.subtitle": "θΏ™ιƒ¨εˆ†θ‡ͺζˆ‘εΎͺ环", + "quests.extreme_voltage.tunsgten_line_step_2.desc": "δΈ€ζ—¦δ½ θŽ·εΎ—δΊ†&bι’¨ι…Έ&rεΉΆεΎͺηŽ―δΊ†&cηΊ―η’±&r,你就εŒζˆδΊ†ζœ€ιšΎηš„ιƒ¨εˆ†γ€‚δ»ŽθΏ™ι‡ŒεΌ€ε§‹οΌŒδ½ εͺιœ€θ¦δΈ€δΈͺ&6蒸发呔&rζ₯εŒε…¨εΎͺ环&6甡弧炉&rζ‰€ιœ€ηš„&aζ°’&r,δ»₯εŠδΈ€δΈͺ&6热解炉&rζ₯ε›žζ”Άδ½ εœ¨εΌ€ε§‹ζ—Άδ½Ώη”¨ηš„&3ζ°¨&r。\n\nζ²‘δ»€δΉˆε€ͺιšΎηš„οΌŒζ‰€δ»₯δΊ«ε—δ½ ηš„&5ι’¨&r吧!", + "quests.extreme_voltage.advanced_fluid_rig.title": "ζžι™ζ΅δ½“ι’»ζœΊ", + "quests.extreme_voltage.advanced_fluid_rig.subtitle": "ζžι™ζ˜―δΈ€δΈͺζ°ε½“ηš„ε½’εΉθ―", + "quests.extreme_voltage.advanced_fluid_rig.desc.1": "δ»₯ζΆˆθ€—4ε€η”΅εŠ›δΈΊδ»£δ»·οΌŒ&3θΏ›ι˜Άζ΅δ½“ι’»ζœΊII&rε―θŽ·εΎ—16ε€ηš„ζ΅δ½“δΊ§ε‡Ίγ€‚\n\nηŸΏθ„‰ζž―η«­ι€ŸηŽ‡εŒζ—Άε‡εŠγ€‚θΏ™ζ„ε‘³η€εœ¨ε•δΈͺεŸΊε²©ζ΅δ½“ηŸΏθ„‰εŒε…¨ζž―η«­ε‰οΌŒδ½ ε°†ζ€»θ‘θŽ·εΎ—32ε€ηš„ηŸ³ζ²ΉοΌˆζˆ–ε…Άδ»–ζ΅δ½“οΌ‰οΌ\n\nε³δ½ΏηŸΏθ„‰ζž―η«­δΊ†οΌŒθ―₯θΎε€‡δ»θƒ½ζŒη»­θΏθ‘ŒεΉΆδΈ”δΏζŒθƒ½ι‡ζ­£ζ”Άη›Šγ€‚\n\n一台&3θΏ›ι˜Άζ΅δ½“ι’»ζœΊII&rδΎΏθΆ³δ»₯δΎ›εΊ”δΈ€δΈͺεŸΊεœ°η›΄εˆ°LuV阢ζ΅ηš„θƒ½ζΊιœ€ζ±‚β€¦β€¦η”šθ‡³ε―θƒ½ζ›΄ι«˜οΌ", + "quests.extreme_voltage.advanced_fluid_rig.desc.2": "&9温馨提瀺&r(θ‡ͺ&bMV&r阢ζ΅εŽι¦–ζ¬‘ι‡ηŽ°οΌ‰οΌš\n\n&9-&r&aθ½»ζ²Ή&rε―η”¨δΊŽεˆΆε€‡&dζΆ²εŒ–ηŸ³ζ²Ήζ°”&r与&dη”²ηƒ·&rοΌŒδΎ›&3ε€§εž‹η‡ƒζ°”θ½ζœΊ&r使用。\n\n&9-&r&a石油&rε―η”¨δΊŽεˆΆε€‡&d柴油&r及&dι«˜εε…­ηƒ·ε€ΌζŸ΄ζ²Ή&rοΌŒδΎ›&3ε€§εž‹ε†…η‡ƒζœΊ&r使用。\n\n&9-&r&a重油&rε―η”¨δΊŽεˆΆε€‡&dη‘εŸΊθ‹―&rοΌŒδΎ›&3ε€§εž‹η‡ƒζ°”θ½ζœΊ&r使用。", + "quests.extreme_voltage.mpic_chip.title": "εŠŸηŽ‡ι›†ζˆη”΅θ·―", + "quests.extreme_voltage.mpic_chip.desc": "ζ–°εž‹εˆ‡ε‰²ζœΊοΌŸ&aβœ“&r\n\nζ–°εž‹ι€ι•œοΌŸ&aβœ“&r\n\nζ–°εž‹εŠŸηŽ‡η”΅θ·―οΌŸ&aβœ“&r\n\nζ–°εž‹η”΅εŠ›ι«˜η‚‰ι‡‘ε±žθ¦ζ±‚οΌŸ&aβœ“&r\n\nζ–°εž‹θƒ½ζΊδ»“ηΊΏεœˆοΌŸ&aβœ“&r", + "quests.extreme_voltage.ev_energy_hatch.desc": "εˆδΈ€δΈͺη­‰ηΊ§οΌŒεˆδΈ€δΈͺ能源仓。你ηŸ₯道θ―₯用εƒεšδ»€δΉˆοΌ", + "quests.extreme_voltage.ev_dynamo_hatch.title": "EVεŠ¨εŠ›δ»“", + "quests.extreme_voltage.ev_dynamo_hatch.desc": "ε¦‚ζžœδ½ θΏ˜ζ²‘ι‡εˆ°θΏ‡εƒδ»¬οΌŒεŠ¨εŠ›δ»“ζœ¬θ΄¨δΈŠζ˜―θƒ½ζΊδ»“ηš„θΎ“ε‡Ίε―ΉεΊ”η‰©γ€‚δ½ ιœ€θ¦εœ¨ζ–°ηš„ε€§εž‹ε‘η”΅ζœΊδΈŠι…η½ζ­€η±»η»„δ»ΆοΌŒδ»₯θŽ·εΎ—η¨³εšηš„EVη”΅εŠ›οΌŒεŽη»­δ»»εŠ‘ε°†θ―¦η»†θ―΄ζ˜Žγ€‚", + "quests.extreme_voltage.ev_dynamo_hatch.task": "任何EVεŠ¨εŠ›δ»“", + "quests.extreme_voltage.oil_distillation.title": "ηœŸζ­£ηš„ηŸ³ζ²Ήθ’Έι¦", + "quests.extreme_voltage.oil_distillation.desc": "δ»Žθ’Έι¦θ’Έζ±½θ£‚εŒ–η‡ƒζ²ΉδΈ­ε―θŽ·ε–ε››η§ζœ€δΈ»θ¦ηš„&dη’³ζ°’εŒ–εˆη‰©&r。\n\nε»Ίθεœ¨θΏ›ε…₯&1IV&r阢ζ΅ε‰εŒζˆθ―₯产线搭建。\n\n选用&aθ’Έζ±½θ£‚εŒ–θ½»η‡ƒζ²Ή&rδ½œδΈΊεŽŸζ–™ζˆ–θΈζ˜―ε½“ε‰ζœ€δΌ˜θ§£οΌŒδ½†δ½ ε°½ε―θ‡ͺη”±ε°θ―•ε…Άδ»–ζ–Ήζ‘ˆγ€‚\n\nε¦‚ζžœδ½ δΈζƒ³θ¦ε‰―δΊ§η’³η²‰οΌŒε―δ»₯η›΄ζŽ₯ε‰θ£…δΈ€δΈͺ销毁覆盖板。", + "quests.extreme_voltage.oil_distillation.task": "δ»»δ½•ηŸ³ζ²Ή", + "quests.extreme_voltage.wood_distillation.title": "ηœŸζ­£ηš„ζœ‰ζœΊθ’Έι¦", + "quests.extreme_voltage.wood_distillation.desc.1": "θ―₯δ»»εŠ‘ιœ€θ¦&3热解炉&rδΈ”ε±žδΊŽ&d可选&rε†…εΉοΌŒδ½†εŒζˆδΌšεΈ¦ζ₯δΈε°‘δΎΏεˆ©γ€‚\n\n&aζœ¨η„¦ζ²Ή&rθ’Έι¦ε―δΊ§ε‡Ίε››η§ι‡θ¦ζ΅δ½“οΌš\n\n&9-&r θ‹―ι…šοΌšη”¨δΊŽηŽ―ζ°§ζ ‘θ„‚ε’Œθšθ‹―εΉΆε’ͺε”‘\n&9-&r θ‹―οΌšδΈ€η§ι‡θ¦ηš„η’³ζ°’εŒ–εˆη‰©\n&9-&r η”²θ‹―οΌšη”¨δΊŽεˆΆι€ TNT\n&9-&r δΊŒη”²θ‹―οΌšη”¨δΊŽθšθ‹―εΉΆε’ͺε”‘\n\nδΈŽηŸ³ζ²ΉδΈεŒοΌŒε°†&aζœ¨η„¦ζ²Ή&rζŠ•ε…₯&3蒸馏呔&rθŽ·ε–ε‰―δΊ§ε“οΌŒεΉΆζ­ι…&dη‘εŸΊθ‹―&rδ½œδΈΊθƒ½ζΊζ˜―η‰©ζœ‰ζ‰€ε€Όηš„γ€‚", + "quests.extreme_voltage.wood_distillation.desc.2": "θΏ™δΈ‰η§ζ˜―&aζœ¨ι†‹ι…Έ&rθ’Έι¦ηš„ι‡θ¦δΊ§η‰©οΌš\n\n&9-&r δΉ™ι…ΈοΌšη”¨δΊŽεˆΆι€ ζ›΄ε€šδΈ™ι…\n\n&9-&r η”²ι†‡οΌšδΈ€η§δΈ­η­‰ι‡θ¦ηš„η’³ζ°’εŒ–εˆη‰©\n\n&9-&r δΈ™ι…οΌšη”¨δΊŽηŽ―ζ°§ζ ‘θ„‚ε’Œζ±½ζ²Ή", + "quests.extreme_voltage.wood_distillation.desc.3": "也可δ»₯使用4δΈͺ&3蒸馏呔&rηš„β€œεŒε…¨η»„εˆβ€β€”β€”ε°†&aζœ¨η‚­ε‰―δΊ§ε“&rθΎ“ε…₯第一δΈͺε‘”οΌŒεˆ†η¦»ζˆ&aζœ¨η„¦ζ²Ή&r、&aζœ¨η…€ζ°”&rε’Œ&aζœ¨ι†‹ι…Έ&r。\n\nθ™½η„ΆθΏ™δΈζ˜―ζœ€δΌ˜ηš„ζˆζœ¬ζ•ˆη›Šζ―”οΌŒδ½†ε¦‚ζžœδ½ θ§‰εΎ—ζ— θŠοΌŒθΏ™δΈͺι€‰ι‘ΉδΉŸζ˜―ε­˜εœ¨ηš„γ€‚", + "quests.extreme_voltage.wood_distillation.task": "δ»₯下任何一δΈͺ", + "quests.extreme_voltage.new_qol.title": "ζε‡η”Ÿζ΄»ε“θ΄¨ηš„ζ–°ε·₯ε…·οΌŸ", + "quests.extreme_voltage.new_qol.desc": "θΏ™ι‡Œζ˜―δ½ ι€šθΏ‡EVη»„θ£…ζœΊθ§£ι”ηš„δΈ€δΊ›εžη”¨ε°ε·₯具。", + "quests.extreme_voltage.building_gadgets.title": "建筑小εΈζ‰‹", + "quests.extreme_voltage.building_gadgets.subtitle": "δΈ€ι”ζžεšηΎŽζ™―铺路!", + "quests.extreme_voltage.building_gadgets.desc": "想要进一ζ­₯ζ‰©ε±•δ½ ηš„ε·₯εŽ‚ε»ΊθΎε—οΌŸζƒ³δΈ€ι”η²˜θ΄΄ε¦δΈ€δΈͺε€šζ–Ήε—η»“ζž„ε—οΌŸθΏ˜ζ˜―θ§‰εΎ—ι‚£εΊ§ε±±ιζŒ‘δΊ†δ½ ηš„θ§†ηΊΏοΌŸ\n\n建筑小εΈζ‰‹ (Building Gadgets) ε₯—δ»Άιžδ½ θŽ«ε±žβ€”β€”θΏ™ε₯—ε·₯具不仅能εžηŽ°δΈŠθΏ°ζ‰€ζœ‰ιœ€ζ±‚οΌŒζ›΄θƒ½θΆ…θΆŠδ½ ηš„ζƒ³θ±‘。εƒδ»¬ε°†ζˆδΈΊδ½ ζœͺζ₯ε»ΊθΎηš„εŒηΎŽε·₯ε…·οΌŒθΏ˜ι…ε€‡δΊ†θ―¦ε°½ηš„ζ‰‹ε†ŒοΌ", + "quests.extreme_voltage.gasoline.title": "ζ±½ζ²Ή", + "quests.extreme_voltage.gasoline.desc": "&aζ±½ζ²Ή&rζ˜―δΈ€η§θƒ½ι‡ε―†εΊ¦ζžι«˜ηš„ε†…η‡ƒζœΊη‡ƒζ–™οΌŒε…Άθƒ½ι‡ε―†εΊ¦θΆ…θΏ‡&d柴油&rηš„&63倍&r还倚!\n\n&9ζ³¨ζ„οΌš&rθ―₯η‡ƒζ–™ηš„θΎθ‘εˆθ‘·ζ˜―δ½œδΈΊδΈ€ι‘Ή&eζŠ€ζœ―ζŒ‘ζˆ˜&rδΎ›ηŽ©εΆζ”»ε…‹οΌŒζ˜―否尝试εŒε…¨ε–ε†³δΊŽδ½ ηš„ι€‰ζ‹©γ€‚\n\nη”±δΊŽθΏ™ζ˜―εŒε…¨&d可选&rηš„ε†…εΉοΌŒζˆ‘δ»¬ε°†δΈδΌšζδΎ›δ»»δ½•ζη€ΊοΌŒθ―·θ‡ͺθ‘ŒζŽ’η΄’θŽ·ε–ζ–ΉεΌγ€‚", + "quests.extreme_voltage.radiation.title": "倄理辐射", + "quests.extreme_voltage.radiation.subtitle": "ι’ε€–θΎ›θΎ£ηš„ζζ–™", + "quests.extreme_voltage.radiation.desc.1": "θ™½η„Άζ Όι›·η§‘ζŠ€δΈεƒζŸδΊ›ζ¨‘η»„ι‚£ζ ·θΎη½\"ηŽ―ε’ƒθΎε°„\"οΌŒδ½†&a放射性材料&r在蒫玩εΆζŒζœ‰ζ—Άδ»η„Άε…·ζœ‰ε±ι™©ζ€§οΌθΏ™ι€‚η”¨δΊŽζ‰€ζœ‰ζ ‡ζ³¨&4辐射性&rδΈ”ζ³¨ζ˜Ž&e任何方式&rθ§¦ε‘θ―΄ζ˜Žηš„η‰©ε“γ€‚\n\nεΊ”ε―ΉζŽͺζ–½ζœ‰ε€šη§οΌŒζœ€η€δΎΏηš„ζ–ΉεΌζ˜―彻底避免ζŽ₯θ§¦β€”β€”ι€šθΏ‡η‘ι“γ€θƒŒεŒ…δΉƒθ‡³ε°εž‹εΉε™¨θ½¬η§»θΏ™δΊ›η‰©ε“γ€‚εƒδ»¬εœ¨η‰©ε“ζ δΈ­εœη•™ηš„ζ—Άι—΄θΆŠηŸ­θΆŠε₯½οΌ", + "quests.extreme_voltage.radiation.desc.2": "ζ­€ε€–οΌŒδ½ θΏ˜ιœ€θ¦ε…Άδ»–ι˜²ζŠ€ζ‰‹ζ΅γ€‚εœ¨ε››δΈͺθ£…ε€‡ζ§½δ½η©Ώζˆ΄ζ ‡ζœ‰&e#ppe_armor&rηš„ι˜²ζŠ€θ£…ε€‡ε―ζœ‰ζ•ˆζŠ΅εΎ‘θΎε°„γ€‚δΈθΏ‡θΏ™δΊ›θ£…ε€‡δΌšιšζ—Άι—΄ζŽ¨η§»ι€ζΈζŸθ€—οΌˆζŸθ€—ι€ŸηŽ‡δΈŽθΎε°„ε―Ήδ½ ηš„ε½±ε“η¨‹εΊ¦ζˆζ­£ζ―”οΌ‰οΌŒ&o但&r&6ε±ι™©ζζ–™ι˜²ζŠ€ζœ&r能εŒε…¨ε…η–«θΎε°„ζŸδΌ€γ€‚\n\nιœ€θ¦ζ³¨ζ„ηš„ζ˜―οΌŒε±ι™©ζζ–™ι˜²ζŠ€ζœδΈε…·ε€‡ε€ͺη©ΊζœεŠŸθƒ½γ€‚εœ¨η«ζ˜ŸδΈŠοΌŒδ½ ε―δ»₯ι€‰ζ‹©ε»Ίι€ ε°ι—­εΌε……ζ°§εŸΊεœ°ζ₯δ½Ώη”¨ι˜²ζŠ€ζœοΌŒζˆ–ζ˜―θ©ε€ͺη©Ίζœη…§ε•ε…¨ζ”Άθ€δΉ…ζŸθ€—γ€‚", + "quests.extreme_voltage.radiation.desc.3": "ζœ€εŽοΌŒδ½ ε―δ»₯ιšζ—Άδ½Ώη”¨&a/medical_condition query&rζŒ‡δ»€ζ£€ζŸ₯辐射中毒程度。θ‹₯θΎε°„ε€ΌθΏ‡ι«˜οΌŒδ½ ε°†εΌ€ε§‹ζŒη»­ε—εˆ°δΌ€ε³η”šθ‡³ηͺε‘ζ€§ζš΄ζ―™οΌŒε› ζ­€εŠ‘εΏ…εšε₯½ι’„ι˜²ζŽͺ施。\n\nη›ε‰ε”―δΈ€ηš„ζ²»η–—ζ‰‹ζ΅ζ˜―εˆΆδ½œεΉΆζœη”¨&b梈辐ε&rθ―δΈΈοΌŒζ―ι’—ε―ζΆˆι™€50%%ηš„θΎε°„η§―η΄―ι‡γ€‚", + "quests.extreme_voltage.radiation.task": "ε‰ε…¨η¬¬δΈ€οΌ", + "quests.extreme_voltage.hexafluorosilic_acid.title": "ε…­ζ°Ÿη‘…ι…Έ", + "quests.extreme_voltage.hexafluorosilic_acid.subtitle": "ζ°΄ι‡Œζœ‰η‚ΉδΈœθ₯Ώβ€¦β€¦", + "quests.extreme_voltage.hexafluorosilic_acid.desc": "ε…­ζ°Ÿη‘…ι…Έζ˜―ι€šθΏ‡ε°†ηΊ’θŠ±ε²—ε²©γ€η²—ι’ε²©ζˆ–ζ³₯ζΏε²©η²‰ζœ«ζ΅Έζ³‘εœ¨ζ°’ζ°Ÿι…ΈδΈ­θŽ·εΎ—ηš„γ€‚δ½ ε―δ»₯η”¨η’Žε²©ζœΊζ— ι™θŽ·εΎ—θΏ™η§η²‰ζœ«γ€‚", + "quests.extreme_voltage.martian_sludge.title": "η«ζ˜Ÿζ΅†ζΆ²", + "quests.extreme_voltage.martian_sludge.subtitle": "汑水产线", + "quests.extreme_voltage.martian_sludge.desc": "ε―Ήε…­ζ°Ÿη‘…ι…ΈθΏ›θ‘Œη¦»εΏƒε€„η†ε―ε›žζ”Άζ°ŸοΌŒεŒζ—ΆθŽ·εΎ—&6η«ζ˜Ÿζ΅†ζΆ²&rβ€”β€”θΏ™ζ˜―εˆΆε€‡ζ°‘ζ°”δΈŽζ ΈεΊŸζ–™ηš„εΏ…ιœ€ζζ–™γ€‚", + "quests.extreme_voltage.large_generators.title": "θΆ…ι«˜εŽ‹ε‘η”΅", + "quests.extreme_voltage.large_generators.desc": "ε„η§ε•ζ–Ήε—ε‘η”΅ζœΊηš„δΈŠι™εͺ到HV,θ‡ͺζ­€εΎ€εŽδ½ εΏ…ι‘»ι‡‡η”¨ε€šζ–Ήε—η»“ζž„ζ₯δΊ§η”Ÿζ›΄ε€šθƒ½ι‡γ€‚EV阢ζ΅δΈ€δΈͺζœ€ε₯½ηš„ι€‰ζ‹©ζ˜―&dε€§εž‹η‡ƒζ°”ζΆ‘θ½&rε’Œ&dε€§εž‹ε†…η‡ƒζœΊ&r,请移ζ­₯ζ Όι›·η§‘ζŠ€θƒ½ζΊη« θŠ‚δΊ†θ§£θ―¦η»†δΏ‘ζ―γ€‚", + "quests.extreme_voltage.large_centrifuge.subtitle": "ζζ–™ζ—‹θ½¬ζœ¨ι©¬", + "quests.extreme_voltage.large_centrifuge.desc": "&6ε€§εž‹η¦»εΏƒζœΊ&rζ˜―δ½ θ£‚ε˜η”ŸδΊ§ηΊΏδΈ­εΏ…ε€‡ηš„ε€šζ–Ήε—η»“ζž„γ€‚\n\nεƒζœ€ε€šζ”―持&52δΈͺEV能源仓&rοΌŒθƒ½ε€Ÿδ»₯δΈŽη”΅εŠ›ι«˜η‚‰η›ΈεŒηš„ζœΊεˆΆε€„η†&1IVη­‰ηΊ§&rηš„ι…ζ–ΉοΌŒε› ζ­€ζ“δ½œι€»θΎ‘δΌšθ©δ½ ζ„Ÿεˆ°η†Ÿζ‚‰γ€‚\n\nθ―₯θΎε€‡ζ‹₯ζœ‰δΈ€η§θΏθ‘Œζ¨‘εΌοΌš&b离心&r与&6ηƒ­εŠ›η¦»εΏƒ&r。你可直ζŽ₯εœ¨ζŽ§εˆΆε™¨η•Œι’εˆ‡ζ’ζ¨‘εΌοΌŒδ½†ζš‚δΈζ”―ζŒι€šθΏ‡AE2ζˆ–ε…Άδ»–θ‡ͺεŠ¨εŒ–η³»η»ŸθΏœη¨‹ζŽ§εˆΆγ€‚\n\nζ­€ζ¬‘ε‡ηΊ§ε°†δ½Ώδ½ ηš„&aηŸΏη‰©ε€„η†&rι€ŸεΊ¦εžηŽ°θ΄¨ηš„ι£žθ·ƒγ€‚", + "quests.extreme_voltage.btx.title": "θŠ³ηƒƒη‡ƒζ–™", + "quests.extreme_voltage.btx.subtitle": "η‘εŸΊθ‹―δΉ…θΏηš„θΏœδΊ²", + "quests.extreme_voltage.btx.desc.1": "&eθŠ³ηƒƒη‡ƒζ–™&r是&e重整气&rηš„ε‡ηΊ§η‰ˆοΌŒζ―θ±ͺζ‘Άηš„θƒ½ι‡ε―†εΊ¦ηΊ¦δΈΊεŽθ€…ηš„δΊ”ε€γ€‚ε…Άη”ŸδΊ§θΏ‡η¨‹ζ›΄δΈΊηΉηοΌŒδ½†θƒ½δΈΊθΏθ‘Œδ½ ηš„&6ε€§εž‹η‡ƒζ°”ζΆ‘θ½&rεΈ¦ζ₯ζ˜Ύθ‘—ηš„ζ€§θƒ½ζε‡γ€‚δΈŽε…Άε‰θΊ«δΈ€ζ ·οΌŒθΏ™η§η‡ƒζ–™εŒε…¨ε―ε†η”ŸοΌŒεΉΆδΈ”ε―δ»₯εŒε…¨ι€šθΏ‡&aζ ‘ζœ¨εŠ ε·₯&rζ₯η”ŸδΊ§γ€‚\n\nδΈΊδΊ†θ§£ι‡Š&eθŠ³ηƒƒη‡ƒζ–™&rηš„εˆΆδ½œθΏ‡η¨‹οΌŒζˆ‘δ»¬ε°†ε…ΆεŠ ε·₯εˆ†δΈΊδΈ‰ιƒ¨εˆ†οΌš&bθŠ³ηƒƒη‡ƒζ–™εˆζˆ&rζœ¬θΊ«γ€&eε‚¬εŒ–ε‰‚&rηš„εˆΆδ½œοΌŒδ»₯εŠζœ€εŽε¦‚δ½•εΎͺ环&eι“Ό&rε’Œ&eι“‚&r。", + "quests.extreme_voltage.btx.desc.2": "θ©ζˆ‘δ»¬δ»Ž&bθŠ³ηƒƒη‡ƒζ–™&rηš„εˆζˆεΌ€ε§‹γ€‚δ½ ιœ€θ¦ε°†&e重整气&r与&eε‚¬εŒ–ε‰‚&rδ»₯εŠε°‘ι‡&eδΈ™ηƒ―&rζ··εˆγ€‚δΈ€ζ‘ζ–°ηš„εŠ ε·₯路线允θΈδ½ η”¨&eεˆζˆζ°”&rη”ŸδΊ§&e甲醇&rοΌŒη„ΆεŽε°†ε…Άθ’Έι¦ζˆζ‰€ιœ€ηš„δΈ™ηƒ―γ€‚θΏ™ζ˜―ι‡ζ–°εˆ©η”¨η”ŸδΊ§&e重整气&rθΏ‡η¨‹δΈ­δΊ§η”Ÿηš„εˆζˆζ°”ηš„ε₯½ζ–Ήζ³•。\n\nεŒζˆθΏ™δΈ€ζ­₯后,在&6蒸馏呔&rδΈ­εˆ†ι¦&eζœ¨η„¦ζ²Ή&r将提供εŒζˆζ··εˆη‰©ζ‰€ιœ€ηš„ζ‰€ζœ‰ε…Άδ»–ζˆεˆ†γ€‚η›Έε½“η€ε•γ€‚εœ¨ζŽ₯δΈ‹ζ₯ηš„δ»»εŠ‘δΈ­οΌŒζˆ‘δ»¬ε°†δ»‹η»ε¦‚δ½•εˆΆδ½œ&eε‚¬εŒ–ε‰‚&rδ»₯εŠε¦‚δ½•ι«˜ζ•ˆεœ°ε›žζ”Άεƒγ€‚", + "quests.extreme_voltage.btx_catalyser.title": "ι“‚-ι“Ό/ZSM-5ε‚¬εŒ–ε‰‚", + "quests.extreme_voltage.btx_catalyser.subtitle": "ε€šδΉˆε€ζ‚ηš„εε­—", + "quests.extreme_voltage.btx_catalyser.desc": "要刢作&eι“‚-ι“Ό/ZSM-5ε‚¬εŒ–ε‰‚&rοΌŒδ½ ιœ€θ¦ε»Ίη«‹&aη’±&r、&aι’ &rε’Œ&dδΈ‹η•ŒηŸ³θ‹±&rηš„ζ— ι™ζ₯源,δ»₯及&aζ°¨&rε’Œ&a乙醇&r。&b铝&rε°†θ’«εŒε…¨εΎͺηŽ―εˆ©η”¨οΌŒθ€Œε…Άδ»–ζζ–™εͺθƒ½ιƒ¨εˆ†ε›žζ”Άγ€‚\n\nε¦‚ζžœδ½ δΈη‘εš&dδΈ‹η•ŒηŸ³θ‹±&rηš„ζ₯源,可δ»₯ηœ‹ηœ‹δ»Ž&e沙子&rεΌ€ε§‹ηš„ι…ζ–Ήι“Ύγ€‚ε¦δΈ€ζ–Ήι’οΌŒ&aι’ &r可δ»₯ι€šθΏ‡ε€„η†&bζ΅·ζ°΄&rθ½»ζΎθŽ·εΎ—οΌŒθ€Œη’±ε―δ»₯ι€šθΏ‡θ‰ζœ¨η°θŽ·ε–γ€‚\n\nζœ€εŽοΌŒε°†ζ‰€ζœ‰δΈœθ₯ΏδΈŽδΈ€δΊ›&5ι“‚&rε’Œ&5ι“Ό&rζ··εˆοΌŒε³ε―εΎ—εˆ°δ½ ηš„&eε‚¬εŒ–ε‰‚&r。ε₯½ζΆˆζ―ζ˜―οΌŒι“‚ε’Œι“Όεœ¨ζ­€θΏ‡η¨‹δΈ­ιƒ½δΌšθ’«εŒε…¨ε›žζ”ΆοΌŒε› ζ­€ζ— ιœ€ζ‹…εΏƒοΌŒδ½ εͺιœ€θ¦εΌ€ι‡‡δΈ€ζ¬‘ε³ε―γ€‚", + "quests.extreme_voltage.btx_loop.title": "ε›žζ”ΆεΊŸε‚¬εŒ–ε‰‚", + "quests.extreme_voltage.btx_loop.subtitle": "ε°½ε―θƒ½ε€šεœ°ε›žζ”Άεˆ©η”¨", + "quests.extreme_voltage.btx_loop.desc.1": "θΏ™ζ‘η”ŸδΊ§ι“Ύηš„ζœ€εŽδΈ€ιƒ¨εˆ†ζ˜―ε›žζ”ΆεΊŸε‚¬εŒ–ε‰‚γ€‚ζ•΄δΈͺ过程相当η€ε•οΌŒδΈ»θ¦ηš„ζŒ‘ζˆ˜ε°†ζ˜―维持&aεΌΊεŒ–ηŽ―ζ°§ζ ‘θ„‚ζΏ&rε’Œ&eθƒΆζ°΄&rηš„ζŒη»­δΎ›εΊ”γ€‚\n\nε¦‚ζžœδ½ ηš„&2ζ ‘θ„‚ι‡‡ι›†η³»η»Ÿ&r仍在运葌,εƒεΊ”θ―₯θΆ³δ»₯η”ŸδΊ§εˆΆδ½œθƒΆζ°΄ζ‰€ιœ€ηš„ζ‰€ζœ‰ζ ‘θ„‚γ€‚ζˆ–θ€…οΌŒε―ΉεŽŸζœ¨δ½Ώη”¨&bζε–ζœΊ&rδΉŸζ˜―δΈ€δΈͺεŒε…¨ε―θ‘Œηš„ι€‰ζ‹©γ€‚θΏ™η§ζ–Ήζ³•η¨εΎζ›΄&cθ€—η”΅&rοΌŒδ½†ι€‰ζ‹©εŒε…¨ε–ε†³δΊŽδ½ ηš„εŸΊη‘€θΎζ–½γ€‚", + "quests.extreme_voltage.btx_loop.desc.2": "ε…³δΊŽ&9稀盐酸&rηš„δΈ€η‚Ήθ―΄ζ˜ŽοΌšεƒε―δ»₯很εΉζ˜“εœ°ι€šθΏ‡&bζ°΄&r与&aζ°―ζ°”&rεεΊ”εˆΆεΎ—γ€‚δ½ ε―δ»₯ε‚¨ε­˜&d欑氯酸&rοΌŒζˆ–ι€‰ζ‹©η”΅θ§£εƒδ»₯ε›žζ”Ά&fδΈ€εŠηš„ζ°―ζ°”&r。\n\nθ‡³δΊŽ&6η‘«ι…Έ&rοΌŒδ½ εΊ”θ―₯ε·²η»ι€šθΏ‡&eηŸ³ζ²ΉεŒ–ε·₯蒸馏&rθ£…η½θŽ·εΎ—δΊ†ζ— ι™ηš„η‘«η£Ίζ₯ζΊγ€‚ε¦‚ζžœθΏ˜ζ²‘ζœ‰οΌŒζˆ‘δ»¬εΌΊηƒˆε»Ίθ你尽快解决这δΈͺι—ι’˜γ€‚ζ­€ε€–οΌŒη”ŸδΊ§&b重整气&rζ—ΆθŽ·εΎ—ηš„&7煀焦油&r可δ»₯ι‡ζ–°θ½¬εŒ–δΈΊ&2η‘«εŒ–ζ°’&rοΌŒεΉΆζœ€η»ˆη²Ύη‚Όε›ž&6η‘«&r。", + "quests.gregtech_energy": "ζ Όι›·η§‘ζŠ€θƒ½ζΊ", "quests.gregtech_energy.subtitle": "θΏ™δΈ€εˆ‡εˆ°εΊ•ζ˜―ζ€ŽδΉˆε·₯δ½œηš„οΌŸ", "quests.gregtech_energy.start.title": "θ©ζˆ‘δ»¬εšδΊ›θ§£ι‡Š", "quests.gregtech_energy.start.desc": "ζˆ‘δ»¬ηŸ₯ι“ζ Όι›·η§‘ζŠ€εΉΆδΈζ˜―ζœ€εΉζ˜“δΈŠζ‰‹ηš„ζ¨‘η»„β€”β€”ε°€ε…Άζ˜―εœ¨&cθƒ½ζΊη³»η»Ÿ&rζ–Ήι’γ€‚θΏ™ε°±ζ˜―δΈΊδ»€δΉˆζˆ‘δ»¬ε°†εœ¨ζœ¬η« θŠ‚δΈ­θŠ±ζ—Άι—΄ε°½ε―θƒ½ε€šεœ°θ§£ι‡Šγ€‚\n\nθΏ™ι‡Œηš„δΈ€δΊ›ε†…εΉε―θƒ½εœ¨δ½ θΏ›η¨‹ηš„εŽζœŸζ‰θƒ½εŒε…¨η†θ§£οΌŒζ‰€δ»₯不要给θ‡ͺε·±εŽ‹εŠ›γ€‚ηŽ°εœ¨εͺιœ€θ―•η€η†θ§£δ½ θƒ½η†θ§£ηš„οΌŒεΉΆιšζ—Ά&dε›žεˆ°ζœ¬η« θŠ‚&r提ι—。\n\nζˆ‘δ»¬ε°†ζœ¬η« θŠ‚εˆ†δΈΊ&eε››δΈͺ类别&r,每δΈͺη±»εˆ«ζΆ΅η›–δΈ€δΈͺδΈŽζ Όι›·η§‘ζŠ€θƒ½ζΊη³»η»Ÿη›Έε…³ηš„δΈ»ι’˜γ€‚ζˆ‘δ»¬ε°†ζδΎ›ε°½ε―θƒ½ε€šηš„η€ΊδΎ‹ζ₯εΈεŠ©δ½ η†θ§£ε…Άε·₯δ½œεŽŸη†γ€‚", @@ -1885,14 +2451,14 @@ "quests.gregtech_energy.start.subtitle": "ζ²‘δ½ ζƒ³ηš„ι‚£δΉˆη³Ÿ", "quests.gregtech_energy.moving.title": "δΌ θΎ“δ½ ηš„θƒ½ι‡", "quests.gregtech_energy.moving.subtitle": "所δ»₯οΌŒθƒ½ι‡δΌ θΎ“οΌŒε—―", - "quests.gregtech_energy.moving.desc": "εœ¨ζ Όι›·η§‘ζŠ€δΈ­δΌ θΎ“θƒ½ι‡ιœ€θ¦η†θ§£ε‡ δΈͺζ ΈεΏƒζœΊεˆΆγ€‚\n\nι¦–ε…ˆζ˜―&b能量等级&rγ€‚δ»Ž&aLV&r到&cUHV&rοΌŒζ Όι›·η§‘ζŠ€δΈ­ηš„δΈ€εˆ‡β€”β€”η”΅ηΊΏγ€ζœΊε™¨γ€ι…ζ–Ήβ€”β€”ιƒ½δΈŽη­‰ηΊ§ζŒ‚ι’©γ€‚δ½ ιœ€θ¦δ½Ώη”¨&eζ­£η‘ηš„η”΅ηΌ†ζζ–™&rζ₯δΌ θΎ“θƒ½ι‡γ€‚δΎ‹ε¦‚οΌš\n&8β€’&rι”‘ε―ΌηΊΏ=&aLV&r\n&8β€’&rι“œε―ΌηΊΏ=&bMV&r\n\nε…Άζ¬‘ζ˜―&b甡桁&rζœΊεˆΆγ€‚ε―ε°†1ε‰εŸΉοΌˆ1AοΌ‰θ§†δ½œ&eδΈ€δΈͺθƒ½ι‡εŒ…&r。θΎε€‡δΌšθ―·ζ±‚能量\"εŒ…\"οΌŒιšεŽθΏ™δΊ›θƒ½ι‡εŒ…δΌšι€šθΏ‡ε―ΌηΊΏδΌ θΎ“γ€‚\n&8β€’&r1Aδ½ŽεŽ‹η”΅ζ΅=&a32EU&r\n&8β€’&r1Aι«˜εŽ‹η”΅ζ΅=&e512EU&r\n\nε€§ε€šζ•°ζœΊε™¨ε’Œθƒ½ζΊδ»“ζœ€ε€šεͺδΌšθ―·ζ±‚&62A&rηš„η”΅ζ΅γ€‚\n\nζŽŒζ‘θΏ™δΈ€δΈͺζ¦‚εΏ΅ζ˜―θΏ›δΈ€ζ­₯ε­¦δΉ θƒ½ι‡εˆ†ι…ηš„ε…³ι”。", + "quests.gregtech_energy.moving.desc": "εœ¨ζ Όι›·η§‘ζŠ€δΈ­δΌ θΎ“θƒ½ι‡ιœ€θ¦η†θ§£ε‡ δΈͺζ ΈεΏƒζœΊεˆΆγ€‚\n\nι¦–ε…ˆζ˜―&b能量等级&rγ€‚δ»Ž&aLV&r到&cUHV&rοΌŒζ Όι›·η§‘ζŠ€δΈ­ηš„δΈ€εˆ‡β€”β€”η”΅ηΊΏγ€ζœΊε™¨γ€ι…ζ–Ήβ€”β€”ιƒ½δΈŽη­‰ηΊ§ζŒ‚ι’©γ€‚δ½ ιœ€θ¦δ½Ώη”¨&eζ­£η‘ηš„η”΅ηΌ†ζζ–™&rζ₯δΌ θΎ“θƒ½ι‡γ€‚δΎ‹ε¦‚οΌš\n&7β€’&rι”‘ε―ΌηΊΏ=&aLV&r\n&7β€’&rι“œε―ΌηΊΏ=&bMV&r\n\nε…Άζ¬‘ζ˜―&b甡桁&rζœΊεˆΆγ€‚ε―ε°†1ε‰εŸΉοΌˆ1AοΌ‰θ§†δ½œ&eδΈ€δΈͺθƒ½ι‡εŒ…&r。θΎε€‡δΌšθ―·ζ±‚能量\"εŒ…\"οΌŒιšεŽθΏ™δΊ›θƒ½ι‡εŒ…δΌšι€šθΏ‡ε―ΌηΊΏδΌ θΎ“γ€‚\n&7β€’&r1Aδ½ŽεŽ‹η”΅ζ΅=&a32EU&r\n&7β€’&r1Aι«˜εŽ‹η”΅ζ΅=&e512EU&r\n\nε€§ε€šζ•°ζœΊε™¨ε’Œθƒ½ζΊδ»“ζœ€ε€šεͺδΌšθ―·ζ±‚&62A&rηš„η”΅ζ΅γ€‚\n\nζŽŒζ‘θΏ™δΈ€δΈͺζ¦‚εΏ΅ζ˜―θΏ›δΈ€ζ­₯ε­¦δΉ θƒ½ι‡εˆ†ι…ηš„ε…³ι”。", "quests.gregtech_energy.moving.task": "ζˆ‘ζ˜Žη™½δΊ†", "quests.gregtech_energy.transformer.title": "θΆ…ηΊ§ε˜εŽ‹ε™¨", "quests.gregtech_energy.transformer.subtitle": "ζ―”ζ“Žε€©ζŸ±θΏ˜εŽ‰ε³", - "quests.gregtech_energy.transformer.desc": "ζ Όι›·η§‘ζŠ€δΈΊζ―δΈͺι—ι’˜ιƒ½ε‡†ε€‡δΊ†ε€šζ–Ήε—θ§£ε†³ζ–Ήζ‘ˆοΌŒ&dζœ‰ζΊε˜εŽ‹ε™¨&rδΎΏζ˜―ε…ΆδΈ­δΉ‹δΈ€γ€‚\n\nζ­€θ£…η½ε ͺη§°η»ˆζžε˜εŽ‹ε™¨οΌŒθƒ½ε€Ÿεœ¨&aLV&r至&cUHV&rηš„δ»»ζ„η­‰ηΊ§ι—΄δΌ θΎ“θƒ½ι‡οΌŒδΈ”δΈδΌšεΌ•ε‘ηˆ†η‚Έγ€‚δ½†θΏ™εΉΆιžε…Άζœ€ηͺε‡Ίηš„δΌ˜εŠΏγ€‚\n\nεƒθƒ½ε€Ÿι€šθΏ‡ζΏ€ε…‰η‘ι“δΌ θΎ“θƒ½ι‡οΌš\n&8β€’&r激光可传输袅倧ε‰εŸΉθƒ½ι‡\n&8β€’&rι›ΆζŸθ€—γ€ζ— η”΅ηΌ†οΌŒηΊ―η²Ήηš„θƒ½ι‡δΌ θΎ“\n&8β€’&rε”―δΈ€ι™εˆΆοΌšη‘道&cεΏ…ι‘»δΏζŒη»ε―Ήη›΄ηΊΏ&r\n\nε½“η”΅ηΌ†δΌ θΎ“θƒ½εŠ›δΈθΆ³ζ—ΆοΌŒθ―·&lι‡‡η”¨ζΏ€ε…‰ζ–Ήζ‘ˆ&r。", + "quests.gregtech_energy.transformer.desc": "ζ Όι›·η§‘ζŠ€δΈΊζ―δΈͺι—ι’˜ιƒ½ε‡†ε€‡δΊ†ε€šζ–Ήε—θ§£ε†³ζ–Ήζ‘ˆοΌŒ&dζœ‰ζΊε˜εŽ‹ε™¨&rδΎΏζ˜―ε…ΆδΈ­δΉ‹δΈ€γ€‚\n\nζ­€θ£…η½ε ͺη§°η»ˆζžε˜εŽ‹ε™¨οΌŒθƒ½ε€Ÿεœ¨&aLV&r至&cUHV&rηš„δ»»ζ„η­‰ηΊ§ι—΄δΌ θΎ“θƒ½ι‡οΌŒδΈ”ζ— ιœ€ι‘Ύθ™‘η”΅ζ΅ζ•°ζˆ–δΈ€ε †ζ‚δΉ±ζ— η« ηš„ε•ζ–Ήε—ε˜εŽ‹ε™¨γ€‚\n\nδ½†θΏ™εΉΆιžε…Άζœ€ηͺε‡Ίηš„δΌ˜εŠΏοΌšεƒθƒ½ε€Ÿι€šθΏ‡ζΏ€ε…‰η‘道传输能量。\n&7β€’&r激光可传输袅倧ε‰εŸΉθƒ½ι‡\n&7β€’&rι›ΆζŸθ€—γ€ζ— η”΅ηΌ†οΌŒηΊ―η²Ήηš„θƒ½ι‡δΌ θΎ“\n&7β€’&rε”―δΈ€ι™εˆΆοΌšη‘道&cεΏ…ι‘»δΏζŒη»ε―Ήη›΄ηΊΏ&r\n\nε½“η”΅ηΌ†δΌ θΎ“θƒ½εŠ›δΈθΆ³ζ—ΆοΌŒθ―·&lι‡‡η”¨ζΏ€ε…‰ζ–Ήζ‘ˆ&r。", "quests.gregtech_energy.moving_wire.title": "用导线传输", "quests.gregtech_energy.moving_wire.subtitle": "ζ”Ύη½θ΅·ζ₯ζœ‰η‚Ήζ„ζ€", - "quests.gregtech_energy.moving_wire.desc": "εœ¨ζ Όι›·η§‘ζŠ€δΈ­δΌ θΎ“θƒ½ι‡ε―θƒ½ι’‡ε…·ζŒ‘ζˆ˜β€”β€”&bε€šζ•°η”΅ηΌ†ε­˜εœ¨θƒ½ι‡ζŸθ€—&rγ€‚θƒ½ι‡εœ¨ε―ΌηΊΏδΈ­ζ―δΌ θΎ“δΈ€ζ Όθ·η¦»γ€ζ―ε‰εŸΉη”΅ζ΅ιƒ½ε―θƒ½δΊ§η”ŸζŸθ€—γ€‚δ½†ζ— ιœ€ζ‹…εΏƒοΌŒηŽ°ζœ‰θ§£ε†³ζ–Ήζ‘ˆε¦‚δΈ‹οΌš\n\n&8β€’&rδΈΊη”΅ηΌ†εŒ…θ£Ήζ©‘θƒΆεŒ…θ¦†ε±‚γ€‚ζ­€δΈΎε―ζ˜Ύθ‘—ι™δ½Žι•Ώθ·η¦»δΌ θΎ“δΈ­ηš„θƒ½ι‡ζŸθ€—οΌŒε…·δ½“θ―·ε‚η…§δ»»εŠ‘η‰©ε“η€ΊδΎ‹γ€‚\n&8β€’&rι‡‡η”¨ζ›΄ι«˜η­‰ηΊ§ηš„η”΅ηΌ†γ€‚δΎ‹ε¦‚ι“‚η”΅ηΌ†ζ―ζ Όδ»…ζŸθ€—1EUοΌŒη›ΈθΎƒδΊŽε…Ά8192EUηš„δΌ θΎ“εΉι‡θ€Œθ¨€ε‡ δΉŽε―εΏ½η•₯不θ‘。\n&8β€’&r使用&bθΆ…ε―Όη”΅ηΌ†&rγ€‚θΏ™η±»η”΅ηΌ†ζˆζœ¬η¨ι«˜οΌŒδ½†ε…·ε€‡&9ι›ΆζŸθ€—&r特性。εƒδ»¬ζ— ιœ€ζ©‘θƒΆεŒ…θ¦†δΈ”δΈδΌšε―ΉηŽ©εΆι€ ζˆη”΅ε‡»οΌŒδ½†ιœ€ζ³¨ζ„ι€šεΈΈιœ€εœ¨ε―ΉεΊ”η§‘ζŠ€ι˜Άζ΅ηš„εŽζœŸζ–Ήε―εˆΆι€ γ€‚\n\nδΌ˜εŒ–θƒ½ι‡δΌ θΎ“δ½“η³»β€”β€”&bι™δ½ŽζŸθ€—&rοΌŒζε‡η³»η»Ÿθƒ½ζ•ˆγ€‚", + "quests.gregtech_energy.moving_wire.desc": "εœ¨ζ Όι›·η§‘ζŠ€δΈ­δΌ θΎ“θƒ½ι‡ε―θƒ½ι’‡ε…·ζŒ‘ζˆ˜β€”β€”&bε€šζ•°η”΅ηΌ†ε­˜εœ¨θƒ½ι‡ζŸθ€—&rγ€‚θƒ½ι‡εœ¨ε―ΌηΊΏδΈ­ζ―δΌ θΎ“δΈ€ζ Όθ·η¦»γ€ζ―ε‰εŸΉη”΅ζ΅ιƒ½ε―θƒ½δΊ§η”ŸζŸθ€—γ€‚δ½†ζ— ιœ€ζ‹…εΏƒοΌŒηŽ°ζœ‰θ§£ε†³ζ–Ήζ‘ˆε¦‚δΈ‹οΌš\n\n&7β€’&rδΈΊη”΅ηΌ†εŒ…θ£Ήζ©‘θƒΆεŒ…θ¦†ε±‚γ€‚ζ­€δΈΎε―ζ˜Ύθ‘—ι™δ½Žι•Ώθ·η¦»δΌ θΎ“δΈ­ηš„θƒ½ι‡ζŸθ€—οΌŒε…·δ½“θ―·ε‚η…§δ»»εŠ‘η‰©ε“η€ΊδΎ‹γ€‚\n\n&7β€’&rι‡‡η”¨ζ›΄ι«˜η­‰ηΊ§ηš„η”΅ηΌ†γ€‚δΎ‹ε¦‚ι“‚η”΅ηΌ†ζ―ζ Όδ»…ζŸθ€—1EUοΌŒη›ΈθΎƒδΊŽε…Ά8192EUηš„δΌ θΎ“εΉι‡θ€Œθ¨€ε‡ δΉŽε―εΏ½η•₯不θ‘。\n\n&7β€’&r使用&bθΆ…ε―Όη”΅ηΌ†&rγ€‚θΏ™η±»η”΅ηΌ†ζˆζœ¬η¨ι«˜οΌŒδ½†ε…·ε€‡&9ι›ΆζŸθ€—&r特性。εƒδ»¬ζ— ιœ€ζ©‘θƒΆεŒ…θ¦†δΈ”δΈδΌšε―ΉηŽ©εΆι€ ζˆη”΅ε‡»οΌŒδ½†ιœ€ζ³¨ζ„ι€šεΈΈιœ€εœ¨ε―ΉεΊ”η§‘ζŠ€ι˜Άζ΅ηš„εŽζœŸζ–Ήε―εˆΆι€ γ€‚\n\nδΌ˜εŒ–θƒ½ι‡δΌ θΎ“δ½“η³»β€”β€”&bι™δ½ŽζŸθ€—&rοΌŒζε‡η³»η»Ÿθƒ½ζ•ˆγ€‚", "quests.gregtech_energy.moving_wire.task": "ζˆ‘ηœ‹εŒε―ΌηΊΏιƒ¨εˆ†δΊ†", "quests.gregtech_energy.moving_amp.title": "η‘理甡桁", "quests.gregtech_energy.moving_amp.subtitle": "εƒδΌšηƒ§ζŽ‰οΌŸ", @@ -1909,6 +2475,7 @@ "quests.gregtech_energy.lv_generator.desc.2": "&e1.θ’Έζ±½εŠ¨εŠ›&r:\n\nθΏ™ζ˜―ζœ€η»ε…Έηš„ε‘η”΅ζ–ΉεΌγ€‚δ½ ε―δ»₯ι€šθΏ‡θ’Έζ±½θ½ζœΊε°†ι«˜εŽ‹ι”…η‚‰δΊ§η”Ÿηš„θ’Έζ±½θ½¬εŒ–δΈΊEU。\n\nθ―₯θΎε€‡ζΆˆθ€—&e64mB/t&rθ’Έζ±½δΊ§η”Ÿ&e32 EU/t&rη”΅εŠ›γ€‚θ‹₯ι€‰ζ‹©ζ­€ζ–Ήζ‘ˆοΌŒζˆ‘δ»¬εΌΊηƒˆε»Ίθε»Ίι€ ε€§εž‹ι’ι“œι”…η‚‰οΌŒθ―₯ι”…η‚‰ε―δ½Ώη”¨ε²©ζ΅†γ€ζ‚ι…šζ²Ήζˆ–ε…Άδ»–ε―η‡ƒε›Ίδ½“η‡ƒζ–™οΌˆθ―·ζŸ₯ι˜…JEIοΌοΌ‰θ½»ζΎη»΄ζŒθΏδ½œγ€‚", "quests.gregtech_energy.lv_generator.desc.3": "&e2.ζ—‹θ½¬εŠ¨εŠ›&r:\n\nδ½ ε―εˆ©η”¨ζœΊζ’°εŠ¨εŠ›ηš„ζ—‹θ½¬εŠ¨εŠ›οΌŒι…εˆ&bδΊ€ζ΅ε‘η”΅ζœΊ&rδΊ§η”ŸRFθƒ½ι‡οΌŒε†ι€šθΏ‡&7δ½ŽεŽ‹&rθ½¬ζ’ε™¨ε°†ε…Άθ½¬εŒ–δΈΊEU甡能。\n\nοΌˆζ›΄ε€šη»†θŠ‚θ―·ε‚ι˜…δ½ŽεŽ‹η« θŠ‚δΈ­ε…³δΊŽ&bδΊ€ζ΅ε‘η”΅ζœΊ&rηš„δ»»εŠ‘θ―΄ζ˜Žγ€‚οΌ‰", "quests.gregtech_energy.lv_generator.desc.4": "&e3.η”Ÿη‰©ζŸ΄ζ²Ήε‘η”΅οΌˆTFG独占)&r:\n\nζ²Ήθœη±½ε’Œε‘ζ—₯θ‘΅ε―εŠ ε·₯δΊ§ε‡Ίε€§ι‡η§ε­ζ²Ήγ€‚ε°†ε…ΆδΈŽTFCι…’η²Ύζ··εˆε³ε―εˆΆζˆη”Ÿη‰©ζŸ΄ζ²Ήγ€‚\n\nθ―₯ζ–Ήζ³•ηœ‹δΌΌε€ζ‚οΌŒδ½†η”Ÿη‰©ζŸ΄ζ²Ήεœ¨&7LV&rε’Œ&bMV&r阢ζ΅ζ•ˆθƒ½ζžι«˜γ€‚εŽζœŸδ½Ώη”¨&eι«˜εε…­ηƒ·ε€ΌζŸ΄ζ²Ή&rεŽοΌŒη”šθ‡³ε―εΉ³η¨³θΏ‡ζΈ‘θ‡³&5EV&r阢ζ΅γ€‚\n\nδ½Ώη”¨η”Ÿη‰©ζŸ΄ζ²Ήιœ€ι…ε€‡&7δ½ŽεŽ‹ε†…η‡ƒε‘η”΅ζœΊ&rγ€‚θ™½η„Άζˆζœ¬η•₯ι«˜οΌŒδ½†ζ―mBη”Ÿη‰©ζŸ΄ζ²Ήιƒ½θƒ½δΊ§η”Ÿε€§ι‡EUοΌŒζ›΄δΎΏδΊŽθΏθΎ“ε’Œε‚¨ε­˜γ€‚\n\nθƒ½ζΊη”ŸδΊ§δΉ‹θ·―ε¦‚δ½•εΌ€ε―οΌŒεŒε…¨η”±δ½ ε†³εšγ€‚", + "quests.gregtech_energy.lv_generator.desc.5": "&e4. εˆζˆζ°”ε‘η”΅οΌˆTFG独占)&r:\n\nε€ŸεŠ©&6焦炉&r与&6ηœŸη©Ίθ…”ε€&rοΌŒδ½ ε―εœ¨ζΈΈζˆε‰ζœŸθŽ·εΎ—θΏ™η§ζ°”δ½“η‡ƒζ–™γ€‚εƒεΉΆιžζœ€εΌΊηš„ι€‰ζ‹©οΌŒδ½†θ‹₯δ½ εΈŒζœ›ι΅εΎͺ&e纯气体燃料路线&r,εƒε·²θΆ³ε€Ÿδ½Ώη”¨γ€‚δΈΊθŽ·εΎ—ζœ€δ½³ζ•ˆηŽ‡οΌŒεΌΊηƒˆζŽ¨θζ­ε»ΊεŸΊδΊŽ&6ζœΊζ’°εŠ¨εŠ›&rηš„θ‡ͺεŠ¨εŒ–ζ ‘εœΊγ€‚", "quests.gregtech_energy.lv_generator.task": "任何LVε‘η”΅ζœΊ", "quests.gregtech_energy.mv_generator.title": "MVε‘η”΅ζœΊ", "quests.gregtech_energy.mv_generator.subtitle": "εŸΊζœ¬δΈŠε’ŒLVηš„δΈ€ζ ·", @@ -1949,9 +2516,35 @@ "quests.gregtech_energy.lpt_fuel.task": "ζˆ‘δΈζƒ³εšδΈ€ζ‘Άη­‰η¦»ε­δ½“", "quests.gregtech_energy.lgt_fuel.title": "气体燃料", "quests.gregtech_energy.lgt_fuel.subtitle": "每δΈͺδΊΊηš„ζœ€ηˆ±", - "quests.gregtech_energy.lgt_fuel.desc.1": "ε½“ζˆ‘δ»¬θ°ˆεŠζ°”δ½“η‡ƒζ–™ζ—ΆοΌŒζˆ‘δ»¬εžι™…δΈŠεͺθ°ˆδΈ€η§β€”β€”&eη‘εŸΊθ‹―&r。\n\n你在达到&6HV&r阢ζ΅εŽε³ε―η”ŸδΊ§εƒγ€‚ε¦‚ζžœδ½ θ‘εˆ’δ½Ώη”¨ε€§εž‹η‡ƒζ°”ζΆ‘θ½ζœΊοΌŒζˆ‘们&aεΌΊηƒˆζŽ¨θ&r使用这种燃料。\n\nεœ¨θƒ½ε€Ÿη”ŸδΊ§η‘εŸΊθ‹―δΉ‹ε‰οΌŒ&eθ‹―&rζ˜―δΈ€δΈͺδΈι”™ηš„θ΅·ζ­₯选择。你可δ»₯ι€šθΏ‡ζ ‘εœΊθŽ·ε–εƒοΌŒζˆ–θ€…οΌŒε¦‚ζžœδ½ θΆ³ε€ŸεΉΈθΏι™„θΏ‘ζœ‰ι‡ζ²Ήηš„θ―οΌŒδΉŸε―δ»₯ι€šθΏ‡ε€„η†ι‡ζ²Ήζ₯θŽ·εΎ—γ€‚", - "quests.gregtech_energy.lgt_fuel.desc.2": "εˆΆι€ η‘εŸΊθ‹―ζΆ‰εŠε€šδΈͺζ­₯ιͺ€β€”β€”δ½†ε½“δ½ ι€ ε‡Ίη¬¬δΈ€ε°ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ(LCR)εŽοΌŒε°±θƒ½θ·³θΏ‡θΈε€šδΈ­ι—΄ηŽ―θŠ‚οΌŒε€§εΉ…η€εŒ–桁程。\n\nε…ΆεžεΉΆδΈε€ζ‚οΌšε°†ζ°’气、ζ°ζ°”ε’Œζ°§ζ°”η»“εˆοΌŒε³ε―ζ— ι™εˆΆεœ°η”ŸδΊ§&e瑝酸&rγ€‚θ‡³δΊŽη‘«ι…ΈοΌŒδ½ ε€§ζ¦‚ε·²η»ηŸ₯道εƒεͺιœ€η‘«ε’Œζ°΄ε°±θƒ½εˆΆε€‡β€”β€”ε―Ήε§οΌŸ\n\nδΈ€ζ—¦δ½ ε»Ίη«‹θ΅·θΏ™ζ‘η”ŸδΊ§ι“ΎοΌŒη‘εŸΊθ‹―ε°±δΌšζˆδΈΊζ°”δ½“η‡ƒηƒ§ηš„ι‘ΆηΊ§η‡ƒζ–™δΉ‹δΈ€γ€‚", + "quests.gregtech_energy.lgt_fuel.desc.1": "ζ‰€ζœ‰θΏ™δΊ›η‡ƒζ–™ιƒ½η”¨δΊŽ&2燃气θ½ζœΊ&rβ€”β€”ζ­€ε€„ζŒ‰ζ•ˆηŽ‡δ»Žδ½Žεˆ°ι«˜ζŽ’εΊγ€‚\n\n&b燃气θ½ζœΊ&rζ€»δ½“ζ―”ε…ΆεŒη±»&bε†…η‡ƒζœΊ&r稍便εœοΌŒδ½†&e气体燃料&rηš„θƒ½ι‡ε―†εΊ¦δΉŸδ½ŽδΊŽη‡ƒηƒ§η‡ƒζ–™γ€‚θΏ™εΉΆδΈζ„ε‘³η€εƒδ»¬ζ›΄ε·β€”β€”εͺζ˜―δ½ ιœ€θ¦ζ›΄ε€šζ―«ζ‘ΆοΌˆmBοΌ‰ζ‰θƒ½θΎΎεˆ°η›ΈεŒηš„θΎ“ε‡Ίγ€‚εœ¨θΏ›η¨‹εŽζœŸοΌŒεƒδ»¬ε―η”¨εœ¨&2ε€§εž‹η‡ƒζ°”ζΆ‘θ½&rι‡ŒοΌŒθΏ™ζ˜―δΈ€δΈͺιžεΈΈεΌΊε€§ηš„ε€šζ–Ήε—η»“ζž„οΌŒιœ€θ¦η¨ε€šδΈ€δΊ›η‘理。", + "quests.gregtech_energy.lgt_fuel.desc.2": "在TFGζ•΄εˆεŒ…δΈ­οΌŒ&e气体燃料&rε·²εΎ—εˆ°εΉΏζ³›ι‡ζ–°εΉ³θ‘‘γ€‚&6ζˆ‘δ»¬δΈε»Ίθ依衖&eθ‹―&rζˆ–&eη‘εŸΊθ‹―&rοΌŒε› δΈΊεƒδ»¬ε·²θ’«ε€§εΉ…ε‰ŠεΌ±γ€‚&r在&7LV&rεˆζœŸοΌŒε¦‚ζžœδ½ ζƒ³θ¦εŠ ε·₯ζ²Ήη ‚οΌŒζˆ‘δ»¬ε»Ίθ使用&eεˆζˆζ°”&rζˆ–&eζΆ²εŒ–ηŸ³ζ²Ήζ°”&rγ€‚δΉ‹εŽοΌŒδ½ ε―δ»₯在&bMV&r阢ζ΅ε‡ηΊ§δΈΊ&e重整气&rοΌŒεΉΆεœ¨θ§£ι”&2θ£‚εŒ–ζœΊ&rεŽθΏ›δΈ€ζ­₯提升兢产量。", "quests.gregtech_energy.lgt_fuel.task": "ζ‘Άθ£…η‡ƒζ°”οΌŸ", + "quests.gregtech_energy.syngas.title": "εˆζˆζ°”", + "quests.gregtech_energy.syngas.subtitle": "ζˆ‘εœ¨LV阢ζ΅ε°±θƒ½θŽ·εΎ—ζ°”δ½“η‡ƒζ–™δΊ†οΌŸ", + "quests.gregtech_energy.syngas.desc": "&eεˆζˆζ°”&rζ˜―δΈ€η§ζ–°ηš„TFG气体燃料。你可δ»₯在&8ULV&r阢ζ΅εΎˆζ—©θ§£ι”εƒοΌŒεΉΆεœ¨&7LV&r阢ζ΅η”¨δΊŽδ½ ηš„ι¦–ζ‰Ή&6燃气θ½ζœΊ&r中。εƒεΉΆιžη‰Ήεˆ«εΌΊζ•ˆηš„η‡ƒζ–™οΌŒδ½†ε―δ»₯θ½¬εŒ–δΈΊζœ‰δ»·ε€Όηš„ε‰―δΊ§ε“οΌŒδΎ‹ε¦‚&e梦滑剂&r、&eη”²ηƒ·&rε’Œ&eζ°’ζ°”&r。\n\nε°½η‘εƒδΈζ˜―ζœ€εΌΊε€§ηš„ι€‰ζ‹©δΈ”ιšΎδ»₯θ§„ζ¨‘εŒ–η”ŸδΊ§οΌŒδ½†δ»…ιœ€δΈ‰εΊ§&6焦炉&rε’ŒδΈ€ε°&6ι…Ώι€ ε€&rζˆ–&6ηœŸη©Ίθ…”ε€&rοΌŒδ½ ε°±θƒ½η¨³εšδΎ›εΊ”οΌŒθΏ™θΆ³δ»₯ζ”―ζ’‘δ½ εˆ°θΎΎ&bMV&r阢ζ΅εΉΆθ§£ι”ζ›΄εΌΊε€§ηš„&e重整气&r。", + "quests.gregtech_energy.reformate_gas.title": "重整气", + "quests.gregtech_energy.reformate_gas.subtitle": "θΏ™ζ˜―ι‡ζ•΄εŽηš„θ‹―ε—οΌŸ", + "quests.gregtech_energy.reformate_gas.desc.1": "&9重整气&rζ˜―δΈ€η§εΌΊε€§δΈ”ζ–°ηš„ζ°”δ½“η‡ƒζ–™οΌŒεœ¨&bMV&r阢ζ΅ζ‰Ώζ‹…δΊ†ι€šεΈΈη”±θ‹―ζ‰ζΌ”ηš„θ§’θ‰²γ€‚\n\nθ¦η”ŸδΊ§εƒοΌŒδ½ ιœ€θ¦ε»Ίι€ δΈ€εΊ§&6ζΆ²εŒ–ε‘”&rοΌŒεΉΆδ»Žδ»…ε­˜εœ¨δΊŽεΉ²η‡₯η‚Žηƒ­ζ°”ε€™ηš„&6ε‘”εŸΊε‰ηŸΏ&rηŸΏθ„‰δΈ­θŽ·ε–δΈ€δΊ›&5ι“Ό&r。一座&6热解炉&rβ€”β€”δΈ€εΊ§η”ŸδΊ§ζ‚ι…šζ²ΉοΌŒε¦δΈ€εΊ§η”ŸδΊ§ζœ¨η„¦ζ²Ήβ€”β€”ε°†ζδΎ›η”ŸδΊ§θΏ™η§η‡ƒζ–™ζ‰€ιœ€ηš„ε…¨ιƒ¨ζζ–™γ€‚ε¦‚ζžœδ½ ζƒ³η€εŒ–θΎη½οΌŒθ―·θ°δ½ε―δ»₯用&6ζ΅δ½“εŠ ηƒ­ε™¨&rζ₯η”ŸδΊ§θ’Έζ±½γ€‚", + "quests.gregtech_energy.reformate_gas.desc.2": "εŒζ ·ι‡θ¦ηš„ζ˜―οΌŒιœ€θ¦θ€ƒθ™‘εœ¨&6HV&r阢ζ΅δ½Ώη”¨&6θ£‚εŒ–ζœΊ&rζ—Άε―θŽ·εΎ—ηš„ζε‡δΊ§ηŽ‡γ€‚θΏ™ε°†δ½Ώδ½ θƒ½ε€ŸεΎͺηŽ―εˆ©η”¨η»ε€§ιƒ¨εˆ†ηš„&5ι“Ό&rοΌŒδ½Ώι‡ζ•΄ζ°”εžθ΄¨δΈŠζˆδΈΊδΈ€η§ζŽ₯θΏ‘ζ— ι™ηš„η‡ƒζ–™γ€‚\n\nεœ¨ζ­€ζ΅η¨‹δΈ­ζ·»εŠ &9ζ°ζ°”&rε’Œ&9ζ°’ζ°”&rοΌŒε°†θΏ›δΈ€ζ­₯ε’žεΌΊδ½ ηš„η”ŸδΊ§εžει‡γ€‚", + "quests.gregtech_energy.btx.title": "θŠ³ηƒƒη‡ƒζ–™", + "quests.gregtech_energy.btx.subtitle": "εΉΆιžιŸ©ε›½η”·ε›’", + "quests.gregtech_energy.btx.desc": "θŽ·εΎ—&5EV能源仓&rζ„ε‘³η€δ½ η»ˆδΊŽε―δ»₯启动&eθŠ³ηƒƒη‡ƒζ–™&rοΌˆθ‹―γ€η”²θ‹―γ€δΊŒη”²θ‹―ηš„ζ··εˆη‰©οΌŒη€η§°BTXοΌ‰ηš„η”ŸδΊ§γ€‚θΏ™η§η‡ƒζ–™ε°†δΈΊδ½ ζœεŠ‘εΎˆι•ΏδΈ€ζ΅ζ—Άι—΄οΌŒεΉΆδΈ”ε³δΎΏεœ¨ζΈΈζˆεŽζœŸοΌŒδΊŽ&6ε€§εž‹ζΆ‘θ½ζœΊ&rδΈ­δ»η„ΆδΏζŒη«žδΊ‰εŠ›γ€‚θ™½η„Άεˆηœ‹δΉ‹δΈ‹θΏ™εƒζ˜―δΈ€ι‘Ήζ΅©ε€§ηš„ε·₯η¨‹οΌŒδ½†θ―·ζ”ΎεΏƒοΌŒδ»˜ε‡Ίηš„εŠͺεŠ›ε°†ζ˜―εŒε…¨ε€ΌεΎ—ηš„γ€‚\n\nθΏ™ζ‘η”ŸδΊ§ηΊΏιœ€θ¦ε€§ι‡ηš„ζœ¨ζεˆΆε“γ€‚η”±δΊŽε―Ή&eθƒΆζ°΄&rηš„ιœ€ζ±‚οΌŒζ ‘θ„‚ε†ζ¬‘ε˜εΎ—ι‡θ¦β€”β€”δ½ ε―δ»₯ι€‰ζ‹©θ’«εŠ¨ι‡‡ι›†ζ ‘ζΆ²οΌŒζˆ–θ€…η›΄ζŽ₯δ»ŽεŽŸζœ¨δΈ­ζε–γ€‚δ½ θΏ˜ιœ€θ¦εœ¨&6蒸馏呔&rδΈ­εˆ†ι¦&eζœ¨η„¦ζ²Ή&rγ€‚ι™€ζ­€δΉ‹ε€–οΌŒθ―·η‘δΏδ½ θƒ½ζ— ι™ι‡η”ŸδΊ§&e乙醇&r、&eδΈ‹η•ŒηŸ³θ‹±&r、&eι’ &r、&eζ°¨&r、&eη’±&rε’Œ&eεΌΊεŒ–ηŽ―ζ°§ζ ‘θ„‚ζΏ&r。\n\nε¦‚ζžœδ½ ζƒ³δΊ†θ§£θŠ³ηƒƒη‡ƒζ–™η”ŸδΊ§ι“Ύζ›΄θ―¦η»†ηš„εˆ†ζžοΌŒθ―·ε‚ι˜…&5EV&rη« θŠ‚γ€‚", + "quests.gregtech_energy.fission_rod.title": "θ£‚ε˜η‡ƒζ–™", + "quests.gregtech_energy.fission_rod.subtitle": "别θ©ζˆ‘θΏ‡ηƒ­δΊ†", + "quests.gregtech_energy.fission_rod.desc.1": "εœ°ηƒθ£‚ε˜ζζ–™ε°šζœͺεžθ£…οΌŒδ½†ζˆ–θΈε³ε°†εˆ°ζ₯", + "quests.gregtech_energy.fission_rod.desc.2": "", + "quests.gregtech_energy.fission_rod.task": "", + "quests.gregtech_energy.smr.title": "ε°εž‹ζ¨‘ε—εŒ–εεΊ”ε †", + "quests.gregtech_energy.smr.subtitle": "δΈΊι₯θΏœε‰ε“¨η«™δΎ›θƒ½", + "quests.gregtech_energy.smr.desc.1": "ε°εž‹ζ¨‘ε—εŒ–εεΊ”ε †ε°šζœͺεžθ£…οΌŒδ½†ζˆ–θΈε³ε°†εˆ°ζ₯", + "quests.gregtech_energy.smr.desc.2": "", + "quests.gregtech_energy.smr.task": "", + "quests.gregtech_energy.gasoline.title": "ζ±½ζ²Ή", + "quests.gregtech_energy.gasoline.subtitle": "δΈ­ι—΄ζ‘£δ½ηš„ι€‰ζ‹©", + "quests.gregtech_energy.gasoline.desc": "&aζ±½ζ²Ή&rζ˜―δΈ€η§εœ¨&6HV&r阢ζ΅θ§£ι”ηš„εΌΊεŠ›η‡ƒζ–™οΌŒδ½†εžι™…δΈŠι€šεΈΈζ˜―εœ¨ε»Ίι€ η¬¬δΈ€εΊ§&6εˆ†ι¦ε‘”&rεŽζ‰εΌ€ε§‹η”ŸδΊ§γ€‚&7η”²θ‹―&rε―θ½»ζ˜“δ»Ž&7ζœ¨η„¦ζ²Ή&rζˆ–&7重燃油&rδΈ­εˆΆεΎ—οΌŒε…Άδ»–ζ‰€ιœ€εŽŸζ–™εˆ™δΈΊ&dη‚ΌεŽ‚ζ°”&r、&eηŸ³θ„‘ζ²Ή&rδ»₯及&3ζ°§ζ°”&r、&bζ°’ζ°”&rε’Œ&1η’³&rηš„ζ··εˆη‰©γ€‚\n\nεƒεΌΊεΊ¦ι«˜οΌŒεˆΆδ½œη›Έε½“η€δΎΏοΌŒζ›΄ε¦™ηš„ζ˜―θΏ˜θƒ½ε‡ηΊ§δΈΊ&cι«˜ζ ‡ε·ζ±½ζ²Ή&r。", + "quests.gregtech_energy.high_gasoline.title": "ι«˜θΎ›ηƒ·ε€Όζ±½ζ²Ή", + "quests.gregtech_energy.high_gasoline.subtitle": "εŠ¨εŠ›ζΎŽζΉƒ", + "quests.gregtech_energy.high_gasoline.desc": "作为&cζ±½ζ²Ή&rηš„η›΄ζŽ₯ε‡ηΊ§η‰ˆοΌŒθΏ™ζ˜―&5η‡ƒζ–™ζ•ˆθƒ½ηΏ»ε€&rηš„εΌΊεŒ–εž‹ε·γ€‚θ™½ε…Άεη§°ζœͺζ˜Žη€ΊοΌŒδ½†δ½ δΈδ»…ιœ€θ¦ζ·»εŠ &dθΎ›ηƒ·&rοΌŒθΏ˜ιœ€εŠ ε…₯ε…Άδ»–ζ₯θ‡ͺ&7ηŸ³ζ²ΉεŒ–ε·₯&rηš„εŽŸζ–™γ€‚θ‡³ζ­€οΌŒζˆ‘δ»¬ζœŸζœ›δ½ ε·²θƒ½η†Ÿη»ƒθΏη”¨&bEMI&rοΌŒεΉΆεΌ€ε§‹εˆΆε€‡θΏ™η§ζ€§θƒ½ζƒŠδΊΊηš„εΌΊεŠ›η‡ƒζ–™γ€‚", "quests.gregtech_energy.lst_fuel.title": "θΏ™ζ˜―θ’Έζ±½", "quests.gregtech_energy.lst_fuel.subtitle": "ζ²‘δ»€δΉˆι€‰ζ‹©δ½™εœ°", "quests.gregtech_energy.lst_fuel.desc": "蒸汽幢不倍杂——εͺιœ€ηƒ§ζ°΄γ€‚\n\nθ¦ι«˜ζ•ˆεœ°εžηŽ°θΏ™δΈ€η‚ΉοΌŒζˆ‘δ»¬ζŽ¨θδ½Ώη”¨&6ε€§εž‹ι”…η‚‰&rγ€‚ε…±ζœ‰ε››η§η‰ˆζœ¬οΌšεˆ†εˆ«ε―ΉεΊ”&8ULV&r、&bMV&r、&5EV&rε’Œ&1IV&r阢ζ΅γ€‚每δΈͺη­‰ηΊ§ιƒ½θƒ½ζ˜Ύθ‘—ζε‡θ’Έζ±½δΊ§ι‡γ€‚\n\nδ½†θ¦ζ³¨ζ„οΌšδΈŽε…Άδ»–ε‘η”΅ζ–ΉεΌη›Έζ―”οΌŒ&dε€§εž‹θ’Έζ±½ζΆ‘θ½&rι…εˆθΏ™δΊ›ι”…η‚‰ηš„ζ‰©ε±•ζ€§εΉΆδΈη†ζƒ³γ€‚\n\nε€§ε€šζ•°ηŽ©εΆδΌšθ·³θΏ‡ι’›ε’Œι’¨ι’’锅炉——εƒδ»¬η‘εžε­˜εœ¨οΌŒδ½†δΈε€ΌεΎ—ε»Ίι€ γ€‚θ’Έζ±½η³»η»Ÿηš„ζ‰©ε±•θƒ½εŠ›η‘εžζœ‰ι™οΌ\n\n温馨提瀺:&e2mB&rθ’Έζ±½=&e1EU&rη”΅εŠ›γ€‚", @@ -1959,11 +2552,11 @@ "quests.gregtech_energy.lst_fuel.task.1": "ε€§εž‹ι”…η‚‰", "quests.gregtech_energy.lce_fuel.title": "梲体燃料", "quests.gregtech_energy.lce_fuel.subtitle": "ζ±‘ζŸ“θ€…ηš„ζœ€ηˆ±", - "quests.gregtech_energy.lce_fuel.desc.1": "ζ‰€ζœ‰θΏ™δΊ›η‡ƒζ–™ε‡η”¨δΊŽ&6ε†…η‡ƒε‘η”΅ζœΊ&rβ€”β€”ζ­€ε€„ζŒ‰ζ•ˆηŽ‡δ»Žδ½Žεˆ°ι«˜ζŽ’εˆ—γ€‚\n\n在&bMV&r阢ζ΅οΌŒζˆ‘们建θδ»ŽζŸ΄ζ²Ήζˆ–η”Ÿη‰©ζŸ΄ζ²Ήθ΅·ζ­₯γ€‚εΎ…ε‘ε±•εˆ°&6HV&r阢ζ΅εŽοΌŒε―ι€šθΏ‡ε°†ζŸ΄ζ²ΉδΈŽζ°ζ°”γ€ζ°’ζ°”εŠζ°§ζ°”ζ··εˆοΌŒε‡ηΊ§δ½Ώη”¨&6ι«˜εε…­ηƒ·ε€ΌζŸ΄ζ²Ή&r。", + "quests.gregtech_energy.lce_fuel.desc.1": "ζ‰€ζœ‰θΏ™δΊ›η‡ƒζ–™ε‡η”¨δΊŽ&6ε†…η‡ƒε‘η”΅ζœΊ&rβ€”β€”ζ­€ε€„ζŒ‰ζ•ˆηŽ‡δ»Žδ½Žεˆ°ι«˜ζŽ’εˆ—γ€‚\n\nεœ¨ζΈΈζˆζ—©ζœŸι˜Άζ΅οΌŒζˆ‘们建θδ»ŽζŸ΄ζ²Ήζˆ–η”Ÿη‰©ζŸ΄ζ²Ήθ΅·ζ­₯γ€‚εΎ…ε‘ε±•εˆ°&6HV&r阢ζ΅εŽοΌŒε―ι€šθΏ‡ε°†ζŸ΄ζ²ΉδΈŽζ°ζ°”γ€ζ°’ζ°”εŠζ°§ζ°”ζ··εˆοΌŒε‡ηΊ§δ½Ώη”¨&6ι«˜εε…­ηƒ·ε€ΌζŸ΄ζ²Ή&r。", "quests.gregtech_energy.lce_fuel.desc.2": "ε½“δ½ θΎΎεˆ°&5EV&r阢ζ΅εΉΆε»Ίι€ &6蒸馏呔&r后,就可δ»₯θ½¬θ€Œδ½Ώη”¨ζ±½ζ²Ήε’Œι«˜θΎ›ηƒ·ε€Όζ±½ζ²ΉδΊ†γ€‚εˆ‡ε‹ΏθΏ‡ζ—©ε°θ―•β€”β€”ζ²Ήη±»ιœ€θ¦θ’«ε¦₯ε–„εˆ†ι¦οΌŒδ½Ώη”¨ζ™ι€šθ’Έι¦ε€ζ₯ε€„η†ζ˜―ζžδΈη»ζ΅Žηš„γ€‚\n\nδΈΊζ­€οΌŒδ½ ιœ€θ¦η»“εˆεŽŸζ²Ήεˆ†ι¦δΈŽδΈ€δΊ›ζœ‰ζœΊεŒ–εˆη‰©εŠ ε·₯γ€‚ζ‰€εΉΈοΌŒδΈ€ε°ηƒ­θ§£η‚‰ε’ŒδΈ€εΊ§θ’Έι¦ε‘”ε³ε―ζ΅η•…εœ°ε€„η†ε…¨ιƒ¨ζ΅η¨‹γ€‚\n\nε¦‚ζžœδ½ θƒ½η¨³εšδΎ›εΊ”ι«˜θΎ›ηƒ·ε€Όζ±½ζ²ΉοΌŒδ»…ι ε†…η‡ƒε‘η”΅ζœΊε°±θΆ³δ»₯εŒζˆζ•΄δΈͺζ•΄εˆεŒ…ηš„θΏ›η¨‹γ€‚", - "quests.gregtech_energy.lce_fuel.task": "ζˆ‘θΆ³ε€ŸδΊ†", + "quests.gregtech_energy.lce_fuel.task": "ζˆ‘ιƒ½ζ‡‚δΊ†", "quests.gregtech_energy.large_solar.subtitle": "ε·¨ε€§ηš„η€ζ˜“能源", - "quests.gregtech_energy.large_solar.desc.1": "θ‹₯δ½ θ‘εˆ’εœ¨ζœˆηƒδΈŠε»Ίη«‹ζ›΄ε€§εž‹ηš„εŸΊεœ°οΌŒε€§εž‹ε€ͺι˜³θƒ½ι˜΅εˆ—MK Iε°†ζ˜―δ½ ηš„δΈδΊŒδΉ‹ι€‰γ€‚\n\nεƒε―ΉδΊŽ&bAE2&rθ‡ͺεŠ¨εŒ–ε€„η†ζ΅ζ°΄ηΊΏε°€ε…Άζœ‰η”¨οΌŒεŒζ—ΆδΉŸθƒ½δΈΊδ½ ηš„εŸΊε²©ηŸΏζœΊζδΎ›η”΅εŠ›γ€‚\n\nεˆ«εΏ˜δΊ†οΌŒδ½ ε―δ»₯δ½Ώη”¨ζ Όι›·η§‘ζŠ€η»ˆη«―οΌŒι€šθΏ‡ζ½œθ‘Œε³ι”η‚Ήε‡»ζŽ§εˆΆε™¨οΌŒζ₯ηž¬ι—΄ζ­ε»ΊθΏ™δΈͺε€šζ–Ήε—η»“ζž„γ€‚\n\nεͺιœ€ε°†ιΌ ζ ‡ζŒ‡ε‘ζŽ§εˆΆε™¨εΉΆζŒ‰&eU&rι”οΌŒε³ε―ζŸ₯ηœ‹ε―η”¨ηš„εˆζˆι…ζ–Ήγ€‚", + "quests.gregtech_energy.large_solar.desc.1": "θ‹₯δ½ θ‘εˆ’εœ¨ζœˆηƒδΈŠε»Ίη«‹ζ›΄ε€§εž‹ηš„εŸΊεœ°οΌŒε€§εž‹ε€ͺι˜³θƒ½ι˜΅εˆ—MK Iε°†ζ˜―δ½ ηš„δΈδΊŒδΉ‹ι€‰γ€‚\n\nεƒε―ΉδΊŽ&bAE2&rθ‡ͺεŠ¨εŒ–ε€„η†ζ΅ζ°΄ηΊΏε°€ε…Άζœ‰η”¨οΌŒεŒζ—ΆδΉŸθƒ½δΈΊδ½ ηš„ζœˆε£€ι‡‡ι›†ε™¨ζδΎ›η”΅εŠ›γ€‚\n\nεˆ«εΏ˜δΊ†οΌŒδ½ ε―δ»₯δ½Ώη”¨ζ Όι›·η§‘ζŠ€η»ˆη«―οΌŒι€šθΏ‡ζ½œθ‘Œε³ι”η‚Ήε‡»ζŽ§εˆΆε™¨οΌŒζ₯ηž¬ι—΄ζ­ε»ΊθΏ™δΈͺε€šζ–Ήε—η»“ζž„γ€‚\n\nεͺιœ€ε°†ιΌ ζ ‡ζŒ‡ε‘ζŽ§εˆΆε™¨εΉΆζŒ‰&eU&rι”οΌŒε³ε―ζŸ₯ηœ‹ε―η”¨ηš„εˆζˆι…ζ–Ήγ€‚", "quests.gregtech_energy.large_solar.desc.2": "&6ε€§εž‹ε€ͺι˜³θƒ½ι˜΅εˆ—MKI&rζ‹₯ζœ‰&92η§δΈεŒηš„ε·₯作樑式&r:\n\n&9β€’θ’«εŠ¨ζ¨‘εΌ&rβ€”\nθ―₯ζ¨‘εΌδΌšηΌ“ζ…’ζΆˆθ€—&d光伏板&r。这意味着θ‹₯δ½ δΈ€ζ¬‘ζ€§ζŠ•ε…₯δΈ€η»„ε…‰δΌζΏοΌŒεœ¨εŸΊεœ°ε»ΊθΎι˜Άζ΅ε°šε―η»΄ζŒοΌŒδ½†ζ— ζ³•ζ°ΈδΉ…θΏθ‘Œγ€‚θ―₯ζ¨‘εΌδ»…εœ¨η™½ε€©δΊ§η”Ÿ&62AHV&rηš„η”΅ζ΅β€”β€”θΆ³δ»₯ζ”―ζ’‘εŸΊη‘€η³»η»ŸθΏθ½¬οΌŒδ½†θΏœιžζœ€δΌ˜θ§£γ€‚\n\n&9β€’δΈ»εŠ¨ζ¨‘εΌ&rβ€”\nθ‹₯想&aζœ€ε€§εŒ–θƒ½ι‡δΊ§ε‡Ί&rοΌŒεˆ™ιœ€η‘η†ε†·ε΄ε‰‚γ€‚θΏ™ε°†θ¦ζ±‚δ½ ηš„ζœˆηƒεŸΊεœ°ε…·ε€‡ζ›΄εŒε–„ηš„θΎζ–½οΌŒδ½†ε›žζŠ₯ζ˜―ε―θŽ·εΎ—&52AEV&rηš„η”΅ζ΅οΌ\n\nε¦ζœ‰ι’ˆε―Ήζ›΄ι«˜ι˜Άιœ€ζ±‚ηš„MKII与MKIIIη‰ˆζœ¬οΌŒιœ€δ½Ώη”¨ζ›΄ε…ˆθΏ›ηš„ε†·ε΄ε‰‚γ€‚", "quests.gregtech_energy.large_solar_t2.subtitle": "η”šθ‡³ζ›΄εΌΊ", "quests.gregtech_energy.large_solar_t2.desc.1": "θ‹₯δ½ εœ¨ζœˆηƒδΈŠε»Ίι€ &dAE2基地&rοΌŒεΎˆε―θƒ½δΌšιœ€θ¦ζ›΄ε€šθƒ½ζΊγ€‚θΏ™ζ—ΆοΌŒ&6ε€§εž‹ε€ͺι˜³θƒ½ι˜΅εˆ—MK II&rδΎΏθƒ½ζ΄ΎδΈŠη”¨εœΊοΌ\n\nδΈŽε…Άε‰δ»£MK IδΈ€ζ ·οΌŒεƒζδΎ›δΈ€η§εˆζˆι…ζ–Ήβ€”β€”δ½†θΏ™δΈ€ζ¬‘οΌŒδΈ€η§ι…ζ–Ήιƒ½εΉΆιžεŒε…¨θ’«εŠ¨γ€‚", @@ -1971,7 +2564,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三级火η­&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εƒδ»¬εœ¨η™½ε€©δΊ§η”Ÿ32EU/tοΌŒδ½†θ―·θ°δ½εƒδ»¬εžι™…δΈŠδΊ§η”ŸRFοΌŒζ‰€δ»₯δ½ ιœ€θ¦δΈ€δΈͺθ½¬ζ’ε™¨ε°†ε…Άθ½¬εŒ–δΈΊEU。\n\n你可δ»₯使用一δΈͺ&bMV转捒器&rζœ€ε€šζ”―ζŒ2δΈͺε€ͺι˜³θƒ½η”΅ζ± ζΏοΌŒζˆ–θ€…δΈ€δΈͺ&6HV转捒器&rζœ€ε€šζ”―ζŒ4δΈͺε€ͺι˜³θƒ½η”΅ζ± ζΏγ€‚", + "quests.gregtech_energy.solar_panel.desc": "ε€ͺι˜³θƒ½η”΅ζ± ζΏε°†ζ˜―δ½ εœ¨ζœˆηƒδΈŠηš„η¬¬δΈ€δΈͺ能源ζ₯源。\n\nεƒδ»¬εœ¨η™½ε€©δΊ§η”Ÿ32EU/tοΌŒδ½†θ―·θ°δ½εƒδ»¬εžι™…δΈŠδΊ§η”ŸFEοΌŒζ‰€δ»₯δ½ ιœ€θ¦δΈ€δΈͺθ½¬ζ’ε™¨ε°†ε…Άθ½¬εŒ–δΈΊEU。\n\nδΈ€δΈͺ&bMV转捒器&r可δ»₯ζœ€ε€šζ”―ζŒ4δΈͺε€ͺι˜³θƒ½η”΅ζ± ζΏγ€‚", "quests.gregtech_energy.storage.title": "ε‚¨ε­˜θƒ½ζΊ", "quests.gregtech_energy.storage.subtitle": "εΎ—ζŠŠζ‰€ζœ‰θΏ™δΊ›θƒ½ι‡ε­˜εœ¨ζŸδΊ›εœ°ζ–Ή", "quests.gregtech_energy.storage.desc": "εœ¨ζ Όι›·η§‘ζŠ€δΈ­οΌŒε‚¨θƒ½ζ˜―η”΅εŠ›η³»η»Ÿζœ€ζ ΈεΏƒηš„εŸΊηŸ³δΉ‹δΈ€γ€‚\n\nδΈΊδ½•ε¦‚ζ­€οΌŸεΎˆη€ε•οΌšε½“δ½ θΏ›θ‘Œε€§εž‹εˆζˆζ—Άβ€”β€”ε°€ε…Άζ˜―εœ¨ζΈΈζˆεŽζœŸβ€”β€”ε³δ½Ώζ˜―ζœ€εΌΊε€§ηš„ε‘η”΅ζœΊδΉŸε―θƒ½ζ— ζ³•ζ»‘θΆ³ηž¬ζ—Άιœ€ζ±‚γ€‚\n\n为了解决这δΈͺι—ι’˜οΌŒζ Όι›·η§‘ζŠ€ζδΎ›δΊ†ε€šη§ζ–Ήζ‘ˆζ₯ε­˜ε‚¨ζ΅·ι‡ηš„EUθƒ½ι‡γ€‚θΏ™δΊ›ε‚¨θƒ½ε•ε…ƒθƒ½εœ¨δ½ ηš„θƒ½ζΊη”ŸδΊ§η«―δΈŽθΏ›θ‘Œε€ζ‚ζ“δ½œζ—ΆζΆˆθ€—θƒ½ζΊηš„ζœΊε™¨δΉ‹ι—΄οΌŒζ‰ζΌ”ε…³ι”ηš„ηΌ“ε†²θ§’θ‰²γ€‚\n\nζ— θΊδ½ ζ˜―εœ¨δΈΊε―εŠ¨θšε˜εεΊ”ε †γ€ε€§εž‹εŒ–ε­¦εεΊ”ε™¨οΌŒθΏ˜ζ˜―δ»»δ½•HV-IVηΊ§εˆ«ηš„ε€§εž‹εˆζˆι“Ύεšε‡†ε€‡οΌŒιƒ½ιœ€θ¦θΏ™δ»½ι’ε€–ηš„θƒ½ι‡εŽε€‡ζ₯η‘保整δΈͺ系统稳εšθΏθ‘Œγ€‚\n\nεˆ‡ε‹Ώδ½ŽδΌ°δΈ€δΈͺδΌ˜θ΄¨η”΅ζ± η»„ηš„ι‡θ¦ζ€§β€”β€”εƒεΎˆε―θƒ½ε°±ζ˜―εœ¨ε…³ι”ζ—Άεˆ»ζŒ½ζ•‘δ½ εŸΊεœ°δΊŽεœη”΅ε±ζœΊηš„ε…³ι”。", @@ -1990,7 +2583,7 @@ "quests.gregtech_energy.pss.title": "θ“„θƒ½ε˜η”΅η«™", "quests.gregtech_energy.pss.subtitle": "ζŠŠζ‰€ζœ‰ιΈ‘θ›‹ζ”Ύεœ¨δΈ€δΈͺη―ε­ι‡Œ", "quests.gregtech_energy.pss.desc.1": "&dθ“„θƒ½ε˜η”΅η«™&rβ€”β€”δΉŸη§°δΈΊ&dPSS&rβ€”β€”ζ˜―&6η»ˆζžηš„ε―εšεˆΆη”΅ζ± ε€šζ–Ήε—η»“ζž„&rγ€‚ε½“δ½ εœ¨&1IV&r阢ζ΅θƒ½ε€Ÿε»Ίι€ εƒζ—ΆοΌŒεƒδΎΏθƒ½θ½»ζΎζˆδΈΊδ½ εŸΊεœ°ηš„δΈ­ε€δΎ›η”΅ζΊοΌŒε› ζ­€ε€ΌεΎ—δ½œδΈΊι‡η‚Ήε‘ε±•η›ζ ‡γ€‚\n\nεƒηš„θƒ½ι‡ε‚¨ι‡ε¦‚ζ­€εΊžε€§β€¦β€¦ζˆ–θΈιœ€θ¦θ€—ε°½ε‡ θΎˆε­ηš„ζ—Άι—΄ζ‰θƒ½ε°†εƒε‘«ζ»‘。", - "quests.gregtech_energy.pss.desc.2": "&eθΏδ½œεŽŸη†&r:\n-使用&aι•€ι’―ε˜η”΅η«™ζœΊζ’°ε€–ε£³&rζ­ε»Ίη»“ζž„γ€‚\n-至少ε‰θ£…&b1δΈͺ能源仓&rοΌˆθΎ“ε…₯οΌ‰δΈŽ&b1δΈͺεŠ¨εŠ›δ»“&rοΌˆθΎ“ε‡ΊοΌ‰γ€‚\n-εƒζ”―持&aδ»»ζ„η±»εž‹ηš„θΎ“ε…₯δ»“&rβ€”β€”εŒ…ζ‹¬&8εŸΊδΊŽη”΅ζ΅ηš„εΈΈθ§„θΎ“ε…₯&rζˆ–&6ζΏ€ε…‰θΎ“ε…₯&r。\n-&cζ— ηˆ†η‚Έι£Žι™©&rβ€”β€”ε˜εŽ‹ε™¨ε·²&aι›†ζˆ&rδΊŽε†…ιƒ¨γ€‚\n\n&eη”΅εΉε±‚配η½&r:\n-δ½ ε―εœ¨η»“ζž„ι‘Άιƒ¨ε εŠ ζœ€ε€š&d17层&r&9η”΅εΉε—&r。\n-每层必鑻&cεŒε…¨ι“Ίζ»‘&r——不允θΈζœ‰δ»»δ½•空缺。\n-ε―ιšζ„ζ··εˆδ½Ώη”¨&fη©Ίη”΅εΉ&r与&6ζ»‘η”΅εΉ&r。\n\nζ―ε±‚ε‘¨ε›΄ιœ€η”¨&bε€Ήε±‚ηŽ»η’ƒ&rεŒ…θ£Ήγ€‚\n\nθ―΄ηœŸηš„οΌš&cδ½ ζ°ΈθΏœη”¨δΈεˆ°17层&rβ€¦β€¦δΈθΏ‡οΌŒεΏƒζ€€ζ’¦ζƒ³ζ€»ζ˜―ε₯½ηš„。\nε¦‚ζžœδ½ ηœŸηš„ε»ΊζˆδΊ†ζ»‘17ε±‚ηš„θ“„θƒ½ε˜η”΅η«™οΌŒ&lθ―·ι€Ÿζ₯ζ±‚εŠ©&r——你已衰火ε…₯魔。", + "quests.gregtech_energy.pss.desc.2": "&eθΏδ½œεŽŸη†&r:\n-使用&aι•€ι’―ε˜η”΅η«™ζœΊζ’°ε€–ε£³&rζ­ε»Ίη»“ζž„γ€‚\n-至少ε‰θ£…&b1δΈͺ能源仓&rοΌˆθΎ“ε…₯οΌ‰δΈŽ&b1δΈͺεŠ¨εŠ›δ»“&rοΌˆθΎ“ε‡ΊοΌ‰γ€‚\n-εƒζ”―持&aδ»»ζ„η±»εž‹ηš„θΎ“ε…₯δ»“&rβ€”β€”εŒ…ζ‹¬&cεŸΊδΊŽη”΅ζ΅ηš„εΈΈθ§„θΎ“ε…₯&rζˆ–&6ζΏ€ε…‰θΎ“ε…₯&r。\n-&cζ— ηˆ†η‚Έι£Žι™©&rβ€”β€”ε˜εŽ‹ε™¨ε·²&aι›†ζˆ&rδΊŽε†…ιƒ¨γ€‚\n\n&eη”΅εΉε±‚配η½&r:\n-δ½ ε―εœ¨η»“ζž„ι‘Άιƒ¨ε εŠ ζœ€ε€š&d17层&r&9η”΅εΉε—&r。\n-每层必鑻&cεŒε…¨ι“Ίζ»‘&r——不允θΈζœ‰δ»»δ½•空缺。\n-ε―ιšζ„ζ··εˆδ½Ώη”¨&fη©Ίη”΅εΉ&r与&6ζ»‘η”΅εΉ&r。\n\nζ―ε±‚ε‘¨ε›΄ιœ€η”¨&bε€Ήε±‚ηŽ»η’ƒ&rεŒ…θ£Ήγ€‚\n\nθ―΄ηœŸηš„οΌš&cδ½ ζ°ΈθΏœη”¨δΈεˆ°17层&rβ€¦β€¦δΈθΏ‡οΌŒεΏƒζ€€ζ’¦ζƒ³ζ€»ζ˜―ε₯½ηš„。\nε¦‚ζžœδ½ ηœŸηš„ε»ΊζˆδΊ†ζ»‘17ε±‚ηš„θ“„θƒ½ε˜η”΅η«™οΌŒ&lθ―·ι€Ÿζ₯ζ±‚εŠ©&r——你已衰火ε…₯魔。", "quests.gregtech_energy.batteries.title": "θΆ…ηΊ§η”΅ζ± ", "quests.gregtech_energy.batteries.subtitle": "η§‘εΉ»θƒ½ζΊε­˜ε‚¨", "quests.gregtech_energy.batteries.desc": "在&7LV&rε’Œ&bMV&r阢ζ΅οΌŒδ½ ζˆ–θΈε·²η»εˆΆι€ ε‡ΊδΊ†η¬¬δΈ€ζ‰Ήι’ η”΅ζ± ζˆ–锂甡池。\n\n但说εžθ―β€”β€”θΏ™δΊ›ιƒ½ζ˜―ζ Όι›·η§‘ζŠ€δΈ­ζœ€εŸΊη‘€ηš„η”΅ζ± ι…η½γ€‚\n\nεœ¨ζœ¬δ»»εŠ‘δΈ­οΌŒζˆ‘δ»¬ε°†ε…³ζ³¨ζ›΄εΌΊε€§ηš„ζ›Ώδ»£ε“οΌš&aζ°΄ζ™Άη”΅ζ± &r。\nεƒδ»¬ζ€§θƒ½ζ›΄εΌΊγ€ε‚¨θƒ½ε―†εΊ¦ζ›΄ι«˜οΌŒθƒ½εŠ©δ½ ε°†ε·₯εŽ‚ζŽ¨ε‘ζ–°ηš„η­‰ηΊ§γ€‚\n\nεƒδ»¬ζ›΄ζ˜‚θ΄΅ε—οΌŸε½“η„Άγ€‚δ½†δΊ‹εžζ˜―……\nθƒ½ι‡ε³ζ˜―εŠ›ι‡γ€‚θ°θΏ˜εœ¨ζ„δ»£δ»·ε‘’οΌŸ", @@ -1998,15 +2591,15 @@ "quests.gregtech_energy.spending_energy.title": "ζΆˆθ€—θƒ½ζΊ", "quests.gregtech_energy.spending_energy.subtitle": "ε“¦οΌŒδ½ ζ˜―δΌšζΆˆθ€—θƒ½ζΊηš„", "quests.gregtech_energy.spending_energy.desc.1": "ε¦‚δ½•ζΆˆθ€—ζ‰€ζœ‰θΏ™δΊ›θƒ½ζΊοΌŸ\n\nδ½Ώη”¨δ½ ηš„ζœΊε™¨οΌε¬θ΅·ζ₯很η€ε•οΌŒε―Ήε§οΌŸ\n嗯……不εŒε…¨ζ˜―θΏ™ζ ·γ€‚ζœ‰θΈε€šε°η»†θŠ‚δ½ εΊ”θ―₯学习,δ»₯εΈεŠ©δ½ εŒζˆ&3TerraFirmaGreg&rηš„ζ—…η¨‹γ€‚\n\nεŸΊη‘€ζœΊε™¨οΌš\n-θΏ™δΊ›ζœΊε™¨εΎˆη€ε•。\n-εƒδ»¬ζ―δΈͺζœ€ε€šε―δ»₯请求&a2A&r。\n-ε¦‚ζžœδ½ θΎ“ε…₯ζ›΄ι«˜η­‰ηΊ§ηš„θƒ½ζΊβ€¦β€¦&4\uD83D\uDCA5εƒδ»¬δΌšηˆ†η‚Έ&r。\n\nζ Όι›·η§‘ζŠ€ε€šζ–Ήε—η»“ζž„οΌš\nηŽ°εœ¨δΊ‹ζƒ…ε˜εΎ—ζœ‰θΆ£δΊ†γ€‚ε€šζ–Ήε—η»“ζž„ζδΎ›δΊ†ζ›΄ε€šηš„η΅ζ΄»ζ€§ε’ŒεŠ¨εŠ›β€”β€”&eε¦‚ζžœ&rδ½ δΊ†θ§£εƒδ»¬ε¦‚何ε·₯δ½œγ€‚", - "quests.gregtech_energy.spending_energy.desc.2": "ζ ‡ε‡†ζœΊεˆΆοΌš\n-ε¦‚ζžœδΈ€δΈͺε€šζ–Ήε—η»“ζž„ε―δ»₯ζŽ₯受一δΈͺθƒ½ζΊδ»“οΌˆε€§ε€šζ•°ιƒ½ε―δ»₯οΌ‰οΌŒθΏ™ε…θΈδ½ δ½Ώη”¨ζ―”ζœΊε™¨εŸΊη‘€η­‰ηΊ§ζ›΄ι«˜ηš„ι…ζ–Ήγ€‚\n\nδΎ‹ε­οΌš\nε¦‚ζžœδ½ ζ­£εœ¨δ½Ώη”¨δΈ€δΈͺε€§εž‹ζ…ζ‹Œη½οΌŒεΉΆδΈ”δ½ ε‰θ£…δΊ†δΈ€δΈͺIVθƒ½ζΊδ»“οΌŒεƒε°†θƒ½ε€Ÿε€„理&cLuV&rη­‰ηΊ§ηš„ζ…ζ‹Œι…ζ–Ήγ€‚\n\nθΏ™ζ˜―ε€šζ–Ήε—η»“ζž„η›Έε―ΉδΊŽε•ζ–Ήε—ζœΊε™¨ηš„δΈ»θ¦ε₯½ε€„之一——要将εƒδ»¬ε‡ηΊ§εˆ°δΈ‹δΈ€δΈͺη­‰ηΊ§οΌŒδ½ εͺιœ€θ¦ζ›΄ζ’εƒδ»¬ηš„θƒ½ζΊδ»“οΌŒθ€ŒδΈζ˜―更捒整δΈͺζœΊε™¨γ€‚", + "quests.gregtech_energy.spending_energy.desc.2": "ζ ‡ε‡†ζœΊεˆΆοΌš\n-ε¦‚ζžœδΈ€δΈͺε€šζ–Ήε—η»“ζž„ε―δ»₯ζŽ₯受一δΈͺθƒ½ζΊδ»“οΌˆε€§ε€šζ•°ιƒ½ε―δ»₯οΌ‰οΌŒθΏ™ε…θΈδ½ δ½Ώη”¨ζ―”ζœΊε™¨εŸΊη‘€η­‰ηΊ§ζ›΄ι«˜ηš„ι…ζ–Ήγ€‚\n\nδΎ‹ε­οΌš\nε¦‚ζžœδ½ ζ­£εœ¨ε»Ίι€ δΈ€εΊ§η”΅εŠ›ι«˜η‚‰οΌŒεΉΆδΈ”δ½ ε‰θ£…δΊ†δΈ€δΈͺLVθƒ½ζΊδ»“οΌŒεƒε°†θƒ½ε€Ÿε€„理&cMV&rη­‰ηΊ§ηš„η”΅εŠ›ι«˜η‚‰ι…ζ–Ήγ€‚\n\nθΏ™ζ˜―ε€šζ–Ήε—η»“ζž„η›Έε―ΉδΊŽε•ζ–Ήε—ζœΊε™¨ηš„δΈ»θ¦ε₯½ε€„之一——要将εƒδ»¬ε‡ηΊ§εˆ°δΈ‹δΈ€δΈͺη­‰ηΊ§οΌŒδ½ εͺιœ€θ¦ζ›΄ζ’εƒδ»¬ηš„θƒ½ζΊδ»“οΌŒθ€ŒδΈζ˜―更捒整δΈͺζœΊε™¨γ€‚", "quests.gregtech_energy.spending_energy.desc.3": "δΈ€δΊ›ε€šζ–Ήε—η»“ζž„εͺ能ε‰θ£…δΈ€δΈͺθƒ½ζΊδ»“οΌŒδ½†θΏ™εΉΆδΈζ„ε‘³η€δ½ θ’«ι™εˆΆεœ¨1A!\n\n你仍焢可δ»₯使用4Aζˆ–16Aηš„θƒ½ζΊδ»“γ€‚θΏ™ε°†ε…θΈ&bθΆ…ι’‘&rι…ζ–ΉοΌŒδ½†δΈθƒ½θΆ…ι’‘ι…ζ–Ήη­‰ηΊ§γ€‚\n\nδΎ‹ε­οΌš\nε€§εž‹η”΅θ·―η»„θ£…ζœΊεͺ允θΈε‰θ£…δΈ€δΈͺθƒ½ζΊδ»“γ€‚ε¦‚ζžœδ½ ε‰θ£…δΈ€δΈͺ4A IVθƒ½ζΊδ»“οΌŒδ½ ε°†θƒ½ε€ŸθΆ…ι’‘ζ‰€ζœ‰IVεŠζ›΄δ½Žη­‰ηΊ§ηš„ι…ζ–Ήγ€‚\n\nδ½†ζ˜―οΌŒεƒδΈθƒ½εˆΆδ½œLuVη­‰ηΊ§ηš„ι…ζ–ΉοΌŒε› δΈΊζœΊε™¨δΈζ”―ζŒε€šδΈͺ仓口。这δΈͺι™εˆΆζ˜―ζ•…ζ„ηš„οΌŒδ»₯ι˜²ζ­’θ·³θΏ‡ζ Όι›·η§‘ζŠ€ηš„θΏ›η¨‹η³»η»Ÿγ€‚", "quests.gregtech_energy.spending_energy.desc.4": "ε› ζ­€θ―·θ°δ½οΌšε•δΈͺθƒ½ζΊδ»“ηš„η”΅ζ΅ζ•°θΆŠε€§οΌŒε€„η†ι€ŸεΊ¦θΆŠεΏ«οΌŒδ½†εΏ…ι‘»ε‰θ£…δΈ€δΈͺθƒ½ζΊδ»“ζ‰θƒ½θ§£ι”ζ›΄ι«˜ι˜Άηš„εˆζˆι…ζ–Ήγ€‚", "quests.gregtech_energy.spending_energy.task": "ζˆ‘ζ˜Žη™½δΊ†", "quests.gregtech_energy.overclock.title": "θΆ…ι’‘", "quests.gregtech_energy.overclock.subtitle": "εŸΊζœ¬ε‡ηΊ§ζœΊεˆΆ", "quests.gregtech_energy.overclock.desc.1": "δ½ ε¬θ―΄θΏ‡θΆ…ι’‘οΌŒδ½†δΈε€ͺζ˜Žη™½εƒζ˜―δ»€δΉˆοΌŸθ©ζˆ‘δ»¬θŠ±η‚Ήζ—Άι—΄θ§£ι‡ŠδΈ€δΈ‹γ€‚\n\nζˆ‘δ»¬εΊ”θ―₯δ»ŽεŸΊη‘€εΌ€ε§‹οΌš\n&dδ½ŽεŽ‹&rδ»£θ‘¨ζœ€ε€š32EU/tβ€”β€”ζœ‰ζ—Άζ›΄ε°‘οΌŒδ½†η»δΈδΌšζ›΄ε€šγ€‚\n&dδΈ­εŽ‹&r达到128EU/t。\n&dι«˜εŽ‹&r达到512EU/t。\n基本上,每δΈͺη­‰ηΊ§ηš„εŠŸθ€—ε’žεŠ 4倍。", - "quests.gregtech_energy.overclock.desc.2": "ε½“δ½ εœ¨ζ›΄ι«˜η­‰ηΊ§ηš„ζœΊε™¨δΈ­θΏθ‘ŒθΎƒδ½Žη­‰ηΊ§ηš„ι…ζ–Ήζ—ΆδΌšε‘η”Ÿδ»€δΉˆοΌŸθΏ™ε°±ζ˜―ζˆ‘δ»¬ζ‰€θ―΄ηš„&eθΆ…ι’‘&r!\n\nδΈ€δΈͺ&dδΈ­εŽ‹&rι…ζ–ΉοΌˆ33–128EU/tοΌ‰εœ¨&dι«˜εŽ‹&rζœΊε™¨δΈ­θΏθ‘Œε°†οΌš1)使用4ε€ηš„θƒ½ι‡οΌŒεΉΆδΈ”2)ι€ŸεΊ¦εΏ«2倍。\n\nεŒδΈ€δΈͺδΈ­εŽ‹ι…ζ–Ήεœ¨&dθΆ…ι«˜εŽ‹&rζœΊε™¨δΈ­οΌŸθƒ½ι‡ζΆˆθ€—ζ˜―8ε€οΌŒδ½†ι€ŸεΊ¦εͺεΏ«4倍。\n\nε¦‚δ½ ζ‰€θ§οΌŒδ½Ώη”¨ε€šε°ζœΊε™¨ζ―”θΆ…ι’‘ε•ε°ζœΊε™¨θƒ½ζ•ˆζ›΄ι«˜γ€‚\n但说εžθ―οΌšεœ¨ε€§ε€šζ•°θΎη½δΈ­οΌŒδ½ δΌšζ›΄ε–œζ¬’θΆ…ι’‘οΌŒθ€ŒδΈζ˜―ε»Ίι€ ε€§ι‡η›ΈεŒηš„ζœΊε™¨γ€‚\n\nδΈθΏ‡οΌŒεœ¨ζ—©ζœŸθƒ½ζΊη΄§εΌ ηš„ζ—Άε€™ηŸ₯ι“θΏ™δΈ€η‚Ήζ˜―εΎˆε₯½ηš„。", - "quests.gregtech_energy.overclock.desc.3": "ζœ‰δΈ€η§η‰ΉζŠηš„θΆ…ι’‘εͺι€‚η”¨δΊŽε°‘ζ•°ε€šζ–Ήε—η»“ζž„οΌš&eεŒηΎŽθΆ…ι’‘&r。\nεœ¨θΏ™ι‡ŒοΌŒδΈζ˜―4倍能量捒2ε€ι€ŸεΊ¦οΌŒθ€Œζ˜―&a4倍能量&r捒&a4ε€ι€ŸεΊ¦&r!这使得εƒδΈŽθΏθ‘Œε€šε°ζœΊε™¨δΈ€ζ ·ι«˜ζ•ˆγ€‚\n\nη›ε‰εœ¨TerraFirmaGreg中,εͺζœ‰δ»₯δΈ‹ε€šζ–Ήε—η»“ζž„ζ”―ζŒζ­€εŠŸθƒ½οΌš\n-η”΅εŠ›ι«˜η‚‰\n-εˆι‡‘ι«˜η‚‰\n-转底炉\n-ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ\n-η”΅εŠ›ζΈ©ε€", + "quests.gregtech_energy.overclock.desc.2": "ε½“δ½ εœ¨ζ›΄ι«˜η­‰ηΊ§ηš„ζœΊε™¨δΈ­θΏθ‘ŒθΎƒδ½Žη­‰ηΊ§ηš„ι…ζ–Ήζ—ΆδΌšε‘η”Ÿδ»€δΉˆοΌŸθΏ™ε°±ζ˜―ζˆ‘δ»¬ζ‰€θ―΄ηš„&eθΆ…ι’‘&r!\n\nδΈ€δΈͺ&dδΈ­εŽ‹&rι…ζ–ΉοΌˆ33–128EU/tοΌ‰εœ¨&dι«˜εŽ‹&rζœΊε™¨δΈ­θΏθ‘Œε°†οΌš1)使用4ε€ηš„θƒ½ι‡οΌŒεΉΆδΈ”2)ι€ŸεΊ¦εΏ«2倍。\n\nεŒδΈ€δΈͺδΈ­εŽ‹ι…ζ–Ήεœ¨&dθΆ…ι«˜εŽ‹&rζœΊε™¨δΈ­οΌŸθƒ½ι‡ζΆˆθ€—ζ˜―16ε€οΌŒδ½†ι€ŸεΊ¦εͺεΏ«4倍。\n\nε¦‚δ½ ζ‰€θ§οΌŒδ½Ώη”¨ε€šε°ζœΊε™¨ζ―”θΆ…ι’‘ε•ε°ζœΊε™¨θƒ½ζ•ˆζ›΄ι«˜γ€‚\n但说εžθ―οΌšεœ¨ε€§ε€šζ•°θΎη½δΈ­οΌŒδ½ δΌšζ›΄ε–œζ¬’θΆ…ι’‘οΌŒθ€ŒδΈζ˜―ε»Ίι€ ε€§ι‡η›ΈεŒηš„ζœΊε™¨γ€‚\n\nδΈθΏ‡οΌŒεœ¨ζ—©ζœŸθƒ½ζΊη΄§εΌ ηš„ζ—Άε€™ηŸ₯ι“θΏ™δΈ€η‚Ήζ˜―εΎˆε₯½ηš„。", + "quests.gregtech_energy.overclock.desc.3": "ζœ‰δΈ€η§η‰ΉζŠηš„θΆ…ι’‘εͺι€‚η”¨δΊŽε°‘ζ•°ε€šζ–Ήε—η»“ζž„οΌš&eεŒηΎŽθΆ…ι’‘&r。\nεœ¨θΏ™ι‡ŒοΌŒδΈζ˜―4倍能量捒2ε€ι€ŸεΊ¦οΌŒθ€Œζ˜―&a4倍能量&r捒&a4ε€ι€ŸεΊ¦&r!这使得εƒδΈŽθΏθ‘Œε€šε°ζœΊε™¨δΈ€ζ ·ι«˜ζ•ˆγ€‚\n\nη›ε‰εœ¨TerraFirmaGreg中,εͺζœ‰δ»₯δΈ‹ε€šζ–Ήε—η»“ζž„ζ”―ζŒζ­€εŠŸθƒ½οΌš\n-η”΅εŠ›ι«˜η‚‰\n-εˆι‡‘ε†Άη‚Όη‚‰\n-转底炉\n-ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ\n-η”΅εŠ›ζΈ©ε€\n-热亀捒器", "quests.gregtech_energy.overclock.task": "所δ»₯ηΊ’θ‰²ηš„ζ›΄εΏ«οΌŒζ‡‚δΊ†", "quests.gregtech_energy.blast_oc.title": "ι«˜η‚‰θΆ…ι’‘", "quests.gregtech_energy.blast_oc.subtitle": "δ½ δΈιœ€θ¦η†θ§£θΏ™δΈͺ", @@ -2017,7 +2610,7 @@ "quests.gregtech_energy.subtick.title": "子刻(SubtickοΌ‰", "quests.gregtech_energy.subtick.subtitle": "幢葌?", "quests.gregtech_energy.subtick.desc.1": "ζ Όι›·η§‘ζŠ€ε€šζ–Ήε—η»“ζž„δΈ­ηš„ε¦δΈ€δΈͺιšθ—ζœΊεˆΆοΌš&d子刻&r。\n\nεƒζ˜―δ»€δΉˆοΌŸε½“ι…ζ–Ήε˜εΎ—ε¦‚ζ­€δΉ‹εΏ«οΌŒδ»₯θ‡³δΊŽε€„η†ζ—Άι—΄ε°‘δΊŽδΈ€ζΈΈζˆεˆ»ζ—ΆοΌŒε­εˆ»ε°±δΌšζΏ€ζ΄»γ€‚ι€šεΈΈοΌŒζœΊε™¨δΈθƒ½εΏ«δΊŽζ―εˆ»δΈ€δΈͺι…ζ–Ήβ€”β€”δ½†ζœ‰δΊ†ε­εˆ»οΌŒεƒδ»¬ε―δ»₯!\n\nεƒζ˜―如何ε·₯δ½œηš„οΌŸδΈ€ζ—¦δΈ€δΈͺι…ζ–ΉθΎΎεˆ°1εˆ»ηš„ζŒη»­ζ—Άι—΄οΌŒθΏ›δΈ€ζ­₯ε‡ηΊ§θƒ½ζΊδ»“δΈδΌšθ©εƒζ›΄εΏ«γ€‚\nδ½†η”±δΊŽε­εˆ»οΌŒζœΊε™¨δΈδΌšζ΅ͺθ΄Ήη”΅εŠ›οΌŒθ€Œζ˜―δΌš&aεœ¨ε†…ιƒ¨εΉΆθ‘Œε€„η†ι…ζ–Ή&r。", - "quests.gregtech_energy.subtick.desc.2": "δΎ‹ε¦‚οΌšε¦‚ζžœδ½ ηš„ε€§εž‹εŒ–ε­¦εεΊ”ι‡œοΌˆLCRοΌ‰εœ¨ε€„η†δΈ€δΈͺLuVηΊ§ι…ζ–Ήζ—Άι€ŸεΊ¦δΈΊ1δΈͺ配方/εˆ»οΌŒι‚£δΉˆεœ¨ZPMη”΅εŽ‹δΈ‹οΌŒεƒε°†θƒ½δ»₯&e2δΈͺ配方/刻&rηš„ι€ŸεΊ¦θΏθ‘Œγ€‚ζ›΄ι«˜ηΊ§ηš„θƒ½ι‡δ»“εˆ™ζ„ε‘³η€ζ›΄ι«˜ηš„ε†…ιƒ¨εΉΆθ‘Œε€„η†ζ•°γ€‚\n\n&d注意&r:η›ε‰οΌŒζ‰€ζœ‰ε€§εž‹ζœΊε™¨ιƒ½ζœ‰ι™εœ°ζ”―ζŒε­εˆ»ζœΊεˆΆοΌŒδ½†&aεͺζœ‰LCR&rεŒζ—Άζ”―ζŒε­εˆ»ζœΊεˆΆδΈŽεŒηΎŽθΆ…ι’‘γ€‚θΏ™δΉŸζ­£ζ˜―δΈΊδ»€δΉˆLCRζ²‘ζœ‰δΈ“η”¨δΊŽIV阢ζ΅ηš„ε€šζ–Ήε—εΉΆθ‘Œδ»“οΌšε› δΈΊεƒε·²η»δ»₯ζ›΄ι«˜ζ•ˆηš„ζ–ΉεΌεžηŽ°δΊ†εΉΆθ‘Œε€„η†γ€‚", + "quests.gregtech_energy.subtick.desc.2": "δΎ‹ε¦‚οΌšε¦‚ζžœδ½ ηš„ε€§εž‹εŒ–ε­¦εεΊ”ι‡œοΌˆLCRοΌ‰εœ¨ε€„η†δΈ€δΈͺLuVηΊ§ι…ζ–Ήζ—Άι€ŸεΊ¦δΈΊ1δΈͺ配方/εˆ»οΌŒι‚£δΉˆεœ¨ZPMη”΅εŽ‹δΈ‹οΌŒεƒε°†θƒ½δ»₯&e2δΈͺ配方/刻&rηš„ι€ŸεΊ¦θΏθ‘Œγ€‚ζ›΄ι«˜ηΊ§ηš„θƒ½ι‡δ»“εˆ™ζ„ε‘³η€ζ›΄ι«˜ηš„ε†…ιƒ¨εΉΆθ‘Œε€„η†ζ•°γ€‚\n\n&d注意&r:η›ε‰οΌŒζ‰€ζœ‰ε€§εž‹ζœΊε™¨ιƒ½ζœ‰ι™εœ°ζ”―ζŒε­εˆ»ζœΊεˆΆοΌŒδ½†&aεͺζœ‰LCR&rε’Œ&e热亀捒器&rεŒζ—Άζ”―ζŒε­εˆ»ζœΊεˆΆδΈŽεŒηΎŽθΆ…ι’‘γ€‚θΏ™δΉŸζ­£ζ˜―δΈΊδ»€δΉˆLCRζ²‘ζœ‰δΈ“η”¨δΊŽIV阢ζ΅ηš„ε€šζ–Ήε—εΉΆθ‘Œδ»“οΌšε› δΈΊεƒε·²η»δ»₯ζ›΄ι«˜ζ•ˆηš„ζ–ΉεΌεžηŽ°δΊ†εΉΆθ‘Œε€„η†γ€‚", "quests.gregtech_energy.parallel_hatch.title": "εΉΆθ‘Œδ»“", "quests.gregtech_energy.parallel_hatch.subtitle": "又幢葌?", "quests.gregtech_energy.parallel_hatch.desc.1": "&dεΉΆθ‘Œδ»“&rζ˜―ε€§εž‹ε€šζ–Ήε—ζœΊε™¨ηš„ζ ΈεΏƒδΊη‚Ήγ€‚\n\nεƒηš„δ½œη”¨ζ˜―δ»€δΉˆοΌŸ\nεœ¨ε…θΈδ½Ώη”¨ηš„ζƒ…ε†΅δΈ‹οΌˆδΈ»θ¦ζŒ‡η”±εˆι‡‘ε†Άη‚Όη‚‰εˆΆδ½œηš„ε€šζ–Ήε—ζœΊε™¨οΌ‰οΌŒεƒθƒ½θ©δ½ &aεŒζ—ΆθΏθ‘Œε€šδΈͺη›ΈεŒι…ζ–Ή&r。\n\nε…ΆεŽŸη†ζ˜―ι€šθΏ‡ζ―εˆ»ζΆˆθ€—ζ›΄ε€šθƒ½ι‡οΌŒζ₯ε€§εΉ…ζε‡ζ•΄δ½“εžει‡γ€‚ιžεΈΈι€‚εˆη”¨δΊŽε€§θ§„ζ¨‘η”ŸδΊ§εˆι‡‘γ€η”΅θ·―ζˆ–ζΏζγ€‚", @@ -2026,24 +2619,227 @@ "quests.gregtech_energy.rotor.title": "ζΆ‘θ½θ½¬ε­", "quests.gregtech_energy.rotor.subtitle": "ζœ‰ε€ͺε€šι€‰ζ‹©δΊ†οΌ", "quests.gregtech_energy.rotor.desc.1": "θ½¬ε­ζ”―ζžΆθ‡ͺη„Άιœ€θ¦ε‰θ£…θ½¬ε­ζ‰θƒ½δ½Ώη”¨οΌŒδ½†ε―ι€‰η§η±»ηΉε€šδΈ”ε±žζ€§ε„εΌ‚οΌŒθΏ™δΊ›ζ•°ε€Όη©Άη«Ÿζ„ε‘³η€δ»€δΉˆοΌŸ\n\nζ›΄ι«˜ηš„&9ζ•ˆηŽ‡&rδΌšε»Άι•Ώζ―mBη‡ƒζ–™ηš„η‡ƒηƒ§ζ—Άι—΄οΌŒδ»Žθ€Œζœ‰ζ•ˆι™δ½Žη‡ƒζ–™ζΆˆθ€—γ€‚θ€Œ&9εŠŸηŽ‡&rεˆ™η›΄ζŽ₯提升梑θ½ζœΊηš„ε‘η”΅ι‡γ€‚θ‡³δΊŽ&9耐久度&rοΌŒε…Άδ½œη”¨δΈθ¨€θ‡ͺζ˜Žγ€‚", - "quests.gregtech_energy.rotor.desc.2": "η†ζƒ³ζƒ…ε†΅δΈ‹οΌŒδ½ θ‡ͺη„ΆεΈŒζœ›δΈ‰ι‘Ήε±žζ€§ε…¨ιƒ¨ζœ€ε€§εŒ–οΌŒδ½†ε…·δ½“ι€‰ζ‹©ε–ε†³δΊŽδ½ ηš„η‡ƒζ–™δΊ§ι‡γ€ζ‹₯ζœ‰ηš„ζΆ‘θ½ζœΊζ•°ι‡δ»₯εŠδ½ ζ„Ώζ„ζ›΄ζ’θ½¬ε­ηš„ι’‘ηŽ‡οΌŒε› ζ­€εΉΆζ— η»ε―Ήηš„ζ­£η‘η­”ζ‘ˆγ€‚&8οΌˆε½“η„ΆοΌŒδΈ­ε­η΄ ι™€ε€–β€¦οΌ‰&r\n\nθ―θ™½ε¦‚ζ­€οΌŒε¦‚ζžœδ½ ζ―«ζ— ε€΄η»ͺοΌŒζˆ‘δ»¬ζŽ¨θοΌšεœ¨&6HV&r阢ζ΅δ½Ώη”¨ι’’ι’’转子,在&5EV&r阢ζ΅δ½Ώη”¨ε“ˆζ°εˆι‡‘θ½¬ε­οΌŒεœ¨&9IV&r阢ζ΅δ½Ώη”¨ι«˜ι€Ÿι’’-S转子。\n\nι—ζ†Ύηš„ζ˜―οΌŒδ½ ζ— ζ³•ι€šθΏ‡η‘道θ‡ͺεŠ¨ε°†ζ–°θ½¬ε­θΎ“ε…₯θ½¬ε­ζ”―ζžΆοΌŒε› ε…Άε‰ζ–ΉεΏ…ι‘»δΏζŒεŒε…¨η©Ίζ—·οΌŒδ½†δ½Ώη”¨&aζœΊζ’°θ‡‚&rεˆ™ε―εžηްθ‡ͺεŠ¨εŒ–ζ›΄ζ’οΌ", + "quests.gregtech_energy.rotor.desc.2": "η†ζƒ³ζƒ…ε†΅δΈ‹οΌŒδ½ θ‡ͺη„ΆεΈŒζœ›δΈ‰ι‘Ήε±žζ€§ε…¨ιƒ¨ζœ€ε€§εŒ–οΌŒδ½†ε…·δ½“ι€‰ζ‹©ε–ε†³δΊŽδ½ ηš„η‡ƒζ–™δΊ§ι‡γ€ζ‹₯ζœ‰ηš„ζΆ‘θ½ζœΊζ•°ι‡δ»₯εŠδ½ ζ„Ώζ„ζ›΄ζ’θ½¬ε­ηš„ι’‘ηŽ‡οΌŒε› ζ­€εΉΆζ— η»ε―Ήηš„ζ­£η‘η­”ζ‘ˆγ€‚&7οΌˆε½“η„ΆοΌŒδΈ­ε­η΄ ι™€ε€–β€¦οΌ‰&r\n\nθ―θ™½ε¦‚ζ­€οΌŒε¦‚ζžœδ½ ζ―«ζ— ε€΄η»ͺοΌŒζˆ‘δ»¬ζŽ¨θοΌšεœ¨&6HV&r阢ζ΅δ½Ώη”¨ι’’ι’’转子,在&5EV&r阢ζ΅δ½Ώη”¨ε“ˆζ°εˆι‡‘θ½¬ε­οΌŒεœ¨&9IV&r阢ζ΅δ½Ώη”¨ι«˜ι€Ÿι’’-S转子。\n\nι—ζ†Ύηš„ζ˜―οΌŒδ½ ζ— ζ³•ι€šθΏ‡η‘道θ‡ͺεŠ¨ε°†ζ–°θ½¬ε­θΎ“ε…₯θ½¬ε­ζ”―ζžΆοΌŒε› ε…Άε‰ζ–ΉεΏ…ι‘»δΏζŒεŒε…¨η©Ίζ—·οΌŒδ½†δ½Ώη”¨&aζœΊζ’°θ‡‚&rεˆ™ε―εžηްθ‡ͺεŠ¨εŒ–ζ›΄ζ’οΌ", "quests.gregtech_energy.rotor.task": "任意梑θ½θ½¬ε­", "quests.gregtech_energy.fission_reactor.title": "θ£‚ε˜εεΊ”ε †MK I", "quests.gregtech_energy.fission_reactor.subtitle": "η³»ε₯½ε‰ε…¨εΈ¦οΌŒθΏ™εΎˆε€ζ‚", "quests.gregtech_energy.fission_reactor.desc.1": "&dθ£‚ε˜εεΊ”ε †&rεœ¨ζ Όι›·η§‘ζŠ€δΈ­η‘εžζ˜―δΈͺιžεŒε―»εΈΈηš„ε­˜εœ¨β€”β€”ζ— θΊζ˜―ε…ΆθΎθ‘δΈ»ι’˜θΏ˜ζ˜―θΏδ½œεŽŸη†γ€‚δ½†θ―·εˆ«ζ‹…εΏƒοΌŒζˆ‘δ»¬ε°†ι€šθΏ‡θΏ™δΈͺε€šεŠŸθƒ½ηš„ι«˜η²Ύε°–ε€šζ–Ήε—η»“ζž„δΈΊδ½ ζδΎ›θ―¦η»†ζŒ‡ε―ΌοΌ\n\n&eε·₯η¨‹εΈˆι˜δΈ‹&rοΌŒζˆ‘δ»¬ζš‚δΈ”δΈζ·±ε…₯排θ¨ε€ζ‚ηš„η‰©η†εŽŸη†γ€‚δ½ ιœ€θ¦δΊ†θ§£ηš„ζ ΈεΏƒθ¦η‚Ήζ˜―οΌšθΏ™εΊ§εεΊ”ε †ε¦‚εŒδΈ€δΈͺε·¨εž‹ηš„&dθ“„ηƒ­εΌε‘η”΅ζœΊ&r。注ε…₯εˆι€‚η‡ƒζ–™εŽοΌŒεƒε°†δΊ§η”Ÿ&c热能&rοΌˆε°±εƒ&6EU/t&rη”΅εŠ›οΌ‰οΌŒθΏ™δΊ›θƒ½ι‡δΌšδ»₯&c升温&rε½’εΌε‚¨ε­˜εœ¨εεΊ”ε †ε†…οΌˆη›Έε½“δΊŽε‚¨ε­˜&6EU&r)。\n\n随后你可δ»₯将这些热能传递给&9冷却剂&rζ₯驱动梑θ½ζœΊοΌŒζˆ–ζ˜―ζ‰§θ‘Œη±»δΌΌη”΅εΌ§η‚‰ηš„εˆζˆι…ζ–Ήγ€‚ζœ‰ζ—Άη”šθ‡³δΌšε‡ΊηŽ°&c热量过剩&rηš„ζƒ…ε†΅γ€‚ε―ΉδΊ†οΌŒδ½ θΏ˜θƒ½θŽ·εΎ—ζ–°ε…ƒη΄ ζ₯εˆΆι€ ζ–°εž‹η‡ƒζ–™γ€η”΅θ·―η­‰η‰©θ΅„γ€‚ζˆ–θΈθ―₯倚去ε€ͺι˜³η³»ε…Άδ»–εœ°ζ–ΉζŽ’η΄’ζŽ’η΄’οΌŸε½“η„ΆθΏ™δΊ›ιƒ½ζ˜―εŽθ―δΊ†γ€‚", "quests.gregtech_energy.fission_reactor.desc.2": "ι¦–ε…ˆοΌŒδ½ ιœ€θ¦ε…ˆθŽ·ε–δΈ€δΊ›&d钍&rγ€‚θ―·εŠ‘εΏ…η©Ώζˆ΄ε₯½ζ‰€ζœ‰η›Έε…³ηš„&eδΈͺδΊΊι˜²ζŠ€θ£…ε€‡&rβ€”β€”&eDeatek Intergalactic&rε―ΉδΊŽε› δΈε½“ε€„η†θ£‚ε˜ζζ–™ι€ ζˆηš„δ»»δ½•θΊ«δ½“δΌ€ε³ζ¦‚δΈθ΄Ÿθ΄£γ€‚θ―΄ηœŸηš„οΌŒεˆ°δΊ†θΏ™δΈͺ阢ζ΅ζˆ‘δ»¬ζœ¬δΈθ―₯ε†ζι†’δ½ δΊ†γ€‚ε¦‚ζžœδ½ ιœ€θ¦ε€δΉ οΌŒθ―·ζŸ₯ηœ‹ε…³δΊŽε±ι™©ε“ηš„δ»»εŠ‘θ―΄ζ˜Žγ€‚\n\nζŽ₯δΈ‹ζ₯οΌŒεˆΆδ½œδΈ€δΊ›η©Ίηš„&d燃料棒&rοΌŒεΉΆδ½Ώη”¨&dζ Έη‡ƒζ–™ε€„η†εŽ‚&rδΈΊε…Άε‘«ε……η‡ƒζ–™γ€‚η‡ƒζ–™ζ£’ζ˜―ε―ι‡ε€δ½Ώη”¨ηš„οΌŒε› ζ­€δ½ δΈιœ€θ¦εˆΆδ½œε€ͺε€šγ€‚δΊ‹εžδΈŠοΌŒζˆ‘们建θδ½ η›ε‰εͺεˆΆδ½œδΈ€ζ Ήε°±ε€ŸδΊ†γ€‚\n\nε½“η„ΆοΌŒδ½ θΏ˜ιœ€θ¦δΈ€δΈͺε»Ίι€ εŒζˆηš„反应堆。请ζŸ₯ηœ‹EMIι’„θ§ˆγ€‚ζ³¨ζ„η»“ζž„δΈ­ζœ‰δΈ€εˆ—ζ ΈεΏƒηš„η‡ƒζ–™δ»“οΌŒδ»₯εŠδΈ€δΊ›ε―ι€‰ηš„η»„δ»Άε’Œζζ–™δ»“β€”β€”θΏ™δΊ›ζˆ‘δ»¬η¨εŽδΌšθ―¦η»†θ§£ι‡Šγ€‚\n\nη­‰η­‰γ€‚δΈΊδ»€δΉˆεͺε»Ίθ刢作&oδΈ€ζ Ή&rη‡ƒζ–™ζ£’ε‘’οΌŸε“¦οΌŒ&eζˆ‘δ»¬&rεΎˆι«˜ε…΄δ½ ζε‡ΊδΊ†θΏ™δΈͺι—ι’˜γ€‚θ©ζˆ‘δ»¬εœ¨δΈ‹δΈ€ι‘΅ζ·±ε…₯排θ¨εεΊ”ε †ηš„θΏθ‘ŒζœΊεˆΆγ€‚", "quests.gregtech_energy.fission_reactor.desc.3": "反应堆内ε‰θ£…ηš„&cη‡ƒζ–™ζ£’θΆŠε€š&rοΌŒε…ΆθΏθ‘ŒζΈ©εΊ¦ε°±&c袊高&rγ€‚θ€ŒζΈ©εΊ¦θΆŠι«˜οΌŒθƒ½ε€ŸδΌ ι€’η»™ε†·ε΄ε‰‚ζ΅δ½“ε’Œε―ε€„η†η‰©ε“ηš„ηƒ­ι‡ε°±θΆŠε€šγ€‚δ½†η‰©η†θ§„εΎ‹θ‡ͺζœ‰ε…Άζžι™οΌŒεεΊ”ε †ηš„ζΈ©εΊ¦ε­˜εœ¨&c理θΊδΈŠι™&rοΌŒε› ζ­€εˆ‡ε‹Ώε‰θ£…θΏ‡ε€šη‡ƒζ–™ζ£’γ€‚\n\nδ½†θ―·εˆ«ζ‹…εΏƒοΌδΈŽ&0ε€§ηŸ³ζ²Ήι›†ε›’&rε£δΌ ζœΊε™¨ζ‰€ε£η§°ηš„δΈεŒοΌŒζ Έθƒ½ε…Άεžζ˜―&a绝对ε‰ε…¨&rηš„γ€‚ε½“εεΊ”ε †ηƒ­ι‡ζ°΄εΉ³ζŽ₯θΏ‘ε±ι™©ι˜ˆε€Όζ—ΆοΌŒεƒδΌšθ‡ͺ动启动&9冷却程序&rοΌŒη›΄θ‡³ζ‰€ζœ‰ηƒ­ι‡θ’«&aε‰ε…¨θ€—ζ•£&rεŽζ‰δΌšι‡ζ–°ε―εŠ¨β€”β€”ε°½η‘θΏ™δΈͺ过程相当缓慒。\n\nιšΎι“ζ²‘ζœ‰ζ—’θƒ½ζε‡ζΈ©εΊ¦εˆθƒ½εŠ εΏ«ζ•ˆηŽ‡ηš„ζ–Ήζ³•ε—οΌŸε†ζ¬‘ζ„Ÿθ°’δ½ ηš„ζι—!&eζˆ‘δ»¬ζ‰εŽζ¨ͺζΊ’ηš„ε·₯η¨‹εΈˆε›’ι˜Ÿ&r早已为歀准倇了εŒηΎŽζ–Ήζ‘ˆοΌ", - "quests.gregtech_energy.fission_reactor.desc.4": "陀了5δΈͺ&d燃料仓&rε€–οΌŒδ½ θΏ˜ε―δ»₯ε‰θ£…&oζœ€ε€š&r20δΈͺ&dη»„δ»Ά&rγ€‚ε…Άδ»–εŽ‚ε•†ηš„εεΊ”ε †ε―θƒ½ιœ€θ¦ιžεΈΈη²Ύη‘ηš„εšδ½οΌŒδ½†ζˆ‘δ»¬ηš„εεΊ”ε †ζ›΄εŠ ζ™Ίθƒ½γ€‚ζ‰€ζœ‰ε·²ε‰θ£…η»„δ»Άηš„&6ε±žζ€§&rε°†η€ε•εœ°&6叠加θ‘η—&rοΌŒδ»…ζ­€θ€Œε·²οΌ\n\nη›ε‰οΌŒεεΊ”堆能δ»₯三种&8*&rζ–ΉεΌεˆ©η”¨θΏ™δΊ›η»„δ»ΆοΌš\n&e1)&rζε‡ζœ€ι«˜ζΈ©εΊ¦&7οΌˆη»ηΌ˜δ½“οΌ‰&r\n&e2)&rζι«˜ζ•ˆηŽ‡&7οΌˆε»Άι•Ώη‡ƒζ–™ζŒη»­ζ—Άι—΄οΌ‰&r\n&e3)&rζŽ§εˆΆθŠ‚ζ΅&7οΌˆε‡ηΌ“εεΊ”ι€ŸεΊ¦οΌ‰&r\n\n&8*)&rδ½ ζ‰€εœ¨ζ˜Ÿη³»ηš„θ΅„ζΊε―θƒ½ζ— ζ³•ζ”―ζŒζ‰€ζœ‰η±»εž‹γ€‚ζˆ‘δ»¬ι’„δΌ°η›ε‰δ»…θƒ½ζ‰Ύεˆ°η¬¬δΈ€η±»η»„δ»Άζ‰€ιœ€ηš„ζζ–™γ€‚\n\n但请谨θ°οΌšζε‡&cζΈ©εΊ¦&r会带ζ₯η›ΈεΊ”ηš„&c代价&r。", + "quests.gregtech_energy.fission_reactor.desc.4": "陀了5δΈͺ&d燃料仓&rε€–οΌŒδ½ θΏ˜ε―δ»₯ε‰θ£…&oζœ€ε€š&r20δΈͺ&dη»„δ»Ά&rγ€‚ε…Άδ»–εŽ‚ε•†ηš„εεΊ”ε †ε―θƒ½ιœ€θ¦ιžεΈΈη²Ύη‘ηš„εšδ½οΌŒδ½†ζˆ‘δ»¬ηš„εεΊ”ε †ζ›΄εŠ ζ™Ίθƒ½γ€‚ζ‰€ζœ‰ε·²ε‰θ£…η»„δ»Άηš„&6ε±žζ€§&rε°†η€ε•εœ°&6叠加θ‘η—&rοΌŒδ»…ζ­€θ€Œε·²οΌ\n\nη›ε‰οΌŒεεΊ”堆能δ»₯三种&7*&rζ–ΉεΌεˆ©η”¨θΏ™δΊ›η»„δ»ΆοΌš\n&e1)&rζε‡ζœ€ι«˜ζΈ©εΊ¦&7οΌˆη»ηΌ˜δ½“οΌ‰&r\n&e2)&rζι«˜ζ•ˆηŽ‡&7οΌˆε»Άι•Ώη‡ƒζ–™ζŒη»­ζ—Άι—΄οΌ‰&r\n&e3)&rζŽ§εˆΆθŠ‚ζ΅&7οΌˆε‡ηΌ“εεΊ”ι€ŸεΊ¦οΌ‰&r\n\n&7*)&rδ½ ζ‰€εœ¨ζ˜Ÿη³»ηš„θ΅„ζΊε―θƒ½ζ— ζ³•ζ”―ζŒζ‰€ζœ‰η±»εž‹γ€‚ζˆ‘δ»¬ι’„δΌ°η›ε‰δ»…θƒ½ζ‰Ύεˆ°η¬¬δΈ€η±»η»„δ»Άζ‰€ιœ€ηš„ζζ–™γ€‚\n\n但请谨θ°οΌšζε‡&cζΈ©εΊ¦&r会带ζ₯η›ΈεΊ”ηš„&c代价&r。", "quests.gregtech_energy.fission_reactor.desc.5": "θ™½η„Ά&cζ›΄ι«˜&rηš„θΏθ‘ŒζΈ©εΊ¦θƒ½εŠ εΏ«ε†·ε΄ε‰‚ε€„η†ε’Œζζ–™εŠ ε·₯&cι€ŸεΊ¦&rοΌŒδ½†δΉŸδΌšζ˜Ύθ‘—ε’žεŠ η‡ƒζ–™ζ£’ηš„&cζŸθ€—&rγ€‚ζ―ζ Ήη‡ƒζ–™ζ£’ιƒ½ζœ‰ζœ‰ι™ηš„θ€δΉ…εΊ¦οΌŒε…ΆζŸθ€—ι€ŸεΊ¦δΈŽζΈ©εΊ¦ε‘ˆ&cηΊΏζ€§&rε’žι•Ώε…³η³»γ€‚\n\nη”±δΊŽζ›΄ι«˜ηš„ηƒ­ι‡ιœ€θ¦ε‰θ£…ζ›΄ε€šη‡ƒζ–™ζ£’οΌŒθΏ™εžι™…δΈŠδ½ΏεΎ—ζ€»δ½“ζŸθ€—&nε‘ˆδΊŒζ¬‘ζ–Ήε’žι•Ώ&r。θ‹₯θΏ½ζ±‚ε†·ε΄ε‰‚εŠ ηƒ­ηš„&cζœ€ι«˜θƒ½ζ•ˆ&r,建θι‡‡η”¨δ½ŽζΈ©θΏθ‘ŒοΌ›δ½†θ‹₯ιœ€θ¦&cζœ€ε€§εŒ–θ£‚ε˜η‰©θ΄¨θ½¬εŒ–ι€ŸεΊ¦&rοΌŒεˆ™εΊ”εœ¨η»ηΌ˜ζζ–™ε…θΈθŒƒε›΄ε†…δ½Ώη”¨ζœ€ι«˜ζΈ©εΊ¦γ€‚", "quests.gregtech_energy.fission_reactor.desc.6": "现在你终于可δ»₯ζŸ₯ηœ‹εεΊ”ε †η›Έε…³ηš„ε„η§ι…ζ–ΉδΊ†γ€‚θ―·ζŸ₯ηœ‹δ½Ώη”¨&dζŽ§εˆΆε™¨&rηš„ι…ζ–ΉοΌŒδ½ ε°†δΌšε‘ηŽ°δΈ‰δΈͺ&eEMI&rζ ‡η­Ύι‘΅οΌš\n\n&e1)&rθ£‚ε˜εεΊ”ε †&7οΌˆη‡ƒζ–™δΈŽε…ΌεΉε†·ε΄ε‰‚οΌ‰&r\n&e2)&rθ£‚ε˜ηƒ­εŠ ε·₯&7οΌˆη±»δΌΌδΊŽη”΅εΌ§η‚‰οΌ‰&r\n&e3)&rθ£‚ε˜δΊ§η‰©&7οΌˆε½“η‡ƒζ–™θ€—ε°½ζ—ΆοΌ‰&r\n&e4)&rε€šζ–Ήε—η»“ζž„ι’„θ§ˆ\n\nθ―·ζ³¨ζ„οΌŒδΈεŒηš„&a燃料&rδ»…δΈŽη‰Ήεšηš„&9冷却剂桁体&rε…ΌεΉγ€‚一旦燃料棒εŒε…¨θ€—ε°½οΌŒε―δ»₯η‘εšεƒε·²η»&b转&d变&rζˆδΊ†ζ–°ηš„ε…ƒη΄ γ€‚\n\nε¦δΈ€ζ–Ήι’οΌŒεͺθ¦ζΈ©εΊ¦ζ°΄εΉ³θΆ³ε€Ÿι«˜οΌŒε€„η†ι…ζ–Ήε°±ε―δ»₯θΏθ‘ŒοΌŒδΈŽζ‰€δ½Ώη”¨ηš„η‡ƒζ–™η§η±»ζ— ε…³γ€‚", "quests.gregtech_energy.fission_reactor.desc.7": "η€εŒ–ηš„θ‘η—εŽŸη†ε¦‚δΈ‹οΌšεœ¨ζ‹₯ζœ‰ε……θΆ³ε†·ε΄ε‰‚ζ΅δ½“ε’ŒδΈ€ζ Ή&c100%%&rηƒ­ε€Όη‡ƒζ–™ζ£’ηš„ζƒ…ε†΅δΈ‹οΌŒεεΊ”ε †ε°†θΎΎεˆ°ηΊ¦&c200&rηš„ζΈ©εΊ¦οΌˆε―η§°δ½œηƒ­ι‡η­‰ηΊ§ζˆ–η€η§°δΈΊηƒ­ι‡οΌ‰γ€‚使用&dδΈ€ζ Ή&r&c100%%&rη‡ƒζ–™ζ£’η­‰ζ•ˆδΊŽδ½Ώη”¨&dδΈ€ζ Ή&r&c200%%&rη‡ƒζ–™ζ£’οΌŒδΊŒθ€…ε‡ε―δ½Ώηƒ­ι‡θΎΎεˆ°ηΊ¦&c400&r。\n\nθΏ™ζ˜―ε› δΈΊζ―ζ Ήη‡ƒζ–™ζ£’ε―δΊ§η”Ÿ&6200HU/t&rοΌˆηƒ­εŠ›ε•δ½οΌ‰γ€‚ε†·ε΄ε‰‚ζ΅δ½“ζ―&c1&r度热量可提取&61HU/t&r。\n\nθ‹₯εεΊ”ε †ηš„ζœ€ε€§ηƒ­ι‡δΈŠι™δΈΊ&c190&rοΌŒεˆ™&c100%%&rηš„η‡ƒζ–™ζ£’ε°†ε―Όθ‡΄ε…ΆθΏ‡ηƒ­γ€‚δ½ ε―δ»₯ι€šθΏ‡ε‰θ£…组仢提升θ―₯δΈŠι™οΌŒζˆ–ι€šθΏ‡ε€„η†η³»η»Ÿδ½Ώη”¨&dδΈ»εŠ¨ε†·ε΄ε‰‚&r。每δΈͺε€„η†ι…ζ–Ήε‡δΌšδΊ§η”Ÿη‰Ήεšηš„热量影响。", "quests.gregtech_energy.fission_reactor.desc.8": "δΎ‹ε¦‚οΌŒθ‹₯ζŸι…ζ–Ήηš„ιœ€ζ±‚ζΈ©εΊ¦δΈΊ&c100&rοΌŒηƒ­ι‡ε½±ε“δΈΊ&6-10HU/t&rοΌŒε½“εεΊ”ε †ε€„δΊŽ&c190&rεΊ¦ζ—ΆοΌŒθ―₯配方εžι™…可提供&619HU/t&rηš„ε†·ε΄ζ•ˆζžœγ€‚\n\n这意味着你可δ»₯εœ¨εεΊ”ε †ζœ€ε€§ηƒ­ι‡δΈŠι™θΎƒδ½Žηš„ζƒ…ε†΅δΈ‹ζŒη»­θΏθ‘ŒοΌŒεŒζ—ΆιΏε…θΏ‡ηƒ­οΌθ‹₯温度低于&c100&rοΌŒι…ζ–Ήε°†εŒε…¨εœζ­’θΏθ‘Œβ€”β€”ζ­£ε¦‚η”΅εΌ§η‚‰ι…ζ–ΉδΉŸε­˜εœ¨ζΈ©εΊ¦ι™εˆΆγ€‚\n\nδ»₯上便是&eζˆ‘δ»¬&rε½“ε‰θƒ½δΌ ζŽˆη»™δ½ ηš„ε…¨ιƒ¨ηŸ₯θ―†γ€‚θ―·ιšζ—Άε…³ζ³¨ζŠ€ζœ―θΏ›ε±•οΌŒ&eε°Šζ•¬ηš„ζ Έθƒ½ε·₯η¨‹εΈˆι˜δΈ‹&r!", + "quests.high_voltage": "&6HV&r - ι«˜εŽ‹", + "quests.high_voltage.subtitle": "ε‡ηΊ§θƒ½ζΊη³»η»ŸοΌŒδΊ†θ§£θΆ…ε‡€ι—΄οΌŒεˆΆι€ ζ›΄ε€šεŒ–ε­¦ε“οΌŒεΉΆδΈΊε€ͺη©Ίζ—…θ‘Œεšε₯½ε‡†ε€‡", + "quests.high_voltage.energium_crystals.title": "θΆ…ηΊ§η”΅ζ± ", + "quests.high_voltage.energium_crystals.subtitle": "η§‘εΉ»θˆ¬ηš„η”΅ζ± οΌ", + "quests.high_voltage.energium_crystals.desc": "&a能量水晢&r可δ»₯ε‚¨ε­˜ε€§ι‡ηš„&9EU&rγ€‚θ€ŒδΈ”ε―δ»₯θ―΄ζ›΄δΎΏεœγ€‚", + "quests.high_voltage.autoclave.title": "HVι«˜εŽ‹ι‡œ", + "quests.high_voltage.autoclave.subtitle": "θ‡ͺδΊ§η”΅ζ± ", + "quests.high_voltage.autoclave.desc": "θ™½η„Ά&3HVι«˜εŽ‹ι‡œ&rε±žδΊŽε―ι€‰θΎε€‡οΌŒδ½†η»ε―Ήε€ΌεΎ—你尽快配倇。\n\nεƒθƒ½θ§£ι”η‹¬η‰Ήηš„η”΅ζ± ι…ζ–ΉοΌŒε…Άζ€§θƒ½&6θΏœθΆ…&rζ ‡ε‡†εž‹ε·γ€‚", + "quests.high_voltage.chem_bath.title": "HVεŒ–ε­¦ζ΅Έζ΄—ζœΊ", + "quests.high_voltage.chem_bath.subtitle": "θ―·εˆ«ε’Œδ½ ηš„ηƒ€ι’εŒ…ζœΊδΈ€θ΅·ζ΄—ζΎ‘...", + "quests.high_voltage.chem_bath.desc": "&3HVεŒ–ε­¦ζ΅Έζ΄—ζœΊ&r可使用&aεŒ–ε­¦ζŸ“ζ–™&rε―Ήι€ι•œθΏ›θ‘Œ&dζŸ“θ‰²&rγ€‚θΏ™ε°†δ½Ώδ½ θƒ½ε€Ÿθš€εˆ»ζ›΄ε€šη±»εž‹ηš„ζ™Άεœ†οΌŒεΉΆε†·ε΄ε…Άδ»–η±»εž‹ηš„ηƒ­ι”­γ€‚", + "quests.high_voltage.maintenance_hatches.title": "高级维技", + "quests.high_voltage.maintenance_hatches.subtitle": "ζˆ‘ζˆδΊ†η»΄ζŠ€ε‘˜οΌŒθƒΆεΈ¦ηš„εžε™¬θ€…", + "quests.high_voltage.maintenance_hatches.desc.1": "ηŽ°ε·²θ§£ι”δΈ€η§&3ζ–°εž‹η»΄ζŠ€δ»“&r。\n\n&3θ‡ͺεŠ¨η»΄ζŠ€δ»“&rεŠŸθƒ½η€ε•η›΄ζŽ₯β€”β€”εƒθƒ½&6ζ°ΈδΉ…ζ€§&rζΆˆι™€η»΄ζŠ€ιœ€ζ±‚γ€‚\n\n&3可配η½η»΄ζŠ€δ»“&rεˆ™ζ›΄ζœ‰θΆ£γ€‚δ½ ε―δ»₯将兢配η½δΈΊηΌ©ηŸ­&a10%%&rι…ζ–Ήθ€—ζ—ΆοΌŒδ½†δ»£δ»·ζ˜―η»΄ζŠ€ιœ€ζ±‚ι€ŸεΊ¦ζε‡θ‡³δΈ‰ε€οΌˆη›Έε½“δΊŽ&d16现εžε°ζ—Ά&rηš„θΏθ‘Œε‘¨ζœŸοΌ‰γ€‚θ‹₯η”¨δΊŽε€šζ–Ήε—ε‘η”΅ζœΊοΌŒεˆ™ε―ε»Άι•Ώι…ζ–Ήθ€—ζ—ΆοΌŒι—΄ζŽ₯提升10%%η‡ƒζ–™ζ•ˆηŽ‡οΌ\n\n&9提瀺:&rε°†θƒΆεΈ¦ζ”Ύε…₯η»΄ζŠ€δ»“ε―θ‡ͺ动δΏε€ζ•…ιšœγ€‚", + "quests.high_voltage.maintenance_hatches.desc.2": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oθ‡ͺεŠ¨η»΄ζŠ€δ»“ηš„ηΊΉη†δΈŽζœΊεˆΆζΊθ‡ͺTecTechβ€”β€”ζœ€εˆδΈΊβ€ζ Όι›·η§‘ζŠ€οΌšζ–°θ§†ι‡ŽοΌˆGT:NHοΌ‰β€œζ•΄εˆεŒ…εΌ€ε‘ηš„ι™„ε±žζ¨‘η»„γ€‚\n\n&oθ‹₯δ½ ιšζˆ‘δ»¬εšζŒζΈΈηŽ©θ‡³εŽζœŸι˜Άζ΅οΌŒε°†δΌšζŽ₯θ§¦εˆ°ζ›΄ε€šζ₯θ‡ͺTecTechηš„ε†…εΉγ€‚", + "quests.high_voltage.hv_components.title": "ι«˜εŽ‹η»„δ»Ά", + "quests.high_voltage.hv_components.subtitle": "ζˆ‘δ»¬η§°δΉ‹δΈΊβ€œδΉθΆ£β€", + "quests.high_voltage.hv_components.desc.1": "ε¦‚εŒ&bMV&r阢ζ΅οΌŒηŽ°εœ¨δ½ ιœ€θ¦εˆΆδ½œζ›΄ι«˜ηΊ§ηš„η»„δ»Άγ€‚\n\nδ»€δΊΊε€΄η–Όηš„&dζ— η‘•εηŸ³&rε·²θ’«η•₯εΎζ›΄ζ£˜ζ‰‹ηš„&dηŽ»εŒ–ζœ«ε½±ηη &rζ›Ώδ»£γ€‚εŒζ—Άζ³¨ζ„&a马达&rιœ€θ¦&d2xι“ΆηΊΏηΌ†&r。\n&aζœΊε™¨ε€–ε£³&r与&aζœΊε™¨&rιœ€δ½Ώη”¨&d金线缆&r。\n\nδ½ ε›€η§―ηš„ι»„ι‡‘η»ˆδΊŽζ΄ΎδΈŠη”¨εœΊδΊ†οΌ", + "quests.high_voltage.hv_components.desc.2": "&9&lθ©η”Ÿζ΄»θ½»ζΎδΊ›ηš„ε°ζŠ€ε·§οΌš&r\n\n- 使用&dθ“ηŸ³εˆ†θ§£&rε’Œ&dηŸΏηŸ³ε€„η†&rζ₯θŽ·ε–&eη₯珀金&r。\n- 在&3εŒ–ε­¦ζ΅Έζ΄—ζœΊ&r中使用&dζ°΄ι“Ά&rζ₯ε€„η†ε€šη§ηŸΏηŸ³οΌŒδ»₯θŽ·ε–&e金&rε’Œ&eι“Ά&r。", + "quests.high_voltage.assembler.title": "HVη»„θ£…ζœΊ", + "quests.high_voltage.assembler.desc": "&3HVη»„θ£…ζœΊ&rζ˜―θΏ›η¨‹ηš„δΈ‹δΈ€ζ­₯οΌŒεŒζ—Άθ§£ι”ε€šι‘Ήεžη”¨εŠŸθƒ½β€”β€”ε―ζŸ₯ι˜…ζœ¬δ»»εŠ‘ε‘¨θΎΉε†…εΉθŽ·ε–ζ›΄ε€šδΏ‘息。\n\nδ½ ε°†ιœ€θ¦η”¨θΏ™ε°&6HVη»„θ£…ζœΊ&rζ₯εˆΆι€ &d火η­&r。", + "quests.high_voltage.lenses.title": "ζˆ‘ηœΌδΈ­ηš„δΈ–η•Œζ˜―ε½©θ‰²ηš„", + "quests.high_voltage.lenses.desc": "&aη€ζ˜“η³»η»ŸηΊ§θŠ―片&rε°†η”¨δΊŽζœ€ε₯½ηš„&dULVη”΅θ·―&r配方。\n\nζˆ‘δ»¬ε»Ίθδ½ ζε‰δΈ“ι—¨εˆΆδ½œζ‰€ζœ‰ε…Άδ»–ζœ‰η”¨ηš„ε½©θ‰²ι€ι•œοΌŒεƒδ»¬ε·²εˆ—δΈΊ&e可选&rδ»»εŠ‘γ€‚", + "quests.high_voltage.ulv_circuits.title": "ζœ€δ½³ULV甡路!", + "quests.high_voltage.ulv_circuits.desc": "&8ULV&rη”΅θ·―η”¨δΊŽδΈ€δΊ›&9AE2&rι…ζ–Ήε’Œ&aζœΊζ’°εŠ¨εŠ›&r配方。", + "quests.high_voltage.hv_energy_hatch.title": "ε‡ηΊ§δ½ ηš„η”΅εŠ›ι«˜η‚‰ II", + "quests.high_voltage.hv_energy_hatch.subtitle": "ζ³¨ζ„εˆ°θΏ™ι‡Œηš„ζ¨‘εΌδΊ†ε—οΌŸ", + "quests.high_voltage.hv_energy_hatch.desc": "&aLPICθŠ―η‰‡&rιœ€θ¦εœ¨&3袅净间&r内使用&3HVεˆ‡ε‰²ζœΊ&rεˆΆι€ γ€‚\n\nδΈΊδ½ ηš„ε€šζ–Ήε—η»“ζž„οΌˆδΈ»θ¦ζ˜―η”΅εŠ›ι«˜η‚‰ε’Œε€§εž‹εŒ–ε­¦εεΊ”ι‡œοΌ‰ι…ε€‡&3HV能源仓&rε°†ζ˜―ζœ€δ½³θ‘₯ε……οΌŒθΏ™ζ ·δΎΏθƒ½η›΄ζŽ₯ζŽ₯ε…₯&6HVηΊΏθ·―&rθΏθ‘Œγ€‚", + "quests.high_voltage.chem_reactor.title": "HVεŒ–ε­¦εεΊ”ι‡œ", + "quests.high_voltage.chem_reactor.desc": "&3HVεŒ–ε­¦εεΊ”ι‡œ&rθ§£ι”δΊ†ε€§ι‡ζ–°ι…ζ–Ήγ€‚ε•ŠοΌŒθ°δΈε–œζ¬’ε―Ήι«˜ηΊ§εŒ–ε­¦ζ—₯η›Šε’žι•Ώηš„ιœ€ζ±‚ε‘’οΌŸ\n\n&9ζ³¨ζ„οΌš&rεžι™…δΈŠζˆ‘δ»¬ι€šθΏ‡θΎΎεˆ°&6HV&r阢ζ΅θ§£ι”δΊ†ε€§ι‡ζ–°ε†…εΉγ€‚δ½†εΉΆιžζ‰€ζœ‰δΊ§ηΊΏζˆ–η‰©ε“ιƒ½ζ˜―ε½“ε‰εΏ…ιœ€ηš„β€”β€”θ‹₯ε°†ζ‰€ζœ‰ε†…εΉηΊ³ε…₯,会使&6HV&rη« θŠ‚θΏ‡δΊŽε†—ι•ΏοΌ\n\nθ‹₯ζƒ³ζŒ‘ζˆ˜θ‡ͺζˆ‘οΌŒηŽ°εœ¨ε°±ε―ζε‰ζŸ₯ι˜…&5EV&rη« θŠ‚ε†…εΉγ€‚", + "quests.high_voltage.rutile_loop.title": "θΏ‘δΉŽι’›", + "quests.high_voltage.rutile_loop.subtitle": "...意味着εƒθΏ˜δΈζ˜―钛!", + "quests.high_voltage.rutile_loop.desc": "ι’›ηš„ε€„η†θΏ‡η¨‹ζ―”δΉ‹ε‰ηš„ζζ–™η¨εΎ&b倍杂&rδΈ€δΊ›γ€‚ι¦–ε…ˆοΌŒδ½ ιœ€θ¦&aι‡‘ηΊ’ηŸ³&r,可δ»₯ι€šθΏ‡ε€„η†&aι“εœŸηŸΏ&r、&aι’›ι“ηŸΏ&r、&a铝&r、&aι˜Ώε§†η§‘ε°”ηŸΏ&rε’Œεͺθƒ½εœ¨&dζœˆηƒ&rδΈŠζ‰Ύεˆ°ηš„&aζˆ΄ζ–―ηŸΏ&rζ₯θŽ·εΎ—γ€‚\n\nδΈ€ζ—¦δ½ θŽ·εΎ—δΊ†θΆ³ε€Ÿηš„&5ι‡‘ηΊ’ηŸ³&rοΌŒδ½ ι€šεΎ€&6ι’›&rηš„ζ—…η¨‹ε°†εœ¨δΈ‹δΈ€δΈͺδ»»εŠ‘δΈ­η»§η»­γ€‚ζ— ιœ€εŒ†εΏ™γ€‚\n\n&9提瀺:&r&aι“εœŸηŸΏ&rηš„ηŸΏηŸ³ε€„η†ζ”Άη›Šι«˜εΎ—η¦»θ°±οΌεŒ…ζ‹¬&3ηƒ­εŠ›η¦»εΏƒζœΊ&rζ­₯ιͺ€ε―δ»₯轻松&6三倍&rε’žεŠ δ½ ηš„&aι‡‘ηΊ’ηŸ³&r产量。", + "quests.high_voltage.rutile_loop_2.title": "θΏ‘δΉŽι’›Β²", + "quests.high_voltage.rutile_loop_2.subtitle": "ηŽ°εœ¨ζ˜―ι’›δΊ†ε—οΌŸ", + "quests.high_voltage.rutile_loop_2.desc.1": "θ¦θŽ·ε–ι’›οΌŒι¦–ε…ˆεœ¨&3HVεŒ–ε­¦εεΊ”ι‡œ&rδΈ­ε°†&aι‡‘ηΊ’ηŸ³&r还原成&aε››ζ°―εŒ–ι’›&rοΌŒη„ΆεŽεœ¨&3η”΅εŠ›ι«˜η‚‰&r中用&d镁&rθΏ›θ‘ŒδΊŒζ¬‘θΏ˜εŽŸοΌŒζœ€η»ˆεΎ—εˆ°ι’›γ€‚\n\nη”ŸδΊ§θΏ‡η¨‹δΈ­ζΆˆθ€—ηš„&dη’³&r、&dζ°―&r、&dζ°§&rε’Œ&d镁&rε‡ε―δ»Žε‰―δΊ§ε“&dδΈ€ζ°§εŒ–η’³&rε’Œ&dζ°―εŒ–ι•&rδΈ­&6εŒηΎŽε›žζ”Ά&r,εžηŽ°ι›ΆζŸθ€—γ€‚θ‹₯ε»Ίη«‹ε›žζ”Άη³»η»ŸοΌŒι’›ι‡‘ε±žη”ŸδΊ§ζ΅η¨‹δΈ­&aε”―δΈ€ιœ€θ¦ζŒη»­ζŠ•ε…₯ηš„εŽŸζ–™&rδ»…ζœ‰&dι‡‘ηΊ’ηŸ³&r!", + "quests.high_voltage.rutile_loop_2.desc.2": "&aε››ζ°―εŒ–ι’›&rεœ¨ε‘‘ζ–™η”ŸδΊ§δΈ­θΏ˜ε―η”¨δ½œε‚¬εŒ–ε‰‚γ€‚εœ¨θšεˆθΏ‡η¨‹δΈ­ζ·»εŠ εΎι‡&aTiClβ‚„&rοΌŒε―ε°†θšεˆη‰©δΊ§ε‡Ίι‡ζε‡θ‡³&6133%%&rγ€‚ε½“η„ΆοΌŒθΏ™εŒε…¨ε±žδΊŽε―ι€‰ζ–Ήζ‘ˆγ€‚", + "quests.high_voltage.superconductors.title": "HV袅导体", + "quests.high_voltage.superconductors.desc": "εˆ°δΊ†θΏ™δΈͺ阢ζ΅οΌŒζ™ι€šηΊΏηΌ†ηš„ζŸθ€—ε·²η»εΎδΈθΆ³ι“οΌŒε› ζ­€θΆ…ε―Όδ½“εΉΆιžεΌΊεˆΆιœ€ζ±‚γ€‚δ½†ε€ΌεΎ—δΈ€ζηš„ζ˜―οΌŒθΆ…ε―Όδ½“δ»θƒ½ι€šθΏ‡ιšζ—Άζ‹†εˆ†δΈŽεˆεΉΆε―ΌηΊΏζ₯δ½“ηŽ°ε…Άεžη”¨δ»·ε€ΌοΌŒθ€ŒδΈ”ε› δΈΊθΏ™δΊ›θΆ…ε―Όδ½“ηš„δΈ€εŠζˆεˆ†ζ˜―ζ°§οΌŒζ‰€δ»₯也很便εœοΌ\n\n刢作&aεŠ›εœΊε‘η”Ÿε™¨&r既仍焢必鑻使用袅导体。", + "quests.high_voltage.nichrome_coils.title": "ι•ι“¬εˆι‡‘ηΊΏεœˆ", + "quests.high_voltage.nichrome_coils.subtitle": "离击θ΄₯ε€ͺι˜³θΏ˜ζœ‰εΎˆι•Ώηš„θ·―θ¦θ΅°", + "quests.high_voltage.nichrome_coils.desc.1": "&3ι•ι“¬εˆι‡‘εŠ ηƒ­ηΊΏεœˆ&rε°†δ½ ηš„&3η”΅εŠ›ι«˜η‚‰&r温度提高到&d3,600K&r。\n\nε°½η‘&oη›ε‰&rε°šιžεΌΊεˆΆθ¦ζ±‚οΌŒδ½†ε‡ηΊ§δ½ ηš„δΈ»εŠ›&3η”΅εŠ›ι«˜η‚‰&rδ»₯θŽ·ε–θ―±δΊΊηš„&6线圈加成&rδ»η„Άζ˜―δΈͺε₯½δΈ»ζ„γ€‚", + "quests.high_voltage.nichrome_coils.desc.2": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oεœ¨εŽŸη‰ˆζ Όι›·η§‘ζŠ€5δΈ­δ»…ε­˜εœ¨δΈ‰η§ηΊΏεœˆοΌŒθ€Œι•ι“¬εˆι‡‘ηΊΏεœˆζ›Ύζ˜―ζœ€ι«˜η­‰ηΊ§γ€‚&r", + "quests.high_voltage.titanium.title": "ι’›", + "quests.high_voltage.titanium.desc": "&aι’›&rεœ¨ζ‰€ζœ‰ι‡‘ε±žε…ƒη΄ δΈ­ε…·ζœ‰ζœ€ι«˜ηš„θ€θ…θš€ζ€§ε’ŒεΌΊεΊ¦ε―†εΊ¦ζ―”οΌŒε› ζ­€ζˆ‘δ»¬εΎˆθ‡ͺη„Άεœ°ε°†ε…Άη”¨δ½œ&5EV&rζœΊε™¨ηš„δΈ»θ¦ζζ–™γ€‚\n\nθ―·η‘δΏδ½ ηš„&aι‡‘ηΊ’ηŸ³&rι—­ηŽ―η”ŸδΊ§η³»η»Ÿη¬¦εˆζ ‡ε‡†οΌŒεΉΆε‡†ε€‡θ©δΈ“η”¨ηš„&3η”΅εŠ›ι«˜η‚‰&rζŒη»­θΏθ‘Œζ•°ε°ζ—Άγ€‚\n\nι‘ΊδΎΏδΈ€ζβ€”β€”ζ—’η„Άε·²ζŠ΅θΎΎ&5EV&r阢ζ΅οΌŒε•ζ–Ήε—ε‘η”΅ζœΊε³ε°†ι€ζΈζ·˜ζ±°οΌδ½ ιœ€θ¦θΏθ‘Œε€šε°&3HVε‘η”΅ζœΊ&rζ‰θƒ½ζ»‘θΆ³ιœ€ζ±‚οΌŒεŽη»­εˆ™εΏ…ι‘»ε‡ηΊ§θ‡³ε€šζ–Ήε—ε‘η”΅ζœΊγ€‚\n\nθ™½η„Άε€šζ–Ήε—ε‘η”΅ζœΊι€ δ»·ζ˜‚θ΄΅εΎ—ε€šοΌŒδ½†δ½ δΌšε‘ηŽ°εƒδ»¬ηš„θƒ½ι‡ζ•ˆηŽ‡ζ˜Ύθ‘—ζε‡οΌζ›΄ε€šδΏ‘息请ζŸ₯ι˜…&dθƒ½ζΊη« θŠ‚&r!", + "quests.high_voltage.vacuum_freezer.title": "ε†°η‚ΉδΉ‹δΈ‹", + "quests.high_voltage.vacuum_freezer.subtitle": "δ½ ηŸ₯ι“ηœŸη©Ίεžι™…δΈŠδΌšθ©δΈœθ₯Ώζ›΄ηƒ­ε—οΌŸ", + "quests.high_voltage.vacuum_freezer.desc": "&3ηœŸη©Ίε†·ε†»ζœΊ&rζ˜―δΈ€δΈͺη”¨δΊŽε†·ε΄&eηƒ­ι”­&rηš„ε€šζ–Ήε—η»“ζž„γ€‚ζ‰€ζœ‰εœ¨η”΅εŠ›ι«˜η‚‰δΈ­εˆΆι€ ηš„γ€ζΈ©εΊ¦θΆ…θΏ‡&d1750K&rηš„ι”­ιƒ½ιœ€θ¦εƒγ€‚\n\nε€§ε€šζ•°ζ—Άε€™οΌŒδ½ ηš„&3η”΅εŠ›ι«˜η‚‰&rδΌšζ˜―η“Άι’ˆοΌŒζ‰€δ»₯δ½ δΈιœ€θ¦δΈΊθΆ…ι’‘ε†·ε†»ζœΊθ€Œζ‹…εΏƒγ€‚\n\nη”±δΊŽζ‰‹ζŒ&eηƒ­ι”­&r会&cε―Ήδ½ ι€ ζˆδΌ€ε³&rοΌŒη‰©ε“η‘ι“δΌšιžεΈΈζœ‰η”¨γ€‚", + "quests.high_voltage.mv_superconductors.title": "MV袅导体", + "quests.high_voltage.mv_superconductors.desc": "δΌ θΎ“&a4A&rηš„&bMV&rη”΅θƒ½ζˆ–θΈι’‡ε…·εΈεΌ•εŠ›οΌŒδ½†ηŽ°ι˜Άζ΅δ½ ε―θƒ½εΉΆδΈιœ€θ¦θΏ™δΊ›γ€‚θ‹₯ζœ‰ιœ€θ¦οΌŒθ―₯ζ–Ήζ‘ˆε§‹η»ˆδ½œδΈΊε€‡ι€‰ε­˜εœ¨γ€‚", + "quests.high_voltage.circuit_assembler.title": "HVη”΅θ·―η»„θ£…ζœΊ", + "quests.high_voltage.circuit_assembler.subtitle": "刢作歀θΎε€‡ε‰ιœ€θ¦ε…ˆε»Ίι€ θΆ…净间", + "quests.high_voltage.circuit_assembler.desc": "下一代&3η”΅θ·―η»„θ£…ζœΊ&r。这δΈͺη­‰ηΊ§ηš„η”΅θ·―η»„θ£…ζœΊεͺη”¨δΊŽδΈ€η§η”΅θ·―β€”β€”δ½ ηš„η¬¬δΈ€δΈͺ&a主机&rοΌŒδΈθΏ‡θΏ™δΈœθ₯ΏεΎ—η­‰εˆ°&5EV&r阢ζ΅δΈŠδΊ†η«ζ˜Ÿζ‰θƒ½εšγ€‚δ½ ζ‹Ώεƒδ»¬ε―能εͺζœ‰δΈ€δΈͺη”¨ι€”οΌŒε°±ζ˜―εˆΆδ½œ&5EVη”΅θ·―η»„θ£…ζœΊ&r。\n\nι™€ζ­€δΉ‹ε€–οΌŒ&6HV&rη”΅θ·―η»„θ£…ζœΊδΉŸζ˜―εˆΆδ½œAE2&e倄理器&rηš„εΏ…ε€‡ζœΊε™¨γ€‚\n\n你可δ»₯推迟到&5EV&r阢ζ΅ε†ε»Ίι€ οΌŒζˆ–η›΄ζŽ₯使用εƒζ₯εŠ ι€Ÿη”΅θ·―εˆΆι€ γ€‚", + "quests.high_voltage.microprocessor_mainframe.title": "δΈ»ζœΊβ€”β€”η¬¬δΈ€δΈͺIV甡路!", + "quests.high_voltage.microprocessor_mainframe.desc": "第一δΈͺ&1IV&r甡路。η₯θ΄Ίδ½ ζˆεŠŸζŠ΅θΎΎζ­€ι˜Άζ΅οΌ\n\nθ―₯η”΅θ·―ε°†εœ¨δ½ θΏ›ε…₯&5EV&r阢ζ΅ζ—Άδ½Ώη”¨οΌŒδΉŸε―η«‹ε³η”¨δΊŽεˆΆδ½œθΏ›ι˜ΆηΊ³η±³ζœθƒΈη”²β€”β€”θΏ™ζ˜―ε―ΉηŽ°ζœ‰ε–·ζ°”θƒŒεŒ…ηš„ι‡ε€§ε‡ηΊ§οΌ\n\n&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oδΈ»ζœΊηš„εŽŸε§‹ηΊΉη†ε–θ‡ͺδΈ€εΌ IBM zEnterpriseδΈ»ζœΊηš„ε›Ύη‰‡γ€‚", + "quests.high_voltage.cleanroom.title": "袅净间", + "quests.high_voltage.cleanroom.subtitle": "δ»–δ»¬ζŠŠζˆ‘ε…³θΏ›δΈ€δΈͺζˆΏι—΄β€¦β€¦δΈ€δΈͺζ΄ε‡€ηš„ζˆΏι—΄", + "quests.high_voltage.cleanroom.desc.1": "&3袅净间&rζ˜―δΈ€η§ζ— ζ±‘ζŸ“ηš„η©ΊεΏƒε€šζ–Ήε—η»“ζž„γ€‚δ»ŠεŽοΌŒε€§ε€šζ•°ζ–°ηš„&a甡路相关配方&r,δ»₯及&3θšε˜ε€–ε£³&rη­‰η‰ΉζŠζ–Ήε—οΌŒιƒ½ιœ€εœ¨θΆ…ε‡€ι—΄ε†…ιƒ¨ηš„ζœΊε™¨δΈ­θΏθ‘Œγ€‚\n\nε»Ίι€ θΏ‡η¨‹ε°†ζΆˆθ€—ε€§ι‡&dε‘‘ζ–™ζ··ε‡εœŸ&rε’Œ/ζˆ–&dθΆ…ε‡€ι—΄ηŽ»η’ƒ&rβ€”β€”θΏ™δΌšε…¨ι’θ€ƒιͺŒδ½ ηš„&aθšδΉ™ηƒ―&rθ‡ͺεŠ¨εŒ–δΊ§ηΊΏγ€‚\n\nζˆ‘δ»¬ε°†δ»Ž5x5x5ηš„εŸΊη‘€η»“ζž„εΌ€ε§‹οΌŒε½“ζ„Ÿεˆ°η©Ίι—΄ε±€δΏƒζ—Άθ―·εŠζ—Άζ‰©ε»Ίγ€‚", + "quests.high_voltage.cleanroom.desc.2": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&o袅净间概忡源θ‡ͺζ Όι›·η§‘ζŠ€5οΌŒδ½†GT5ηš„εžηŽ°ζœΊεˆΆζ›΄δΈΊδΈ₯θ‹›οΌšι…ζ–Ήζ‰§θ‘Œζ—ΆδΈδΌšζ£€ζ΅‹ζΈ…ζ΄εΊ¦οΌŒδ½†εŒζˆζ¦‚ηŽ‡δΈŽθΆ…ε‡€ι—΄ζ΄ε‡€η­‰ηΊ§η›΄ζŽ₯ζŒ‚ι’©οΌŒθΏ™ε―Όθ‡΄ε€§ι‡ζζ–™ζ— ζ•…ζΆˆε€±γ€‚\n\n&oζ­€ε€–οΌŒθ‹₯θΆ…ε‡€ι—΄ε­˜εœ¨η»΄ζŠ€ι—ι’˜οΌŒζ΄ε‡€εΊ¦δΈŠι™ε°†ι”εšεœ¨90%%οΌŒζ„ε‘³η€10%%ηš„η‰©ε“δΌšθ’«ζŸζ―γ€‚\n\n&oGTCEuη‰ˆζœ¬ηš„θΆ…ε‡€ι—΄ε°†&6ζ°ΈδΈζŸθ€—&r配方产物。", + "quests.high_voltage.cleanroom.task": "η»΄ζŠ€δ»“ζˆ–θ‡ͺεŠ¨η»΄ζŠ€δ»“", + "quests.high_voltage.prospector.title": "HV排矿δ»ͺ", + "quests.high_voltage.prospector.desc.1": "θΏ™ζ¬ΎζŽ’ηŸΏδ»ͺ具倇比&7LV&rεž‹ε·&6ζ›΄εΉΏηš„ζŽ’ζ΅‹θŒƒε›΄&r。\n\nζ‰‹ζŒζŽ’ηŸΏδ»ͺζ—Άζ½œθ‘Œε³ι”ε―εˆ‡ζ’θ‡³&6ζ΅δ½“ηŸΏθ„‰ζ¨‘εΌ&r,θ―₯ζ¨‘εΌε°†ζ˜Ύη€Ίζ΅δ½“ηŸΏθ„‰ηš„&dεŸΊη‘€δΊ§ι‡&rεŠε…Άε……η›ˆη¨‹εΊ¦γ€‚\n\nζ­€εŠŸθƒ½ε―ΉδΊŽεœ¨ζœˆηƒδΈŠεšδ½&9ζ°¦-3&rηŸΏθ„‰δΈŽ&9εŸΊε²©ηŸΏθ„‰&rιžεΈΈζœ‰η”¨γ€‚", + "quests.high_voltage.prospector.desc.2": "&9ζι†’οΌš&r&3ζ΅δ½“ι’»ζœΊ&rηš„δΊ§ι‡δΈŽηŸΏθ„‰ηš„\"ε……η›ˆεΊ¦\"η›΄ζŽ₯η›Έε…³γ€‚ε½“ε……η›ˆεΊ¦θΏ‡δ½Žζ—ΆοΌŒδΊ§ε‡Ίε°†ι»˜θ€εˆ‡ζ’至GTCEu配η½ζ–‡δ»ΆδΈ­θΎεšηš„保底产量。\n\n&9提瀺:&rε½“ε……η›ˆεΊ¦δ½ŽδΊŽ30%οΌˆζ­€δΈΊη²—η•₯δΌ°ε€ΌοΌ‰ζ—ΆοΌŒε‡ΊδΊŽθƒ½ζ•ˆζ―”θ€ƒθ™‘οΌŒε»Ίθθ½¬η§»θ‡³ε…Άδ»–ηŸΏθ„‰γ€‚δ½ ε―ηž„ε‡†&5EV&r阢ζ΅ηš„&3ι«˜ηΊ§ζ΅δ½“ι’»ζœΊ&r,εƒδΈδ»…ζ˜Ύθ‘—ζε‡δΊ§ι‡οΌŒζ›΄θƒ½ι™δ½ŽηŸΏθ„‰ζΆˆθ€—ι€ŸηŽ‡οΌ\n\n&cζ³¨ζ„οΌš&rε› η¨‹εΊηΌΊι™·οΌŒζŽ’ηŸΏδ»ͺζ˜Ύη€Ίεζ ‡ε―θƒ½ε­˜εœ¨1εŒΊε—εη§»οΌŒθ―·ιΏε…ε°†ι’»ζœΊζ”Ύη½εœ¨ζ΅δ½“ηŸΏθ„‰θΎΉηΌ˜οΌŒε¦εˆ™ε―θƒ½ζŠ½ε–εˆ°ι”™θ――ζ΅δ½“οΌ", + "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。", + "quests.high_voltage.ptfe.title": "θšε››ζ°ŸδΉ™ηƒ―", + "quests.high_voltage.ptfe.subtitle": "又名 - η‰Ήζ°ŸιΎ™", + "quests.high_voltage.ptfe.desc": "&aθšε››ζ°ŸδΉ™ηƒ― (PTFE)&rζ˜―δΈ€η§&7η’³&r-&b氟&rθšεˆη‰©γ€‚δΈŽPVC类似,PTFEε―η”¨δΊŽζι«˜ε‘‘ζ–™η”΅θ·―ζΏεŠε…Άδ»–εˆΆε“ηš„δΊ§ι‡γ€‚η›ε‰δΈ»θ¦η”¨δΊŽεˆΆι€ &3ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ&rηš„ε†…ε£γ€‚\n\nη”ŸδΊ§θΏ‡η¨‹δΈ­ιœ€θ¦ζΆˆθ€—&3ζ°―ζ°”&rοΌŒδ½†ε¦‚ζžœδ½ η”΅θ§£εΊŸεΌƒηš„&a盐酸&r,εƒε°±ε―δ»₯εŒε…¨ε›žζ”Άγ€‚\n\n&b氟&rδΉŸε°†η”¨δΊŽ&aι“€&rε’Œ&7瑅岩&rηš„η²Ύη‚ΌθΏ‡η¨‹γ€‚\n\n&9提瀺:&rδ»ŽηŽ°εœ¨εΌ€ε§‹οΌŒδ½ εΊ”θ―₯ε°†θšεˆη‰©ε›ΊεŒ–δΈΊ&d村&r(ζˆ–ι”­)ηš„ε½’εΌοΌŒε› δΈΊεƒδ»¬ε―δ»₯很εΉζ˜“εœ°δ½Ώη”¨&3ζŒ€εŽ‹ζœΊ&rε‘‘ι€ ζˆδ½ ιœ€θ¦ηš„δ»»δ½•ε½’εΌγ€‚", + "quests.high_voltage.nitrobenzene.title": "η‘εŸΊθ‹―", + "quests.high_voltage.nitrobenzene.subtitle": "ζ˜”ζ—₯荣光不再", + "quests.high_voltage.nitrobenzene.desc": "在TFGζ•΄εˆεŒ…δΈ­οΌŒ&aη‘εŸΊθ‹―&r与&aθ‹―&rε·²θ’«ε€§εΉ…ε‰ŠεΌ±γ€‚εƒδ»¬δ»ε―δ½œδΈΊη‡ƒζ–™δ½Ώη”¨οΌŒδ½†ηŽ°εœ¨ε…ΆδΈ»θ¦η”¨ι€”ζ˜―δ½œδΈΊεˆζˆεŽŸζ–™γ€‚\n\nθ―·ζ³¨ζ„οΌŒεˆΆδ½œη‘εŸΊθ‹―ηš„ζ―δΈͺζ­₯ιͺ€ιƒ½δΌšζΆˆθ€—少量 &dη‘«η£Ί&r。", + "quests.high_voltage.lcr.title": "ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ", + "quests.high_voltage.lcr.desc.1": "&3ε€§εž‹εŒ–ε­¦εεΊ”ι‡œοΌˆLCRοΌ‰&rζ˜―ε…·ζœ‰ζ›΄ε€šθΎ“ε…₯/θΎ“ε‡Ίζ§½δ½ηš„ε€šζ–Ήε—η»“ζž„&3εŒ–ε­¦εεΊ”ι‡œ&rγ€‚ε…Άη‰Ήζ°ŸιΎ™ε€–ε£³ε…θΈεƒθƒ½ε€Ÿε€„η†ι’ε€–ηš„ι…ζ–Ήγ€‚\n\n&3LCR&r可δ»₯ζ‰§θ‘ŒζŸδΊ›δΈ“ε±žεεΊ”οΌŒε°†ε€šδΈͺεΈΈθ§„&3εŒ–ε­¦εεΊ”ι‡œ&rηš„ζ­₯ιͺ€&6ζ•΄εˆδΈΊε•ζ­₯εŒζˆ&rγ€‚δΎ‹ε¦‚οΌš\n\n&9-&r&aδΊŒζ°§εŒ–ζ°&rοΌˆη”¨δΊŽεˆΆι€ η‘ι…ΈδΈŽε››ζ°§εŒ–δΊŒζ°οΌ‰\n&9-&r&aη‘«ι…Έ&r\n&9-&r&aθ‹―ι…š&r\n&9-&r&aηŽ―ζ°§ζ°―δΈ™ηƒ·&rοΌˆδ½ ιœ€θ¦η”¨εƒζ₯εˆΆι€ ηŽ―ζ°§ζ ‘θ„‚οΌοΌ‰\n&9-&r&aηŽ―ζ°§ζ ‘θ„‚&r", + "quests.high_voltage.lcr.desc.2": "&3ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ&rθΏ˜εŒ…ε«η‹¬ε ι…ζ–Ήγ€‚δΎ‹ε¦‚&dζ°‘ζ°”&rη›ε‰εͺθƒ½εœ¨LCRδΈ­εˆΆι€ γ€‚\n\nζ‰€ζœ‰εœ¨&3LCR&rδΈ­θΏ›θ‘Œηš„&dθΆ…ι’‘&rε‡ε…·ζœ‰&6100%%ζ•ˆηŽ‡&r(即εŒηΎŽθΆ…钑);每欑袅钑将εžηް&5ε››ε€εŠ ι€Ÿ&rοΌŒθ€Œιžζ™ι€šθΎε€‡ηš„εŒε€εŠ ι€Ÿγ€‚\n\n&3LCR&rθΏ˜ε­˜εœ¨ε¦δΈ€ι‘Ή&6优势&rοΌšε―ι€šθΏ‡ε‰θ£…&32δΈͺ能源仓&rζ₯运葌&5δΈ‹δΈ€ι˜Άζ΅&rηš„ι…ζ–ΉοΌŒζ­€ι‘Ήη‰Ήζ€§δΈŽ&3η”΅εŠ›ι«˜η‚‰&rηš„ζœΊεˆΆη›ΈδΌΌγ€‚", + "quests.high_voltage.lcr.desc.3": "&9提瀺:&rθ€ƒθ™‘εˆ°δ½ ζœ€η»ˆε―θƒ½δ½Ώη”¨ηš„LCRζ•°ι‡οΌŒδΈΊδ»€δΉˆδΈε°θ―•ε……εˆ†εˆ©η”¨&dε…±δΊ«η»“ζž„&rε‘’οΌŸ\n\n你可δ»₯在2δΈͺLCRδΉ‹ι—΄ε…±δΊ«δΈ€δΈͺ2AοΌˆζ ‡ε‡†οΌ‰&3能源仓&r。\n\n你也可δ»₯尝试共享&3θΎ“ε…₯δ»“/θΎ“ε‡Ίδ»“&rοΌŒδ½†ιœ€θ¦η‘保每台LCRθΏθ‘Œηš„ι…ζ–Ήε‡†η‘无误。\n\nθ―·ζ³¨ζ„οΌšη»΄ζŠ€δ»“δΈθƒ½ε…±δΊ«γ€‚", + "quests.high_voltage.tnt.title": "TNT", + "quests.high_voltage.tnt.task": "δ»»δ½•ηˆ†η‚Έη‰©", + "quests.high_voltage.tnt.desc.1": "准倇ε₯½εˆΆδ½œδΈ€δΊ›ηˆ†η‚Έη‰©οΌŒε› δΈΊεƒδ»¬ε°†ζ˜―&cθšηˆ†εŽ‹ηΌ©ζœΊ&rηš„εΏ…ιœ€ζζ–™γ€‚δ½ ζœ‰ε››η§ι€‰ζ‹©οΌˆδ»Žζ˜“εˆ°ιšΎζŽ’εˆ—οΌ‰οΌŒδ½†ζˆ‘δ»¬ε»Ίθεͺ要村仢允θΈε°±δΌ˜ε…ˆεˆΆδ½œ&dε·₯业TNT&r。", + "quests.high_voltage.tnt.desc.2": "&cTNT&rοΌˆδΈ‰η‘εŸΊη”²θ‹―οΌ‰ζ— ζ³•ε†δ½Ώη”¨δΌ η»Ÿηš„η«θ―δΈŽζ²™ε­εˆΆι€ γ€‚δ½ ιœ€θ¦ε…ˆεˆΆδ½œ&a胢凝甲苯&rοΌŒε†δ½Ώε…ΆδΈŽη‘«ι…ΈεεΊ”η”ŸζˆTNT。\n\n使用&3HVεŒ–ε­¦εεΊ”ι‡œ&rηš„ι…ζ–Ήε―δ½Ώ&a胢凝甲苯&rδΊ§ι‡ηΏ»ε€οΌŒδ½†ιœ€ι’ε€–ζΆˆθ€—εŽŸζ–™γ€‚", + "quests.high_voltage.tnt.desc.3": "对于&aη”²θ‹―&rοΌŒζˆ‘δ»¬ζ²‘ζœ‰δ»»δ½•η€ε•ηš„ζŠ€ε·§ε―δ»₯给你。无θΊδ½ ι‡‡ε–ε“ͺ村路线,εƒιƒ½δΌšεΎˆζ£˜ζ‰‹γ€‚\n\nθ―θ™½ε¦‚ζ­€οΌŒε•ζ–Ήε—&3蒸馏ε€&rε­˜εœ¨ε°†&a重燃油&rη›΄ζŽ₯θ’Έι¦ζˆ&aη”²θ‹―&rηš„ι…ζ–ΉοΌŒδΈθ¦εΏ½η•₯歀方法。\n\n&aη”²θ‹―&r还可在&5EV&r阢ζ΅δ½œδΈΊε―ι€‰ζζ–™η”¨δΊŽεˆΆι€ &dζ±½ζ²Ή&r。\n\n&cTNT&rδΈ»θ¦η”¨δΊŽ&3θšηˆ†εŽ‹ηΌ©ζœΊ&rδΈ­εˆΆι€ εηŸ³οΌŒε½“η„ΆεƒδΉŸθƒ½η‚Έζ―δΈœθ₯Ώγ€‚", + "quests.high_voltage.ender_pearls.title": "末影珍珠", + "quests.high_voltage.ender_pearls.subtitle": "η§‘εΉ»εηŸ³οΌŒζˆ–η±»δΌΌηš„δΈœθ₯Ώ", + "quests.high_voltage.ender_pearls.desc": "在 TFG δΈ­οΌŒδ½ δΈδΌšζ‰Ύεˆ°δ»»δ½•ζŽ‰θ½ζœ«ε½±ηη ηš„ζœ«ε½±δΊΊγ€‚\n即使在幽ε†₯δΉ‹εœ°ζ½œθ‘Œηš„ι‚£δΊ›δΉŸεΈδΈδΊ†δ½ γ€‚\n\nη›ΈεοΌŒη›ε‰δ½ ε”―δΈ€ηš„ι€‰ι‘Ήζ˜―θ‡ͺ己刢作:\n\n在&6ι«˜εŽ‹&rζ…ζ‹ŒζœΊδΈ­η»“εˆ&2铍粉&rε’Œ&2钾粉&rοΌŒεˆ›ι€ ε‡ΊιšΎδ»₯ζ‰ζ‘Έηš„&5ζœ«ε½±η²‰&r。\n\nεŒζˆεŽοΌŒε°†ε…Άζ‰”θΏ›&7θšηˆ†εŽ‹ηΌ©ζœΊ&r中,δ»₯ζ Όι›·η§‘ζŠ€ηš„ι£Žζ Όι‡ηŽ°ζ ‡εΏ—ζ€§ηš„ζœ«ε½±ηη γ€‚", + "quests.high_voltage.boules.title": "η£·ζŽΊζ‚ηš„ε•ζ™Άη‘…", + "quests.high_voltage.boules.subtitle": "ε€ͺη‰›δΊ†οΌŒε…„εΌŸοΌ", + "quests.high_voltage.boules.desc": "ζŽΊζ‚ζ˜―ζ•…ζ„ε‘εŠε―Όδ½“δΈ­εΌ•ε…₯杂质δ»₯ζ”Ήε˜ε…Άη‰Ήζ€§ηš„θΏ‡η¨‹γ€‚\n\n&7η‘…&r可δ»₯用少量&eη£·&rζŽΊζ‚οΌŒδ»₯εˆΆι€ ζ›΄ε₯½ηš„&e单晢瑅&r。\n\nη£·ζŽΊζ‚ηš„η‘…ζ™Άι”­ι€šεΈΈζ―”ζœͺζŽΊζ‚ηš„ε―ΉεΊ”η‰©δΊ§ι‡ι«˜&68倍&rγ€‚η„Άθ€ŒοΌŒεœ¨&5EV&r阢ζ΅δΉ‹ε‰εΉΆδΈδΈ₯ζ Όιœ€θ¦οΌŒε±Šζ—Άεƒδ»¬ε°†η”¨δΊŽζ›΄ε€ζ‚ηš„ζ™Άεœ†γ€‚\n\n&9注意&rοΌšζ‰€ζœ‰η£·ζŽΊζ‚ηš„ε•ζ™Άη‘…ε’Œζ™Άεœ†ηš„ε€„η†ιƒ½ιœ€θ¦&d袅净间&r。", + "quests.high_voltage.implosion_compressor.title": "θšηˆ†εŽ‹ηΌ©ζœΊ", + "quests.high_voltage.implosion_compressor.desc": "&3θšηˆ†εŽ‹ηΌ©ζœΊ&r能将εηŸ³η²‰ζœ«ε½’ζ€θ½¬εŒ–δΈΊεŒζ•΄εηŸ³γ€‚\n\nθΏ™ζ˜―θŽ·ε–&a末影珍珠&rηš„εΏ…θ¦θΎε€‡γ€‚\n\n&cTNT&rε―η”¨δΊŽεžζ–½θšηˆ†ζ“δ½œγ€‚", + "quests.high_voltage.nitric_acid.title": "瑝酸", + "quests.high_voltage.nitric_acid.subtitle": "θΏ™δΈδΌšθ…θš€δ½ ηš„ηšθ‚€", + "quests.high_voltage.nitric_acid.desc.1": "η‘ι…Έθ’Έζ±½ε…·ζœ‰ε‰§ζ―’ζ€§οΌεƒεŒζ—ΆθΏ˜ζ˜―δΈ€η§εΌΊζ•ˆζ°§εŒ–ε‰‚γ€‚\n\n&a瑝酸&rδΈ»θ¦η”¨δΊŽοΌš\n\n&9-&rι«˜εε…­ηƒ·ε€ΌζŸ΄ζ²ΉοΌˆε³ε°†θ§£ι”ηš„δΌ˜θ΄¨ζŸ΄ζ²Ήη‡ƒζ–™οΌ‰\n&9-&rη‘εŸΊθ‹―οΌˆθΏ‘ζœŸε°†εˆΆε€‡ηš„ι«˜ζ•ˆζ°”δ½“η‡ƒζ–™οΌ‰\n&9-&rε―ι€‰ηš„εηŸ³ζ΅†ε€„理桁程\n&9-&r&1IV&r阢ζ΅ηš„ι“‚η³»ηŸΏζ³₯倄理链\n&9-&r&1IV&r阢ζ΅ηš„θšθ‹―εΉΆε’ͺε”‘οΌˆθ―•η€εΏ«ι€ŸεΏ΅ειοΌοΌ‰", + "quests.high_voltage.nitric_acid.desc.2": "刢作&a瑝酸&rδΈ»θ¦ζœ‰δΈ€η§ζ–Ήζ³•β€”β€”&oε₯½ηš„&a方法&rε’Œ&4εηš„&r方法!\n\nε› ζ­€οΌŒζˆ‘δ»¬ε°†δΈΊδ½ ζŒ‡εΌ•ζœ€δ½³ζ–Ήζ‘ˆοΌš\n\n使用&3ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ&rεˆΆε€‡&aδΊŒζ°§εŒ–ζ°&r,随后在ζ™ι€š&3εŒ–ε­¦εεΊ”ι‡œ&rδΈ­ε°†ε…ΆδΈŽζ›΄ε€š&dζ°§ζ°”&rε’Œ&dζ°΄&rεεΊ”οΌŒε³ε―εΎ—εˆ°&a瑝酸&r!\n\nζ­€θΏ‡η¨‹ιœ€ζΆˆθ€—ε€§ι‡&dζ°§ζ°”&rοΌŒθ―·ε‚θ€ƒ&7LV&rη« θŠ‚δΈ­ε―ΉεΊ”ηš„δ»»εŠ‘ζ₯θŽ·ε–ι«˜ζ•ˆι‡δΊ§ζ–Ήζ‘ˆγ€‚ζ³¨ζ„θ―₯方法εŒε…¨ζ— ιœ€ζ°’气!", + "quests.high_voltage.cetane_diesel.title": "ι«˜εε…­ηƒ·ε€ΌζŸ΄ζ²Ή", + "quests.high_voltage.cetane_diesel.subtitle": "θΏ™ζ˜―δΈΊδΊ†ζ›΄θΏ›δΈ€ζ­₯", + "quests.high_voltage.cetane_diesel.desc": "旒焢你已经解锁了&6HV&rζ…ζ‹ŒζœΊεΉΆδΈ”ζŽŒζ‘δΊ†&e瑝酸&rεˆΆε€‡ζŠ€ζœ―οΌŒηŽ°εœ¨ε°±ζœ‰ε―θƒ½εˆΆι€ &aι«˜εε…­ηƒ·ε€ΌζŸ΄ζ²Ή&rδΊ†οΌŒε…Άθƒ½ι‡ε―†εΊ¦ε°†ζε‡&e180%%&r。\n\nε”―δΈ€ζ£˜ζ‰‹ηš„ηŽ―θŠ‚ζ˜―θŽ·ε–&bε››η‘εŸΊη”²ηƒ·&r。建θι€šθΏ‡ζ··εˆ&9瑝酸&r与&dδΉ™ηƒ―ι…&rζ₯η”ŸδΊ§β€”β€”θ‹₯ε°†&9η‘«ι…Έ&rοΌˆε½“ε‰εΊ”ε·²ε€§ι‡ε‚¨ε€‡οΌ‰δΈŽ&cδΉ™ι…Έ&rη»“εˆοΌŒδΉ™ηƒ―ι…ηš„εˆΆε€‡εΉΆδΈε›°ιšΎοΌŒθ€ŒδΉ™ι…Έεͺιœ€ι€šθΏ‡&3ζ°§ζ°”&rε’Œ&5δΉ™ηƒ―&rε³ε―θ½»ζΎεˆΆεΎ—γ€‚\n\n&cεˆ«εΏ˜δΊ†&rε°†ζœΊε™¨θΎη½εˆ‡ζ’至2ε·η”΅θ·―ζ¨‘εΌοΌŒε¦εˆ™ζœ€η»ˆδΊ§η‰©ε°†ζ˜―&6θšδΉ™ηƒ―&r!", + "quests.high_voltage.smd_components.title": "贴片元仢", + "quests.high_voltage.smd_components.subtitle": "替代元仢!", + "quests.high_voltage.smd_components.desc": "&e贴片&r&aε…ƒδ»Ά&r是GTCEuη‹¬ζœ‰ηš„η»„δ»ΆοΌŒζ˜―δΈ‹δΈ€δ»£&5ηΊ³η±³ηΊ§&rη”΅θ·―ηš„εΏ…ε€‡ζζ–™οΌŒεœ¨ε€šζ•°η”΅θ·―ι…ζ–ΉδΈ­ε―ζ›Ώδ»£ιžθ΄΄η‰‡ε…ƒδ»Άγ€‚\n\n当焢εƒδ»¬ηš„εˆΆδ½œε·₯θ‰Ίζ›΄δΈΊε€ζ‚β€”β€”δ½†θΏ™ε―ζ˜―ζ Όι›·η§‘ζŠ€οΌδ½ θΏ˜ζœŸεΎ…δ»€δΉˆε‘’οΌŸ\n\nε»ΊθδΈΊθΏ™δΊ›ε…ƒδ»ΆζŠ•θ΅„θ‡ͺεŠ¨εŒ–δΊ§ηΊΏβ€”β€”δ½ ηš„ιœ€ζ±‚ε°†ζ°Έζ— ζ­’ε’ƒγ€‚", + "quests.high_voltage.smd_components_2.title": "ζ›΄ε€šθ΄΄η‰‡ε…ƒδ»Ά", + "quests.high_voltage.smd_components_2.desc": "&aι“‚&rοΌˆεˆΆι€ θ΄΄η‰‡δΊŒζžη‘ζ‰€ιœ€οΌ‰εœ¨&5EV&rζ ‡η­Ύι‘΅θΎζœ‰δΈ“ε±žδ»»εŠ‘ζŒ‡εΌ•γ€‚δΈθΏ‡δ½ δΉŸε―δ»₯η›΄ζŽ₯ι€šθΏ‡ι“‚η³»ηŸΏθ„‰ζˆ–εŒ–ε­¦ζ΄—ζΆ€ζ³•θŽ·εΎ—ι“‚γ€‚\n\n&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oθ΄΄η‰‡η”΅ζ„Ÿεœ¨GTCEuδΈ­ι¦–ζ¬‘η™»εœΊγ€‚θ©ζ‰€ζœ‰η”΅θ·―元仢都ζ‹₯ζœ‰ε―ΉεΊ”ηš„θ΄΄η‰‡εž‹ε·οΌŒδ½ΏεΎ—η³»η»Ÿζ›΄η»ŸδΈ€γ€δ½Ώη”¨ζ›΄δΎΏζ·γ€‚", + "quests.high_voltage.hv_macerator.title": "ι€šη”¨η ”η£¨ζœΊ", + "quests.high_voltage.hv_macerator.subtitle": "η²‰η’ŽηŸΏηŸ³εΉΆθŽ·εΎ—ε‰―δΊ§η‰©", + "quests.high_voltage.hv_macerator.desc.1": "&3HVη ”η£¨ζœΊ&rη»ˆδΊŽθ§£ι”δΊ†JEIδΈ­ζ˜Ύη€Ίηš„ζ‰€ζœ‰ζ§½δ½γ€‚θ‡³ζ­€&9全部&rζ§½δ½ιƒ½ε·²ε―η”¨οΌŒεŒζ—Άδ½Ώδ½ θƒ½ε€Ÿι€šθΏ‡η ”η£¨&dηƒ­εŠ›η¦»εΏƒθΏ‡ηš„ηŸΏηŸ³&rθŽ·εΎ—&6δΈ“ε±žε‰―δΊ§η‰©&r。\n\n经过&5一欑袅钑&rεŽοΌŒη ”η£¨ηŸΏηŸ³δ»…ζΆˆθ€—&a32EU/t&rοΌŒθΏ™ζ„ε‘³η€θ―₯ζœΊε™¨ε―εŒηΎŽθžε…₯&7LV&rδΊ§ηΊΏβ€”β€”ζžδΈΊδΎΏεˆ©γ€‚\n\nε°½η‘θΏ™ε°ζœΊε™¨εΈ¦ζ₯ζ˜Ύθ‘—ζ”ΉθΏ›οΌŒδ½†δ»δΈιœ€δΈΊζ―η§ηŸΏηŸ³ιƒ½ι…η½ι«˜ηΊ§ε€„η†ζ΅η¨‹β€”β€”θƒ½ζΊδΈŽζ—Άι—΄ζˆζœ¬δ»ιœ€θ€ƒι‡οΌ", + "quests.high_voltage.hv_macerator.desc.2": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oεœ¨ζ Όι›·η§‘ζŠ€5uη‰ˆζœ¬δΈ­οΌŒ&6HV&r&oη ”η£¨ζœΊδ»…ζδΎ›δΈ€δΈͺ槽位。呃...εζ­£ζˆ‘δ»¬ζœ¬ζ₯δΉŸζ²‘ζ‰“η—η”¨ι‚£δΊ›ηŸ³η²‰...&r", + "quests.high_voltage.ammonia.title": "ζ°¨", + "quests.high_voltage.ammonia.desc": "&aζ°¨&r在&6HV&r阢ζ΅ε±žδΊŽ&d可选&r材料。\n\nε…ΆδΈ»θ¦η”¨ι€”εŒ…ζ‹¬οΌš\n&9-&rεˆΆε€‡η‘ι…ΈοΌˆθ™½η„Άζˆ‘δ»¬δΈζŽ¨θθΏ™δΈͺοΌ‰\n&9-&rεˆΆι€ η«η­η‡ƒζ–™οΌˆη¦»εΌ€εœ°ηƒηš„εΏ…ιœ€ε“οΌ‰\n&9-&r在&1IV&r阢ζ΅η”ŸδΊ§θšθ‹―εΉΆε’ͺε”‘οΌˆθΏ™εε­—ηœŸζ˜―δΈͺ绕口什!)\n\n\"ζœ€ηœεΏƒ\"ηš„ι…ζ–Ήε½“ε±ž&3HVεŒ–ε­¦εεΊ”ι‡œ&rδΈ­ηš„εˆζˆθ·―εΎ„γ€‚θ―·η‘δΏδ½ ηš„&aζ°’ζ°”&rδΊ§ι‡οΌˆδΈ»θ¦ζ₯θ‡ͺ&aη”΅θ§£ζ°΄&rοΌ‰θΆ³δ»₯ζ»‘θΆ³ιœ€ζ±‚γ€‚\n\nζ­€ε€–οΌŒε€„η†&dι“‚η³»ηŸΏζ³₯&rζ—ΆδΉŸε―ε°†&aζ°¨&rδ½œδΈΊε‰―δΊ§ε“θŽ·ε–γ€‚", + "quests.high_voltage.hv_mixer.title": "ι«˜εŽ‹ζ…ζ‹ŒζœΊ", + "quests.high_voltage.hv_mixer.subtitle": "ζ…ζ‹Œδ»Žζœͺε¦‚ζ­€ηΎŽε₯½", + "quests.high_voltage.hv_mixer.desc": "δ½ ε°†ιœ€θ¦&6ι«˜εŽ‹&rζ…ζ‹ŒζœΊζ₯εˆΆι€ &6火η­εˆι‡‘&rοΌŒδ½†θΏ™εΉΆδΈζ˜―εƒε”―δΈ€ζœ‰η”¨ηš„ι…ζ–Ήγ€‚\n\nεƒθΏ˜ε°†θ§£ι”οΌš\n- &dι“Ÿ&r\n- &eι«˜εε…­ηƒ·ε€ΌζŸ΄ζ²Ή&r\n- εˆΆι€ &9ζΆ‘θ½θ½¬ε­&rηš„εθ΄΅ζζ–™&6ε“ˆζ°εˆι‡‘&r\n- &dη¦ι²δΌŠε…‹ζ–―ζ°΄ζ™Ά&rοΌŒθΏ™ε―Ή&dAE2&r绝对至关重要", + "quests.high_voltage.blue_alloy.title": "θ“θ‰²εˆι‡‘", + "quests.high_voltage.blue_alloy.subtitle": "δ½ ηŽ°εœ¨ε˜θ“δΊ†...ι‚£ζ˜―ζˆ‘ηš„εˆι‡‘", + "quests.high_voltage.blue_alloy.desc": "&aθ“θ‰²εˆι‡‘&rζ˜―δΈ€η§δΌ˜η§€ηš„&6HV&r甡缆材料。\n\nε½“η„ΆδΉŸε―η”¨δΊŽδΌ θΎ“&bMV&rη”΅εŠ›οΌδ½†θ―·ζ³¨ζ„ιΏε…δ½ΏζœΊε™¨ζ‰Ώε—θΏ‡θ½½η”΅εŽ‹γ€‚\n\n&6HV&rθΆ…ε―Όζζ–™ε°†εœ¨β€¦εŽη»­ι˜Άζ΅θ§£ι”γ€‚\n\n&aθ“ηŸ³&r是δ»₯ηŸΏηŸ³ε½’ζ€η”Ÿζˆηš„οΌŒζ‰€δ»₯δΈθ¦η”¨ζ…ζ‹ŒζœΊζ₯合成!\n\nζ­€ε€–οΌŒ&aθ“ηŸ³&r可δ»₯εˆ†η¦»δΈΊ&dη₯珀金&r与&d纒石&r。", + "quests.high_voltage.ev_circuits.title": "第一δΈͺEV甡路!", + "quests.high_voltage.ev_circuits.subtitle": "θ„±ι’–θ€Œε‡Ί", + "quests.high_voltage.ev_circuits.desc": "δ½ ηš„η¬¬δΈ€δΈͺ&5EV&rη”΅θ·―ζ‹₯ζœ‰η‹¬η‰Ήηš„ηΊΉη†γ€‚ε¦‚ζžœδ½ δ»η„Άθ€δΈΊθ‡ͺε·±ε€„δΊŽ&bMV&r阢ζ΅οΌŒθ―·&aζš‚ηΌ“&rε€§ι‡εˆΆδ½œβ€”β€”εƒδ»¬η›ε‰δΈδΌšεΈ¦ζ₯εžι™…ε₯½ε€„γ€‚ε½“η„ΆοΌŒε¦‚ζžœδ½ &dεͺζ˜―ζƒ³ε‘ζˆ‘δ»¬η‚«θ€€&rοΌŒζˆ‘δ»¬δΉŸδΈδΌšι˜»ζ­’δ½ εˆΆδ½œθΏ™δΊ›γ€‚", + "quests.high_voltage.hv_hull.title": "欒迎ζ₯到HV!", + "quests.high_voltage.hv_hull.subtitle": "ε³ε°†ζˆδΈΊε€ͺ空矿ε·₯", + "quests.high_voltage.hv_hull.desc.1": "&2ζˆ‘δ»¬εΈŒζœ›δ½ ε·²η»ζŽŒζ‘δΊ†&9ζ Όι›·η§‘ζŠ€&rηš„ηͺι—¨οΌŒηŽ°εœ¨θ―₯ζ˜―θΏ›δΈ€ζ­₯ζε‡ζŠ€θƒ½ηš„ζ—Άε€™δΊ†γ€‚\nεœ¨ζœ¬η« θŠ‚δΈ­οΌŒδ½ ε°†θ§£ι”&eι«˜ηΊ§ε€šζ–Ήε—η»“ζž„&r、&e倍杂ε·₯艺桁程&rοΌŒη”šθ‡³θΏˆε‡Ίη™»ι™†&fζœˆηƒ&rηš„η¬¬δΈ€ζ­₯!\n\n&6ζœ¬η« δΈ€ε€§ζ ΈεΏƒη›ζ ‡οΌš&r\n- εˆΆι€ η¬¬δΈ€δΈͺ&5EVζœΊε™¨ε€–ε£³&r\n- εΌ€ε―δ½ ηš„&fζœˆηƒ&r征程\n\nθ§£ι”ζœˆηƒθΏ˜ε°†εΈ¦ζ₯&bθ΅›η‰Ήζ–―ηŸ³θ‹±&rθ΅„ζΊοΌŒδΈΊζž„ε»Ί&d应用能源2&rη³»η»Ÿι“ΊεΉ³ι“θ·―γ€‚δ½ ε―θ‡ͺ由选择εŒζˆθΏ™δΊ›η›ζ ‡ηš„鑺序。", + "quests.high_voltage.hv_hull.desc.2": "刢作&5EV&rζœΊε™¨ε€–ε£³ιœ€εŒζˆδ»₯δΈ‹ζ­₯ιͺ€οΌš\n-ε»Ίι€ δ½ ηš„η¬¬δΈ€δΈͺ&a袅净间&r\n-ε»Ίι€ δΈ€δΈͺ&bηœŸη©Ίε†·ε†»ζœΊ&rη”¨δΊŽε†·ε΄ηƒ­ι”­\n-ε°†&9ι‡‘ηΊ’ηŸ³&r加ε·₯成&7ι’›&r\n\n你可在&fζœˆηƒ&rζ‰Ύεˆ°ε€§ι‡&9ι‡‘ηΊ’ηŸ³&rοΌŒζ­€ε€–&aδΈ»δΈ–η•Œ&rηš„&eι“εœŸηŸΏ&rηŸΏθ„‰δΈ­δΉŸθ•΄θ—θ―₯衄源。", + "quests.high_voltage.hv_hull.desc.3": "η™»ι™†ζœˆηƒιœ€εŒζˆοΌš\n-εˆΆε€‡θΆ³ι‡&6火η­εˆι‡‘&r\n-ι€šθΏ‡&3εŒ–ε­¦ζ΅Έζ΄—ε™¨&r与&7θšηˆ†εŽ‹ηΌ©ζœΊ&rεˆΆδ½œι¦–δΈͺ&eζœ«ε½±δΉ‹ηœΌ&r\n-ε€‡ι½εœ¨ε€ͺη©ΊδΈ­ε‘ΌεΈζ‰€ιœ€ηš„&bε…¨ε₯—装倇&r\n\n配倇&bηœŸη©Ίε†·ε†»ζœΊ&r与&6高级线圈&rε―εŠ ι€Ÿ&6火η­εˆι‡‘&rη”ŸδΊ§οΌŒδ½†ιžεΌΊεˆΆθ¦ζ±‚γ€‚\n\n&dι€‰ζ‹©δ½ ηš„θ·―ηΊΏοΌ&r", + "quests.high_voltage.nichrome.title": "ι•ι“¬εˆι‡‘ι”­", + "quests.high_voltage.nichrome.subtitle": "εƒζ²‘ε€šε€§η”¨ε€„", + "quests.high_voltage.nichrome.desc": "η¬¬δΈ‰δ»£εˆι‡‘ηŽ°ε·²ι—δΈ–οΌŒθΏ™ζ˜―刢作&6η”΅εŠ›ι«˜η‚‰&rδΈ‹δΈ€ηΊ§ηΊΏεœˆηš„ζ ΈεΏƒζζ–™γ€‚\n\nη…§δΎ‹δ½ ιœ€θ¦ε‡†ε€‡&9128δΈͺι”­&rοΌŒδ½†θΏ™ζ¬‘δ½ δΌšε‘ηŽ°ζ— ζ³•δ½Ώη”¨&6εŒ–ε­¦ζ΅Έζ΄—ζœΊ&rοΌŒθ€ŒεΏ…ι‘»ζ”Ήη”¨&6ηœŸη©Ίε†·ε†»ζœΊ&rθΏ›θ‘Œε€„η†γ€‚\n\nε₯½ζΆˆζ―ζ˜―οΌšζ–°ζ΅η¨‹εžι™…δΈŠζ›΄η€ε•εΏ«ι€Ÿγ€‚\n\nε½“ε‰ηΊΏεœˆδ»…ιœ€δ½Ώη”¨&6ι•ι“¬εˆι‡‘&rοΌŒδ½†εˆ«ζŽ‰δ»₯θ½»εΏƒβ€”β€”εŽη»­&5ι’Œι’¨ι’Όεˆι‡‘ηΊΏεœˆ&rδ»δΌšη”¨εˆ°θΏ™η§ζζ–™γ€‚", + "quests.high_voltage.rocket_t1.title": "δ½ ηš„η¬¬δΈ€δΈͺ火η­οΌ", + "quests.high_voltage.rocket_t1.subtitle": "εƒι‡ŒδΉ‹θ‘Œη¬¬δΈ€ζ­₯", + "quests.high_voltage.rocket_t1.desc": "ε“‡ε“¦οΌŒζ˜―ζ—Άε€™ε»Ίι€ δ½ ηš„&6火η­&r了!\n\n使用&d8δΈͺ致密火η­εˆι‡‘&rη»„θ£…ζ‰€ζœ‰ιƒ¨δ»Άγ€‚εŒζˆιš”ηƒ­ε±‚ιœ€θ¦&b2304mB梲态瑅&rοΌˆη›Έε½“δΊŽ&b16δΈͺη‘…ι”­&rοΌ‰ε’Œ&f16δ»½η²‰ζœ«&r。\n\nδ½ ζœ‰δΈ€η§ι€‰ζ‹©οΌš\n&e-&r&eη‘Όη‘…ηŽ»η’ƒη²‰&r:在&6ζ…ζ‹ŒζœΊ&r中用&dη‘Ό&r与&fηŽ»η’ƒη²‰&r合成\n\n&e-&r&5ηŽ»η’ƒεŒ–ηŸ³ζ£‰η²‰&rοΌšι€šθΏ‡&6热解炉&rθŽ·ε–\n\n选择对你ζ₯θ―΄ζœ€η€ε•ηš„ζ–Ήζ‘ˆε³ε―!", + "quests.high_voltage.vitrified_pearl.title": "ηŽ»η’ƒεŒ–ζœ«ε½±ηη ", + "quests.high_voltage.vitrified_pearl.subtitle": "δΈ€η§εΌ‚εŸŸι™Άη“·", + "quests.high_voltage.vitrified_pearl.desc": "ε°†ζœ«ε½±ηη δΈŽι€‚ι‡ιš”ηƒ­ζζ–™δΈ€εŒζ”Ύε…₯&e热解炉&rεŠ ηƒ­οΌŒε°†ε…Άε……εˆ†ηŽ»η’ƒεŒ–ε€„η†ζˆη±»δΌΌ&3ι™Άη“·&rηš„ζθ΄¨γ€‚\n\nδ½ η›ε‰ηš„ιœ€ζ±‚εΉΆδΈε€šβ€”β€”θ‡³ε°‘δ»…δΈΊ&6火η­&rε’Œ&6HVη”΅θ·―η»„θ£…ζœΊ&r各准倇一δΈͺ即可。\nδ½†θ―·ζ³¨ζ„οΌšδ»Ž&5EV&r阢ζ΅εΌ€ε§‹οΌŒιœ€ζ±‚量将ζ€₯剧攀升。", + "quests.high_voltage.kaolinite_powder.title": "ι«˜ζΈ©θ€η«ι»εœŸ", + "quests.high_voltage.kaolinite_powder.subtitle": "δ½ ζ²‘ζƒ³ζˆ‘οΌŒε―Ήε§οΌŸ", + "quests.high_voltage.kaolinite_powder.desc": "εζΆˆζ―ζ˜―οΌšδ½ ε³ε°†θ¦ε’ŒδΈ€δ½θ€ζœ‹ε‹ι‡ι€’γ€‚ε₯½ζΆˆζ―ζ˜―οΌšι‡ι€’εœ°η‚Ήε°±εœ¨δ½ θ‡ͺε·±εΆι‡ŒοΌ\n\nε¦‚ζžœδ½ δ»“εΊ“ι‡ŒθΏ˜ε­˜η€εΎˆδΉ…δ»₯ε‰ζŒ–ηš„&4高岭石&rοΌŒζ˜―ζ—Άε€™ζŠŠεƒδ»¬δ»Žζ—§ε†Άη‚ΌζˆΏι‡ŒηΏ»ε‡Ίζ₯δΊ†γ€‚θ¦ζ˜―ζ²‘ζœ‰εΊ“ε­˜δΉŸεˆ«ζ‹…εΏƒοΌŒεζ­£ηŽ°εœ¨δ½ εŒε…¨ε―δ»₯在εΆθ‡ͺεˆΆδΊ†οΌ\n\nι«˜ε²­ηŸ³η²‰εŽη»­ε°†η”¨δΊŽε·₯δΈšι™Άη“·δΈŽιš”ηƒ­ε±‚η­‰ι…ζ–Ήγ€‚", + "quests.high_voltage.linked_quest_energy.title": "ζ›΄ε€šε…³δΊŽθƒ½ζΊηš„δΏ‘ζ―", + "quests.high_voltage.linked_quest_energy.subtitle": "ζ Όι›·η§‘ζŠ€η»΄εŸΊη™Ύη§‘", + "quests.high_voltage.linked_quest_energy.desc": "θΏ˜εœ¨η”¨θ’Έζ±½ε‘η”΅οΌŸζƒ³ζ·±ε…₯δΊ†θ§£ζ Όι›·η§‘ζŠ€θƒ½ζΊη³»η»ŸοΌŸθ―·εŠ‘εΏ…ζŸ₯ηœ‹ζ Όι›·η§‘ζŠ€θƒ½ζΊδ»»εŠ‘η« θŠ‚οΌ", + "quests.high_voltage.linked_quest_energy.task": "ζŸ₯ηœ‹θƒ½ζΊη« θŠ‚", + "quests.high_voltage.ev_machine_hull.title": "&5EV&rζœΊε™¨ε€–ε£³", + "quests.high_voltage.ev_machine_hull.subtitle": "ζ Όι›·η§‘ζŠ€η­‰ηΊ§θΏ›εΊ¦ε·²εŒζˆδΈ€εŠ", + "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": "智商250", + "quests.high_voltage.250_iq.subtitle": "εˆ«ε†ηƒ«δΌ€δ½ ηš„ζ‰‹δΊ†οΌ", + "quests.high_voltage.250_iq.desc.1": "θΏ™ζ˜―δΈ€δ»½ε…³δΊŽε¦‚δ½•εžηŽ°ηƒ­ι”­ε…¨θ‡ͺεŠ¨εˆ†ζ‹£θ‡³εŒ–ε­¦ζ΅Έζ΄—ζœΊοΌŒεΉΆδΏζŒζ•΄δΈͺη³»η»Ÿι«˜ζ•ˆθΏθ½¬ηš„ζŒ‡ε—γ€‚\n\nε»‰δ»·ηš„ζ–Ήζ‘ˆζ˜―δ½Ώη”¨θΏ‡ζ»€ε™¨ζ‰‹εŠ¨ι€δΈͺζ·»εŠ ηƒ­ι”­...但εžεœ¨ε€ͺζ— θŠδΊ†οΌδΈε¦‚ε°θ―•ζ›΄ζ™Ίθƒ½ηš„ζ–Ήζ‘ˆγ€‚\n\n在&3εŒ–ε­¦ζ΅Έζ΄—ζœΊ&r侧青ε‰θ£…&aη‰©ε“ζ ‡η­ΎθΏ‡ζ»€ε™¨θ¦†η›–η‰ˆ&rοΌŒε°†ε…ΆθΎη½δΈΊη™½εε•樑式幢输ε…₯ζ ‡η­Ύ&e&l*hot_ingots*&r。\n\nζ­€εŽε³ε―ι€šθΏ‡&9δ»»ζ„η‰©ζ΅η³»η»Ÿ&rθΏ›θ‘Œθ‡ͺεŠ¨εŒ–θΎ“ι€γ€‚", + "quests.high_voltage.250_iq.desc.2": "ε°†&3η”΅εŠ›ι«˜η‚‰&rηš„θΎ“ε‡Ίη«―θΏžζŽ₯至&3εŒ–ε­¦ζ΅Έζ΄—ζœΊ&rηš„θΎ“ε…₯η«―οΌŒεΉΆε°†ε…ΆθΎ“ε‡Ίη«―ζŽ₯ε…₯η±ε­ζˆ–板村η±γ€‚ε―εœ¨θΎ“ε‡Ίη«―ε‰ε‰θ£…&dεŠ ε›Ίη‘道&r,η‘δΏεŒ–ε­¦ζ΅Έζ΄—ζœΊε§‹η»ˆδΊ«ζœ‰ε€„η†δΌ˜ε…ˆηΊ§γ€‚\n\n&l&9ζ³¨ζ„οΌš&rθ‹₯ιœ€ζŸ₯ηœ‹ζ›΄ε€šθ‡ͺεŠ¨εŒ–ζ ‡η­ΎοΌŒε―εœ¨η‰©ε“ζη€Ίζ‘†ε†…ζŒ‰δ½Shiftι”ζŸ₯ηœ‹γ€‚δΎ‹ε¦‚εΈ¦ζœ‰&e&o#forge:plates/copper&rζ ‡η­Ύηš„η‰©ε“οΌŒη­›ι€‰ζ—ΆθΎ“ε…₯&e&lplates/copper&r即可。\n\n&9&lθ‘₯ε……θ―΄ζ˜ŽοΌš&rη‰©ε“ζ ‡η­ΎθΏ‡ζ»€ε‘ζ”―ζŒ&dζ­£εˆ™θ‘¨θΎΎεΌ&rοΌŒζ‚¬εœζŸ₯ηœ‹δΏ‘ζ―ε›Ύζ ‡ε―θŽ·ε–θ―¦η»†θ―΄ζ˜Žγ€‚", + "quests.high_voltage.bedrock_miner.subtitle": "ζ— ι™ηŸΏηŸ³οΌŸ", + "quests.high_voltage.bedrock_miner.desc.1": "θΏ™ε―θƒ½ζ˜―δ½ η¬¬δΈ€ζ¬‘ζŽ₯触&cεŸΊε²©ι‡‡ηŸΏζœΊ&rοΌŒε› δΈΊεƒεœ¨ζ Όι›·η§‘ζŠ€δΈ­θΎƒδΈΊη½•θ§γ€‚\nεƒηš„εŠŸθƒ½η±»δΌΌδΊŽ&bζ΅δ½“ι’»ζœΊ&rοΌŒδ½†η›ζ ‡ηŸΏθ„‰ε°†&n永不枯竭&r。\n\nεƒηš„θƒ½θ€—ζžδ½Žβ€”β€”εœ¨&bMV&rζˆ–&6HV&r阢ζ΅ε³ε―稳εšθΏθ‘ŒοΌŒδΈ”&aζ— ιœ€δ»»δ½•θ€—ζ&r。\n\nι‚£δΉˆοΌŒδ»£δ»·ζ˜―δ»€δΉˆοΌŸ\nζ‰Ύεˆ°ηŸΏθ„‰γ€‚", + "quests.high_voltage.bedrock_miner.desc.2": "δ½ ιœ€θ¦δΈ€δΈͺ&6HV&r排矿δ»ͺεΉΆεˆ‡ζ’θ‡³&oεŸΊε²©ηŸΏθ„‰ε‹˜ζŽ’ζ¨‘εΌ&r(&7Shift+右ι”&rοΌ‰οΌŒεŒζ—Άε‡†ε€‡θΆ³ε€Ÿηš„θ€εΏƒγ€‚εšδ½εˆ°η›ζ ‡ηŸΏθ„‰εŽοΌŒθΏ˜ιœ€θΎθ‘ε¦‚δ½•ε°†θ΅„ζΊθΏε›žε‰ε“¨η«™γ€‚\n\n在&fζœˆηƒ&rδΈŠδ½ ε°†ζ‰Ύεˆ°ι¦–ζ‰ΉεŸΊε²©ηŸΏθ„‰οΌŒδ»Žζ­€θƒ½ζ°ΈδΉ…ε…θ΄Ήθ‡ͺεŠ¨θŽ·ε–ε€šη§ε…³ι”衄源。请ζŸ₯ι˜…JEI了解可采集内εΉοΌζƒι‡ε€ΌθΆŠι«˜δ»£θ‘¨ηŸΏθ„‰θΆŠεΈΈθ§γ€‚\n\nι‰΄δΊŽηŸΏθ„‰εˆ†εΈƒη¨€η–οΌŒθΏ™ζ­£ε₯½ζˆδΈΊδΏε»Ί&7ζœˆηƒεˆ—θ½¦&rηš„η»δ½³η†η”±οΌ", + "quests.high_voltage.space_alloy.title": "Rεž‹ι“ι’’", + "quests.high_voltage.space_alloy.subtitle": "θΏ™ζ˜―ζˆ‘δ»¬ηΌ–ι€ ηš„εˆι‡‘", + "quests.high_voltage.space_alloy.desc.1": "θ¦εˆΆδ½œη¬¬δΈ€δΈͺ&6火η­εˆι‡‘&rζ—ΆοΌŒδ½ ιœ€θ¦ε°†&7铝&r、&7δΈι”ˆι’’&r与&c梲态纒钒&rζ”Ύε…₯ζ–°ε‡ηΊ§ηš„&6HV&rζ…ζ‹ŒζœΊδΈ­ζ··εˆγ€‚\n\nθ―₯ι…ζ–Ήθ€—ζ—ΆθΎƒι•ΏοΌŒθ―·η‘δΏζ…ζ‹ŒζœΊθƒ½ε…¨η¨‹δΈ“ζ³¨ε€„η†ζ­€δ»»εŠ‘γ€‚\n\nζ··εˆεΎ—εˆ°ηš„η²‰ζœ«ιœ€εœ¨&bMV&rηΊ§εˆ«ηš„η”΅εŠ›ι«˜η‚‰δΈ­η†”η‚Όγ€‚θ‹₯你已配倇&6ι•ι“¬εˆι‡‘ηΊΏεœˆ&rδΈ”ι«˜η‚‰δ»₯&6HV&rθΏθ‘ŒοΌŒε³ε―ε―Ήζ­€ι…ζ–Ήεžζ–½&aεŒηΎŽθΆ…ι’‘&r!(θ‹₯η†θ§£ε›°ιšΎθ―·ζŸ₯ι˜…ζ Όι›·η§‘ζŠ€θƒ½ζΊη« θŠ‚οΌ‰", + "quests.high_voltage.space_alloy.desc.2": "你可δ»₯用&9εŒ–ε­¦ζ΅Έζ΄—ζœΊ&rε†·ε΄ι”­οΌŒε¦‚ζžœε·²η»ι…ε€‡&9ηœŸη©Ίε†·ε†»ζœΊ&rεˆ™θƒ½θΏ›δΈ€ζ­₯ηΌ©ηŸ­ε€„η†ζ—Άι—΄γ€‚\n\n&7144mBη­‰δΊŽ1δΈͺι”­&rοΌŒζ³¨ζ„ιΏε…ζε–ε€ͺε€šηš„&cηΊ’ι’’&r。\n\nδ½ ζ€»θ‘ιœ€θ¦&685δΈͺ火η­εˆι‡‘&rι”­οΌŒθΏ™ζ„ε‘³η€οΌš\n-&760δΈͺ铝&r\n-&720δΈͺδΈι”ˆι’’&r\n-&710δΈͺηΊ’ι’’&r\n\n&a不η—ε€ͺ糟!&r", + "quests.high_voltage.steel_engine.subtitle": "θ“ι’’ε›žζ₯δΊ†οΌŒεθ΄", + "quests.high_voltage.steel_engine.desc": "&6ι’’εΌ•ζ“Ž&r是火η­&aε‰εΎ€ζœˆηƒ&rηš„εΏ…ε€‡η»„δ»Άγ€‚\n\nι…ζ–ΉιšΎεΊ¦ι€‚δΈ­β€”β€”ζˆ‘δ»¬η›ΈδΏ‘δ½ ε·²ε‡†ε€‡ε₯½εΊ”对每δΈͺηŽ―θŠ‚γ€‚\n\nθŽ·ε–&91152mB梲态蓝钒&rιœ€θ¦&78δΈͺι”­&r。", + "quests.high_voltage.rocket_fins.subtitle": "θΏ™ζ ·δ½ ε°±θƒ½εˆ°θΎΎζ­£η‘ηš„η›ηš„εœ°", + "quests.high_voltage.rocket_fins.desc": "ζœ€εˆζˆ‘δ»¬θ©&6火η­ε°ΎηΏΌ&r使用&bεˆι‡‘η‚‰&rεˆΆι€ οΌŒεͺζ˜―δΈΊδΊ†ζι†’δ½ ηŽ°εœ¨ε·²ε―ε»Ίι€ &bε·₯δΈšη†”η‚‰&rβ€”β€”θΏ™ε°η²Ύε·§ηš„η”΅εŠ›η†”η‚‰ζ—’θƒ½ε……ε½“&e熔炉&rοΌŒεˆθƒ½δ½œδΈΊ&bεˆι‡‘η‚‰&r使用。\n\nη›Έε…³εˆΆδ½œδ»»εŠ‘δ½δΊŽ&bMV&rη« θŠ‚γ€‚\n\nηŽ°εœ¨ζˆ‘δ»¬ε°†θ―₯ι…ζ–Ήθ°ƒζ•΄δΈΊη»„θ£…ζœΊεˆΆδ½œοΌŒζ―•η«Ÿ\"火η­ε°ΎηΏΌ\"ζœ¬θ΄¨δΈŠεΉΆιžεˆι‡‘γ€‚", + "quests.high_voltage.rocket_nose_cone.subtitle": "ιΌ»ι”₯θ‡ͺζœ‰η­”ζ‘ˆ...", + "quests.high_voltage.rocket_nose_cone.desc": "&6火η­ιΌ»ι”₯&rζ˜―ζ•΄δΈͺ火η­εˆΆι€ δΈ­ζœ€ε€ζ‚ηš„ιƒ¨δ»Άγ€‚\nδ½ ιœ€θ¦ε‡†ε€‡ε€§ι‡&aθšδΉ™ηƒ―&rβ€”β€”εΈŒζœ›ε·²εžηްθ‡ͺεŠ¨εŒ–η”ŸδΊ§β€”β€”δ»₯εŠδΈ€δΈͺ&6HV发射器&r。\nδ½ εΊ”θ―₯θƒ½ε€Ÿι€šθΏ‡η”΅θ§£&cηΊ’εηŸ³η²‰&rθŽ·εΎ—&d铬&r。\n\n&aηŽ»η’ƒεŒ–ζœ«ε½±ηη &rηš„εˆΆε€‡ζ›΄δΈΊζ£˜ζ‰‹οΌŒιœ€θ¦δ½ ε…ˆεŒζˆη”±&6HVεŒ–ε­¦εεΊ”ι‡œ&rθ§£ι”ηš„δ»»εŠ‘ι“Ύγ€‚\n请准倇ε₯½εˆΆδ½œ&cTNT&r、搭建&5θšηˆ†εŽ‹ηΌ©ζœΊ&r,幢人ε·₯εˆζˆζœ«ε½±δΊΊζŽ‰θ½η‰©β€”β€”ε› δΈΊεœ¨&2羀峦格雷&rζ•΄εˆεŒ…δΈ­ζ— ζ³•θ‡ͺη„ΆθŽ·ε–ζœ«ε½±ηη γ€‚", + "quests.high_voltage.launch_pad.subtitle": "发射准倇就η»ͺοΌŒε€’θ‘ζ—Ά10秒…", + "quests.high_voltage.launch_pad.desc": "ε‘ε°„ε°ζ˜―η«η­&6必倇&rηš„θ΅·ι£žθΎζ–½β€”β€”ε―δΈθƒ½ιšδΎΏζ‰ΎδΈͺεœ°ζ–Ήζ”Ύη½οΌ\n\nθ―·&c反倍η‘θ€&rδ½ ιšθΊ«ζΊεΈ¦δΊ†&c第二δΈͺ发射台&rοΌŒθΏ”η¨‹ζ—Άδ»ιœ€δ½Ώη”¨οΌ", + "quests.high_voltage.rocket_fuel.title": "火η­η‡ƒζ–™", + "quests.high_voltage.rocket_fuel.subtitle": "ζ―”δ½ ζƒ³ηš„ζ›΄εΉζ˜“", + "quests.high_voltage.rocket_fuel.desc": "每欑火η­ζ—…θ‘ŒοΌŒδ½ ιƒ½ε°†ιœ€θ¦&6三摢火η­η‡ƒζ–™&rγ€‚ι…ζ–Ήηœ‹δΌΌε€ζ‚οΌˆθ―΄εžθ―ζ­₯ιͺ€η‘εžεΎˆε€šοΌ‰οΌŒδ½†ζ‰€ζœ‰εŽŸζ–™δ»…ιœ€&bζ°―&r、&bη”²ηƒ·&r、&bζ°&r、&bζ°§&rε’Œ&bζ°΄&rβ€”β€”εŒε…¨εœ¨ε―ζŽ§θŒƒε›΄ε†…οΌ\n\nε¦‚ζžœδ½ ε·²η»ζœ‰δΈ€ε°&5ε€§εž‹εŒ–ε­¦εεΊ”ι‡œ&rοΌŒη”šθ‡³θƒ½θ·³θΏ‡ζŸδΊ›δΈ­ι—΄ζ­₯ιͺ€οΌ\n\nε¦‚ζžœδ½ θΏ˜ζ²‘δ½Ώη”¨θΏ‡θ―₯εŠŸθƒ½οΌŒε»Ίθ立即尝试&7EMI配方树&rβ€”β€”η‚Ήε‡»εˆζˆι…ζ–Ήε³δΎ§εΈ¦ζœ‰4δΈͺζ–Ήε—η»„ζˆηš„ε°ε›Ύζ ‡οΌŒη„ΆεŽε°†ιΌ ζ ‡ζ‚¬εœεœ¨ε±εΉ•ε³δΈ‹θ§’ηš„ι—号标θ°δΈŠε³ε―ζŸ₯ηœ‹εŒζ•΄θ―΄ζ˜ŽοΌ", + "quests.high_voltage.space_suit.title": "θˆͺ倩服", + "quests.high_voltage.space_suit.subtitle": "θΏ™ε―θƒ½ζ˜―ζœ€ιšΎηš„ιƒ¨εˆ†", + "quests.high_voltage.space_suit.desc.1": "ζˆ‘δ»¬η†θ§£δ½ ζ€₯εˆ‡ε―η¨‹ηš„εΏƒζƒ…οΌŒδ½†ε¦‚ζžœδ½ ζƒ³εœ¨ζœˆηƒδΈŠε€šζ΄»ε‡ η§’ι’ŸοΌŒε°±εΏ…ι‘»ζœ‰δΈ€ε₯—θ£…θ½½&b可呼吸气体&rηš„ε‡θˆͺζœβ€”β€”θ‹₯想εžηŽ°ε…θ„±ε……ζ°”οΌŒθΏ˜ιœ€ζΊεΈ¦&e储气罐&r。\n\nζœ€ε€ζ‚ηš„ηŽ―θŠ‚ε½“ε±žεˆΆδ½œ&dθšε·±ε†…ι…°θƒΊηΊ€η»΄&rοΌˆε³ε°ΌιΎ™οΌ‰γ€‚\n\nδ½ ε°†ιœ€θ¦δΈ€δΈͺη”΅εŠ›ι«˜η‚‰δΈŽδΈ€δΈͺ&6HV&r&eεŒ–ε­¦εεΊ”ι‡œ&r。\n\nεœ¨ζ­€εŸΊη‘€δΈŠοΌŒε―ι€šθΏ‡&aθ‹―&r、&bζ°’&r、&9ζ°―&r、&bζ°§&r及&3ζ°¨&rζ₯合成εƒγ€‚\n\nι‰΄δΊŽδ½ ε·²η»ζ˜―δΈ€εη»ιͺŒδΈ°ε―Œηš„ζ Όι›·η§‘ζŠ€ηŽ©εΆοΌŒζˆ‘δ»¬δΈδΌšε†ι€ζ­₯ζŒ‡ε―Όβ€”β€”η›ΈδΏ‘δ½ εŒε…¨θƒ½ι &aEMI&rθ‡ͺ己解决。", + "quests.high_voltage.space_suit.desc.2": "ε½“δΈ€εˆ‡ε‡†ε€‡ε°±η»ͺ,εͺιœ€&e右ι”点击&rθ£…ζœ‰ε―ε‘ΌεΈζ°”δ½“οΌˆδΎ‹ε¦‚&bεŽ‹ηΌ©ζ°ζ°§ζ··εˆζ°”&rοΌ‰ηš„ζ‘Άζˆ–ε‚¨η½ε³ε―εŒζˆε‘«ε……οΌŒζ“δ½œι€»θΎ‘δΈŽζ‘Άθ£…ζ΅δ½“η›ΈεŒγ€‚ζ―1000mBζ°”δ½“ε―η»΄ζŒ20εˆ†ι’Ÿη”Ÿε‘½ζ”―ζŒγ€‚η©Ώζˆ΄ε€ͺη©ΊζœεŽοΌŒε―ι€šθΏ‡\"ι₯用\"储气罐直ζŽ₯δΈΊε‡θˆͺ服θ‘₯充气体。\n\nε»ΊθζŸ₯ι˜…ε€ͺη©Ίη”Ÿε­˜δ»»εŠ‘η« θŠ‚οΌŒη‘θ€ζ˜―ε¦θΏ˜ιœ€ζΊεΈ¦ε…Άδ»–εΏ…ε€‡η‰©θ΅„οΌ", + "quests.high_voltage.space_suit.task": "ε‘«ε……εΉΆι₯用", + "quests.high_voltage.welcome_moon.title": "ζˆ‘εœ¨&3ζœˆηƒ&r上!", + "quests.high_voltage.welcome_moon.subtitle": "但愿你已倇ε¦₯θΏ”η¨‹ζ‰€ιœ€ηš„δΈ€εˆ‡η‰©θ΅„", + "quests.high_voltage.welcome_moon.desc": "&2ζ­ε–œ&rοΌŒδ½ ζˆεŠŸη™»ι™†δΊ†&7ζœˆηƒ&r!\nθΏ™ι‡ŒιεΈƒ&bθ΅›η‰Ήζ–―ηŸ³θ‹±&rηŸΏθ„‰δΈŽι™¨ηŸ³οΌŒε°†εŠ©δ½ εΌ€ε―&dAE2&rηš„η§‘ζŠ€ηΊΏγ€‚\n\nδ½†ζƒŠε–œθΏœδΈζ­’δΊŽζ­€β€”β€”θΏ™ι‡Œηš„ηŸΏθ„‰ε―†εΊ¦&6远高于&rεœ°ηƒγ€‚\n\nδΎ‹ε¦‚οΌŒδ½ θƒ½θ½»θ€Œζ˜“δΈΎεœ°ζ‰Ύεˆ°&6ι’›ι“ηŸΏ&r、&7ι“εœŸηŸΏ&r、&7ι“ηŸΏ&r及&5ι“¬ι“ηŸΏ&rηŸΏθ„‰γ€‚\nεœ¨ζ­€ε»Ίη«‹ε°εž‹εŸΊεœ°ε°†ε―ΉεŽη»­θΏ›η¨‹θ‡³ε…³ι‡θ¦γ€‚\n\nε½“ε‰ζœ€ε€§ζŒ‘ζˆ˜εœ¨δΊŽθ΅„ζΊθΏθΎ“β€”β€”ζ―•η«Ÿε°šζœͺ解锁像&5末影η±&rζˆ–&dAE2量子链路&r这类跨维度物桁ε·₯具。\n\nδ½†ζ„Ώδ½ ε·²η»εšε₯½δΈ‡ε…¨ε‡†ε€‡β€”β€”ι™€ιžδ½ ζƒ³ε†ι€ δΈ€ε₯—火η­δΈŽε‡θˆͺζœοΌŒδΈ“η¨‹εŽ»ε›žζ”Άθ‡ͺε·±ηš„ε°Έδ½“οΌ", + "quests.high_voltage.gun.title": "带把ζžͺ", + "quests.high_voltage.gun.subtitle": "ε¦‚ζžœι‚£δΈθ΅·δ½œη”¨οΌŒε°±εΈ¦ζ›΄ε€šηš„ζžͺ", + "quests.high_voltage.gun.task1": "任何ζžͺ", + "quests.high_voltage.gun.task2": "δ»»δ½•θ―ε“ζˆ–ι™ˆι…Ώι…’", + "quests.high_voltage.gun.desc": "εœ¨εœ°ηƒδΈŠθΏ‡εΎ—ζœ‰η‚Ήε€ͺε‰ι€ΈδΊ†οΌŸζœˆηƒε―幢不ε‰εοΌŒθ―·εŠ‘εΏ…εšε₯½θ‡ͺε«ε‡†ε€‡β€”β€”ε…‰ι ε‰‘ζˆ–ηŸ³ηŸ›ε―δΈε€Ÿγ€‚\n\n&4ζœˆηƒε±ζœΊε››δΌ&rοΌŒθ€ŒδΈ”δ½ δΉŸδΈζƒ³εΌ„δΈ’εθ΄΅ηš„火η­ε§οΌŸ\n\nζŒ‘ι€‰δΈ€ζŠŠε₯½ζžͺοΌˆε¦‚ζžœδ½ ζ‹ΏδΈε‡†οΌŒζˆ‘δ»¬ζŽ¨θ&o\"发村\"ζ­₯ζžͺ&rοΌ‰οΌŒε€‡θΆ³εΌΉθ―οΌŒθ‹₯想更θ²η©ΆθΏ˜ε―δ»₯θ―•θ―•εŠ θ£…ι…δ»Άγ€‚\n\nε»ΊθζΊεΈ¦ζε‡η”Ÿε‘½δΈŠι™ηš„θ₯ε…»ι£Ÿε“οΌˆθ―•θ―•ι€εŒ…οΌοΌ‰οΌŒδ»₯εŠζδΎ›ε’žη›ŠδΈŽζ²»η–—ζ•ˆζžœηš„ι…’δΈŽθ―ε“γ€‚", + "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ζ­€θΎε€‡ιœ€θ¦ζΆˆθ€—εΊ”εŠ›(SU)ι©±εŠ¨οΌŒε¦‚ζžœδ½ ε·²η»δΈε†δ½Ώη”¨ζœΊζ’°εŠ¨εŠ›οΌŒε―ι€šθΏ‡ζ Όι›·η§‘ζŠ€θƒ½ι‡θ½¬ζ’ε™¨ι…εˆ &9&oCreate Crafts and Additions&r ζ¨‘η»„ηš„η”΅εŠ¨ι©¬θΎΎε°†EUθ½¬εŒ–δΈΊSU。", + "quests.high_voltage.wand.title": "无尽建筑手杖", + "quests.high_voltage.wand.subtitle": "η»ˆζžη©Ίε²›ε·₯ε…·", + "quests.high_voltage.wand.desc": "θΏ™ζ Ήζ‰‹ζ–δΈŽε…Άδ»–ζ‰‹ζ–ηš„εŠŸθƒ½εŒε…¨η›ΈεŒοΌŒδ½†ε…·ε€‡&3无限耐久&rηš„η‰Ήζ€§γ€‚ηƒ­θ‘·δΊŽε»Ίι€ ζ‘©ε€©ζ₯ΌηΎ€ζˆ–ι“Ίη ŒεΉΏι˜”θ‰εŽŸε—οΌŸθΏ™ε°†ζ˜―δ½ ηš„η»ˆζžεˆ©ε™¨οΌ\n\nθ―·ζ³¨ζ„οΌŒ&5EV&r阢ζ΅ε°†θ§£ι”β€œε»Ίη­‘小εΈζ‰‹οΌˆBuildingGadgetsοΌ‰β€ζ¨‘η»„οΌŒδΈΊη‹‚ηƒ­ε»Ίι€ θ€…ζδΎ›ζ›΄εΌΊε€§ηš„ε·₯ε…·ε₯—装。", + "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,δ»₯δΎΏθΎη½ζ­£η‘ηš„&9η”΅θ·―&r。\nβ€’εƒζ”―持&e线圈&rε‡ηΊ§οΌˆδΈŽ&6θ£‚εŒ–ζœΊ&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与&7璳粉&rεˆΆζˆοΌˆεΎ—η›ŠδΊŽζ— ι™δΎ›εΊ”ηš„&bι’»ηŸ³η²‰ε°˜&r,歀ζ­₯ιͺ€εεˆ†θ½»ζΎοΌ‰\nβ€’&9ζ°ζ°”&rβ€”β€”ι€šθΏ‡η§ζ€&dη΄«ι’‚ζžœ&rθŽ·ε–\n\n提瀺:你可δ»₯εˆ©η”¨&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εœ°ε›Ύ&rθƒ½ζžε€§η€εŒ–η›ζ ‡η”Ÿη‰©ηΎ€θ½ηš„εšδ½β€”β€”ι€šθΏ‡εƒε―εΏ«ι€Ÿζ‰Ύεˆ°ε„η§ε°˜εœŸηš„ι‡‡ι›†εζ ‡γ€‚", + "quests.high_voltage.dusty_ores.title": "积尘矿石", + "quests.high_voltage.dusty_ores.subtitle": "δ½ ζ˜―εœ¨θ―΄ζ›΄ε€šηš„ηŸΏηŸ³εŠ ε·₯ε—οΌŸ", + "quests.high_voltage.dusty_ores.desc": "&7积尘矿石&r是&d羀峦格雷&rη‹¬ζœ‰ηš„ηŸΏηŸ³η±»εž‹γ€‚δ½ εœ¨&7ζœˆηƒ&rδ»₯及后续&4火星&rθŽ·ε–ηš„ζ‰€ζœ‰&cζ— ι™ηŸΏηŸ³&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": "θΏ™ζ˜―εœ¨θ§£ι”&eι‡‘ζ˜Ÿ&rδΈŠζ›΄ι«˜ηΊ§ηš„εŠ ε·₯θΎζ–½ε‰οΌŒδ½ θƒ½εœ¨&7ζœˆηƒ&rδΈŠθŽ·ε–ηš„ζ‰€ζœ‰&c无限衄源&r。\n\nζœ‰δΊ†θΏ™δΊ›θ΅„ζΊοΌŒδ½ ε°†ζ‹₯ζœ‰ζŒη»­ζŽ¨θΏ›&dζ Όι›·η§‘ζŠ€&rθΏ›η¨‹ζ‰€ιœ€ηš„δΈ€εˆ‡β€”β€”ε°€ε…Άζ˜―η»΄ζŠ€ζœˆηƒεŸΊεœ°&a正常运作&rηš„εΏ…ιœ€ε“γ€‚\n\n这些衄源对δ»₯δΈ‹η”¨ι€”θ‡³ε…³ι‡θ¦οΌš\nβ€’ 刢作&dAE2η»„δ»Ά&r\nβ€’ η”ŸδΊ§&c无限&rδΎ›εΊ”ηš„&6轨道η‚弹药&r\n\n蒫动θ‡ͺεŠ¨εŒ–ηŽ°εœ¨ε°±εœ¨δ½ θ§¦ζ‰‹ε―εŠδΉ‹ε€„β€”β€”θΏˆζ­₯ε‘ε‰οΌŒθ©εƒζˆδΈΊηްεžοΌ", + "quests.high_voltage.titanium_greate.title": "ι’›ηΊ§ζ Όι›·ζœΊζ’°", + "quests.high_voltage.titanium_greate.desc": "θΏ™ζ˜―εœ¨ TFG δΈ­ε―θΎΎζˆηš„ζœ€η»ˆη­‰ηΊ§ζ Όι›·ζœΊζ’°γ€‚θ‹₯θ―΄εƒζœ‰δ½•β€œζžι™β€δΉ‹ε€„β€”β€”ι‚£δΎΏζ˜―ζžθ‡΄ηš„ε―ι€‰ζ€§οΌˆεŒε…¨δΈεšδΉŸθ‘ŒοΌ‰γ€‚", "quests.low_voltage": "&7LV&r - δ½ŽεŽ‹", "quests.low_voltage.subtitle": "ι©―ζœη”΅εŠ›οΌŒεΌ€ε―δ½ ηš„ζ Όι›·η§‘ζŠ€δΉ‹ζ—…", "quests.low_voltage.lv_machine_hull.title": "δ½ ηš„η¬¬δΊŒδΈͺζœΊε™¨ε€–ε£³", "quests.low_voltage.lv_machine_hull.subtitle": "ζ˜―ζ—Άε€™ζŽ₯θ§¦η”΅εŠ›δΊ†", "quests.low_voltage.lv_machine_hull.desc.1": "δ½ η¦»δ½ ηš„&6第一台LVζœΊε™¨&rε’Œη”΅ζ°”ζ—Άδ»£ηš„εΌ€η«―ιžεΈΈθΏ‘δΊ†οΌε¦‚ζžœδ½ θΏ˜ζ²‘ζœ‰εˆΆδ½œδ»»δ½•&4ηΊ’ι’’&rοΌŒηŽ°εœ¨δ½ εΏ…ι‘»εšδΊ†οΌŒδ½†δ½œδΈΊε›žζŠ₯οΌŒδ½ ε°†θŽ·εΎ—&6ζ–°ηš„ζ–Ήζ³•&rζ₯ζ”ΉθΏ›δ½ ηš„η”ŸδΊ§γ€‚\n\nθΏ™ε°±ζ˜―ζ Όι›·η§‘ζŠ€ηš„η†εΏ΅οΌš&6δ½ θΏ›ζ­₯εΎ—θΆŠθΏœοΌŒζ–°ηš„ι…ζ–Ήε°±θΆŠε₯½&r。\n\nεΌ€ε§‹ζ—Άε°θ―•εˆΆδ½œθ‡³ε°‘3ζˆ–4δΈͺ倖壳。", - "quests.low_voltage.lv_machine_hull.desc.2": "ε―ΉδΊŽζŸδΊ›ηŽ©εΆζ₯θ―΄οΌŒθΎΎεˆ°δΈ€δΈͺζ–°ηš„η­‰ηΊ§ζ˜―δ»₯εˆΆδ½œη¬¬δΈ€δΈͺ&6η”΅θ·―&rδΈΊζ ‡εΏ—οΌŒε―ΉδΊŽε…Άδ»–δΊΊεˆ™ζ˜―&6ζœΊε™¨ε€–ε£³&rζˆ–&6θƒ½ζΊθˆ±&r。你可δ»₯δ½Ώη”¨δ»»δ½•ζœ€ι€‚εˆδ½ ηš„ζ–ΉεΌοΌŒδ½†δΈΊδΊ†η»„η»‡ζœ‰εΊοΌŒθΏ™δΊ›δ»»εŠ‘ε°†δ½Ώη”¨ζœΊε™¨ε€–ε£³δ½œδΈΊζ ‡εΏ—γ€‚", + "quests.low_voltage.lv_machine_hull.desc.2": "ε―ΉδΊŽζŸδΊ›ηŽ©εΆζ₯θ―΄οΌŒθΎΎεˆ°δΈ€δΈͺζ–°ηš„η­‰ηΊ§ζ˜―δ»₯εˆΆδ½œη¬¬δΈ€δΈͺ&6η”΅θ·―&rδΈΊζ ‡εΏ—οΌŒε―ΉδΊŽε…Άδ»–δΊΊεˆ™ζ˜―&6ζœΊε™¨ε€–ε£³&rζˆ–&6θƒ½ζΊθˆ±&r。你可δ»₯δ½Ώη”¨δ»»δ½•ζœ€ι€‚εˆδ½ ηš„ζ–ΉεΌοΌŒδ½†δΈΊδΊ†η»„η»‡ζœ‰εΊοΌŒθΏ™δΊ›δ»»εŠ‘ε°†δ½Ώη”¨ζœΊε™¨ε€–ε£³δ½œδΈΊζ ‡εΏ—γ€‚\n\n不ηŸ₯ι“δ»Žδ½•εΌ€ε§‹οΌŸζˆ‘δ»¬ε»Ίθ寻找那些能θ©ε…Άδ»–ζ‰€ζœ‰δΈœθ₯Ώιƒ½ε˜εΎ—ζ›΄δΎΏεœοΌˆδΊ‹εŠεŠŸε€οΌ‰ηš„ζœΊε™¨οΌŒδ»Žδ½ ζœ€θ¨εŽŒηš„δΊ‹ζƒ…εΌ€ε§‹γ€‚", "quests.low_voltage.lv_machine_casing.title": "η”¨δΊŽζœΊζ’°εŠ¨εŠ›ηš„LVζœΊζ’°ζ–Ήε—οΌŸ", "quests.low_voltage.lv_machine_casing.subtitle": "ζ›΄ε€šι€‰ζ‹©οΌ", "quests.low_voltage.lv_machine_casing.desc": "δΈΊι™δ½Žε…₯ι—¨LV阢ζ΅ηš„ιšΎεΊ¦οΌŒ&5TFG&r允θΈδ½ δ½Ώη”¨&6ζœΊζ’°εŠ¨εŠ›&rηš„ζœΊε™¨ζ›Ώδ»£ιƒ¨εˆ†&6ζ Όι›·η§‘ζŠ€&rζœΊε™¨γ€‚\n\nζˆ‘δ»¬εœ¨&6δΈŠδΈ€η« θŠ‚&r已介绍过这些内εΉοΌŒεͺιœ€θ°δ½οΌšε½“ε­˜εœ¨ζ Όι›·η§‘ζŠ€ζœΊε™¨ηš„ζ›Ώδ»£ζ–Ήζ‘ˆζ—ΆοΌŒδ½ ιƒ½θƒ½εœ¨δ»»εŠ‘δΈ­θ‡ͺθ‘Œι€‰ζ‹©γ€‚", @@ -2054,14 +2850,20 @@ "quests.low_voltage.lv_age_progression.subtitle": "选择ε€ͺε€šοΌŒζ—Άι—΄ε€ͺ少!", "quests.low_voltage.lv_age_progression.desc": "&7LV&r阢ζ΅ιœ€θ¦δ½ εˆΆδ½œε€šη§δΈεŒηš„ζœΊε™¨οΌε¦‚ζžœδ½ εœ¨η›ζ ‡θ§„εˆ’δΈŠι‡εˆ°ε›°ιšΎοΌŒθΏ™ι‡Œζœ‰δΈͺ友ε₯½ζη€ΊοΌšε―δ»₯ι€‰ζ‹©εŽη»­δ»»εŠ‘δΈ­ηš„ζŸδΈͺη‰©ε“οΌŒη„ΆεŽε€’ζŽ¨ζ‰€ιœ€ηš„εˆΆδ½œζ­₯ιͺ€γ€‚\n\nζ—’η„Άε¦‚ζ­€β€¦β€¦ζˆ‘δ»¬δ½•δΈδ»Ž&5θšε˜ζŽ§εˆΆε™¨&rεΌ€ε§‹ε‘’οΌŸε₯½ε§οΌŒθΏ™η›ζ ‡ζœ‰η‚Ήε₯½ι«˜ιͺ›θΏœβ€”β€”θΏ˜ζ˜―ε…ˆεšδΈͺζ›΄ζŽ₯θΏ‘ηš„η›ζ ‡ε§γ€‚ε―ΉδΊ†οΌŒ&3η”΅εŠ›ι«˜η‚‰&r作为&7LV&r阢ζ΅ηš„η»ˆζžη›ζ ‡οΌŒεΊ”θ―₯是δΈͺδΈι”™ηš„η›ζ ‡γ€‚\n\nη”΅εŠ›ι«˜η‚‰ηš„&aι€ δ»·ζ˜‚θ΄΅&rοΌŒε› ζ­€δ½ εΊ”θ―₯ε…ˆδΈ“ζ³¨δΊŽεˆΆι€ θƒ½ι™δ½Žη»„δ»Άε’Œζζ–™ζˆζœ¬ηš„ζœΊε™¨γ€‚ζˆ‘δ»¬ηš„δ»»εŠ‘δ½“η³»δΌšδΈΊδ½ ζŒ‡εΌ•ζ­£η‘方向。\n\n兢他重要η›ζ ‡εŒ…ζ‹¬εˆΆδ½œ&3LVη»„θ£…ζœΊ&rγ€η”ŸδΊ§ι¦–ζ‰Ή&aMVη”΅θ·―&r,δ»₯εŠθŽ·εΎ—η¬¬δΈ€ε°&b甡路组装器&r。", "quests.low_voltage.lv_age_progression.task": "ζˆ‘β€¦β€¦ηŽ°εœ¨ε―θƒ½ζœ‰η‚Ήζ–Ήε‘ζ„ŸδΊ†", - "quests.low_voltage.lv_steam_turbine.title": "发甡", + "quests.low_voltage.lost.title": "θΏ·θ·―δΊ†οΌŸ", + "quests.low_voltage.lost.subtitle": "θΏ™δΈ€εˆ‡θ©δΊΊεΊ”ζŽ₯δΈζš‡", + "quests.low_voltage.lost.desc.1": "θΏ›ε…₯&7LV&r阢ζ΅δΌšθ§£ι”ε€§ι‡ι€‰ι‘ΉοΌŒεΎˆεΉζ˜“θ©δΊΊδΈηŸ₯所ζŽͺ。δ»₯δΈ‹ζ˜―ζˆ‘δ»¬ζŽ¨θηš„ε‘ε±•θ·―ηΊΏοΌš\n\n1οΌ‰ε»Ίη«‹δΈ€δΈͺ稳εšηš„η”΅εŠ›ζ₯源。ζŸ₯ηœ‹ε³δΈ‹θ§’ηš„δ»»εŠ‘οΌŒζœ‰ε₯½ε‡ η§ζ–Ήζ‘ˆε―ι€‰οΌŒιƒ½ε―θ‘Œγ€‚εˆ«εε•¬οΌŒε€šε»Ίε‡ ε°ε‘η”΅ζœΊοΌ\n\nεŠ‘εΏ…&eδ»”η»†ι˜…θ―»ζ Όι›·η§‘ζŠ€θƒ½ζΊδ»»εŠ‘η« θŠ‚&r,δ»₯δΎΏε……εˆ†η†θ§£EUοΌˆθƒ½ι‡ε•δ½οΌ‰γ€η”΅εŽ‹γ€η”΅ζ΅ε’ŒηΊΏζŸζ˜―ε¦‚δ½•θΏδ½œηš„γ€‚", + "quests.low_voltage.lost.desc.2": "2οΌ‰δΈ“ζ³¨δΊŽε»Ίι€ ι‚£δΊ›θƒ½θ©εŽη»­ζœΊε™¨ι€ δ»·ζ›΄δΎΏεœηš„ζœΊε™¨γ€‚\n\nδΈ€ζžη£εŒ–ζœΊζ˜―δΈ€ε°θΆ…ηΊ§δΎΏεœηš„ζœΊε™¨οΌŒε‡ δΉŽε―δ»₯ε…θ΄Ήη£εŒ–ι‡‘ε±žζ£’γ€‚ε¦‚ζžœδ½ θΏ˜ζ²‘ι€ θ’Έζ±½ζ—Άδ»£ε―ΉεΊ”ηš„ζœΊε™¨οΌŒι‚£ε°±ζ­ε»Ίθ΅·ε·ζΏζœΊγ€ηΊΏζθ½§ζœΊγ€θ½¦εΊŠε’Œεˆ‡ε‰²ζœΊγ€‚θΏ™δΊ›δ»»εŠ‘ιƒ½εœ¨ε·¦δΈŠθ§’γ€‚\n\nδΉ‹εŽοΌŒι‡η‚Ήεˆ©η”¨εŒ–ε­¦εεΊ”ι‡œε’Œζ΅δ½“ε›ΊεŒ–ζœΊοΌˆε·¦δΎ§οΌ‰ζ₯ι™δ½Žζ©‘θƒΆζˆζœ¬οΌŒεΉΆη”¨η»„θ£…ζœΊοΌˆδΈ‹ζ–ΉοΌ‰ζ₯ι™δ½Žη”΅ε­ε…ƒδ»Άζˆζœ¬γ€‚\n\nε½“ζ‰€ζœ‰δΈœθ₯Ώηš„ζˆζœ¬ιƒ½ι™εˆ°ζœ€δ½ŽεŽοΌŒη‘δΏζ‰Ήι‡εˆζˆη»„δ»Άδ»₯θŠ‚ηœε€§ι‡ζ—Άι—΄γ€‚", + "quests.low_voltage.lost.desc.3": "3οΌ‰ε»Ίι€ δΈ€ε°θ£…η½ζœΊεΉΆεˆΆδ½œδΈ€δΊ›η”΅ζ± οΌˆε³δΈŠθ§’οΌ‰γ€‚η”΅ζ± η±ε°†ε―Ήδ½ ηš„ε·₯εŽ‚ζ‰©εΌ ε€§ζœ‰θ£¨η›ŠοΌŒθ€Œε‹˜ηŸΏδ»ͺη»ε―Ήζ˜―ζ”Ήε˜ζΈΈζˆδ½“ιͺŒηš„η₯žε™¨γ€‚\n\n4οΌ‰&7LV&r阢ζ΅ζœ‰δΈ€δΈͺ主要终极η›ζ ‡οΌš&aη”΅θ·―η»„θ£…ζœΊ&rε’Œ&aη”΅εŠ›ι«˜η‚‰&rγ€‚ηŽ°εœ¨δ½ εΊ”θ―₯准倇ε₯½ζŒ‘ζˆ˜εƒδ»¬δΊ†γ€‚", + "quests.low_voltage.lost.task": "ε€ͺζ£’δΊ†οΌŒζˆ‘ι€ζΈη†θ§£δΈ€εˆ‡οΌ", + "quests.low_voltage.lv_steam_turbine.title": "θ’Έζ±½θ½ζœΊ", "quests.low_voltage.lv_steam_turbine.subtitle": "δ½ εΏ…ι‘»ε»Ίι€ ζ›΄ε€šηš„ζΆ‘θ½ζœΊ", "quests.low_voltage.lv_steam_turbine.desc.1": "&3θ’Έζ±½θ½ζœΊ&r是你在&7LV&r阢ζ΅εžι™…δΈŠε―δ»₯δ½Ώη”¨ηš„δΈΊζ•°δΈε€šηš„ε‘η”΅ζœΊδΉ‹δΈ€γ€‚&2η¨εŽοΌŒδ½ ε°†θ§£ι”ζ›΄ζœ‰θΆ£ηš„θƒ½ζΊι€‰ι‘Ή&rοΌŒδΎ‹ε¦‚ε€©η„Άζ°”ζˆ–ζ±½ζ²Ήγ€‚\n\nε½“ζδΎ›θ’Έζ±½ζ—ΆοΌŒζΆ‘θ½ζœΊε°†δ»₯&d2mB=1EU&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.subtitle": "轰!轰!轰!轰!", "quests.low_voltage.lbb.desc.1": "&3ε€§εž‹ι”…η‚‰&rζ˜―ε°εž‹ι”…η‚‰ηš„&6ε―ι€‰ηš„&rε€§ε·η‰ˆζœ¬οΌŒε―δ½Ώη”¨ε›Ίδ½“ζˆ–ζΆ²δ½“η‡ƒζ–™ι©±εŠ¨γ€‚\n\nθ‹₯ζƒ³ι‡‡η”¨θ’Έζ±½ε‘η”΅ζ–Ήζ‘ˆοΌŒθΏ™ζ˜―ζ›Ώδ»£ζœΊζ’°εŠ¨εŠ›θ’Έζ±½εΌ•ζ“Žηš„ι€‰ι‘Ήγ€‚εŽη»­θƒ½ζΊζ–Ήζ‘ˆε°†εœ¨&bMV&rη« θŠ‚εˆ—ε‡Ίγ€‚\n\nθ―·η‘δΏε…ΆδΎ›ζ°΄ζ°ΈδΈδΈ­ζ–­β€”β€”ε°±εƒζ“δ½œε°εž‹ι”…η‚‰ζ—Άι‚£ζ ·οΌŒε¦εˆ™εƒδΌš&cηˆ†η‚Έ&r!", - "quests.low_voltage.lbb.desc.2": "δΈ€ζ—¦εŒε…¨ι’„ηƒ­οΌŒ&3ε€§εž‹ι’ι“œι”…η‚‰&r可产出800mB/tηš„θ’Έζ±½οΌŒη»θ½¬ζ’ε―εΎ—&d400EU/t&rθƒ½ι‡οΌŒη›Έε½“δΊŽ12.5ε°εŸΊη‘€θ’Έζ±½θ½ζœΊηš„δΊ§θƒ½γ€‚ε¦‚ζ­€οΌˆη›Έε―ΉοΌ‰ε·¨ε€§ηš„θƒ½ι‡θΎ“ε‡Ίιœ€θ¦ζΆˆθ€—&l倧量&r可燃燃料。&5θ€ƒθ™‘εˆ°θΏ™η‚Ή&rοΌŒε…ΆGUI允θΈδ½ ε°†ι”…炉&9θ°ƒθŠ‚&r至25%%εŠŸηŽ‡οΌŒε³200mB/tοΌŒε―ΉεΊ”&d100EU/t&rηš„η”΅εŠ›οΌŒη•₯高于3ε°εŸΊη‘€θ’Έζ±½θ½ζœΊηš„输出。\n\nζˆ‘δ»¬ε»Ίθη­‰εˆ°δ½ ε‡†ε€‡θΏθ‘ŒδΈΊη”΅εŠ›ι«˜η‚‰δΎ›η”΅ζ—Άε†ε»Ίι€ ζ­€θΎε€‡γ€‚", + "quests.low_voltage.lbb.desc.2": "δΈ€ζ—¦εŒε…¨ι’„ηƒ­οΌŒ&3ε€§εž‹ι’ι“œι”…η‚‰&r可产出800mB/tηš„θ’Έζ±½οΌŒη»θ½¬ζ’ε―εΎ—&d400EU/t&rθƒ½ι‡οΌŒη›Έε½“δΊŽ12.5ε°εŸΊη‘€θ’Έζ±½θ½ζœΊηš„δΊ§θƒ½γ€‚ε¦‚ζ­€οΌˆη›Έε―ΉοΌ‰ε·¨ε€§ηš„θƒ½ι‡θΎ“ε‡Ίιœ€θ¦ζΆˆθ€—&l倧量&r可燃燃料。&5θ€ƒθ™‘εˆ°θΏ™η‚Ή&rοΌŒε…ΆGUI允θΈδ½ ε°†ι”…炉&9θ°ƒθŠ‚&r至25%%εŠŸηŽ‡οΌŒε³200mB/tοΌŒε―ΉεΊ”&d100EU/t&rηš„η”΅εŠ›οΌŒη•₯高于3ε°εŸΊη‘€θ’Έζ±½θ½ζœΊηš„输出。\n\nζˆ‘δ»¬ε»Ίθη­‰εˆ°δ½ ε‡†ε€‡θΏθ‘ŒδΈΊη”΅εŠ›ι«˜η‚‰δΎ›η”΅ζ—Άε†ε»Ίι€ ζ­€θΎε€‡οΌŒι™€ιžδ½ ζœ‰εΎˆε€šηš„θ’Έζ±½ε€šζ–Ήε—ζœΊε™¨γ€‚", "quests.low_voltage.lbb.desc.3": "在TerraFirmaGregζ•΄εˆεŒ…δΈ­οΌŒδ½ ζœ‰ε€šη§η‡ƒζ–™ι€‰ζ‹©ζ–Ήζ‘ˆγ€‚δ½ ε―δ»₯使用软η‘ζ»‘θ½δ»Žζ·±ε±‚εœ°δΈ‹ζΉ–ζŠ½ε–ε²©ζ΅†οΌŒζˆ–ε»Ίη«‹ζ ‘εœΊι…εˆη„¦η‚‰η”ŸδΊ§ζœ¨η‚­δΈŽζ‚ι…šζ²Ήγ€‚ζ­€ε€–οΌŒεœ°θ‘¨ε­˜εœ¨ε€§εž‹η…€η‚­ηŸΏθ„‰οΌŒε―ι€šθΏ‡θ‡ͺεŠ¨εŒ–ι‡‡ηŸΏθΎε€‡εΌ€ι‡‡οΌŒεΉΆθ½¬εŒ–为焦炭δ»₯εŠθΏœθΆ…ζœ¨η‚­δΊ§ε‡Ίηš„ζ‚ι…šζ²Ήγ€‚\n\nθ‹₯ι€‰ζ‹©ζ ‘εœΊζ–Ήζ‘ˆοΌŒιœ€ι…ε€‡δΈ‰εΊ§η„¦η‚‰ζ‰θƒ½η»΄ζŒε€§εž‹ι’ι“œι”…η‚‰ε…¨εŠŸηŽ‡θΏθ‘Œγ€‚", "quests.low_voltage.lv_polariser.title": "εŸΊη‘€δΈ€ζžη£εŒ–ζœΊ", "quests.low_voltage.lv_polariser.subtitle": "δΈ€ζžη£εŒ–ζœΊη”¨δΊŽη£εŒ–οΌ", @@ -2069,7 +2871,7 @@ "quests.low_voltage.link_chapter.title": "η»™ζˆ‘θ§£ι‡ŠδΈ€δΈ‹θƒ½ι‡", "quests.low_voltage.link_chapter.subtitle": "ζœ‰δΈ€ζ•΄η« ε…³δΊŽθƒ½ι‡ηš„ε†…εΉ", "quests.low_voltage.link_chapter.desc": "点击歀倄ζŸ₯ηœ‹η« θŠ‚", - "quests.low_voltage.link_chapter.task": "ι˜…θ―»εƒ", + "quests.low_voltage.link_chapter.task": "ζˆ‘θ―»θΏ‡δΊ†", "quests.low_voltage.lv_combuston_gen.title": "ε†…η‡ƒε‘η”΅ζœΊ", "quests.low_voltage.lv_combuston_gen.subtitle": "εƒδΌšθ½°ιš†δ½œε“εΉΆδΊ§η”Ÿθƒ½ι‡", "quests.low_voltage.lv_combuston_gen.desc": "&7LVε†…η‡ƒε‘η”΅ζœΊ&rηš„εˆΆδ½œζˆζœ¬ε―θƒ½η•₯ι«˜δΊŽε…Άδ»–ε‘η”΅ζœΊοΌŒδ½†ε…Άη‡ƒζ–™θ•΄ε«ζžι«˜θƒ½ι‡γ€‚θΏ™δ½ΏεΎ—εƒζ›΄δΎΏδΊŽζΊεΈ¦β€”β€”ε½“ιœ€θ¦δΈΊθΏœη¦»εŸΊεœ°ηš„ε‘η”΅ζœΊδΎ›θƒ½ζ—ΆοΌŒδΈ€ζ‘Ά&2η”Ÿη‰©ζŸ΄ζ²Ή&rε³ε―δΌ θΎ“ε€§ι‡η”΅εŠ›γ€‚\n\nδΈŽε…Άδ»–&7LVε‘η”΅ζœΊ&rδΈ€ζ ·οΌŒεƒε―δΊ§η”Ÿ&a32EU/t&rηš„θƒ½ι‡γ€‚", @@ -2083,6 +2885,15 @@ "quests.low_voltage.lv_seeds.subtitle": "θΏ™δΊ›ζ˜―ι«˜η§†ζ€η‰©", "quests.low_voltage.lv_seeds.desc": "θ‹₯ι‡εˆ°θΏ™η±»δ½œη‰©οΌŒε»Ίθι‡‡ι›†εΉΆε»Ίη«‹ε†œεœΊη§ζ€γ€‚\n\nεƒδ»¬ε°†ζˆδΈΊ&a种子油&rηš„ζœ€δ½³ζ₯源,θ―₯ζΆ²δ½“ε―η”¨δΊŽη”ŸδΊ§&eη”Ÿη‰©ζŸ΄ζ²Ή&rγ€‚ζ²Ήθœη±½θ€ε―’ζ€§θΎƒεΌΊοΌŒθ€Œε‘ζ—₯葡更适εœζΈ©ζš–ηŽ―咃。θ‹₯δΈζ„ΏθŠ±θ΄ΉθΏ‡ε€šζ—Άι—΄θ€•δ½œοΌŒδΉŸε―εœ¨η”΅εŠ›ζΈ©ε€δΈ­εŸΉθ‚²οΌŒδ»…ιœ€ζΆˆθ€—ε°‘ι‡η”΅εŠ›ε³ε―εžηްθ‡ͺεŠ¨εŒ–η§ζ€γ€‚", "quests.low_voltage.lv_seeds.task": "ζ²Ήθœζˆ–ε‘ζ—₯θ‘΅", + "quests.low_voltage.lv_gas_turbine.title": "燃气θ½ζœΊ", + "quests.low_voltage.lv_gas_turbine.subtitle": "εƒιœ€θ¦ζ›΄ε€šη”΅θ·―οΌŒδ½†ζ›΄ε°‘ζζ–™", + "quests.low_voltage.lv_gas_turbine.desc": "ε€ŸεŠ©&7εˆζˆζ°”&r,你现在ζ‹₯ζœ‰δΊ†εœ¨&7LV&r阢ζ΅δ½Ώη”¨&c燃气θ½ζœΊ&rηš„ε―θ‘Œζ–Ήζ‘ˆγ€‚εƒδ»¬δΈŽε…Άδ»–&6ε‘η”΅ζœΊ&rε·₯δ½œεŽŸη†εŒε…¨η›ΈεŒοΌŒδ½†εΊ”ζ―”&6ε†…η‡ƒζœΊ&rη•₯εΎθŠ‚ηœζζ–™γ€‚", + "quests.low_voltage.lv_gas_syngas.title": "εˆζˆζ°”", + "quests.low_voltage.lv_gas_syngas.subtitle": "εΉΆιžζœ¨η…€ζ°”", + "quests.low_voltage.lv_gas_syngas.desc": "εˆΆι€ &7εˆζˆζ°”&r非常η€ε•。你εͺιœ€δΈΊζ―ε°&6ι…Ώι€ ε€&rζˆ–&6ηœŸη©Ίθ…”ε€&r配倇&b3座焦炉&rγ€‚η„ΆεŽε€ŸεŠ©&bζœΊζ’°εŠ¨εŠ›ζ ‘εœΊ&r攢集&7木材&rδ»₯ζœ€ε€§η¨‹εΊ¦ι™δ½Žθƒ½θ€—οΌŒε°±θƒ½δΊ«ε—θΏ™η§θ™½εΌ±δ½†ζ˜“δΊŽη”ŸδΊ§ηš„&7气体燃料&r了。", + "quests.low_voltage.lv_naphtha_light.title": "ηŸ³θ„‘ζ²Ήε’Œθ½»η‡ƒζ²Ή", + "quests.low_voltage.lv_naphtha_light.subtitle": "你可δ»₯用εƒδ»¬ζ₯εˆΆι€ ε‘‘ζ–™", + "quests.low_voltage.lv_naphtha_light.desc": "ε¦‚ζžœδ½ εžεœ¨εŽŒζΆη§εœ°οΌŒζ›΄εηˆ±εœ¨&6ζ²™ζΌ &rζŽ’ι™©ζˆ–εΌ€ι‡‡ε€§ι‡&7ζ²Ήη ‚&rοΌŒι‚£δΉˆζˆ–θΈ&7ηŸ³θ„‘ζ²Ή&r(从&7原油&rδΈ­ζε–ζ›΄δ½³οΌ‰ζˆ–&7轻燃油&r(从&7石油&rδΈ­ζε–ζ›΄δ½³οΌ‰δΌšζ˜―ε€ΌεΎ—δ½ θ€ƒθ™‘ηš„η‡ƒζ–™γ€‚\n\nι‰΄δΊŽε…Άζ˜“δΊŽη”ŸδΊ§ηš„η‰Ήζ€§οΌŒεƒδ»¬ηš„ζ€§δ»·ζ―”η›Έε½“δΈι”™οΌŒεͺδΈθΏ‡εœ¨ηŽ°ι˜Άζ΅δ»ιœ€ζ‰‹εŠ¨ι‡‡ζ”Άγ€‚", "quests.low_voltage.lv_turbo_charge.title": "ι—ͺθšε……η”΅η±", "quests.low_voltage.lv_turbo_charge.subtitle": "ε―ζ›΄εΏ«δΈΊη”΅εŠ¨ε·₯ε…·ε……η”΅", "quests.low_voltage.lv_turbo_charge.desc": "&oζœ¬δ»»εŠ‘δΈ»ι’˜δΈΊε―ι€‰ε†…εΉοΌŒδ½†ε―θƒ½δ»δΌšεΌ•ε‘δ½ ηš„ε…΄θΆ£γ€‚ζˆ‘δ»¬ε‡ΊδΊŽε†…εΉεŒζ•΄ζ€§ηš„考虑将兢放η½δΊŽζ­€γ€‚&r\n\n&3ι—ͺθšε……η”΅η±&r可为&6RF与EU&rθΎε€‡οΌˆδΎ‹ε¦‚&9钻倴&rοΌ‰ζδΎ›ζžι€Ÿε……η”΅γ€‚\n\nθ―₯θΎε€‡ε―Ήζ―δ»Άε……η”΅η‰©ε“ζœ€ι«˜ζ”―持4ε‰εŸΉη”΅ζ΅οΌŒδ½Ώε…Άε……η”΅ι€ŸεΊ¦θΎΎεˆ°&3η”΅ζ± η±&rηš„&6一倍&rοΌŒδ½†δΈε…·ε€‡ζ”Ύη”΅εŠŸθƒ½γ€‚\n\n&e任何&rη±»εž‹ηš„ε……η”΅η±ε‡ε―εŒζˆζœ¬δ»»εŠ‘。", @@ -2116,9 +2927,9 @@ "quests.low_voltage.lv_lathe.task": "δ»₯下任何一δΈͺ", "quests.low_voltage.universal_cell.title": "ζ›΄ε₯½ηš„ζ‘Ά", "quests.low_voltage.universal_cell.subtitle": "ε†…ιƒ¨η»“ζž„δΈ€η›δΊ†η„ΆοΌŒδΈεƒι‚£δΊ›ζ‘ΆεŒε…¨ε°ι—­εΎ—δΈ₯δΈ₯εžεžβ€¦β€¦", - "quests.low_voltage.universal_cell.desc.1": "ε•ε…ƒζ˜―ζ΅δ½“ε­˜ε‚¨ηš„ε¦δΈ€η§ε½’εΌγ€‚ζ‰€ζœ‰ε‚¨ε­˜εŒη±»η­‰ι‡ζ΅δ½“ηš„ε•ε…ƒε‡ε―&6堆叠&rοΌŒεΉΆε―ι€šθΏ‡&3θ£…η½ζœΊ&rεžηްθ‡ͺεŠ¨ηŒθ£…γ€‚\n\n每δΈͺ单元εΉι‡δΈΊ&dδΈ€ζ‘Ά&r桁体。", + "quests.low_voltage.universal_cell.desc.1": "ε•ε…ƒζ˜―ζ΅δ½“ε­˜ε‚¨ηš„ε¦δΈ€η§ε½’εΌγ€‚ζ‰€ζœ‰ε‚¨ε­˜εŒη±»η­‰ι‡ζ΅δ½“ηš„ε•ε…ƒε‡ε―&6堆叠&rοΌŒεΉΆε―ι€šθΏ‡&3θ£…η½ζœΊ&rεžηްθ‡ͺεŠ¨ηŒθ£…γ€‚\n\n每δΈͺ桁体单元可εΉηΊ³&dδΈ€ζ‘Ά&r桁体。\n\nθΏ˜ζ²‘θ’«θ―΄ζœε—οΌŸδΈŽζ‘Άε’Œε€§ζœ¨ζ‘ΆδΈεŒοΌŒε•ε…ƒθƒ½&aε‰ε…¨εœ°εΉηΊ³&rε…ΆδΈ­ηš„ε†…εΉοΌŒι˜²ζ­’δ½ θ’«ηƒ«δΌ€γ€ε†»δΌ€ζˆ–ι£˜θ΅·ζ₯。", "quests.low_voltage.universal_cell.desc.2": "ι€šη”¨ε•ε…ƒζœ€ε€šε―εΉηΊ³&dδΈ€ζ‘Ά&rζ΅δ½“οΌŒεŒζ—Άζ”―ζŒε­˜ε‚¨&9εΎι‡&r桁体。θ‹₯ιœ€ζš‚ε­˜ζ‹δ½™ζ΅δ½“θ€ŒδΈζƒ³δΈ“ι—¨εˆΆδ½œζ•΄εͺζ‘ΆοΌŒθΏ™η±»εΉε™¨ε°€δΈΊη†ζƒ³γ€‚\n\nι‡‡η”¨ι«˜ι˜Άζζ–™εˆΆι€ ηš„ε•ε…ƒθƒ½ζ‰Ώθ½½ζ›΄ε€šζ΅δ½“οΌŒδΈθΏ‡ε±Šζ—Ά&9ζ‘Ά&rε’Œ&9θΆ…ηΊ§ηΌΈ&r将提供更倧εΉι‡γ€‚\n\nδΈŽζ‘Άη±»δΌΌοΌŒε°†ε•ε…ƒζ”Ύε…₯εˆζˆζ ε³ε―ζΈ…η©Ίε…Άε†…εΉη‰©γ€‚", - "quests.low_voltage.universal_cell.task": "", + "quests.low_voltage.universal_cell.task": "任意单元", "quests.low_voltage.machine_auto_output_behaviour.title": "ζœΊε™¨θ‡ͺεŠ¨θΎ“ε‡Ίθ‘ŒδΈΊ", "quests.low_voltage.machine_auto_output_behaviour.subtitle": "ζˆ‘δ»¬ζ₯δΊ†θ§£η›Έε…³ηŸ₯识。", "quests.low_voltage.machine_auto_output_behaviour.desc.1": "ζ‰€ζœ‰ζœΊε™¨ι€šεΈΈεŒ…ε«δΈ€δΈͺ&7正青&rδΈŽδΈ€δΈͺ&9输出青&r。\n\n&7正青&rεΊ”θ―₯εΎˆζ˜Žζ˜Ύγ€‚\n&9输出青&rεˆ™ζ˜―εΈ¦ζœ‰η‚ΉηŠΆζˆ–ε­”ζ΄žζ ‡θ°ηš„青,默θ€δ½δΊŽζœΊε™¨ζ”Ύη½ζ—Άηš„θƒŒι’。\n\nζœΊε™¨ε―ι€šθΏ‡θΎ“ε‡Ίι’εžηް&aθ‡ͺεŠ¨θΎ“ε‡Ί&rεŠŸθƒ½γ€‚ιœ€εœ¨ε›Ύε½’η•Œι’δΈ­η‚Ήε‡»ε―ΉεΊ”ζŒ‰ι’启用θ―₯εŠŸθƒ½οΌŒζ΅δ½“δΈŽη‰©ε“ηš„θ‡ͺεŠ¨θΎ“ε‡Ίιœ€εˆ†εˆ«θΎη½γ€‚ι€šθΏ‡&d过滀卑&rε’Œ&d覆盖板&r可对θ‡ͺεŠ¨θΎ“ε‡ΊθΏ›θ‘Œη²Ύη»†εŒ–ζŽ§εˆΆοΌŒε…·δ½“ζœΊεˆΆθ―·ε‚ι˜…ζœ¬η« θŠ‚δΈ­ηš„&dθ¦†η›–ζΏθ‘ŒδΈΊ&rδ»»εŠ‘γ€‚γ€‚", @@ -2167,7 +2978,7 @@ "quests.low_voltage.lv_battery_buffer_4x.task": "任意甡池η±", "quests.low_voltage.lv_amp_explanation.title": "δ½†δ»€δΉˆζ˜―ε‰εŸΉοΌŸ", "quests.low_voltage.lv_amp_explanation.subtitle": "γ€Šη”΅ζ΅ζœΊεˆΆε…₯ι—¨ζŒ‡ε—γ€‹", - "quests.low_voltage.lv_amp_explanation.desc": "ζœ¬δ»»εŠ‘ηΊΏε°†η€θ¦θ²θ§£&9ζ Όι›·η§‘ζŠ€η”΅ζ΅ζœΊεˆΆ&rοΌŒθ‡³δΊŽ&dη”΅εŽ‹&rζœΊεˆΆεˆ™εΎ…δ½ ζŠ΅θΎΎ&bMV&r阢ζ΅εŽθ―¦θ§£γ€‚\n\n&6&lζ ΈεΏƒθ¦η‚ΉοΌš&rδΈΊη‘保ε‰ε…¨οΌŒθ―·δ½Ώη”΅ηΌ†ηš„η”΅ζ΅ζ‰Ώθ½½δΈŠι™δΈŽε‘η”΅θΎε€‡ηš„θΎ“ε‡Ίη”΅ζ΅ζ€»ι‡η›ΈεŒΉι…γ€‚\n\nδ»ζœ‰η–‘ζƒ‘οΌŸθ―·ζŸ₯ι˜…&cζ Όι›·η§‘ζŠ€θƒ½ζΊη³»η»Ÿ&rη« θŠ‚θŽ·ε–εŒζ•΄ηš„η”΅εŠ›η³»η»Ÿθ―¦θ§£οΌ", + "quests.low_voltage.lv_amp_explanation.desc": "ζœ¬δ»»εŠ‘ηΊΏε°†η€θ¦θ²θ§£&9ζ Όι›·η§‘ζŠ€η”΅ζ΅ζœΊεˆΆ&rοΌŒθ‡³δΊŽ&dη”΅εŽ‹&rζœΊεˆΆεˆ™εΎ…δ½ ζŠ΅θΎΎ&bMV&r阢ζ΅εŽθ―¦θ§£γ€‚\n\n&6&lζ ΈεΏƒθ¦η‚ΉοΌš&rδΈΊη‘保ε‰ε…¨οΌŒθ―·δ½Ώη”΅ηΌ†ηš„η”΅ζ΅ζ‰Ώθ½½δΈŠι™δΈŽε‘η”΅θΎε€‡ηš„θΎ“ε‡Ίη”΅ζ΅ζ€»ι‡η›ΈεŒΉι…γ€‚\n\nδ»ζœ‰η–‘ζƒ‘οΌŸθ―·ζŸ₯ι˜…&cζ Όι›·η§‘ζŠ€θƒ½ζΊ&rη« θŠ‚θŽ·ε–εŒζ•΄ηš„η”΅εŠ›η³»η»Ÿθ―¦θ§£οΌ", "quests.low_voltage.lv_ore_prospector.title": "θΏ™ζ˜―ι»‘ε’葌为", "quests.low_voltage.lv_ore_prospector.subtitle": "ε‹˜ζŽ’θ€…ηš„ζœͺζ₯", "quests.low_voltage.lv_ore_prospector.desc": "排矿δ»ͺζ˜―δΈ€δΈͺθƒ½εŠ©δ½ εΏ«ι€Ÿεšδ½ηŸΏθ„‰ηš„η₯žε₯‡ε·₯具。\n\nεƒηš„GUIζ”―ζŒδΊ€δΊ’ζ“δ½œοΌŒε³ι”η‚Ήε‡»ε³ε―ζ‰«ζηŸΏηŸ³εΉΆεžζ—Άζ˜Ύη€Ίεœ¨εŠ¨ζ€εœ°ε›ΎδΈŠγ€‚\n\n&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oζƒ³ε½“εΉ΄δΎΏζΊεΌζŽ’ηŸΏδ»ͺ曾锁εšεœ¨&dLuVη­‰ηΊ§&fζ‰θƒ½δ½Ώη”¨οΌŒηŽ°εœ¨ηš„ε­©ε­δ»¬ε―ε€ͺ轻松了。", @@ -2185,11 +2996,11 @@ "quests.low_voltage.lv_electroliser.title": "εŸΊη‘€η”΅θ§£ζœΊ", "quests.low_voltage.lv_electroliser.subtitle": "ε—‘ε—‘δ½œε“", "quests.low_voltage.lv_electroliser.desc.1": "&lηŸΏηŸ³ε€„η†δΉ‹ε€–ηš„η”¨ι€”οΌš&r\n\nδΈŽη¦»εΏƒζœΊη±»δΌΌοΌŒζ­€θΎε€‡εŠŸθƒ½ζžδΈΊδΈ°ε―Œβ€”β€”ζˆ‘δ»¬ιšΎδ»₯εœ¨ζ­€δΈ€δΈ€εˆ—δΈΎοΌεΉΈθΏηš„ζ˜―οΌŒεƒε±žδΊŽι€ δ»·ζœ€δ½Žηš„&7LV&rζœΊε™¨δΉ‹δΈ€οΌŒε»Ίθεœ¨ιœ€θ¦ζ—Άη«‹ε³ε…₯手。", - "quests.low_voltage.lv_electroliser.desc.2": "&ldε―ΉδΊŽηŸΏηŸ³ε€„η†οΌš&r\n\nε₯½ε§οΌŒεˆšζ‰ηš„θ―΄ζ³•δΈε€Ÿε‡†η‘β€”β€”εƒεΉΆιž&oη›΄ζŽ₯&rη”¨δΊŽηŸΏη‰©ε€„η†οΌŒεžι™…δΈ»θ¦ε‚δΈŽ&aη²‰ζœ«ηš„η”΅θ§£εˆ†θ§£&rγ€‚δΈθΏ‡ε€§ε€šζ•°εžη”¨ηš„甡解配方都&b锁εšεœ¨MV阢ζ΅&r。你可δ»₯ι€šθΏ‡η‰©ε“ζη€Ίζ‘†δΈ­ηš„&eεŒ–ε­¦εΌ&rζ₯ι’„εˆ€η”΅θ§£δΊ§η‰©γ€‚", + "quests.low_voltage.lv_electroliser.desc.2": "&lε―ΉδΊŽηŸΏηŸ³ε€„η†οΌš&r\n\nε₯½ε§οΌŒεˆšζ‰ηš„θ―΄ζ³•δΈε€Ÿε‡†η‘β€”β€”εƒεΉΆιž&oη›΄ζŽ₯&rη”¨δΊŽηŸΏη‰©ε€„η†οΌŒεžι™…δΈ»θ¦ε‚δΈŽ&aη²‰ζœ«ηš„η”΅θ§£εˆ†θ§£&rγ€‚δΈθΏ‡ε€§ε€šζ•°εžη”¨ηš„甡解配方都&b锁εšεœ¨MV阢ζ΅&r。你可δ»₯ι€šθΏ‡η‰©ε“ζη€Ίζ‘†δΈ­ηš„&eεŒ–ε­¦εΌ&rζ₯ι’„εˆ€η”΅θ§£δΊ§η‰©γ€‚", "quests.low_voltage.lv_electroliser.desc.3": "&c注意!&rε—ηŸΏη‰©η‰Ήζ€§ε½±ε“οΌŒε°†ι‡‘ε±žη²‰ε°˜η›΄ζŽ₯ε†Άη‚Όζˆι”­η›Έζ―”η”΅θ§£εˆ†θ§£θƒ½θŽ·εΎ—ζ›΄ι«˜ι‡‘ε±žδΊ§ι‡οΌŒδ½†δ»£δ»·ζ˜―δ½ δΌšζŸε€±η²‰ε°˜δΈ­θ•΄ε«ηš„ε…Άδ»–ε‰―δΊ§ε“γ€‚εΏ…ι‘»ζ Ήζιœ€ζ±‚ζƒθ‘‘οΌšδΌ˜ε…ˆθΏ½ζ±‚η›΄ζŽ₯ζ”Άη›ŠοΌŒθΏ˜ζ˜―ζœ€ε€§εŒ–θŽ·ε–ε‰―δΊ§η‰©η§η±»γ€‚", "quests.low_voltage.lv_mixer.title": "εŸΊη‘€ζ…ζ‹ŒζœΊ", "quests.low_voltage.lv_mixer.subtitle": "ζ…ζ‹ŒζœΊη”¨δΊŽζ…ζ‹Œβ€¦β€¦", - "quests.low_voltage.lv_mixer.desc": "δ½Ώη”¨ζ…ζ‹ŒζœΊε°†&6ε€§εΉ…εŠ εΏ«&rε½©θ‰²ι’’ηš„εˆΆε€‡θΏ‡η¨‹οΌŒε°€ε…Άζ˜―εˆΆδ½œζœΊε™¨ε€–ε£³ζ‰€ιœ€ηš„&4ηΊ’ι’’&rγ€‚ε³δ½ΏηŽ°εœ¨θ€δΈΊδΈιœ€θ¦οΌŒεŽη»­ι˜Άζ΅δ½ δΌšε‘ηŽ°εƒ&6δΈε―ζˆ–ηΌΊ&r。", + "quests.low_voltage.lv_mixer.desc": "δ½Ώη”¨ζ…ζ‹ŒζœΊε°†&6ε€§εΉ…εŠ εΏ«&rε½©θ‰²ι’’ηš„εˆΆε€‡θΏ‡η¨‹οΌŒε°€ε…Άζ˜―εˆΆδ½œζœΊε™¨ε€–ε£³ζ‰€ιœ€ηš„&4ηΊ’ι’’&rγ€‚ε³δ½ΏηŽ°εœ¨θ€δΈΊδΈιœ€θ¦οΌŒεŽη»­ι˜Άζ΅δ½ δΌšε‘ηŽ°εƒ&6δΈε―ζˆ–ηΌΊ&r。\n\nδ½ ε―θƒ½ε·²η»δΉ ζƒ―δΊ†εœ¨ε©εŸšδΈ­θΏ›θ‘Œεˆι‡‘ε†Άη‚ΌοΌŒδ½†ε―ΉδΊŽδ»»δ½•ζ–°εˆι‡‘οΌˆδ»₯εŠζ‰€ζœ‰ζ—§εˆι‡‘οΌ‰οΌŒζ Όι›·η§‘ζŠ€ηš„εˆι‡‘εˆΆδ½œζ–ΉεΌζ˜―&aε°†η²‰ζœ«ζ··εˆ&rοΌŒη„ΆεŽε°†ε…ΆεŠ ηƒ­ζˆι”­ζˆ–ζε–δΈΊζ΅δ½“γ€‚ε…ˆεˆ«εŽ»JEIι‡ŒζŸ₯ηœ‹εˆι‡‘ε†Άη‚Όη‚‰οΌŒι‚£θ¦εˆ°&5EV&r阢ζ΅ζ‰ζœ‰γ€‚", "quests.low_voltage.lv_mixer.task": "ζ₯θ‡ͺζœΊζ’°εŠ¨εŠ›ζˆ–ζ Όι›·η§‘ζŠ€", "quests.low_voltage.soldering_alloy.title": "η„Šι”‘", "quests.low_voltage.soldering_alloy.subtitle": "ζˆ‘ζ‹₯ζœ‰η΅ι­‚ε΄ιžη„Šε°†οΌˆζ³¨οΌšθ‹±ζ–‡θ°ιŸ³ζ’—οΌ‰", @@ -2207,7 +3018,7 @@ "quests.low_voltage.t2_circuit_board.desc.2": "&l&3θƒŒζ™―ζ•…δΊ‹οΌš&r&o在GTCEu1.12.2δΈ­οΌŒθΏ™δΊ›η”΅θ·―ζΏθ’«η§°δΈΊ&2δΌ˜θ΄¨η”΅θ·―ζΏ&f。这δΈͺ名字幢不εŒε…¨εˆι€‚οΌŒε› δΈΊεƒδ»¬&4相当ι‚ͺ恢&f。", "quests.low_voltage.lv_diode.title": "二极η‘", "quests.low_voltage.lv_diode.subtitle": "不要蒫EMIεŠ¨ζ‘‡οΌ", - "quests.low_voltage.lv_diode.desc": "别蒫JEI误导了……η›ε‰θΏ™η§εŽŸε§‹δΊŒζžη‘ (Primitive Diode) εͺζœ‰δΈ€η§ε―θ‘Œι…ζ–Ήβ€”β€”ιœ€θ¦ζΆ²ζ€ηŽ»η’ƒηš„ι‚£δΈͺ。\n\n二极η‘ηš„ι…ζ–Ήζ˜―ε‡ΊδΊ†εηš„&4ζ£˜ζ‰‹&rοΌŒδ½†δΈ€ζ—¦δ½ θƒ½θŽ·ε–&eθšδΉ™ηƒ―&r,εƒδ»¬ηš„εˆΆδ½œε°±δΌšε˜εΎ—ζ›΄δΎΏεœγ€ζ›΄ζ–ΉδΎΏγ€‚\n\nθΏ™ζ˜―εˆΆδ½œ&dMVη”΅θ·―&rζ‰€εΏ…ιœ€ηš„γ€‚", + "quests.low_voltage.lv_diode.desc": "别蒫JEI误导了……η›ε‰θΏ™η§εŽŸε§‹δΊŒζžη‘εͺζœ‰2η§ε―θ‘Œι…ζ–Ήβ€”β€”ιœ€θ¦ζΆ²ζ€ηŽ»η’ƒηš„ι‚£δΊ›γ€‚\n\n二极η‘ηš„ι…ζ–Ήζ˜―ε‡ΊδΊ†εηš„&4ζ£˜ζ‰‹&rοΌŒδ½†δΈ€ζ—¦δ½ θƒ½θŽ·ε–&eθšδΉ™ηƒ―&r,εƒδ»¬ηš„εˆΆδ½œε°±δΌšε˜εΎ—ζ›΄δΎΏεœγ€ζ›΄ζ–ΉδΎΏγ€‚\n\nθΏ™ζ˜―εˆΆδ½œ&dMVη”΅θ·―&rζ‰€εΏ…ιœ€ηš„γ€‚", "quests.low_voltage.1_mv_circuit.title": "第一δΈͺMV甡路!", "quests.low_voltage.1_mv_circuit.subtitle": "θΏ™ζ˜―ε¦ζ„ε‘³η€ζˆ‘δ»¬ε·²η»θΏ›ε…₯MV阢ζ΅δΊ†οΌŸ", "quests.low_voltage.1_mv_circuit.desc": "ε””β€¦δ½ ε·²η»ζœ‰ι“ι”­δΊ†ε—οΌŸ\n\n每δΈͺη”΅ζ°”ζ—Άδ»£ιƒ½ζœ‰δΈŽε…Άη­‰ηΊ§ε―ΉεΊ”ηš„η”΅θ·―γ€‚δΌ˜θ΄¨η”΅ε­η”΅θ·―ζ˜―δ½ εœ¨δΈ‰ηΊ§&bMVη”΅θ·―&rδ½“η³»δΈ­θƒ½εˆΆδ½œηš„&d第一δΈͺMVη”΅θ·―&r。\n\nθ―·ζŒη»­ε…³ζ³¨ζ›΄η»ζ΅Žηš„η”΅θ·―εˆΆδ½œζ–Ήζ‘ˆβ€”β€”ζ―ε½“δ½ εˆΆι€ ε‡Ίζ–°η­‰ηΊ§ηš„&2甡路组装器&rοΌŒιƒ½δΌšθ§£ι”ε…¨ζ–°ι…ζ–Ήδ½“η³»γ€‚ε€ΌεΎ—εΊ†εΉΈηš„ζ˜―οΌŒε½“ε‰θΏ™ηΊ§η”΅θ·―ζ­£ε₯½θƒ½η«‹ε³θ§£ι”ζ–°ι…ζ–ΉοΌε…Άζˆζœ¬ζ•ˆη›ŠθΏœθΆ…ζœΊζ’°ζ‰‹δ½“η³»γ€‚\n\n&6ζ‹₯ζœ‰ι“ζε’Œζœ¬η”΅θ·―εŽοΌŒε³ε―θ§£ι”MVζœΊε™¨γ€‚&r\n\nθ‹₯δ½ ε―Ήζ Όι›·η§‘ζŠ€ε€ζ‚ηš„η”΅θ·―δ½“η³»ζ„Ÿεˆ°ε›°ζƒ‘οΌŒθ―·ζŸ₯ι˜…&6发展进程葨&rη« θŠ‚θŽ·ε–θ―¦θ§£γ€‚", @@ -2249,7 +3060,7 @@ "quests.low_voltage.lv_nitrogen.task": "ζ°", "quests.low_voltage.lv_arc_furnace.title": "甡弧炉", "quests.low_voltage.lv_arc_furnace.subtitle": "η”΅εΌ§η‚‰δ»Žζœͺ如歀出色", - "quests.low_voltage.lv_arc_furnace.desc.1": "&3甡弧炉&rι€šθΏ‡ζΆˆθ€—ε°‘ι‡&9ζ°§ζ°”&rεžηŽ°δΈŽδΌ η»Ÿη†”η‚‰ζˆͺη„ΆδΈεŒηš„ε†Άη‚Όζ–ΉεΌγ€‚\n\nε€ŸεŠ©εƒοΌŒδ½ ε―δ»₯ζ›΄θ½»ζΎεœ°εˆΆε€‡&a锻铁&r、εžηް&aηŽ»η’ƒ&rδΊ§ι‡ηΏ»ε€οΌŒεΉΆθŽ·ε–εˆΆι€ ε»‰δ»·η”΅ε­ε…ƒδ»Άζ‰€ιœ€ηš„&aι€€η«ι“œ&r。εƒθΏ˜ζ˜―ε†Άη‚Ό&4ηΊ’ι’’&r与&1蓝钒&rι”­ηš„ζœ€ι«˜ζ•ˆζ–°ι€”εΎ„οΌ\n\nθ―₯θΎε€‡θΏ˜θƒ½ε°†ε„η±»η»„δ»Άε’ŒζœΊε™¨ε›žζ”Άεˆ†θ§£δΈΊεŽŸε§‹ζζ–™γ€‚", + "quests.low_voltage.lv_arc_furnace.desc.1": "&3甡弧炉&rι€šθΏ‡ζΆˆθ€—ε°‘ι‡&9ζ°§ζ°”&rεžηŽ°δΈŽδΌ η»Ÿη†”η‚‰ζˆͺη„ΆδΈεŒηš„ε†Άη‚Όζ–ΉεΌγ€‚\n\nε€ŸεŠ©εƒοΌŒδ½ ε―δ»₯ζ›΄θ½»ζΎεœ°εˆΆε€‡&a锻铁&r、εžηް&aηŽ»η’ƒ&rδΊ§ι‡ηΏ»ε€οΌŒεΉΆθŽ·ε–εˆΆι€ ε»‰δ»·η”΅ε­ε…ƒδ»Άζ‰€ιœ€ηš„&aι€€η«ι“œ&r。\n\nθ―₯θΎε€‡θΏ˜θƒ½ε°†ε„η±»η»„δ»Άε’ŒζœΊε™¨ε›žζ”Άεˆ†θ§£δΈΊεŽŸε§‹ζζ–™γ€‚", "quests.low_voltage.lv_arc_furnace.desc.2": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oζ—§η‰ˆζ Όι›·η§‘ζŠ€ζ›ΎεŒζ—Άε­˜εœ¨η”΅εΌ§η‚‰ε’Œ&b等离子甡弧炉&fγ€‚ζ—’η„Άε¦‚ζ­€οΌŒδ½•δΈε°†δΈ€θ€…εŠŸθƒ½εˆεΉΆοΌŸδΊ‹εžδΈŠζˆ‘们η‘εžθΏ™ζ ·θΎζƒ³θΏ‡β€”β€”δ½†ζœ€η»ˆη§»ι™€δΊ†ε…ΆδΈ­δΈ€δΈͺ&b等离子&fι…ζ–ΉοΌŒζŽ₯η€εˆη§»ι™€δΊ†ε¦δΈ€δΈͺ&b等离子&f配方。\n\n&oη€θ€Œθ¨€δΉ‹οΌŒ&b等离子甡弧炉&fε·²&4ζ­£εΌι€€εœΊ&fγ€‚ε°±ζ­€ζˆδΈΊεŽ†ε²γ€‚", "quests.low_voltage.lv_extractor.title": "εŸΊη‘€ζΆ²δ½“ζε–", "quests.low_voltage.lv_extractor.subtitle": "ζε–ζœΊη”¨δΊŽζε–β€¦β€¦", @@ -2271,17 +3082,18 @@ "quests.low_voltage.mold_plate.desc": "εˆ«ε†η”¨&6εˆι‡‘η‚‰&rζ΅ͺθ΄Ήζ—Άι—΄δΊ†γ€‚δ½ ε°†ιœ€θ¦ε€§ι‡&6橑胢片&r,后续阢ζ΅θΏ˜δΌšη”¨εƒε€„η†ε…Άδ»–η±»εž‹ηš„ε‘‘ζ–™εˆΆε“γ€‚\n\nζˆ–θΈδ½ θ€δΈΊθƒ½η”¨εŽ‹ζ¨‘ε™¨εˆΆδ½œζ©‘θƒΆη‰‡οΌŒδ½†&6ζ΅δ½“ε›ΊεŒ–ζœΊ&rεŠŸθƒ½ε€šζ ·οΌŒθ€ŒεŽ‹ζ¨‘ε™¨εœ¨&bMV&r阢ζ΅ε‰ε‡ δΉŽζ²‘用。", "quests.low_voltage.cupronickel_ingot.title": "η™½ι“œι”­", "quests.low_voltage.cupronickel_ingot.subtitle": "εƒζ˜―δΈ€η§εˆι‡‘", - "quests.low_voltage.cupronickel_ingot.desc": "&7ζ Όι›·η§‘ζŠ€θΏ›ι˜Άηš„δΈ€ε€§ζ ΈεΏƒεœ¨δΊŽθŽ·ε–ζ–°ζζ–™οΌŒθΏ™δΊ›ζζ–™ε°†η”¨δΊŽε‡ηΊ§ζœΊε™¨ε’Œθ§£ι”ι«˜ηΊ§η»„δ»Άγ€‚&r\n\nδ½ ε°†ζŽ₯θ§¦ηš„η¬¬δΈ€η§εˆι‡‘ζ˜―&bη™½ι“œ&rβ€”β€”θΏ™δ»…ζ˜―ζΌ«ι•ΏεΎη¨‹ηš„θ΅·η‚Ήγ€‚\nθ―₯ζζ–™η”¨δΊŽε‡ηΊ§&6η”΅εŠ›ι«˜η‚‰&rοΌŒδΉƒζ˜―ε·₯δΈšε‘ε±•δΈε―ζˆ–ηΌΊηš„ε…³ι”ζ­₯ιͺ€γ€‚\n\nεΉΈθΏηš„ζ˜―οΌŒθΏ™η¬¬δΈ€ζ­₯相当η€ε•οΌšεŸΊη‘€ηš„&7LVεˆι‡‘η‚‰&rε³ε―θƒœδ»»γ€‚\nε› ζ­€ε³δΎΏι…ζ–Ήζ˜Ύη€Ίιœ€θ¦&b128δΈͺη™½ι“œ&rδΉŸζ— ιœ€ζ‹…εΏ§β€”β€”εžι™…ζ“δ½œζ―”ηœ‹θ΅·ζ₯εΉζ˜“εΎ—ε€šοΌ&r\n\n后续阢ζ΅ηš„εˆι‡‘εˆΆε€‡ε°†ζ—₯θΆ‹ε€ζ‚οΌŒθΆη€ε•ηš„ζ—Άε€™ε₯½ε₯½δΊ«ε—吧!", + "quests.low_voltage.cupronickel_ingot.desc": "ζ Όι›·η§‘ζŠ€θΏ›ι˜Άηš„δΈ€ε€§ζ ΈεΏƒεœ¨δΊŽθŽ·ε–ζ–°ζζ–™οΌŒθΏ™δΊ›ζζ–™ε°†η”¨δΊŽε‡ηΊ§ζœΊε™¨ε’Œθ§£ι”ι«˜ηΊ§η»„δ»Άγ€‚\n\n你即将ζŽ₯θ§¦ηš„ε…ΆδΈ­δΈ€η§ζζ–™ζ˜―&bη™½ι“œ&rβ€”β€”θΏ™δ»…ζ˜―ζΌ«ι•ΏεΎη¨‹ηš„θ΅·η‚Ήγ€‚\nθ―₯ζζ–™η”¨δΊŽε»Ίι€ δ½ ηš„η¬¬δΈ€εΊ§&6η”΅εŠ›ι«˜η‚‰&rοΌŒδΉƒζ˜―ε·₯δΈšε‘ε±•δΈε―ζˆ–ηΌΊηš„ε…³ι”ζ­₯ιͺ€γ€‚\n\nεΉΈθΏηš„ζ˜―οΌŒθΏ™η¬¬δΈ€ζ­₯相当η€ε•οΌšδΈ€ε°&7εˆι‡‘η‚‰&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η™½ι“œηΊΏεœˆθƒ½δ½Ώη”΅εŠ›ι«˜η‚‰ε€„η†ζœ€ι«˜&d1800K&rηš„ι…ζ–ΉοΌˆζœͺθ‘ε…₯η”΅εŽ‹ε’žη›ŠοΌ‰γ€‚θΏ™δΈͺζΈ©εΊ¦εœ¨ζˆ‘δ»¬ηœ‹ζ₯相当炙热。\n\n&6ηΊΏεœˆθ―¦θ§£ζ•™η¨‹δ½δΊŽ&lζ Όι›·η§‘ζŠ€θƒ½ζΊη³»η»Ÿ&r&6标签鑡——前往ζŸ₯ι˜…δ»₯δΊ†θ§£ζ›΄ε€šοΌ&r", + "quests.low_voltage.cupronickel_coil.desc": "准倇&a128δ»½η™½ι“œ&r、&a32δ»½ι’ι“œ&r与&a16δ»½ι”‘εˆι‡‘&rοΌŒη”¨δΊŽεˆΆι€ εˆδ»£η”΅εŠ›ι«˜η‚‰ζ‰€ιœ€ηš„εŠ ηƒ­ηΊΏεœˆγ€‚\n\nθΏ™δ»δΈεˆ°ζ•΄εΊ§η”΅εŠ›ι«˜η‚‰εŽŸζζ–™ζˆζœ¬ηš„δΈ€εŠοΌˆοΌοΌ‰γ€‚δ½ θΏ˜ιœ€θ¦ε‡†ε€‡ηΊ¦ε„δΈ€η»„ηš„ζ·ι’’δΈŽι’’ζοΌŒθ―·ε°½εΏ«ζŠ•ε…₯ι‡‡ηŸΏδ½œδΈšγ€‚\n\nη™½ι“œηΊΏεœˆθƒ½δ½Ώη”΅εŠ›ι«˜η‚‰ε€„η†ζœ€ι«˜&d1800K&rηš„ι…ζ–ΉοΌˆζœͺθ‘ε…₯η”΅εŽ‹ε’žη›ŠοΌ‰γ€‚θΏ™δΈͺζΈ©εΊ¦εœ¨ζˆ‘δ»¬ηœ‹ζ₯相当炙热。\n\n&6ηΊΏεœˆθ―¦θ§£ζ•™η¨‹δ½δΊŽ&lζ Όι›·η§‘ζŠ€θƒ½ζΊ&r&6标签鑡——前往ζŸ₯ι˜…δ»₯δΊ†θ§£ζ›΄ε€šοΌ&r", "quests.low_voltage.lv_ebf.title": "η”΅εŠ›ι«˜η‚‰", "quests.low_voltage.lv_ebf.subtitle": "ζ Όι›·η§‘ζŠ€ηš„ζ ΈεΏƒζœΊε™¨δΉ‹δΈ€οΌŒζˆ‘δ»¬ε–œζ¬’θΏ™δΈͺεΊžη„Άε€§η‰©γ€‚", "quests.low_voltage.lv_ebf.desc.1": "θΏ™δΈͺδ»»εŠ‘θ§£ι‡ŠδΊ†&3η”΅εŠ¨ι«˜η‚‰&rηš„ζ ΈεΏƒζœΊεˆΆοΌŒθ€Œζ—θΎΉηš„δ»»εŠ‘ε°†θ§£ι‡Šε€šζ–Ήε—ιƒ¨δ»Άηš„ζœΊεˆΆγ€‚δΈ€εšθ¦ζŸ₯ηœ‹ι‚£δΈͺδ»»εŠ‘γ€‚\n\nζ€»δΉ‹οΌŒ&3η”΅εŠ›ι«˜η‚‰&rζ˜―δ½ ηš„&e第一δΈͺη”΅εŠ¨ε€šζ–Ήε—η»“ζž„&rοΌζ­ε–œγ€‚εƒη”¨δΊŽεœ¨ι«˜ζΈ©δΈ‹ε€„理材料。\n\nδ½ ε°†η†Ÿζ‚‰η”΅εŠ›ι«˜η‚‰ζ₯εˆΆι€ &a铝&rεΉΆθΏ›ζ­₯到&d&bMV既代&r。εƒθΏ˜θƒ½ζ―”&6ι«˜η‚‰&rζ›΄εΏ«εœ°εˆΆι€ &7ι’’&rοΌŒθΏ™ζ„ε‘³η€δ½ η»ˆδΊŽε―δ»₯ζ‹†ι™€ζ—§ηš„ηΎ€ε³¦δΌ θ―΄ι“εŒ ι“ΊδΊ†γ€‚", "quests.low_voltage.lv_ebf.desc.2": "ιœ€θ¦η‰’θ°ηš„ζ˜―οΌŒη”΅εŠ›ι«˜η‚‰ζ˜―δΈͺθ€—η”΅ε€§ζˆ·γ€‚θΏθ‘Œι…ζ–Ήηš„ζœ€δ½ŽεŠŸθ€—ζ˜―&9120EU/t&r!这η•₯低于4台&7LV&rε‘η”΅ζœΊζˆ–δΊ€ζ΅ε‘η”΅ζœΊηš„θΎ“ε‡ΊεŠŸηŽ‡γ€‚\n\nδ½ ε―θƒ½ιœ€θ¦θ€ƒθ™‘ε•η‹¬ζ­ε»ΊδΈ€ζ‘δΎ›η”΅ηΊΏθ·―οΌŒεœ¨ι θΏ‘η”΅εŠ›ι«˜η‚‰ηš„δ½η½ε‰θ£…δΈ“η”¨ε‘η”΅ζœΊε’Œη”΅ζ± η±ζ₯驱动εƒγ€‚θ―·εŠ‘εΏ…ζ³¨ζ„η”΅ηΌ†ζŸθ€—γ€‚", + "quests.low_voltage.lv_ebf.desc.3": "δ½ ηš„η”΅εŠ›ι«˜η‚‰ζ˜―ε¦ι—ͺηƒεΉΆδΈ”η”΅εŠ›δΈθΆ³οΌŸδ½ εΎˆε―θƒ½ι‡εˆ°δΊ†ηΊΏζŸι—ι’˜β€”β€”θ―·ι˜…θ―»ζ Όι›·η§‘ζŠ€θƒ½ζΊη« θŠ‚ζ₯θ―¦η»†δΊ†θ§£θΏ™δΈ€ζœΊεˆΆγ€‚\n\nθ―·η‘δΏδ½ ηš„ε‘η”΅ζœΊε°½ε―θƒ½ι θΏ‘η”΅εŠ›ι«˜η‚‰οΌŒεΉΆδ½Ώη”¨εˆι€‚ηš„ηΊΏηΌ†β€”β€”ζˆ‘δ»¬ζŽ¨θζŒ‰η…§δΈŠε›Ύζ‰€η€Ίηš„ζ–ΉεΌεΈƒη½2x锑线缆。", "quests.low_voltage.multiblock_tech.title": "ε€šζ–Ήε—ζŠ€ζœ―", "quests.low_voltage.multiblock_tech.subtitle": "ε“¦οΌŒζˆ‘δ»¬ε–œζ¬’ε€šζ–Ήε—η»“ζž„οΌŒε―Ήε§οΌŸ", - "quests.low_voltage.multiblock_tech.desc": "θΏ™ζ˜―ζ­ε»Ίη¬¬δΈ€δΈͺ&bη”΅εŠ›ι«˜η‚‰&rζ‰€ιœ€ηš„εŸΊη‘€ιƒ¨δ»ΆοΌŒδΈθΏ‡εƒηš„εšεˆΆζ€§εΎˆι«˜γ€‚θ―·θ°δ½δ½Ώη”¨&6EMI&rοΌŒε―ΉζŽ§εˆΆε™¨δ½Ώη”¨&6U&rι”ζŸ₯ηœ‹η”¨ζ³•οΌŒεΉΆδΈ”δΈθ¦ηŠΉθ±«&6ε·¦ι”ε•ε‡»η»“ζž„ζ–Ήε—&rζ₯了解各种可能性。\n\nδΈ€δΈͺι‡θ¦ζη€Ίζ˜―οΌŒζ―δΈͺ能源仓可δ»₯ζŽ₯受&a2A&rηš„η”΅ζ΅οΌŒθΏ™ζ„ε‘³η€εœ¨&7LV&r阢ζ΅οΌŒζ―δΈͺ能源仓能倄理&a64EU/t&rηš„θƒ½ι‡γ€‚ι…ε€‡δΈ€δΈͺθƒ½ζΊδ»“ζ—ΆοΌŒδ½ ηš„&eη”΅εŠ›ι«˜η‚‰&r就可δ»₯在&a128EU/t&rηš„εŠŸηŽ‡δΈ‹θΏθ‘Œγ€‚\n\nζ¬²δΊ†θ§£ζ­€ζœΊεˆΆηš„ζ›΄ε€šη»†θŠ‚οΌŒθ―·ε‚ι˜…&eζ Όι›·η§‘ζŠ€θƒ½ζΊη³»η»Ÿ&rη« θŠ‚οΌŒη‰Ήεˆ«ζ˜―&eζΆˆθ€—θƒ½ι‡&rιƒ¨εˆ†γ€‚\n\nε€šζ–Ήε—η»“ζž„εŒ…ε«ε„η§ζœ‰θΆ£ηš„ζœΊεˆΆοΌŒδΉηœ‹ε―θƒ½δ»€δΊΊζœ›θ€Œη”Ÿη•οΌŒδ½†εˆ«ζ‹…εΏƒβ€”β€”η›ε‰δ½ θΏ˜η”¨δΈδΈŠδ»€δΉˆε€ζ‚ζ“δ½œγ€‚θΏ™δΊ›ηŸ₯识都可δ»₯εΎͺεΊζΈθΏ›εœ°ζŽŒζ‘οΌ", + "quests.low_voltage.multiblock_tech.desc": "θΏ™ζ˜―ζ­ε»Ίη¬¬δΈ€δΈͺ&bη”΅εŠ›ι«˜η‚‰&rζ‰€ιœ€ηš„εŸΊη‘€ιƒ¨δ»ΆοΌŒδΈθΏ‡εƒηš„εšεˆΆζ€§εΎˆι«˜γ€‚θ―·θ°δ½δ½Ώη”¨&6EMI&rοΌŒε―ΉζŽ§εˆΆε™¨δ½Ώη”¨&6U&rι”ζŸ₯ηœ‹η”¨ζ³•οΌŒεΉΆδΈ”δΈθ¦ηŠΉθ±«&6ε·¦ι”ε•ε‡»η»“ζž„ζ–Ήε—&rζ₯了解各种可能性。\n\nδΈ€δΈͺι‡θ¦ζη€Ίζ˜―οΌŒζ―δΈͺ能源仓可δ»₯ζŽ₯受&a2A&rηš„η”΅ζ΅οΌŒθΏ™ζ„ε‘³η€εœ¨&7LV&r阢ζ΅οΌŒζ―δΈͺ能源仓能倄理&a64EU/t&rηš„θƒ½ι‡γ€‚ι…ε€‡δΈ€δΈͺθƒ½ζΊδ»“ζ—ΆοΌŒδ½ ηš„&eη”΅εŠ›ι«˜η‚‰&r就可δ»₯在&a128EU/t&rηš„εŠŸηŽ‡δΈ‹θΏθ‘Œγ€‚\n\nζ¬²δΊ†θ§£ζ­€ζœΊεˆΆηš„ζ›΄ε€šη»†θŠ‚οΌŒθ―·ε‚ι˜…&eζ Όι›·η§‘ζŠ€θƒ½ζΊ&rη« θŠ‚οΌŒη‰Ήεˆ«ζ˜―&eζΆˆθ€—θƒ½ι‡&rιƒ¨εˆ†γ€‚\n\nε€šζ–Ήε—η»“ζž„εŒ…ε«ε„η§ζœ‰θΆ£ηš„ζœΊεˆΆοΌŒδΉηœ‹ε―θƒ½δ»€δΊΊζœ›θ€Œη”Ÿη•οΌŒδ½†εˆ«ζ‹…εΏƒβ€”β€”η›ε‰δ½ θΏ˜η”¨δΈδΈŠδ»€δΉˆε€ζ‚ζ“δ½œγ€‚θΏ™δΊ›ηŸ₯识都可δ»₯εΎͺεΊζΈθΏ›εœ°ζŽŒζ‘οΌ", "quests.low_voltage.multiblock_tech.task.1": "θΎ“ε…₯ζ€»ηΊΏ", "quests.low_voltage.multiblock_tech.task.2": "θΎ“ε‡Ίζ€»ηΊΏ", "quests.low_voltage.multiblock_tech.task.3": "θΎ“ε…₯δ»“", @@ -2299,6 +3111,15 @@ "quests.low_voltage.mv_hull.subtitle": "θΏ›ε±•η›Έε½“ι‘Ίεˆ©οΌŒεͺ剩7δΈͺ了!", "quests.low_voltage.mv_hull.desc1": "εΉ²εΎ—ζΌ‚δΊοΌδ½ ηŽ°εœ¨ε·²η»ζœ‰δΊ†&bMVζœΊε™¨ε€–ε£³&r、第一块&bMVη”΅θ·―&rε’Œη¬¬δΈ€ε°&6η”΅θ·―η»„θ£…ζœΊ&r。\n\nθΏ™ζ­£ζ˜―&6ζ Όι›·η§‘ζŠ€&rηš„η²Ύι«“ζ‰€εœ¨β€”β€”ζ―δΈͺ阢ζ΅δ½ ιƒ½ε°†θΏη”¨ε…¨ζ–°ηš„&6材料&r与&6εŒ–ε·₯产品&rζ₯εˆΆι€ ζ–°δΈ€δ»£&6ζœΊε™¨&r。ζŽ₯δΈ‹ζ₯你将体ιͺŒ&5ι…£η•…ζ·‹ζΌ“ηš„εˆ›ι€ δΉθΆ£&rοΌŒζˆ‘δ»¬ιƒ½ζœ‰η‚ΉηΎ‘ζ…•δΊ†οΌ", "quests.low_voltage.mv_hull.desc2": "在深ε…₯&bMV&r阢ζ΅δΉ‹ε‰θ―·θ°δ½οΌŒθ‹₯δΈζƒ³θΏ‡εΊ¦δΎθ΅–ζ Όι›·η§‘ζŠ€οΌŒεœ¨&6TFG&rζ•΄εˆεŒ…δΈ­δ½ ε―δ»₯运用&6ζœΊζ’°εŠ¨εŠ›&rζ₯εΌΊεŒ–εŸΊη‘€θΎζ–½γ€‚ι“εˆΆδΌ εŠ¨ζ†δΈŽι½Ώθ½ηš„εΊ”εŠ›εΉι‡ζ˜―ι’’εˆΆηš„ε››ε€οΌŒθ£…ι…εŽζ‰€ζœ‰ζœΊε™¨ιƒ½θƒ½ζ›΄εΏ«εœ°θΏθ½¬οΌ", + "quests.low_voltage.aluminium_greate.title": "ι“ηΊ§ζ Όι›·ζœΊζ’°", + "quests.low_voltage.aluminium_greate.subtitle": "δΉŸθ’«η§°δΈΊβ€œδΈ­εΊ”εŠ›β€ι˜Άζ΅", + "quests.low_voltage.aluminium_greate.desc": "θ·δΈŠζ¬‘ε‡ηΊ§ε·²ζœ‰δΈ€ζ΅ζ—Άζ—₯οΌŒηŽ°εœ¨δ½ η»ˆδΊŽθ§£ι”δΊ†ε…¨ζ–°η­‰ηΊ§ηš„ζ Όι›·ζœΊζ’°ι½Ώθ½δΈŽδΌ εŠ¨θ½΄γ€‚δΈŽδΉ‹ε‰δΈ€ζ ·οΌŒι“θ΄¨ιƒ¨δ»Άηš„εΊ”εŠ›εΉι‡θΎΎεˆ°δΊ†ι’’θ΄¨ηš„&b四倍&r。\n\nη»§η»­ζŽ¨θΏ›ζ Όι›·ζœΊζ’°η³»εˆ—ε†…εΉεŒε…¨ε±žδΊŽε―ι€‰ζ΅η¨‹β€”β€”ζˆ‘δ»¬ζ›΄ε»Ίθδ½ θ½¬ε‘ζ Όι›·η§‘ζŠ€δΈ»ηΊΏε‘ε±•γ€‚δ½†θ‹₯δ½ εΈŒζœ›η»§η»­ζ²Ώη”¨εŽŸζœ‰θΎε€‡οΌŒζœ¬ζ¬‘升级将εΈεŠ©δ½ &b理鑺&rιƒ¨εˆ†ζ—§θ£…η½ηš„杂乱布局。\n\n你可δ»₯ι€šθΏ‡&eθ’Έζ±½εΌ•ζ“Ž&rθΏ›δΈ€ζ­₯ζε‡ζ•΄δ½“εΊ”εŠ›θ§„ζ¨‘οΌŒζˆ–εˆ©η”¨&9Create Additions&rηš„&eη”΅εŠ¨ι©¬θΎΎ&rε°†EUη”΅θƒ½θ½¬εŒ–δΈΊSUεΊ”εŠ›ε•δ½γ€‚", + "quests.low_voltage.oil.title": "ζε‰ε‘ηŽ°ηŸ³ζ²ΉδΊ†οΌŸ", + "quests.low_voltage.oil.subtitle": "致LV阢ζ΅ηš„ε·ηŽ‹", + "quests.low_voltage.oil.desc": "θ‹₯δ½ εœ¨ζ—…ι€”δΈ­ε‘ηŽ°δ»»δ½•ζ²Ήη ‚ηŸΏζˆ–οΌˆζ²™ζΌ δΈ­ηš„οΌ‰ηŸ³ζ²Ήε–·ε£οΌŒε…Άεžεœ¨LV阢ζ΅δΎΏε―η¨εŠ εˆ©η”¨γ€‚\n\nδ½ ε―ε°†ε…Άθ½¬εŒ–δΈΊι‡η‡ƒζ²Ήη”¨δΊŽι”…η‚‰οΌŒζˆ–ζ›΄δ½³β€”β€”η”¨εƒη”ŸδΊ§ε°‘量&bθšδΉ™ηƒ―&r!\n\nη›Έε…³η»†θŠ‚θ™½εœ¨MVη« θŠ‚οΌŒδ½†ζ­€εˆ»δ½ ε·²ε―η”¨θšδΉ™ηƒ―εˆΆι€ ζ•°η§η‰©ε“οΌŒδΎ‹ε¦‚ζˆζœ¬ζ›΄δ½Žηš„ζœΊε™¨ε€–ε£³δΈŽδΊŒζžη‘。", + "quests.low_voltage.glowstone.title": "ζ°ΈδΉ…η…§ζ˜Ž", + "quests.low_voltage.glowstone.subtitle": "ε‘ζ˜Žη”΅η―ζ³‘ηš„θΏ‚ε›žζ–ΉεΌ", + "quests.low_voltage.glowstone.desc": "ζƒ³ζ‰ΎδΈ€δΊ›ε»‰δ»·ηš„ζ°ΈδΉ…ε…‰ζΊοΌŸηŽ°εœ¨δ½ ζœ‰δΊ†LVζε–ζœΊοΌˆεΎˆεΏ«θΏ˜δΌšζœ‰LVζ΅δ½“ε›ΊεŒ–ζœΊοΌ‰οΌŒζ­£ε₯½ε―δ»₯ε₯½ε₯½εˆ©η”¨εœ¨δΈ‹η•Œζ”’δΈ‹ηš„ι‚£δΊ›&6θ§ηŸ³η²‰&rγ€‚δΈε€Ÿη”¨οΌŸη”¨ζ…ζ‹ŒζœΊθΏ˜θƒ½θ‡ͺ己造。\n\n打开JEIηœ‹ηœ‹οΌŒζ‰€ζœ‰η”¨ζΆ²ζ€θ§ηŸ³ε’Œθ§ηŸ³ε—εˆζˆηš„ζ–°ε…‰ζΊιƒ½εœ¨ι‡Œι’γ€‚ζ Όι›·η§‘ζŠ€θΏ˜ζδΎ›δΊ†η›΄ζŽ₯η”¨θ§ηŸ³η²‰εœ¨η»„θ£…ζœΊι‡ŒεˆΆδ½œηš„ζ¬ΎεΌγ€‚\n\nθΏ˜ζœ‰δΈͺη¦εˆ©οΌšζΆ²ζ€θ§ηŸ³ε―δ»₯η›΄ζŽ₯δ½œδΈΊη―η¬Όηš„ζ— ι™η‡ƒζ–™οΌ", "quests.medium_voltage": "&bMV&r - δΈ­εŽ‹", "quests.medium_voltage.subtitle": "θΏ›ε†›ηŸ³ζ²ΉεŒ–ε·₯οΌŒη²Ύη‚Όη”΅ε­ζŠ€ζœ―", "quests.medium_voltage.mv_machine_hull.title": "欒迎ζ₯到MV!", @@ -2310,8 +3131,8 @@ "quests.medium_voltage.mv_miner.title": "θ‡ͺεŠ¨ι‡‡ηŸΏ", "quests.medium_voltage.mv_miner.subtitle": "所δ»₯δ½ θ‡ͺε·±ζŒ–ηŸΏζŒ–ηƒ¦δΊ†οΌŸ", "quests.medium_voltage.mv_miner.desc.1": "当这位&rε₯½εΏƒηš„εΈζ‰‹θ’«ζ”Ύη½εœ¨ηŸΏθ„‰δΈŠζ–Ήζ—Άθƒ½ζ›Ώδ½ ι‡‡ι›†ηŸΏηŸ³γ€‚\n\nηŸΏζœΊδΈ‹ζ–Ήηš„εž‚η›΄θŒƒε›΄ζ— ι™οΌŒζ°΄εΉ³θŒƒε›΄ζ˜Ύη€Ίεœ¨ζη€ΊδΏ‘ζ―δΈ­γ€‚\n\n&bMV&rεž‹ε·ε―θƒ½δΈθΆ³δ»₯覆盖整δΈͺηŸΏθ„‰θŒƒε›΄οΌŒδ½†&6HV&rεž‹ε·ε―δ»₯εšεˆ°οΌŒε› ζ­€ε»Ίθδ½ ζš‚ζ—Άη­‰εΎ…εŽη»­εž‹ε·γ€‚ζœ¬δ»»εŠ‘εͺιœ€θŽ·εΎ—&e任意一种&rεž‹ε·ε³ε―εŒζˆγ€‚", - "quests.medium_voltage.mv_miner.desc.2": "δ½ ε°†ιœ€θ¦&9η”΅εŠ›&r。&aε……η”΅η”΅ζ± &rζˆ–θΈθƒ½εΊ”ζ€₯οΌŒδ½†εΉζ˜“θ€—ε°½η”΅εŠ›οΌŒζ“δ½œθ΅·ζ₯不ε€ͺ方便。\n\nζˆ‘δ»¬ι¦–ζŽ¨δ½Ώη”¨θ£…ζœ‰ζŸη§η‡ƒζ–™ηš„&3ζ‘Ά&r&7(θ‹₯δ½Ώη”¨θ’Έζ±½εˆ™θ‘ŒδΈι€šοΌοΌ‰&rι…εˆ&3ε‘η”΅ζœΊ&r使用。\n\nε°†ζ‘Άζ”Ύη½εœ¨ε‘η”΅ζœΊδΈŠζ–ΉοΌŒη”¨&5软槌&r右ι”即可θ‡ͺεŠ¨ε°†η‡ƒζ–™θΎ“ε…₯ε‘η”΅ζœΊγ€‚", - "quests.medium_voltage.mv_miner.desc.3": "&cζ³¨ζ„οΌš&r不要忘θ°ε―ΉηŸΏθ„‰ζ‰€ζœ‰&d9δΈͺεŒΊε—θΏ›θ‘ŒεŒΊε—εŠ θ½½&r&7οΌˆζ‰“εΌ€εœ°ε›ΎοΌŒζŒ‰δ½Ctrl+ε·¦ι”η‚Ήε‡»η”³ι’†εŒΊε—οΌŒη”³ι’†εŽε―η”¨εΌΊεˆΆεŠ θ½½οΌ‰&r。\n\n&9提瀺:&r可选择使用&3MEη±ε­&rζˆ–&3ζ Όι›·ζœΊζ’°&rδ½œδΈΊθΎ“ε‡ΊεΉε™¨οΌŒδΎΏδΊŽε°†ηŸΏηŸ³θΏε›žεŸΊεœ°γ€‚&3MEη±ε­&r可直ζŽ₯ι€šθΏ‡EUδΎ›η”΅οΌŒδ½†ηŸ­ζœŸε†…θΏ˜ζ— ζ³•εžηŽ°γ€‚", + "quests.medium_voltage.mv_miner.desc.2": "δ½ ε°†ιœ€θ¦&9η”΅εŠ›&r。&aε……η”΅η”΅ζ± &rζˆ–θΈθƒ½εΊ”ζ€₯οΌŒδ½†εΉζ˜“θ€—ε°½η”΅εŠ›οΌŒζ“δ½œθ΅·ζ₯不ε€ͺ方便。\n\nζˆ‘δ»¬ι¦–ζŽ¨δ½Ώη”¨θ£…ζœ‰ζŸη§η‡ƒζ–™ηš„&3ζ‘Ά&r&7(θ‹₯δ½Ώη”¨θ’Έζ±½εˆ™θ‘ŒδΈι€šοΌοΌ‰&rι…εˆ&3ε‘η”΅ζœΊ&r使用。\n\nε°†ζ‘Άζ”Ύη½εœ¨ε‘η”΅ζœΊδΈŠζ–ΉοΌŒη”¨&5软槌&rζˆ–&5θžΊδΈεˆ€&r右ι”即可θ‡ͺεŠ¨ε°†η‡ƒζ–™θΎ“ε…₯ε‘η”΅ζœΊγ€‚", + "quests.medium_voltage.mv_miner.desc.3": "&cζ³¨ζ„οΌš&r不要忘θ°ε―ΉηŸΏθ„‰ζ‰€ζœ‰&d9δΈͺεŒΊε—θΏ›θ‘ŒεŒΊε—εŠ θ½½&r&7οΌˆζ‰“εΌ€εœ°ε›ΎοΌŒζŒ‰δ½Ctrl+ε·¦ι”η‚Ήε‡»η”³ι’†εŒΊε—οΌŒη”³ι’†εŽε―η”¨εΌΊεˆΆεŠ θ½½οΌ‰&r。\n\n&9提瀺:&r你可δ»₯选择使用&3MEη±ε­&r、&3θƒŒεŒ…&rζˆ–&3格雷板村η±&rδ½œδΈΊθΎ“ε‡ΊεΉε™¨οΌŒδΎΏδΊŽε°†ηŸΏηŸ³θΏε›žεŸΊεœ°γ€‚ι‘ΊεΈ¦δΈ€ζοΌŒ&3MEη±ε­&r可直ζŽ₯ι€šθΏ‡EU供甡。", "quests.medium_voltage.mv_miner.task": "δ»»δ½•ι‡‡ηŸΏζœΊ", "quests.medium_voltage.mv_component.title": "MVη»„δ»Ά", "quests.medium_voltage.mv_component_.subtitle": "ζ˜―δΈζ˜―ε—ε€ŸδΊ†εœ¨δΈŠδΈͺ阢ζ΅εˆζˆθΏ™δΊ›δΈœθ₯ΏοΌŸ", @@ -2319,7 +3140,7 @@ "quests.medium_voltage.electrolyzer.title": "MVη”΅θ§£ζœΊ", "quests.medium_voltage.electrolyzer.subtitle": "ζˆ‘δ»¬ζˆεŠŸθΏ›ε…₯δΊ†MVζ—Άδ»£οΌŒδΈθΏ‡...", "quests.medium_voltage.electrolyzer.desc.1": "&bθΏ™δΈͺθΎε€‡ηœ‹θ΅·ζ₯εΊ”θ―₯εΎˆη†Ÿζ‚‰&r——你之前已经见过εƒδΊ†γ€‚\n&2ζˆ‘δ»¬εΌΊηƒˆε»Ίθ你尽快刢作εƒ&rοΌŒε› δΈΊεƒε°†θ§£ι”ε€§ι‡ζ–°ηš„&7铝&rζ₯源。\n\nεœ¨ζ­€δΉ‹ε‰οΌŒδ½ ε”―δΈ€θŽ·ε–&7铝粉&rηš„ζ–Ήζ³•ζ˜―&9甡解蓝εηŸ³&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.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&7ζˆ‘δ»¬εΉΆδΈζŠ±ζ­‰γ€‚&r", "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ε°εž‹ι½Ώθ½&r、&6ι½Ώθ½&rε’Œ&6环&r!\n\n你还可δ»₯用εƒζ₯εˆΆι€ &dη‘道&r、&d螺丝&rε’Œ&d转子&r。", @@ -2331,7 +3152,7 @@ "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δ»”η»†ι˜…θ―»ζ Όι›·η§‘ζŠ€θƒ½ζΊη³»η»Ÿηš„δΈ“ι’˜η« θŠ‚&rδ»₯ζ·±ε…₯δΊ†θ§£θƒ½ζΊη³»η»ŸθΏδ½œεŽŸη†γ€‚\n\nη›ε‰δ½ ζœ‰&a三种主要选择&r:\n\n&8-使用&bMVε‘η”΅ζœΊ&rη›΄ζŽ₯δΊ§η”Ÿ&bMV级甡能&r\n\n&8-ι€šθΏ‡ε˜εŽ‹ε™¨ε°†&7LV&rη”΅θƒ½ε‡εŽ‹&r,&7LV&r与&bMV&rηš„θ½¬ζ’ζ―”δΎ‹δΈΊ&e4:1&r\n\n&8-ι€šθΏ‡&dδΊ€ζ΅ε‘η”΅ζœΊ&rε°†RFθ½¬εŒ–δΈΊ&bMV甡能&r", + "quests.medium_voltage.mv_energy.desc.1": "δ½ ε₯½οΌζ¬’迎ζ₯到&bMVθƒ½ζΊη”ŸδΊ§&r。\n\nζœ¬η« θŠ‚ε°†δΈΊδ½ δ»‹η»η»΄ζŒ&bMVζœΊε™¨&r稳εšθΏθ‘Œηš„ε„η§δΎ›η”΅ζ–Ήζ‘ˆγ€‚\n\nη”±δΊŽδΈδΌšεœ¨ζ―δΈͺη« θŠ‚ιƒ½ι‡ε€θ―΄ζ˜ŽοΌŒζˆ‘δ»¬εΌΊηƒˆε»Ίθδ½ &aδ»”η»†ι˜…θ―»ζ Όι›·η§‘ζŠ€θƒ½ζΊηš„δΈ“ι’˜η« θŠ‚&rδ»₯ζ·±ε…₯δΊ†θ§£θƒ½ζΊη³»η»ŸθΏδ½œεŽŸη†γ€‚\n\nη›ε‰δ½ ζœ‰&a三种主要选择&r:\n\n&7-使用&bMVε‘η”΅ζœΊ&rη›΄ζŽ₯δΊ§η”Ÿ&bMV级甡能&r\n\n&7-ι€šθΏ‡ε˜εŽ‹ε™¨ε°†&7LV&rη”΅θƒ½ε‡εŽ‹&r,&7LV&r与&bMV&rηš„θ½¬ζ’ζ―”δΎ‹δΈΊ&e4:1&r\n\n&7-ι€šθΏ‡&dδΊ€ζ΅ε‘η”΅ζœΊ&rε°†RFθ½¬εŒ–δΈΊ&bMV甡能&r\n\n", "quests.medium_voltage.mv_energy.desc.2": "ζ›΄ι«˜ηΊ§ηš„ε‘η”΅ζœΊε°†ζŒ‰ζ―”δΎ‹ζε‡η‡ƒζ–™ζΆˆθ€—δ»₯εŒΉι…ε…Άε‘η”΅ηŽ‡οΌŒεŒζ—ΆδΏζŒη‡ƒζ–™η‡ƒηƒ§ζ—Άι•ΏδΈŽθƒ½ι‡δΊ§ε‡Ίζ€»ι‡δΈε˜γ€‚&3θΏ›ι˜Άθ’Έζ±½θ½ζœΊ&rζ―η§’ζΆˆθ€—&d5120mBθ’Έζ±½&rοΌŒη­‰ζ•ˆδΊŽ&d256mB/t&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能ε‰ε…¨εžηŽ°δΈεŒη”΅εŽ‹η­‰ηΊ§ι—΄ηš„ε‡εŽ‹δΈŽι™εŽ‹γ€‚εƒδ»¬ε°†ζŽ₯ζ”Άεˆ°ηš„η”΅εŠ›θ½¬ζ’δΈΊζ―”θΎ“ε…₯η”΅εŽ‹ι«˜ζˆ–δ½ŽδΈ€δΈͺη­‰ηΊ§ηš„η­‰ι‡η”΅εŠ›γ€‚\n\nι™€δΊ†ι©±εŠ¨δΈεŒη”΅εŽ‹η­‰ηΊ§ηš„ζœΊε™¨ε€–οΌŒε˜εŽ‹ε™¨θΏ˜θƒ½η”¨δΊŽι•Ώθ·η¦»η”΅εŠ›δΌ θΎ“β€”β€”ε› δΈΊζ›΄ι«˜η”΅εŽ‹δΈ‹ηΊΏθ·―ζŸθ€—ηš„ε½±ε“ζ›΄ε°γ€‚θΏ™ε’ŒηŽ°εžδΈ–η•Œε¦‚ε‡ΊδΈ€θΎ™οΌ", @@ -2346,7 +3167,7 @@ "quests.medium_voltage.mv_batteries.desc": "&bMV&rη”΅ζ± θƒ½ζ»‘θΆ³δ½ ηš„η”΅θƒ½ηΌ“ε­˜ιœ€ζ±‚οΌŒε…ΆεŠŸθƒ½δΈŽ&7LV&rη”΅ζ± η›ΈεŒγ€‚\n\nεˆΆδ½œζˆζœ¬δΈ­ηš„&aι’ &r、&aι”‚&rζˆ–&a镉&rη²‰ζœ«η”¨ι‡θ·ƒε‡θ‡³8δ»½οΌŒε› ζ­€ε»Ίθι€‰η”¨εΊ“ε­˜ζœ€ε……θ£•ηš„ζζ–™β€”β€”ζ―•η«ŸδΈεŒζζ–™ηš„εΉι‡ε·εΌ‚εΉΆζ²‘ζœ‰&7ι‚£δΉˆε·¨ε€§&r!\n\nεŒζˆζœ¬δ»»εŠ‘εͺιœ€θŽ·εΎ—&e任何一种&r甡池即可。", "quests.medium_voltage.mv_steel_alloy.title": "ι’’εˆι‡‘", "quests.medium_voltage.mv_steel_alloy.subtitle": "钒铁雄心", - "quests.medium_voltage.mv_steel_alloy.desc": "ι’’ι’’εœ¨ε‘ε±•θΏ›η¨‹δΈ­δ»…ιœ€ε°‘ι‡δ½Ώη”¨γ€‚θ‹₯η”¨δΊŽεˆΆδ½œζ Όι›·η§‘ζŠ€ε·₯ε…·οΌŒε…Άθ€δΉ…εΊ¦&6ζŽ₯θΏ‘ι’’ζηš„ε››ε€&r。钒元素源θ‡ͺ&aι’’η£ι“ηŸΏ&rοΌŒδ½ ε―θƒ½εœ¨η£ι“ηŸΏθ„‰δΈ­ζ—©ε·²ι‡θ§θΏ‡γ€‚\n\nε…Άδ»–ι’’ζεˆι‡‘θΏ˜εŒ…ζ‹¬θ“ι’’γ€ηΊ’ι’’δΈŽι»‘ι’’οΌ\n\n免费钆取些蓝钒吧——εƒηš„θ€δΉ…εΊ¦ζ˜―ι’’ζηš„δΈ€ε€γ€‚", + "quests.medium_voltage.mv_steel_alloy.desc": "ι’’ι’’εœ¨ε‘ε±•θΏ›η¨‹δΈ­δ»…ιœ€ε°‘ι‡δ½Ώη”¨γ€‚θ‹₯η”¨δΊŽεˆΆδ½œζ Όι›·η§‘ζŠ€ε·₯ε…·οΌŒε…Άθ€δΉ…εΊ¦&6ζŽ₯θΏ‘ι’’ζηš„ε››ε€&r。钒元素源θ‡ͺ&aι’’η£ι“ηŸΏ&rοΌŒδ½ ε―θƒ½εœ¨η£ι“ηŸΏθ„‰δΈ­ζ—©ε·²ι‡θ§θΏ‡γ€‚", "quests.medium_voltage.pyrolyse.title": "热解炉", "quests.medium_voltage.pyrolyse.subtitle": "ηƒ­εˆ†θ§£", "quests.medium_voltage.pyrolyse.desc.1": "&3热解炉&r是&3焦炉&rηš„η”΅εŠ›ζ›Ώδ»£θΎε€‡γ€‚εƒζ—’能像δ»₯εΎ€δΈ€ζ ·η”ŸδΊ§&9焦炭&rε’Œ&9ζœ¨η‚­&rεΉΆι™„εΈ¦&9ζ‚ι…šζ²Ή&rε‰―δΊ§ε“οΌŒθΏ˜ι’ε€–δΊ§ε‡Ί&6ζœ‰ζœΊε‰―δΊ§ε“&rοΌŒε…ΆδΈ­ζœ€ε…·δ»·ε€Όηš„ζ˜―&aζœ¨η„¦ζ²Ή&r。\n\n另一鑹产物&aη”Ÿη‰©θ΄¨&rεˆ™δΈŽδ½ ε½“ε‰ηš„θΏ›η¨‹ζ›΄δΈΊη›Έε…³γ€‚", @@ -2355,10 +3176,11 @@ "quests.medium_voltage.pyrolyse.desc.4": "&9&lζ³¨ζ„οΌš&r&lζ€η‰©θ·―ηΊΏζ˜―θŽ·ε–&9&lδΉ™ηƒ―&r&lηš„ι€”εΎ„δΉ‹δΈ€οΌŒθ―₯εŒ–ε­¦ε“ζ˜―θΏ›ι˜Ά&6HV&r阢ζ΅ηš„必要材料。&lε¦δΈ€ζ‘θ·―ηΊΏιœ€ι€šθΏ‡ηŸ³ζ²ΉθŽ·ε–γ€‚&r\n\nηƒ­θ§£η‚‰δ»ε±žδΊŽ&d可选&rθΎε€‡γ€‚但无θΊζ˜―δΈΊθƒ½ζΊη”ŸδΊ§θΏ˜ζ˜―ε€šη§ε‰―δΊ§ε“οΌŒε»Ίι€ εƒιƒ½θƒ½εΈ¦ζ₯ε―θ§‚ζ”Άη›ŠοΌŒζˆ‘δ»¬εΌΊηƒˆε»Ίθδ½ δΊ†θ§£ε…ΆθΏδ½œζœΊεˆΆγ€‚\n\n&l&3θƒŒζ™―εͺ是:&r&o在GT5uη‰ˆζœ¬δΈ­οΌŒηƒ­θ§£η‚‰η»“ζž„ζ›Ύζ˜―δΈͺθ‘—εηš„ε·¨ε€§η±δ½“οΌŒε†…ιƒ¨δ»…ζ”Ύη½9δΈͺηΊΏεœˆγ€‚η”±δΊŽηΌΊε°‘EMIι’„θ§ˆεŠŸθƒ½οΌŒηŽ©εΆεΎ€εΎ€ιœ€θŠ±θ΄Ήζ•°εˆ†ι’ŸζŽ’ζŸ₯η»“ζž„ι—ι’˜γ€‚", "quests.medium_voltage.mv_fluid_rig.title": "ζ΅δ½“ι’»ζœΊ", "quests.medium_voltage.mv_fluid_rig.subtitle": "ζ Όι›·η§‘ζŠ€ηŽ°δ»£η‰ˆδΈ­ηš„ζ΅δ½“ι’»ζœΊοΌ", - "quests.medium_voltage.mv_fluid_rig.desc.1": "ε»Ίι€ &3ζ΅δ½“ι’»ζœΊ&rη‘εžιœ€θ¦δΈε°ζŠ•ε…₯οΌŒδ½†θΏ™ζ˜―&oη›ε‰&rζœ€δΈ»ζ΅ηš„&6ηŸ³ζ²ΉθŽ·ε–ζ–ΉεΌ&r。\n\nεƒθƒ½δ»ŽεŸΊε²©ε±‚δΈ‹ζ–ΉζŠ½ε–ζ΅δ½“γ€‚ιœ€θ¦ζ³¨ζ„ηš„ζ˜―θΏ™δΊ›ζ΅δ½“εΉΆιžηœŸεžε­˜εœ¨οΌŒθ€Œζ˜―ι€šθΏ‡ζ¨‘ζ‹Ÿθ‘η—η”Ÿζˆγ€‚\n\nζ΅δ½“ηŸΏθ„‰εˆ†εΈƒεœ¨&cεŒΊε—ε€§ε°εŒΊεŸŸ&r内。每δΈͺηŸΏθ„‰θ•΄ε«δΈεŒζ΅δ½“οΌŒδ½†ε€§ε€šδ»₯ηŸ³ζ²Ήη±»δΈΊδΈ»γ€‚\n\n&o现阢ζ΅&rε°šζ— ζ³•ε―Ήζ΅δ½“ηŸΏθ„‰θΏ›θ‘Œε‹˜ζŽ’β€”β€”θ―₯εŠŸθƒ½ε°†εœ¨&6HV&r阢ζ΅εΌ€ζ”Ύγ€‚", - "quests.medium_voltage.mv_fluid_rig.desc.2": "每δΈͺηŸΏθ„‰δΌšδ»₯δΈεŒηš„εŸΊη‘€δΊ§ι‡η”ŸζˆοΌŒι€šεΈΈδ»‹δΊŽ&d150L/s&r至&d300L/s&r之间。\n\nε½“θ’«ζŠ½ε–ζ—ΆοΌŒζ΅δ½“ηŸΏθ„‰δΌšι€ζΈζž―η«­γ€‚θΏ™ε°†ε―Όθ‡΄ζ΅δ½“δΊ§ι‡ιšζ—Άι—΄ζŽ¨η§»δΈζ–­δΈ‹ι™οΌŒη›΄θ‡³θΎΎεˆ°ζž―η«­δΊ§ι‡ε€Όγ€‚ζ­€ζ—ΆεΊ”ε°†ι’»ζœΊθ½¬η§»θ‡³ε…Άδ»–ηŸΏθ„‰γ€‚\n\n&3εŸΊη‘€ζ΅δ½“ι’»ζœΊ&r可持续运葌10δΈ‡ζ¬‘ζ“δ½œοΌˆζ―ζ¬‘ζ“δ½œ1η§’οΌ‰η›΄θ‡³ηŸΏθ„‰ζž―η«­οΌŒθΏ™θΆ³δ»₯δΊ§ε‡Ί&6θΏœθΆ…1δΈ‡ζ‘Ά&rηš„ηŸ³ζ²Ήγ€‚ζ›΄ι«˜ηΊ§εˆ«ηš„ι’»ζœΊε°†ε€§εΉ…ζε‡δΊ§ι‡οΌŒεŒζ—Άζ˜Ύθ‘—ι™δ½ŽηŸΏθ„‰ζž―η«­ι€ŸεΊ¦γ€‚", - "quests.medium_voltage.mv_fluid_rig.desc.3": "&l你可δ»₯在&2δΈ»δΈ–η•Œ&r&lδΈ­ζ‰Ύεˆ°δ»€δΉˆοΌš&r\n\n&9石油:&rε―Œε«ε€‡ε—ε₯½θ―„ηš„&a轻燃油&r。\n&9轻油:&r富含&aη‚Όζ²Ήζ°”&rοΌŒε―η”¨δΊŽε‘η”΅γ€‚\n&9ι‡ζ²ΉοΌš&r富含&a重燃油&rοΌŒη”¨ι€”η›Έε―Ήε°δΌ—δ½†ε―ζε–ι‡θ¦ηš„&aη”²θ‹―&r。\n&9原油:&r富含&aηŸ³θ„‘ζ²Ή&rοΌŒζ˜―ζ—©ζœŸηŸ³ζ²ΉδΊ§ε“ηš„ζœ€δ½³ζ₯源。\n&9ε€©η„Άζ°”οΌš&rη›΄ζŽ₯δΊ§ε‡Ί&aη‚Όζ²Ήζ°”&rοΌŒζ— ιœ€θ’Έι¦ζηΊ―γ€‚\n&9桷水:&r可提取&aι’ &rε’Œ&aζ°―&rοΌŒι€‚η”¨δΊŽεŽζœŸη”ŸδΊ§γ€‚", - "quests.medium_voltage.mv_fluid_rig.desc.4": "&l你可δ»₯在&cδΈ‹η•Œ&r&lε‘ηŽ°δ»₯δΈ‹θ΅„ζΊοΌš&r\n\n&9ε€©η„Άζ°”οΌš&rδΊ§ε‡Ί&aη‚Όζ²Ήζ°”&rδΈ”δΊ§ι‡ι«˜δΊŽδΈ»δΈ–η•ŒηŸΏθ„‰γ€‚\n&9η†”ε²©οΌš&rεΈŒζœ›δ½ θ€εΎ—θΏ™δΈͺ。\n\nθ΅·ζ­₯阢ζ΅ε―θƒ½ιœ€θ¦ιšζœΊε‹˜ζŽ’η›΄θ‡³ζ‰Ύεˆ°η†ζƒ³θ΅„ζΊγ€‚θ―·ζ³¨ζ„οΌŒδ½ ζŠ½ε–ηš„δ»»δ½•ζ΅δ½“ε‡ε―δ½œδΈΊζ΅δ½“ι’»ζœΊηš„θ‘₯充燃料。", + "quests.medium_voltage.mv_fluid_rig.desc.1": "ε»Ίι€ &3ζ΅δ½“ι’»ζœΊ&rη‘εžιœ€θ¦δΈε°ζŠ•ε…₯οΌŒδ½†θΏ™ζ˜―&oη›ε‰&rζœ€δΈ»ζ΅ηš„&6ηŸ³ζ²ΉθŽ·ε–ζ–ΉεΌ&r。\n\nεƒθƒ½δ»ŽεŸΊε²©ε±‚δΈ‹ζ–ΉζŠ½ε–ζ΅δ½“γ€‚ιœ€θ¦ζ³¨ζ„ηš„ζ˜―θΏ™δΊ›ζ΅δ½“εΉΆιžηœŸεžε­˜εœ¨οΌŒθ€Œζ˜―ι€šθΏ‡ζ¨‘ζ‹Ÿθ‘η—η”Ÿζˆγ€‚\n\nζ΅δ½“ηŸΏθ„‰εˆ†εΈƒεœ¨&cεŒΊε—ε―Ήι½ηš„εŒΊεŸŸ&r内。每δΈͺηŸΏθ„‰θ•΄ε«δΈεŒζ΅δ½“οΌŒδ½†ε€§ε€šδ»₯ηŸ³ζ²Ήη±»δΈΊδΈ»γ€‚\n\n&o现阢ζ΅&rε°šζ— ζ³•ε―Ήζ΅δ½“ηŸΏθ„‰θΏ›θ‘Œε‹˜ζŽ’β€”β€”θ―₯εŠŸθƒ½ε°†εœ¨&6HV&r阢ζ΅εΌ€ζ”Ύγ€‚", + "quests.medium_voltage.mv_fluid_rig.desc.2": "每δΈͺηŸΏθ„‰δΌšδ»₯δΈεŒηš„εŸΊη‘€δΊ§ι‡η”Ÿζˆζ΅δ½“γ€‚δ½Ώη”¨&bθΏ›ι˜Άζ΅δ½“ι’»ζœΊ&rζŠ½ε–ζ—ΆοΌŒδΊ§ι‡ι€šεΈΈδ»‹δΊŽ&d150mB/s&r至&d300mB/s&r之间。\n\nε½“θ’«ζŠ½ε–ζ—ΆοΌŒζ΅δ½“ηŸΏθ„‰δΌšι€ζΈζž―η«­γ€‚θΏ™ε°†ε―Όθ‡΄ζ΅δ½“δΊ§ι‡ιšζ—Άι—΄ζŽ¨η§»δΈζ–­δΈ‹ι™οΌŒη›΄θ‡³θΎΎεˆ°ζž―η«­δΊ§ι‡ε€Όγ€‚ζ­€ζ—ΆεΊ”ε°†ι’»ζœΊθ½¬η§»θ‡³ε…Άδ»–ηŸΏθ„‰γ€‚\n\n&3εŸΊη‘€ζ΅δ½“ι’»ζœΊ&r可持续运葌10δΈ‡ζ¬‘ζ“δ½œοΌˆζ―ζ¬‘ζ“δ½œ1η§’οΌ‰η›΄θ‡³ηŸΏθ„‰ζž―η«­οΌŒθΏ™θΆ³δ»₯δΊ§ε‡Ί&6θΏœθΆ…1δΈ‡ζ‘Ά&rηš„ηŸ³ζ²Ήγ€‚ζ›΄ι«˜ηΊ§εˆ«ηš„ι’»ζœΊε°†ε€§εΉ…ζε‡δΊ§ι‡οΌŒεŒζ—Άζ˜Ύθ‘—ι™δ½ŽηŸΏθ„‰ζž―η«­ι€ŸεΊ¦γ€‚", + "quests.medium_voltage.mv_fluid_rig.desc.3": "&l你可δ»₯在&2δΈ»δΈ–η•Œ&r&lδΈ­ζ‰Ύεˆ°δ»€δΉˆοΌš&r\n\n&9石油:&rε―Œε«ε€‡ε—ε₯½θ―„ηš„&a轻燃油&r。\n&9轻油:&r富含&aη‚Όζ²Ήζ°”&rοΌŒε―η”¨δΊŽε‘η”΅γ€‚\n&9ι‡ζ²ΉοΌš&r富含&a重燃油&rοΌŒη”¨ι€”η›Έε―Ήε°δΌ—δ½†ε―ζε–ι‡θ¦ηš„&aη”²θ‹―&r。\n&9原油:&r富含&aηŸ³θ„‘ζ²Ή&rοΌŒζ˜―ζ—©ζœŸηŸ³ζ²ΉδΊ§ε“ηš„ζœ€δ½³ζ₯源。\n&9ε€©η„Άζ°”οΌš&rη›΄ζŽ₯δΊ§ε‡Ί&aη‚Όζ²Ήζ°”&rοΌŒζ— ιœ€θ’Έι¦ζηΊ―γ€‚\n&9η›ζ°΄οΌš&r可提取&aζ°’ζ°§εŒ–ι’ &rε’Œ&aζ°―&rοΌŒι€‚η”¨δΊŽεŽζœŸη”ŸδΊ§γ€‚", + "quests.medium_voltage.mv_fluid_rig.desc.4": "&l你可δ»₯在&cεΉ½ε†₯δΉ‹εœ°&r&lε‘ηŽ°δ»₯δΈ‹θ΅„ζΊοΌš&r\n\n&9ε€©η„Άζ°”οΌš&rδΊ§ε‡Ί&aη‚Όζ²Ήζ°”&rδΈ”δΊ§ι‡ι«˜δΊŽδΈ»δΈ–η•ŒηŸΏθ„‰γ€‚\n&9η†”ε²©οΌš&rεΈŒζœ›δ½ θ€εΎ—θΏ™δΈͺ。\n\nθ΅·ζ­₯阢ζ΅ε―θƒ½ιœ€θ¦ιšζœΊε‹˜ζŽ’η›΄θ‡³ζ‰Ύεˆ°η†ζƒ³θ΅„ζΊγ€‚θ―·ζ³¨ζ„οΌŒδ½ ζŠ½ε–ηš„δ»»δ½•ζ΅δ½“ε‡ε―δ½œδΈΊζ΅δ½“ι’»ζœΊηš„θ‘₯充燃料。", + "quests.medium_voltage.mv_fluid_rig.desc.5": "&9ζœˆηƒ&rδΈŠηš„δΈ€δΈͺζ΅δ½“εŒΊεŸŸη€ΊδΎ‹οΌš", "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β€”β€”εƒδ»¬θƒ½ζ”―ζ’‘δ½ η›΄θ‡³θ§£ι”ζ΅δ½“ι’»ζœΊζŠ€ζœ―γ€‚", @@ -2382,9 +3204,13 @@ "quests.medium_voltage.mv_distillery.desc.3": "但这幢不意味着&3蒸馏ε€&rζ˜―δΈ€θ€…δΈ­ζ›΄ε·ηš„选择。εƒθ§£ι”ζ—Άι—΄ζ›΄ζ—©οΌŒδΈ”ε…·ζœ‰&d体积更小&r、&dι€ δ»·ζ›΄δ½Ž&r、每δΈͺ配方&dθƒ½θ€—ζ›΄δ½Ž&rηš„δΌ˜εŠΏγ€‚\n\nδΊ‹εžδΈŠε€šζ•°ζƒ…ε†΅δΈ‹οΌŒδ½ ζ Ήζœ¬δΈδΌšεœ¨ζ„θ’«εΊŸεΌƒηš„ε…Άδ»–ζ΅δ½“γ€‚\n\nζ— θΊι€‰ζ‹©&a柴油&r还是&aθ‹―&rδ½œδΈΊε‘η”΅εŽŸζ–™οΌŒ&3蒸馏ε€&rιƒ½ζ˜―θƒ½ζΊη”ŸδΊ§ηŽ―θŠ‚ηš„ζ ΈεΏƒη»„δ»Άγ€‚\n\nε»Ίθε°½ε―θƒ½ε»Ίι€ ε€šε°δ½ŽηΊ§εž‹ε·δ»₯避免袅钑带ζ₯ηš„θƒ½ι‡ζŸθ€—γ€‚", "quests.medium_voltage.mv_distillery.task": "LVζˆ–MV蒸馏ε€ε‡ε―", "quests.medium_voltage.mv_benzene.title": "θ‹―ζ•™ζ΄Ύ", - "quests.medium_voltage.mv_benzene.subtitle": "εˆ°ζœ€εŽοΌŒζ€»ζ˜―θ‹―", + "quests.medium_voltage.mv_benzene.subtitle": "εˆ°ζœ€εŽοΌŒ&l曾经&rζ€»ζ˜―θ‹―", "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οΌŒδ½†εœ¨&6HV&r阢ζ΅η²Ύη‚Όζˆ&6η‘εŸΊθ‹―&rεŽε°†θŽ·εΎ—ζ˜Ύθ‘—ζε‡γ€‚ζœ€η»ˆι€‰ζ‹©δ½•η§θƒ½ζΊδ»η”±δ½ θ‡ͺθ‘Œε†³εšγ€‚", + "quests.medium_voltage.mv_benzene.desc.2": "ε…³δΊŽηŸ³ζ²ΉεŠ ε·₯ηš„ε…·δ½“ζ–Ήζ³•οΌŒθ―·ζŸ₯ηœ‹θ½»η‡ƒζ–™δΈŽηŸ³θ„‘ζ²Ήδ»»εŠ‘γ€‚\n\nζ€»δ½“θ€Œθ¨€οΌŒδΌ˜ε…ˆιƒ¨η½²ζ›΄ε€šζœΊε™¨οΌˆ&dεΉΆθ‘Œε€„η†&rοΌ‰ζ―”θΆ…ι’‘ι…ζ–Ήζ›΄ζœ‰ζ•ˆηŽ‡γ€‚θΏ™η§ζ–ΉεΌθƒ½εœ¨ε€„η†θ΅„ζΊζ—Άε‡ε°‘θƒ½ι‡ζŸθ€—γ€‚\n\n&aθ‹―&r在&3燃气θ½ζœΊ&rδΈ­ηš„η‡ƒηƒ§ζ•ˆηŽ‡η›Έε½“δ½Žγ€‚θ―₯θƒ½ζΊεˆε§‹ζ•ˆθƒ½δ½ŽδΊŽ&e柴油&rοΌŒδ½†ε―ι€šθΏ‡η²Ύη‚Όζˆ&6重整气&rζ₯θŽ·εΎ—ζε‡γ€‚θ―΄εˆ°εΊ•οΌŒι€‰ζ‹©δ½•η§θƒ½ζΊε–ε†³δΊŽδ½ γ€‚", + "quests.medium_voltage.mv_benzene.desc.3": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oθ‡ͺGTCEuδ»₯ζ₯οΌŒθ‹―δΈ€η›΄ζ˜―ζœ€εΌΊε€§ηš„ζ°”δ½“η‡ƒζ–™δΉ‹δΈ€β€”β€”ε…Άζ€§θƒ½δΉ‹εΌΊη”šθ‡³ζˆδΊ†δΈ€δΈͺζ’—γ€‚ε¦‚δ»ŠοΌŒεƒηš„θΎ‰η…Œζ—Άδ»£εœ¨δ»»δ½•εœ°ζ–Ήιƒ½ε±ˆζŒ‡ε―数了。", + "quests.medium_voltage.reformate_gas.title": "重整气教派", + "quests.medium_voltage.reformate_gas.subtitle": "ε½“δΈ€δ½ε·¨δΊΊε€’δΈ‹οΌŒζ–°ηš„ε·¨δΊΊε·²η„Άε΄›θ΅·γ€‚", + "quests.medium_voltage.reformate_gas.desc": "ε¦‚ζžœθΏ™ζ˜―δ½ ι€‰ζ‹©ηš„θ·―εΎ„οΌŒι‚£δΉˆ&7重整气&rε°†ζ˜―δ½ εœ¨&bMV&r阢ζ΅ζ–°ηš„首选气体燃料。为εžηްεŒηΎŽζ•ˆηŽ‡οΌŒδ½ εͺιœ€θ¦ &61εΊ§ζΆ²εŒ–ε‘”&rε’Œ&62座热解炉&rοΌŒδΎΏθƒ½εΌ€ε§‹δΈι—΄ζ–­εœ°δΊ§ε‡ΊθΏ™η§ηθ΄΅ζ°”δ½“γ€‚\n\nε“¦η­‰η­‰οΌŒι¦–ε…ˆδ½ ιœ€θ¦ζ‰Ύεˆ°&5ι“Ό&rοΌŒθΏ™ζ˜―δΈ€η§δ»…εœ¨&7羀峦传说&rεΉ²ηƒ­εŒΊεŸŸε‘ηŽ°ηš„ζ–°ζζ–™γ€‚ε…ΆζΆˆθ€—ι‡ζžδ½ŽοΌŒδΈ€δΈͺηŸΏθ„‰ε°±θΆ³δ»₯ζ”―ζ’‘δ½ η›΄εˆ°ζ•΄εˆεŒ…ζ―•δΈšοΌŒζˆ–θ€…θ‡³ε°‘εˆ°&6HV&r阢ζ΅β€”β€”ε±Šζ—ΆοΌŒεœ¨ &6θ£‚θ§£ζœΊ&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θƒ½εœ¨&3η”΅θ§£ζœΊ&rδΈ­εŒηΎŽ&dεΎͺηŽ―εˆ©η”¨&r。\n\n要εžηްθ‡ͺεŠ¨εŒ–ζ΅η¨‹οΌŒεͺιœ€ε°†&3εŒ–ε­¦εεΊ”ι‡œ&r与&3η”΅θ§£ζœΊ&rη›Έι‚»ζ”Ύη½γ€‚θ°εΎ—使用&5θžΊδΈεˆ€&r&4ε―η”¨θΎ“ε‡Ίι’ηš„θΎ“ε…₯εŠŸθƒ½&r。\n\n&a轻燃油&rζ˜―δΈι”™ηš„&9发甡&rι€‰ζ‹©οΌŒδ½†θΏ˜ζœ‰ζ›΄ι«˜ζ•ˆηš„ζ–Ήζ‘ˆβ€¦β€¦θ―·ζŸ₯ηœ‹ε·¦δΎ§δ»»εŠ‘ζŒ‡εΌ•γ€‚", @@ -2393,6 +3219,10 @@ "quests.medium_voltage.mv_diesel.desc.1": "&a柴油&rζ˜―δΈ€η§&dεŸΊδΊŽηŸ³ζ²Ήηš„&9ε†…η‡ƒζœΊη‡ƒζ–™&r。\n\n要混合&a轻燃料&rε’Œ&a重燃料&rοΌŒδ½Ώη”¨&3蒸馏ε€&rζ—ΆοΌŒδ»Ž&d石油&rζˆ–&d原油&rδΈ­ζε–ηš„εˆι€‚ζ―”δΎ‹ζ˜―&63:2&r。\n\nθΏ™ζ„ε‘³η€ιœ€ι…ε€‡3台蒸馏ε€η”ŸδΊ§θ½»η‡ƒζ²ΉοΌŒζˆ–2台蒸馏ε€η”ŸδΊ§ι‡η‡ƒζ²Ήγ€‚", "quests.medium_voltage.mv_diesel.desc.2": "ι€šθΏ‡δΈ“ι—¨δ½Ώη”¨&d重油&rζ₯εˆΆε€‡&a重燃油&r,可&6ε€§εΉ…ε‰Šε‡&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η‡ƒηƒ§ε‘η”΅γ€‚εœ¨&6HV&r阢ζ΅ε―θΏ›δΈ€ζ­₯η²Ύη‚Όζˆ&6ι«˜εε…­ηƒ·ε€ΌζŸ΄ζ²Ή&rγ€‚δΈŽε…Άδ»–θƒ½ζΊη›Έζ―”οΌŒζŸ΄ζ²Ήζ€»δ½“ζ•ˆηŽ‡ζ›΄ι«˜οΌŒδ½†εŠ ε·₯桁程更为倍杂。θ‹₯你选择&e石油&rθ·―ηΊΏη”ŸδΊ§&aθšδΉ™ηƒ―&rοΌŒηŽ°ζœ‰εŸΊη‘€θΎζ–½δΎΏθƒ½εŒηΎŽι€‚ι…ζ­€ζ–Ήζ‘ˆγ€‚ζœ€η»ˆι€‰ζ‹©δ½•η§θƒ½ζΊδ»ε–ε†³δΊŽδ½ γ€‚", + "quests.medium_voltage.coal_tower.title": "ζΆ²εŒ–ε‘”", + "quests.medium_voltage.coal_tower.subtitle": "θ°δΌšδΈηˆ±ζ–°ηš„ε€šζ–Ήε—η»“ζž„ε‘’", + "quests.medium_voltage.coal_tower.desc.1": "&bζΆ²εŒ–ε‘”&rζ˜―δΈ€δΈͺζ–°ηš„&bε€šζ–Ήε—η»“ζž„&rοΌŒη”¨δΊŽη”ŸδΊ§&a重整气&rεŠε…Άε‰―δΊ§ε“&7煀焦油&rε’Œ&7εˆζˆζ°”&r。根ζδ½ δ½Ώη”¨ηš„&9线圈&r,每δΈͺι…ζ–Ήζ‰€ιœ€ηš„&ζ‰§θ‘Œζ—Άι—΄&rε°†θŽ·εΎ—ζŠ˜ζ‰£γ€‚ε°†ιΌ ζ ‡ζ‚¬εœεœ¨ηΊΏεœˆδΈŠεΉΆζŒ‰shiftι”即可ζŸ₯ηœ‹ε…ΆεŠ ζˆζ•ˆζžœγ€‚\n\nζ³¨ζ„οΌŒ&9ζΆ²εŒ–ε‘”&rε―ι€šθΏ‡δ½Ώη”¨&7ζ°’ζ°”&rζ₯εŠ ι€ŸοΌŒδ»Žθ€Œε‡ε°‘θ€—ζ—ΆεΉΆι™δ½Žζ€»θƒ½θ€—γ€‚εˆ«εΏ˜δΊ†θΎη½ζ­£η‘ηš„&6甡路配η½&rδ»₯η‘δΏε…Άζ­£εΈΈθΏθ‘Œγ€‚\n\nι‘ΊεΈ¦δΈ€ζοΌŒζΈΈζˆε†…1η§’η­‰δΊŽ20ζΈΈζˆεˆ»γ€‚ε› ζ­€οΌŒθ¦θ‘η—ε…Άζ―η§’ζΆˆθ€—οΌŒιœ€ε°†ζ―ζΈΈζˆεˆ»ζΆˆθ€—ι‡δΉ˜δ»₯20。", + "quests.medium_voltage.coal_tower.desc.2": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oθΎθ‘ε‡Ίζ Έθ£‚ε˜εεΊ”ε †ηš„εŒδΈ€δΈͺδΊΊοΌŒδΉŸη»˜εˆΆδΊ†ζΆ²εŒ–ε‘”ηš„εˆη‰ˆθ“ε›ΎοΌŒθΏ™ιšΎι“δΈη–―η‹‚ε—γ€‚", "quests.medium_voltage.mv_jetpack.title": "ζˆ‘η›ΈδΏ‘ζˆ‘θƒ½ι£ž", "quests.medium_voltage.mv_jetpack.subtitle": "...ε—―οΌŒε‡ δΉŽθƒ½ι£ž", "quests.medium_voltage.mv_jetpack.desc": "θΏ™ζ¬Ύε–·ζ°”θƒŒεŒ…ε―δ½Ώη”¨ε€šζ•°&aε†…η‡ƒζœΊη‡ƒζ–™&rοΌˆδΈεŒ…ζ‹¬ηŸ³ζ²Ήη±»οΌ‰ζ₯ζδΎ›εŸΊη‘€ι£žθ‘ŒεŠŸθƒ½γ€‚\n\nε‘«ε……ζ–ΉεΌδΈŽζ΅δ½“ζ‘Άη›ΈεŒοΌŒζˆ–ι€šθΏ‡&3η½θ£…ζœΊ&rθΏ›θ‘Œε‘«ε……γ€‚\n\nζŒ‰δΈ‹&4H&rι”οΌˆι»˜θ€ζŒ‰ι”οΌ‰ε―εΌ€ε―ζ‚¬εœζ¨‘εΌγ€‚", @@ -2423,7 +3253,7 @@ "quests.medium_voltage.mv_aciditic.title": "εƒδΌšθžεŒ–δ½ ηš„θ‘€θ‚‰", "quests.medium_voltage.mv_aciditic.subtitle": "...ε¦‚ζžœδ½ δΈθ―»θΏ™δΈͺδ»»εŠ‘γ€‚", "quests.medium_voltage.mv_aciditic.desc.1": "δ½ ε―θƒ½ζ³¨ζ„εˆ°ζŸδΊ›ζ΅δ½“θ’«ζ ‡ζ³¨δΈΊ&aι…Έζ€§&rοΌŒε…ΆδΈ­&9η‘«ι…Έ&rε°±ζ˜―ε…Έεž‹δ»£θ‘¨γ€‚\n\nθΏ™ζ„ε‘³η€ε€šζ•°ζ΅δ½“η‘道无法ε‰ε…¨θΏθΎ“这类梲体!\n\n在&bMV&r阢ζ΅οΌŒζœ€η»ζ΅Žηš„酸性桁体运输η‘ι“ε½“ε±ž&a金η‘道&rοΌŒι€ δ»·ζ›΄ι«˜ηš„&aι’’ι’’&r与&a铬&rεˆ†εˆ«δ½εˆ—η¬¬δΊŒγ€η¬¬δΈ‰ι€‰ζ‹©γ€‚\n\nεΎ…θΏ›ε…₯&6HV&r阢ζ΅εŽοΌŒ&aδΈι”ˆι’’η‘道&rζˆ–&aθšε››ζ°ŸδΉ™ηƒ―&rε°†ζˆδΈΊε―θ‘Œηš„ι€‰ζ‹©γ€‚", - "quests.medium_voltage.mv_aciditic.desc.2": "ε½“ε‰ι˜Άζ΅δ½ ζœ‰δΈ‰η§ι…Έζ€§ζΆ²δ½“ε­˜ε‚¨ζ–Ήζ‘ˆοΌš&dηŽ»η’ƒη“Ά&r、&d金摢&rζˆ–&dθΆ…ηΊ§ηΌΈ&rγ€‚ηŽ»η’ƒη“Άη±»δΌΌ&9桁体单元&rοΌŒδΈ“δΈΊε‚¨ε­˜ι…Έζ€§ζΆ²δ½“θΎθ‘;金摢鑾名思义可直ζŽ₯δ½Ώη”¨οΌ›θΆ…ηΊ§ηΌΈεˆ™εœ¨θ§£ι”&9θšδΉ™ηƒ―&rεŽε―η”¨οΌŒθƒ½ζ— ι™εˆΆε­˜ε‚¨δ»»δ½•ζ΅δ½“γ€‚\n\n&cθ­¦ε‘ŠοΌš&r酸性梲体误ε…₯ιžζŠ—θ…θš€η‘道将导致&cζ΅δ½“ζΆˆε€±&r、&cη‘道烧毁&rεΉΆδΌ΄ιšζžι«˜ηš„&cθ‡΄ε‘½ι£Žι™©&rοΌθ―·εŠ‘εΏ…θ°¨ζ…Žζ“δ½œοΌ\n\n&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oι…Έζ€§ζΆ²δ½“θΏθΎ“δΈŽε­˜ε‚¨ζœΊεˆΆζΊθ‡ͺζ Όι›·η§‘ζŠ€6η‰ˆζœ¬ηš„θΎθ‘οΌŒεΉΆε»Άη»­θ‡³δ»Šγ€‚&r", + "quests.medium_voltage.mv_aciditic.desc.2": "ε½“ε‰ι˜Άζ΅δ½ ζœ‰δΈ‰η§εžη”¨ηš„ι…ΈζΆ²ε­˜ε‚¨ζ–Ήζ‘ˆοΌš&dηŽ»η’ƒη“Ά&r、&d金摢&rζˆ–&dθΆ…ηΊ§ηΌΈ&rγ€‚ηŽ»η’ƒη“Άη±»δΌΌ&9桁体单元&rοΌŒδΈ“δΈΊε‚¨ε­˜ι…Έζ€§ζΆ²δ½“θΎθ‘;金摢鑾名思义可直ζŽ₯δ½Ώη”¨οΌ›θΆ…ηΊ§ηΌΈθƒ½ζ— ι™εˆΆε­˜ε‚¨δ»»δ½•ζ΅δ½“οΌŒδ½†δΉŸζ˜―ζœ€θ΄΅ηš„γ€‚\n\n&cθ­¦ε‘ŠοΌš&r酸性梲体误ε…₯ιžζŠ—θ…θš€η‘道将导致&cζ΅δ½“ζΆˆε€±&r、&cη‘道烧毁&rεΉΆδΌ΄ιšζžι«˜ηš„&cθ‡΄ε‘½ι£Žι™©&rοΌθ―·εŠ‘εΏ…θ°¨ζ…Žζ“δ½œοΌ\n\n&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oι…Έζ€§ζΆ²δ½“θΏθΎ“δΈŽε­˜ε‚¨ζœΊεˆΆζΊθ‡ͺζ Όι›·η§‘ζŠ€6η‰ˆζœ¬ηš„θΎθ‘οΌŒεΉΆε»Άη»­θ‡³δ»Šγ€‚&r", "quests.medium_voltage.mv_aciditic.task": "ζˆ‘ζ˜―ι…ΈζΆ²δΈ“εΆοΌŒδΈεΏ…ζ‹…εΏƒ", "quests.medium_voltage.mv_hydrochloric.title": "盐酸", "quests.medium_voltage.mv_hydrochloric.subtitle": "δ½ ιœ€θ¦εΎˆε€šθΏ™δΈͺ!", @@ -2444,9 +3274,6 @@ "quests.medium_voltage.mv_polyethylene.title": "θšδΉ™ηƒ―", "quests.medium_voltage.mv_polyethylene.subtitle": "εεηš„η¬¬δΈ€η§θšεˆη‰©οΌ", "quests.medium_voltage.mv_polyethylene.desc": "ε¦‚ζžœδ½ δΈζƒ³ι‚£δΉˆθŠ±ε“¨οΌŒε―δ»₯η›΄ζŽ₯叫εƒε‘‘料。\n\nεœ¨θšεˆθΏ‡η¨‹δΈ­ζ·»εŠ &aζ°§ζ°”&rθƒ½θŽ·εΎ—ζ―”η©Ίζ°”ζ›΄δ½³ηš„δΊ§ε‡Ίζ•ˆηŽ‡οΌŒεŽη»­ε›ΊεŒ–ζ“δ½œδΈŽζ©‘θƒΆε€„η†ζ–ΉεΌη›ΈεŒγ€‚\n\n&aθšδΉ™ηƒ―οΌˆPEοΌ‰&rζ˜―θ§£ι”&6δΌ—ε€šζ–°ε†…εΉ&rηš„ε…³ι”ζζ–™οΌŒι€šεΈΈδ»₯&d板&rζˆ–&d桁体&r归态使用。\n\n&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oδΈΊδΏζŒθ·¨ζ¨‘η»„ε…ΌεΉζ€§οΌŒ1.12.2η‰ˆζœ¬GTCEuδΈ­θšδΉ™ηƒ―ηš„ηŸΏη‰©θ―ε…ΈδΈŽζ΅δ½“εη§°ε‡η™»θ°δΈΊ&bε‘‘ζ–™&f。", - "quests.medium_voltage.mv_tank.title": "θΆ…ηΊ§ηΌΈ", - "quests.medium_voltage.mv_tank.subtitle": "θΆ…ηΊ§ηΌΈε€ͺ袅樑了!", - "quests.medium_voltage.mv_tank.desc": "δΈοΌŒδ½†θ―΄ηœŸηš„γ€‚\n\nθΏ™η‘εžζ˜―&c终&6极&eδΎΏ&a携&b式&9桁&5体&4ε­˜ε‚¨θ§£ε†³ζ–Ήζ‘ˆγ€‚&6单方块εΉηΊ³4,000ζ‘Ά&r,εŒε…¨ζ— θ§†ζΈ©εΊ¦δΈŽι…ΈεΊ¦ι™εˆΆοΌ\n\nδΈŽζ΅δ½“ζ‘Άη‰Ήζ€§η›ΈεŒοΌŒθΆ…ηΊ§ηΌΈ&6θ’«η ΄εζ—ΆδΌšδΏη•™ε†…ιƒ¨ζ΅δ½“&rοΌŒε―ι€šθΏ‡εˆζˆζ ζΈ…η©Ίε…Άε†…εΉη‰©γ€‚\n\nθ‹₯δ½ ζΈ΄ζœ›&9ζ›΄ε€§ε­˜ε‚¨εΉι‡&rοΌŒε―ηœ‹ηœ‹ζ›΄ι«˜η­‰ηΊ§ηš„θΆ…ηΊ§ηΌΈζˆ–AE2ζ΅δ½“ε­˜ε‚¨ε•ε…ƒγ€‚", "quests.medium_voltage.mv_pvc.title": "θšζ°―δΉ™ηƒ―", "quests.medium_voltage.mv_pvc.subtitle": "ζ—’η„Άε·²ζˆεŠŸεˆζˆδΈ€η§θšεˆη‰©οΌŒε†ζ·»δΈ€η§εˆδ½•ε¦¨οΌŸ", "quests.medium_voltage.mv_pvc.desc": "&aθšζ°―δΉ™ηƒ―οΌˆPVCοΌ‰&r是现εžδΈ–η•ŒδΈ­δΊ§ι‡ζŽ’εη¬¬δΈ‰ηš„ε‘‘ζ–™γ€‚εœ¨GTCEu中,εƒε―在&a呑料甡路板&rη­‰η‰©ε“ηš„η”ŸδΊ§δΈ­ζ›Ώδ»£θšδΉ™ηƒ―δ»₯ζι«˜δΊ§ι‡γ€‚δ»Ž&5EV&r阢ζ΅θ΅·ιœ€η”¨ε…ΆεŒ…裹甡缆。\n\nPVC物品η‘ι“εœ¨δΈ€ζ΅ζ—Άι—΄ε†…ε°†ζ‹₯ζœ‰&6ζœ€ι«˜ζ΅ι€šι‡&rοΌŒδΈθΏ‡ε½“ε‰ε€§ιƒ¨εˆ†δΊ§ηΊΏε°šδΈιœ€ε¦‚ζ­€ι«˜ι€Ÿηš„δΌ θΎ“γ€‚δ½†ζŽŒζ‘θΏ™δΈͺη‰Ήζ€§ζ€»ζœ‰η›Šε€„γ€‚\n\n&9δΈ“δΈšζη€ΊοΌšζ΅δ½“ε½’ζ€ηš„PVC在&rGTCEu中基本从ζœͺδ½Ώη”¨οΌŒε―ζ”ΎεΏƒε°†ε…Άε…¨ιƒ¨ε›ΊεŒ–ζˆζΏγ€‚", @@ -2513,11 +3340,11 @@ "quests.medium_voltage.mv_cells.desc": "ι“ε•ε…ƒη›ΈθΎƒδΊŽι’’ε•ε…ƒζˆ–ι€šη”¨ζ΅δ½“ε•ε…ƒζ˜―δΈ€ζ¬‘ι‡ε€§ε‡ηΊ§γ€‚\n\nεƒδ»¬θƒ½ε€Ÿε­˜ε‚¨δ»»ζ„ζ―”δΎ‹ζ΅δ½“β€”β€”ζœ€ε€š&d32ζ‘Ά&r!", "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_jetpack_2.desc": "θΏ™ζ¬Ύε–·ζ°”θƒŒεŒ…ε―εžηŽ°ι£žθ‘ŒεŠŸθƒ½οΌŒδ½†ιœ€ζΆˆθ€—θƒ½ι‡γ€‚\n\nε……η”΅ζ–ΉεΌδΈŽη”΅ζ± η›ΈεŒγ€‚\n\nζŒ‰&4H&r(默θ€οΌ‰ε―η”¨ζ‚¬εœζ¨‘εΌγ€‚\n\n&o&7οΌˆζ˜―ζ˜―ζ˜―οΌŒε–·ζ°”θƒŒεŒ…ζœ¬θ―₯ι ζŽ¨θΏ›ε‰‚ε·₯δ½œβ€”β€”δ½ δ»¬ζ€»ηˆ±εΉζ―›ζ±‚η–΅γ€‚οΌ‰&r", "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ζΆ¦ζ»‘ε‰‚ε―ι€šθΏ‡&e石油&r与&aζ»‘ηŸ³&r、&2ηš‚ηŸ³&rζˆ–&c纒石&rι€šθΏ‡&3ι…Ώι€ ε€&rεˆΆε€‡γ€‚\n\n&7ζ³¨οΌšδΉŸε―ι€‰η”¨&6ζ Όι›·ζœΊζ’°&rη‰ˆζœ¬ηš„εˆ‡ε‰²ζœΊοΌŒηŽ°εœ¨εƒε―δ»₯用桁体储罐ζ₯呫充梲体&r", - "quests.medium_voltage.mv_cutter.task": "任何酿造ε€", + "quests.medium_voltage.mv_cutter.desc": "&3MVεˆ‡ε‰²ζœΊ&rη”¨δΊŽεˆ‡ε‰²&7单晢瑅&rοΌŒδΈΊεŽη»­ηš„&aζΏ€ε…‰θš€εˆ»ζœΊ&rεšε‡†ε€‡γ€‚\n\nε»ΊθζŒη»­δΎ›εΊ”&d梦滑剂&rδ»₯ε€§εΉ…ηΌ©ηŸ­εŠ ε·₯既间。\n\nζΆ¦ζ»‘ε‰‚ε―ι€šθΏ‡&e石油&r与&aζ»‘ηŸ³&r、&2ηš‚ηŸ³&rζˆ–&c纒石&rι€šθΏ‡&3ι…Ώι€ ε€&rεˆΆε€‡γ€‚", + "quests.medium_voltage.mv_cutter.task": "δ»»δ½•εˆ‡ε‰²ζœΊ", "quests.medium_voltage.mv_laser_engraver.title": "ζΏ€ε…‰θš€εˆ»ζœΊ", "quests.medium_voltage.mv_laser_engraver.subtitle": "θΏ™ζ˜―ι‘Άε°–ζŠ€ζœ―οΌŒθΏ™δΉŸεΎˆζ…’", "quests.medium_voltage.mv_laser_engraver.desc": "&3ζΏ€ε…‰θš€εˆ»ζœΊ&rζ Ήζη»™εšηš„&9ι€ι•œ&rη±»εž‹εœ¨&9η‘…ζ™Άεœ†&rδΈŠθš€εˆ»η”΅θ·―ε›Ύζ‘ˆγ€‚εŒζˆθš€εˆ»ηš„ζ™Άεœ†ιœ€η»&3εˆ‡ε‰²ζœΊ&r加ε·₯οΌŒζ‰θƒ½θ½¬εŒ–δΈΊε―η»„θ£…η”΅θ·―ηš„ε…ƒε™¨δ»Άγ€‚\n\nζ›΄ι«˜ηΊ§εˆ«ηš„θš€εˆ»ζœΊθƒ½ε€„η†ζ›΄ε€ζ‚ηš„ζ™Άεœ†οΌŒδ»Žθ€ŒεˆΆι€ ε‡Ίζ•ˆηŽ‡ζ›΄ι«˜ηš„η”΅θ·―γ€‚", @@ -2525,7 +3352,7 @@ "quests.medium_voltage.mv_silicon_boule.subtitle": "ι€šη”¨ζ™Άεœ†δ»»ι€‰ε³η”¨", "quests.medium_voltage.mv_silicon_boule.desc": "&9单晢瑅&rιœ€εœ¨&3η”΅εŠ›ι«˜η‚‰&rδΈ­δ½Ώη”¨εŠη»„&a瑅粉&rδΈŽε°‘ι‡&aη ·εŒ–ι•“&rεˆζˆοΌŒε…ΆδΈ»θ¦η”¨ι€”ζ˜―θš€εˆ»&6η”΅θ·―ζ™Άεœ†&r。\n\nθŽ·εΎ—ε•ζ™Άη‘…εŽοΌŒι€šθΏ‡&3εˆ‡ε‰²ζœΊ&r加ε·₯ε―εΎ—εˆ°16δΈͺεΎ…θš€εˆ»ηš„η‘…ζ™Άεœ†γ€‚\n\n&cθ­¦ε‘ŠοΌš&r每δΈͺε•ζ™Άη‘…εœ¨120EU/tηš„εŠŸηŽ‡δΈ‹ιœ€θ€—ζ—Ά&47.5εˆ†ι’Ÿ&rοΌŒζ€»θ€—θƒ½θΎΎ1,080,000EU!θ‹₯η”΅εŠ›ι«˜η‚‰δΈ­ι€”ζ–­η”΅οΌŒι…ζ–ΉθΏ›εΊ¦ε°†&c开始桁倱&r。\n\nι‰΄δΊŽε•ζ™Άη‘…εˆΆδ½œθ€—ζ—Άζžι•ΏοΌŒε»Ίθ在倚δΈͺ&3η”΅εŠ›ι«˜η‚‰&rδΈ­εΉΆθ‘Œε€„η†εΉΆε›€η§―εƒδ»¬γ€‚", "quests.medium_voltage.mv_silicon.title": "瑅粉", - "quests.medium_voltage.mv_silicon.subtitle": "", + "quests.medium_voltage.mv_silicon.subtitle": "石圭", "quests.medium_voltage.mv_silicon.desc.1": "δ½ εΎ—δΉ ζƒ―θΏ™η‚ΉοΌšεœ¨&dζ Όι›·η§‘ζŠ€&r中达成η›ζ ‡ζ€»ζœ‰&aε€šη§ι€”εΎ„&rβ€”β€”θΏ™ζ­£ζ˜―ζˆ‘δ»¬εœ¨&a羀峦格雷&rδΈ­ε§‹η»ˆεšζŒηš„θΎθ‘理忡。\n\nδΈΊθŽ·ε–&5η‘…&rοΌŒζˆ‘δ»¬ε°†ζŽ¨θ&c一种主桁方法&rδ»₯ζδΎ›ζ˜Žη‘ζŒ‡εΌ•γ€‚ε½“η„ΆοΌŒζœ€η»ˆθΏ˜ιœ€η”±δ½ εˆ€ζ–­ε“ͺη§ζ–Ήζ‘ˆ&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οΌŒθ€ŒδΈ”θΏ˜θƒ½δΊ§η”Ÿ&9ζ°§ζ°”&r作为ε₯–εŠ±οΌεŽŸη†εΎˆη€ε•οΌš&aη”΅θ§£δΊŒζ°§εŒ–η‘…η²‰&rεˆ†θ§£δΈΊ&9ζ°§ζ°”&r与&5η‘…&rγ€‚ε―ι€šθΏ‡&9η¦»εΏƒη‡§ηŸ³η²‰&rθŽ·ε–&aδΊŒζ°§εŒ–η‘…η²‰&rοΌŒθ€Œη‡§ηŸ³η²‰εˆ™ζ₯θ‡ͺ&a筛选沙砾&rθŽ·εΎ—ηš„&9η‡§ηŸ³&r。\n\nζ­€δΊ§ηΊΏζ˜“εžηް&aε…¨θ‡ͺεŠ¨εŒ–θΏθ‘Œ&rγ€‚ζŽ¨θδ½Ώη”¨&aEMI配方树&rε·₯ε…·οΌˆε±εΉ•ε·¦δΈ‹θ§’οΌ‰θ§„εˆ’ε»Ίι€ β€”β€”εƒηœŸηš„εΎˆζœ‰εΈεŠ©οΌ", "quests.medium_voltage.mv_ulpic.title": "ULPICθŠ―η‰‡", @@ -2543,6 +3370,9 @@ "quests.medium_voltage.lsb.title": "θ’Έζ±½θ…Ύθ…Ύ", "quests.medium_voltage.lsb.subtitle": "θ‹₯δ½ ζ‹₯ζœ‰ζ— ι™η‡ƒζ–™οΌŒθΏ™δ»ζ˜―ε―θ‘Œζ–Ήζ‘ˆ", "quests.medium_voltage.lsb.desc": "θ‹₯δ½ &l仍在&r使用&3ε€§εž‹ι’ι“œι”…η‚‰&r,建θ升级至&3ε€§εž‹ι’’ι”…η‚‰&r。\n\nεƒηš„ζ•ˆηŽ‡ζ―”&3ε€§εž‹ι’ι“œι”…η‚‰&rη•₯ι«˜οΌŒε―δΊ§η”Ÿ&d1800mB/tηš„θ’Έζ±½&r。\n\n现阢ζ΅ζˆ‘们建θδ½ ε°θ―•ε…Άδ»–ε‘η”΅ζ–Ήζ‘ˆγ€‚", + "quests.medium_voltage.stainless_greate.title": "δΈι”ˆι’’ηΊ§ζ Όι›·ζœΊζ’°", + "quests.medium_voltage.stainless_greate.subtitle": "ι«˜εΊ”εŠ›", + "quests.medium_voltage.stainless_greate.desc": "ζœ¬δ»»εŠ‘δ»…η”¨δΊŽε‘ŠηŸ₯οΌšζ Όι›·ζœΊζ’°εœ¨ζ­€ι˜Άζ΅θΏŽζ₯δΊ†εˆδΈ€ζ¬‘ε‡ηΊ§γ€‚\n\nδ½ ε―θƒ½δΌšε‘ηŽ°ζ–°δΈ€δ»£η²‰η’Žθ½ι’‡δΈΊεžη”¨β€”β€”εƒδ»¬δΈδ»…能像HVη ”η£¨ζœΊδΈ€ζ ·ζδΎ›ε…¨ι’ε‰―δΊ§η‰©οΌŒθΏ˜ε―εŒζ—Άε€„η†ε€šδΈͺ物品!", "quests.metal_age": "冢金既代", "quests.metal_age.subtitle": "δ½ ηš„η¬¬δΈ€ζ¬‘ζŠ€ζœ―θΏ›ζ­₯。", "quests.metal_age.weld_bronze_ingots.title": "η„ŠζŽ₯ι’ι“œ", @@ -2574,14 +3404,14 @@ "quests.metal_age.wrought_iron_anvil.desc": "ζœ‰δΊ†ι”»ι“η §οΌŒδ½ ε°†θƒ½ε€Ÿε°†ι”»ι“ι”­εŠ ε·₯ζˆδΈεŒηš„η‰©ε“οΌŒε¦‚θ–„ζΏγ€ε·₯具倴等。\n\n锻铁ε·₯ε…·ε’Œη›”η”²η›Έζ―”ι’ι“œζ”ΉθΏ›δΈε€§οΌŒδ½†θ€δΉ…εΊ¦ι«˜εΎ—ε€šγ€‚\n\nεˆΆδ½œδΈ‹δΈ€ηΊ§η §ηš„ιšΎεΊ¦ε°†ζœ‰ζ˜Ύθ‘—ηš„ζε‡οΌŒζ‰€δ»₯θΏ™ζ˜―δΈ€δΈͺε‰ι‘ΏδΈ‹ζ₯εΉΆζŽ’η΄’θΏ™δΈͺζ•΄εˆεŒ…ζδΎ›ηš„ε…Άδ»–δΈœθ₯Ώηš„ε₯½ζ—ΆζœΊγ€‚", "quests.metal_age.coke_oven.title": "焦炉", "quests.metal_age.coke_oven.subtitle": "η»ˆδΊŽοΌŒδΈε†ιœ€θ¦ζœ¨η‚­ε †δΊ†", - "quests.metal_age.coke_oven.desc.1": "η„¦η‚‰ζ˜―δ½ ηš„η¬¬δΈ€δΈͺζ Όι›·η§‘ζŠ€ε€šζ–Ήε—η»“ζž„οΌεƒε…θΈδ½ θ‡ͺεŠ¨η”ŸδΊ§ζœ¨η‚­ε’Œε…Άδ»–εΌΊε€§ηš„ε―η‡ƒη‰©γ€‚η„¦η‚‰δΌšε°†δΈ€ζ ΉεŽŸζœ¨ηƒ§ζˆδΈ€δΈͺζœ¨η‚­ε’Œ250mbηš„ζ‚ι…šζ²ΉοΌŒθΏ™ζ˜―δΈ€η§η”¨δΊŽζœ¨ζε€„η†ηš„ι‡θ¦εŒ–ε­¦ε“γ€‚\n\nε¦‚ζžœδ½ εˆΆδ½œδΊ†η„¦η‚‰δΈ»ζ–Ήε—εΉΆεœ¨ε…ΆδΈŠζŒ‰δΈ‹JEIηš„β€œη”¨ι€”β€ι”οΌˆι»˜θ€δΈΊβ€œUβ€οΌ‰οΌŒδ½ δΌšζ‰Ύεˆ°δΈ€δΈͺεδΈΊβ€œε€šζ–Ήε—δΏ‘ζ―β€ηš„ι€‰ι‘Ήε‘οΌŒε…ΆδΈ­ζ˜Ύη€ΊδΊ†ε¦‚δ½•εœ¨δΈ–η•ŒδΈ­ε»Ίι€ η„¦η‚‰γ€‚\n\n你也可δ»₯η›΄ζŽ₯ε°†ζŽ§εˆΆε™¨ζ–Ήε—ζ”Ύεœ¨δΈ–η•ŒδΈ­οΌŒεΉΆεœ¨ζ½œθ‘Œζ—ΆδΈŽδΉ‹δΊ€δΊ’δ»₯εˆ›ε»ΊηΌΊε€±ζ–Ήε—ηš„ε…¨ζ―ε›Ύγ€‚", + "quests.metal_age.coke_oven.desc.1": "η„¦η‚‰ζ˜―δ½ ηš„η¬¬δΈ€δΈͺζ Όι›·η§‘ζŠ€ε€šζ–Ήε—η»“ζž„οΌεƒε…θΈδ½ θ‡ͺεŠ¨η”ŸδΊ§ζœ¨η‚­ε’Œε…Άδ»–εΌΊε€§ηš„ε―η‡ƒη‰©γ€‚η„¦η‚‰δΌšε°†δΈ€ζ ΉεŽŸζœ¨ηƒ§ζˆδΈ€δΈͺζœ¨η‚­ε’Œ250mbηš„ζ‚ι…šζ²ΉοΌŒθΏ™ζ˜―δΈ€η§η”¨δΊŽζœ¨ζι˜²θ…ηš„ι‡θ¦εŒ–ε­¦ε“οΌŒδΊ¦ε―δ½œδΈΊδΈ€η§ε‰ζœŸη‡ƒζ–™γ€‚\n\nε¦‚ζžœδ½ εˆΆδ½œδΊ†η„¦η‚‰δΈ»ζ–Ήε—εΉΆεœ¨ε…ΆδΈŠζŒ‰δΈ‹JEIηš„β€œη”¨ι€”β€ι”οΌˆι»˜θ€δΈΊβ€œUβ€οΌ‰οΌŒδ½ δΌšζ‰Ύεˆ°δΈ€δΈͺεδΈΊβ€œε€šζ–Ήε—δΏ‘ζ―β€ηš„ι€‰ι‘Ήε‘οΌŒε…ΆδΈ­ζ˜Ύη€ΊδΊ†ε¦‚δ½•εœ¨δΈ–η•ŒδΈ­ε»Ίι€ η„¦η‚‰γ€‚\n\n你也可δ»₯η›΄ζŽ₯ε°†ζŽ§εˆΆε™¨ζ–Ήε—ζ”Ύεœ¨δΈ–η•ŒδΈ­οΌŒεΉΆεœ¨ζ½œθ‘Œζ—ΆδΈŽδΉ‹δΊ€δΊ’δ»₯εˆ›ε»ΊηΌΊε€±ζ–Ήε—ηš„ε…¨ζ―ε›Ύγ€‚", "quests.metal_age.coke_oven.desc.2": "焦炉可δ»₯ι€šθΏ‡ε‰θ£…焦炉仓ζ₯εžηްεŒε…¨θ‡ͺεŠ¨εŒ–γ€‚η„¦η‚‰δ»“ζ”Ύη½εœ¨η„¦η‚‰δΎ§ι’οΌŒε―δ½œδΈΊη‰©ε“ε’ŒζΆ²δ½“ηš„θΎ“ε…₯θΎ“ε‡ΊζŽ₯口。\n\n你可δ»₯轻松搭建一δΈͺη€ε•ηš„ε•ε‘θ‡ͺεŠ¨εŒ–η„¦η‚‰οΌšη”¨ζΏζ‘η±δ½œδΈΊθΎ“ε…₯εΉε™¨οΌŒη±ε­δ½œδΈΊθΎ“ε‡ΊεΉε™¨οΌŒε†ι…ε€‡δΈ€δΈͺζ‘Άγ€ζœ¨ζ‘Άζˆ–ε€§εž‹ζœ¨θ΄¨ε‚¨η½ζ₯ζ”Άι›†ζœ¨η„¦ζ²Ήγ€‚δΈŽζ™ι€šη±ε­δΈεŒοΌŒζΏζ‘η±θƒ½ε€Ÿε­˜ε‚¨εŽŸζœ¨η­‰ε€§εž‹η‰©ε“γ€‚ζ­€ε€–οΌŒζ‰‹ζŒζ‰³ζ‰‹ζ½œθ‘Œε³ι”η‚Ήε‡»ζ Όι›·η§‘ζŠ€ηš„η‘道可将兢θΎη½δΈΊε•向传输樑式。", "quests.metal_age.wrought_iron_goodies.title": "ι”»ι“ηΊ§ζœΊζ’°εŠ¨εŠ›", "quests.metal_age.wrought_iron_goodies.subtitle": "δ½ θ―΄ηš„θΏ™δΈͺβ€œε‰ε±±εˆι‡‘β€ζ˜―δ»€δΉˆοΌŸ", "quests.metal_age.wrought_iron_goodies.desc": "ζœ‰δΊ†ι”»ι“οΌŒδ½ ε·²θ§£ι”δΊ†ε―Ήι‡‘ε±žε€–ε£³ηš„θΏι—οΌŒθΏ™ζ˜―ζœΊζ’°εŠ¨εŠ›δΈ­θΈε€šζœΊζ’°ζ–Ήε—οΌˆε¦‚ι½Ώθ½η±οΌ‰ηš„εŸΊη‘€γ€‚ζ›΄ι«˜ηΊ§ηš„δΈ€δΊ›ε°†ιœ€θ¦ι’’οΌŒδ½†ζ­€ζ—Άε»Ίι€ δΈ€δΈͺε…¨θ‡ͺεŠ¨ηš„ζ ‘εœΊε’Œε†œεœΊζ˜―ε―θ‘Œηš„γ€‚\n\nζ‚ι…šζ²Ήη”¨δΊŽεˆΆι€ ι˜²θ…ζœ¨ζΏοΌŒθΏ™δΊ›ζœ¨ζΏε―δ»₯刢成水θ½ε’Œι£Žθ½¦οΌŒθΏ™ζ˜―ε―ΉεŠ¨η‰©εŠ¨εŠ›ηš„ζ˜Ύθ‘—ζ”ΉθΏ›γ€‚", - "quests.metal_age.fire_clay_ingredients.title": "θ€η«η²˜εœŸεŽŸζ–™", + "quests.metal_age.fire_clay_ingredients.title": "θ€η«ι»εœŸεŽŸζ–™", "quests.metal_age.fire_clay_ingredients.subtitle": "ηΎ€ε³¦δΌ θ―΄ηš„ζˆδΊΊη€Όγ€‚", - "quests.metal_age.fire_clay_ingredients.desc": "θ€η«η²˜εœŸζ˜―δΈ€η§η”±ι«˜ε²­ηŸ³γ€ηŸ³ε’¨ε’Œζ™ι€šη²˜εœŸεˆΆζˆηš„η‰ΉζŠη²˜εœŸοΌŒη‰Ήεˆ«θ€ι«˜ζΈ©γ€‚εƒηš„δΈ€δΈͺδΈ»θ¦η”¨ι€”ζ˜―ε©εŸšοΌˆδ½œδΈΊη”¨δΊŽι‡‘ε±žη†”η‚Όε’Œεˆι‡‘εŒ–ηš„εΉε™¨ηš„ζ”ΉθΏ›η‰ˆζœ¬οΌ‰ε’Œι«˜η‚‰οΌˆθΏ™ζ˜―εˆΆδ½œδΈ‹δΈ€ηΊ§η §ε’Œι‡‘ε±žη­‰ηΊ§β€”β€”ι’’β€”β€”ζ‰€εΏ…ιœ€ηš„οΌ‰γ€‚\n\nδ½ ε―θƒ½ιœ€θ¦ι•Ώι€”θ·‹ζΆ‰οΌŒθΏœη¦»δ½ ηš„εŸΊεœ°ζ‰θƒ½θŽ·εΎ—ηŸ³ε’¨ε’Œι«˜ε²­εœŸοΌŒζ‰€δ»₯ε‡†ε€‡ζ˜―ε…³ι”!", + "quests.metal_age.fire_clay_ingredients.desc": "θ€η«ι»εœŸζ˜―δΈ€η§η”±ι«˜ε²­εœŸγ€ηŸ³ε’¨ε’Œζ™ι€šι»εœŸεˆΆζˆηš„η‰ΉζŠι»εœŸοΌŒη‰Ήεˆ«θ€ι«˜ζΈ©γ€‚εƒηš„δΈ€δΈͺδΈ»θ¦η”¨ι€”ζ˜―ε©εŸšοΌˆδ½œδΈΊη”¨δΊŽι‡‘ε±žη†”η‚Όε’Œεˆι‡‘εŒ–ηš„εΉε™¨ηš„ζ”ΉθΏ›η‰ˆζœ¬οΌ‰ε’Œι«˜η‚‰οΌˆθΏ™ζ˜―εˆΆδ½œδΈ‹δΈ€ηΊ§η §ε’Œι‡‘ε±žη­‰ηΊ§β€”β€”ι’’β€”β€”ζ‰€εΏ…ιœ€ηš„οΌ‰γ€‚\n\nδ½ ε―θƒ½ιœ€θ¦ι•Ώι€”θ·‹ζΆ‰οΌŒθΏœη¦»δ½ ηš„εŸΊεœ°ζ‰θƒ½θŽ·εΎ—ηŸ³ε’¨ε’Œι«˜ε²­εœŸοΌŒζ‰€δ»₯ε‡†ε€‡ζ˜―ε…³ι”!", "quests.metal_age.overworld_kaolin.title": "高岭土ζ₯ζΊοΌšδΈ»δΈ–η•Œ", "quests.metal_age.overworld_kaolin.subtitle": "欒迎ζ₯εˆ°δΈ›ζž—", "quests.metal_age.overworld_kaolin.desc": "高岭土εͺθƒ½εœ¨ε…·ζœ‰ι«˜ζ΅·ζ‹”γ€ζΈ©εΊ¦οΌˆθ‡³ε°‘18Β°CοΌ‰ε’ŒζΉΏεΊ¦οΌˆθ‡³ε°‘300mmι™ι›¨ι‡οΌ‰η»„εˆηš„εœ°εŒΊζ‰Ύεˆ°γ€‚ι«˜ε²­εœŸη”Ÿζˆθ¦ζ±‚ηš„εŒζ•΄εˆ—θ‘¨ε’Œζη€Ίε―δ»₯εœ¨γ€Šι‡Žε€–ζŒ‡ε—γ€‹δΈ­ζ‰Ύεˆ°γ€‚\n\nδ½ εΎˆε―θƒ½ιœ€θ¦ε‘δΈœε—ζ–Ήε‘ζ—…θ‘ŒιžεΈΈγ€ιžεΈΈθΏœοΌŒεΎˆε―θƒ½θ¦η©ΏθΆŠζ΅·ζ΄‹γ€‚η”¨ι“εˆΆζ°΄ε£Άγ€ε€§ι‡ι£Ÿη‰©γ€ζŸη§ζ°΄δΈŠδΊ€ι€šε·₯ε…·οΌˆε¦‚η‹¬ζœ¨θˆŸγ€εˆ’θ‰‡ζˆ–ηšεˆ’艇)δ»₯εŠι’ε€–ηš„δΎΏζΊεΌε­˜ε‚¨θΎε€‡ζ₯装倇θ‡ͺ己,δ»₯δΎΏε°½ε―θƒ½ε€šεœ°εΈ¦ε›žεΆι«˜ε²­εœŸγ€‚\n\nTerraFirmaGregδ»»εŠ‘ηš„β€œζη€ΊδΈŽζŠ€ε·§β€η« θŠ‚δΈ­ζœ‰ε…³δΊŽδΎΏζΊεΌε­˜ε‚¨ε’Œζ°΄δΈŠδΊ€ι€šε·₯ε…·ηš„δ»»εŠ‘γ€‚", @@ -2598,23 +3428,23 @@ "quests.metal_age.beneath_graphite.task": "η©ΏθΆŠδΈ»δΈ–η•ŒεŸΊε²©εΉΆεˆ°θΎΎεΉ½ε†₯δΉ‹εœ°", "quests.metal_age.kaolin_clay.title": "高岭土", "quests.metal_age.kaolin_clay.subtitle": "ι«˜ε²­εœŸδΉ‹ζ—…οΌšζ¬‘ζ—Άδ»£", - "quests.metal_age.kaolin_clay.desc": "δΈ€ζ—¦δ½ ζ‰Ύεˆ°ι«˜ε²­εœŸοΌŒδ½ εΊ”θ―₯ε°½ε―θƒ½ε€šεœ°εΈ¦ε›žζ₯οΌδΈεΉΈηš„ζ˜―οΌŒεͺζœ‰20%%ηš„ι«˜ε²­εœŸθƒ½ζˆεŠŸηƒ§εˆΆζˆι«˜ε²­ηŸ³η²‰οΌŒζ‰€δ»₯ε»Ίθεœ¨ηŽ°εœΊη”¨ε‘ηͺ‘ηƒ˜ηƒ€οΌŒδ»₯θŠ‚ηœεΊ“ε­˜η©Ίι—΄γ€‚\n\nεœ¨δ½ εˆΆδ½œδΊ†ε©εŸšε’Œι«˜η‚‰δΉ‹εŽοΌŒδ½ ε°±δΈε†ιœ€θ¦ε€ͺε€šι«˜ε²­εœŸδΊ†οΌŒδ½†ε€šεΈ¦δΈ€δΊ›δ½ θ€δΈΊιœ€θ¦ηš„ι‡δ»η„Άζ˜―δΈ€δΈͺε₯½δΈ»ζ„οΌŒδ»₯避免重倍旅程。\n\nι™„ζ³¨οΌšε¦‚ζžœδ½ ζ‰Ύεˆ°δΊ†η«ηƒθŠ±δ½†ζ²‘ζœ‰ζ‰Ύεˆ°η²˜εœŸοΌŒθ―•η€ε†εΎ€δΈ‹ζŒ–δΈ€η‚ΉοΌζœ‰ζ—Άεƒη”Ÿζˆεœ¨εœ°δΈ‹δΈ€η‚Ήηš„εœ°ζ–Ήγ€‚", + "quests.metal_age.kaolin_clay.desc": "δΈ€ζ—¦δ½ ζ‰Ύεˆ°ι«˜ε²­εœŸοΌŒδ½ εΊ”θ―₯ε°½ε―θƒ½ε€šεœ°εΈ¦ε›žζ₯οΌδΈεΉΈηš„ζ˜―οΌŒεͺζœ‰20%%ηš„ι«˜ε²­εœŸθƒ½ζˆεŠŸηƒ§εˆΆζˆι«˜ε²­ηŸ³η²‰οΌŒζ‰€δ»₯ε»Ίθεœ¨ηŽ°εœΊη”¨ε‘ηͺ‘ηƒ˜ηƒ€οΌŒδ»₯θŠ‚ηœεΊ“ε­˜η©Ίι—΄γ€‚\n\nεœ¨δ½ εˆΆδ½œδΊ†ε©εŸšε’Œι«˜η‚‰δΉ‹εŽοΌŒδ½ ε°±δΈε†ιœ€θ¦ε€ͺε€šι«˜ε²­εœŸδΊ†οΌŒδ½†ε€šεΈ¦δΈ€δΊ›δ½ θ€δΈΊιœ€θ¦ηš„ι‡δ»η„Άζ˜―δΈ€δΈͺε₯½δΈ»ζ„οΌŒδ»₯避免重倍旅程。\n\nι™„ζ³¨οΌšε¦‚ζžœδ½ ζ‰Ύεˆ°δΊ†η«ηƒθŠ±δ½†ζ²‘ζœ‰ζ‰Ύεˆ°ι»εœŸοΌŒθ―•η€ε†εΎ€δΈ‹ζŒ–δΈ€η‚ΉοΌζœ‰ζ—Άεƒη”Ÿζˆεœ¨εœ°δΈ‹δΈ€η‚Ήηš„εœ°ζ–Ήγ€‚", "quests.metal_age.graphite.title": "石咨", "quests.metal_age.graphite.subtitle": "ι“…η¬”δΈε­˜εœ¨", "quests.metal_age.graphite.desc": "δΈ€ζ—¦δ½ ζ‰Ύεˆ°ηŸ³ε’¨οΌŒδ½ εΊ”θ―₯ε°½ε―θƒ½ε€šεœ°εΈ¦ε›žζ₯οΌθ™½η„Άδ½ δΈιœ€θ¦εƒι«˜ε²­εœŸι‚£δΉˆε€šγ€‚\nηŸ³ε’¨ηŸΏθ„‰δΉŸε―Œε«η…€ε’Œι’»ηŸ³οΌŒθ€Œδ½ εΎˆεΏ«ε°±δΌšιœ€θ¦η…€ζ₯εˆΆι€ ι’’γ€‚", "quests.metal_age.graphite.task": "δ»»δ½•ε½’εΌηš„ηŸ³ε’¨", - "quests.metal_age.fire_clay.title": "θ€η«η²˜εœŸ", + "quests.metal_age.fire_clay.title": "θ€η«ι»εœŸ", "quests.metal_age.fire_clay.subtitle": "终于", - "quests.metal_age.fire_clay.desc": "εŠ ηƒ­ι«˜ε²­εœŸδ»₯θŽ·εΎ—ι«˜ε²­ηŸ³η²‰γ€‚δ½ ε―δ»₯δ½Ώη”¨ζœ¨η‚­η‚‰ε•η‹¬εŠ ηƒ­εƒδ»¬οΌŒδ½†εœ¨ε‘ηͺ‘δΈ­η”¨ε°ηΌΈε€§ζ‰Ήι‡ηƒ˜ηƒ€ε―能更快。\n\nε―ΉδΊŽηŸ³ε’¨οΌŒζ­£εΈΈε€„η†ηŸΏηŸ³οΌŒη„ΆεŽε†ζ¬‘η²‰η’ŽηŸ³ε’¨η²‰ε°˜δ»₯θŽ·εΎ—ηŸ³ε’¨η²‰γ€‚\n\nζœ€εŽοΌŒε°†4δ»½ηŸ³ε’¨η²‰γ€4δ»½ι«˜ε²­ηŸ³η²‰ε’Œ1δ»½η²˜εœŸη»„εˆζ₯εˆζˆθ€η«η²˜εœŸγ€‚", - "quests.metal_age.fire_clay_products.title": "θ€η«η²˜εœŸδΊ§ε“", - "quests.metal_age.fire_clay_products.subtitle": "ζžεΊ¦θ€ηƒ­ηš„η²˜εœŸ", - "quests.metal_age.fire_clay_products.desc": "就像ζ™ι€šη²˜εœŸδΈ€ζ ·οΌŒθ€η«η²˜εœŸε―δ»₯ι€šθΏ‡ε‘‘ζ€§ζ₯εˆΆι€ δ½ ιœ€θ¦ηƒ§εˆΆηš„δΈœθ₯Ώγ€‚ζœ€ι‡θ¦ηš„ζ˜―οΌŒθ€η«η²˜εœŸη”¨δΊŽεˆΆι€ ε©εŸšε’Œθ€η«η –οΌŒθΏ™δΈ€θ€…ιƒ½ζ˜―ι«˜η‚‰ζ‰€εΏ…ιœ€ηš„γ€‚\n\nδ½ θΏ˜ε°†θƒ½ε€Ÿεˆ›ε»ΊδΈ€δΈͺι“Έζ¨‘ε°ε’Œζ΅‡ζ³¨ι€šι“οΌŒθ©δ½ ε―δ»₯δΈ€ζ¬‘ε°†ι‡‘ε±žδ»Žε©εŸšι“Έε…₯倚δΈͺ樑具。\n\nζœ€εŽοΌŒθΏ˜ζœ‰θ€η«ι”­ζ¨‘ε…·οΌŒεƒεͺζœ‰1%%ηš„ε‡ ηŽ‡η ΄θ£‚οΌŒθ€ŒδΈζ˜―ζ™ι€šη²˜εœŸηš„10%%。", + "quests.metal_age.fire_clay.desc": "εŠ ηƒ­ι«˜ε²­εœŸδ»₯θŽ·εΎ—ι«˜ε²­ηŸ³η²‰γ€‚δ½ ε―δ»₯δ½Ώη”¨ζœ¨η‚­η‚‰ε•η‹¬εŠ ηƒ­εƒδ»¬οΌŒδ½†εœ¨ε‘ηͺ‘δΈ­η”¨ε°ηΌΈε€§ζ‰Ήι‡ηƒ˜ηƒ€ε―能更快。\n\nε―ΉδΊŽηŸ³ε’¨οΌŒζ­£εΈΈε€„η†ηŸΏηŸ³οΌŒη„ΆεŽε†ζ¬‘η²‰η’ŽηŸ³ε’¨η²‰ε°˜δ»₯θŽ·εΎ—ηŸ³ε’¨η²‰γ€‚\n\nζœ€εŽοΌŒε°†4δ»½ηŸ³ε’¨η²‰γ€4δ»½ι«˜ε²­ηŸ³η²‰ε’Œ1δ»½ι»εœŸη»„εˆζ₯εˆζˆθ€η«ι»εœŸγ€‚", + "quests.metal_age.fire_clay_products.title": "θ€η«ι»εœŸδΊ§ε“", + "quests.metal_age.fire_clay_products.subtitle": "ζžεΊ¦θ€ηƒ­ηš„ι»εœŸ", + "quests.metal_age.fire_clay_products.desc": "就像ζ™ι€šι»εœŸδΈ€ζ ·οΌŒθ€η«ι»εœŸε―δ»₯ι€šθΏ‡ζεˆΆζ₯εˆΆι€ δ½ ιœ€θ¦ηƒ§εˆΆηš„δΈœθ₯Ώγ€‚ζœ€ι‡θ¦ηš„ζ˜―οΌŒθ€η«ι»εœŸη”¨δΊŽεˆΆι€ ε©εŸšε’Œθ€η«η –οΌŒθΏ™δΈ€θ€…ιƒ½ζ˜―ι«˜η‚‰ζ‰€εΏ…ιœ€ηš„γ€‚\n\nδ½ θΏ˜ε°†θƒ½ε€Ÿεˆ›ε»ΊδΈ€δΈͺι“Έζ¨‘ε°ε’Œζ΅‡ζ³¨ι“οΌŒθ©δ½ ε―δ»₯δΈ€ζ¬‘ε°†ι‡‘ε±žδ»Žε©εŸšι“Έε…₯倚δΈͺ樑具。\n\nζœ€εŽοΌŒθΏ˜ζœ‰θ€η«ι”­ζ¨‘ε…·οΌŒεƒεͺζœ‰1%%ηš„ε‡ ηŽ‡η ΄θ£‚οΌŒθ€ŒδΈζ˜―ζ™ι€šι»εœŸηš„10%%。", "quests.metal_age.crucible.title": "坩埚", "quests.metal_age.crucible.subtitle": "εƒδΈ“δΈšδΊΊε£«δΈ€ζ ·η†”εŒ–ι‡‘ε±ž", "quests.metal_age.crucible.desc": "ε°†ε©εŸšζ”Ύη½εœ¨ζœ¨η‚­η‚‰δΈŠζ–Ήγ€‚εƒεΈ¦ζœ‰9δΈͺη‰©ε“ζ ζ§½δ½οΌŒε―εΉηΊ³4032mBηš„ζ΅δ½“οΌŒεŒ…ζ‹¬δΈ€δΈͺζ£€ζŸ₯δ½ εˆι‡‘εŒ–ζ―”δΎ‹ηš„η•Œι’γ€‚εƒδ»¬εœ¨η ΄η’Žζ—ΆδΉŸδΌšδΏη•™ε…Άε†…εΉη‰©γ€‚当放η½εœ¨ι«˜η‚‰δΈ‹ζ–Ήζ—ΆοΌŒεƒδ»¬δΉŸε―δ»₯ζ”Άι›†η”Ÿι“γ€‚\n\nθ―·θ°δ½οΌŒε©εŸšδΌšε°θ―•εˆι‡‘εŒ–ι‡Œι’ηš„ζ‰€ζœ‰δΈœθ₯Ώβ€”β€”εƒδΈεƒεŒ ι­‚ε†Άη‚Όη‚‰ι‚£ζ ·ε°†ι‡‘ε±žεˆ†εΌ€δΏε­˜β€”β€”ζ‰€δ»₯当你不使用εƒζ—ΆοΌŒδΏζŒζΈ…ζ΄ζ˜―δΈ€δΈͺε₯½δΈ»ζ„γ€‚", "quests.metal_age.fire_bricks.title": "耐火砖", "quests.metal_age.fire_bricks.subtitle": "η”¨δΊŽι«˜η‚‰", - "quests.metal_age.fire_bricks.desc": "θ€η«η –η”¨δΊŽε»Ίι€ ι«˜η‚‰οΌŒδ½ θ‡³ε°‘ιœ€θ¦4块砖ζ₯εˆΆδ½œη‚‰ε­γ€‚\n\nθΏ™δΊ›η –ιœ€θ¦ιš”ηƒ­δ»₯η‘δΏη‚Όι’’θΏ‡η¨‹ζœ‰ζ•ˆοΌŒδ½ ε―δ»₯εœ¨θ€η«η –ε‘¨ε›΄ζ”Ύη½3ε—ι”»ι“θ–„ζΏοΌŒζˆ–θ€…δ½Ώη”¨ι«˜η‚‰ιš”ηƒ­ζζ–™", + "quests.metal_age.fire_bricks.desc": "θ€η«η –η”¨δΊŽε»Ίι€ ι«˜η‚‰οΌŒδ½ θ‡³ε°‘ιœ€θ¦4块砖ζ₯εˆΆδ½œη‚‰ε­γ€‚\n\nθΏ™δΊ›η –ιœ€θ¦ιš”ηƒ­δ»₯η‘δΏη‚Όι’’θΏ‡η¨‹ζœ‰ζ•ˆοΌŒδ½ ε―δ»₯εœ¨θ€η«η –ε‘¨ε›΄ζ”Ύη½3ε—ι”»ι“ζΏοΌŒζˆ–θ€…δ½Ώη”¨ι«˜η‚‰ιš”ηƒ­ζΏγ€‚", "quests.metal_age.fully_stacked_blast_furnace.title": "ε…¨ε°Ίε―Έι«˜η‚‰", "quests.metal_age.fully_stacked_blast_furnace.subtitle": "εŒε·₯ηš„ι«˜η‚‰", "quests.metal_age.fully_stacked_blast_furnace.desc": "ε…¨ε°Ίε―Έηš„ι«˜η‚‰θƒ½ε€ŸδΈ€ζ¬‘η†”εŒ–ε’Œε€„η†ε€§ι‡ηš„ι“γ€‚εœ¨ε―θƒ½ηš„ζƒ…ε†΅δΈ‹ζŠŠεƒε»ΊεΎ—ζ›΄ε€§ζ˜―δΈ€δΈͺε₯½δΈ»ζ„οΌŒε› δΈΊδ½ ε°†ζ₯ιœ€θ¦ε€§ι‡ηš„ι’’γ€‚\n\nεœ¨δ½ ζœ‰δΊ†η¬¬δΈ€δΈͺθ’Έζ±½εˆι‡‘η‚‰δΉ‹εŽοΌŒδ½ ε°†θƒ½ε€Ÿζ›΄δΎΏεœεœ°εˆΆι€ ζ›΄ε€šηš„耐火砖。", @@ -2628,7 +3458,7 @@ "quests.metal_age.steel_anvil.subtitle": "η›Έζ―”ι”»ι“ηš„ε·¨ε€§ι£žθ·ƒ", "quests.metal_age.steel_anvil.desc": "ζœ‰δΊ†ι’’η §οΌŒδ½ ε°†θƒ½ε€Ÿε°†ι’’ι”­εŠ ε·₯ζˆδΈεŒηš„ε½’εΌγ€‚\n\nι’’εˆΆε·₯ε…·ε’ŒθΎε€‡η›Έζ―”ι’ι“œε’Œι”»ι“ε―ΉεΊ”η‰©ζœ‰ζ˜Ύθ‘—ζε‡οΌŒε› ζ­€ε¦‚ζžœδ½ ηŽ°ζœ‰ηš„ε·₯ε…·ε³ε°†ζŸεοΌŒεƒδ»¬ε€ΌεΎ—εˆΆδ½œγ€‚δ½ εΎˆεΏ«ε°†ιœ€θ¦εˆΆι€ ε€§ι‡εˆι‡‘οΌŒε› ζ­€δΈ€δΊ›ζ–°ηš„ι‡‡ηŸΏθΎε€‡ε°†ζ˜―δΈ€ι‘Ήζ˜Žζ™Ίηš„ζŠ•θ΅„γ€‚", "quests.metal_age.steel_goodies.title": "ι’’ηΊ§ζœΊζ’°εŠ¨εŠ›", - "quests.metal_age.steel_goodies.subtitle": "εΉι£Žγ€η²‰η’Žε’Œη‘道运输", + "quests.metal_age.steel_goodies.subtitle": "ιΌ“ι£Žγ€η²‰η’Žε’Œη‘道运输", "quests.metal_age.steel_goodies.desc": "ι’’θ§£ι”δΊ†ζ–°ηš„ζ Όι›·ζœΊζ’°η­‰ηΊ§οΌŒε…·ζœ‰ζ›΄ι«˜ηš„ζœ€ε€§εΊ”εŠ›εΉι‡οΌδ½ ηŽ°εœ¨θΏ˜ε―δ»₯εˆΆι€ θ―Έε¦‚ιΌ“ι£ŽζœΊοΌˆε―δ»₯θ‡ͺεŠ¨εŒ–ηŸΏηŸ³ζΈ…ζ΄—οΌ‰ε’ŒεŠ¨εŠ›ζ³΅οΌˆθ©δ½ ζ›΄εΉζ˜“θΏ›θ‘Œζ΅δ½“η‰©ζ΅οΌ‰δΉ‹η±»ηš„δΈœθ₯Ώγ€‚\n\nεŠ¨εŠ›ζ³΅η‰Ήεˆ«ζœ‰η”¨οΌŒε› δΈΊι€šθΏ‡ε·§ε¦™θΎθ‘,你可δ»₯轻松εžηŽ°ι«˜η‚‰ηš„θ‡ͺεŠ¨εŒ–ζ“δ½œγ€‚\n\nδΈΊδΊ†η»™θΏ™δΊ›ζœΊζ’°ζδΎ›εŠ¨εŠ›οΌŒδ½ θΏ˜ε―δ»₯δ½Ώη”¨θ’Έζ±½εΌ•ζ“ŽοΌŒδ»Žθ€Œε°†η‡ƒζ–™ε’Œζ°΄θ½¬εŒ–δΈΊε·¨ι‡ηš„ζœΊζ’°θƒ½οΌ", "quests.metal_age.weak_steel.title": "θ„†ι’’ζˆεˆ†", "quests.metal_age.weak_steel.subtitle": "εΈŒζœ›δ½ ε–œζ¬’ζ•°ε­¦", @@ -2638,7 +3468,7 @@ "quests.metal_age.weak_steel.task3": "1δ»½ι»‘ι’ι“œ", "quests.metal_age.highcarb_black_steel.title": "ι»‘ι’’ζˆεˆ†", "quests.metal_age.highcarb_black_steel.subtitle": "物质εˆζ’εšεΎ‹εœ¨θΏ™ι‡ŒδΈι€‚用", - "quests.metal_age.highcarb_black_steel.desc": "ζœ€εŽδΈ€δΈͺη §ζ˜―η”±ε€ζ‚ηš„εˆι‡‘εˆΆζˆηš„οΌŒιœ€θ¦ε€§ι‡ηš„ι‡‘ε±žζ₯εˆΆι€ γ€‚θ„†ι’’ε’Œη”Ÿι“ε―δ»₯η„ŠζŽ₯ζˆι«˜η’³ι»‘ι’’οΌŒη„ΆεŽε―δ»₯在砧上加ε·₯ζˆι»‘ι’’γ€‚", + "quests.metal_age.highcarb_black_steel.desc": "ζœ€εŽδΈ€δΈͺη §ζ˜―η”±ε€ζ‚ηš„εˆι‡‘εˆΆζˆηš„οΌŒιœ€θ¦ε€§ι‡ηš„ι‡‘ε±žζ₯εˆΆι€ γ€‚θ„†ι’’ε’Œη”Ÿι“ε―δ»₯η„ŠζŽ₯ζˆι«˜η’³ι»‘ι’’οΌŒη„ΆεŽε―δ»₯在砧上加ε·₯ζˆι»‘ι’’γ€‚\n\nδΈ€ζ—¦δ½ ζ‹₯ζœ‰δΊ†θ’Έζ±½εˆι‡‘η‚‰οΌŒε°±ε―δ»₯用εƒζ₯θŽ·ε–&6εŒε€δΊ§ε‡Ί&r。", "quests.metal_age.black_steel_anvil.title": "δΊ”ηΊ§η §οΌšι»‘ι’’", "quests.metal_age.black_steel_anvil.subtitle": "θ’Έζ±½εŠ¨εŠ›θ§¦ζ‰‹ε―εŠ", "quests.metal_age.black_steel_anvil.desc": "ζœ‰δΊ†ι»‘ι’’η §οΌŒδ½ ηŽ°εœ¨ε―δ»₯ε°†ι»‘ι’’ι”­εŠ ε·₯ζˆδΈεŒηš„η‰©ε“γ€‚\n\nδ½ ηŽ°εœ¨θΏ˜εœ¨ζ—©ζœŸθ‡ͺεŠ¨εŒ–η« θŠ‚δΈ­εΌ€ε―δΊ†δΈ€δΈͺεΊžε€§ηš„ζ–°ιƒ¨εˆ†οΌŒζΆ‰εŠι«˜εŽ‹θ’Έζ±½εŠ¨εŠ›οΌ\n\nδ»ŽθΏ™ι‡ŒοΌŒδ½ ε―δ»₯η›΄ζŽ₯ζŠ•ε…₯ε·₯δΈšεŒ–οΌŒζˆ–θ€…ε¦‚ζžœδ½ ζ„Ώζ„οΌŒεŒζˆζœ€εŽδΈ€ηΊ§ηš„η §γ€‚δΈθΏ‡οΌŒδ½ ζ— ζ³•ζ°ΈθΏœιΏεΌ€ε½©θ‰²ι’’!", @@ -2663,23 +3493,27 @@ "quests.metal_age.weak_blue_steel.sterling_silver": "1δ»½ηΊ―ι“Ά", "quests.metal_age.weak_blue_steel.bismuth_bronze": "1δ»½ι“‹ι’ι“œ", "quests.metal_age.highcarb_red_steel.title": "ηΊ’ι’’ζˆεˆ†", - "quests.metal_age.highcarb_red_steel.subtitle": "εƒθΏ™ζ ·εˆ ι™€θ΄¨ι‡θƒ½ε¦δΈΊζ ΈεΌΉζδΎ›εŠ¨εŠ›οΌŸ", - "quests.metal_age.highcarb_red_steel.desc": "ηΊ’ι’’ζœ€εˆζ˜―ι«˜η’³ηΊ’ι’’οΌŒη”±θ„†ηΊ’ι’’ε’Œι»‘ι’’η„ŠζŽ₯θ€Œζˆγ€‚εƒιœ€θ¦εœ¨η §δΈŠεŠ ε·₯ζ‰θƒ½ε˜ζˆηΊ’ι’’", + "quests.metal_age.highcarb_red_steel.subtitle": "γ€Šζˆ‘ηš„δΈ–η•Œγ€‹ε―δΈζ˜―η‰©η†ζ¨‘ζ‹Ÿε™¨", + "quests.metal_age.highcarb_red_steel.desc": "ηΊ’ι’’ζœ€εˆζ˜―ι«˜η’³ηΊ’ι’’οΌŒη”±θ„†ηΊ’ι’’ε’Œι»‘ι’’η„ŠζŽ₯θ€Œζˆγ€‚εƒιœ€θ¦εœ¨η §δΈŠεŠ ε·₯ζ‰θƒ½ε˜ζˆηΊ’ι’’γ€‚\n\nε¦‚ζžœδ½ ζœ‰θ’Έζ±½εˆι‡‘η‚‰οΌŒε°±ε―δ»₯用εƒζ₯θŽ·εΎ—&6εŒε€δΊ§ε‡Ί&r。", "quests.metal_age.highcarb_blu_steel.title": "θ“ι’’ζˆεˆ†", "quests.metal_age.highcarb_blu_steel.subtitle": "ζ‹‰η“¦ι”‘εœ¨εŸε’“ι‡Œζ‰“ζ»š", - "quests.metal_age.highcarb_blu_steel.desc": "θ“ι’’ζœ€εˆζ˜―ι«˜η’³θ“ι’’οΌŒη”±θ„†θ“ι’’ε’Œι»‘ι’’η„ŠζŽ₯θ€Œζˆγ€‚εƒιœ€θ¦εœ¨η §δΈŠεŠ ε·₯ζ‰θƒ½ε˜ζˆθ“ι’’", + "quests.metal_age.highcarb_blu_steel.desc": "θ“ι’’ζœ€εˆζ˜―ι«˜η’³θ“ι’’οΌŒη”±θ„†θ“ι’’ε’Œι»‘ι’’η„ŠζŽ₯θ€Œζˆγ€‚εƒιœ€θ¦εœ¨η §δΈŠεŠ ε·₯ζ‰θƒ½ε˜ζˆθ“ι’’γ€‚\n\nε¦‚ζžœδ½ ζœ‰θ’Έζ±½εˆι‡‘η‚‰οΌŒε°±ε―δ»₯用εƒζ₯θŽ·εΎ—&6εŒε€δΊ§ε‡Ί&r。", "quests.metal_age.redblu_anvil.title": "ε…­ηΊ§η §οΌšηΊ’ι’’ζˆ–θ“ι’’", "quests.metal_age.redblu_anvil.subtitle": "η»“ζŸδΊ†", "quests.metal_age.redblu_anvil.desc": "ζœ€η»ˆηΊ§ηš„η §οΌζœ‰δΊ†ε…­ηΊ§η §οΌŒδ½ ε°†θƒ½ε€Ÿε°†ηΊ’ι’’ε’Œθ“ι’’ι”­εŠ ε·₯ζˆδΈεŒηš„η‰©ε“γ€‚\n\nθΏ™ζ ‡εΏ—η€ηΎ€ε³¦δΌ θ―΄θΏ›η¨‹ηš„η»“ζŸγ€‚ηŽ°εœ¨ζ˜―ζ—Άε€™εŒζˆε·₯δΈšζ—Άδ»£εΉΆεˆΆι€ δ½ ηš„η¬¬δΈ€δΈͺδ½Žη”΅εŽ‹η”΅θ·―δΊ†γ€‚", "quests.metal_age.red_steel_flask.title": "ηΊ’ι’’ζ°΄ε£Ά", "quests.metal_age.red_steel_flask.subtitle": "θΏ™ε’Œι“εˆΆζ°΄ε£Άζ²‘ζ³•ζ―”", - "quests.metal_age.red_steel_flask.desc": "ηΊ’ι’’ζ°΄ε£Άζ˜―ε―η”¨ζœ€ε₯½ηš„水壢。εƒε―θƒ½ζŒζœ‰δΈŽι“εˆΆζ°΄ε£Άη›ΈεŒι‡ηš„ζΆ²δ½“οΌŒδ½†ηΊ’ι’’ζ°΄ε£Άζ°ΈθΏœδΈδΌšη ΄θ£‚γ€‚", + "quests.metal_age.red_steel_flask.desc": "ηΊ’ι’’ζ°΄ε£Άζ˜―ε―η”¨ζœ€ε₯½ηš„水壢。εƒε―θƒ½ζŒζœ‰δΈŽι“εˆΆζ°΄ε£Άη›ΈεŒι‡ηš„ζΆ²δ½“οΌŒδ½†ηΊ’ι’’ζ°΄ε£Άζ°ΈθΏœδΈδΌšη ΄θ£‚γ€‚\n\nε…³δΊŽδΈη»ΈοΌŒεΉ»ηΏΌιεΈƒδΊŽεΉ½ε†₯δΉ‹εœ°ε„ε€„οΌŒδ½†εœ¨δΈ‹ε±‚εŒΊεŸŸζ›΄δΈΊεΈΈθ§γ€‚", "quests.metal_age.redblu_buckets.title": "ζ°΄ζ‘Άηš„η»„δ»Ά", "quests.metal_age.redblu_buckets.subtitle": "ζ‘Άθšε˜εεΊ”ε †", "quests.metal_age.redblu_buckets.desc": "ε†Άι‡‘ζ—Άδ»£ηš„ζœ€η»ˆδ»»εŠ‘ζ˜―εˆΆι€ δΈ€δΈͺζ‘Άγ€‚δΈŽδ½ εˆ°η›ε‰δΈΊζ­’δΈ€η›΄εœ¨δ½Ώη”¨ηš„ζœ¨ζ‘Άε’Œε…Άδ»–ζ΅δ½“εΉε™¨δΈεŒοΌŒζ‘Άε―η”¨δΊŽζΊεΈ¦η†”ε²©εΉΆη§»εŠ¨ε…Άδ»–ζ΅δ½“ηš„ζΊζ–Ήε—γ€‚", "quests.metal_age.this_is_a_bucket.title": "θΏ™β€¦β€¦ζ˜―δΈ€δΈͺ摢。", "quests.metal_age.this_is_a_bucket.subtitle": "δΊ²ηˆ±ηš„δΈŠεΈβ€¦β€¦", "quests.metal_age.this_is_a_bucket.desc": "ζ­ε–œδ½ εˆΆδ½œδΊ†ζ‘Άγ€‚ε†Άι‡‘ζ—Άδ»£ζ­£εΌη»“ζŸγ€‚\n\nεŽ»εΌ€ε§‹η ”η©Άι‚£δΊ›δ½Žη”΅εŽ‹η»„δ»Άε§οΌ", + "quests.metal_age.temperature_protection.title": "彩色钒装倇", + "quests.metal_age.temperature_protection.subtitle": "ζ°ΈδΉ…ζΈ©εΊ¦ι˜²ζŠ€", + "quests.metal_age.temperature_protection.desc": "εŽŒε€¦δΊ†ζ€»ζ˜―ζ‹Ώη€ι’³ε­ε—οΌŸε½©θ‰²ι’’δΌ˜εΌ‚ηš„ιš”ηƒ­ζ€§θƒ½εŒζ ·δ½“ηŽ°εœ¨εƒδ»¬ηš„θ£…ε€‡δΈŠοΌ\n\n&9蓝钒&r装倇可δ»₯ζŠ΅εΎ‘ζžη«―ι«˜ζΈ©οΌŒδΎ‹ε¦‚ζ‰‹ζŒηƒ­ι“Έι”­ζˆ–θΈ©εœ¨ε……ζ»‘θ’Έζ±½ηš„η‘ι“δΈŠοΌ›θ€Œ&cηΊ’ι’’&rθ£…ε€‡εˆ™ε―Ήδ½ŽζΈ©ζδΎ›εŒζ ·ηš„ι˜²ζŠ€γ€‚θƒΈη”²η±»η‰©ε“δΏζŠ€δ½ ηš„η‰©ε“ζ οΌŒι΄ε­η±»η‰©ε“εˆ™δΈ“ι—¨ι˜²ζŠ€η‘道。\n\nζŸ₯ηœ‹&6#hot_protection_equipment&rε’Œ&b#cold_protection_equipment&rζ ‡η­Ύδ»₯θŽ·ε–εŒζ•΄εˆ—葨!", + "quests.metal_age.temperature_protection.task": "δ»»ζ„ηΊ’ι’’ζˆ–θ“ι’’θ£…ε€‡", "quests.ore_proc": "ηŸΏηŸ³ε€„η†", "quests.ore_proc.subtitle": "θ©δ½ ηš„ηŸΏηŸ³η‰©ε°½ε…Άη”¨ζ‰€ιœ€ηš„δΈ€εˆ‡", "quests.ore_proc.native_ore.title": "欒迎ζ₯εˆ°ηŸΏηŸ³ε€„η†", @@ -2766,7 +3600,7 @@ "quests.ore_proc.macerator_separator.task": "δ»»δ½•η ”η£¨ζœΊ", "quests.ore_proc.thermal_centrifuge.title": "ηƒ­εŠ›η¦»εΏƒζœΊ", "quests.ore_proc.thermal_centrifuge.subtitle": "ε€„η†ε€§ε€šζ•°ηΊ―ε‡€ηŸΏηŸ³ηš„ι¦–ι€‰", - "quests.ore_proc.thermal_centrifuge.desc": "ε―ΉδΊŽζ‰€ζœ‰ε…Άδ»–δΈιœ€θ¦η‰ΉζŠε€„η†ηš„ηΊ―ε‡€ηŸΏηŸ³οΌŒζœ€ε₯½θ©εƒδ»¬ι€šθΏ‡&dηƒ­εŠ›η¦»εΏƒζœΊ&rγ€‚θΏ™ε°ζœΊε™¨ε―δ»₯δ»₯ε―ι ηš„ι€ŸεΊ¦η”ŸδΊ§ε‰―δΊ§η‰©οΌŒεΉΆδΈ”εͺη”¨η”΅γ€‚η„Άθ€ŒοΌŒεƒη›Έε½“ζ…’οΌŒε› ζ­€ζˆ‘δ»¬ε»ΊθεˆΆι€ ε€šε°ζœΊε™¨γ€‚", + "quests.ore_proc.thermal_centrifuge.desc": "ε―ΉδΊŽζ‰€ζœ‰ε…Άδ»–δΈιœ€θ¦η‰ΉζŠε€„η†ηš„ηΊ―ε‡€ηŸΏηŸ³οΌŒζœ€δ½³εŽ»ε€„ε°±ζ˜―&dηƒ­εŠ›η¦»εΏƒζœΊ&rγ€‚θΏ™ε°ζœΊε™¨ε―δ»₯稳εšηš„ι€ŸηŽ‡δΊ§ε‡Ίε‰―δΊ§η‰©οΌŒεΉΆδΈ”δΈιœ€θ¦δ»»δ½•ε…Άδ»–εŽŸζ–™γ€‚δΈθΏ‡εƒηš„ι€ŸεΊ¦η›Έε½“ζ…’οΌŒε› ζ­€ζˆ‘δ»¬ε»Ίθθ¦δΉˆε€šι€ ε‡ ε°οΌŒθ¦δΉˆη›΄ζŽ₯δ½Ώη”¨θ’Έζ±½εΉΆθ‘Œε€šζ–Ήε—η»“ζž„γ€‚", "quests.ore_proc.thermal_centrifuge.task": "δ»»δ½•ηƒ­εŠ›η¦»εΏƒζœΊ", "quests.ore_proc.sifter.title": "η­›ι€‰ζœΊ", "quests.ore_proc.sifter.subtitle": "η©Ίε²›ζ¨‘ζ‹Ÿε™¨", @@ -2791,8 +3625,8 @@ "quests.ore_proc.gem_slurry.subtitle": "ζˆ‘δ»¬β€¦ζ˜―ζ°΄ζ™Άβ€”β€”ε’•ε™œε’•ε™œβ€¦", "quests.ore_proc.gem_slurry.desc": "&6εηŸ³ζ΅†ζΆ²&rζ˜―ι’ˆε―ΉηΊ’εηŸ³γ€θ“εηŸ³ε’Œη»Ώθ‰²θ“εηŸ³ηš„ε―ι€‰δ½†εΏ«ζ·ηš„ε€„η†θ·―ηΊΏοΌŒθƒ½δ»Žεƒδ»¬θΊ«δΈŠζ¦¨ε–ζ›΄ε€šθ΅„ζΊγ€‚δΈŽη›΄ζŽ₯η”΅θ§£η›Έζ―”οΌš\n\n-&cηΊ’εηŸ³ζ΅†ζΆ²&r能产出近3ε€ηš„ι“ε’Œι“¬\n\n-&9蓝εηŸ³ζ΅†ζΆ²&r能产出2ε€ηš„ι“\n\n-&a绿色蓝εηŸ³ζ΅†ζΆ²&r能产出2ε€ηš„ι“δ»₯εŠδΈ€δΊ›ι’ε€–ηš„ι“\n\nι™€ζ­€δΉ‹ε€–οΌŒεƒδ»¬ιƒ½ζœ‰ε°ζ¦‚ηŽ‡ι’ε€–δΊ§ε‡ΊδΈ€δΊ›ι’›γ€ι“ε’Œι’’", "quests.ore_proc.gem_slurry.task": "任意εηŸ³ηŸΏζ΅†ζΆ²", - "quests.space_survival": "ζη€ΊδΈŽζŠ€ε·§-ε€ͺη©Ίη”Ÿε­˜η―‡", - "quests.space_survival.subtitle": "ι‚£δΈͺ尚ζœͺθ’«θ΅„ζœ¬δΈ»δΉ‰θ…θš€ηš„εœ°ζ–Ήβ€¦β€¦ε€ͺ空!", + "quests.moon": "ζœˆηƒ", + "quests.moon.subtitle": "ι‚£δΈͺ尚ζœͺθ’«θ΅„ζœ¬δΈ»δΉ‰θ…θš€ηš„εœ°ζ–Ήβ€¦β€¦ε€ͺ空!", "quests.space_survival.preparations.title": "发射前准倇", "quests.space_survival.preparations.subtitle": "η‘保你准倇ε₯½δΊ†οΌ", "quests.space_survival.preparations.desc": "ζΈ΄ζœ›ι£žε‘ζœ€εŽηš„θΎΉη–†οΌŸζˆ‘δ»¬εŒε…¨η†θ§£δ½ ηš„ηƒ­ζƒ…οΌŒδ½†δ½ δΈθƒ½ε°±θΏ™δΉˆζŠŠθ‡ͺ己扔进ε€ͺη©Ίη„ΆεŽζŒ‡ζœ›θƒ½ζ΄»δΈ‹ζ₯!&9准倇&rζ˜―η”Ÿε­˜ηš„ε…³ι”οΌŒε¦εˆ™δ½ εͺδΌšε›žεˆ°ηŸ³ε™¨ζ—Άδ»£οΌŒζ•²ε‡ δΈ‹ηŸ³ε€΄η„ΆεŽηͺ’ζ―θ€Œζ­»γ€‚\n\nη‘保你至少ζ‹₯ζœ‰δ»₯δΈ‹η‰©ε“οΌš\n-δΈ€ε₯—θˆͺε€©ζœε’ŒδΈ€ζ»‘ζ‘Άε―ε‘ΌεΈζ°”δ½“\n-δΈ€ζžšη«η­ε’Œε¦δΈ€ζ»‘摢倇用燃料\n-δΈ€δΈͺε‘ε°„ε°οΌŒδ»₯δΎΏδ½ θƒ½θΏ”ε›ž\n-ε……θΆ³ηš„ι£Ÿη‰©ε’Œζ°΄\n-δΈ€δ»Άζ­¦ε™¨ε’Œη›Ύη‰ŒοΌŒδ»₯ι˜²ζœˆηƒι—Ήι¬Όβ€¦β€¦", @@ -2809,13 +3643,14 @@ "quests.space_survival.flag.task": "δ»»δ½•ζ——εΈœ", "quests.space_survival.chorus.title": "η΄«ι’‚ζžœ", "quests.space_survival.chorus.subtitle": "θΏ™ζ˜―ζœ«εœ°ε—οΌŸ", - "quests.space_survival.chorus.desc": "&5η΄«ι’‚ζžœ&rεœ¨ζœˆηƒδΈŠζ‰ζΌ”η€θ‡³ε…³ι‡θ¦ηš„θ§’θ‰²β€”β€”εƒε°†ζ˜―δ½ ηš„δΈ»θ¦ζ°ζ°”ζ₯ζΊγ€‚ι¦–ε…ˆοΌŒζ‰Ύεˆ°δΈ€δΊ›η΄«ι’‚ζ€η‰©οΌŒθ·‘ι…·εˆ°ι‘Άιƒ¨οΌŒεΉΆζ‰“η ΄&5η΄«ι’‚θŠ±&rγ€‚δ»ŽεΊ•ιƒ¨η ΄εζ€η‰©δΈδΌšεΎ—εˆ°δ»»δ½•η΄«ι’‚θŠ±οΌζŽ₯δΈ‹ζ₯οΌŒεœ¨η”΅εŠ›ζΈ©ε€δΈ­η§ζ€η΄«ι’‚θŠ±δ»₯θŽ·εΎ—ε―ε†η”Ÿηš„η΄«ι’‚ζžœζ₯ζΊοΌŒη„ΆεŽδ½ ε―δ»₯εˆ†εˆ«η”¨ι…Ώι€ εŽ‚ε’Œε‘ι…΅ε™¨ε°†εƒδ»¬εŠ ε·₯ζˆη”Ÿη‰©θ΄¨ε’Œζ°ζ°”γ€‚δ½ θΏ˜ε―δ»₯ε°†η”Ÿη‰©θ΄¨θ’Έι¦ζˆη’³οΌŒδ»₯θŽ·εΎ—ζ›΄ε€šηš„η«η­η‡ƒζ–™οΌ", + "quests.space_survival.chorus.desc": "&5η΄«ι’‚ζžœ&rεœ¨ζœˆηƒδΈŠζ‰ζΌ”η€θ‡³ε…³ι‡θ¦ηš„θ§’θ‰²β€”β€”εƒε°†ζ˜―δ½ ηš„δΈ»θ¦ζ°ζ°”ζ₯ζΊγ€‚ι¦–ε…ˆοΌŒζ‰Ύεˆ°δΈ€δΊ›η΄«ι’‚ζ€η‰©οΌŒθ·‘ι…·εˆ°ι‘Άιƒ¨οΌŒεΉΆζ‰“η ΄&5η΄«ι’‚θŠ±&rγ€‚δ»ŽεΊ•ιƒ¨η ΄εζ€η‰©δΈδΌšεΎ—εˆ°δ»»δ½•η΄«ι’‚θŠ±οΌζŽ₯δΈ‹ζ₯οΌŒεœ¨η”΅εŠ›ζΈ©ε€δΈ­η§ζ€η΄«ι’‚θŠ±δ»₯θŽ·εΎ—ε―ε†η”Ÿηš„η΄«ι’‚ζžœζ₯ζΊοΌŒη„ΆεŽδ½ ε―δ»₯εˆ†εˆ«η”¨ι…Ώι€ ε€ε’Œε‘酡器将εƒδ»¬εŠ ε·₯ζˆη”Ÿη‰©θ΄¨ε’Œζ°ζ°”γ€‚δ½ θΏ˜ε―δ»₯ε°†η”Ÿη‰©θ΄¨θ’Έι¦ζˆη’³οΌŒδ»₯θŽ·εΎ—ζ›΄ε€šηš„η«η­η‡ƒζ–™οΌ", "quests.space_survival.rover.title": "ε€ͺ空漫游车", "quests.space_survival.rover.subtitle": "δ½ ηš„ι€ƒη”Ÿε·₯ε…·", "quests.space_survival.rover.desc": "δ½ δΈεΎ—δΈζŠŠδ½ θŠ±ε“¨ηš„ε–·ζ°”θƒŒεŒ…η•™εœ¨εΆι‡ŒοΌŒζ²‘ζœ‰ε€§ζ°”ε±‚δΎ›ι£žζœΊι£žθ‘ŒοΌŒι©¬δΉŸζ— ζ³•η”Ÿε­˜οΌŒι‚£δΉˆδ½ θ―₯ε¦‚δ½•ε‡Ίθ‘ŒοΌŸ\n\n&b漫游车(Rover)&rζ˜―δΈ€η§ε―δ»₯εΉηΊ³ζœ€ε€šδΈ€εδΉ˜ε’ηš„θ½½ε…·οΌŒδ½Ώη”¨ε―η‡ƒη‡ƒζ–™οΌˆζŸ΄ζ²Ήγ€ζ±½ζ²Ήε’Œη«η­η‡ƒζ–™οΌ‰θΏθ‘ŒοΌŒη”šθ‡³θΏ˜ζœ‰δΈ€δΈͺη‰©ε“ζ ε’Œε―δ»₯ζ’­ζ”ΎηœŸεžδΈ–η•Œη”΅ε°ηš„ζ”ΆιŸ³ζœΊοΌ", "quests.space_survival.solar_panels.title": "ε€ͺι˜³θƒ½ζΏ", "quests.space_survival.solar_panels.subtitle": "衞美ε€ͺ阳!", "quests.space_survival.solar_panels.desc": "ζœˆηƒδΈŠε―η”¨ηš„θƒ½ζΊιžεΈΈε°‘οΌŒδ½†θΏ™δΊ›&eε€ͺι˜³θƒ½ζΏ&rεœ¨θΏ™ι‡Œε―ζ˜―ζ‹₯ζœ‰θ§‚θ΅ε€ͺι˜³ηš„η»δ½³θ§†θ§’οΌ\n\nεœ¨ζœˆηƒδΈŠοΌŒζ―δΈͺε€ͺι˜³θƒ½ζΏεœ¨η™½ε€©ζδΎ›η›Έε½“δΊŽ&932EU/t&rηš„θƒ½ι‡οΌŒζ— ιœ€η‡ƒζ–™ζˆ–η»΄ζŠ€οΌŒδ½†θ‹₯ε°†ε…Άη½δΊŽεœ°ηƒθ‘¨ι’οΌŒε‘η”΅ζ•ˆηŽ‡δ»…ε‰©ε…«εˆ†δΉ‹δΈ€γ€‚εΈ¦δΈŠδΈ€ε€§ε †ε§οΌ", + "quests.space_survival.solar_panels.task": "任何FE->EU能量转捒器", "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ζ₯源!", @@ -2883,6 +3718,8 @@ "quests.space_survival.soulbound.subtitle": "δ½ η¦»ε‡Ίη”Ÿη‚ΉεΎˆθΏœδΊ†", "quests.space_survival.soulbound.desc.1": "在TerraFirmaGregζ•΄εˆεŒ…δΈ­οΌŒδ½ ε―δ»₯εœ¨δ»»δ½•η»΄εΊ¦οΌˆη”šθ‡³εŒ…ζ‹¬&6εΉ½ε†₯δΉ‹εœ°&r!)θΎη½ι‡η”Ÿη‚ΉοΌŒδ½†ι™€ιžδ½ ε€‡ζœ‰ε€§ι‡ε€šδ½™ηš„&9θˆͺ倩服&rοΌŒε¦εˆ™εœ¨ζœˆηƒι‡η”Ÿε―θƒ½δΌšεΌ•ε‘δΈ€η³»εˆ—θΏžι”ι—ι’˜γ€‚\n\nι¦–θ¦οΌŒδ½ ηš„εΊŠεΏ…ι‘»ζ”Ύη½εœ¨&aε……ζ°§εŒΊεŸŸ&rε†…ιƒ¨οΌŒε¦εˆ™ι‡η”Ÿηž¬ι—΄ε°†η«‹ε³ε› ηͺ’ζ―ζ­»δΊ‘οΌˆδΈθΏ‡θ‹₯ε‘η”Ÿεœη”΅δΊ‹ζ•…οΌŒδ½ δ»εΊ”ζœ‰θΆ³ε€Ÿζ—Άι—΄η ΄εεΊŠε…·εΉΆι‡ζ–°θΎη½ι‡η”Ÿη‚ΉοΌ‰γ€‚", "quests.space_survival.soulbound.desc.2": "ε…Άζ¬‘οΌŒδ½ ε―δ»₯用一δΈͺβ€œη΅ι­‚εη β€ε‡ηΊ§δ½ ηš„每一仢θˆͺε€©ζœγ€‚θΏ™ζ ·εœ¨δ½ ζ­»δΊ‘ζ—Άεƒδ»¬δΉŸδΌšδΏζŒη©Ώζˆ΄ηŠΆζ€οΌ\n\n你可δ»₯δ»ŽζœˆηƒδΈŠδ»»δ½•ζ›΄εΌΊε€§δΈ”ε…·ζœ‰ζ”»ε‡»ζ€§ηš„ζœ«ε½±δΊΊθΊ«δΈŠθŽ·ε–θΏ™δΊ›η΅ι­‚εη γ€‚\n\nζˆ‘δ»¬δΏθ―θΏ™ζ˜―η§‘εΉ»θΎεšοΌŒθ€Œιžι­”法元素。", + "quests.mars": "η«ζ˜Ÿζ±‚η”Ÿ", + "quests.mars.subtitle": "ζ΅ζ²™ι™ε€™οΌŒεΎη¨‹δΌŠε§‹", "quests.space_survival.mars_desert.title": "η«ζ˜Ÿθ’ζΌ ", "quests.space_survival.mars_desert.subtitle": "ζ²™οΌŒεˆ°ε€„ιƒ½ζ˜―ζ²™", "quests.space_survival.mars_desert.desc": "η«ζ˜Ÿηš„η»ε€§ιƒ¨εˆ†εœ°θ‘¨ιƒ½θ’«εΉΏθ’€ζ— εž ηš„ζ²™ζΌ θ¦†η›–γ€‚ι™€εΆε°”ε‡Ίζ²‘ηš„ε ηˆͺε…½δΈŽε·¨εž‹&6ζ²™θ™«&rε€–οΌŒθΏ™η‰‡εœŸεœ°ε‡ δΉŽθ’ζ— δΊΊηƒŸγ€‚θ‹₯ζ˜―εˆδΈ΄ζ­€εœ°οΌŒδ½ εΊ”ε½“ε―»ζ‰Ύζ›΄ι€‚εœη”Ÿε­˜ηš„εŒΊεŸŸοΌε¦εˆ™β€¦ε”―ζœ‰εœ¨θΏ™ζ— εž ζ²™ζ΅·δΈ­η»§η»­ζŽ’ε―»β€¦β€¦", @@ -2892,7 +3729,7 @@ "quests.space_survival.sandworm.desc": "εœ¨ζ²™ζΌ δΈ­εˆΆι€ θΏ‡ε€§ε£°ε“ε―θƒ½δΌšεΌ•ζ₯εΌΊε€§ηš„&6ζ²™θ™«&r!εƒζ›΄εƒζ˜―ιœ€θ¦θ§„ιΏηš„ηŽ―ε’ƒε¨θƒθ€Œιžε―θ¨δΌηš„ι¦–ι’†οΌŒε› ζ­€ε­˜ζ΄»δΈ‹ζ₯ηš„ζœ€δ½³ζ–ΉεΌε°±ζ˜―η«‹ε³ι€ƒη¦»οΌ\n\nθ‹₯能用&bηˆ†η‚ΈδΌ€ε³&rε€šζ¬‘ε‡»δΈ­ε…Άε€΄ιƒ¨οΌŒεƒδΌšζš‚ζ—Άεœζ­’θΏ½ε‡»β€¦δ½†ζ•ˆζžœδ»…θƒ½η»΄ζŒη‰‡εˆ»γ€‚\n\n所幸沙虫仅能伀ε³η”Ÿη‰©θ€Œιžε»Ίη­‘οΌŒδΈ”εͺ会蒫&6玩εΆηš„θ„šζ­₯ε£°&r吸引——εͺ要η‘保&bεŒθ„š&r不ζŽ₯θ§¦εœ°ι’δΎΏδΈδΌšζΏ€ζ€’εƒγ€‚η¨€θ–„ηš„ε€§ζ°”ε±‚δΈζ”―ζŒι£žζœΊδΈŽζ»‘ηΏ”δΌžοΌŒδ½†ζ€»ζœ‰ε…Άδ»–ε·₯具……", "quests.space_survival.spice.title": "η΄«ι‡‘ηŸΏεΊŠ", "quests.space_survival.spice.subtitle": "ηΎŽη…θ„‚", - "quests.space_survival.spice.desc": "&dη΄«ι‡‘ηŸΏεΊŠ&rζ˜―δ»…εˆ†εΈƒδΊŽη«ζ˜Ÿζ·±ε±‚ζ²™ζΌ ηš„ε›Ίεšη”Ÿζˆζ–Ήε—οΌŒθΏœη¦»ζ‰€ζœ‰ε―Œι₯ΆεŒΊεŸŸγ€‚εƒδ»¬δ»₯ε°εž‹ηŸΏη°‡ε½’ζ€η”ŸζˆοΌŒθ‹₯δ½δΊŽζ–œε‘δ½η½ε―蒫破坏δ»₯便为紫金采集器腾出空间。建θ使用&6ζœ›θΏœι•œ&rθΏ›θ‘ŒθΏœθ·η¦»εšδ½οΌ\n\nδ½ ιœ€θ¦ε»Ίη«‹ι•Ώθ·η¦»η‰©ζ΅η³»η»Ÿε°†η΄«ι‡‘θΎ“ι€ε›žεŸΊεœ°οΌˆε―ε°θ―•ι“θ·―θΏθΎ“οΌŒθ“„η”΅ε™¨θƒ½εžηŽ°η”΅εŠ›εŒζ­₯传输!)\n\nη΄«ι‡‘ζ˜―&5EV&r阢ζ΅ε‘ε±•εŠδ»Žη«ζ˜ŸθŽ·ε–ζ— ι™ηŸΏηŸ³ηš„ε…³ι”衄源。", + "quests.space_survival.spice.desc": "&dη΄«ι‡‘ηŸΏεΊŠ&rζ˜―δ»…εˆ†εΈƒδΊŽη«ζ˜Ÿζ·±ε±‚ζ²™ζΌ ηš„ε›Ίεšη”Ÿζˆζ–Ήε—οΌŒθΏœη¦»ζ‰€ζœ‰ε―Œι₯ΆεŒΊεŸŸγ€‚εƒδ»¬δ»₯ε°εž‹ηŸΏη°‡ε½’ζ€η”ŸζˆοΌŒθ‹₯δ½δΊŽζ–œε‘δ½η½ε―蒫破坏δ»₯便为紫金采集器腾出空间。建θ使用&6ζœ›θΏœι•œ&rθΏ›θ‘ŒθΏœθ·η¦»εšδ½οΌ\n\nδ½ ιœ€θ¦ε»Ίη«‹ι•Ώθ·η¦»η‰©ζ΅η³»η»Ÿε°†η΄«ι‡‘θΎ“ι€ε›žεŸΊεœ°οΌˆε°θ―•δΈ€δΈ‹ι“θ·―θΏθΎ“οΌοΌ‰\n\nη΄«ι‡‘ζ˜―&5EV&r阢ζ΅ε‘ε±•εŠδ»Žη«ζ˜ŸθŽ·ε–ζ— ι™ηŸΏηŸ³ηš„ε…³ι”衄源。", "quests.space_survival.spice.task": "ηΎŽη…θ„‚ηš„ζ΅θ½¬ζ°ΈδΈεœζ―", "quests.space_survival.mars_islands.title": "η«ζ˜ŸδΈ›ζž—", "quests.space_survival.mars_islands.subtitle": "ι‚£ζ˜―ζιΎ™ε—οΌŸοΌ", @@ -2918,7 +3755,7 @@ "quests.space_survival.t2_space_suit.desc": "η©ΏδΈŠθΏ™ε₯—新一代ε€ͺη©ΊζœοΌŒδ½ ε°†θƒ½ζŠ΅εΎ‘ε‡ε™δΈ­ηš„&bζžε―’&r与&cι…·ηƒ­&rηŽ―ε’ƒοΌεƒζ˜―你踏上&6ι‡‘ζ˜Ÿ&rε’Œ&5水星&rζ—ΆοΌŒι˜²ζ­’θ‡ͺθΊ«ε› ι«˜ζΈ©θ€Œηž¬ι—΄θ‡ͺη‡ƒηš„εΏ…ε€‡θ£…ε€‡γ€‚\n\nζ­€ε€–οΌŒεƒθΏ˜ι’ε€–提供了一εšηš„ζŠ€η”²ε€Όε’Œζ°§ζ°”εΉι‡οΌ", "quests.space_survival.mars_tapping.title": "η»―ηΊ’ζΆ²δΈŽθ―‘εΌ‚ζΆ²", "quests.space_survival.mars_tapping.subtitle": "δ½ ε―ηœŸζ˜―ι’Ÿζƒ…δΊŽι‡‡ι›†ζ ‘ζΆ²ε•ŠοΌ", - "quests.space_survival.mars_tapping.desc": "η»―ηΊ’θŒε’Œθ―‘εΌ‚θŒε―ι€šθΏ‡ζ ‘ζΆ²ι‡‡ι›†ε™¨εˆ†εˆ«θŽ·ε–&4η»―ηΊ’ζΆ²&r与&3θ―‘εΌ‚ζΆ²&r。\n\nθΏ™δΈ€η§ζΆ²δ½“ζ˜―η”ŸδΊ§&9璘&rηš„εΏ…ε€‡εŽŸζ–™οΌŒδ½†η”±δΊŽεƒδ»¬ι€šεΈΈδΈη”Ÿι•Ώεœ¨εŒδΈ€εŒΊεŸŸοΌŒδ½ ε―θƒ½ιœ€θ¦ι•Ώι€”θ·‹ζΆ‰γ€‚η»―ηΊ’θŒε€šεˆ†εΈƒδΊŽη«ζ˜ŸδΈœεŠηƒοΌŒθ€Œθ―‘εΌ‚θŒεˆ™ζ›΄εΈΈθ§δΊŽθ₯ΏεŠηƒγ€‚\n\nθ―·ζ³¨ζ„οΌšδ½ ε―δ»₯η›΄ζŽ₯将采集器ζŽ₯ε…₯ζ Όι›·η§‘ζŠ€ηš„εΌ€ζ”ΎεΌζ΅δ½“η‘道!\n\n&9提瀺:&rζƒ³θ¦ε±•η€Ίεˆ›ζ„οΌŸδ½ θΏ˜ε―δ»₯η”¨η»―ηΊ’θŒζŸ„εˆΆδ½œη‹¬ζœ¨θˆŸοΌŒη”¨θ―‘εΌ‚θŒζŸ„ε»Ίι€ εˆ’θ‰‡ζˆ–ε•ζ‘…ηΊ΅εΈ†θˆΉοΌ", + "quests.space_survival.mars_tapping.desc": "η»―ηΊ’θŒε’Œθ―‘εΌ‚θŒε―ι€šθΏ‡ζ ‘ζΆ²ι‡‡ι›†ε™¨εˆ†εˆ«θŽ·ε–&4η»―ηΊ’ζΆ²&r与&3θ―‘εΌ‚ζΆ²&r。\n\nθΏ™δΈ€η§ζΆ²δ½“ζ˜―η”ŸδΊ§&9璘&rηš„εΏ…ε€‡εŽŸζ–™οΌŒδ½†η”±δΊŽεƒδ»¬ι€šεΈΈδΈη”Ÿι•Ώεœ¨εŒδΈ€εŒΊεŸŸοΌŒδ½ ε―θƒ½ιœ€θ¦ι•Ώι€”θ·‹ζΆ‰γ€‚η»―ηΊ’θŒε€šεˆ†εΈƒδΊŽη«ζ˜ŸδΈœεŠηƒοΌŒθ€Œθ―‘εΌ‚θŒεˆ™ζ›΄εΈΈθ§δΊŽθ₯ΏεŠηƒγ€‚δ½ δΉŸε―δ»₯δ»Žε―ΉεΊ”ηš„ζœ«ε½±δΊΊι‚£ι‡ŒθŽ·ε–ζ ‘θ‹—γ€‚\n\nθ―·ζ³¨ζ„οΌšδ½ ε―δ»₯η›΄ζŽ₯将采集器ζŽ₯ε…₯ζ Όι›·η§‘ζŠ€ηš„εΌ€ζ”ΎεΌζ΅δ½“η‘道!\n\n&9提瀺:&rζƒ³θ¦ε±•η€Ίεˆ›ζ„οΌŸδ½ θΏ˜ε―δ»₯η”¨η»―ηΊ’θŒζŸ„εˆΆδ½œη‹¬ζœ¨θˆŸοΌŒη”¨θ―‘εΌ‚θŒζŸ„ε»Ίι€ εˆ’θ‰‡ζˆ–ε•ζ‘…ηΊ΅εΈ†θˆΉοΌ", "quests.space_survival.iodine.title": "η’˜η”ŸδΊ§ηΊΏ", "quests.space_survival.iodine.subtitle": "θ˜‘θ‡εŒ–ε­¦οΌ", "quests.space_survival.iodine.desc": "ε°†η»―ηΊ’ζΆ²δΈŽθ―‘εΌ‚ζΆ²ζ··εˆοΌŒεŒζ—Άζ³¨ε…₯ζ₯θ‡ͺη«ζ˜Ÿη©Ίζ°”θ’Έι¦η³»η»ŸοΌˆθ―₯桁程可εΎͺηŽ―θΏδ½œοΌ‰ηš„ζ°ͺζ°”οΌŒε†ε€ŸεŠ©θ£‚ε˜εεΊ”ε †ζδΎ›ηš„ι«˜ζΈ©ηŽ―ε’ƒοΌŒδΎΏε―εˆΆεΎ—η’˜οΌ\n\nζ­€θΏ‡η¨‹θΎƒδΈΊηΌ“ζ…’οΌŒδ½†ηŽ°ι˜Άζ΅ιœ€ζ±‚ι‡δΈε€§οΌŒδΈ”εŽη»­εœ¨ε…Άεƒθ‘Œζ˜ŸδΈŠθΏ˜ε°†θ§£ι”ζ›΄ι«˜ζ•ˆηš„η’˜θŽ·ε–ζ–Ήζ³•γ€‚", @@ -2928,7 +3765,7 @@ "quests.space_survival.mars_crops.task": "δ»»ζ„η«ζ˜Ÿη§ε­", "quests.space_survival.bulbkin_pie.title": "火星美食", "quests.space_survival.bulbkin_pie.subtitle": "ζ›΄ε€šι»‘ζš—ζ–™η†ηŽ°ε·²εŠ ε…₯δ½ ηš„ζ–°ι’†εŸŸ", - "quests.space_survival.bulbkin_pie.desc": "θ―‘ζιΈŸθ›‹ε―ζε–δ½œδΈΊη³–ηš„ζ›Ώδ»£ε“οΌŒθ€Œε—…ζŽ’ε…½θ›‹εˆ™ε―Œε«ε₯Άζ²Ήγ€‚\n\n&eηƒζ Ήε—η“œζ΄Ύ&rε ͺη§°η«ζ˜ŸηΎŽι£Ÿηš„ε·…ε³°δΉ‹δ½œοΌŒθƒ½εŒζ—ΆζδΎ›ε››η§δΈεŒη±»εž‹ηš„δΈ°εŽšθ₯ε…»οΌŒδ½†εˆΆδ½œθΏ‡η¨‹ι’‡δΈΊηΉηγ€‚\n\n&e啀酒裹炸恐龙块&rε°†ζιΎ™θ‚‰ηš„ι«˜θ›‹η™½δΈŽε°‘ι‡θ°·η‰©η›Έη»“εˆοΌŒδΉŸε―ζ”Ύε…₯δ½ ηš„ι€εŒ…δΈ­ζΊεΈ¦γ€‚\n\n&9提瀺:&rθ™½η„ΆδΈε±žδΊŽι£Ÿε“θŒƒη•΄οΌŒδ½†δ½ θΏ˜ε―δ»₯ε°†ηƒζ Ήε—η“œε—δΈŽι˜Ώε°”ζ³•θŒθ˜‘θ‡ε—ζ··εˆεˆΆδ½œζˆθ§ηŸ³η²‰γ€‚", + "quests.space_survival.bulbkin_pie.desc": "θ―‘ζιΈŸθ›‹ε―ζε–δ½œδΈΊη³–ηš„ζ›Ώδ»£ε“οΌŒθ€Œε—…ζŽ’ε…½θ›‹εˆ™ε―Œε«ε₯Άζ²Ήγ€‚\n\n&eηƒζ Ήε—η“œζ΄Ύ&rε ͺη§°η«ζ˜ŸηΎŽι£Ÿηš„ε·…ε³°δΉ‹δ½œοΌŒθƒ½εŒζ—ΆζδΎ›ε››η§δΈεŒη±»εž‹ηš„δΈ°εŽšθ₯ε…»οΌŒδ½†εˆΆδ½œθΏ‡η¨‹ι’‡δΈΊηΉηγ€‚\n\n&e啀酒裹炸恐龙块&rε°†ζιΎ™θ‚‰ηš„ι«˜θ›‹η™½δΈŽε°‘ι‡θ°·η‰©η›Έη»“εˆοΌŒδΉŸε―ζ”Ύε…₯δ½ ηš„ι€εŒ…δΈ­ζΊεΈ¦γ€‚\n\n&9提瀺:&rθ™½η„ΆδΈε±žδΊŽι£Ÿε“θŒƒη•΄οΌŒδ½†δ½ θΏ˜ε―δ»₯ε°†ηƒζ Ήε—η“œε—δΈŽι¦–ζ–°δΈ–θ˜‘θ‡ε—ζ··εˆεˆΆδ½œζˆθ§ηŸ³η²‰γ€‚", "quests.space_survival.soarer.title": "ηΏ±ηΏ”ιΈŸ", "quests.space_survival.soarer.subtitle": "ιœ€θ¦ζ­δΈͺδΎΏθ½¦ε—οΌŸ", "quests.space_survival.soarer.desc": "εœ¨η«ζ˜ŸδΈŠι£žζœΊζ— ζ³•δ½Ώη”¨οΌŒθ€Œε€ͺη©ΊζœδΉŸζ²‘ζœ‰ι…ε€‡ε–·ζ°”θƒŒεŒ…οΌŒιšΎι“ε°±ζ²‘ζœ‰ε…Άδ»–ι£žθ‘Œζ–Ήζ³•δΊ†ε—οΌŸ\n\nε¦‚ζžœδ½ θƒ½ζ‰Ύεˆ°θ‘ŒθΈͺι£˜εΏ½ηš„&4ηΏ±ηΏ”ιΈŸ&r,可δ»₯η”¨η”Ÿι±Όι©―ζœεƒδ»¬εΉΆθ£…δΈŠιžοΌŒε³ε―θ½»ζΎηΏ±ηΏ”δΊŽη«ζ˜Ÿε€©ι™…γ€‚\n\n不过εƒδ»¬ζ— ζ³•ζ°ΈδΉ…ι£žθ‘Œβ€”β€”ζ³¨ζ„η•Œι’ε·¦δΈŠθ§’ηš„ηΏΌε½’ε›Ύζ ‡οΌŒιœ€θ¦δΈζ—Άι™θ½δΌ‘ζ―γ€‚θΏ™δ»ζ˜―ι•Ώι€”ζ—…θ‘Œηš„η»δ½³ι€‰ζ‹©οΌŒθ€ŒδΈ”δΈδΌšζƒŠεŠ¨ζ²™θ™«οΌ\n\n&9注意&rοΌšηΏ±ηΏ”ιΈŸζ— ζ³•εœ¨&6ι‡‘ζ˜Ÿ&rη­‰ι«˜ζΈ©θ‘Œζ˜Ÿη”Ÿε­˜γ€‚", @@ -2954,7 +3791,7 @@ "quests.space_survival.aes_insulation.desc": "θ―₯物品η›ε‰η”¨ι€”ζœ‰ι™οΌŒδ½†ζœͺζ₯ε°†ζˆδΈΊδ½ ηš„&1IV&r级火η­ηš„ε…³ι”ζž„ζˆιƒ¨εˆ†γ€‚", "quests.space_survival.mars_shields.title": "ι«˜ηΊ§η›Ύη‰Œ", "quests.space_survival.mars_shields.subtitle": "ζ˜―ζ—Άε€™θ―₯ε‡ηΊ§δ½ ηš„ζ—§εΌι‡‘ε±žη›Ύη‰ŒδΊ†οΌŸ", - "quests.space_survival.mars_shields.desc": "&3εΌΊεŒ–η›Ύη‰Œ&r能将伀ε³εεΌΉη»™ζ”»ε‡»θ€…οΌŒζ•ˆζžœη±»δΌΌεŽŸη‰ˆMinecraftδΈ­ηš„θ†ζ£˜ι™„ι­”γ€‚ε…Άεˆζˆζζ–™ε―δ»Žθ΄ͺε’€ε…½ε’Œε™¬ι’šε…½ε€„θŽ·ε–γ€‚\n\n&5θ…εŒ–η›Ύη‰Œ&rδΌšιšζœΊδΌ ι€ζ”»ε‡»θ€…οΌŒθ™½θƒ½ζœ‰ζ•ˆζ‹‰εΌ€θ·η¦»β€¦β€¦δ½†δΉŸε―θƒ½ε°†ε…ΆδΌ θ‡³δ½ θΊ«εŽγ€‚ζ‰€ιœ€η‰™ι½Ώζ₯θ‡ͺεœ°δΈ‹ζ΄žη©΄δΈ­ηš„ζœ«ε½±δΊΊγ€‚\n\n&4ε†²ε‡»η›Ύη‰Œ&r可吸攢一εšδΌ€ε³εŽι‡Šζ”Ύιœ‡θ‘ζ³’οΌŒε―Ήε‘¨ε›΄ζ‰€ζœ‰η”Ÿη‰©ι€ ζˆδΌ€ε³γ€‚ε…ΆεŠ¨θƒ½ζ ΈεΏƒζ˜―η«ζ˜Ÿζ΄žη©΄δΈ­ζ•Œε―Ήε‚€ε„‘ηš„η¨€ζœ‰ζŽ‰θ½η‰©γ€‚", + "quests.space_survival.mars_shields.desc": "&3εŠ ε›Ίη›Ύη‰Œ&r能将伀ε³εεΌΉη»™ζ”»ε‡»θ€…οΌŒζ•ˆζžœη±»δΌΌεŽŸη‰ˆMinecraftδΈ­ηš„θ†ζ£˜ι™„ι­”γ€‚ε…Άεˆζˆζζ–™ε―δ»Žθ΄ͺε’€ε…½ε’Œε™¬ι’šε…½ε€„θŽ·ε–γ€‚\n\n&5θ…εŒ–δΉ‹η›Ύ&rδΌšιšζœΊδΌ ι€ζ”»ε‡»θ€…οΌŒθ™½θƒ½ζœ‰ζ•ˆζ‹‰εΌ€θ·η¦»β€¦β€¦δ½†δΉŸε―θƒ½ε°†ε…ΆδΌ θ‡³δ½ θΊ«εŽγ€‚ζ‰€ιœ€η‰™ι½Ώζ₯θ‡ͺεœ°δΈ‹ζ΄žη©΄δΈ­ηš„ζœ«ε½±δΊΊγ€‚\n\n&4反击之盾&r可吸攢一εšδΌ€ε³εŽι‡Šζ”Ύιœ‡θ‘ζ³’οΌŒε―Ήε‘¨ε›΄ζ‰€ζœ‰η”Ÿη‰©ι€ ζˆδΌ€ε³γ€‚ε…ΆεŠ¨θƒ½ζ ΈεΏƒζ˜―η«ζ˜Ÿζ΄žη©΄δΈ­ζ•Œε―Ήε‚€ε„‘ηš„η¨€ζœ‰ζŽ‰θ½η‰©γ€‚", "quests.space_survival.mras_shields.task": "δ»»ζ„ι«˜ηΊ§η›Ύη‰Œ", "quests.space_survival.mercury.title": "ζˆ‘εœ¨&5水星&r上!", "quests.space_survival.mercury.subtitle": "η­‰η­‰οΌŒθΏ™ι‡Œε‘η”ŸθΏ‡δ»€δΉˆοΌŸοΌ", @@ -2977,20 +3814,24 @@ "quests.steam_age.basic_millstone.desc": "&3石磨&rζ˜―ζ‰‹ζŽ¨η£¨ηš„θ‡ͺεŠ¨εŒ–η‰ˆζœ¬γ€‚δ½ ε―δ»₯ζŠŠδ»»δ½•δ½ ζƒ³η²‰η’Žηš„δΈœθ₯Ώδ»Žι‘Άιƒ¨ζ‰”θΏ›εŽ»οΌŒη„ΆεŽε³ι”ε•ε‡»ε–ε‡Ίη²‰η’ŽεŽηš„η‰©ε“γ€‚ε¦‚ζžœδ½ η›΄ζŽ₯把εƒθΏžζŽ₯εˆ°εŠ¨η‰©ζ›²ζŸ„δΈŠοΌŒεƒδΌšη›Έε½“ζ…’οΌŒδ½†δ½ ε―δ»₯使用齿θ½ζ―”ζ₯提高εƒηš„ι€ŸεΊ¦γ€‚\n\nθ―·ζ³¨ζ„οΌšδΊ§ε‡Ίη‰©δ»…δΌšε‡ΊηŽ°εœ¨η¬¬δΈ€δΈͺζ§½δ½γ€‚ε…Άδ½™ζ§½δ½ε±žδΊŽζ Όι›·η§‘ζŠ€ζœΊεˆΆηš„δΈ€ιƒ¨εˆ†οΌŒεœ¨&6HV&r阢ζ΅ε‰ιƒ½ζ— ιœ€ε…³ζ³¨γ€‚", "quests.steam_age.horse_crank.title": "δ½ ηš„η¬¬δΈ€δΈͺεŠ¨εŠ›ζΊ", "quests.steam_age.horse_crank.subtitle": "θ©δ½ ηš„η‰²η•œδ»˜η§Ÿι‡‘", - "quests.steam_age.horse_crank.desc.1": "&3εŠ¨η‰©ζ›²ζŸ„&r ζ˜―δ½ η¬¬δΈ€δΈͺε―θŽ·εΎ—ηš„ζœΊζ’°εŠ¨εŠ›ζΊγ€‚θ¦δ½Ώη”¨εƒοΌŒε°†ζ›²ζŸ„ζ”Ύεœ¨δΈ€δΈͺ 7x7 ζΈ…η†εŒΊεŸŸηš„δΈ­εΏƒοΌŒεΉΆη”¨ζ‹΄η»³ε°†εŠ¨η‰©ζ‹΄εœ¨δΈŠι’γ€‚δΈεŒηš„εŠ¨η‰©δΌšζδΎ›δΈεŒζ•°ι‡ηš„εŠ¨εŠ›οΌŒθ€ŒδΈ‹ι’ηš„ζ–Ήε—δΌšε’žεŠ θΎ“ε‡ΊεŠ¨εŠ›ηš„ι€ŸεΊ¦γ€‚ε€šδΈͺζ›²ζŸ„ηš„εŒΊεŸŸε―δ»₯重叠。\n\nδ½ ε―θƒ½ιœ€θ¦ζ‰‹ζŒη¬¬δΊŒζ Ήζ‹΄η»³ζ₯ζ‹΄δ½εŠ¨η‰©γ€‚", - "quests.steam_age.horse_crank.desc.2": "&3ε°εž‹εŠ¨η‰© (4 SU):&r\nη‹Ό, η‹—, ηŒͺ, 绡羊, 山羊, 羊驼\n\n&3δΈ­εž‹εŠ¨η‰© (6 SU):&r\n牛, ι©΄\n\n&3ε€§εž‹εŠ¨η‰© (8 SU):&r\n马, ιͺ‘, 麝牛, 牦牛", + "quests.steam_age.horse_crank.desc.1": "&3εŠ¨η‰©ζ›²ζŸ„&r ζ˜―δ½ η¬¬δΈ€δΈͺε―θŽ·εΎ—ηš„ζœΊζ’°εŠ¨εŠ›ζΊγ€‚θ¦δ½Ώη”¨εƒοΌŒε°†ζ›²ζŸ„ζ”Ύεœ¨δΈ€δΈͺ7x7ζΈ…η©ΊεŒΊεŸŸηš„δΈ­εΏƒοΌŒεΉΆη”¨ζ‹΄η»³ε°†εŠ¨η‰©ζ‹΄εœ¨δΈŠι’γ€‚δΈεŒηš„εŠ¨η‰©δΌšζδΎ›δΈεŒζ•°ι‡ηš„εŠ¨εŠ›οΌŒθ€ŒδΈ‹ι’ηš„ζ–Ήε—δΌšε’žεŠ θΎ“ε‡ΊεŠ¨εŠ›ηš„ι€ŸεΊ¦γ€‚ε€šδΈͺζ›²ζŸ„ηš„εŒΊεŸŸε―δ»₯重叠。\n\nδ½ ε―θƒ½ιœ€θ¦ζ‰‹ζŒη¬¬δΊŒζ Ήζ‹΄η»³ζ₯ζ‹΄δ½εŠ¨η‰©γ€‚", + "quests.steam_age.horse_crank.desc.2": "&3ε°εž‹εŠ¨η‰© (8 SU):&r\nη‹Ό, η‹—, ηŒͺ, 绡羊, 山羊, 羊驼\n\n&3δΈ­εž‹εŠ¨η‰© (12 SU):&r\n牛, ι©΄\n\n&3ε€§εž‹εŠ¨η‰© (16 SU):&r\n马, ιͺ‘, 麝牛, 牦牛", "quests.steam_age.poor_paths.title": "劣质路青", "quests.steam_age.poor_paths.subtitle": "θΏ™εͺ是土", - "quests.steam_age.poor_paths.desc": "θΏ™ζ˜―δ½ θƒ½δ½Ώη”¨ηš„ζœ€ε·ηš„ι“θ·―γ€‚εŠ¨η‰©ζ›²ζŸ„ε°†δ»₯ 2 RPM θΏθ‘Œγ€‚", + "quests.steam_age.poor_paths.desc": "θΏ™ζ˜―δ½ θƒ½δ½Ώη”¨ηš„ζœ€ε·ηš„ι“θ·―γ€‚εŠ¨η‰©ζ›²ζŸ„ε°†δ»₯8RPMθΏθ‘Œγ€‚", "quests.steam_age.normal_paths.title": "中等路青", "quests.steam_age.normal_paths.subtitle": "ε₯½ε§οΌŒδ½ θŠ±δΊ†δΈ€η‚ΉεŠŸε€«", - "quests.steam_age.normal_paths.desc": "中等路青稍εΎε₯½δΈ€η‚ΉοΌŒδΌšθ©δ½ ηš„εŠ¨η‰©δ»₯4RPMθ½¬εŠ¨ζ›²ζŸ„γ€‚\n\nζ³¨ζ„οΌšδ½ δΈθƒ½εœ¨εŠ¨η‰©ζ›²ζŸ„ζ­£δΈ‹ζ–Ήζ”Ύη½εœŸεΎ„ζ–Ήε—οΌŒζ‰€δ»₯ι‚£δΈͺ位η½εΏ…ι‘»ζ˜―沙砾。", + "quests.steam_age.normal_paths.desc": "中等路青稍εΎε₯½δΈ€η‚ΉοΌŒθƒ½θ©δ½ ηš„εŠ¨η‰©δ»₯16RPMηš„ι€ŸεΊ¦θ½¬εŠ¨ζ›²ζŸ„γ€‚\n\nζ³¨ζ„οΌšδ½ δΈθƒ½εœ¨εŠ¨η‰©ζ›²ζŸ„ζ­£δΈ‹ζ–Ήζ”Ύη½εœŸεΎ„ζ–Ήε—οΌŒζ‰€δ»₯ι‚£δΈͺ位η½εΏ…ι‘»ζ˜―沙砾。", "quests.steam_age.good_paths.title": "优质路青", "quests.steam_age.good_paths.subtitle": "δΈιœ€θ¦ι©¬θΉ„ι“οΌ", - "quests.steam_age.good_paths.desc": "θΏ™ζ˜―δ½ θƒ½δ½Ώη”¨ηš„ζœ€ε₯½ηš„θ·―青,θ©δ½ ηš„ζ›²ζŸ„δ»₯8RPMθΎ“ε‡Ίγ€‚θΏ™η±»ε°θ·―δΉŸδΌšε’žεŠ ηŽ©εΆηš„η§»εŠ¨ι€ŸεΊ¦οΌŒζ‰€δ»₯用εƒδ»¬ι“ΊθΎδ½ ηš„εŸΊεœ°εΎˆζ£’οΌ", + "quests.steam_age.good_paths.desc": "θΏ™ζ˜―δ½ θƒ½δ½Ώη”¨ηš„ζœ€ε₯½ηš„θ·―ι’οΌŒθƒ½θ©ηš„ζ›²ζŸ„θΎ“ε‡Ί32RPMγ€‚θΏ™η±»ε°θ·―δΉŸδΌšε’žεŠ ηŽ©εΆηš„η§»εŠ¨ι€ŸεΊ¦οΌŒζ‰€δ»₯用εƒδ»¬ι“ΊθΎδ½ ηš„εŸΊεœ°εΎˆζ£’οΌ", "quests.steam_age.helve_hammer.title": "杠杆销", "quests.steam_age.helve_hammer.subtitle": "哐……哐……哐……", - "quests.steam_age.helve_hammer.desc": "θ§‰εΎ—δΈΊι”»ι“η‚‰εˆΆδ½œζ‰€ζœ‰ι‚£δΊ›ζΏδ»ΆεΎˆηΉηε—οΌŸ&3杠杆销&r 会θ‡ͺεŠ¨οΌˆδ½†ηΌ“ζ…’εœ°οΌ‰ε°†εŒι”­ι”»ι€ ζˆζΏδ»Άη»™δ½ γ€‚δΈθΏ‡οΌŒη„ŠζŽ₯δ»η„Άιœ€θ¦δ½ θ‡ͺε·±εŒζˆγ€‚εͺιœ€εœ¨ι”€ε­ζ­£δΈ‹ζ–Ήζ”Ύη½δΈ€δΈͺη §οΌŒεΉΆε°†δ½ ηš„εŒι”­ζ‰”δΈŠεŽ»οΌŒη„ΆεŽε³ι”ε•ε‡»ι”€ε­ε–ε‡Ίδ½ ηš„ζΏδ»Άγ€‚\n\nζ›΄ι«˜ηΊ§ηš„η §δΉŸιœ€θ¦ζ›΄ε°‘ηš„ι”»ζ‰“ζ¬‘ζ•°ζ₯η”¨ε‰δΈ€ηΊ§ηš„ζζ–™εˆΆδ½œζΏδ»Άγ€‚", + "quests.steam_age.helve_hammer.desc.1": "θ§‰εΎ—δΈΊι”»ι“η‚‰εˆΆδ½œζ‰€ζœ‰ι‚£δΊ›ζΏδ»ΆεΎˆηΉηε—οΌŸ&3杠杆销&r 会θ‡ͺεŠ¨οΌˆδ½†ηΌ“ζ…’εœ°οΌ‰ε°†εŒι”­ι”»ι€ ζˆζΏδ»Άη»™δ½ γ€‚δΈθΏ‡οΌŒη„ŠζŽ₯δ»η„Άιœ€θ¦δ½ θ‡ͺε·±εŒζˆγ€‚εͺιœ€εœ¨ι”€ε­ζ­£δΈ‹ζ–Ήζ”Ύη½δΈ€δΈͺη §οΌŒζŒ‰&2丒弃物品ι”οΌˆι»˜θ€δΈΊQοΌ‰&rε°†εŒι”­ζ‰”εˆ°δΈŠι’οΌŒζœ€εŽε³ι”点击销倴即可取出板材。\n\nζ›΄ι«˜ηΊ§ηš„η §δΉŸθƒ½δ»₯ζ›΄ε°‘ηš„ι”€ε‡»ζ¬‘ζ•°οΌŒε°†ε‰δΈ€ηΊ§ηš„ζζ–™εŠ ε·₯ζˆζΏδ»Άγ€‚", + "quests.steam_age.helve_hammer.desc.2": "θ°εΎ—使用齿θ½ζ₯提高εƒηš„ι€ŸεΊ¦οΌ\n\n衷初εƒε―θƒ½δΈθ΅·ηœΌοΌŒδ½†δΈ€ζ—¦δ½ θƒ½η”¨ι’’εˆΆι½Ώθ½ε’ŒδΌ εŠ¨θ½΄ε°†ε…Άι€ŸεΊ¦ζε‡θ‡³256 RPMοΌŒζ ζ†ι”€ηš„ζ•ˆηŽ‡ε°±δΌšηœŸζ­£ζ˜ΎηŽ°ε‡Ίζ₯。", + "quests.steam_age.multiblock_tank.title": "ε€šζ–Ήε—ε‚¨η½", + "quests.steam_age.multiblock_tank.subtitle": "ζ΅·ι‡ζ΅δ½“ε­˜ε‚¨ζ–Ήζ‘ˆ", + "quests.steam_age.multiblock_tank.desc": "δ½ ζ˜―ε¦ζ­£ι’ε―ΉδΈ€ε€§ε †ζœ¨ζ‘ΆοΌŒεͺδΈΊε‚¨ε­˜ζ‰€ζœ‰ηš„ζ‚ι…šζ²Ήθ€Œε‘ζ„οΌŸ\n\nεˆ«ε†εˆ°ε€„ζ‰ΎδΊ†οΌŒθ―•θ―•ε€šζ–Ήε—ε‚¨η½ε§οΌε³δ½Ώζ˜―ζœ€δΎΏεœηš„ζœ¨θ΄¨ε‚¨η½οΌŒεΉι‡δΉŸι«˜θΎΎθΆ³θΆ³1000ζ‘Άγ€‚ε¦‚ζžœδ½ ιœ€θ¦ζ›΄ε€§ηš„ε­˜ε‚¨η©Ίι—΄οΌŒθΏ˜ζœ‰ι’ι“œε’Œι’’εˆΆη‰ˆζœ¬ε―δΎ›ι€‰ζ‹©οΌ\n\n要θ‡ͺεŠ¨ε‘«ε……ζˆ–ζŽ’η©Ίε‚¨η½οΌŒθ―·δ½Ώη”¨ι˜€ι—¨γ€‚", "quests.steam_age.water_wheel.title": "水车", "quests.steam_age.water_wheel.subtitle": "εΈŒζœ›δ½ ζŠŠεŸΊεœ°ε»Ίεœ¨ζ²³θΎΉοΌ", "quests.steam_age.water_wheel.desc": "ζ°΄θ½¦ζδΎ›ηš„εŠ¨εŠ›θΏœθƒœδΊŽεŠ¨η‰©ζ›²ζŸ„οΌŒδ½†δ»£δ»·ζ˜―ιœ€θ¦δΎθ΅–ζ΅εŠ¨ηš„ζ°΄ζΊγ€‚η›ε‰δ½ ε°šζ— ζ³•θ‡ͺδΈ»η§»εŠ¨ζ°΄ζΊοΌŒε› ζ­€ιœ€θ¦ε―»ζ‰Ύζ²³ζ΅ζ₯驱动εƒδ»¬γ€‚ζ΅·ζ΄‹δΈŽζΉ–ζ³Šθ™½δΉŸθƒ½ζδΎ›ε°‘ι‡εŠ¨εŠ›οΌŒδ½†θ‹₯θΊ«ε€„ε†…ι™†οΌŒε»Ίι€ ι£Žθ½¦δΌšζ˜―ζ›΄ζ˜Žζ™Ίηš„ι€‰ζ‹©γ€‚\n\n你可δ»₯ε°†δ»»δ½•ζœ¨ζΏζ΅Έζ³‘εœ¨η„¦η‚‰δΊ§ε‡Ίηš„ζ‚ι…šζ²ΉδΈ­οΌŒδ»₯ζ­€θŽ·εΎ—ι˜²θ…ζœ¨γ€‚", @@ -3034,15 +3875,15 @@ "quests.steam_age.steel_pump.desc.3": "ε¦δΈ€ζ–Ήι’οΌŒζ Όι›·η§‘ζŠ€ηš„η‘ι“εˆ™ζ‹₯ζœ‰θ‡ͺθΊ«ηš„ε†…ιƒ¨ζ΅δ½“εΉι‡οΌŒδΈ€ζ—¦ζ΅δ½“θΏ›ε…₯ε…ΆδΈ­οΌŒε°±ζ— ιœ€ζ³΅ζŒη»­ι©±εŠ¨γ€‚δΈŽη‰©ε“η‘ι“η±»δΌΌοΌŒε…ΆθΏžζŽ₯也可δ»₯ι€šθΏ‡ζ½œθ‘ŒηŠΆζ€δΈ‹δ½Ώη”¨ζ‰³ζ‰‹ε³ι”η‚Ήε‡»οΌˆζ³¨ζ„ε‰―ζ‰‹δΈθ¦ζ‹Ώδ»»δ½•δΈœθ₯ΏοΌ‰ζ₯θΏ›θ‘Œε…¨ι’ζŽ§εˆΆγ€‚ζˆ‘δ»¬ε»Ίθδ½ ε―Ήζ‰€ζœ‰η‘ι“ιƒ½θΏ›θ‘Œζ­€ζ“δ½œοΌŒε¦εˆ™ζ΅δ½“δΌšεœ¨η‘道内ζ₯ε›žζ™ƒθ‘γ€‚\n\nε¦‚ζžœδ½ ηš„εŠ¨εŠ›ζ³΅ε’Œζ Όι›·η§‘ζŠ€η‘ι“ζ— ζ³•θΏžζŽ₯οΌŸη”¨ζ‰³ζ‰‹ε³ι”η‚Ήε‡»ζ³΅δΈ€ζ¬‘οΌŒθΏ™ι€šεΈΈθƒ½θ©εƒδ»¬εεŒε·₯δ½œγ€‚", "quests.steam_age.mold_table.title": "ι«˜η‚‰θ‡ͺεŠ¨εŒ–", "quests.steam_age.mold_table.subtitle": "η”΅εŠ›ι«˜η‚‰θΏ˜ι₯ι₯ζ— ζœŸ", - "quests.steam_age.mold_table.desc.1": "δ½ δΈ€ζ΅ζ—Άι—΄ε†…ε°†ιœ€θ¦ &3倧量&r ηš„ι’’οΌŒζ‰€δ»₯θ‡ͺεŠ¨εŒ–δ½ ηš„ι«˜η‚‰η»ε―Ήζ˜―δΈ€ι‘Ήε€ΌεΎ—ηš„ζŠ•θ΅„γ€‚ζœΊζ’°ζ³΅ε―δ»₯η›΄ζŽ₯δ»Žι«˜η‚‰δΈ­ζŠ½ε‡Ίζ΅δ½“οΌˆζ―”εƒζ»΄ε…₯ε©εŸšεΏ«εΎ—ε€šοΌ‰θΏ›ε…₯ι“Έζ¨‘ε°οΌŒθ€ŒδΈ”ζ³΅θΏ˜δΌšθ©ι”­ηž¬ι—΄ε†·ε΄οΌη„ΆεŽδ½ ε―δ»₯εœ¨ι“Έζ¨‘ε°ζ­£δΈ‹ζ–Ήζ”ΎδΈ€δΈͺζΊœζ§½ζˆ–ζΌζ–—ζ₯ζŠŠι”­ε–ε‡Ίζ₯γ€‚δ»Žι‚£ι‡ŒοΌŒδ½ ε―δ»₯ε°†η”Ÿι“ι”­ι€εˆ°δ½ ηš„ζ ζ†ι”€γ€‚", + "quests.steam_age.mold_table.desc.1": "εœ¨δΈ€ζ΅ζ—Άι—΄ε†…δ½ ε°†ιœ€θ¦&3桷量&rηš„ι’’οΌŒε› ζ­€ε°†ι«˜η‚‰θ‡ͺεŠ¨εŒ–η»ε―Ήζ˜―δΈ€ι‘Ήε€ΌεΎ—ηš„ζŠ•θ΅„γ€‚εŠ¨εŠ›ζ³΅ε―δ»₯η›΄ζŽ₯δ»Žι«˜η‚‰δΈ­ζŠ½ε–ζ΅δ½“οΌˆζ―”εƒζ»΄ε…₯ε©εŸšηš„εΏ«εΎ—ε€šοΌ‰θΏ›ε…₯ι“Έζ¨‘ε°οΌŒθ€ŒδΈ”ζ³΅θΏ˜θƒ½θ©ι“Έι”­ηž¬ι—΄ε†·ε΄οΌη„ΆεŽοΌŒδ½ ε―δ»₯εœ¨ι“Έζ¨‘ε°ζ­£δΈ‹ζ–Ήζ”Ύη½δΈ€δΈͺζΊœζ§½ζˆ–ζΌζ–—ζ₯ε–ε‡Ίι“Έι”­γ€‚δΉ‹εŽοΌŒδ½ ε―δ»₯ε°†η”Ÿι“ι”­ι€εˆ°ζ ζ†ι”€θΏ›θ‘Œε€„η†γ€‚", "quests.steam_age.mold_table.desc.2": "ε½“η„ΆοΌŒδ½ δΉŸε―δ»₯εˆ©η”¨ζΊœζ§½ε°†η‰©ε“δ»Žι«˜η‚‰ι‘Άιƒ¨ζŠ•ε…₯οΌŒεΉΆδ½Ώη”¨ζœΊζ’°ζ‰‹θ‡ͺεŠ¨ζ“δ½œι£Žη±γ€‚δΈθΏ‡θΏ‡εΊ¦ιΌ“ι£ŽδΌšεΏ«ι€ŸζΆˆθ€—εΉι£Žη‘ηš„θ€δΉ…εΊ¦β€”β€”ε₯½εœ¨η‰©ε“η‘道能θ‡ͺεŠ¨ζŽ¨ι€ζ–°εΉι£Žη‘θΏ›θ‘Œθ‘₯充。\n\nδ½ η”šθ‡³ε―δ»₯θ©εŠ¨εŠ›ζ³΅εŒζ—Άδ»Žι«˜η‚‰ε’Œε©εŸšζŠ½ε–ζ΅δ½“οΌŒι€šθΏ‡ζ΅δ½“ι˜€ι—¨εœ¨εˆι‡‘ε†Άη‚ΌζœŸι—΄ζš‚εœθΎ“ι€οΌŒεΎ…εŒζˆεŽι‡ζ–°εΌ€ε―。", "quests.steam_age.fluid_pipes.title": "桁体η‘道", "quests.steam_age.fluid_pipes.subtitle": "ζΆ²δ½“γ€ζ°”δ½“β€¦β€¦ζˆ‘δ»¬δΈ€θ§†εŒδ»", - "quests.steam_age.fluid_pipes.desc.1": "&b桁体η‘道&rε―δΈΊδ½ εœ¨ζœΊε™¨δΉ‹ι—΄θΎ“ι€&7θ’Έζ±½&r。\n\n每种η‘ι“ιƒ½ζœ‰η‰Ήεšηš„εžει‡οΌˆmB/tοΌ‰ε’Œ&6ζΈ©εΊ¦δΈŠι™&rγ€‚ε½“ε‰ι˜Άζ΅ιœ€η‰Ήεˆ«ζ³¨ζ„οΌŒε› δΈΊθ’Έζ±½δΌšηƒ§ζ―ζœ¨θ΄¨η‘ι“γ€‚ιƒ¨εˆ†η‘ι“θΏ˜ε…·ζœ‰&bη‰ΉζŠ&rε±žζ€§οΌŒη›ε‰ζ— ιœ€ζ·±η©Άγ€‚\n\nζ―η§ζζ–™ιƒ½ζœ‰ε€šη§ε°Ίε―Έηš„η‘道。η‘道尺寸&a袊倧&rοΌŒεžει‡θΆŠι«˜οΌŒδ½†εˆΆδ½œζˆζœ¬δΉŸ&d袊高&rγ€‚δΎ‹ε¦‚οΌŒζ ‡ε‡†&6ι’ι“œζ΅δ½“η‘道&r可传输120 mB/tοΌˆεŒζ—Άζ‹₯ζœ‰1200 mBηš„ε†…ιƒ¨ηΌ“ε†²εΉι‡οΌοΌ‰γ€‚\n\nε»ΊθεˆζœŸδ½Ώη”¨ζœ¨θ΄¨η‘ι“θΎ“ι€δ½ŽζΈ©ζ΅δ½“οΌŒι’ι“œη‘ι“εˆ™η”¨δΊŽι«˜ζΈ©ζ΅δ½“γ€‚", + "quests.steam_age.fluid_pipes.desc.1": "&b桁体η‘道&rε―δΈΊδ½ εœ¨ζœΊε™¨δΉ‹ι—΄θΎ“ι€&7θ’Έζ±½&r。\n\n每种η‘ι“ιƒ½ζœ‰η‰Ήεšηš„εžει‡οΌˆmB/tοΌ‰ε’Œ&6ζΈ©εΊ¦δΈŠι™&rγ€‚ε½“ε‰ι˜Άζ΅ιœ€η‰Ήεˆ«ζ³¨ζ„οΌŒε› δΈΊθ’Έζ±½δΌšηƒ§ζ―ζœ¨θ΄¨η‘ι“γ€‚ιƒ¨εˆ†η‘ι“θΏ˜ε…·ζœ‰&bη‰ΉζŠ&rε±žζ€§οΌŒη›ε‰ζ— ιœ€ζ·±η©Άγ€‚\n\nζ―η§ζζ–™ιƒ½ζœ‰ε€šη§ε°Ίε―Έηš„η‘道。η‘道尺寸&a袊倧&rοΌŒεžει‡θΆŠι«˜οΌŒδ½†εˆΆδ½œζˆζœ¬δΉŸ&d袊高&rγ€‚δΎ‹ε¦‚οΌŒζ ‡ε‡†&6ι’ι“œζ΅δ½“η‘道&r可传输120 mB/tοΌˆεŒζ—Άζ‹₯ζœ‰1200 mBηš„ε†…ιƒ¨ηΌ“ε†²εΉι‡οΌοΌ‰γ€‚\n\nε»ΊθεˆζœŸδ½Ώη”¨ζœ¨θ΄¨η‘ι“θΎ“ι€εΈΈζΈ©ζ΅δ½“οΌŒι’ι“œη‘ι“εˆ™η”¨δΊŽι«˜ζΈ©ζ΅δ½“γ€‚", "quests.steam_age.fluid_pipes.desc.2": "&aζι†’οΌš&r1η§’=20ζΈΈζˆεˆ»β€¦β€¦ε‰ζζ˜―ζœεŠ‘ε™¨ζ²‘ζœ‰ε‘ι‘Ώγ€‚\n\n&dζ³¨ζ„οΌš&r ε·²ε―η”¨ζ Όι›·η§‘ζŠ€6ι£Žζ Όηš„η‘道。这意味着放η½η‘ι“ζ—ΆοΌŒεƒδ»¬δ»…δΌšθΏžζŽ₯εˆ°ε…Άζ”Ύη½ζ—Άζ‰€ε―Ήε‡†ηš„ζ–Ήε—γ€‚ιœ€θ¦δ½Ώη”¨ζ‰³ζ‰‹η‚Ήε‡»η‘道δ»₯ζ‰“εΌ€ζ›΄ε€šθΏžζŽ₯。\n\n你也可δ»₯εœ¨ζ½œθ‘ŒηŠΆζ€δΈ‹δ½Ώη”¨ζ‰³ζ‰‹ε³ι”点击ζ₯禁用特εšδΎ§ηš„θΎ“ε…₯γ€‚θΏ™ζœ‰εŠ©δΊŽι˜²ζ­’ε›žζ΅οΌˆζΆ²δ½“ε‘ιžι’„ζœŸζ–Ήε‘ζ΅εŠ¨οΌ‰γ€‚", "quests.steam_age.fluid_drums.title": "ι«˜ζ•ˆζ΅δ½“ε­˜ε‚¨", "quests.steam_age.fluid_drums.subtitle": "ζœ¨ζ‘Άζζ€•ζ— ζ³•η››ζ”Ύη†”θžηš„ι’’ζ°΄γ€‚", - "quests.steam_age.fluid_drums.desc.1": "&6TFG&rζ•΄εˆεŒ…εΌ•ε…₯δΊ†&4ζ•°ι‡εΊžε€§&rηš„ζ΅δ½“οΌŒεΉζ˜“θ©δΊΊεΊ”ζŽ₯δΈζš‡οΌŒε› ζ­€δ½ ε―θƒ½εœ¨ε―»ζ‰Ύε­˜ε‚¨εƒδ»¬ηš„方法。\n\nζ₯θ€θ―†δΈ€δΈ‹β€¦β€¦&a储梲摢&r!εƒδ»¬ζ‹₯ζœ‰ε·¨ε€§ηš„ε†…ιƒ¨εΉι‡οΌŒδ»»δ½•&a储梲摢&rεœ¨θ’«η ΄εζ‹Ύε–εŽιƒ½δΌš&dδΏη•™ε…ΆδΈ­ηš„ζ΅δ½“&rγ€‚δ½Ώη”¨θ½―ζœ¨ζ§Œε³ι”η‚Ήε‡»οΌŒε―ε°†ε…ΆδΈ­ηš„ζ΅δ½“ζŽ’ε…₯δΈ‹ζ–Ήζ”Ύη½ηš„ε…Άδ»–εΉε™¨δΈ­γ€‚", + "quests.steam_age.fluid_drums.desc.1": "&6TFG&rζ•΄εˆεŒ…εΌ•ε…₯δΊ†&4ζ•°ι‡εΊžε€§&rηš„ζ΅δ½“οΌŒεΉζ˜“θ©δΊΊεΊ”ζŽ₯δΈζš‡οΌŒε› ζ­€δ½ ε―θƒ½εœ¨ε―»ζ‰Ύε­˜ε‚¨εƒδ»¬ηš„方法。\n\nζ₯θ€θ―†δΈ€δΈ‹β€¦β€¦&a储梲摢&r!εƒδ»¬ζ‹₯ζœ‰ε·¨ε€§ηš„ε†…ιƒ¨εΉι‡οΌŒδ»»δ½•&a储梲摢&rεœ¨θ’«η ΄εζ‹Ύε–εŽιƒ½δΌš&dδΏη•™ε…ΆδΈ­ηš„ζ΅δ½“&rγ€‚δ½Ώη”¨θ½―ζœ¨ζ§Œζˆ–θžΊδΈεˆ€ε³ι”η‚Ήε‡»οΌŒε―ε°†ε…ΆδΈ­ηš„ζ΅δ½“ζŽ’ε…₯δΈ‹ζ–Ήζ”Ύη½ηš„ε…Άδ»–εΉε™¨δΈ­γ€‚", "quests.steam_age.fluid_drums.desc.2": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&o这些储梲摢εžι™…δΈŠη§»ζ€θ‡ͺζ Όι›·η§‘ζŠ€6。", "quests.steam_age.boilers.title": "蒸汽锅炉", "quests.steam_age.boilers.subtitle": "便携式蒸汽ε€", @@ -3051,12 +3892,12 @@ "quests.steam_age.boilers.tasks": "δ»»ζ„ι«˜εŽ‹θ’Έζ±½ι”…η‚‰", "quests.steam_age.steam_bloomery.title": "蒸汽锻铁炉", "quests.steam_age.steam_bloomery.subtitle": "ι”»ι“η‚‰ηš„ε”ε”", - "quests.steam_age.steam_bloomery.desc": "δ½ ζ€»δΌšιœ€θ¦ε€§ι‡ι”»ι“οΌŒδ½•δΈε°†δ½ ηš„ι”»ι“η‚‰θ‡ͺεŠ¨εŒ–οΌŸδΈ‹δΈ€δΈͺζœ€ζŽ₯θΏ‘ηš„ι”»ι“θ‡ͺεŠ¨εŒ–ζ–Ήζ³•θ¦η­‰εˆ°LV阢ζ΅γ€‚θ’Έζ±½ι”»ι“η‚‰ζ˜―δΈ€δΈͺζ–°ηš„ε€šζ–Ήε—η»“ζž„οΌŒθƒ½θ©δ½ εŽŸζœ‰ηš„ηΎ€ε³¦δΌ θ―΄ι”»ι“η‚‰εžηްθ‡ͺεŠ¨εŒ–οΌŒδΈ”ζ•ˆηŽ‡ζ›΄ι«˜οΌδΈŽη„¦η‚‰η±»δΌΌοΌŒδ½ ε―δ»₯ζŒ‰δΈ‹JEIδΈ­ηš„\"用途\"ι”οΌˆι»˜θ€δΈΊ\"U\"ι”οΌ‰ζ₯ζ˜Ύη€Ίε€šζ–Ήε—η»“ζž„ι’„θ§ˆη•Œι’γ€‚η‚Ήε‡»ε…ΆδΈ­ηš„ε„δΈͺ方块可δ»₯ζŸ₯ηœ‹ζ―δΈͺ位η½ε…θΈδ½Ώη”¨ηš„ζ–Ήε—η±»εž‹γ€‚", + "quests.steam_age.steam_bloomery.desc": "δ½ ζ€»δΌšιœ€θ¦ε€§ι‡ι”»ι“οΌŒδ½•δΈε°†δ½ ηš„ι”»ι“η‚‰θ‡ͺεŠ¨εŒ–οΌŸδΈ‹δΈ€δΈͺζœ€ζŽ₯θΏ‘ηš„ι”»ι“θ‡ͺεŠ¨εŒ–ζ–Ήζ³•θ¦η­‰εˆ°LV阢ζ΅γ€‚\n\n&3蒸汽锻铁炉&rζ˜―δΈ€δΈͺζ–°ηš„ε€šζ–Ήε—η»“ζž„οΌŒθƒ½θ©δ½ εŽŸζœ‰ηš„ηΎ€ε³¦δΌ θ―΄ι”»ι“η‚‰εžηްθ‡ͺεŠ¨εŒ–οΌŒδΈ”ζ•ˆηŽ‡ζ›΄ι«˜οΌ\n\nδΈŽη„¦η‚‰η±»δΌΌοΌŒδ½ ε―δ»₯ζŒ‰δΈ‹JEIδΈ­ηš„\"用途\"ι”οΌˆι»˜θ€δΈΊ\"U\"ι”οΌ‰ζ₯ζ˜Ύη€Ίε€šζ–Ήε—η»“ζž„ι’„θ§ˆη•Œι’γ€‚η‚Ήε‡»ε…ΆδΈ­ηš„ε„δΈͺ方块可δ»₯ζŸ₯ηœ‹ζ―δΈͺ位η½ε…θΈδ½Ώη”¨ηš„ζ–Ήε—η±»εž‹γ€‚", "quests.steam_age.steam_furnace.title": "蒸汽熔炉", "quests.steam_age.steam_furnace.subtitle": "θ’Έζ±½η†”η‚‰η”¨δΊŽη†”η‚Όβ€¦β€¦", "quests.steam_age.steam_furnace.desc": "ιœ€θ¦εΏ«ι€Ÿε°†η‰©ε“η†”η‚Όζˆι‡‘ε±žι”­οΌŸ&3蒸汽熔炉&rζ­£ζ˜―δΈΊζ­€θ€Œη”ŸοΌεƒθƒ½ε°†θΈε€šηŸΏηŸ³ε’Œη²‰ε°˜εΏ«ι€Ÿθ½¬εŒ–δΈΊι‡‘ε±žι”­οΌŒδ½†δ»£δ»·ζ˜―ζ— ζ³•θŽ·εΎ—δ»»δ½•ε‰―δΊ§ε“γ€‚", "quests.steam_age.steam_oven.title": "蒸汽熔炼炉", - "quests.steam_age.steam_oven.subtitle": "θ’Έζ±½η’Ύη£¨ζœΊηš„ε€§ε“₯", + "quests.steam_age.steam_oven.subtitle": "θ’Έζ±½η†”η‚‰ηš„ε€§ε“₯", "quests.steam_age.steam_oven.desc.1": "&oβ€¦β€¦ζˆ–θ€…θ―΄ζ˜―ε°εΌŸγ€‚εˆ«θ©εƒηŸ₯道!&r\n\n&3蒸汽熔炼炉&r是δΈͺη†ζƒ³ηš„ε€šζ–Ήε—ι€‰ζ‹©οΌŒε½“δ½ ιœ€θ¦&6轻松熔炼倧量物品既&rγ€‚ε†δΉŸδΈεΏ…ζ‰‹εŠ¨ζΈ…η©Ίε’Œθ‘₯ε……δΈ€ζ•΄ζŽ’η†”η‚‰δΊ†οΌ\n\nεƒζœ¬θ΄¨δΈŠε¦‚εŒεΉΆθ‘Œε·₯δ½œηš„η†”η‚‰οΌŒε―εŒζ—Άη†”η‚Όε€šθΎΎ8δΈͺη‰©ε“οΌŒδ»…ιœ€ζΆˆθ€—ε°‘ι‡θ’Έζ±½γ€‚", "quests.steam_age.steam_oven.desc.2": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oθΏ™δΈͺε€šζ–Ήε—η»“ζž„β€”β€”ε°½η‘δΈŽε…Άε…„εΌŸθ’Έζ±½η’Ύη£¨ζœΊζžδΈΊη›ΈδΌΌβ€”β€”εΉΆιžη§»ζ€θ‡ͺζ Όι›·η§‘ζŠ€ζœ¬δ½“ζˆ–ι™„ε±žζ¨‘η»„γ€‚εƒηš„ηœŸζ­£εŽŸεž‹ζ˜―ζ₯θ‡ͺι“θ·―οΌˆRailcraftοΌ‰ζ¨‘η»„ηš„θ’Έζ±½η‚‰οΌŒε…ΆεŽ†ε²ε―θΏ½ζΊ―εˆ°1.4.7η‰ˆζœ¬οΌ&r", "quests.steam_age.steam_macerator.title": "θ’Έζ±½η ”η£¨ζœΊ", @@ -3088,7 +3929,7 @@ "quests.steam_age.extractor.desc": "在&6蒸汽既代&r,&3ζε–ζœΊ&rθƒ½εˆΆι€ ηš„η‰©ε“εΉΆδΈε€šοΌŒε› δΈΊεƒζ— ζ³•提取桁体。", "quests.steam_age.glass_tube.title": "ηŽ»η’ƒη‘", "quests.steam_age.glass_tube.subtitle": "θΏ™δΈͺιœ€ζ±‚ι‡ε·¨ε€§", - "quests.steam_age.glass_tube.desc": "θ™½η„Άδ½ ε―ι€šθΏ‡ηŽ»η’ƒεΉεˆΆζ‰‹ε·₯εˆΆδ½œοΌŒδ½†δ½Ώη”¨εˆι‡‘ε†Άη‚Όη‚‰ζ­ι…ε―ΉεΊ”ζ¨‘ε…·θΏ›θ‘Œη”ŸδΊ§ηš„ζ•ˆηŽ‡θ¦ι«˜εΎ—ε€šγ€‚ιœ€θ¦ε€§ι‡ηŽ»η’ƒη²‰οΌŸδ½ ε―δ»₯δΈ€ζ¬‘ζ€§εΉεˆΆ16ε—ηŽ»η’ƒζΏε†θΏ›θ‘Œη²‰η’ŽοΌŒδΊ¦ε―δ½Ώη”¨η’ŽηŸ³ζœΊδΈŽι”»ι”€θŽ·ε–ε€§ι‡ζ²™η ΎοΌŒιšεŽζ··ε…₯ε°‘ι‡η‡§ηŸ³η²‰ε³ε―εˆΆζˆηŽ»η’ƒη²‰γ€‚", + "quests.steam_age.glass_tube.desc": "θ™½η„Άδ½ ηš„η¬¬δΈ€δΈͺηŽ»η’ƒη‘ιœ€θ¦ζ‰‹εŠ¨&dεΉεˆΆηŽ»η’ƒ&rθŽ·εΎ—οΌŒδ½†δ½Ώη”¨εˆι‡‘ε†Άη‚Όη‚‰ζ­ι…ε―ΉεΊ”ζ¨‘ε…·θΏ›θ‘Œη”ŸδΊ§ηš„ζ•ˆηŽ‡θ¦ι«˜εΎ—ε€šγ€‚ιœ€θ¦ε€§ι‡ηŽ»η’ƒη²‰οΌŸδ½ ε―δ»₯δΈ€ζ¬‘ζ€§εΉεˆΆ16ε—ηŽ»η’ƒζΏε†θΏ›θ‘Œη²‰η’ŽοΌŒδΊ¦ε―δ½Ώη”¨η’ŽηŸ³ζœΊδΈŽι”»ι”€θŽ·ε–ε€§ι‡ζ²™η ΎοΌŒιšεŽζ··ε…₯ε°‘ι‡η‡§ηŸ³η²‰ε³ε―εˆΆζˆηŽ»η’ƒη²‰γ€‚", "quests.steam_age.treated_planks.title": "ι˜²θ…ζœ¨ζΏ", "quests.steam_age.treated_planks.subtitle": "δΉŸη§°δΈΊι˜²θ…θƒΆεˆζΏ", "quests.steam_age.treated_planks.desc": "εΈŒζœ›δ½ δΈ€η›΄εœ¨η§―ζ”’ζ‚ι…šζ²ΉοΌŒε› δΈΊεˆΆδ½œι˜²θ…ζœ¨ζ΅†δΈŽι˜²θ…ζœ¨ζΏζ­£ζ˜―εƒηš„另一倧用途。\n\n&l&3θƒŒζ™―θ―΄ζ˜ŽοΌš&r&oεœ¨ζ—§η‰ˆTerraFirmaGregδΈ­οΌŒη›΄εˆ°θΏ™δΈͺ阢ζ΅δ½ ζ‰ηœŸζ­£θƒ½εΌ€ε§‹ηŽ©ζœΊζ’°εŠ¨εŠ›οΌ", @@ -3154,7 +3995,7 @@ "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θ‹₯ε…ˆε°†ζ©‘θƒΆζœ«εœ¨εˆι‡‘η‚‰δΈ­ι“Έζˆε—ηŠΆοΌŒε†εˆ©η”¨ζ­€θΎε€‡θΏ›θ‘Œεˆ‡ε‰²οΌŒθΏ˜θƒ½δ»₯ζ›΄δ½Žζˆζœ¬εˆΆδ½œζ©‘θƒΆη‰‡γ€‚\n\nζœͺζ›Ύη‚ΌεˆΆθΏ‡ι’΄ι»„ι“œοΌŸδ½ ζœ‰δΈ€η§ι€‰ζ‹©οΌšε…ΆδΈ€οΌŒε―εœ¨ε©εŸšδΈ­δ½Ώη”¨δ»»δ½•θƒ½η†”εŒ–δΈΊη‘…ι…Έι“ηš„ζζ–™θΏ›θ‘Œεˆι‡‘ε†Άη‚ΌοΌ›ε…ΆδΊŒοΌŒε―εˆ©η”¨ζ…ζ‹ŒζœΊοΌŒι…εˆδ»ŽηŸΏηŸ³ε€„η†δΈ­θŽ·εΎ—ηš„ι“η²‰θΏ›θ‘ŒεˆΆδ½œγ€‚", "quests.steam_age.rolling_mill.title": "轧机", "quests.steam_age.rolling_mill.subtitle": "LVε·ζΏζœΊηš„ε¦δΈ€εŠ", "quests.steam_age.rolling_mill.desc.1": "εœ¨θ’Έζ±½ζ—Άδ»£ζ‰€ζœ‰ε―εˆΆι€ ηš„ζœΊε™¨δΈ­οΌŒ&3轧机&rε ͺη§°ζœ€εžη”¨ηš„θΎε€‡δΉ‹δΈ€οΌŒεŽŸε› εΎˆη€ε•οΌšεƒθƒ½ε°†ε•δΈͺι‡‘ε±žι”­η›΄ζŽ₯θ½§εˆΆζˆε•δΈͺζΏζγ€‚ζ›΄ε€ΌεΎ—δΈ€ζηš„ζ˜―οΌŒεƒεˆΆδ½œθ–„ζΏηš„ζˆζœ¬ζ―”ζ‰‹ε·₯εˆζˆζ›΄δ½ŽοΌŒεžδΈΊι™„θ΅ δΌ˜εŠΏοΌ", @@ -3181,7 +4022,7 @@ "quests.steam_age.what_next.desc": "θ‹₯δ½ η›΄ζŽ₯εΏ«ι€ŸζŽ¨θΏ›θ‡³ζ­€οΌŒε»ΊθδΌ˜ε…ˆεˆΆι€ LVε·ζΏζœΊγ€ηΊΏζθ½§ζœΊζˆ–ζ…ζ‹Œε™¨η­‰θΎε€‡γ€‚\nθ‹₯ε·²εˆΆδ½œδΊ†δΈ‹ι’ηš„εŠ¨θƒ½ζœΊε™¨οΌŒεˆ™ε»Ίθι€‰ζ‹©η»„θ£…ζœΊγ€η”΅εΌ§η‚‰γ€εŒ–ε­¦εεΊ”ι‡œζˆ–η£εŒ–ζœΊγ€‚", "quests.steam_age.alternator.title": "δΊ€ζ΅ε‘η”΅ζœΊ", "quests.steam_age.alternator.subtitle": "ε°†εΊ”εŠ›θ½¬εŒ–δΈΊη”΅εŠ›", - "quests.steam_age.alternator.desc.1": "θ‹₯δ½ ε·²ζ­ε»ΊδΊ†θ§„ζ¨‘ε―θ§‚ηš„θ’Έζ±½ζ—Άδ»£θΎε€‡οΌŒε€§ε―δΈεΏ…δΈΊδΊ†ζ”Ήη”¨ι”…η‚‰ε’ŒLVθ’Έζ±½ζΆ‘θ½θ€Œη«‹ε³ε°†ε…Άε…¨ιƒ¨ζ‹†ι™€γ€‚&3δΊ€ζ΅ε‘η”΅ζœΊ&rθƒ½ε€Ÿε°†θ’Έζ±½εΌ•ζ“ŽδΊ§η”Ÿηš„εΊ”εŠ›ε•δ½θ½¬εŒ–δΈΊη”΅εŠ›γ€‚ζ―ε°θ’Έζ±½εΌ•ζ“Žι…εˆδΊ€ζ΅ε‘η”΅ζœΊε―θΎ“ε‡Ί1ε‰LVη”΅ζ΅οΌδ½†ιœ€ζ³¨ζ„οΌŒδΊ€ζ΅ε‘η”΅ζœΊζ˜―ε°†εΊ”εŠ›θ½¬ζ’δΈΊδΊ†ε¦δΈ€ε₯—η”΅εŠ›η³»η»ŸοΌŒε› ζ­€δ½ ιœ€θ¦ι€šθΏ‡θƒ½ι‡θ½¬ζ’ε™¨ε°†ε…Άθ½¬εŒ–δΈΊζ Όι›·η§‘ζŠ€ε―η”¨ηš„LVη”΅εŠ›γ€‚", + "quests.steam_age.alternator.desc.1": "θ‹₯δ½ ε·²ζ­ε»ΊδΊ†θ§„ζ¨‘ε―θ§‚ηš„θ’Έζ±½ζ—Άδ»£θΎε€‡οΌŒε€§ε―δΈεΏ…δΈΊδΊ†ζ”Ήη”¨ι”…η‚‰ε’ŒLVθ’Έζ±½ζΆ‘θ½θ€Œη«‹ε³ε°†ε…Άε…¨ιƒ¨ζ‹†ι™€γ€‚&3δΊ€ζ΅ε‘η”΅ζœΊ&rθƒ½ε€Ÿε°†θ’Έζ±½εΌ•ζ“ŽδΊ§η”Ÿηš„εΊ”εŠ›ε•δ½θ½¬εŒ–δΈΊη”΅εŠ›γ€‚ζ―ε°θ’Έζ±½εΌ•ζ“Žι…εˆδΊ€ζ΅ε‘η”΅ζœΊε―θΎ“ε‡Ί1ε‰LV甡桁!\n\nδ½†ιœ€ζ³¨ζ„οΌŒδΊ€ζ΅ε‘η”΅ζœΊζ˜―ε°†εΊ”εŠ›θ½¬ζ’δΈΊδΊ†ε¦δΈ€ε₯—η”΅εŠ›η³»η»ŸοΌˆFEοΌ‰οΌŒε› ζ­€δ½ ιœ€θ¦ι€šθΏ‡θƒ½ι‡θ½¬ζ’ε™¨ε°†ε…Άθ½¬εŒ–δΈΊζ Όι›·η§‘ζŠ€ε―η”¨ηš„LVη”΅εŠ›οΌˆEU)。θ°εΎ—η”¨θ½―ζ§Œε°†ε…Άεˆ‡ζ’θ‡³\"FE转EU\"樑式。", "quests.steam_age.alternator.desc.2": "δΈ€δΈͺθ’Έζ±½εΌ•ζ“ŽθΎ“ε‡Ί8ε‰LVη”΅ζ΅ηš„η€ΊδΎ‹οΌ\n", "quests.steam_age.packager.title": "ζœΊζ’°εŠ¨εŠ›η‰©ζ΅", "quests.steam_age.packager.subtitle": "β€œζˆ‘δ»¬εΆζœ‰AE2”", @@ -3193,6 +4034,19 @@ "quests.steam_age.steel_mech_press.subtitle": "ε‡ δΉŽζ˜―ι”»ι€ ι”€δΊ†", "quests.steam_age.steel_mech_press.desc.1": "ι«˜εŽ‹θ’Έζ±½ι”»ι€ ι”€θΏ‘εœ¨ε’«ε°ΊοΌŒε‡ δΉŽε―δ»₯εšθΏ™ε°ζœΊε™¨θƒ½εšηš„δΈ€εˆ‡οΌŒδ½†ε¦‚ζžœδ½ θΏ«εˆ‡ιœ€θ¦δΈ€δΊ›ζ›΄ι«˜ηΊ§ηš„θ‡ͺεŠ¨η„ŠζŽ₯ι…ζ–ΉοΌŒθΏ™ζ˜―δ½ ηš„ι—¨η₯¨γ€‚\n\nε¦‚ζžœδ½ δΈη†Ÿζ‚‰ι”»ι€ ι”€οΌŒεƒε’Œι’’εŠ¨εŠ›ε†²εŽ‹ζœΊιƒ½ε―δ»₯η²‰η’ŽηŸΏηŸ³οΌˆζ— ε‰―δΊ§ε“οΌ‰οΌŒε°†ηŸ³ε€΄ε˜ζˆεœ†ηŸ³ε˜ζˆζ²™η Ύε˜ζˆζ²™ε­οΌŒεΉΆθ£‚θ§£η –ε—γ€‚η„Άθ€ŒοΌŒεͺζœ‰ι”»ι”€θƒ½ζδΎ› &3ζ›΄δΎΏεœηš„ι‡‘ε±žζΏδ»Άι…ζ–Ή&r……", "quests.steam_age.steel_mech_press.desc.2": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&o在TerraFirmaGregηš„0.9η‰ˆζœ¬δΉ‹ε‰οΌŒζœΊζ’°εŠ¨εŠ›ε†²εŽ‹ζœΊζ›Ύζ˜―θ’Έζ±½ζ—Άδ»£εŽζœŸηš„ε…³ι”θΎε€‡οΌŒε› ε…Άθƒ½δ»₯5:4ηš„ζ›΄δΌ˜ζ―”δΎ‹η”ŸζˆζΏζγ€‚η„Άθ€Œε½“ζ—Άηš„εžηŽ°ζœΊεˆΆεžδΈΊβ€œ20%%ζ¦‚ηŽ‡θ‘€ζœ¬ζ— ε½’β€οΌŒθΏ™θ©θΈε€šδ½Ώη”¨θ€…δΈ€θΎΉι«˜ε‘Όθ‡ͺε·±ηƒ­ηˆ±θ΅ŒεšδΈ€θΎΉη»§η»­δ½Ώη”¨γ€‚", + "quests.steam_age.supers.title": "θΆ…ηΊ§η±δΈŽθΆ…ηΊ§ηΌΈ", + "quests.steam_age.supers.subtitle": "θΆ…ηΊ§ε­˜ε‚¨ζŠ½ε±‰", + "quests.steam_age.supers.desc": "ε¦‚ζžœδ½ ζœ‰ε€§ι‡ε•δΈ€η‰©ε“ζˆ–ζ΅δ½“οΌŒθΏ™ζ˜―&c终&6极&eδΎΏ&a携&b式&a物&5品&4ε­˜ε‚¨θ§£ε†³ζ–Ήζ‘ˆγ€‚θ™½η„ΆθΏ™δΊ›&dεŸΊη‘€&r(&8ULV&rοΌ‰εž‹ε·θ΅·εˆεΉι‡η›Έε―ΉθΎƒε°οΌŒδ½†ζ›΄ι«˜ηΊ§ηš„θΆ…ηΊ§η±ε’ŒθΆ…级缸能εΉηΊ³ζƒŠδΊΊζ•°ι‡ηš„η‰©ε“β€”β€”ζ‰€ζœ‰δΈœθ₯Ώιƒ½ε‚¨ε­˜εœ¨ε•δΈͺζ–Ήε—δΈ­οΌŒδΈ”εŒε…¨ζ— θ§†ζΈ©εΊ¦ζˆ–酸度影响!\n\nδΈŽζ‘Άη±»δΌΌοΌŒθΆ…ηΊ§ηΌΈε’ŒθΆ…ηΊ§η±εœ¨&6θ’«η ΄εζ—ΆδΌšδΏη•™ε†…ιƒ¨η‰©ε“&rοΌŒε―ι€šθΏ‡εˆζˆζ ζΈ…η©Ίε…Άε†…εΉοΌŒεΉΆθƒ½θ‡ͺεŠ¨ζΈ…η©Ίδ»»δ½•ζΊ’ε‡Ίηš„ε†…εΉγ€‚η„Άθ€ŒοΌŒδΈŽζ‘ΆδΈεŒηš„ζ˜―οΌŒθΆ…ηΊ§ηΌΈθΏ˜θƒ½&aε‰ε…¨εœ°εΉηΊ³&rε…ΆδΈ­ηš„ζ΅δ½“οΌŒι˜²ζ­’δ½ θ’«ηƒ«δΌ€γ€ε†»δΌ€ζˆ–ι£˜θ΅·ζ₯。\n\nε¦‚ζžœδ½ ζΈ΄ζœ›&9ζ›΄ε€§&rηš„ε­˜ε‚¨η©Ίι—΄οΌŒε―δ»₯ηœ‹ηœ‹ζ›΄ι«˜ηΊ§ηš„ι‡ε­η±γ€ι‡ε­ηΌΈζˆ–AE2ε­˜ε‚¨ε…ƒδ»Άγ€‚", + "quests.steam_age.supers.task": "任何袅级η±ζˆ–θΆ…ηΊ§ηΌΈ", + "quests.steam_age.steam_presser.title": "ε€§εž‹θ’Έζ±½ι”»ι€ ι”€", + "quests.steam_age.steam_presser.subtitle": "θ’Έζ±½ι”»ι€ ι”€ηš„ε§‘ε¦ˆ", + "quests.steam_age.steam_presser.desc": "ε€§εž‹θ’Έζ±½ι”»ι€ ι”€ζ˜―θ’Έζ±½ι”»ι€ ι”€ηš„ε€šζ–Ήε—εΉΆθ‘Œε‡ηΊ§η‰ˆζœ¬γ€‚\n\nε¦‚ζžœι”»ι€ ι”€ζˆδΈΊδΊ†δ½ η”ŸδΊ§ηΊΏδΈ­ηš„η“Άι’ˆοΌŒθΏ™δΈͺε‡ηΊ§ζˆ–θΈθƒ½ζ΄ΎδΈŠη”¨εœΊγ€‚ε¦εˆ™οΌŒε―δ»₯θ·³θΏ‡εƒγ€‚", + "quests.steam_age.steam_fuser.title": "ε€§εž‹θ’Έζ±½εˆι‡‘η‚‰", + "quests.steam_age.steam_fuser.subtitle": "θ’Έζ±½εˆι‡‘η‚‰ηš„θΏœζˆΏθ‘¨δΊ²", + "quests.steam_age.steam_fuser.desc": "&3ε€§εž‹θ’Έζ±½εˆι‡‘η‚‰&rζ˜―θ’Έζ±½εˆι‡‘η‚‰ηš„ε‡ηΊ§η‰ˆοΌŒδ½“εž‹ζ›΄ε€§οΌŒζ€§θƒ½ζ›΄εΌΊγ€‚ιœ€θ¦ε€§ι‡γ€εΏ«ι€Ÿεœ°η”ŸδΊ§εˆι‡‘ε—οΌŸθΏ™ε°ζœΊε™¨ζ­£εˆδ½ ζ„οΌ", + "quests.steam_age.steam_squasher.title": "ε€§εž‹θ’Έζ±½εŽ‹ηΌ©ζœΊ", + "quests.steam_age.steam_squasher.subtitle": "θ’Έζ±½εŽ‹ηΌ©ζœΊηš„ι’ζ’…η«Ήι©¬", + "quests.steam_age.steam_squasher.desc": "ιœ€θ¦εŒζ—ΆεŽ‹ηΌ©ε€§ι‡ζζ–™οΌŸ&3ε€§εž‹θ’Έζ±½εŽ‹ηΌ©ζœΊ&rδ½œδΈΊδΈ€ζ¬Ύε€šζ–Ήε—εΉΆθ‘ŒεŽ‹ηΌ©ζœΊοΌŒζˆ–θΈθƒ½εΈδΈŠεΏ™γ€‚", "quests.stone_age": "ηŸ³ε™¨ζ—Άδ»£", "quests.stone_age.subtitle": "η€ι™‹εΌ€η«―", "quests.stone_age.foods.title": "ι₯ΏδΊ†οΌŸ", @@ -3206,7 +4060,7 @@ "quests.stone_age.cook_meat.desc": "ηƒΉι₯ͺη”Ÿθ‚‰ζ˜―θŽ·ε–θ›‹η™½θ΄¨ηš„ι‡θ¦δΈ€ζ­₯β€”β€”εƒδΈδ»…δΌšε’žεŠ θ‚‰ηš„ζ•΄δ½“δΏθ΄¨ζœŸοΌŒθΏ˜δΌšδΈΊδ½ ιœ€ζ±‚ζ—Ίη››ηš„θΊ«δ½“ι‡Šζ”Ύζ›΄ε€šηš„θ₯养物质。\n\nζœ€η€ε•ηš„ηƒΉι₯ͺθ‚‰η±»ηš„ζ–Ήζ³•ζ˜―δ½Ώη”¨η―η«ε‘γ€‚ζŸ₯ηœ‹δΈ‹ζ–Ήηš„δ»»εŠ‘ε­¦δΉ εˆΆδ½œζ–Ήζ³•γ€‚", "quests.stone_age.soup_time.title": "ζ±€", "quests.stone_age.soup_time.subtitle": "δ½ εˆšζ‰εœ¨ε“ͺεΆεΊ—ι‡ŒοΌŸ", - "quests.stone_age.soup_time.desc": "η”¨η²˜εœŸηƒ§ηΊΈδΈ€δΈͺι™Άι”…ε’ŒδΈ€δΊ›η’—οΌŒδ½ ε°±θƒ½εšε‡Ίζ±€δΊ†οΌ\n\nζ±€ζ˜―εˆΆδ½œζ›΄ε€ζ‚ι€η‚Ήηš„ζœ€εˆδΉŸζ˜―ζœ€η€ε•ηš„ζ–Ήζ³•δΉ‹δΈ€γ€‚δΈŽι£Ÿη”¨ζ™ι€šι£ŸζδΈεŒοΌŒζ±€θƒ½ζδΎ›ζ›΄ε€šηš„ι₯±ι£ŸεΊ¦οΌŒεΉΆθ©δ½ δΈ€ζ¬‘ζ€§ζ‘„ε…₯倚种θ₯养素!", + "quests.stone_age.soup_time.desc": "η”¨ι»εœŸηƒ§εˆΆδΈ€δΈͺι™Άι”…ε’ŒδΈ€δΊ›η’—οΌŒδ½ ε°±θƒ½εšε‡Ίζ±€δΊ†οΌ\n\nζ±€ζ˜―εˆΆδ½œζ›΄ε€ζ‚ι€η‚Ήηš„ζœ€εˆδΉŸζ˜―ζœ€η€ε•ηš„ζ–Ήζ³•δΉ‹δΈ€γ€‚δΈŽι£Ÿη”¨ζ™ι€šι£ŸζδΈεŒοΌŒζ±€θƒ½ζδΎ›ζ›΄ε€šηš„ι₯±ι£ŸεΊ¦οΌŒεΉΆθ©δ½ δΈ€ζ¬‘ζ€§ζ‘„ε…₯倚种θ₯养素!", "quests.stone_age.meals.title": "逐点", "quests.stone_age.meals.subtitle": "εΏ«εˆ°η’—ι‡Œζ₯!", "quests.stone_age.meals.desc": "θΏ™δΊ›εͺ是你可δ»₯εˆΆδ½œηš„δΈ€δΊ›εŸΊζœ¬ι€η‚Ήγ€‚ζ±€γ€ζ²™ζ‹‰ε’ŒδΈ‰ζ˜Žζ²»ζ˜―δ½ εˆΆδ½œι«˜ι₯±ι£ŸεΊ¦ζ··εˆι€η‚Ήηš„ι¦–ι€‰οΌŒθ€ŒζŠ«θ¨ζ˜―ε”―δΈ€θƒ½εŒζ—ΆεŒ…ε«ζ‰€ζœ‰θ₯ε…»η±»εž‹ηš„ι£Ÿη‰©γ€‚", @@ -3291,24 +4145,24 @@ "quests.stone_age.firepit.subtitle": "ε€œζ™šε³ε°†ζ₯δΈ΄", "quests.stone_age.firepit.desc.1": "ζ—’η„Άδ½ ζœ‰δΈ€δΊ›εŽŸζœ¨οΌŒζ˜―ζ—Άε€™ε»Ίι€ δ½ ηš„η¬¬δΈ€δΈͺ篝火坑了!虽焢ζ€ͺη‰©δΈδΌšεœ¨ε€œζ™šηš„εœ°θ‘¨η”ŸζˆοΌŒδ½†ε€œθ‘ŒζŽ ι£Ÿθ€…δΌšι†’ζ₯εΉΆε››ε€„εΎ˜εΎŠγ€‚\n\nδ½ ι¦–ε…ˆιœ€θ¦εˆΆι€ δΈ€δΈͺθ΅·η«ε™¨οΌŒδΈ€η§ε―δ»₯θ©δ½ η”Ÿη«ηš„ε·₯具。", "quests.stone_age.firepit.desc.2": "θ¦εˆ›ε»Ίδ½ ηš„η―η«ε‘οΌŒε°†θ‡³ε°‘δΈ€ζ ΉεŽŸζœ¨ε’Œζœ€ε€š3ζ Ήζœ¨ζ£ζ‰”εˆ°εœ°δΈŠοΌŒη„ΆεŽε³ι”ε•ε‡»εΉΆζŒ‰δ½θ΅·η«ε™¨η‚Ήη‡ƒδΈ‹ι’ηš„ζ–Ήε—γ€‚δ½ δΉŸε―δ»₯ζ·»εŠ δΈ€δΊ›η¨»θ‰δ½Ώε…Άζ›΄εΉζ˜“点燃。\n\nη―η«ε‘δΈδ»…ζ˜―ε…‰ε’Œηƒ­ηš„ζ₯源,还可δ»₯用ζ₯η‚Ήη‡ƒη«ζŠŠε’ŒηƒΉι₯ͺη”Ÿθ‚‰γ€‚δ½ ε―δ»₯ι€šθΏ‡δΈŽεƒδΊ’εŠ¨εΉΆε‘UI中添加原木ζ₯δΏζŒη―η«ε‘η‡ƒηƒ§γ€‚ε¦‚ζžœη«η†„η­δΊ†οΌŒεͺιœ€ζ·»εŠ ζ›΄ε€šεŽŸζœ¨εΉΆη”¨δ½ ηš„θ΅·η«ε™¨ε†ζ¬‘η‚Ήη‡ƒε³ε―γ€‚", - "quests.stone_age.find_clay.title": "粘土ζ₯源", + "quests.stone_age.find_clay.title": "黏土ζ₯源", "quests.stone_age.find_clay.subtitle": "δ½ ιœ€θ¦εΎˆε€šθΏ™δΈͺ", - "quests.stone_age.find_clay.desc": "η²˜εœŸζ˜―ηŸ³ε™¨ζ—Άδ»£ζŠ€ζœ―ηš„ζ ΈεΏƒθ¦η΄ οΌδΈŽζ‰“εˆΆηŸ³ε™¨η±»δΌΌοΌŒη²˜εœŸε―δ»₯ζεˆΆζˆδΈεŒε½’ηŠΆεŽζ”Ύε…₯坑ηͺ‘ηƒ§εˆΆοΌŒδ»Žθ€Œεˆ›ι€ ε‡Ίε„εΌη‰©ε“γ€‚εœ¨ζŽŒζ‘ι‡‘ε±žεŠ ε·₯ζŠ€ζœ―ε‰οΌŒηŸ³ε™¨δΈŽι™Άε™¨ε°†ζ˜―δ½ η”Ÿε­˜ε‘ε±•ηš„εŸΊηŸ³γ€‚\n\n黏土δ»₯ε°ε—ε½’ζ€εŸ‹θ—δΊŽεœ°δΈ‹οΌŒι€šεΈΈθ’«θ‰θ¦†η›–γ€‚δΈθΏ‡ζœ‰δΈ€η§εδΈΊ\"η²˜εœŸζ ‡θ―†ζ€η‰©\"ηš„η‰ΉζŠζ€θ’«δΌšη”Ÿι•Ώεœ¨ι»εœŸδΈŠζ–Ήγ€‚θ―·ζŸ₯ι˜…ι‡Žε€–ζŒ‡ε—δΊ†θ§£δ½ ζ‰€εœ¨ζ°”ε€™εŒΊε―θƒ½η”Ÿι•Ώηš„ζ ‡θ―†ζ€η‰©η§η±»γ€‚", - "quests.stone_age.clay.title": "粘土", - "quests.stone_age.clay.subtitle": "是粘土!", - "quests.stone_age.clay.desc": "攢集至少25ε—η²˜εœŸγ€‚δ½ ιœ€θ¦εˆΆδ½œθ‡³ε°‘5η§δΈεŒη‰©ε“ζ‰θƒ½θΏ›ε±•οΌˆθ―¦θ§εŽη»­δ»»εŠ‘οΌ‰γ€‚ε‘‘ε½’εŒζˆεŽοΌŒε°†εƒδ»¬ζ”Ύε…₯坑ηͺ‘δΈ­ηƒ§εˆΆζˆι™Άη“·γ€‚θ™½η„Άη²˜εœŸζεˆΆζ–ΉεΌδΈŽζ‰“εˆΆηŸ³ε™¨η±»δΌΌοΌˆζ―δ»Άη‰©ε“ιœ€ζΆˆθ€—5ε—ι»εœŸοΌ‰οΌŒδ½†ε³δ½Ώθ――ζ“δ½œεΉΆδΈδΌšζŸε€±ι»εœŸγ€‚", + "quests.stone_age.find_clay.desc": "ι»εœŸζ˜―ηŸ³ε™¨ζ—Άδ»£ζŠ€ζœ―ηš„ζ ΈεΏƒθ¦η΄ οΌδΈŽζ‰“εˆΆηŸ³ε™¨η±»δΌΌοΌŒι»εœŸε―δ»₯ζεˆΆζˆδΈεŒε½’ηŠΆεŽζ”Ύε…₯坑ηͺ‘ηƒ§εˆΆοΌŒδ»Žθ€Œεˆ›ι€ ε‡Ίε„εΌη‰©ε“γ€‚εœ¨ζŽŒζ‘ι‡‘ε±žεŠ ε·₯ζŠ€ζœ―ε‰οΌŒηŸ³ε™¨δΈŽι™Άε™¨ε°†ζ˜―δ½ η”Ÿε­˜ε‘ε±•ηš„εŸΊηŸ³γ€‚\n\n黏土δ»₯ε°ε—ε½’ζ€εŸ‹θ—δΊŽεœ°δΈ‹οΌŒι€šεΈΈθ’«θ‰θ¦†η›–γ€‚δΈθΏ‡ζœ‰δΈ€η§εδΈΊ\"ι»εœŸζ ‡θ―†ζ€η‰©\"ηš„η‰ΉζŠζ€θ’«δΌšη”Ÿι•Ώεœ¨ι»εœŸδΈŠζ–Ήγ€‚θ―·ζŸ₯ι˜…ι‡Žε€–ζŒ‡ε—δΊ†θ§£δ½ ζ‰€εœ¨ζ°”ε€™εŒΊε―θƒ½η”Ÿι•Ώηš„ζ ‡θ―†ζ€η‰©η§η±»γ€‚", + "quests.stone_age.clay.title": "黏土", + "quests.stone_age.clay.subtitle": "是黏土!", + "quests.stone_age.clay.desc": "攢集至少25ε—ι»εœŸγ€‚δ½ ιœ€θ¦εˆΆδ½œθ‡³ε°‘5η§δΈεŒη‰©ε“ζ‰θƒ½θΏ›ε±•οΌˆθ―¦θ§εŽη»­δ»»εŠ‘οΌ‰γ€‚ε‘‘ε½’εŒζˆεŽοΌŒε°†εƒδ»¬ζ”Ύε…₯坑ηͺ‘δΈ­ηƒ§εˆΆζˆι™Άη“·γ€‚θ™½η„Άι»εœŸζεˆΆζ–ΉεΌδΈŽζ‰“εˆΆηŸ³ε™¨η±»δΌΌοΌˆζ―δ»Άη‰©ε“ιœ€ζΆˆθ€—5ε—ι»εœŸοΌ‰οΌŒδ½†ε³δ½Ώθ――ζ“δ½œεΉΆδΈδΌšζŸε€±ι»εœŸγ€‚", "quests.stone_age.pit_kiln.title": "坑ηͺ‘", "quests.stone_age.pit_kiln.subtitle": "ηŽ°εœ¨δΊ‹ζƒ…ε˜εΎ—η«ηƒ­δΊ†", - "quests.stone_age.pit_kiln.desc": "坑ηͺ‘ζ˜―ζΈΈζˆε‰ζœŸη”¨δΊŽεŠ ηƒ­η‰©ε“ηš„θ£…η½γ€‚ζˆ‘δ»¬δΈδ»…ε―δ»₯用εƒηƒ§εˆΆη²˜εœŸεˆΆε“οΌŒζ›΄ι‡θ¦ηš„ζ˜―θΏ˜θƒ½η†”η‚Όζœ€εŸΊη‘€ηš„ηŸΏηŸ³οΌŒεˆΆδ½œε‡Ίη¬¬δΈ€δ»Άι‡‘ε±žε·₯具——锯子。\n\nεˆΆδ½œε‘ηͺ‘ιœ€θ¦ε…«ζ†η¨»θ‰γ€ε…«ζ ΉεŽŸζœ¨γ€εΎ…εŠ ηƒ­η‰©ε“δ»₯εŠδΈ€δΈͺθ΅·η«ε™¨γ€‚ε…·δ½“εˆΆδ½œζ–Ήζ³•θ―·ζŸ₯ι˜…γ€Šι‡Žε€–ζŒ‡ε—γ€‹ηš„\"坑ηͺ‘\"η« θŠ‚β€”β€”ζ³¨ζ„εƒδΈεŒδΊŽη―η«ε‘!", - "quests.stone_age.clay_products.title": "η²˜εœŸεˆΆε“", - "quests.stone_age.clay_products.subtitle": "ζˆ‘ε‘Šθ―‰θΏ‡δ½ η²˜εœŸη”¨ι€”εΉΏζ³›γ€‚", - "quests.stone_age.clay_products.desc": "θΏ™δΊ›ζ˜―δ½ ε―δ»₯η”¨η²˜εœŸεˆΆδ½œηš„ζ‰€ζœ‰δΊ§ε“γ€‚ζ¨‘ε…·η”¨δΊŽι‡‘ε±žεŠ ε·₯,εΉε™¨η”¨δΊŽε­˜ζ”Ύη‰©ε“οΌŒε…Άδ»–η‰©ε“ηš„η”¨ι€”εœ¨ι‡Žε€–ζŒ‡ε—δΈ­ζœ‰θ―΄ζ˜Žγ€‚δ½ θ§‰εΎ—δ½ θƒ½ζŠŠεƒδ»¬ιƒ½ζε‡Ίζ₯ε—οΌŸ", + "quests.stone_age.pit_kiln.desc": "坑ηͺ‘ζ˜―ζΈΈζˆε‰ζœŸη”¨δΊŽεŠ ηƒ­η‰©ε“ηš„θ£…η½γ€‚ζˆ‘δ»¬δΈδ»…ε―δ»₯用εƒηƒ§εˆΆι»εœŸεˆΆε“οΌŒζ›΄ι‡θ¦ηš„ζ˜―θΏ˜θƒ½η†”η‚Όζœ€εŸΊη‘€ηš„ηŸΏηŸ³οΌŒεˆΆδ½œε‡Ίη¬¬δΈ€δ»Άι‡‘ε±žε·₯具——锯子。\n\nεˆΆδ½œε‘ηͺ‘ιœ€θ¦ε…«ζ†η¨»θ‰γ€ε…«ζ ΉεŽŸζœ¨γ€εΎ…εŠ ηƒ­η‰©ε“δ»₯εŠδΈ€δΈͺθ΅·η«ε™¨γ€‚ε…·δ½“εˆΆδ½œζ–Ήζ³•θ―·ζŸ₯ι˜…γ€Šι‡Žε€–ζŒ‡ε—γ€‹ηš„\"坑ηͺ‘\"η« θŠ‚β€”β€”ζ³¨ζ„εƒδΈεŒδΊŽη―η«ε‘!", + "quests.stone_age.clay_products.title": "ι»εœŸεˆΆε“", + "quests.stone_age.clay_products.subtitle": "ζˆ‘ε‘Šθ―‰θΏ‡δ½ ι»εœŸη”¨ι€”εΉΏζ³›γ€‚", + "quests.stone_age.clay_products.desc": "θΏ™δΊ›ζ˜―δ½ ε―δ»₯η”¨ι»εœŸεˆΆδ½œηš„ζ‰€ζœ‰δΊ§ε“γ€‚ζ¨‘ε…·η”¨δΊŽι‡‘ε±žεŠ ε·₯,εΉε™¨η”¨δΊŽε­˜ζ”Ύη‰©ε“οΌŒε…Άδ»–η‰©ε“ηš„η”¨ι€”εœ¨ι‡Žε€–ζŒ‡ε—δΈ­ζœ‰θ―΄ζ˜Žγ€‚δ½ θ§‰εΎ—δ½ θƒ½ζŠŠεƒδ»¬ιƒ½ζε‡Ίζ₯ε—οΌŸ", "quests.stone_age.make_jug.title": "ι™Άε£Ά", "quests.stone_age.make_jug.subtitle": "ζ—©ζœŸζΈΈζˆζ΅δ½“εΉε™¨", "quests.stone_age.make_jug.desc": "ι™Άε£Άζ˜―ζœ€εΉζ˜“εˆΆδ½œηš„ζ΅δ½“εΉε™¨οΌŒδ½†εƒεͺ能εΉηΊ³100mBγ€‚δ½ δΉŸε―δ»₯用εƒε–ζ°΄οΌŒεΉΆε‘εƒεΉζ°”ζ₯发出ε™ͺ音!", "quests.stone_age.make_saw_mold.title": "锯子樑具", "quests.stone_age.make_saw_mold.subtitle": "ζ˜―ζ—Άε€™εˆΆδ½œδ½ ηš„η¬¬δΈ€δΈͺι‡‘ε±žε·₯ε…·δΊ†", - "quests.stone_age.make_saw_mold.desc": "δ½ ιœ€θ¦η”¨η²˜εœŸεˆΆδ½œηš„η¬¬δΈ€δΈͺζ¨‘ε…·ζ˜―ι”―ε­ζ¨‘ε…·γ€‚ι€šθΏ‡εƒε’Œε°‘ι‡ι‡‘ε±žοΌŒδ½ ε°±θƒ½εˆΆδ½œε‡Ίι”―ε­γ€‚ι”―ε­δ½œδΈΊι‡θ¦ε·₯ε…·οΌŒδΈδ»…ζ˜―εˆΆδ½œ&l木材&rηš„εΏ…θ¦ε·₯ε…·οΌŒζ›΄ι‡θ¦ηš„ζ˜―οΌŒδ½ ε°†ε€ŸεŠ©εƒζ‰“ι€ ε±žδΊŽθ‡ͺε·±ηš„η¬¬δΈ€δΈͺ&l&oε·₯作台&r。", + "quests.stone_age.make_saw_mold.desc": "δ½ ιœ€θ¦η”¨ι»εœŸεˆΆδ½œηš„η¬¬δΈ€δΈͺζ¨‘ε…·ζ˜―ι”―ε­ζ¨‘ε…·γ€‚ι€šθΏ‡εƒε’Œε°‘ι‡ι‡‘ε±žοΌŒδ½ ε°±θƒ½εˆΆδ½œε‡Ίι”―ε­γ€‚ι”―ε­δ½œδΈΊι‡θ¦ε·₯ε…·οΌŒδΈδ»…ζ˜―εˆΆδ½œ&l木材&rηš„εΏ…θ¦ε·₯ε…·οΌŒζ›΄ι‡θ¦ηš„ζ˜―οΌŒδ½ ε°†ε€ŸεŠ©εƒζ‰“ι€ ε±žδΊŽθ‡ͺε·±ηš„η¬¬δΈ€δΈͺ&l&oε·₯作台&r。", "quests.stone_age.make_vessel.title": "小缸", "quests.stone_age.make_vessel.subtitle": "ζœ‰η”¨ηš„ε°η½ε­γ€‚", "quests.stone_age.make_vessel.desc": "ε°ηΌΈηš„δ½œη”¨η±»δΌΌδΊŽζ”ΆηΊ³θ’‹οΌŒε―ε°†ε€šδΈͺη‰©ε“ζ”ΆηΊ³δΊŽε•δΈͺζ Όε­δΈ­οΌŒδ½†ζ›΄ι‡θ¦ηš„ζ˜―οΌŒθΏ™ζ˜―δ½ εˆζ­₯ζŽ₯θ§¦ι‡‘ε±žεŠ ε·₯ηš„ι¦–δ»Άε·₯具。\n\n右ι”η‚Ήε‡»ε°ηΌΈε³ε―ζ‰“εΌ€ε…Άε°εž‹η‰©ε“ζ οΌŒη”¨δΊŽε­˜ζ”ΎηŸΏηŸ³γ€‚ε°ηΌΈηš„ε·₯ε…·ζ θΏ˜δΌšζ˜Ύη€ΊηŸΏηŸ³ε―η†”η‚ΌδΊ§ε‡Ίηš„ι‡‘ε±žη±»εž‹οΌŒθΏ™εœ¨εˆΆδ½œεˆι‡‘ζ—Άε°€δΈΊεžη”¨οΌ\n\n将小缸η½δΊŽε‘ηͺ‘δΈ­εŠ ηƒ­οΌŒε³ε―η†”η‚Όε…ΆδΈ­ηš„ι‡‘ε±žγ€‚\n\nθ‹₯ζ•’δΊŽε°θ―•οΌŒδ½ ε―εœ¨ε…ΆδΈ­ζ··εˆδΈεŒι‡‘ε±žζ₯εˆΆδ½œεˆι‡‘γ€‚εˆι‡‘ιœ€θ¦η‰Ήεšηš„ι‡‘ε±žι…ζ―”ζ―”δΎ‹γ€‚θ™½η„Άι“œθƒ½η›΄ζŽ₯δ½Ώη”¨οΌŒδ½†δ½ δΉŸε―δ»₯ι€‰ζ‹©η”¨ι’ι“œζ₯ζ‰“ι€ δ½ ηš„η¬¬δΈ€ε₯—ι‡‘ε±žε·₯具。", @@ -3330,13 +4184,13 @@ "quests.stone_age.workbench.desc": "ζ­ε–œοΌε·₯δ½œε°ηš„εˆΆζˆζ ‡εΏ—η€δ½ ε·²ζ­£εΌθΏˆε…₯ηŸ³ε™¨ζ—Άδ»£ηš„ε·…ε³°γ€‚ι€šθΏ‡εƒοΌŒδ½ ε°†θƒ½η”¨η›ε‰ζ”Άι›†ηš„ζζ–™εˆΆδ½œδΌ—ε€šζ–°η‰©ε“γ€‚\n\nηŽ°εœ¨οΌŒδ½ ε°†θΏŽζ₯εŽŸε§‹ζ—Άδ»£ηš„δΈ»θ¦η›ζ ‡οΌšδ½Ώη”¨ι“œη §θΏ›θ‘Œθ§„θŒƒηš„ι‡‘ε±žεŠ ε·₯。\n\nζΈ©ι¦¨ζη€ΊοΌšθ™½η„Άε½“ε‰ε·²ε―ζ”Άι›†θΆ³ε€Ÿζζ–™εˆΆδ½œ14ε—ι’ι“œι”­οΌŒδ½†θ‹₯ζœͺε…ˆι”»ι€ ι“œη §εˆ™ζ— ζ³•ε°†ε…ΆεˆΆζˆι’ι“œη §γ€‚ζ‰€εΉΈη §ε…·ε―ε›žζ”Άεˆ©η”¨οΌŒδ½ ηš„ζ‰€ζœ‰ζŠ•ε…₯ηš†δΈδΌšζ΅ͺ费。", "quests.stone_age.inventory.title": "ζ—©ζœŸε­˜ε‚¨ι€‰ι‘Ή", "quests.stone_age.inventory.subtitle": "ζ˜―ζ—Άε€™εœζ­’ζŠŠζ‰€ζœ‰εžƒεœΎιƒ½ζ”Ύεœ¨εΉε™¨ι‡ŒδΊ†", - "quests.stone_age.inventory.desc": "εœ¨ζ—©ζœŸζΈΈζˆδΈ­οΌŒδ½ ζœ‰4δΈͺη€ε•ηš„ε­˜ε‚¨θ§£ε†³ζ–Ήζ‘ˆε―η”¨οΌš\n\n&lη±ε­&r:η±ε­δΎΏεœδΈ”ζ˜“δΊŽεˆΆδ½œοΌŒδ½†εͺζœ‰18δΈͺζ§½δ½οΌŒδΈθƒ½εΉηΊ³δ»»δ½•ε€§εž‹ζˆ–ζ›΄ε€§ηš„η‰©ε“γ€‚\n\n&l板村η±&r:板村η±ζ˜―ε•ζ–Ήε—εΊ“ε­˜οΌŒζœ€δΎΏεœηš„ζœ‰27δΈͺζ§½δ½οΌŒδ½†εˆΆδ½œθ΅·ζ₯ζ›΄ζ˜‚θ΄΅γ€‚\n\n&l马车&rοΌšι©¬θ½¦ζœ‰ε·¨ε€§ηš„54δΈͺ槽位,可δ»₯ιšθΊ«ζΊεΈ¦οΌŒδ½†ε η”¨ε€§ι‡η©Ίι—΄γ€‚\n\n&lε€§ηΌΈ&rοΌšεˆΆδ½œζœ€δΎΏεœοΌŒεͺιœ€θ¦η²˜εœŸοΌŒζ˜―ι£Ÿη‰©δΏε­˜ηš„η†ζƒ³ι€‰ζ‹©γ€‚θΏ˜ζœ‰ε€šη§ι’œθ‰²ε―δΎ›ι€‰ζ‹©οΌ", + "quests.stone_age.inventory.desc": "εœ¨ζ—©ζœŸζΈΈζˆδΈ­οΌŒδ½ ζœ‰4δΈͺη€ε•ηš„ε­˜ε‚¨θ§£ε†³ζ–Ήζ‘ˆε―η”¨οΌš\n\n&lη±ε­&r:η±ε­δΎΏεœδΈ”ζ˜“δΊŽεˆΆδ½œοΌŒδ½†εͺζœ‰18δΈͺζ§½δ½οΌŒδΈθƒ½εΉηΊ³δ»»δ½•ε€§εž‹ζˆ–ζ›΄ε€§ηš„η‰©ε“γ€‚\n\n&l板村η±&r:板村η±ζ˜―ε•ζ–Ήε—εΊ“ε­˜οΌŒζœ€δΎΏεœηš„ζœ‰27δΈͺζ§½δ½οΌŒδ½†εˆΆδ½œθ΅·ζ₯ζ›΄ζ˜‚θ΄΅γ€‚\n\n&l马车&rοΌšι©¬θ½¦ζœ‰ε·¨ε€§ηš„54δΈͺ槽位,可δ»₯ιšθΊ«ζΊεΈ¦οΌŒδ½†ε η”¨ε€§ι‡η©Ίι—΄γ€‚\n\n&lε€§ηΌΈ&rοΌšεˆΆδ½œζœ€δΎΏεœοΌŒεͺιœ€θ¦ι»εœŸοΌŒζ˜―ι£Ÿη‰©δΏε­˜ηš„η†ζƒ³ι€‰ζ‹©γ€‚θΏ˜ζœ‰ε€šη§ι’œθ‰²ε―δΎ›ι€‰ζ‹©οΌ", "quests.stone_age.portable_storage.title": "δΎΏζΊεΌε­˜ε‚¨οΌŸ", "quests.stone_age.portable_storage.subtitle": "ε› δΈΊδ½ ηš„εΊ“ε­˜θ’«εžƒεœΎε‘«ζ»‘εΎˆη³Ÿη³•", "quests.stone_age.portable_storage.desc": "在&lTerraFirmaGregζη€ΊδΈŽζŠ€ε·§&rη« θŠ‚δΈ­οΌŒζœ‰δΈ€δΈͺιƒ¨εˆ†ζΆ΅η›–δΊ†δ½ ηš„ζ‰€ζœ‰δΈεŒδΎΏζΊεΌε­˜ε‚¨ι€‰ι‘ΉοΌŒη”¨δΊŽζ‰©ε±•δ½ εœ¨δΈ–η•Œε„εœ°ζ—…θ‘Œζ—Άε―δ»₯ζΊεΈ¦ηš„η‰©ε“ζ•°ι‡γ€‚ε¦‚ζžœδ½ εΎˆιšΎζ‰Ύεˆ°θΏ™δΊ›δ»»εŠ‘οΌŒεƒδ»¬δ½δΊŽδ»»εŠ‘ζ ‘ζœ€ε³θΎΉηš„εˆ†ζ”―δΈŠγ€‚", "quests.stone_age.barrels.title": "ζ‘Ά", "quests.stone_age.barrels.subtitle": "ζ–―θ’‚ζ³•θ―ΊοΌŸ", - "quests.stone_age.barrels.desc": "δΈŽεŽŸη‰ˆδΈεŒοΌŒζ­€ζ¨‘η»„δΈ­ηš„ζœ¨ζ‘Άη”¨δ½œζΆ²δ½“ε‚¨ε­˜ε™¨γ€‚ε•δΈͺζœ¨ζ‘Άε―ε‚¨ε­˜ζ€»ι‡θΎΎ10ζ‘Άηš„ζ΅δ½“οΌŒδΈΊεžηŽ°ζ΅δ½“ε­˜ε‚¨ζδΎ›δΊ†η›Έε―Ήη€ε•ηš„θ§£ε†³ζ–Ήζ‘ˆγ€‚\n\n你还可δ»₯ε°†θΏ™δΊ›ζ΅δ½“δΈŽε…Άδ»–η‰©ε“η»“εˆοΌŒη”¨δ»₯εˆΆι€ ηšι©γ€η²˜εˆε‰‚、灰ζ³₯等物品。", + "quests.stone_age.barrels.desc": "δΈŽεŽŸη‰ˆδΈεŒοΌŒζ­€ζ¨‘η»„δΈ­ηš„ζœ¨ζ‘Άη”¨δ½œζΆ²δ½“ε‚¨ε­˜ε™¨γ€‚ε•δΈͺζœ¨ζ‘Άε―ε‚¨ε­˜ζ€»ι‡θΎΎ10ζ‘Άηš„ζ΅δ½“οΌŒδΈΊεžηŽ°ζ΅δ½“ε­˜ε‚¨ζδΎ›δΊ†η›Έε―Ήη€ε•ηš„θ§£ε†³ζ–Ήζ‘ˆγ€‚\n\n你还可δ»₯ε°†θΏ™δΊ›ζ΅δ½“δΈŽε…Άδ»–η‰©ε“η»“εˆοΌŒη”¨δ»₯εˆΆι€ ηšι©γ€θƒΆζ°΄γ€η ‚框等物品。", "quests.stone_age.leather.title": "ηšι©", "quests.stone_age.leather.subtitle": "η‘εžοΌŒε‡‘δΊ‹ζ€»ζ˜―θ¦ζ›΄ε€ζ‚δΊ›ζ‰ε―Ήε‘³γ€‚", "quests.stone_age.leather.desc": "ι‡Žη”ŸεŠ¨η‰©θ’«ε‡»ζ€ζ—ΆδΌšζŽ‰θ½η”Ÿηšγ€‚η”Ÿηšζ— ζ³•η›΄ζŽ₯ε½“δ½œηšι©δ½Ώη”¨οΌŒιœ€θ¦ε…ˆη»θΏ‡ιž£εˆΆεŠ ε·₯方可使用。\n\nδΈŽι»εœŸγ€ηŸ³ζη±»δΌΌοΌŒηšι©δΉŸε―δ»₯ι€šθΏ‡ε‰₯刢ε·₯θ‰ΊθΏ›θ‘ŒεŠ ε·₯γ€‚ι€šθΏ‡ε‰₯刢ηšι©ε―δ»₯εˆΆδ½œε‡Ίηšι©η›”η”²γ€ζ°΄ε›Šη­‰η‰©ε“γ€‚\nθ‹₯δ½ δΈζ„ΏδΈΊθŽ·ε–ηšι©θ€ŒηŒŽζ€εŠ¨η‰©οΌŒδΈ”η”Ÿζ΄»εœ¨ηƒ­εΈ¦ηŽ―ε’ƒδΈ­οΌŒε―ε°†θ θεŠ ε·₯δΈΊθ θεΈƒδ½œδΈΊηšι©ζ›Ώδ»£ε“γ€‚θΏ™η§ζ–ΉεΌε°€ε…Άι€‚εˆη΄ ι£ŸδΈ»δΉ‰ηŽ©εΆγ€‚", @@ -3351,6 +4205,11 @@ "quests.stone_age.hazards.subtitle": "δ»₯δΈΊεœ°θ‘¨εΎˆε›°ιšΎοΌŸε†ζƒ³ζƒ³γ€‚", "quests.stone_age.hazards.desc.1": "陀了ζ€ͺη‰©οΌŒι‡‡ηŸΏζ—Άζœ€ε€§ηš„ζŒ‘ζˆ˜ζ˜―ε€„η†ε‘Œζ–Ήγ€‚ε¦‚ζžœδΈ€δΈͺε€©η„ΆηŸ³ε€΄ζˆ–ηŸΏηŸ³ζ–Ήε—δΈ‹ι’ζœ‰η©Ίζ°”οΌŒεƒθ’«θ€δΈΊζ˜―β€œζ— ζ”―ζ’‘ηš„β€οΌŒεΉΆδΈ”ζ―ζ¬‘ι™„θΏ‘ζ–Ήε—θ’«εΌ€ι‡‡ζ—Άιƒ½ζœ‰ε‡ ηŽ‡εΌ€ε§‹ε‘Œζ–Ήγ€‚ζ΄žη©΄ι‘Άιƒ¨θ¦†η›–η€η‘¬εŒ–ηŸ³ε€΄οΌŒθΏ™δΈδΌšε―Όθ‡΄εε‘Œγ€‚δΈΊδΊ†ε‡θ½»θΏ™η§ζƒ…ε†΅οΌŒζœ€ε‰ε…¨ηš„δΊ‹ζƒ…ε°±ζ˜―εͺζŒ–ζŽ˜εœ°ζΏοΌŒδ½†ε¦‚ζžœδ½ ζƒ³ε‰ε…¨εœ°ζŒ–ζŽ˜δ»»δ½•ε…Άδ»–δΈœθ₯ΏοΌŒδ½ εΏ…ι‘»ε­¦δΉ ε¦‚δ½•δ½Ώη”¨ζ”―ζ’‘ζ’οΌθΏ™δΊ›ζ˜―η”¨εŽŸζœ¨ε’Œι”―ε­εˆΆδ½œηš„γ€‚", "quests.stone_age.hazards.desc.2": "γ€Šι‡Žε€–ζŒ‡ε—γ€‹δΈ­ζœ‰ε…³δΊŽζ”―ζ’‘ζ’ε·₯δ½œεŽŸη†ηš„θ―¦η»†θ―΄ζ˜Žε’Œε›Ύθ§£οΌŒδ½†η€θ€Œθ¨€δΉ‹οΌšδ½ ιœ€θ¦δ»₯δΈθΆ…θΏ‡ε››ζ Όηš„ι—΄θ·θΏ›θ‘ŒεΈƒη½γ€‚εͺζœ‰ι‘Άιƒ¨εž‚η›΄ζ”Ύη½ηš„撁才能εžι™…ζ‰Ώι‡οΌŒδΈ”ε…Άδ½œη”¨θŒƒε›΄ζœ‰ι™γ€‚", + "quests.stone_age.medical_conditions.title": "ε₯εΊ·ηŠΆε†΅", + "quests.stone_age.medical_conditions.subtitle": "εˆ«εƒηŸ³ζ£‰", + "quests.stone_age.medical_conditions.desc.1": "ε°εΏƒδ½ ζ‘θ΅·ηš„δΈœθ₯ΏοΌεΉΆιžζ‰€ζœ‰ηŸΏηŸ³ζˆ–η²‰ε°˜ιƒ½ε―δ»₯ε‰ε…¨θ§¦η’°οΌŒζœ‰δΊ›δΌšε―Όθ‡΄&6ε₯εΊ·ηŠΆε†΅&rηš„η΄―η§―γ€‚\n\nζ‰€ζœ‰&c危险&rδΏ‘ζ―ιƒ½δΌšε†™εœ¨η‰©ε“ζη€ΊδΈŠοΌŒζ‰€δ»₯ε¦‚ζžœδ½ ηͺη„Άε‘ηŽ°θΊ«δΈŠε‡ΊηŽ°δΊ†θ΄Ÿι’ζ•ˆζžœοΌŒθ΅Άη΄§ζŠŠι‚£δ»Άη‰©ε“η§»ε‡Ίδ½ ηš„η‰©ε“ζ οΌζŠŠεƒζ”ΎθΏ›εƒε°ηΌΈζˆ–θƒŒεŒ…θΏ™ζ ·ηš„εΉε™¨ι‡Œζ˜―ε‰ε…¨ηš„。\n\nε€§ε€šζ•°θΏ™η±»ζ•ˆζžœδΌšιšη€ζ—Άι—΄ζ…’ζ…’θ‡ͺθ‘ŒζΆˆι€€οΌŒδ½†ε¦‚ζžœδ½ θ©εƒδ»¬η΄―η§―εΎ—θΆ³ε€ŸδΉ…οΌŒε°±δΌšεΌ€ε§‹εΌ•ε‘δΈ€ε€§ε †ε…Άδ»–θ¨εŽŒηš„ζ•ˆζžœοΌŒη”šθ‡³εŒ…ζ‹¬&cζ­»δΊ‘&r。", + "quests.stone_age.medical_conditions.desc.2": "δ½ η»ˆη©Άιœ€θ¦ε€„η†ε…ΆδΈ­δΈ€δΊ›ζζ–™οΌŒε› ζ­€δΉŸζœ‰εΊ”ε―Ήεƒδ»¬ηš„方法。\n\nζœ€ε₯½ηš„ζ–Ήζ³•ζ˜―ι¦–ε…ˆιΏε…ζŸ“δΈŠδ»»δ½•η—…η—‡β€”β€”ε£η½©ε’Œζ©‘θƒΆζ‰‹ε₯—θƒ½εˆ†εˆ«ι˜²ζ­’吸ε…₯危ε³ε’ŒζŽ₯触危ε³γ€‚\n\nζ¬‘δΌ˜ηš„ζ–Ήζ³•ζ˜―θΏ›θ‘Œζ²»η–—οΌšζŸ₯ηœ‹δΈ€δΊ›δ½ ε―δ»₯εˆζˆηš„&aθ―δΈΈγ€θ―η‰‡ε’Œθ―θ†&rβ€”β€”εƒδ»¬ιƒ½ζœ‰εŠ©δΊŽζ²»ζ„ˆη‰Ήεšηš„ζ•ˆζžœοΌˆεΉΆθƒ½ζδΎ›ζœ‰η”¨ηš„ε’žη›ŠοΌοΌ‰οΌŒδΈθΏ‡ζ›΄εΌΊζ•ˆηš„θ―η‰©δΉŸδΌšζœ‰ζ›΄ζΌδΊΊηš„ε‰―δ½œη”¨γ€‚", + "quests.stone_age.medical_conditions.task": "做θ‡ͺε·±ηš„εŒ»η”Ÿ", "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ε—ε°ι“œη²’ε―ζ˜―ι‘Ήθ‰°ε·¨ηš„δ»»εŠ‘γ€‚", @@ -3360,7 +4219,7 @@ "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.rock_anvil.title": "石倴砧", + "quests.stone_age.rock_anvil.title": "石砧", "quests.stone_age.rock_anvil.subtitle": "ε…Άδ½Ώη”¨ε―Ώε‘½θΎƒδΈΊζœ‰ι™", "quests.stone_age.rock_anvil.desc": "η §ζ˜―ζ—©ζœŸι‡‘ε±žεŠ ε·₯ηš„εŸΊη‘€γ€‚θ¦εˆΆδ½œηœŸζ­£ηš„ι‡‘ε±žη §οΌŒδ½ ιœ€θ¦δ½Ώη”¨ε‰δΈ€ηΊ§εˆ«ηš„η §θΏ›θ‘Œι‡‘ε±žι”­ηš„η„ŠζŽ₯ζ“δ½œγ€‚η”±δΊŽι“œε±žδΊŽζœ€εˆι˜Άηš„ι‡‘ε±žοΌŒδ½ εΏ…ι‘»ι€šθΏ‡ε²©ηŸ³η §ε°ζ₯εŒζˆι“œι”­ηš„η„ŠζŽ₯β€”β€”εͺιœ€η”¨ι”€ε­ε³ι”ε•ε‡»ε€©η„Άη«ζˆε²©ε³ε―εˆΆδ½œηŸ³η §γ€‚ιœ€θ¦ζ³¨ζ„ηš„ζ˜―οΌŒηŸ³η §ηš„εŠŸθƒ½ζžδΈΊζœ‰ι™οΌŒδ»…θƒ½θΏ›θ‘Œη„ŠζŽ₯ζ“δ½œγ€‚θ‹₯要εžηŽ°ι‡‘ε±žηš„ε‘‘ε½’ι”»ι€ οΌŒδ½ δ»ιœ€ε‡ηΊ§θ‡³ε―ΉεΊ”ηš„ι‡‘ε±žη §γ€‚", "quests.stone_age.quern.title": "ζ‰‹ζŽ¨η£¨ε’Œη£¨η›˜", @@ -3377,10 +4236,10 @@ "quests.stone_age.clean_dust.desc": "ζœ€η»ˆοΌŒε°†ε«ζ‚η²‰ζˆ–η²Ύη‚Όη²‰ζŠ•ε…₯水中桸泑数秒即可εŒζˆζΈ…ζ΄—οΌŒθŽ·εΎ—ζœ€η»ˆε½’ζ€ηš„ηΊ―ε‡€ηŸΏη²‰γ€‚ζ­€ζ—Άηš„δΊ§ε‡Ίδ»·ε€Όε·²ε ͺζ―”ζ•΄ε—ι‡‘ε±žι”­οΌŒζ‰€ζœ‰δ»˜ε‡Ίιƒ½ζ˜―ε€ΌεΎ—ηš„οΌ", "quests.stone_age.flux.title": "εŠ©η„ŠηŸ³", "quests.stone_age.flux.subtitle": "εƒεŸΊζœ¬δΈŠζ˜―ι‡‘ε±žθƒΆζ°΄", - "quests.stone_age.flux.desc": "εŠ©η†”ε‰‚ζ˜―δΈ€η§δΈ»θ¦η”¨δΊŽι‡‘ε±žεŠ ε·₯δΈ­ε°†δΈœθ₯Ώη„ŠζŽ₯εœ¨δΈ€θ΅·ηš„η‰©ε“οΌŒε°½η‘εƒδΉŸζœ‰δΈ€δΊ›ε…Άδ»–用途。\nζŸδΊ›η±»εž‹ηš„ε²©ηŸ³οΌŒε¦‚η™½εž©γ€ηŸ³η°ηŸ³ε’Œε€§η†ηŸ³οΌŒε―δ»₯θ’«η²‰η’ŽεˆΆζˆεŠ©η†”ε‰‚οΌŒε„η§ζ΅·ζ΄‹εŠ¨η‰©ηš„ε£³δΉŸε―δ»₯。", + "quests.stone_age.flux.desc": "εŠ©η„Šε‰‚ζ˜―δΈ€η§δΈ»θ¦η”¨δΊŽη„ŠζŽ₯ι‡‘ε±žηš„η‰©ε“οΌŒε°½η‘εƒδΉŸζœ‰δΈ€δΊ›εˆ«ηš„用途。\nζŸδΊ›η±»εž‹ηš„ε²©ηŸ³οΌŒε¦‚η™½εž©γ€ηŸ³η°ηŸ³ε’Œε€§η†ηŸ³οΌŒε―δ»₯θ’«η²‰η’ŽεˆΆζˆεŠ©η„Šε‰‚οΌŒε„η§ζ΅·ζ΄‹εŠ¨η‰©ηš„ε£³δΉŸε―δ»₯。", "quests.stone_age.weld_copper_ingots.title": "η„ŠζŽ₯ι“œι”­", "quests.stone_age.weld_copper_ingots.subtitle": "η¦»ι“œη §ε¦‚ζ­€δΉ‹θΏ‘", - "quests.stone_age.weld_copper_ingots.desc": "η‚Ήη‡ƒζœ¨η‚­η‚‰εΉΆζŠ•ε…₯至少2ε—ι“œι”­γ€‚ε―†εˆ‡ε…³ζ³¨ι“œι”­εŠ ηƒ­ζ—Άηš„ηŠΆζ€ζη€Ίβ€”β€”ε½“ζ˜Ύη€Ί\"可加ε·₯\"ζ—Άδ»ιœ€η­‰εΎ…οΌŒη›΄θ‡³θΎΎεˆ°\"ε―η„ŠζŽ₯\"ηŠΆζ€οΌˆε³ε°†θΎΎεˆ°η†”η‚Ήηš„δΈ΄η•Œι˜Άζ΅οΌ‰γ€‚\n\nδΈ€ζ—¦θΎΎεˆ°ε―η„ŠζŽ₯ζΈ©εΊ¦οΌŒθ―·η«‹ε³η”¨ε‰―ζ‰‹ζŒζœ¨ι’³ε°†ε…ΆεΏ«ι€Ÿε€Ήε–θ‡³ηŸ³ε°η•Œι’οΌŒεŒζ—Άζ·»εŠ ε°‘ι‡εŠ©η„Šε‰‚γ€‚ζœ€εŽζ½œθ‘ŒηŠΆζ€δΈ‹ε³ι”η‚Ήε‡»η §ε°οΌŒθΆηƒ­ε°†δΈ€ε—ι“œι”­η„ŠζŽ₯δΈΊδΈ€δ½“γ€‚ε―δ½Ώη”¨ζ°΄ζˆ–ι›ͺεΏ«ι€Ÿε†·ε΄ζ–°εˆΆζˆηš„εŒι”­γ€‚", + "quests.stone_age.weld_copper_ingots.desc": "η‚Ήη‡ƒζœ¨η‚­η‚‰εΉΆζŠ•ε…₯至少2ε—ι“œι”­γ€‚ε―†εˆ‡ε…³ζ³¨ι“œι”­εŠ ηƒ­ζ—Άηš„ηŠΆζ€ζη€Ίβ€”β€”ε½“ζ˜Ύη€Ί\"可加ε·₯\"ζ—Άδ»ιœ€η­‰εΎ…οΌŒη›΄θ‡³θΎΎεˆ°\"ε―η„ŠζŽ₯\"ηŠΆζ€οΌˆε³ε°†θΎΎεˆ°η†”η‚Ήηš„δΈ΄η•Œι˜Άζ΅οΌ‰γ€‚\n\nδΈ€ζ—¦θΎΎεˆ°ε―η„ŠζŽ₯ζΈ©εΊ¦οΌŒθ―·η«‹ε³η”¨ε‰―ζ‰‹ζŒ&eζœ¨ι’³&rε°†ε…ΆεΏ«ι€Ÿε€Ήε–θ‡³ηŸ³ε°η•Œι’οΌŒεŒζ—Άζ·»εŠ ε°‘ι‡εŠ©η„Šε‰‚γ€‚ζœ€εŽζ½œθ‘ŒηŠΆζ€δΈ‹ε³ι”η‚Ήε‡»η §ε°οΌŒθΆηƒ­ε°†δΈ€ε—ι“œι”­η„ŠζŽ₯δΈΊδΈ€δ½“γ€‚ε―δ½Ώη”¨ζ°΄ζˆ–ι›ͺεΏ«ι€Ÿε†·ε΄ζ–°εˆΆζˆηš„εŒι”­γ€‚", "quests.metal_age.copper_anvil.title": "δΈ€ηΊ§η §οΌšι“œ", "quests.metal_age.copper_anvil.subtitle": "θ‡³ζ­€ζ‰€ζœ‰εŠͺεŠ›η»ˆθ§ζˆζžœοΌ", "quests.metal_age.copper_anvil.desc": "ζ­ε–œοΌδ½ ζ­£εΌεŒζˆδΊ†ηŸ³ε™¨ζ—Άδ»£οΌŒθΏ›ε…₯δΊ†ε†Άι‡‘ζ—Άδ»£οΌε‡­ε€Ÿι“œη §οΌŒδΈ‹δΈ€ζ­₯ε°†ζ˜―ζ”€η™»η §η­‰ηΊ§οΌŒζ―θ§£ι”ζ–°ηš„η­‰ηΊ§οΌŒιƒ½δΌšεΌ€ζ”Ύζ–°ε·₯ε…·δΈŽεˆΆι€ ε―θƒ½ζ€§οΌŒθ©δ½ ηš„η”Ÿζ΄»ι€ζΈε˜εΎ—ζ›΄εΉζ˜“γ€‚ηŽ°εœ¨οΌŒεŽ»ζˆδΈΊηœŸζ­£ηš„ι“εŒ ε€§εΈˆε§οΌ", @@ -3388,13 +4247,15 @@ "quests.tfg.subtitle": "欒迎ζ₯εˆ°ηΎ€ε³¦δΌ θ―΄ζ Όι›·η§‘ζŠ€οΌ", "quests.tfg.welcome.title": "欒迎ζ₯εˆ°ηΎ€ε³¦δΌ θ―΄ζ Όι›·η§‘ζŠ€οΌ", "quests.tfg.welcome.subtitle": "η”Ÿε­˜ζ¨‘η»„οΌŒζœ¬θ―₯如歀。", - "quests.tfg.welcome.desc": "ζ„Ÿθ°’δ½ ε―εŠ¨ηΎ€ε³¦δΌ θ―΄ζ Όι›·η§‘ζŠ€ηŽ°δ»£η‰ˆοΌ\n\nεœ¨ζ­€ζ¨‘η»„εŒ…δΈ­οΌŒδ½ ε°†ζ‹…θ΄Ÿθ΅·ζŽ§εˆΆζœͺεΌ€ε‘θ’ι‡ŽεΉΆε°†ε…Άθ½¬ε˜δΈΊε·₯业ε₯‡ε’ƒηš„δ»»εŠ‘γ€‚δ»Žε‘εΎηš„θ΅·η‚Ήζ‘θ΅·ηŸ³ε€΄εΌ€ε§‹οΌŒεˆ°η©ΏθΆŠζ˜Ÿι™…η©Ίι—΄η»“ζŸοΌ", + "quests.tfg.welcome.desc": "ζ„Ÿθ°’δ½ ε―εŠ¨ηΎ€ε³¦δΌ θ―΄ζ Όι›·η§‘ζŠ€ηŽ°δ»£η‰ˆοΌ\n\nεœ¨ζ­€ζ¨‘η»„εŒ…δΈ­οΌŒδ½ ε°†ζ‹…θ΄Ÿθ΅·ζŽ§εˆΆζœͺεΌ€ε‘θ’ι‡ŽεΉΆε°†ε…Άθ½¬ε˜δΈΊε·₯业ε₯‡ε’ƒηš„δ»»εŠ‘γ€‚δ»ŽδΈ€δΈͺ卑εΎηš„θ΅·η‚Ήζ‘θ΅·ηŸ³ε€΄εΌ€ε§‹οΌŒεˆ°η©ΏθΆŠζ˜Ÿι™…η©Ίι—΄η»“ζŸοΌ", "quests.tfg.create_team.title": "ε¦‚δ½•εˆ›ε»Ίι˜ŸδΌοΌŸ", "quests.tfg.create_team.subtitle": "δ½ ε’Œζœ‹ε‹δΈ€θ΅·ηŽ©ε—οΌŸ", "quests.tfg.create_team.desc": "你可δ»₯εˆ›ε»Ίι˜ŸδΌδ»₯ε…±εŒεŒζˆδ»»εŠ‘γ€‚δΈΊζ­€οΌŒζ‰“εΌ€δ½ ηš„η‰©ε“ζ οΌŒεœ¨ε·¦δΈŠθ§’ι€‰ζ‹©η”»ζœ‰3δΈͺε½©θ‰²δΊΊη‰©ηš„ζŒ‰ι’οΌŒη„ΆεŽε°†ζ‰“εΌ€δΈ€δΈͺη•Œι’οΌŒδ½ ε―δ»₯εœ¨ε…ΆδΈ­εˆ›ε»Ίι˜ŸδΌγ€‚η‚Ήε‡»Β§aεˆ›ε»Ίι˜ŸδΌΒ§rζŒ‰ι’οΌŒη»™ι˜ŸδΌθ΅·δΈͺεε­—οΌŒη„ΆεŽε―θƒ½θΏ˜ιœ€θ¦δΈ€δΊ›ε…Άδ»–ηš„ε‚ζ•°γ€‚ζˆεŠŸεˆ›ε»Ίι˜ŸδΌεŽοΌŒδ½ ε―δ»₯δ½Ώη”¨ε³δΈŠθ§’η»Ώθ‰²εœ†εœˆδΈ­ηš„εŠ ε·ζŒ‰ι’ι‚€θ―·ε…Άδ»–ηŽ©εΆεŠ ε…₯γ€‚δ»Žζ­€δ»₯εŽοΌŒδ½ δ»¬ηš„δ»»εŠ‘ε°†εŒζ­₯οΌŒδ»»δ½•ι˜Ÿε‘˜ιƒ½θƒ½εŒζˆδ»»εŠ‘。η₯δ½ ε₯½θΏοΌ", "quests.tfg.capture_territory.title": "ε¦‚δ½•ε ι’†ι’†εœŸοΌŸ", "quests.tfg.capture_territory.subtitle": "δ»₯εŠε¦‚δ½•εŠ θ½½δ½ ι’†εœŸδΈ­ηš„εŒΊε—", - "quests.tfg.capture_territory.desc": "ε¦‚ζžœδ½ εœ¨ζœεŠ‘ε™¨δΈŠζΈΈζˆοΌŒε―θƒ½ζƒ³ε ι’†δ½ ηš„ι’†εœŸδ»₯ι˜²ε…Άδ»–ηŽ©εΆεΉ²ζ‰°γ€‚δ½Ώη”¨ζ‰“εΌ€ι’†εœ°ι”οΌˆι»˜θ€δΈΊβ€œCtrl+M”)打开ηͺ—ε£οΌŒη„ΆεŽε·¦ι”点击δ»₯ε ι’†εŒΊε—οΌŒε³ι”点击δ»₯ε–ζΆˆε ι’†γ€‚θΏ™ζœ‰ι™εˆΆοΌŒε› ζ­€δ½ δΈθƒ½ε ι’†δΈ€εˆ‡γ€‚δ½ ε―δ»₯shift+ε·¦ι”η‚Ήε‡»εŒΊε—δ»₯εΌΊεˆΆεŠ θ½½οΌˆεˆεβ€œεŒΊε—εŠ θ½½β€οΌ‰εƒοΌŒδ»₯及shift+右ι”点击δ»₯ε–ζΆˆεΌΊεˆΆεŠ θ½½γ€‚ε¦‚ζžœδ½Ώη”¨ι˜ŸδΌοΌŒε ι’†εŒΊε—ε°†εŒ…ζ‹¬δ½ ηš„ζ•΄δΈͺι˜ŸδΌγ€‚", + "quests.tfg.capture_territory.desc": "ε¦‚ζžœδ½ εœ¨ζœεŠ‘ε™¨δΈŠζΈΈζˆοΌŒε―θƒ½ζƒ³ε ι’†δ½ ηš„ι’†εœŸδ»₯ι˜²ε…Άδ»–ηŽ©εΆεΉ²ζ‰°γ€‚δ½Ώη”¨ζ‰“εΌ€ι’†εœ°ι”οΌˆι»˜θ€δΈΊβ€œCtrl+M”)打开ηͺ—ε£οΌŒη„ΆεŽε·¦ι”点击δ»₯ε ι’†εŒΊε—οΌŒε³ι”点击δ»₯ε–ζΆˆε ι’†γ€‚\n\nθΏ™ζœ‰ι™εˆΆοΌŒε› ζ­€δ½ δΈθƒ½ε ι’†δΈ€εˆ‡γ€‚δ½ ε―δ»₯shift+ε·¦ι”η‚Ήε‡»εŒΊε—δ»₯εΌΊεˆΆεŠ θ½½οΌˆεˆεβ€œεŒΊε—εŠ θ½½β€οΌ‰εƒοΌŒδ»₯及shift+右ι”点击δ»₯ε–ζΆˆεΌΊεˆΆεŠ θ½½γ€‚ε¦‚ζžœδ½Ώη”¨ι˜ŸδΌοΌŒε ι’†εŒΊε—ε°†εŒ…ζ‹¬δ½ ηš„ζ•΄δΈͺι˜ŸδΌγ€‚", + "quests.tfg.chunk_limit.title": "ε¦‚δ½•ζε‡ζˆ‘ηš„εΌΊεŠ θ½½εŒΊε—δΈŠι™οΌŸ", + "quests.tfg.chunk_limit.desc": "ε¦‚ζžœδ½ εœ¨ζœεŠ‘ε™¨δΈŠζΈΈζˆοΌŒι»˜θ€ζƒ…冡下你εͺζœ‰ε°‘ι‡ηš„εŒΊε—ε―δ»₯θ’«εΌΊεˆΆεŠ θ½½γ€‚\n\nζœεŠ‘ε™¨η‘η†ε‘˜ε―δ»₯θ‡ͺεšδΉ‰θΏ™δΈͺζ•°ι‡οΌˆθ―·ζŸ₯ηœ‹README.txtζ–‡δ»ΆοΌοΌ‰γ€‚δ½†ε¦‚ζžœδ½ ζ‹₯ζœ‰η‘η†ε‘˜ζƒι™οΌˆζˆ–ε―η”¨δ½œεΌŠζ¨‘εΌοΌ‰οΌŒδ½ δΉŸε―δ»₯使用命什 &a/ftbchunks admin extra_force_load_chunks @p set X&r ζ₯θΎη½οΌŒε…ΆδΈ­ X δ»£θ‘¨ζ–°ηš„δΈŠι™ζ•°ε€Όγ€‚", "quests.tfg.field_guide.title": "ε…³δΊŽδ»»εŠ‘ηš„ι‡θ¦δΏ‘ζ―οΌ", "quests.tfg.field_guide.subtitle": "ζˆ‘θΏ˜ιœ€θ¦θ―»ζ›΄ε€šε—οΌŸ", "quests.tfg.field_guide.desc": "δ»»εŠ‘δ»εœ¨εΌ€ε‘δΈ­οΌŒζˆ‘δ»¬δΈ€η›΄εœ¨εŠͺεŠ›ζ”ΉθΏ›εƒδ»¬οΌθΈε€šε…³δΊŽε…·δ½“ζœΊεˆΆηš„δΏ‘ζ―δΉŸεœ¨δ½ ηš„ι‡Žε€–ζŒ‡ε—δΈ­οΌŒε―ι€šθΏ‡η‰©ε“ζ ηš„δΉ¦ι‘΅ζ ‡η­ΎθΏι—。\n\nθ°δ½οΌŒJEIε’Œι‡Žε€–ζŒ‡ε—ιƒ½ζ˜―δ½ ηš„ζœ‹ε‹οΌŒε› δΈΊεΉΆιžζ‰€ζœ‰ε†…εΉιƒ½δΌšι€šθΏ‡δ»»εŠ‘θ§£ι‡Šγ€‚", @@ -3431,7 +4292,7 @@ "quests.tfg_tips.frame_pack.subtitle": "ε€šδΊ›ι€‰ζ‹©ζ€»δΈζ˜―εδΊ‹οΌ", "quests.tfg_tips.frame_pack.desc": "&5ε€§θƒŒεŒ…&r提供&318&rδΈͺη‰©ε“ζ δ½οΌŒζ―δΈͺζ δ½ζœ€ε€šε―εΉηΊ³&c64&rδΈͺη‰©ε“γ€‚ε…ΆδΌ˜εŠΏεœ¨δΊŽθƒ½ε€Ÿ&bηͺη ΄εŽŸη‰ˆη‰©ε“ηš„ι»˜θ€ε †ε δΈŠι™&rοΌŒθΏ™ζ„ε‘³η€δ½ ζ€»ε…±ε―ζΊεΈ¦ε€šθΎΎ&c1152&rδΈͺ物品!", "quests.tfg_tips.vessels.title": "ε°η½ε’Œε€§ηΌΈ", - "quests.tfg_tips.vessels.subtitle": "η²˜εœŸε€§ζœ‰η”¨ε€„", + "quests.tfg_tips.vessels.subtitle": "ι»εœŸε€§ζœ‰η”¨ε€„", "quests.tfg_tips.vessels.desc": "&d小罐&rζœ‰4ζ Όη‰©ε“ζ οΌŒθ€Œ&6ε€§ηΌΈ&rζœ‰9格!&d小罐&rδΈδ»…ε­˜η‰©οΌŒζ›΄ζ˜―η†”η‚ΌεŸΊη‘€ι‡‘ε±žηš„εΏ…θ¦θΎε€‡γ€‚\n&6ε€§ηΌΈ&r更重但能更ε₯½δΏε­˜ι£Ÿη‰©γ€‚\n\n&l&3ζŠ€ε·§οΌš&r&oε€§ηΌΈε―ε…Όδ½œζ—©ζœŸθƒŒεŒ…οΌ", "quests.tfg_tips.portable_cells.title": "δΎΏζΊεΌη‰©ε“δΈŽζ΅δ½“ε­˜ε‚¨ε…ƒδ»Ά", "quests.tfg_tips.portable_cells.subtitle": "θΏ™δΌšδΈδΌšε€ͺθΆ…ε‰δΊ†οΌŸ", @@ -3472,15 +4333,53 @@ "quests.tfg_tips.gt.title": "ζ Όι›·η§‘ζŠ€", "quests.tfg_tips.gt.subtitle": "ζ―•η«Ÿε δΊ†ζ•΄εˆεŒ…δΈ‰εˆ†δΉ‹δΈ€ηš„εε­—", "quests.tfg_tips.gt.desc": "&3ζ Όι›·η§‘ζŠ€&rδ»€δΊΊζœ›θ€Œη”Ÿη•οΌŒζ­€εˆ†ζ”―δ»»εŠ‘ε°†ζδΎ›εΈεŠ©γ€‚", + "quests.tfg_tips.gt_power_tools.title": "η”΅εŠ¨ε·₯ε…·", + "quests.tfg_tips.gt_power_tools.subtitle": "η”·δΊΊηš„ζ’¦ζƒ³", + "quests.tfg_tips.gt_power_tools.desc.1": "ε’Œζ‰€ζœ‰δΌ˜η§€ηš„η§‘ζŠ€ζ¨‘η»„δΈ€ζ ·οΌŒ&5ζ Όι›·η§‘ζŠ€&rζδΎ›δΊ†ε€šη§ε€šζ ·ηš„&6ε·₯ε…·&rδΎ›δ½ δ½Ώη”¨γ€‚θ¦ζ“δ½œεƒδ»¬οΌŒδ½ ιœ€θ¦&a为兢充能&rβ€”β€”ζœ‰ε‡ η§ζ–Ήζ³•ε―δ»₯εšεˆ°οΌšε°†ε·₯ε…·ζ”Ύε…₯&6η”΅ζ± η±&rγ€ζœΊε™¨ηš„&d能量槽&rοΌŒζˆ–θ€…ζ›΄ε₯½ηš„ι€‰ζ‹©ζ˜―使用&eι—ͺθšε……η”΅η±&r。\n\nθ―·θ°δ½οΌšδ½ εͺ能使用&7同级&rζˆ–&aζ›΄ι«˜η­‰ηΊ§&rηš„η”΅ζΊδΈΊη‰©ε“ε……η”΅γ€‚&cδ½Žη­‰ηΊ§ηš„η”΅ζΊ&rζ— ζ³•δΈΊι«˜η­‰ηΊ§ε·₯ε…·ε……η”΅β€”β€”δΈθΏ‡εˆ«ζ‹…εΏƒοΌŒ&cεΊ”θ―₯δΈδΌšζœ‰δ»€δΉˆδΈœθ₯Ώηˆ†η‚Έ&r。倧概吧。", + "quests.tfg_tips.gt_power_tools.desc.2": "ε€§ε€šζ•°&5ζ Όι›·η§‘ζŠ€&rε·₯ε…·ιƒ½ζ˜―η”±&6ε·₯具倴&r加ε·₯θ€Œζˆγ€‚ε°θ―•δ½Ώη”¨&aEMI&rζ₯ζŽ’η΄’δ½ θƒ½η”¨εƒδ»¬εšδ»€δΉˆβ€”β€”εͺιœ€θ°δ½δΈ€δ»Άι‡θ¦ηš„δΊ‹οΌš\n\n- &eε·₯ε…·ε€΄ηš„η­‰ηΊ§θΆŠι«˜&rοΌŒεˆΆζˆηš„ε·₯ε…·ε°±θΆŠ&cεΌΊεŠ›&rοΌŒεΉΆδΈ”δ½Ώη”¨ηš„&6η”΅ζ± δΉŸθΆŠε€§&r。\n- εΉΆιžζ‰€ζœ‰ε·₯ε…·ιƒ½ζ”―ζŒζ―δΈ€δΈͺη­‰ηΊ§ηš„ε·₯ε…·ε€΄γ€‚δΎ‹ε¦‚οΌŒ&6ι“Ύι”―&rεͺ能使用&7LVη­‰ηΊ§ηš„ε·₯具倴&rζ₯εˆΆδ½œγ€‚", "quests.tfg_tips.nano_saber.title": "纳米剑", "quests.tfg_tips.nano_saber.subtitle": "ζΏ€ζ΄»ζ—Ά26点攻击伀ε³οΌ", - "quests.tfg_tips.nano_saber.desc": "&6纳米剑&r是&5EV&r阢ζ΅ηš„εΌΊεŠ›ζ­¦ε™¨γ€‚&dShift+右击&rζΏ€ζ΄»&c嗑嗑樑式&r。", - "quests.tfg_tips.gt_tools.title": "ζ Όι›·η§‘ζŠ€ε·₯ε…·", - "quests.tfg_tips.gt_tools.subtitle": "", - "quests.tfg_tips.gt_tools.desc": "ε€šζ•°&5ζ Όι›·η§‘ζŠ€&rε·₯ε…·η”±&6ε·₯具倴&r打造。用&aEMI&rζŸ₯ηœ‹ι…ζ–Ήβ€”β€”θ°δ½δΈ€η‚ΉοΌš\n\n-&eε·₯ε…·ε€΄η­‰ηΊ§θΆŠι«˜&r,ε·₯ε…·θΆŠ&cεΌΊεŠ›&rοΌŒζ‰€ιœ€&6η”΅ζ± θΆŠε€§&r\n-ιžζ‰€ζœ‰ε·₯ε…·ζ”―ζŒζ‰€ζœ‰ε·₯具倴等级。如&6ι“Ύι”―&r仅能用&7LVε·₯具倴&r刢作", + "quests.tfg_tips.nano_saber.desc": "&6纳米剑&r是&5EV&r阢ζ΅εŽζœŸηš„εΌΊεŠ›ζ­¦ε™¨γ€‚&dShift+右击&rζΏ€ζ΄»&c嗑嗑樑式&r。", "quests.tfg_tips.magnets.title": "物品磁铁", - "quests.tfg_tips.magnets.subtitle": "", + "quests.tfg_tips.magnets.subtitle": "2010εΉ΄ζ₯η”΅θ―δΊ†οΌŒεƒζƒ³θ¦ε›žεƒηš„磁铁撗。", "quests.tfg_tips.magnets.desc": "&6物品磁铁&rε¦‚εζ‰€η€ΊοΌŒε°†ι™„θΏ‘&6物品&r吸向你。&a非常εžη”¨&rοΌŒε€«ε€δ½•ζ±‚οΌŸ", + "quests.tfg_tips.long_distance_items.title": "长距离物品η‘道", + "quests.tfg_tips.long_distance_items.subtitle": "想ηŸ₯ι“ε¦‚δ½•θΏœθ·η¦»θΏθΎ“ηŸΏηŸ³οΌŸ", + "quests.tfg_tips.long_distance_items.desc": "&3长距离物品η‘道&rε―η”¨δΊŽθΏœθ·η¦»θΎ“ι€η‰©ε“γ€‚εœ¨δΈ€η«―ε„ζ”Ύη½δΈ€δΈͺη«―η‚ΉοΌŒεΉΆη”¨η‘ι“ζ–Ήε—θΏžζŽ₯即可。\n\nθΏ™δΊ›η‘道能εžηŽ°θΎ“ε…₯η«―εˆ°θΎ“ε‡Ίη«―ηš„ηž¬ζ—ΆδΌ θΎ“γ€‚\n\nη‘ι“η«―η‚Ήι—΄ιœ€δΏζŒζœ€ε°ι—΄θ·οΌŒε› ζ­€δΈι€‚η”¨δΊŽηŸ­η¨‹θΎ“ι€γ€‚", + "quests.tfg_tips.long_distance_fluids.title": "长距离桁体η‘道", + "quests.tfg_tips.long_distance_fluids.subtitle": "想ηŸ₯ι“ε¦‚δ½•θΏœθ·η¦»θΏθΎ“ηŸ³ζ²ΉοΌŸ", + "quests.tfg_tips.long_distance_fluids.desc": "&3长距离桁体η‘道&rε―η”¨δΊŽθΏœθ·η¦»θΎ“ι€ζ΅δ½“γ€‚εœ¨δΈ€η«―ε„ζ”Ύη½δΈ€δΈͺη«―η‚ΉοΌŒεΉΆη”¨η‘ι“ζ–Ήε—θΏžζŽ₯即可。\n\nθΏ™δΊ›η‘道能εžηŽ°θΎ“ε…₯η«―εˆ°θΎ“ε‡Ίη«―ηš„ηž¬ζ—ΆδΌ θΎ“γ€‚\n\nη‘ι“η«―η‚Ήι—΄ιœ€δΏζŒζœ€ε°ι—΄θ·οΌŒε› ζ­€δΈι€‚η”¨δΊŽηŸ­η¨‹ζ΅δ½“θΎ“ι€γ€‚\n\nθΏ™δΊ›η‘道素δ»₯θΎη½θΏ‡η¨‹&4ζ•…ιšœι’‘ε‘&rθ€Œι—»εγ€‚ε¦‚ζžœεƒδ»¬εˆζ¬‘使用既不能正常ε·₯δ½œοΌŒθ―·ε°θ―•η”¨&e扳手&rζ—‹θ½¬η«―η‚Ήθ°ƒζ•΄ζœε‘γ€‚", + "quests.tfg_tips.crates.title": "ζ Όι›·η§‘ζŠ€ε­˜ε‚¨", + "quests.tfg_tips.crates.subtitle": "ζΈΈζˆζ—©ζœŸηš„ηΌ“ε†²ε­˜ε‚¨", + "quests.tfg_tips.crates.desc": "理θΊδΈŠοΌŒζΏζ‘η±ζ˜―η±ε­ηš„ε…¨ι’ε‡ηΊ§η‰ˆγ€‚δΈ€δΈͺζ–Ήε—η©Ίι—΄θƒ½ε­˜ε‚¨ζ›΄ε€šη‰©ε“β€”β€”δ½ θΏ˜θƒ½θ¦ζ±‚δ»€δΉˆε‘’οΌŸ\n\nεƒδ»¬ζ―”ζ™ι€šη±ε­ζ›΄ζ˜‚θ΄΅οΌŒδΈ”ζ— ζ³•θΏžζŽ₯εˆ°ζœΊζ’°εŠ¨εŠ›θ£…η½δΈŠοΌŒδ½†ε―δ»₯εΉηΊ³δ»»ζ„ε€§ε°ηš„η‰©ε“οΌŒεΉΆδΈ”θƒ½&6ε‰θ£…覆盖板&rοΌŒθΏ™δ½Ώε…ΆζˆδΈΊθ‡ͺεŠ¨εŒ–η³»η»ŸδΈ­ηΌ“ε†²ε­˜ε‚¨ηš„εŒηΎŽι€‰ζ‹©γ€‚", + "quests.tfg_tips.tape.title": "板村η±θƒΆεΈ¦", + "quests.tfg_tips.tape.subtitle": "搬运物衄", + "quests.tfg_tips.tape.desc": "你可δ»₯对板村η±ε³ι”δ½Ώη”¨θƒΆεΈ¦οΌŒδ½Ώε…Άεœ¨θ’«η ΄εζ—ΆδΏη•™ε†…ιƒ¨η‰©ε“οΌŒδΎΏδΊŽζ¬θΏγ€‚δΈθΏ‡οΌŒζ―ε·θƒΆεΈ¦εͺθƒ½η”Ÿζ•ˆδΈ€ζ¬‘γ€‚\n\nε₯½εœ¨εƒεΎˆδΎΏεœοΌ", + "quests.tfg_tips.terminal.subtitle": "ε€šζ–Ήε—θ‡ͺεŠ¨ε»Ίι€ ε™¨", + "quests.tfg_tips.terminal.desc": "&b终端&rζœ‰δΈ€δΈͺδΈ»θ¦η”¨ι€”οΌŒεΉΆδΈ”&aζˆ‘δ»¬εΌΊηƒˆε»Ίθδ½ εˆΆδ½œδΈ€δΈͺ&r。\n\nε»Ίι€ ζ‰€ζœ‰θΏ™δΊ›&eε€šζ–Ήε—η»“ζž„&rε―θƒ½ζœ‰η‚Ή&cδ»€δΊΊζœ›θ€Œη”Ÿη•&r,对吧?ε₯½ε§οΌŒθΏ™ι‡Œζœ‰δΈͺζŠ€ε·§οΌšεœ¨δ»»ζ„&6ε€šζ–Ήε—η»“ζž„ζŽ§εˆΆε™¨&rδΈŠδ½Ώη”¨&dShift + 右ι”点击&r,即可&aθ‡ͺεŠ¨η»„θ£…ζ•΄δΈͺη»“ζž„&r!\n\nδ½ ε―θƒ½ιœ€θ¦&eη§»εŠ¨δΈ€δΊ›ζ€»ηΊΏζˆ–θˆ±ε£&rδ»₯ι€‚εΊ”δ½ ηš„εΈƒε±€οΌŒδ½†ζ€»δ½“ζ₯θ―΄οΌŒθΏ™δΈͺεŠŸθƒ½ε°†δΈΊδ½ θŠ‚ηœ&a倧量既间&r。", + "quests.tfg_tips.memory_card.subtitle": "ε€εˆΆε’Œη²˜θ΄΄", + "quests.tfg_tips.memory_card.desc": "当你尝试&aεΉΆθ‘ŒεŒ–δ½ ηš„η”ŸδΊ§ηΊΏ&r、铺θΎζ›΄ε€šζœΊε™¨ζ—ΆοΌŒδΈΊζ―δΈ€ε°ιƒ½θΎη½ζ‰€ζœ‰ηš„&eθΎ“ε…₯&rε’Œ&eθΎ“ε‡Ί&rε―θƒ½δΌšεΎˆιΊ»ηƒ¦γ€‚ζ˜―ηš„οΌŒζˆ‘δ»¬θ―΄ηš„ε°±ζ˜―δ½ οΌŒ&dθΆ…ηΊ§η±&rε’Œ&dθΆ…ηΊ§ηΌΈ&r。\n\nε¦‚ζžœδ½ ε‘ηŽ°θ‡ͺε·±ιœ€θ¦θΏ™δΈͺ小ε·₯ε…·οΌŒεˆ«ηŠΉθ±«οΌŒη›΄ζŽ₯用吧。", + "quests.tfg_tips.portable_scanner.title": "三录δ»ͺ", + "quests.tfg_tips.portable_scanner.subtitle": "ηŒη»™ζœ€ε₯½ε₯‡ηš„ζ Όι›·η§‘ζŠ€ηŽ©εΆ", + "quests.tfg_tips.portable_scanner.desc.1": "&a便携式扫描δ»ͺ&rοΌˆζˆ–η§° &a三录δ»ͺ&rοΌ‰οΌŒζ˜―GTCEuηš„θ°ƒθ―•ε·₯具。\n\n使用εƒε―δ»₯ζŸ₯ηœ‹ζ–Ήε—ηš„θ―¦η»†δΏ‘ζ―γ€θƒ½ι‡η½‘η»œηš„η»†θŠ‚γ€ε½“ε‰ηŠΆζ€δΈŽε†…εΉη‰©οΌŒδ»₯及εƒε―Ήζ€§θƒ½ηš„影响。\n\nεƒθΏ˜δΌšδΈΊ&3ζ΅δ½“ι’»ζœΊ&rζ˜Ύη€Ίζ΅δ½“ηŸΏθ„‰ηš„ε‰©δ½™η™Ύεˆ†ζ―”γ€‚", + "quests.tfg_tips.portable_scanner.desc.2": "&l&3θƒŒζ™―ηŸ₯θ―†οΌš&r&oθΏ™δΈͺεžη”¨ηš„小θΎε€‡ζ₯θ‡ͺζ Όι›·η§‘ζŠ€5γ€‚εœ¨ζ—©ζœŸεƒζžε…Άζœ‰η”¨οΌŒε› δΈΊι‚£ζ—Άηš„GUIζˆ–WAILAζδΎ›ηš„δΏ‘ζ―ιžεΈΈε°‘οΌˆεŸΊζœ¬δΈŠδ»€δΉˆιƒ½ζ²‘ζœ‰οΌ‰γ€‚", + "quests.tfg_tips.duct_tape.subtitle": "ε¦‚ζžœδΈ€ε·δΏδΈε₯½οΌŒι‚£ε°±ε†ζ₯一卷!", + "quests.tfg_tips.duct_tape.desc": "δ½ ε―θƒ½ε·²η»ζ„θ―†εˆ°οΌŒε€§ε€šζ•°&eε€šζ–Ήε—η»“ζž„&rιƒ½ιœ€θ¦δΈ€δΈͺ&6η»΄ζŠ€δ»“&rγ€‚εœ¨θΎΎεˆ°ε―δ»₯刢作&aθ‡ͺεŠ¨η»΄ζŠ€δ»“&rηš„&6HV&r阢ζ΅δΉ‹ε‰οΌŒδ½ ε―δ»₯使用这δΈͺ物品ζ₯δΏε€οΌŒθ€Œζ— ιœ€εŠ¨η”¨δ½ ζ‰€ζœ‰ηš„η»΄ζŠ€ε·₯具。\n\nε¦‚ζžœδ½ θΏ˜δΈζƒ³ζŠ•θ΅„&aθ‡ͺεŠ¨η»΄ζŠ€δ»“&rοΌŒζˆ–θ€…δ½ ζ Ήζœ¬&cθΏ˜ζ²‘εˆ°ι‚£δΈͺ阢ζ΅&r,εƒδΌšιžεΈΈζœ‰η”¨γ€‚", + "quests.tfg_tips.gt_filters.title": "过滀卑", + "quests.tfg_tips.gt_filters.desc": "使用&5ζ Όι›·η§‘ζŠ€&r,你可δ»₯θŽ·εΎ—ε€šη§&6过滀卑&r,εƒδ»¬θƒ½εΈεŠ©δ½ θ½»ζΎεžηް&aθ‡ͺεŠ¨εŒ–&rγ€‚ζ‰€ζœ‰θΏ™δΊ›θΏ‡ζ»€ε‘ιƒ½δΈŽδΈεŒηš„&d覆盖板&rε…ΌεΉοΌŒδ½ ε°†εœ¨&7LV&rη« θŠ‚δΊ†θ§£ζ›΄ε€šη›Έε…³ε†…εΉγ€‚\n\nεœ¨θΏ™ι‡ŒοΌŒζˆ‘δ»¬ε°†δ»‹η»δΈ€η§εœ¨η‰Ήεšζƒ…ε†΅δΈ‹δ½ ε―θƒ½δΌšθ§‰εΎ—&bζ–ΉδΎΏ&rηš„γ€ζ›΄ε…·δ½“ηš„θΏ‡ζ»€ε‘γ€‚\n\nθ¦δ½Ώη”¨θΏ‡ζ»€ε‘οΌŒεͺιœ€ε°†ε…Άδ½œδΈΊ&d覆盖板&rεΊ”η”¨εˆ°δ»»δ½•&5ζ Όι›·ζœΊε™¨&rζˆ–&6η‘道&rδΈŠγ€‚", + "quests.tfg_tips.smart_item_filter.subtitle": "ζ•²ι—¨οΌŒθ°ε‘€οΌŸζ˜―ι«˜ζ™Ίε•†δΏ±δΉιƒ¨οΌ", + "quests.tfg_tips.smart_item_filter.desc.1": "εœ¨θΏ™δΈͺδ»»εŠ‘δΈ­οΌŒζˆ‘δ»¬ε°†θ΅δΊˆδ½ &5β€œε—θ―…ε’’ηš„ζ™Ίζ…§β€&r……轻松θ‡ͺεŠ¨εŒ–η”΅θ§£ζœΊηš„θƒ½εŠ›γ€‚\n\n&9智能物品过滀卑&rζ˜―δΈ€η§θƒ½θ―†εˆ«ι…ζ–Ήε›Ύθ°±ηš„θΏ‡ζ»€ε‘γ€‚ε½“ε°†ε…Άζ”Ύη½δΊŽζœΊε™¨δΎ§ι’ζ—ΆοΌŒδ½ ε―δ»₯ε°†ε…ΆθΎη½δΈΊβ€œ&3η”΅θ§£ζœΊ&rβ€οΌŒδ»₯专门允θΈε―η”΅θ§£η‰©ε“ηš„θΎ“ε…₯γ€‚δ½ ζ²‘ε¬ι”™β€”β€”ζ— ιœ€ζ‰‹εŠ¨θΏ‡ζ»€οΌ\n\nε“¦οΌŒθ€ŒδΈ”εƒεͺδΌšε˜εΎ—&aζ›΄ε₯½&rγ€‚ε¦‚ζžœδ½ ζŠŠθΏ™δΈͺε₯½εΆδΌ™ε’Œ&aζœΊζ’°θ‡‚&rη»„εˆδ½Ώη”¨οΌŒεƒε°†εͺδΌšδΈΊζœΊε™¨δΎ›εΊ”ζˆεŠŸζ‰§θ‘Œι…ζ–Ήζ‰€ιœ€ηš„&6η²Ύη‘数量&rηš„η‰©ε“γ€‚", + "quests.tfg_tips.smart_item_filter.desc.2": "ε°†&aζœΊζ’°θ‡‚&rζ”Ύεœ¨δ½ ηš„η”΅θ§£ζœΊδΈŠοΌŒζ‰“εΌ€ε…ΆGUIοΌŒη„ΆεŽε°†&9智能过滀卑&rζ”Ύε…₯兢中。η‘保智能过滀卑已θΎη½δΈΊη”΅θ§£ζœΊγ€‚\n\nζŽ₯δΈ‹ζ₯οΌŒε°†ε…Άι…η½δΈΊ&d&lθΎ“ε…₯&rε’Œ&d&lη²Ύη‘δΎ›εΊ”&rγ€‚ζœ€εŽοΌŒεœ¨δ»»δ½•δ½ ζ”Ύη½δΊ†&aζœΊζ’°θ‡‚&rηš„δΎ§ι’θΏžζŽ₯δΈ€δΈͺ物品栏&7(η±ε­ε°±θ‘ŒοΌ‰&r。嗒-ε“’οΌδ½ ε·²η»ζžζ˜Žη™½ε¦‚δ½•ε€„η†&6ζ‰€ζœ‰&rη”΅θ§£ζœΊι…ζ–ΉδΊ†οΌ\n\nι‚£&3η”΅θ§£ζœΊ&rηš„δΊ§ε‡Ίη‰©ε‘’οΌŸδ½ ε―θƒ½ζƒ³ζŠŠζ΅δ½“ε―Όε‘ε‡ δΈͺε‚¨η½β€”β€”ε¦‚ζžœδ½ ε·²η»ηŽ©εˆ°ι‚£δΈ€ζ­₯δΊ†οΌŒη”šθ‡³ζ˜―&3θΆ…ηΊ§ηΌΈ&rγ€‚ζˆ‘δ»¬εΌΊηƒˆε»Ίθδ½ ιΏε…δ»»δ½•ζΆ‰εŠζ΅δ½“ι”€ζ―ηš„ζ–Ήζ³•γ€‚&7.&7. ι™€δΊ†ζ°΄οΌŒεŽŸε› ζ˜Ύθ€Œζ˜“θ§γ€‚", + "quests.tfg_tips.smart_item_filter.desc.3": "&9ζ³¨ζ„οΌš&r ζœΊζ’°θ‡‚εΏ…ι‘»ε‚δΈŽη‰©ε“δΌ θΎ“οΌŒε…ΆθΏ‡ζ»€εŠŸθƒ½ζ‰θƒ½η”Ÿζ•ˆοΌη›΄ζŽ₯ε‘ζœΊε™¨θΎ“ε…₯物品&7οΌˆδΎ‹ε¦‚οΌŒη”¨ζΌζ–—ζŽ¨ι€οΌοΌ‰&r 会忽η•₯ζœΊζ’°θ‡‚ηš„&dη²Ύη‘δΎ›εΊ”&rθΎη½γ€‚", + "quests.tfg_tips.hazard_materials.title": "危险材料", + "quests.tfg_tips.hazard_materials.subtitle": "ηͺ’ζ―ε±ι™©οΌŒ3岁δ»₯δΈŠι€‚η”¨", + "quests.tfg_tips.hazard_materials.desc": "ιšη€ζ–°η‰ˆζœ¬ηš„&5ζ Όι›·η§‘ζŠ€&rοΌŒδΈ€δΈͺ&cε±ι™©η³»η»Ÿ&rθ’«εΌ•ε…₯γ€‚ε°†ιΌ ζ ‡ζ‚¬εœεœ¨&c危险材料&rδΈŠζ—ΆζŒ‰δ½&dShift&rι”οΌŒδ½ ε―δ»₯ηœ‹εˆ°εƒδ»¬ε―θƒ½ε―Ήδ½ ι€ ζˆηš„ε½±ε“γ€‚\n\nζˆ‘δ»¬εΌΊηƒˆε»Ίθδ½Ώη”¨εˆι€‚ηš„&6ι˜²ζŠ€θ£…ε€‡&rζ₯δΏζŒδ½ ηš„&c器ε˜εŒε₯½ζ— ζŸ&r。", + "quests.tfg_tips.face_mask.desc": "&6口罩&rε°†δΏζŠ€δ½ ε…ε—&c吸ε…₯ε±ι™©η²‰ε°˜&rηš„δΌ€ε³γ€‚εƒ&a相当εΉζ˜“εˆΆδ½œ&rοΌŒεΊ”θ―₯θƒ½ι˜²ζ­’δ½ εœ¨ε€„η†&5η ·&rζ—Άε‡ΊηŽ°ι—ι’˜γ€‚", + "quests.tfg_tips.rubber_gloves.desc": "&6橑胢手ε₯—&rζ˜Ύη„Άθƒ½δΏζŠ€δ½ ε…ε—&cηšθ‚€ζŽ₯触危ε³&rγ€‚δ½ ζœ‰δΈ€η§εˆΆδ½œζ–Ήζ³•οΌšδΈ€η§ζ˜―ι€šθΏ‡&2羀峦传说&rηš„&7θΎƒι•ΏδΈ”θΎƒε€ζ‚ηš„ι€”εΎ„&rοΌŒε¦δΈ€η§ζ˜―δ½Ώη”¨&6ι«˜εŽ‹θ’Έζ±½εˆι‡‘η‚‰&rηš„&aη€ε•εΎ—ε€š&rηš„ζ–Ήζ³•γ€‚", + "quests.tfg_tips.hazmat.title": "ε±ι™©ζζ–™ι˜²ζŠ€ζœ", + "quests.tfg_tips.hazmat.desc": "&6ε±ι™©ζζ–™ι˜²ζŠ€ζœ&r是保技θ‡ͺ己免受&c任何伀ε³&rηš„ζœ€δ½³ζ–ΉεΌγ€‚δΈ€ζ—¦δ½ θΎΎεˆ°&bMV&r阢ζ΅ε°±θƒ½εˆΆδ½œεƒοΌŒεΉΆδΈ”&a你绝对应θ―₯θŠ±ζ—Άι—΄εŽ»εšδΈ€ε₯—&r。", + "quests.tfg_tips.armor.title": "ζ Όι›·η§‘ζŠ€ζŠ€η”²", + "quests.tfg_tips.armor.desc": "&5ζ Όι›·η§‘ζŠ€&rεΈ¦ζ₯δΊ†εƒθ‡ͺε·±ηš„ζŠ€η”²η³»εˆ—γ€‚ε½“η„ΆοΌŒη©Ώη€&7ι‡‘ε±žζΏ&rεΎˆι…·οΌŒδ½†ζ—’η„Άδ½ ηŽ°εœ¨ζ˜―δΈͺ&bε·₯δΈšη‹‚δΊΊ&r,也θΈζ˜―ζ—Άε€™ηœ‹ηœ‹δΈ€δΊ›&aη§‘ζŠ€ζŠ€η”²&r了。\n\n&5ζ Όι›·η§‘ζŠ€&rζδΎ›δΊ†δΈ€η§εž‹ε·γ€‚η¬¬δΈ€η§ε€§ηΊ¦εœ¨&6HV&r阢ζ΅ε―η”¨οΌŒζδΎ›ζ―”δ½ δΉ‹ε‰η©ΏθΏ‡ηš„δ»»δ½•ζŠ€η”²ιƒ½ζ›΄ε₯½ηš„δΏζŠ€γ€‚εƒι…ε€‡δΊ†&eεΌΊε€§ηš„η»ηΌ˜ε±‚&rδ»₯ζŠ΅εΎ‘εœ°ηƒηš„ζΆεŠ£ζ°”ε€™οΌŒη”šθ‡³θΏ˜ε―δ»₯升级&dε–·ζ°”θƒŒεŒ…&r。\n\nη¬¬δΊŒη§εž‹ε·θ¦εˆ°εΎˆδΉ…δ»₯εŽβ€”β€”ε€§ηΊ¦&1IV&rε’Œ&dLuV&r阢ζ΅β€”β€”ζ‰δΌšε―用。这一款能θ©δ½ δ½Ώη”¨&3ζ°§ζ°”&r在ε€ͺη©ΊδΈ­&9呼吸&r。", "quests.tfg_tips.terrafirmacraft.title": "ηΎ€ε³¦δΌ θ―΄ι™„εŠ ", "quests.tfg_tips.terrafirmacraft.subtitle": "ζ•΄εˆεŒ…εε­—ηš„ε¦ε€–δΈ‰εˆ†δΉ‹δΊŒ", "quests.tfg_tips.terrafirmacraft.desc": "&3羀峦传说&r是&2TerraFirmaGreg&rηš„ζ ΈεΏƒζ¨‘η»„γ€‚ζ­€εˆ†ζ”―θšη„¦η”Ÿε­˜η‰Ήζ€§δΈŽ&dι™„εŠ &rε†…εΉοΌŒε¦‚&4ι™ˆεΉ΄δ½³ι…Ώ&rε’Œ&b手杖&r。", @@ -3492,6 +4391,14 @@ "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.feeding_troughs.title": "ε–‚ι£Ÿζ§½", + "quests.tfg_tips.feeding_troughs.subtitle": "ι‡‘ε±žη‰§εœΊεŠ©ζ‰‹", + "quests.tfg_tips.feeding_troughs.desc": "ε–‚ι£Ÿζ§½οΌˆδΊ¦η§°ι©―ε…»η«™οΌ‰θƒ½θ©δ½ εœ¨ζ―ε€©ζ—©ζ™¨θ‡ͺεŠ¨ε–‚ε…»εŠ¨η‰©γ€‚εƒη”šθ‡³θΏ˜ζœ‰δΈ€δΈͺι€‰ι‘ΉοΌŒε―δ»₯ιΏε…ε–‚ε…»ι‚£δΊ›η†Ÿζ‚‰εΊ¦ε·²ζ»‘ηš„εŠ¨η‰©οΌŒδ»₯ι˜²δ½ δΈζƒ³θ©εƒδ»¬ηΉζ–。\n\nζ›΄ι«˜η­‰ηΊ§ηš„ε–‚ε…»ζ§½ζ‹₯ζœ‰ζ›΄ε€§ηš„ζœ‰ζ•ˆθŒƒε›΄γ€‚\n\n&3&l提瀺:&r&o δ½ ζœ€ε₯½δΈθ¦ζŠŠεƒη›΄ζŽ₯ζ”Ύεœ¨ε›΄ζ ζ—θΎΉοΌŒε¦εˆ™εŠ¨η‰©δ»¬ε―θƒ½δΌšθ―•ε›Ύεˆ©η”¨εƒι€ƒε‡Ίε›΄ζ οΌ", + "quests.tfg_tips.feeding_troughs.task": "δ»»δ½•ε–‚ι£Ÿζ§½", + "quests.tfg_tips.scraping_knives.title": "εˆηšεˆ€", + "quests.tfg_tips.scraping_knives.subtitle": "ι«˜ζ•ˆε€„η†", + "quests.tfg_tips.scraping_knives.desc": "εŽŒε€¦δΊ†ζ‰‹εŠ¨εˆεˆΆηšι©γ€ηΊΈεΌ ζˆ–δΊšιΊ»δΊ†ε—οΌŸθ―•θ―•εˆΆδ½œδΈ€ζŠŠεˆηšεˆ€ε§οΌ\n\nδΈ€ζŠŠεŸΊη‘€ηš„ι“œεˆΆζˆ–ι’ι“œεˆηšεˆ€ε°±ε―δ»₯δΈ€ζ¬‘ζ€§ε€„η†δΈ€ζ•΄θ‘Œζζ–™οΌŒθ€Œζ›΄ι«˜ηΊ§ηš„εˆηšεˆ€εˆ™θƒ½ε€Ÿε€„η†ζ›΄ε€šθ‘Œγ€‚", + "quests.tfg_tips.scraping_knives.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,δ»₯εŠδΈ€δΈͺη”¨ηŽ»η’ƒεΉεˆΆζ–Ήε—ζ­ε»Ίηš„εΉ³ε°ζ₯ζ΅‡η­‘η†”θžηŽ»η’ƒγ€‚ε…³δΊŽεΉ³ε°ηš„ε…·δ½“ε½’ηŠΆε’Œε“ͺδΊ›ζ–Ήε—η¬¦εˆθ¦ζ±‚οΌŒθ―·ζŸ₯ι˜…&2ι‡Žε€–ζŒ‡ε—&rθŽ·ε–ζ›΄ε€šδΏ‘ζ―γ€‚ε½“δ½ θƒ½εˆΆδ½œ&aι»„ι“œ&rεŽε³ε―θ§£ι”ηŽ»η’ƒεΉεˆΆε·₯艺。", @@ -3598,9 +4505,6 @@ "quests.tfg_tips.grappling_hook.title": "ζŠ“ι’©", "quests.tfg_tips.grappling_hook.subtitle": "θΏ™δΈ‹εœΊζζ€•δΌšδΈε€ͺ妙", "quests.tfg_tips.grappling_hook.desc": "ε°†2δΈͺ&aι»„ιΊ»η»³&r与1δΈͺ&b锻铁镐倴&rη»„εˆοΌŒδΎΏε―εˆΆδ½œε‡Ί&dζŠ“ι’©&r!εƒζ˜―ηΏ»θΆŠε΄‡ε±±ε³»ε²­γ€ζŽ’η΄’ε·¨ζ΄žζ·±ζΈŠγ€ηΊ΅ζ¨ͺε€©εœ°ε››ζ–Ήηš„η†ζƒ³ε·₯ε…·γ€‚ζŠ“ι’©ε†…η½&eε‡ηΊ§η³»η»Ÿ&r,可θ©δ½ ιšεΏƒζ‰€ζ¬²εœ°θ‡ͺη”±ζ­ι…δΈŽζ”Ήι€ δ½ ηš„&dζŠ“ι’©&r。", - "quests.tfg_tips.grapple_repair.title": "ζŠ“ι’©θ­¦ε‘Š", - "quests.tfg_tips.grapple_repair.subtitle": "θ―·ι˜…θ―»ζœ¬θ―΄ζ˜ŽοΌŒε¦εˆ™δ½ ζ—₯εŽε―θƒ½δΌšεŽζ‚”οΌ", - "quests.tfg_tips.grapple_repair.desc": "&dζŠ“ι’©&rηš„ζ‰€ζœ‰&a升级&rζ•°ζιƒ½ε‚¨ε­˜εœ¨η‰©ε“ηš„NBT标签内。这意味着θ‹₯尝试使用&c另一δΈͺ&rζŠ“ι’©θΏ›θ‘ŒδΏε€οΌŒ&l&cε°†δΌšζ°ΈδΉ…ζŸζ―ζ‰€ζœ‰ε‡ηΊ§ζ•°ζοΌ&r\n\nζ­£η‘δΏε€ζ–ΉεΌοΌšε°†δ½ ηš„&dζŠ“ι’©&rδΈŽδΈ€δΊ›&b锻铁粉&rζ”Ύε…₯&3ε·₯作台&rθΏ›θ‘ŒδΏε€γ€‚\n\nε¦ε€–οΌŒεœ¨δΈ»δΈ–η•ŒδΈŽεΉ½ε†₯δΈ–η•ŒδΉ‹ι—΄η©Ώζ’­ζ—Άεˆ‡ε‹Ώδ½Ώη”¨ζŠ“ι’©οΌŒθΏ™ζ˜―ιžεΈΈε±ι™©ηš„γ€‚", "quests.tfg_tips.grapple_upgrades.title": "ε‡ηΊ§δ½ ηš„ζŠ“ι’©", "quests.tfg_tips.grapple_upgrades.subtitle": "ε½“η„Άζ˜―ε›΄η»•TFG平葑过了!", "quests.tfg_tips.grapple_upgrades.desc.1": "升级&dζŠ“ι’©&rιœ€θ¦ι€šθΏ‡&3ε·₯作台&rδΈΊε…Άζ·»εŠ ζˆ–η§»ι™€η‰©ε“γ€‚\n\nθ‹₯想ζŸ₯ηœ‹&dζŠ“ι’©&rζ‰€ζœ‰ηš„ε―ε‡ηΊ§ε†…εΉοΌŒε―ζŒ‰&2EMI&rηš„\"用途\"ι”。\n每δΈͺθ‡ͺεšδΉ‰ι…ζ–Ήιƒ½δΌšι™„ζœ‰ζ–‡ε­—οΌŒθ―΄ζ˜Žε…Άζ‰€θƒ½εΈ¦ζ₯ηš„ε…·δ½“ζ”Ήε˜γ€‚", @@ -3686,7 +4590,7 @@ "quests.tfg_tips.selfie.desc": "打开&bη›ΈζœΊ&rεŽζŒ‰F5启用&bθ‡ͺ拍樑式&rοΌŒε¦‚εζ‰€η€ΊοΌŒε―ζ‹ζ‘„θ‡ͺ拍照。", "quests.tfg_tips.camera_attachments.title": "η›ΈζœΊι…δ»Ά", "quests.tfg_tips.camera_attachments.subtitle": "ε‡ηΊ§δ½ ηš„η›ΈζœΊ", - "quests.tfg_tips.camera_attachments.desc": "ζ½œθ‘Œζ—ΆδΊ€δΊ’&dη›ΈζœΊ&r打开GUIη•Œι’γ€‚δΈδ»…ε―ζ”Ύε…₯&a胢卷&rοΌŒθΏ˜ε―ι™„εŠ εŠŸθƒ½ι™„δ»Άγ€‚\n\n&d纒石灯&rοΌšδ½œδΈΊζ‰‹η”΅η­’οΌŒη…§δΊι»‘ζš—ηŽ―咃。\n&dζœ›θΏœι•œ&rοΌšε―η”¨ηΌ©ζ”ΎοΌŒζ‹ζ‘„θΏœε€„η‰©δ½“γ€‚", + "quests.tfg_tips.camera_attachments.desc": "ζ½œθ‘Œζ—ΆδΊ€δΊ’&dη›ΈζœΊ&r打开GUIη•Œι’γ€‚δΈδ»…ε―ζ”Ύε…₯&a胢卷&rοΌŒθΏ˜ε―ι™„εŠ εŠŸθƒ½ι™„δ»Άγ€‚\n\n&d可开关光源&rοΌšε……ε½“ι—ͺε…‰η―οΌŒη…§δΊι»‘ζš—ηŽ―咃。\n&dζœ›θΏœι•œ&rοΌšε―η”¨ηΌ©ζ”ΎοΌŒζ‹ζ‘„θΏœε€„η‰©δ½“γ€‚", "quests.tfg_tips.camera_attachments.task": "ηΊ’ηŸ³η―ζˆ–ζœ›θΏœι•œ", "quests.tfg_tips.filters.title": "θ‰²ε½©ζ»€ι•œ", "quests.tfg_tips.filters.subtitle": "ζ”Ήε˜η…§η‰‡ι£Žζ Ό", @@ -3700,7 +4604,7 @@ "quests.tfg_tips.film_rolls.desc": "θ¦εΌ€ε§‹ζ‹η…§οΌŒδ½ ιœ€θ¦ε…ˆεˆΆδ½œδΈ€η§θƒΆε·δΈ­ηš„δΈ€η§οΌš&0黑白胢卷&rζˆ–&d彩色胢卷&r。", "quests.tfg_tips.developing_film.title": "冲洗胢卷", "quests.tfg_tips.developing_film.subtitle": "ε‡θ£…δ½ ζ˜―ζ‰“ε°ζœΊ", - "quests.tfg_tips.developing_film.desc": "拍摄εŒζˆεŽοΌŒδ½ ε―δ»₯ι€šθΏ‡ε°†θƒΆη‰‡ζ΅Έζ³‘εœ¨&bζ°΄&rδΈ­ζ₯εΌ€ε§‹&a显影&rγ€‚δΉ‹εŽοΌŒδ½ ιœ€θ¦εˆζˆδΈ€δΈͺ&dζš—ε€&r。\n\nζš—ε€η”¨δΊŽε†²ζ΄—θƒΆη‰‡οΌŒε…ΆδΈŠζ–Ήιœ€θ¦δΈ€δΈͺεΌΊε…‰ζΊοΌŒεΉΆιœ€θ¦δ»₯δΈ‹ε››η§ζŸ“ζ–™οΌš&3青色&r、&5品纒色&r、&e黄色&rε’Œ&0黑色&r,即&3C&5M&eY&0K&r色彩樑式。\n&0黑白胢片&rδ»…ιœ€&0ι»‘θ‰²ζŸ“ζ–™&rοΌŒθ€Œ&d彩色胢片&rεˆ™ιœ€θ¦εŒζ•΄ηš„&3青&5ηΊ’&eι»„&0ι»‘&rε₯—装。\n\nθ‹₯ζƒ³ε°θ―•ζ›΄ζœ‰θΆ£ηš„ε€„η†ζ–ΉεΌοΌŒδ½ ε―δ»₯排紒&c彩色冲印ε·₯θ‰Ί&r……", + "quests.tfg_tips.developing_film.desc": "拍摄εŒζˆεŽοΌŒδ½ ε―δ»₯ι€šθΏ‡ε°†θƒΆη‰‡ζ΅Έζ³‘εœ¨ι€‚ε½“ηš„&bζ˜Ύε½±ε‰‚&rδΈ­ζ₯εΌ€ε§‹&a显影&rγ€‚δΉ‹εŽοΌŒδ½ ιœ€θ¦εˆζˆδΈ€δΈͺ&dζš—ε€&r。\n\nζš—ε€η”¨δΊŽε†²ζ΄—θƒΆη‰‡οΌŒε…ΆδΈŠζ–Ήιœ€θ¦δΈ€δΈͺεΌΊε…‰ζΊοΌŒεΉΆιœ€θ¦δ»₯δΈ‹ε››η§ζŸ“ζ–™οΌš&3青色&r、&5品纒色&r、&e黄色&rε’Œ&0黑色&r,即&3C&5M&eY&0K&r色彩樑式。\n&0黑白胢片&rδ»…ιœ€&0ι»‘θ‰²ζŸ“ζ–™&rοΌŒθ€Œ&d彩色胢片&rεˆ™ιœ€θ¦εŒζ•΄ηš„&3青&5ηΊ’&eι»„&0ι»‘&rε₯—装。\n\nθ‹₯ζƒ³ε°θ―•ζ›΄ζœ‰θΆ£ηš„ε€„η†ζ–ΉεΌοΌŒδ½ ε―δ»₯排紒&c彩色冲印ε·₯θ‰Ί&r……", "quests.tfg_tips.photo.title": "δ½ ηš„ι¦–εΌ η…§η‰‡", "quests.tfg_tips.photo.subtitle": "ζ­ε–œοΌ", "quests.tfg_tips.photo.desc": "你可δ»₯ε―Ή&d照片&rθΏ›θ‘Œε€šη§ε€„η†οΌš\n\n‒使用空白&aηΊΈεΌ &rε’Œε†²ζ΄—εŽŸε›Ύζ‰€ιœ€ηš„&aζŸ“ζ–™&r即可&b倍刢&r照片\n\nβ€’ι€šθΏ‡&b堆叠&rεŠŸθƒ½ζ•΄η†θƒŒεŒ…δΈ­ηš„η…§η‰‡οΌˆε…·δ½“ζ“δ½œζ–ΉεΌε―ζŸ₯θ―’EMIοΌ‰\n\nβ€’ζ·»εŠ &6ζ£•θ‰²ζŸ“ζ–™&rθΏ›θ‘ŒδΊΊε·₯&cεšζ—§&rοΌŒδ½Ώη…§η‰‡ε‘ˆηŽ°ε²ζœˆζ–‘ι©³ηš„θ΄¨ζ„Ÿ", @@ -3749,7 +4653,7 @@ "quests.tfg_tips.create_tree_sugar.task": "ζž«η³–ζˆ–ζ‘¦η³–", "quests.tfg_tips.create_rubber_ingot.title": "橑胢村", "quests.tfg_tips.create_rubber_ingot.subtitle": "ζŠŠθΏ™δΊ›&6η”΅ηΌ†&rεŒ…θ£Ήε₯½γ€‚", - "quests.tfg_tips.create_rubber_ingot.desc": "使用&bηœŸη©Ίθ…”ε€&rεΉΆθΎ…δ»₯ι’ε€–εŠ ηƒ­οΌŒδ½ ε―δ»₯ι€šθΏ‡η‰Ήεšε·₯θ‰Ίε°†ε„η§ζ ‘ζœ¨δΊ§η”Ÿηš„&aδΉ³θƒΆ&r加ε·₯成&dη”Ÿζ©‘θƒΆζœ«&rγ€‚ιšεŽοΌŒεœ¨&bεˆι‡‘ε†Άη‚Όη‚‰&rδΈ­ε°†3δ»½&dη”Ÿζ©‘θƒΆζœ«&rδΈŽε°‘ι‡&eη‘«η£Ί&rδΈ€εŒη†”η‚ΌοΌŒε³ε―εˆΆζˆ&d橑胢村&r。εƒζ˜―η”΅ηΌ†η»ηΌ˜ε€„η†ηš„η†ζƒ³ζζ–™οΌŒδΉŸζ˜―θΏˆε…₯&2甡气既代&r及后续阢ζ΅ζ‰€δΈε―ζˆ–ηΌΊηš„θ΅„ζΊγ€‚", + "quests.tfg_tips.create_rubber_ingot.desc": "使用&bηœŸη©Ίθ…”ε€&rεΉΆθΎ…δ»₯ι’ε€–εŠ ηƒ­οΌŒδ½ ε―δ»₯ι€šθΏ‡η‰Ήεšε·₯θ‰Ίε°†ε„η§ζ ‘ζœ¨δΊ§η”Ÿηš„&aδΉ³θƒΆ&r加ε·₯成&dη”Ÿζ©‘θƒΆζœ«&rγ€‚ιšεŽοΌŒεœ¨&bεˆι‡‘ε†Άη‚Όη‚‰&rδΈ­ε°†3δ»½&dη”Ÿζ©‘θƒΆζœ«&rδΈŽε°‘ι‡&eη‘«η£Ί&rδΈ€εŒη†”η‚ΌοΌŒε³ε―εˆΆζˆ&d橑胢村&r。εƒζ˜―η”΅ηΌ†η»ηΌ˜ε€„η†ηš„η†ζƒ³ζζ–™οΌŒδΉŸζ˜―θΏˆε…₯&2甡气既代&r及后续阢ζ΅ζ‰€δΈε―ζˆ–ηΌΊηš„θ΅„ζΊγ€‚\n\n&9提瀺:&rιšη€θΏ›η¨‹ζŽ¨θΏ›οΌŒε°†ε‡ΊηŽ°ε€šη§δ½Ώθ―₯桁程更廉价、更η€δΎΏηš„方法。θ°εΎ—εΈΈζŸ₯ηœ‹EMIοΌδ½ ε°†ι•ΏζœŸδ½Ώη”¨ζ©‘θƒΆοΌŒε› ζ­€εΎˆε€ΌεΎ—ε°†ε…Άθ‡ͺεŠ¨εŒ–γ€‚", "quests.tfg_tips.transportation.title": "δΊ€ι€šε·₯ε…·", "quests.tfg_tips.transportation.subtitle": "η©Ώζ’­εΉΏθ’€δΈ–η•Œ", "quests.tfg_tips.transportation.desc": "δΈ–η•ŒιžεΈΈεΊžε€§οΌŒδ½ ε―θƒ½ιœ€θΏœθ‘Œε―»ζ‰Ύη‰Ήεšη”Ÿε­˜ε‘ε±•θ΅„ζΊγ€‚ζœ¬θŠ‚ζ¨‘η»„ζδΎ›ε€šη§δΊ€ι€šε·₯具选择。", @@ -3757,8 +4661,8 @@ "quests.tfg_tips.glider.subtitle": "θΏ™δΈζ˜―θ’ι‡ŽδΉ‹ζ―", "quests.tfg_tips.glider.desc": "&dζ‚¬ζŒ‚εΌζ»‘ηΏ”ηΏΌ&rε―η”¨δΊŽη©ΊδΈ­ζ»‘ηΏ”γ€‚θ™½η„Άδ½ &cζ— ζ³•ζε‡ι«˜εΊ¦&rοΌŒδ½†δ»Žι«˜ε€„θ·ƒδΈ‹ζ—ΆοΌŒεƒε°†ζˆδΈΊι•Ώι€”η©ΏθΆŠηš„η»δ½³ε·₯具。\n与&bε–·ζ°”θƒŒεŒ…&rζ˜―η»ι…οΌ", "quests.tfg_tips.reinforced_glider.title": "εΌΊεŒ–ζ»‘ηΏ”ηΏΌ", - "quests.tfg_tips.reinforced_glider.subtitle": "ιž˜ηΏ…η”¨εΎ—ε€Ό...?", - "quests.tfg_tips.reinforced_glider.desc": "ε°†&6HV&r阢ζ΅εˆΆδ½œηš„&aιž˜ηΏ…&r与&aζ‚¬ζŒ‚εΌζ»‘ηΏ”ηΏΌ&rη»“εˆοΌŒθŽ·εΎ—&dεΌΊεŒ–ζ»‘ηΏ”ηΏΌ&rγ€‚θ€δΉ…ζ›΄ι«˜οΌŒι€ŸεΊ¦δΈŠι™ζ›΄ι«˜γ€‚", + "quests.tfg_tips.reinforced_glider.subtitle": "轻如鸿毛!", + "quests.tfg_tips.reinforced_glider.desc": "&dεΌΊεŒ–ζ‚¬ζŒ‚ζ»‘ηΏ”ηΏΌ&r是&aζ‚¬ζŒ‚ζ»‘ηΏ”ηΏΌ&rηš„ζ”ΉθΏ›η‰ˆζœ¬γ€‚εƒι‡‡η”¨δΊ†ε‡ηΊ§ηš„&a铝&rεˆΆζ‘†ζžΆοΌŒδ»₯εŠη”±&aεΌΊεŒ–εΈƒζ–™&rζˆ–&a轻质布料&rεˆΆζˆηš„ηΏΌι’οΌŒηŽ°εœ¨δ½ ε―δ»₯δ»₯&cεŒε€ι€ŸεΊ¦&r翱翔倩际!\nεƒδΉŸζ―”ζ™ι€šζ»‘ηΏ”ηΏΌζ‹₯ζœ‰&cζ›΄ι«˜ηš„θ€δΉ…εΊ¦&rοΌŒεΉΆδΈ”ε―δ»₯εœ¨η»„θ£…ζœΊδΈ­&cδΏε€&r。\n\n&3δΈ“δΈšζη€ΊοΌš&r\nδ½Ώη”¨εœ¨&4εΉ½ε†₯δΉ‹εœ°&rη»΄εΊ¦θŽ·εΎ—ηš„&a丝质布料&rζˆ–&a幻影丝&rοΌŒθƒ½εœ¨εˆΆδ½œε’ŒδΏε€ζ—Άε°†εΈƒζ–™ζΆˆθ€—ι™δ½Ž&eδΈ‰εˆ†δΉ‹δΊŒ&r!\n当你进ε…₯&6HV&r阢ζ΅εŽοΌŒδΉŸε―δ»₯使用&aθšε·±ε†…ι…°θƒΊεΈƒζ–™&rδ½œδΈΊε…ΆδΈ­δΈ€η§εΈƒζ–™οΌŒεΉΆδΊ«ε—ζΆˆθ€—ι™δ½Žηš„ζ•ˆζžœγ€‚", "quests.tfg_tips.immersive_aircraft.title": "ζ²‰ζ΅ΈεΌι£žζœΊ", "quests.tfg_tips.immersive_aircraft.subtitle": "ηΏ±ηΏ”ε€©η©ΊοΌŒι£Žζ Όη‹¬ε…·", "quests.tfg_tips.immersive_aircraft.desc": "&2ζ²‰ζ΅ΈεΌι£žζœΊ&rζ¨‘η»„δΈ“ζ³¨δΊŽι£žζœΊοΌŒθ©δ½ θƒ½ε€ŸηΏ±ηΏ”ε€©η©Ίθ·¨θΆŠι•Ώι€”γ€‚", @@ -3767,7 +4671,7 @@ "quests.tfg_tips.aircraft_upgrades.desc": "&2ζ²‰ζ΅ΈεΌι£žζœΊ&r配倇&aι£žζœΊε‡ηΊ§&r系统,可ε‰θ£…升级樑块ζ₯ζε‡ι£žζœΊε±žζ€§οΌŒε¦‚ι€ŸεΊ¦γ€θ΅·ι£žι€ŸεΊ¦γ€η‡ƒζ–™ζΆˆθ€—η­‰γ€‚ε‡ηΊ§εˆ†δΈ€η§η±»εž‹οΌš&bζ™ι€šεž‹&rε’Œ&dεˆ†ηΊ§εž‹&r。\n\nζœ¬δ»»εŠ‘θ¦ζ±‚ηš„ζ˜―&bζ™ι€šεž‹&rε‡ηΊ§οΌŒδ½ θƒ½ι›†ι½ε…¨ιƒ¨ε—οΌŸ", "quests.tfg_tips.steam_upgrades.title": "ι£žζœΊε‡ηΊ§οΌšθ’Έζ±½ηΊ§", "quests.tfg_tips.steam_upgrades.subtitle": "ζ²‰ζ΅ΈεΌι£žζœΊι‡θ§ζ Όι›·η§‘ζŠ€εˆ†ηΊ§δ½“η³»οΌ", - "quests.tfg_tips.steam_upgrades.desc": "η¬¬δΊŒη§ι£žζœΊε‡ηΊ§ζ˜―&dεˆ†ηΊ§ε‡ηΊ§&rγ€‚θΏ™δΊ›εŒΉι…&3ζ Όι›·η§‘ζŠ€&rεˆ†ηΊ§η³»η»ŸοΌŒδ»Ž&8θ’Έζ±½ηΊ§&r到&5EVηΊ§&r。\n\nθ’Έζ±½ε‡ηΊ§ζ˜―ζœ€η€ε•δΈ”ζœ€ζ—©ε―εˆΆδ½œηš„οΌŒθ‡³ε°‘ιœ€ζŽŒζ‘&bι»‘ι’’&rη›Έε…³ηŸ₯识。\n\n&dθ’Έζ±½εŠ¨εŠ›θˆͺη©ΊεΌ•ζ“Ž&rη”¨δΊŽεˆΆι€ ζ›΄η²Ύε―†ηš„ι£žζœΊοΌˆε¦‚&e双翼机&rε’Œ&cζˆ˜ζ–—ι£žθ‰‡&r)。", + "quests.tfg_tips.steam_upgrades.desc": "η¬¬δΊŒη§ι£žζœΊε‡ηΊ§ζ˜―&dεˆ†ηΊ§ε‡ηΊ§&rγ€‚θΏ™δΊ›εŒΉι…&3ζ Όι›·η§‘ζŠ€&rεˆ†ηΊ§η³»η»ŸοΌŒδ»Ž&7θ’Έζ±½ηΊ§&r到&5EVηΊ§&r。\n\nθ’Έζ±½ε‡ηΊ§ζ˜―ζœ€η€ε•δΈ”ζœ€ζ—©ε―εˆΆδ½œηš„οΌŒθ‡³ε°‘ιœ€ζŽŒζ‘&bι»‘ι’’&rη›Έε…³ηŸ₯识。\n\n&dθ’Έζ±½εŠ¨εŠ›θˆͺη©ΊεΌ•ζ“Ž&rη”¨δΊŽεˆΆι€ ζ›΄η²Ύε―†ηš„ι£žζœΊοΌˆε¦‚&e双翼机&rε’Œ&cζˆ˜ζ–—ι£žθ‰‡&r)。", "quests.tfg_tips.steam_upgrades.task": "δ»»δ½•θ’Έζ±½ηΊ§ι£žζœΊε‡ηΊ§", "quests.tfg_tips.lv_upgrades.title": "ι£žζœΊε‡ηΊ§οΌšLVηΊ§", "quests.tfg_tips.lv_upgrades.subtitle": "ηΊ’δΈŽθ“οΌŒθ‚―εšδΈε†²ηͺγ€‚", @@ -3811,7 +4715,7 @@ "quests.tfg_tips.biplane.desc": "&3双翼机&r是&bη»ζ΅Žεž‹ι£žζœΊ&rηš„η›΄ζŽ₯ε‡ηΊ§η‰ˆοΌŒη”¨&aζœΊθΊ«γ€θ’Έζ±½εŠ¨εŠ›θˆͺη©ΊεΌ•ζ“Ž&rε’Œ&aι•€ι“ι£žζœΊθžΊζ—‹ζ‘¨&rεˆΆδ½œγ€‚\n\n配倇&b16δΈͺ物品栏位&r,&a4δΈͺ升级槽位&rε’Œ&c1δΈͺ武器槽位&rγ€‚δΈŽ&dη»ζ΅Žεž‹ι£žζœΊ&r不同,&3双翼机&rε―ι€šθΏ‡δΈ“η”¨ζ§½δ½&4使用火η­εŠ©ζŽ¨&r。", "quests.tfg_tips.scarlet_biplane.title": "猩纒双翼机", "quests.tfg_tips.scarlet_biplane.subtitle": "什人叹为观歒", - "quests.tfg_tips.scarlet_biplane.desc": "&3猩纒双翼机&r是&b飞机&rηš„δΈ€η§η»ˆζžε‡ηΊ§ε½’ζ€δΉ‹δΈ€οΌŒιœ€&6HV&r组仢。\n\n配倇&b27δΈͺ物品栏位&r,&a4δΈͺ升级槽位&r,&c2δΈͺ武器槽位&r,δ»₯εŠε¦‚ζ™ι€šεŒηΏΌζœΊηš„&4助推槽位&r。\n\nθ™½η„Άι€ δ»·ζ˜‚θ΄΅οΌŒδ½†&3猩纒双翼机&rδ»₯ζ›΄ι«˜ηš„θ€δΉ…εΊ¦γ€ζœ€ε€§ι€ŸεΊ¦ε’Œζ•΄δ½“ι€Όζ ΌεΌ₯θ‘₯了这一点。", + "quests.tfg_tips.scarlet_biplane.desc": "&3猩纒双翼机&r是&b飞机&rηš„δΈ€η§η»ˆζžε‡ηΊ§ε½’ζ€δΉ‹δΈ€οΌŒιœ€&bMV&r组仢。\n\n配倇&b27δΈͺ物品栏位&r,&a4δΈͺ升级槽位&r,&c2δΈͺ武器槽位&r,δ»₯εŠε¦‚ζ™ι€šεŒηΏΌζœΊηš„&4助推槽位&r。\n\nθ™½η„Άι€ δ»·ζ˜‚θ΄΅οΌŒδ½†&3猩纒双翼机&rδ»₯ζ›΄ι«˜ηš„θ€δΉ…εΊ¦γ€ζœ€ε€§ι€ŸεΊ¦ε’Œζ•΄δ½“ι€Όζ ΌεΌ₯θ‘₯了这一点。", "quests.tfg_tips.aluminium_hopper.title": "ι“εˆΆζΌζ–—ζœΊ", "quests.tfg_tips.aluminium_hopper.subtitle": "θ½»εˆ°θƒ½ζ΅εœ¨ζ°΄δΈŠοΌ", "quests.tfg_tips.aluminium_hopper.desc": "&3ι“εˆΆζΌζ–—ζœΊ&r是&b飞机&rηš„δΈ€η§η»ˆζžε‡ηΊ§ε½’ζ€δΉ‹δΈ€οΌŒιœ€&6HV&r组仢。\n\n配倇&b16δΈͺ物品栏位&r,&a4δΈͺ升级槽位&r,&c2δΈͺ武器槽位&r,3δΈͺ座位,δ»₯εŠε¦‚ζ™ι€šεŒηΏΌζœΊηš„&4助推槽位&r。\n\nθ™½η„Άι€ δ»·ζ˜‚θ΄΅οΌŒδ½†&3ι“εˆΆζΌζ–—ζœΊ&r配η½δΊ†3δΈͺεΊ§δ½οΌŒδΈ”ζ‹₯ζœ‰ζ°΄δΈŠη€ι™†θƒ½εŠ›γ€‚", @@ -3823,7 +4727,7 @@ "quests.tfg_tips.firmaciv_info.desc": "&3羀峦传说:θˆͺζ΅·ζ–‡ζ˜Ž&r樑组配倇了4η§δΈεŒηš„ε―Όθˆͺε·₯ε…·οΌŒζ―δΈ€η§ιƒ½θƒ½δΈΊδ½ ζδΎ›εœ¨δΈ–η•ŒδΈ­ζ‰€ε€„δ½η½ηš„重要俑息。\nεŒ…ζ‹¬&dε…­εˆ†δ»ͺ&r、&dι’†θˆͺε‘˜ζ—Άθ‘&r、&d晴雨葨&rε’Œ&dζŒ‡ε—ι’ˆ&rοΌ›ε…³δΊŽθΏ™δΊ›ε·₯ε…·ηš„ζ›΄ε€šδΏ‘ζ―οΌŒθ―·ζŸ₯ι˜…&2ι‡Žε€–ζŒ‡ε—&r。\n\n&3&lθƒŒζ™―ηŸ₯θ―†οΌš&r&o默θ€ζƒ…ε†΅δΈ‹οΌŒFirma:CivδΌšη§»ι™€εζ ‡ζ˜Ύη€ΊοΌŒδ»₯促使你使用兢导θˆͺε·₯ε…·γ€‚δ½†εœ¨ζ­€ε€„ζˆ‘δ»¬ζ— ζ³•θΏ™ζ ·εšοΌŒζ‰€δ»₯οΌŒε‘ƒοΌŒε¦‚ζžœδ½ ζƒ³δ½“ιͺŒζ²‰ζ΅ΈεΌθ§’色ζ‰ζΌ”ηš„θ―οΌŒε°±η”¨η”¨εƒδ»¬ε§γ€‚", "quests.tfg_tips.warfare.title": "桷战", "quests.tfg_tips.warfare.subtitle": "ε…¨θˆ°η«η‚齐射!", - "quests.tfg_tips.warfare.desc": "你可δ»₯δΈΊ&bε•ζ‘…ηΊ΅εΈ†θˆΉ&r配倇&dεŠ ε†œη‚&r与η‚εΌΉοΌŒδ»₯δΎΏε°†η›ζ ‡θ½°ζˆη’Žη‰‡γ€‚\nε‘ε°„εŠ ε†œη‚ιœ€θ¦ε…ˆθ£…ε…₯&a火药&r、&aη²—εˆΆηΊΈ&rε’Œ&aη‚εΌΉ&rοΌŒη„ΆεŽη”¨&cζ‰“η«ηŸ³&r点燃引俑。", + "quests.tfg_tips.warfare.desc": "你可δ»₯δΈΊ&bε•ζ‘…ηΊ΅εΈ†θˆΉ&r配倇&dεŠ ε†œη‚&r与η‚εΌΉοΌŒδ»₯δΎΏε°†η›ζ ‡θ½°ζˆη’Žη‰‡γ€‚\nε‘ε°„εŠ ε†œη‚ιœ€θ¦ε…ˆθ£…ε…₯&a火药&r、&aη²—εˆΆηΊΈ&rε’Œ&aη‚εΌΉ&rοΌŒη„ΆεŽη”¨&cζ‰“η«ηŸ³&r点燃引俑。\n\nζ²‘ζœ‰&bεΈ†θˆΉ&rοΌŸεˆ«ζ‹…εΏƒοΌη«η‚δΉŸε―δ»₯ζ”Ύη½εœ¨εœ°ι’上,幢δ»₯ε’Œεœ¨&bεΈ†θˆΉ&rδΈŠεŒζ ·ηš„ζ–ΉεΌε‘ε°„γ€‚", "quests.tfg_tips.kayak_materials.title": "ηšεˆ’艇", "quests.tfg_tips.kayak_materials.subtitle": "η»™θ‡ͺε·±εΌ„θ‰˜ηšεˆ’艇", "quests.tfg_tips.kayak_materials.desc": "&dηšεˆ’艇&r是第二η€ε•ηš„θˆΉοΌŒιœ€η”¨&b蜑&r刢作&a防水ηš&rγ€‚δ½œδΈΊ&cε”―δΈ€&rε―ζ‹Ύε–ηš„θˆΉεͺοΌŒθ™½η„Άδ»…ι™&dε•δΊΊδΉ˜ε&rοΌŒδ½†εœ¨ι’’ι“ζ—Άδ»£ηš„&dε•ζ‘…ηΊ΅εΈ†θˆΉ&rε‰ζ˜―ζœ€εΏ«ηš„θˆΉοΌ", @@ -3897,7 +4801,7 @@ "quests.tfg_tips.beehive.desc": "θ¦εΌ€ε―δ½ ηš„ε…»θœ‚δΉ‹ζ—…οΌŒδ½ ιœ€θ¦ε‡†ε€‡δΈ€δΈͺ&bθœ‚η±&rε’ŒδΈ€ε—&aε·’θ„Ύ&r。\nδΈŽεŽŸη‰ˆγ€Šζˆ‘ηš„δΈ–η•Œγ€‹δΈεŒοΌŒθœ‚ε·’δΈδΌšθ‡ͺη„Άη”ŸζˆοΌŒθœœθœ‚εͺ会在玩εΆζ”Ύη½ηš„、且已蒫&eθœ‚εŽ&rε…₯ι©»ηš„&bθœ‚η±&rε·’θ„ΎδΈ­θ―žη”Ÿγ€‚θœ‚εŽε…₯ι©»δ½ ε·’θ„Ύηš„ε‡ ηŽ‡ε–ε†³δΊŽιšζœΊζ•°οΌŒδ½†δ½ ε―δ»₯εœ¨θœ‚η±ε‘¨ε›΄ζ”Ύη½&d花&rζ₯ζι«˜ζˆεŠŸηŽ‡γ€‚\n\nδΈ€ζ—¦δ½ ηš„ε·’θ„Ύθ’«θœ‚εŽε…₯驻,εƒε°±δΌšεΌ€ε§‹ε­•θ‚²θœœθœ‚εΉΆη”ŸδΊ§θœ‚θœœγ€‚", "quests.tfg_tips.not_the_bees.title": "ε…»θœ‚δΊΊζŠ€η”²", "quests.tfg_tips.not_the_bees.subtitle": "δΈθ¦θœœθœ‚οΌ", - "quests.tfg_tips.not_the_bees.desc": "θœœθœ‚ε―δΈδΉζ„εœ¨θ’«δΊΊζ‰“ζ‰°ζ—ΆοΌŒθΏ˜δ»»η”±ε―Ήζ–Ήζ”Άε‰²θ‡ͺε·±εθ΄΅ηš„θœ‚θœœδΈŽθœ‚θœ‘γ€‚ζœ‰δΈ‰η§ζ–Ήζ³•θƒ½θ©δ½ ε‰ε…¨ι‡‡ζ”ΆοΌš\n\n*&dεœ¨ε€œι—΄ζ”ΆθŽ·&r\n*&d点燃θ₯火&r\n*&dη©Ώζˆ΄ε…»θœ‚ζŠ€η”²&r", + "quests.tfg_tips.not_the_bees.desc": "θœœθœ‚ε―δΈδΉζ„εœ¨θ’«δΊΊζ‰“ζ‰°ζ—ΆοΌŒθΏ˜δ»»η”±ε―Ήζ–Ήζ”Άε‰²θ‡ͺε·±εθ΄΅ηš„θœ‚θœœδΈŽθœ‚θœ‘οΌŒζˆ–ζ˜―ζŒͺ动εƒδ»¬ηš„ε·’θ„Ύγ€‚ζœ‰δΈ‰η§ζ–Ήζ³•θƒ½θ©δ½ ε‰ε…¨ι‡‡ζ”ΆοΌš\n\n*&dεœ¨ε€œι—΄ζ”ΆθŽ·&r\n*&d点燃θ₯火&r\n*&dη©Ώζˆ΄ε…»θœ‚ζŠ€η”²&r", "quests.tfg_tips.not_the_bees.task": "ζˆ‘δΌšη‚Ήη‡ƒθ₯η«ζˆ–η­‰εˆ°ε€œεΉ•ι™δΈ΄", "quests.tfg_tips.honey.title": "θœ‚θœœ", "quests.tfg_tips.honey.subtitle": "ε“¦οΌŒζ‰“ζ‰°δΊ†...", @@ -4020,9 +4924,9 @@ "quests.tfg_tips.blue_steel_diving.title": "θ“ι’’ζ½œζ°΄θ£…ε€‡", "quests.tfg_tips.blue_steel_diving.subtitle": "εŒηΎŽη”¨δΊŽζ΄—δΈͺζΈ©ζš–ηš„ε²©ζ΅†ζ΅΄", "quests.tfg_tips.blue_steel_diving.desc": "&9θ“ι’’ζ½œζ°΄θ£…ε€‡&rζ˜―η‰ΉζŠζŠ€η”²ε₯—θ£…οΌŒθ©δ½ εœ¨η©Ώη€ζ—ΆεŒε…¨δΈε—&c岩框&rε½±ε“γ€‚ι™δ½Žηš„&aζΈ©ζš–ε€Ό&rδ½†ι«˜&bιš”ηƒ­ε€Ό&rζ„ε‘³η€δ½ εœ¨&4εΉ½ε†₯δΉ‹εœ°&rθƒ½δΏζŒιžεΈΈη¨³εšηš„核心体温。", - "quests.tfg_tips.juicer.title": "榨汁机", + "quests.tfg_tips.juicer.title": "榨汁器", "quests.tfg_tips.juicer.subtitle": "εΊ”ζ€₯ι₯ζ°΄", - "quests.tfg_tips.juicer.desc": "&3榨汁机&rζ˜―δΈ€η§η‰ΉζŠε·₯ε…·οΌŒθƒ½ζε–&a水果&r与&aθ˜‘θ‡&rδΈ­θ•΄ε«ηš„ζ°΄εˆ†οΌŒθ½¬εŒ–δΈΊε―ι₯η”¨ηš„&dζ°΄&r。\n\n在&4εΉ½ε†₯δΉ‹εœ°&rοΌŒζ°΄ζΊδ»…εΈΈθ§δΊŽδΈŠε±‚εŒΊεŸŸγ€‚ιšη€δΈζ–­ζ·±ε…₯οΌŒζ°΄θ΅„ζΊε°†ζ„ˆε‘η¨€ηΌΊγ€‚δΈθΏ‡οΌŒ&aθ˜‘θ‡&r在&4εΉ½ε†₯δΉ‹εœ°&rδΈ­ιšε€„ε―θ§οΌŒζœ‰δΊ†εƒοΌŒδ½ εΊ”θ―₯δΈθ‡³δΊŽζΈ΄ζ­»οΌ", + "quests.tfg_tips.juicer.desc": "&3榨汁器&rζ˜―δΈ€η§η‰ΉζŠε·₯ε…·οΌŒθƒ½ζε–&a水果&r与&aθ˜‘θ‡&rδΈ­θ•΄ε«ηš„ζ°΄εˆ†οΌŒθ½¬εŒ–δΈΊε―ι₯η”¨ηš„&dζ°΄&r。\n\n在&4εΉ½ε†₯δΉ‹εœ°&rοΌŒζ°΄ζΊδ»…εΈΈθ§δΊŽδΈŠε±‚εŒΊεŸŸγ€‚ιšη€δΈζ–­ζ·±ε…₯οΌŒζ°΄θ΅„ζΊε°†ζ„ˆε‘η¨€ηΌΊγ€‚δΈθΏ‡οΌŒ&aθ˜‘θ‡&r在&4εΉ½ε†₯δΉ‹εœ°&rδΈ­ιšε€„ε―θ§οΌŒζœ‰δΊ†εƒοΌŒδ½ εΊ”θ―₯δΈθ‡³δΊŽζΈ΄ζ­»οΌ", "quests.tfg_tips.how_to_go_beneath.title": "如何前往幽ε†₯δΉ‹εœ°", "quests.tfg_tips.how_to_go_beneath.subtitle": "ζ— ιœ€ι»‘ζ›œηŸ³", "quests.tfg_tips.how_to_go_beneath.desc": "到达&4εΉ½ε†₯δΉ‹εœ°&rοΌŒδ½ εΏ…ι‘»εœ¨&bδΈ»δΈ–η•ŒεŸΊε²©&rη«™δΈŠε‡ η§’ι’ŸοΌŒδΉ‹εŽδ½ ε°†&o传送&rεˆ°δΈ‹η•Œγ€‚\n\n&3&l提瀺:&r&oδ½ ε°†δΏζŒεŒε…¨η›ΈεŒηš„Xε’ŒZεζ ‡οΌŒζ‰€δ»₯εƒε―θƒ½δΌ ι€δ½ θΏ›δΈ€δΊ›ε²©ηŸ³γ€‚δΈθΏ‡εƒδΌšη»™δ½ 3x3x3η©Ίι—΄ε·₯δ½œοΌŒζ‰€δ»₯η‘δΏεΈ¦δΈ€δΊ›ζ”―ζ’‘η‰©ζŒ–ιš§ι“ε‡ΊεŽ»οΌ", @@ -4055,7 +4959,7 @@ "quests.tfg_tips.tools_tips.subtitle": "ζ‹§η΄§ε’ŒζΎεΌ€ηš„ε…₯ι—¨ζŒ‡ε—", "quests.tfg_tips.tools_tips.tools.title": "ε·₯ε…·", "quests.tfg_tips.tools_tips.tools.subtitle": "εζ­£ιƒ½ζ˜―δΈͺ销子", - "quests.tfg_tips.tools_tips.tools.desc": "δΊΊη±»δΈŽεŠ¨η‰©ηš„ε”―δΈ€εŒΊεˆ«εœ¨δΊŽζˆ‘δ»¬ε―Ή&l&bε·₯ε…·&rηš„θΏη”¨γ€‚&8&oι™€δΊ†ηŒΏγ€ηŒ΄ε­γ€ζ΅·θ±šγ€δΉŒιΈ¦γ€ζ°΄η­γ€η« ι±Ό.......&rε–„η”¨δ½ ηš„ζŠ€θƒ½δΈŽε·₯ε…·εŽ»εΎζœθΏ™δΈͺδΈ–η•ŒοΌŒι‘ΊδΎΏδΉŸη»™&5θ‡ͺε·±&rηœδΊ›εŠ›ζ°”γ€‚", + "quests.tfg_tips.tools_tips.tools.desc": "δΊΊη±»δΈŽεŠ¨η‰©ηš„ε”―δΈ€εŒΊεˆ«εœ¨δΊŽζˆ‘δ»¬ε―Ή&l&bε·₯ε…·&rηš„θΏη”¨γ€‚&7&oι™€δΊ†ηŒΏγ€ηŒ΄ε­γ€ζ΅·θ±šγ€δΉŒιΈ¦γ€ζ°΄η­γ€η« ι±Ό.......&rε–„η”¨δ½ ηš„ζŠ€θƒ½δΈŽε·₯ε…·εŽ»εΎζœθΏ™δΈͺδΈ–η•ŒοΌŒι‘ΊδΎΏδΉŸη»™&5θ‡ͺε·±&rηœδΊ›εŠ›ζ°”γ€‚", "quests.tfg_tips.tools_tips.seed_oil.title": "灯油:种子油", "quests.tfg_tips.tools_tips.seed_oil.subtitle": "燃烧既闻衷ζ₯不错", "quests.tfg_tips.tools_tips.seed_oil.desc": "&d种子油&rε°†ζŒη»­δ»€δΊΊε½±ε“ζ·±εˆ»ηš„&c72&r倩。", @@ -4074,5 +4978,27 @@ "quests.tfg_tips.tools_tips.harvest_basket.title": "ζ”ΆθŽ·η―", "quests.tfg_tips.tools_tips.harvest_basket.subtitle": "ηŒη»™ε„δ½η²Ύη›Šζ±‚η²Ύηš„ζ΄Ύη±»ηƒ˜η„™εΈˆγ€‚", "quests.tfg_tips.tools_tips.harvest_basket.task": "任何#tfg:harvester", - "quests.tfg_tips.tools_tips.harvest_basket.desc": "&l&2ζ”ΆθŽ·η―&r&rζ˜―δΈ“δΈΊ&5TFG&rζ‰“ι€ ηš„ε…¨ζ–°ε·₯具!εͺιœ€ε³ι”δΈ€ζ¬‘οΌŒδΎΏε―δ½Ώη”¨η―ε­ζ”ΆθŽ·ζ•΄ζ£΅ζ ‘ζˆ–ζ•΄ζ ͺηŒζœ¨ηš„ζžœεžοΌζ™ι€š&6ζ”ΆθŽ·η―&rηš„εŸΊη‘€θ€δΉ…εΊ¦δΈΊ&n128&rοΌŒθ€Œ&3ι“εˆΆζ”ΆθŽ·η―&rεœ¨δ½Ώη”¨ζ—ΆδΈδΌšζŸθ€—θ€δΉ…εΊ¦γ€‚" + "quests.tfg_tips.tools_tips.harvest_basket.desc": "&l&2ζ”ΆθŽ·η―&r&rζ˜―δΈ“δΈΊ&5TFG&rζ‰“ι€ ηš„ε…¨ζ–°ε·₯具!εͺιœ€ε³ι”δΈ€ζ¬‘οΌŒδΎΏε―δ½Ώη”¨η―ε­ζ”ΆθŽ·ζ•΄ζ£΅ζ ‘ζˆ–ζ•΄ζ ͺηŒζœ¨ηš„ζžœεžοΌζ™ι€š&6ζ”ΆθŽ·η―&rηš„εŸΊη‘€θ€δΉ…εΊ¦δΈΊ&n128&rοΌŒθ€Œ&3ι“εˆΆζ”ΆθŽ·η―&rεœ¨δ½Ώη”¨ζ—ΆδΈδΌšζŸθ€—θ€δΉ…εΊ¦γ€‚", + "quests.tfg_tips.transportation_tips.rnr_plow.title": "铺路车", + "quests.tfg_tips.transportation_tips.rnr_plow.subtitle": "η½—ι©¬δΊΊδΌšζ„Ÿεˆ°ιͺ„ε‚²ηš„γ€‚", + "quests.tfg_tips.transportation_tips.rnr_plow.desc": "δΏθ·―ε›Ίη„ΆηΎŽε¦™οΌδ½†εε€ε³ι”ι“Ίθ·―ιšΎε…δ»€δΊΊη–²ζƒ«γ€‚δΈŽε…ΆδΊ²θ‡ͺ为马匹δΏθ·―,&3何不θ©ι©¬εŒΉδΈΊδ½ η­‘ε°±ι€šι€”&r!\n&d铺路车&rζ˜―δΈ“δΈΊTFGεΌ€ε‘ηš„η‹¬η‰Ή&cAstikor运输车&r。歀车可θ‡ͺεŠ¨ε»Ίι€ &cRnRζ¨‘η»„ηš„ι“θ·―&rοΌŒζ”―ζŒε―θ°ƒθŠ‚θ·―ι’ε½εΊ¦οΌŒη”šθ‡³ι…ε€‡ιšζœΊεŒ–η­‘θ·―樑式。", + "quests.tfg_tips.tools_tips.mattocks.title": "ιΉ€ε˜΄ι”„", + "quests.tfg_tips.tools_tips.mattocks.subtitle": "δ»…ι ι“²ε­ιšΎδ»₯θƒœδ»»γ€‚", + "quests.tfg_tips.tools_tips.mattocks.task0": "δ»»δ½•ιΉ€ε˜΄ι”„", + "quests.tfg_tips.tools_tips.mattocks.task1": "任何铺路材料", + "quests.tfg_tips.tools_tips.mattocks.desc": "&cιΉ€ε˜΄ι”„&r是你在TFGδΈ­δΏη­‘ι“θ·―ηš„ε…³ι”ε·₯ε…·γ€‚δΈŽε…Άδ»–ηΎ€ε³¦δΌ θ―΄ε·₯ε…·η›ΈεŒοΌŒε―ι€šθΏ‡ζ¨‘ε…·ζ΅‡ι“ΈθŽ·εΎ—γ€‚δ½Ώη”¨ζ—Άιœ€ε°†ζ¨‘εΌεˆ‡ζ’οΌˆι»˜θ€ζŒ‰ι”οΌš&3&lN&r&r)至\"εŒζ•΄ζ–Ήε—\"樑式。\n你可δ»₯ε―Ήζ³₯εœŸζˆ–θ‰ζ–Ήε—ε³ι”η‚Ήε‡»ε°†ε…ΆεŽ‹εžγ€‚η„ΆεŽε°±ε―δ»₯ι“ΊθΎ&6η’ŽηŸ³εŸΊε±‚&rοΌŒζœ€εŽι“ΊδΈŠδ½ ζ‰€ι€‰ζ‹©ηš„ι“θ·―ι’ε±‚ζζ–™γ€‚", + "quests.tfg_tips.tools_tips.base_course.title": "εŸΊε±‚", + "quests.tfg_tips.tools_tips.base_course.subtitle": "ζ‰€ζœ‰δΌ˜θ΄¨θ·―ι’ηš„εŸΊηŸ³γ€‚", + "quests.tfg_tips.tools_tips.base_course.task": "ηœ‹ε‘εŸΊε±‚", + "quests.tfg_tips.tools_tips.gravel_roads.title": "砾石路", + "quests.tfg_tips.tools_tips.gravel_roads.subtitle": "钠簸之旅即将开启。", + "quests.tfg_tips.tools_tips.gravel_roads.task": "δ»»δ½•η ΎηŸ³θ·―ζζ–™", + "quests.tfg_tips.tools_tips.gravel_roads.desc": "将这些材料铺θΎδΊŽι“θ·―εŸΊε±‚εŽοΌŒε―ε½’ζˆθƒ½ζε‡&b&l10%%&r&rη§»εŠ¨ι€ŸεΊ¦ηš„ι“θ·―γ€‚", + "quests.tfg_tips.tools_tips.brick_roads.title": "ηŸ³η –θ·―", + "quests.tfg_tips.tools_tips.brick_roads.subtitle": "ζ»‘ζΏηŽ©εΆθ―·ε½“心。", + "quests.tfg_tips.tools_tips.brick_roads.task": "δ»»δ½•ηŸ³η –θ·―ζζ–™", + "quests.tfg_tips.tools_tips.brick_roads.desc": "将这些材料铺θΎδΊŽι“θ·―εŸΊε±‚εŽοΌŒε―ε½’ζˆθƒ½ζε‡&b&l20%%&r&rη§»εŠ¨ι€ŸεΊ¦ηš„ι“θ·―γ€‚", + "quests.tfg_tips.tools_tips.concrete_roads.title": "ζ··ε‡εœŸι“θ·―", + "quests.tfg_tips.tools_tips.concrete_roads.subtitle": "δ»˜ε‡Ίη»ˆζœ‰ε›žζŠ₯。", + "quests.tfg_tips.tools_tips.concrete_roads.desc": "ε°†&6ζΉΏζ··ε‡εœŸζ··εˆη‰©&rι“ΊθΎδΊŽι“θ·―εŸΊε±‚εŽοΌŒε―ε½’ζˆθƒ½ζε‡&b&l30%%&r&rη§»εŠ¨ι€ŸεΊ¦ηš„ι“θ·―γ€‚\n\nζ΅‡η­‘ζ··ε‡εœŸθ·―ι’ζ—Ά&4εŠ‘εΏ…θ°¨ζ…Ž&rοΌŒιœ€ι΅εΎͺθ―Έε€šθ§„θŒƒδ»₯η‘δΏθ·―ι’δΈδΌšεΌ€θ£‚ζˆ–ζŸζ―γ€‚ε…·δ½“ζ“δ½œθ―·ζŸ₯ι˜…&3ι‡Žε€–ζŒ‡ε—&rθŽ·ε–θ―¦η»†θ―΄ζ˜Žγ€‚" } \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/casings/machine_casing_power_casing.json b/kubejs/assets/tfg/models/block/casings/machine_casing_power_casing.json new file mode 100644 index 000000000..18d68ef40 --- /dev/null +++ b/kubejs/assets/tfg/models/block/casings/machine_casing_power_casing.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"tfg:block/casings/machine_casing_power_casing"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/lava_source.json b/kubejs/assets/tfg/models/block/lava_source.json new file mode 100644 index 000000000..48139f706 --- /dev/null +++ b/kubejs/assets/tfg/models/block/lava_source.json @@ -0,0 +1,65 @@ +{ + "credit": "Made with Blockbench", + "ambientocclusion": false, + "render_type": "cutout_mipped", + "textures": { + "0": "tfg:block/planets/venus/lava_source", + "particle": "tfg:block/planets/venus/lava_source" + }, + "elements": [ + { + "from": [0.8, 0, 8], + "to": [15.2, 16, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 8, 8], "rescale": true}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#0"} + } + }, + { + "from": [8, 0, 0.8], + "to": [8, 16, 15.2], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 8, 8], "rescale": true}, + "faces": { + "north": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 2.5], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 2.5], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/active_power_transformer.json b/kubejs/assets/tfg/models/block/machines/active_power_transformer.json new file mode 100644 index 000000000..c2960ee1c --- /dev/null +++ b/kubejs/assets/tfg/models/block/machines/active_power_transformer.json @@ -0,0 +1,86 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:active_power_transformer", + "texture_overrides": { + "all": "tfg:block/casings/machine_casing_power_casing" + }, + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/power_substation/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_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/power_substation/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_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/power_substation/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_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/power_substation/overlay_front_active_emissive" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/electric_greenhouse.json b/kubejs/assets/tfg/models/block/machines/electric_greenhouse.json index 9aec638bb..297392db3 100644 --- a/kubejs/assets/tfg/models/block/machines/electric_greenhouse.json +++ b/kubejs/assets/tfg/models/block/machines/electric_greenhouse.json @@ -1,90 +1,222 @@ { - "parent": "minecraft:block/block", - "loader": "gtceu:machine", - "machine": "tfg:electric_greenhouse", - "texture_overrides": { - "all": "gtceu:block/casings/steam/steel/side" - }, - "variants": { - "is_formed=false,recipe_logic_status=idle": { - "model": { - "parent": "gtceu:block/machine/template/cube_all/sided", - "textures": { - "all": "gtceu:block/casings/steam/steel/side", - "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front", - "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_emissive" - } - } + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:electric_greenhouse", + "texture_overrides": { + "all": "gtceu:block/casings/steam/steel/side" }, - "is_formed=false,recipe_logic_status=suspend": { - "model": { - "parent": "gtceu:block/machine/template/cube_all/sided", - "textures": { - "all": "gtceu:block/casings/steam/steel/side", - "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_paused", - "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_paused_emissive" + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/steam/steel/side", + "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front", + "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/steam/steel/side", + "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_paused", + "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_paused_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/steam/steel/side", + "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_active_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/steam/steel/side", + "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/steam/steel/side", + "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front", + "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/steam/steel/side", + "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_paused", + "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_paused_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/steam/steel/side", + "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/steam/steel/side", + "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_active_emissive" + } + } } - } }, - "is_formed=false,recipe_logic_status=waiting": { - "model": { - "parent": "gtceu:block/machine/template/cube_all/sided", - "textures": { - "all": "gtceu:block/casings/steam/steel/side", - "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_active", - "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_active_emissive" + "dynamic_renders": [ + { + "type": "gtceu:growing_plant", + "offsets": [ + [ + -2.0, + 1.0, + -1.0 + ], + [ + -1.0, + 1.0, + -1.0 + ], + [ + 0.0, + 1.0, + -1.0 + ], + [ + 1.0, + 1.0, + -1.0 + ], + [ + 2.0, + 1.0, + -1.0 + ], + [ + -2.0, + 1.0, + -2.0 + ], + [ + -1.0, + 1.0, + -2.0 + ], + [ + 0.0, + 1.0, + -2.0 + ], + [ + 1.0, + 1.0, + -2.0 + ], + [ + 2.0, + 1.0, + -2.0 + ], + [ + -2.0, + 1.0, + -3.0 + ], + [ + -1.0, + 1.0, + -3.0 + ], + [ + 0.0, + 1.0, + -3.0 + ], + [ + 1.0, + 1.0, + -3.0 + ], + [ + 2.0, + 1.0, + -3.0 + ], + [ + -2.0, + 1.0, + -4.0 + ], + [ + -1.0, + 1.0, + -4.0 + ], + [ + 0.0, + 1.0, + -4.0 + ], + [ + 1.0, + 1.0, + -4.0 + ], + [ + 2.0, + 1.0, + -4.0 + ], + [ + -2.0, + 1.0, + -5.0 + ], + [ + -1.0, + 1.0, + -5.0 + ], + [ + 0.0, + 1.0, + -5.0 + ], + [ + 1.0, + 1.0, + -5.0 + ], + [ + 2.0, + 1.0, + -5.0 + ] + ] } - } - }, - "is_formed=false,recipe_logic_status=working": { - "model": { - "parent": "gtceu:block/machine/template/cube_all/sided", - "textures": { - "all": "gtceu:block/casings/steam/steel/side", - "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_active", - "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_active_emissive" - } - } - }, - "is_formed=true,recipe_logic_status=idle": { - "model": { - "parent": "gtceu:block/machine/template/cube_all/sided", - "textures": { - "all": "gtceu:block/casings/steam/steel/side", - "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front", - "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_emissive" - } - } - }, - "is_formed=true,recipe_logic_status=suspend": { - "model": { - "parent": "gtceu:block/machine/template/cube_all/sided", - "textures": { - "all": "gtceu:block/casings/steam/steel/side", - "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_paused", - "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_paused_emissive" - } - } - }, - "is_formed=true,recipe_logic_status=waiting": { - "model": { - "parent": "gtceu:block/machine/template/cube_all/sided", - "textures": { - "all": "gtceu:block/casings/steam/steel/side", - "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_active", - "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_active_emissive" - } - } - }, - "is_formed=true,recipe_logic_status=working": { - "model": { - "parent": "gtceu:block/machine/template/cube_all/sided", - "textures": { - "all": "gtceu:block/casings/steam/steel/side", - "overlay_front": "gtceu:block/multiblock/implosion_compressor/overlay_front_active", - "overlay_front_emissive": "gtceu:block/multiblock/implosion_compressor/overlay_front_active_emissive" - } - } - } - } + ] } \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/ostrum_linear_accelerator.json b/kubejs/assets/tfg/models/block/machines/ostrum_linear_accelerator.json new file mode 100644 index 000000000..aed8c8b02 --- /dev/null +++ b/kubejs/assets/tfg/models/block/machines/ostrum_linear_accelerator.json @@ -0,0 +1,90 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:ostrum_linear_accelerator", + "texture_overrides": { + "all": "tfg:block/casings/machine_casing_mars" + }, + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_mars", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/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_mars", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_paused", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_paused_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_mars", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/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_mars", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/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_mars", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/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_mars", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_paused", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_paused_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_mars", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/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_mars", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_active_emissive" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/smr_generator.json b/kubejs/assets/tfg/models/block/machines/smr_generator.json new file mode 100644 index 000000000..bc0f0fd56 --- /dev/null +++ b/kubejs/assets/tfg/models/block/machines/smr_generator.json @@ -0,0 +1,90 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:smr_generator", + "texture_overrides": { + "all": "tfg:block/casings/machine_casing_desh_ptfe" + }, + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_desh_ptfe", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/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_desh_ptfe", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_paused", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_paused_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_desh_ptfe", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/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_desh_ptfe", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/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_desh_ptfe", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/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_desh_ptfe", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_paused", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_paused_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_desh_ptfe", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/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_desh_ptfe", + "overlay_front": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/gcym/large_centrifuge/overlay_front_active_emissive" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/steam_bloomery.json b/kubejs/assets/tfg/models/block/machines/steam_bloomery.json new file mode 100644 index 000000000..5227238d0 --- /dev/null +++ b/kubejs/assets/tfg/models/block/machines/steam_bloomery.json @@ -0,0 +1,86 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:steam_bloomery", + "texture_overrides": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks" + }, + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "tfg:block/machines/steam_bloomery/overlay_front" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "tfg:block/machines/steam_bloomery/overlay_front" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "tfg:block/machines/steam_bloomery/overlay_front_active", + "overlay_front_emissive": "tfg:block/machines/steam_bloomery/overlay_front_active" + } + } + }, + "is_formed=false,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "tfg:block/machines/steam_bloomery/overlay_front_active", + "overlay_front_emissive": "tfg:block/machines/steam_bloomery/overlay_front_active" + } + } + }, + "is_formed=true,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "tfg:block/machines/steam_bloomery/overlay_front" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "tfg:block/machines/steam_bloomery/overlay_front" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "tfg:block/machines/steam_bloomery/overlay_front_active", + "overlay_front_emissive": "tfg:block/machines/steam_bloomery/overlay_front_active" + } + } + }, + "is_formed=true,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "tfg:block/machines/steam_bloomery/overlay_front_active", + "overlay_front_emissive": "tfg:block/machines/steam_bloomery/overlay_front_active" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/steam_fuser.json b/kubejs/assets/tfg/models/block/machines/steam_fuser.json new file mode 100644 index 000000000..07f9b8670 --- /dev/null +++ b/kubejs/assets/tfg/models/block/machines/steam_fuser.json @@ -0,0 +1,110 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:steam_fuser", + "texture_overrides": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks" + }, + "dynamic_renders": [ + { + "type": "gtceu:boiler_multi_parts", + "casing_block": { + "Name": "gtceu:steam_machine_casing" + }, + "firebox_active": { + "Name": "gtceu:bronze_firebox_casing", + "Properties": { + "active": "true" + } + }, + "firebox_idle": { + "Name": "gtceu:bronze_firebox_casing", + "Properties": { + "active": "false" + } + } + } + ], + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/alloy_smelter/overlay_front", + "overlay_front_emissive": "gtceu:block/machines/alloy_smelter/overlay_front_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/alloy_smelter/overlay_front_paused", + "overlay_front_emissive": "gtceu:block/machines/alloy_smelter/overlay_front_paused_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/alloy_smelter/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/alloy_smelter/overlay_front_active_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/alloy_smelter/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/alloy_smelter/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/alloy_smelter/overlay_front", + "overlay_front_emissive": "gtceu:block/machines/alloy_smelter/overlay_front_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/alloy_smelter/overlay_front_paused", + "overlay_front_emissive": "gtceu:block/machines/alloy_smelter/overlay_front_paused_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/alloy_smelter/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/alloy_smelter/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/alloy_smelter/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/alloy_smelter/overlay_front_active_emissive" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/steam_presser.json b/kubejs/assets/tfg/models/block/machines/steam_presser.json new file mode 100644 index 000000000..b088103a0 --- /dev/null +++ b/kubejs/assets/tfg/models/block/machines/steam_presser.json @@ -0,0 +1,86 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:steam_presser", + "texture_overrides": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks" + }, + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/forge_hammer/overlay_front" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/forge_hammer/overlay_front" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/forge_hammer/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/forge_hammer/overlay_front_active_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/forge_hammer/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/forge_hammer/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/forge_hammer/overlay_front" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/forge_hammer/overlay_front" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/forge_hammer/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/forge_hammer/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/forge_hammer/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/forge_hammer/overlay_front_active_emissive" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/steam_squasher.json b/kubejs/assets/tfg/models/block/machines/steam_squasher.json new file mode 100644 index 000000000..e2b41d508 --- /dev/null +++ b/kubejs/assets/tfg/models/block/machines/steam_squasher.json @@ -0,0 +1,90 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:steam_squasher", + "texture_overrides": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks" + }, + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/compressor/overlay_front", + "overlay_front_emissive": "gtceu:block/machines/compressor/overlay_front_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/compressor/overlay_front", + "overlay_front_emissive": "gtceu:block/machines/compressor/overlay_front_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/compressor/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/compressor/overlay_front_active_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/compressor/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/compressor/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/compressor/overlay_front", + "overlay_front_emissive": "gtceu:block/machines/compressor/overlay_front_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/compressor/overlay_front", + "overlay_front_emissive": "gtceu:block/machines/compressor/overlay_front_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/compressor/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/compressor/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", + "overlay_front": "gtceu:block/machines/compressor/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/compressor/overlay_front_active_emissive" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/steam_thermal_centrifuge.json b/kubejs/assets/tfg/models/block/machines/steam_thermal_centrifuge.json new file mode 100644 index 000000000..270c629d8 --- /dev/null +++ b/kubejs/assets/tfg/models/block/machines/steam_thermal_centrifuge.json @@ -0,0 +1,110 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:steam_thermal_centrifuge", + "texture_overrides": { + "all": "gtceu:block/casings/gcym/industrial_steam_casing" + }, + "dynamic_renders": [ + { + "type": "gtceu:boiler_multi_parts", + "casing_block": { + "Name": "gtceu:industrial_steam_casing" + }, + "firebox_active": { + "Name": "gtceu:steel_firebox_casing", + "Properties": { + "active": "true" + } + }, + "firebox_idle": { + "Name": "gtceu:steel_firebox_casing", + "Properties": { + "active": "false" + } + } + } + ], + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/gcym/industrial_steam_casing", + "overlay_front": "gtceu:block/machines/thermal_centrifuge/overlay_front", + "overlay_front_emissive": "gtceu:block/machines/thermal_centrifuge/overlay_front_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/gcym/industrial_steam_casing", + "overlay_front": "gtceu:block/machines/thermal_centrifuge/overlay_front_paused", + "overlay_front_emissive": "gtceu:block/machines/thermal_centrifuge/overlay_front_paused_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/gcym/industrial_steam_casing", + "overlay_front": "gtceu:block/machines/thermal_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/thermal_centrifuge/overlay_front_active_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/gcym/industrial_steam_casing", + "overlay_front": "gtceu:block/machines/thermal_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/thermal_centrifuge/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/gcym/industrial_steam_casing", + "overlay_front": "gtceu:block/machines/thermal_centrifuge/overlay_front", + "overlay_front_emissive": "gtceu:block/machines/thermal_centrifuge/overlay_front_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/gcym/industrial_steam_casing", + "overlay_front": "gtceu:block/machines/thermal_centrifuge/overlay_front_paused", + "overlay_front_emissive": "gtceu:block/machines/thermal_centrifuge/overlay_front_paused_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/gcym/industrial_steam_casing", + "overlay_front": "gtceu:block/machines/thermal_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/thermal_centrifuge/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "gtceu:block/casings/gcym/industrial_steam_casing", + "overlay_front": "gtceu:block/machines/thermal_centrifuge/overlay_front_active", + "overlay_front_emissive": "gtceu:block/machines/thermal_centrifuge/overlay_front_active_emissive" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_block.json b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_block.json new file mode 100644 index 000000000..a4ad75964 --- /dev/null +++ b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "tfg:block/planets/venus/volcanic_ash" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height10.json b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height10.json new file mode 100644 index 000000000..7aad8a3c5 --- /dev/null +++ b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height10.json @@ -0,0 +1,7 @@ +{ + "parent": "tfg:block/ash_pile/ash_height10", + "textures": { + "particle": "tfg:block/planets/venus/volcanic_ash", + "texture": "tfg:block/planets/venus/volcanic_ash" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height12.json b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height12.json new file mode 100644 index 000000000..6bf32c727 --- /dev/null +++ b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height12.json @@ -0,0 +1,7 @@ +{ + "parent": "tfg:block/ash_pile/ash_height12", + "textures": { + "particle": "tfg:block/planets/venus/volcanic_ash", + "texture": "tfg:block/planets/venus/volcanic_ash" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height14.json b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height14.json new file mode 100644 index 000000000..6c760db71 --- /dev/null +++ b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height14.json @@ -0,0 +1,7 @@ +{ + "parent": "tfg:block/ash_pile/ash_height14", + "textures": { + "particle": "tfg:block/planets/venus/volcanic_ash", + "texture": "tfg:block/planets/venus/volcanic_ash" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height2.json b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height2.json new file mode 100644 index 000000000..119ff312d --- /dev/null +++ b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height2.json @@ -0,0 +1,7 @@ +{ + "parent": "tfg:block/ash_pile/ash_height2", + "textures": { + "particle": "tfg:block/planets/venus/volcanic_ash", + "texture": "tfg:block/planets/venus/volcanic_ash" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height4.json b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height4.json new file mode 100644 index 000000000..595ff167f --- /dev/null +++ b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height4.json @@ -0,0 +1,7 @@ +{ + "parent": "tfg:block/ash_pile/ash_height4", + "textures": { + "particle": "tfg:block/planets/venus/volcanic_ash", + "texture": "tfg:block/planets/venus/volcanic_ash" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height6.json b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height6.json new file mode 100644 index 000000000..3b3b8b81d --- /dev/null +++ b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height6.json @@ -0,0 +1,7 @@ +{ + "parent": "tfg:block/ash_pile/ash_height6", + "textures": { + "particle": "tfg:block/planets/venus/volcanic_ash", + "texture": "tfg:block/planets/venus/volcanic_ash" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height8.json b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height8.json new file mode 100644 index 000000000..dd568468a --- /dev/null +++ b/kubejs/assets/tfg/models/block/pile/volcanic_ash/ash_height8.json @@ -0,0 +1,7 @@ +{ + "parent": "tfg:block/ash_pile/ash_height8", + "textures": { + "particle": "tfg:block/planets/venus/volcanic_ash", + "texture": "tfg:block/planets/venus/volcanic_ash" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/rock/halite.json b/kubejs/assets/tfg/models/block/rock/halite.json new file mode 100644 index 000000000..7ebfae8a4 --- /dev/null +++ b/kubejs/assets/tfg/models/block/rock/halite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "tfg:block/halite" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/rock/halite2.json b/kubejs/assets/tfg/models/block/rock/halite2.json new file mode 100644 index 000000000..9aa438c6c --- /dev/null +++ b/kubejs/assets/tfg/models/block/rock/halite2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "tfc:block/ore/halite" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/smoker_source.json b/kubejs/assets/tfg/models/block/smoker_source.json new file mode 100644 index 000000000..c8969467c --- /dev/null +++ b/kubejs/assets/tfg/models/block/smoker_source.json @@ -0,0 +1,65 @@ +{ + "credit": "Made with Blockbench", + "ambientocclusion": false, + "render_type": "cutout_mipped", + "textures": { + "0": "tfg:block/planets/venus/smoker_source", + "particle": "tfg:block/planets/venus/smoker_source" + }, + "elements": [ + { + "from": [0.8, 0, 8], + "to": [15.2, 16, 8], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 8, 8], "rescale": true}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#0"} + } + }, + { + "from": [8, 0, 0.8], + "to": [8, 16, 15.2], + "shade": false, + "rotation": {"angle": 45, "axis": "y", "origin": [8, 8, 8], "rescale": true}, + "faces": { + "north": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 2.5], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 2.5], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "translation": [0, 2, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/absorption_salvo.json b/kubejs/assets/tfg/models/item/absorption_salvo.json new file mode 100644 index 000000000..44e8ed81a --- /dev/null +++ b/kubejs/assets/tfg/models/item/absorption_salvo.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/absorption_salvo" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/active_power_transformer.json b/kubejs/assets/tfg/models/item/active_power_transformer.json new file mode 100644 index 000000000..b3073fdff --- /dev/null +++ b/kubejs/assets/tfg/models/item/active_power_transformer.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/machines/active_power_transformer" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/antipoison_pill.json b/kubejs/assets/tfg/models/item/antipoison_pill.json new file mode 100644 index 000000000..c45f964dd --- /dev/null +++ b/kubejs/assets/tfg/models/item/antipoison_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/antipoison_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/antipoison_tablet.json b/kubejs/assets/tfg/models/item/antipoison_tablet.json new file mode 100644 index 000000000..41b9bbd3c --- /dev/null +++ b/kubejs/assets/tfg/models/item/antipoison_tablet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/antipoison_tablet" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/cobalt_brass_wheel.json b/kubejs/assets/tfg/models/item/cobalt_brass_wheel.json new file mode 100644 index 000000000..19db9a727 --- /dev/null +++ b/kubejs/assets/tfg/models/item/cobalt_brass_wheel.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/cobalt_brass_wheel" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/fire_resistance_salvo.json b/kubejs/assets/tfg/models/item/fire_resistance_salvo.json new file mode 100644 index 000000000..c94e842f3 --- /dev/null +++ b/kubejs/assets/tfg/models/item/fire_resistance_salvo.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/fire_resistance_salvo" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/geyser_slurry_bucket.json b/kubejs/assets/tfg/models/item/geyser_slurry_bucket.json new file mode 100644 index 000000000..22bbbf5bc --- /dev/null +++ b/kubejs/assets/tfg/models/item/geyser_slurry_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/geyser_slurry_bucket" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/haste_pill.json b/kubejs/assets/tfg/models/item/haste_pill.json new file mode 100644 index 000000000..78f50953e --- /dev/null +++ b/kubejs/assets/tfg/models/item/haste_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/haste_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/haste_tablet.json b/kubejs/assets/tfg/models/item/haste_tablet.json new file mode 100644 index 000000000..f9c391d9f --- /dev/null +++ b/kubejs/assets/tfg/models/item/haste_tablet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/haste_tablet" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/instant_health_salvo.json b/kubejs/assets/tfg/models/item/instant_health_salvo.json new file mode 100644 index 000000000..ce53f77de --- /dev/null +++ b/kubejs/assets/tfg/models/item/instant_health_salvo.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/instant_health_salvo" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/invisibility_salvo.json b/kubejs/assets/tfg/models/item/invisibility_salvo.json new file mode 100644 index 000000000..21b5ce0d6 --- /dev/null +++ b/kubejs/assets/tfg/models/item/invisibility_salvo.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/invisibility_salvo" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/lava_source.json b/kubejs/assets/tfg/models/item/lava_source.json new file mode 100644 index 000000000..1b4b23d49 --- /dev/null +++ b/kubejs/assets/tfg/models/item/lava_source.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:block/planets/venus/lava_source" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/luck_salvo.json b/kubejs/assets/tfg/models/item/luck_salvo.json new file mode 100644 index 000000000..600e33637 --- /dev/null +++ b/kubejs/assets/tfg/models/item/luck_salvo.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/luck_salvo" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/machine_casing_power_casing.json b/kubejs/assets/tfg/models/item/machine_casing_power_casing.json new file mode 100644 index 000000000..a77205b25 --- /dev/null +++ b/kubejs/assets/tfg/models/item/machine_casing_power_casing.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/casings/machine_casing_power_casing" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/night_vision_pill.json b/kubejs/assets/tfg/models/item/night_vision_pill.json new file mode 100644 index 000000000..9326a59eb --- /dev/null +++ b/kubejs/assets/tfg/models/item/night_vision_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/night_vision_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/night_vision_tablet.json b/kubejs/assets/tfg/models/item/night_vision_tablet.json new file mode 100644 index 000000000..b1cd8fd85 --- /dev/null +++ b/kubejs/assets/tfg/models/item/night_vision_tablet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/night_vision_tablet" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/ostrum_linear_accelerator.json b/kubejs/assets/tfg/models/item/ostrum_linear_accelerator.json new file mode 100644 index 000000000..88514629b --- /dev/null +++ b/kubejs/assets/tfg/models/item/ostrum_linear_accelerator.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/machines/ostrum_linear_accelerator" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/paracetamol_pill.json b/kubejs/assets/tfg/models/item/paracetamol_pill.json new file mode 100644 index 000000000..845b7dea0 --- /dev/null +++ b/kubejs/assets/tfg/models/item/paracetamol_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "gtceu:item/paracetamol_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/pile/volcanic_ash.json b/kubejs/assets/tfg/models/item/pile/volcanic_ash.json new file mode 100644 index 000000000..9d59a55c3 --- /dev/null +++ b/kubejs/assets/tfg/models/item/pile/volcanic_ash.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/pile/volcanic_ash/ash_block" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/poison_pill.json b/kubejs/assets/tfg/models/item/poison_pill.json new file mode 100644 index 000000000..541236b03 --- /dev/null +++ b/kubejs/assets/tfg/models/item/poison_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/poison_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/poison_tablet.json b/kubejs/assets/tfg/models/item/poison_tablet.json new file mode 100644 index 000000000..5e13ef48a --- /dev/null +++ b/kubejs/assets/tfg/models/item/poison_tablet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/poison_tablet" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/progenitor_cells.json b/kubejs/assets/tfg/models/item/progenitor_cells.json new file mode 100644 index 000000000..2c664165b --- /dev/null +++ b/kubejs/assets/tfg/models/item/progenitor_cells.json @@ -0,0 +1,8 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/progenitor_cells_0", + "layer1": "tfg:item/progenitor_cells_1", + "layer2": "tfg:item/progenitor_cells_2" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/rad_away_pill.json b/kubejs/assets/tfg/models/item/rad_away_pill.json new file mode 100644 index 000000000..aaec1fa82 --- /dev/null +++ b/kubejs/assets/tfg/models/item/rad_away_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "gtceu:item/rad_away_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/regeneration_pill.json b/kubejs/assets/tfg/models/item/regeneration_pill.json new file mode 100644 index 000000000..5a4e8026e --- /dev/null +++ b/kubejs/assets/tfg/models/item/regeneration_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/regeneration_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/regeneration_tablet.json b/kubejs/assets/tfg/models/item/regeneration_tablet.json new file mode 100644 index 000000000..27fb807c7 --- /dev/null +++ b/kubejs/assets/tfg/models/item/regeneration_tablet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/regeneration_tablet" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/resistance_salvo.json b/kubejs/assets/tfg/models/item/resistance_salvo.json new file mode 100644 index 000000000..2b4bba5a4 --- /dev/null +++ b/kubejs/assets/tfg/models/item/resistance_salvo.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/resistance_salvo" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/rnr_plow.json b/kubejs/assets/tfg/models/item/rnr_plow.json new file mode 100644 index 000000000..1e6c78b95 --- /dev/null +++ b/kubejs/assets/tfg/models/item/rnr_plow.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/rnr_plow_item" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/slowness_pill.json b/kubejs/assets/tfg/models/item/slowness_pill.json new file mode 100644 index 000000000..5b66f6a7b --- /dev/null +++ b/kubejs/assets/tfg/models/item/slowness_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/slowness_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/slowness_tablet.json b/kubejs/assets/tfg/models/item/slowness_tablet.json new file mode 100644 index 000000000..61af42074 --- /dev/null +++ b/kubejs/assets/tfg/models/item/slowness_tablet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/slowness_tablet" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/smoker_source.json b/kubejs/assets/tfg/models/item/smoker_source.json new file mode 100644 index 000000000..9f6860a25 --- /dev/null +++ b/kubejs/assets/tfg/models/item/smoker_source.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:block/planets/venus/smoker_source" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/smr_generator.json b/kubejs/assets/tfg/models/item/smr_generator.json new file mode 100644 index 000000000..1d79809a3 --- /dev/null +++ b/kubejs/assets/tfg/models/item/smr_generator.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/machines/smr_generator" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/speed_pill.json b/kubejs/assets/tfg/models/item/speed_pill.json new file mode 100644 index 000000000..faa19459c --- /dev/null +++ b/kubejs/assets/tfg/models/item/speed_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/speed_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/speed_tablet.json b/kubejs/assets/tfg/models/item/speed_tablet.json new file mode 100644 index 000000000..881364bd1 --- /dev/null +++ b/kubejs/assets/tfg/models/item/speed_tablet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/speed_tablet" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/steam_bloomery.json b/kubejs/assets/tfg/models/item/steam_bloomery.json new file mode 100644 index 000000000..f37cc19e8 --- /dev/null +++ b/kubejs/assets/tfg/models/item/steam_bloomery.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/machines/steam_bloomery" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/steam_fuser.json b/kubejs/assets/tfg/models/item/steam_fuser.json new file mode 100644 index 000000000..421b4d1ca --- /dev/null +++ b/kubejs/assets/tfg/models/item/steam_fuser.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/machines/steam_fuser" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/steam_presser.json b/kubejs/assets/tfg/models/item/steam_presser.json new file mode 100644 index 000000000..5588b3d45 --- /dev/null +++ b/kubejs/assets/tfg/models/item/steam_presser.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/machines/steam_presser" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/steam_squasher.json b/kubejs/assets/tfg/models/item/steam_squasher.json new file mode 100644 index 000000000..e44a2bda6 --- /dev/null +++ b/kubejs/assets/tfg/models/item/steam_squasher.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/machines/steam_squasher" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/steam_thermal_centrifuge.json b/kubejs/assets/tfg/models/item/steam_thermal_centrifuge.json new file mode 100644 index 000000000..7854ac2af --- /dev/null +++ b/kubejs/assets/tfg/models/item/steam_thermal_centrifuge.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/machines/steam_thermal_centrifuge" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/sulfur_fumes_bucket.json b/kubejs/assets/tfg/models/item/sulfur_fumes_bucket.json new file mode 100644 index 000000000..60b931026 --- /dev/null +++ b/kubejs/assets/tfg/models/item/sulfur_fumes_bucket.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/sulfur_fumes_bucket" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/water_breathing_pill.json b/kubejs/assets/tfg/models/item/water_breathing_pill.json new file mode 100644 index 000000000..5d8919992 --- /dev/null +++ b/kubejs/assets/tfg/models/item/water_breathing_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/water_breathing_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/water_breathing_tablet.json b/kubejs/assets/tfg/models/item/water_breathing_tablet.json new file mode 100644 index 000000000..0417d1a21 --- /dev/null +++ b/kubejs/assets/tfg/models/item/water_breathing_tablet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/water_breathing_tablet" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/weakness_pill.json b/kubejs/assets/tfg/models/item/weakness_pill.json new file mode 100644 index 000000000..c39e145a4 --- /dev/null +++ b/kubejs/assets/tfg/models/item/weakness_pill.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/weakness_pill" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/weakness_tablet.json b/kubejs/assets/tfg/models/item/weakness_tablet.json new file mode 100644 index 000000000..811a696a2 --- /dev/null +++ b/kubejs/assets/tfg/models/item/weakness_tablet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/weakness_tablet" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/14_sorbitan.json b/kubejs/assets/tfg/molecules/14_sorbitan.json new file mode 100644 index 000000000..1a9a7422c --- /dev/null +++ b/kubejs/assets/tfg/molecules/14_sorbitan.json @@ -0,0 +1,167 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "right": "H", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 1, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "index": 2, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "index": 3, + "x": 2.5981, + "y": 0.5 + }, + { + "type": "atom", + "index": 4, + "x": 3.4641, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": 2.806, + "y": 1.4781 + }, + { + "type": "atom", + "index": 6, + "x": 3.8006, + "y": 1.5827 + }, + { + "type": "atom", + "index": 7, + "x": 4.2073, + "y": 0.6691 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 8, + "x": 3.5686, + "y": -0.9945 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 9, + "x": 5.1854, + "y": 0.4612 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 10, + "x": 1.732, + "y": -1.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 5, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 4, + "b": 8, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 7, + "b": 9, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 2, + "b": 10, + "lines": [ + "inward" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/1_1_1_2_tetrafluoroethane.json b/kubejs/assets/tfg/molecules/1_1_1_2_tetrafluoroethane.json new file mode 100644 index 000000000..8bdef0a7c --- /dev/null +++ b/kubejs/assets/tfg/molecules/1_1_1_2_tetrafluoroethane.json @@ -0,0 +1,84 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": -1.786, + "y": -0.0256 + }, + { + "type": "atom", + "index": 1, + "x": -0.961, + "y": -0.0256 + }, + { + "type": "atom", + "element": "F", + "index": 2, + "x": -2.611, + "y": -0.0256 + }, + { + "type": "atom", + "element": "F", + "index": 3, + "x": -1.786, + "y": 0.7993 + }, + { + "type": "atom", + "element": "F", + "index": 4, + "x": -1.786, + "y": -0.8506 + }, + { + "type": "atom", + "element": "F", + "index": 5, + "x": -0.5485, + "y": -0.7401 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/acetylene.json b/kubejs/assets/tfg/molecules/acetylene.json new file mode 100644 index 000000000..d481067da --- /dev/null +++ b/kubejs/assets/tfg/molecules/acetylene.json @@ -0,0 +1,56 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": -1.8973, + "y": 0.9151 + }, + { + "type": "atom", + "index": 1, + "x": -1.0723, + "y": 0.9151 + }, + { + "type": "atom", + "element": "H", + "index": 2, + "x": -2.7223, + "y": 0.9151 + }, + { + "type": "atom", + "element": "H", + "index": 3, + "x": -0.2473, + "y": 0.9151 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 3, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/alpha_keratin.json b/kubejs/assets/tfg/molecules/alpha_keratin.json new file mode 100644 index 000000000..3c1e844ba --- /dev/null +++ b/kubejs/assets/tfg/molecules/alpha_keratin.json @@ -0,0 +1,483 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.3971, + "y": -8.9559 + }, + { + "type": "atom", + "index": 1, + "x": 1.0735, + "y": -8.6029 + }, + { + "type": "atom", + "index": 2, + "x": 2.5294, + "y": -7.8823 + }, + { + "type": "atom", + "index": 3, + "x": 3.103, + "y": -7.3676 + }, + { + "type": "atom", + "index": 4, + "x": 2.4118, + "y": -6.5588 + }, + { + "type": "atom", + "index": 5, + "x": 1.7794, + "y": -7.0588 + }, + { + "type": "atom", + "index": 6, + "x": -0.0294, + "y": -6.897 + }, + { + "type": "atom", + "index": 7, + "x": -0.2353, + "y": -6.3529 + }, + { + "type": "atom", + "index": 8, + "x": 0.6471, + "y": -6.0147 + }, + { + "type": "atom", + "index": 9, + "x": 1.3235, + "y": -5.6765 + }, + { + "type": "atom", + "index": 10, + "x": 2.6324, + "y": -5.1617 + }, + { + "type": "atom", + "index": 11, + "x": 3.0588, + "y": -4.4853 + }, + { + "type": "atom", + "index": 12, + "x": 2.4118, + "y": -3.6617 + }, + { + "type": "atom", + "index": 13, + "x": 1.8677, + "y": -3.8823 + }, + { + "type": "atom", + "index": 14, + "x": 0.1324, + "y": -3.8088 + }, + { + "type": "atom", + "index": 15, + "x": -0.0588, + "y": -3.0882 + }, + { + "type": "atom", + "index": 16, + "x": 0.8677, + "y": -3.0882 + }, + { + "type": "atom", + "index": 17, + "x": 1.4118, + "y": -2.5294 + }, + { + "type": "atom", + "index": 18, + "x": 2.7206, + "y": -2.0882 + }, + { + "type": "atom", + "index": 19, + "x": 3.1912, + "y": -1.4412 + }, + { + "type": "atom", + "index": 20, + "x": 2.1912, + "y": -0.5294 + }, + { + "type": "atom", + "index": 21, + "x": 1.4118, + "y": -0.6912 + }, + { + "type": "atom", + "index": 22, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "N", + "index": 23, + "x": 0.7794, + "y": -0.1323 + }, + { + "type": "atom", + "element": "N", + "index": 24, + "x": 2.8088, + "y": -0.7941 + }, + { + "type": "atom", + "element": "N", + "index": 25, + "x": 2.1912, + "y": -2.5588 + }, + { + "type": "atom", + "element": "N", + "index": 26, + "x": 0.2059, + "y": -2.5735 + }, + { + "type": "atom", + "element": "N", + "index": 27, + "x": 1.1471, + "y": -3.6617 + }, + { + "type": "atom", + "element": "N", + "index": 28, + "x": 3.0, + "y": -3.7647 + }, + { + "type": "atom", + "element": "N", + "index": 29, + "x": 2.0441, + "y": -5.6176 + }, + { + "type": "atom", + "element": "N", + "index": 30, + "x": -0.0882, + "y": -5.5882 + }, + { + "type": "atom", + "element": "N", + "index": 31, + "x": 0.9853, + "y": -6.8235 + }, + { + "type": "atom", + "element": "N", + "index": 32, + "x": 3.0294, + "y": -6.6912 + }, + { + "type": "atom", + "element": "N", + "index": 33, + "x": 1.8971, + "y": -8.397 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 1, + "b": 33, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 33, + "b": 2, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 32, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 31, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 31, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 7, + "b": 30, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 30, + "b": 8, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 9, + "b": 29, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 29, + "b": 10, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 10, + "b": 11, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 28, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 27, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 15, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 26, + "b": 16, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 16, + "b": 17, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 17, + "b": 25, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 25, + "b": 18, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 18, + "b": 19, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 24, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 15, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 24, + "b": 19, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 28, + "b": 11, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 32, + "b": 3, + "lines": [ + "outward" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/ammonia_borane.json b/kubejs/assets/tfg/molecules/ammonia_borane.json new file mode 100644 index 000000000..871e26581 --- /dev/null +++ b/kubejs/assets/tfg/molecules/ammonia_borane.json @@ -0,0 +1,130 @@ +{ + "contents": [ + { + "type": "atom", + "element": { + "symbol": "N⁺", + "color": { + "color": -13610760, + "optional": true + }, + "material": "gtceu:nitrogen" + }, + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": { + "symbol": "B⁻", + "color": { + "color": -19019, + "optional": true + }, + "material": "gtceu:boron" + }, + "index": 1, + "x": -0.8249, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 2, + "x": 0.0, + "y": 0.825 + }, + { + "type": "atom", + "element": "H", + "index": 3, + "x": -0.8249, + "y": 0.825 + }, + { + "type": "atom", + "element": "H", + "index": 4, + "x": -1.6499, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 5, + "x": 0.825, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 6, + "x": -0.8249, + "y": -0.8249 + }, + { + "type": "atom", + "element": "H", + "index": 7, + "x": 0.0, + "y": -0.8249 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 6, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/ammonium_carbamate.json b/kubejs/assets/tfg/molecules/ammonium_carbamate.json new file mode 100644 index 000000000..b69a251d1 --- /dev/null +++ b/kubejs/assets/tfg/molecules/ammonium_carbamate.json @@ -0,0 +1,149 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 4.266, + "y": 0.5667 + }, + { + "type": "atom", + "element": "N", + "right": [ + "H", + 2 + ], + "index": 1, + "x": 5.132, + "y": 0.0667 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 4.266, + "y": 1.5667 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 3.4, + "y": 0.0667 + }, + { + "sup": "-", + "atoms": [ + 0, + 1, + 2, + 3 + ], + "type": "parens" + }, + { + "type": "atom", + "element": "N", + "index": 4, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "H", + "index": 5, + "x": 1.4487, + "y": -0.4333 + }, + { + "type": "atom", + "element": "H", + "index": 6, + "x": 0.866, + "y": 1.5 + }, + { + "type": "atom", + "element": "H", + "index": 7, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 8, + "x": 1.7987, + "y": 0.4167 + }, + { + "sup": "+", + "atoms": [ + 4, + 5, + 6, + 7, + 8 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 4, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 8, + "lines": [ + "inward" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/ammonium_tungstate.json b/kubejs/assets/tfg/molecules/ammonium_tungstate.json new file mode 100644 index 000000000..93642aba8 --- /dev/null +++ b/kubejs/assets/tfg/molecules/ammonium_tungstate.json @@ -0,0 +1,1071 @@ +{ + "contents": [ + { + "type": "atom", + "element": "W", + "index": 0, + "x": -0.0869, + "y": -3.2348 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": -0.0869, + "y": -4.0598 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.72, + "y": -3.4063 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": -0.91189999999999993, + "y": -3.2348 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": -0.7, + "y": -2.6827 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": 0.6976, + "y": -2.9798 + }, + { + "type": "atom", + "element": "O", + "index": 6, + "x": -0.023100000000000009, + "y": -2.258 + }, + { + "type": "atom", + "element": "W", + "index": 7, + "x": -1.6965000000000001, + "y": -2.9798 + }, + { + "type": "atom", + "element": "W", + "index": 8, + "x": -0.7862, + "y": -1.8622999999999998 + }, + { + "type": "atom", + "element": "W", + "index": 9, + "x": 1.0332, + "y": -2.2262 + }, + { + "type": "atom", + "element": "W", + "index": 10, + "x": 1.5404, + "y": -3.3201 + }, + { + "type": "atom", + "element": "O", + "index": 11, + "x": -1.6103, + "y": -3.8003 + }, + { + "type": "atom", + "element": "O", + "index": 12, + "x": -2.411, + "y": -3.3923 + }, + { + "type": "atom", + "element": "O", + "index": 13, + "x": -2.364, + "y": -2.4949 + }, + { + "type": "atom", + "element": "O", + "index": 14, + "x": -1.8681, + "y": -2.1729 + }, + { + "type": "atom", + "element": "O", + "index": 15, + "x": -1.1445, + "y": -2.3667 + }, + { + "type": "atom", + "element": "W", + "index": 16, + "x": -1.6673, + "y": -1.2918999999999998 + }, + { + "type": "atom", + "element": "W", + "index": 17, + "x": -2.4812000000000003, + "y": -1.6208 + }, + { + "type": "atom", + "element": "O", + "index": 18, + "x": -1.8904, + "y": -0.7563 + }, + { + "type": "atom", + "element": "O", + "index": 19, + "x": -2.6151, + "y": -0.5503 + }, + { + "type": "atom", + "element": "O", + "index": 20, + "x": -3.0942000000000003, + "y": -1.0688 + }, + { + "type": "atom", + "element": "O", + "index": 21, + "x": -3.1956, + "y": -2.0333 + }, + { + "type": "atom", + "element": "O", + "index": 22, + "x": -1.0987, + "y": -0.881 + }, + { + "type": "atom", + "element": "O", + "index": 23, + "x": 0.020599999999999993, + "y": -1.6906999999999999 + }, + { + "type": "atom", + "element": "O", + "index": 24, + "x": -1.8907, + "y": -1.6821 + }, + { + "type": "atom", + "element": "O", + "index": 25, + "x": 0.6372, + "y": -2.3662 + }, + { + "type": "atom", + "element": "O", + "index": 26, + "x": 1.2048999999999999, + "y": -4.0737000000000005 + }, + { + "type": "atom", + "element": "O", + "index": 27, + "x": 2.1534999999999997, + "y": -3.8721 + }, + { + "type": "atom", + "element": "O", + "index": 28, + "x": 1.6266999999999998, + "y": -2.4996 + }, + { + "type": "atom", + "element": "O", + "index": 29, + "x": 2.2941, + "y": -2.9844999999999997 + }, + { + "type": "atom", + "element": "W", + "index": 30, + "x": 2.2941, + "y": -2.0147 + }, + { + "type": "atom", + "element": "O", + "index": 31, + "x": 1.4327999999999999, + "y": -1.7188999999999999 + }, + { + "type": "atom", + "element": "O", + "index": 32, + "x": 2.9072, + "y": -2.5667 + }, + { + "type": "atom", + "element": "O", + "index": 33, + "x": 3.1010999999999997, + "y": -1.8431 + }, + { + "type": "atom", + "element": "O", + "index": 34, + "x": 1.2827, + "y": -0.8858 + }, + { + "type": "atom", + "element": "O", + "index": 35, + "x": 2.5490999999999997, + "y": -1.23 + }, + { + "type": "atom", + "element": "O", + "index": 36, + "x": 1.6082999999999998, + "y": -1.2803 + }, + { + "type": "atom", + "element": "W", + "index": 37, + "x": 2.0641, + "y": -0.5626 + }, + { + "type": "atom", + "element": "O", + "index": 38, + "x": 2.7316, + "y": -0.0778 + }, + { + "type": "atom", + "element": "O", + "index": 39, + "x": 2.0641, + "y": 0.2623 + }, + { + "type": "atom", + "element": "O", + "index": 40, + "x": 1.2725, + "y": -0.077599999999999988 + }, + { + "type": "atom", + "element": "W", + "index": 41, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 42, + "x": 0.11229999999999998, + "y": 0.8207 + }, + { + "type": "atom", + "element": "O", + "index": 43, + "x": -0.8037, + "y": 0.4125 + }, + { + "type": "atom", + "element": "O", + "index": 44, + "x": 0.6666, + "y": -0.48550000000000004 + }, + { + "type": "atom", + "element": "O", + "index": 45, + "x": -1.1864000000000001, + "y": -0.3053 + }, + { + "type": "atom", + "element": "W", + "index": 46, + "x": -1.6048, + "y": -0.22139999999999999 + }, + { + "type": "atom", + "element": "O", + "index": 47, + "x": -2.1853000000000002, + "y": 0.3026 + }, + { + "type": "atom", + "element": "O", + "index": 48, + "x": -1.4332, + "y": 0.56319999999999992 + }, + { + "type": "atom", + "element": "O", + "index": 49, + "x": -0.5295, + "y": -1.0244 + }, + { + "type": "atom", + "element": "W", + "index": 50, + "x": 0.1585, + "y": -0.8017 + }, + { + "type": "atom", + "element": "O", + "index": 51, + "x": -0.37350000000000005, + "y": -1.4035 + }, + { + "type": "atom", + "element": "O", + "index": 52, + "x": -1.2137, + "y": -1.6296 + }, + { + "type": "atom", + "element": "O", + "index": 53, + "x": 0.5707, + "y": -1.3983999999999999 + }, + { + "type": "atom", + "element": { + "symbol": "⁺N", + "color": { + "color": -13610760, + "optional": true + }, + "material": "gtceu:nitrogen" + }, + "right": [ + "H", + 4 + ], + "index": 54, + "x": -5.5, + "y": -1.36 + }, + { + "sub": "10", + "atoms": [ + 54 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 12, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 7, + "b": 11, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 14, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 20, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 17, + "b": 21, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 26, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 10, + "b": 27, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 10, + "b": 29, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 28, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 31, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 30, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 29, + "b": 30, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 34, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 30, + "b": 32, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 30, + "b": 33, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 30, + "b": 36, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 30, + "b": 35, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 36, + "b": 37, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 35, + "b": 37, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 37, + "b": 39, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 37, + "b": 38, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 37, + "b": 40, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 37, + "b": 34, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 40, + "b": 41, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 44, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 45, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 43, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 46, + "b": 48, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 46, + "b": 47, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 22, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 46, + "b": 43, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 45, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 49, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 42, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 50, + "b": 44, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 49, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 49, + "b": 50, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 51, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 52, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 51, + "b": 50, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 50, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 50, + "b": 53, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 50, + "b": 36, + "lines": [ + "solid" + ] + }, + { + "sup": "10-", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53 + ], + "type": "parens" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/aniline.json b/kubejs/assets/tfg/molecules/aniline.json new file mode 100644 index 000000000..872641358 --- /dev/null +++ b/kubejs/assets/tfg/molecules/aniline.json @@ -0,0 +1,136 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": -0.3913, + "y": 1.685 + }, + { + "type": "atom", + "index": 1, + "x": -0.8037, + "y": 0.9705 + }, + { + "type": "atom", + "index": 2, + "x": -0.3912, + "y": 0.256 + }, + { + "type": "atom", + "index": 3, + "x": 0.4337, + "y": 0.2559 + }, + { + "type": "atom", + "index": 4, + "x": 0.8462, + "y": 0.9704 + }, + { + "type": "atom", + "index": 5, + "x": 0.4336, + "y": 1.685 + }, + { + "type": "atom", + "element": "N", + "index": 6, + "x": -1.6287, + "y": 0.9705 + }, + { + "type": "atom", + "element": "H", + "index": 7, + "x": -2.0412, + "y": 0.256 + }, + { + "type": "atom", + "element": "H", + "index": 8, + "x": -2.0412, + "y": 1.685 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/apt.json b/kubejs/assets/tfg/molecules/apt.json new file mode 100644 index 000000000..fc7479a9e --- /dev/null +++ b/kubejs/assets/tfg/molecules/apt.json @@ -0,0 +1,1089 @@ +{ + "contents": [ + { + "type": "atom", + "element": "W", + "index": 0, + "x": -0.0869, + "y": -3.2348 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": -0.0869, + "y": -4.0598 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.72, + "y": -3.4063 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": -0.91189999999999993, + "y": -3.2348 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": -0.7, + "y": -2.6827 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": 0.6976, + "y": -2.9798 + }, + { + "type": "atom", + "element": "O", + "index": 6, + "x": -0.023100000000000009, + "y": -2.258 + }, + { + "type": "atom", + "element": "W", + "index": 7, + "x": -1.6965000000000001, + "y": -2.9798 + }, + { + "type": "atom", + "element": "W", + "index": 8, + "x": -0.7862, + "y": -1.8622999999999998 + }, + { + "type": "atom", + "element": "W", + "index": 9, + "x": 1.0332, + "y": -2.2262 + }, + { + "type": "atom", + "element": "W", + "index": 10, + "x": 1.5404, + "y": -3.3201 + }, + { + "type": "atom", + "element": "O", + "index": 11, + "x": -1.6103, + "y": -3.8003 + }, + { + "type": "atom", + "element": "O", + "index": 12, + "x": -2.411, + "y": -3.3923 + }, + { + "type": "atom", + "element": "O", + "index": 13, + "x": -2.364, + "y": -2.4949 + }, + { + "type": "atom", + "element": "O", + "index": 14, + "x": -1.8681, + "y": -2.1729 + }, + { + "type": "atom", + "element": "O", + "index": 15, + "x": -1.1445, + "y": -2.3667 + }, + { + "type": "atom", + "element": "W", + "index": 16, + "x": -1.6673, + "y": -1.2918999999999998 + }, + { + "type": "atom", + "element": "W", + "index": 17, + "x": -2.4812000000000003, + "y": -1.6208 + }, + { + "type": "atom", + "element": "O", + "index": 18, + "x": -1.8904, + "y": -0.7563 + }, + { + "type": "atom", + "element": "O", + "index": 19, + "x": -2.6151, + "y": -0.5503 + }, + { + "type": "atom", + "element": "O", + "index": 20, + "x": -3.0942000000000003, + "y": -1.0688 + }, + { + "type": "atom", + "element": "O", + "index": 21, + "x": -3.1956, + "y": -2.0333 + }, + { + "type": "atom", + "element": "O", + "index": 22, + "x": -1.0987, + "y": -0.881 + }, + { + "type": "atom", + "element": "O", + "index": 23, + "x": 0.020599999999999993, + "y": -1.6906999999999999 + }, + { + "type": "atom", + "element": "O", + "index": 24, + "x": -1.8907, + "y": -1.6821 + }, + { + "type": "atom", + "element": "O", + "index": 25, + "x": 0.6372, + "y": -2.3662 + }, + { + "type": "atom", + "element": "O", + "index": 26, + "x": 1.2048999999999999, + "y": -4.0737000000000005 + }, + { + "type": "atom", + "element": "O", + "index": 27, + "x": 2.1534999999999997, + "y": -3.8721 + }, + { + "type": "atom", + "element": "O", + "index": 28, + "x": 1.6266999999999998, + "y": -2.4996 + }, + { + "type": "atom", + "element": "O", + "index": 29, + "x": 2.2941, + "y": -2.9844999999999997 + }, + { + "type": "atom", + "element": "W", + "index": 30, + "x": 2.2941, + "y": -2.0147 + }, + { + "type": "atom", + "element": "O", + "index": 31, + "x": 1.4327999999999999, + "y": -1.7188999999999999 + }, + { + "type": "atom", + "element": "O", + "index": 32, + "x": 2.9072, + "y": -2.5667 + }, + { + "type": "atom", + "element": "O", + "index": 33, + "x": 3.1010999999999997, + "y": -1.8431 + }, + { + "type": "atom", + "element": "O", + "index": 34, + "x": 1.2827, + "y": -0.8858 + }, + { + "type": "atom", + "element": "O", + "index": 35, + "x": 2.5490999999999997, + "y": -1.23 + }, + { + "type": "atom", + "element": "O", + "index": 36, + "x": 1.6082999999999998, + "y": -1.2803 + }, + { + "type": "atom", + "element": "W", + "index": 37, + "x": 2.0641, + "y": -0.5626 + }, + { + "type": "atom", + "element": "O", + "index": 38, + "x": 2.7316, + "y": -0.0778 + }, + { + "type": "atom", + "element": "O", + "index": 39, + "x": 2.0641, + "y": 0.2623 + }, + { + "type": "atom", + "element": "O", + "index": 40, + "x": 1.2725, + "y": -0.077599999999999988 + }, + { + "type": "atom", + "element": "W", + "index": 41, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 42, + "x": 0.11229999999999998, + "y": 0.8207 + }, + { + "type": "atom", + "element": "O", + "index": 43, + "x": -0.8037, + "y": 0.4125 + }, + { + "type": "atom", + "element": "O", + "index": 44, + "x": 0.6666, + "y": -0.48550000000000004 + }, + { + "type": "atom", + "element": "O", + "index": 45, + "x": -1.1864000000000001, + "y": -0.3053 + }, + { + "type": "atom", + "element": "W", + "index": 46, + "x": -1.6048, + "y": -0.22139999999999999 + }, + { + "type": "atom", + "element": "O", + "index": 47, + "x": -2.1853000000000002, + "y": 0.3026 + }, + { + "type": "atom", + "element": "O", + "index": 48, + "x": -1.4332, + "y": 0.56319999999999992 + }, + { + "type": "atom", + "element": "O", + "index": 49, + "x": -0.5295, + "y": -1.0244 + }, + { + "type": "atom", + "element": "W", + "index": 50, + "x": 0.1585, + "y": -0.8017 + }, + { + "type": "atom", + "element": "O", + "index": 51, + "x": -0.37350000000000005, + "y": -1.4035 + }, + { + "type": "atom", + "element": "O", + "index": 52, + "x": -1.2137, + "y": -1.6296 + }, + { + "type": "atom", + "element": "O", + "index": 53, + "x": 0.5707, + "y": -1.3983999999999999 + }, + { + "type": "atom", + "element": { + "symbol": "⁺N", + "color": { + "color": -13610760, + "optional": true + }, + "material": "gtceu:nitrogen" + }, + "right": [ + "H", + 4 + ], + "index": 54, + "x": -5.5, + "y": -1 + }, + { + "sub": "10", + "atoms": [ + 54 + ], + "type": "parens" + }, + { + "type": "atom", + "element": "O", + "left": [ + "H", + 2 + ], + "index": 55, + "x": -5, + "y": -1.9 + }, + { + "sub": "6", + "atoms": [ + 55 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 12, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 7, + "b": 11, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 14, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 20, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 17, + "b": 21, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 26, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 10, + "b": 27, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 10, + "b": 29, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 28, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 31, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 30, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 29, + "b": 30, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 34, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 30, + "b": 32, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 30, + "b": 33, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 30, + "b": 36, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 30, + "b": 35, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 36, + "b": 37, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 35, + "b": 37, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 37, + "b": 39, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 37, + "b": 38, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 37, + "b": 40, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 37, + "b": 34, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 40, + "b": 41, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 44, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 45, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 43, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 46, + "b": 48, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 46, + "b": 47, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 22, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 46, + "b": 43, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 45, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 49, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 42, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 50, + "b": 44, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 49, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 49, + "b": 50, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 51, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 52, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 51, + "b": 50, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 50, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 50, + "b": 53, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 50, + "b": 36, + "lines": [ + "solid" + ] + }, + { + "sup": "10-", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53 + ], + "type": "parens" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/boric_acid.json b/kubejs/assets/tfg/molecules/boric_acid.json new file mode 100644 index 000000000..c9d2288e2 --- /dev/null +++ b/kubejs/assets/tfg/molecules/boric_acid.json @@ -0,0 +1,59 @@ +{ + "contents": [ + { + "type": "atom", + "element": "B", + "index": 0, + "x": 0.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 1, + "x": 1.5, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 3, + "x": 0.0, + "y": -1.732 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/butyric_acid.json b/kubejs/assets/tfg/molecules/butyric_acid.json new file mode 100644 index 000000000..92a9efd7d --- /dev/null +++ b/kubejs/assets/tfg/molecules/butyric_acid.json @@ -0,0 +1,84 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 1, + "x": 0.866, + "y": 0.4999 + }, + { + "type": "atom", + "index": 2, + "x": 1.732, + "y": -0.0001 + }, + { + "type": "atom", + "index": 3, + "x": 2.598, + "y": 0.4999 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 3.4641, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": 2.5981, + "y": 1.5 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 5, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/cellulose_matrix.json b/kubejs/assets/tfg/molecules/cellulose_matrix.json new file mode 100644 index 000000000..44173ff8a --- /dev/null +++ b/kubejs/assets/tfg/molecules/cellulose_matrix.json @@ -0,0 +1,769 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 2.232, + "y": 0.866 + }, + { + "type": "atom", + "index": 1, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "index": 2, + "x": 2.232, + "y": -0.866 + }, + { + "type": "atom", + "index": 3, + "x": 3.232, + "y": -0.866 + }, + { + "type": "atom", + "index": 4, + "x": 3.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": 3.232, + "y": 0.866 + }, + { + "type": "atom", + "index": 6, + "x": 2.232, + "y": 1.866 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 7, + "x": 2.732, + "y": 2.7321 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 8, + "x": 2.232, + "y": 0.134 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 9, + "x": 3.232, + "y": -1.866 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 4.598, + "y": 0.5 + }, + { + "type": "atom", + "index": 11, + "x": 5.464, + "y": 0.0 + }, + { + "type": "atom", + "index": 12, + "x": 5.9641, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "index": 13, + "x": 6.9641, + "y": -0.866 + }, + { + "type": "atom", + "index": 14, + "x": 7.464, + "y": 0.0 + }, + { + "type": "atom", + "index": 15, + "x": 6.964, + "y": 0.866 + }, + { + "type": "atom", + "index": 16, + "x": 5.964, + "y": 0.866 + }, + { + "type": "atom", + "index": 17, + "x": 5.9641, + "y": -1.866 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 18, + "x": 5.4641, + "y": -2.732 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 19, + "x": 5.964, + "y": -0.134 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 20, + "x": 6.964, + "y": 1.866 + }, + { + "type": "atom", + "element": "O", + "index": 21, + "x": 8.3301, + "y": -0.5 + }, + { + "type": "atom", + "index": 22, + "x": 9.1961, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 23, + "x": 0.866, + "y": -0.5 + }, + { + "type": "atom", + "index": 24, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 25, + "x": 9.6909, + "y": 0.866 + }, + { + "type": "atom", + "index": 26, + "x": 9.6909, + "y": -0.8661 + }, + { + "type": "atom", + "index": 27, + "x": 10.6909, + "y": -0.8661 + }, + { + "type": "atom", + "index": 28, + "x": 11.1909, + "y": -0.0001 + }, + { + "type": "atom", + "element": "O", + "index": 29, + "x": 10.6909, + "y": 0.866 + }, + { + "type": "atom", + "index": 30, + "x": 9.6909, + "y": 1.866 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 31, + "x": 10.1909, + "y": 2.7321 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 32, + "x": 9.6909, + "y": 0.134 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 33, + "x": 10.6909, + "y": -1.8661 + }, + { + "type": "atom", + "element": "O", + "index": 34, + "x": 12.0569, + "y": 0.5 + }, + { + "type": "atom", + "index": 35, + "x": 12.923, + "y": -0.0001 + }, + { + "type": "atom", + "index": 36, + "x": 13.4231, + "y": -0.8661 + }, + { + "type": "atom", + "element": "O", + "index": 37, + "x": 14.4231, + "y": -0.8661 + }, + { + "type": "atom", + "index": 38, + "x": 14.923, + "y": -0.0001 + }, + { + "type": "atom", + "index": 39, + "x": 14.423, + "y": 0.866 + }, + { + "type": "atom", + "index": 40, + "x": 13.423, + "y": 0.866 + }, + { + "type": "atom", + "index": 41, + "x": 13.4231, + "y": -1.8661 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 42, + "x": 12.9231, + "y": -2.7321 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 43, + "x": 13.423, + "y": -0.1341 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 44, + "x": 14.423, + "y": 1.866 + }, + { + "type": "atom", + "element": "O", + "index": 45, + "x": 15.7891, + "y": -0.5001 + }, + { + "type": "atom", + "index": 46, + "x": 16.6551, + "y": -0.0001 + }, + { + "sub": "n", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 5, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 4, + "b": 3, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 12, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 14, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 13, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 12, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 13, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 16, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 29, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 27, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 28, + "b": 27, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 25, + "b": 30, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 30, + "b": 31, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 32, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 33, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 29, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 34, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 34, + "b": 35, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 40, + "b": 35, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 35, + "b": 36, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 38, + "b": 39, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 39, + "b": 40, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 38, + "b": 37, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 36, + "b": 41, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 42, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 36, + "b": 37, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 40, + "b": 43, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 39, + "b": 44, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 38, + "b": 45, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 45, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 26, + "lines": [ + "outward" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/chitin.json b/kubejs/assets/tfg/molecules/chitin.json new file mode 100644 index 000000000..de026c71f --- /dev/null +++ b/kubejs/assets/tfg/molecules/chitin.json @@ -0,0 +1,501 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 3.2321, + "y": 0.866 + }, + { + "type": "atom", + "index": 1, + "x": 2.2321, + "y": 0.866 + }, + { + "type": "atom", + "index": 2, + "x": 1.7321, + "y": 0.0 + }, + { + "type": "atom", + "index": 3, + "x": 2.2321, + "y": -0.866 + }, + { + "type": "atom", + "index": 4, + "x": 3.2321, + "y": -0.866 + }, + { + "type": "atom", + "index": 5, + "x": 3.7321, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 6, + "x": 2.2321, + "y": 0.134 + }, + { + "type": "atom", + "element": "N", + "right": "H", + "index": 7, + "x": 3.2321, + "y": -1.866 + }, + { + "type": "atom", + "index": 8, + "x": 2.2321, + "y": 1.866 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 9, + "x": 1.3661, + "y": 2.366 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 0.8661, + "y": -0.5 + }, + { + "type": "atom", + "element": "O", + "index": 11, + "x": 4.5981, + "y": 0.5 + }, + { + "type": "atom", + "index": 12, + "x": 5.4642, + "y": 0.0 + }, + { + "type": "atom", + "index": 13, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 14, + "x": 5.9642, + "y": -0.866 + }, + { + "type": "atom", + "element": "O", + "index": 15, + "x": 6.9642, + "y": -0.866 + }, + { + "type": "atom", + "index": 16, + "x": 7.4642, + "y": 0.0 + }, + { + "type": "atom", + "index": 17, + "x": 6.9641, + "y": 0.866 + }, + { + "type": "atom", + "index": 18, + "x": 5.9641, + "y": 0.866 + }, + { + "type": "atom", + "index": 19, + "x": 5.9642, + "y": -1.866 + }, + { + "type": "atom", + "index": 20, + "x": 2.3661, + "y": -2.366 + }, + { + "type": "atom", + "index": 21, + "x": 1.5001, + "y": -1.866 + }, + { + "type": "atom", + "element": "O", + "index": 22, + "x": 2.3661, + "y": -3.366 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 23, + "x": 5.0982, + "y": -2.366 + }, + { + "type": "atom", + "element": "O", + "index": 24, + "x": 8.3302, + "y": -0.5 + }, + { + "type": "atom", + "index": 25, + "x": 9.1962, + "y": 0.0 + }, + { + "type": "atom", + "element": "N", + "right": "H", + "index": 26, + "x": 6.9641, + "y": 1.866 + }, + { + "type": "atom", + "index": 27, + "x": 6.0981, + "y": 2.366 + }, + { + "type": "atom", + "index": 28, + "x": 5.2321, + "y": 1.866 + }, + { + "type": "atom", + "element": "O", + "index": 29, + "x": 6.0981, + "y": 3.366 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 30, + "x": 5.9641, + "y": -0.134 + }, + { + "sub": "n", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 26, + 27, + 28, + 29 + ], + "type": "parens" + }, + { + "type": "bond", + "a": 5, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 5, + "b": 4, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 3, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 14, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 14, + "b": 15, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 16, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 15, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 14, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 22, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 19, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 24, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 26, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 27, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 28, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 29, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 18, + "b": 30, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/chlorine_pentafluoride.json b/kubejs/assets/tfg/molecules/chlorine_pentafluoride.json new file mode 100644 index 000000000..d7c337529 --- /dev/null +++ b/kubejs/assets/tfg/molecules/chlorine_pentafluoride.json @@ -0,0 +1,86 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Cl", + "index": 0, + "x": 0.866, + "y": -0.5 + }, + { + "type": "atom", + "element": "F", + "index": 1, + "x": 0.866, + "y": -1.5 + }, + { + "type": "atom", + "element": "F", + "index": 2, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "F", + "index": 3, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "F", + "index": 4, + "x": 1.732, + "y": -1.0 + }, + { + "type": "atom", + "element": "F", + "index": 5, + "x": 0.0, + "y": -1.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "outward" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/chlorodifluoromethane.json b/kubejs/assets/tfg/molecules/chlorodifluoromethane.json new file mode 100644 index 000000000..748d6d866 --- /dev/null +++ b/kubejs/assets/tfg/molecules/chlorodifluoromethane.json @@ -0,0 +1,71 @@ +{ + "contents": [ + { + "index": 0, + "element": "C", + "x": 0.0, + "y": 0.0, + "type": "atom" + }, + { + "index": 1, + "element": "F", + "x": 0.0, + "y": 1.0, + "type": "atom" + }, + { + "index": 2, + "element": "F", + "x": 0.9659258, + "y": -0.25881904, + "type": "atom" + }, + { + "index": 3, + "element": "Cl", + "x": 0.5, + "y": -0.8660254, + "type": "atom" + }, + { + "index": 4, + "element": "H", + "x": -0.8660254, + "y": -0.5, + "type": "atom" + }, + { + "a": 0, + "b": 1, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 0, + "b": 2, + "lines": [ + "inward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 3, + "lines": [ + "outward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 4, + "lines": [ + "solid" + ], + "type": "bond" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/chlorosulfuric_acid.json b/kubejs/assets/tfg/molecules/chlorosulfuric_acid.json new file mode 100644 index 000000000..be5d732c1 --- /dev/null +++ b/kubejs/assets/tfg/molecules/chlorosulfuric_acid.json @@ -0,0 +1,76 @@ +{ + "contents": [ + { + "type": "atom", + "element": "S", + "index": 0, + "x": 0.9913, + "y": 0.0015 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.9948, + "y": -0.9993 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "Cl", + "index": 3, + "x": 1.9971, + "y": 0.0045 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 0.9905, + "y": 1.0036 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/chloryl_fluoride.json b/kubejs/assets/tfg/molecules/chloryl_fluoride.json new file mode 100644 index 000000000..150b06bf7 --- /dev/null +++ b/kubejs/assets/tfg/molecules/chloryl_fluoride.json @@ -0,0 +1,60 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Cl", + "index": 0, + "x": 0.0, + "y": 0.1115 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.4125, + "y": 0.826 + }, + { + "type": "atom", + "element": "F", + "index": 2, + "x": 0.4125, + "y": -0.6028 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": -0.825, + "y": 0.1115 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/cholesterol.json b/kubejs/assets/tfg/molecules/cholesterol.json new file mode 100644 index 000000000..1d223aa9c --- /dev/null +++ b/kubejs/assets/tfg/molecules/cholesterol.json @@ -0,0 +1,483 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 1, + "x": 0.0, + "y": -1.0 + }, + { + "type": "atom", + "index": 2, + "x": 0.866, + "y": -1.5 + }, + { + "type": "atom", + "index": 3, + "x": 1.732, + "y": -1.0 + }, + { + "type": "atom", + "index": 4, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "index": 5, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "index": 6, + "x": 2.5981, + "y": -1.5 + }, + { + "type": "atom", + "index": 7, + "x": 3.4641, + "y": -1.0001 + }, + { + "type": "atom", + "index": 8, + "x": 3.4641, + "y": 0.0 + }, + { + "type": "atom", + "index": 9, + "x": 2.5981, + "y": 0.5 + }, + { + "type": "atom", + "index": 10, + "x": 4.3302, + "y": 0.5 + }, + { + "type": "atom", + "index": 11, + "x": 4.3302, + "y": 1.5 + }, + { + "type": "atom", + "index": 12, + "x": 3.4642, + "y": 2.0 + }, + { + "type": "atom", + "index": 13, + "x": 2.5981, + "y": 1.5 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 14, + "x": -0.866, + "y": -1.5 + }, + { + "type": "atom", + "index": 15, + "x": 1.732, + "y": 1.0 + }, + { + "type": "atom", + "element": "H", + "index": 16, + "x": 2.5981, + "y": -0.5 + }, + { + "type": "atom", + "element": "H", + "index": 17, + "x": 4.3302, + "y": -0.5 + }, + { + "type": "atom", + "index": 18, + "x": 5.2814, + "y": 1.809 + }, + { + "type": "atom", + "index": 19, + "x": 5.8692, + "y": 0.9999 + }, + { + "type": "atom", + "index": 20, + "x": 5.2813, + "y": 0.1908 + }, + { + "type": "atom", + "element": "H", + "index": 21, + "x": 3.4641, + "y": 1.0 + }, + { + "type": "atom", + "index": 22, + "x": 4.3302, + "y": 2.5 + }, + { + "type": "atom", + "index": 23, + "x": 5.5904, + "y": 2.76 + }, + { + "type": "atom", + "index": 24, + "x": 6.5686, + "y": 2.9679 + }, + { + "type": "atom", + "index": 25, + "x": 6.8777, + "y": 3.9189 + }, + { + "type": "atom", + "index": 26, + "x": 7.8558, + "y": 4.1267 + }, + { + "type": "atom", + "index": 27, + "x": 8.1649, + "y": 5.0778 + }, + { + "type": "atom", + "index": 28, + "x": 9.143, + "y": 5.2856 + }, + { + "type": "atom", + "index": 29, + "x": 7.4958, + "y": 5.821 + }, + { + "type": "atom", + "index": 30, + "x": 5.0904, + "y": 3.626 + }, + { + "type": "atom", + "element": "H", + "index": 31, + "x": 6.2814, + "y": 1.809 + }, + { + "type": "bond", + "a": 5, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 6, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 14, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 4, + "b": 15, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 9, + "b": 16, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 10, + "b": 17, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 10, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 21, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 11, + "b": 22, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 18, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 24, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 26, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 27, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 28, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 29, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 30, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 18, + "b": 31, + "lines": [ + "inward" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/choline_chloride.json b/kubejs/assets/tfg/molecules/choline_chloride.json new file mode 100644 index 000000000..2eaae8751 --- /dev/null +++ b/kubejs/assets/tfg/molecules/choline_chloride.json @@ -0,0 +1,124 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 2.5684, + "y": 0.032 + }, + { + "type": "atom", + "index": 1, + "x": 3.4344, + "y": -0.468 + }, + { + "type": "atom", + "index": 2, + "x": 2.5684, + "y": 1.032 + }, + { + "type": "atom", + "index": 3, + "x": 1.7023, + "y": -0.468 + }, + { + "type": "atom", + "index": 4, + "x": 3.4344, + "y": 0.532 + }, + { + "type": "atom", + "index": 5, + "x": 4.3004, + "y": 0.032 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 6, + "x": 5.1664, + "y": 0.532 + }, + { + "sup": "+", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Cl⁻", + "color": { + "color": -14684129, + "optional": true + }, + "material": "gtceu:chlorine" + }, + "index": 7, + "x": 0.75, + "y": 0.25 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 6, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/citric_acid.json b/kubejs/assets/tfg/molecules/citric_acid.json new file mode 100644 index 000000000..5e93b7e69 --- /dev/null +++ b/kubejs/assets/tfg/molecules/citric_acid.json @@ -0,0 +1,195 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "right": "H", + "index": 0, + "x": 4.3302, + "y": -1.5 + }, + { + "type": "atom", + "index": 1, + "x": 3.4641, + "y": -1.0 + }, + { + "type": "atom", + "index": 2, + "x": 2.5981, + "y": -1.5 + }, + { + "type": "atom", + "index": 3, + "x": 1.7321, + "y": -1.0 + }, + { + "type": "atom", + "index": 4, + "x": 0.8661, + "y": -1.5 + }, + { + "type": "atom", + "index": 5, + "x": 0.0, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 6, + "x": -0.866, + "y": -1.5 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 7, + "x": 2.0321, + "y": -1.916 + }, + { + "type": "atom", + "index": 8, + "x": 1.7321, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 9, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 3.4641, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 11, + "x": 2.5981, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 12, + "x": 0.8661, + "y": 0.5 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 9, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 1, + "b": 10, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 8, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 12, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/crystal_violet.json b/kubejs/assets/tfg/molecules/crystal_violet.json new file mode 100644 index 000000000..1dbecb1e3 --- /dev/null +++ b/kubejs/assets/tfg/molecules/crystal_violet.json @@ -0,0 +1,473 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 3.4654, + "y": 2.9979 + }, + { + "type": "atom", + "index": 1, + "x": 3.4654, + "y": 3.9979 + }, + { + "type": "atom", + "index": 2, + "x": 4.3315, + "y": 2.4979 + }, + { + "type": "atom", + "index": 3, + "x": 2.5994, + "y": 2.4979 + }, + { + "type": "atom", + "index": 4, + "x": 5.1952, + "y": 0.9986 + }, + { + "type": "atom", + "index": 5, + "x": 4.3311, + "y": 1.4972 + }, + { + "type": "atom", + "index": 6, + "x": 6.0624, + "y": 1.4985 + }, + { + "type": "atom", + "index": 7, + "x": 5.2021, + "y": 2.9998 + }, + { + "type": "atom", + "index": 8, + "x": 6.0649, + "y": 2.4942 + }, + { + "type": "atom", + "index": 9, + "x": 0.8691, + "y": 2.4996 + }, + { + "type": "atom", + "index": 10, + "x": 1.733, + "y": 2.9986 + }, + { + "type": "atom", + "index": 11, + "x": 0.8684, + "y": 1.4986 + }, + { + "type": "atom", + "index": 12, + "x": 2.5987, + "y": 1.493 + }, + { + "type": "atom", + "index": 13, + "x": 1.7294, + "y": 0.9985 + }, + { + "type": "atom", + "index": 14, + "x": 2.5994, + "y": 4.4979 + }, + { + "type": "atom", + "index": 15, + "x": 2.5994, + "y": 5.4979 + }, + { + "type": "atom", + "index": 16, + "x": 3.4654, + "y": 5.9979 + }, + { + "type": "atom", + "index": 17, + "x": 4.3315, + "y": 5.4979 + }, + { + "type": "atom", + "index": 18, + "x": 4.3315, + "y": 4.4979 + }, + { + "type": "atom", + "element": "N", + "index": 19, + "x": 3.4655, + "y": 6.9979 + }, + { + "type": "atom", + "element": "N", + "index": 20, + "x": 6.9276, + "y": 0.9971 + }, + { + "type": "atom", + "element": "N", + "index": 21, + "x": 0.0016, + "y": 1.0 + }, + { + "type": "atom", + "index": 22, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 23, + "x": -0.8636, + "y": 1.5014 + }, + { + "type": "atom", + "index": 24, + "x": 2.5994, + "y": 7.4979 + }, + { + "type": "atom", + "index": 25, + "x": 4.3315, + "y": 7.4979 + }, + { + "type": "atom", + "index": 26, + "x": 7.7944, + "y": 1.4957 + }, + { + "type": "atom", + "index": 27, + "x": 6.9259, + "y": -0.0029 + }, + { + "sup": "+", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Cl⁻", + "color": { + "color": -14684129, + "optional": true + }, + "material": "gtceu:chlorine" + }, + "index": 28, + "x": -3.1849, + "y": 3.3734 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 2, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 4, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 3, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 13, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 9, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 15, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 18, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 19, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 26, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 27, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/cyclohex_diperoxide.json b/kubejs/assets/tfg/molecules/cyclohex_diperoxide.json new file mode 100644 index 000000000..0ebf1c623 --- /dev/null +++ b/kubejs/assets/tfg/molecules/cyclohex_diperoxide.json @@ -0,0 +1,150 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": -0.0008, + "y": -2.0001 + }, + { + "type": "atom", + "index": 1, + "x": 1.7296, + "y": -1.9996 + }, + { + "type": "atom", + "index": 2, + "x": 0.866, + "y": -1.5 + }, + { + "type": "atom", + "index": 3, + "x": 1.7296, + "y": -3.0005 + }, + { + "type": "atom", + "index": 4, + "x": -0.0008, + "y": -3.005 + }, + { + "type": "atom", + "index": 5, + "x": 0.8682, + "y": -3.5 + }, + { + "type": "atom", + "element": "O", + "index": 6, + "x": 0.0, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "index": 7, + "x": 1.7321, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 8, + "x": 1.7321, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 9, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 2, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 9, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/cyclohexanone.json b/kubejs/assets/tfg/molecules/cyclohexanone.json new file mode 100644 index 000000000..e7a216261 --- /dev/null +++ b/kubejs/assets/tfg/molecules/cyclohexanone.json @@ -0,0 +1,105 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": -0.8674, + "y": -1.5001 + }, + { + "type": "atom", + "index": 1, + "x": 0.863, + "y": -1.4996 + }, + { + "type": "atom", + "index": 2, + "x": -0.0006, + "y": -1.0 + }, + { + "type": "atom", + "index": 3, + "x": 0.863, + "y": -2.5005 + }, + { + "type": "atom", + "index": 4, + "x": -0.8674, + "y": -2.505 + }, + { + "type": "atom", + "index": 5, + "x": 0.0016, + "y": -3.0 + }, + { + "type": "atom", + "element": "O", + "index": 6, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 2, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 6, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/dimethyl_carbonate.json b/kubejs/assets/tfg/molecules/dimethyl_carbonate.json new file mode 100644 index 000000000..d605cfc69 --- /dev/null +++ b/kubejs/assets/tfg/molecules/dimethyl_carbonate.json @@ -0,0 +1,85 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": -4.2017, + "y": -0.3624 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": -3.4873, + "y": -0.7749 + }, + { + "type": "atom", + "index": 2, + "x": -2.7728, + "y": -0.3624 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": -2.0584, + "y": -0.7749 + }, + { + "type": "atom", + "index": 4, + "x": -1.3439, + "y": -0.3624 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": -2.7728, + "y": 0.4625 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 5, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/epox_isosorbide_ln.json b/kubejs/assets/tfg/molecules/epox_isosorbide_ln.json new file mode 100644 index 000000000..9717fdee9 --- /dev/null +++ b/kubejs/assets/tfg/molecules/epox_isosorbide_ln.json @@ -0,0 +1,862 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 11.7692, + "y": -4.3487 + }, + { + "type": "atom", + "index": 1, + "x": 12.0782, + "y": -3.3977 + }, + { + "type": "atom", + "index": 2, + "x": 11.2692, + "y": -2.8099 + }, + { + "type": "atom", + "index": 3, + "x": 10.4602, + "y": -3.3977 + }, + { + "type": "atom", + "index": 4, + "x": 10.7692, + "y": -4.3487 + }, + { + "type": "atom", + "index": 5, + "x": 12.8872, + "y": -2.8099 + }, + { + "type": "atom", + "index": 6, + "x": 12.5782, + "y": -1.8588 + }, + { + "type": "atom", + "element": "O", + "index": 7, + "x": 11.5782, + "y": -1.8588 + }, + { + "type": "atom", + "element": "H", + "index": 8, + "x": 10.4602, + "y": -2.2221 + }, + { + "type": "atom", + "element": "H", + "index": 9, + "x": 12.8872, + "y": -3.9854 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 13.8383, + "y": -3.1189 + }, + { + "type": "atom", + "element": "O", + "index": 11, + "x": 9.5091, + "y": -3.0886 + }, + { + "type": "atom", + "index": 12, + "x": 8.766, + "y": -3.7578 + }, + { + "type": "atom", + "index": 13, + "x": 7.8149, + "y": -3.4488 + }, + { + "type": "atom", + "element": "O", + "index": 14, + "x": 8.9739, + "y": -4.7359 + }, + { + "type": "atom", + "index": 15, + "x": 7.0718, + "y": -4.1179 + }, + { + "type": "atom", + "index": 16, + "x": 6.1207, + "y": -3.8089 + }, + { + "type": "atom", + "index": 17, + "x": 5.3776, + "y": -4.478 + }, + { + "type": "atom", + "index": 18, + "x": 4.4265, + "y": -4.169 + }, + { + "type": "atom", + "index": 19, + "x": 3.6834, + "y": -4.8381 + }, + { + "type": "atom", + "index": 20, + "x": 2.7323, + "y": -4.5291 + }, + { + "type": "atom", + "index": 21, + "x": 1.9892, + "y": -5.1982 + }, + { + "type": "atom", + "index": 22, + "x": 1.0381, + "y": -4.8892 + }, + { + "type": "atom", + "index": 23, + "x": 0.8302, + "y": -3.9111 + }, + { + "type": "atom", + "index": 24, + "x": -0.1209, + "y": -3.602 + }, + { + "type": "atom", + "index": 25, + "x": -0.3288, + "y": -2.6239 + }, + { + "type": "atom", + "index": 26, + "x": 0.4144, + "y": -1.9548 + }, + { + "type": "atom", + "index": 27, + "x": 0.2065, + "y": -0.9766 + }, + { + "type": "atom", + "index": 28, + "x": 0.9496, + "y": -0.3075 + }, + { + "type": "atom", + "index": 29, + "x": 1.9007, + "y": -0.6165 + }, + { + "type": "atom", + "index": 30, + "x": 2.6438, + "y": 0.0526 + }, + { + "type": "atom", + "index": 31, + "x": 14.5814, + "y": -2.4498 + }, + { + "type": "atom", + "index": 32, + "x": 15.5325, + "y": -2.7588 + }, + { + "type": "atom", + "element": "O", + "index": 33, + "x": 14.3735, + "y": -1.4716 + }, + { + "type": "atom", + "index": 34, + "x": 16.2756, + "y": -2.0896 + }, + { + "type": "atom", + "index": 35, + "x": 17.2267, + "y": -2.3987 + }, + { + "type": "atom", + "index": 36, + "x": 17.9698, + "y": -1.7295 + }, + { + "type": "atom", + "index": 37, + "x": 18.9209, + "y": -2.0386 + }, + { + "type": "atom", + "index": 38, + "x": 19.664, + "y": -1.3694 + }, + { + "type": "atom", + "index": 39, + "x": 20.6151, + "y": -1.6784 + }, + { + "type": "atom", + "index": 40, + "x": 21.3582, + "y": -1.0093 + }, + { + "type": "atom", + "index": 41, + "x": 22.3093, + "y": -1.3183 + }, + { + "type": "atom", + "index": 42, + "x": 22.5172, + "y": -2.2965 + }, + { + "type": "atom", + "index": 43, + "x": 23.4683, + "y": -2.6055 + }, + { + "type": "atom", + "index": 44, + "x": 23.6762, + "y": -3.5836 + }, + { + "type": "atom", + "index": 45, + "x": 22.933, + "y": -4.2528 + }, + { + "type": "atom", + "index": 46, + "x": 23.1409, + "y": -5.2309 + }, + { + "type": "atom", + "index": 47, + "x": 22.3978, + "y": -5.9 + }, + { + "type": "atom", + "index": 48, + "x": 21.4467, + "y": -5.591 + }, + { + "type": "atom", + "index": 49, + "x": 20.7036, + "y": -6.2602 + }, + { + "type": "atom", + "element": "O", + "index": 50, + "x": -1.0698, + "y": -3.2925 + }, + { + "type": "atom", + "element": "O", + "index": 51, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 52, + "x": 1.2466, + "y": -5.8653 + }, + { + "type": "atom", + "element": "O", + "index": 53, + "x": 23.3474, + "y": -6.2075 + }, + { + "type": "atom", + "element": "O", + "index": 54, + "x": 24.4172, + "y": -2.915 + }, + { + "type": "atom", + "element": "O", + "index": 55, + "x": 22.1008, + "y": -0.3423 + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 8, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 1, + "b": 9, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 5, + "b": 10, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 3, + "b": 11, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 12, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 14, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 13, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 24, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 26, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 27, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 28, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 29, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 29, + "b": 30, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 31, + "b": 32, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 31, + "b": 33, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 32, + "b": 34, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 34, + "b": 35, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 35, + "b": 36, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 36, + "b": 37, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 37, + "b": 38, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 38, + "b": 39, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 39, + "b": 40, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 40, + "b": 41, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 42, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 42, + "b": 43, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 43, + "b": 44, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 44, + "b": 45, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 45, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 46, + "b": 47, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 47, + "b": 48, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 48, + "b": 49, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 31, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 50, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 50, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 51, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 51, + "b": 27, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 52, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 52, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 47, + "b": 53, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 53, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 44, + "b": 54, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 54, + "b": 43, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 55, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 55, + "b": 40, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/ethylene_oxide.json b/kubejs/assets/tfg/molecules/ethylene_oxide.json new file mode 100644 index 000000000..dfc63995e --- /dev/null +++ b/kubejs/assets/tfg/molecules/ethylene_oxide.json @@ -0,0 +1,107 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.866, + "y": -0.5 + }, + { + "type": "atom", + "index": 1, + "x": 1.866, + "y": -0.5 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.366, + "y": 0.3661 + }, + { + "type": "atom", + "element": "H", + "index": 3, + "x": 2.732, + "y": -1.0 + }, + { + "type": "atom", + "element": "H", + "index": 4, + "x": 0.0, + "y": -1.0 + }, + { + "type": "atom", + "element": "H", + "index": 5, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 6, + "x": 2.732, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 6, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/fructose.json b/kubejs/assets/tfg/molecules/fructose.json new file mode 100644 index 000000000..957051a45 --- /dev/null +++ b/kubejs/assets/tfg/molecules/fructose.json @@ -0,0 +1,183 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 1.675, + "y": -0.9122 + }, + { + "type": "atom", + "index": 1, + "x": 2.484, + "y": -1.5 + }, + { + "type": "atom", + "index": 2, + "x": 2.175, + "y": -2.451 + }, + { + "type": "atom", + "index": 3, + "x": 1.175, + "y": -2.451 + }, + { + "type": "atom", + "index": 4, + "x": 0.866, + "y": -1.5 + }, + { + "type": "atom", + "index": 5, + "x": 0.866, + "y": -0.5 + }, + { + "type": "atom", + "index": 6, + "x": 2.484, + "y": -2.5 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 7, + "x": 2.484, + "y": -0.5 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 8, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 9, + "x": 3.35, + "y": -3.0 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 10, + "x": 2.05, + "y": -1.5 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 11, + "x": 1.175, + "y": -3.451 + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 3, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 3, + "b": 2, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 1, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 11, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/galactose.json b/kubejs/assets/tfg/molecules/galactose.json new file mode 100644 index 000000000..eb3196ec9 --- /dev/null +++ b/kubejs/assets/tfg/molecules/galactose.json @@ -0,0 +1,183 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 1.5, + "y": -3.5981 + }, + { + "type": "atom", + "index": 1, + "x": 2.0, + "y": -2.7321 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.5, + "y": -1.8661 + }, + { + "type": "atom", + "index": 3, + "x": 0.5, + "y": -1.8661 + }, + { + "type": "atom", + "index": 4, + "x": 0.0, + "y": -2.7321 + }, + { + "type": "atom", + "index": 5, + "x": 0.5, + "y": -3.5981 + }, + { + "type": "atom", + "index": 6, + "x": 0.5, + "y": -0.8661 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 7, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 8, + "x": 2.0, + "y": -3.7321 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 9, + "x": 1.5, + "y": -4.5981 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 10, + "x": 0.5, + "y": -2.5981 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 11, + "x": 0.0, + "y": -1.7321 + }, + { + "type": "bond", + "a": 5, + "b": 0, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 1, + "b": 0, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 3, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 11, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/glucose.json b/kubejs/assets/tfg/molecules/glucose.json new file mode 100644 index 000000000..890c2c2db --- /dev/null +++ b/kubejs/assets/tfg/molecules/glucose.json @@ -0,0 +1,183 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 1.5, + "y": -3.5981 + }, + { + "type": "atom", + "index": 1, + "x": 2.0, + "y": -2.7321 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.5, + "y": -1.8661 + }, + { + "type": "atom", + "index": 3, + "x": 0.5, + "y": -1.8661 + }, + { + "type": "atom", + "index": 4, + "x": 0.0, + "y": -2.7321 + }, + { + "type": "atom", + "index": 5, + "x": 0.5, + "y": -3.5981 + }, + { + "type": "atom", + "index": 6, + "x": 0.5, + "y": -0.8661 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 7, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 8, + "x": 2.0, + "y": -3.7321 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 9, + "x": 0.0, + "y": -3.7321 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 10, + "x": 0.5, + "y": -2.5981 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 11, + "x": 1.5, + "y": -4.5981 + }, + { + "type": "bond", + "a": 5, + "b": 0, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 1, + "b": 0, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 3, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 11, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/heavy_water.json b/kubejs/assets/tfg/molecules/heavy_water.json new file mode 100644 index 000000000..5be913a35 --- /dev/null +++ b/kubejs/assets/tfg/molecules/heavy_water.json @@ -0,0 +1,41 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "D", + "index": 1, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "D", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/iodomethane.json b/kubejs/assets/tfg/molecules/iodomethane.json new file mode 100644 index 000000000..a4bb4b4d6 --- /dev/null +++ b/kubejs/assets/tfg/molecules/iodomethane.json @@ -0,0 +1,71 @@ +{ + "contents": [ + { + "index": 0, + "element": "C", + "x": 0.0, + "y": 0.0, + "type": "atom" + }, + { + "index": 1, + "element": "I", + "x": 0.0, + "y": 1.0, + "type": "atom" + }, + { + "index": 2, + "element": "H", + "x": 0.9659258, + "y": -0.25881904, + "type": "atom" + }, + { + "index": 3, + "element": "H", + "x": 0.5, + "y": -0.8660254, + "type": "atom" + }, + { + "index": 4, + "element": "H", + "x": -0.8660254, + "y": -0.5, + "type": "atom" + }, + { + "a": 0, + "b": 1, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 0, + "b": 2, + "lines": [ + "inward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 3, + "lines": [ + "outward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 4, + "lines": [ + "solid" + ], + "type": "bond" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/isobutane.json b/kubejs/assets/tfg/molecules/isobutane.json new file mode 100644 index 000000000..e15dd549a --- /dev/null +++ b/kubejs/assets/tfg/molecules/isobutane.json @@ -0,0 +1,52 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": -0.0235, + "y": 1.7404 + }, + { + "type": "atom", + "index": 1, + "x": -0.0235, + "y": 0.9154 + }, + { + "type": "atom", + "index": 2, + "x": 0.6909, + "y": 0.5029 + }, + { + "type": "atom", + "index": 3, + "x": -0.738, + "y": 0.5029 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 3, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/isosorbide.json b/kubejs/assets/tfg/molecules/isosorbide.json new file mode 100644 index 000000000..c74ac4c63 --- /dev/null +++ b/kubejs/assets/tfg/molecules/isosorbide.json @@ -0,0 +1,188 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 2.0691, + "y": 1.2298 + }, + { + "type": "atom", + "index": 1, + "x": 1.7601, + "y": 0.2788 + }, + { + "type": "atom", + "index": 2, + "x": 2.5691, + "y": -0.309 + }, + { + "type": "atom", + "index": 3, + "x": 3.3781, + "y": 0.2788 + }, + { + "type": "atom", + "index": 4, + "x": 3.0691, + "y": 1.2298 + }, + { + "type": "atom", + "index": 5, + "x": 0.9511, + "y": -0.309 + }, + { + "type": "atom", + "index": 6, + "x": 1.2601, + "y": -1.26 + }, + { + "type": "atom", + "element": "O", + "index": 7, + "x": 2.2601, + "y": -1.26 + }, + { + "type": "atom", + "element": "H", + "index": 8, + "x": 3.3781, + "y": -0.8968 + }, + { + "type": "atom", + "element": "H", + "index": 9, + "x": 0.9511, + "y": 0.8666 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 10, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 11, + "x": 4.3292, + "y": -0.0302 + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 8, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 1, + "b": 9, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 5, + "b": 10, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 3, + "b": 11, + "lines": [ + "outward" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/isosorbide_ln.json b/kubejs/assets/tfg/molecules/isosorbide_ln.json new file mode 100644 index 000000000..5de795e84 --- /dev/null +++ b/kubejs/assets/tfg/molecules/isosorbide_ln.json @@ -0,0 +1,730 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 11.5627, + "y": -3.3721 + }, + { + "type": "atom", + "index": 1, + "x": 11.8717, + "y": -2.4211 + }, + { + "type": "atom", + "index": 2, + "x": 11.0627, + "y": -1.8333 + }, + { + "type": "atom", + "index": 3, + "x": 10.2537, + "y": -2.4211 + }, + { + "type": "atom", + "index": 4, + "x": 10.5627, + "y": -3.3721 + }, + { + "type": "atom", + "index": 5, + "x": 12.6807, + "y": -1.8333 + }, + { + "type": "atom", + "index": 6, + "x": 12.3717, + "y": -0.8822 + }, + { + "type": "atom", + "element": "O", + "index": 7, + "x": 11.3717, + "y": -0.8822 + }, + { + "type": "atom", + "element": "H", + "index": 8, + "x": 10.2537, + "y": -1.2455 + }, + { + "type": "atom", + "element": "H", + "index": 9, + "x": 12.6807, + "y": -3.0088 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 13.6318, + "y": -2.1423 + }, + { + "type": "atom", + "element": "O", + "index": 11, + "x": 9.3026, + "y": -2.112 + }, + { + "type": "atom", + "index": 12, + "x": 8.5595, + "y": -2.7812 + }, + { + "type": "atom", + "index": 13, + "x": 7.6084, + "y": -2.4722 + }, + { + "type": "atom", + "element": "O", + "index": 14, + "x": 8.7674, + "y": -3.7593 + }, + { + "type": "atom", + "index": 15, + "x": 6.8653, + "y": -3.1413 + }, + { + "type": "atom", + "index": 16, + "x": 5.9142, + "y": -2.8323 + }, + { + "type": "atom", + "index": 17, + "x": 5.1711, + "y": -3.5014 + }, + { + "type": "atom", + "index": 18, + "x": 4.22, + "y": -3.1924 + }, + { + "type": "atom", + "index": 19, + "x": 3.4769, + "y": -3.8615 + }, + { + "type": "atom", + "index": 20, + "x": 2.5258, + "y": -3.5525 + }, + { + "type": "atom", + "index": 21, + "x": 1.7827, + "y": -4.2216 + }, + { + "type": "atom", + "index": 22, + "x": 0.8316, + "y": -3.9126 + }, + { + "type": "atom", + "index": 23, + "x": 0.6237, + "y": -2.9345 + }, + { + "type": "atom", + "index": 24, + "x": -0.3274, + "y": -2.6254 + }, + { + "type": "atom", + "index": 25, + "x": -0.5353, + "y": -1.6473 + }, + { + "type": "atom", + "index": 26, + "x": 0.2079, + "y": -0.9782 + }, + { + "type": "atom", + "index": 27, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 28, + "x": 0.7431, + "y": 0.6691 + }, + { + "type": "atom", + "index": 29, + "x": 1.6942, + "y": 0.3601 + }, + { + "type": "atom", + "index": 30, + "x": 2.4373, + "y": 1.0292 + }, + { + "type": "atom", + "index": 31, + "x": 14.3749, + "y": -1.4732 + }, + { + "type": "atom", + "index": 32, + "x": 15.326, + "y": -1.7822 + }, + { + "type": "atom", + "element": "O", + "index": 33, + "x": 14.167, + "y": -0.495 + }, + { + "type": "atom", + "index": 34, + "x": 16.0691, + "y": -1.113 + }, + { + "type": "atom", + "index": 35, + "x": 17.0202, + "y": -1.4221 + }, + { + "type": "atom", + "index": 36, + "x": 17.7633, + "y": -0.7529 + }, + { + "type": "atom", + "index": 37, + "x": 18.7144, + "y": -1.062 + }, + { + "type": "atom", + "index": 38, + "x": 19.4575, + "y": -0.3928 + }, + { + "type": "atom", + "index": 39, + "x": 20.4086, + "y": -0.7018 + }, + { + "type": "atom", + "index": 40, + "x": 21.1517, + "y": -0.0327 + }, + { + "type": "atom", + "index": 41, + "x": 22.1028, + "y": -0.3417 + }, + { + "type": "atom", + "index": 42, + "x": 22.3107, + "y": -1.3199 + }, + { + "type": "atom", + "index": 43, + "x": 23.2618, + "y": -1.6289 + }, + { + "type": "atom", + "index": 44, + "x": 23.4697, + "y": -2.607 + }, + { + "type": "atom", + "index": 45, + "x": 22.7265, + "y": -3.2762 + }, + { + "type": "atom", + "index": 46, + "x": 22.9344, + "y": -4.2543 + }, + { + "type": "atom", + "index": 47, + "x": 22.1913, + "y": -4.9234 + }, + { + "type": "atom", + "index": 48, + "x": 21.2402, + "y": -4.6144 + }, + { + "type": "atom", + "index": 49, + "x": 20.4971, + "y": -5.2836 + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 8, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 1, + "b": 9, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 5, + "b": 10, + "lines": [ + "inward" + ] + }, + { + "type": "bond", + "a": 3, + "b": 11, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 12, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 14, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 13, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 21, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 24, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 26, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 27, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 27, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 29, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 29, + "b": 30, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 31, + "b": 32, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 31, + "b": 33, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 32, + "b": 34, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 34, + "b": 35, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 35, + "b": 36, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 36, + "b": 37, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 37, + "b": 38, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 38, + "b": 39, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 39, + "b": 40, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 40, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 42, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 42, + "b": 43, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 44, + "b": 43, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 44, + "b": 45, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 45, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 47, + "b": 46, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 47, + "b": 48, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 48, + "b": 49, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 31, + "b": 10, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/kaolinite.json b/kubejs/assets/tfg/molecules/kaolinite.json new file mode 100644 index 000000000..991af7e08 --- /dev/null +++ b/kubejs/assets/tfg/molecules/kaolinite.json @@ -0,0 +1,707 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Si", + "index": 0, + "x": 1.6063, + "y": -0.595 + }, + { + "type": "atom", + "element": "Si", + "index": 1, + "x": 2.5813, + "y": -0.2263 + }, + { + "type": "atom", + "element": "Si", + "index": 2, + "x": 4.5, + "y": -0.9388 + }, + { + "type": "atom", + "element": "Si", + "index": 3, + "x": 5.8438, + "y": -0.0013 + }, + { + "type": "atom", + "element": "Si", + "index": 4, + "x": 7.95, + "y": -0.57 + }, + { + "type": "atom", + "element": "Si", + "index": 5, + "x": 8.5688, + "y": -0.1688 + }, + { + "type": "atom", + "element": "O", + "index": 6, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 7, + "x": 3.125, + "y": -0.0438 + }, + { + "type": "atom", + "element": "O", + "index": 8, + "x": 2.1, + "y": 0.2437 + }, + { + "type": "atom", + "element": "O", + "index": 9, + "x": 1.1813, + "y": 0.6937 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 4.1438, + "y": 0.5437 + }, + { + "type": "atom", + "element": "O", + "index": 11, + "x": 4.4625, + "y": -0.5113 + }, + { + "type": "atom", + "element": "O", + "index": 12, + "x": 6.2813, + "y": 0.0387 + }, + { + "type": "atom", + "element": "O", + "index": 13, + "x": 6.3125, + "y": 0.9012 + }, + { + "type": "atom", + "element": "O", + "index": 14, + "x": 7.325, + "y": 0.5325 + }, + { + "type": "atom", + "element": "O", + "index": 15, + "x": 8.3625, + "y": 0.2825 + }, + { + "type": "atom", + "element": "O", + "index": 16, + "x": 9.4188, + "y": -0.1113 + }, + { + "type": "atom", + "element": "O", + "index": 17, + "x": 9.8125, + "y": 0.5262 + }, + { + "type": "atom", + "element": "O", + "index": 18, + "x": 4.4563, + "y": -2.4988 + }, + { + "type": "atom", + "element": "O", + "index": 19, + "x": 5.9938, + "y": -1.7263 + }, + { + "type": "atom", + "element": "O", + "index": 20, + "x": 2.625, + "y": -1.945 + }, + { + "type": "atom", + "element": "O", + "index": 21, + "x": 1.775, + "y": -2.3388 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 22, + "x": 5.095, + "y": -2.0925 + }, + { + "type": "atom", + "element": "O", + "index": 23, + "x": 8.4925, + "y": -1.8438 + }, + { + "type": "atom", + "element": "O", + "below": "H", + "index": 24, + "x": 0.833, + "y": -4.4747 + }, + { + "type": "atom", + "element": "O", + "below": "H", + "index": 25, + "x": 3.503, + "y": -4.6247 + }, + { + "type": "atom", + "element": "O", + "below": "H", + "index": 26, + "x": 4.253, + "y": -4.2047 + }, + { + "type": "atom", + "element": "O", + "below": "H", + "index": 27, + "x": 6.883, + "y": -4.3747 + }, + { + "type": "atom", + "element": "O", + "below": "H", + "index": 28, + "x": 7.593, + "y": -4.0047 + }, + { + "type": "atom", + "element": "Al", + "index": 29, + "x": 6.393, + "y": -3.0147 + }, + { + "type": "atom", + "element": "Al", + "index": 30, + "x": 3.013, + "y": -3.2547 + }, + { + "type": "atom", + "element": "O", + "index": 31, + "x": 8.0671, + "y": -2.3257 + }, + { + "type": "bond", + "a": 6, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 24, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 26, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 28, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 28, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 26, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 27, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 20, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 8, + "b": 21, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 8, + "b": 20, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 13, + "b": 19, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 10, + "b": 19, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 14, + "b": 19, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 14, + "b": 23, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 15, + "b": 23, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 20, + "b": 24, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 24, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 24, + "b": 26, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 26, + "b": 20, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 19, + "b": 26, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 26, + "b": 28, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 28, + "b": 19, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 10, + "b": 20, + "lines": [ + "dotted" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 31, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 31, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 31, + "lines": [ + "dotted" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/lauryl_alcohol.json b/kubejs/assets/tfg/molecules/lauryl_alcohol.json new file mode 100644 index 000000000..58c6c93be --- /dev/null +++ b/kubejs/assets/tfg/molecules/lauryl_alcohol.json @@ -0,0 +1,180 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 1, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "index": 2, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "index": 3, + "x": 2.5981, + "y": 0.5 + }, + { + "type": "atom", + "index": 4, + "x": 3.4641, + "y": 0.0 + }, + { + "type": "atom", + "index": 5, + "x": 4.3301, + "y": 0.5 + }, + { + "type": "atom", + "index": 6, + "x": 5.1961, + "y": 0.0 + }, + { + "type": "atom", + "index": 7, + "x": 6.0622, + "y": 0.5 + }, + { + "type": "atom", + "index": 8, + "x": 6.9282, + "y": 0.0 + }, + { + "type": "atom", + "index": 9, + "x": 7.7942, + "y": 0.5 + }, + { + "type": "atom", + "index": 10, + "x": 8.6602, + "y": 0.0 + }, + { + "type": "atom", + "index": 11, + "x": 9.5263, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 12, + "x": 10.3923, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 12, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/linolenic_acid.json b/kubejs/assets/tfg/molecules/linolenic_acid.json new file mode 100644 index 000000000..de8f44aac --- /dev/null +++ b/kubejs/assets/tfg/molecules/linolenic_acid.json @@ -0,0 +1,284 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.0, + "y": -1.0 + }, + { + "type": "atom", + "index": 1, + "x": 0.866, + "y": -1.5 + }, + { + "type": "atom", + "element": "O", + "left": "H", + "index": 2, + "x": -0.866, + "y": -1.5 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 4, + "x": 1.732, + "y": -1.0 + }, + { + "type": "atom", + "index": 5, + "x": 2.5981, + "y": -1.5 + }, + { + "type": "atom", + "index": 6, + "x": 3.4641, + "y": -1.0 + }, + { + "type": "atom", + "index": 7, + "x": 4.3301, + "y": -1.5 + }, + { + "type": "atom", + "index": 8, + "x": 5.1961, + "y": -1.0 + }, + { + "type": "atom", + "index": 9, + "x": 6.0622, + "y": -1.5 + }, + { + "type": "atom", + "index": 10, + "x": 6.9282, + "y": -1.0 + }, + { + "type": "atom", + "index": 11, + "x": 7.9282, + "y": -1.0 + }, + { + "type": "atom", + "index": 12, + "x": 8.7942, + "y": -1.5 + }, + { + "type": "atom", + "index": 13, + "x": 9.6602, + "y": -1.0 + }, + { + "type": "atom", + "index": 14, + "x": 10.6602, + "y": -1.0 + }, + { + "type": "atom", + "index": 15, + "x": 11.5263, + "y": -1.5 + }, + { + "type": "atom", + "index": 16, + "x": 12.3923, + "y": -1.0 + }, + { + "type": "atom", + "index": 17, + "x": 13.3923, + "y": -1.0 + }, + { + "type": "atom", + "index": 18, + "x": 14.2583, + "y": -1.5 + }, + { + "type": "atom", + "index": 19, + "x": 15.1243, + "y": -1.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 1, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 10, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 13, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 16, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 19, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/methyl_phenylcarbamate.json b/kubejs/assets/tfg/molecules/methyl_phenylcarbamate.json new file mode 100644 index 000000000..bdb787baa --- /dev/null +++ b/kubejs/assets/tfg/molecules/methyl_phenylcarbamate.json @@ -0,0 +1,181 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 1.6418, + "y": 0.5155 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.9273, + "y": -0.7218 + }, + { + "type": "atom", + "element": "N", + "index": 2, + "x": 0.2128, + "y": 0.5156 + }, + { + "type": "atom", + "index": 3, + "x": -0.5015, + "y": 0.1031 + }, + { + "type": "atom", + "index": 4, + "x": -1.216, + "y": 0.5156 + }, + { + "type": "atom", + "index": 5, + "x": -0.5015, + "y": -0.7219 + }, + { + "type": "atom", + "index": 6, + "x": -1.9304, + "y": 0.1031 + }, + { + "type": "atom", + "index": 7, + "x": -1.216, + "y": -1.1344 + }, + { + "type": "atom", + "index": 8, + "x": -1.9305, + "y": -0.7218 + }, + { + "type": "atom", + "index": 9, + "x": 0.9273, + "y": 0.103 + }, + { + "type": "atom", + "index": 10, + "x": 2.3563, + "y": 0.1031 + }, + { + "type": "atom", + "element": "H", + "index": 11, + "x": 0.2129, + "y": 1.3406 + }, + { + "type": "bond", + "a": 0, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 9, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 5, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 8, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 11, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/methylene_diphenyl_dicarbamate.json b/kubejs/assets/tfg/molecules/methylene_diphenyl_dicarbamate.json new file mode 100644 index 000000000..aa47fd688 --- /dev/null +++ b/kubejs/assets/tfg/molecules/methylene_diphenyl_dicarbamate.json @@ -0,0 +1,380 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 3.4641, + "y": 0.0 + }, + { + "type": "atom", + "index": 1, + "x": 5.1962, + "y": 0.0 + }, + { + "type": "atom", + "index": 2, + "x": 4.3301, + "y": 0.5 + }, + { + "type": "atom", + "index": 3, + "x": 5.1962, + "y": -1.0 + }, + { + "type": "atom", + "index": 4, + "x": 3.4641, + "y": -1.0 + }, + { + "type": "atom", + "index": 5, + "x": 4.3301, + "y": -1.5 + }, + { + "type": "atom", + "index": 6, + "x": 6.0622, + "y": -1.5 + }, + { + "type": "atom", + "index": 7, + "x": 6.9282, + "y": -1.0 + }, + { + "type": "atom", + "index": 8, + "x": 7.7943, + "y": 0.5 + }, + { + "type": "atom", + "index": 9, + "x": 6.9282, + "y": 0.0 + }, + { + "type": "atom", + "index": 10, + "x": 8.6603, + "y": 0.0 + }, + { + "type": "atom", + "index": 11, + "x": 7.7943, + "y": -1.5 + }, + { + "type": "atom", + "index": 12, + "x": 8.6603, + "y": -1.0 + }, + { + "type": "atom", + "element": "N", + "index": 13, + "x": 2.5981, + "y": 0.5 + }, + { + "type": "atom", + "element": "N", + "index": 14, + "x": 9.5263, + "y": 0.5 + }, + { + "type": "atom", + "element": "H", + "index": 15, + "x": 2.5981, + "y": 1.5 + }, + { + "type": "atom", + "index": 16, + "x": 1.7321, + "y": 0.0 + }, + { + "type": "atom", + "index": 17, + "x": 10.3923, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 18, + "x": 9.5263, + "y": 1.5 + }, + { + "type": "atom", + "element": "O", + "index": 19, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 20, + "x": 1.7321, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "index": 21, + "x": 10.3923, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "index": 22, + "x": 11.2584, + "y": 0.5 + }, + { + "type": "atom", + "index": 23, + "x": 12.1244, + "y": 0.0 + }, + { + "type": "atom", + "index": 24, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 2, + "b": 0, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 1, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 7, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 12, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 8, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 20, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 17, + "b": 21, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 17, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 24, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/methylene_diphenyl_diisocyanate.json b/kubejs/assets/tfg/molecules/methylene_diphenyl_diisocyanate.json new file mode 100644 index 000000000..cc2451d4e --- /dev/null +++ b/kubejs/assets/tfg/molecules/methylene_diphenyl_diisocyanate.json @@ -0,0 +1,298 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 10.3924, + "y": 0.0 + }, + { + "type": "atom", + "element": "N", + "index": 2, + "x": 1.7321, + "y": 1.0 + }, + { + "type": "atom", + "element": "N", + "index": 3, + "x": 8.6603, + "y": 1.0 + }, + { + "type": "atom", + "index": 4, + "x": 5.1962, + "y": -1.0 + }, + { + "type": "atom", + "index": 5, + "x": 4.3302, + "y": -0.5 + }, + { + "type": "atom", + "index": 6, + "x": 6.0622, + "y": -0.5 + }, + { + "type": "atom", + "index": 7, + "x": 3.4641, + "y": -1.0 + }, + { + "type": "atom", + "index": 8, + "x": 6.0622, + "y": 0.5 + }, + { + "type": "atom", + "index": 9, + "x": 4.3302, + "y": 0.5 + }, + { + "type": "atom", + "index": 10, + "x": 6.9283, + "y": -1.0 + }, + { + "type": "atom", + "index": 11, + "x": 2.5981, + "y": -0.5 + }, + { + "type": "atom", + "index": 12, + "x": 6.9283, + "y": 1.0 + }, + { + "type": "atom", + "index": 13, + "x": 3.4641, + "y": 1.0 + }, + { + "type": "atom", + "index": 14, + "x": 7.7943, + "y": -0.5 + }, + { + "type": "atom", + "index": 15, + "x": 2.5981, + "y": 0.5 + }, + { + "type": "atom", + "index": 16, + "x": 7.7943, + "y": 0.5 + }, + { + "type": "atom", + "element": "C", + "index": 17, + "x": 0.8661, + "y": 0.5 + }, + { + "type": "atom", + "element": "C", + "index": 18, + "x": 9.5263, + "y": 0.5 + }, + { + "type": "bond", + "a": 0, + "b": 17, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 1, + "b": 18, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 2, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 17, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 3, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 18, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 5, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 8, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 13, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 14, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 15, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 12, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 16, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/mutative_yeast.json b/kubejs/assets/tfg/molecules/mutative_yeast.json new file mode 100644 index 000000000..c5609516e --- /dev/null +++ b/kubejs/assets/tfg/molecules/mutative_yeast.json @@ -0,0 +1,664 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": -0.5, + "y": -0.8661 + }, + { + "type": "atom", + "index": 1, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 2, + "x": 0.0, + "y": -1.7321 + }, + { + "type": "atom", + "index": 3, + "x": 1.0, + "y": -1.7321 + }, + { + "type": "atom", + "index": 4, + "x": 1.8661, + "y": -1.2321 + }, + { + "type": "atom", + "index": 5, + "x": 1.0, + "y": 0.2679 + }, + { + "type": "atom", + "index": 6, + "x": 3.2523, + "y": 2.9223 + }, + { + "type": "atom", + "index": 7, + "x": 2.3862, + "y": 2.4223 + }, + { + "type": "atom", + "index": 8, + "x": 2.3862, + "y": 1.4223 + }, + { + "type": "atom", + "index": 9, + "x": 3.2808, + "y": 0.9937 + }, + { + "type": "atom", + "index": 10, + "x": 4.1183, + "y": 1.4223 + }, + { + "type": "atom", + "index": 11, + "x": 4.3111, + "y": 2.0919 + }, + { + "type": "atom", + "index": 12, + "x": 3.9254, + "y": 2.8901 + }, + { + "type": "atom", + "index": 13, + "x": 3.9438, + "y": -1.5136 + }, + { + "type": "atom", + "index": 14, + "x": 2.9438, + "y": -1.5136 + }, + { + "type": "atom", + "index": 15, + "x": 2.309, + "y": -2.4974 + }, + { + "type": "atom", + "index": 16, + "x": 2.3188, + "y": -3.3733 + }, + { + "type": "atom", + "index": 17, + "x": 2.8813, + "y": -3.9581 + }, + { + "type": "atom", + "index": 18, + "x": 3.8098, + "y": -3.7456 + }, + { + "type": "atom", + "index": 19, + "x": 4.1973, + "y": -2.8921 + }, + { + "type": "atom", + "index": 20, + "x": 4.1973, + "y": -2.1046 + }, + { + "type": "atom", + "index": 21, + "x": 4.2813, + "y": -0.8136 + }, + { + "type": "atom", + "index": 22, + "x": 4.9625, + "y": -0.9011 + }, + { + "type": "atom", + "index": 23, + "x": 5.2563, + "y": -1.5296 + }, + { + "type": "atom", + "index": 24, + "x": 4.8525, + "y": -2.0782 + }, + { + "type": "atom", + "index": 25, + "x": 6.4061, + "y": 0.4514 + }, + { + "type": "atom", + "index": 26, + "x": 7.1865, + "y": 0.2657 + }, + { + "type": "atom", + "index": 27, + "x": 7.365, + "y": -0.5932 + }, + { + "type": "atom", + "index": 28, + "x": 6.7507, + "y": -1.0735 + }, + { + "type": "atom", + "index": 29, + "x": 6.2419, + "y": -0.8235 + }, + { + "type": "atom", + "index": 30, + "x": 5.9419, + "y": -0.0949 + }, + { + "type": "atom", + "index": 31, + "x": 5.9213, + "y": 2.3079 + }, + { + "type": "atom", + "index": 32, + "x": 6.057, + "y": 2.8864 + }, + { + "type": "atom", + "index": 33, + "x": 6.7873, + "y": 3.8079 + }, + { + "type": "atom", + "index": 34, + "x": 7.7873, + "y": 3.8079 + }, + { + "type": "atom", + "index": 35, + "x": 8.1302, + "y": 3.2561 + }, + { + "type": "atom", + "index": 36, + "x": 8.1016, + "y": 2.6276 + }, + { + "type": "atom", + "index": 37, + "x": 7.6284, + "y": 1.8347 + }, + { + "type": "atom", + "index": 38, + "x": 6.8142, + "y": 1.2776 + }, + { + "type": "atom", + "index": 39, + "x": 5.9856, + "y": 1.6793 + }, + { + "type": "atom", + "index": 40, + "x": 2.2786, + "y": -0.2446 + }, + { + "type": "atom", + "index": 41, + "x": 1.4848, + "y": 0.1242 + }, + { + "type": "atom", + "index": 42, + "x": 1.8536, + "y": -0.4633 + }, + { + "type": "atom", + "index": 43, + "x": 1.6813, + "y": 0.5367 + }, + { + "type": "atom", + "index": 44, + "x": 2.1286, + "y": 0.5867 + }, + { + "type": "atom", + "index": 45, + "x": 2.4258, + "y": 0.1929 + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 5, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 8, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 10, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 15, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 16, + "b": 17, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 18, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 24, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 26, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 27, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 28, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 29, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 30, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 32, + "b": 33, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 33, + "b": 34, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 34, + "b": 35, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 35, + "b": 36, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 36, + "b": 37, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 37, + "b": 38, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 31, + "b": 39, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 39, + "b": 38, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 5, + "b": 41, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 42, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 42, + "b": 41, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 42, + "b": 40, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 43, + "b": 41, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 43, + "b": 44, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 45, + "b": 44, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 40, + "b": 45, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 0, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 4, + "b": 3, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 10, + "b": 9, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 18, + "b": 17, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 30, + "b": 29, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 32, + "b": 31, + "lines": [ + "outward" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/n_n_dimethylaniline.json b/kubejs/assets/tfg/molecules/n_n_dimethylaniline.json new file mode 100644 index 000000000..f73152a17 --- /dev/null +++ b/kubejs/assets/tfg/molecules/n_n_dimethylaniline.json @@ -0,0 +1,134 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": -0.3913, + "y": 1.685 + }, + { + "type": "atom", + "index": 1, + "x": -0.8037, + "y": 0.9705 + }, + { + "type": "atom", + "index": 2, + "x": -0.3912, + "y": 0.256 + }, + { + "type": "atom", + "index": 3, + "x": 0.4337, + "y": 0.2559 + }, + { + "type": "atom", + "index": 4, + "x": 0.8462, + "y": 0.9704 + }, + { + "type": "atom", + "index": 5, + "x": 0.4336, + "y": 1.685 + }, + { + "type": "atom", + "element": "N", + "index": 6, + "x": -1.6287, + "y": 0.9705 + }, + { + "type": "atom", + "index": 7, + "x": -2.0412, + "y": 0.256 + }, + { + "type": "atom", + "index": 8, + "x": -2.0412, + "y": 1.685 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/nitrocellulose.json b/kubejs/assets/tfg/molecules/nitrocellulose.json new file mode 100644 index 000000000..74af1d464 --- /dev/null +++ b/kubejs/assets/tfg/molecules/nitrocellulose.json @@ -0,0 +1,401 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 1.7321, + "y": 0.7321 + }, + { + "type": "atom", + "index": 1, + "x": 1.2321, + "y": -0.134 + }, + { + "type": "atom", + "index": 2, + "x": 1.7321, + "y": -1.0 + }, + { + "type": "atom", + "index": 3, + "x": 2.7321, + "y": -1.0 + }, + { + "type": "atom", + "index": 4, + "x": 3.2321, + "y": -0.134 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": 2.7321, + "y": 0.7321 + }, + { + "type": "atom", + "index": 6, + "x": 1.7321, + "y": 1.7321 + }, + { + "type": "atom", + "element": "O", + "index": 7, + "x": 0.7321, + "y": -1.0 + }, + { + "type": "atom", + "index": 8, + "x": 3.7321, + "y": 0.7321 + }, + { + "type": "atom", + "element": "O", + "index": 9, + "x": 2.5981, + "y": 2.2321 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 1.7321, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 11, + "x": 2.7321, + "y": -2.0 + }, + { + "type": "atom", + "element": "N", + "index": 12, + "x": 3.4641, + "y": 2.7321 + }, + { + "type": "atom", + "element": "O", + "index": 13, + "x": 3.4641, + "y": 3.7321 + }, + { + "type": "atom", + "element": "O", + "index": 14, + "x": 4.3302, + "y": 2.2321 + }, + { + "type": "atom", + "element": "N", + "index": 15, + "x": 1.866, + "y": -2.5 + }, + { + "type": "atom", + "element": "O", + "index": 16, + "x": 1.866, + "y": -3.5 + }, + { + "type": "atom", + "element": "O", + "index": 17, + "x": 1.0, + "y": -2.0 + }, + { + "type": "atom", + "element": "N", + "index": 18, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 19, + "x": 0.866, + "y": 1.5 + }, + { + "type": "atom", + "element": "O", + "index": 20, + "x": 0.0, + "y": 0.0 + }, + { + "sub": "n", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ], + "type": "parens" + }, + { + "type": "atom", + "index": 21, + "x": -0.2679, + "y": -1.0 + }, + { + "type": "atom", + "index": 22, + "x": 4.7321, + "y": 0.7321 + }, + { + "type": "atom", + "index": 23, + "x": -1.2679, + "y": -1.0 + }, + { + "type": "atom", + "index": 24, + "x": 5.7321, + "y": 0.7321 + }, + { + "type": "bond", + "a": 5, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "thick" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 3, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 0, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 13, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 12, + "b": 14, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 11, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 15, + "b": 17, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 10, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 19, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 18, + "b": 20, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 7, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 22, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 21, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 24, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/ozone.json b/kubejs/assets/tfg/molecules/ozone.json new file mode 100644 index 000000000..5c22af778 --- /dev/null +++ b/kubejs/assets/tfg/molecules/ozone.json @@ -0,0 +1,43 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 1.7321, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "dotted" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid", + "dotted" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/semiheavy_water.json b/kubejs/assets/tfg/molecules/semiheavy_water.json new file mode 100644 index 000000000..355aea49f --- /dev/null +++ b/kubejs/assets/tfg/molecules/semiheavy_water.json @@ -0,0 +1,41 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "element": "D", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/sodium_borohydride.json b/kubejs/assets/tfg/molecules/sodium_borohydride.json new file mode 100644 index 000000000..11320c394 --- /dev/null +++ b/kubejs/assets/tfg/molecules/sodium_borohydride.json @@ -0,0 +1,84 @@ +{ + "contents": [ + { + "type": "atom", + "element": { + "symbol": "B⁻", + "material": "gtceu:boron" + }, + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 1, + "x": 0.8249, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 2, + "x": 0.0, + "y": -0.8249 + }, + { + "type": "atom", + "element": "H", + "index": 3, + "x": -0.82500000000000007, + "y": 0.0 + }, + { + "type": "atom", + "element": "H", + "index": 4, + "x": 0.0, + "y": 0.82500000000000007 + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "material": "gtceu:sodium" + }, + "index": 5, + "x": -1.8527, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/sodium_dihydrogen_citrate.json b/kubejs/assets/tfg/molecules/sodium_dihydrogen_citrate.json new file mode 100644 index 000000000..55da9e254 --- /dev/null +++ b/kubejs/assets/tfg/molecules/sodium_dihydrogen_citrate.json @@ -0,0 +1,227 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "right": "H", + "index": 0, + "x": 7.4212, + "y": -0.55 + }, + { + "type": "atom", + "index": 1, + "x": 6.5551, + "y": -0.05 + }, + { + "type": "atom", + "index": 2, + "x": 5.6891, + "y": -0.55 + }, + { + "type": "atom", + "index": 3, + "x": 4.8231, + "y": -0.05 + }, + { + "type": "atom", + "index": 4, + "x": 3.9571, + "y": -0.55 + }, + { + "type": "atom", + "index": 5, + "x": 3.091, + "y": -0.05 + }, + { + "type": "atom", + "element": "O", + "index": 6, + "x": 2.225, + "y": -0.55 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 7, + "x": 5.1231, + "y": -0.966 + }, + { + "type": "atom", + "index": 8, + "x": 4.8231, + "y": 0.95 + }, + { + "type": "atom", + "element": "O", + "index": 9, + "x": 3.091, + "y": 0.95 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 6.5551, + "y": 0.95 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 11, + "x": 5.6891, + "y": 1.45 + }, + { + "type": "atom", + "element": "O", + "index": 12, + "x": 3.9571, + "y": 1.45 + }, + { + "sup": "-", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "color": { + "color": -5546766, + "optional": true + }, + "material": "gtceu:sodium" + }, + "index": 13, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 9, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 1, + "b": 10, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 8, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 12, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/sodium_dodecyl_sulfate.json b/kubejs/assets/tfg/molecules/sodium_dodecyl_sulfate.json new file mode 100644 index 000000000..25a30eddb --- /dev/null +++ b/kubejs/assets/tfg/molecules/sodium_dodecyl_sulfate.json @@ -0,0 +1,280 @@ +{ + "contents": [ + { + "type": "atom", + "element": "S", + "index": 0, + "x": 0.8661, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 1.7321, + "y": 1.0 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 0.3661, + "y": 1.366 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 1.3661, + "y": -0.366 + }, + { + "type": "atom", + "index": 5, + "x": 6.9282, + "y": 1.0 + }, + { + "type": "atom", + "index": 6, + "x": 7.7943, + "y": 0.5 + }, + { + "type": "atom", + "index": 7, + "x": 6.0622, + "y": 0.5 + }, + { + "type": "atom", + "index": 8, + "x": 8.6603, + "y": 1.0 + }, + { + "type": "atom", + "index": 9, + "x": 5.1962, + "y": 1.0 + }, + { + "type": "atom", + "index": 10, + "x": 9.5263, + "y": 0.5 + }, + { + "type": "atom", + "index": 11, + "x": 4.3302, + "y": 0.5 + }, + { + "type": "atom", + "index": 12, + "x": 10.3923, + "y": 1.0 + }, + { + "type": "atom", + "index": 13, + "x": 3.4641, + "y": 1.0 + }, + { + "type": "atom", + "index": 14, + "x": 11.2584, + "y": 0.5 + }, + { + "type": "atom", + "index": 15, + "x": 2.5981, + "y": 0.5 + }, + { + "type": "atom", + "index": 16, + "x": 12.1244, + "y": 1.0 + }, + { + "sup": "-", + "atoms": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "color": { + "color": -5546766, + "optional": true + }, + "material": "gtceu:sodium" + }, + "index": 17, + "x": -0.866, + "y": 0.5 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 1, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 9, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 10, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 9, + "b": 11, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 10, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 11, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 16, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/sodium_hypochlorite.json b/kubejs/assets/tfg/molecules/sodium_hypochlorite.json new file mode 100644 index 000000000..5dad575b0 --- /dev/null +++ b/kubejs/assets/tfg/molecules/sodium_hypochlorite.json @@ -0,0 +1,48 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "Cl", + "index": 1, + "x": 2.089, + "y": -0.2089 + }, + { + "sup": "-", + "atoms": [ + 0, + 1 + ], + "type": "parens" + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "color": { + "color": -5546766, + "optional": true + }, + "material": "gtceu:sodium" + }, + "index": 2, + "x": -0.5, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/sodium_methoxide.json b/kubejs/assets/tfg/molecules/sodium_methoxide.json new file mode 100644 index 000000000..d160f1e88 --- /dev/null +++ b/kubejs/assets/tfg/molecules/sodium_methoxide.json @@ -0,0 +1,46 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "u": 0, + "v": 0 + }, + { + "type": "atom", + "index": 1, + "u": 1, + "v": 0, + "element": { + "symbol": "O⁻", + "color": { + "color": -62195, + "optional": true + }, + "material": "gtceu:oxygen" + } + }, + { + "type": "atom", + "index": 2, + "u": 1, + "v": 0.66666667, + "element": { + "symbol": "Na⁺", + "color": { + "color": -5546766, + "optional": true + }, + "material": "gtceu:sodium" + } + }, + { + "type": "bond", + "lines": [ + "solid" + ], + "a": 0, + "b": 1 + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/sodium_tungstate.json b/kubejs/assets/tfg/molecules/sodium_tungstate.json new file mode 100644 index 000000000..cca7eced3 --- /dev/null +++ b/kubejs/assets/tfg/molecules/sodium_tungstate.json @@ -0,0 +1,101 @@ +{ + "contents": [ + { + "type": "atom", + "element": "W", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.0, + "y": -0.825 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.0, + "y": 0.825 + }, + { + "type": "atom", + "element": { + "symbol": "O⁻", + "material": "gtceu:oxygen" + }, + "index": 3, + "x": 0.825, + "y": 0.0 + }, + { + "type": "atom", + "element": { + "symbol": "O⁻", + "material": "gtceu:oxygen" + }, + "index": 4, + "x": -0.825, + "y": 0.0 + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "material": "gtceu:sodium" + }, + "index": 5, + "x": 1.65, + "y": 0.0 + }, + { + "type": "atom", + "element": { + "symbol": "Na⁺", + "material": "gtceu:sodium" + }, + "index": 6, + "x": -1.65, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/sorbitol.json b/kubejs/assets/tfg/molecules/sorbitol.json new file mode 100644 index 000000000..7ba316f37 --- /dev/null +++ b/kubejs/assets/tfg/molecules/sorbitol.json @@ -0,0 +1,176 @@ +{ + "contents": [ + { + "type": "atom", + "element": "O", + "right": "H", + "index": 0, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "index": 1, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "index": 2, + "x": 1.7321, + "y": 0.0 + }, + { + "type": "atom", + "index": 3, + "x": 2.5981, + "y": 0.5 + }, + { + "type": "atom", + "index": 4, + "x": 3.4641, + "y": 0.0 + }, + { + "type": "atom", + "index": 5, + "x": 4.3301, + "y": 0.5 + }, + { + "type": "atom", + "index": 6, + "x": 5.1962, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 7, + "x": 6.0622, + "y": 0.5 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 8, + "x": 4.3301, + "y": 1.5 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 9, + "x": 3.4641, + "y": -1.0 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 10, + "x": 2.5981, + "y": 1.5 + }, + { + "type": "atom", + "element": "O", + "right": "H", + "index": 11, + "x": 1.7321, + "y": -1.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 6, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 8, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 4, + "b": 9, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 3, + "b": 10, + "lines": [ + "outward" + ] + }, + { + "type": "bond", + "a": 2, + "b": 11, + "lines": [ + "inward" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/tetrafluoroethane.json b/kubejs/assets/tfg/molecules/tetrafluoroethane.json new file mode 100644 index 000000000..cf1e91e0b --- /dev/null +++ b/kubejs/assets/tfg/molecules/tetrafluoroethane.json @@ -0,0 +1,84 @@ +{ + "contents": [ + { + "type": "atom", + "index": 0, + "x": 0.3216, + "y": 0.6414 + }, + { + "type": "atom", + "index": 1, + "x": -0.5033, + "y": 0.6414 + }, + { + "type": "atom", + "element": "F", + "index": 2, + "x": 0.7341, + "y": 1.3559 + }, + { + "type": "atom", + "element": "F", + "index": 3, + "x": 0.7341, + "y": -0.073 + }, + { + "type": "atom", + "element": "F", + "index": 4, + "x": -0.9158, + "y": -0.073 + }, + { + "type": "atom", + "element": "F", + "index": 5, + "x": -0.9158, + "y": 1.3559 + }, + { + "type": "bond", + "a": 1, + "b": 0, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 5, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/tfg_polycaprolactam.json b/kubejs/assets/tfg/molecules/tfg_polycaprolactam.json new file mode 100644 index 000000000..675b7b465 --- /dev/null +++ b/kubejs/assets/tfg/molecules/tfg_polycaprolactam.json @@ -0,0 +1,164 @@ +{ + "contents": [ + { + "index": 0, + "element": "", + "x": 0.0, + "y": 0.0, + "type": "atom" + }, + { + "index": 1, + "element": "N", + "above": "H", + "x": 0.8660254, + "y": 0.5, + "type": "atom" + }, + { + "index": 3, + "element": "", + "x": 1.7320508, + "y": 0.0, + "type": "atom" + }, + { + "index": 4, + "element": "", + "x": 2.598076, + "y": 0.5, + "type": "atom" + }, + { + "index": 5, + "element": "", + "x": 3.4641016, + "y": 0.0, + "type": "atom" + }, + { + "index": 6, + "element": "", + "x": 4.3301272, + "y": 0.5, + "type": "atom" + }, + { + "index": 7, + "element": "", + "x": 5.196152, + "y": 0.0, + "type": "atom" + }, + { + "index": 8, + "element": "", + "x": 6.0621777, + "y": 0.5, + "type": "atom" + }, + { + "index": 9, + "element": "O", + "x": 6.0621777, + "y": 1.5, + "type": "atom" + }, + { + "index": 10, + "element": "", + "x": 6.928203, + "y": 0.0, + "type": "atom" + }, + { + "a": 0, + "b": 1, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 1, + "b": 3, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 3, + "b": 4, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 4, + "b": 5, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 5, + "b": 6, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 6, + "b": 7, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 7, + "b": 8, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 8, + "b": 9, + "centered": true, + "lines": [ + "solid", + "solid" + ], + "type": "bond" + }, + { + "a": 8, + "b": 10, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "sub": "n", + "atoms": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "type": "parens" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/tmos.json b/kubejs/assets/tfg/molecules/tmos.json new file mode 100644 index 000000000..375d22714 --- /dev/null +++ b/kubejs/assets/tfg/molecules/tmos.json @@ -0,0 +1,127 @@ +{ + "contents": [ + { + "type": "atom", + "element": "Si", + "index": 0, + "x": -0.1504, + "y": -0.7464 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.4625, + "y": -1.2984 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": -0.7635, + "y": -0.1943 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": -0.7025, + "y": -1.3595 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 0.4015, + "y": -0.1333 + }, + { + "type": "atom", + "index": 5, + "x": -1.5482, + "y": -0.4493 + }, + { + "type": "atom", + "index": 6, + "x": 1.2472, + "y": -1.0435 + }, + { + "type": "atom", + "index": 7, + "x": 1.2085, + "y": -0.3048 + }, + { + "type": "atom", + "index": 8, + "x": -1.5094, + "y": -1.1879 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 8, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/trideuteroiodomethane.json b/kubejs/assets/tfg/molecules/trideuteroiodomethane.json new file mode 100644 index 000000000..2f86ef9b7 --- /dev/null +++ b/kubejs/assets/tfg/molecules/trideuteroiodomethane.json @@ -0,0 +1,71 @@ +{ + "contents": [ + { + "index": 0, + "element": "C", + "x": 0.0, + "y": 0.0, + "type": "atom" + }, + { + "index": 1, + "element": "I", + "x": 0.0, + "y": 1.0, + "type": "atom" + }, + { + "index": 2, + "element": "D", + "x": 0.9659258, + "y": -0.25881904, + "type": "atom" + }, + { + "index": 3, + "element": "D", + "x": 0.5, + "y": -0.8660254, + "type": "atom" + }, + { + "index": 4, + "element": "D", + "x": -0.8660254, + "y": -0.5, + "type": "atom" + }, + { + "a": 0, + "b": 1, + "lines": [ + "solid" + ], + "type": "bond" + }, + { + "a": 0, + "b": 2, + "lines": [ + "inward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 3, + "lines": [ + "outward" + ], + "type": "bond" + }, + { + "a": 0, + "b": 4, + "lines": [ + "solid" + ], + "type": "bond" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/triglyceride_oil.json b/kubejs/assets/tfg/molecules/triglyceride_oil.json new file mode 100644 index 000000000..b133fcff6 --- /dev/null +++ b/kubejs/assets/tfg/molecules/triglyceride_oil.json @@ -0,0 +1,905 @@ +{ + "contents": [ + { + "type": "atom", + "element": "C", + "left": [ + "H", + 2 + ], + "index": 0, + "x": 0.0, + "y": 2.5 + }, + { + "type": "atom", + "element": "C", + "left": "H", + "index": 1, + "x": 0.0, + "y": 1.25 + }, + { + "type": "atom", + "element": "C", + "left": [ + "H", + 2 + ], + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 0.8333, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 4, + "x": 0.8333, + "y": 1.25 + }, + { + "type": "atom", + "element": "O", + "index": 5, + "x": 0.8333, + "y": 2.5 + }, + { + "type": "atom", + "index": 6, + "x": 1.6994, + "y": 0.5 + }, + { + "type": "atom", + "index": 7, + "x": 1.6994, + "y": 1.75 + }, + { + "type": "atom", + "index": 8, + "x": 1.6994, + "y": 3.0 + }, + { + "type": "atom", + "element": "O", + "index": 9, + "x": 1.6994, + "y": 3.8 + }, + { + "type": "atom", + "element": "O", + "index": 10, + "x": 1.6994, + "y": 2.55 + }, + { + "type": "atom", + "element": "O", + "index": 11, + "x": 1.6994, + "y": 1.3 + }, + { + "type": "atom", + "index": 12, + "x": 2.5654, + "y": 0.0 + }, + { + "type": "atom", + "index": 13, + "x": 2.5654, + "y": 1.25 + }, + { + "type": "atom", + "index": 14, + "x": 2.5654, + "y": 2.5 + }, + { + "type": "atom", + "index": 15, + "x": 3.4314, + "y": 3.0 + }, + { + "type": "atom", + "index": 16, + "x": 4.2974, + "y": 2.5 + }, + { + "type": "atom", + "index": 17, + "x": 5.1635, + "y": 3.0 + }, + { + "type": "atom", + "index": 18, + "x": 6.0295, + "y": 2.5 + }, + { + "type": "atom", + "index": 19, + "x": 6.8955, + "y": 3.0 + }, + { + "type": "atom", + "index": 20, + "x": 7.7615, + "y": 2.5 + }, + { + "type": "atom", + "index": 21, + "x": 8.6276, + "y": 3.0 + }, + { + "type": "atom", + "index": 22, + "x": 9.6276, + "y": 3.0 + }, + { + "type": "atom", + "index": 23, + "x": 10.4936, + "y": 2.5 + }, + { + "type": "atom", + "index": 24, + "x": 11.3596, + "y": 3.0 + }, + { + "type": "atom", + "index": 25, + "x": 12.2256, + "y": 2.5 + }, + { + "type": "atom", + "index": 26, + "x": 13.0917, + "y": 3.0 + }, + { + "type": "atom", + "index": 27, + "x": 13.9577, + "y": 2.5 + }, + { + "type": "atom", + "index": 28, + "x": 14.8237, + "y": 3.0 + }, + { + "type": "atom", + "index": 29, + "x": 15.6897, + "y": 2.5 + }, + { + "type": "atom", + "index": 30, + "x": 16.5558, + "y": 3.0 + }, + { + "type": "atom", + "index": 31, + "x": 3.4314, + "y": 1.75 + }, + { + "type": "atom", + "index": 32, + "x": 4.2974, + "y": 1.25 + }, + { + "type": "atom", + "index": 33, + "x": 5.1635, + "y": 1.75 + }, + { + "type": "atom", + "index": 34, + "x": 6.0295, + "y": 1.25 + }, + { + "type": "atom", + "index": 35, + "x": 6.8955, + "y": 1.75 + }, + { + "type": "atom", + "index": 36, + "x": 7.7615, + "y": 1.25 + }, + { + "type": "atom", + "index": 37, + "x": 8.6276, + "y": 1.75 + }, + { + "type": "atom", + "index": 38, + "x": 9.6276, + "y": 1.75 + }, + { + "type": "atom", + "index": 39, + "x": 10.4936, + "y": 1.25 + }, + { + "type": "atom", + "index": 40, + "x": 11.3596, + "y": 1.75 + }, + { + "type": "atom", + "index": 41, + "x": 12.2256, + "y": 1.25 + }, + { + "type": "atom", + "index": 42, + "x": 13.0917, + "y": 1.75 + }, + { + "type": "atom", + "index": 43, + "x": 13.9577, + "y": 1.25 + }, + { + "type": "atom", + "index": 44, + "x": 14.8237, + "y": 1.75 + }, + { + "type": "atom", + "index": 45, + "x": 15.6897, + "y": 1.25 + }, + { + "type": "atom", + "index": 46, + "x": 16.5558, + "y": 1.75 + }, + { + "type": "atom", + "index": 47, + "x": 3.4314, + "y": 0.5 + }, + { + "type": "atom", + "index": 48, + "x": 4.2974, + "y": 0.0 + }, + { + "type": "atom", + "index": 49, + "x": 5.1635, + "y": 0.5 + }, + { + "type": "atom", + "index": 50, + "x": 6.0295, + "y": 0.0 + }, + { + "type": "atom", + "index": 51, + "x": 6.8955, + "y": 0.5 + }, + { + "type": "atom", + "index": 52, + "x": 7.7615, + "y": 0.0 + }, + { + "type": "atom", + "index": 53, + "x": 8.6276, + "y": 0.5 + }, + { + "type": "atom", + "index": 54, + "x": 9.6276, + "y": 0.5 + }, + { + "type": "atom", + "index": 55, + "x": 10.4936, + "y": 0.0 + }, + { + "type": "atom", + "index": 56, + "x": 11.3596, + "y": 0.5 + }, + { + "type": "atom", + "index": 57, + "x": 12.2256, + "y": 0.0 + }, + { + "type": "atom", + "index": 58, + "x": 13.0917, + "y": 0.5 + }, + { + "type": "atom", + "index": 59, + "x": 13.9577, + "y": 0.0 + }, + { + "type": "atom", + "index": 60, + "x": 14.8237, + "y": 0.5 + }, + { + "type": "atom", + "index": 61, + "x": 15.6897, + "y": 0.0 + }, + { + "type": "atom", + "index": 62, + "x": 16.5558, + "y": 0.5 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 4, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 4, + "b": 7, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 5, + "b": 8, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 9, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 7, + "b": 10, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 6, + "b": 11, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 6, + "b": 12, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 7, + "b": 13, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 8, + "b": 14, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 14, + "b": 15, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 15, + "b": 16, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 16, + "b": 17, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 17, + "b": 18, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 18, + "b": 19, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 19, + "b": 20, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 20, + "b": 21, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 21, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 22, + "b": 23, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 23, + "b": 24, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 24, + "b": 25, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 25, + "b": 26, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 26, + "b": 27, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 27, + "b": 28, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 28, + "b": 29, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 29, + "b": 30, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 13, + "b": 31, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 31, + "b": 32, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 32, + "b": 33, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 33, + "b": 34, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 34, + "b": 35, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 35, + "b": 36, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 36, + "b": 37, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 38, + "b": 37, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 38, + "b": 39, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 39, + "b": 40, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 40, + "b": 41, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 41, + "b": 42, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 42, + "b": 43, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 43, + "b": 44, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 44, + "b": 45, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 45, + "b": 46, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 12, + "b": 47, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 47, + "b": 48, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 48, + "b": 49, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 49, + "b": 50, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 50, + "b": 51, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 51, + "b": 52, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 52, + "b": 53, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 54, + "b": 53, + "lines": [ + "solid", + "solid" + ] + }, + { + "type": "bond", + "a": 54, + "b": 55, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 55, + "b": 56, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 56, + "b": 57, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 57, + "b": 58, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 58, + "b": 59, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 59, + "b": 60, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 60, + "b": 61, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 61, + "b": 62, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/trimethyl_borate.json b/kubejs/assets/tfg/molecules/trimethyl_borate.json new file mode 100644 index 000000000..29be55042 --- /dev/null +++ b/kubejs/assets/tfg/molecules/trimethyl_borate.json @@ -0,0 +1,98 @@ +{ + "contents": [ + { + "type": "atom", + "element": "B", + "index": 0, + "x": -0.6874, + "y": 0.9488 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": -0.6874, + "y": 1.7738 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.027, + "y": 0.5363 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": -1.4019, + "y": 0.5363 + }, + { + "type": "atom", + "index": 4, + "x": -2.1163, + "y": 0.9488 + }, + { + "type": "atom", + "index": 5, + "x": 0.7415, + "y": 0.9488 + }, + { + "type": "atom", + "index": 6, + "x": -1.4018, + "y": 2.1863 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 6, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 2, + "b": 5, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 3, + "b": 4, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/trimethylamine.json b/kubejs/assets/tfg/molecules/trimethylamine.json new file mode 100644 index 000000000..80e341a2d --- /dev/null +++ b/kubejs/assets/tfg/molecules/trimethylamine.json @@ -0,0 +1,53 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "index": 0, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "index": 1, + "x": 0.866, + "y": 1.5 + }, + { + "type": "atom", + "index": 2, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "index": 3, + "x": 0.0, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid" + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/tungsten_oxide.json b/kubejs/assets/tfg/molecules/tungsten_oxide.json new file mode 100644 index 000000000..d7adc76c3 --- /dev/null +++ b/kubejs/assets/tfg/molecules/tungsten_oxide.json @@ -0,0 +1,62 @@ +{ + "contents": [ + { + "type": "atom", + "element": "W", + "index": 0, + "x": 0.866, + "y": -0.5 + }, + { + "type": "atom", + "element": "O", + "index": 1, + "x": 0.866, + "y": -1.5 + }, + { + "type": "atom", + "element": "O", + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 1.732, + "y": 0.0 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 2, + "lines": [ + "solid", + "solid" + ], + "centered": true + }, + { + "type": "bond", + "a": 0, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/molecules/urea.json b/kubejs/assets/tfg/molecules/urea.json new file mode 100644 index 000000000..10d871325 --- /dev/null +++ b/kubejs/assets/tfg/molecules/urea.json @@ -0,0 +1,65 @@ +{ + "contents": [ + { + "type": "atom", + "element": "N", + "right": [ + "H", + 2 + ], + "index": 0, + "x": 1.732, + "y": 0.0 + }, + { + "type": "atom", + "index": 1, + "x": 0.866, + "y": 0.5 + }, + { + "type": "atom", + "element": "N", + "left": [ + "H", + 2 + ], + "index": 2, + "x": 0.0, + "y": 0.0 + }, + { + "type": "atom", + "element": "O", + "index": 3, + "x": 0.866, + "y": 1.5 + }, + { + "type": "bond", + "a": 0, + "b": 1, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 2, + "lines": [ + "solid" + ] + }, + { + "type": "bond", + "a": 1, + "b": 3, + "lines": [ + "solid", + "solid" + ], + "centered": true + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/particles/cooling_steam.json b/kubejs/assets/tfg/particles/cooling_steam.json index 572b52060..32df59ab7 100644 --- a/kubejs/assets/tfg/particles/cooling_steam.json +++ b/kubejs/assets/tfg/particles/cooling_steam.json @@ -1,5 +1,14 @@ { "textures": [ - "tfg:cooling_steam_particle" + "tfg:cooling_steam_particle_0", + "tfg:cooling_steam_particle_1", + "tfg:cooling_steam_particle_2", + "tfg:cooling_steam_particle_3", + "tfg:cooling_steam_particle_4", + "tfg:cooling_steam_particle_5", + "tfg:cooling_steam_particle_6", + "tfg:cooling_steam_particle_7", + "tfg:cooling_steam_particle_8", + "tfg:cooling_steam_particle_9" ] } diff --git a/kubejs/assets/tfg/sounds.json b/kubejs/assets/tfg/sounds.json new file mode 100644 index 000000000..56ed1adba --- /dev/null +++ b/kubejs/assets/tfg/sounds.json @@ -0,0 +1,758 @@ +{ + "ambient.upper_nether_lush.loop": { + "sounds": [ + { + "name": "ambientsounds:cave/cave-lush", + "stream": true, + "volume": 1 + }, + { + "name": "ambientsounds:animals/frog/frog-cave1", + "stream": true, + "volume": 1 + }, + { + "name": "ambientsounds:cave/cave-water1", + "stream": true, + "volume": 1 + }, + { + "name": "ambientsounds:cave/cave-water2", + "stream": true, + "volume": 1 + }, + { + "name": "ambientsounds:cave/cave-water3", + "stream": true, + "volume": 1 + }, + { + "name": "ambientsounds:cave/cave-water4", + "stream": true, + "volume": 1 + }, + { + "name": "ambientsounds:cave/cave-water5", + "stream": true, + "volume": 1 + } + ] + }, + "ambient.upper_nether_cave.loop": { + "sounds": [ + { + "name": "ambientsounds:cave/cave-water1", + "stream": true, + "volume": 1 + }, + { + "name": "ambientsounds:cave/cave-water2", + "stream": true, + "volume": 1 + }, + { + "name": "ambientsounds:cave/cave-water3", + "stream": true, + "volume": 1 + }, + { + "name": "ambientsounds:cave/cave-water4", + "stream": true, + "volume": 1 + }, + { + "name": "ambientsounds:cave/cave-water5", + "stream": true, + "volume": 1 + } + ] + }, + "ambient.upper_nether.additions": { + "sounds": [ + { + "name": "minecraft:ambient/nether/crimson_forest/addition1", + "volume": 0.4, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/addition2", + "volume": 0.5, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/addition3", + "volume": 0.32, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/particles1", + "volume": 0.4, + "weight": 35 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/particles2", + "volume": 0.4, + "weight": 35 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/particles3", + "volume": 0.4, + "weight": 35 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/shine1", + "pitch": 0.5, + "volume": 0.1, + "weight": 6 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/shine2", + "pitch": 0.5, + "volume": 0.1, + "weight": 6 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/shine3", + "pitch": 0.5, + "volume": 0.1, + "weight": 6 + }, + { + "name": "minecraft:ambient/nether/warped_forest/enish1", + "pitch": 0.2, + "volume": 0.1, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/warped_forest/enish2", + "pitch": 0.2, + "volume": 0.1, + "weight": 6 + }, + { + "name": "minecraft:ambient/nether/warped_forest/enish3", + "pitch": 0.2, + "volume": 0.07, + "weight": 6 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/shroom1", + "volume": 0.25, + "weight": 2 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/shroom2", + "volume": 0.25, + "weight": 2 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/shroom3", + "volume": 0.25, + "weight": 2 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/twang1", + "volume": 0.25, + "weight": 2 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/voom1", + "volume": 0.7, + "weight": 4 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/voom1", + "pitch": 0.8, + "volume": 0.7, + "weight": 4 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/voom2", + "volume": 0.7, + "weight": 4 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/voom2", + "pitch": 0.8, + "volume": 0.7, + "weight": 4 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/dark1", + "volume": 0.9, + "weight": 5 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/dark2", + "volume": 0.9, + "weight": 5 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/ground1", + "volume": 0.25, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/ground2", + "volume": 0.4 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/ground3", + "volume": 0.4 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/ground4", + "volume": 0.4 + } + ] + }, + "ambient.upper_nether.mood": { + "sounds": [ + "minecraft:ambient/nether/crimson_forest/mood1", + "minecraft:ambient/nether/crimson_forest/mood2", + "minecraft:ambient/nether/crimson_forest/mood3", + "minecraft:ambient/nether/warped_forest/creak1", + "minecraft:ambient/nether/warped_forest/creak2", + "minecraft:ambient/nether/warped_forest/creak3", + "minecraft:ambient/nether/warped_forest/creak4", + "minecraft:ambient/nether/warped_forest/creak5" + ] + }, + "ambient.lower_nether.loop": { + "sounds": [ + { + "name": "minecraft:ambient/nether/nether_wastes/ambience", + "stream": true, + "volume": 0.77 + } + ] + }, + "ambient.lower_nether.additions": { + "sounds": [ + { + "name": "minecraft:ambient/nether/basalt_deltas/basaltground1", + "volume": 0.55, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/basaltground2", + "volume": 0.55, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/basaltground3", + "volume": 0.55, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/debris1", + "volume": 0.35, + "weight": 40 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/debris2", + "volume": 0.35, + "weight": 40 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/debris3", + "volume": 0.35, + "weight": 40 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/long_debris1", + "volume": 0.35, + "weight": 40 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/long_debris2", + "volume": 0.35, + "weight": 40 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/plode1", + "volume": 0.5, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/plode2", + "volume": 0.5, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/plode3", + "volume": 0.5, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/twist1", + "volume": 0.66 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/twist2", + "volume": 0.66 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/twist3", + "volume": 0.77 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/twist4", + "volume": 0.66 + } + ] + }, + "ambient.lower_nether.mood": { + "sounds": [ + "minecraft:ambient/nether/nether_wastes/mood1", + "minecraft:ambient/nether/nether_wastes/mood2", + "minecraft:ambient/nether/nether_wastes/mood3", + "minecraft:ambient/nether/nether_wastes/mood4", + "minecraft:ambient/nether/nether_wastes/mood5" + ] + }, + "ambient.moon.additions": { + "sounds": [ + { + "name": "minecraft:ambient/nether/warped_forest/addition1", + "pitch": 0.8, + "volume": 0.06, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/warped_forest/addition2", + "pitch": 0.7, + "volume": 0.06, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/warped_forest/addition3", + "pitch": 0.1, + "volume": 0.06, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/warped_forest/addition4", + "volume": 0.07, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/warped_forest/addition5", + "volume": 0.07, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/warped_forest/addition6", + "volume": 0.15 + }, + { + "name": "minecraft:ambient/nether/warped_forest/enish1", + "pitch": 0.2, + "volume": 0.1, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/warped_forest/enish2", + "pitch": 0.2, + "volume": 0.1, + "weight": 6 + }, + { + "name": "minecraft:ambient/nether/warped_forest/enish3", + "pitch": 0.2, + "volume": 0.07, + "weight": 6 + } + ] + }, + "ambient.moon.mood": { + "sounds": [ + "minecraft:ambient/nether/warped_forest/mood1", + "minecraft:ambient/nether/warped_forest/mood2", + "minecraft:ambient/nether/warped_forest/mood3", + "minecraft:ambient/nether/warped_forest/mood4", + "minecraft:ambient/nether/warped_forest/mood5", + "minecraft:ambient/nether/warped_forest/mood6", + "minecraft:ambient/nether/warped_forest/mood7", + "minecraft:ambient/nether/warped_forest/mood8" + ] + }, + "ambient.mars_desert.loop": { + "sounds": [ + { + "name": "ambientsounds:wind/howling-wind", + "stream": true, + "volume": 0.50 + } + ] + }, + "ambient.mars_desert.additions": { + "sounds": [ + { + "name": "minecraft:ambient/nether/basalt_deltas/click1", + "volume": 0.19, + "weight": 20 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click2", + "volume": 0.19, + "weight": 20 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click3", + "volume": 0.19, + "weight": 20 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click4", + "volume": 0.25, + "weight": 20 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click5", + "volume": 0.25, + "weight": 20 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click6", + "volume": 0.01, + "weight": 20 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click7", + "volume": 0.01, + "weight": 25 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click8", + "volume": 0.01, + "weight": 25 + }, + { + "name": "minecraft:ambient/nether/soulsand_valley/sand1", + "volume": 0.2, + "weight": 25 + }, + { + "name": "minecraft:ambient/nether/soulsand_valley/sand2", + "volume": 0.2, + "weight": 25 + }, + { + "name": "minecraft:ambient/nether/soulsand_valley/sand3", + "volume": 0.4, + "weight": 2 + } + ] + }, + "ambient.mars_desert.mood": { + "sounds": [ + "minecraft:ambient/nether/crimson_forest/voom1", + "minecraft:ambient/nether/crimson_forest/voom2", + "minecraft:ambient/nether/soulsand_valley/mood2", + "minecraft:ambient/nether/nether_wastes/addition4", + "minecraft:ambient/nether/nether_wastes/addition8" + ] + }, + "ambient.mars_land.loop": { + "sounds": [ + { + "name": "ambientsounds:animals/cicadas/cicadas-mushroom-fields", + "stream": true, + "volume": 0.50 + } + ] + }, + "ambient.mars_land.additions": { + "sounds": [ + { + "name": "minecraft:ambient/nether/basalt_deltas/click1", + "volume": 0.19, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click2", + "volume": 0.19, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click3", + "volume": 0.19, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click4", + "volume": 0.19, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click5", + "volume": 0.19, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click6", + "volume": 0.19, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click7", + "volume": 0.19, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/click8", + "volume": 0.19, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/soulsand_valley/sand1", + "volume": 0.2, + "weight": 25 + }, + { + "name": "minecraft:ambient/nether/soulsand_valley/sand2", + "volume": 0.2, + "weight": 25 + }, + { + "name": "minecraft:ambient/nether/soulsand_valley/sand3", + "volume": 0.4, + "weight": 25 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/shroom1", + "volume": 0.25, + "weight": 4 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/shroom2", + "volume": 0.25, + "weight": 4 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/shroom3", + "volume": 0.25, + "weight": 4 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/twang1", + "volume": 0.25, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/particles1", + "volume": 0.4, + "weight": 35 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/particles2", + "volume": 0.4, + "weight": 35 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/particles3", + "volume": 0.4, + "weight": 35 + }, + { + "name": "minecraft:ambient/nether/crimson_forest/addition1", + "volume": 0.4, + "weight": 5 + }, + { + "name": "ambientsounds:animals/special/special-mushroom-fields", + "volume": 0.4, + "weight": 20 + } + ] + }, + "ambient.mars_land.mood": { + "sounds": [ + "minecraft:ambient/nether/crimson_forest/voom1", + "minecraft:ambient/nether/crimson_forest/voom2", + "minecraft:ambient/nether/soulsand_valley/mood2", + "minecraft:ambient/nether/basalt_deltas/heavy_click1", + "minecraft:ambient/nether/basalt_deltas/heavy_click2", + "minecraft:ambient/nether/nether_wastes/addition4", + "minecraft:ambient/nether/nether_wastes/addition8", + "minecraft:ambient/nether/warped_forest/creak1", + "minecraft:ambient/nether/warped_forest/creak2", + "minecraft:ambient/nether/warped_forest/creak3", + "minecraft:ambient/nether/warped_forest/creak4", + "minecraft:ambient/nether/warped_forest/creak5" + ] + }, + "ambient.venus_surface.loop": { + "sounds": [ + { + "name": "minecraft:ambient/nether/basalt_deltas/ambience", + "stream": true, + "volume": 0.77 + } + ] + }, + "ambient.venus_surface.additions": { + "sounds": [ + { + "name": "minecraft:ambient/nether/soulsand_valley/sand1", + "volume": 0.2, + "weight": 25 + }, + { + "name": "minecraft:ambient/nether/soulsand_valley/sand2", + "volume": 0.2, + "weight": 25 + }, + { + "name": "minecraft:ambient/nether/soulsand_valley/sand3", + "volume": 0.4, + "weight": 2 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/basaltground1", + "volume": 0.55, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/basaltground2", + "volume": 0.55, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/basaltground3", + "volume": 0.55, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/debris1", + "volume": 0.35, + "weight": 40 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/debris2", + "volume": 0.35, + "weight": 40 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/debris3", + "volume": 0.35, + "weight": 40 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/long_debris1", + "volume": 0.35, + "weight": 40 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/long_debris2", + "volume": 0.35, + "weight": 40 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/plode1", + "volume": 0.5, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/plode2", + "volume": 0.5, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/plode3", + "volume": 0.5, + "weight": 10 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/twist1", + "volume": 0.66 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/twist2", + "volume": 0.66 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/twist3", + "volume": 0.77 + }, + { + "name": "minecraft:ambient/nether/basalt_deltas/twist4", + "volume": 0.66 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/addition1", + "volume": 0.3 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/addition2", + "volume": 0.3 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/addition3", + "volume": 0.1 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/addition4", + "volume": 0.67, + "weight": 5 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/addition5", + "volume": 0.3 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/addition6", + "volume": 0.3 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/addition7", + "volume": 0.3 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/addition8", + "volume": 0.67, + "weight": 5 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/dark1", + "volume": 0.9, + "weight": 5 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/dark2", + "volume": 0.9, + "weight": 5 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/ground1", + "volume": 0.25, + "weight": 3 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/ground2", + "volume": 0.4 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/ground3", + "volume": 0.4 + }, + { + "name": "minecraft:ambient/nether/nether_wastes/ground4", + "volume": 0.4 + } + ] + }, + "ambient.venus_surface.mood": { + "sounds": [ + "minecraft:ambient/nether/nether_wastes/mood1", + "minecraft:ambient/nether/nether_wastes/mood2", + "minecraft:ambient/nether/nether_wastes/mood4", + "minecraft:ambient/nether/nether_wastes/mood5", + "minecraft:ambient/nether/crimson_forest/addition1", + "minecraft:ambient/nether/crimson_forest/shine1", + "minecraft:ambient/nether/crimson_forest/shine2", + "minecraft:ambient/nether/crimson_forest/shine3" + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png new file mode 100644 index 000000000..651e8d468 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png.mcmeta new file mode 100644 index 000000000..eaf3aa63d --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png.mcmeta @@ -0,0 +1,5 @@ +{ + "ldlib": { + "connection": "tfg:block/casings/machine_casing_power_casing_ctm" + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm.png new file mode 100644 index 000000000..65abe574f Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm_n.png new file mode 100644 index 000000000..f618836e2 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm_s.png new file mode 100644 index 000000000..caa8b7323 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_n.png new file mode 100644 index 000000000..17163a5b1 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_n.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_s.png new file mode 100644 index 000000000..a9472dbe1 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_s.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/test_casing.png b/kubejs/assets/tfg/textures/block/casings/test_casing.png new file mode 100644 index 000000000..ebe3418a7 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/test_casing.png differ diff --git a/kubejs/assets/tfg/textures/block/casings/test_casing.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/test_casing.png.mcmeta new file mode 100644 index 000000000..620b7685a --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/test_casing.png.mcmeta @@ -0,0 +1,5 @@ +{ + "ldlib": { + "connection": "tfg:block/casings/test_casing_ctm" + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/test_casing_ctm.png b/kubejs/assets/tfg/textures/block/casings/test_casing_ctm.png new file mode 100644 index 000000000..76241a5fa Binary files /dev/null and b/kubejs/assets/tfg/textures/block/casings/test_casing_ctm.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.brown_gravy.png b/kubejs/assets/tfg/textures/block/fluids/fluid.brown_gravy.png new file mode 100644 index 000000000..ec7aebccc Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.brown_gravy.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.brown_gravy.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.brown_gravy.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.brown_gravy.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.btx_fuel.png b/kubejs/assets/tfg/textures/block/fluids/fluid.btx_fuel.png new file mode 100644 index 000000000..74cc01926 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.btx_fuel.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.btx_fuel.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.btx_fuel.png.mcmeta new file mode 100644 index 000000000..c5d457f93 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.btx_fuel.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.crystal_violet.png b/kubejs/assets/tfg/textures/block/fluids/fluid.crystal_violet.png new file mode 100644 index 000000000..053ca4753 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.crystal_violet.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.crystal_violet.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.crystal_violet.png.mcmeta new file mode 100644 index 000000000..c5d457f93 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.crystal_violet.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.fibroblast_feeder_cells.png b/kubejs/assets/tfg/textures/block/fluids/fluid.fibroblast_feeder_cells.png new file mode 100644 index 000000000..bb199bbab Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.fibroblast_feeder_cells.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.fibroblast_feeder_cells.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.fibroblast_feeder_cells.png.mcmeta new file mode 100644 index 000000000..c5d457f93 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.fibroblast_feeder_cells.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.gram_stain.png b/kubejs/assets/tfg/textures/block/fluids/fluid.gram_stain.png new file mode 100644 index 000000000..23fa15004 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.gram_stain.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.gram_stain.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.gram_stain.png.mcmeta new file mode 100644 index 000000000..c5d457f93 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.gram_stain.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.light_stock.png b/kubejs/assets/tfg/textures/block/fluids/fluid.light_stock.png new file mode 100644 index 000000000..11da6df5e Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.light_stock.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.light_stock.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.light_stock.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.light_stock.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.mutative_yeast.png b/kubejs/assets/tfg/textures/block/fluids/fluid.mutative_yeast.png new file mode 100644 index 000000000..8201e0ca1 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.mutative_yeast.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.mutative_yeast.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.mutative_yeast.png.mcmeta new file mode 100644 index 000000000..c5d457f93 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.mutative_yeast.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.proto_growth_medium.png b/kubejs/assets/tfg/textures/block/fluids/fluid.proto_growth_medium.png new file mode 100644 index 000000000..7172a5e9d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.proto_growth_medium.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.proto_growth_medium.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.proto_growth_medium.png.mcmeta new file mode 100644 index 000000000..c5d457f93 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.proto_growth_medium.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.reformate_gas.png b/kubejs/assets/tfg/textures/block/fluids/fluid.reformate_gas.png new file mode 100644 index 000000000..115a2347d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.reformate_gas.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.reformate_gas.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.reformate_gas.png.mcmeta new file mode 100644 index 000000000..c5d457f93 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.reformate_gas.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.rich_stock.png b/kubejs/assets/tfg/textures/block/fluids/fluid.rich_stock.png new file mode 100644 index 000000000..aab25e25f Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.rich_stock.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.rich_stock.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.rich_stock.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.rich_stock.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.syngas.png b/kubejs/assets/tfg/textures/block/fluids/fluid.syngas.png new file mode 100644 index 000000000..aa275d6cf Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.syngas.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.syngas.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.syngas.png.mcmeta new file mode 100644 index 000000000..c5d457f93 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.syngas.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.triglyceride_oil.png b/kubejs/assets/tfg/textures/block/fluids/fluid.triglyceride_oil.png new file mode 100644 index 000000000..da48ed475 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/fluids/fluid.triglyceride_oil.png differ diff --git a/kubejs/assets/tfg/textures/block/fluids/fluid.triglyceride_oil.png.mcmeta b/kubejs/assets/tfg/textures/block/fluids/fluid.triglyceride_oil.png.mcmeta new file mode 100644 index 000000000..c5d457f93 --- /dev/null +++ b/kubejs/assets/tfg/textures/block/fluids/fluid.triglyceride_oil.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/halite.png b/kubejs/assets/tfg/textures/block/halite.png new file mode 100644 index 000000000..2a114b8e2 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/halite.png differ diff --git a/kubejs/assets/tfg/textures/block/steam_bloomery/overlay_front.png b/kubejs/assets/tfg/textures/block/machines/steam_bloomery/overlay_front.png similarity index 100% rename from kubejs/assets/tfg/textures/block/steam_bloomery/overlay_front.png rename to kubejs/assets/tfg/textures/block/machines/steam_bloomery/overlay_front.png diff --git a/kubejs/assets/tfg/textures/block/steam_bloomery/overlay_front_active.png b/kubejs/assets/tfg/textures/block/machines/steam_bloomery/overlay_front_active.png similarity index 100% rename from kubejs/assets/tfg/textures/block/steam_bloomery/overlay_front_active.png rename to kubejs/assets/tfg/textures/block/machines/steam_bloomery/overlay_front_active.png diff --git a/kubejs/assets/tfg/textures/block/steam_bloomery/overlay_front_active.png.mcmeta b/kubejs/assets/tfg/textures/block/machines/steam_bloomery/overlay_front_active.png.mcmeta similarity index 100% rename from kubejs/assets/tfg/textures/block/steam_bloomery/overlay_front_active.png.mcmeta rename to kubejs/assets/tfg/textures/block/machines/steam_bloomery/overlay_front_active.png.mcmeta diff --git a/kubejs/assets/tfg/textures/block/planets/venus/lava_source.png b/kubejs/assets/tfg/textures/block/planets/venus/lava_source.png new file mode 100644 index 000000000..cc2c1ce2d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/planets/venus/lava_source.png differ diff --git a/kubejs/assets/tfg/textures/block/planets/venus/smoker_source.png b/kubejs/assets/tfg/textures/block/planets/venus/smoker_source.png new file mode 100644 index 000000000..7305ee126 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/planets/venus/smoker_source.png differ diff --git a/kubejs/assets/tfg/textures/block/planets/venus/volcanic_ash.png b/kubejs/assets/tfg/textures/block/planets/venus/volcanic_ash.png new file mode 100644 index 000000000..1f657c59b Binary files /dev/null and b/kubejs/assets/tfg/textures/block/planets/venus/volcanic_ash.png differ diff --git a/kubejs/assets/tfg/textures/block/titanium_exhaust_vent.png b/kubejs/assets/tfg/textures/block/titanium_exhaust_vent.png new file mode 100644 index 000000000..27f09a0c6 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/titanium_exhaust_vent.png differ diff --git a/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_axis.png b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_axis.png new file mode 100644 index 000000000..38eb262d8 Binary files /dev/null and b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_axis.png differ diff --git a/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_blades.png b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_blades.png new file mode 100644 index 000000000..4d1d83bc0 Binary files /dev/null and b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_blades.png differ diff --git a/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_hopper_0.png b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_hopper_0.png new file mode 100644 index 000000000..32146fad3 Binary files /dev/null and b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_hopper_0.png differ diff --git a/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_hopper_1.png b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_hopper_1.png new file mode 100644 index 000000000..19a787cf8 Binary files /dev/null and b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_hopper_1.png differ diff --git a/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_shafts.png b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_shafts.png new file mode 100644 index 000000000..2a1b50784 Binary files /dev/null and b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_shafts.png differ diff --git a/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_wheel.png b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_wheel.png new file mode 100644 index 000000000..0cd359bfa Binary files /dev/null and b/kubejs/assets/tfg/textures/entity/rnr_plow/rnr_plow_wheel.png differ diff --git a/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart.png b/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart.png new file mode 100644 index 000000000..1f5b71176 Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart.png differ diff --git a/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_random.png b/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_random.png new file mode 100644 index 000000000..d8193c8ae Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_random.png differ diff --git a/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_width.png b/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_width.png new file mode 100644 index 000000000..5c683a864 Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_gui_width.png differ diff --git a/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_path_random.png b/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_path_random.png new file mode 100644 index 000000000..e34e0e080 Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_path_random.png differ diff --git a/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_path_width.png b/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_path_width.png new file mode 100644 index 000000000..f274a4195 Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/field_guide/paving_cart/tfg_paving_cart_path_width.png differ diff --git a/kubejs/assets/tfg/textures/gui/rnr_plow.png b/kubejs/assets/tfg/textures/gui/rnr_plow.png new file mode 100644 index 000000000..b2473c669 Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/rnr_plow.png differ diff --git a/kubejs/assets/tfg/textures/gui/rnr_plow_slider_bg.png b/kubejs/assets/tfg/textures/gui/rnr_plow_slider_bg.png new file mode 100644 index 000000000..e90c2ebed Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/rnr_plow_slider_bg.png differ diff --git a/kubejs/assets/tfg/textures/gui/rnr_plow_slider_handle.png b/kubejs/assets/tfg/textures/gui/rnr_plow_slider_handle.png new file mode 100644 index 000000000..b10e6522c Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/rnr_plow_slider_handle.png differ diff --git a/kubejs/assets/tfg/textures/gui/rnr_plow_toggle.png b/kubejs/assets/tfg/textures/gui/rnr_plow_toggle.png new file mode 100644 index 000000000..aa879273b Binary files /dev/null and b/kubejs/assets/tfg/textures/gui/rnr_plow_toggle.png differ diff --git a/kubejs/assets/tfg/textures/item/alpha_keratin.png b/kubejs/assets/tfg/textures/item/alpha_keratin.png new file mode 100644 index 000000000..af6c1136a Binary files /dev/null and b/kubejs/assets/tfg/textures/item/alpha_keratin.png differ diff --git a/kubejs/assets/tfg/textures/item/brick/deepslate.png b/kubejs/assets/tfg/textures/item/brick/deepslate.png index d61268f64..9f93f2337 100644 Binary files a/kubejs/assets/tfg/textures/item/brick/deepslate.png and b/kubejs/assets/tfg/textures/item/brick/deepslate.png differ diff --git a/kubejs/assets/tfg/textures/item/brick/permafrost.png b/kubejs/assets/tfg/textures/item/brick/permafrost.png index b931afeef..46143685d 100644 Binary files a/kubejs/assets/tfg/textures/item/brick/permafrost.png and b/kubejs/assets/tfg/textures/item/brick/permafrost.png differ diff --git a/kubejs/assets/tfg/textures/item/btx/catalyser_zsm.png b/kubejs/assets/tfg/textures/item/btx/catalyser_zsm.png new file mode 100644 index 000000000..f8d93fddb Binary files /dev/null and b/kubejs/assets/tfg/textures/item/btx/catalyser_zsm.png differ diff --git a/kubejs/assets/tfg/textures/item/btx/loaded_resin.png b/kubejs/assets/tfg/textures/item/btx/loaded_resin.png new file mode 100644 index 000000000..cebb88752 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/btx/loaded_resin.png differ diff --git a/kubejs/assets/tfg/textures/item/btx/used_catalyser.png b/kubejs/assets/tfg/textures/item/btx/used_catalyser.png new file mode 100644 index 000000000..571b23671 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/btx/used_catalyser.png differ diff --git a/kubejs/assets/tfg/textures/item/cellulose_matrix.png b/kubejs/assets/tfg/textures/item/cellulose_matrix.png new file mode 100644 index 000000000..d07ee3b47 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/cellulose_matrix.png differ diff --git a/kubejs/assets/tfg/textures/item/cobalt_brass_wheel.png b/kubejs/assets/tfg/textures/item/cobalt_brass_wheel.png new file mode 100644 index 000000000..c38a2c96b Binary files /dev/null and b/kubejs/assets/tfg/textures/item/cobalt_brass_wheel.png differ diff --git a/kubejs/assets/tfg/textures/item/food/allspice.png b/kubejs/assets/tfg/textures/item/food/allspice.png new file mode 100644 index 000000000..1ece22c99 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/allspice.png differ diff --git a/kubejs/assets/tfg/textures/item/food/bay_leaf.png b/kubejs/assets/tfg/textures/item/food/bay_leaf.png new file mode 100644 index 000000000..ded897a5c Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/bay_leaf.png differ diff --git a/kubejs/assets/tfg/textures/item/food/brioche_bun.png b/kubejs/assets/tfg/textures/item/food/brioche_bun.png new file mode 100644 index 000000000..975b0d1b2 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/brioche_bun.png differ diff --git a/kubejs/assets/tfg/textures/item/food/brioche_dough.png b/kubejs/assets/tfg/textures/item/food/brioche_dough.png new file mode 100644 index 000000000..030a8abca Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/brioche_dough.png differ diff --git a/kubejs/assets/tfg/textures/item/food/cardamom_pods.png b/kubejs/assets/tfg/textures/item/food/cardamom_pods.png new file mode 100644 index 000000000..12c688141 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/cardamom_pods.png differ diff --git a/kubejs/assets/tfg/textures/item/food/cheeseburger.png b/kubejs/assets/tfg/textures/item/food/cheeseburger.png new file mode 100644 index 000000000..9a559da47 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/cheeseburger.png differ diff --git a/kubejs/assets/tfg/textures/item/food/cilantro_leaves.png b/kubejs/assets/tfg/textures/item/food/cilantro_leaves.png new file mode 100644 index 000000000..86192f298 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/cilantro_leaves.png differ diff --git a/kubejs/assets/tfg/textures/item/food/cooked_beer_battered_cheese_curds.png b/kubejs/assets/tfg/textures/item/food/cooked_beer_battered_cheese_curds.png new file mode 100644 index 000000000..cceb3dea4 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/cooked_beer_battered_cheese_curds.png differ diff --git a/kubejs/assets/tfg/textures/item/food/cooked_beer_battered_cheese_curds.png.mcmeta b/kubejs/assets/tfg/textures/item/food/cooked_beer_battered_cheese_curds.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/item/food/cooked_beer_battered_cheese_curds.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/item/food/cooked_burger_patty.png b/kubejs/assets/tfg/textures/item/food/cooked_burger_patty.png new file mode 100644 index 000000000..caf88a93d Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/cooked_burger_patty.png differ diff --git a/kubejs/assets/tfg/textures/item/food/cooked_fries.png b/kubejs/assets/tfg/textures/item/food/cooked_fries.png new file mode 100644 index 000000000..9bea0c90c Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/cooked_fries.png differ diff --git a/kubejs/assets/tfg/textures/item/food/cooked_instant_mac.png b/kubejs/assets/tfg/textures/item/food/cooked_instant_mac.png new file mode 100644 index 000000000..021cc9c07 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/cooked_instant_mac.png differ diff --git a/kubejs/assets/tfg/textures/item/food/cooked_instant_mac.png.mcmeta b/kubejs/assets/tfg/textures/item/food/cooked_instant_mac.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/item/food/cooked_instant_mac.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/item/food/cumin_seeds.png b/kubejs/assets/tfg/textures/item/food/cumin_seeds.png new file mode 100644 index 000000000..7b4b671ed Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/cumin_seeds.png differ diff --git a/kubejs/assets/tfg/textures/item/food/hamburger.png b/kubejs/assets/tfg/textures/item/food/hamburger.png new file mode 100644 index 000000000..c333931c7 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/hamburger.png differ diff --git a/kubejs/assets/tfg/textures/item/food/oatmeal.png b/kubejs/assets/tfg/textures/item/food/oatmeal.png new file mode 100644 index 000000000..517149f32 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/oatmeal.png differ diff --git a/kubejs/assets/tfg/textures/item/food/oregano_leaves.png b/kubejs/assets/tfg/textures/item/food/oregano_leaves.png new file mode 100644 index 000000000..52bb44f27 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/oregano_leaves.png differ diff --git a/kubejs/assets/tfg/textures/item/food/poutine.png b/kubejs/assets/tfg/textures/item/food/poutine.png new file mode 100644 index 000000000..7cea2151b Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/poutine.png differ diff --git a/kubejs/assets/tfg/textures/item/food/poutine.png.mcmeta b/kubejs/assets/tfg/textures/item/food/poutine.png.mcmeta new file mode 100644 index 000000000..24f9c2fae --- /dev/null +++ b/kubejs/assets/tfg/textures/item/food/poutine.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} diff --git a/kubejs/assets/tfg/textures/item/food/raw_beer_battered_cheese_curds.png b/kubejs/assets/tfg/textures/item/food/raw_beer_battered_cheese_curds.png new file mode 100644 index 000000000..d5cb722f8 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/raw_beer_battered_cheese_curds.png differ diff --git a/kubejs/assets/tfg/textures/item/food/raw_burger_patty.png b/kubejs/assets/tfg/textures/item/food/raw_burger_patty.png new file mode 100644 index 000000000..2c6c320cc Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/raw_burger_patty.png differ diff --git a/kubejs/assets/tfg/textures/item/food/raw_fries.png b/kubejs/assets/tfg/textures/item/food/raw_fries.png new file mode 100644 index 000000000..546d78da1 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/raw_fries.png differ diff --git a/kubejs/assets/tfg/textures/item/food/raw_instant_mac.png b/kubejs/assets/tfg/textures/item/food/raw_instant_mac.png new file mode 100644 index 000000000..efcc3c912 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/raw_instant_mac.png differ diff --git a/kubejs/assets/tfg/textures/item/food/slice_of_cheese.png b/kubejs/assets/tfg/textures/item/food/slice_of_cheese.png new file mode 100644 index 000000000..bad25d5c6 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/food/slice_of_cheese.png differ diff --git a/kubejs/assets/tfg/textures/item/geyser_slurry_bucket.png b/kubejs/assets/tfg/textures/item/geyser_slurry_bucket.png new file mode 100644 index 000000000..57cf950d4 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/geyser_slurry_bucket.png differ diff --git a/kubejs/assets/tfg/textures/item/loose/deepslate.png b/kubejs/assets/tfg/textures/item/loose/deepslate.png index be72ac98b..4981e249c 100644 Binary files a/kubejs/assets/tfg/textures/item/loose/deepslate.png and b/kubejs/assets/tfg/textures/item/loose/deepslate.png differ diff --git a/kubejs/assets/tfg/textures/item/loose/dripstone.png b/kubejs/assets/tfg/textures/item/loose/dripstone.png index 3c32afdcb..af04dd77f 100644 Binary files a/kubejs/assets/tfg/textures/item/loose/dripstone.png and b/kubejs/assets/tfg/textures/item/loose/dripstone.png differ diff --git a/kubejs/assets/tfg/textures/item/loose/glacio_stone.png b/kubejs/assets/tfg/textures/item/loose/glacio_stone.png index fdf9de909..b94142de7 100644 Binary files a/kubejs/assets/tfg/textures/item/loose/glacio_stone.png and b/kubejs/assets/tfg/textures/item/loose/glacio_stone.png differ diff --git a/kubejs/assets/tfg/textures/item/loose/mars_stone.png b/kubejs/assets/tfg/textures/item/loose/mars_stone.png index f3ef23b0a..b5b553d29 100644 Binary files a/kubejs/assets/tfg/textures/item/loose/mars_stone.png and b/kubejs/assets/tfg/textures/item/loose/mars_stone.png differ diff --git a/kubejs/assets/tfg/textures/item/loose/mercury_stone.png b/kubejs/assets/tfg/textures/item/loose/mercury_stone.png index a39f9e3f2..e72c1aadb 100644 Binary files a/kubejs/assets/tfg/textures/item/loose/mercury_stone.png and b/kubejs/assets/tfg/textures/item/loose/mercury_stone.png differ diff --git a/kubejs/assets/tfg/textures/item/loose/moon_deepslate.png b/kubejs/assets/tfg/textures/item/loose/moon_deepslate.png index 9f74b724d..2d4c65713 100644 Binary files a/kubejs/assets/tfg/textures/item/loose/moon_deepslate.png and b/kubejs/assets/tfg/textures/item/loose/moon_deepslate.png differ diff --git a/kubejs/assets/tfg/textures/item/loose/moon_stone.png b/kubejs/assets/tfg/textures/item/loose/moon_stone.png index 991127684..0b502e6c9 100644 Binary files a/kubejs/assets/tfg/textures/item/loose/moon_stone.png and b/kubejs/assets/tfg/textures/item/loose/moon_stone.png differ diff --git a/kubejs/assets/tfg/textures/item/loose/red_granite.png b/kubejs/assets/tfg/textures/item/loose/red_granite.png index 2a68bc48b..36648f836 100644 Binary files a/kubejs/assets/tfg/textures/item/loose/red_granite.png and b/kubejs/assets/tfg/textures/item/loose/red_granite.png differ diff --git a/kubejs/assets/tfg/textures/item/loose/venus_stone.png b/kubejs/assets/tfg/textures/item/loose/venus_stone.png index 0b9d23b10..511f54d1c 100644 Binary files a/kubejs/assets/tfg/textures/item/loose/venus_stone.png and b/kubejs/assets/tfg/textures/item/loose/venus_stone.png differ diff --git a/kubejs/assets/tfg/textures/item/mold/fired/nugget_mold_empty.png b/kubejs/assets/tfg/textures/item/mold/fired/nugget_mold_empty.png new file mode 100644 index 000000000..5be985371 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/mold/fired/nugget_mold_empty.png differ diff --git a/kubejs/assets/tfg/textures/item/mold/fired/nugget_mold_overlay.png b/kubejs/assets/tfg/textures/item/mold/fired/nugget_mold_overlay.png new file mode 100644 index 000000000..3c973400e Binary files /dev/null and b/kubejs/assets/tfg/textures/item/mold/fired/nugget_mold_overlay.png differ diff --git a/kubejs/assets/tfg/textures/item/mold/fired/rod_mold_empty.png b/kubejs/assets/tfg/textures/item/mold/fired/rod_mold_empty.png new file mode 100644 index 000000000..659f25f1a Binary files /dev/null and b/kubejs/assets/tfg/textures/item/mold/fired/rod_mold_empty.png differ diff --git a/kubejs/assets/tfg/textures/item/mold/fired/rod_mold_overlay.png b/kubejs/assets/tfg/textures/item/mold/fired/rod_mold_overlay.png new file mode 100644 index 000000000..c37e7324a Binary files /dev/null and b/kubejs/assets/tfg/textures/item/mold/fired/rod_mold_overlay.png differ diff --git a/kubejs/assets/tfg/textures/item/mold/fired/small_gear_mold_empty.png b/kubejs/assets/tfg/textures/item/mold/fired/small_gear_mold_empty.png new file mode 100644 index 000000000..aa38678ae Binary files /dev/null and b/kubejs/assets/tfg/textures/item/mold/fired/small_gear_mold_empty.png differ diff --git a/kubejs/assets/tfg/textures/item/mold/fired/small_gear_mold_overlay.png b/kubejs/assets/tfg/textures/item/mold/fired/small_gear_mold_overlay.png new file mode 100644 index 000000000..c07e67ea5 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/mold/fired/small_gear_mold_overlay.png differ diff --git a/kubejs/assets/tfg/textures/item/mold/unfired/unfired_nugget_mold.png b/kubejs/assets/tfg/textures/item/mold/unfired/unfired_nugget_mold.png new file mode 100644 index 000000000..6c2b4a1b0 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/mold/unfired/unfired_nugget_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/mold/unfired/unfired_rod_mold.png b/kubejs/assets/tfg/textures/item/mold/unfired/unfired_rod_mold.png new file mode 100644 index 000000000..357edd2df Binary files /dev/null and b/kubejs/assets/tfg/textures/item/mold/unfired/unfired_rod_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/mold/unfired/unfired_small_gear_mold.png b/kubejs/assets/tfg/textures/item/mold/unfired/unfired_small_gear_mold.png new file mode 100644 index 000000000..96a33620e Binary files /dev/null and b/kubejs/assets/tfg/textures/item/mold/unfired/unfired_small_gear_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/progenitor_cells_0.png b/kubejs/assets/tfg/textures/item/progenitor_cells_0.png new file mode 100644 index 000000000..0fc0e4248 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/progenitor_cells_0.png differ diff --git a/kubejs/assets/tfg/textures/item/progenitor_cells_0.png.mcmeta b/kubejs/assets/tfg/textures/item/progenitor_cells_0.png.mcmeta new file mode 100644 index 000000000..3c69a2b6a --- /dev/null +++ b/kubejs/assets/tfg/textures/item/progenitor_cells_0.png.mcmeta @@ -0,0 +1 @@ +{"animation": {"frametime": 2, "frames": [{"index": 0, "time":40}, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]}} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/progenitor_cells_1.png b/kubejs/assets/tfg/textures/item/progenitor_cells_1.png new file mode 100644 index 000000000..4a16c8564 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/progenitor_cells_1.png differ diff --git a/kubejs/assets/tfg/textures/item/progenitor_cells_1.png.mcmeta b/kubejs/assets/tfg/textures/item/progenitor_cells_1.png.mcmeta new file mode 100644 index 000000000..3c69a2b6a --- /dev/null +++ b/kubejs/assets/tfg/textures/item/progenitor_cells_1.png.mcmeta @@ -0,0 +1 @@ +{"animation": {"frametime": 2, "frames": [{"index": 0, "time":40}, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]}} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/progenitor_cells_2.png b/kubejs/assets/tfg/textures/item/progenitor_cells_2.png new file mode 100644 index 000000000..4682edfab Binary files /dev/null and b/kubejs/assets/tfg/textures/item/progenitor_cells_2.png differ diff --git a/kubejs/assets/tfg/textures/item/progenitor_cells_2.png.mcmeta b/kubejs/assets/tfg/textures/item/progenitor_cells_2.png.mcmeta new file mode 100644 index 000000000..3c69a2b6a --- /dev/null +++ b/kubejs/assets/tfg/textures/item/progenitor_cells_2.png.mcmeta @@ -0,0 +1 @@ +{"animation": {"frametime": 2, "frames": [{"index": 0, "time":40}, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]}} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/rnr_plow_item.png b/kubejs/assets/tfg/textures/item/rnr_plow_item.png new file mode 100644 index 000000000..6539f4670 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/rnr_plow_item.png differ diff --git a/kubejs/assets/tfg/textures/item/rough_endoplasmic_reticula.png b/kubejs/assets/tfg/textures/item/rough_endoplasmic_reticula.png new file mode 100644 index 000000000..6289fefd9 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/rough_endoplasmic_reticula.png differ diff --git a/kubejs/assets/tfg/textures/item/smooth_endoplasmic_reticula.png b/kubejs/assets/tfg/textures/item/smooth_endoplasmic_reticula.png new file mode 100644 index 000000000..3d651d134 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/smooth_endoplasmic_reticula.png differ diff --git a/kubejs/assets/tfg/textures/item/sulfur_fumes_bucket.png b/kubejs/assets/tfg/textures/item/sulfur_fumes_bucket.png new file mode 100644 index 000000000..2108e9ca5 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/sulfur_fumes_bucket.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/arsenicosis_warning.png b/kubejs/assets/tfg/textures/mob_effect/arsenicosis_warning.png new file mode 100644 index 000000000..9c8054a5e Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/arsenicosis_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/asbestosis_warning.png b/kubejs/assets/tfg/textures/mob_effect/asbestosis_warning.png new file mode 100644 index 000000000..93dc9a5dc Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/asbestosis_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/berylliosis_warning.png b/kubejs/assets/tfg/textures/mob_effect/berylliosis_warning.png new file mode 100644 index 000000000..a660d82ac Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/berylliosis_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/carbon_monoxide_poisoning_warning.png b/kubejs/assets/tfg/textures/mob_effect/carbon_monoxide_poisoning_warning.png new file mode 100644 index 000000000..90025b975 Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/carbon_monoxide_poisoning_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/carcinogen_warning.png b/kubejs/assets/tfg/textures/mob_effect/carcinogen_warning.png new file mode 100644 index 000000000..f41bf0c11 Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/carcinogen_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/chemical_burns_warning.png b/kubejs/assets/tfg/textures/mob_effect/chemical_burns_warning.png new file mode 100644 index 000000000..914655869 Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/chemical_burns_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/cooling.png b/kubejs/assets/tfg/textures/mob_effect/cooling.png index 609186a2b..06feddf71 100644 Binary files a/kubejs/assets/tfg/textures/mob_effect/cooling.png and b/kubejs/assets/tfg/textures/mob_effect/cooling.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/hazard2.png b/kubejs/assets/tfg/textures/mob_effect/hazard2.png new file mode 100644 index 000000000..7a5981db1 Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/hazard2.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/irritant_warning.png b/kubejs/assets/tfg/textures/mob_effect/irritant_warning.png new file mode 100644 index 000000000..9b4b506ae Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/irritant_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/methanol_poisoning_warning.png b/kubejs/assets/tfg/textures/mob_effect/methanol_poisoning_warning.png new file mode 100644 index 000000000..085a413ea Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/methanol_poisoning_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/nausea_warning.png b/kubejs/assets/tfg/textures/mob_effect/nausea_warning.png new file mode 100644 index 000000000..5c2f3fe7d Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/nausea_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/poison_warning.png b/kubejs/assets/tfg/textures/mob_effect/poison_warning.png new file mode 100644 index 000000000..ed4c02655 Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/poison_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/prion_disease_warning.png b/kubejs/assets/tfg/textures/mob_effect/prion_disease_warning.png new file mode 100644 index 000000000..e9034f34e Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/prion_disease_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/radioactive_warning.png b/kubejs/assets/tfg/textures/mob_effect/radioactive_warning.png new file mode 100644 index 000000000..b70cfb00c Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/radioactive_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/silicosis_warning.png b/kubejs/assets/tfg/textures/mob_effect/silicosis_warning.png new file mode 100644 index 000000000..53075bc68 Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/silicosis_warning.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/warming.png b/kubejs/assets/tfg/textures/mob_effect/warming.png index 72ae45afb..977056ee0 100644 Binary files a/kubejs/assets/tfg/textures/mob_effect/warming.png and b/kubejs/assets/tfg/textures/mob_effect/warming.png differ diff --git a/kubejs/assets/tfg/textures/mob_effect/weak_poison_warning.png b/kubejs/assets/tfg/textures/mob_effect/weak_poison_warning.png new file mode 100644 index 000000000..1fba3ae25 Binary files /dev/null and b/kubejs/assets/tfg/textures/mob_effect/weak_poison_warning.png differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle.png deleted file mode 100644 index ed4f5f44d..000000000 Binary files a/kubejs/assets/tfg/textures/particle/cooling_steam_particle.png and /dev/null differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle_0.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_0.png new file mode 100644 index 000000000..f62467d9c Binary files /dev/null and b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_0.png differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle_1.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_1.png new file mode 100644 index 000000000..0b0516643 Binary files /dev/null and b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_1.png differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle_2.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_2.png new file mode 100644 index 000000000..314f9570e Binary files /dev/null and b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_2.png differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle_3.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_3.png new file mode 100644 index 000000000..ed2347d8d Binary files /dev/null and b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_3.png differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle_4.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_4.png new file mode 100644 index 000000000..7c7167f82 Binary files /dev/null and b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_4.png differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle_5.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_5.png new file mode 100644 index 000000000..ca380242b Binary files /dev/null and b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_5.png differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle_6.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_6.png new file mode 100644 index 000000000..0e8117aaa Binary files /dev/null and b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_6.png differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle_7.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_7.png new file mode 100644 index 000000000..c0d8c3ed9 Binary files /dev/null and b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_7.png differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle_8.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_8.png new file mode 100644 index 000000000..07208ef20 Binary files /dev/null and b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_8.png differ diff --git a/kubejs/assets/tfg/textures/particle/cooling_steam_particle_9.png b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_9.png new file mode 100644 index 000000000..b9386dda5 Binary files /dev/null and b/kubejs/assets/tfg/textures/particle/cooling_steam_particle_9.png differ diff --git a/kubejs/assets/tfg/textures/quests/ebf_power.png b/kubejs/assets/tfg/textures/quests/ebf_power.png new file mode 100644 index 000000000..869aeed1d Binary files /dev/null and b/kubejs/assets/tfg/textures/quests/ebf_power.png differ diff --git a/kubejs/assets/tfg/textures/quests/prospector_gui.png b/kubejs/assets/tfg/textures/quests/prospector_gui.png new file mode 100644 index 000000000..46ff117ad Binary files /dev/null and b/kubejs/assets/tfg/textures/quests/prospector_gui.png differ diff --git a/kubejs/assets/tfg_excludes.zip b/kubejs/assets/tfg_excludes.zip index 3a91c3105..fc97c92b3 100644 Binary files a/kubejs/assets/tfg_excludes.zip and b/kubejs/assets/tfg_excludes.zip differ diff --git a/kubejs/assets/vintageimprovements/lang/ja_jp.json b/kubejs/assets/vintageimprovements/lang/ja_jp.json new file mode 100644 index 000000000..80fafe676 --- /dev/null +++ b/kubejs/assets/vintageimprovements/lang/ja_jp.json @@ -0,0 +1,22 @@ +{ + "__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": "Vacuum Chamber", + "block.vintageimprovements.lathe": "&cDEPRECATED&r Lathe", + "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/vintageimprovements/lang/ru_ru.json b/kubejs/assets/vintageimprovements/lang/ru_ru.json index 4abf1e2e3..c048dbdf4 100644 --- a/kubejs/assets/vintageimprovements/lang/ru_ru.json +++ b/kubejs/assets/vintageimprovements/lang/ru_ru.json @@ -1,29 +1,25 @@ { "__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": "Вакуумная ΠΊΠ°ΠΌΠ΅Ρ€Π°", + "block.vintageimprovements.lathe": "&cDEPRECATED&r Lathe", "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.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.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": "Вакуумная ΠΊΠ°ΠΌΠ΅Ρ€Π°" + "block.vintageimprovements.vanadium_block": "Π’Π°Π½Π°Π΄ΠΈΠΉ (Π‘Π»ΠΎΠΊ)" } \ No newline at end of file diff --git a/kubejs/assets/vintageimprovements/textures/block/sulfur_block.png b/kubejs/assets/vintageimprovements/textures/block/sulfur_block.png new file mode 100644 index 000000000..2ea74baf2 Binary files /dev/null and b/kubejs/assets/vintageimprovements/textures/block/sulfur_block.png differ diff --git a/kubejs/assets/wan_ancient_beasts/lang/ru_ru.json b/kubejs/assets/wan_ancient_beasts/lang/ru_ru.json new file mode 100644 index 000000000..6da5a0cc8 --- /dev/null +++ b/kubejs/assets/wan_ancient_beasts/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.", + "block.wan_ancient_beasts.quick_red_sand": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ Π·Ρ‹Π±ΡƒΡ‡ΠΈΠΉ пСсок", + "item.wan_ancient_beasts.toxlacanth": "Π‘Ρ‹Ρ€ΠΎΠΉ токслакант", + "item.wan_ancient_beasts.raw_ancient_meat": "Бырая Π½ΠΎΠΆΠΊΠ° поТиратСля", + "item.wan_ancient_beasts.cooked_ancient_meat": "ΠŸΡ€ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»Π΅Π½Π½Π°Ρ Π½ΠΎΠΆΠΊΠ° поТиратСля" +} \ No newline at end of file diff --git a/kubejs/client_scripts/example.js b/kubejs/client_scripts/example.js deleted file mode 100644 index c283f7462..000000000 --- a/kubejs/client_scripts/example.js +++ /dev/null @@ -1,3 +0,0 @@ -// priority: 1 - -console.log('TerraFirmaGreg the best modpack in the world :)') \ No newline at end of file diff --git a/kubejs/client_scripts/tooltips.js b/kubejs/client_scripts/tooltips.js index a0ac6ce29..2a72f591c 100644 --- a/kubejs/client_scripts/tooltips.js +++ b/kubejs/client_scripts/tooltips.js @@ -5,7 +5,7 @@ */ const registerTooltips = (event) => { //Your IDE may say that "item" and "advanced" are never used, but they are required! So dont remove them <3 - + event.addAdvanced(['minecraft:name_tag'], (item, advanced, text) => { text.add(1, Text.translate('tfg.tooltip.nametag')) }) @@ -18,45 +18,151 @@ const registerTooltips = (event) => { event.addAdvanced(['create:blaze_burner'], (item, advanced, text) => { text.add(1, Text.translate('tfg.tooltip.blaze_burner')) }) + event.addAdvanced(['tfg:antipoison_pill'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.antipoison_pill')) + }) + event.addAdvanced(['tfg:antipoison_tablet'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.antipoison_tablet')) + }) event.addAdvanced(['tfg:electric_greenhouse'], (item, advanced, text) => { - text.add(1, Text.translate('tfg.tooltip.machine.perfect_overclock')), - text.add(2, Text.translate('tfg.tooltip.machine.customize_interior')) + text.add(1, Text.translate('tfg.tooltip.machine.electric_greenhouse_1')); + text.add(2, Text.translate('tfg.tooltip.machine.electric_greenhouse_2')); + text.add(3, Text.translate('tfg.tooltip.machine.perfect_overclock')); + text.add(4, Text.translate('tfg.tooltip.machine.two_energy_hatches')); + text.add(5, Text.translate('tfg.tooltip.machine.customize_interior')); + }) + event.addAdvanced(['tfg:growth_chamber'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.machine.growth_chamber_1')); + text.add(2, Text.translate('tfg.tooltip.machine.growth_chamber_2')); + text.add(3, Text.translate('tfg.tooltip.machine.two_energy_hatches')); + }) + event.addAdvanced(['tfg:evaporation_tower'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.machine.evaporation_tower_1')); + text.add(2, Text.translate('tfg.tooltip.machine.evaporation_tower_2')); + text.add(3, Text.translate('tfg.tooltip.machine.two_energy_hatches')); + }) + event.addAdvanced(['tfg:bioreactor'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.machine.bioreactor_1')); + text.add(2, Text.translate('tfg.tooltip.machine.bioreactor_2')); + text.add(3, Text.translate('tfg.tooltip.machine.two_energy_hatches')); + }) + event.addAdvanced(['tfg:cooling_tower'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.machine.cooling_tower_1')); + text.add(2, Text.translate('tfg.tooltip.machine.cooling_tower_2')); + text.add(3, Text.translate('tfg.tooltip.machine.perfect_overclock')); + text.add(4, Text.translate('tfg.tooltip.machine.subtick')); + text.add(5, Text.translate('tfg.tooltip.machine.one_energy_hatch')); + }) + event.addAdvanced(['gtceu:moon_dust_harvester'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.tooltip.machine.moon_dust_harvester_1')); + text.add(2, Text.translate('gtceu.tooltip.machine.moon_dust_harvester_2')); + text.add(3, Text.translate('tfg.tooltip.machine.coil_energy_discount')); + text.add(4, Text.translate('tfg.tooltip.machine.two_energy_hatches')); + }) + event.addAdvanced(['gtceu:ostrum_harvester'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.tooltip.machine.ostrum_harvester_1')); + text.add(2, Text.translate('gtceu.tooltip.machine.ostrum_harvester_2')); + text.add(3, Text.translate('tfg.tooltip.machine.coil_energy_discount')); + text.add(4, Text.translate('tfg.tooltip.machine.two_energy_hatches')); + }) + event.addAdvanced(['tfg:ostrum_linear_accelerator'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.tooltip.machine.ostrum_linear_accelerator_1')); + text.add(2, Text.translate('gtceu.tooltip.machine.ostrum_linear_accelerator_2')); + text.add(3, Text.translate('gtceu.tooltip.machine.ostrum_linear_accelerator_3')); + text.add(4, Text.translate('tfg.tooltip.machine.two_energy_hatches')); + }) + event.addAdvanced(['gtceu:heat_exchanger'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.tooltip.machine.heat_exchanger_1')); + text.add(2, Text.translate('gtceu.tooltip.machine.heat_exchanger_2')); + text.add(3, Text.translate('tfg.tooltip.machine.perfect_overclock')); + text.add(4, Text.translate('tfg.tooltip.machine.subtick')); + text.add(5, Text.translate('tfg.tooltip.machine.one_energy_hatch')); + }) + event.addAdvanced(['gtceu:nuclear_fuel_factory'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.tooltip.machine.nuclear_fuel_factory_1')); + text.add(2, Text.translate('gtceu.tooltip.machine.nuclear_fuel_factory_2')); + text.add(3, Text.translate('tfg.tooltip.machine.coil_speed_discount')); + text.add(4, Text.translate('tfg.tooltip.machine.one_energy_hatch')); + }) + event.addAdvanced(['tfg:steam_bloomery'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.tooltip.machine.steam_bloomery_1')); + text.add(2, Text.translate('gtceu.tooltip.machine.steam_bloomery_2')); + text.add(3, Text.translate('gtceu.tooltip.machine.steam_bloomery_3')); + text.add(4, Text.translate('gtceu.tooltip.machine.steam_parallel')); + }) + event.addAdvanced(['tfg:steam_thermal_centrifuge'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.machine.lv_thermal_centrifuge.tooltip')); + text.add(2, Text.translate('gtceu.tooltip.machine.steam_parallel')); + }) + event.addAdvanced(['tfg:steam_fuser'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.machine.hp_steam_alloy_smelter.tooltip')); + text.add(2, Text.translate('gtceu.tooltip.machine.steam_parallel')); + }) + event.addAdvanced(['tfg:steam_squasher'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.machine.hp_steam_compressor.tooltip')); + text.add(2, Text.translate('gtceu.tooltip.machine.steam_parallel')); + }) + event.addAdvanced(['tfg:steam_presser'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.machine.hp_steam_forge_hammer.tooltip')); + text.add(2, Text.translate('gtceu.tooltip.machine.steam_parallel')); }) event.addAdvanced(['gtceu:large_chemical_reactor'], (item, advanced, text) => { - text.add(1, Text.translate('tfg.tooltip.machine.perfect_overclock')) + text.add(1, Text.translate('tfg.tooltip.machine.perfect_overclock')); + text.add(2, Text.translate('tfg.tooltip.machine.subtick')); + }) + event.addAdvanced(['gtceu:coal_liquefaction_tower'], (item, advanced, text) => { + text.add(1, Text.translate('gtceu.tooltip.machine.coal_liquefaction_tower_1')); + text.add(2, Text.translate('gtceu.tooltip.machine.coal_liquefaction_tower_2')); + text.add(3, Text.translate('tfg.tooltip.machine.coil_speed_discount')); + text.add(4, Text.translate('tfg.tooltip.machine.one_energy_hatch')); + }) + + // Hot or not containers + event.addAdvanced(['#tfg:insulating_container'], (item, advanced, text) => { + text.add(1, Text.translate("tfg.tooltip.hotornot_container")) + }) + // Do these in reverse order so the hot one appears on top + event.addAdvanced(['#tfg:floating_protection_equipment'], (item, advanced, text) => { + text.add(1, Text.translate("tfg.tooltip.hotornot_floating_equipment")) + }) + event.addAdvanced(['#tfg:cold_protection_equipment'], (item, advanced, text) => { + text.add(1, Text.translate("tfg.tooltip.hotornot_cold_equipment")) + }) + event.addAdvanced(['#tfg:hot_protection_equipment'], (item, advanced, text) => { + text.add(1, Text.translate("tfg.tooltip.hotornot_hot_equipment")) }) // Insulation event.addAdvanced(['create:copper_diving_helmet', 'create:copper_backtank', 'create:copper_diving_boots'], (item, advanced, text) => { - text.add(1, Text.translate('tfg.tooltip.armor.copper_diving_suit_warmth')), - text.add(2, Text.translate('tfg.tooltip.armor.copper_diving_suit_insulation')) + text.add(1, Text.translate('tfg.tooltip.armor.copper_diving_suit_warmth')); + text.add(2, Text.translate('tfg.tooltip.armor.copper_diving_suit_insulation')); }) - event.addAdvanced(['create:netherite_diving_helmet', 'create:netherite_backtank', 'create:netherite_diving_boots', 'minecraft:netherite_leggings'], (item, advanced, text) => { - text.add(1, Text.translate('tfg.tooltip.armor.netherite_diving_suit_warmth')), - text.add(2, Text.translate('tfg.tooltip.armor.netherite_diving_suit_insulation')) - text.add(3, Text.translate('tfg.tooltip.armor.netherite_diving_suit_set')) + event.addAdvanced(['create:netherite_diving_helmet', 'create:netherite_backtank', 'create:netherite_diving_boots', 'minecraft:netherite_leggings', 'minecraft:netherite_boots'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.armor.netherite_diving_suit_warmth')); + text.add(2, Text.translate('tfg.tooltip.armor.netherite_diving_suit_insulation')); + text.add(3, Text.translate('tfg.tooltip.armor.netherite_diving_suit_set')); }) event.addAdvanced(['gtceu:nanomuscle_helmet', 'gtceu:nanomuscle_chestplate', 'gtceu:nanomuscle_leggings', 'gtceu:nanomuscle_boots', 'gtceu:advanced_nanomuscle_chestplate'], (item, advanced, text) => { - 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')) + 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')), - text.add(2, Text.translate('tfg.tooltip.armor.quarktech_insulation')) - text.add(3, Text.translate('tfg.tooltip.armor.quarktech_set')) + text.add(1, Text.translate('tfg.tooltip.armor.quarktech_warmth')); + text.add(2, Text.translate('tfg.tooltip.armor.quarktech_insulation')); + text.add(3, Text.translate('tfg.tooltip.armor.quarktech_set')); }) event.addAdvanced([ 'ad_astra:space_helmet', 'ad_astra:space_suit', 'ad_astra:space_pants', 'ad_astra:space_boots', 'ad_astra:netherite_space_helmet', 'ad_astra:netherite_space_suit', 'ad_astra:netherite_space_pants', 'ad_astra:netherite_space_boots', 'ad_astra:jet_suit_helmet', 'ad_astra:jet_suit', 'ad_astra:jet_suit_pants', 'ad_astra:jet_suit_boots' ], (item, advanced, text) => { - text.add(1, Text.translate('tfg.tooltip.armor.space_suit_warmth')), - text.add(2, Text.translate('tfg.tooltip.armor.space_suit_insulation')) - text.add(3, Text.translate('tfg.tooltip.armor.space_suit_set')) + text.add(1, Text.translate('tfg.tooltip.armor.space_suit_warmth')); + text.add(2, Text.translate('tfg.tooltip.armor.space_suit_insulation')); + text.add(3, Text.translate('tfg.tooltip.armor.space_suit_set')); }) // Supports @@ -110,45 +216,46 @@ const registerTooltips = (event) => { }) event.addAdvanced(['gtceu:large_solar_panel_tier3'], (item, advanced, text) => { - text.add(1, Text.translate('tfg.tooltip.solar_panel.large_tier3')) + text.add(1, Text.translate('tfg.tooltip.solar_panel.large_tier3')); + text.add(2, Text.translate('tfg.tooltip.machine.parallel')) }) // Mars Animals 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(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(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')) }) - + // 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')) }) @@ -161,14 +268,60 @@ const registerTooltips = (event) => { text.add(1, Text.translate("greate.tooltip.max_capacity").append(Text.translate("tfg.greate.ls_limit"))) }) + // Fluid + item containers global.LAB_EQUIPMENT_CONTAINERS.forEach(container => { event.addAdvanced([`tfg:${container.type}`], (item, advanced, text) => { - text.add(1, Text.translate('tfg.tooltip.lab_equipment.part').append(`Β§e${container.capacity.toString()}mB`)) + text.add(1, Text.translate('gtceu.universal.tooltip.fluid_storage_capacity', `${container.capacity}`)) }) }) + event.addAdvanced(['#firmalife:big_barrels'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.item_storage_capacity", "36")) + text.add(2, Text.translate("gtceu.universal.tooltip.fluid_storage_capacity", "80,000")) + }) + event.addAdvanced(['create:fluid_tank', 'create_connected:fluid_vessel'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.fluid_storage_capacity", "16,000")) + }) + event.addAdvanced(['#tfc:barrels'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.fluid_storage_capacity", "10,000")) + }) + event.addAdvanced(['tfc:crucible'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.fluid_storage_capacity", "4,032")) + }) + event.addAdvanced(['waterflasks:iron_flask', 'waterflasks:red_steel_flask'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.fluid_storage_capacity", "2,000")) + }) + event.addAdvanced(['tfc:wooden_bucket', 'firmalife:mixing_bowl'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.fluid_storage_capacity", "1,000")) + }) + event.addAdvanced(['waterflasks:leather_flask','tfc:silica_glass_bottle'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.fluid_storage_capacity", "500")) + }) + event.addAdvanced(['tfc:hematitic_glass_bottle', 'tfc:volcanic_glass_bottle', 'tfc:olivine_glass_bottle'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.fluid_storage_capacity", "400")) + }) + event.addAdvanced(['#tfc:lamps'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.fluid_storage_capacity", "250")) + }) + event.addAdvanced(['tfc:ceramic/jug', 'firmalife:hollow_shell'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.fluid_storage_capacity", "100")) + }) + event.addAdvanced(['#tfcastikorcarts:supply_cart'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.item_storage_capacity", "54")) + }) + event.addAdvanced(['framedblocks:framed_chest'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.item_storage_capacity", "27")) + }) + event.addAdvanced(['create:item_vault', 'create_connected:item_silo'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.item_storage_capacity", "20")) + }) + event.addAdvanced(['#forge:chests/wooden'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.item_storage_capacity", "18")) + }) + event.addAdvanced(['#tfc:fired_large_vessels'], (item, advanced, text) => { + text.add(1, Text.translate("gtceu.universal.tooltip.item_storage_capacity", "9")) + }) //Nuclear Fission Tooltips - event.addAdvanced(['minecraft:blue_ice'], (item, advanced, text) => { text.add(1, Text.translate("tfg.tooltip.component.blue_ice")) }) @@ -192,19 +345,96 @@ const registerTooltips = (event) => { }) event.addAdvanced(['tfg:nuclear_turbine'], (item, advanced, text) => { - text.add(1, Text.translate("tfg.tooltip.component.nuclear_turbine_1")) - text.add(2, Text.translate("tfg.tooltip.component.nuclear_turbine_2")) + text.add(1, Text.translate("tfg.tooltip.component.nuclear_turbine_1")); + text.add(2, Text.translate("tfg.tooltip.component.nuclear_turbine_2")); }) + event.addAdvanced(['tfg:food/slice_of_cheese'], (item, advanced, text) => { + if (!event.isShift()) { + text.add(1, Text.translate("tfg.tooltip.fake_nutrition_info_listener")) + } else { + text.add(1, Text.translate("tfg.tooltip.fake_nutrition_info")); + text.add(2, Text.translate("tfg.tooltip.cheese_slice_microplastics")) + }; + }); + + // AE2 event.addAdvanced(['tfg:wireless_card'], (item, advanced, text) => { - text.add(1, Text.translate('tfg.tooltip.wireless_card_1')) - text.add(2, Text.translate('tfg.tooltip.wireless_card_2')) - text.add(3, Text.translate('tfg.tooltip.wireless_card_3')) + text.add(1, Text.translate('tfg.tooltip.wireless_card_1')); + text.add(2, Text.translate('tfg.tooltip.wireless_card_2')); + text.add(3, Text.translate('tfg.tooltip.wireless_card_3')); }) // Deprecated Items event.addAdvanced(['vintageimprovements:lathe'], (item, advanced, text) => { text.add(1, Text.translate('tfg.tooltip.obsolete.depreciated')) }) -} \ No newline at end of file + + // Drink effects + event.addAdvanced(['tfc_gurman:compote_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.jump_boost").append(Text.of(" II (00:30)")).blue()); + }) + event.addAdvanced(['tfc_gurman:kvass_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.strength").append(Text.of(" (01:20)")).blue()); + text.add(2, Text.translate('tfg.tooltip.cooling_foods')); + }) + event.addAdvanced(['tfc_gurman:lemonade_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.haste").append(Text.of(" (00:30)")).blue()); + text.add(2, Text.translate('tfg.tooltip.cooling_foods')); + }) + event.addAdvanced(['tfc_gurman:coffee_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.speed").append(Text.of(" (00:30)")).blue()); + text.add(2, Text.translate('tfg.tooltip.warming_foods')); + }) + event.addAdvanced(['tfc_gurman:cocoa_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.haste").append(Text.of(" (00:30)")).blue()); + text.add(2, Text.translate('tfg.tooltip.warming_foods')); + }) + event.addAdvanced(['tfc_gurman:tea_mint_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.regeneration").append(Text.of(" (00:30)")).blue()); + text.add(2, Text.translate('tfg.tooltip.warming_foods')); + }) + event.addAdvanced(['tfc_gurman:tea_chamomile_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.resistance").append(Text.of(" (00:30)")).blue()); + text.add(2, Text.translate('tfg.tooltip.warming_foods')); + }) + event.addAdvanced(['tfc_gurman:tea_nettle_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.slow_falling").append(Text.of(" (00:30)")).blue()); + text.add(2, Text.translate('tfg.tooltip.warming_foods')); + }) + event.addAdvanced(['tfc_gurman:tea_rosehip_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.absorption").append(Text.of(" (00:30)")).blue()); + text.add(2, Text.translate('tfg.tooltip.warming_foods')); + }) + event.addAdvanced(['tfc_gurman:nalivka_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.strength").append(Text.of(" (02:40)")).blue()); + text.add(2, Text.translate('tfg.tooltip.cooling_foods')); + }) + event.addAdvanced(['tfc:bucket/spring_water'], (item, advanced, text) => { + text.add(1, Text.translate('tfg.tooltip.warming_foods')); + }) + event.addAdvanced(['firmalife:bucket/red_wine'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.strength").append(Text.of(" (05:20)")).blue()); + }) + event.addAdvanced(['firmalife:bucket/rose_wine'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.dolphins_grace").append(Text.of(" (05:20)")).blue()); + }) + event.addAdvanced(['firmalife:bucket/white_wine'], (item, advanced, text) => { + text.add(1, Text.translate("effect.species.wither_resistance").append(Text.of(" (05:20)")).blue()); + }) + event.addAdvanced(['firmalife:bucket/dessert_wine'], (item, advanced, text) => { + text.add(1, Text.translate("effect.species.iron_will").append(Text.of(" (05:20)")).blue()); + }) + event.addAdvanced(['firmalife:bucket/sparkling_wine'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.jump_boost").append(Text.of(" II (05:20)")).blue()); + }) + event.addAdvanced(['gtceu:ethanol_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.nausea").append(Text.of(" (01:00)")).red()); + text.add(1, Text.translate("effect.minecraft.poison").append(Text.of(" II (00:30)")).red()); + }) + event.addAdvanced(['gtceu:methanol_bucket'], (item, advanced, text) => { + text.add(1, Text.translate("effect.minecraft.blindness").append(Text.of(" (05:00)")).red()); + text.add(1, Text.translate("effect.minecraft.wither").append(Text.of(" II (01:00)")).red()); + }) +} diff --git a/kubejs/data/ad_astra/dimension/glacio.json b/kubejs/data/ad_astra/dimension/glacio.json index b0102f6da..1deee0b71 100644 --- a/kubejs/data/ad_astra/dimension/glacio.json +++ b/kubejs/data/ad_astra/dimension/glacio.json @@ -1,5 +1,5 @@ { - "type": "ad_astra:glacio", + "type": "tfg:glacio", "generator": { "type": "kubejs_tfc:wrapped", "event_key": "glacio", diff --git a/kubejs/data/ad_astra/dimension/venus.json b/kubejs/data/ad_astra/dimension/venus.json index 2600b4020..6d7dba3d4 100644 --- a/kubejs/data/ad_astra/dimension/venus.json +++ b/kubejs/data/ad_astra/dimension/venus.json @@ -1,36 +1,832 @@ { "type": "tfg:venus", "generator": { - "type": "minecraft:noise", - "settings": "tfg:venus_noise", - "biome_source": { - "type": "minecraft:multi_noise", - "biomes": [ - { - "biome": "tfg:venus/venus_delta", - "parameters": { - "temperature": 1, - "humidity": 0, - "continentalness": 0.3, - "erosion": -0.5, - "weirdness": 0.5, - "depth": 0, - "offset": 0 - } + "type": "kubejs_tfc:wrapped", + "event_key": "venus", + "settings": { + "flat_bedrock": false, + "spawn_distance": 0, + "spawn_center_x": 0, + "spawn_center_z": 0, + "temperature_scale": 10000, + "rainfall_scale": 10000, + "continentalness": 0, + "rock_layer_settings": { + "rocks": { + "venus": { + "raw": "ad_astra:venus_stone", + "hardened": "tfg:rock/hardened_venus_stone", + "gravel": "tfg:rock/gravel_venus", + "cobble": "ad_astra:venus_cobblestone", + "sand": "ad_astra:venus_sand", + "sandstone": "ad_astra:venus_sandstone", + "spike": "tfg:spike/venus_stone_spike", + "mossy": "tfg:rock/mossy_cobble_venus", + "loose": "tfg:loose/venus_stone" + }, + "red_granite": { + "raw": "gtceu:red_granite", + "hardened": "tfg:rock/hardened_red_granite", + "gravel": "tfg:rock/gravel_red_granite", + "cobble": "gtceu:red_granite_cobblestone", + "sand": "tfc:sand/red", + "sandstone": "tfc:raw_sandstone/red", + "spike": "tfg:spike/red_granite_spike", + "loose": "tfg:loose/red_granite" + }, + "norite": { + "raw": "ad_astra:moon_deepslate", + "hardened": "tfg:rock/hardened_moon_deepslate", + "gravel": "tfg:rock/gravel_moon_deepslate", + "cobble": "tfg:rock/cobble_moon_deepslate", + "sand": "tfc:sand/black", + "sandstone": "tfc:raw_sandstone/black", + "spike": "tfg:spike/moon_deepslate_spike", + "loose": "tfg:loose/moon_deepslate" + }, + "deepslate": { + "raw": "minecraft:deepslate", + "hardened": "tfg:rock/hardened_deepslate", + "gravel": "tfg:rock/gravel_deepslate", + "cobble": "minecraft:cobbled_deepslate", + "sand": "tfc:sand/black", + "sandstone": "tfc:raw_sandstone/black", + "spike": "tfg:spike/deepslate_spike", + "loose": "tfg:loose/deepslate" + }, + "dripstone": { + "raw": "minecraft:dripstone_block", + "hardened": "tfg:rock/hardened_dripstone", + "gravel": "tfg:rock/gravel_dripstone", + "cobble": "tfg:rock/cobble_dripstone", + "sand": "tfc:sand/brown", + "sandstone": "tfc:raw_sandstone/brown", + "spike": "tfg:spike/dripstone_spike", + "loose": "tfg:loose/dripstone" + }, + "granite": "tfc:granite", + "diorite": "tfc:diorite", + "gabbro": "tfc:gabbro", + "basalt": "tfc:basalt", + "rhyolite": "tfc:rhyolite", + "andesite": "tfc:andesite", + "dacite": "tfc:dacite", + "slate": "tfc:slate", + "schist": "tfc:schist", + "gneiss": "tfc:gneiss", + "phyllite": "tfc:phyllite", + "quartzite": "tfc:quartzite" }, - { - "biome": "tfg:venus/venus_fractured_lands", - "parameters": { - "temperature": 0.5, - "humidity": 0.5, - "continentalness": 0, - "erosion": 1.0, - "depth": -0.5, - "weirdness": -0.5, - "offset": 0.0 + "layers": [ + { + "id": "schist_or_gneiss", + "layers": { + "schist": "bottom", + "gneiss": "bottom" + } + }, + { + "id": "middle", + "layers": { + "gabbro": "bottom", + "granite": "bottom", + "slate": "schist_or_gneiss", + "phyllite": "schist_or_gneiss", + "basalt": "bottom", + "schist": "bottom", + "gneiss": "bottom", + "quartzite": "bottom" + } + }, + { + "id": "metamorphic", + "layers": { + "slate": "schist_or_gneiss", + "phyllite": "schist_or_gneiss", + "schist": "bottom", + "gneiss": "bottom", + "quartzite": "bottom" + } + }, + { + "id": "top", + "layers": { + "venus": "metamorphic", + "dripstone": "metamorphic", + "rhyolite": "middle", + "basalt": "middle", + "andesite": "middle", + "dacite": "middle" + } } - } - ] + ], + "bottom": [ + "red_granite", + "diorite", + "gabbro", + "norite", + "deepslate" + ], + "ocean_floor": [ + "top" + ], + "volcanic": [ + "top" + ], + "land": [ + "top" + ], + "uplift": [ + "top" + ] + } + }, + "generator": { + "type": "minecraft:noise", + "settings": "tfg:venus_noise", + "biome_source": { + "type": "minecraft:multi_noise", + "biomes": [ + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -1, + "erosion": -0.05, + "weirdness": -0.2, + "depth": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -1, + "erosion": -0.05, + "weirdness": 0, + "depth": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -1, + "erosion": -0.05, + "weirdness": 0.2, + "depth": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -1, + "erosion": 0.05, + "weirdness": -0.2, + "depth": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -1, + "erosion": 0.05, + "weirdness": 0, + "depth": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -1, + "erosion": 0.05, + "weirdness": 0.2, + "depth": 0, + "offset": 0 + } + }, + + + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.47, + "erosion": -0.05, + "weirdness": -0.2, + "depth": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.47, + "erosion": -0.05, + "weirdness": 0, + "depth": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.47, + "erosion": -0.05, + "weirdness": 0.2, + "depth": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.47, + "erosion": 0.05, + "weirdness": -0.2, + "depth": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.47, + "erosion": 0.05, + "weirdness": 0, + "depth": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/fumaroles", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.47, + "erosion": 0.05, + "weirdness": 0.2, + "depth": 0, + "offset": 0 + } + }, + + + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.44, + "erosion": -0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0 + } + }, + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.44, + "erosion": -0.05, + "depth": 0, + "weirdness": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.44, + "erosion": -0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0 + } + }, + + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.44, + "erosion": 0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0 + } + }, + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.44, + "erosion": 0.05, + "depth": 0, + "weirdness": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.44, + "erosion": 0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0 + } + }, + + + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.39, + "erosion": -0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0 + } + }, + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.39, + "erosion": -0.05, + "depth": 0, + "weirdness": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.39, + "erosion": -0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0 + } + }, + + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.39, + "erosion": 0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0 + } + }, + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.39, + "erosion": 0.05, + "depth": 0, + "weirdness": 0, + "offset": 0 + } + }, + { + "biome": "tfg:venus/stromatolite_beach", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.39, + "erosion": 0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0 + } + }, + + + + { + "biome": "tfg:venus/salt_flats", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.375, + "erosion": 0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/sulfuric_ravine", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.375, + "erosion": 0.05, + "depth": 0, + "weirdness": 0, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/salt_flats", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.375, + "erosion": 0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0.0 + } + }, + + { + "biome": "tfg:venus/salt_flats", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.1, + "erosion": 0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/sulfuric_ravine", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.1, + "erosion": 0.05, + "depth": 0, + "weirdness": 0, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/salt_flats", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.1, + "erosion": 0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0.0 + } + }, + + + + { + "biome": "tfg:venus/arachnoids", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.375, + "erosion": -0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/sulfuric_ravine", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.375, + "erosion": -0.05, + "depth": 0, + "weirdness": 0, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/arachnoids", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.375, + "erosion": -0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0.0 + } + }, + + { + "biome": "tfg:venus/arachnoids", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.1, + "erosion": -0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/sulfuric_ravine", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.1, + "erosion": -0.05, + "depth": 0, + "weirdness": 0, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/arachnoids", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.1, + "erosion": -0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0.0 + } + }, + + + { + "biome": "tfg:venus/fractured_pools", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.05, + "erosion": 0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/sulfuric_ravine", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.05, + "erosion": 0.05, + "depth": 0, + "weirdness": 0, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/fractured_pools", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.05, + "erosion": 0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0.0 + } + }, + + { + "biome": "tfg:venus/fractured_pools", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.35, + "erosion": 0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/sulfuric_ravine", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.35, + "erosion": 0.05, + "depth": 0, + "weirdness": 0, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/fractured_pools", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.35, + "erosion": 0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0.0 + } + }, + + + + { + "biome": "tfg:venus/geysers", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.05, + "erosion": -0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/sulfuric_ravine", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.05, + "erosion": -0.05, + "depth": 0, + "weirdness": 0, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/geysers", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": -0.05, + "erosion": -0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0.0 + } + }, + + + { + "biome": "tfg:venus/geysers", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.35, + "erosion": -0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/sulfuric_ravine", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.35, + "erosion": -0.05, + "depth": 0, + "weirdness": 0, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/geysers", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.35, + "erosion": -0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0.0 + } + }, + + + + + { + "biome": "tfg:venus/jagged_tablelands", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.4, + "erosion": 0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/jagged_tablelands", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.4, + "erosion": 0.05, + "depth": 0, + "weirdness": 0, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/jagged_tablelands", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.4, + "erosion": 0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0.0 + } + }, + + + { + "biome": "tfg:venus/scorching_volcanoes", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.4, + "erosion": -0.05, + "depth": 0, + "weirdness": -0.2, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/scorching_volcanoes", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.4, + "erosion": -0.05, + "depth": 0, + "weirdness": 0, + "offset": 0.0 + } + }, + { + "biome": "tfg:venus/scorching_volcanoes", + "parameters": { + "temperature": 0, + "humidity": 0, + "continentalness": 0.4, + "erosion": -0.05, + "depth": 0, + "weirdness": 0.2, + "offset": 0.0 + } + } + ] + } } } } \ No newline at end of file diff --git a/kubejs/data/ad_astra/planets/glacio_orbit.json b/kubejs/data/ad_astra/planets/glacio_orbit.json index 3d6c1a088..daac0351e 100644 --- a/kubejs/data/ad_astra/planets/glacio_orbit.json +++ b/kubejs/data/ad_astra/planets/glacio_orbit.json @@ -1,5 +1,5 @@ { - "dimension": "ad_astra:earth_orbit", + "dimension": "ad_astra:glacio_orbit", "gravity": 0.0, "oxygen": false, "solar_power": 16, diff --git a/kubejs/data/arthropocolypse/tags/worldgen/structure_set/desert_nest_avoid.json b/kubejs/data/arthropocolypse/tags/worldgen/structure_set/desert_nest_avoid.json new file mode 100644 index 000000000..14735be37 --- /dev/null +++ b/kubejs/data/arthropocolypse/tags/worldgen/structure_set/desert_nest_avoid.json @@ -0,0 +1,4 @@ +{ + "replace": true, + "values": [] +} \ No newline at end of file diff --git a/kubejs/data/betterend/loot_tables/blocks/hydrothermal_vent.json b/kubejs/data/betterend/loot_tables/blocks/hydrothermal_vent.json new file mode 100644 index 000000000..c1e0b0905 --- /dev/null +++ b/kubejs/data/betterend/loot_tables/blocks/hydrothermal_vent.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "pools": [] +} \ No newline at end of file diff --git a/kubejs/data/species/loot_tables/blocks/birt_dwelling.json b/kubejs/data/betterend/loot_tables/blocks/sulphur_crystal.json similarity index 88% rename from kubejs/data/species/loot_tables/blocks/birt_dwelling.json rename to kubejs/data/betterend/loot_tables/blocks/sulphur_crystal.json index d0045080e..dd6e85c07 100644 --- a/kubejs/data/species/loot_tables/blocks/birt_dwelling.json +++ b/kubejs/data/betterend/loot_tables/blocks/sulphur_crystal.json @@ -7,7 +7,7 @@ "entries": [ { "type": "minecraft:item", - "name": "create:asurine" + "name": "gtceu:sulfur_dust" } ], "conditions": [ diff --git a/kubejs/data/betterend/loot_tables/blocks/tube_worm.json b/kubejs/data/betterend/loot_tables/blocks/tube_worm.json new file mode 100644 index 000000000..c1e0b0905 --- /dev/null +++ b/kubejs/data/betterend/loot_tables/blocks/tube_worm.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "pools": [] +} \ 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 index 199fbd6c1..52fb82baf 100644 --- a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/biomass.json +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/biomass.json @@ -1,6 +1,6 @@ { "fluid": "gtceu:biomass", - "burnTime": 70, + "burnTime": 66, "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 index f97604eb6..48345d7d4 100644 --- a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/creosote.json +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/creosote.json @@ -1,6 +1,6 @@ { "fluid": "gtceu:creosote", - "burnTime": 88, + "burnTime": 22, "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 index 43a493b0c..b8c9f6c54 100644 --- a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/fish_oil.json +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/fish_oil.json @@ -1,6 +1,6 @@ { "fluid": "gtceu:fish_oil", - "burnTime": 88, + "burnTime": 50, "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 index 6c232dfc3..20b4e071c 100644 --- a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/heavy_fuel.json +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/heavy_fuel.json @@ -1,6 +1,6 @@ { "fluid": "gtceu:heavy_fuel", - "burnTime": 210, + "burnTime": 70, "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 index 35c685f71..358f02c42 100644 --- a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/heavy_oil.json +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/heavy_oil.json @@ -1,6 +1,6 @@ { "fluid": "gtceu:oil_heavy", - "burnTime": 88, + "burnTime": 50, "superHeat": false, "amountConsumedPerTick" : 5 } diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/light_oil.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/light_oil.json new file mode 100644 index 000000000..6956a6e5f --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/light_oil.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:light_oil", + "burnTime": 50, + "superHeat": false, + "amountConsumedPerTick" : 32 +} diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/oil.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/oil.json index 9dc65463a..bbad0fe66 100644 --- a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/oil.json +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/oil.json @@ -1,6 +1,6 @@ { "fluid": "gtceu:oil", - "burnTime": 90, + "burnTime": 50, "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 index d778bf834..ba8eabec4 100644 --- a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/olive_oil.json +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/olive_oil.json @@ -1,6 +1,6 @@ { "fluid": "tfc:olive_oil", - "burnTime": 88, + "burnTime": 50, "superHeat": false, "amountConsumedPerTick" : 25 } diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/raw_oil.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/raw_oil.json new file mode 100644 index 000000000..8ba4d1621 --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/raw_oil.json @@ -0,0 +1,6 @@ +{ + "fluid": "gtceu:raw_oil", + "burnTime": 50, + "superHeat": false, + "amountConsumedPerTick" : 32 +} 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 index ad5d2eebd..252f8a3e9 100644 --- a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/seed_oil.json +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/seed_oil.json @@ -1,6 +1,6 @@ { "fluid": "gtceu:seed_oil", - "burnTime": 88, + "burnTime": 50, "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 index 52c8e1f85..99cf8b56e 100644 --- a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/soybean_oil.json +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/soybean_oil.json @@ -1,6 +1,6 @@ { "fluid": "firmalife:soybean_oil", - "burnTime": 88, + "burnTime": 50, "superHeat": false, "amountConsumedPerTick" : 25 } 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 index 92a70c3aa..88329eb8b 100644 --- a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/sulfuric_heavy.json +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/sulfuric_heavy.json @@ -1,6 +1,6 @@ { "fluid": "gtceu:sulfuric_heavy_fuel", - "burnTime": 80, + "burnTime": 45, "superHeat": false, "amountConsumedPerTick" : 5 } diff --git a/kubejs/data/create_liquid_fuel/blaze_burner_fuel/tallow.json b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/tallow.json new file mode 100644 index 000000000..47010fc80 --- /dev/null +++ b/kubejs/data/create_liquid_fuel/blaze_burner_fuel/tallow.json @@ -0,0 +1,6 @@ +{ + "fluid": "tfc:tallow", + "burnTime": 50, + "superHeat": false, + "amountConsumedPerTick" : 25 +} diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/badlands_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/badlands_enderman.json index d1af92e13..8a87d96d0 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/badlands_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/badlands_enderman.json @@ -15,6 +15,10 @@ { "type": "minecraft:item", "name": "endermanoverhaul:summoner_pearl" + }, + { + "type": "minecraft:item", + "name": "species:wicked_swapper" } ], "rolls": 1.0 @@ -28,7 +32,7 @@ "conditions": [ { "condition": "minecraft:random_chance", - "chance": 0.1 + "chance": 0.25 } ] } diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/crimson_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/crimson_forest_enderman.json similarity index 79% rename from kubejs/data/endermanoverhaul/loot_tables/entities/crimson_enderman.json rename to kubejs/data/endermanoverhaul/loot_tables/entities/crimson_forest_enderman.json index dd94d9a88..22fd9ab62 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/crimson_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/crimson_forest_enderman.json @@ -11,6 +11,16 @@ ], "rolls": 1.0 }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "tfg:saplings/crimson" + } + ], + "rolls": 1.0 + }, { "bonus_rolls": 0.0, "entries": [ diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/dark_oak_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/dark_oak_enderman.json index cc34d0b65..3219968e4 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/dark_oak_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/dark_oak_enderman.json @@ -11,6 +11,10 @@ { "type": "minecraft:item", "name": "endermanoverhaul:corrupted_pearl" + }, + { + "type": "minecraft:item", + "name": "species:wicked_swapper" } ], "rolls": 1.0 diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/desert_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/desert_enderman.json new file mode 100644 index 000000000..f02596ad6 --- /dev/null +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/desert_enderman.json @@ -0,0 +1,48 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "endermanoverhaul:ancient_pearl" + }, + { + "type": "minecraft:item", + "name": "endermanoverhaul:soul_pearl" + }, + { + "type": "minecraft:item", + "name": "endermanoverhaul:summoner_pearl" + }, + { + "type": "minecraft:item", + "name": "species:wicked_swapper" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:chorus_fruit" + } + ], + "rolls": 2.0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/end_islands_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/end_islands_enderman.json index e96369c51..a5f5bd957 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/end_islands_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/end_islands_enderman.json @@ -25,6 +25,10 @@ { "type": "minecraft:item", "name": "endermanoverhaul:soul_pearl" + }, + { + "type": "minecraft:item", + "name": "species:wicked_swapper" } ], "rolls": 1.0 diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/mushroom_fields_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/mushroom_fields_enderman.json index 4384f76eb..57709f5ec 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/mushroom_fields_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/mushroom_fields_enderman.json @@ -11,6 +11,10 @@ { "type": "minecraft:item", "name": "endermanoverhaul:summoner_pearl" + }, + { + "type": "minecraft:item", + "name": "species:wicked_swapper" } ], "rolls": 1.0 diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/nether_wastes_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/nether_wastes_enderman.json index 85dbdff07..63f867c9f 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/nether_wastes_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/nether_wastes_enderman.json @@ -11,6 +11,10 @@ { "type": "minecraft:item", "name": "endermanoverhaul:summoner_pearl" + }, + { + "type": "minecraft:item", + "name": "species:wicked_swapper" } ], "rolls": 1.0 diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/savanna_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/savanna_enderman.json new file mode 100644 index 000000000..99a3543f1 --- /dev/null +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/savanna_enderman.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "endermanoverhaul:ancient_pearl" + }, + { + "type": "minecraft:item", + "name": "endermanoverhaul:soul_pearl" + }, + { + "type": "minecraft:item", + "name": "endermanoverhaul:summoner_pearl" + }, + { + "type": "minecraft:item", + "name": "species:wicked_swapper" + } + ], + "rolls": 1.0 + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "endermanoverhaul:savanna_hood", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + } + ] + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:chorus_fruit" + } + ], + "rolls": 2.0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/swamp_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/swamp_enderman.json index 3e4695d51..1914c81b6 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/swamp_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/swamp_enderman.json @@ -11,6 +11,10 @@ { "type": "minecraft:item", "name": "endermanoverhaul:summoner_pearl" + }, + { + "type": "minecraft:item", + "name": "species:wicked_swapper" } ], "rolls": 1.0 diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/warped_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/warped_forest_enderman.json similarity index 79% rename from kubejs/data/endermanoverhaul/loot_tables/entities/warped_enderman.json rename to kubejs/data/endermanoverhaul/loot_tables/entities/warped_forest_enderman.json index 14b5db23c..373c8bdf1 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/warped_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/warped_forest_enderman.json @@ -11,6 +11,16 @@ ], "rolls": 1.0 }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "tfg:saplings/warped" + } + ], + "rolls": 1.0 + }, { "bonus_rolls": 0.0, "entries": [ diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/windswept_hills_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/windswept_hills_enderman.json index a0cd24e24..86db5f0f8 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/windswept_hills_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/windswept_hills_enderman.json @@ -11,6 +11,10 @@ { "type": "minecraft:item", "name": "endermanoverhaul:summoner_pearl" + }, + { + "type": "minecraft:item", + "name": "species:wicked_swapper" } ], "rolls": 1.0 diff --git a/kubejs/data/firmalife/tfc/drinkables/dessert_wine.json b/kubejs/data/firmalife/tfc/drinkables/dessert_wine.json new file mode 100644 index 000000000..686a1157f --- /dev/null +++ b/kubejs/data/firmalife/tfc/drinkables/dessert_wine.json @@ -0,0 +1,11 @@ +{ + "ingredient": "firmalife:dessert_wine", + "thirst": 15, + "effects": [ + { + "type": "species:iron_will", + "duration": 6400, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/firmalife/tfc/drinkables/red_wine.json b/kubejs/data/firmalife/tfc/drinkables/red_wine.json new file mode 100644 index 000000000..12c0c6a23 --- /dev/null +++ b/kubejs/data/firmalife/tfc/drinkables/red_wine.json @@ -0,0 +1,11 @@ +{ + "ingredient": "firmalife:red_wine", + "thirst": 15, + "effects": [ + { + "type": "minecraft:strength", + "duration": 6400, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/firmalife/tfc/drinkables/rose_wine.json b/kubejs/data/firmalife/tfc/drinkables/rose_wine.json new file mode 100644 index 000000000..3c0747575 --- /dev/null +++ b/kubejs/data/firmalife/tfc/drinkables/rose_wine.json @@ -0,0 +1,11 @@ +{ + "ingredient": "firmalife:rose_wine", + "thirst": 15, + "effects": [ + { + "type": "minecraft:dolphins_grace", + "duration": 6400, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/firmalife/tfc/drinkables/sparkling_wine.json b/kubejs/data/firmalife/tfc/drinkables/sparkling_wine.json new file mode 100644 index 000000000..e0004b982 --- /dev/null +++ b/kubejs/data/firmalife/tfc/drinkables/sparkling_wine.json @@ -0,0 +1,11 @@ +{ + "ingredient": "firmalife:dessert_wine", + "thirst": 15, + "effects": [ + { + "type": "minecraft:jump_boost", + "duration": 6400, + "amplifier": 1 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/firmalife/tfc/drinkables/white_wine.json b/kubejs/data/firmalife/tfc/drinkables/white_wine.json new file mode 100644 index 000000000..7b7bc3c28 --- /dev/null +++ b/kubejs/data/firmalife/tfc/drinkables/white_wine.json @@ -0,0 +1,11 @@ +{ + "ingredient": "firmalife:white_wine", + "thirst": 15, + "effects": [ + { + "type": "species:wither_resistance", + "duration": 6400, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/gtceu/loot_tables/blocks/ulv_hermetic_casing.json b/kubejs/data/gtceu/loot_tables/blocks/ulv_hermetic_casing.json new file mode 100644 index 000000000..428a7f64b --- /dev/null +++ b/kubejs/data/gtceu/loot_tables/blocks/ulv_hermetic_casing.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "gtceu:ulv_hermetic_casing" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} diff --git a/kubejs/data/gtceu/tfc/drinkables/ethanol.json b/kubejs/data/gtceu/tfc/drinkables/ethanol.json new file mode 100644 index 000000000..96e808d58 --- /dev/null +++ b/kubejs/data/gtceu/tfc/drinkables/ethanol.json @@ -0,0 +1,16 @@ +{ + "ingredient": "gtceu:ethanol", + "thirst": 5, + "effects": [ + { + "type": "minecraft:nausea", + "duration": 1200, + "amplifier": 0 + }, + { + "type": "minecraft:poison", + "duration": 600, + "amplifier": 1 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/gtceu/tfc/drinkables/methanol.json b/kubejs/data/gtceu/tfc/drinkables/methanol.json new file mode 100644 index 000000000..cba19d83e --- /dev/null +++ b/kubejs/data/gtceu/tfc/drinkables/methanol.json @@ -0,0 +1,16 @@ +{ + "ingredient": "gtceu:methanol", + "thirst": 5, + "effects": [ + { + "type": "minecraft:blindness", + "duration": 6000, + "amplifier": 0 + }, + { + "type": "minecraft:wither", + "duration": 1200, + "amplifier": 1 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/minecraft/loot_tables/blocks/shroomlight.json b/kubejs/data/minecraft/loot_tables/blocks/shroomlight.json index 8df9d37a0..5e17b1288 100644 --- a/kubejs/data/minecraft/loot_tables/blocks/shroomlight.json +++ b/kubejs/data/minecraft/loot_tables/blocks/shroomlight.json @@ -22,7 +22,7 @@ "entries": [ { "type": "minecraft:item", - "name": "minecraft:brown_mushroom_block" + "name": "minecraft:brown_mushroom" } ], "conditions": [ diff --git a/kubejs/data/minecraft/loot_tables/chests/bastion_bridge.json b/kubejs/data/minecraft/loot_tables/chests/bastion_bridge.json index d61eacbd3..95c89e635 100644 --- a/kubejs/data/minecraft/loot_tables/chests/bastion_bridge.json +++ b/kubejs/data/minecraft/loot_tables/chests/bastion_bridge.json @@ -217,7 +217,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 3}" + "tag": "{\"tfc:forging_bonus\": 3, \"GT.Behaviours\":{\"DisableShields\":1, \"TreeFelling\":1}}" } ], "weight": 100 diff --git a/kubejs/data/minecraft/loot_tables/chests/bastion_hoglin_stable.json b/kubejs/data/minecraft/loot_tables/chests/bastion_hoglin_stable.json index d61eacbd3..cb2e48916 100644 --- a/kubejs/data/minecraft/loot_tables/chests/bastion_hoglin_stable.json +++ b/kubejs/data/minecraft/loot_tables/chests/bastion_hoglin_stable.json @@ -217,7 +217,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 3}" + "tag": "{\"tfc:forging_bonus\": 3, \"GT.Behaviours\":{\"DisableShields\":1, \"TreeFelling\": 1}}" } ], "weight": 100 diff --git a/kubejs/data/minecraft/loot_tables/chests/bastion_other.json b/kubejs/data/minecraft/loot_tables/chests/bastion_other.json index d61eacbd3..95c89e635 100644 --- a/kubejs/data/minecraft/loot_tables/chests/bastion_other.json +++ b/kubejs/data/minecraft/loot_tables/chests/bastion_other.json @@ -217,7 +217,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 3}" + "tag": "{\"tfc:forging_bonus\": 3, \"GT.Behaviours\":{\"DisableShields\":1, \"TreeFelling\":1}}" } ], "weight": 100 diff --git a/kubejs/data/minecraft/loot_tables/chests/bastion_treasure.json b/kubejs/data/minecraft/loot_tables/chests/bastion_treasure.json index 5e70329c4..54f8f5cba 100644 --- a/kubejs/data/minecraft/loot_tables/chests/bastion_treasure.json +++ b/kubejs/data/minecraft/loot_tables/chests/bastion_treasure.json @@ -89,7 +89,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":5, \"MaxAoERow\":5, \"MaxAoELayer\":3}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":2, \"MaxAoERow\":2, \"MaxAoELayer\":3}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -177,7 +177,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + "tag": "{\"tfc:forging_bonus\": 4, \"GT.Behaviours\":{\"HarvestIce\":1}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, diff --git a/kubejs/data/minecraft/trim_material/armalcolite_tfc.json b/kubejs/data/minecraft/trim_material/armalcolite_tfc.json new file mode 100644 index 000000000..ba7b1f0e1 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/armalcolite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "armalcolite_tfc", + "description": { + "color": "#424847", + "translate": "trim_material.tfc.armalcolite_tfc" + }, + "ingredient": "gtceu:exquisite_armalcolite_gem", + "item_model_index": 0.199 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/coke_tfc.json b/kubejs/data/minecraft/trim_material/coke_tfc.json deleted file mode 100644 index f66488835..000000000 --- a/kubejs/data/minecraft/trim_material/coke_tfc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "coke_tfc", - "description": { - "color": "#424847", - "translate": "trim_material.tfc.coke_tfc" - }, - "ingredient": "gtceu:exquisite_coke_gem", - "item_model_index": 0.199 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/rose_quartz_tfc.json b/kubejs/data/minecraft/trim_material/rose_quartz_tfc.json index 28d2d8250..72802bbc8 100644 --- a/kubejs/data/minecraft/trim_material/rose_quartz_tfc.json +++ b/kubejs/data/minecraft/trim_material/rose_quartz_tfc.json @@ -4,6 +4,6 @@ "color": "#ba3458", "translate": "trim_material.tfc.rose_quartz_tfc" }, - "ingredient": "gtceu:exquisite_rose_quartz_gem", + "ingredient": "greate:exquisite_rose_quartz_gem", "item_model_index": 0.161 } \ No newline at end of file diff --git a/kubejs/data/primitive_creatures/forge/biome_modifier/all_biome_modifier.json b/kubejs/data/primitive_creatures/forge/biome_modifier/all_biome_modifier.json index f8f2c00b6..963625e96 100644 --- a/kubejs/data/primitive_creatures/forge/biome_modifier/all_biome_modifier.json +++ b/kubejs/data/primitive_creatures/forge/biome_modifier/all_biome_modifier.json @@ -12,6 +12,7 @@ "primitive_creatures:iloger_5", "primitive_creatures:iloger_6", "primitive_creatures:musselwarden", + "primitive_creatures:nahida", "primitive_creatures:piloger_9", "primitive_creatures:iloger_10", "primitive_creatures:viloger_10", diff --git a/kubejs/data/tfc/tfc/drinkables/aged_corn_whiskey.json b/kubejs/data/tfc/tfc/drinkables/aged_corn_whiskey.json deleted file mode 100644 index 17de1eb99..000000000 --- a/kubejs/data/tfc/tfc/drinkables/aged_corn_whiskey.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "ingredient": "tfcagedalcohol:aged_corn_whiskey", - "thirst": 15, - "intoxication": 2000, - "effects": [ - { - "type": "minecraft:haste", - "duration": 6400, - "amplifier": 0 - } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/tfc/drinkables/aged_rye_whiskey.json b/kubejs/data/tfc/tfc/drinkables/aged_rye_whiskey.json deleted file mode 100644 index a2a4645ea..000000000 --- a/kubejs/data/tfc/tfc/drinkables/aged_rye_whiskey.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "ingredient": "tfcagedalcohol:aged_rye_whiskey", - "thirst": 15, - "intoxication": 2000, - "effects": [ - { - "type": "minecraft:haste", - "duration": 6400, - "amplifier": 0 - } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/tfc/drinkables/spring_water.json b/kubejs/data/tfc/tfc/drinkables/spring_water.json new file mode 100644 index 000000000..c9d0bff85 --- /dev/null +++ b/kubejs/data/tfc/tfc/drinkables/spring_water.json @@ -0,0 +1,11 @@ +{ + "ingredient": "tfc:spring_water", + "thirst": 10, + "effects": [ + { + "type": "tfg:warming", + "duration": 20, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/armalcolite_tfc.json b/kubejs/data/tfc/trim_material/armalcolite_tfc.json new file mode 100644 index 000000000..ba7b1f0e1 --- /dev/null +++ b/kubejs/data/tfc/trim_material/armalcolite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "armalcolite_tfc", + "description": { + "color": "#424847", + "translate": "trim_material.tfc.armalcolite_tfc" + }, + "ingredient": "gtceu:exquisite_armalcolite_gem", + "item_model_index": 0.199 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/coke_tfc.json b/kubejs/data/tfc/trim_material/coke_tfc.json deleted file mode 100644 index f66488835..000000000 --- a/kubejs/data/tfc/trim_material/coke_tfc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "coke_tfc", - "description": { - "color": "#424847", - "translate": "trim_material.tfc.coke_tfc" - }, - "ingredient": "gtceu:exquisite_coke_gem", - "item_model_index": 0.199 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/rose_quartz_tfc.json b/kubejs/data/tfc/trim_material/rose_quartz_tfc.json index 28d2d8250..72802bbc8 100644 --- a/kubejs/data/tfc/trim_material/rose_quartz_tfc.json +++ b/kubejs/data/tfc/trim_material/rose_quartz_tfc.json @@ -4,6 +4,6 @@ "color": "#ba3458", "translate": "trim_material.tfc.rose_quartz_tfc" }, - "ingredient": "gtceu:exquisite_rose_quartz_gem", + "ingredient": "greate:exquisite_rose_quartz_gem", "item_model_index": 0.161 } \ No newline at end of file diff --git a/kubejs/data/tfc_gurman/tfc/drinkables/cocoa.json b/kubejs/data/tfc_gurman/tfc/drinkables/cocoa.json new file mode 100644 index 000000000..5d403ba69 --- /dev/null +++ b/kubejs/data/tfc_gurman/tfc/drinkables/cocoa.json @@ -0,0 +1,16 @@ +{ + "ingredient": "tfc_gurman:cocoa", + "thirst": 15, + "effects": [ + { + "type": "minecraft:haste", + "duration": 600, + "amplifier": 0 + }, + { + "type": "tfg:warming", + "duration": 20, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc_gurman/tfc/drinkables/coffee.json b/kubejs/data/tfc_gurman/tfc/drinkables/coffee.json new file mode 100644 index 000000000..13dec7feb --- /dev/null +++ b/kubejs/data/tfc_gurman/tfc/drinkables/coffee.json @@ -0,0 +1,16 @@ +{ + "ingredient": "tfc_gurman:coffee", + "thirst": 15, + "effects": [ + { + "type": "minecraft:speed", + "duration": 600, + "amplifier": 0 + }, + { + "type": "tfg:warming", + "duration": 20, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc_gurman/tfc/drinkables/compote.json b/kubejs/data/tfc_gurman/tfc/drinkables/compote.json new file mode 100644 index 000000000..6956998dd --- /dev/null +++ b/kubejs/data/tfc_gurman/tfc/drinkables/compote.json @@ -0,0 +1,11 @@ +{ + "ingredient": "tfc_gurman:compote", + "thirst": 15, + "effects": [ + { + "type": "minecraft:jump_boost", + "duration": 600, + "amplifier": 1 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc_gurman/tfc/drinkables/kvass.json b/kubejs/data/tfc_gurman/tfc/drinkables/kvass.json new file mode 100644 index 000000000..052d6cd35 --- /dev/null +++ b/kubejs/data/tfc_gurman/tfc/drinkables/kvass.json @@ -0,0 +1,16 @@ +{ + "ingredient": "tfc_gurman:kvass", + "thirst": 15, + "effects": [ + { + "type": "minecraft:strength", + "duration": 1600, + "amplifier": 0 + }, + { + "type": "tfg:cooling", + "duration": 20, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc_gurman/tfc/drinkables/lemonade.json b/kubejs/data/tfc_gurman/tfc/drinkables/lemonade.json new file mode 100644 index 000000000..66d8a3f8c --- /dev/null +++ b/kubejs/data/tfc_gurman/tfc/drinkables/lemonade.json @@ -0,0 +1,16 @@ +{ + "ingredient": "tfc_gurman:lemonade", + "thirst": 15, + "effects": [ + { + "type": "minecraft:haste", + "duration": 600, + "amplifier": 0 + }, + { + "type": "tfg:cooling", + "duration": 20, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc_gurman/tfc/drinkables/nalivka.json b/kubejs/data/tfc_gurman/tfc/drinkables/nalivka.json new file mode 100644 index 000000000..8e4d8f5a0 --- /dev/null +++ b/kubejs/data/tfc_gurman/tfc/drinkables/nalivka.json @@ -0,0 +1,16 @@ +{ + "ingredient": "tfc_gurman:nalivka", + "thirst": 15, + "effects": [ + { + "type": "minecraft:strength", + "duration": 3200, + "amplifier": 0 + }, + { + "type": "tfg:cooling", + "duration": 20, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc_gurman/tfc/drinkables/tea_chamomile.json b/kubejs/data/tfc_gurman/tfc/drinkables/tea_chamomile.json new file mode 100644 index 000000000..f1de9b399 --- /dev/null +++ b/kubejs/data/tfc_gurman/tfc/drinkables/tea_chamomile.json @@ -0,0 +1,16 @@ +{ + "ingredient": "tfc_gurman:tea_chamomile", + "thirst": 15, + "effects": [ + { + "type": "minecraft:resistance", + "duration": 600, + "amplifier": 0 + }, + { + "type": "tfg:warming", + "duration": 20, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc_gurman/tfc/drinkables/tea_mint.json b/kubejs/data/tfc_gurman/tfc/drinkables/tea_mint.json new file mode 100644 index 000000000..f5a181be8 --- /dev/null +++ b/kubejs/data/tfc_gurman/tfc/drinkables/tea_mint.json @@ -0,0 +1,16 @@ +{ + "ingredient": "tfc_gurman:tea_mint", + "thirst": 15, + "effects": [ + { + "type": "minecraft:regeneration", + "duration": 600, + "amplifier": 0 + }, + { + "type": "tfg:warming", + "duration": 20, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc_gurman/tfc/drinkables/tea_nettle.json b/kubejs/data/tfc_gurman/tfc/drinkables/tea_nettle.json new file mode 100644 index 000000000..cc2c300bb --- /dev/null +++ b/kubejs/data/tfc_gurman/tfc/drinkables/tea_nettle.json @@ -0,0 +1,16 @@ +{ + "ingredient": "tfc_gurman:tea_nettle", + "thirst": 15, + "effects": [ + { + "type": "minecraft:slow_falling", + "duration": 600, + "amplifier": 0 + }, + { + "type": "tfg:warming", + "duration": 20, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc_gurman/tfc/drinkables/tea_rosehip.json b/kubejs/data/tfc_gurman/tfc/drinkables/tea_rosehip.json new file mode 100644 index 000000000..ad3d523f9 --- /dev/null +++ b/kubejs/data/tfc_gurman/tfc/drinkables/tea_rosehip.json @@ -0,0 +1,16 @@ +{ + "ingredient": "tfc_gurman:tea_rosehip", + "thirst": 15, + "effects": [ + { + "type": "minecraft:absorption", + "duration": 600, + "amplifier": 0 + }, + { + "type": "tfg:warming", + "duration": 20, + "amplifier": 0 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfc_ruined_world/worldgen/structure_set/ancient_monument_1.json b/kubejs/data/tfc_ruined_world/worldgen/structure_set/ancient_monument_1.json index 3d4cf89c4..9b4106c08 100644 --- a/kubejs/data/tfc_ruined_world/worldgen/structure_set/ancient_monument_1.json +++ b/kubejs/data/tfc_ruined_world/worldgen/structure_set/ancient_monument_1.json @@ -11,8 +11,8 @@ ], "placement": { "salt": 1442136154, - "spacing": 50, - "separation": 30, + "spacing": 40, + "separation": 25, "type": "minecraft:random_spread" } } \ No newline at end of file diff --git a/kubejs/data/tfc_ruined_world/worldgen/structure_set/limestone_church.json b/kubejs/data/tfc_ruined_world/worldgen/structure_set/limestone_church.json index 8caa99546..f3d6a08b8 100644 --- a/kubejs/data/tfc_ruined_world/worldgen/structure_set/limestone_church.json +++ b/kubejs/data/tfc_ruined_world/worldgen/structure_set/limestone_church.json @@ -23,8 +23,8 @@ ], "placement": { "salt": 1442136151, - "spacing": 50, - "separation": 35, + "spacing": 45, + "separation": 25, "type": "minecraft:random_spread" } } \ No newline at end of file diff --git a/kubejs/data/tfc_ruined_world/worldgen/structure_set/tower_1.json b/kubejs/data/tfc_ruined_world/worldgen/structure_set/tower_1.json index 798b8ee98..d2d043efa 100644 --- a/kubejs/data/tfc_ruined_world/worldgen/structure_set/tower_1.json +++ b/kubejs/data/tfc_ruined_world/worldgen/structure_set/tower_1.json @@ -23,8 +23,8 @@ ], "placement": { "salt": 1442136152, - "spacing": 45, - "separation": 25, + "spacing": 35, + "separation": 15, "type": "minecraft:random_spread" } } \ No newline at end of file diff --git a/kubejs/data/tfc_ruins/worldgen/structure_set/ruins.json b/kubejs/data/tfc_ruins/worldgen/structure_set/ruins.json new file mode 100644 index 000000000..ea30d1eee --- /dev/null +++ b/kubejs/data/tfc_ruins/worldgen/structure_set/ruins.json @@ -0,0 +1,26 @@ +{ + "structures": [ + { + "structure": "tfc_ruins:ruin_small", + "weight": 4 + }, + { + "structure": "tfc_ruins:ruin_beach", + "weight": 3 + }, + { + "structure": "tfc_ruins:ruin_rich", + "weight": 2 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 9134739237, + "exclusion_zone": { + "other_set": "minecraft:strongholds", + "chunk_count": 6 + }, + "spacing": 35, + "separation": 10 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/dimension_type/venus.json b/kubejs/data/tfg/dimension_type/venus.json index 9795e2356..b46147bce 100644 --- a/kubejs/data/tfg/dimension_type/venus.json +++ b/kubejs/data/tfg/dimension_type/venus.json @@ -10,14 +10,8 @@ "infiniburn": "#minecraft:infiniburn_overworld", "logical_height": 384, "min_y": -64, - "monster_spawn_block_light_limit": 0, - "monster_spawn_light_level": { - "type": "minecraft:uniform", - "value": { - "max_inclusive": 15, - "min_inclusive": 0 - } - }, + "monster_spawn_block_light_limit": 15, + "monster_spawn_light_level": 15, "natural": true, "piglin_safe": true, "respawn_anchor_works": false, diff --git a/kubejs/data/tfg/lithostitched/worldgen_modifier/contains_illages.json b/kubejs/data/tfg/lithostitched/worldgen_modifier/avoid_water_large.json similarity index 100% rename from kubejs/data/tfg/lithostitched/worldgen_modifier/contains_illages.json rename to kubejs/data/tfg/lithostitched/worldgen_modifier/avoid_water_large.json diff --git a/kubejs/data/tfg/lithostitched/worldgen_modifier/avoid_water_small.json b/kubejs/data/tfg/lithostitched/worldgen_modifier/avoid_water_small.json new file mode 100644 index 000000000..5e692b623 --- /dev/null +++ b/kubejs/data/tfg/lithostitched/worldgen_modifier/avoid_water_small.json @@ -0,0 +1,18 @@ +{ + "type": "lithostitched:set_structure_spawn_condition", + "structures": [ + "tfg:temperate/plains_temperate_house_0", + "tfg:illagers/camps", + "tfg:illagers/forest_roaming" + ], + "spawn_condition": { + "type": "lithostitched:grid", + "condition": { + "type": "lithostitched:in_biome", + "biomes": "#tfg:never_has_structure/illages" + }, + "radius": 50, + "distance_between_points": 15, + "allowed_count": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/lithostitched/worldgen_modifier/ocean_moai.json b/kubejs/data/tfg/lithostitched/worldgen_modifier/ocean_moai.json new file mode 100644 index 000000000..fd83de2cb --- /dev/null +++ b/kubejs/data/tfg/lithostitched/worldgen_modifier/ocean_moai.json @@ -0,0 +1,12 @@ +{ + "type": "lithostitched:set_structure_spawn_condition", + "structures": [ + "tfg:ocean/ocean_moai_0" + ], + "spawn_condition": { + "type": "lithostitched:height_filter", + "range_type": "absolute", + "heightmap": "OCEAN_FLOOR_WG", + "permitted_range": [65, 256] + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/chests/arabic_illager_basic.json b/kubejs/data/tfg/loot_tables/chests/arabic_illager_basic.json new file mode 100644 index 000000000..fd5632223 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/chests/arabic_illager_basic.json @@ -0,0 +1,559 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0, + "entries": [ + { + "type": "minecraft:item", + "name": "tfc:wood/lumber/acacia", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wood/sapling/acacia", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wood/lumber/blackwood", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wood/sapling/blackwood", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wood/lumber/palm", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wood/sapling/palm", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wool", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "primitive_creatures:grh", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wool_yarn", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9, + "min": 5 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:ceramic/gray_glazed_vessel", + "weight": 50 + }, + { + "type": "minecraft:item", + "name": "tfc:ceramic/light_gray_glazed_vessel", + "weight": 50 + }, + { + "type": "minecraft:item", + "name": "primitive_creatures:totem_0", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "primitive_creatures:totem_2", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "primitive_creatures:totem_3", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:rabbit_foot", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:sentry_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:vex_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:wild_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:coast_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "tfc:powder/salt", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:powder/saltpeter", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:powder/sulfur", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:powder/wood_ash", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:candle", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:candle/gray", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:candle/light_gray", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:arrow", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 20, + "min": 12 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bone", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "firmalife:jar/compost", + "weight": 80 + }, + { + "type": "minecraft:item", + "name": "firmalife:jar/guano", + "weight": 80 + }, + { + "type": "minecraft:item", + "name": "firmalife:jar/honey", + "weight": 80 + }, + { + "type": "minecraft:item", + "name": "minecraft:bowl", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:paper", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:groundcover/pumice", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfg:conifer_rosin", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "firmalife:beeswax", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:flint", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:tricalcium_phosphate_dust", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:charcoal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:glue", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "chalk:gray_chalk", + "weight": 70 + }, + { + "type": "minecraft:item", + "name": "chalk:light_gray_chalk", + "weight": 70 + }, + { + "type": "minecraft:item", + "name": "species:music_disc_lapidarian", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8, + "min": 6 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/chests/arabic_illager_smithy.json b/kubejs/data/tfg/loot_tables/chests/arabic_illager_smithy.json new file mode 100644 index 000000000..7f3e6f9d9 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/chests/arabic_illager_smithy.json @@ -0,0 +1,370 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:charcoal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:ceramic/ingot_mold", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:clay_ball", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15, + "min": 9 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:mortar", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15, + "min": 9 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:poor_raw_coal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:raw_coal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:rich_raw_coal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:cobalt_brass_nugget", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:cobalt_nugget", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "create:copper_nugget", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "create:zinc_nugget", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:lead_nugget", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "create:brass_nugget", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:bismuth_nugget", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfchotornot:tongs/copper", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "tfchotornot:tongs/wood", + "weight": 30 + }, + { + "type": "minecraft:item", + "name": "tfc:powder/flux", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:powder/lime", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:hematitic_glass_batch", + "weight": 30, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:olivine_glass_batch", + "weight": 30, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:volcanic_glass_batch", + "weight": 30, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:matches", + "weight": 70, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:sentry_armor_trim_smithing_template", + "weight": 7 + }, + { + "type": "minecraft:item", + "name": "minecraft:vex_armor_trim_smithing_template", + "weight": 7 + }, + { + "type": "minecraft:item", + "name": "minecraft:wild_armor_trim_smithing_template", + "weight": 7 + }, + { + "type": "minecraft:item", + "name": "minecraft:coast_armor_trim_smithing_template", + "weight": 7 + }, + { + "type": "minecraft:item", + "name": "alekiships:music_disc_pirate_crafting", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8, + "min": 6 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/chests/cruncher_nest.json b/kubejs/data/tfg/loot_tables/chests/cruncher_nest.json index bbbe7e297..665cb3693 100644 --- a/kubejs/data/tfg/loot_tables/chests/cruncher_nest.json +++ b/kubejs/data/tfg/loot_tables/chests/cruncher_nest.json @@ -22,7 +22,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{BotariumData: {StoredFluids: [{Amount: 1000, Fluid: \"tfg:compressed_heliox_3\"}]}}" + "tag": "{BotariumData: {StoredFluids: [{Amount: 1000, Fluid: \"tfg:compressed_nitrox\"}]}}" } ] }, diff --git a/kubejs/data/tfg/loot_tables/chests/illager_camps.json b/kubejs/data/tfg/loot_tables/chests/illager_camps.json new file mode 100644 index 000000000..70b923fb9 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/chests/illager_camps.json @@ -0,0 +1,379 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0, + "entries": [ + { + "type": "minecraft:item", + "name": "tfc:wool", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wool_yarn", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9, + "min": 5 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:ceramic/gray_glazed_vessel", + "weight": 50 + }, + { + "type": "minecraft:item", + "name": "tfc:ceramic/light_gray_glazed_vessel", + "weight": 50 + }, + { + "type": "minecraft:item", + "name": "minecraft:sentry_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:vex_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:wild_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:coast_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "tfc:powder/salt", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:powder/saltpeter", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:powder/sulfur", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:candle", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:candle/gray", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:candle/light_gray", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:arrow", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 20, + "min": 12 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "firmalife:jar/compost", + "weight": 80 + }, + { + "type": "minecraft:item", + "name": "firmalife:jar/guano", + "weight": 80 + }, + { + "type": "minecraft:item", + "name": "firmalife:jar/honey", + "weight": 80 + }, + { + "type": "minecraft:item", + "name": "minecraft:paper", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:groundcover/pumice", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfg:conifer_rosin", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "firmalife:beeswax", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:flint", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:tricalcium_phosphate_dust", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:charcoal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:glue", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "chalk:gray_chalk", + "weight": 70 + }, + { + "type": "minecraft:item", + "name": "chalk:light_gray_chalk", + "weight": 70 + }, + { + "type": "minecraft:item", + "name": "species:music_disc_lapidarian", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8, + "min": 6 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/chests/nordic_illager_basic.json b/kubejs/data/tfg/loot_tables/chests/nordic_illager_basic.json index 08f9b91fb..e119ad391 100644 --- a/kubejs/data/tfg/loot_tables/chests/nordic_illager_basic.json +++ b/kubejs/data/tfg/loot_tables/chests/nordic_illager_basic.json @@ -249,7 +249,7 @@ { "type": "minecraft:item", "name": "tfc:powder/sulfur", - "weight": 50, + "weight": 80, "functions": [ { "add": false, @@ -329,7 +329,7 @@ { "type": "minecraft:item", "name": "minecraft:emerald", - "weight": 50, + "weight": 80, "functions": [ { "add": false, diff --git a/kubejs/data/tfg/loot_tables/chests/nordic_illager_smithy.json b/kubejs/data/tfg/loot_tables/chests/nordic_illager_smithy.json index ffe60e5c4..7f3e6f9d9 100644 --- a/kubejs/data/tfg/loot_tables/chests/nordic_illager_smithy.json +++ b/kubejs/data/tfg/loot_tables/chests/nordic_illager_smithy.json @@ -119,14 +119,14 @@ { "type": "minecraft:item", "name": "gtceu:cobalt_brass_nugget", - "weight": 40, + "weight": 80, "functions": [ { "add": false, "count": { "type": "minecraft:uniform", - "max": 4, - "min": 2 + "max": 10, + "min": 6 }, "function": "minecraft:set_count" } @@ -135,14 +135,14 @@ { "type": "minecraft:item", "name": "gtceu:cobalt_nugget", - "weight": 50, + "weight": 100, "functions": [ { "add": false, "count": { "type": "minecraft:uniform", - "max": 4, - "min": 2 + "max": 10, + "min": 6 }, "function": "minecraft:set_count" } @@ -151,14 +151,14 @@ { "type": "minecraft:item", "name": "create:copper_nugget", - "weight": 80, + "weight": 100, "functions": [ { "add": false, "count": { "type": "minecraft:uniform", - "max": 4, - "min": 2 + "max": 10, + "min": 6 }, "function": "minecraft:set_count" } @@ -167,14 +167,14 @@ { "type": "minecraft:item", "name": "create:zinc_nugget", - "weight": 40, + "weight": 100, "functions": [ { "add": false, "count": { "type": "minecraft:uniform", - "max": 4, - "min": 2 + "max": 10, + "min": 6 }, "function": "minecraft:set_count" } @@ -183,14 +183,14 @@ { "type": "minecraft:item", "name": "gtceu:lead_nugget", - "weight": 40, + "weight": 100, "functions": [ { "add": false, "count": { "type": "minecraft:uniform", - "max": 4, - "min": 2 + "max": 10, + "min": 6 }, "function": "minecraft:set_count" } @@ -199,14 +199,14 @@ { "type": "minecraft:item", "name": "create:brass_nugget", - "weight": 40, + "weight": 80, "functions": [ { "add": false, "count": { "type": "minecraft:uniform", - "max": 4, - "min": 2 + "max": 10, + "min": 6 }, "function": "minecraft:set_count" } @@ -215,14 +215,14 @@ { "type": "minecraft:item", "name": "gtceu:bismuth_nugget", - "weight": 60, + "weight": 80, "functions": [ { "add": false, "count": { "type": "minecraft:uniform", - "max": 4, - "min": 2 + "max": 10, + "min": 6 }, "function": "minecraft:set_count" } @@ -238,11 +238,6 @@ "name": "tfchotornot:tongs/wood", "weight": 30 }, - { - "type": "minecraft:item", - "name": "tfc:ceramic/vessel", - "weight": 50 - }, { "type": "minecraft:item", "name": "tfc:powder/flux", diff --git a/kubejs/data/tfg/loot_tables/chests/yurts_illager_archery.json b/kubejs/data/tfg/loot_tables/chests/yurts_illager_archery.json new file mode 100644 index 000000000..07f192f54 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/chests/yurts_illager_archery.json @@ -0,0 +1,128 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:arrow", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 16, + "min": 12 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfg:fletching", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfg:flint_arrow_head", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "weight": 50 + }, + { + "type": "minecraft:item", + "name": "minecraft:tipped_arrow", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_nbt", + "tag": "{Potion: \"minecraft:poison\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:tipped_arrow", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_nbt", + "tag": "{Potion: \"minecraft:weakness\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:tipped_arrow", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_nbt", + "tag": "{Potion: \"minecraft:harming\"}" + } + ] + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8, + "min": 6 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/chests/yurts_illager_basic.json b/kubejs/data/tfg/loot_tables/chests/yurts_illager_basic.json new file mode 100644 index 000000000..1d5b919cf --- /dev/null +++ b/kubejs/data/tfg/loot_tables/chests/yurts_illager_basic.json @@ -0,0 +1,559 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0, + "entries": [ + { + "type": "minecraft:item", + "name": "tfc:wood/lumber/chestnut", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wood/sapling/chestnut", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wood/lumber/pine", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wood/sapling/pine", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wood/lumber/ash", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wood/sapling/ash", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wool", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "primitive_creatures:grh", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:wool_yarn", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9, + "min": 5 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:ceramic/gray_glazed_vessel", + "weight": 50 + }, + { + "type": "minecraft:item", + "name": "tfc:ceramic/light_gray_glazed_vessel", + "weight": 50 + }, + { + "type": "minecraft:item", + "name": "primitive_creatures:totem_0", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "primitive_creatures:totem_2", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "primitive_creatures:totem_3", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:rabbit_foot", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:sentry_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:vex_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:wild_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:coast_armor_trim_smithing_template", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "tfc:powder/salt", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:powder/saltpeter", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:powder/sulfur", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:powder/wood_ash", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:candle", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:candle/gray", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:candle/light_gray", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:arrow", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 20, + "min": 12 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bone", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "firmalife:jar/compost", + "weight": 80 + }, + { + "type": "minecraft:item", + "name": "firmalife:jar/guano", + "weight": 80 + }, + { + "type": "minecraft:item", + "name": "firmalife:jar/honey", + "weight": 80 + }, + { + "type": "minecraft:item", + "name": "minecraft:bowl", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:paper", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:groundcover/pumice", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfg:conifer_rosin", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "firmalife:beeswax", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:flint", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6, + "min": 3 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:tricalcium_phosphate_dust", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:charcoal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:glue", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "chalk:gray_chalk", + "weight": 70 + }, + { + "type": "minecraft:item", + "name": "chalk:light_gray_chalk", + "weight": 70 + }, + { + "type": "minecraft:item", + "name": "species:music_disc_lapidarian", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8, + "min": 6 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/chests/yurts_illager_smithy.json b/kubejs/data/tfg/loot_tables/chests/yurts_illager_smithy.json new file mode 100644 index 000000000..7f3e6f9d9 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/chests/yurts_illager_smithy.json @@ -0,0 +1,370 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:charcoal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:ceramic/ingot_mold", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:clay_ball", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15, + "min": 9 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:mortar", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15, + "min": 9 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:poor_raw_coal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:raw_coal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:rich_raw_coal", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5, + "min": 2 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:cobalt_brass_nugget", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:cobalt_nugget", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "create:copper_nugget", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "create:zinc_nugget", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:lead_nugget", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "create:brass_nugget", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:bismuth_nugget", + "weight": 80, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfchotornot:tongs/copper", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "tfchotornot:tongs/wood", + "weight": 30 + }, + { + "type": "minecraft:item", + "name": "tfc:powder/flux", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:powder/lime", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:hematitic_glass_batch", + "weight": 30, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:olivine_glass_batch", + "weight": 30, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "tfc:volcanic_glass_batch", + "weight": 30, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:matches", + "weight": 70, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 4 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:sentry_armor_trim_smithing_template", + "weight": 7 + }, + { + "type": "minecraft:item", + "name": "minecraft:vex_armor_trim_smithing_template", + "weight": 7 + }, + { + "type": "minecraft:item", + "name": "minecraft:wild_armor_trim_smithing_template", + "weight": 7 + }, + { + "type": "minecraft:item", + "name": "minecraft:coast_armor_trim_smithing_template", + "weight": 7 + }, + { + "type": "minecraft:item", + "name": "alekiships:music_disc_pirate_crafting", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8, + "min": 6 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/loot_tables/chests/yurts_illager_stable.json b/kubejs/data/tfg/loot_tables/chests/yurts_illager_stable.json new file mode 100644 index 000000000..1ca0e3745 --- /dev/null +++ b/kubejs/data/tfg/loot_tables/chests/yurts_illager_stable.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0, + "entries": [ + { + "type": "minecraft:item", + "name": "tfc:straw", + "weight": 100, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8, + "min": 6 + }, + "function": "minecraft:set_count" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:lead", + "weight": 50 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_horse_armor", + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "minecraft:arrow", + "weight": 50, + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 16, + "min": 12 + }, + "function": "minecraft:set_count" + } + ] + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 6, + "min": 4 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/structures/arabic/baseline/barracks.nbt b/kubejs/data/tfg/structures/arabic/baseline/barracks.nbt new file mode 100644 index 000000000..b651d20c2 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/barracks.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/bend_left.nbt b/kubejs/data/tfg/structures/arabic/baseline/bend_left.nbt new file mode 100644 index 000000000..06339095c Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/bend_left.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/bend_right.nbt b/kubejs/data/tfg/structures/arabic/baseline/bend_right.nbt new file mode 100644 index 000000000..5659e9745 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/bend_right.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/cross.nbt b/kubejs/data/tfg/structures/arabic/baseline/cross.nbt new file mode 100644 index 000000000..bae99f16b Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/cross.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/fork_left.nbt b/kubejs/data/tfg/structures/arabic/baseline/fork_left.nbt new file mode 100644 index 000000000..1df52be54 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/fork_left.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/fork_right.nbt b/kubejs/data/tfg/structures/arabic/baseline/fork_right.nbt new file mode 100644 index 000000000..5641bf38d Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/fork_right.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/house1.nbt b/kubejs/data/tfg/structures/arabic/baseline/house1.nbt new file mode 100644 index 000000000..6974d4616 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/house1.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/house2.nbt b/kubejs/data/tfg/structures/arabic/baseline/house2.nbt new file mode 100644 index 000000000..d58f6eeb7 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/house2.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/house3.nbt b/kubejs/data/tfg/structures/arabic/baseline/house3.nbt new file mode 100644 index 000000000..85f0d0916 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/house3.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/house4.nbt b/kubejs/data/tfg/structures/arabic/baseline/house4.nbt new file mode 100644 index 000000000..aa3064473 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/house4.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/house_garden.nbt b/kubejs/data/tfg/structures/arabic/baseline/house_garden.nbt new file mode 100644 index 000000000..a4f675c91 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/house_garden.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/smithy.nbt b/kubejs/data/tfg/structures/arabic/baseline/smithy.nbt new file mode 100644 index 000000000..8d0153fd1 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/smithy.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/stall_gray.nbt b/kubejs/data/tfg/structures/arabic/baseline/stall_gray.nbt new file mode 100644 index 000000000..62b0ffe17 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/stall_gray.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/stall_green.nbt b/kubejs/data/tfg/structures/arabic/baseline/stall_green.nbt new file mode 100644 index 000000000..d8c4918b8 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/stall_green.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/stall_yellow.nbt b/kubejs/data/tfg/structures/arabic/baseline/stall_yellow.nbt new file mode 100644 index 000000000..9f23f5f58 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/stall_yellow.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/straight_long.nbt b/kubejs/data/tfg/structures/arabic/baseline/straight_long.nbt new file mode 100644 index 000000000..5c7110c3e Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/straight_long.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/straight_medium.nbt b/kubejs/data/tfg/structures/arabic/baseline/straight_medium.nbt new file mode 100644 index 000000000..64fc8d2f7 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/straight_medium.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/straight_short.nbt b/kubejs/data/tfg/structures/arabic/baseline/straight_short.nbt new file mode 100644 index 000000000..83121f674 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/straight_short.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/t_junction.nbt b/kubejs/data/tfg/structures/arabic/baseline/t_junction.nbt new file mode 100644 index 000000000..ebfe14399 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/t_junction.nbt differ diff --git a/kubejs/data/tfg/structures/arabic/baseline/well.nbt b/kubejs/data/tfg/structures/arabic/baseline/well.nbt new file mode 100644 index 000000000..2d67e4b13 Binary files /dev/null and b/kubejs/data/tfg/structures/arabic/baseline/well.nbt differ diff --git a/kubejs/data/tfg/structures/illager_generic/gatherers.nbt b/kubejs/data/tfg/structures/illager_generic/gatherers.nbt new file mode 100644 index 000000000..5f000a202 Binary files /dev/null and b/kubejs/data/tfg/structures/illager_generic/gatherers.nbt differ diff --git a/kubejs/data/tfg/structures/illager_generic/huntmaster_camp.nbt b/kubejs/data/tfg/structures/illager_generic/huntmaster_camp.nbt new file mode 100644 index 000000000..86e7ff54d Binary files /dev/null and b/kubejs/data/tfg/structures/illager_generic/huntmaster_camp.nbt differ diff --git a/kubejs/data/tfg/structures/illager_generic/mobs/goat.nbt b/kubejs/data/tfg/structures/illager_generic/mobs/goat.nbt new file mode 100644 index 000000000..4e2a61062 Binary files /dev/null and b/kubejs/data/tfg/structures/illager_generic/mobs/goat.nbt differ diff --git a/kubejs/data/tfg/structures/illager_generic/mobs/horse.nbt b/kubejs/data/tfg/structures/illager_generic/mobs/horse.nbt new file mode 100644 index 000000000..8405efb9c Binary files /dev/null and b/kubejs/data/tfg/structures/illager_generic/mobs/horse.nbt differ diff --git a/kubejs/data/tfg/structures/illager_generic/mobs/huntmaster.nbt b/kubejs/data/tfg/structures/illager_generic/mobs/huntmaster.nbt new file mode 100644 index 000000000..66352151f Binary files /dev/null and b/kubejs/data/tfg/structures/illager_generic/mobs/huntmaster.nbt differ diff --git a/kubejs/data/tfg/structures/illager_generic/small_camp_1.nbt b/kubejs/data/tfg/structures/illager_generic/small_camp_1.nbt new file mode 100644 index 000000000..59e711b7a Binary files /dev/null and b/kubejs/data/tfg/structures/illager_generic/small_camp_1.nbt differ diff --git a/kubejs/data/tfg/structures/illager_generic/small_camp_2.nbt b/kubejs/data/tfg/structures/illager_generic/small_camp_2.nbt new file mode 100644 index 000000000..f8e28c734 Binary files /dev/null and b/kubejs/data/tfg/structures/illager_generic/small_camp_2.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/bend_left.nbt b/kubejs/data/tfg/structures/yurts/baseline/bend_left.nbt new file mode 100644 index 000000000..20f45bf70 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/bend_left.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/bend_right.nbt b/kubejs/data/tfg/structures/yurts/baseline/bend_right.nbt new file mode 100644 index 000000000..23602f476 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/bend_right.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/cross.nbt b/kubejs/data/tfg/structures/yurts/baseline/cross.nbt new file mode 100644 index 000000000..cbe50770a Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/cross.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/fork_left.nbt b/kubejs/data/tfg/structures/yurts/baseline/fork_left.nbt new file mode 100644 index 000000000..c0d762a5d Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/fork_left.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/fork_right.nbt b/kubejs/data/tfg/structures/yurts/baseline/fork_right.nbt new file mode 100644 index 000000000..150b9d1e0 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/fork_right.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/house1.nbt b/kubejs/data/tfg/structures/yurts/baseline/house1.nbt new file mode 100644 index 000000000..9c18c958f Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/house1.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/house2.nbt b/kubejs/data/tfg/structures/yurts/baseline/house2.nbt new file mode 100644 index 000000000..255d4faac Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/house2.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/house3.nbt b/kubejs/data/tfg/structures/yurts/baseline/house3.nbt new file mode 100644 index 000000000..28d91a292 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/house3.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/larder.nbt b/kubejs/data/tfg/structures/yurts/baseline/larder.nbt new file mode 100644 index 000000000..f895f1a59 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/larder.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/monument.nbt b/kubejs/data/tfg/structures/yurts/baseline/monument.nbt new file mode 100644 index 000000000..60370782b Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/monument.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/shooting_range.nbt b/kubejs/data/tfg/structures/yurts/baseline/shooting_range.nbt new file mode 100644 index 000000000..5c22dd6f4 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/shooting_range.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/stable.nbt b/kubejs/data/tfg/structures/yurts/baseline/stable.nbt new file mode 100644 index 000000000..726767cf5 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/stable.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/straight_long.nbt b/kubejs/data/tfg/structures/yurts/baseline/straight_long.nbt new file mode 100644 index 000000000..627d6ddb5 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/straight_long.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/straight_medium.nbt b/kubejs/data/tfg/structures/yurts/baseline/straight_medium.nbt new file mode 100644 index 000000000..4997aaa84 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/straight_medium.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/straight_short.nbt b/kubejs/data/tfg/structures/yurts/baseline/straight_short.nbt new file mode 100644 index 000000000..224576df6 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/straight_short.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/t_junction.nbt b/kubejs/data/tfg/structures/yurts/baseline/t_junction.nbt new file mode 100644 index 000000000..1ff2a1efa Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/t_junction.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/throne_house.nbt b/kubejs/data/tfg/structures/yurts/baseline/throne_house.nbt new file mode 100644 index 000000000..95e355099 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/throne_house.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/tower.nbt b/kubejs/data/tfg/structures/yurts/baseline/tower.nbt new file mode 100644 index 000000000..65fd979d6 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/tower.nbt differ diff --git a/kubejs/data/tfg/structures/yurts/baseline/workshop.nbt b/kubejs/data/tfg/structures/yurts/baseline/workshop.nbt new file mode 100644 index 000000000..b306243b4 Binary files /dev/null and b/kubejs/data/tfg/structures/yurts/baseline/workshop.nbt differ diff --git a/kubejs/data/tfg/worldgen/biome/mars/amber_edge.json b/kubejs/data/tfg/worldgen/biome/mars/amber_edge.json index 7853a4284..f04a04a10 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/amber_edge.json +++ b/kubejs/data/tfg/worldgen/biome/mars/amber_edge.json @@ -8,9 +8,20 @@ "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_desert.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_desert.additions", + "tick_chance": 0.0111 + }, + "ambient_sound": "tfg:ambient.mars_desert.loop", + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.desert" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/amber_hills.json b/kubejs/data/tfg/worldgen/biome/mars/amber_hills.json index 4e347cb58..c4bae6a19 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/amber_hills.json +++ b/kubejs/data/tfg/worldgen/biome/mars/amber_hills.json @@ -11,9 +11,20 @@ "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_land.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_land.additions", + "tick_chance": 0.0111 + }, + "ambient_sound": "tfg:ambient.mars_land.loop", + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.badlands" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/amber_plains.json b/kubejs/data/tfg/worldgen/biome/mars/amber_plains.json index 15fd11f88..bccfe5270 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/amber_plains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/amber_plains.json @@ -11,9 +11,20 @@ "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_land.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_land.additions", + "tick_chance": 0.0111 + }, + "ambient_sound": "tfg:ambient.mars_land.loop", + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.badlands" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 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 31f6e1288..40fc25932 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_deep_desert.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_deep_desert.json @@ -7,12 +7,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_desert.loop", "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_desert.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_desert.additions", + "tick_chance": 0.0111 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.desert" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 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 0c2a223e7..399101ce8 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_dune_edge.json @@ -7,12 +7,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_desert.loop", "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_desert.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_desert.additions", + "tick_chance": 0.0111 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.desert" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json b/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json index d51fb49f4..071f2bd85 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_dunes.json @@ -7,12 +7,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_desert.loop", "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_desert.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_desert.additions", + "tick_chance": 0.0111 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.desert" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json b/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json index 364c3610e..347185c88 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_mountains.json @@ -8,12 +8,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_land.loop", "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_land.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_land.additions", + "tick_chance": 0.0111 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.badlands" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/martian_river.json b/kubejs/data/tfg/worldgen/biome/mars/martian_river.json index 1a9215d7d..e64f1781a 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/martian_river.json +++ b/kubejs/data/tfg/worldgen/biome/mars/martian_river.json @@ -8,12 +8,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_land.loop", "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_land.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_land.additions", + "tick_chance": 0.0111 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.badlands" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/rusticus_edge.json b/kubejs/data/tfg/worldgen/biome/mars/rusticus_edge.json index 680384cef..3168d0016 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/rusticus_edge.json +++ b/kubejs/data/tfg/worldgen/biome/mars/rusticus_edge.json @@ -5,12 +5,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_desert.loop", + "additions_sound": { + "sound": "tfg:ambient.mars_desert.additions", + "tick_chance": 0.0111 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_desert.mood", "tick_delay": 6000 }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.desert" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/rusticus_hills.json b/kubejs/data/tfg/worldgen/biome/mars/rusticus_hills.json index 8080bd92c..6afdb041b 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/rusticus_hills.json +++ b/kubejs/data/tfg/worldgen/biome/mars/rusticus_hills.json @@ -8,12 +8,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_land.loop", "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_land.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_land.additions", + "tick_chance": 0.0111 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.badlands" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/rusticus_plains.json b/kubejs/data/tfg/worldgen/biome/mars/rusticus_plains.json index f797440be..0afbc1e8c 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/rusticus_plains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/rusticus_plains.json @@ -8,12 +8,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_land.loop", "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_land.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_land.additions", + "tick_chance": 0.0111 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.badlands" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/sangnum_edge.json b/kubejs/data/tfg/worldgen/biome/mars/sangnum_edge.json index b9f379283..4877e57e1 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/sangnum_edge.json +++ b/kubejs/data/tfg/worldgen/biome/mars/sangnum_edge.json @@ -5,12 +5,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_desert.loop", + "additions_sound": { + "sound": "tfg:ambient.mars_desert.additions", + "tick_chance": 0.0111 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_desert.mood", "tick_delay": 6000 }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.desert" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/sangnum_hills.json b/kubejs/data/tfg/worldgen/biome/mars/sangnum_hills.json index 3f406a7c0..c3f778902 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/sangnum_hills.json +++ b/kubejs/data/tfg/worldgen/biome/mars/sangnum_hills.json @@ -8,12 +8,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_land.loop", "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_land.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_land.additions", + "tick_chance": 0.0111 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.badlands" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/mars/sangnum_plains.json b/kubejs/data/tfg/worldgen/biome/mars/sangnum_plains.json index ad4170e08..8e490005f 100644 --- a/kubejs/data/tfg/worldgen/biome/mars/sangnum_plains.json +++ b/kubejs/data/tfg/worldgen/biome/mars/sangnum_plains.json @@ -8,12 +8,23 @@ "downfall": 0.0, "effects": { "fog_color": 15117444, + "ambient_sound": "tfg:ambient.mars_land.loop", "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.mars_land.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.mars_land.additions", + "tick_chance": 0.0111 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.badlands" + }, "sky_color": 15117444, "water_color": 4159204, "water_fog_color": 1069623 diff --git a/kubejs/data/tfg/worldgen/biome/moon/lunar_asurine_dense.json b/kubejs/data/tfg/worldgen/biome/moon/lunar_asurine_dense.json index 50b30016a..a8e0f54b3 100644 --- a/kubejs/data/tfg/worldgen/biome/moon/lunar_asurine_dense.json +++ b/kubejs/data/tfg/worldgen/biome/moon/lunar_asurine_dense.json @@ -8,10 +8,14 @@ "downfall": 0.0, "effects": { "fog_color": 0, + "additions_sound": { + "sound": "tfg:ambient.moon.additions", + "tick_chance": 0.0005 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.moon.mood", "tick_delay": 6000 }, "sky_color": 0, @@ -52,7 +56,7 @@ ] ], "has_precipitation": false, - "creature_spawn_probability": 0.00003, + "creature_spawn_probability": 0.0003, "spawn_costs": { "species:limpet": { "energy_budget": 0.15, diff --git a/kubejs/data/tfg/worldgen/biome/moon/lunar_asurine_sparse.json b/kubejs/data/tfg/worldgen/biome/moon/lunar_asurine_sparse.json index 33e629c0c..2895ad9b1 100644 --- a/kubejs/data/tfg/worldgen/biome/moon/lunar_asurine_sparse.json +++ b/kubejs/data/tfg/worldgen/biome/moon/lunar_asurine_sparse.json @@ -8,10 +8,14 @@ "downfall": 0.0, "effects": { "fog_color": 0, + "additions_sound": { + "sound": "tfg:ambient.moon.additions", + "tick_chance": 0.0005 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.moon.mood", "tick_delay": 6000 }, "sky_color": 0, @@ -56,7 +60,7 @@ ] ], "has_precipitation": false, - "creature_spawn_probability": 0.00006, + "creature_spawn_probability": 0.0006, "spawn_costs": { "species:limpet": { "energy_budget": 0.15, diff --git a/kubejs/data/tfg/worldgen/biome/moon/lunar_chorus_dense.json b/kubejs/data/tfg/worldgen/biome/moon/lunar_chorus_dense.json index bddbdb78e..53dd80166 100644 --- a/kubejs/data/tfg/worldgen/biome/moon/lunar_chorus_dense.json +++ b/kubejs/data/tfg/worldgen/biome/moon/lunar_chorus_dense.json @@ -8,10 +8,14 @@ "downfall": 0.0, "effects": { "fog_color": 0, + "additions_sound": { + "sound": "tfg:ambient.moon.additions", + "tick_chance": 0.0051 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.moon.mood", "tick_delay": 6000 }, "sky_color": 0, @@ -51,7 +55,7 @@ ] ], "has_precipitation": false, - "creature_spawn_probability": 0.00003, + "creature_spawn_probability": 0.0003, "spawn_costs": { "species:limpet": { "energy_budget": 0.15, diff --git a/kubejs/data/tfg/worldgen/biome/moon/lunar_chorus_sparse.json b/kubejs/data/tfg/worldgen/biome/moon/lunar_chorus_sparse.json index 3c65763c0..dc0984985 100644 --- a/kubejs/data/tfg/worldgen/biome/moon/lunar_chorus_sparse.json +++ b/kubejs/data/tfg/worldgen/biome/moon/lunar_chorus_sparse.json @@ -8,10 +8,14 @@ "downfall": 0.0, "effects": { "fog_color": 0, + "additions_sound": { + "sound": "tfg:ambient.moon.additions", + "tick_chance": 0.0051 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.moon.mood", "tick_delay": 6000 }, "sky_color": 0, @@ -54,7 +58,7 @@ ] ], "has_precipitation": false, - "creature_spawn_probability": 0.00006, + "creature_spawn_probability": 0.0006, "spawn_costs": { "species:limpet": { "energy_budget": 0.15, diff --git a/kubejs/data/tfg/worldgen/biome/moon/lunar_corals_dense.json b/kubejs/data/tfg/worldgen/biome/moon/lunar_corals_dense.json index 1bf04e72d..a313d8db6 100644 --- a/kubejs/data/tfg/worldgen/biome/moon/lunar_corals_dense.json +++ b/kubejs/data/tfg/worldgen/biome/moon/lunar_corals_dense.json @@ -8,10 +8,14 @@ "downfall": 0.0, "effects": { "fog_color": 0, + "additions_sound": { + "sound": "tfg:ambient.moon.additions", + "tick_chance": 0.0005 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.moon.mood", "tick_delay": 6000 }, "sky_color": 0, @@ -50,7 +54,7 @@ ] ], "has_precipitation": false, - "creature_spawn_probability": 0.00003, + "creature_spawn_probability": 0.0003, "spawn_costs": { "species:limpet": { "energy_budget": 0.15, diff --git a/kubejs/data/tfg/worldgen/biome/moon/lunar_corals_sparse.json b/kubejs/data/tfg/worldgen/biome/moon/lunar_corals_sparse.json index 3129db99b..3897eeeb7 100644 --- a/kubejs/data/tfg/worldgen/biome/moon/lunar_corals_sparse.json +++ b/kubejs/data/tfg/worldgen/biome/moon/lunar_corals_sparse.json @@ -8,10 +8,14 @@ "downfall": 0.0, "effects": { "fog_color": 0, + "additions_sound": { + "sound": "tfg:ambient.moon.additions", + "tick_chance": 0.0005 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.moon.mood", "tick_delay": 6000 }, "sky_color": 0, @@ -54,7 +58,7 @@ ] ], "has_precipitation": false, - "creature_spawn_probability": 0.00006, + "creature_spawn_probability": 0.0006, "spawn_costs": { "species:limpet": { "energy_budget": 0.15, diff --git a/kubejs/data/tfg/worldgen/biome/moon/lunar_lights_dense.json b/kubejs/data/tfg/worldgen/biome/moon/lunar_lights_dense.json index 5df3baef0..3ece7dd46 100644 --- a/kubejs/data/tfg/worldgen/biome/moon/lunar_lights_dense.json +++ b/kubejs/data/tfg/worldgen/biome/moon/lunar_lights_dense.json @@ -8,10 +8,14 @@ "downfall": 0.0, "effects": { "fog_color": 0, + "additions_sound": { + "sound": "tfg:ambient.moon.additions", + "tick_chance": 0.0011 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.moon.mood", "tick_delay": 6000 }, "sky_color": 0, @@ -51,7 +55,7 @@ ] ], "has_precipitation": false, - "creature_spawn_probability": 0.00003, + "creature_spawn_probability": 0.0003, "spawn_costs": { "species:limpet": { "energy_budget": 0.15, diff --git a/kubejs/data/tfg/worldgen/biome/moon/lunar_lights_sparse.json b/kubejs/data/tfg/worldgen/biome/moon/lunar_lights_sparse.json index 634c86134..82b5a6914 100644 --- a/kubejs/data/tfg/worldgen/biome/moon/lunar_lights_sparse.json +++ b/kubejs/data/tfg/worldgen/biome/moon/lunar_lights_sparse.json @@ -8,10 +8,14 @@ "downfall": 0.0, "effects": { "fog_color": 0, + "additions_sound": { + "sound": "tfg:ambient.moon.additions", + "tick_chance": 0.0011 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.moon.mood", "tick_delay": 6000 }, "sky_color": 0, @@ -54,7 +58,7 @@ ] ], "has_precipitation": false, - "creature_spawn_probability": 0.00006, + "creature_spawn_probability": 0.0006, "spawn_costs": { "species:limpet": { "energy_budget": 0.15, diff --git a/kubejs/data/tfg/worldgen/biome/moon/lunar_plains.json b/kubejs/data/tfg/worldgen/biome/moon/lunar_plains.json index dbb4ef773..031090ba2 100644 --- a/kubejs/data/tfg/worldgen/biome/moon/lunar_plains.json +++ b/kubejs/data/tfg/worldgen/biome/moon/lunar_plains.json @@ -8,10 +8,14 @@ "downfall": 0.0, "effects": { "fog_color": 0, + "additions_sound": { + "sound": "tfg:ambient.moon.additions", + "tick_chance": 0.0005 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.moon.mood", "tick_delay": 6000 }, "sky_color": 0, @@ -54,7 +58,7 @@ ] ], "has_precipitation": false, - "creature_spawn_probability": 0.0001, + "creature_spawn_probability": 0.001, "spawn_costs": { "species:limpet": { "energy_budget": 0.15, diff --git a/kubejs/data/tfg/worldgen/biome/moon/lunar_sands.json b/kubejs/data/tfg/worldgen/biome/moon/lunar_sands.json index d74de9e89..2839d273a 100644 --- a/kubejs/data/tfg/worldgen/biome/moon/lunar_sands.json +++ b/kubejs/data/tfg/worldgen/biome/moon/lunar_sands.json @@ -8,10 +8,14 @@ "downfall": 0.0, "effects": { "fog_color": 0, + "additions_sound": { + "sound": "tfg:ambient.moon.additions", + "tick_chance": 0.0005 + }, "mood_sound": { "block_search_extent": 8, "offset": 2.0, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.moon.mood", "tick_delay": 6000 }, "sky_color": 0, @@ -63,7 +67,7 @@ ] ], "has_precipitation": false, - "creature_spawn_probability": 0.0001, + "creature_spawn_probability": 0.001, "spawn_costs": { "species:limpet": { "energy_budget": 0.15, diff --git a/kubejs/data/tfg/worldgen/biome/nether/ash_forest.json b/kubejs/data/tfg/worldgen/biome/nether/ash_forest.json index c9cd4251f..3dfa2a653 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/ash_forest.json +++ b/kubejs/data/tfg/worldgen/biome/nether/ash_forest.json @@ -5,15 +5,15 @@ "downfall": 0.5, "effects": { "additions_sound": { - "sound": "minecraft:ambient.basalt_deltas.additions", + "sound": "tfg:ambient.lower_nether.additions", "tick_chance": 0.0111 }, - "ambient_sound": "minecraft:ambient.basalt_deltas.loop", + "ambient_sound": "tfg:ambient.lower_nether.loop", "fog_color": 6840176, "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.basalt_deltas.mood", + "sound": "tfg:ambient.lower_nether.mood", "tick_delay": 6000 }, "music": { @@ -50,7 +50,8 @@ "#tfg:nether_veins", "#tfg:nether_underground_decoration", [ - "tfg:nether/terrain/spring_lava" + "tfg:nether/terrain/spring_lava", + "tfg:nether/terrain/mossy_cobble" ], [ "minecraft:spring_delta", @@ -100,12 +101,6 @@ } ], "creature": [ - { - "type": "minecraft:frog", - "maxCount": 2, - "minCount": 1, - "weight": 10 - }, { "type": "beneath:red_elk", "maxCount": 8, diff --git a/kubejs/data/tfg/worldgen/biome/nether/basalt_deltas.json b/kubejs/data/tfg/worldgen/biome/nether/basalt_deltas.json index 6472a30a6..75f3e5720 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/basalt_deltas.json +++ b/kubejs/data/tfg/worldgen/biome/nether/basalt_deltas.json @@ -5,15 +5,15 @@ "downfall": 0, "effects": { "additions_sound": { - "sound": "minecraft:ambient.basalt_deltas.additions", + "sound": "tfg:ambient.lower_nether.additions", "tick_chance": 0.0111 }, - "ambient_sound": "minecraft:ambient.basalt_deltas.loop", + "ambient_sound": "tfg:ambient.lower_nether.loop", "fog_color": 6840176, "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.basalt_deltas.mood", + "sound": "tfg:ambient.lower_nether.mood", "tick_delay": 6000 }, "music": { @@ -52,7 +52,8 @@ "#tfg:nether_veins", "#tfg:nether_underground_decoration", [ - "tfg:nether/terrain/spring_lava" + "tfg:nether/terrain/spring_lava", + "tfg:nether/terrain/mossy_cobble" ], [ "minecraft:spring_delta", diff --git a/kubejs/data/tfg/worldgen/biome/nether/decaying_caverns.json b/kubejs/data/tfg/worldgen/biome/nether/decaying_caverns.json index 6cbfa40de..75bf12f9c 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/decaying_caverns.json +++ b/kubejs/data/tfg/worldgen/biome/nether/decaying_caverns.json @@ -5,15 +5,15 @@ "downfall": 0.5, "effects": { "additions_sound": { - "sound": "minecraft:ambient.warped_forest.additions", + "sound": "tfg:ambient.upper_nether.additions", "tick_chance": 0.0111 }, - "ambient_sound": "minecraft:ambient.warped_forest.loop", + "ambient_sound": "tfg:ambient.upper_nether_lush.loop", "fog_color": 7369031, "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.upper_nether.mood", "tick_delay": 6000 }, "music": { @@ -51,7 +51,8 @@ "#tfg:nether_veins", "#tfg:nether_underground_decoration", [ - "tfg:nether/terrain/spring_lava" + "tfg:nether/terrain/spring_lava", + "tfg:nether/terrain/mossy_cobble" ], [ "beneath:blackstone_boulders", @@ -105,17 +106,11 @@ ], "axolotls": [], "creature": [ - { - "type": "minecraft:frog", - "maxCount": 5, - "minCount": 2, - "weight": 100 - }, { "type": "beneath:red_elk", "maxCount": 3, "minCount": 2, - "weight": 50 + "weight": 100 } ], "misc": [], diff --git a/kubejs/data/tfg/worldgen/biome/nether/diorite_caves.json b/kubejs/data/tfg/worldgen/biome/nether/diorite_caves.json index c81f371e0..c9bbd3305 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/diorite_caves.json +++ b/kubejs/data/tfg/worldgen/biome/nether/diorite_caves.json @@ -6,14 +6,14 @@ "effects": { "fog_color": 9868701, "additions_sound": { - "sound": "minecraft:ambient.crimson_forest.additions", + "sound": "tfg:ambient.upper_nether.additions", "tick_chance": 0.0111 }, - "ambient_sound": "minecraft:ambient.crimson_forest.loop", + "ambient_sound": "tfg:ambient.upper_nether_cave.loop", "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.crimson_forest.mood", + "sound": "tfg:ambient.upper_nether.mood", "tick_delay": 6000 }, "music": { @@ -47,7 +47,8 @@ "#tfg:nether_veins", "#tfg:nether_underground_decoration", [ - "tfg:nether/terrain/spring_lava" + "tfg:nether/terrain/spring_lava", + "tfg:nether/terrain/mossy_cobble" ], [ "beneath:blackstone_boulders", @@ -98,12 +99,6 @@ } ], "creature": [ - { - "type": "minecraft:frog", - "maxCount": 4, - "minCount": 2, - "weight": 50 - }, { "type": "beneath:red_elk", "maxCount": 8, diff --git a/kubejs/data/tfg/worldgen/biome/nether/gabbro_caves.json b/kubejs/data/tfg/worldgen/biome/nether/gabbro_caves.json index dbd3d9c92..82e8b535d 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/gabbro_caves.json +++ b/kubejs/data/tfg/worldgen/biome/nether/gabbro_caves.json @@ -6,14 +6,14 @@ "effects": { "fog_color": 5855333, "additions_sound": { - "sound": "minecraft:ambient.crimson_forest.additions", + "sound": "tfg:ambient.upper_nether.additions", "tick_chance": 0.0111 }, - "ambient_sound": "minecraft:ambient.crimson_forest.loop", + "ambient_sound": "tfg:ambient.upper_nether_cave.loop", "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.crimson_forest.mood", + "sound": "tfg:ambient.upper_nether.mood", "tick_delay": 6000 }, "music": { @@ -47,7 +47,8 @@ "#tfg:nether_veins", "#tfg:nether_underground_decoration", [ - "tfg:nether/terrain/spring_lava" + "tfg:nether/terrain/spring_lava", + "tfg:nether/terrain/mossy_cobble" ], [ "beneath:blackstone_boulders", @@ -98,12 +99,6 @@ } ], "creature": [ - { - "type": "minecraft:frog", - "maxCount": 4, - "minCount": 2, - "weight": 50 - }, { "type": "beneath:red_elk", "maxCount": 8, diff --git a/kubejs/data/tfg/worldgen/biome/nether/gneiss_caves.json b/kubejs/data/tfg/worldgen/biome/nether/gneiss_caves.json index 037f3abe5..74159dd98 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/gneiss_caves.json +++ b/kubejs/data/tfg/worldgen/biome/nether/gneiss_caves.json @@ -6,14 +6,14 @@ "effects": { "fog_color": 6641752, "additions_sound": { - "sound": "minecraft:ambient.crimson_forest.additions", + "sound": "tfg:ambient.upper_nether.additions", "tick_chance": 0.0111 }, - "ambient_sound": "minecraft:ambient.crimson_forest.loop", + "ambient_sound": "tfg:ambient.upper_nether_cave.loop", "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.crimson_forest.mood", + "sound": "tfg:ambient.upper_nether.mood", "tick_delay": 6000 }, "music": { @@ -48,7 +48,8 @@ "#tfg:nether_veins", "#tfg:nether_underground_decoration", [ - "tfg:nether/terrain/spring_lava" + "tfg:nether/terrain/spring_lava", + "tfg:nether/terrain/mossy_cobble" ], [ "beneath:blackstone_boulders", @@ -99,12 +100,6 @@ } ], "creature": [ - { - "type": "minecraft:frog", - "maxCount": 4, - "minCount": 2, - "weight": 50 - }, { "type": "beneath:red_elk", "maxCount": 8, diff --git a/kubejs/data/tfg/worldgen/biome/nether/granite_caves.json b/kubejs/data/tfg/worldgen/biome/nether/granite_caves.json index ab5dc1fb6..56aa7a5e7 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/granite_caves.json +++ b/kubejs/data/tfg/worldgen/biome/nether/granite_caves.json @@ -6,14 +6,14 @@ "effects": { "fog_color": 9533575, "additions_sound": { - "sound": "minecraft:ambient.crimson_forest.additions", + "sound": "tfg:ambient.upper_nether.additions", "tick_chance": 0.0111 }, - "ambient_sound": "minecraft:ambient.crimson_forest.loop", + "ambient_sound": "tfg:ambient.upper_nether_cave.loop", "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.crimson_forest.mood", + "sound": "tfg:ambient.upper_nether.mood", "tick_delay": 6000 }, "music": { @@ -48,7 +48,8 @@ "#tfg:nether_veins", "#tfg:nether_underground_decoration", [ - "tfg:nether/terrain/spring_lava" + "tfg:nether/terrain/spring_lava", + "tfg:nether/terrain/mossy_cobble" ], [ "beneath:blackstone_boulders", @@ -99,12 +100,6 @@ } ], "creature": [ - { - "type": "minecraft:frog", - "maxCount": 4, - "minCount": 2, - "weight": 50 - }, { "type": "beneath:red_elk", "maxCount": 8, diff --git a/kubejs/data/tfg/worldgen/biome/nether/lava_floes.json b/kubejs/data/tfg/worldgen/biome/nether/lava_floes.json index fc9ed3bef..f2e6129a8 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/lava_floes.json +++ b/kubejs/data/tfg/worldgen/biome/nether/lava_floes.json @@ -5,15 +5,15 @@ "downfall": 0.5, "effects": { "additions_sound": { - "sound": "minecraft:ambient.basalt_deltas.additions", + "sound": "tfg:ambient.lower_nether.additions", "tick_chance": 0.0111 }, - "ambient_sound": "minecraft:ambient.basalt_deltas.loop", + "ambient_sound": "tfg:ambient.lower_nether.loop", "fog_color": 5450003, "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.basalt_deltas.mood", + "sound": "tfg:ambient.lower_nether.mood", "tick_delay": 6000 }, "music": { @@ -51,7 +51,8 @@ "#tfg:nether_veins", "#tfg:nether_underground_decoration", [ - "tfg:nether/terrain/spring_lava" + "tfg:nether/terrain/spring_lava", + "tfg:nether/terrain/mossy_cobble" ], [ "minecraft:spring_delta", diff --git a/kubejs/data/tfg/worldgen/biome/nether/lush_hollow.json b/kubejs/data/tfg/worldgen/biome/nether/lush_hollow.json index e3c576ac1..be5325af1 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/lush_hollow.json +++ b/kubejs/data/tfg/worldgen/biome/nether/lush_hollow.json @@ -8,9 +8,14 @@ "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.upper_nether.mood", "tick_delay": 6000 }, + "additions_sound": { + "sound": "tfg:ambient.upper_nether.additions", + "tick_chance": 0.0111 + }, + "ambient_sound": "tfg:ambient.upper_nether_lush.loop", "music": { "max_delay": 24000, "min_delay": 12000, @@ -46,7 +51,9 @@ [], "#tfg:nether_veins", "#tfg:nether_underground_decoration", - [], + [ + "tfg:nether/terrain/mossy_cobble" + ], [ "beneath:blackstone_boulders", "tfg:nether/surface/loose_deepslate", @@ -99,17 +106,11 @@ } ], "creature": [ - { - "type": "minecraft:frog", - "maxCount": 4, - "minCount": 2, - "weight": 100 - }, { "type": "beneath:red_elk", "maxCount": 3, "minCount": 2, - "weight": 50 + "weight": 100 } ], "misc": [], diff --git a/kubejs/data/tfg/worldgen/biome/nether/schist_caves.json b/kubejs/data/tfg/worldgen/biome/nether/schist_caves.json index 8c88bae78..e0e450472 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/schist_caves.json +++ b/kubejs/data/tfg/worldgen/biome/nether/schist_caves.json @@ -6,14 +6,14 @@ "effects": { "fog_color": 7175789, "additions_sound": { - "sound": "minecraft:ambient.crimson_forest.additions", + "sound": "tfg:ambient.upper_nether.additions", "tick_chance": 0.0111 }, - "ambient_sound": "minecraft:ambient.crimson_forest.loop", + "ambient_sound": "tfg:ambient.upper_nether_cave.loop", "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.crimson_forest.mood", + "sound": "tfg:ambient.upper_nether.mood", "tick_delay": 6000 }, "music": { @@ -47,7 +47,8 @@ "#tfg:nether_veins", "#tfg:nether_underground_decoration", [ - "tfg:nether/terrain/spring_lava" + "tfg:nether/terrain/spring_lava", + "tfg:nether/terrain/mossy_cobble" ], [ "beneath:blackstone_boulders", @@ -98,12 +99,6 @@ } ], "creature": [ - { - "type": "minecraft:frog", - "maxCount": 4, - "minCount": 2, - "weight": 50 - }, { "type": "beneath:red_elk", "maxCount": 8, diff --git a/kubejs/data/tfg/worldgen/biome/nether/webbed_lair.json b/kubejs/data/tfg/worldgen/biome/nether/webbed_lair.json index 327f54f8f..d91609c13 100644 --- a/kubejs/data/tfg/worldgen/biome/nether/webbed_lair.json +++ b/kubejs/data/tfg/worldgen/biome/nether/webbed_lair.json @@ -8,7 +8,7 @@ "mood_sound": { "block_search_extent": 8, "offset": 2, - "sound": "minecraft:ambient.cave", + "sound": "tfg:ambient.upper_nether.mood", "tick_delay": 6000 }, "music": { @@ -17,6 +17,11 @@ "replace_current_music": false, "sound": "minecraft:music.overworld.dripstone_caves" }, + "additions_sound": { + "sound": "tfg:ambient.upper_nether_cave.additions", + "tick_chance": 0.0111 + }, + "ambient_sound": "tfg:ambient.upper_nether_cave.loop", "sky_color": 5799235, "water_color": 7255466, "water_fog_color": 3169873, @@ -40,7 +45,8 @@ "#tfg:nether_veins", "#tfg:nether_underground_decoration", [ - "tfg:nether/terrain/spring_lava" + "tfg:nether/terrain/spring_lava", + "tfg:nether/terrain/mossy_cobble" ], [ "beneath:blackstone_boulders", @@ -96,17 +102,11 @@ } ], "creature": [ - { - "type": "minecraft:frog", - "maxCount": 4, - "minCount": 2, - "weight": 100 - }, { "type": "beneath:red_elk", "maxCount": 3, "minCount": 2, - "weight": 50 + "weight": 100 } ], "misc": [], diff --git a/kubejs/data/tfg/worldgen/biome/venus/arachnoids.json b/kubejs/data/tfg/worldgen/biome/venus/arachnoids.json new file mode 100644 index 000000000..ca349ad00 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/venus/arachnoids.json @@ -0,0 +1,176 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0, + "effects": { + "additions_sound": { + "sound": "tfg:ambient.venus_surface.additions", + "tick_chance": 0.0111 + }, + "sky_color": 10465603, + "fog_color": 9938052, + "water_color": 8241044, + "water_fog_color": 10866612, + "ambient_sound": "tfg:ambient.venus_surface.loop", + "mood_sound": { + "block_search_extent": 8, + "offset": 2, + "sound": "tfg:ambient.venus_surface.mood", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:ash" + }, + "probability": 0.05 + } + }, + "features": [ + [ + "tfc:erosion" + ], + [], + [], + [], + [], + [], + "#tfg:venus_veins", + "#tfg:venus_underground_decoration", + [ + "tfc:raw_boulder_small_patch", + "tfc:cobble_boulder_small_patch" + ], + [], + "#tfg:venus_top_layer_modification" + ], + "has_precipitation": true, + "spawn_costs": { + "endermanoverhaul:desert_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:savanna_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:nether_wastes_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "minecraft:enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "species:cliff_hanger": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "ad_astra:sulfur_creeper": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "primitive_creatures:golem_2": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:blaze": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:magma_cube": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "arthropocolypse:millipede_head": { + "energy_budget": 0.05, + "charge": 0.9 + } + }, + "creature_spawn_probability": 0.2, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "arthropocolypse:prairie_grasshopper", + "maxCount": 5, + "minCount": 3, + "weight": 100 + }, + { + "type": "arthropocolypse:field_cricket", + "maxCount": 5, + "minCount": 3, + "weight": 100 + }, + { + "type": "arthropocolypse:mealworm_beetle", + "maxCount": 2, + "minCount": 1, + "weight": 70 + }, + { + "type": "arthropocolypse:stag_beetle", + "maxCount": 2, + "minCount": 1, + "weight": 70 + }, + { + "type": "arthropocolypse:soldier_ant", + "maxCount": 6, + "minCount": 4, + "weight": 100 + }, + { + "type": "arthropocolypse:worker_ant", + "maxCount": 3, + "minCount": 2, + "weight": 50 + } + ], + "misc": [], + "monster": [ + { + "type": "endermanoverhaul:desert_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "endermanoverhaul:savanna_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "endermanoverhaul:nether_wastes_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, + { + "type": "species:cliff_hanger", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "arthropocolypse:millipede_head", + "maxCount": 1, + "minCount": 1, + "weight": 100 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.6 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/venus/fractured_pools.json b/kubejs/data/tfg/worldgen/biome/venus/fractured_pools.json new file mode 100644 index 000000000..b1bcc3911 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/venus/fractured_pools.json @@ -0,0 +1,172 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0, + "effects": { + "additions_sound": { + "sound": "tfg:ambient.venus_surface.additions", + "tick_chance": 0.0111 + }, + "fog_color": 9938052, + "sky_color": 10465603, + "water_color": 8241044, + "water_fog_color": 10866612, + "ambient_sound": "tfg:ambient.venus_surface.loop", + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "tfg:ambient.venus_surface.mood", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:ash" + }, + "probability": 0.05 + } + }, + "features": [ + [ + "tfc:erosion" + ], + [], + [], + [], + [], + [], + "#tfg:venus_veins", + "#tfg:venus_underground_decoration", + [ + "tfc:raw_boulder_small_patch", + "tfc:cobble_boulder_small_patch" + ], + [ + + ], + "#tfg:venus_top_layer_modification" + ], + "has_precipitation": true, + "spawn_costs": { + "endermanoverhaul:desert_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:savanna_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:nether_wastes_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "minecraft:enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "species:cliff_hanger": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "ad_astra:sulfur_creeper": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "primitive_creatures:golem_2": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:blaze": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:magma_cube": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "arthropocolypse:millipede_head": { + "energy_budget": 0.05, + "charge": 0.9 + } + }, + "creature_spawn_probability": 0.2, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "arthropocolypse:mealworm_beetle", + "maxCount": 4, + "minCount": 2, + "weight": 30 + }, + { + "type": "arthropocolypse:stag_beetle", + "maxCount": 4, + "minCount": 2, + "weight": 40 + }, + { + "type": "arthropocolypse:platerodrilus", + "maxCount": 4, + "minCount": 2, + "weight": 60 + }, + { + "type": "arthropocolypse:ice_crawler", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "arthropocolypse:wharf_roach", + "maxCount": 4, + "minCount": 2, + "weight": 40 + } + ], + "misc": [], + "monster": [ + { + "type": "endermanoverhaul:desert_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "endermanoverhaul:savanna_enderman", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, + { + "type": "ad_astra:sulfur_creeper", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:cliff_hanger", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "arthropocolypse:millipede_head", + "maxCount": 1, + "minCount": 1, + "weight": 100 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.6 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/venus/fumaroles.json b/kubejs/data/tfg/worldgen/biome/venus/fumaroles.json new file mode 100644 index 000000000..16633d82a --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/venus/fumaroles.json @@ -0,0 +1,159 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0, + "effects": { + "additions_sound": { + "sound": "tfg:ambient.venus_surface.additions", + "tick_chance": 0.0111 + }, + "sky_color": 11644227, + "fog_color": 10788996, + "water_color": 8241044, + "water_fog_color": 10866612, + "ambient_sound": "tfg:ambient.venus_surface.loop", + "mood_sound": { + "block_search_extent": 8, + "offset": 2, + "sound": "tfg:ambient.venus_surface.mood", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:white_ash" + }, + "probability": 0.03 + } + }, + "features": [ + [ + "tfc:erosion" + ], + [], + [], + [], + [], + [], + "#tfg:venus_veins", + "#tfg:venus_underground_decoration", + [ + "tfg:venus/terrain/sulfur_blob_rare", + "tfc:raw_boulder", + "tfc:cobble_boulder", + "tfc:raw_boulder_small_patch", + "tfc:cobble_boulder_small_patch", + "tfg:venus/terrain/thermal_vent_rare" + ], + [ + "tfg:venus/surface/sulfur_patch", + "tfg:venus/surface/hydralux_rare" + ], + "#tfg:venus_top_layer_modification" + ], + "has_precipitation": true, + "spawn_costs": { + "endermanoverhaul:desert_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:savanna_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:nether_wastes_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "minecraft:enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "species:cliff_hanger": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "ad_astra:sulfur_creeper": { + "energy_budget": 0.2, + "charge": 0.4 + }, + "primitive_creatures:golem_2": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:blaze": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:magma_cube": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "arthropocolypse:millipede_head": { + "energy_budget": 0.05, + "charge": 0.9 + } + }, + "creature_spawn_probability": 0.01, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "species:trooper", + "maxCount": 3, + "minCount": 2, + "weight": 100 + }, + { + "type": "arthropocolypse:prairie_grasshopper", + "maxCount": 2, + "minCount": 1, + "weight": 50 + }, + { + "type": "arthropocolypse:field_cricket", + "maxCount": 2, + "minCount": 1, + "weight": 50 + } + ], + "misc": [], + "monster": [ + { + "type": "endermanoverhaul:desert_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "endermanoverhaul:savanna_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 50 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 10 + }, + { + "type": "ad_astra:sulfur_creeper", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:cliff_hanger", + "maxCount": 3, + "minCount": 1, + "weight": 100 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.6 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/venus/geysers.json b/kubejs/data/tfg/worldgen/biome/venus/geysers.json new file mode 100644 index 000000000..869d87241 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/venus/geysers.json @@ -0,0 +1,192 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0, + "effects": { + "additions_sound": { + "sound": "tfg:ambient.venus_surface.additions", + "tick_chance": 0.0111 + }, + "sky_color": 10465603, + "fog_color": 9938052, + "water_color": 8241044, + "water_fog_color": 10866612, + "ambient_sound": "tfg:ambient.venus_surface.loop", + "mood_sound": { + "block_search_extent": 8, + "offset": 2, + "sound": "tfg:ambient.venus_surface.mood", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:ash" + }, + "probability": 0.07 + } + }, + "features": [ + [ + "tfc:erosion" + ], + [], + [ + "tfg:venus/terrain/hot_spring_delta" + ], + [], + [], + [], + "#tfg:venus_veins", + "#tfg:venus_underground_decoration", + [ + "tfc:raw_boulder_small_patch", + "tfc:cobble_boulder_small_patch", + "tfg:venus/surface/geyser_source_patch", + "tfg:venus/terrain/thermal_vent_rare" + ], + [], + "#tfg:venus_top_layer_modification" + ], + "has_precipitation": true, + "spawn_costs": { + "endermanoverhaul:desert_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:savanna_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:nether_wastes_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "minecraft:enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "species:cliff_hanger": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "ad_astra:sulfur_creeper": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "primitive_creatures:golem_2": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:blaze": { + "energy_budget": 0.15, + "charge": 0.8 + }, + "minecraft:magma_cube": { + "energy_budget": 0.15, + "charge": 0.8 + }, + "arthropocolypse:millipede_head": { + "energy_budget": 0.05, + "charge": 0.9 + } + }, + "creature_spawn_probability": 0.2, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "arthropocolypse:mealworm_beetle", + "maxCount": 2, + "minCount": 1, + "weight": 50 + }, + { + "type": "arthropocolypse:stag_beetle", + "maxCount": 2, + "minCount": 1, + "weight": 50 + }, + { + "type": "arthropocolypse:ice_crawler", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "arthropocolypse:wharf_roach", + "maxCount": 4, + "minCount": 2, + "weight": 70 + } + ], + "misc": [], + "monster": [ + { + "type": "endermanoverhaul:desert_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "endermanoverhaul:savanna_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "endermanoverhaul:nether_wastes_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, + { + "type": "ad_astra:sulfur_creeper", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 2, + "minCount": 1, + "weight": 30 + }, + { + "type": "minecraft:blaze", + "maxCount": 2, + "minCount": 1, + "weight": 70 + }, + { + "type": "species:cliff_hanger", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "arthropocolypse:millipede_head", + "maxCount": 1, + "minCount": 1, + "weight": 70 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.6 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/venus/jagged_tablelands.json b/kubejs/data/tfg/worldgen/biome/venus/jagged_tablelands.json new file mode 100644 index 000000000..68cd4aab3 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/venus/jagged_tablelands.json @@ -0,0 +1,178 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0, + "effects": { + "additions_sound": { + "sound": "tfg:ambient.venus_surface.additions", + "tick_chance": 0.0111 + }, + "sky_color": 10465603, + "fog_color": 9938052, + "water_color": 8241044, + "water_fog_color": 10866612, + "ambient_sound": "tfg:ambient.venus_surface.loop", + "mood_sound": { + "block_search_extent": 8, + "offset": 2, + "sound": "tfg:ambient.venus_surface.mood", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:white_ash" + }, + "probability": 0.02 + } + }, + "features": [ + [ + "tfc:erosion" + ], + [], + [], + [], + [], + [], + "#tfg:venus_veins", + "#tfg:venus_underground_decoration", + [ + "tfc:raw_boulder", + "tfc:cobble_boulder", + "tfc:raw_boulder_small_patch", + "tfc:cobble_boulder_small_patch" + ], + [], + "#tfg:venus_top_layer_modification" + ], + "has_precipitation": true, + "spawn_costs": { + "endermanoverhaul:desert_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:savanna_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:nether_wastes_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "minecraft:enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "species:cliff_hanger": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "ad_astra:sulfur_creeper": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "primitive_creatures:golem_2": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:blaze": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:magma_cube": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "arthropocolypse:millipede_head": { + "energy_budget": 0.05, + "charge": 0.9 + } + }, + "creature_spawn_probability": 0.1, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 10 + }, + { + "type": "arthropocolypse:field_cricket", + "maxCount": 3, + "minCount": 2, + "weight": 50 + }, + { + "type": "arthropocolypse:mealworm_beetle", + "maxCount": 6, + "minCount": 3, + "weight": 100 + }, + { + "type": "arthropocolypse:mealworm", + "maxCount": 6, + "minCount": 3, + "weight": 100 + }, + { + "type": "arthropocolypse:platerodrilus", + "maxCount": 4, + "minCount": 2, + "weight": 50 + }, + { + "type": "arthropocolypse:wharf_roach", + "maxCount": 4, + "minCount": 2, + "weight": 30 + }, + { + "type": "arthropocolypse:ice_crawler", + "maxCount": 4, + "minCount": 2, + "weight": 30 + } + ], + "misc": [], + "monster": [ + { + "type": "endermanoverhaul:savanna_enderman", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 10 + }, + { + "type": "ad_astra:sulfur_creeper", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:cliff_hanger", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "arthropocolypse:millipede_head", + "maxCount": 2, + "minCount": 1, + "weight": 100 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.6 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/venus/salt_flats.json b/kubejs/data/tfg/worldgen/biome/venus/salt_flats.json new file mode 100644 index 000000000..4eb638dd6 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/venus/salt_flats.json @@ -0,0 +1,153 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0, + "effects": { + "additions_sound": { + "sound": "tfg:ambient.venus_surface.additions", + "tick_chance": 0.0111 + }, + "sky_color": 10465603, + "fog_color": 12237498, + "water_color": 8241044, + "water_fog_color": 10866612, + "ambient_sound": "tfg:ambient.venus_surface.loop", + "mood_sound": { + "block_search_extent": 8, + "offset": 2, + "sound": "tfg:ambient.venus_surface.mood", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:white_ash" + }, + "probability": 0.02 + } + }, + "features": [ + [ + "tfc:erosion" + ], + [], + [], + [], + [], + [], + "#tfg:venus_veins", + "#tfg:venus_underground_decoration", + [ + "tfg:venus/vein_manual/salt" + ], + [ + "tfg:venus/surface/salt_lick_patch" + ], + [] + ], + "has_precipitation": true, + "spawn_costs": { + "endermanoverhaul:desert_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:savanna_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:nether_wastes_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "minecraft:enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "species:cliff_hanger": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "ad_astra:sulfur_creeper": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "primitive_creatures:golem_2": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:blaze": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:magma_cube": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "arthropocolypse:millipede_head": { + "energy_budget": 0.05, + "charge": 0.9 + } + }, + "creature_spawn_probability": 0.07, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "arthropocolypse:prairie_grasshopper", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "arthropocolypse:field_cricket", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "arthropocolypse:wharf_roach", + "maxCount": 2, + "minCount": 1, + "weight": 70 + }, + { + "type": "arthropocolypse:mealworm_beetle", + "maxCount": 4, + "minCount": 2, + "weight": 30 + }, + { + "type": "arthropocolypse:stag_beetle", + "maxCount": 4, + "minCount": 2, + "weight": 40 + } + ], + "misc": [], + "monster": [ + { + "type": "endermanoverhaul:desert_enderman", + "maxCount": 2, + "minCount": 1, + "weight": 100 + }, + { + "type": "endermanoverhaul:savanna_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 20 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.6 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/venus/scorching_volcanoes.json b/kubejs/data/tfg/worldgen/biome/venus/scorching_volcanoes.json new file mode 100644 index 000000000..71655ba51 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/venus/scorching_volcanoes.json @@ -0,0 +1,193 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0, + "effects": { + "additions_sound": { + "sound": "tfg:ambient.venus_surface.additions", + "tick_chance": 0.0111 + }, + "sky_color": 5450003, + "fog_color": 5450003, + "water_color": 8241044, + "water_fog_color": 10866612, + "ambient_sound": "tfg:ambient.venus_surface.loop", + "mood_sound": { + "block_search_extent": 8, + "offset": 2, + "sound": "tfg:ambient.venus_surface.mood", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:ash" + }, + "probability": 0.1 + } + }, + "features": [ + [ + "tfc:erosion" + ], + [ + "tfg:venus/terrain/lava_spring", + "tfg:venus/terrain/lava_delta", + "tfg:venus/terrain/lava_lake", + "tfg:venus/terrain/lava_fissure", + "tfg:venus/terrain/lava_rivulet", + "tfg:venus/terrain/magma_rivulet" + ], + [ + "tfg:venus/terrain/basalt_pillar" + ], + [], + [ + "tfg:venus/terrain/basalt_columns_small", + "tfg:venus/terrain/basalt_columns_large" + ], + [], + "#tfg:venus_veins", + "#tfg:venus_underground_decoration", + [ + "tfc:raw_boulder", + "tfc:cobble_boulder", + "tfc:raw_boulder_small_patch", + "tfc:cobble_boulder_small_patch", + "tfg:venus/terrain/thermal_vent_rare", + "tfg:venus/surface/smoker_source_patch", + "tfg:venus/surface/lava_source_patch", + "tfg:venus/surface/twisted_vine", + "tfg:venus/surface/shadow_plant_patch", + "tfg:venus/surface/pile_volcanic_ash", + "tfg:venus/surface/pile_black_sand" + ], + [ + "tfg:venus/terrain/lava_fill" + ], + "#tfg:venus_top_layer_modification" + ], + "has_precipitation": true, + "spawn_costs": { + "endermanoverhaul:desert_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:savanna_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:nether_wastes_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "minecraft:enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "species:cliff_hanger": { + "energy_budget": 0.3, + "charge": 0.3 + }, + "ad_astra:sulfur_creeper": { + "energy_budget": 0.15, + "charge": 0.6 + }, + "primitive_creatures:golem_2": { + "energy_budget": 0.15, + "charge": 0.6 + }, + "minecraft:blaze": { + "energy_budget": 0.15, + "charge": 0.6 + }, + "minecraft:magma_cube": { + "energy_budget": 0.15, + "charge": 0.6 + }, + "arthropocolypse:millipede_head": { + "energy_budget": 0.05, + "charge": 0.9 + } + }, + "creature_spawn_probability": 0.2, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "arthropocolypse:ice_crawler", + "maxCount": 2, + "minCount": 1, + "weight": 50 + }, + { + "type": "arthropocolypse:stag_beetle_larva", + "maxCount": 4, + "minCount": 3, + "weight": 100 + }, + { + "type": "arthropocolypse:stag_beetle", + "maxCount": 3, + "minCount": 2, + "weight": 100 + } + ], + "misc": [], + "monster": [ + { + "type": "endermanoverhaul:nether_wastes_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 10 + }, + { + "type": "ad_astra:sulfur_creeper", + "maxCount": 2, + "minCount": 1, + "weight": 50 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "minecraft:blaze", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "arthropocolypse:millipede_head", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "primitive_creatures:golem_2", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:cliff_hanger", + "maxCount": 3, + "minCount": 1, + "weight": 100 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.6 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/venus/stromatolite_beach.json b/kubejs/data/tfg/worldgen/biome/venus/stromatolite_beach.json new file mode 100644 index 000000000..54e087d94 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/venus/stromatolite_beach.json @@ -0,0 +1,156 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0, + "effects": { + "additions_sound": { + "sound": "tfg:ambient.venus_surface.additions", + "tick_chance": 0.0111 + }, + "sky_color": 11644227, + "fog_color": 10788996, + "water_color": 8241044, + "water_fog_color": 10866612, + "ambient_sound": "tfg:ambient.venus_surface.loop", + "mood_sound": { + "block_search_extent": 8, + "offset": 2, + "sound": "tfg:ambient.venus_surface.mood", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:white_ash" + }, + "probability": 0.05 + } + }, + "features": [ + [ + "tfc:erosion" + ], + [], + [ + "tfg:venus/terrain/stromatolite_disk" + ], + [], + [], + [], + "#tfg:venus_veins", + "#tfg:venus_underground_decoration", + [ + "tfg:venus/surface/stromatolite_cluster_patch", + "tfg:venus/terrain/thermal_vent_rare" + ], + [ + "tfg:venus/surface/sulfur_patch" + ], + "#tfg:venus_top_layer_modification" + ], + "has_precipitation": true, + "spawn_costs": { + "endermanoverhaul:desert_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:savanna_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:nether_wastes_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "minecraft:enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "species:cliff_hanger": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "ad_astra:sulfur_creeper": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "primitive_creatures:golem_2": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:blaze": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:magma_cube": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "arthropocolypse:millipede_head": { + "energy_budget": 0.05, + "charge": 0.9 + } + }, + "creature_spawn_probability": 0.1, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "species:trooper", + "maxCount": 3, + "minCount": 2, + "weight": 100 + }, + { + "type": "arthropocolypse:prairie_grasshopper", + "maxCount": 3, + "minCount": 1, + "weight": 50 + }, + { + "type": "arthropocolypse:field_cricket", + "maxCount": 3, + "minCount": 1, + "weight": 50 + } + ], + "misc": [], + "monster": [ + { + "type": "endermanoverhaul:desert_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "endermanoverhaul:savanna_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 10 + }, + { + "type": "ad_astra:sulfur_creeper", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "species:cliff_hanger", + "maxCount": 3, + "minCount": 1, + "weight": 100 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.6 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/venus/sulfuric_ravine.json b/kubejs/data/tfg/worldgen/biome/venus/sulfuric_ravine.json new file mode 100644 index 000000000..c9caf6c65 --- /dev/null +++ b/kubejs/data/tfg/worldgen/biome/venus/sulfuric_ravine.json @@ -0,0 +1,164 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0, + "effects": { + "additions_sound": { + "sound": "tfg:ambient.venus_surface.additions", + "tick_chance": 0.0111 + }, + "sky_color": 11644227, + "fog_color": 11575877, + "water_color": 8241044, + "water_fog_color": 10866612, + "ambient_sound": "tfg:ambient.venus_surface.loop", + "mood_sound": { + "block_search_extent": 8, + "offset": 2, + "sound": "tfg:ambient.venus_surface.mood", + "tick_delay": 6000 + }, + "particle": { + "options": { + "type": "minecraft:ash" + }, + "probability": 0.05 + } + }, + "features": [ + [ + "tfc:erosion" + ], + [], + [], + [], + [], + [], + "#tfg:venus_veins", + "#tfg:venus_underground_decoration", + [ + "tfg:venus/terrain/sulfur_blob", + "tfg:venus/vein_manual/sulfur", + "tfc:raw_boulder_small_patch", + "tfc:cobble_boulder_small_patch", + "tfg:venus/terrain/thermal_vent" + ], + [ + "tfg:venus/surface/sulfur_patch", + "tfg:venus/surface/hydralux" + ], + "#tfg:venus_top_layer_modification" + ], + "has_precipitation": true, + "spawn_costs": { + "endermanoverhaul:desert_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:savanna_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "endermanoverhaul:nether_wastes_enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "minecraft:enderman": { + "energy_budget": 0.05, + "charge": 0.9 + }, + "species:cliff_hanger": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "ad_astra:sulfur_creeper": { + "energy_budget": 0.2, + "charge": 0.4 + }, + "primitive_creatures:golem_2": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:blaze": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "minecraft:magma_cube": { + "energy_budget": 0.15, + "charge": 0.7 + }, + "arthropocolypse:millipede_head": { + "energy_budget": 0.05, + "charge": 0.9 + } + }, + "creature_spawn_probability": 0.1, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "species:trooper", + "maxCount": 3, + "minCount": 2, + "weight": 100 + }, + { + "type": "arthropocolypse:platerodrilus", + "maxCount": 3, + "minCount": 1, + "weight": 20 + }, + { + "type": "arthropocolypse:prairie_grasshopper", + "maxCount": 3, + "minCount": 2, + "weight": 70 + } + ], + "misc": [], + "monster": [ + { + "type": "endermanoverhaul:desert_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "endermanoverhaul:savanna_enderman", + "maxCount": 1, + "minCount": 1, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, + { + "type": "ad_astra:sulfur_creeper", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "species:cliff_hanger", + "maxCount": 3, + "minCount": 1, + "weight": 100 + }, + { + "type": "arthropocolypse:millipede_head", + "maxCount": 1, + "minCount": 1, + "weight": 100 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.6 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/venus/venus_delta.json b/kubejs/data/tfg/worldgen/biome/venus/venus_delta.json deleted file mode 100644 index ea1800930..000000000 --- a/kubejs/data/tfg/worldgen/biome/venus/venus_delta.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "carvers": { - "air": [ - "tfc:cave", - "tfc:canyon" - ] - }, - "downfall": 0, - "effects": { - "sky_color": 10465603, - "fog_color": 9938052, - "water_color": 8241044, - "water_fog_color": 10866612, - "grass_color": 13758586, - "foliage_color": 11653213, - "mood_sound": { - "block_search_extent": 8, - "offset": 2, - "sound": "minecraft:ambient.cave", - "tick_delay": 6000 - }, - "particle": { - "options": { - "type": "minecraft:ash" - }, - "probability": 0.1 - } - }, - "features": [ - "#tfg:venus_delta_terrain_features", - "#tfg:venus_delta_surface_features" - ], - "has_precipitation": false, - "spawn_costs": {}, - "spawners": { - "ambient": [], - "axolotls": [], - "creature": [], - "misc": [], - "monster": [], - "underground_water_creature": [], - "water_ambient": [], - "water_creature": [] - }, - "temperature": 0.7 -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/biome/venus/venus_fractured_lands.json b/kubejs/data/tfg/worldgen/biome/venus/venus_fractured_lands.json deleted file mode 100644 index 965eb2a07..000000000 --- a/kubejs/data/tfg/worldgen/biome/venus/venus_fractured_lands.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "has_precipitation": true, - "temperature": 0.7, - "downfall": 0.5, - "effects": { - "sky_color": 10465603, - "fog_color": 9938052, - "water_color": 8241044, - "water_fog_color": 10866612, - "grass_color": 13758586, - "foliage_color": 11653213, - "dry_foliage_color": 9279852, - "mood_sound": { - "block_search_extent": 8, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "tick_delay": 6000 - } - }, - "depth": -0.5, - "scale": 0.0, - "temperature_modifier": "none", - "spawn_costs": {}, - "spawners": {}, - "starts": [], - "carvers": {}, - "features": [ - "#tfg:venus_fractured_lands_terrain_features" - ] - } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_bud_air.json b/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_bud_air.json index a40bfa57d..89788d80c 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_bud_air.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_bud_air.json @@ -4,7 +4,7 @@ "to_place": { "type": "minecraft:simple_state_provider", "state": { - "Name": "gtceu:rose_quartz_bud_indicator" + "Name": "greate:rose_quartz_bud_indicator" } } } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_bud_water.json b/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_bud_water.json index 78ee7755e..df316bbd8 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_bud_water.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_bud_water.json @@ -4,7 +4,7 @@ "to_place": { "type": "minecraft:simple_state_provider", "state": { - "Name": "gtceu:rose_quartz_bud_indicator", + "Name": "greate:rose_quartz_bud_indicator", "Properties": { "waterlogged": "true" } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_geode.json b/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_geode.json index ba4f8c8f2..07d03ac3d 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_geode.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/rose_quartz/rose_quartz_geode.json @@ -5,13 +5,13 @@ "filling_provider": { "type": "minecraft:simple_state_provider", "state": { - "Name": "gtceu:raw_rose_quartz_block" + "Name": "greate:raw_rose_quartz_block" } }, "inner_layer_provider": { "type": "minecraft:simple_state_provider", "state": { - "Name": "gtceu:quartzite_rose_quartz_ore" + "Name": "greate:quartzite_rose_quartz_ore" } }, "alternate_inner_layer_provider": { @@ -34,7 +34,7 @@ }, "inner_placements": [ { - "Name": "gtceu:quartzite_rose_quartz_ore" + "Name": "greate:quartzite_rose_quartz_ore" } ], "cannot_replace": "#minecraft:features_cannot_replace", diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_magnetite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_magnetite.json index 509014563..83e4c7a62 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_magnetite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_magnetite.json @@ -225,6 +225,37 @@ "weight": 5 } ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:marble_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:marble_chromite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 1 + }, + { + "block": "gtceu:marble_gold_ore", + "weight": 15 + }, + { + "block": "gtceu:marble_sapphire_ore", + "weight": 5 + } + ] } ], "indicator": { diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sapphire.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sapphire.json index 1e8917ce4..f1e37c9cc 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sapphire.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sapphire.json @@ -7,7 +7,7 @@ "rarity": 180, "density": 0.35, "min_y": -64, - "max_y": 26, + "max_y": 32, "random_name": "deep_sapphire", "blocks": [ { @@ -134,6 +134,37 @@ "weight": 15 } ] + }, + { + "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:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:diorite_green_sapphire_ore", + "weight": 15 + } + ] } ], "indicator": { diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_apatite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_apatite.json index 4696daff8..8e5628efd 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_apatite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_apatite.json @@ -3,10 +3,10 @@ "type": "tfc:cluster_vein", "config": { "size": 34, - "rarity": 220, + "rarity": 170, "density": 0.25, - "min_y": -32, - "max_y": 60, + "min_y": 20, + "max_y": 120, "random_name": "normal_apatite", "blocks": [ { @@ -218,8 +218,8 @@ } ], "indicator": { - "rarity": 15, - "depth": 20, + "rarity": 12, + "depth": 60, "underground_rarity": 40, "underground_count": 200, "blocks": [ diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bismuthinite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bismuthinite.json index 49d26d4ac..3b790d873 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bismuthinite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bismuthinite.json @@ -16,7 +16,7 @@ "with": [ { "block": "gtceu:granite_bismuth_ore", - "weight": 80 + "weight": 70 }, { "block": "gtceu:granite_sulfur_ore", @@ -39,7 +39,7 @@ "with": [ { "block": "gtceu:diorite_bismuth_ore", - "weight": 80 + "weight": 70 }, { "block": "gtceu:diorite_sulfur_ore", @@ -62,7 +62,7 @@ "with": [ { "block": "gtceu:gabbro_bismuth_ore", - "weight": 80 + "weight": 70 }, { "block": "gtceu:gabbro_sulfur_ore", @@ -85,7 +85,7 @@ "with": [ { "block": "gtceu:shale_bismuth_ore", - "weight": 80 + "weight": 70 }, { "block": "gtceu:shale_sulfur_ore", @@ -108,7 +108,7 @@ "with": [ { "block": "gtceu:claystone_bismuth_ore", - "weight": 80 + "weight": 70 }, { "block": "gtceu:claystone_sulfur_ore", @@ -131,7 +131,7 @@ "with": [ { "block": "gtceu:limestone_bismuth_ore", - "weight": 80 + "weight": 70 }, { "block": "gtceu:limestone_sulfur_ore", @@ -154,7 +154,7 @@ "with": [ { "block": "gtceu:conglomerate_bismuth_ore", - "weight": 80 + "weight": 70 }, { "block": "gtceu:conglomerate_sulfur_ore", @@ -177,7 +177,7 @@ "with": [ { "block": "gtceu:dolomite_bismuth_ore", - "weight": 80 + "weight": 70 }, { "block": "gtceu:dolomite_sulfur_ore", @@ -200,7 +200,7 @@ "with": [ { "block": "gtceu:chert_bismuth_ore", - "weight": 80 + "weight": 70 }, { "block": "gtceu:chert_sulfur_ore", @@ -223,7 +223,7 @@ "with": [ { "block": "gtceu:chalk_bismuth_ore", - "weight": 80 + "weight": 70 }, { "block": "gtceu:chalk_sulfur_ore", @@ -248,7 +248,7 @@ "blocks": [ { "block": "tfc:ore/small_bismuthinite", - "weight": 80 + "weight": 70 }, { "block": "gtceu:sulfur_indicator", diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_cassiterite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_cassiterite.json index 89a719d27..9739dd9e3 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_cassiterite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_cassiterite.json @@ -16,7 +16,7 @@ "with": [ { "block": "gtceu:granite_cassiterite_ore", - "weight": 40 + "weight": 35 }, { "block": "gtceu:raw_cassiterite_block", @@ -24,11 +24,15 @@ }, { "block": "gtceu:granite_tin_ore", - "weight": 60 + "weight": 55 }, { "block": "gtceu:raw_tin_block", "weight": 1 + }, + { + "block": "gtceu:granite_saltpeter_ore", + "weight": 10 } ] }, @@ -39,7 +43,7 @@ "with": [ { "block": "gtceu:diorite_cassiterite_ore", - "weight": 40 + "weight": 35 }, { "block": "gtceu:raw_cassiterite_block", @@ -47,11 +51,15 @@ }, { "block": "gtceu:diorite_tin_ore", - "weight": 60 + "weight": 55 }, { "block": "gtceu:raw_tin_block", "weight": 1 + }, + { + "block": "gtceu:diorite_saltpeter_ore", + "weight": 10 } ] }, @@ -62,7 +70,7 @@ "with": [ { "block": "gtceu:gabbro_cassiterite_ore", - "weight": 40 + "weight": 35 }, { "block": "gtceu:raw_cassiterite_block", @@ -70,11 +78,15 @@ }, { "block": "gtceu:gabbro_tin_ore", - "weight": 60 + "weight": 55 }, { "block": "gtceu:raw_tin_block", "weight": 1 + }, + { + "block": "gtceu:gabbro_saltpeter_ore", + "weight": 10 } ] } @@ -87,7 +99,11 @@ "blocks": [ { "block": "tfc:ore/small_cassiterite", - "weight": 100 + "weight": 90 + }, + { + "block": "gtceu:saltpeter_indicator", + "weight": 10 } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_coal.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_coal.json index 59a041a82..ca40e8b52 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_coal.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_coal.json @@ -123,11 +123,7 @@ "blocks": [ { "block": "gtceu:coal_indicator", - "weight": 95 - }, - { - "block": "gtceu:coal_bud_indicator", - "weight": 5 + "weight": 100 } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_graphite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_graphite.json index bd03ebf27..1b1f7a1a1 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_graphite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_graphite.json @@ -403,7 +403,7 @@ "weight": 45 }, { - "block": "gtceu:coal_indicator", + "block": "gtceu:coal_bud_indicator", "weight": 30 }, { diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_mica.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_mica.json index 224a8dc2c..43d612cd9 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_mica.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_mica.json @@ -218,8 +218,8 @@ } ], "indicator": { - "rarity": 15, - "depth": 40, + "rarity": 12, + "depth": 60, "underground_rarity": 40, "underground_count": 200, "blocks": [ diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_tarkianite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_tarkianite.json new file mode 100644 index 000000000..24b8ad813 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_tarkianite.json @@ -0,0 +1,505 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:pipe_vein", + "config": { + "height": 60, + "radius": 10, + "min_skew": 6, + "max_skew": 18, + "min_slant": 0, + "max_slant": 4, + "sign": 0, + "rarity": 140, + "density": 0.35, + "min_y": 20, + "max_y": 120, + "random_name": "normal_tarkianite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:gabbro_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:gabbro_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:granite_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:granite_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:diorite_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:diorite_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:schist_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:schist_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:schist_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:gneiss_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:gneiss_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:gneiss_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:quartzite_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:quartzite_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:quartzite_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:phyllite_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:phyllite_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:phyllite_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:slate_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:slate_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:slate_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:marble_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:marble_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:marble_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:rhyolite_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:rhyolite_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:rhyolite_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:andesite_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:andesite_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:andesite_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:shale_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:shale_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:claystone_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:claystone_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:limestone_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:limestone_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:conglomerate_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:conglomerate_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:conglomerate_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:dolomite_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:dolomite_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:dolomite_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:chert_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:chert_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_tarkianite_ore", + "weight": 35 + }, + { + "block": "gtceu:chalk_oilsands_ore", + "weight": 35 + }, + { + "block": "gtceu:chalk_borax_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_trona_ore", + "weight": 10 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:tarkianite_indicator", + "weight": 35 + }, + { + "block": "gtceu:oilsands_indicator", + "weight": 35 + }, + { + "block": "gtceu:borax_indicator", + "weight": 20 + }, + { + "block": "gtceu:trona_indicator", + "weight": 10 + } + ] + } + } +} \ No newline at end of file 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 ba1b76dd5..8a04a8d0a 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": 85 + "weight": 80 }, { "block": "gtceu:granite_sulfur_ore", @@ -28,7 +28,7 @@ }, { "block": "gtceu:granite_silver_ore", - "weight": 5 + "weight": 10 } ] }, @@ -39,7 +39,7 @@ "with": [ { "block": "gtceu:diorite_bismuth_ore", - "weight": 85 + "weight": 80 }, { "block": "gtceu:diorite_sulfur_ore", @@ -51,7 +51,7 @@ }, { "block": "gtceu:diorite_silver_ore", - "weight": 5 + "weight": 10 } ] }, @@ -62,7 +62,7 @@ "with": [ { "block": "gtceu:gabbro_bismuth_ore", - "weight": 85 + "weight": 80 }, { "block": "gtceu:gabbro_sulfur_ore", @@ -74,7 +74,7 @@ }, { "block": "gtceu:gabbro_silver_ore", - "weight": 5 + "weight": 10 } ] }, @@ -85,7 +85,7 @@ "with": [ { "block": "gtceu:shale_bismuth_ore", - "weight": 85 + "weight": 80 }, { "block": "gtceu:shale_sulfur_ore", @@ -97,7 +97,7 @@ }, { "block": "gtceu:shale_silver_ore", - "weight": 5 + "weight": 10 } ] }, @@ -108,7 +108,7 @@ "with": [ { "block": "gtceu:claystone_bismuth_ore", - "weight": 85 + "weight": 80 }, { "block": "gtceu:claystone_sulfur_ore", @@ -120,7 +120,7 @@ }, { "block": "gtceu:claystone_silver_ore", - "weight": 5 + "weight": 10 } ] }, @@ -131,7 +131,7 @@ "with": [ { "block": "gtceu:limestone_bismuth_ore", - "weight": 85 + "weight": 80 }, { "block": "gtceu:limestone_sulfur_ore", @@ -143,7 +143,7 @@ }, { "block": "gtceu:limestone_silver_ore", - "weight": 5 + "weight": 10 } ] }, @@ -154,7 +154,7 @@ "with": [ { "block": "gtceu:conglomerate_bismuth_ore", - "weight": 85 + "weight": 80 }, { "block": "gtceu:conglomerate_sulfur_ore", @@ -166,7 +166,7 @@ }, { "block": "gtceu:conglomerate_silver_ore", - "weight": 5 + "weight": 10 } ] }, @@ -177,7 +177,7 @@ "with": [ { "block": "gtceu:dolomite_bismuth_ore", - "weight": 85 + "weight": 80 }, { "block": "gtceu:dolomite_sulfur_ore", @@ -189,7 +189,7 @@ }, { "block": "gtceu:dolomite_silver_ore", - "weight": 5 + "weight": 10 } ] }, @@ -200,7 +200,7 @@ "with": [ { "block": "gtceu:chert_bismuth_ore", - "weight": 85 + "weight": 80 }, { "block": "gtceu:chert_sulfur_ore", @@ -212,7 +212,7 @@ }, { "block": "gtceu:chert_silver_ore", - "weight": 5 + "weight": 10 } ] }, @@ -223,7 +223,7 @@ "with": [ { "block": "gtceu:chalk_bismuth_ore", - "weight": 85 + "weight": 80 }, { "block": "gtceu:chalk_sulfur_ore", @@ -235,7 +235,7 @@ }, { "block": "gtceu:chalk_silver_ore", - "weight": 5 + "weight": 10 } ] } @@ -243,12 +243,12 @@ "indicator": { "rarity": 12, "depth": 60, - "underground_rarity": 1, - "underground_count": 1, + "underground_rarity": 40, + "underground_count": 200, "blocks": [ { "block": "tfc:ore/small_bismuthinite", - "weight": 85 + "weight": 80 }, { "block": "gtceu:sulfur_indicator", @@ -260,7 +260,7 @@ }, { "block": "tfc:ore/small_native_silver", - "weight": 5 + "weight": 10 } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_cassiterite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_cassiterite.json index 3ce8220f8..66226c172 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_cassiterite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_cassiterite.json @@ -16,11 +16,15 @@ "with": [ { "block": "gtceu:granite_cassiterite_ore", - "weight": 60 + "weight": 55 }, { "block": "gtceu:granite_tin_ore", - "weight": 40 + "weight": 35 + }, + { + "block": "gtceu:granite_saltpeter_ore", + "weight": 10 } ] }, @@ -31,11 +35,15 @@ "with": [ { "block": "gtceu:diorite_cassiterite_ore", - "weight": 60 + "weight": 55 }, { "block": "gtceu:diorite_tin_ore", - "weight": 40 + "weight": 35 + }, + { + "block": "gtceu:diorite_saltpeter_ore", + "weight": 10 } ] }, @@ -46,11 +54,15 @@ "with": [ { "block": "gtceu:gabbro_cassiterite_ore", - "weight": 60 + "weight": 55 }, { "block": "gtceu:gabbro_tin_ore", - "weight": 40 + "weight": 35 + }, + { + "block": "gtceu:gabbro_saltpeter_ore", + "weight": 10 } ] } @@ -58,12 +70,16 @@ "indicator": { "rarity": 12, "depth": 60, - "underground_rarity": 1, - "underground_count": 1, + "underground_rarity": 40, + "underground_count": 200, "blocks": [ { "block": "tfc:ore/small_cassiterite", - "weight": 100 + "weight": 90 + }, + { + "block": "gtceu:saltpeter_indicator", + "weight": 10 } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_copper.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_copper.json index 1e3d56b6b..e67409d5c 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_copper.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_copper.json @@ -106,8 +106,8 @@ "indicator": { "rarity": 8, "depth": 60, - "underground_rarity": 1, - "underground_count": 1, + "underground_rarity": 40, + "underground_count": 200, "blocks": [ { "block": "gtceu:chalcopyrite_indicator", diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_sphalerite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_sphalerite.json index 729a85601..789a8deed 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_sphalerite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_sphalerite.json @@ -204,8 +204,8 @@ "indicator": { "rarity": 12, "depth": 60, - "underground_rarity": 1, - "underground_count": 1, + "underground_rarity": 40, + "underground_count": 200, "blocks": [ { "block": "gtceu:sulfur_indicator", diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_tetrahedrite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_tetrahedrite.json index 220ceb0c8..3e5a693e0 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_tetrahedrite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_tetrahedrite.json @@ -127,8 +127,8 @@ "indicator": { "rarity": 12, "depth": 60, - "underground_rarity": 1, - "underground_count": 1, + "underground_rarity": 40, + "underground_count": 200, "blocks": [ { "block": "tfc:ore/small_tetrahedrite", diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/tree/crimson.json b/kubejs/data/tfg/worldgen/configured_feature/mars/tree/crimson.json index 40b85088f..7c0687012 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/tree/crimson.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/tree/crimson.json @@ -4,7 +4,8 @@ "features": [ "tfg:mars/tree/crimson_amber", "tfg:mars/tree/crimson_rusticus", - "tfg:mars/tree/crimson_sangnum" + "tfg:mars/tree/crimson_sangnum", + "tfg:mars/tree/crimson_dirt" ] } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/tree/crimson_dirt.json b/kubejs/data/tfg/worldgen/configured_feature/mars/tree/crimson_dirt.json new file mode 100644 index 000000000..2d006ee26 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/tree/crimson_dirt.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:huge_fungus", + "config": { + "decor_state": { + "Name": "beneath:wood/leaves/crimson" + }, + "hat_state": { + "Name": "minecraft:nether_wart_block" + }, + "planted": false, + "replaceable_blocks": { + "type": "minecraft:replaceable" + }, + "stem_state": { + "Name": "beneath:wood/log/crimson", + "Properties": { + "axis": "y", + "branch_direction": "down" + } + }, + "valid_base_block": { + "Name": "tfg:grass/mars_dirt" + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/tree/warped.json b/kubejs/data/tfg/worldgen/configured_feature/mars/tree/warped.json index ae09354ad..4efc472cf 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/tree/warped.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/tree/warped.json @@ -4,7 +4,8 @@ "features": [ "tfg:mars/tree/warped_amber", "tfg:mars/tree/warped_rusticus", - "tfg:mars/tree/warped_sangnum" + "tfg:mars/tree/warped_sangnum", + "tfg:mars/tree/warped_dirt" ] } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/tree/warped_dirt.json b/kubejs/data/tfg/worldgen/configured_feature/mars/tree/warped_dirt.json new file mode 100644 index 000000000..2b5789a94 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/tree/warped_dirt.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:huge_fungus", + "config": { + "decor_state": { + "Name": "beneath:wood/leaves/warped" + }, + "hat_state": { + "Name": "minecraft:warped_wart_block" + }, + "planted": false, + "replaceable_blocks": { + "type": "minecraft:replaceable" + }, + "stem_state": { + "Name": "beneath:wood/log/warped", + "Properties": { + "axis": "y", + "branch_direction": "down" + } + }, + "valid_base_block": { + "Name": "tfg:grass/mars_dirt" + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_lapis.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_lapis.json new file mode 100644 index 000000000..be3e3e3f7 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_lapis.json @@ -0,0 +1,176 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 30, + "rarity": 200, + "density": 0.25, + "min_y": 0, + "max_y": 70, + "random_name": "mars_lapis", + "blocks": [ + { + "replace": [ + "ad_astra:mars_stone" + ], + "with": [ + { + "block": "gtceu:mars_stone_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:mars_stone_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:mars_stone_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:shale_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:limestone_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:limestone_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:limestone_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:dolomite_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:dolomite_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:dolomite_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:chert_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:chalk_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_calcite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:lazurite_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:sodalite_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:lapis_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:calcite_indicator", + "weight": 15 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_surface_cassiterite.json b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_surface_cassiterite.json index b3724fcdb..f84c3b898 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_surface_cassiterite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/vein/mars_surface_cassiterite.json @@ -359,16 +359,12 @@ "indicator": { "rarity": 15, "depth": 40, - "underground_rarity": 1, - "underground_count": 1, + "underground_rarity": 40, + "underground_count": 200, "blocks": [ { "block": "tfc:ore/small_cassiterite", - "weight": 55 - }, - { - "block": "tfc:ore/small_cassiterite", - "weight": 35 + "weight": 90 }, { "block": "gtceu:saltpeter_indicator", diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/terrain/mossy_cobble.json b/kubejs/data/tfg/worldgen/configured_feature/nether/terrain/mossy_cobble.json new file mode 100644 index 000000000..6883d59a0 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/terrain/mossy_cobble.json @@ -0,0 +1,99 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0, + "size": 20, + "targets": [ + { + "state": { + "Name": "tfg:rock/mossy_cobble_deepslate" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "minecraft:deepslate" + } + }, + { + "state": { + "Name": "tfg:rock/mossy_cobble_blackstone" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "minecraft:blackstone" + } + }, + { + "state": { + "Name": "tfg:rock/mossy_cobble_dripstone" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "minecraft:dripstone_block" + } + }, + { + "state": { + "Name": "tfg:rock/mossy_cobble_crackrack" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "beneath:crackrack" + } + }, + { + "state": { + "Name": "tfc:rock/mossy_cobble/diorite" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/diorite" + } + }, + { + "state": { + "Name": "tfc:rock/mossy_cobble/gabbro" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/gabbro" + } + }, + { + "state": { + "Name": "tfc:rock/mossy_cobble/gneiss" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/gneiss" + } + }, + { + "state": { + "Name": "tfc:rock/mossy_cobble/granite" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/granite" + } + }, + { + "state": { + "Name": "tfc:rock/mossy_cobble/schist" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/schist" + } + }, + { + "state": { + "Name": "tfc:rock/mossy_cobble/basalt" + }, + "target": { + "predicate_type": "minecraft:block_match", + "block": "tfc:rock/raw/basalt" + } + } + ] + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_cassiterite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_cassiterite.json index d08470054..c70ee5809 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_cassiterite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_cassiterite.json @@ -29,6 +29,10 @@ { "block": "gtceu:raw_tin_block", "weight": 2 + }, + { + "block": "gtceu:granite_saltpeter_ore", + "weight": 10 } ] }, @@ -52,6 +56,10 @@ { "block": "gtceu:raw_tin_block", "weight": 2 + }, + { + "block": "gtceu:diorite_saltpeter_ore", + "weight": 10 } ] }, @@ -75,6 +83,10 @@ { "block": "gtceu:raw_tin_block", "weight": 2 + }, + { + "block": "gtceu:gabbro_saltpeter_ore", + "weight": 10 } ] }, @@ -98,6 +110,10 @@ { "block": "gtceu:raw_tin_block", "weight": 2 + }, + { + "block": "gtceu:gneiss_saltpeter_ore", + "weight": 10 } ] }, @@ -121,6 +137,10 @@ { "block": "gtceu:raw_tin_block", "weight": 2 + }, + { + "block": "gtceu:schist_saltpeter_ore", + "weight": 10 } ] }, @@ -145,6 +165,10 @@ { "block": "gtceu:raw_tin_block", "weight": 2 + }, + { + "block": "gtceu:pyroxenite_saltpeter_ore", + "weight": 10 } ] } @@ -157,7 +181,11 @@ "blocks": [ { "block": "tfc:ore/small_cassiterite", - "weight": 100 + "weight": 90 + }, + { + "block": "gtceu:saltpeter_indicator", + "weight": 10 } ] } diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/geyser_source_patch.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/geyser_source_patch.json index fec45853b..02ce3e1d0 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/geyser_source_patch.json +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/geyser_source_patch.json @@ -1,50 +1,55 @@ { - "type": "minecraft:random_patch", - "config": { - "feature": { - "feature": { - "type": "minecraft:simple_block", - "config": { - "to_place": { - "type": "minecraft:weighted_state_provider", - "entries": [ - { - "weight": 15, - "data": { - "Name": "tfg:geyser_source" - } - }, - { - "weight": 50, - "data": { - "Name": "tfg:geyser_source_small" - } - } - ] - } - } - }, - "placement": [ - { - "type": "minecraft:heightmap", - "heightmap": "WORLD_SURFACE" - }, - { - "type": "minecraft:block_predicate_filter", - "predicate": { - "type": "minecraft:matching_blocks", - "offset": [ - 0, - -1, - 0 - ], - "blocks": "tfg:rock/raw/geyserite" - } - } - ] - }, - "tries": 32, - "xz_spread": 16, - "y_spread": 3 - } + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 15, + "data": { + "Name": "tfg:geyser_source" + } + }, + { + "weight": 50, + "data": { + "Name": "tfg:geyser_source_small" + } + } + ] + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "offset": [ 0, -1, 0 ], + "blocks": "tfg:rock/raw/geyserite" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + ] + } + } + ] + }, + "tries": 32, + "xz_spread": 8, + "y_spread": 1 + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/hydralux_large.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/hydralux_large.json new file mode 100644 index 000000000..babc7cf32 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/hydralux_large.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "tfg:tall_decorative_plant", + "config": { + "block": "betterend:hydralux_large", + "plantHeight": 4, + "minHeight": 5, + "maxHeight": 9, + "middle": 1 + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "tfg:fluid/sulfur_fumes" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:venus_stone_replaceables" + } + ] + } + } + ] + }, + "tries": 4, + "xz_spread": 10, + "y_spread": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/hydralux_sapling.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/hydralux_sapling.json new file mode 100644 index 000000000..cdda2a5d4 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/hydralux_sapling.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "betterend:hydralux_sapling", + "Properties": { + "fluid": "sulfur_fumes" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "tfg:fluid/sulfur_fumes" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:venus_stone_replaceables" + } + ] + } + } + ] + }, + "tries": 18, + "xz_spread": 16, + "y_spread": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/hydralux_small.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/hydralux_small.json new file mode 100644 index 000000000..04da10296 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/hydralux_small.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "tfg:tall_decorative_plant", + "config": { + "block": "betterend:hydralux_small", + "plantHeight": 4, + "minHeight": 3, + "maxHeight": 6, + "middle": 1 + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "tfg:fluid/sulfur_fumes" + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:venus_stone_replaceables" + } + ] + } + } + ] + }, + "tries": 6, + "xz_spread": 10, + "y_spread": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/lava_source_patch.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/lava_source_patch.json new file mode 100644 index 000000000..3f98163bf --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/lava_source_patch.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": "tfg:lava_source" + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:has_sturdy_face", + "offset": [ 0, -1, 0 ], + "direction": "down" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + ] + } + } + ] + }, + "tries": 12, + "xz_spread": 4, + "y_spread": 1 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/pile_black_sand.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/pile_black_sand.json new file mode 100644 index 000000000..b9bc3ca6a --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/pile_black_sand.json @@ -0,0 +1,55 @@ +{ + "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/black_sand" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:has_sturdy_face", + "offset": [ 0, -1, 0 ], + "direction": "down" + } + ] + } + } + ] + }, + "tries": 8, + "xz_spread": 16, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/pile_volcanic_ash.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/pile_volcanic_ash.json new file mode 100644 index 000000000..e0e523bb8 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/pile_volcanic_ash.json @@ -0,0 +1,55 @@ +{ + "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/volcanic_ash" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + { + "type": "minecraft:has_sturdy_face", + "offset": [ 0, -1, 0 ], + "direction": "down" + } + ] + } + } + ] + }, + "tries": 8, + "xz_spread": 16, + "y_spread": 2 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/salt_lick_patch.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/salt_lick_patch.json new file mode 100644 index 000000000..243abf0bc --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/salt_lick_patch.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:random_patch", + "config": { + "tries": 32, + "xz_spread": 8, + "y_spread": 1, + "feature": "tfc:salt_lick" + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/shadow_plant_patch.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/shadow_plant_patch.json new file mode 100644 index 000000000..abaeb145b --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/shadow_plant_patch.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:shadow_plant" + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:venus_stone_replaceables" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + ] + } + } + ] + }, + "tries": 16, + "xz_spread": 5, + "y_spread": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/smoker_source_patch.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/smoker_source_patch.json new file mode 100644 index 000000000..7e400ff27 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/smoker_source_patch.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": "tfg:smoker_source" + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:has_sturdy_face", + "offset": [ 0, -1, 0 ], + "direction": "down" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + ] + } + } + ] + }, + "tries": 12, + "xz_spread": 6, + "y_spread": 1 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/stromatolite_cluster_patch.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/stromatolite_cluster_patch.json index 3069bfee2..b95c081dc 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/stromatolite_cluster_patch.json +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/stromatolite_cluster_patch.json @@ -1,50 +1,50 @@ { - "type": "minecraft:random_patch", - "config": { - "feature": { - "feature": { - "type": "minecraft:simple_block", - "config": { - "to_place": { - "type": "minecraft:weighted_state_provider", - "entries": [ - { - "weight": 30, - "data": { - "Name": "tfg:stromatolite_cluster_medium" - } - }, - { - "weight": 50, - "data": { - "Name": "tfg:stromatolite_cluster_small" - } - } - ] - } - } - }, - "placement": [ - { - "type": "minecraft:heightmap", - "heightmap": "WORLD_SURFACE" - }, - { - "type": "minecraft:block_predicate_filter", - "predicate": { - "type": "minecraft:has_sturdy_face", - "offset": [ - 0, - -1, - 0 - ], - "direction": "down" - } - } - ] - }, - "tries": 32, - "xz_spread": 16, - "y_spread": 3 - } + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 30, + "data": { + "Name": "tfg:stromatolite_cluster_medium" + } + }, + { + "weight": 50, + "data": { + "Name": "tfg:stromatolite_cluster_small" + } + } + ] + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:has_sturdy_face", + "offset": [ + 0, + -1, + 0 + ], + "direction": "down" + } + } + ] + }, + "tries": 32, + "xz_spread": 16, + "y_spread": 3 + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/stromatolite_tower.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/stromatolite_tower.json index ec96686a3..386b6d8e2 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/stromatolite_tower.json +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/stromatolite_tower.json @@ -1,75 +1,77 @@ { - "type": "minecraft:random_patch", - "config": { - "feature": { - "feature": { - "type": "minecraft:tree", - "config": { - "decorators": [], - "dirt_provider": { - "type": "minecraft:simple_state_provider", - "state": { - "Name": "tfg:rock/spike/stromatolite" - } - }, - "foliage_placer": { - "type": "minecraft:blob_foliage_placer", - "height": 0, - "offset": 0, - "radius": 0 - }, - "foliage_provider": { - "type": "minecraft:simple_state_provider", - "state": { - "Name": "tfg:rock/raw/stromatolite" - } - }, - "force_dirt": false, - "ignore_vines": true, - "minimum_size": { - "type": "minecraft:two_layers_feature_size", - "limit": 1, - "lower_size": 0, - "upper_size": 1 - }, - "trunk_placer": { - "type": "minecraft:straight_trunk_placer", - "base_height": 1, - "height_rand_a": 4, - "height_rand_b": 0 - }, - "trunk_provider": { - "type": "minecraft:simple_state_provider", - "state": { - "Name": "tfg:rock/raw/stromatolite", - "Properties": { - "axis": "y" - } - } - } - } - }, - "placement": [ - { - "type": "minecraft:heightmap", - "heightmap": "WORLD_SURFACE" - }, - { - "type": "minecraft:block_predicate_filter", - "predicate": { - "type": "minecraft:has_sturdy_face", - "offset": [ - 0, - -1, - 0 - ], - "direction": "down" - } - } - ] - }, - "tries": 32, - "xz_spread": 16, - "y_spread": 3 - } + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:tree", + "config": { + "decorators": [], + "dirt_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:rock/spike/stromatolite" + } + }, + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 0, + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:rock/raw/stromatolite" + } + }, + "force_dirt": false, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 1, + "height_rand_a": 4, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:rock/raw/stromatolite", + "Properties": { + "axis": "y" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "offset": [ + 0, + -1, + 0 + ], + "blocks": [ + "tfg:rock/raw/stromatolite" + ] + } + } + ] + }, + "tries": 32, + "xz_spread": 16, + "y_spread": 1 + } } diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/sulfur_crystals.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/sulfur_crystals.json new file mode 100644 index 000000000..601939180 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/sulfur_crystals.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "lithostitched:select", + "config": { + "features": [ + { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "betterend:sulphur_crystal" + } + } + } + }, + "placement": [] + }, + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + }, + { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "betterend:sulphur_crystal", + "Properties": { + "fluid": "sulfur_fumes" + } + } + } + } + }, + "placement": [] + }, + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "tfg:fluid/sulfur_fumes" + } + } + ] + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + } + ] + }, + "tries": 24, + "xz_spread": 3, + "y_spread": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/surface/twisted_vine.json b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/twisted_vine.json new file mode 100644 index 000000000..1234bee2f --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/surface/twisted_vine.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "tfg:tall_decorative_plant", + "config": { + "block": "betterend:twisted_vine", + "plantHeight": 3, + "minHeight": 2, + "maxHeight": 4, + "middle": 1 + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "offset": [ 0, -1, 0 ], + "tag": "ad_astra:venus_stone_replaceables" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + ] + } + } + ] + }, + "tries": 6, + "xz_spread": 4, + "y_spread": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/basalt_columns_large.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/basalt_columns_large.json new file mode 100644 index 000000000..e52016bcb --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/basalt_columns_large.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:basalt_columns", + "config": { + "height": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 10, + "min_inclusive": 4 + } + }, + "reach": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 3, + "min_inclusive": 1 + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/basalt_columns_small.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/basalt_columns_small.json new file mode 100644 index 000000000..108d52449 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/basalt_columns_small.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:basalt_columns", + "config": { + "height": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 4, + "min_inclusive": 1 + } + }, + "reach": 1 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/hot_spring_delta.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/hot_spring_delta.json index 02371764e..5e543a20e 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/hot_spring_delta.json +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/hot_spring_delta.json @@ -1,9 +1,9 @@ { - "type": "minecraft:delta_feature", - "config": { - "contents": { - "Name": "tfg:geyser_slurry" - }, + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "tfg:fluid/geyser_slurry" + }, "rim": { "Name": "tfg:rock/raw/geyserite" }, @@ -21,5 +21,5 @@ "min_inclusive": 4 } } - } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_columns.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_columns.json new file mode 100644 index 000000000..5715015fa --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_columns.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "minecraft:block_column", + "config": { + "direction": "up", + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air", + "tfg:fluid/sulfur_fumes", + "tfg:fluid/geyser_slurry", + "minecraft:lava" + ] + }, + "prioritize_tip": false, + "layers": [ + { + "height": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 4 + } + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "betterend:sulphuric_rock" + } + } + } + ] + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air", + "minecraft:lava", + "tfg:fluid/sulfur_fumes", + "tfg:fluid/geyser_slurry" + ] + }, + { + "type": "minecraft:matching_blocks", + "offset": [ 0, -1, 0 ], + "blocks": "betterend:sulphuric_rock" + } + ] + } + } + ] + }, + "tries": 32, + "xz_spread": 3, + "y_spread": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_disk.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_disk.json new file mode 100644 index 000000000..37f12ab84 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_disk.json @@ -0,0 +1,26 @@ +{ + "type": "minecraft:disk", + "config": { + "state_provider": { + "fallback": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "betterend:sulphuric_rock" + } + }, + "rules": [] + }, + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 4 + } + }, + "half_height": 2, + "target": { + "type": "minecraft:matching_block_tag", + "tag": "ad_astra:venus_stone_replaceables" + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_tube_worms.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_tube_worms.json new file mode 100644 index 000000000..d8b77e7ed --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_tube_worms.json @@ -0,0 +1,55 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "lithostitched:select", + "config": { + "features": [ + { + "feature": { + "feature": { + "type": "tfg:attached_decorative_plant", + "config": { + "block": "betterend:tube_worm", + "heightRange": 5 + } + }, + "placement": [] + }, + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + }, + { + "feature": { + "feature": { + "type": "tfg:attached_decorative_plant", + "config": { + "block": { + "Name": "betterend:tube_worm", + "Properties": { + "fluid": "sulfur_fumes" + } + }, + "heightRange": 5 + } + }, + "placement": [] + }, + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "tfg:fluid/sulfur_fumes" + } + } + ] + } + }, + "placement": [] + }, + "tries": 36, + "xz_spread": 4, + "y_spread": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_vents.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_vents.json new file mode 100644 index 000000000..8e736180b --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/ignimbrite_vents.json @@ -0,0 +1,74 @@ +{ + "type": "minecraft:random_patch", + "config": { + "feature": { + "feature": { + "type": "lithostitched:select", + "config": { + "features": [ + { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "betterend:hydrothermal_vent" + } + } + } + }, + "placement": [] + }, + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + } + }, + { + "feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "betterend:hydrothermal_vent", + "Properties": { + "fluid": "sulfur_fumes" + } + } + } + } + }, + "placement": [] + }, + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "tfg:fluid/sulfur_fumes" + } + } + ] + } + }, + "placement": [ + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "offset": [ 0, -1, 0 ], + "blocks": "betterend:sulphuric_rock" + } + } + ] + }, + "tries": 32, + "xz_spread": 3, + "y_spread": 0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_basalt_gravel.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_basalt_gravel.json deleted file mode 100644 index a3b3eee8d..000000000 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_basalt_gravel.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "type": "minecraft:disk", - "config": { - "half_height": 4, - "radius": { - "type": "minecraft:uniform", - "value": { - "min_inclusive": 4, - "max_inclusive": 8 - } - }, - "state_provider": { - "fallback": { - "type": "minecraft:simple_state_provider", - "state": { - "Name": "tfc:rock/gravel/basalt" - } - }, - "rules": [] - }, - "target": { - "type": "minecraft:matching_blocks", - "blocks": [ - "tfg:sand/fluorapatite/green", - "tfg:sandstone/raw/fluorapatite/green", - "tfg:sand/fluorapatite/white", - "tfg:sandstone/raw/fluorapatite/white", - "tfg:sand/fluorapatite/blue", - "tfg:sandstone/raw/fluorapatite/blue", - "tfc:deposit/native_silver/chert", - "tfc:deposit/native_gold/chert" - ] - } - } -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_basalt_stone.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_basalt_stone.json deleted file mode 100644 index 77e579c34..000000000 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_basalt_stone.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "minecraft:disk", - "config": { - "half_height": 3, - "radius": { - "type": "minecraft:uniform", - "value": { - "min_inclusive": 4, - "max_inclusive": 6 - } - }, - "state_provider": { - "fallback": { - "type": "minecraft:simple_state_provider", - "state": { - "Name": "tfc:rock/hardened/basalt" - } - }, - "rules": [] - }, - "target": { - "type": "minecraft:matching_blocks", - "blocks": [ - "tfc:rock/gravel/basalt", - - "tfg:sand/fluorapatite/green", - "tfg:sandstone/raw/fluorapatite/green", - "tfg:sand/fluorapatite/white", - "tfg:sandstone/raw/fluorapatite/white", - "tfg:sand/fluorapatite/blue", - "tfg:sandstone/raw/fluorapatite/blue", - "tfc:deposit/native_silver/chert", - "tfc:deposit/native_gold/chert" - ] - } - } -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_geyserite.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_geyserite.json deleted file mode 100644 index d94dfd3a0..000000000 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_geyserite.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "minecraft:disk", - "config": { - "half_height": 2, - "radius": { - "type": "minecraft:uniform", - "value": { - "min_inclusive": 3, - "max_inclusive": 4 - } - }, - "state_provider": { - "fallback": { - "type": "minecraft:simple_state_provider", - "state": { - "Name": "tfg:rock/raw/geyserite" - } - }, - "rules": [] - }, - "target": { - "type": "minecraft:matching_blocks", - "blocks": [ - "tfc:rock/gravel/basalt", - "tfc:rock/hardened/basalt", - - "tfg:sand/fluorapatite/green", - "tfg:sandstone/raw/fluorapatite/green", - "tfg:sand/fluorapatite/white", - "tfg:sandstone/raw/fluorapatite/white", - "tfg:sand/fluorapatite/blue", - "tfg:sandstone/raw/fluorapatite/blue", - "tfc:deposit/native_silver/chert", - "tfc:deposit/native_gold/chert" - ] - } - } -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_orange_sand.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_orange_sand.json deleted file mode 100644 index bccc8591a..000000000 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_orange_sand.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "type": "minecraft:disk", - "config": { - "half_height": 1, - "radius": { - "type": "minecraft:uniform", - "value": { - "min_inclusive": 2, - "max_inclusive": 3 - } - }, - "state_provider": { - "fallback": { - "type": "minecraft:simple_state_provider", - "state": { - "Name": "tfg:sand/fluorapatite/orange" - } - }, - "rules": [] - }, - "target": { - "type": "minecraft:matching_blocks", - "blocks": [ - "tfc:rock/gravel/basalt", - "tfc:rock/hardened/basalt", - "tfg:rock/raw/geyserite", - - "tfg:sand/fluorapatite/green", - "tfg:sandstone/raw/fluorapatite/green", - "tfg:sand/fluorapatite/white", - "tfg:sandstone/raw/fluorapatite/white", - "tfg:sand/fluorapatite/blue", - "tfg:sandstone/raw/fluorapatite/blue", - "tfc:deposit/native_silver/chert", - "tfc:deposit/native_gold/chert" - ] - } - } -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_yellow_sand.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_yellow_sand.json deleted file mode 100644 index a90ceb638..000000000 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lake_yellow_sand.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "minecraft:disk", - "config": { - "half_height": 0, - "radius": 1, - "state_provider": { - "fallback": { - "type": "minecraft:simple_state_provider", - "state": { - "Name": "tfg:sand/fluorapatite/yellow" - } - }, - "rules": [] - }, - "target": { - "type": "minecraft:matching_blocks", - "blocks": [ - "tfc:rock/gravel/basalt", - "tfc:rock/hardened/basalt", - "tfg:rock/raw/geyserite", - "tfg:sand/fluorapatite/orange", - - "tfg:sand/fluorapatite/green", - "tfg:sandstone/raw/fluorapatite/green", - "tfg:sand/fluorapatite/white", - "tfg:sandstone/raw/fluorapatite/white", - "tfg:sand/fluorapatite/blue", - "tfg:sandstone/raw/fluorapatite/blue", - "tfc:deposit/native_silver/chert", - "tfc:deposit/native_gold/chert" - ] - } - } -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lakes.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lakes.json index 95f453f44..d6aae93b0 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lakes.json +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lakes.json @@ -1,14 +1,14 @@ { - "type": "minecraft:simple_block", - "config": { - "to_place": { - "type": "minecraft:simple_state_provider", - "state": { - "Name": "tfg:geyser_slurry", - "Properties": { - "level": "0" - } - } - } - } + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:fluid/geyser_slurry", + "Properties": { + "level": "0" + } + } + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_delta.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_delta.json index 8ab7a0126..73502213d 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_delta.json +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_delta.json @@ -1,11 +1,11 @@ { - "type": "minecraft:delta_feature", - "config": { - "contents": { - "Name": "minecraft:lava" - }, + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:lava" + }, "rim": { - "Name": "tfc:rock/hardened/basalt" + "Name": "tfc:rock/magma/basalt" }, "rim_size": { "type": "minecraft:uniform", @@ -21,5 +21,5 @@ "min_inclusive": 4 } } - } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_fill.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_fill.json new file mode 100644 index 000000000..0f6e7355b --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_fill.json @@ -0,0 +1,11 @@ +{ + "type": "tfc:flood_fill_lake", + "config": { + "overfill": true, + "replace_fluids": [ + "tfg:sulfur_fumes", + "tfg:geyser_slurry" + ], + "state": "minecraft:lava" + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_fissure.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_fissure.json new file mode 100644 index 000000000..a79f36a28 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_fissure.json @@ -0,0 +1,9 @@ +{ + "type": "tfc:fissure", + "config": { + "wall_state": "beneath:crackrack", + "fluid_state": "minecraft:lava", + "count": 3, + "radius": 6 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_lake.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_lake.json new file mode 100644 index 000000000..d84806dfa --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_lake.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:lake", + "config": { + "barrier": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfc:rock/hardened/basalt" + } + }, + "fluid": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_rivulet.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_rivulet.json new file mode 100644 index 000000000..99a4f808b --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_rivulet.json @@ -0,0 +1,6 @@ +{ + "type": "tfc:rivulet", + "config": { + "state": "minecraft:lava" + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_spring.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_spring.json new file mode 100644 index 000000000..8968b9e43 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/lava_spring.json @@ -0,0 +1,88 @@ +{ + "type": "tfc:hot_spring", + "config": { + "wall_state": "beneath:crackrack", + "fluid_state": "minecraft:lava", + "radius": 16, + "decoration": { + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "tfc:rock/magma/rhyolite" + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "ad_astra:moon_deepslate" + ], + "with": [ + { + "block": "tfc:rock/magma/basalt" + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "tfc:rock/magma/andesite" + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "tfc:rock/magma/dacite" + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite", + "gtceu:red_granite" + ], + "with": [ + { + "block": "tfc:rock/magma/granite" + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "tfc:rock/magma/diorite" + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro", + "minecraft:deepslate" + ], + "with": [ + { + "block": "tfc:rock/magma/gabbro" + } + ] + } + ], + "radius": 8, + "count": 32, + "rarity": 1 + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/magma_rivulet.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/magma_rivulet.json new file mode 100644 index 000000000..d98126bb3 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/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/venus/terrain/stromatolite_disk.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/stromatolite_disk.json index f15ce8ff3..d3931ac23 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/stromatolite_disk.json +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/stromatolite_disk.json @@ -1,26 +1,26 @@ { - "type": "minecraft:disk", - "config": { - "state_provider": { - "fallback": { - "type": "minecraft:simple_state_provider", - "state": { - "Name": "tfg:rock/raw/stromatolite" - } - }, - "rules": [] - }, - "radius": { - "type": "minecraft:uniform", - "value": { - "min_inclusive": 3, - "max_inclusive": 6 - } - }, - "half_height": 1, - "target": { - "type": "minecraft:matching_block_tag", - "tag": "forge:sand" - } - } + "type": "minecraft:disk", + "config": { + "state_provider": { + "fallback": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "tfg:rock/raw/stromatolite" + } + }, + "rules": [] + }, + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 6 + } + }, + "half_height": 1, + "target": { + "type": "minecraft:matching_block_tag", + "tag": "forge:sand" + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/sulfur_blob.json b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/sulfur_blob.json new file mode 100644 index 000000000..e163d2da2 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/terrain/sulfur_blob.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 15, + "targets": [ + { + "state": { + "Name": "vintageimprovements:sulfur_block" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "ad_astra:venus_stone_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/vein_manual/salt.json b/kubejs/data/tfg/worldgen/configured_feature/venus/vein_manual/salt.json new file mode 100644 index 000000000..ca56083f5 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/vein_manual/salt.json @@ -0,0 +1,208 @@ +{ + "type": "tfc:disc_vein", + "config": { + "height": 6, + "size": 20, + "rarity": 30, + "density": 0.2, + "min_y": 40, + "max_y": 65, + "random_name": "venus_manual_salt", + "blocks": [ + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_rock_salt_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_salt_block", + "weight": 1 + }, + { + "block": "gtceu:venus_stone_salt_ore", + "weight": 80 + }, + { + "block": "gtceu:venus_stone_lepidolite_ore", + "weight": 5 + }, + { + "block": "gtceu:venus_stone_spodumene_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_rock_salt_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_salt_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_salt_ore", + "weight": 80 + }, + { + "block": "gtceu:dripstone_lepidolite_ore", + "weight": 5 + }, + { + "block": "gtceu:dripstone_spodumene_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_rock_salt_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_salt_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_salt_ore", + "weight": 80 + }, + { + "block": "gtceu:rhyolite_lepidolite_ore", + "weight": 5 + }, + { + "block": "gtceu:rhyolite_spodumene_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_rock_salt_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_salt_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_salt_ore", + "weight": 80 + }, + { + "block": "gtceu:basalt_lepidolite_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_spodumene_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_rock_salt_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_salt_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_salt_ore", + "weight": 80 + }, + { + "block": "gtceu:andesite_lepidolite_ore", + "weight": 5 + }, + { + "block": "gtceu:andesite_spodumene_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_rock_salt_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_salt_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_salt_ore", + "weight": 80 + }, + { + "block": "gtceu:dacite_lepidolite_ore", + "weight": 5 + }, + { + "block": "gtceu:dacite_spodumene_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 10, + "depth": 30, + "underground_rarity": 40, + "underground_count": 180, + "blocks": [ + { + "block": "gtceu:rock_salt_indicator", + "weight": 5 + }, + { + "block": "gtceu:rock_salt_bud_indicator", + "weight": 5 + }, + { + "block": "gtceu:salt_indicator", + "weight": 40 + }, + { + "block": "gtceu:salt_bud_indicator", + "weight": 40 + }, + { + "block": "gtceu:lepidolite_indicator", + "weight": 5 + }, + { + "block": "gtceu:spodumene_indicator", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/venus/vein_manual/sulfur.json b/kubejs/data/tfg/worldgen/configured_feature/venus/vein_manual/sulfur.json new file mode 100644 index 000000000..e9054a1dd --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/venus/vein_manual/sulfur.json @@ -0,0 +1,172 @@ +{ + "type": "tfc:cluster_vein", + "config": { + "size": 20, + "rarity": 30, + "density": 0.2, + "min_y": 40, + "max_y": 65, + "random_name": "venus_manual_sulfur", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_sulfur_ore", + "weight": 80 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 2 + }, + { + "block": "gtceu:rhyolite_pyrite_ore", + "weight": 15 + }, + { + "block": "gtceu:rhyolite_sphalerite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/basalt", + "minecraft:basalt" + ], + "with": [ + { + "block": "gtceu:basalt_sulfur_ore", + "weight": 80 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 2 + }, + { + "block": "gtceu:basalt_pyrite_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_sphalerite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_sulfur_ore", + "weight": 80 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 2 + }, + { + "block": "gtceu:dripstone_pyrite_ore", + "weight": 15 + }, + { + "block": "gtceu:dripstone_sphalerite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "ad_astra:venus_stone" + ], + "with": [ + { + "block": "gtceu:venus_stone_sulfur_ore", + "weight": 80 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 2 + }, + { + "block": "gtceu:venus_stone_pyrite_ore", + "weight": 15 + }, + { + "block": "gtceu:venus_stone_sphalerite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_sulfur_ore", + "weight": 80 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 2 + }, + { + "block": "gtceu:andesite_pyrite_ore", + "weight": 15 + }, + { + "block": "gtceu:andesite_sphalerite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_sulfur_ore", + "weight": 80 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 2 + }, + { + "block": "gtceu:dacite_pyrite_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_sphalerite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 20, + "depth": 30, + "underground_rarity": 40, + "underground_count": 180, + "blocks": [ + { + "block": "gtceu:sulfur_indicator", + "weight": 80 + }, + { + "block": "gtceu:pyrite_indicator", + "weight": 15 + }, + { + "block": "tfc:ore/small_sphalerite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/base_3d_noise.json b/kubejs/data/tfg/worldgen/density_function/venus/base_3d_noise.json new file mode 100644 index 000000000..ed5a2d9c6 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8.0, + "xz_factor": 80.0, + "xz_scale": 0.25, + "y_factor": 160.0, + "y_scale": 0.125 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/caves/entrances.json b/kubejs/data/tfg/worldgen/density_function/venus/caves/entrances.json new file mode 100644 index 000000000..60b3bc30f --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/caves/entrances.json @@ -0,0 +1,83 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.37, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_entrance", + "xz_scale": 0.75, + "y_scale": 0.5 + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.3, + "from_y": -10, + "to_value": 0.0, + "to_y": 30 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": "tfg:venus/caves/spaghetti_roughness_function", + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "noise": "minecraft:spaghetti_3d_1", + "rarity_value_mapper": "type_1" + }, + "argument2": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "noise": "minecraft:spaghetti_3d_2", + "rarity_value_mapper": "type_1" + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0765, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.011499999999999996, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "max": 1.0, + "min": -1.0 + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/caves/noodle.json b/kubejs/data/tfg/worldgen/density_function/venus/caves/noodle.json new file mode 100644 index 000000000..b5566b105 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/caves/noodle.json @@ -0,0 +1,94 @@ +{ + "type": "minecraft:range_choice", + "input": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "when_out_of_range": -1.0 + } + }, + "max_exclusive": 0.0, + "min_inclusive": -1000000.0, + "when_in_range": 64.0, + "when_out_of_range": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:add", + "argument1": -0.07500000000000001, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.025, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + }, + "when_out_of_range": 0.0 + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 1.5, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_a", + "xz_scale": 2.6666666666666665, + "y_scale": 2.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_b", + "xz_scale": 2.6666666666666665, + "y_scale": 2.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/caves/pillars.json b/kubejs/data/tfg/worldgen/density_function/venus/caves/pillars.json new file mode 100644 index 000000000..ef84930ec --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/caves/pillars.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 2.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar", + "xz_scale": 25.0, + "y_scale": 0.3 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_rareness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": 0.55, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.55, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/caves/spaghetti_2d.json b/kubejs/data/tfg/worldgen/density_function/venus/caves/spaghetti_2d.json new file mode 100644 index 000000000..69b0e83f1 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/caves/spaghetti_2d.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:clamp", + "input": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_modulator", + "xz_scale": 2.0, + "y_scale": 1.0 + }, + "noise": "minecraft:spaghetti_2d", + "rarity_value_mapper": "type_2" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.083, + "argument2": "tfg:venus/caves/spaghetti_2d_thickness_modulator" + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": 8.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_elevation", + "xz_scale": 1.0, + "y_scale": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 8.0, + "from_y": -64, + "to_value": -40.0, + "to_y": 320 + } + } + }, + "argument2": "tfg:venus/caves/spaghetti_2d_thickness_modulator" + } + } + }, + "max": 1.0, + "min": -1.0 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/caves/spaghetti_2d_thickness_modulator.json b/kubejs/data/tfg/worldgen/density_function/venus/caves/spaghetti_2d_thickness_modulator.json new file mode 100644 index 000000000..be1366551 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/caves/spaghetti_2d_thickness_modulator.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:add", + "argument1": -0.95, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.35000000000000003, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_thickness", + "xz_scale": 2.0, + "y_scale": 1.0 + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/caves/spaghetti_roughness_function.json b/kubejs/data/tfg/worldgen/density_function/venus/caves/spaghetti_roughness_function.json new file mode 100644 index 000000000..549344e25 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/caves/spaghetti_roughness_function.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.05, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.05, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness_modulator", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.4, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/continents.json b/kubejs/data/tfg/worldgen/density_function/venus/continents.json new file mode 100644 index 000000000..d8b13e457 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/continents.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:continentalness", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.5, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/depth.json b/kubejs/data/tfg/worldgen/density_function/venus/depth.json new file mode 100644 index 000000000..aef192846 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/depth.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": "tfg:venus/offset" +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/erosion.json b/kubejs/data/tfg/worldgen/density_function/venus/erosion.json new file mode 100644 index 000000000..fff06598e --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/erosion.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:erosion", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/factor.json b/kubejs/data/tfg/worldgen/density_function/venus/factor.json new file mode 100644 index 000000000..8bc91e9c7 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/factor.json @@ -0,0 +1,185 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 10.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -10.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "tfg:venus/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.51, + "value": 10 + }, + { + "derivative": 0.0, + "location": -0.44, + "value": 10 + }, + { + "derivative": 0.0, + "location": -0.05, + "value": 10 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.5, + "value": 6.5 + }, + { + "derivative": 0.0, + "location": -0.35, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": -0.25, + "value": 6.2 + }, + { + "derivative": 0.0, + "location": -0.1, + "value": 6.4 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": 6.8 + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 7 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": 3.3 + }, + { + "derivative": 0.0, + "location": -0.5, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": -0.35, + "value": 3.1 + }, + { + "derivative": 0.0, + "location": -0.25, + "value": 2.6 + }, + { + "derivative": 0.0, + "location": -0.1, + "value": 3.4 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": 4.08 + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 4.08 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": 4.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": 2.1 + }, + { + "derivative": 0.0, + "location": -0.5, + "value": 1.9 + }, + { + "derivative": 0.0, + "location": -0.35, + "value": 2.2 + }, + { + "derivative": 0.0, + "location": -0.25, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": -0.1, + "value": 2.5 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": 2.2 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.69 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 2.4 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/jaggedness.json b/kubejs/data/tfg/worldgen/density_function/venus/jaggedness.json new file mode 100644 index 000000000..041fb80d4 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/jaggedness.json @@ -0,0 +1,303 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "tfg:venus/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:venus/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:venus/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:venus/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.65, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": { + "coordinate": "tfg:venus/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:venus/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:venus/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:venus/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/offset.json b/kubejs/data/tfg/worldgen/density_function/venus/offset.json new file mode 100644 index 000000000..31910ca48 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/offset.json @@ -0,0 +1,1865 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_offset" + }, + "argument2": { + "type": "minecraft:add", + "argument1": 1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.5037500262260437, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "tfg:venus/continents", + "points": [ + { + "derivative": 0.0, + "location": -1.02, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.51, + "value": -0.09 + }, + { + "derivative": 0.0, + "location": -0.42, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.08 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.06 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": -0.045 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": -0.04 + }, + { + "derivative": 0.0, + "location": 0.6054547, + "value": -0.035 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": -0.03 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0, + "location": -0.7, + "value": 0.0 + }, + { + "derivative": 0, + "location": -0.6, + "value": -0.01 + }, + { + "derivative": 0, + "location": -0.5, + "value": 0.02 + }, + { + "derivative": 0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0, + "location": -0.3, + "value": 0.04 + }, + { + "derivative": 0, + "location": -0.2, + "value": 0.03 + }, + { + "derivative": 0, + "location": -0.1, + "value": 0.06 + }, + { + "derivative": 0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0, + "location": 0.1, + "value": 0.08 + }, + { + "derivative": 0, + "location": 0.2, + "value": 0.07 + }, + { + "derivative": 0, + "location": 0.3, + "value": 0.1 + }, + { + "derivative": 0, + "location": 0.4, + "value": 0.09 + }, + { + "derivative": 0, + "location": 0.5, + "value": 0.12 + }, + { + "derivative": 0, + "location": 0.6, + "value": 0.11 + }, + { + "derivative": 0, + "location": 0.7, + "value": 0.14 + }, + { + "derivative": 0, + "location": 0.8, + "value": 0.13 + }, + { + "derivative": 0, + "location": 0.9, + "value": 0.16 + }, + { + "derivative": 0, + "location": 1.0, + "value": 0.15 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0, + "location": -0.7, + "value": 0.0 + }, + { + "derivative": 0, + "location": -0.6, + "value": -0.01 + }, + { + "derivative": 0, + "location": -0.5, + "value": 0.02 + }, + { + "derivative": 0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0, + "location": -0.3, + "value": 0.04 + }, + { + "derivative": 0, + "location": -0.2, + "value": 0.03 + }, + { + "derivative": 0, + "location": -0.1, + "value": 0.06 + }, + { + "derivative": 0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0, + "location": 0.1, + "value": 0.08 + }, + { + "derivative": 0, + "location": 0.2, + "value": 0.07 + }, + { + "derivative": 0, + "location": 0.3, + "value": 0.1 + }, + { + "derivative": 0, + "location": 0.4, + "value": 0.09 + }, + { + "derivative": 0, + "location": 0.5, + "value": 0.12 + }, + { + "derivative": 0, + "location": 0.6, + "value": 0.11 + }, + { + "derivative": 0, + "location": 0.7, + "value": 0.14 + }, + { + "derivative": 0, + "location": 0.8, + "value": 0.13 + }, + { + "derivative": 0, + "location": 0.9, + "value": 0.16 + }, + { + "derivative": 0, + "location": 1.0, + "value": 0.15 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.02 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.02 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0, + "location": -0.7, + "value": 0.0 + }, + { + "derivative": 0, + "location": -0.6, + "value": -0.01 + }, + { + "derivative": 0, + "location": -0.5, + "value": 0.02 + }, + { + "derivative": 0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0, + "location": -0.3, + "value": 0.04 + }, + { + "derivative": 0, + "location": -0.2, + "value": 0.03 + }, + { + "derivative": 0, + "location": -0.1, + "value": 0.06 + }, + { + "derivative": 0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0, + "location": 0.1, + "value": 0.08 + }, + { + "derivative": 0, + "location": 0.2, + "value": 0.07 + }, + { + "derivative": 0, + "location": 0.3, + "value": 0.1 + }, + { + "derivative": 0, + "location": 0.4, + "value": 0.09 + }, + { + "derivative": 0, + "location": 0.5, + "value": 0.12 + }, + { + "derivative": 0, + "location": 0.6, + "value": 0.11 + }, + { + "derivative": 0, + "location": 0.7, + "value": 0.14 + }, + { + "derivative": 0, + "location": 0.8, + "value": 0.13 + }, + { + "derivative": 0, + "location": 0.9, + "value": 0.16 + }, + { + "derivative": 0, + "location": 1.0, + "value": 0.15 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0, + "location": -0.7, + "value": 0.0 + }, + { + "derivative": 0, + "location": -0.6, + "value": -0.01 + }, + { + "derivative": 0, + "location": -0.5, + "value": 0.02 + }, + { + "derivative": 0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0, + "location": -0.3, + "value": 0.04 + }, + { + "derivative": 0, + "location": -0.2, + "value": 0.03 + }, + { + "derivative": 0, + "location": -0.1, + "value": 0.06 + }, + { + "derivative": 0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0, + "location": 0.1, + "value": 0.08 + }, + { + "derivative": 0, + "location": 0.2, + "value": 0.07 + }, + { + "derivative": 0, + "location": 0.3, + "value": 0.1 + }, + { + "derivative": 0, + "location": 0.4, + "value": 0.09 + }, + { + "derivative": 0, + "location": 0.5, + "value": 0.12 + }, + { + "derivative": 0, + "location": 0.6, + "value": 0.11 + }, + { + "derivative": 0, + "location": 0.7, + "value": 0.14 + }, + { + "derivative": 0, + "location": 0.8, + "value": 0.13 + }, + { + "derivative": 0, + "location": 0.9, + "value": 0.16 + }, + { + "derivative": 0, + "location": 1.0, + "value": 0.15 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.02 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.02 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.20235021 + }, + { + "derivative": 0.5138249, + "location": 0.0, + "value": 0.7161751 + }, + { + "derivative": 0.5138249, + "location": 1.0, + "value": 1.23 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.43317974, + "location": 0.0, + "value": 0.44682026 + }, + { + "derivative": 0.43317974, + "location": 1.0, + "value": 0.88 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.3917051, + "location": 0.0, + "value": 0.30829495 + }, + { + "derivative": 0.3917051, + "location": 1.0, + "value": 0.70000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.07, + "location": -0.4, + "value": 0.0069999998 + }, + { + "derivative": 0.07, + "location": 0.0, + "value": 0.021 + }, + { + "derivative": 0.658, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.30, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.20235021 + }, + { + "derivative": 0.5138249, + "location": 0.0, + "value": 0.7161751 + }, + { + "derivative": 0.5138249, + "location": 1.0, + "value": 1.23 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.43317974, + "location": 0.0, + "value": 0.44682026 + }, + { + "derivative": 0.43317974, + "location": 1.0, + "value": 0.88 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.3917051, + "location": 0.0, + "value": 0.30829495 + }, + { + "derivative": 0.3917051, + "location": 1.0, + "value": 0.70000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.07, + "location": -0.4, + "value": 0.0069999998 + }, + { + "derivative": 0.07, + "location": 0.0, + "value": 0.021 + }, + { + "derivative": 0.658, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.8 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 1.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.75 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 1.15 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.8 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 1.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.6 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.8 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.3 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.4 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.6 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.8 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.15 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.15 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.7 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.7 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.15 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.15 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.7 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.7 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:venus/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.8 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 1.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.75 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 1.15 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.8 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 1.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.6 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.8 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.3 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.4 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.6 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.8 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.2 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.75 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.75 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "tfg:venus/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.2 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.75 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.75 + } + ] + } + } + ] + } + } + ] + } + } + }, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/ridges.json b/kubejs/data/tfg/worldgen/density_function/venus/ridges.json new file mode 100644 index 000000000..ac101a792 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/ridges.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:ridge", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.5, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/ridges_folded.json b/kubejs/data/tfg/worldgen/density_function/venus/ridges_folded.json new file mode 100644 index 000000000..bf2c5d22d --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/ridges_folded.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:mul", + "argument1": -3.0, + "argument2": { + "type": "minecraft:add", + "argument1": -0.3333333333333333, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": -0.6666666666666666, + "argument2": { + "type": "minecraft:abs", + "argument": "tfg:venus/ridges" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/density_function/venus/sloped_cheese.json b/kubejs/data/tfg/worldgen/density_function/venus/sloped_cheese.json new file mode 100644 index 000000000..36d451264 --- /dev/null +++ b/kubejs/data/tfg/worldgen/density_function/venus/sloped_cheese.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": "tfg:venus/depth", + "argument2": { + "type": "minecraft:mul", + "argument1": "tfg:venus/jaggedness", + "argument2": { + "type": "minecraft:half_negative", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:jagged", + "xz_scale": 1500.0, + "y_scale": 0.0 + } + } + } + }, + "argument2": "tfg:venus/factor" + } + } + }, + "argument2": "tfg:venus/base_3d_noise" +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/noise/venus_arachnoids.json b/kubejs/data/tfg/worldgen/noise/venus_arachnoids.json new file mode 100644 index 000000000..2a25c3921 --- /dev/null +++ b/kubejs/data/tfg/worldgen/noise/venus_arachnoids.json @@ -0,0 +1,10 @@ +{ + "amplitudes": [ + 1, + 1, + 0, + 1, + 1 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/noise/venus_lava.json b/kubejs/data/tfg/worldgen/noise/venus_lava.json new file mode 100644 index 000000000..27d67956e --- /dev/null +++ b/kubejs/data/tfg/worldgen/noise/venus_lava.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1, + 1, + 1, + 1 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/noise/venus_salt.json b/kubejs/data/tfg/worldgen/noise/venus_salt.json new file mode 100644 index 000000000..70c45282d --- /dev/null +++ b/kubejs/data/tfg/worldgen/noise/venus_salt.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1, + 1, + 1, + 2, + 3, + 3 + ], + "firstOctave": -5 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/noise_settings/glacio_noise.json b/kubejs/data/tfg/worldgen/noise_settings/glacio_noise.json index 8a205c65c..a9728d30c 100644 --- a/kubejs/data/tfg/worldgen/noise_settings/glacio_noise.json +++ b/kubejs/data/tfg/worldgen/noise_settings/glacio_noise.json @@ -42,7 +42,7 @@ "continents": "tfg:glacio/continents", "ridges": "tfg:glacio/ridges", "erosion": "tfg:glacio/erosion", - "depth": 0, + "depth": "tfg:glacio/depth", "initial_density_without_jaggedness": { "type": "minecraft:mul", "argument1": 4, diff --git a/kubejs/data/tfg/worldgen/noise_settings/venus_noise.json b/kubejs/data/tfg/worldgen/noise_settings/venus_noise.json index 4b663344f..50fead7fc 100644 --- a/kubejs/data/tfg/worldgen/noise_settings/venus_noise.json +++ b/kubejs/data/tfg/worldgen/noise_settings/venus_noise.json @@ -1,14 +1,14 @@ { - "sea_level": 51, + "sea_level": 58, "disable_mob_generation": false, "aquifers_enabled": true, "ore_veins_enabled": false, "legacy_random_source": false, "default_block": { - "Name": "tfc:rock/raw/basalt" + "Name": "ad_astra:venus_stone" }, "default_fluid": { - "Name": "tfg:sulfur_fumes" + "Name": "tfg:fluid/sulfur_fumes" }, "noise": { "min_y": -64, @@ -23,642 +23,4866 @@ "amplified": false }, "noise_router": { - "barrier": { - "type": "minecraft:noise", - "noise": "minecraft:aquifer_barrier", - "xz_scale": 1.0, - "y_scale": 0.5 - }, - "continents": "minecraft:overworld/continents", - "depth": "minecraft:overworld/depth", - "erosion": "minecraft:overworld/erosion", - "final_density": { - "type": "minecraft:min", - "argument1": { - "type": "minecraft:squeeze", - "argument": { - "type": "minecraft:mul", - "argument1": 0.64, - "argument2": { - "type": "minecraft:interpolated", - "argument": { - "type": "minecraft:blend_density", + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1.0, + "y_scale": 0.5 + }, + "continents": "tfg:venus/continents", + "depth": "tfg:venus/depth", + "erosion": "tfg:venus/erosion", + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", "argument": { - "type": "minecraft:add", - "argument1": 0.1171875, - "argument2": { "type": "minecraft:mul", - "argument1": { - "type": "minecraft:y_clamped_gradient", - "from_value": 0.0, - "from_y": -64, - "to_value": 1.0, - "to_y": -40 - }, + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": "tfg:venus/sloped_cheese", + "max_exclusive": 1.5625, + "min_inclusive": -1000000.0, + "when_in_range": { + "type": "minecraft:min", + "argument1": "tfg:venus/sloped_cheese", + "argument2": { + "type": "minecraft:mul", + "argument1": 5.0, + "argument2": "tfg:venus/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": "tfg:venus/sloped_cheese" + } + }, + "max": 0.5, + "min": 0.0 + } + }, + "argument2": "tfg:venus/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "tfg:venus/caves/spaghetti_2d", + "argument2": "tfg:venus/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "tfg:venus/caves/pillars", + "max_exclusive": 0.03, + "min_inclusive": -1000000.0, + "when_in_range": -1000000.0, + "when_out_of_range": "tfg:venus/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "tfg:venus/caves/noodle" + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1.0, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1.0, + "y_scale": 0.7142857142857143 + }, + "initial_density_without_jaggedness": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, "argument2": { - "type": "minecraft:add", - "argument1": -0.1171875, - "argument2": { "type": "minecraft:add", "argument1": -0.078125, "argument2": { - "type": "minecraft:mul", - "argument1": { - "type": "minecraft:y_clamped_gradient", - "from_value": 1.0, - "from_y": 240, - "to_value": 0.0, - "to_y": 256 - }, - "argument2": { - "type": "minecraft:add", - "argument1": 0.078125, - "argument2": { - "type": "minecraft:range_choice", - "input": "minecraft:overworld/sloped_cheese", - "max_exclusive": 1.5625, - "min_inclusive": -1000000.0, - "when_in_range": { - "type": "minecraft:min", - "argument1": "minecraft:overworld/sloped_cheese", - "argument2": { - "type": "minecraft:mul", - "argument1": 5.0, - "argument2": "minecraft:overworld/caves/entrances" - } - }, - "when_out_of_range": { - "type": "minecraft:max", - "argument1": { - "type": "minecraft:min", - "argument1": { - "type": "minecraft:min", - "argument1": { - "type": "minecraft:add", - "argument1": { - "type": "minecraft:mul", - "argument1": 4.0, - "argument2": { - "type": "minecraft:square", - "argument": { - "type": "minecraft:noise", - "noise": "minecraft:cave_layer", - "xz_scale": 1.0, - "y_scale": 1.0 - } - } - }, - "argument2": { - "type": "minecraft:add", - "argument1": { - "type": "minecraft:clamp", - "input": { - "type": "minecraft:add", - "argument1": 0.27, - "argument2": { - "type": "minecraft:noise", - "noise": "minecraft:cave_cheese", - "xz_scale": 1.0, - "y_scale": 0.6666666666666666 - } - }, - "max": 1.0, - "min": -1.0 - }, - "argument2": { - "type": "minecraft:clamp", - "input": { - "type": "minecraft:add", - "argument1": 1.5, - "argument2": { - "type": "minecraft:mul", - "argument1": -0.64, - "argument2": "minecraft:overworld/sloped_cheese" - } - }, - "max": 0.5, - "min": 0.0 - } - } - }, - "argument2": "minecraft:overworld/caves/entrances" - }, - "argument2": { - "type": "minecraft:add", - "argument1": "minecraft:overworld/caves/spaghetti_2d", - "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" - } - }, - "argument2": { - "type": "minecraft:range_choice", - "input": "minecraft:overworld/caves/pillars", - "max_exclusive": 0.03, - "min_inclusive": -1000000.0, - "when_in_range": -1000000.0, - "when_out_of_range": "minecraft:overworld/caves/pillars" - } - } - } - } - } - } - } - } - } - } - } - } - }, - "argument2": "minecraft:overworld/caves/noodle" - }, - "fluid_level_floodedness": { - "type": "minecraft:noise", - "noise": "minecraft:aquifer_fluid_level_floodedness", - "xz_scale": 1.0, - "y_scale": 0.67 - }, - "fluid_level_spread": { - "type": "minecraft:noise", - "noise": "minecraft:aquifer_fluid_level_spread", - "xz_scale": 1.0, - "y_scale": 0.7142857142857143 - }, - "initial_density_without_jaggedness": { - "type": "minecraft:add", - "argument1": 0.1171875, - "argument2": { - "type": "minecraft:mul", - "argument1": { - "type": "minecraft:y_clamped_gradient", - "from_value": 0.0, - "from_y": -64, - "to_value": 1.0, - "to_y": -40 - }, - "argument2": { - "type": "minecraft:add", - "argument1": -0.1171875, - "argument2": { - "type": "minecraft:add", - "argument1": -0.078125, - "argument2": { - "type": "minecraft:mul", - "argument1": { - "type": "minecraft:y_clamped_gradient", - "from_value": 1.0, - "from_y": 240, - "to_value": 0.0, - "to_y": 256 - }, - "argument2": { - "type": "minecraft:add", - "argument1": 0.078125, - "argument2": { - "type": "minecraft:clamp", - "input": { - "type": "minecraft:add", - "argument1": -0.703125, - "argument2": { - "type": "minecraft:mul", - "argument1": 4.0, - "argument2": { - "type": "minecraft:quarter_negative", - "argument": { "type": "minecraft:mul", - "argument1": "minecraft:overworld/depth", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 + }, "argument2": { - "type": "minecraft:cache_2d", - "argument": "minecraft:overworld/factor" + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": "tfg:venus/depth", + "argument2": { + "type": "minecraft:cache_2d", + "argument": "tfg:venus/factor" + } + } + } + } + }, + "max": 64.0, + "min": -64.0 + } } - } } - } - }, - "max": 64.0, - "min": -64.0 - } + } } - } } - } - } - }, - "lava": { - "type": "minecraft:noise", - "noise": "minecraft:aquifer_lava", - "xz_scale": 1.0, - "y_scale": 1.0 - }, - "ridges": "minecraft:overworld/ridges", - "temperature": { - "type": "minecraft:shifted_noise", - "noise": "minecraft:temperature", - "shift_x": "minecraft:shift_x", - "shift_y": 0.0, - "shift_z": "minecraft:shift_z", - "xz_scale": 0.25, - "y_scale": 0.0 - }, - "vegetation": { - "type": "minecraft:shifted_noise", - "noise": "minecraft:vegetation", - "shift_x": "minecraft:shift_x", - "shift_y": 0.0, - "shift_z": "minecraft:shift_z", - "xz_scale": 0.25, - "y_scale": 0.0 - }, - "vein_gap": 0, - "vein_ridged": 0, - "vein_toggle": 0 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "ridges": "tfg:venus/ridges", + "temperature": 0, + "vegetation": 0, + "vein_gap": 0, + "vein_ridged": 0, + "vein_toggle": 0 }, - - - - - - - - - - "surface_rule": { "type": "minecraft:sequence", "sequence": [ - - - - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:biome", - "biome_is": ["tfg:venus/venus_delta"] - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:y_above", - "anchor": { "absolute": 52 }, - "surface_depth_multiplier": 0, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.1, - "max_threshold": 0.2 - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/green" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 1, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/green" } } }, - { "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:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 3, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 4, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } } }, - { "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": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } } }, - { "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:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 7, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 8, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "ceiling", "add_surface_depth": true, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } } - ] - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.2, - "max_threshold": 0.4 - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 1, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/white" } } }, - { "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:sandstone/raw/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 3, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 4, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } } }, - { "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": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "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:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 7, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 8, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "ceiling", "add_surface_depth": true, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } } - ] - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.3, - "max_threshold": 0.5 - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 1, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/blue" } } }, - { "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:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 3, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 4, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } } }, - { "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": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "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:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 7, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 8, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "ceiling", "add_surface_depth": true, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } } - ] - } - }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/brown" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 1, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/brown" } } }, - { "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:sandstone/raw/fluorapatite/brown" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 3, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 4, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "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": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "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:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 7, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 8, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "ceiling", "add_surface_depth": true, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } } } - ] - } - } - ] - } - }, - - - - - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:biome", - "biome_is": ["tfg:venus/venus_fractured_lands"] - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:y_above", - "anchor": { "absolute": 52 }, - "surface_depth_multiplier": 0, - "add_stone_depth": false - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.1, - "max_threshold": 0.2 - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/green" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 1, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/green" } } }, - { "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:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 3, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfc:deposit/native_gold/chert" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 4, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "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": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } } }, - { "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:block", "result_state": { "Name": "tfc:deposit/native_gold/chert" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 7, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 8, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "ceiling", "add_surface_depth": true, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } } - ] - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.2, - "max_threshold": 0.4 - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfc:deposit/native_silver/chert" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 1, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfc:deposit/native_silver/chert" } } }, - { "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": "tfc:deposit/native_gold/chert" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 3, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 4, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "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": "minecraft:block", "result_state": { "Name": "tfc:deposit/native_gold/chert" } } }, - { "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:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 7, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 8, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "ceiling", "add_surface_depth": true, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfc:deposit/native_gold/chert" } } } - ] - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.3, - "max_threshold": 0.5 - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 1, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/blue" } } }, - { "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:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 3, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 4, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "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": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "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:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 7, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 8, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfc:deposit/native_gold/chert" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "ceiling", "add_surface_depth": true, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } } - ] - } - }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 1, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/white" } } }, - { "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:sandstone/raw/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 3, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 4, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfc:deposit/native_gold/chert" } } }, - { "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": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "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:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 7, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 8, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } } }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "ceiling", "add_surface_depth": true, "secondary_depth_range": 0 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } } } - ] - } - } - ] - } - }, - - - - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:y_above", - "anchor": { "absolute": 24 }, - "surface_depth_multiplier": 0, - "add_stone_depth": false - }, - "then_run": { + { "type": "minecraft:condition", "if_true": { - "type": "minecraft:not", - "invert": { - "type": "minecraft:y_above", - "anchor": { "absolute": 49 }, - "surface_depth_multiplier": 0, - "add_stone_depth": false - } + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:bedrock_floor", + "false_at_and_above": { + "above_bottom": 5 + }, + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + + + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ "tfg:venus/jagged_tablelands" ] }, "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { "type": "minecraft:condition", "if_true": { - "type": "minecraft:noise_threshold", - "noise": "minecraft:powder_snow", - "min_threshold": 0.3, - "max_threshold": 0.5 + "type": "minecraft:above_preliminary_surface" }, "then_run": { "type": "minecraft:sequence", "sequence": [ - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 2 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/orange" }}}, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 2, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 4 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" }}} - ] - } - }, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 0, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 2 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sand/fluorapatite/yellow" }}}, - { "type": "minecraft:condition", "if_true": { "type": "minecraft:stone_depth", "offset": 2, "surface_type": "floor", "add_surface_depth": false, "secondary_depth_range": 4 }, "then_run": { "type": "minecraft:block", "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/yellow" }}} - ] + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": -0.3, + "max_threshold": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:conglomerate" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": -0.4, + "max_threshold": 0.1 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "betterend:flavolite" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "ad_astra:conglomerate" + } + } + }, + { + "type": "tfg:badlands", + "raw_rock_weight": 20, + "palette": [ + { "Name": "create:ochrum" }, + { "Name": "betterend:sandy_jadestone" }, + { "Name": "betterend:sandy_jadestone" }, + { "Name": "betterend:sandy_jadestone" }, + { "Name": "betterend:sandy_jadestone" }, + { "Name": "betterend:flavolite" }, + { "Name": "betterend:flavolite" }, + { "Name": "betterend:flavolite" } + ], + "fallback": { + "Name": "ad_astra:venus_stone" + } + } + ] + } } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:vertical_gradient", - "random_name": "minecraft:bedrock_floor", - "true_at_and_below": { "above_bottom": 0 }, - "false_at_and_above": { "above_bottom": 5 } }, - "then_run": { - "type": "minecraft:block", - "result_state": { "Name": "minecraft:bedrock" } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:vertical_gradient", - "random_name": "minecraft:deepslate", - "true_at_and_below": { "absolute": 0 }, - "false_at_and_above": { "absolute": 8 } - }, - "then_run": { - "type": "minecraft:sequence", - "sequence": [ - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 0, - "surface_type": "ceiling", - "add_surface_depth": true, - "secondary_depth_range": 0 - }, - "then_run": { - "type": "minecraft:block", - "result_state": { "Name": "tfc:rock/hardened/chert" } - } + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ "tfg:venus/salt_flats" ] }, - { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/raw/chert", - "Properties": { "axis": "y" } - } + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 65 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cave_air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:vertical_gradient", + "random_name": "salt_flats", + "true_at_and_below": { + "absolute": 60 + }, + "false_at_and_above": { + "absolute": 64 + } + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfg:rock/halite" + } + } + } + ] } - ] - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 0, - "surface_type": "ceiling", - "add_surface_depth": true, - "secondary_depth_range": 0 }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/hardened/basalt" - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 0, - "surface_type": "floor", - "add_surface_depth": true, - "secondary_depth_range": 0 + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ "tfg:venus/scorching_volcanoes" ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_lava", + "min_threshold": 0.18, + "max_threshold": 0.27 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/magma/basalt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_lava", + "min_threshold": 0.08, + "max_threshold": 0.37 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/basalt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_lava", + "min_threshold": -0.4, + "max_threshold": -0.31 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:smooth_basalt" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "create:scorchia" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_lava", + "min_threshold": 0.18, + "max_threshold": 0.27 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "tfc:rock/raw/basalt" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "create:scorchia" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "create:scorchia" + } + } + } + ] + } + } }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/gravel/basalt" - } - } - }, - { - "type": "minecraft:condition", - "if_true": { - "type": "minecraft:stone_depth", - "offset": 6, - "surface_type": "floor", - "add_surface_depth": true, - "secondary_depth_range": 255 + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ "tfg:venus/arachnoids" ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -1.5, + "max_threshold": -1.0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -1.0, + "max_threshold": -0.98 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.98, + "max_threshold": -0.95 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.95, + "max_threshold": -0.90 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.90, + "max_threshold": -0.88 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.88, + "max_threshold": -0.85 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.85, + "max_threshold": -0.80 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.80, + "max_threshold": -0.78 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.78, + "max_threshold": -0.75 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.75, + "max_threshold": -0.70 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.70, + "max_threshold": -0.68 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.68, + "max_threshold": -0.65 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.65, + "max_threshold": -0.60 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.60, + "max_threshold": -0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.58, + "max_threshold": -0.55 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.55, + "max_threshold": -0.50 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.50, + "max_threshold": -0.48 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.48, + "max_threshold": -0.45 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.45, + "max_threshold": -0.40 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.40, + "max_threshold": -0.38 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.38, + "max_threshold": -0.35 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.35, + "max_threshold": -0.30 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.30, + "max_threshold": -0.28 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.28, + "max_threshold": -0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.25, + "max_threshold": -0.20 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.20, + "max_threshold": -0.18 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.18, + "max_threshold": -0.15 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.15, + "max_threshold": -0.10 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.10, + "max_threshold": -0.08 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.08, + "max_threshold": -0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": -0.05, + "max_threshold": -0.00 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.00, + "max_threshold": 0.02 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.02, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.05, + "max_threshold": 0.10 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.10, + "max_threshold": 0.12 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.12, + "max_threshold": 0.15 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.15, + "max_threshold": 0.20 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.20, + "max_threshold": 0.22 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.22, + "max_threshold": 0.25 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.25, + "max_threshold": 0.30 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.30, + "max_threshold": 0.32 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.32, + "max_threshold": 0.35 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.35, + "max_threshold": 0.40 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.40, + "max_threshold": 0.42 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.42, + "max_threshold": 0.45 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.45, + "max_threshold": 0.50 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.50, + "max_threshold": 0.52 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.52, + "max_threshold": 0.55 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.55, + "max_threshold": 0.60 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.60, + "max_threshold": 0.62 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.62, + "max_threshold": 0.65 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.65, + "max_threshold": 0.70 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.70, + "max_threshold": 0.72 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.72, + "max_threshold": 0.75 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.75, + "max_threshold": 0.80 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.80, + "max_threshold": 0.82 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.82, + "max_threshold": 0.85 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.85, + "max_threshold": 0.90 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.90, + "max_threshold": 0.92 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.92, + "max_threshold": 0.95 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "tfg:venus_arachnoids", + "min_threshold": 0.95, + "max_threshold": 1.5 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/orange" } + } + } + ] + } + } + ] + } + } }, - "then_run": { - "type": "minecraft:block", - "result_state": { - "Name": "tfc:rock/raw/basalt" - } + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ "tfg:venus/geysers" ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.1, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.2, + "max_threshold": 0.4 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.4, + "max_threshold": 0.5 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.1, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/yellow" } + } + }, + { + "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:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/yellow" } + } + }, + { + "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:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.2, + "max_threshold": 0.4 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/brown" } + } + }, + { + "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:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/yellow" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "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:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.4, + "max_threshold": 0.5 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/green" } + } + }, + { + "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:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "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:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/yellow" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/yellow" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "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:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/yellow" } + } + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ "tfg:venus/sulfuric_ravine" ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:water", + "offset": 1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "create:scoria" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.1, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.0, + "max_threshold": 0.3 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/orange" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": -0.4, + "max_threshold": 0.7 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/yellow" } + } + }, + { + "type": "minecraft:block", + "result_state": { "Name": "tfc:sand/black" } + } + ] + } + }, + { + "type": "tfg:badlands", + "raw_rock_weight": 5, + "palette": [ + { "Name": "create:scoria" }, + { "Name": "create:ochrum" }, + { "Name": "betterend:sulphuric_rock" }, + { "Name": "betterend:sandy_jadestone" }, + { "Name": "tfg:sandstone/raw/fluorapatite/brown" }, + { "Name": "tfg:sandstone/raw/fluorapatite/orange" }, + { "Name": "tfg:sandstone/raw/fluorapatite/yellow" }, + { "Name": "tfg:sandstone/raw/fluorapatite/yellow" }, + { "Name": "tfg:sandstone/raw/fluorapatite/yellow" }, + { "Name": "vintageimprovements:sulfur_block" }, + { "Name": "tfc:raw_sandstone/black" } + ], + "fallback": { + "Name": "ad_astra:venus_stone" + } + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ "tfg:venus/fumaroles" ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.1, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.2, + "max_threshold": 0.4 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "sand", + "fallback_state": { + "Name": "ad_astra:venus_sand" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "sandstone", + "fallback_state": { + "Name": "ad_astra:venus_sandstone" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.3, + "max_threshold": 0.5 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": -1.0, + "max_threshold": -0.8 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "sand", + "fallback_state": { + "Name": "ad_astra:venus_sand" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "sandstone", + "fallback_state": { + "Name": "ad_astra:venus_sandstone" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "kubejs_tfc:rock", + "rock_block": "gravel", + "fallback_state": { + "Name": "tfg:rock/gravel_venus" + } + } + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ "tfg:venus/stromatolite_beach" ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.1, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/green" } + } + }, + { + "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:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "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:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.2, + "max_threshold": 0.4 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/white" } + } + }, + { + "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:sandstone/raw/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "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:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.3, + "max_threshold": 0.5 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "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:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "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:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/brown" } + } + }, + { + "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:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "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:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ "tfg:venus/fractured_pools" ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.1, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.2, + "max_threshold": 0.4 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/brown" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.4, + "max_threshold": 0.5 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.1, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/green" } + } + }, + { + "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:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "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:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.2, + "max_threshold": 0.4 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/brown" } + } + }, + { + "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": "minecraft:tuff" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "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:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.4, + "max_threshold": 0.5 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/blue" } + } + }, + { + "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:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "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:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 1, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sand/fluorapatite/white" } + } + }, + { + "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:sandstone/raw/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 3, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/white" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 4, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "minecraft:tuff" } + } + }, + { + "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": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "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:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/blue" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 7, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 8, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { "Name": "tfg:sandstone/raw/fluorapatite/green" } + } + } + ] + } + } + }, + + + { + "type": "kubejs_tfc:rock", + "rock_block": "raw", + "fallback_state": { + "Name": "ad_astra:venus_stone" + } } - } ] - }, - - - - - + }, "spawn_target": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/oil_spout.json b/kubejs/data/tfg/worldgen/placed_feature/earth/oil_spout.json new file mode 100644 index 000000000..2bdc4c768 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/oil_spout.json @@ -0,0 +1,33 @@ +{ + "feature": "gtceu:raw_oil_sprout", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 200 + }, + { + "type": "tfc:climate", + "min_temperature": 0, + "min_rainfall": 0, + "max_rainfall": 100 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 40 + }, + "min_inclusive": { + "absolute": 10 + } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_tarkianite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_tarkianite.json new file mode 100644 index 000000000..b65ab875b --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_tarkianite.json @@ -0,0 +1,21 @@ +{ + + + + + "__credits__": "REVERT THIS FILE AFTER RUNNING ORES TO FIELD GUIDE. Otherwise it wipes the climate stuff.", + + + + + + "feature": "tfg:earth/vein/normal_tarkianite", + "placement": [ + { + "type": "tfc:climate", + "min_temperature": 7, + "min_rainfall": 0, + "max_rainfall": 100 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/tree/crimson_dirt.json b/kubejs/data/tfg/worldgen/placed_feature/mars/tree/crimson_dirt.json new file mode 100644 index 000000000..3aae30456 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/tree/crimson_dirt.json @@ -0,0 +1,4 @@ +{ + "feature": "tfg:mars/tree/crimson_dirt", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/tree/warped.json b/kubejs/data/tfg/worldgen/placed_feature/mars/tree/warped.json index cdec23129..7cec1cdd5 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/tree/warped.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/tree/warped.json @@ -1,4 +1,4 @@ { - "feature": "tfg:mars/tree/crimson", + "feature": "tfg:mars/tree/warped", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/tree/warped_dirt.json b/kubejs/data/tfg/worldgen/placed_feature/mars/tree/warped_dirt.json new file mode 100644 index 000000000..caa95e71b --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/tree/warped_dirt.json @@ -0,0 +1,4 @@ +{ + "feature": "tfg:mars/tree/warped_dirt", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/underground/ice_cave.json b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/ice_cave.json index 39a11ee38..a9f8d69e2 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/mars/underground/ice_cave.json +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/underground/ice_cave.json @@ -3,7 +3,7 @@ "placement": [ { "type": "tfc:climate", - "max_temperature": -105 + "max_temperature": -75 }, { "type": "minecraft:count", diff --git a/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_lapis.json b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_lapis.json new file mode 100644 index 000000000..c7d06a734 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/mars/vein/mars_lapis.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:mars/vein/mars_lapis", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/terrain/mossy_cobble.json b/kubejs/data/tfg/worldgen/placed_feature/nether/terrain/mossy_cobble.json new file mode 100644 index 000000000..0255d382d --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/terrain/mossy_cobble.json @@ -0,0 +1,24 @@ +{ + "feature": "tfg:nether/terrain/mossy_cobble", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 120 + }, + "min_inclusive": { + "absolute": 32 + } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/geyser_source_patch.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/geyser_source_patch.json index 814ceede1..430123383 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/geyser_source_patch.json +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/geyser_source_patch.json @@ -1,39 +1,15 @@ { - "feature": "tfg:venus/surface/geyser_source_patch", - "placement": [ - { - "type": "minecraft:count", - "count": 20 - }, + "feature": "tfg:venus/surface/geyser_source_patch", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, { "type": "minecraft:in_square" }, - { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 380 - }, - "min_inclusive": { - "above_bottom": 123 - } - } - }, - { - "type": "minecraft:block_predicate_filter", - "predicate": { - "type": "minecraft:has_sturdy_face", - "offset": [ - 0, - -1, - 0 - ], - "direction": "down" - } - }, { "type": "minecraft:biome" } - ] + ] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/hydralux.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/hydralux.json new file mode 100644 index 000000000..587031522 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/hydralux.json @@ -0,0 +1,37 @@ +{ + "feature": { + "type": "tfc:multiple", + "config": { + "features": [ + { + "feature": "tfg:venus/surface/hydralux_large", + "placement": [] + }, + { + "feature": "tfg:venus/surface/hydralux_small", + "placement": [] + }, + { + "feature": "tfg:venus/surface/hydralux_sapling", + "placement": [] + } + ] + } + }, + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/hydralux_rare.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/hydralux_rare.json new file mode 100644 index 000000000..acd708f5c --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/hydralux_rare.json @@ -0,0 +1,37 @@ +{ + "feature": { + "type": "tfc:multiple", + "config": { + "features": [ + { + "feature": "tfg:venus/surface/hydralux_large", + "placement": [] + }, + { + "feature": "tfg:venus/surface/hydralux_small", + "placement": [] + }, + { + "feature": "tfg:venus/surface/hydralux_sapling", + "placement": [] + } + ] + } + }, + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/lava_source_patch.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/lava_source_patch.json new file mode 100644 index 000000000..43e6e7f34 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/lava_source_patch.json @@ -0,0 +1,15 @@ +{ + "feature": "tfg:venus/surface/lava_source_patch", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/pile_black_sand.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/pile_black_sand.json new file mode 100644 index 000000000..6eb8f33b1 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/pile_black_sand.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:venus/surface/pile_black_sand", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "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/venus/surface/pile_volcanic_ash.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/pile_volcanic_ash.json new file mode 100644 index 000000000..3a6c8954d --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/pile_volcanic_ash.json @@ -0,0 +1,16 @@ +{ + "feature": "tfg:venus/surface/pile_volcanic_ash", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/salt_lick_patch.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/salt_lick_patch.json new file mode 100644 index 000000000..3e2f13d47 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/salt_lick_patch.json @@ -0,0 +1,15 @@ +{ + "feature": "tfg:venus/surface/salt_lick_patch", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/shadow_plant_patch.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/shadow_plant_patch.json new file mode 100644 index 000000000..ecff092ae --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/shadow_plant_patch.json @@ -0,0 +1,15 @@ +{ + "feature": "tfg:venus/surface/shadow_plant_patch", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/smoker_source_patch.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/smoker_source_patch.json new file mode 100644 index 000000000..18f4d98a6 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/smoker_source_patch.json @@ -0,0 +1,15 @@ +{ + "feature": "tfg:venus/surface/smoker_source_patch", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/stromatolite_tower.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/stromatolite_tower.json deleted file mode 100644 index 7465a4c19..000000000 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/stromatolite_tower.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "feature": "tfg:venus/surface/stromatolite_tower", - "placement": [ - { - "type": "minecraft:count", - "count": 80 - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 380 - }, - "min_inclusive": { - "above_bottom": 123 - } - } - }, - { - "type": "minecraft:block_predicate_filter", - "predicate": { - "type": "minecraft:matching_blocks", - "offset": [ - 0, - -1, - 0 - ], - "blocks": [ - "tfg:rock/raw/stromatolite" - ] - } - }, - { - "type": "minecraft:biome" - } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/sulfur_patch.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/sulfur_patch.json new file mode 100644 index 000000000..cdfa8aa91 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/sulfur_patch.json @@ -0,0 +1,26 @@ +{ + "feature": "beneath:sulfur_patch", + "placement": [ + { + "type": "minecraft:count", + "count": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "tfc:near_fluid", + "fluids": [ + "tfg:sulfur_fumes" + ], + "radius": 5 + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/surface/twisted_vine.json b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/twisted_vine.json new file mode 100644 index 000000000..9fea6b3e0 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/surface/twisted_vine.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:venus/surface/twisted_vine", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 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/venus/terrain/basalt_columns_large.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/basalt_columns_large.json new file mode 100644 index 000000000..19aaa0403 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/basalt_columns_large.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:venus/terrain/basalt_columns_large", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "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/venus/terrain/basalt_columns_small.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/basalt_columns_small.json new file mode 100644 index 000000000..e87e191c7 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/basalt_columns_small.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:venus/terrain/basalt_columns_small", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 1 + }, + { + "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/venus/terrain/basalt_pillar.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/basalt_pillar.json new file mode 100644 index 000000000..0d156c7f7 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/basalt_pillar.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:basalt_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 200 + }, + "min_inclusive": { + "absolute": 80 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/hot_spring_delta.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/hot_spring_delta.json index fc71a28e9..42c83a65c 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/hot_spring_delta.json +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/hot_spring_delta.json @@ -1,31 +1,19 @@ { "feature": "tfg:venus/terrain/hot_spring_delta", - "placement": [ + "placement": [ { "type": "minecraft:count", "count": 6 }, { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 200 - }, - "min_inclusive": { - "above_bottom": 54 - } - } + "type": "minecraft:in_square" }, { "type": "minecraft:heightmap", - "heightmap": "WORLD_SURFACE" + "heightmap": "WORLD_SURFACE" }, { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:biome" - } + "type": "minecraft:biome" + } ] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_basalt_gravel.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_basalt_gravel.json deleted file mode 100644 index 755e3d275..000000000 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_basalt_gravel.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "feature": "tfg:venus/terrain/lake_basalt_gravel", - "placement": [ - { - "type": "minecraft:count", - "count": 256 - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "min_inclusive": { - "absolute": 67 - }, - "max_inclusive": { - "absolute": 70 - } - } - }, - { - "type": "minecraft:block_predicate_filter", - "predicate": { - "type": "minecraft:matching_fluids", - "fluids": "tfg:geyser_slurry" - } - }, - { - "type": "minecraft:biome" - } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_basalt_stone.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_basalt_stone.json deleted file mode 100644 index 47d91e7a5..000000000 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_basalt_stone.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "feature": "tfg:venus/terrain/lake_basalt_stone", - "placement": [ - { - "type": "minecraft:count", - "count": 228 - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "min_inclusive": { - "absolute": 67 - }, - "max_inclusive": { - "absolute": 70 - } - } - }, - { - "type": "minecraft:block_predicate_filter", - "predicate": { - "type": "minecraft:matching_fluids", - "fluids": "tfg:geyser_slurry" - } - }, - { - "type": "minecraft:biome" - } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_geyserite.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_geyserite.json deleted file mode 100644 index 040164f66..000000000 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_geyserite.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "feature": "tfg:venus/terrain/lake_geyserite", - "placement": [ - { - "type": "minecraft:count", - "count": 228 - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "min_inclusive": { - "absolute": 67 - }, - "max_inclusive": { - "absolute": 70 - } - } - }, - { - "type": "minecraft:block_predicate_filter", - "predicate": { - "type": "minecraft:matching_fluids", - "fluids": "tfg:geyser_slurry" - } - }, - { - "type": "minecraft:biome" - } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_orange_sand.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_orange_sand.json deleted file mode 100644 index 601fef6e8..000000000 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_orange_sand.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "feature": "tfg:venus/terrain/lake_orange_sand", - "placement": [ - { - "type": "minecraft:count", - "count": 4 - }, - { - "type": "minecraft:count", - "count": 82 - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "min_inclusive": { - "absolute": 67 - }, - "max_inclusive": { - "absolute": 70 - } - } - }, - { - "type": "minecraft:block_predicate_filter", - "predicate": { - "type": "minecraft:matching_fluids", - "fluids": "tfg:geyser_slurry" - } - }, - { - "type": "minecraft:biome" - } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_yellow_sand.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_yellow_sand.json deleted file mode 100644 index 2e55be876..000000000 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lake_yellow_sand.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "feature": "tfg:venus/terrain/lake_yellow_sand", - "placement": [ - { - "type": "minecraft:count", - "count": 188 - }, - { - "type": "minecraft:count", - "count": 6 - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "min_inclusive": { - "absolute": 68 - }, - "max_inclusive": { - "absolute": 68 - } - } - }, - { - "type": "minecraft:block_predicate_filter", - "predicate": { - "type": "minecraft:matching_fluids", - "fluids": "tfg:geyser_slurry" - } - }, - { - "type": "minecraft:biome" - } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_delta.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_delta.json index f34273165..6c86e4483 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_delta.json +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_delta.json @@ -1,37 +1,21 @@ { - "feature": "tfg:venus/terrain/lava_delta", - "placement": [ - { - "type": "minecraft:noise_based_count", - "noise_to_count_ratio": 1, - "noise_factor": 1, - "noise_offset": 3 - }, - { - "type": "minecraft:rarity_filter", - "chance": 3 - }, - { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 200 - }, - "min_inclusive": { - "above_bottom": 54 - } - } - }, - { - "type": "minecraft:heightmap", - "heightmap": "WORLD_SURFACE" - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:biome" - } - ] + "feature": "tfg:venus/terrain/lava_delta", + "placement": [ + { + "type": "minecraft:noise_based_count", + "noise_to_count_ratio": 6, + "noise_factor": 2, + "noise_offset": 0 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE" + }, + { + "type": "minecraft:biome" + } + ] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_fill.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_fill.json new file mode 100644 index 000000000..adb36333f --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_fill.json @@ -0,0 +1,16 @@ +{ + "feature": "tfg:venus/terrain/lava_fill", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 1 + }, + { + "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/venus/terrain/lava_fissure.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_fissure.json new file mode 100644 index 000000000..6e88d777c --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_fissure.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:venus/terrain/lava_fissure", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "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/venus/terrain/lava_lake.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_lake.json new file mode 100644 index 000000000..c9d049011 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_lake.json @@ -0,0 +1,19 @@ +{ + "feature": "tfg:venus/terrain/lava_lake", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "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/venus/terrain/lava_rivulet.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_rivulet.json new file mode 100644 index 000000000..3aeeb0939 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_rivulet.json @@ -0,0 +1,15 @@ +{ + "feature": "tfg:venus/terrain/lava_rivulet", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_spring.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_spring.json new file mode 100644 index 000000000..78c92e398 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/lava_spring.json @@ -0,0 +1,12 @@ +{ + "feature": "tfg:venus/terrain/lava_spring", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 8 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/magma_rivulet.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/magma_rivulet.json new file mode 100644 index 000000000..ca166b42c --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/magma_rivulet.json @@ -0,0 +1,15 @@ +{ + "feature": "tfg:venus/terrain/magma_rivulet", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/stromatolite_disk.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/stromatolite_disk.json index 7e16eed20..da6bbcc02 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/stromatolite_disk.json +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/stromatolite_disk.json @@ -1,31 +1,31 @@ { - "feature": "tfg:venus/terrain/stromatolite_disk", - "placement": [ + "feature": { + "type": "tfc:if_then", + "config": { + "if": { + "feature": "tfg:venus/terrain/stromatolite_disk", + "placement": [] + }, + "then": { + "feature": "tfg:venus/surface/stromatolite_tower", + "placement": [] + } + } + }, + "placement": [ { "type": "minecraft:count", "count": 1 }, { - "type": "minecraft:height_range", - "height": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 200 - }, - "min_inclusive": { - "above_bottom": 54 - } - } + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" }, { "type": "minecraft:heightmap", - "heightmap": "WORLD_SURFACE" - }, - { - "type": "minecraft:in_square" - }, - { - "type": "minecraft:biome" - } + "heightmap": "WORLD_SURFACE" + } ] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/sulfur_blob.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/sulfur_blob.json new file mode 100644 index 000000000..091cc6827 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/sulfur_blob.json @@ -0,0 +1,31 @@ +{ + "feature": { + "type": "tfc:if_then", + "config": { + "if": { + "feature": "tfg:venus/terrain/sulfur_blob", + "placement": [] + }, + "then": { + "feature": "tfg:venus/surface/sulfur_crystals", + "placement": [] + } + } + }, + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/sulfur_blob_rare.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/sulfur_blob_rare.json new file mode 100644 index 000000000..1872700a2 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/sulfur_blob_rare.json @@ -0,0 +1,31 @@ +{ + "feature": { + "type": "tfc:if_then", + "config": { + "if": { + "feature": "tfg:venus/terrain/sulfur_blob", + "placement": [] + }, + "then": { + "feature": "tfg:venus/surface/sulfur_crystals", + "placement": [] + } + } + }, + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/thermal_vent.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/thermal_vent.json new file mode 100644 index 000000000..eadd12694 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/thermal_vent.json @@ -0,0 +1,50 @@ +{ + "feature": { + "type": "tfc:multiple", + "config": { + "features": [ + { + "feature": "tfg:venus/terrain/ignimbrite_disk", + "placement": [] + }, + { + "feature": "tfg:venus/terrain/ignimbrite_columns", + "placement": [] + }, + { + "feature": "tfg:venus/terrain/ignimbrite_vents", + "placement": [] + }, + { + "feature": "tfg:venus/terrain/ignimbrite_tube_worms", + "placement": [] + } + ] + } + }, + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "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/venus/terrain/thermal_vent_rare.json b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/thermal_vent_rare.json new file mode 100644 index 000000000..fa99f779f --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/terrain/thermal_vent_rare.json @@ -0,0 +1,46 @@ +{ + "feature": { + "type": "tfc:multiple", + "config": { + "features": [ + { + "feature": "tfg:venus/terrain/ignimbrite_disk", + "placement": [] + }, + { + "feature": "tfg:venus/terrain/ignimbrite_columns", + "placement": [] + }, + { + "feature": "tfg:venus/terrain/ignimbrite_vents", + "placement": [] + }, + { + "feature": "tfg:venus/terrain/ignimbrite_tube_worms", + "placement": [] + } + ] + } + }, + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "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/venus/underground/loose_rocks.json b/kubejs/data/tfg/worldgen/placed_feature/venus/underground/loose_rocks.json new file mode 100644 index 000000000..58f21e472 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/underground/loose_rocks.json @@ -0,0 +1,44 @@ +{ + "feature": "tfc: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", + "tfg:fluid/semiheavy_ammoniacal_water" + ] + }, + "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/venus/underground/noise_cave_stalagmite.json b/kubejs/data/tfg/worldgen/placed_feature/venus/underground/noise_cave_stalagmite.json new file mode 100644 index 000000000..aa855147b --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/underground/noise_cave_stalagmite.json @@ -0,0 +1,51 @@ +{ + "feature": "tfc:cave_spike", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": 5 + }, + "max_inclusive": { + "absolute": 85 + } + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air", + "tfg:fluid/semiheavy_ammoniacal_water" + ] + }, + "direction_of_search": "down", + "max_steps": 8, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "forge:stone" + } + }, + { + "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/venus/underground/noise_cave_stalagtite.json b/kubejs/data/tfg/worldgen/placed_feature/venus/underground/noise_cave_stalagtite.json new file mode 100644 index 000000000..2b1a19635 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/underground/noise_cave_stalagtite.json @@ -0,0 +1,51 @@ +{ + "feature": "tfc:cave_spike", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": 20 + }, + "max_inclusive": { + "absolute": 120 + } + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air", + "tfg:fluid/semiheavy_ammoniacal_water" + ] + }, + "direction_of_search": "up", + "max_steps": 8, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "forge:stone" + } + }, + { + "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/venus/vein_manual/salt.json b/kubejs/data/tfg/worldgen/placed_feature/venus/vein_manual/salt.json new file mode 100644 index 000000000..0d2f4aca3 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/vein_manual/salt.json @@ -0,0 +1,4 @@ +{ + "feature": "tfg:venus/vein_manual/salt", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/venus/vein_manual/sulfur.json b/kubejs/data/tfg/worldgen/placed_feature/venus/vein_manual/sulfur.json new file mode 100644 index 000000000..7979b73a1 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/venus/vein_manual/sulfur.json @@ -0,0 +1,4 @@ +{ + "feature": "tfg:venus/vein_manual/sulfur", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/processor_list/illagers/arabic_paths.json b/kubejs/data/tfg/worldgen/processor_list/illagers/arabic_paths.json new file mode 100644 index 000000000..e9088cd9d --- /dev/null +++ b/kubejs/data/tfg/worldgen/processor_list/illagers/arabic_paths.json @@ -0,0 +1,103 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "tfc:wood/planks/acacia" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "tfc:river_water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "tfc:wood/planks/acacia" + } + }, + + + + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "rnr:rock/gravel_road/claystone" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "rnr:rock/gravel_road/limestone" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 0.15 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "tfc:grass_path/sandy_loam" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "tfc:grass/sandy_loam" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "rnr:hoggin" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/processor_list/illagers/arabic_structures.json b/kubejs/data/tfg/worldgen/processor_list/illagers/arabic_structures.json new file mode 100644 index 000000000..fc091e687 --- /dev/null +++ b/kubejs/data/tfg/worldgen/processor_list/illagers/arabic_structures.json @@ -0,0 +1,50 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "tfc:wood/planks/acacia" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "tfc:river_water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "tfc:wood/planks/acacia" + } + }, + + + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "rnr:hoggin" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/processor_list/illagers/yurts_paths.json b/kubejs/data/tfg/worldgen/processor_list/illagers/yurts_paths.json new file mode 100644 index 000000000..ffe662188 --- /dev/null +++ b/kubejs/data/tfg/worldgen/processor_list/illagers/yurts_paths.json @@ -0,0 +1,103 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "tfc:wood/planks/pine" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "tfc:river_water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "tfc:wood/planks/pine" + } + }, + + + + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "rnr:rock/gravel_road/slate" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "rnr:rock/gravel_road/phyllite" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 0.15 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "tfc:grass_path/silty_loam" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "tfc:grass/silty_loam" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "rnr:hoggin" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/processor_list/illagers/yurts_structures.json b/kubejs/data/tfg/worldgen/processor_list/illagers/yurts_structures.json new file mode 100644 index 000000000..b4451a848 --- /dev/null +++ b/kubejs/data/tfg/worldgen/processor_list/illagers/yurts_structures.json @@ -0,0 +1,50 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "tfc:wood/planks/pine" + } + }, + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "tfc:river_water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "tfc:wood/planks/pine" + } + }, + + + { + "input_predicate": { + "block": "tfc:rock/bricks/andesite", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "rnr:hoggin" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure/illagers/arabic_village_living.json b/kubejs/data/tfg/worldgen/structure/illagers/arabic_village_living.json new file mode 100644 index 000000000..57d631889 --- /dev/null +++ b/kubejs/data/tfg/worldgen/structure/illagers/arabic_village_living.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:jigsaw", + "start_pool": "tfg:illagers/arabic_village_living_start_pool", + "size": 5, + "max_distance_from_center": 116, + "biomes": "#tfg:has_structure/illages", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "start_height": { + "absolute": -1 + }, + "project_start_to_heightmap": "MOTION_BLOCKING", + "use_expansion_hack": false, + "adapt_noise": true, + "spawn_overrides": { + "creature": { + "bounding_box": "full", + "spawns": [] + }, + "monster": { + "bounding_box": "full", + "spawns": [] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure/illagers/camps.json b/kubejs/data/tfg/worldgen/structure/illagers/camps.json new file mode 100644 index 000000000..1c97dd910 --- /dev/null +++ b/kubejs/data/tfg/worldgen/structure/illagers/camps.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:jigsaw", + "start_pool": "tfg:illagers/camp_start_pool", + "size": 3, + "max_distance_from_center": 50, + "biomes": "#tfg:has_structure/illager_camp", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "start_height": { + "absolute": 0 + }, + "project_start_to_heightmap": "MOTION_BLOCKING", + "use_expansion_hack": false, + "adapt_noise": true, + "spawn_overrides": { + "creature": { + "bounding_box": "full", + "spawns": [] + }, + "monster": { + "bounding_box": "full", + "spawns": [] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure/illagers/forest_roaming.json b/kubejs/data/tfg/worldgen/structure/illagers/forest_roaming.json new file mode 100644 index 000000000..d4ebf1721 --- /dev/null +++ b/kubejs/data/tfg/worldgen/structure/illagers/forest_roaming.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:jigsaw", + "start_pool": "tfg:illagers/forest_roaming_start_pool", + "size": 3, + "max_distance_from_center": 12, + "biomes": "#tfg:has_structure/illager_roaming", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "start_height": { + "absolute": 0 + }, + "project_start_to_heightmap": "MOTION_BLOCKING", + "use_expansion_hack": false, + "adapt_noise": true, + "spawn_overrides": { + "creature": { + "bounding_box": "full", + "spawns": [] + }, + "monster": { + "bounding_box": "full", + "spawns": [] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure/illagers/norse_village_living.json b/kubejs/data/tfg/worldgen/structure/illagers/norse_village_living.json index 6f79900ef..a61dd11c0 100644 --- a/kubejs/data/tfg/worldgen/structure/illagers/norse_village_living.json +++ b/kubejs/data/tfg/worldgen/structure/illagers/norse_village_living.json @@ -1,7 +1,7 @@ { "type": "minecraft:jigsaw", "start_pool": "tfg:illagers/norse_village_living_start_pool", - "size": 4, + "size": 5, "max_distance_from_center": 116, "biomes": "#tfg:has_structure/illages", "step": "surface_structures", diff --git a/kubejs/data/tfg/worldgen/structure/illagers/norse_village_ruined.json b/kubejs/data/tfg/worldgen/structure/illagers/norse_village_ruined.json index 85e8d895a..249966a32 100644 --- a/kubejs/data/tfg/worldgen/structure/illagers/norse_village_ruined.json +++ b/kubejs/data/tfg/worldgen/structure/illagers/norse_village_ruined.json @@ -1,7 +1,7 @@ { "type": "minecraft:jigsaw", "start_pool": "tfg:illagers/norse_village_ruined_start_pool", - "size": 4, + "size": 5, "max_distance_from_center": 116, "biomes": "#tfg:has_structure/illages", "step": "surface_structures", diff --git a/kubejs/data/tfg/worldgen/structure/illagers/yurts_village_living.json b/kubejs/data/tfg/worldgen/structure/illagers/yurts_village_living.json new file mode 100644 index 000000000..8d7dd8573 --- /dev/null +++ b/kubejs/data/tfg/worldgen/structure/illagers/yurts_village_living.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:jigsaw", + "start_pool": "tfg:illagers/yurts_village_living_start_pool", + "size": 5, + "max_distance_from_center": 116, + "biomes": "#tfg:has_structure/illages", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "start_height": { + "absolute": -1 + }, + "project_start_to_heightmap": "MOTION_BLOCKING", + "use_expansion_hack": false, + "adapt_noise": true, + "spawn_overrides": { + "creature": { + "bounding_box": "full", + "spawns": [] + }, + "monster": { + "bounding_box": "full", + "spawns": [] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure_set/illagers/arabic_village.json b/kubejs/data/tfg/worldgen/structure_set/illagers/arabic_village.json new file mode 100644 index 000000000..d72ea3701 --- /dev/null +++ b/kubejs/data/tfg/worldgen/structure_set/illagers/arabic_village.json @@ -0,0 +1,21 @@ +{ + "structures": [ + { + "structure": "tfg:illagers/arabic_village_living", + "weight": 100 + } + ], + "placement": { + "type": "tfc:climate", + "salt": 26256356324, + "spacing": 60, + "separation": 45, + "climate": { + "min_temperature": 8, + "max_temperature": 25, + "min_rainfall": 100, + "max_rainfall": 250, + "max_forest": "edge" + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure_set/illagers/illager_camps.json b/kubejs/data/tfg/worldgen/structure_set/illagers/illager_camps.json new file mode 100644 index 000000000..9de015cb9 --- /dev/null +++ b/kubejs/data/tfg/worldgen/structure_set/illagers/illager_camps.json @@ -0,0 +1,19 @@ +{ + "structures": [ + { + "structure": "tfg:illagers/camps", + "weight": 100 + } + ], + "placement": { + "type": "tfc:climate", + "salt": 96263635, + "spacing": 50, + "separation": 40, + "climate": { + "min_temperature": -12, + "max_temperature": 25, + "max_forest": "edge" + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure_set/illagers/illager_forest_roaming.json b/kubejs/data/tfg/worldgen/structure_set/illagers/illager_forest_roaming.json new file mode 100644 index 000000000..87d5252f3 --- /dev/null +++ b/kubejs/data/tfg/worldgen/structure_set/illagers/illager_forest_roaming.json @@ -0,0 +1,19 @@ +{ + "structures": [ + { + "structure": "tfg:illagers/forest_roaming", + "weight": 100 + } + ], + "placement": { + "type": "tfc:climate", + "salt": 74256242524, + "spacing": 40, + "separation": 30, + "climate": { + "min_temperature": -12, + "max_temperature": 25, + "min_forest": "edge" + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure_set/illagers/norse_village.json b/kubejs/data/tfg/worldgen/structure_set/illagers/norse_village.json index 007b01c56..3aab480c9 100644 --- a/kubejs/data/tfg/worldgen/structure_set/illagers/norse_village.json +++ b/kubejs/data/tfg/worldgen/structure_set/illagers/norse_village.json @@ -12,12 +12,12 @@ "placement": { "type": "tfc:climate", "salt": 26256356324, - "spacing": 40, - "separation": 30, + "spacing": 60, + "separation": 45, "climate": { "min_temperature": -12, - "max_temperature": 5, - "min_rainfall": 200, + "max_temperature": 2, + "min_rainfall": 250, "max_forest": "edge" } } diff --git a/kubejs/data/tfg/worldgen/structure_set/illagers/yurts_village.json b/kubejs/data/tfg/worldgen/structure_set/illagers/yurts_village.json new file mode 100644 index 000000000..f4ea7425e --- /dev/null +++ b/kubejs/data/tfg/worldgen/structure_set/illagers/yurts_village.json @@ -0,0 +1,21 @@ +{ + "structures": [ + { + "structure": "tfg:illagers/yurts_village_living", + "weight": 100 + } + ], + "placement": { + "type": "tfc:climate", + "salt": 26256356324, + "spacing": 60, + "separation": 45, + "climate": { + "min_temperature": -12, + "max_temperature": 2, + "min_rainfall": 100, + "max_rainfall": 250, + "max_forest": "edge" + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure_set/moon/cheese_ores.json b/kubejs/data/tfg/worldgen/structure_set/moon/cheese_ores.json index 7c0422b12..196bbb2e4 100644 --- a/kubejs/data/tfg/worldgen/structure_set/moon/cheese_ores.json +++ b/kubejs/data/tfg/worldgen/structure_set/moon/cheese_ores.json @@ -7,12 +7,12 @@ ], "placement": { "salt": 486424619, - "spacing": 4, + "spacing": 3, "separation": 1, "type": "minecraft:random_spread", "exclusion_zone": { "other_set": "tfg:moon/meteors", - "chunk_count": 3 + "chunk_count": 6 } } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/structure_set/moon/moon_rabbit_houses.json b/kubejs/data/tfg/worldgen/structure_set/moon/moon_rabbit_houses.json index 1ab645f7a..79d7d2cc9 100644 --- a/kubejs/data/tfg/worldgen/structure_set/moon/moon_rabbit_houses.json +++ b/kubejs/data/tfg/worldgen/structure_set/moon/moon_rabbit_houses.json @@ -12,7 +12,7 @@ "type": "minecraft:random_spread", "exclusion_zone": { "other_set": "tfg:moon/meteors", - "chunk_count": 3 + "chunk_count": 6 } } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/arabic_village_living_buildings.json b/kubejs/data/tfg/worldgen/template_pool/illagers/arabic_village_living_buildings.json new file mode 100644 index 000000000..24102a57f --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/arabic_village_living_buildings.json @@ -0,0 +1,127 @@ +{ + "name": "tfg:illagers/arabic_village_living_buildings", + "fallback": "tfg:illagers/arabic_village_living_paths", + "elements": [ + { + "weight": 100, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:arabic/baseline/house_garden", + "processors": "tfg:illagers/arabic_structures", + "projection": "rigid" + }, + "limit": 2 + } + }, + { + "weight": 100, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:arabic/baseline/smithy", + "processors": "tfg:illagers/arabic_structures", + "projection": "rigid" + }, + "limit": 1 + } + }, + { + "weight": 40, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:arabic/baseline/barracks", + "processors": "tfg:illagers/arabic_structures", + "projection": "rigid" + }, + "limit": 1 + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/house1", + "processors": "tfg:illagers/arabic_structures", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/house2", + "processors": "tfg:illagers/arabic_structures", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/house3", + "processors": "tfg:illagers/arabic_structures", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/house4", + "processors": "tfg:illagers/arabic_structures", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 30, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:arabic/baseline/stall_gray", + "processors": "tfg:illagers/arabic_structures", + "projection": "rigid" + }, + "limit": 2 + } + }, + { + "weight": 30, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:arabic/baseline/stall_green", + "processors": "tfg:illagers/arabic_structures", + "projection": "rigid" + }, + "limit": 2 + } + }, + { + "weight": 30, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:arabic/baseline/stall_yellow", + "processors": "tfg:illagers/arabic_structures", + "projection": "rigid" + }, + "limit": 2 + } + }, + { + "weight": 10, + "element": { + "projection": "rigid", + "element_type": "minecraft:empty_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/arabic_village_living_paths.json b/kubejs/data/tfg/worldgen/template_pool/illagers/arabic_village_living_paths.json new file mode 100644 index 000000000..c1ec84c99 --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/arabic_village_living_paths.json @@ -0,0 +1,94 @@ +{ + "name": "tfg:illagers/arabic_village_living_paths", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/straight_short", + "processors": "tfg:illagers/arabic_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/straight_medium", + "processors": "tfg:illagers/arabic_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/straight_long", + "processors": "tfg:illagers/arabic_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/bend_left", + "processors": "tfg:illagers/arabic_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/bend_right", + "processors": "tfg:illagers/arabic_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/t_junction", + "processors": "tfg:illagers/arabic_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/fork_left", + "processors": "tfg:illagers/arabic_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/fork_right", + "processors": "tfg:illagers/arabic_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 80, + "element": { + "location": "tfg:arabic/baseline/cross", + "processors": "tfg:illagers/arabic_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 10, + "element": { + "projection": "rigid", + "element_type": "minecraft:empty_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/arabic_village_living_start_pool.json b/kubejs/data/tfg/worldgen/template_pool/illagers/arabic_village_living_start_pool.json new file mode 100644 index 000000000..1fb1c3597 --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/arabic_village_living_start_pool.json @@ -0,0 +1,15 @@ +{ + "name": "tfg:illagers/arabic_village_living_start_pool", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:arabic/baseline/well", + "processors": "tfg:illagers/arabic_paths", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/camp_start_pool.json b/kubejs/data/tfg/worldgen/template_pool/illagers/camp_start_pool.json new file mode 100644 index 000000000..520cebad0 --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/camp_start_pool.json @@ -0,0 +1,33 @@ +{ + "name": "tfg:illagers/camp_start_pool", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:illager_generic/small_camp_1", + "processors": "minecraft:empty", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:illager_generic/small_camp_2", + "processors": "minecraft:empty", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:illager_generic/huntmaster_camp", + "processors": "minecraft:empty", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/forest_roaming_start_pool.json b/kubejs/data/tfg/worldgen/template_pool/illagers/forest_roaming_start_pool.json new file mode 100644 index 000000000..003ed5a50 --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/forest_roaming_start_pool.json @@ -0,0 +1,15 @@ +{ + "name": "tfg:illagers/forest_roaming_start_pool", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:illager_generic/gatherers", + "processors": "minecraft:empty", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/mob_beast.json b/kubejs/data/tfg/worldgen/template_pool/illagers/mob_beast.json new file mode 100644 index 000000000..137f09cbc --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/mob_beast.json @@ -0,0 +1,15 @@ +{ + "name": "tfg:illagers/mob_beast", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:illager_generic/mobs/beast", + "processors": "minecraft:empty", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/mob_gatherer.json b/kubejs/data/tfg/worldgen/template_pool/illagers/mob_gatherer.json new file mode 100644 index 000000000..8c6aab2f1 --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/mob_gatherer.json @@ -0,0 +1,24 @@ +{ + "name": "tfg:illagers/mob_gatherer", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:illager_generic/mobs/forager", + "processors": "minecraft:empty", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 70, + "element": { + "location": "tfg:illager_generic/mobs/herbalist", + "processors": "minecraft:empty", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/mob_goat.json b/kubejs/data/tfg/worldgen/template_pool/illagers/mob_goat.json new file mode 100644 index 000000000..45e5aa5ab --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/mob_goat.json @@ -0,0 +1,15 @@ +{ + "name": "tfg:illagers/mob_goat", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:illager_generic/mobs/goat", + "processors": "minecraft:empty", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/mob_horse.json b/kubejs/data/tfg/worldgen/template_pool/illagers/mob_horse.json new file mode 100644 index 000000000..2ecd41ec2 --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/mob_horse.json @@ -0,0 +1,15 @@ +{ + "name": "tfg:illagers/mob_horse", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:illager_generic/mobs/horse", + "processors": "minecraft:empty", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/mob_huntmaster.json b/kubejs/data/tfg/worldgen/template_pool/illagers/mob_huntmaster.json new file mode 100644 index 000000000..fed392c0b --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/mob_huntmaster.json @@ -0,0 +1,15 @@ +{ + "name": "tfg:illagers/mob_huntmaster", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:illager_generic/mobs/huntmaster", + "processors": "minecraft:empty", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/yurts_village_living_buildings.json b/kubejs/data/tfg/worldgen/template_pool/illagers/yurts_village_living_buildings.json new file mode 100644 index 000000000..0362604d3 --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/yurts_village_living_buildings.json @@ -0,0 +1,118 @@ +{ + "name": "tfg:illagers/yurts_village_living_buildings", + "fallback": "tfg:illagers/yurts_village_living_paths", + "elements": [ + { + "weight": 100, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:yurts/baseline/larder", + "processors": "tfg:illagers/yurts_structures", + "projection": "rigid" + }, + "limit": 1 + } + }, + { + "weight": 100, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:yurts/baseline/workshop", + "processors": "tfg:illagers/yurts_structures", + "projection": "rigid" + }, + "limit": 1 + } + }, + { + "weight": 100, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:yurts/baseline/tower", + "processors": "tfg:illagers/yurts_structures", + "projection": "rigid" + }, + "limit": 2 + } + }, + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/house1", + "processors": "tfg:illagers/yurts_structures", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/house2", + "processors": "tfg:illagers/yurts_structures", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/house3", + "processors": "tfg:illagers/yurts_structures", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:yurts/baseline/stable", + "processors": "tfg:illagers/yurts_structures", + "projection": "rigid" + }, + "limit": 2 + } + }, + { + "weight": 100, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:yurts/baseline/shooting_range", + "processors": "tfg:illagers/yurts_structures", + "projection": "rigid" + }, + "limit": 1 + } + }, + { + "weight": 50, + "element": { + "element_type": "lithostitched:limited", + "delegate": { + "element_type": "minecraft:single_pool_element", + "location": "tfg:yurts/baseline/monument", + "processors": "tfg:illagers/yurts_paths", + "projection": "rigid" + }, + "limit": 1 + } + }, + { + "weight": 10, + "element": { + "projection": "rigid", + "element_type": "minecraft:empty_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/yurts_village_living_paths.json b/kubejs/data/tfg/worldgen/template_pool/illagers/yurts_village_living_paths.json new file mode 100644 index 000000000..a7b7d49ea --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/yurts_village_living_paths.json @@ -0,0 +1,94 @@ +{ + "name": "tfg:illagers/yurts_village_living_paths", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/straight_short", + "processors": "tfg:illagers/yurts_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/straight_medium", + "processors": "tfg:illagers/yurts_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/straight_long", + "processors": "tfg:illagers/yurts_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/bend_left", + "processors": "tfg:illagers/yurts_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/bend_right", + "processors": "tfg:illagers/yurts_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/t_junction", + "processors": "tfg:illagers/yurts_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/fork_left", + "processors": "tfg:illagers/yurts_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/fork_right", + "processors": "tfg:illagers/yurts_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 80, + "element": { + "location": "tfg:yurts/baseline/cross", + "processors": "tfg:illagers/yurts_paths", + "projection": "terrain_matching", + "element_type": "minecraft:single_pool_element" + } + }, + { + "weight": 10, + "element": { + "projection": "rigid", + "element_type": "minecraft:empty_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/illagers/yurts_village_living_start_pool.json b/kubejs/data/tfg/worldgen/template_pool/illagers/yurts_village_living_start_pool.json new file mode 100644 index 000000000..c7eff737e --- /dev/null +++ b/kubejs/data/tfg/worldgen/template_pool/illagers/yurts_village_living_start_pool.json @@ -0,0 +1,15 @@ +{ + "name": "tfg:illagers/yurts_village_living_start_pool", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 100, + "element": { + "location": "tfg:yurts/baseline/throne_house", + "processors": "tfg:illagers/yurts_paths", + "projection": "rigid", + "element_type": "minecraft:single_pool_element" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/template_pool/moon/moonbase_hubs.json b/kubejs/data/tfg/worldgen/template_pool/moon/moonbase_hubs.json index 5db8aa6f8..8f8ab06e8 100644 --- a/kubejs/data/tfg/worldgen/template_pool/moon/moonbase_hubs.json +++ b/kubejs/data/tfg/worldgen/template_pool/moon/moonbase_hubs.json @@ -96,7 +96,7 @@ } }, { - "weight": 100, + "weight": 25, "element": { "element_type": "lithostitched:limited", "delegate": { diff --git a/kubejs/data/vintageimprovements/loot_tables/blocks/sulfur_block.json b/kubejs/data/vintageimprovements/loot_tables/blocks/sulfur_block.json new file mode 100644 index 000000000..390c620e6 --- /dev/null +++ b/kubejs/data/vintageimprovements/loot_tables/blocks/sulfur_block.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "name": "loot_pool", + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "gtceu:raw_sulfur", + "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/server_scripts/ad_astra/data.js b/kubejs/server_scripts/ad_astra/data.js index 2ed5e30c5..ad35b45b0 100644 --- a/kubejs/server_scripts/ad_astra/data.js +++ b/kubejs/server_scripts/ad_astra/data.js @@ -13,10 +13,10 @@ function registerTFCDataForAdAstra(event) { event.itemSize('ad_astra:launch_pad', 'very_large', 'very_heavy') event.foodItem('ad_astra:cheese', food => { - food.hunger(4) - food.saturation(12) - food.dairy(5) - food.decayModifier(10) + food.hunger(3) + food.saturation(2) + food.dairy(3) + food.decayModifier(0.9) }) global.AD_ASTRA_WOOD.forEach(wood => { diff --git a/kubejs/server_scripts/ad_astra/recipes.js b/kubejs/server_scripts/ad_astra/recipes.js index 3e7a73a00..b953d9c70 100644 --- a/kubejs/server_scripts/ad_astra/recipes.js +++ b/kubejs/server_scripts/ad_astra/recipes.js @@ -8,426 +8,6 @@ const registerAdAstraRecipes = (event) => { event.remove({ mod: 'ad_astra' }) - //#region Rocket parts - - event.recipes.gtceu.shaped('ad_astra:launch_pad', [ - 'BAB', - 'AAA', - 'BAB' - ], { - A: '#forge:plates/steel', - B: '#forge:rods/steel' - }).addMaterialInfo().id('tfg:launch_pad') - - //#region Tier 1 rocket - - event.recipes.gtceu.assembler('tfg:rocket_nose_cone_t1') - .itemInputs( - 'gtceu:hv_emitter', - ChemicalHelper.get(TagPrefix.plateDense, TFGHelpers.getMaterial('rocket_alloy_t1'), 1), - ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.StainlessSteel, 3)) - .inputFluids(Fluid.of('gtceu:polyethylene', 144 * 16)) - .itemOutputs('ad_astra:rocket_nose_cone') - .duration(1200) - .circuit(2) - .EUt(480) - .addMaterialInfo(true, true) - - - event.recipes.gtceu.pyrolyse_oven('tfg:pyrolyse_vitrified_asbestos_dust') - .inputFluids(Fluid.of('gtceu:nitrogen', 100)) - .itemInputs('gtceu:asbestos_dust') - .itemOutputs('gtceu:vitrified_asbestos_dust') - .duration(80) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.mixer('tfg:rocket_alloy_t1') - .itemInputs('6x #forge:dusts/aluminium', '2x #forge:dusts/stainless_steel') - .inputFluids(Fluid.of('gtceu:red_steel', 144)) - .itemOutputs('9x #forge:dusts/rocket_alloy_t1') - .duration(580) - .circuit(2) - .EUt(480) - - event.recipes.gtceu.chemical_bath('tfg:rocket_alloy_cool_down_water') - .itemInputs('#forge:hot_ingots/rocket_alloy_t1') - .inputFluids(Fluid.of('minecraft:water', 100)) - .itemOutputs('#forge:ingots/rocket_alloy_t1') - .duration(400) - .EUt(120) - - event.recipes.gtceu.chemical_bath('tfg:rocket_alloy_cool_down_distilled_water') - .itemInputs('#forge:hot_ingots/rocket_alloy_t1') - .inputFluids(Fluid.of('gtceu:distilled_water', 100)) - .itemOutputs('#forge:ingots/rocket_alloy_t1') - .duration(250) - .EUt(120) - - event.recipes.gtceu.assembler(`tfg:rocket_fin_t1`) - .itemInputs( - ChemicalHelper.get(TagPrefix.plate, TFGHelpers.getMaterial('rocket_alloy_t1'), 1), - ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.StainlessSteel, 1) - ) - .itemOutputs('ad_astra:rocket_fin') - .duration(150) - .circuit(2) - .EUt(GTValues.VA[GTValues.HV]) - .addMaterialInfo(true) - - - event.recipes.gtceu.assembler('tfg:rocket_steel_engine') - .itemInputs( - ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.StainlessSteel, 2), - '2x #gtceu:circuits/hv', - 'gtceu:hv_electric_pump', - '2x gtceu:power_thruster', - ChemicalHelper.get(TagPrefix.rotor, GTMaterials.StainlessSteel, 1) - ) - .inputFluids(Fluid.of('gtceu:blue_steel', 144 * 8)) - .itemOutputs('ad_astra:steel_engine') - .duration(600) - .circuit(2) - .EUt(GTValues.VA[GTValues.HV]) - .addMaterialInfo(true, true) - - event.recipes.gtceu.assembler('ad_astra:assembler_tier_1_rocket') - .itemInputs( - ChemicalHelper.get(TagPrefix.plateDense, TFGHelpers.getMaterial('rocket_alloy_t1'), 8), - '4x ad_astra:rocket_fin', - '1x ad_astra:steel_engine', - '1x ad_astra:rocket_nose_cone', - '16x #forge:insulation_t1', - '4x #gtceu:circuits/hv' - ) - .inputFluids(Fluid.of('gtceu:silicon', 144 * 16)) - .itemOutputs('ad_astra:tier_1_rocket') - .duration(1200) - .circuit(2) - .EUt(GTValues.VA[GTValues.HV]) - .addMaterialInfo(true, true) - - //#endregion - - - //region tier 2 rocket - - event.remove({ mod: 'gtceu', input: 'gtceu:hot_rocket_alloy_t2_ingot' }) - - event.recipes.gtceu.alloy_blast_smelter('gtceu:alloy_blast_smelter/rocket_alloy_t2') - .itemInputs('19x #forge:dusts/titanium', '3x #forge:dusts/chromium', '3x #forge:dusts/tin', '3x #forge:dusts/aluminium') - .inputFluids(Fluid.of('gtceu:vanadium', 144 * 4), Fluid.of('gtceu:distilled_water', 16000)) - .outputFluids(Fluid.of('gtceu:molten_rocket_alloy_t2', 144 * 32)) - .duration(1320 * 20) - .circuit(2) - .blastFurnaceTemp(3200) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.alloy_blast_smelter('gtceu:alloy_blast_smelter/rocket_alloy_t2_gas') - .itemInputs('19x #forge:dusts/titanium', '3x #forge:dusts/chromium', '3x #forge:dusts/tin', '3x #forge:dusts/aluminium') - .inputFluids(Fluid.of('gtceu:vanadium', 144 * 4), Fluid.of('gtceu:distilled_water', 16000), Fluid.of('gtceu:helium', 3200)) - .outputFluids(Fluid.of('gtceu:molten_rocket_alloy_t2', 144 * 32)) - .duration(17688) - .circuit(12) - .blastFurnaceTemp(3200) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.vacuum_freezer('tfg:vacuum_freezer/cool_molten_rocket_alloy_t2') - .notConsumable('gtceu:ingot_casting_mold') - .inputFluids(Fluid.of('gtceu:molten_rocket_alloy_t2', 144), Fluid.of('tfg:cryogenized_fluix', 288)) - .itemOutputs('#forge:ingots/rocket_alloy_t2') - .duration(120) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.mixer('tfg:rocket_alloy_t2') - .itemInputs('19x #forge:dusts/titanium', '3x #forge:dusts/chromium', '3x #forge:dusts/tin', '3x #forge:dusts/aluminium') - .inputFluids(Fluid.of('gtceu:vanadium', 144 * 4)) - .itemOutputs('32x #forge:dusts/rocket_alloy_t2') - .duration(15 * 20) - .circuit(5) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.vacuum_freezer('tfg:vacuum_freezer/cool_rocket_alloy_t2') - .itemInputs('#forge:hot_ingots/rocket_alloy_t2') - .inputFluids(Fluid.of('gtceu:distilled_water', 500), Fluid.of('tfg:cryogenized_fluix', 288)) - .itemOutputs('#forge:ingots/rocket_alloy_t2') - .duration(120) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.assembler('tfg:rocket_fin_t2') - .itemInputs('#forge:plates/rocket_alloy_t2', - '#forge:double_plates/titanium') - .itemOutputs('tfg:rocket_fin_t2') - .duration(180) - .circuit(3) - .EUt(GTValues.VA[GTValues.EV]) - .addMaterialInfo(true) - - event.recipes.gtceu.assembler('tfg:rocket_cone_t2') - .itemInputs('gtceu:ev_emitter', '#forge:dense_plates/rocket_alloy_t2', '#forge:double_plates/titanium', - '#forge:double_plates/desh') - .itemOutputs('tfg:rocket_cone_t2') - .duration(1440) - .circuit(3) - .EUt(GTValues.VA[GTValues.EV]) - .addMaterialInfo(true) - - - event.recipes.gtceu.assembler('tfg:rocket_desh_engine') - .itemInputs( - ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.Titanium, 4), - '2x #gtceu:circuits/ev', - 'gtceu:ev_electric_pump', - '3x gtceu:advanced_power_thruster', - ChemicalHelper.get(TagPrefix.rod, GTMaterials.NeodymiumMagnetic, 4), - ChemicalHelper.get(TagPrefix.rotor, GTMaterials.Titanium, 1)) - .inputFluids(Fluid.of('gtceu:desh', 144 * 12)) - .itemOutputs('ad_astra:desh_engine') - .duration(800) - .circuit(3) - .EUt(GTValues.VA[GTValues.EV]) - .addMaterialInfo(true, true) - - event.recipes.gtceu.assembler('ad_astra:tier_2_rocket') - .itemInputs( - ChemicalHelper.get(TagPrefix.plateDense, TFGHelpers.getMaterial('rocket_alloy_t2'), 12), - '4x tfg:rocket_fin_t2', - '1x ad_astra:desh_engine', - '1x tfg:rocket_cone_t2', - '12x #forge:insulation_t2/roll', - '4x #gtceu:circuits/ev' - ) - .inputFluids(Fluid.of('gtceu:titanium', 144 * 16)) - .itemOutputs('ad_astra:tier_2_rocket') - .duration(1440) - .circuit(3) - .EUt(GTValues.VA[GTValues.EV]) - .addMaterialInfo(true, true) - - //#endregion - - //region Tier 3 DISABLED UNTIL IV - event.remove({ id: "gtceu:vacuum_freezer/cool_hot_rocket_alloy_t3_ingot" }) - event.remove({ id: "gtceu:vacuum_freezer/rocket_alloy_t3" }) - /* - event.recipes.gtceu.vacuum_freezer('tfg:cool_rocket_alloy_t3') - .inputFluids(Fluid.of('gtceu:molten_rocket_alloy_t3', 144), Fluid.of('gtceu:ice', 4000)) - .notConsumable('gtceu:ingot_casting_mold') - .itemOutputs('#forge:ingots/rocket_alloy_t3') - .duration(800) - .EUt(GTValues.VA[GTValues.HV]) - event.recipes.gtceu.vacuum_freezer('tfg:cool_hot_rocket_alloy_t3') - .itemInputs('#forge:hot_ingots/rocket_alloy_t3') - .inputFluids(Fluid.of('gtceu:liquid_helium', 500)) - .itemOutputs('#forge:ingots/rocket_alloy_t3') - .outputFluids(Fluid.of('gtceu:helium', 250)) - .duration(400) - .EUt(GTValues.VA[GTValues.HV]) - - //Add some unique cooling thing for molten ingots - - event.recipes.gtceu.assembler('tfg:rocket_fin_t3') - .itemInputs('#forge:plates/rocket_alloy_t3', '#forge:double_plates/tungsten_steel') - .itemOutputs('tfg:rocket_fin_t3') - .duration(220) - .circuit(4) - .EUt(GTValues.VA[GTValues.IV]) - .addMaterialInfo(true) - - event.recipes.gtceu.assembler('tfg:rocket_cone_t3') - .itemInputs('gtceu:iv_emitter', '#forge:dense_plates/rocket_alloy_t3', '#forge:double_plates/tungsten_steel', - '#forge:double_plates/ostrum', 'gtceu:plutonium_nugget') //change this to the pellet - .itemOutputs('tfg:rocket_cone_t3') - .duration(1700) - .circuit(4) - .EUt(GTValues.VA[GTValues.IV]) - .addMaterialInfo(true) - - event.recipes.gtceu.assembler('tfg:elite_power_thruster') - .itemInputs('gtceu:ev_electric_motor', '2x #forge:rings/titanium', '#forge:rods/titanium', - 'gtceu:ultimet_rotor', '2x gtceu:aluminium_single_cable') - .itemOutputs('tfg:elite_power_thruster') - .duration(200) - .EUt(GTValues.VA[GTValues.LV]) - .addMaterialInfo(true) - - event.recipes.gtceu.assembler('tfg:rocket_ostrum_engine') - .itemInputs( - '6x #forge:double_plates/tungsten_steel', - '4x #gtceu:circuits/iv', - 'gtceu:iv_electric_pump', - '3x tfg:elite_power_thruster', - '4x #forge:insulation_t3/cryo', - '6x #forge:rods/magnetic_neodymium', - '#forge:rotors/tungsten_steel') - .inputFluids(Fluid.of('gtceu:ostrum', 144 * 16)) - .itemOutputs('ad_astra:ostrum_engine') - .duration(960) - .circuit(4) - .EUt(GTValues.VA[GTValues.IV]) - .addMaterialInfo(true, true) - - event.recipes.gtceu.assembler('tfg:rocket_ostrum_tank') - .itemInputs( - '4x #forge:double_plates/rocket_alloy_t3', - 'gtceu:iv_electric_pump', - 'tfg:elite_power_thruster', - '2x #forge:insulation_t3/cryo') - .inputFluids(Fluid.of('gtceu:ostrum', 144 * 4)) - .itemOutputs('ad_astra:ostrum_tank') - .duration(400) - .circuit(4) - .EUt(GTValues.VA[GTValues.IV]) - .addMaterialInfo(true, true) - - event.recipes.gtceu.assembler('ad_astra:tier_3_rocket') - .itemInputs( - '16x #forge:dense_plates/rocket_alloy_t3', - '4x tfg:rocket_fin_t3', - '1x ad_astra:ostrum_engine', - '2x ad_astra:ostrum_tank', - '1x tfg:rocket_cone_t3', - '8x #forge:insulation_t3/sheet' - ) - .inputFluids(Fluid.of('gtceu:bromine', 1000 * 16)) - .itemOutputs('ad_astra:tier_3_rocket') - .duration(1700) - .circuit(4) - .EUt(GTValues.VA[GTValues.IV]) - .addMaterialInfo(true, true) - - //#endregion -*/ - //#region space suits NETHERITE STUFF DISABLED UNTIL IV - - event.recipes.gtceu.forming_press('space_suit_fabric') - .itemInputs( - '#forge:foils/aluminium', - 'gtceu:carbon_fiber_mesh', - '#forge:foils/silicone_rubber', - 'tfg:polycaprolactam_fabric' - ) - .itemOutputs('2x tfg:space_suit_fabric') - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.HV]) - .addMaterialInfo(true) - - event.recipes.gtceu.forming_press('better_space_suit_fabric') - .itemInputs( - '#forge:foils/polybenzimidazole', - 'gtceu:carbon_fiber_mesh', - '#forge:aerogels', - 'tfg:glacian_wool' - ) - .itemOutputs('2x tfg:better_space_suit_fabric') - .duration(20 * 5) - .EUt(GTValues.VA[GTValues.IV]) - .addMaterialInfo(true) - - event.recipes.gtceu.shaped('ad_astra:space_helmet', [ - 'AAA', - 'ADA', - 'BBB' - ], { - A: 'gtceu:tempered_glass', - B: 'tfg:space_suit_fabric', - D: '#forge:small_fluid_pipes/polyethylene' - }).addMaterialInfo().id('tfg:space_helmet') - - event.recipes.gtceu.assembler('ad_astra:netherite_space_helmet') - .itemInputs( - 'ad_astra:space_helmet', - '2x #forge:plates/tungsten_steel', - '1x #forge:plates/ostrum', - '3x tfg:better_space_suit_fabric', - '5x gtceu:laminated_glass' - ) - .itemOutputs('ad_astra:netherite_space_helmet') - .duration(400) - .EUt(GTValues.VA[GTValues.IV]) - .addMaterialInfo(true) - - event.recipes.gtceu.shaped('ad_astra:space_suit', [ - 'B B', - 'BDB', - 'BBB' - ], { - B: 'tfg:space_suit_fabric', - D: 'ad_astra:oxygen_gear' - }).addMaterialInfo().id('tfg:space_suit') - - 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', - '3x #forge:plates/tungsten_steel', - '2x #forge:plates/ostrum', - '5x tfg:better_space_suit_fabric' - ) - .itemOutputs('ad_astra:netherite_space_suit') - .duration(400) - .EUt(GTValues.VA[GTValues.IV]) - .addMaterialInfo(true) - - event.shapeless('ad_astra:netherite_space_suit', ['ad_astra:netherite_space_suit']) - .id('tfg:empty_netherite_space_suit') - - event.recipes.gtceu.shaped('ad_astra:space_pants', [ - 'BAB', - 'B B', - 'B B' - ], { - A: 'gtceu:hv_electric_motor', - B: 'tfg:space_suit_fabric', - }).addMaterialInfo().id('tfg:space_pants') - - event.recipes.gtceu.assembler('ad_astra:netherite_space_pants') - .itemInputs( - 'ad_astra:space_pants', - '2x #forge:plates/tungsten_steel', - '2x #forge:plates/ostrum', - '4x tfg:better_space_suit_fabric' - ) - .itemOutputs('ad_astra:netherite_space_pants') - .duration(400) - .EUt(GTValues.VA[GTValues.IV]) - .addMaterialInfo(true) - - event.recipes.gtceu.shaped('ad_astra:space_boots', [ - 'B B', - 'A A' - ], { - A: '#forge:plates/polyphenylene_sulfide', - B: 'tfg:space_suit_fabric' - }).addMaterialInfo().id('tfg:space_boots') - - event.recipes.gtceu.assembler('ad_astra:netherite_space_boots') - .itemInputs( - 'ad_astra:space_boots', - '1x #forge:plates/tungsten_steel', - '1x #forge:plates/ostrum', - '2x tfg:better_space_suit_fabric' - ) - .itemOutputs('ad_astra:netherite_space_boots') - .duration(400) - .EUt(GTValues.VA[GTValues.IV]) - .addMaterialInfo(true) - - - event.recipes.gtceu.shaped('ad_astra:oxygen_gear', [ - 'BAB', - 'ECE', - 'BDB' - ], { - A: '#gtceu:circuits/hv', - B: '#forge:tiny_fluid_pipes/stainless_steel', - C: 'gtceu:hv_electric_pump', - D: 'gtceu:fluid_detector_cover', - E: 'ad_astra:gas_tank' - }).addMaterialInfo().id('tfg:oxygen_gear') - - //#endregion //#region Gas tanks @@ -708,7 +288,7 @@ const registerAdAstraRecipes = (event) => { //#region Decoration blocks global.MINECRAFT_DYE_NAMES.forEach(color => { - event.shaped(`ad_astra:${color}_industrial_lamp`, [ + event.shaped(`2x ad_astra:${color}_industrial_lamp`, [ ' N ', 'DTD', ' P ' @@ -720,7 +300,7 @@ const registerAdAstraRecipes = (event) => { }) .id(`tfg:shaped/ad_astra_${color}_industrial_lamp`); - event.shaped(`ad_astra:small_${color}_industrial_lamp`, [ + event.shaped(`2x ad_astra:small_${color}_industrial_lamp`, [ ' N ', 'DTD', ' P ' @@ -919,28 +499,6 @@ const registerAdAstraRecipes = (event) => { event.stonecutting('ad_astra:encased_etrium_block', '#tfg:ad_astra_etrium_blocks') event.stonecutting('ad_astra:etrium_plateblock', '#tfg:ad_astra_etrium_blocks') - event.recipes.tfc.loom( - '8x ad_astra:glacian_fur', - '8x tfg:glacian_wool', - 8, - 'ad_astra:block/glacian_fur' - ) - - event.recipes.gtceu.assembler('tfg:assembler/glacian_fur') - .itemInputs('tfg:glacian_wool') - .circuit(10) - .itemOutputs('ad_astra:glacian_fur') - .duration(100) - .EUt(4) - - event.shaped('minecraft:pink_bed', [ - 'AAA', - 'BBB' - ], { - A: 'ad_astra:glacian_fur', - B: '#tfc:lumber' - }).id('tfg:shaped/glacian_bed') - //#endregion //#region Space stations @@ -949,10 +507,10 @@ const registerAdAstraRecipes = (event) => { type: "ad_astra:space_station_recipe", dimension: "ad_astra:earth_orbit", ingredients: [ - { count: 43, ingredient: { item: "gtceu:aluminium_frame" }}, - { count: 24, ingredient: { item: "gtceu:glass_plate" }}, - { count: 4, ingredient: { item: "minecraft:glowstone_dust" }}, - { count: 1, ingredient: { item: "ad_astra:launch_pad" }} + { count: 43, ingredient: { item: "gtceu:aluminium_frame" } }, + { count: 24, ingredient: { item: "gtceu:glass_plate" } }, + { count: 4, ingredient: { item: "minecraft:glowstone_dust" } }, + { count: 1, ingredient: { item: "ad_astra:launch_pad" } } ], structure: "tfg:orbit/space_station" }) @@ -961,10 +519,10 @@ const registerAdAstraRecipes = (event) => { type: "ad_astra:space_station_recipe", dimension: "ad_astra:moon_orbit", ingredients: [ - { count: 43, ingredient: { item: "gtceu:aluminium_frame" }}, - { count: 24, ingredient: { item: "gtceu:glass_plate" }}, - { count: 4, ingredient: { item: "minecraft:glowstone_dust" }}, - { count: 1, ingredient: { item: "ad_astra:launch_pad" }} + { count: 43, ingredient: { item: "gtceu:aluminium_frame" } }, + { count: 24, ingredient: { item: "gtceu:glass_plate" } }, + { count: 4, ingredient: { item: "minecraft:glowstone_dust" } }, + { count: 1, ingredient: { item: "ad_astra:launch_pad" } } ], structure: "tfg:orbit/space_station" }) @@ -973,10 +531,46 @@ const registerAdAstraRecipes = (event) => { type: "ad_astra:space_station_recipe", dimension: "ad_astra:mars_orbit", ingredients: [ - { count: 43, ingredient: { item: "gtceu:aluminium_frame" }}, - { count: 24, ingredient: { item: "gtceu:glass_plate" }}, - { count: 4, ingredient: { item: "minecraft:glowstone_dust" }}, - { count: 1, ingredient: { item: "ad_astra:launch_pad" }} + { count: 43, ingredient: { item: "gtceu:aluminium_frame" } }, + { count: 24, ingredient: { item: "gtceu:glass_plate" } }, + { count: 4, ingredient: { item: "minecraft:glowstone_dust" } }, + { count: 1, ingredient: { item: "ad_astra:launch_pad" } } + ], + structure: "tfg:orbit/space_station" + }) + + event.custom({ + type: "ad_astra:space_station_recipe", + dimension: "ad_astra:venus_orbit", + ingredients: [ + { count: 43, ingredient: { item: "gtceu:aluminium_frame" } }, + { count: 24, ingredient: { item: "gtceu:glass_plate" } }, + { count: 4, ingredient: { item: "minecraft:glowstone_dust" } }, + { count: 1, ingredient: { item: "ad_astra:launch_pad" } } + ], + structure: "tfg:orbit/space_station" + }) + + event.custom({ + type: "ad_astra:space_station_recipe", + dimension: "ad_astra:mercury_orbit", + ingredients: [ + { count: 43, ingredient: { item: "gtceu:aluminium_frame" } }, + { count: 24, ingredient: { item: "gtceu:glass_plate" } }, + { count: 4, ingredient: { item: "minecraft:glowstone_dust" } }, + { count: 1, ingredient: { item: "ad_astra:launch_pad" } } + ], + structure: "tfg:orbit/space_station" + }) + + event.custom({ + type: "ad_astra:space_station_recipe", + dimension: "ad_astra:glacio_orbit", + ingredients: [ + { count: 43, ingredient: { item: "gtceu:aluminium_frame" } }, + { count: 24, ingredient: { item: "gtceu:glass_plate" } }, + { count: 4, ingredient: { item: "minecraft:glowstone_dust" } }, + { count: 1, ingredient: { item: "ad_astra:launch_pad" } } ], structure: "tfg:orbit/space_station" }) @@ -984,45 +578,12 @@ const registerAdAstraRecipes = (event) => { //#endregion //#region Wood - event.remove({ type: 'greate:cutting', input: '#ad_astra:aeronos_caps' }) - event.remove({ type: 'greate:cutting', input: 'ad_astra:aeronos_planks' }) - event.remove({ type: 'greate:cutting', input: '#ad_astra:strophar_caps' }) - event.remove({ type: 'greate:cutting', input: 'ad_astra:glacian_log' }) - event.remove({ type: 'greate:cutting', input: 'ad_astra:stripped_glacian_log' }) - event.remove({ type: 'greate:cutting', input: 'ad_astra:strophar_planks' }) - event.remove({ type: 'greate:cutting', input: 'ad_astra:glacian_planks' }) - - global.AD_ASTRA_WOOD.forEach(wood => { - woodBuilder(event, wood.name, wood.lumber, wood.logs, wood.log, wood.stripped_log, wood.plank, wood.stair, wood.slab, wood.door, wood.trapdoor, wood.fence, wood.fence_gate, wood.support, wood.pressure_plate, wood.button) - }) - - event.shaped('16x ad_astra:aeronos_ladder', [ - 'A A', - 'ABA', - 'A A' - ], { - A: 'tfg:wood/lumber/aeronos', - B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Wood, 1), - }).id('tfg:shaped/aeronos_ladder') - - event.shaped('16x ad_astra:strophar_ladder', [ - 'A A', - 'ABA', - 'A A' - ], { - A: 'tfg:wood/lumber/strophar', - B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Wood, 1), - }).id('tfg:shaped/strophar_ladder') - - - generateGreenHouseRecipe(event, '8x tfg:saplings/strophar', 'tfg:semiheavy_ammoniacal_water', 16000, - '64x ad_astra:strophar_stem', 'tfg:green_house/strophar_mushroom', 'ad_astra:mars', 8, - '16x ad_astra:strophar_cap', GTValues.VA[GTValues.MV]) - generateGreenHouseRecipe(event, '8x tfg:saplings/aeronos', 'tfg:semiheavy_ammoniacal_water', 16000, - '64x ad_astra:aeronos_stem', 'tfg:green_house/aeronos_mushroom', 'ad_astra:mars', 8, - '16x ad_astra:aeronos_cap', GTValues.VA[GTValues.MV]) - generateGreenHouseRecipe(event, '8x tfg:saplings/glacian', 'tfg:semiheavy_ammoniacal_water', 16000, - '64x ad_astra:glacian_log', 'tfg:green_house/glacian_tree', 'ad_astra:mars', 8, - '8x species:alphacene_moss_block', GTValues.VA[GTValues.MV]) + event.remove({ type: 'greate:cutting', input: '#ad_astra:aeronos_caps' }) + event.remove({ type: 'greate:cutting', input: 'ad_astra:aeronos_planks' }) + event.remove({ type: 'greate:cutting', input: '#ad_astra:strophar_caps' }) + event.remove({ type: 'greate:cutting', input: 'ad_astra:glacian_log' }) + event.remove({ type: 'greate:cutting', input: 'ad_astra:stripped_glacian_log' }) + event.remove({ type: 'greate:cutting', input: 'ad_astra:strophar_planks' }) + event.remove({ type: 'greate:cutting', input: 'ad_astra:glacian_planks' }) //#endregion } diff --git a/kubejs/server_scripts/ad_astra/tags.js b/kubejs/server_scripts/ad_astra/tags.js index 8fc5deab9..681fe511a 100644 --- a/kubejs/server_scripts/ad_astra/tags.js +++ b/kubejs/server_scripts/ad_astra/tags.js @@ -11,7 +11,6 @@ const registerAdAstraFluidTags = (event) => { // Using this to represent 'breathable air' instead of oxygen event.removeAllTagsFrom('ad_astra:oxygen') - event.removeAll('ad_astra:fuel') event.removeAll('ad_astra:efficient_fuel') @@ -32,7 +31,10 @@ const registerAdAstraFluidTags = (event) => { event.add('ad_astra:freezes_in_space', 'tfc:spring_water') event.add('ad_astra:evaporates_in_space', 'tfc:salt_water') event.add('ad_astra:evaporates_in_space', 'tfc:spring_water') - event.add('ad_astra:evaporates_in_space', '#tfc:alcohols') + event.add('ad_astra:evaporates_in_space', '#tfg:alcohols') + event.add('ad_astra:evaporates_in_space', '#tfc:milks') + event.add('ad_astra:evaporates_in_space', '#tfc:dyes') + event.add('ad_astra:evaporates_in_space', '#tfc:drinkables') global.BREATHABLE_COMPRESSED_AIRS.forEach(x => { event.add('ad_astra:zip_gun_propellants', x) @@ -49,38 +51,6 @@ const registerAdAstraItemTags = (event) => { 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') - event.add('forge:cobblestone', 'ad_astra:venus_cobblestone') - event.add('forge:cobblestone', 'ad_astra:mercury_cobblestone') - event.add('forge:cobblestone', 'ad_astra:glacio_cobblestone') - - // Insulation Tier 1 - event.add('forge:insulation_t1', 'gtceu:borosilicate_glass_dust') - event.add('forge:insulation_t1', 'gtceu:vitrified_asbestos_dust') - - //Insulation Tier 2 - event.add('forge:insulation_t2/sheet', 'tfg:aes_insulation_sheet') - event.add('forge:insulation_t2/roll', 'tfg:aes_insulation_roll') - - //Insulation Tier3 - event.add('forge:insulation_t3/foam', 'tfg:aes_polyurethane') - event.add('forge:insulation_t3/sheet', 'tfg:mli_shielding') - event.add('forge:insulation_t3/cryo', 'tfg:silica_aerogel') - - event.add('forge:aerogels', 'tfg:silica_aerogel') - - //Rocket Engines - event.add('ad_astra:rocket_engine', 'ad_astra:steel_engine') - event.add('ad_astra:rocket_engine', 'ad_astra:desh_engine') - event.add('ad_astra:rocket_engine', 'ad_astra:ostrum_engine') - - //Rocket Tank - event.add('ad_astra:rocket_tank', 'ad_astra:ostrum_tank') - // Deco blocks const DECO_BLOCKS = [ 'iron', 'steel', 'desh', 'calorite', 'ostrum' ]; DECO_BLOCKS.forEach(block => { @@ -97,46 +67,6 @@ const registerAdAstraItemTags = (event) => { event.add('tfg:ad_astra_etrium_blocks', 'ad_astra:encased_etrium_block') event.add('tfg:ad_astra_etrium_blocks', 'ad_astra:etrium_plateblock') event.add('tfg:ad_astra_etrium_blocks', 'ad_astra:etrium_panel') - - event.add('tfc:foods', 'ad_astra:cheese') - event.add('tfc:foods/dairy', 'ad_astra:cheese') - event.add('tfc:foods/usable_in_sandwich', 'ad_astra:cheese') - event.add('tfc:foods/usable_in_jam_sandwich', 'ad_astra:cheese') - event.add('tfc:foods/usable_in_jam_sandwich_2', 'ad_astra:cheese') - 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') - - event.add('tfc:compost_greens', 'ad_astra:aeronos_cap') - event.add('tfc:compost_greens', 'ad_astra:strophar_cap') - - // these are log tags - event.remove('ad_astra:aeronos_caps', 'ad_astra:aeronos_cap') - event.remove('ad_astra:strophar_caps', 'ad_astra:strophar_cap') - event.add('minecraft:wart_blocks', 'ad_astra:aeronos_cap') - event.add('minecraft:wart_blocks', 'ad_astra:strophar_cap') - - event.add('tfc:makes_tannin', '#ad_astra:glacian_logs') - event.add('tfc:makes_tannin', '#tfc:crimson_logs') - event.add('tfc:makes_tannin', '#tfc:warped_logs') global.AD_ASTRA_WOOD.forEach(wood => { @@ -156,7 +86,6 @@ const registerAdAstraItemTags = (event) => { event.add('tfg:softwood', wood.logs) } }) - } const registerAdAstraBlockTags = (event) => { @@ -166,220 +95,6 @@ const registerAdAstraBlockTags = (event) => { event.add('c:hidden_from_recipe_viewers', item) }) - // All new stones - global.EXTRATERRESTRIAL_RAW_ROCKS.forEach(rock => { - event.add('forge:stone', rock) - event.add('tfc:breaks_when_isolated', rock) - event.add('tfc:rock/raw', rock) - event.add('minecraft:mineable/pickaxe', rock) - event.add('tfc:can_carve', rock) - // Collapse tags also require a collapse recipe to work. - // Don't add the recipe if you don't want them to actually collapse! - event.add('tfc:can_collapse', rock) - event.add('tfc:can_trigger_collapse', rock) - event.add('tfc:can_start_collapse', rock) - event.add('tfc:powderkeg_breaking_blocks', rock) - event.add('tfc:bloomery_insulation', rock) - event.add('firmalife:oven_insulation', rock) - event.add('tfc:forge_insulation', rock) - }) - - global.EXTRATERRESTRIAL_HARDENED_ROCKS.forEach(rock => { - event.add('minecraft:mineable/pickaxe', rock) - event.add('tfc:can_collapse', rock) - event.add('tfc:can_trigger_collapse', rock) - event.add('tfc:powderkeg_breaking_blocks', rock) - event.add('tfc:bloomery_insulation', rock) - event.add('firmalife:oven_insulation', rock) - event.add('tfc:forge_insulation', rock) - event.add('tfc:can_carve', rock) - }) - - // Moon - event.add('ad_astra:moon_stone_replaceables', 'ad_astra:moon_sand') - event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/hardened_moon_stone') - event.add('ad_astra:moon_stone_replaceables', 'tfc:sand/white') - event.add('ad_astra:moon_stone_replaceables', 'tfc:sand/black') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/diorite') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/gabbro') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/basalt') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/rhyolite') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/andesite') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/dacite') - event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/gravel_moon') - event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/gravel_moon_deepslate') - event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/gravel_glacio') - event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/hardened_moon_deepslate') - event.add('ad_astra:moon_stone_replaceables', 'ad_astra:glacio_stone') - event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/hardened_glacio_stone') - event.add('ad_astra:moon_stone_replaceables', 'ad_astra:glacio_cobblestone') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/basalt') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/basalt') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/gabbro') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/gabbro') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/diorite') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/diorite') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/rhyolite') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/rhyolite') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/andesite') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/andesite') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/dacite') - event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/dacite') - - // Mars - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/dacite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/dacite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/dacite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/basalt') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/basalt') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/basalt') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/gabbro') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/gabbro') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/gabbro') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/diorite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/diorite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/diorite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/rhyolite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/rhyolite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/rhyolite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/andesite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/andesite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/andesite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/chert') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/chert') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/chert') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/conglomerate') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/conglomerate') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/conglomerate') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/claystone') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/claystone') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/claystone') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/limestone') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/limestone') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/limestone') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/dolomite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/dolomite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/dolomite') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/shale') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/shale') - event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/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', 'tfg:rock/gravel_mars') - 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', 'tfg:rock/hardened_venus_stone') - event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/gravel_venus') - event.add('ad_astra:mars_stone_replaceables', 'gtceu:red_granite') - event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/hardened_red_granite') - event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/gravel_red_granite') - event.add('ad_astra:mars_stone_replaceables', 'create:ochrum') - event.add('tfg:mars_soil', 'minecraft:red_sand') - event.add('tfg:mars_soil', 'ad_astra:mars_sand') - event.add('tfg:mars_soil', 'ad_astra:venus_sand') - event.add('tfg:mars_soil', 'tfg:rock/gravel_venus') - event.add('tfg:mars_soil', 'tfg:rock/gravel_mars') - event.add('tfg:mars_soil', 'tfc:rock/gravel/dacite') - event.add('tfg:mars_soil', 'tfc:rock/gravel/basalt') - event.add('tfg:mars_soil', 'tfc:rock/gravel/gabbro') - event.add('tfg:mars_soil', 'tfc:rock/gravel/diorite') - event.add('tfg:mars_soil', 'tfc:rock/gravel/rhyolite') - event.add('tfg:mars_soil', 'tfc:rock/gravel/andesite') - event.add('tfg:mars_soil', 'tfc:rock/gravel/conglomerate') - event.add('tfg:mars_soil', 'tfc:rock/gravel/claystone') - event.add('tfg:mars_soil', 'tfc:rock/gravel/limestone') - event.add('tfg:mars_soil', 'tfc:rock/gravel/dolomite') - event.add('tfg:mars_soil', 'tfc:rock/gravel/shale') - event.add('tfg:mars_soil', 'tfc:sand/black') - 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/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') - event.add('minecraft:animals_spawnable_on', '#tfg:mars_plants') - event.add('minecraft:valid_spawn', '#minecraft:animals_spawnable_on') - - event.add('tfc:can_carve', '#ad_astra:moon_stone_replaceables') - event.add('tfc:can_carve', '#ad_astra:mars_stone_replaceables') - - event.add('minecraft:rabbits_spawnable_on', '#ad_astra:moon_stone_replaceables') - event.add('species:limpet_spawnable_on', '#ad_astra:moon_stone_replaceables') - - event.add('tfc:can_landslide', 'ad_astra:moon_sand') - event.add('tfc:can_landslide', 'ad_astra:mars_sand') - event.add('tfc:can_landslide', 'ad_astra:venus_sand') - event.add('tfc:can_landslide', 'minecraft:red_sand') - - event.add('tfc:can_landslide', 'ad_astra:moon_cobblestone') - event.add('tfc:can_landslide', 'ad_astra:mars_cobblestone') - event.add('tfc:can_landslide', 'ad_astra:venus_cobblestone') - event.add('tfc:can_landslide', 'ad_astra:mercury_cobblestone') - event.add('tfc:can_landslide', 'ad_astra:glacio_cobblestone') - event.add('tfc:can_landslide', 'gtceu:red_granite_cobblestone') - - event.add('forge:cobblestone', 'ad_astra:moon_cobblestone') - event.add('forge:cobblestone', 'ad_astra:mars_cobblestone') - event.add('forge:cobblestone', 'ad_astra:venus_cobblestone') - event.add('forge:cobblestone', 'ad_astra:mercury_cobblestone') - event.add('forge:cobblestone', 'ad_astra:glacio_cobblestone') - - event.add('tfc:can_landslide', 'ad_astra:moon_cobblestone_slab') - event.add('tfc:can_landslide', 'ad_astra:mars_cobblestone_slab') - event.add('tfc:can_landslide', 'ad_astra:venus_cobblestone_slab') - event.add('tfc:can_landslide', 'ad_astra:mercury_cobblestone_slab') - event.add('tfc:can_landslide', 'ad_astra:glacio_cobblestone_slab') - - event.add('tfc:can_landslide', 'ad_astra:moon_cobblestone_stairs') - event.add('tfc:can_landslide', 'ad_astra:mars_cobblestone_stairs') - event.add('tfc:can_landslide', 'ad_astra:venus_cobblestone_stairs') - event.add('tfc:can_landslide', 'ad_astra:mercury_cobblestone_stairs') - event.add('tfc:can_landslide', 'ad_astra:glacio_cobblestone_stairs') - - event.add('tfg:rock_stairs', 'ad_astra:moon_stone_stairs') - event.add('tfg:rock_stairs', 'ad_astra:mars_stone_stairs') - event.add('tfg:rock_stairs', 'ad_astra:venus_stone_stairs') - event.add('tfg:rock_stairs', 'ad_astra:mercury_stone_stairs') - event.add('tfg:rock_stairs', 'ad_astra:glacio_stone_stairs') - - event.add('tfg:rock_slabs', 'ad_astra:moon_stone_slab') - event.add('tfg:rock_slabs', 'ad_astra:mars_stone_slab') - event.add('tfg:rock_slabs', 'ad_astra:venus_stone_slab') - event.add('tfg:rock_slabs', 'ad_astra:mercury_stone_slab') - event.add('tfg:rock_slabs', 'ad_astra:glacio_stone_slab') - - event.add('ad_astra:destroyed_in_space', '#tfc:wild_fruits') - event.add('ad_astra:destroyed_in_space', '#minecraft:saplings') - - 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', 'tfg:glacian_leaves') - event.add('tfg:heightmap_ignore', 'betterend:glacian_hymenophore') - event.add('tfg:heightmap_ignore', 'species:alphacene_moss_block') - event.add('tfg:heightmap_ignore', 'minecraft:ice') - - event.add('tfc:can_be_snow_piled', 'ad_astra:aeronos_mushroom') - event.add('tfc:can_be_snow_piled', 'ad_astra:strophar_mushroom') - global.AD_ASTRA_WOOD.forEach(wood => { if (wood.log) { @@ -392,286 +107,23 @@ const registerAdAstraBlockTags = (event) => { event.add('minecraft:logs_that_burn', wood.stripped_log) } }) + const DECO_BLOCKS = [ 'iron', 'steel', 'desh', 'calorite', 'ostrum' ]; + DECO_BLOCKS.forEach(block => { + event.add(`tfg:ad_astra_${block}_block`, `ad_astra:${block}_factory_block`) + event.add(`tfg:ad_astra_${block}_block`, `ad_astra:${block}_plating`) + event.add(`tfg:ad_astra_${block}_block`, `ad_astra:${block}_panel`) + event.add(`tfg:ad_astra_${block}_block`, `ad_astra:${block}_pillar`) + event.add(`tfg:ad_astra_${block}_block`, `ad_astra:${block}_plateblock`) + event.add(`tfg:ad_astra_${block}_block`, `ad_astra:encased_${block}_block`) + }) + + event.add('tfg:ad_astra_etrium_block', 'ad_astra:etrium_factory_block') + event.add('tfg:ad_astra_etrium_block', 'ad_astra:encased_etrium_block') + event.add('tfg:ad_astra_etrium_block', 'ad_astra:etrium_plateblock') + event.add('tfg:ad_astra_etrium_block', 'ad_astra:etrium_panel') + event.add('tfg:ad_astra_etrium_block', 'ad_astra:etrium_block') } const registerAdAstraBiomeTags = (event) => { - event.removeAll('ad_astra:has_structure/oil_well') - - global.MOON_BIOMES.forEach(biome => { - event.add('tfg:moon_biomes', biome) - event.add('tfg:has_structure/meteors', biome) - event.add('tfg:has_structure/cheese_ores', biome) - event.add('tfg:has_structure/moonbase', biome) - event.add('tfg:has_structure/moon_rabbit_houses', biome) - event.add('species:limpet_spawns', biome) - }) - - global.MARS_BIOMES.forEach(biome => { - event.add('tfg:mars_biomes', biome) - }) - - event.add('sandworm_mod:can_spawn_sandworms', 'tfg:mars/martian_dunes') - event.add('sandworm_mod:can_spawn_sandworms', 'tfg:mars/martian_deep_desert') - - 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_dark_sand_particles', 'tfg:mars/martian_mountains') - 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_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_river') - - event.add('tfg:has_mild_dust_storms', 'tfg:mars/martian_mountains') - event.add('tfg:has_mild_dust_storms', 'tfg:mars/martian_river') - event.add('tfg:has_mild_dust_storms', 'tfg:mars/amber_hills') - event.add('tfg:has_mild_dust_storms', 'tfg:mars/rusticus_hills') - event.add('tfg:has_mild_dust_storms', 'tfg:mars/sangnum_hills') - event.add('tfg:has_moderate_dust_storms', 'tfg:mars/amber_plains') - event.add('tfg:has_moderate_dust_storms', 'tfg:mars/amber_edge') - event.add('tfg:has_moderate_dust_storms', 'tfg:mars/rusticus_plains') - event.add('tfg:has_moderate_dust_storms', 'tfg:mars/rusticus_edge') - event.add('tfg:has_moderate_dust_storms', 'tfg:mars/sangnum_plains') - event.add('tfg:has_moderate_dust_storms', 'tfg:mars/sangnum_edge') - event.add('tfg:has_severe_dust_storms', 'tfg:mars/martian_dunes') - event.add('tfg:has_severe_dust_storms', 'tfg:mars/martian_deep_desert') -} - -const registerAdAstraEntityTypeTags = (event) => { - - const COLD_ENTITIES = [ - // moon - 'tfc:rat', - 'tfg:moon_rabbit', - 'minecraft:enderman', - 'minecraft:shulker', - 'minecraft:shulker_bullet', - 'minecraft:skeleton', - 'minecraft:stray', - 'species:limpet', - 'species:birt', - 'endermanoverhaul:windswept_hills_enderman', - 'endermanoverhaul:soulsand_valley_enderman', - 'endermanoverhaul:spirit', - 'endermanoverhaul:end_enderman', - 'endermanoverhaul:end_islands_enderman', - // mars - 'tfg:sniffer', - 'tfg:glacian_ram', - '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', - 'wan_ancient_beasts:soarer', - 'wan_ancient_beasts:glider', - 'wan_ancient_beasts:toxlacanth', - 'wan_ancient_beasts:surfer', - 'tfg:surfer', - // europa - 'endermanoverhaul:coral_enderman', - 'endermanoverhaul:snowy_enderman', - 'endermanoverhaul:ice_spikes_enderman', - 'species:deepfish', - 'species:leaf_hanger', - 'species:cliff_hanger', - ] - - COLD_ENTITIES.forEach(entity => { - - event.add('ad_astra:can_survive_extreme_cold', entity) - event.add('ad_astra:lives_without_oxygen', entity) - }) - - event.add('ad_astra:can_survive_in_space', 'railways:conductor') - - event.add('tfc:deals_crushing_damage', 'minecraft:enderman') - event.add('tfc:deals_crushing_damage', 'minecraft:stray') - event.add('tfc:deals_crushing_damage', 'endermanoverhaul:windswept_hills_enderman') - event.add('tfc:deals_crushing_damage', 'endermanoverhaul:soulsand_valley_enderman') - event.add('tfc:deals_piercing_damage', 'endermanoverhaul:end_enderman') - event.add('tfc:deals_crushing_damage', 'endermanoverhaul:end_islands_enderman') - event.add('tfc:deals_crushing_damage', 'ad_astra:star_crawler') - - event.add('tfg:ignores_gravity', 'minecraft:shulker_bullet') - event.add('tfg:ignores_gravity', 'endermanoverhaul:spirit') - event.add('tfg:ignores_gravity', 'species:birt') - event.add('tfg:ignores_gravity', 'ad_astra:star_crawler') - - // 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', 'tfg:surfer') - event.add('tfg:ignores_gravity', 'wan_ancient_beasts:toxlacanth') - event.add('tfg:ignores_gravity', 'endermanoverhaul:coral_enderman') -} - -const registerAdAstraPlacedFeatures = (event) => { - - //#region Moon - event.add('tfg:moon_craters', 'tfg:moon/crater/extra_large') - event.add('tfg:moon_craters', 'tfg:moon/crater/large') - event.add('tfg:moon_craters', 'tfg:moon/crater/medium') - event.add('tfg:moon_craters', 'tfg:moon/crater/small') - - global.MOON_STONE_TYPES.forEach(stone => { - // only in the sparse ones - event.add('tfg:moon_large_rock_features', `tfg:moon/surface/delta/${stone}`) - // in all moon biomes - event.add('tfg:moon_small_rock_features', `tfg:moon/surface/pile/${stone}`) - event.add('tfg:moon_small_rock_features', `tfg:moon/surface/loose/${stone}`) - }) - - event.add('tfg:moon_small_rock_features', 'tfg:moon/surface/pile_moon_sand') - event.add('tfg:moon_small_rock_features', 'tfg:moon/surface/pile_white_sand') - event.add('tfg:moon_small_rock_features', 'tfg:moon/surface/pile_black_sand') - //#endregion - - //#region Mars - // Underground decoration - event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/loose_rocks') - event.add('tfg:mars_underground_decoration', 'tfc:cave_spike') - event.add('tfg:mars_underground_decoration', 'tfc:cave_column') - event.add('tfg:mars_underground_decoration', 'tfc:large_cave_spike') - event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/noise_cave_stalagmite') - event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/noise_cave_stalagtite') - - 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', 'tfg:mars/underground/ice_cave') - event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/icicle') - event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/icicle_extra') - 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_global_small_plants", "tfg:mars/tree/lucernia") - event.add("tfg:mars_global_small_plants", "tfg:mars/tree/lucernia_common") - event.add("tfg:mars_global_small_plants", "tfg:mars/tree/cave_bush") - event.add("tfg:mars_global_small_plants", "tfg:mars/tree/cave_bush_common") - 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_amber_vegetal_decoration", "#tfg:mars_global_small_plants") - event.add("tfg:mars_rusticus_vegetal_decoration", "#tfg:mars_global_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/bulb_moss") - event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/aurant_polypore") - event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/filalux_wings") - event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/filalux_wings_top") - - 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/bulb_moss") - event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/aurant_polypore") - event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/purple_polypore") - - 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/purple_polypore") - event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/filalux_wings") - event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/filalux_wings_top") - - 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") - event.add("tfg:mars_top_layer_modification", "tfg:mars/terrain/mars_poles") - - //#endregion - - //#region Venus - event.add('tfg:venus_delta_surface_features', 'tfg:venus/surface/geyser_source_patch') - event.add('tfg:venus_delta_surface_features', 'tfg:venus/surface/stromatolite_cluster_patch') - event.add('tfg:venus_delta_surface_features', 'tfg:venus/surface/stromatolite_tower') - - event.add('tfg:venus_delta_terrain_features', 'tfg:venus/terrain/hot_spring_delta') - event.add('tfg:venus_delta_terrain_features', 'tfg:venus/terrain/lava_delta') - event.add('tfg:venus_delta_terrain_features', 'tfg:venus/terrain/stromatolite_disk') - - event.add('tfg:venus_fractured_lands_terrain_features', 'tfg:venus/terrain/lakes') - event.add('tfg:venus_fractured_lands_terrain_features', 'tfg:venus/terrain/lake_basalt_gravel') - event.add('tfg:venus_fractured_lands_terrain_features', 'tfg:venus/terrain/lake_basalt_stone') - event.add('tfg:venus_fractured_lands_terrain_features', 'tfg:venus/terrain/lake_geyserite') - event.add('tfg:venus_fractured_lands_terrain_features', 'tfg:venus/terrain/lake_orange_sand') - event.add('tfg:venus_fractured_lands_terrain_features', 'tfg:venus/terrain/lake_yellow_sand') - //#endregion - - //#region Glacio - event.add("tfg:glacio_top_layer_modification", "tfg:glow_lichen") - event.add("tfg:glacio_top_layer_modification", "tfc:surface_loose_rocks") - //#endregion } diff --git a/kubejs/server_scripts/ae2/recipes.js b/kubejs/server_scripts/ae2/recipes.js index 1c5087d56..de386e5f0 100644 --- a/kubejs/server_scripts/ae2/recipes.js +++ b/kubejs/server_scripts/ae2/recipes.js @@ -327,6 +327,17 @@ const registerAE2Recipes = (event) => { D: '#forge:gems/fluix', }).addMaterialInfo().id('tfg:crafting/me_p2p_tunnel') + event.shapeless('ae2:me_p2p_tunnel', ['ae2:me_p2p_tunnel']) + .id('tfg:shapeless/me_p2p_tunnel') + event.shapeless('ae2:redstone_p2p_tunnel', ['ae2:redstone_p2p_tunnel']) + .id('tfg:shapeless/redstone_p2p_tunnel') + event.shapeless('ae2:item_p2p_tunnel', ['ae2:item_p2p_tunnel']) + .id('tfg:shapeless/item_p2p_tunnel') + event.shapeless('ae2:fluid_p2p_tunnel', ['ae2:fluid_p2p_tunnel']) + .id('tfg:shapeless/fluid_p2p_tunnel') + event.shapeless('ae2:light_p2p_tunnel', ['ae2:light_p2p_tunnel']) + .id('tfg:shapeless/light_p2p_tunnel') + // ME Chest event.recipes.gtceu.shaped('ae2:chest', [ 'AEA', @@ -641,7 +652,7 @@ const registerAE2Recipes = (event) => { // Energy Acceptor event.recipes.gtceu.assembler('tfg:ae2/energy_acceptor') - .itemInputs('5x gtceu:silver_double_cable', 'gtceu:hv_1a_energy_converter', 'gtceu:annealed_copper_single_cable') + .itemInputs('5x gtceu:silver_double_cable', 'gtceu:hv_machine_hull', 'gtceu:annealed_copper_single_cable') .itemOutputs('ae2:energy_acceptor') .circuit(1) .duration(520) @@ -1142,7 +1153,6 @@ const registerAE2Recipes = (event) => { .circuit(1) .duration(20) .EUt(480) - .cleanroom(CleanroomType.CLEANROOM) .addMaterialInfo(true) // Storage Bus @@ -2295,16 +2305,6 @@ const registerAE2Recipes = (event) => { .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) - // Cryogenized Fluix - - event.recipes.gtceu.vacuum_freezer('gtceu:cryo_fluix') - .inputFluids(Fluid.of('gtceu:helium_3', 1000)) - .inputFluids(Fluid.of('tfg:fluix', 144)) - .outputFluids(Fluid.of('tfg:cryogenized_fluix', 576)) - .duration(30 * 20) - .EUt(GTValues.VA[GTValues.MV]) - .dimension('ad_astra:moon') - // Certus deco blocks event.stonecutting('ae2:quartz_block', '#tfg:certus_quartz_blocks') diff --git a/kubejs/server_scripts/afc/recipes.js b/kubejs/server_scripts/afc/recipes.js index 4bc552380..3cf811739 100644 --- a/kubejs/server_scripts/afc/recipes.js +++ b/kubejs/server_scripts/afc/recipes.js @@ -16,10 +16,10 @@ const registerAFCRecipes = (event) => { event.remove({ id: "afc:pot/rubber" }) event.remove({ id: "afc:tree_tapping/hevea_latex" }) event.remove({ id: "afc:tree_tapping/rubber_fig_latex" }) - event.remove({ id: "afc:crafting/1_birch_sugar"}) - event.remove({ id: "afc:crafting/1_maple_sugar"}) - event.remove({ id: "afc:crafting/0_birch_sugar_bucket"}) - event.remove({ id: "afc:crafting/0_maple_sugar_bucket"}) + event.remove({ id: "afc:crafting/1_birch_sugar" }) + event.remove({ id: "afc:crafting/1_maple_sugar" }) + event.remove({ id: "afc:crafting/0_birch_sugar_bucket" }) + event.remove({ id: "afc:crafting/0_maple_sugar_bucket" }) // #endregion @@ -48,7 +48,7 @@ const registerAFCRecipes = (event) => { generateCutterRecipe(event, `afc:wood/planks/${wood}_slab`, `2x afc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_slab`) - + // ? -> ДСрСвянная наТимная пластина event.shaped(`afc:wood/planks/${wood}_pressure_plate`, [ ' B ', @@ -72,10 +72,10 @@ const registerAFCRecipes = (event) => { event.remove({ id: `afc:crafting/wood/${wood}_button` }) generateCutterRecipe(event, `afc:wood/planks/${wood}_pressure_plate`, `6x afc:wood/planks/${wood}_button`, 50, 2, `${wood}_button`) - + //Stomping Barrel - event.remove({ id: `afc:crafting/wood/${wood}_stomping_barrel`}) - + event.remove({ id: `afc:crafting/wood/${wood}_stomping_barrel` }) + event.shaped(`afc:wood/stomping_barrel/${wood}`, [ 'ABA', 'AAA', @@ -83,9 +83,9 @@ const registerAFCRecipes = (event) => { ], { A: `afc:wood/lumber/${wood}`, B: 'tfc:glue' - + }).id(`afc:crafting/wood/${wood}_stomping_barrel`) - + }) // #endregion @@ -108,86 +108,6 @@ const registerAFCRecipes = (event) => { .resultFluid(Fluid.of('gtceu:copper', 144)) .id('tfg:heating/tree_tap') - //Custom rubber and hevea tappings - event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/rubber_fig")) - .resultFluid(Fluid.of("tfg:latex", 2)) - .minTemp(4) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/latex/rubber_fig") - event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_rubber_fig")) - .resultFluid(Fluid.of("tfg:latex", 2)) - .minTemp(4) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/latex/ancient_rubber_fig") - - event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/hevea")) - .resultFluid(Fluid.of("tfg:latex", 3)) - .minTemp(8) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/latex/hevea") - event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_hevea")) - .resultFluid(Fluid.of("tfg:latex", 3)) - .minTemp(8) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/latex/ancient_hevea") - - event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/kapok")) - .resultFluid(Fluid.of("tfg:latex", 4)) - .minTemp(12) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/kapok_latex") - event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_kapok")) - .resultFluid(Fluid.of("tfg:latex", 4)) - .minTemp(12) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/ancient_kapok_latex") - - - // Pine/etc resin - event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/aspen")) - .resultFluid(Fluid.of('tfg:conifer_pitch', 2)) - .minTemp(-10) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/aspen_resin") - event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_aspen")) - .resultFluid(Fluid.of('tfg:conifer_pitch', 2)) - .minTemp(-10) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/ancient_aspen_resin") - - event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/spruce")) - .resultFluid(Fluid.of('tfg:conifer_pitch', 4)) - .minTemp(-15) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/spruce_resin") - event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_spruce")) - .resultFluid(Fluid.of('tfg:conifer_pitch', 4)) - .minTemp(-15) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/ancient_spruce_resin") - - event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/white_cedar")) - .resultFluid(Fluid.of('tfg:conifer_pitch', 3)) - .minTemp(-8) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/white_cedar_resin") - event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_white_cedar")) - .resultFluid(Fluid.of('tfg:conifer_pitch', 3)) - .minTemp(-8) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/ancient_white_cedar_resin") - - event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/douglas_fir')) - .resultFluid(Fluid.of('tfg:conifer_pitch', 2)) - .minTemp(-8) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/douglas_fir_resin") - event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_douglas_fir")) - .resultFluid(Fluid.of('tfg:conifer_pitch', 2)) - .minTemp(-8) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/ancient_douglas_fir_resin") - //Syrups event.remove({ id: "afc:tree_tapping/maple_syrup" }) event.remove({ id: "afc:tree_tapping/birch_syrup" }) @@ -198,87 +118,17 @@ const registerAFCRecipes = (event) => { .maxTemp(5) .requiresNaturalLog(true) .id("tfg:tree_tapping/maple_log") - - event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/birch')) + + event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/birch')) .resultFluid(Fluid.of('afc:birch_sap', 5)) .minTemp(-15) .maxTemp(5) .requiresNaturalLog(true) .id("tfg:tree_tapping/birch_log") - // Mars stuff - - event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/log/crimson')) - .resultFluid(Fluid.of('tfg:crimsene', 1)) - .minTemp(-110) - .maxTemp(-15) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/crimson_log") - - event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/wood/crimson')) - .resultFluid(Fluid.of('tfg:crimsene', 1)) - .minTemp(-110) - .maxTemp(-15) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/crimson_wood") - - event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/log/warped')) - .resultFluid(Fluid.of('tfg:warpane', 1)) - .minTemp(-110) - .maxTemp(-15) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/warped_log") - - event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/wood/warped')) - .resultFluid(Fluid.of('tfg:warpane', 1)) - .minTemp(-110) - .maxTemp(-15) - .requiresNaturalLog(true) - .id("tfg:tree_tapping/warped_wood") - //#region Extractor Recipe - // Latex - - event.recipes.gtceu.extractor('latex_from_log') - .itemInputs('#tfg:latex_logs') - .outputFluids(Fluid.of('tfg:latex', 250)) - .duration(600) - .EUt(20) - - event.recipes.gtceu.extractor('latex_from_sapling') - .itemInputs('#tfg:rubber_saplings') - .outputFluids(Fluid.of('tfg:latex', 100)) - .duration(750) - .EUt(20) - - event.recipes.gtceu.extractor('latex_from_leaves') - .itemInputs('#tfg:rubber_leaves') - .outputFluids(Fluid.of('tfg:latex', 50)) - .duration(750) - .EUt(20) - - // Conifer Pitch - - event.recipes.gtceu.extractor('conifer_from_log') - .itemInputs('#tfg:rosin_logs') - .outputFluids(Fluid.of('tfg:conifer_pitch', 250)) - .duration(600) - .EUt(20) - - event.recipes.gtceu.extractor('conifer_from_sapling') - .itemInputs('#tfg:rosin_saplings') - .outputFluids(Fluid.of('tfg:conifer_pitch', 100)) - .duration(750) - .EUt(20) - - event.recipes.gtceu.extractor('conifer_from_leaves') - .itemInputs('#tfg:rosin_leaves') - .outputFluids(Fluid.of('tfg:conifer_pitch', 50)) - .duration(750) - .EUt(20) - - // Maple Sirup + // Maple Syrup event.recipes.gtceu.extractor('maple_from_log') .itemInputs('#tfc:maple_logs') @@ -298,7 +148,7 @@ const registerAFCRecipes = (event) => { .duration(750) .EUt(20) - // Birch Sirup + // Birch Syrup event.recipes.gtceu.extractor('birch_from_log') .itemInputs('#tfc:birch_logs') @@ -321,25 +171,6 @@ const registerAFCRecipes = (event) => { //#endregion // Из Π±Ρ€Π΅Π²Π½Π° ΠΊΠ°ΠΏΠΎΠΊΠ° / Logs Centrifuge - event.recipes.gtceu.centrifuge('rubber_log_separation') - .itemInputs('#tfg:latex_logs') - .chancedOutput('gtceu:raw_rubber_dust', 5000, 0) - .chancedOutput('gtceu:plant_ball', 3750, 0) - .chancedOutput('gtceu:sticky_resin', 2500, 0) - .chancedOutput('gtceu:wood_dust', 2500, 0) - .outputFluids(Fluid.of('gtceu:methane', 60)) - .duration(20*20) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.centrifuge('conifer_log_separation') - .itemInputs('#tfg:rosin_logs') - .chancedOutput('tfg:conifer_rosin', 7500, 0) - .chancedOutput('gtceu:plant_ball', 3750, 0) - .chancedOutput('gtceu:sticky_resin', 2500, 0) - .chancedOutput('gtceu:wood_dust', 2500, 0) - .outputFluids(Fluid.of('gtceu:methane', 60)) - .duration(20*20) - .EUt(GTValues.VA[GTValues.MV]) event.recipes.gtceu.centrifuge('maple_syrup_log_separation') .itemInputs('#tfc:maple_logs') @@ -347,7 +178,7 @@ const registerAFCRecipes = (event) => { .chancedOutput('gtceu:plant_ball', 3750, 0) .chancedOutput('gtceu:hardwood_dust', 2500, 0) .outputFluids(Fluid.of('gtceu:methane', 60), Fluid.of('afc:maple_syrup', 100)) - .duration(20*20) + .duration(20 * 20) .EUt(GTValues.VA[GTValues.MV]) event.recipes.gtceu.centrifuge('birch_syrup_log_separation') @@ -356,52 +187,52 @@ const registerAFCRecipes = (event) => { .chancedOutput('gtceu:plant_ball', 3750, 0) .chancedOutput('gtceu:hardwood_dust', 2500, 0) .outputFluids(Fluid.of('gtceu:methane', 60), Fluid.of('afc:birch_syrup', 100)) - .duration(20*20) + .duration(20 * 20) .EUt(GTValues.VA[GTValues.MV]) //#endregion - //region gt sap processing + //#region GT sap processing event.recipes.gtceu.fluid_heater('maple_sap_condense') .inputFluids(Fluid.of('afc:maple_sap', 1000)) .outputFluids(Fluid.of('afc:maple_syrup', 100)) - .duration(20*25) + .duration(20 * 25) .EUt(GTValues.VA[GTValues.ULV]) event.recipes.gtceu.fluid_heater('birch_sap_condense') .inputFluids(Fluid.of('afc:birch_sap', 1000)) .outputFluids(Fluid.of('afc:birch_syrup', 100)) - .duration(20*35) + .duration(20 * 35) .EUt(GTValues.VA[GTValues.ULV]) - - - //endregion + event.recipes.gtceu.fluid_solidifier('maple_syrup') .inputFluids(Fluid.of('afc:maple_syrup', 100)) .itemOutputs('afc:maple_sugar') - .duration(20*12) + .duration(20 * 12) .EUt(GTValues.VHA[GTValues.ULV]) event.recipes.gtceu.fluid_solidifier('birch_syrup') .inputFluids(Fluid.of('afc:birch_syrup', 100)) .itemOutputs('afc:birch_sugar') - .duration(20*12) + .duration(20 * 12) .EUt(GTValues.VHA[GTValues.ULV]) + //#endregion + // Syrup into sugar event.recipes.tfc.barrel_sealed(24000) - .inputFluid(Fluid.of('afc:maple_syrup', 100)) - .outputItem('afc:maple_sugar') - .id('tfg:barrel/maple_syrup_to_sugar') + .inputFluid(Fluid.of('afc:maple_syrup', 100)) + .outputItem('afc:maple_sugar') + .id('tfg:barrel/maple_syrup_to_sugar') event.recipes.tfc.barrel_sealed(24000) - .inputFluid(Fluid.of('afc:birch_syrup', 100)) - .outputItem('afc:birch_sugar') - .id('tfg:barrel/birch_syrup_to_sugar') + .inputFluid(Fluid.of('afc:birch_syrup', 100)) + .outputItem('afc:birch_sugar') + .id('tfg:barrel/birch_syrup_to_sugar') // Stripped logs @@ -419,21 +250,15 @@ const registerAFCRecipes = (event) => { .duration(50) .EUt(2) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ item: `afc:wood/log/${wood}` }], - results: [{ item: `afc:wood/stripped_log/${wood}` }], - speed_limits: 0, - processingTime: 50 - }).id(`tfg:vi/lathe/stripping_${wood}_log`) + event.recipes.vintageimprovements.polishing(`afc:wood/stripped_log/${wood}`, `afc:wood/log/${wood}`) + .speedLimits(0) + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/stripping_${wood}_log`) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ item: `afc:wood/wood/${wood}` }], - results: [{ item: `afc:wood/stripped_wood/${wood}` }], - speed_limits: 0, - processingTime: 50 - }).id(`tfg:vi/lathe/stripping_${wood}_wood`) + event.recipes.vintageimprovements.polishing(`afc:wood/stripped_wood/${wood}`, `afc:wood/wood/${wood}`) + .speedLimits(0) + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/stripping_${wood}_wood`) }) const MORE_STRIPPING = [ @@ -458,20 +283,14 @@ const registerAFCRecipes = (event) => { .duration(50) .EUt(2) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ item: `afc:wood/log/${x.wood}` }], - results: [{ item: `${x.stripped_mod}:wood/stripped_log/${x.stripped}` }], - speed_limits: 0, - processingTime: 50 - }).id(`tfg:vi/lathe/stripping_${x.wood}_log`) + event.recipes.vintageimprovements.polishing(`${x.stripped_mod}:wood/stripped_log/${x.stripped}`, `afc:wood/log/${x.wood}`) + .speedLimits(0) + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/stripping_${x.wood}_log`) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ item: `afc:wood/wood/${x.wood}` }], - results: [{ item: `${x.stripped_mod}:wood/stripped_wood/${x.stripped}` }], - speed_limits: 0, - processingTime: 50 - }).id(`tfg:vi/lathe/stripping_${x.wood}_wood`) + event.recipes.vintageimprovements.polishing(`${x.stripped_mod}:wood/stripped_wood/${x.stripped}`, `afc:wood/wood/${x.wood}`) + .speedLimits(0) + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/stripping_${x.wood}_wood`) }) } diff --git a/kubejs/server_scripts/afc/tags.js b/kubejs/server_scripts/afc/tags.js index f56819634..771ed2740 100644 --- a/kubejs/server_scripts/afc/tags.js +++ b/kubejs/server_scripts/afc/tags.js @@ -30,6 +30,7 @@ const registerAFCItemTags = (event) => { event.add('tfg:hardwood', `#afc:${woodType}_logs`) event.add('tfg:stripped_hardwood', `afc:wood/stripped_log/${woodType}`) event.add('tfg:stripped_hardwood', `afc:wood/stripped_wood/${woodType}`) + event.add('tfg:hardwood_supports', `afc:wood/support/${woodType}`); }); //Softwood Tags @@ -37,6 +38,7 @@ const registerAFCItemTags = (event) => { event.add('tfg:softwood', `#afc:${woodType}_logs`) event.add('tfg:stripped_softwood', `afc:wood/stripped_log/${woodType}`) event.add('tfg:stripped_softwood', `afc:wood/stripped_wood/${woodType}`) + event.add('tfg:softwood_supports', `afc:wood/support/${woodType}`); }) // AFC saplings are missing the item tag for whatever reason diff --git a/kubejs/server_scripts/arthropocolypse/recipes.js b/kubejs/server_scripts/arthropocolypse/recipes.js new file mode 100644 index 000000000..b531f740b --- /dev/null +++ b/kubejs/server_scripts/arthropocolypse/recipes.js @@ -0,0 +1,43 @@ +"use strict"; + +/** + * + * @param {Internal.RecipesEventJS} event + */ +function registerArthropocolypseRecipes(event) { + event.remove({ id: 'arthropocolypse:beetle_helmet' }); + event.remove({ id: 'arthropocolypse:beetle_chestplate' }); + event.remove({ id: 'arthropocolypse:beetle_leggings' }); + event.remove({ id: 'arthropocolypse:beetle_boots' }); + event.remove({ id: 'arthropocolypse:energy_bar' }); + event.remove({ id: 'arthropocolypse:gilded_scale_elytra' }); + event.remove({ id: 'arthropocolypse:mandible_shear' }); + event.remove({ id: 'arthropocolypse:mandible_dagger' }); + event.remove({ id: 'arthropocolypse:cooked_ice_crawler_meat' }); + event.remove({ id: 'minecraft:cooked_ice_crawler_meat_from_smoking' }); + event.remove({ id: 'arthropocolypse:polished_beetle_fragment_block' }); + event.remove({ id: 'arthropocolypse:beetle_fragment_block_bricks' }); + event.remove({ id: 'arthropocolypse:beetle_fragment_block_stairs' }); + event.remove({ id: 'arthropocolypse:beetle_fragment_block_slabs' }); + event.remove({ id: 'arthropocolypse:beetle_fragment_block_wall' }); + event.remove({ id: 'arthropocolypse:tiled_beetle_fragment_block' }); + event.remove({ id: 'arthropocolypse:beetle_fragment_block_bricks_stairs' }); + event.remove({ id: 'arthropocolypse:beetle_fragment_block_bricks_slabs' }); + event.remove({ id: 'arthropocolypse:beetle_fragment_block_bricks_wall' }); + event.remove({ id: 'arthropocolypse:polished_beetle_fragment_block_stairs' }); + event.remove({ id: 'arthropocolypse:polished_beetle_fragment_block_slabs' }); + event.remove({ id: 'arthropocolypse:polished_beetle_fragment_block_wall' }); + event.remove({ id: 'arthropocolypse:tiled_beetle_fragment_block_stairs' }); + event.remove({ id: 'arthropocolypse:tiled_beetle_fragment_block_slabs' }); + event.remove({ id: 'arthropocolypse:tiled_beetle_fragment_block_wall' }); + + + + //event.recipes.tfc.knapping('arthropocolypse:mandible_dagger', 'tfc:goat_horn', [ + // ' X ', + // ' XX ', + // ' XX ', + // ' XX ', + // ' XX ' + //]).ingredient('arthropocolypse:mandible_part').outsideSlotRequired(false).id('tfg:knapping/mandible_dagger') +} \ No newline at end of file diff --git a/kubejs/server_scripts/arthropocolypse/tags.js b/kubejs/server_scripts/arthropocolypse/tags.js new file mode 100644 index 000000000..7f5fa0b61 --- /dev/null +++ b/kubejs/server_scripts/arthropocolypse/tags.js @@ -0,0 +1,14 @@ +"use strict"; + +/** + * + * @param {TagEvent.Item} event + */ +const registerArthropocolypseItemTags = (event) => { + global.ARTHROPOCOLYPSE_DISABLED_ITEMS.forEach(element => { + event.removeAllTagsFrom(element); + event.add("c:hidden_from_recipe_viewers", element) + }); + + event.add('tfc:any_knapping', 'arthropocolypse:mandible_part'); +} \ No newline at end of file diff --git a/kubejs/server_scripts/asticor_carts/recipes.js b/kubejs/server_scripts/asticor_carts/recipes.js index 12d70352b..f68341ca5 100644 --- a/kubejs/server_scripts/asticor_carts/recipes.js +++ b/kubejs/server_scripts/asticor_carts/recipes.js @@ -6,4 +6,25 @@ const registerAsticorCartsRecipes = (event) => { event.remove({ id: 'astikorcarts:supply_cart' }) event.remove({ id: 'astikorcarts:plow' }) event.remove({ id: 'astikorcarts:wheel' }) + + event.recipes.gtceu.macerator(`tfg:recycle_astikor_animal_cart`) + .itemInputs('#tfcastikorcarts:animal_cart') + .itemOutputs('#forge:dusts/brass') + .duration(100) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.macerator(`tfg:recycle_astikor_supply_cart`) + .itemInputs('#tfcastikorcarts:supply_cart') + .itemOutputs('#forge:dusts/brass') + .duration(100) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.macerator(`tfg:recycle_astikor_plow`) + .itemInputs('#tfcastikorcarts:plow') + .itemOutputs('#forge:dusts/brass') + .duration(100) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) } \ No newline at end of file diff --git a/kubejs/server_scripts/asticor_carts/tags.js b/kubejs/server_scripts/asticor_carts/tags.js index 4c25eb160..0c5d83cec 100644 --- a/kubejs/server_scripts/asticor_carts/tags.js +++ b/kubejs/server_scripts/asticor_carts/tags.js @@ -7,6 +7,10 @@ const registerAsticorCartsItemTags = (event) => { event.removeAllTagsFrom(item) event.add('c:hidden_from_recipe_viewers', item) }) + + global.TFC_WOOD_TYPES.forEach(wood => { + event.add('c:hidden_from_recipe_viewers', `tfcastikorcarts:postilion/${wood}`) + }) } const registerAsticorCartsBlockTags = (event) => { diff --git a/kubejs/server_scripts/beneath/recipes.js b/kubejs/server_scripts/beneath/recipes.js index 9c56912e3..e0fd264d8 100644 --- a/kubejs/server_scripts/beneath/recipes.js +++ b/kubejs/server_scripts/beneath/recipes.js @@ -10,12 +10,15 @@ const registerBeneathRecipes = (event) => { event.remove({ id: 'beneath:collapse/basalt' }) event.remove({ id: 'beneath:collapse/nether_bricks' }) + event.remove({ id: 'beneath:crafting/nether_bricks' }) event.remove({ id: 'beneath:crafting/blackstone' }) event.remove({ id: 'beneath:crafting/blackstone_uncraft' }) + event.remove({ id: 'beneath:crafting/blackstone_bricks' }) event.remove({ id: 'beneath:crafting/blackstone_bricks_from_soot' }) event.remove({ id: 'beneath:crafting/blackstone_from_soot' }) event.remove({ id: 'beneath:crafting/blackstone_plate' }) event.remove({ id: 'beneath:crafting/blackstone_button' }) + event.remove({ id: 'beneath:crafting/blackstone_aqueduct' }) event.remove({ id: 'beneath:crafting/hellbricks' }) event.remove({ id: 'beneath:crafting/nether_brick' }) event.remove({ id: 'beneath:quern/slime' }) @@ -58,21 +61,8 @@ const registerBeneathRecipes = (event) => { 'tfc:powder/wood_ash' ]).id('tfg:shapeless/hellbricks_from_wood_ash') - event.recipes.gtceu.assembler("loose_blackstone_to_bricks") - .itemInputs('beneath:blackstone_pebble') - .itemOutputs('beneath:blackstone_brick') - .circuit(1) - .duration(40) - .EUt(8) - event.recipes.tfc.landslide('beneath:soul_clay', 'beneath:soul_clay') - generateGreenHouseRecipe(event, '8x tfg:saplings/warped', 'tfg:semiheavy_ammoniacal_water', 16000, - '64x beneath:wood/log/warped', 'tfg:green_house/warped_fungus', 'ad_astra:mars', 8, - '32x minecraft:warped_wart_block', GTValues.VA[GTValues.MV]) - generateGreenHouseRecipe(event, '8x tfg:saplings/crimson', 'tfg:semiheavy_ammoniacal_water', 16000, - '64x beneath:wood/log/crimson', 'tfg:green_house/crimson_fungus', 'ad_astra:mars', 8, - '32x minecraft:nether_wart_block', GTValues.VA[GTValues.MV]) Ingredient.of('#beneath:mushrooms').stacks.forEach(element => { const itemId = element.id; @@ -82,26 +72,6 @@ const registerBeneathRecipes = (event) => { recipeId, 'minecraft:the_nether', 8, element.withCount(4), GTValues.VH[GTValues.LV]); }); - // don't pass in the items like doors, trapdoors etc because beneath already has good recipes for those - woodBuilder(event, 'crimson', 'beneath:wood/lumber/crimson', '#tfc:crimson_logs', 'beneath:wood/log/crimson', - 'beneath:wood/stripped_log/crimson', 'beneath:wood/planks/crimson', null, - 'beneath:wood/planks/crimson_slab', null, null, null, null, null, 'beneath:wood/planks/crimson_pressure_plate', - 'beneath:wood/planks/crimson_button') - - event.recipes.gtceu.lathe(`tfg:cutter/crimson_stripped_wood_from_wood`) - .itemInputs('beneath:wood/wood/crimson') - .itemOutputs('beneath:wood/stripped_wood/crimson') - .duration(50) - .EUt(GTValues.VA[GTValues.ULV]) - - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ item: 'beneath:wood/wood/crimson' }], - results: [{ item: 'beneath:wood/stripped_wood/crimson' }], - speed_limits: 0, - processingTime: 50 - }).id(`tfg:vi/lathe/stripping_crimson_wood`) - event.shaped('beneath:wood/sewing_table/crimson', [ ' AB', 'CCC', @@ -113,26 +83,6 @@ const registerBeneathRecipes = (event) => { D: 'beneath:wood/log/crimson' }).id('tfg:shaped/crimson_sewing_table') - - woodBuilder(event, 'warped', 'beneath:wood/lumber/warped', '#tfc:warped_logs', 'beneath:wood/log/warped', - 'beneath:wood/stripped_log/warped', 'beneath:wood/planks/warped', null, - 'beneath:wood/planks/warped_slab', null, null, null, null, null, 'beneath:wood/planks/warped_pressure_plate', - 'beneath:wood/planks/warped_button') - - event.recipes.gtceu.lathe(`tfg:cutter/warped_stripped_wood_from_wood`) - .itemInputs('beneath:wood/wood/warped') - .itemOutputs('beneath:wood/stripped_wood/warped') - .duration(50) - .EUt(GTValues.VA[GTValues.ULV]) - - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ item: 'beneath:wood/wood/warped' }], - results: [{ item: 'beneath:wood/stripped_wood/warped' }], - speed_limits: 0, - processingTime: 50 - }).id(`tfg:vi/lathe/stripping_warped_wood`) - event.shaped('beneath:wood/sewing_table/warped', [ ' AB', 'CCC', diff --git a/kubejs/server_scripts/betterend/recipes.js b/kubejs/server_scripts/betterend/recipes.js deleted file mode 100644 index 7bdb90325..000000000 --- a/kubejs/server_scripts/betterend/recipes.js +++ /dev/null @@ -1,59 +0,0 @@ -// priority: 0 -"use strict"; - -function registerBetterEndRecipes(event) { - - Ingredient.of('#tfg:moon_plants').stacks.forEach(element => { - const itemId = element.id; - const recipeId = `betterend:greenhouse_${itemId.replace(':', '_')}`; - - event.recipes.gtceu.greenhouse(recipeId) - .notConsumable(element.id) - .itemOutputs(`8x ${element.id}`) - .chancedOutput(element.id, 750, 0) - .chancedOutput(element.id, 500, 0) - .duration(36000) // 30 mins - .circuit(1) - .EUt(GTValues.VA[GTValues.MV]) - .dimension('ad_astra:moon') - - event.recipes.gtceu.greenhouse(`${recipeId}_helium`) - .notConsumable(element.id) - .inputFluids(Fluid.of('gtceu:helium_3', 500)) - .itemOutputs(`8x ${element.id}`) - .chancedOutput(element.id, 4000, 0) - .chancedOutput(element.id, 3000, 0) - .duration(12000) // 30 mins - .circuit(2) - .EUt(GTValues.VA[GTValues.MV]) - .dimension('ad_astra:moon') - }); - - Ingredient.of('#tfg:mars_plants').stacks.forEach(element => { - const itemId = element.id; - const recipeId = `greenhouse_${itemId.replace(':', '_')}`; - - generateGreenHouseRecipe(event, itemId, 'tfg:semiheavy_ammoniacal_water', 8000, `8x ${itemId}`, - recipeId, 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]); - }); - - generateGreenHouseRecipe(event, '8x betterend:amber_root_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, - '24x betterend:amber_root_product', 'amber_root', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) - - generateGreenHouseRecipe(event, '8x betterend:blossom_berry_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, - '24x betterend:blossom_berry_product', 'blossom_berry', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) - - generateGreenHouseRecipe(event, '8x betterend:bolux_mushroom_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, - '24x betterend:bolux_mushroom_product', 'bolux_mushroom', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) - - generateGreenHouseRecipe(event, '8x betterend:cave_pumpkin_plant_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, - '24x betterend:cave_pumpkin', 'cave_pumpkin', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) - - generateGreenHouseRecipe(event, '8x betterend:chorus_mushroom_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, - '24x betterend:chorus_mushroom_product', 'chorus_mushroom', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) - - generateGreenHouseRecipe(event, '8x betterend:shadow_berry_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, - '24x betterend:shadow_berry_product', 'shadow_berry', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) - - event.recipes.firmalife.oven('betterend:cave_pumpkin_pie_raw', 400, 60 * 20, 'betterend:cave_pumpkin_pie') -} \ No newline at end of file diff --git a/kubejs/server_scripts/betterend/tags.js b/kubejs/server_scripts/betterend/tags.js deleted file mode 100644 index a7cc94002..000000000 --- a/kubejs/server_scripts/betterend/tags.js +++ /dev/null @@ -1,48 +0,0 @@ -// priority: 0 -"use strict"; - -function registerBetterEndItemTags(event) { - - event.add('forge:seeds', 'betterend:amber_root_seeds') - event.add('forge:seeds', 'betterend:blossom_berry_seeds') - event.add('forge:seeds', 'betterend:bolux_mushroom_seeds') - event.add('forge:seeds', 'betterend:cave_pumpkin_seeds') - event.add('forge:seeds', 'betterend:shadow_berry_seeds') - - event.add('tfc:foods', 'betterend:amber_root_product') - event.add('tfc:foods/grains', 'betterend:amber_root_product') - - event.add('tfc:foods', 'betterend:blossom_berry_product') - event.add('tfc:foods/fruits', 'betterend:blossom_berry_product') - - event.add('tfc:foods', 'betterend:bolux_mushroom_product') - event.add('tfc:foods/vegetables', 'betterend:bolux_mushroom_product') - event.add('forge:mushrooms', 'betterend:bolux_mushroom_product') - event.add('tfc:foods', 'betterend:bolux_mushroom_cooked') - event.add('tfc:foods/vegetables', 'betterend:bolux_mushroom_cooked') - event.add('forge:mushrooms', 'betterend:bolux_mushroom_cooked') - - event.add('tfc:foods', 'betterend:cave_pumpkin') - event.add('tfc:foods', 'betterend:cave_pumpkin_chunks') - event.add('tfc:foods/fruits', 'betterend:cave_pumpkin_chunks') - event.add('tfc:foods', 'betterend:cave_pumpkin_pie_dough') - event.add('tfc:foods', 'betterend:cave_pumpkin_pie_raw') - event.add('tfc:foods', 'betterend:cave_pumpkin_pie') - event.add('firmalife:foods/washable', 'betterend:cave_pumpkin_pie_raw') - event.add('firmalife:foods/washable', 'betterend:cave_pumpkin_pie') - - event.add('tfc:foods', 'betterend:chorus_mushroom_product') - event.add('tfc:foods/vegetables', 'betterend:chorus_mushroom_product') - event.add('forge:mushrooms', 'betterend:chorus_mushroom_product') - event.add('tfc:foods', 'betterend:chorus_mushroom_cooked') - event.add('tfc:foods/vegetables', 'betterend:chorus_mushroom_cooked') - event.add('forge:mushrooms', 'betterend:chorus_mushroom_cooked') - - event.add('tfc:foods', 'betterend:shadow_berry_product') - event.add('tfc:foods/fruits', 'betterend:shadow_berry_product') - event.add('tfc:foods', 'betterend:shadow_berry_cooked') - event.add('tfc:foods/fruits', 'betterend:shadow_berry_cooked') - - event.add('forge:mushrooms', 'betterend:flammalix') - event.add('forge:mushrooms', 'betterend:small_amaranita_mushroom') -} \ No newline at end of file diff --git a/kubejs/server_scripts/create/events.js b/kubejs/server_scripts/create/events.js deleted file mode 100644 index 5752aeb16..000000000 --- a/kubejs/server_scripts/create/events.js +++ /dev/null @@ -1,12 +0,0 @@ -"use strict"; - -PlayerEvents.tick((event) => { - const { player } = event; - if (player.age % 100 === 0 - && player.headArmorItem === 'create:netherite_diving_helmet' - && player.chestArmorItem === 'create:netherite_backtank' - && player.legsArmorItem === 'minecraft:netherite_leggings' - && player.feetArmorItem === 'create:netherite_diving_boots') { - player.potionEffects.add("minecraft:fire_resistance", 350, 0, true, false); - } -}); diff --git a/kubejs/server_scripts/create/recipes.js b/kubejs/server_scripts/create/recipes.js index 4637747d2..ed6d00b93 100644 --- a/kubejs/server_scripts/create/recipes.js +++ b/kubejs/server_scripts/create/recipes.js @@ -23,7 +23,6 @@ const registerCreateRecipes = (event) => { { id: 'create:crafting/logistics/content_observer' }, { id: 'create:crafting/logistics/stockpile_switch' }, { id: 'create:crafting/kinetics/nixie_tube' }, - { id: 'create:crafting/kinetics/analog_lever' }, { id: 'create:crafting/kinetics/placard' }, { id: 'create:crafting/logistics/pulse_repeater' }, { id: 'create:crafting/logistics/pulse_extender' }, @@ -680,6 +679,30 @@ const registerCreateRecipes = (event) => { .EUt(4) .addMaterialInfo(true) + // Shadow steel casing + event.recipes.createItemApplication(['create:shadow_steel_casing'], ['#forge:stripped_logs', '#forge:plates/black_steel']) + .id('tfg:create/item_application/shadow_steel_casing') + + event.recipes.gtceu.assembler('tfg:create/shadow_steel_casing') + .itemInputs('#forge:stripped_logs', '#forge:plates/black_steel') + .circuit(11) + .itemOutputs('create:shadow_steel_casing') + .duration(50) + .EUt(4) + .addMaterialInfo(true) + + // Refined radiance casing + event.recipes.createItemApplication(['create:refined_radiance_casing'], ['#forge:stripped_logs', 'gtceu:glowstone_plate']) + .id('tfg:create/item_application/refined_radiance_casing') + + event.recipes.gtceu.assembler('tfg:create/refined_radiance_casing') + .itemInputs('#forge:stripped_logs', 'gtceu:glowstone_plate') + .circuit(11) + .itemOutputs('create:refined_radiance_casing') + .duration(50) + .EUt(4) + .addMaterialInfo(true) + // ΠšΠΎΡ€ΠΏΡƒΡ ΠΏΠΎΠ΅Π·Π΄Π° event.recipes.createItemApplication(['create:railway_casing'], ['create:brass_casing', '#forge:plates/black_steel']) .id('tfg:create/item_application/railway_casing') @@ -962,70 +985,6 @@ const registerCreateRecipes = (event) => { .duration(200) .EUt(20) - // ЭлСктронная Ρ‚Ρ€ΡƒΠ±ΠΊΠ° - event.shaped('1x create:electron_tube', [ - 'FAG', - 'BCB', - 'DED' - ], { - A: 'gtceu:glass_tube', - B: '#forge:bolts/steel', - C: 'gtceu:wood_plate', - D: 'gtceu:red_alloy_single_wire', - E: '#forge:plates/wrought_iron', - F: '#forge:tools/screwdrivers', - G: '#forge:tools/wire_cutters' - }).id('tfg:create/shaped/electron_tube') - - event.recipes.createSequencedAssembly([ - '2x create:electron_tube', - ], 'gtceu:wood_plate', [ - event.recipes.createDeploying('tfg:unfinished_electron_tube', ['tfg:unfinished_electron_tube', '#forge:plates/wrought_iron']), - event.recipes.createDeploying('tfg:unfinished_electron_tube', ['tfg:unfinished_electron_tube', 'gtceu:red_alloy_single_wire']), - event.recipes.createDeploying('tfg:unfinished_electron_tube', ['tfg:unfinished_electron_tube', 'gtceu:red_alloy_single_wire']), - event.recipes.createDeploying('tfg:unfinished_electron_tube', ['tfg:unfinished_electron_tube', 'gtceu:glass_tube']), - ]).transitionalItem('tfg:unfinished_electron_tube').loops(1).id('tfg:create/sequenced_assembly/electron_tube') - - event.recipes.gtceu.assembler('create:electron_tube') - .itemInputs('#forge:plates/wrought_iron', 'gtceu:glass_tube', '2x gtceu:red_alloy_single_wire') - .itemOutputs('2x create:electron_tube') - .duration(50) - .EUt(7) - .circuit(14) - - event.shaped('4x create:electron_tube', [ - 'FAG', - 'DCD' - ], { - A: 'gtceu:glass_tube', - C: 'gtceu:plastic_circuit_board', - D: 'gtceu:red_alloy_single_wire', - F: '#forge:tools/screwdrivers', - G: '#forge:tools/wire_cutters' - }).id('tfg:create/shaped/electron_tube2') - - event.recipes.gtceu.assembler('create:electron_tube2') - .itemInputs('gtceu:plastic_circuit_board', 'gtceu:glass_tube', '2x gtceu:red_alloy_single_wire') - .itemOutputs('4x create:electron_tube') - .duration(50) - .EUt(7) - - event.shaped('4x create:electron_tube', [ - ' A ', - ' B ', - ' C ' - ], { - A: '#forge:tools/screwdrivers', - B: 'gtceu:nand_chip', - C: 'gtceu:plastic_circuit_board' - }).id('tfg:create/shaped/electron_tube3') - - event.recipes.gtceu.assembler('create:electron_tube3') - .itemInputs('gtceu:plastic_circuit_board', 'gtceu:nand_chip') - .itemOutputs('4x create:electron_tube') - .duration(50) - .EUt(7) - // Вюбик с ΠΊΠ»Π΅Π΅ΠΌ event.shaped('create:super_glue', [ 'BA', @@ -1275,7 +1234,7 @@ const registerCreateRecipes = (event) => { }).id('tfg:create/shaped/clipboard') // ЛСстница ΠΈΠ· ΠΆΠ΅Π»Π΅Π·Π° - event.shaped('6x create:andesite_ladder', [ + event.shaped('7x create:andesite_ladder', [ 'A A', 'AAA', 'A A' @@ -1283,8 +1242,10 @@ const registerCreateRecipes = (event) => { A: '#forge:rods/tin_alloy' }).id('tfg:create/shaped/andesite_ladder') + TFGHelpers.registerMaterialInfo('create:andesite_ladder', { 'tin_alloy': 0.5 }) + // ЛСстница ΠΈΠ· Π»Π°Ρ‚ΡƒΠ½ΠΈ - event.shaped('6x create:brass_ladder', [ + event.shaped('7x create:brass_ladder', [ 'A A', 'AAA', 'A A' @@ -1292,8 +1253,10 @@ const registerCreateRecipes = (event) => { A: '#forge:rods/brass' }).id('tfg:create/shaped/brass_ladder') + TFGHelpers.registerMaterialInfo('create:brass_ladder', { 'brass': 0.5 }) + // ЛСстница ΠΈΠ· ΠΆΠ΅Π»Π΅Π·Π° - event.shaped('6x create:copper_ladder', [ + event.shaped('7x create:copper_ladder', [ 'A A', 'AAA', 'A A' @@ -1301,6 +1264,8 @@ const registerCreateRecipes = (event) => { A: '#forge:rods/copper' }).id('tfg:create/shaped/copper_ladder') + TFGHelpers.registerMaterialInfo('create:copper_ladder', { 'copper': 0.5 }) + // ЛСса ΠΈΠ· ΠΆΠ΅Π»Π΅Π·Π° event.shaped('4x create:andesite_scaffolding', [ 'AAA', @@ -1970,14 +1935,6 @@ const registerCreateRecipes = (event) => { .duration(32) .EUt(GTValues.VA[GTValues.ULV]) - //event.custom({ - // type: 'vintageimprovements:laser_cutting', - // ingredients: [{ item: x.base }], - // results: [{item: x.cut }], - // energy: GTValues.VA[GTValues.ULV] * 32 * 4, - // maxChargeRate: GTValues.VA[GTValues.ULV] * 4 - //}).id(`tfg:vi/laser/create/${x.cut.split(':')[1]}`) - event.shaped(`2x create:layered_${x.cut.split('_')[1]}`, [ 'AA' ], { @@ -2127,7 +2084,8 @@ const registerCreateRecipes = (event) => { .duration(50) .EUt(GTValues.VA[GTValues.ULV]) .circuit(17) - .addMaterialInfo(true) + + TFGHelpers.registerMaterialInfo('create:redstone_link', { 'wrought_iron': 3 }); event.shaped('create:display_link', [ 'FED', @@ -2421,23 +2379,22 @@ const registerCreateRecipes = (event) => { // Bars - event.recipes.gtceu.cutter('tfg:create_andesite_bars') - .itemInputs('#forge:plates/tin_alloy') - .itemOutputs('create:andesite_bars') - .duration(100) - .EUt(GTValues.VA[GTValues.LV]) + event.stonecutting('4x create:andesite_bars', '#forge:ingots/tin_alloy') + event.stonecutting('4x create:brass_bars', '#forge:ingots/brass') + event.stonecutting('4x create:copper_bars', '#forge:ingots/copper') - event.recipes.gtceu.cutter('tfg:create_copper_bars') - .itemInputs('#forge:plates/copper') - .itemOutputs('create:copper_bars') - .duration(100) - .EUt(GTValues.VA[GTValues.LV]) + event.recipes.tfc.anvil(`4x create:andesite_bars`, `#forge:ingots/tin_alloy`, ['shrink_last', 'punch_second_last', 'punch_third_last']) + .tier(3).id(`tfg:anvil/create_andesite_bars`) - event.recipes.gtceu.cutter('tfg:create_brass_bars') - .itemInputs('#forge:plates/brass') - .itemOutputs('create:brass_bars') - .duration(100) - .EUt(GTValues.VA[GTValues.LV]) + event.recipes.tfc.anvil(`4x create:brass_bars`, `#forge:ingots/brass`, ['shrink_last', 'punch_second_last', 'punch_third_last']) + .tier(2).id(`tfg:anvil/create_brass_bars`) + + event.recipes.tfc.anvil(`4x create:copper_bars`, `#forge:ingots/copper`, ['shrink_last', 'punch_second_last', 'punch_third_last']) + .tier(1).id(`tfg:anvil/create_copper_bars`) + + TFGHelpers.registerMaterialInfo('create:andesite_bars', { 'tin_alloy': 0.25 }) + TFGHelpers.registerMaterialInfo('create:brass_bars', { 'brass': 0.25 }) + TFGHelpers.registerMaterialInfo('create:copper_bars', { 'copper': 0.25 }) // Doors diff --git a/kubejs/server_scripts/create/tags.js b/kubejs/server_scripts/create/tags.js index c5cdb2e42..704c76b11 100644 --- a/kubejs/server_scripts/create/tags.js +++ b/kubejs/server_scripts/create/tags.js @@ -33,11 +33,7 @@ const registerCreateItemTags = (event) => { if (dye !== 'white') event.add('tfg:colored_seats', `create:${dye}_seat`) }) - event.add('minecraft:trimmable_armor', 'create:copper_diving_helmet') - event.add('minecraft:trimmable_armor', 'create:copper_diving_boots') - - event.add('minecraft:trimmable_armor', 'create:netherite_diving_helmet') - event.add('minecraft:trimmable_armor', 'create:netherite_diving_boots') + event.removeAll('create:crushed_raw_materials') event.add('create:blaze_burner_fuel/regular', "gtceu:poor_raw_coal") event.add('create:blaze_burner_fuel/regular', "gtceu:coal_dust") @@ -86,10 +82,26 @@ const registerCreateItemTags = (event) => { 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('create:non_movable', '#tfc:can_landslide') event.remove('create:stone_types/deepslate', 'minecraft:deepslate') event.remove('create:stone_types/dripstone', 'minecraft:dripstone_block') event.remove('create:stone_types/blackstone', 'minecraft:blackstone') + + event.add('forge:smooth_stone_slab', 'create:polished_cut_granite_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_diorite_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_andesite_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_calcite_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_dripstone_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_deepslate_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_tuff_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_limestone_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_asurine_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_crimsite_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_ochrum_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_scoria_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_scorchia_slab') + event.add('forge:smooth_stone_slab', 'create:polished_cut_veridium_slab') } const registerCreateBlockTags = (event) => { @@ -133,10 +145,26 @@ const registerCreateBlockTags = (event) => { 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:ulv_super_chest') 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', 'gtceu:iv_quantum_chest') + event.add('create:non_movable', 'gtceu:luv_quantum_chest') + event.add('create:non_movable', 'gtceu:zpm_quantum_chest') + event.add('create:non_movable', 'gtceu:uv_quantum_chest') + event.add('create:non_movable', 'gtceu:uhv_quantum_chest') + event.add('create:non_movable', 'gtceu:ulv_super_tank') + event.add('create:non_movable', 'gtceu:lv_super_tank') + event.add('create:non_movable', 'gtceu:mv_super_tank') + event.add('create:non_movable', 'gtceu:hv_super_tank') + event.add('create:non_movable', 'gtceu:ev_super_tank') + event.add('create:non_movable', 'gtceu:iv_quantum_tank') + event.add('create:non_movable', 'gtceu:luv_quantum_tank') + event.add('create:non_movable', 'gtceu:zpm_quantum_tank') + event.add('create:non_movable', 'gtceu:uv_quantum_tank') + event.add('create:non_movable', 'gtceu:uhv_quantum_tank') event.add('create:non_movable', 'tfg:spice') event.add('create:non_movable', 'tfg:geyser_source') event.add('create:non_movable', 'tfg:geyser_source_small') @@ -155,7 +183,7 @@ const registerCreateFluidTags = (event) => { event.add('c:hidden_from_recipe_viewers', 'create:chocolate') event.add('c:hidden_from_recipe_viewers', 'create:honey') event.add('c:hidden_from_recipe_viewers', 'create:builders_tea') - event.add('c:hidden_from_recipe_viewers', 'create:uncraftable_potion') + event.add('c:hidden_from_recipe_viewers', 'create:potion') // Disable bulk blasting event.removeAll('create:fan_processing_catalysts/blasting') diff --git a/kubejs/server_scripts/create_additions/data.js b/kubejs/server_scripts/create_additions/data.js index f7404dc1b..ad97b1ded 100644 --- a/kubejs/server_scripts/create_additions/data.js +++ b/kubejs/server_scripts/create_additions/data.js @@ -16,8 +16,8 @@ function registerTFCDataForCreateAddition(event) { food.hunger(4) food.saturation(1) food.decayModifier(2) - food.dairy(2) - food.grain(2) + food.dairy(0.4) + food.grain(0.4) }) event.foodItem('tfc:cake', food => { diff --git a/kubejs/server_scripts/create_additions/recipes.js b/kubejs/server_scripts/create_additions/recipes.js index 91ea8892b..5ba0b86fc 100644 --- a/kubejs/server_scripts/create_additions/recipes.js +++ b/kubejs/server_scripts/create_additions/recipes.js @@ -30,27 +30,6 @@ const registerCreateAdditionsRecipes = (event) => { C: 'computercraft:wired_modem', }).addMaterialInfo().id('tfg:create_additions/shaped/digital_adapter') - // ΠŸΠΎΡ€Ρ‚Π°Ρ‚ΠΈΠ²Π½Ρ‹ΠΉ энСргСтичСский интСрфСйс - event.recipes.gtceu.shaped('createaddition:portable_energy_interface', [ - 'ABC', - 'DEC', - 'ADC' - ], { - A: '#forge:plates/brass', - B: 'create:chute', - C: 'gtceu:copper_octal_wire', - D: 'gtceu:copper_single_cable', - E: 'create:brass_casing' - }).addMaterialInfo().id('tfg:create_additions/shaped/portable_energy_interface') - - // Π‘Π°Ρ‚Π°Ρ€Π΅ΠΉΠ½Ρ‹ΠΉ Π±Π»ΠΎΠΊ - event.recipes.gtceu.assembler('create_additions/battery') - .itemInputs('gtceu:bronze_frame', '4x #forge:plates/brass', '8x #forge:screws/bronze', '#gtceu:batteries/hv') - .itemOutputs('createaddition:modular_accumulator') - .duration(400) - .EUt(30) - .addMaterialInfo(true) - // ΠšΠΎΠ»ΡŽΡ‡Π°Ρ ΠΏΡ€ΠΎΠ²ΠΎΠ»ΠΊΠ° event.shapeless('4x createaddition:barbed_wire', [ '#forge:rods/wrought_iron', diff --git a/kubejs/server_scripts/create_hypertube/recipes.js b/kubejs/server_scripts/create_hypertube/recipes.js index 39b640b69..b2a5179cf 100644 --- a/kubejs/server_scripts/create_hypertube/recipes.js +++ b/kubejs/server_scripts/create_hypertube/recipes.js @@ -39,4 +39,32 @@ function registerCreateHypertubeRecipes(event) { .inputFluids(Fluid.of('gtceu:styrene_butadiene_rubber', 144)) .EUt(GTValues.VA[GTValues.HV]) .duration(100) + + event.recipes.gtceu.assembler('create_hypertube:redstone_detector_tube_attachment') + .itemInputs('#forge:plates/stainless_steel', 'gtceu:activity_detector_cover', 'ae2:charged_certus_quartz_crystal') + .itemOutputs('create_hypertube:redstone_detector_tube_attachment') + .inputFluids(Fluid.of('gtceu:silicone_rubber', 288)) + .EUt(GTValues.VA[GTValues.HV]) + .duration(100) + + event.recipes.gtceu.assembler('create_hypertube:redstone_detector_tube_attachment_sbr') + .itemInputs('#forge:plates/stainless_steel', 'gtceu:activity_detector_cover', 'ae2:charged_certus_quartz_crystal') + .itemOutputs('create_hypertube:redstone_detector_tube_attachment') + .inputFluids(Fluid.of('gtceu:styrene_butadiene_rubber', 144)) + .EUt(GTValues.VA[GTValues.HV]) + .duration(100) + + event.recipes.gtceu.assembler('create_hypertube:tube_scanner_attachment') + .itemInputs('#forge:plates/stainless_steel', 'gtceu:activity_detector_cover', 'ae2:fluix_crystal') + .itemOutputs('create_hypertube:tube_scanner_attachment') + .inputFluids(Fluid.of('gtceu:silicone_rubber', 288)) + .EUt(GTValues.VA[GTValues.HV]) + .duration(100) + + event.recipes.gtceu.assembler('create_hypertube:tube_scanner_attachment_sbr') + .itemInputs('#forge:plates/stainless_steel', 'gtceu:activity_detector_cover', 'ae2:fluix_crystal') + .itemOutputs('create_hypertube:tube_scanner_attachment') + .inputFluids(Fluid.of('gtceu:styrene_butadiene_rubber', 144)) + .EUt(GTValues.VA[GTValues.HV]) + .duration(100) } diff --git a/kubejs/server_scripts/create_picky_wheels/tags.js b/kubejs/server_scripts/create_picky_wheels/tags.js index 708c1e980..4888dc585 100644 --- a/kubejs/server_scripts/create_picky_wheels/tags.js +++ b/kubejs/server_scripts/create_picky_wheels/tags.js @@ -8,8 +8,10 @@ function registerCreatePickyWheelsBiomeTags(event) { event.add('createpickywheels:waterwheels_whitelist', '#tfg:overworld_biomes') event.add('createpickywheels:waterwheels_whitelist', '#tfg:nether_biomes') event.add('createpickywheels:waterwheels_whitelist', '#tfg:mars_biomes') + event.add('createpickywheels:waterwheels_whitelist', '#tfg:venus_biomes') event.add('createpickywheels:windmills_whitelist', '#tfg:overworld_biomes') event.add('createpickywheels:windmills_whitelist', '#tfg:nether_biomes') event.add('createpickywheels:windmills_whitelist', '#tfg:mars_biomes') + event.add('createpickywheels:windmills_whitelist', '#tfg:venus_biomes') } \ No newline at end of file diff --git a/kubejs/server_scripts/createdeco/recipes.js b/kubejs/server_scripts/createdeco/recipes.js index 40c502bbf..148bc5606 100644 --- a/kubejs/server_scripts/createdeco/recipes.js +++ b/kubejs/server_scripts/createdeco/recipes.js @@ -131,7 +131,7 @@ const registerCreatedecoRecipes = (event) => { // Loop through each lamp type and color to create the recipes lampTypes.forEach(lampType => { lampColors.forEach(lampColor => { - let output = `createdeco:${lampColor}_${lampType}_lamp`; // Define the output item ID + let output = `2x createdeco:${lampColor}_${lampType}_lamp`; // Define the output item ID lampRecipe(output, lampType, lampColor); // Call the lampRecipe function for each combination }); }); @@ -240,41 +240,46 @@ const registerCreatedecoRecipes = (event) => { event.remove({ id: `createdeco:${bar.metal}_trapdoor` }) event.remove({ id: `createdeco:${bar.metal}_door` }) + let quarterMap = {}; + quarterMap[bar.material] = 0.25; + if (bar.metal !== 'iron') { + // Bars event.remove({ type: 'minecraft:stonecutting', output: `createdeco:${bar.metal}_bars` }) event.recipes.tfc.anvil(`4x createdeco:${bar.metal}_bars`, `#forge:ingots/${bar.material}`, ['shrink_last', 'punch_second_last', 'punch_third_last']) - .tier(bar.tier).id(`createdeco:anvil/${bar.metal}_bars`) + .tier(bar.tier).id(`tfg:anvil/createdeco_${bar.metal}_bars`) - event.recipes.gtceu.assembler(`tfg:${bar.material}_create_deco_bars`) - .itemInputs(`2x #forge:rods/${bar.material}`) - .itemOutputs(`4x createdeco:${bar.metal}_bars`) - .duration(100) - .EUt(GTValues.VA[GTValues.LV]) - .circuit(12) + event.stonecutting(`4x createdeco:${bar.metal}_bars`, `#forge:ingots/${bar.material}`) + TFGHelpers.registerMaterialInfo(`createdeco:${bar.metal}_bars`, quarterMap) + + // Door event.recipes.tfc.anvil(`createdeco:${bar.metal}_door`, `#forge:double_plates/${bar.material}`, ['draw_last', 'draw_second_last', 'punch_third_last']) - .tier(bar.tier).id(`createdeco:anvil/${bar.metal}_door`) + .tier(bar.tier).id(`tfg:anvil/createdeco_${bar.metal}_door`) event.recipes.gtceu.cutter(`tfg:${bar.material}_create_deco_door`) .itemInputs(`#forge:double_plates/${bar.material}`) .itemOutputs(`createdeco:${bar.metal}_door`) .duration(100) .EUt(GTValues.VA[GTValues.LV]) + + let twoMap = {}; + twoMap[bar.material] = 2; + TFGHelpers.registerMaterialInfo(`createdeco:${bar.metal}_door`, twoMap) } + // Overlay bars event.remove({ type: 'minecraft:stonecutting', output: `createdeco:${bar.metal}_bars_overlay` }) - event.recipes.tfc.anvil(`2x createdeco:${bar.metal}_bars_overlay`, `#forge:ingots/${bar.material}`, ['draw_last', 'punch_second_last', 'punch_third_last']) - .tier(bar.tier).id(`createdeco:anvil/${bar.metal}_bars_overlay`) + event.recipes.tfc.anvil(`4x createdeco:${bar.metal}_bars_overlay`, `#forge:ingots/${bar.material}`, ['draw_last', 'punch_second_last', 'punch_third_last']) + .tier(bar.tier).id(`tfg:anvil/createdeco_${bar.metal}_bars_overlay`) - event.recipes.gtceu.assembler(`tfg:${bar.material}_create_deco_bars_overlay`) - .itemInputs(`1x #forge:rods/${bar.material}`, `1x #forge:plates/${bar.material}`) - .itemOutputs(`4x createdeco:${bar.metal}_bars_overlay`) - .duration(100) - .EUt(GTValues.VA[GTValues.LV]) - .circuit(13) + event.stonecutting(`4x createdeco:${bar.metal}_bars_overlay`, `#forge:ingots/${bar.material}`) + TFGHelpers.registerMaterialInfo(`createdeco:${bar.metal}_bars_overlay`, quarterMap) + + // Facade event.shaped(`4x createdeco:${bar.metal}_facade`, [ ' A ', 'ABA', @@ -291,9 +296,11 @@ const registerCreatedecoRecipes = (event) => { event.shapeless(`createdeco:copper_trapdoor`, `tfc:metal/trapdoor/copper`) event.shapeless(`tfc:metal/trapdoor/copper`, `createdeco:copper_trapdoor`) + TFGHelpers.registerMaterialInfo('createdeco:copper_trapdoor', { 'copper': 1 }) event.shapeless(`createdeco:industrial_iron_trapdoor`, `tfc:metal/trapdoor/steel`) event.shapeless(`tfc:metal/trapdoor/steel`, `createdeco:industrial_iron_trapdoor`) + TFGHelpers.registerMaterialInfo('createdeco:industrial_iron_trapdoor', { 'steel': 1 }) // TODO: move these two into the tag prefixes in tfg-core, then remove these recipes @@ -315,6 +322,8 @@ const registerCreatedecoRecipes = (event) => { .duration(GTMaterials.Brass.getMass()) .EUt(GTValues.VA[GTValues.ULV]) + TFGHelpers.registerMaterialInfo('createdeco:brass_trapdoor', { 'brass': 1 }) + event.recipes.tfc.anvil(`createdeco:zinc_trapdoor`, `#forge:ingots/zinc`, ['shrink_last', 'draw_second_last', 'draw_third_last']) .tier(1).id(`createdeco:anvil/zinc_trapdoor`) @@ -333,6 +342,8 @@ const registerCreatedecoRecipes = (event) => { .duration(GTMaterials.Zinc.getMass()) .EUt(GTValues.VA[GTValues.ULV]) + TFGHelpers.registerMaterialInfo('createdeco:zinc_trapdoor', { 'zinc': 1 }) + event.recipes.tfc.anvil(`createdeco:andesite_trapdoor`, `#forge:ingots/tin_alloy`, ['shrink_last', 'draw_second_last', 'draw_third_last']) .tier(3).id(`createdeco:anvil/andesite_trapdoor`) @@ -351,6 +362,8 @@ const registerCreatedecoRecipes = (event) => { .duration(GTMaterials.TinAlloy.getMass()) .EUt(GTValues.VA[GTValues.ULV]) + TFGHelpers.registerMaterialInfo('createdeco:andesite_trapdoor', { 'tin_alloy': 1 }) + // #endregion //#region Coins @@ -446,7 +459,7 @@ const registerCreatedecoRecipes = (event) => { // #region Ladders - event.shaped('6x createdeco:iron_ladder', [ + event.shaped('7x createdeco:iron_ladder', [ 'A A', 'AAA', 'A A' @@ -456,7 +469,9 @@ const registerCreatedecoRecipes = (event) => { event.stonecutting('2x createdeco:iron_ladder', '#forge:ingots/wrought_iron') - event.shaped('6x createdeco:zinc_ladder', [ + TFGHelpers.registerMaterialInfo('createdeco:iron_ladder', { 'wrought_iron': 0.5 }) + + event.shaped('7x createdeco:zinc_ladder', [ 'A A', 'AAA', 'A A' @@ -464,7 +479,9 @@ const registerCreatedecoRecipes = (event) => { A: '#forge:rods/zinc' }).id('tfg:createdeco/shaped/zinc_ladder') - event.shaped('6x createdeco:industrial_iron_ladder', [ + TFGHelpers.registerMaterialInfo('createdeco:zinc_ladder', { 'zinc': 0.5 }) + + event.shaped('7x createdeco:industrial_iron_ladder', [ 'A A', 'AAA', 'A A' @@ -472,6 +489,8 @@ const registerCreatedecoRecipes = (event) => { A: '#forge:rods/steel' }).id('tfg:createdeco/shaped/industrial_iron_ladder') + TFGHelpers.registerMaterialInfo('createdeco:industrial_iron_ladder', { 'steel': 0.5 }) + // #endregion // #region Shipping Containers @@ -509,11 +528,17 @@ const registerCreatedecoRecipes = (event) => { // #region Sheet Metal event.stonecutting('4x createdeco:andesite_sheet_metal', '#forge:plates/tin_alloy') + TFGHelpers.registerMaterialInfo('createdeco:andesite_sheet_metal', { 'tin_alloy': 0.25 }) event.stonecutting('4x createdeco:brass_sheet_metal', '#forge:plates/brass') + TFGHelpers.registerMaterialInfo('createdeco:brass_sheet_metal', { 'brass': 0.25 }) event.stonecutting('4x createdeco:iron_sheet_metal', '#forge:plates/wrought_iron') + TFGHelpers.registerMaterialInfo('createdeco:iron_sheet_metal', { 'wrought_iron': 0.25 }) event.stonecutting('4x createdeco:copper_sheet_metal', '#forge:plates/copper') + TFGHelpers.registerMaterialInfo('createdeco:copper_sheet_metal', { 'copper': 0.25 }) event.stonecutting('4x createdeco:industrial_iron_sheet_metal', '#forge:plates/steel') + TFGHelpers.registerMaterialInfo('createdeco:industrial_iron_sheet_metal', { 'steel': 0.25 }) event.stonecutting('4x createdeco:zinc_sheet_metal', '#forge:plates/zinc') + TFGHelpers.registerMaterialInfo('createdeco:zinc_sheet_metal', { 'zinc': 0.25 }) // #endregion }; diff --git a/kubejs/server_scripts/deafission/recipes.js b/kubejs/server_scripts/deafission/recipes.js index 99da8fd26..014ea9ab3 100644 --- a/kubejs/server_scripts/deafission/recipes.js +++ b/kubejs/server_scripts/deafission/recipes.js @@ -7,22 +7,4 @@ function registerDeaFissionRecipes(event) { event.remove({ id: 'deafission:fission_reactor_coolant/thorium/nak_to_plasma' }) event.remove({ id: 'deafission:fission_reactor_coolant/uranium/water_to_steam' }) - let component = function (type, block, value) { - event.custom({ - type: 'deafission:fission_component', - componentType: type, - block: block, - data: { - value: value - } - }); - }; - - // Examples: https://bitbucket.org/Vazde/minecraft-fission/src/master/mod/settings-run/kubejs/server_scripts/recipes.js - - component("HEAT", "minecraft:blue_ice", 0.5) - component("HEAT", "tfg:glacian_wool_frame", 2); - component("HEAT", "tfg:aes_insulation_frame", 1); - component("HEAT", "tfg:moderate_core_frame", 10); - component("HEAT", "tfg:impure_moderate_core_frame", 5); } \ No newline at end of file diff --git a/kubejs/server_scripts/domum_ornamentum/tags.js b/kubejs/server_scripts/domum_ornamentum/tags.js index 5a85f632a..04b05cd50 100644 --- a/kubejs/server_scripts/domum_ornamentum/tags.js +++ b/kubejs/server_scripts/domum_ornamentum/tags.js @@ -95,6 +95,7 @@ function registerDomumOrnamentumBlockTags(event) { "gtceu:dark_concrete_windmill_b", "gtceu:small_dark_concrete_bricks", "gtceu:square_dark_concrete_bricks", + "gtceu:treated_wood_planks", //createdeco blocks "createdeco:dean_bricks", "createdeco:short_dean_bricks", @@ -151,6 +152,13 @@ function registerDomumOrnamentumBlockTags(event) { "createdeco:corner_pearl_bricks", "createdeco:cracked_pearl_bricks", "createdeco:mossy_pearl_bricks", + //Ad Astra blocks + "#tfg:ad_astra_iron_block", + "#tfg:ad_astra_etrium_block", + "#tfg:ad_astra_steel_block", + "#tfg:ad_astra_desh_block", + "#tfg:ad_astra_ostrum_block", + "#tfg:ad_astra_calorite_block", ]; materials.forEach((material) => { diff --git a/kubejs/server_scripts/endermanoverhaul/tags.js b/kubejs/server_scripts/endermanoverhaul/tags.js index 8b31e5a38..8185fce25 100644 --- a/kubejs/server_scripts/endermanoverhaul/tags.js +++ b/kubejs/server_scripts/endermanoverhaul/tags.js @@ -5,9 +5,6 @@ const registerEndermanOverhaulItemTags = (event) => { const DISABLED_ITEMS = [ 'endermanoverhaul:corrupted_blade', - 'endermanoverhaul:savanna_hood', - 'endermanoverhaul:snowy_hood', - 'endermanoverhaul:bubble_pearl', 'endermanoverhaul:icy_pearl' ] diff --git a/kubejs/server_scripts/exposure/recipes.js b/kubejs/server_scripts/exposure/recipes.js index 9b2505895..3bb130821 100644 --- a/kubejs/server_scripts/exposure/recipes.js +++ b/kubejs/server_scripts/exposure/recipes.js @@ -3,124 +3,158 @@ const registerExposureRecipes = (event) => { - event.remove({ id: 'exposure:sequenced_color_film_developing' }) - - // Lightroom - event.shaped('exposure:lightroom', [ - 'AB', - 'CC', - 'CC' - ], { - A: '#tfc:lamps', - B: 'minecraft:redstone_torch', - C: '#minecraft:planks' - }).id('exposure:lightroom') + const $ISPRecipeLogic = Java.loadClass("su.terrafirmagreg.core.common.data.tfgt.machine.trait.ISPOutputRecipeLogic") - // Camera - event.shaped('exposure:camera', [ - 'ABC', - 'DED', - 'FDF' - ], { - A: 'minecraft:lever', - B: 'gtceu:wrought_iron_gear', - C: '#minecraft:wooden_buttons', - D: '#forge:plates/wrought_iron', - E: 'tfc:lens', - F: '#forge:screws/wrought_iron' - }).id('exposure:camera') + event.remove({ id: 'exposure:sequenced_color_film_developing' }) - // Album - event.shapeless('exposure:album', [ - 'minecraft:writable_book', 'minecraft:paper', 'minecraft:paper' - ]).id('exposure:album') + event.replaceInput({ id: 'exposure:interplanar_projector' }, 'minecraft:ender_eye', '#forge:foils/silver') - // Black and White Film - event.shaped('exposure:black_and_white_film', [ - 'ABB', - 'CDD', - 'CEE' - ], { - A: '#forge:rings/wrought_iron', - B: '#forge:dyes/white', - C: '#forge:foils/wrought_iron', - D: '#forge:dusts/gunpowder', - E: 'tfc:food/dried_kelp', - }).id('exposure:black_and_white_film') + // Lightroom + event.shaped('exposure:lightroom', [ + 'AB', + 'CC', + 'CC' + ], { + A: '#tfc:lamps', + B: 'minecraft:redstone_torch', + C: '#minecraft:planks' + }).id('exposure:lightroom') - // Colored Film - event.shaped('exposure:color_film', [ - 'ABB', - 'CDD', - 'CEE' - ], { - A: '#forge:rings/wrought_iron', - B: '#forge:dyes/blue', - C: '#forge:foils/wrought_iron', - D: '#forge:foils/gold', - E: 'tfc:food/dried_kelp', - }).id('exposure:color_film') + // Camera + event.shaped('exposure:camera', [ + 'ABC', + 'DED', + 'FDF' + ], { + A: 'minecraft:lever', + B: '#forge:small_gears', + C: '#minecraft:wooden_buttons', + D: '#forge:plates/wrought_iron', + E: 'tfc:lens', + F: '#forge:screws/any_bronze' + }).id('exposure:camera') - event.recipes.createSequencedAssembly([ - 'exposure:developed_color_film', - ], 'exposure:color_film', [ - event.recipes.createFilling('exposure:color_film', ['exposure:color_film', Fluid.of('tfc:spring_water', 50)]), - ]).transitionalItem('exposure:color_film').loops(1).id('tfg:color_film_developing') + // Album + event.shapeless('exposure:album', [ + 'minecraft:writable_book', 'minecraft:paper', 'minecraft:paper' + ]).id('exposure:album') + // Film + event.shaped('exposure:black_and_white_film', [ + 'ABB', + 'CDD', + ' EE' + ], { + A: '#forge:rings/wrought_iron', + B: '#forge:dyes/white', + C: '#forge:foils/wrought_iron', + D: '#forge:dusts/gunpowder', + E: 'tfc:food/dried_kelp', + }).id('exposure:black_and_white_film') - // Developed Black and White Film - event.custom({ - type: "exposure:film_developing", - film: { - item: "exposure:black_and_white_film" - }, - ingredients: [ - { - type: "tfc:fluid_item", - fluid_ingredient: { - ingredient: "minecraft:water", - amount: 1000 - } - }, - ], - result: { - item: "exposure:developed_black_and_white_film" - } - }).id('exposure:developing_black_and_white_film') + event.shaped('exposure:color_film', [ + 'ABB', + 'CDD', + ' EE' + ], { + A: '#forge:rings/wrought_iron', + B: '#forge:dyes/blue', + C: '#forge:foils/wrought_iron', + D: '#forge:foils/gold', + E: 'tfc:food/dried_kelp', + }).id('exposure:color_film') - // Developed Color Film - event.custom({ - type: "exposure:film_developing", - film: { - item: "exposure:color_film" - }, - ingredients: [ - { - type: "tfc:fluid_item", - fluid_ingredient: { - ingredient: "minecraft:water", - amount: 1000 - } - }, - { - type: "tfc:fluid_item", - fluid_ingredient: { - ingredient: "minecraft:water", - amount: 1000 - } - }, - { - type: "tfc:fluid_item", - fluid_ingredient: { - ingredient: "minecraft:water", - amount: 1000 - } - }, - ], - result: { - item: "exposure:developed_color_film" - } - }).id('exposure:developing_color_film') + // Creating the developer - event.replaceInput({id: 'exposure:interplanar_projector'}, 'minecraft:ender_eye', '#forge:plates/silver') + // Pyrogallol + event.recipes.tfc.pot(['tfc:powder/saltpeter'], Fluid.of('tfc:tannin', 500), 30 * 20, 750) + .itemOutput('tfg:pyrogallol_dust') + .id('tfg:pot/tannin_to_pyrogallol_saltpeter') + + event.recipes.tfc.pot(['tfc:powder/soda_ash'], Fluid.of('tfc:tannin', 500), 30 * 20, 750) + .itemOutput('tfg:pyrogallol_dust') + .id('tfg:pot/tannin_to_pyrogallol_soda_ash') + + event.recipes.firmalife.vat() + .inputs('tfc:powder/saltpeter', Fluid.of('tfc:tannin', 500)) + .length(30 * 20) + .temperature(750) + .outputItem('tfg:pyrogallol_dust') + .id('tfg:vat/tannin_to_pyrogallol_saltpeter') + + event.recipes.firmalife.vat() + .inputs('tfc:powder/soda_ash', Fluid.of('tfc:tannin', 500)) + .length(30 * 20) + .temperature(750) + .outputItem('tfg:pyrogallol_dust') + .id('tfg:vat/tannin_to_soda_ash') + + event.recipes.gtceu.chemical_reactor('tfg:tannin_to_pyrogallol_saltpeter') + .itemInputs('tfc:powder/saltpeter') + .inputFluids(Fluid.of('tfc:tannin', 500)) + .itemOutputs('tfg:pyrogallol_dust') + .duration(200) + .EUt(7) + + event.recipes.gtceu.chemical_reactor('tfg:tannin_to_pyrogallol_soda_ash') + .itemInputs('tfc:powder/soda_ash') + .inputFluids(Fluid.of('tfc:tannin', 500)) + .itemOutputs('tfg:pyrogallol_dust') + .duration(200) + .EUt(7) + + // Developer + event.recipes.tfc.pot(['#forge:dusts/pyrogallol', 'tfc:powder/soda_ash', 'tfc:powder/sulfur', '#exposure:black_printing_dyes'], Fluid.of('tfc:lye', 1000), 30 * 20, 750) + .fluidOutput(Fluid.of('tfg:bw_photographic_developer', 1000)) + .id('tfg:pot/bw_developer') + + event.recipes.gtceu.mixer('tfg:bw_developer') + .itemInputs('#forge:dusts/pyrogallol', 'tfc:powder/soda_ash', 'tfc:powder/sulfur', '#exposure:black_printing_dyes') + .inputFluids(Fluid.of('tfc:lye', 1000)) + .outputFluids(Fluid.of('tfg:bw_photographic_developer', 1000)) + .duration(200) + .EUt(7) + + event.recipes.gtceu.mixer('tfg:color_developer') + .itemInputs('#forge:dusts/pyrogallol', 'tfc:powder/soda_ash', 'tfc:powder/sulfur', '#exposure:cyan_printing_dyes', '#exposure:yellow_printing_dyes', '#exposure:magenta_printing_dyes') + .inputFluids(Fluid.of('tfc:lye', 1000)) + .outputFluids(Fluid.of('tfg:color_photographic_developer', 1000)) + .duration(200) + .EUt(7) + + // Developing film + event.recipes.tfc.barrel_sealed(4000) + .inputs('exposure:black_and_white_film', Fluid.of('tfg:bw_photographic_developer', 250)) + .outputItem(TFC.isp.of('exposure:developed_black_and_white_film').simpleModifier('tfg:copy_nbt').asCanonClass()) + .id('tfg:barrel/develop_black_and_white_film') + + event.recipes.gtceu.food_processor('black_and_white_film') + .itemInputs('exposure:black_and_white_film') + .inputFluids(Fluid.of('tfg:bw_photographic_developer', 250)) + .itemOutputs('exposure:developed_black_and_white_film') + .duration(60 * 20) + .EUt(2) + + $ISPRecipeLogic.RegisterRecipeData('food_processor/black_and_white_film', + [Ingredient.of('exposure:black_and_white_film')], + TFC.isp.of('exposure:developed_black_and_white_film').simpleModifier('tfg:copy_nbt').asCanonClass(), + []) + + // Developing color film + event.recipes.tfc.barrel_sealed(4000) + .inputs('exposure:color_film', Fluid.of('tfg:color_photographic_developer', 250)) + .outputItem(TFC.isp.of('exposure:developed_color_film').simpleModifier('tfg:copy_nbt')) + .id('tfg:barrel/develop_color_film') + + event.recipes.gtceu.food_processor('color_film') + .itemInputs('exposure:color_film') + .inputFluids(Fluid.of('tfg:color_photographic_developer', 250)) + .itemOutputs('exposure:developed_color_film') + .duration(60 * 20) + .EUt(2) + + $ISPRecipeLogic.RegisterRecipeData('food_processor/color_film', + [Ingredient.of('exposure:color_film')], + TFC.isp.of('exposure:developed_color_film').simpleModifier('tfg:copy_nbt').asCanonClass(), + []) } \ No newline at end of file diff --git a/kubejs/server_scripts/exposure/tags.js b/kubejs/server_scripts/exposure/tags.js index 80690c1fb..5e4b04c34 100644 --- a/kubejs/server_scripts/exposure/tags.js +++ b/kubejs/server_scripts/exposure/tags.js @@ -11,4 +11,8 @@ const registerExposureItemTags = (evt) => { evt.add('exposure:magenta_printing_dyes', '#forge:dyes/magenta') evt.add('exposure:photo_agers', '#forge:dyes/brown') + + evt.add('exposure:flashes', 'simplylight:illuminant_block') + evt.add('exposure:flashes', 'create:rose_quartz_lamp') + evt.add('exposure:flashes', 'gtceu:white_lamp') } \ No newline at end of file diff --git a/kubejs/server_scripts/extended_ae2/recipes.js b/kubejs/server_scripts/extended_ae2/recipes.js index 6cafbed10..b1dbcb69b 100644 --- a/kubejs/server_scripts/extended_ae2/recipes.js +++ b/kubejs/server_scripts/extended_ae2/recipes.js @@ -693,13 +693,7 @@ const registerExtendedAE2Recipes = (event) => { .EUt(1920) event.recipes.gtceu.assembler('expatternprovider:ingredient_buffer') - .itemInputs( - 'gtceu:hv_machine_casing', - '2x ae2:quartz_vibrant_glass', - 'gtceu:stainless_steel_drum', - '2x ae2:cell_component_1k', - 'gtceu:hv_robot_arm', - 'gtceu:hv_electric_pump') + .itemInputs('gtceu:hv_buffer', 'ae2:cell_component_1k') .itemOutputs('expatternprovider:ingredient_buffer') .duration(200) .EUt(1920) @@ -875,6 +869,15 @@ const registerExtendedAE2Recipes = (event) => { .EUt(GTValues.VA[GTValues.IV]) .dimension('ad_astra:moon') + event.shaped('expatternprovider:fishbig', [ + 'CCC', + 'CFC', + 'CCC' + ], { + C: '#tfc:sewing_light_cloth', + F: '#minecraft:fishes' + }).id('tfg:shaped/fishbig') + //#endregion } diff --git a/kubejs/server_scripts/firmalife/recipes.js b/kubejs/server_scripts/firmalife/recipes.js index 378369281..868eb0a84 100644 --- a/kubejs/server_scripts/firmalife/recipes.js +++ b/kubejs/server_scripts/firmalife/recipes.js @@ -50,7 +50,9 @@ const registerFirmaLifeRecipes = (event) => { //#endregion - event.replaceInput({ id: 'firmalife:mixing_bowl' }, 'firmalife:treated_lumber', '#tfc:lumber') + event.shapeless('firmalife:barrel_stave', ['2x firmalife:treated_lumber', '#forge:screws/any_bronze', '#forge:tools/hammers']) + .id('firmalife:crafting/barrel_stave') + // Π”Π΅ΠΊΡ€Π°Ρ„Ρ‚ Jag Lid event.recipes.tfc.heating('tfc:jar_lid', 230) @@ -556,21 +558,6 @@ const registerFirmaLifeRecipes = (event) => { .EUt(GTValues.VA[GTValues.ULV]) .duration(200) - event.recipes.firmalife.mixing_bowl() - .itemIngredients(['#tfg:wood_dusts', '#tfg:wood_dusts', 'tfc:glue']) - .outputItem('2x tfg:chipboard_composite') - .id('tfg:mixing_bowl/chipboard_composite_glue') - - event.recipes.firmalife.mixing_bowl() - .itemIngredients(['#tfg:wood_dusts', '#tfg:wood_dusts', '#tfg:wood_dusts', '#tfg:wood_dusts', 'gtceu:sticky_resin']) - .outputItem('4x tfg:chipboard_composite') - .id('tfg:mixing_bowl/chipboard_composite_resin') - - event.recipes.firmalife.mixing_bowl() - .itemIngredients(['#tfg:wood_dusts', '#tfg:wood_dusts', '#forge:wax']) - .outputItem('2x tfg:chipboard_composite') - .id('tfg:mixing_bowl/chipboard_composite_wax') - // Dough global.TFC_GRAINS.forEach(grain => { @@ -699,30 +686,12 @@ const registerFirmaLifeRecipes = (event) => { .outputItem(`4x firmalife:food/${grain}_dough`) .id(`tfg:mixing_bowl/${grain}_dough`) - event.recipes.firmalife.mixing_bowl() - .ingredients([ - TFC.ingredient.notRotten(`tfc:food/${grain}_flour`), - TFC.ingredient.notRotten(`tfc:food/${grain}_flour`), - `#tfc:sweetener`, - `#tfc:sweetener`], - Fluid.of('firmalife:yeast_starter', 400)) - .outputItem(`8x firmalife:food/${grain}_dough`) - .id(`tfg:mixing_bowl/${grain}_dough_2`) - event.recipes.firmalife.mixing_bowl() .ingredients([ TFC.ingredient.notRotten(`tfc:food/${grain}_flour`)], Fluid.of('minecraft:water', 100)) .outputItem(`4x tfc:food/${grain}_dough`) .id(`tfg:mixing_bowl/${grain}_flatbread_dough`) - - event.recipes.firmalife.mixing_bowl() - .ingredients([ - TFC.ingredient.notRotten(`tfc:food/${grain}_flour`), - TFC.ingredient.notRotten(`tfc:food/${grain}_flour`)], - Fluid.of('minecraft:water', 200)) - .outputItem(`8x tfc:food/${grain}_dough`) - .id(`tfg:mixing_bowl/${grain}_flatbread_dough_2`) }) event.recipes.tfc.advanced_shapeless_crafting(TFC.isp.of(`2x firmalife:food/hardtack_dough`).copyFood(), [ @@ -890,4 +859,172 @@ const registerFirmaLifeRecipes = (event) => { setChocolateHeating('white') setChocolateHeating('milk') setChocolateHeating('dark') + + //fixing the bread unrotting + event.remove({ id: 'firmalife:crafting/oat_slice' }) + event.remove({ id: 'firmalife:crafting/wheat_slice' }) + event.remove({ id: 'firmalife:crafting/barley_slice' }) + event.remove({ id: 'firmalife:crafting/maize_slice' }) + event.remove({ id: 'firmalife:crafting/rice_slice' }) + event.remove({ id: 'firmalife:crafting/rye_slice' }) + + event.recipes.tfc.advanced_shapeless_crafting( + TFC.itemStackProvider.of('2x firmalife:food/oat_slice').copyFood(), + [TFC.ingredient.notRotten('tfc:food/oat_bread'), '#forge:tools/knives'], 'tfc:food/oat_bread') + .id(`tfg:crafting/oat_slice`) + event.recipes.tfc.advanced_shapeless_crafting( + TFC.itemStackProvider.of('2x firmalife:food/wheat_slice').copyFood(), + [TFC.ingredient.notRotten('tfc:food/wheat_bread'), '#forge:tools/knives'], 'tfc:food/wheat_bread') + .id(`tfg:crafting/wheat_slice`) + event.recipes.tfc.advanced_shapeless_crafting( + TFC.itemStackProvider.of('2x firmalife:food/barley_slice').copyFood(), + [TFC.ingredient.notRotten('tfc:food/barley_bread'), '#forge:tools/knives'], 'tfc:food/barley_bread') + .id(`tfg:crafting/barley_slice`) + event.recipes.tfc.advanced_shapeless_crafting( + TFC.itemStackProvider.of('2x firmalife:food/maize_slice').copyFood(), + [TFC.ingredient.notRotten('tfc:food/maize_bread'), '#forge:tools/knives'], 'tfc:food/maize_bread') + .id(`tfg:crafting/maize_slice`) + event.recipes.tfc.advanced_shapeless_crafting( + TFC.itemStackProvider.of('2x firmalife:food/rice_slice').copyFood(), + [TFC.ingredient.notRotten('tfc:food/rice_bread'), '#forge:tools/knives'], 'tfc:food/rice_bread') + .id(`tfg:crafting/rice_slice`) + event.recipes.tfc.advanced_shapeless_crafting( + TFC.itemStackProvider.of('2x firmalife:food/rye_slice').copyFood(), + [TFC.ingredient.notRotten('tfc:food/rye_bread'), '#forge:tools/knives'], 'tfc:food/rye_bread') + .id(`tfg:crafting/rye_slice`) + + //fixing the cheese curd unrotting + event.remove({ id: 'firmalife:crafting/cheddar_wheel' }) + event.remove({ id: 'firmalife:crafting/chevre_wheel' }) + event.remove({ id: 'firmalife:crafting/rajya_metok_wheel' }) + event.remove({ id: 'firmalife:barrel/gouda' }) + event.remove({ id: 'firmalife:barrel/feta' }) + event.remove({ id: 'firmalife:barrel/shosha' }) + + event.recipes.tfc.advanced_shaped_crafting( + TFC.itemStackProvider.of('firmalife:cheddar_wheel').copyFood(), [ + 'AAA', + 'BBB', + 'AAA' + ], { + A: 'tfc:powder/salt', + B: TFC.ingredient.notRotten('firmalife:food/milk_curd') + }, 0, 0).id('tfg:crafting/cheddar_wheel') + event.recipes.tfc.advanced_shaped_crafting( + TFC.itemStackProvider.of('firmalife:chevre_wheel').copyFood(), [ + 'AAA', + 'BBB', + 'AAA' + ], { + A: 'tfc:powder/salt', + B: TFC.ingredient.notRotten('firmalife:food/goat_curd') + }, 0, 0).id('tfg:crafting/chevre_wheel') + event.recipes.tfc.advanced_shaped_crafting( + TFC.itemStackProvider.of('firmalife:rajya_metok_wheel').copyFood(), [ + 'AAA', + 'BBB', + 'AAA' + ], { + A: 'tfc:powder/salt', + B: TFC.ingredient.notRotten('firmalife:food/yak_curd') + }, 0, 0).id('tfg:crafting/rajya_metok_wheel') + event.custom({ + "type": "tfc:barrel_sealed", + "input_item": { + "count": 3, + "ingredient": { + "type": "tfc:not_rotten", + "ingredient": { "item": "firmalife:food/milk_curd" } + } + }, + "input_fluid": { + "ingredient": "tfc:salt_water", + "amount": 750 + }, + "output_item": { + "item": "firmalife:gouda_wheel" + }, + "duration": 16000 + }).id('tfg:barrel/gouda_wheel') + event.custom({ + "type": "tfc:barrel_sealed", + "input_item": { + "count": 3, + "ingredient": { + "type": "tfc:not_rotten", + "ingredient": { "item": "firmalife:food/goat_curd" } + } + }, + "input_fluid": { + "ingredient": "tfc:salt_water", + "amount": 750 + }, + "output_item": { + "item": "firmalife:feta_wheel" + }, + "duration": 16000 + }).id('tfg:barrel/feta_wheel') + event.custom({ + "type": "tfc:barrel_sealed", + "input_item": { + "count": 3, + "ingredient": { + "type": "tfc:not_rotten", + "ingredient": { "item": "firmalife:food/yak_curd" } + } + }, + "input_fluid": { + "ingredient": "tfc:salt_water", + "amount": 750 + }, + "output_item": { + "item": "firmalife:shosha_wheel" + }, + "duration": 16000 + }).id('tfg:barrel/shosha_wheel') + + // #region Oven heating recipes + + event.recipes.tfc.heating(`firmalife:oven_top`, 1399) + .resultItem(`firmalife:cured_oven_top`) + .id(`tfg:heating/oven_top`) + event.recipes.tfc.heating(`firmalife:oven_chimney`, 1399) + .resultItem(`firmalife:cured_oven_chimney`) + .id(`tfg:heating/oven_chimney`) + event.recipes.tfc.heating(`firmalife:oven_bottom`, 1399) + .resultItem(`firmalife:cured_oven_bottom`) + .id(`tfg:heating/oven_bottom`) + event.recipes.tfc.heating(`firmalife:oven_hopper`, 1399) + .resultItem(`firmalife:cured_oven_hopper`) + .id(`tfg:heating/oven_hopper`) + + // #endregion + + // Adds a tooltip to the bacon craft to tell people it needs to be smoked first, + // and adds traits that normally disappear on the craft + + event.recipes.tfc.advanced_shapeless_crafting( + TFC.isp.of(Item.of('4x firmalife:food/bacon') + .withName(Text.translate('tfg.emi.bacon_requirement'))) + .addTrait("firmalife:smoked") + .addTrait("tfc:brined") + .addTrait("tfc:salted"), + [ + TFC.ingredient.notRotten(TFC.ingredient.hasTrait('tfc:food/pork', "firmalife:smoked")), + '#forge:tools/knives', + 'tfc:powder/salt' + ]) + .modifyResult((craftingGrid, result) => { + result.resetHoverName(); + return result; + }) + .id('firmalife:crafting/bacon') + + // Replacement for yeast starter recipe that uses a different, more descriptive tag + + event.recipes.tfc.barrel_sealed(72000) + .inputFluid(Fluid.of('minecraft:water', 100)) + .inputItem(TFC.ingredient.hasTrait(Ingredient.of('#tfg:dried_fruit'), "firmalife:dried")) + .outputFluid(Fluid.of('firmalife:yeast_starter', 100)) + .id('firmalife:barrel/yeast_starter') } diff --git a/kubejs/server_scripts/firmalife/tags.js b/kubejs/server_scripts/firmalife/tags.js index f43e51d25..0a66fefd9 100644 --- a/kubejs/server_scripts/firmalife/tags.js +++ b/kubejs/server_scripts/firmalife/tags.js @@ -14,12 +14,16 @@ const registerFirmaLifeItemTags = (event) => { event.add('c:hidden_from_recipe_viewers', item) }) - event.add('minecraft:trimmable_armor', '#firmalife:beekeeper_armor') - - event.add('tfc:foods/usable_in_salad', 'firmalife:food/pickled_egg') - // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Ρ‚Π΅Π³ΠΎΠ² Ρƒ Ρ€ΡƒΠ΄ event.removeAllTagsFrom("/tfc:ore/[^*]+/[^*]+/") + + // Make our own "dried fruit" tag so we can display something in EMI - used for yeast starter + const fruitArray = Ingredient.of('#tfc:foods/fruits').itemIds.toArray().map(String) + fruitArray.forEach(fruit => { + if (fruit !== 'betterend:shadow_berry_cooked' && fruit !== 'minecraft:popped_chorus_fruit') { + event.add('tfg:dried_fruit', fruit) + } + }) } const registerFirmaLifeBlockTags = (event) => { @@ -74,8 +78,11 @@ const registerFirmaLifeFluidTags = (event) => { // ДобавляСм Ρ‚Π΅Π³ для скрытия Π² EMI event.add('c:hidden_from_recipe_viewers', 'firmalife:metal/chromium') + event.add('c:hidden_from_recipe_viewers', 'firmalife:metal/stainless_steel') event.add('c:hidden_from_recipe_viewers', 'firmalife:chocolate') + event.add('c:hidden_from_recipe_viewers', 'firmalife:fruity_fluid') + // Im going to leave these, but I dont think this tag does anything(?). event.add('firmalife:mixable', 'tfc:spring_water') event.add('firmalife:mixable', 'tfcchannelcasting:white_chocolate') event.add('firmalife:mixable', 'tfcchannelcasting:milk_chocolate') @@ -83,5 +90,8 @@ const registerFirmaLifeFluidTags = (event) => { event.add('firmalife:mixable', 'afc:maple_syrup') event.add('firmalife:mixable', 'afc:birch_syrup') + event.add('firmalife:oils', 'tfc:tallow') event.add('firmalife:oils', 'gtceu:seed_oil') + event.add('firmalife:oils', 'gtceu:fish_oil') + event.add('firmalife:oils', 'tfg:triglyceride_oil') } diff --git a/kubejs/server_scripts/greate/recipes.js b/kubejs/server_scripts/greate/recipes.js index 469ff20a3..2f48a8e4f 100644 --- a/kubejs/server_scripts/greate/recipes.js +++ b/kubejs/server_scripts/greate/recipes.js @@ -16,67 +16,67 @@ function registerGreateRecipes(event) { // #region Shafts event.shapeless('9x greate:andesite_alloy_shaft', ['#forge:plates/black_bronze', '#forge:tools/saws']) - .id('gtceu:shaped/andesite_alloy_shaft_black_bronze') + .id('greate:shaped/andesite_alloy_shaft_black_bronze') event.shapeless('9x greate:andesite_alloy_shaft', ['#forge:plates/bronze', '#forge:tools/saws']) - .id('gtceu:shaped/andesite_alloy_shaft_bronze') + .id('greate:shaped/andesite_alloy_shaft_bronze') event.shapeless('9x greate:andesite_alloy_shaft', ['#forge:plates/bismuth_bronze', '#forge:tools/saws']) - .id('gtceu:shaped/andesite_alloy_shaft_bismuth_bronze') + .id('greate:shaped/andesite_alloy_shaft_bismuth_bronze') event.shapeless('9x greate:steel_shaft', ['#forge:plates/steel', '#forge:tools/saws']) - .id('gtceu:shaped/steel_shaft') + .id('greate:shaped/steel_shaft') event.shapeless('9x greate:aluminium_shaft', ['#forge:plates/aluminium', '#forge:tools/saws']) - .id('gtceu:shaped/aluminium_shaft') + .id('greate:shaped/aluminium_shaft') event.shapeless('9x greate:stainless_steel_shaft', ['#forge:plates/stainless_steel', '#forge:tools/saws']) - .id('gtceu:shaped/stainless_steel_shaft') + .id('greate:shaped/stainless_steel_shaft') event.shapeless('9x greate:titanium_shaft', ['#forge:plates/titanium', '#forge:tools/saws']) - .id('gtceu:shaped/titanium_shaft') + .id('greate:shaped/titanium_shaft') - event.recipes.gtceu.cutter('andesite_alloy_shaft') + event.recipes.gtceu.cutter('greate:andesite_alloy_shaft') .itemInputs('#forge:plates/bronze') .itemOutputs('9x greate:andesite_alloy_shaft') .duration(100) .EUt(GTValues.VA[GTValues.ULV]) .removePreviousMaterialInfo() - event.recipes.gtceu.cutter('andesite_alloy_shaft_black') + event.recipes.gtceu.cutter('greate:andesite_alloy_shaft_black') .itemInputs('#forge:plates/black_bronze') .itemOutputs('9x greate:andesite_alloy_shaft') .duration(100) .EUt(GTValues.VA[GTValues.ULV]) - event.recipes.gtceu.cutter('andesite_alloy_shaft_bismuth') + event.recipes.gtceu.cutter('greate:andesite_alloy_shaft_bismuth') .itemInputs('#forge:plates/bismuth_bronze') .itemOutputs('9x greate:andesite_alloy_shaft') .duration(100) .EUt(GTValues.VA[GTValues.ULV]) - event.recipes.gtceu.cutter('steel_shaft') + event.recipes.gtceu.cutter('greate:steel_shaft') .itemInputs('#forge:plates/steel') .itemOutputs('9x greate:steel_shaft') .duration(100) .EUt(GTValues.VA[GTValues.ULV]) .addMaterialInfo(true) - event.recipes.gtceu.cutter('aluminium_shaft') + event.recipes.gtceu.cutter('greate:aluminium_shaft') .itemInputs('#forge:plates/aluminium') .itemOutputs('9x greate:aluminium_shaft') .duration(100) .EUt(GTValues.VA[GTValues.ULV]) .addMaterialInfo(true) - event.recipes.gtceu.cutter('stainless_steel_shaft') + event.recipes.gtceu.cutter('greate:stainless_steel_shaft') .itemInputs('#forge:plates/stainless_steel') .itemOutputs('9x greate:stainless_steel_shaft') .duration(100) .EUt(GTValues.VA[GTValues.ULV]) .addMaterialInfo(true) - event.recipes.gtceu.cutter('titanium_shaft') + event.recipes.gtceu.cutter('greate:titanium_shaft') .itemInputs('#forge:plates/titanium') .itemOutputs('9x greate:titanium_shaft') .duration(100) @@ -87,62 +87,52 @@ function registerGreateRecipes(event) { // #region Gearboxes - event.recipes.gtceu.assembler('greate:andesite_alloy_gearbox') - .itemInputs('create:andesite_casing', '4x greate:andesite_alloy_shaft') - .itemOutputs('greate:andesite_alloy_gearbox') - .circuit(5) - .duration(50) - .EUt(GTValues.VA[GTValues.ULV]) - .removePreviousMaterialInfo() + global.AVAILABLE_GREATE_MATERIAL_TIERS.forEach(tier => { + + event.shaped(`greate:${tier}_gearbox`, [ + ' A ', + 'ABA', + 'CA ' + ], { + A: `greate:${tier}_shaft`, + B: 'create:andesite_casing', + C: '#forge:tools/wrenches' + }).id(`tfg:shaped/${tier}_gearbox`) + + event.shaped(`greate:${tier}_vertical_gearbox`, [ + 'A A', + ' B ', + 'ACA' + ], { + A: `greate:${tier}_shaft`, + B: 'create:andesite_casing', + C: '#forge:tools/wrenches' + }).id(`tfg:shaped/${tier}_vertical_gearbox`) + + event.shapeless(`greate:${tier}_gearbox`, [`greate:${tier}_vertical_gearbox`]) + event.shapeless(`greate:${tier}_vertical_gearbox`, [`greate:${tier}_gearbox`]) + + event.recipes.gtceu.assembler(`greate:${tier}_gearbox`) + .itemInputs('create:andesite_casing', `4x greate:${tier}_shaft`) + .itemOutputs(`greate:${tier}_gearbox`) + .circuit(5) + .duration(50) + .EUt(GTValues.VA[GTValues.ULV]) + }) + TFGHelpers.registerMaterialInfo('greate:andesite_alloy_gearbox', { 'wood': 1, 'wrought_iron': 1 }); TFGHelpers.registerMaterialInfo('greate:andesite_alloy_vertical_gearbox', { 'wood': 1, 'wrought_iron': 1 }); - event.recipes.gtceu.assembler('greate:steel_gearbox') - .itemInputs('create:andesite_casing', '4x greate:steel_shaft') - .itemOutputs('greate:steel_gearbox') - .circuit(5) - .duration(50) - .EUt(GTValues.VA[GTValues.ULV]) - .removePreviousMaterialInfo() - .addMaterialInfo(true) - TFGHelpers.registerMaterialInfo('greate:steel_gearbox', { 'wood': 1, 'wrought_iron': 1, 'steel': 4/9 }); TFGHelpers.registerMaterialInfo('greate:steel_vertical_gearbox', { 'wood': 1, 'wrought_iron': 1, 'steel': 4/9 }); - event.recipes.gtceu.assembler('greate:aluminium_gearbox') - .itemInputs('create:andesite_casing', '4x greate:aluminium_shaft') - .itemOutputs('greate:aluminium_gearbox') - .circuit(5) - .duration(50) - .EUt(GTValues.VA[GTValues.ULV]) - .removePreviousMaterialInfo() - .addMaterialInfo(true) - TFGHelpers.registerMaterialInfo('greate:aluminium_gearbox', { 'wood': 1, 'wrought_iron': 1, 'aluminium': 4/9 }); TFGHelpers.registerMaterialInfo('greate:aluminium_vertical_gearbox', { 'wood': 1, 'wrought_iron': 1, 'aluminium': 4/9 }); - event.recipes.gtceu.assembler('greate:stainless_steel_gearbox') - .itemInputs('create:andesite_casing', '4x greate:stainless_steel_shaft') - .itemOutputs('greate:stainless_steel_gearbox') - .circuit(5) - .duration(50) - .EUt(GTValues.VA[GTValues.ULV]) - .removePreviousMaterialInfo() - .addMaterialInfo(true) - TFGHelpers.registerMaterialInfo('greate:stainless_steel_gearbox', { 'wood': 1, 'wrought_iron': 1, 'stainless_steel': 4/9 }); TFGHelpers.registerMaterialInfo('greate:stainless_steel_vertical_gearbox', { 'wood': 1, 'wrought_iron': 1, 'stainless_steel': 4/9 }); - event.recipes.gtceu.assembler('greate:titanium_gearbox') - .itemInputs('create:andesite_casing', '4x greate:titanium_shaft') - .itemOutputs('greate:titanium_gearbox') - .circuit(5) - .duration(50) - .EUt(GTValues.VA[GTValues.ULV]) - .removePreviousMaterialInfo() - .addMaterialInfo(true) - TFGHelpers.registerMaterialInfo('greate:titanium_gearbox', { 'wood': 1, 'wrought_iron': 1, 'titanium': 4/9 }); TFGHelpers.registerMaterialInfo('greate:titanium_vertical_gearbox', { 'wood': 1, 'wrought_iron': 1, 'titanium': 4/9 }); @@ -645,70 +635,118 @@ 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 ', + // Wood + event.shaped('greate:andesite_alloy_belt_connector', [ 'AAA', - 'B ' + 'CBC', + 'AAA' + ], { + A: '#tfc:lumber', + B: '#forge:tools/hammers', + C: '#tfg:metal_chains' + }).id('tfg:shaped/wood_belt_connector') + + removeMaceratorRecipe(event, 'macerate_andesite_alloy_belt_connector') + event.remove({ id: 'greate:shaped/andesite_alloy_belt_connector' }) + event.remove({ id: 'gtceu:extractor/extract_andesite_alloy_belt_connector' }) + event.remove({ id: 'gtceu:arc_furnace/arc_andesite_alloy_belt_connector' }) + + TFGHelpers.registerMaterialInfo('greate:andesite_alloy_belt_connector', { 'wood': 1 }); + + // Leather + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('greate:stone_belt_connector', [ + 'AAA', + 'CBC' + ], { + A: '#forge:leather', + B: '#tfc:sewing_needles', + C: '#forge:string', + })).id('tfg:shaped/leather_belt_connector') + + event.recipes.gtceu.assembler('leather_belt_connector') + .itemInputs('3x #forge:leather', '2x #forge:string') + .itemOutputs('greate:stone_belt_connector') + .circuit(11) + .duration(50) + .EUt(GTValues.VA[GTValues.ULV]) + + removeMaceratorRecipe(event, 'macerate_stone_belt_connector') + event.remove({ id: 'greate:shaped/stone_belt_connector' }) + + TFGHelpers.registerMaterialInfo('greate:stone_belt_connector', { 'air': 1 }); + + // Rubber + event.shaped('greate:rubber_belt_connector', [ + 'AAA', + 'B C' ], { A: '#forge:plates/rubber', - B: '#forge:tools/knives', - C: '#forge:tools/hammers', - }).id('gtceu:shaped/rubber_belt_connector') + B: '#forge:tools/hammers', + C: '#forge:tools/wrenches', + }).id('tfg:shaped/rubber_belt_connector') event.recipes.gtceu.assembler('rubber_belt_connector') - .itemInputs('gtceu:rubber_plate') + .itemInputs('3x 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 ', + event.remove({ id: 'greate:shaped/rubber_belt_connector' }) + removeMaceratorRecipe(event, 'macerate_rubber_belt_connector') + event.remove({ id: 'gtceu:extractor/extract_rubber_belt_connector' }) + + TFGHelpers.registerMaterialInfo('greate:rubber_belt_connector', { 'rubber': 3 }); + + // Silicone rubber + event.shaped('greate:silicone_rubber_belt_connector', [ 'AAA', - 'B ' + 'B C' ], { A: '#forge:plates/silicone_rubber', - B: '#forge:tools/knives', - C: '#forge:tools/hammers', - }).id('gtceu:shaped/silicone_rubber_belt_connector') + B: '#forge:tools/hammers', + C: '#forge:tools/wrenches', + }).id('tfg:shaped/silicone_rubber_belt_connector') event.recipes.gtceu.assembler('silicone_rubber_belt_connector') - .itemInputs('gtceu:silicone_rubber_plate') + .itemInputs('3x 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 ', + event.remove({ id: 'greate:shaped/silicone_rubber_belt_connector' }) + removeMaceratorRecipe(event, 'macerate_silicone_rubber_belt_connector') + event.remove({ id: 'gtceu:extractor/extract_silicone_rubber_belt_connector' }) + + TFGHelpers.registerMaterialInfo('greate:silicone_rubber_belt_connector', { 'silicone_rubber': 3 }); + + // SBR rubber + event.shaped('greate:styrene_butadiene_rubber_belt_connector', [ 'AAA', - 'B ' + 'B C' ], { A: '#forge:plates/styrene_butadiene_rubber', - B: '#forge:tools/knives', - C: '#forge:tools/hammers', - }).id('gtceu:shaped/polyethylene_belt_connector') + B: '#forge:tools/hammers', + C: '#forge:tools/wrenches', + }).id('tfg:shaped/styrene_butadiene_rubber_belt_connector') - event.recipes.gtceu.assembler('polyethylene_belt_connector') - .itemInputs('gtceu:styrene_butadiene_rubber_plate') - .itemOutputs('greate:polyethylene_belt_connector') + event.recipes.gtceu.assembler('styrene_butadiene_rubber_belt_connector') + .itemInputs('3x gtceu:styrene_butadiene_rubber_plate') + .itemOutputs('greate:styrene_butadiene_rubber_belt_connector') .circuit(11) .duration(50) .EUt(GTValues.VA[GTValues.ULV]) - .removePreviousMaterialInfo() .addMaterialInfo(true) + event.remove({ id: 'greate:shaped/styrene_butadiene_rubber_belt_connector' }) + removeMaceratorRecipe(event, 'macerate_styrene_butadiene_rubber_belt_connector') + event.remove({ id: 'gtceu:extractor/extract_styrene_butadiene_rubber_belt_connector' }) + + TFGHelpers.registerMaterialInfo('greate:styrene_butadiene_rubber_belt_connector', { 'styrene_butadiene_rubber': 3 }); // #endregion // #region Mixer @@ -805,149 +843,181 @@ function registerGreateRecipes(event) { // #region Whisks event.shaped('gtceu:steel_whisk', [ - 'ADC', - 'DDD', - 'DDD' + 'ABC', + 'D D', + 'D D' ], { A: '#forge:tools/hammers', + B: '#forge:rings/steel', C: '#forge:tools/wrenches', D: '#forge:rods/long/steel' - }).id('gtceu:shaped/steel_whisk') - - event.recipes.gtceu.extruder('gtceu:steel_whisk') - .itemInputs('7x #forge:ingots/steel') + }).id('greate:shaped/steel_whisk') + + event.recipes.gtceu.extruder('greate:steel_whisk') + .itemInputs('4x #forge:ingots/steel') .notConsumable('tfg:whisk_extruder_mold') .itemOutputs('gtceu:steel_whisk') - .duration(GTMaterials.Steel.getMass() * 7) + .duration(GTMaterials.Steel.getMass() * 4) .EUt(GTValues.VA[GTValues.MV]) + .removePreviousMaterialInfo() .addMaterialInfo(true) + + event.remove({ id: 'gtceu:extractor/extract_steel_whisk' }) event.shaped('gtceu:aluminium_whisk', [ - 'ADC', - 'DDD', - 'DDD' + 'ABC', + 'D D', + 'D D' ], { A: '#forge:tools/hammers', + B: '#forge:rings/aluminium', C: '#forge:tools/wrenches', D: '#forge:rods/long/aluminium' - }).id('gtceu:shaped/aluminium_whisk') + }).id('greate:shaped/aluminium_whisk') - event.recipes.gtceu.extruder('gtceu:aluminium_whisk') - .itemInputs('7x #forge:ingots/aluminium') + event.recipes.gtceu.extruder('greate:aluminium_whisk') + .itemInputs('4x #forge:ingots/aluminium') .notConsumable('tfg:whisk_extruder_mold') .itemOutputs('gtceu:aluminium_whisk') - .duration(GTMaterials.Aluminium.getMass() * 7) + .duration(GTMaterials.Aluminium.getMass() * 4) .EUt(GTValues.VA[GTValues.MV]) + .removePreviousMaterialInfo() .addMaterialInfo(true) + + event.remove({ id: 'gtceu:extractor/extract_aluminium_whisk' }) event.shaped('gtceu:stainless_steel_whisk', [ - 'ADC', - 'DDD', - 'DDD' + 'ABC', + 'D D', + 'D D' ], { A: '#forge:tools/hammers', + B: '#forge:rings/stainless_steel', C: '#forge:tools/wrenches', D: '#forge:rods/long/stainless_steel' - }).id('gtceu:shaped/stainless_steel_whisk') + }).id('greate:shaped/stainless_steel_whisk') - event.recipes.gtceu.extruder('gtceu:stainless_steel_whisk') - .itemInputs('7x #forge:ingots/stainless_steel') + event.recipes.gtceu.extruder('greate:stainless_steel_whisk') + .itemInputs('4x #forge:ingots/stainless_steel') .notConsumable('tfg:whisk_extruder_mold') .itemOutputs('gtceu:stainless_steel_whisk') - .duration(GTMaterials.StainlessSteel.getMass() * 7) + .duration(GTMaterials.StainlessSteel.getMass() * 4) .EUt(GTValues.VA[GTValues.MV]) + .removePreviousMaterialInfo() .addMaterialInfo(true) + + event.remove({ id: 'gtceu:extractor/extract_stainless_steel_whisk' }) event.shaped('gtceu:titanium_whisk', [ - 'ADC', - 'DDD', - 'DDD' + 'ABC', + 'D D', + 'D D' ], { A: '#forge:tools/hammers', + B: '#forge:rings/titanium', C: '#forge:tools/wrenches', D: '#forge:rods/long/titanium' - }).id('gtceu:shaped/titanium_whisk') + }).id('greate:shaped/titanium_whisk') - event.recipes.gtceu.extruder('gtceu:titanium_whisk') - .itemInputs('7x #forge:ingots/titanium') + event.recipes.gtceu.extruder('greate:titanium_whisk') + .itemInputs('4x #forge:ingots/titanium') .notConsumable('tfg:whisk_extruder_mold') .itemOutputs('gtceu:titanium_whisk') - .duration(GTMaterials.Titanium.getMass() * 7) + .duration(GTMaterials.Titanium.getMass() * 4) .EUt(GTValues.VA[GTValues.MV]) + .removePreviousMaterialInfo() .addMaterialInfo(true) + + event.remove({ id: 'gtceu:extractor/extract_titanium_whisk' }) event.shaped('gtceu:tungsten_steel_whisk', [ - 'ADC', - 'DDD', - 'DDD' + 'ABC', + 'D D', + 'D D' ], { A: '#forge:tools/hammers', + B: '#forge:rings/tungsten_steel', C: '#forge:tools/wrenches', D: '#forge:rods/long/tungsten_steel' - }).id('gtceu:shaped/tungsten_steel_whisk') + }).id('greate:shaped/tungsten_steel_whisk') - event.recipes.gtceu.extruder('gtceu:tungsten_steel_whisk') - .itemInputs('7x #forge:ingots/tungsten_steel') + event.recipes.gtceu.extruder('greate:tungsten_steel_whisk') + .itemInputs('4x #forge:ingots/tungsten_steel') .notConsumable('tfg:whisk_extruder_mold') .itemOutputs('gtceu:tungsten_steel_whisk') - .duration(GTMaterials.TungstenSteel.getMass() * 7) + .duration(GTMaterials.TungstenSteel.getMass() * 4) .EUt(GTValues.VA[GTValues.MV]) + .removePreviousMaterialInfo() .addMaterialInfo(true) + + event.remove({ id: 'gtceu:extractor/extract_tungsten_steel_whisk' }) event.shaped('gtceu:rhodium_plated_palladium_whisk', [ - 'ADC', - 'DDD', - 'DDD' + 'ABC', + 'D D', + 'D D' ], { A: '#forge:tools/hammers', + B: '#forge:rings/rhodium_plated_palladium', C: '#forge:tools/wrenches', D: '#forge:rods/long/rhodium_plated_palladium' - }).id('gtceu:shaped/rhodium_plated_palladium_whisk') + }).id('greate:shaped/rhodium_plated_palladium_whisk') - event.recipes.gtceu.extruder('gtceu:rhodium_plated_palladium_whisk') - .itemInputs('7x #forge:ingots/rhodium_plated_palladium') + event.recipes.gtceu.extruder('greate:rhodium_plated_palladium_whisk') + .itemInputs('4x #forge:ingots/rhodium_plated_palladium') .notConsumable('tfg:whisk_extruder_mold') .itemOutputs('gtceu:rhodium_plated_palladium_whisk') - .duration(GTMaterials.RhodiumPlatedPalladium.getMass() * 7) + .duration(GTMaterials.RhodiumPlatedPalladium.getMass() * 4) .EUt(GTValues.VA[GTValues.MV]) + .removePreviousMaterialInfo() .addMaterialInfo(true) + + event.remove({ id: 'gtceu:extractor/extract_rhodium_plated_palladium_whisk' }) event.shaped('gtceu:naquadah_alloy_whisk', [ - 'ADC', - 'DDD', - 'DDD' + 'ABC', + 'D D', + 'D D' ], { A: '#forge:tools/hammers', + B: '#forge:rings/naquadah_alloy', C: '#forge:tools/wrenches', D: '#forge:rods/long/naquadah_alloy' - }).id('gtceu:shaped/naquadah_alloy_whisk') + }).id('greate:shaped/naquadah_alloy_whisk') - event.recipes.gtceu.extruder('gtceu:naquadah_alloy_whisk') - .itemInputs('7x #forge:ingots/naquadah_alloy') + event.recipes.gtceu.extruder('greate:naquadah_alloy_whisk') + .itemInputs('4x #forge:ingots/naquadah_alloy') .notConsumable('tfg:whisk_extruder_mold') .itemOutputs('gtceu:naquadah_alloy_whisk') - .duration(GTMaterials.NaquadahAlloy.getMass() * 7) + .duration(GTMaterials.NaquadahAlloy.getMass() * 4) .EUt(GTValues.VA[GTValues.MV]) + .removePreviousMaterialInfo() .addMaterialInfo(true) + + event.remove({ id: 'gtceu:extractor/extract_naquadah_alloy_whisk' }) event.shaped('gtceu:darmstadtium_whisk', [ - 'ADC', - 'DDD', - 'DDD' + 'ABC', + 'D D', + 'D D' ], { A: '#forge:tools/hammers', + B: '#forge:rings/darmstadtium', C: '#forge:tools/wrenches', D: '#forge:rods/long/darmstadtium' - }).id('gtceu:shaped/darmstadtium_whisk') + }).id('greate:shaped/darmstadtium_whisk') - event.recipes.gtceu.extruder('gtceu:darmstadtium_whisk') - .itemInputs('7x #forge:ingots/darmstadtium') + event.recipes.gtceu.extruder('greate:darmstadtium_whisk') + .itemInputs('4x #forge:ingots/darmstadtium') .notConsumable('tfg:whisk_extruder_mold') .itemOutputs('gtceu:darmstadtium_whisk') - .duration(GTMaterials.Darmstadtium.getMass() * 7) + .duration(GTMaterials.Darmstadtium.getMass() * 4) .EUt(GTValues.VA[GTValues.MV]) + .removePreviousMaterialInfo() .addMaterialInfo(true) + event.remove({ id: 'gtceu:extractor/extract_darmstadtium_whisk' }) + // #endregion // #region Presses diff --git a/kubejs/server_scripts/greate/recipes.recycling.js b/kubejs/server_scripts/greate/recipes.recycling.js index 3bf5677d1..aef21936b 100644 --- a/kubejs/server_scripts/greate/recipes.recycling.js +++ b/kubejs/server_scripts/greate/recipes.recycling.js @@ -42,45 +42,10 @@ function registerGreateRecyclingRecipes(event) { // #region Gearbox - event.recipes.tfc.extra_products_shapeless_crafting('4x greate:andesite_alloy_shaft', - event.shapeless('create:andesite_casing', ['greate:andesite_alloy_gearbox', '#forge:tools/hammers'])) - - event.recipes.tfc.extra_products_shapeless_crafting('4x greate:steel_shaft', - event.shapeless('create:andesite_casing', ['greate:steel_gearbox', '#forge:tools/hammers'])) - - event.recipes.tfc.extra_products_shapeless_crafting('4x greate:aluminium_shaft', - event.shapeless('create:andesite_casing', ['greate:aluminium_gearbox', '#forge:tools/hammers'])) - - event.recipes.tfc.extra_products_shapeless_crafting('4x greate:stainless_steel_shaft', - event.shapeless('create:andesite_casing', ['greate:stainless_steel_gearbox', '#forge:tools/hammers'])) - - event.recipes.tfc.extra_products_shapeless_crafting('4x greate:titanium_shaft', - event.shapeless('create:andesite_casing', ['greate:titanium_gearbox', '#forge:tools/hammers'])) + global.GREATE_MATERIAL_TIERS.forEach(tier => { + event.recipes.tfc.extra_products_shapeless_crafting(`4x greate:${tier}_shaft`, + event.shapeless('create:andesite_casing', [`greate:${tier}_gearbox`, '#forge:tools/hammers'])) + }) // #endregion - - // #region Belts - - event.recipes.gtceu.macerator('greate:rubber_belt_connector') - .itemInputs('greate:rubber_belt_connector') - .itemOutputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Rubber, 1)) - .duration(GTMaterials.Rubber.getMass() * 3) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.macerator('greate:silicone_rubber_belt_connector') - .itemInputs('greate:silicone_rubber_belt_connector') - .itemOutputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.SiliconeRubber, 1)) - .duration(GTMaterials.SiliconeRubber.getMass() * 3) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.macerator('greate:polyethylene_belt_connector') - .itemInputs('greate:polyethylene_belt_connector') - .itemOutputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.StyreneButadieneRubber, 1)) - .duration(GTMaterials.StyreneButadieneRubber.getMass() * 3) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) - - // #region } \ No newline at end of file diff --git a/kubejs/server_scripts/greate/recipes.removes.js b/kubejs/server_scripts/greate/recipes.removes.js index 1adb5d2e5..0177031bf 100644 --- a/kubejs/server_scripts/greate/recipes.removes.js +++ b/kubejs/server_scripts/greate/recipes.removes.js @@ -23,71 +23,37 @@ function removeGreateRecipes(event) { event.remove({ mod: 'greate', input: 'create:andesite_alloy' }); event.remove({ mod: 'greate', output: 'minecraft:bamboo_pressure_plate'}) - - event.remove({ id: 'gtceu:shaped/andesite_alloy_shaft' }) - event.remove({ id: 'gtceu:shaped/andesite_alloy_cogwheel' }) - event.remove({ id: 'gtceu:shaped/andesite_alloy_large_cogwheel' }) - event.remove({ id: 'gtceu:shaped/andesite_alloy_large_cogwheel_from_little' }) - event.remove({ id: 'gtceu:shaped/steel_cogwheel' }) - event.remove({ id: 'gtceu:shaped/steel_large_cogwheel' }) - event.remove({ id: 'gtceu:shaped/steel_large_cogwheel_from_little' }) - event.remove({ id: 'gtceu:shaped/aluminium_cogwheel' }) - event.remove({ id: 'gtceu:shaped/aluminium_large_cogwheel' }) - event.remove({ id: 'gtceu:shaped/aluminium_large_cogwheel_from_little' }) - event.remove({ id: 'gtceu:shaped/stainless_steel_cogwheel' }) - event.remove({ id: 'gtceu:shaped/stainless_steel_large_cogwheel' }) - event.remove({ id: 'gtceu:shaped/stainless_steel_large_cogwheel_from_little' }) - event.remove({ id: 'gtceu:shaped/titanium_cogwheel' }) - event.remove({ id: 'gtceu:shaped/titanium_large_cogwheel' }) - event.remove({ id: 'gtceu:shaped/titanium_large_cogwheel_from_little' }) - removeCutterRecipe(event, "andesite_alloy_shaft") - removeCutterRecipe(event, "andesite_alloy_shaft_water") - removeCutterRecipe(event, "andesite_alloy_shaft_distilled_water") - removeCutterRecipe(event, "steel_shaft") - removeCutterRecipe(event, "steel_shaft_water") - removeCutterRecipe(event, "steel_shaft_distilled_water") - removeCutterRecipe(event, "aluminium_shaft") - removeCutterRecipe(event, "aluminium_shaft_water") - removeCutterRecipe(event, "aluminium_shaft_distilled_water") - removeCutterRecipe(event, "stainless_steel_shaft") - removeCutterRecipe(event, "stainless_steel_shaft_water") - removeCutterRecipe(event, "stainless_steel_shaft_distilled_water") - removeCutterRecipe(event, "titanium_shaft") - removeCutterRecipe(event, "titanium_shaft_water") - removeCutterRecipe(event, "titanium_shaft_distilled_water") + global.GREATE_MATERIAL_TIERS.forEach(tier => { + + event.remove({ id: `greate:shaped/${tier}_shaft` }) + event.remove({ id: `greate:shaped/${tier}_cogwheel` }) + event.remove({ id: `greate:shaped/${tier}_large_cogwheel` }) + event.remove({ id: `greate:shaped/${tier}_large_cogwheel_from_little` }) + + removeCutterRecipe(event, `${tier}_shaft`) + removeCutterRecipe(event, `${tier}_shaft_water`) + removeCutterRecipe(event, `${tier}_shaft_distilled_water`) + + event.remove({ id: `gtceu:smelting/smelt_dust_${tier}_to_ingot` }) + removeMaceratorRecipe(event, `macerate_${tier}`) + + event.remove({ id: `gtceu:extractor/extract_${tier}` }) + event.remove({ id: `gtceu:extractor/extract_${tier}_shaft` }) + event.remove({ id: `gtceu:extractor/extract_${tier}_cogwheel` }) + event.remove({ id: `gtceu:extractor/extract_${tier}_alloy` }) + event.remove({ id: `gtceu:extractor/extract_${tier}_gearbox` }) + event.remove({ id: `gtceu:extractor/extract_${tier}_vertical_gearbox` }) + }) event.remove({ id: 'greate:milling/integration/gtceu/macerator/macerate_marble'}) event.remove({ id: 'gtceu:electrolyzer/decomposition_electrolyzing_andesite_alloy' }) event.remove({ id: 'gtceu:electrolyzer/decomposition_electrolyzing_chromatic_compound' }) - - event.remove({ id: 'gtceu:smelting/smelt_dust_andesite_alloy_to_ingot' }) - event.remove({ id: 'gtceu:extractor/extract_andesite_alloy_shaft' }) - + event.remove({ id: 'gtceu:shaped/andesite_alloy_shaft' }) event.remove({ id: 'gtceu:extractor/extract_andesite_alloy' }) - event.remove({ id: 'gtceu:extractor/extract_steel_alloy'}) - event.remove({ id: 'gtceu:extractor/extract_aluminium_alloy' }) - event.remove({ id: 'gtceu:extractor/extract_stainless_steel_alloy' }) - event.remove({ id: 'gtceu:extractor/extract_titanium_alloy' }) - event.remove({ id: 'gtceu:extractor/extract_tungsten_steel_alloy' }) - event.remove({ id: 'gtceu:extractor/extract_rhodium_plated_palladium_alloy' }) - event.remove({ id: 'gtceu:extractor/extract_naquadah_alloy_alloy' }) - event.remove({ id: 'gtceu:extractor/extract_darmstadtium_alloy' }) - event.remove({ id: 'gtceu:extractor/extract_neutronium_alloy' }) - - removeMaceratorRecipe(event, 'macerate_andesite_alloy') - removeMaceratorRecipe(event, 'macerate_steel_alloy') - removeMaceratorRecipe(event, 'macerate_aluminium_alloy') - removeMaceratorRecipe(event, 'macerate_stainless_steel_alloy') - removeMaceratorRecipe(event, 'macerate_titanium_alloy') - removeMaceratorRecipe(event, 'macerate_tungsten_steel_alloy') - removeMaceratorRecipe(event, 'macerate_rhodium_plated_palladium_alloy') - removeMaceratorRecipe(event, 'macerate_naquadah_alloy_alloy') - removeMaceratorRecipe(event, 'macerate_darmstadtium_alloy') - removeMaceratorRecipe(event, 'macerate_neutronium_alloy') - + event.remove({ id: /^greate:mixing\/integration\/create\/.*/ }) event.remove({ id: /^greate:sawing\/integration\/create\/.*/ }) event.remove({ id: /^greate:splashing\/integration\/create\/.*/ }) @@ -111,4 +77,8 @@ function removeGreateRecipes(event) { event.remove({ id: 'greate:cutting/integration/create/cutting/runtime_generated/compat/minecraft/bamboo_planks_to_bamboo_button' }) event.remove({ id: 'greate:mixing/integration/gtceu/mixer/fire_charge' }) + event.remove({ id: 'toomanyrecipeviewers:/greate/milling/integration/gtceu/macerator/macerate_cocoa' }) + event.remove({ id: 'greate:milling/integration/gtceu/macerator/macerate_honeycomb' }) + event.remove({ id: 'greate:milling/integration/gtceu/macerator/macerate_honeycomb_block'}) + event.remove({ id: 'greate:milling/integration/gtceu/macerator/quartz_sand_from_sand' }) } diff --git a/kubejs/server_scripts/gregtech/data.js b/kubejs/server_scripts/gregtech/data.js index 4245617f8..3197bcd1b 100644 --- a/kubejs/server_scripts/gregtech/data.js +++ b/kubejs/server_scripts/gregtech/data.js @@ -134,103 +134,8 @@ const registerGTCEUMetals = (event) => { function registerGTCEUBedrockFluidVeins(event) { - event.add('tfg:moon_helium_3', vein => { - vein.dimensions('ad_astra:moon') - vein.fluid(() => Fluid.of('gtceu:helium_3').fluid) - vein.weight(100) - vein.minimumYield(200) - vein.maximumYield(400) - vein.depletionAmount(1) - vein.depletionChance(1) - vein.depletedYield(200) - }) - - event.add('tfg:moon_helium', vein => { - vein.dimensions('ad_astra:moon') - vein.fluid(() => Fluid.of('gtceu:helium').fluid) - vein.weight(10) - vein.minimumYield(20) - vein.maximumYield(50) - vein.depletionAmount(1) - vein.depletionChance(1) - vein.depletedYield(50) - }) - - event.add('tfg:moon_argon', vein => { - vein.dimensions('ad_astra:moon') - vein.fluid(() => Fluid.of('gtceu:argon').fluid) - vein.weight(5) - vein.minimumYield(10) - vein.maximumYield(30) - vein.depletionAmount(1) - vein.depletionChance(1) - vein.depletedYield(10) - }) - - // Mars Fluid Vein - Credit to Monifactory - - const Registries = Java.loadClass("net.minecraft.core.registries.Registries") - const ResourceKey = Java.loadClass("net.minecraft.resources.ResourceKey") - 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") - const martianRusticusHillsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/rusticus_hills") - const martianRusticusPlainsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/rusticus_plains") - const martianSangnumHillsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/sangnum_hills") - const martianSangnumPlainsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/sangnum_plains") - - event.add('tfg:semiheavy_ammoniacal_water', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('tfg:semiheavy_ammoniacal_water').fluid) - vein.weight(100) - vein.minimumYield(200) - vein.maximumYield(400) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(15) - }) - - event.add('tfg:liquid_carbon_dioxide', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('gtceu:liquid_carbon_dioxide').fluid) - vein.weight(30) - vein.minimumYield(20) - vein.maximumYield(350) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(5) - }) - - event.add('tfg:liquid_ice', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('gtceu:ice').fluid) - vein.weight(20) - vein.minimumYield(20) - vein.maximumYield(200) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(5) - }) - - // 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', vein => { - vein.dimensions('ad_astra:mars') - vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) - vein.biomes(20, martianAmberHillsResourceKey) - vein.biomes(20, martianAmberPlainsResourceKey) - vein.biomes(20, martianRusticusHillsResourceKey) - vein.biomes(20, martianRusticusPlainsResourceKey) - vein.biomes(20, martianSangnumHillsResourceKey) - vein.biomes(20, martianSangnumPlainsResourceKey) - // This one is exclusively far inland, so it's ok to buff it a bit in case the player has bad luck - vein.biomes(50, martianMountainsResourceKey) - vein.weight(0) - vein.minimumYield(100) - vein.maximumYield(650) - vein.depletionAmount(1) - vein.depletionChance(20) - vein.depletedYield(5) - }) + registerTFGMoonBedrockFluidVeins(event) + registerTFGMarsBedrockFluidVeins(event) + registerTFGVenusBedrockFluidVeins(event) } diff --git a/kubejs/server_scripts/gregtech/events.js b/kubejs/server_scripts/gregtech/events.js deleted file mode 100644 index 34a0f1703..000000000 --- a/kubejs/server_scripts/gregtech/events.js +++ /dev/null @@ -1,8 +0,0 @@ -"use strict"; - -PlayerEvents.tick((event) => { - const { player } = event; - if (player.age % 100 === 0 && player.legsArmorItem === 'gtceu:nanomuscle_leggings') { - 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 ea5991918..d5ffa3ccb 100644 --- a/kubejs/server_scripts/gregtech/recipes.js +++ b/kubejs/server_scripts/gregtech/recipes.js @@ -9,630 +9,15 @@ const registerGTCEURecipes = (event) => { registerGTCEUMetalRecipes(event) registerGTCEURecyclingRecipes(event) - registerGTCEuTFCMetalsRecipes(event) registerGTCEuMachineRecipes(event) removeGTCEURecipes(event) - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π£Π΄ΠΎΠ±Ρ€Π΅Π½ΠΈΠ΅ - // Π’ ΠΎΠ±Ρ‹Ρ‡Π½ΠΎΠΌ миксСрС - event.recipes.gtceu.mixer('tfg:fertilizer') - .itemInputs( - '#tfc:dirt', - '2x #tfg:wood_dusts', - '4x #forge:sand' - ) - .circuit(1) - .inputFluids("#tfg:clean_water 1000") - .itemOutputs('4x gtceu:fertilizer') - .duration(300) - .EUt(30) - - event.recipes.gtceu.mixer('tfg:fertilizer_2') - .itemInputs('tfc:compost') - .inputFluids('#tfg:clean_water 1000') - .itemOutputs('4x gtceu:fertilizer') - .duration(300) - .EUt(30) - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: ΠšΠ²Π°Ρ€Ρ†Π΅Π²Ρ‹ΠΉ пСсок - - event.shaped('gtceu:quartz_sand_dust', [ - 'A', - 'B' - ], { - A: '#forge:sand', - B: '#forge:tools/mortars' - }).id('gtceu:shaped/quartz_sand') - - event.recipes.gtceu.macerator('quartz_sand_from_sand') - .itemInputs('#forge:sand') - .itemOutputs('gtceu:quartz_sand_dust') - .duration(30) - .EUt(2) - - //#endregion - - event.recipes.gtceu.macerator('flux') - .itemInputs('#tfc:fluxstone') - .itemOutputs('2x tfc:powder/flux') - .duration(30) - .EUt(2) - - event.recipes.gtceu.forge_hammer('flux') - .itemInputs('#tfc:fluxstone') - .itemOutputs('2x tfc:powder/flux') - .duration(30) - .EUt(2) - - event.recipes.greate.pressing('2x tfc:powder/flux', '#tfc:fluxstone') - .recipeTier(0) - .id('greate:pressing/flux') - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Диоксид силикона - - event.recipes.gtceu.electrolyzer('sand_electrolysis') - .itemInputs('8x #forge:sand') - .itemOutputs('gtceu:silicon_dioxide_dust') - .duration(500) - .EUt(25) - - //#endregion - - event.recipes.gtceu.centrifuge('tfg:beets_to_sugar') - .itemInputs('5x tfc:food/beet') - .inputFluids(Fluid.of('tfc:salt_water', 1000)) - .itemOutputs('3x minecraft:sugar', '3x gtceu:plant_ball', '1x #forge:dusts/salt') - .outputFluids(Fluid.of('minecraft:water', 1000)) - .duration(800) - .EUt(7) - .circuit(3) - - event.smelting('4x tfc:powder/wood_ash', '1x #minecraft:logs_that_burn').id('tfg:wood_ash') - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: БолСная ΠΏΡ‹Π»ΡŒ + Π’ΠΎΠ΄Π° - - // Π”Π΅ΠΊΡ€Π°Ρ„Ρ‚ Π² Ρ†Π΅Π½Ρ‚Ρ€ΠΈΡ„ΡƒΠ³Π΅ - event.recipes.gtceu.centrifuge('centrifuging_tfc_salt_water') - .inputFluids(Fluid.of('tfc:salt_water', 1000)) - .itemOutputs('1x gtceu:salt_dust') - .outputFluids(Fluid.of('minecraft:water', 1000)) - .duration(51) - .EUt(30) - .circuit(1) - - // Π”Π΅ΠΊΡ€Π°Ρ„Ρ‚ Π² элСктролайзСрС - event.recipes.gtceu.electrolyzer('electrolyze_tfc_salt_water') - .inputFluids(Fluid.of('tfc:salt_water', 1000)) - .itemOutputs('1x gtceu:sodium_hydroxide_dust', '2x gtceu:small_sodium_hydroxide_dust') - .outputFluids(Fluid.of('gtceu:chlorine', 500), Fluid.of('gtceu:hydrogen', 500)) - .duration(720) - .EUt(30) - - // Add circuit to gregtech salt water mixer recipe - event.remove({ id: 'gtceu:mixer/salt_water' }) - generateMixerRecipe(event, ['2x #forge:dusts/salt'], Fluid.of('minecraft:water', 1000), [], 1, Fluid.of('gtceu:salt_water', 1000), 40, 7, 64, 'tfg:gtceu/salt_water') - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: ΠŸΡ€ΠΎΠΏΠΈΡ‚Π°Π½Π½Ρ‹Π΅ доски - - event.remove({ id: 'gtceu:shaped/treated_wood_planks' }) - - event.recipes.tfc.barrel_sealed(4000) - .outputItem('gtceu:treated_wood_planks') - .inputs('#minecraft:planks', TFC.fluidStackIngredient('#forge:creosote', 100)) - .id('tfg:barrel/treated_wood_planks') - - event.recipes.tfc.barrel_sealed(2000) - .outputItem('gtceu:treated_wood_dust') - .inputs('#tfg:wood_dusts', TFC.fluidStackIngredient('#forge:creosote', 50)) - .id('tfg:barrel/treated_wood_dust') - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Капля Ρ€Π΅Π·ΠΈΠ½Ρ‹ - - // Из латСкса - event.recipes.tfc.pot('tfc:powder/wood_ash', Fluid.of('tfg:latex', 1000), 1200, 300) - .itemOutput('gtceu:sticky_resin') - .id('tfg:pot/sticky_resin_from_latex') - - event.recipes.tfc.pot('tfc:powder/wood_ash', Fluid.of('tfg:conifer_pitch', 1000), 1200, 300) - .itemOutput('gtceu:sticky_resin') - .id('tfg:pot/sticky_resin_from_conifer_pitch') - - event.recipes.gtceu.fluid_solidifier('tfg:fluid_solidifier/latex_to_sticky_resin') - .duration(12 * 20) - .EUt(30) - .itemInputs('tfc:powder/wood_ash') - .itemOutputs('gtceu:sticky_resin') - .inputFluids(Fluid.of('tfg:latex', 1000)) - - event.recipes.gtceu.fluid_solidifier('tfg:fluid_solidifier/pitch_to_sticky_resin') - .duration(12 * 20) - .EUt(30) - .itemInputs('tfc:powder/wood_ash') - .itemOutputs('gtceu:sticky_resin') - .inputFluids(Fluid.of('tfg:conifer_pitch', 1000)) - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ ΡˆΠ°Ρ€ΠΈΠΊ - // 8x Π’Π°Π½ΠΈΠ»ΡŒΠ½Π°Ρ Ρ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ -> Plant Ball (Compressor) - - event.recipes.gtceu.compressor('plant_ball_from_tfc_seeds') - .itemInputs('4x #tfc:seeds') - .itemOutputs('gtceu:plant_ball') - .duration(300) - .EUt(2) - - let food = Ingredient.of('#tfc:foods') - .subtract('minecraft:brown_mushroom') - .subtract('minecraft:red_mushroom') - .withCount(8) - - event.recipes.gtceu.compressor('plant_ball_from_tfc_food') - .itemInputs(food) - .itemOutputs('gtceu:plant_ball') - .duration(300) - .EUt(2) - - event.recipes.gtceu.compressor('plant_ball_from_tfc_plants') - .itemInputs('4x #tfc:plants') - .itemOutputs('gtceu:plant_ball') - .duration(300) - .EUt(2) - - event.recipes.gtceu.compressor('plant_ball_from_moon_plants') - .itemInputs('4x #tfg:moon_plants') - .itemOutputs('gtceu:plant_ball') - .duration(300) - .EUt(2) - - event.recipes.gtceu.compressor('plant_ball_from_mars_plants') - .itemInputs('4x #tfg:mars_plants') - .itemOutputs('gtceu:plant_ball') - .duration(300) - .EUt(2) - - event.recipes.gtceu.compressor('plant_ball_from_tfc_corals') - .itemInputs('4x #tfc:corals') - .itemOutputs('gtceu:plant_ball') - .duration(300) - .EUt(2) - - event.recipes.gtceu.compressor('plant_ball_from_misc_plants') - .itemInputs('4x #createaddition:plants') - .itemOutputs('gtceu:plant_ball') - .duration(300) - .EUt(2) - - event.recipes.gtceu.compressor('plant_ball_from_wart_blocks') - .itemInputs('4x #minecraft:wart_blocks') - .itemOutputs('gtceu:plant_ball') - .duration(300) - .EUt(2) - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Биомасса - - // Π’Π°Π½ΠΈΠ»ΡŒΠ½Π°Ρ Ρ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ -> Биомасса (Brewery) - - event.recipes.gtceu.brewery('biomass_from_tfc_seeds') - .itemInputs('#tfc:seeds') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 100)) - .duration(100) - .EUt(3) - - event.recipes.gtceu.brewery('biomass_from_tfc_food') - .itemInputs('#tfc:foods') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 100)) - .duration(100) - .EUt(3) - - event.recipes.gtceu.brewery('biomass_from_tfc_plants') - .itemInputs('#tfc:plants') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 100)) - .duration(100) - .EUt(3) - - event.recipes.gtceu.brewery('biomass_from_moon_plants') - .itemInputs('#tfg:moon_plants') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 100)) - .duration(100) - .EUt(3) - - event.recipes.gtceu.brewery('biomass_from_mars_plants') - .itemInputs('#tfg:mars_plants') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 100)) - .duration(100) - .EUt(3) - - event.recipes.gtceu.brewery('biomass_from_tfc_corals') - .itemInputs('#tfc:corals') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 100)) - .duration(100) - .EUt(3) - - event.recipes.gtceu.brewery('biomass_from_spider_eyes') - .itemInputs('minecraft:spider_eye') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 100)) - .duration(100) - .EUt(3) - - event.recipes.gtceu.brewery('biomass_from_leaves') - .itemInputs('#minecraft:leaves') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 20)) - .duration(100) - .EUt(3) - - event.recipes.gtceu.brewery('biomass_from_fallen_leaves') - .itemInputs('#tfc:fallen_leaves') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 20)) - .duration(100) - .EUt(3) - - event.recipes.gtceu.brewery('biomass_from_minecraft_plants') - .itemInputs('#createaddition:plants') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 100)) - .duration(100) - .EUt(3) - - event.recipes.gtceu.brewery('biomass_from_wart_blocks') - .itemInputs('#minecraft:wart_blocks') - .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 50)) - .duration(100) - .EUt(3) - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π Ρ‹Π±ΡŒΠ΅ масло - - event.recipes.gtceu.extractor(`tfg/fish_oil`) - .itemInputs('#minecraft:fishes') - .outputFluids(Fluid.of('gtceu:fish_oil', 200)) - .duration(40) - .EUt(4) - - event.recipes.gtceu.extractor(`tfg/tallow`) - .itemInputs('tfc:blubber') - .outputFluids(Fluid.of('tfc:tallow', 200)) - .duration(40) - .EUt(4) - - // you get tallow from killing things like orcas, so this seems close enough - event.recipes.gtceu.mixer('tallow_to_fish_oil') - .inputFluids('tfc:tallow 100', 'tfc:lye 100') - .outputFluids('gtceu:fish_oil 200') - .duration(100) - .EUt(4) - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: БСмянноС масло - - event.recipes.gtceu.extractor(`tfg/seed_oil`) - .itemInputs('#tfc:seeds') - .outputFluids(Fluid.of('gtceu:seed_oil', 50)) - .duration(32) - .EUt(2) - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π¦Π΅ΠΌΠ΅Π½Ρ‚ - - generateMixerRecipe(event, ['2x #tfg:stone_dusts', 'gtceu:marble_dust', 'gtceu:gypsum_dust'], - "#tfg:clean_water 1000", [], null, 'gtceu:concrete 1152', 40, 16, 64, 'concrete_from_marble') - - generateMixerRecipe(event, ['3x #tfg:stone_dusts', 'gtceu:clay_dust'], - "#tfg:clean_water 500", [], null, 'gtceu:concrete 576', 20, 16, 64, 'concrete_from_clay') - - generateMixerRecipe(event, ['3x #tfg:stone_dusts', 'gtceu:calcite_dust', 'gtceu:gypsum_dust'], - "#tfg:clean_water 1000", [], null, 'gtceu:concrete 1152', 40, 16, 64, 'concrete_from_calcite') - - //GT light/dark concrete recipe fix - - event.remove({ id: 'gtceu:fluid_solidifier/solidify_concrete_block' }) - event.remove({ id: 'gtceu:chemical_bath/light_to_dark_concrete' }) - - event.recipes.gtceu.fluid_solidifier('gtceu:fluid_solidifier/solidify_light_concrete') - .inputFluids(Fluid.of('gtceu:concrete', 144)) - .notConsumable('1x gtceu:block_casting_mold') - .itemOutputs('1x gtceu:light_concrete') - .duration(98) - .EUt(7) - - event.recipes.gtceu.chemical_bath('gtceu:chemical_bath/dark_concrete') - .inputFluids(Fluid.of('tfc:black_dye', 18)) - .itemInputs('1x gtceu:light_concrete') - .itemOutputs('1x gtceu:dark_concrete') - .duration(20) - .EUt(7) - - event.recipes.gtceu.extractor('gtceu:extractor/extract_light_concrete') - .itemInputs('1x gtceu:light_concrete') - .outputFluids(Fluid.of('gtceu:concrete', 144)) - .duration(98) - .EUt(30) - - event.stonecutting('gtceu:light_concrete_bricks', 'gtceu:light_concrete').id('tfg:stonecutting/light_concrete_bricks') - event.stonecutting('gtceu:chiseled_light_concrete', 'gtceu:light_concrete').id('tfg:stonecutting/chiseled_light_concrete') - event.stonecutting('gtceu:light_concrete_tile', 'gtceu:light_concrete').id('tfg:stonecutting/light_concrete_tile') - event.stonecutting('gtceu:light_concrete_small_tile', 'gtceu:light_concrete').id('tfg:stonecutting/light_concrete_small_tile') - event.stonecutting('gtceu:light_concrete_windmill_a', 'gtceu:light_concrete').id('tfg:stonecutting/light_concrete_windmill_a') - event.stonecutting('gtceu:light_concrete_windmill_b', 'gtceu:light_concrete').id('tfg:stonecutting/light_concrete_windmill_b') - event.stonecutting('gtceu:small_light_concrete_bricks', 'gtceu:light_concrete').id('tfg:stonecutting/small_light_concrete_bricks') - event.stonecutting('gtceu:square_light_concrete_bricks', 'gtceu:light_concrete').id('tfg:stonecutting/square_light_concrete_bricks') - - event.stonecutting('gtceu:dark_concrete_bricks', 'gtceu:dark_concrete').id('tfg:stonecutting/dark_concrete_bricks') - event.stonecutting('gtceu:chiseled_dark_concrete', 'gtceu:dark_concrete').id('tfg:stonecutting/chiseled_dark_concrete') - event.stonecutting('gtceu:dark_concrete_tile', 'gtceu:dark_concrete').id('tfg:stonecutting/dark_concrete_tile') - event.stonecutting('gtceu:dark_concrete_small_tile', 'gtceu:dark_concrete').id('tfg:stonecutting/dark_concrete_small_tile') - event.stonecutting('gtceu:dark_concrete_windmill_a', 'gtceu:dark_concrete').id('tfg:stonecutting/dark_concrete_windmill_a') - event.stonecutting('gtceu:dark_concrete_windmill_b', 'gtceu:dark_concrete').id('tfg:stonecutting/dark_concrete_windmill_b') - event.stonecutting('gtceu:small_dark_concrete_bricks', 'gtceu:dark_concrete').id('tfg:stonecutting/small_dark_concrete_bricks') - event.stonecutting('gtceu:square_dark_concrete_bricks', 'gtceu:dark_concrete').id('tfg:stonecutting/square_dark_concrete_bricks') - - //#endregion - - //#region GT marble - - event.stonecutting('gtceu:polished_marble', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_polished_marble') - event.stonecutting('gtceu:chiseled_marble', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_chiseled_marble') - event.stonecutting('gtceu:marble_tile', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_marble_tile') - event.stonecutting('gtceu:marble_small_tile', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_marble_small_tile') - event.stonecutting('gtceu:marble_windmill_a', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_marble_windmill_a') - event.stonecutting('gtceu:marble_windmill_b', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_marble_windmill_b') - event.stonecutting('gtceu:small_marble_bricks', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_small_marble_bricks') - event.stonecutting('gtceu:square_marble_bricks', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_square_marble_bricks') - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π‘ΡƒΡ€ΠΈΠ»ΡŒΠ½Π°Ρ ΠΆΠΈΠ΄ΠΊΠΎΡΡ‚ΡŒ + // Drilling fluid from all stone dusts generateMixerRecipe(event, ['2x #tfg:stone_dusts'], ['gtceu:lubricant 20', "#tfg:clean_water 4000"], [], null, Fluid.of('gtceu:drilling_fluid', 5000), 40, 16, 64, 'drilling_fluid') - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: ΠŸΡ‹Π»ΡŒ мяса - - event.recipes.gtceu.macerator('macerate_meat_to_dust') - .itemInputs('#tfc:foods/meats') - .itemOutputs('gtceu:meat_dust', 'gtceu:tiny_bone_dust') - .duration(100) - .EUt(2) - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: ΠŸΡ‹Π»ΡŒ ΠΊΠ°ΠΊΠ°ΠΎ-Π±ΠΎΠ±ΠΎΠ² - - event.recipes.gtceu.macerator('macerate_cocoa') - .itemInputs('firmalife:food/roasted_cocoa_beans') - .itemOutputs('gtceu:cocoa_dust') - .duration(100) - .EUt(2) - - //#endregion - - //#region Π‘Ρ‚Π΅ΠΊΠ»ΠΎΠ΄ΡƒΠ²ΠΊΠ° - - // Glass Tube - event.recipes.tfc.glassworking('gtceu:glass_tube', '#tfc:glass_batches_tier_3', ['blow', 'stretch', 'stretch']) - .id('tfg:gtceu/glassworking/glass_tube') - - //#endregion - - // ΠŸΡ‹Π»ΡŒ Π·Π²Π΅Π·Π΄Ρ‹ Π½Π΅Π·Π΅Ρ€Π° - event.recipes.gtceu.chemical_reactor('tfg:gtceu/nether_star_dust') - .itemInputs('2x #forge:dusts/iridium', '#forge:dusts/diamond') - .circuit(10) - .itemOutputs('gtceu:nether_star_dust') - // TODO: change to something else with venus - .inputFluids(Fluid.of('gtceu:neon', 1000)) - .duration(700) - .EUt(2720) - - // Empty Wooden Form - event.shaped('gtceu:empty_wooden_form', [ - ' AA', - 'BAA' - ], { - A: '#minecraft:planks', - B: '#forge:tools/saws' - }).id('gtceu:shaped/plank_to_wooden_shape') - - // ДСрСвянная ΡˆΠ΅ΡΡ‚Π΅Ρ€Π½Ρ - event.shaped('gtceu:small_wood_gear', [ - 'AB ', - 'BCB', - ' B ' - ], { - A: '#forge:tools/saws', - B: '#forge:rods/wooden', - C: 'tfc:glue' - }).id('gtceu:shaped/small_gear_wood') - - event.shaped('gtceu:wood_gear', [ - 'AB ', - 'BCB', - ' B ' - ], { - A: '#forge:tools/saws', - B: '#minecraft:planks', - C: 'tfc:glue' - }).id('gtceu:shaped/gear_wood') - - // Compressed Coke Clay - event.shaped('gtceu:compressed_coke_clay', [ - 'AAA', - 'BCB', - 'BBB' - ], { - A: 'minecraft:clay_ball', - B: '#minecraft:sand', - C: 'gtceu:brick_wooden_form' - }).replaceIngredient('gtceu:brick_wooden_form', 'gtceu:brick_wooden_form').id('gtceu:shaped/compressed_coke_clay') - - // Coke Oven Brick - event.recipes.tfc.heating('gtceu:compressed_coke_clay', 1399) - .resultItem('gtceu:coke_oven_brick') - .id('tfg:heating/coke_oven_bricks') - - event.recipes.gtceu.alloy_smelter('gtceu:coke_oven_brick') - .itemInputs('3x #minecraft:sand', '2x minecraft:clay_ball') - .itemOutputs('gtceu:coke_oven_brick') - .duration(7.5 * 20) - .EUt(GTValues.VA[GTValues.ULV]) - - // Multi-Smelter - event.shaped('gtceu:multi_smelter', [ - 'AAA', - 'BCB', - 'DBD' - ], { - A: 'gtceu:hp_steam_furnace', - B: '#gtceu:circuits/hv', - C: 'gtceu:heatproof_machine_casing', - D: 'gtceu:copper_single_cable' - }).id('gtceu:shaped/multi_furnace') - - event.shaped('gtceu:multi_smelter', [ - 'AAA', - 'BCB', - 'DBD' - ], { - A: 'gtceu:lv_electric_furnace', - B: '#gtceu:circuits/hv', - C: 'gtceu:heatproof_machine_casing', - D: 'gtceu:copper_single_cable' - }).id('gtceu:shaped/multi_furnace2') - - // Electric Blast Furnace - event.shaped('gtceu:electric_blast_furnace', [ - 'AAA', - 'BCB', - 'DBD' - ], { - A: 'gtceu:hp_steam_furnace', - B: '#gtceu:circuits/lv', - C: 'gtceu:heatproof_machine_casing', - D: 'gtceu:tin_single_cable' - }).id('gtceu:shaped/electric_blast_furnace') - - event.shaped('gtceu:electric_blast_furnace', [ - 'AAA', - 'BCB', - 'DBD' - ], { - A: 'gtceu:lv_electric_furnace', - B: '#gtceu:circuits/lv', - C: 'gtceu:heatproof_machine_casing', - D: 'gtceu:tin_single_cable' - }).id('gtceu:shaped/electric_blast_furnace2') - - // КлСй ΠΈΠ· ВЀК клСя / Glue from resin - event.recipes.gtceu.extractor('tfg:glue_from_tfc_glue') - .itemInputs('tfc:glue') - .outputFluids(Fluid.of('gtceu:glue', 50)) - .duration(20 * 10) - .EUt(5) - - event.recipes.gtceu.extractor('tfg:glue_from_sticky_resin') - .itemInputs('gtceu:sticky_resin') - .outputFluids(Fluid.of('gtceu:glue', 100)) - .duration(20 * 10) - .EUt(5) - - event.recipes.gtceu.extractor('tfg:glue_from_conifer_resin') - .itemInputs('tfg:conifer_rosin') - .outputFluids(Fluid.of('gtceu:glue', 50)) - .duration(20 * 10) - .EUt(5) - - event.recipes.gtceu.mixer('tfg:glue_from_bone_meal') - .itemInputs('minecraft:bone_meal') - .inputFluids(Fluid.of('tfc:limewater', 500)) - .outputFluids(Fluid.of('gtceu:glue', 50)) - .duration(100) - .EUt(5) - - // Π˜ΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° ΠΏΡ‹Π»ΠΈ сСрСбра стСрлинга - event.remove({ id: 'gtceu:mixer/sterling_silver' }) - generateMixerRecipe(event, ['#forge:dusts/copper', '4x #forge:dusts/silver'], [], '5x gtceu:sterling_silver_dust', - 1, [], 500, 7, 64, 'gtceu:mixer/sterling_silver') - - // Π˜ΡΠΏΡ€Π°Π²Π»Π΅Π½ΠΈΠ΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Π° ΠΏΡ‹Π»ΠΈ Ρ€ΠΎΠ·ΠΎΠ²ΠΎΠΉ Π±Ρ€ΠΎΠ½Π·Ρ‹ - event.remove({ id: 'gtceu:mixer/rose_gold' }) - generateMixerRecipe(event, ['#forge:dusts/copper', '4x #forge:dusts/gold'], [], '5x gtceu:rose_gold_dust', - 3, [], 500, 7, 64, 'gtceu:mixer/rose_gold') - - //#region Π Π΅Ρ†Π΅ΠΏΡ‚ ULV микросхСмы - - event.remove({ id: 'gtceu:shaped/vacuum_tube' }) - event.replaceInput({ id: 'gtceu:assembler/vacuum_tube_plain' }, 'gtceu:steel_bolt', 'gtceu:resin_circuit_board') - event.replaceInput({ id: 'gtceu:assembler/vacuum_tube_red_alloy' }, 'gtceu:steel_bolt', 'gtceu:resin_circuit_board') - event.replaceInput({ id: 'gtceu:assembler/vacuum_tube_red_alloy_annealed' }, 'gtceu:steel_bolt', 'gtceu:resin_circuit_board') - - event.recipes.createSequencedAssembly([ - 'gtceu:vacuum_tube', - ], 'gtceu:resin_circuit_board', [ - event.recipes.createDeploying('tfg:unfinished_vacuum_tube', ['tfg:unfinished_vacuum_tube', '#forge:bolts/steel']), - event.recipes.createDeploying('tfg:unfinished_vacuum_tube', ['tfg:unfinished_vacuum_tube', 'gtceu:copper_single_wire']), - event.recipes.createDeploying('tfg:unfinished_vacuum_tube', ['tfg:unfinished_vacuum_tube', 'gtceu:copper_single_wire']), - event.recipes.createDeploying('tfg:unfinished_vacuum_tube', ['tfg:unfinished_vacuum_tube', 'gtceu:glass_tube']), - event.custom({ type: 'vintageimprovements:vacuumizing', ingredients: [{ item: 'tfg:unfinished_vacuum_tube' }], results: [{ item: 'tfg:unfinished_vacuum_tube' }], processingTime: 80 }) - ]).transitionalItem('tfg:unfinished_vacuum_tube').loops(1).id('tfg:gtceu/sequenced_assembly/vacuum_tube') - - //#endregion - - //#region Π Π΅Ρ†Π΅ΠΏΡ‚ LV микросхСмы - - event.remove({ id: 'gtceu:shaped/electronic_circuit_lv' }) - - event.recipes.createSequencedAssembly([ - 'gtceu:basic_electronic_circuit', - ], 'gtceu:resin_printed_circuit_board', [ - event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', 'gtceu:resistor']), - event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', 'gtceu:resistor']), - event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', 'gtceu:vacuum_tube']), - event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', 'gtceu:vacuum_tube']), - event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', 'create:electron_tube']), - event.recipes.createFilling('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', Fluid.of('gtceu:glue', 50)]), - event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', '#forge:plates/steel']), - ]).transitionalItem('tfg:unfinished_basic_electronic_circuit').loops(1).id('tfg:gtceu/sequenced_assembly/basic_electronic_circuit') - - event.remove({ id: 'gtceu:shaped/electronic_circuit_mv' }) - - event.recipes.createSequencedAssembly([ - 'gtceu:good_electronic_circuit', - ], 'gtceu:phenolic_printed_circuit_board', [ - event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', 'gtceu:diode']), - event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', 'gtceu:diode']), - event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', '#forge:single_wires/copper']), - event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', '#forge:single_wires/copper']), - event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', 'gtceu:basic_electronic_circuit']), - event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', 'gtceu:basic_electronic_circuit']), - event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', 'gtceu:basic_electronic_circuit']), - event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', '#forge:plates/steel']), - ]).transitionalItem('tfg:unfinished_good_electronic_circuit').loops(1).id('tfg:gtceu/sequenced_assembly/good_electronic_circuit') - - //#endregion - //#region Quantum mainframe stack fix. // // Quantum Mainframes need 48x annealed copper wire but @@ -695,245 +80,40 @@ const registerGTCEURecipes = (event) => { //#endregion - // #region Move MV superconductor to early HV instead of post-vac freezer + // #region Move MV superconductor to mid-late MV instead of post-vac freezer - event.remove({ id: 'gtceu:shaped/hv_chemical_bath' }) - event.shaped('gtceu:hv_chemical_bath', [ + event.remove({ id: 'gtceu:shaped/mv_chemical_bath' }) + event.shaped('gtceu:mv_chemical_bath', [ 'ABC', 'DEA', 'FGF' ], { - A: 'gtceu:hv_conveyor_module', - B: 'gtceu:tempered_glass', - C: 'gtceu:gold_single_cable', - D: 'gtceu:hv_electric_pump', + A: 'gtceu:mv_conveyor_module', + B: '#forge:glass', + C: 'gtceu:copper_single_cable', + D: 'gtceu:mv_electric_pump', // swap one of the tempered glass for a PE pipe to ensure they've finished the plastic part of MV E: 'gtceu:polyethylene_normal_fluid_pipe', - F: '#gtceu:circuits/hv', - G: 'gtceu:hv_machine_hull' - }).id('tfg:shaped/hv_chemical_bath') + F: '#gtceu:circuits/mv', + G: 'gtceu:mv_machine_hull' + }).id('tfg:shaped/mv_chemical_bath') event.recipes.gtceu.chemical_bath('tfg:magnesium_diboride_cool_down_distilled_water') .itemInputs('gtceu:hot_magnesium_diboride_ingot') .inputFluids(Fluid.of('gtceu:distilled_water', 100)) .itemOutputs('gtceu:magnesium_diboride_ingot') .duration(250) - .EUt(480) + .EUt(GTValues.VA[GTValues.MV]) event.recipes.gtceu.chemical_bath('tfg:magnesium_diboride_cool_down') .itemInputs('gtceu:hot_magnesium_diboride_ingot') .inputFluids(Fluid.of('minecraft:water', 100)) .itemOutputs('gtceu:magnesium_diboride_ingot') .duration(400) - .EUt(480) + .EUt(GTValues.VA[GTValues.MV]) // #endregion - // #region Add all glass colors to macerator/hammer - removeMaceratorRecipe(event, 'macerate_glass'); - event.recipes.gtceu.macerator("gtceu:macerator/macerate_glass") - .itemInputs( - "#forge:glass" - ) - .itemOutputs("gtceu:glass_dust") - .duration(20) - .EUt(2); - - removeMaceratorRecipe(event, 'macerate_glass_pane'); - event.recipes.gtceu.macerator("gtceu:macerator/macerate_glass_pane") - .itemInputs( - "#forge:glass_panes" - ) - .itemOutputs("3x gtceu:tiny_glass_dust") - .duration(6) - .EUt(2) - - event.replaceInput({ id: "gtceu:shaped/glass_dust_hammer" }, - "minecraft:glass", - "#forge:glass" - ); - // #endregion - - // #region Rich coal processing - - event.recipes.gtceu.coke_oven("tfg:poor_coal_to_coke") - .itemInputs('2x gtceu:poor_raw_coal') - .itemOutputs('1x gtceu:coke_gem') - .outputFluids(Fluid.of('gtceu:creosote', 500)) - .duration(900) - - event.recipes.gtceu.coke_oven("tfg:coal_to_coke") - .itemInputs('gtceu:raw_coal') - .itemOutputs('2x gtceu:coke_gem') - .outputFluids(Fluid.of('gtceu:creosote', 1000)) - .duration(900) - - event.recipes.gtceu.coke_oven("tfg:rich_coal_to_coke") - .itemInputs('gtceu:rich_raw_coal') - .itemOutputs('4x gtceu:coke_gem') - .outputFluids(Fluid.of('gtceu:creosote', 2000)) - .duration(900) - - event.recipes.gtceu.pyrolyse_oven("tfg:rich_coal_to_tar") - .itemInputs('3x gtceu:rich_raw_coal') - .chancedOutput('gtceu:dark_ash_dust', 5000, 0) - .outputFluids(Fluid.of('gtceu:coal_tar', 3000)) - .duration(288) - .EUt(96) - .circuit(8) - - event.recipes.gtceu.pyrolyse_oven("tfg:rich_coal_to_coke_creosote") - .itemInputs('4x gtceu:rich_raw_coal') - .itemOutputs('16x gtceu:coke_gem') - .outputFluids(Fluid.of('gtceu:creosote', 8000)) - .duration(576) - .EUt(64) - .circuit(1) - - event.recipes.gtceu.pyrolyse_oven("tfg:coal_to_coal_gas") - .itemInputs('4x gtceu:rich_raw_coal') - .itemOutputs('16x gtceu:coke_gem') - .inputFluids(Fluid.of('gtceu:steam')) - .outputFluids(Fluid.of('gtceu:coal_gas', 4000)) - .duration(288) - .EUt(96) - .circuit(22) - - event.recipes.gtceu.pyrolyse_oven("tfg:coal_to_coke_creosote_nitrogen") - .itemInputs('4x gtceu:rich_raw_coal') - .itemOutputs('16x gtceu:coke_gem') - .inputFluids(Fluid.of('gtceu:nitrogen')) - .outputFluids(Fluid.of('gtceu:creosote', 8000)) - .duration(288) - .EUt(96) - .circuit(2) - - event.recipes.gtceu.coke_oven("tfg:raw_coal_to_coke") - .itemInputs('gtceu:raw_coal') - .itemOutputs('2x gtceu:coke_gem') - .outputFluids(Fluid.of('gtceu:creosote', 2000)) - .duration(1710) - - event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_tar") - .itemInputs('6x gtceu:raw_coal') - .chancedOutput('gtceu:dark_ash_dust', 5000, 0) - .outputFluids(Fluid.of('gtceu:coal_tar', 3000)) - .duration(288) - .EUt(96) - .circuit(8) - - event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coke_creosote") - .itemInputs('8x gtceu:raw_coal') - .itemOutputs('16x gtceu:coke_gem') - .outputFluids(Fluid.of('gtceu:creosote', 8000)) - .duration(576) - .EUt(64) - .circuit(1) - - event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coal_gas") - .itemInputs('8x gtceu:raw_coal') - .itemOutputs('16x gtceu:coke_gem') - .inputFluids(Fluid.of('gtceu:steam')) - .outputFluids(Fluid.of('gtceu:coal_gas', 4000)) - .duration(288) - .EUt(96) - .circuit(22) - - event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coke_creosote_nitrogen") - .itemInputs('8x gtceu:raw_coal') - .itemOutputs('16x gtceu:coke_gem') - .inputFluids(Fluid.of('gtceu:nitrogen')) - .outputFluids(Fluid.of('gtceu:creosote', 8000)) - .duration(288) - .EUt(96) - .circuit(2) - - // #endregion - - // #region Fix TFC hanging sign metal dupe for Macerator and Arc Furnace - - const SIGN_METALS = [ - GTMaterials.Copper, - GTMaterials.Bronze, - GTMaterials.BlackBronze, - GTMaterials.BismuthBronze, - GTMaterials.WroughtIron, - GTMaterials.Steel, - GTMaterials.BlackSteel, - GTMaterials.RedSteel, - GTMaterials.BlueSteel - ]; - - SIGN_METALS.forEach(metal => { - // Arc furnace - global.TFC_WOOD_TYPES.forEach(wood => { - event.remove(`gtceu:arc_furnace/arc_wood/hanging_sign/${metal.getName()}/${wood}`) - event.recipes.gtceu.arc_furnace(`gtceu:arc_furnace/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) - .itemInputs(`tfc:wood/hanging_sign/${metal.getName()}/${wood}`) - .itemOutputs('gtceu:tiny_ash_dust') - .chancedOutput(ChemicalHelper.get(TagPrefix.nugget, metal, 1), 3750, 0) - .inputFluids(Fluid.of('gtceu:oxygen', 12)) - .duration(12) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - }) - - global.AFC_WOOD_TYPES.forEach(wood => { - event.recipes.gtceu.arc_furnace(`gtceu:arc_furnace/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) - .itemInputs(`afc:wood/hanging_sign/${metal.getName()}/${wood}`) - .itemOutputs('gtceu:tiny_ash_dust') - .chancedOutput(ChemicalHelper.get(TagPrefix.nugget, metal, 1), 3750, 0) - .inputFluids(Fluid.of('gtceu:oxygen', 12)) - .duration(12) - .EUt(30) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - }) - - // Macerator - global.TFC_HARDWOOD_TYPES.forEach(wood => { - removeMaceratorRecipe(event, `macerate_wood/hanging_sign/${metal.getName()}/${wood}`) - event.recipes.gtceu.macerator(`gtceu:macerator/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) - .itemInputs(`tfc:wood/hanging_sign/${metal.getName()}/${wood}`) - .itemOutputs('gtceu:hardwood_dust') - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, metal, 1), 3750, 0) - .duration(108) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - }) - - global.TFC_SOFTWOOD_TYPES.forEach(wood => { - removeMaceratorRecipe(event, `macerate_wood/hanging_sign/${metal.getName()}/${wood}`) - event.recipes.gtceu.macerator(`gtceu:macerator/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) - .itemInputs(`tfc:wood/hanging_sign/${metal.getName()}/${wood}`) - .itemOutputs('gtceu:wood_dust') - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, metal, 1), 3750, 0) - .duration(108) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - }) - - global.AFC_HARDWOOD_TYPES.forEach(wood => { - event.recipes.gtceu.macerator(`gtceu:macerator/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) - .itemInputs(`afc:wood/hanging_sign/${metal.getName()}/${wood}`) - .itemOutputs('gtceu:hardwood_dust') - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, metal, 1), 3750, 0) - .duration(108) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - }) - - global.AFC_SOFTWOOD_TYPES.forEach(wood => { - event.recipes.gtceu.macerator(`gtceu:macerator/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) - .itemInputs(`afc:wood/hanging_sign/${metal.getName()}/${wood}`) - .itemOutputs('gtceu:wood_dust') - .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, metal, 1), 3750, 0) - .duration(108) - .EUt(8) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - }) - }) - // #endregion - //#region Voiding covers event.replaceInput({ id: 'gtceu:shaped/cover_fluid_voiding' }, @@ -950,102 +130,6 @@ const registerGTCEURecipes = (event) => { //#endregion - // #region Treated Wood - - event.shaped('2x gtceu:treated_wood_door', [ - 'AA ', - 'AA ', - 'AA ' - ], { - A: 'gtceu:treated_wood_plate' - }).id('tfg:shaped/treated_door') - - event.shaped('3x gtceu:treated_wood_trapdoor', [ - 'AAA', - 'AAA', - ' ' - ], { - A: 'gtceu:treated_wood_plate' - }).id('tfg:shaped/treated_trapdoor') - - // #endregion - - // #region Rubber Processing Line - event.recipes.firmalife.vat() - .inputs('tfc:powder/sulfur', Fluid.of('tfg:latex', 1000)) - .outputFluid(Fluid.of('tfg:vulcanized_latex', 1000)) - .length(300) - .temperature(300) - .id('tfg:vat/vulcanized_latex') - - event.recipes.tfc.pot('tfc:powder/sulfur', Fluid.of('tfg:latex', 1000), 1200, 300) - .fluidOutput(Fluid.of('tfg:vulcanized_latex', 1000)) - .id('tfg:pot/vulcanized_latex') - - event.recipes.gtceu.chemical_reactor('tfg:latex_to_vulcanized_latex') - .duration(100) - .EUt(20) - .itemInputs('tfc:powder/sulfur') - .inputFluids(Fluid.of('tfg:latex', 1000)) - .outputFluids(Fluid.of('tfg:vulcanized_latex', 1000)) - - event.recipes.gtceu.fluid_solidifier('tfg:vulcanized_latex_to_raw_rubber_pulp') - .duration(100) - .EUt(20) - .inputFluids(Fluid.of('tfg:vulcanized_latex', 1000)) - .itemOutputs('4x gtceu:raw_rubber_dust') - - // #endregion - - // #region Primitive protection - - event.recipes.tfc.barrel_sealed(2000) - .outputItem('tfg:prepared_leather_gloves') - .inputs('tfchotornot:mittens', Fluid.of('tfc:vinegar', 1000)) - .id('tfg:sealed_barrel/prepared_leather_gloves') - - event.recipes.firmalife.vat() - .outputItem('tfg:latex_soaked_gloves') - .inputs('tfg:prepared_leather_gloves', Fluid.of('tfg:vulcanized_latex', 1000)) - .length(300) - .temperature(200) - .id('tfg:vat/latex_soaked_gloves') - - event.recipes.firmalife.oven('tfg:latex_soaked_gloves', 120, 1200, 'gtceu:rubber_gloves') - .id('tfg:oven/rubber_gloves') - - event.remove({ id: 'gtceu:shaped/rubber_gloves' }) - - event.recipes.gtceu.alloy_smelter('rubber_gloves_alloy_smelter') - .itemInputs('2x #forge:plates/rubber') - .notConsumable('create:brass_hand') - .itemOutputs('gtceu:rubber_gloves') - .duration(200) - .EUt(GTValues.VA[GTValues.ULV]) - .category(GTRecipeCategories.INGOT_MOLDING) - - - event.recipes.tfc.damage_inputs_shaped_crafting( - event.shaped('gtceu:face_mask', [ - 'ACA', - 'ABA', - ' D ' - ], { - A: '#forge:string', - B: '#forge:cloth', - C: 'minecraft:paper', - D: '#tfc:sewing_needles' - }) - ).id('gtceu:shaped/face_mask') - - event.recipes.gtceu.assembler('assemble_face_mask') - .itemInputs('4x #forge:string', '#forge:cloth', 'minecraft:paper') - .itemOutputs('gtceu:face_mask') - .duration(100) - .EUt(GTValues.VA[GTValues.ULV]) - .circuit(7) - - // #endregion event.replaceInput({ id: 'gtceu:shaped/nightvision_goggles' }, 'gtceu:glass_lens', 'tfc:lens') event.replaceInput({ id: 'gtceu:shaped/nightvision_goggles' }, 'gtceu:lv_sodium_battery', '#gtceu:batteries/lv') @@ -1058,99 +142,6 @@ const registerGTCEURecipes = (event) => { 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)) - .notConsumable('gtceu:ball_casting_mold') - .itemOutputs('tfc:glue') - .duration(100) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.centrifuge('tfg:centrifuge_rosin') - .itemInputs('tfg:conifer_rosin') - .outputFluids(Fluid.of('gtceu:glue', 50)) - .itemOutputs('2x #forge:dusts/carbon') - .chancedOutput('gtceu:plant_ball', 7500, 0) - .duration(20 * 20) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.centrifuge('tfg:centrifuge_sticky_resin') - .itemInputs('gtceu:sticky_resin') - .outputFluids(Fluid.of('gtceu:glue', 100)) - .itemOutputs('3x #forge:dusts/carbon') - .chancedOutput('gtceu:plant_ball', 5000, 0) - .duration(20 * 20) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.chemical_reactor(`tfg:treat_latex_plants_into_latex`) - .itemInputs('16x #tfg:rubber_plants', 'gtceu:tiny_sodium_hydroxide_dust') - .circuit(1) - .outputFluids(Fluid.of('tfg:latex', 1000)) - .duration(200) - .EUt(20) - - event.recipes.createSequencedAssembly([ - 'gtceu:ulv_voltage_coil', - ], 'gtceu:magnetic_iron_rod', [ - event.recipes.createDeploying('gtceu:magnetic_iron_rod', ['gtceu:magnetic_iron_rod', '#forge:fine_wires/lead']) - ]).transitionalItem('gtceu:magnetic_iron_rod').loops(32).id('tfg:sequenced_assembly/ulv_voltage_coil') - - //#endregion - - //#region Steam Bloomery - - event.recipes.gtceu.steam_bloomery('steam_raw_iron_bloom_coal') - .itemInputs('#forge:ingots/iron', '#tfc:steam_bloomery_basic_fuels') - .itemOutputs('tfc:raw_iron_bloom') - .duration(2400) - .EUt(2) - - event.recipes.gtceu.steam_bloomery('steam_raw_iron_bloom_coalcoke') - .itemInputs('2x #forge:ingots/iron', '#tfc:blast_furnace_fuel') - .itemOutputs('2x tfc:raw_iron_bloom') - .duration(2400) - .EUt(2) - - forEachMaterial(material => { - - const tfcProperty = material.getProperty(TFGPropertyKey.TFC_PROPERTY) - if (tfcProperty === null) - return; - - const outputMaterial = tfcProperty.getOutputMaterial() === null ? material : tfcProperty.getOutputMaterial() - if (outputMaterial === GTMaterials.Iron) { - event.recipes.gtceu.steam_bloomery(`steam_raw_iron_bloom_coal_${material.getName()}`) - .itemInputs(ChemicalHelper.get(TagPrefix.dust, material, 1), '#tfc:steam_bloomery_basic_fuels') - .itemOutputs('tfc:raw_iron_bloom') - .duration(2400) - .EUt(2) - - event.recipes.gtceu.steam_bloomery(`steam_raw_iron_bloom_coalcoke_${material.getName()}`) - .itemInputs(ChemicalHelper.get(TagPrefix.dust, material, 2), '#tfc:blast_furnace_fuel') - .itemOutputs('2x tfc:raw_iron_bloom') - .duration(2400) - .EUt(2) - } - }) - - //#endregion - - //#region Stick Packing - - event.recipes.gtceu.packer('tfg:stick_bunch') - .itemInputs('9x #forge:rods/wooden') - .circuit(5) - .itemOutputs('tfc:stick_bunch') - .duration(50) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.packer('tfg:stick_bundle') - .itemInputs('18x #forge:rods/wooden') - .circuit(8) - .itemOutputs('tfc:stick_bundle') - .duration(50) - .EUt(GTValues.VA[GTValues.ULV]) - - //#endregion // Fix Snow in Compressor @@ -1161,31 +152,7 @@ const registerGTCEURecipes = (event) => { .duration(20 * 10) .EUt(2) - //#region Changing tiers of decomposition recipes - - event.recipes.gtceu.electrolyzer('gtceu:decomposition_electrolyzing_clay') - .itemInputs('13x #forge:dusts/clay') - .itemOutputs('2x #forge:dusts/sodium', '1x #forge:dusts/lithium', '2x #forge:dusts/aluminium', '2x #forge:dusts/silicon') - .outputFluids(Fluid.of('minecraft:water', 6000)) - .duration(GTMaterials.Clay.getMass() * 13) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.centrifuge('gtceu:stone_dust_separation') - .itemInputs('gtceu:stone_dust') - .chancedOutput('#forge:small_dusts/quartzite', 2500, 0) - .chancedOutput('#forge:small_dusts/potassium_feldspar', 2500, 0) - .chancedOutput('#forge:small_dusts/marble', 2222, 0) - .chancedOutput('#forge:small_dusts/biotite', 1111, 0) - .chancedOutput('#forge:small_dusts/metal_mixture', 825, 80) - .chancedOutput('#forge:small_dusts/sodalite', 550, 55) - .duration(12 * 20) - .EUt(GTValues.VA[GTValues.HV]) - - - //#endregion - - //#region Tape - + // Tape event.shaped('gtceu:basic_tape', [ ' A ', 'ABA', @@ -1201,40 +168,8 @@ const registerGTCEURecipes = (event) => { .duration(100) .EUt(GTValues.VA[GTValues.ULV]) - //#endregion - //#region glowstone - event.recipes.gtceu.alloy_blast_smelter('abs:liquid_glowstone') - .itemInputs('#forge:dusts/gold', '#forge:dusts/redstone', '#forge:dusts/sulfur') - .outputFluids(Fluid.of('gtceu:glowstone', 288)) - .duration(20 * 60 / 1.3) - .EUt(GTValues.VA[GTValues.LV]) - .blastFurnaceTemp(1064) - .circuit(9) - //#endregion - - - //#region Large boilers fuel rebalance - - // Balance is based on adjusting to match singeblock boiler efficiency - // High Pressure Steam Solid Boiler produces 288,000 mB steam/coke - // High Pressure Steam Liquid Boiler produces 432 mB steam/creosote - // By Defualt: Large Bronze Boiler produces 50mB steam/creosote, 32000mB steam/coke - // This is a factor of 9x for solids, 8.64x for liquids - // Large boiler fuel burn time is multiplied by 9, resulting in less fuel used over time for the same amount of steam produced per tick - - event.findRecipes({ id: /^gtceu:large_boiler\/.*/, type: "gtceu:large_boiler" }).forEach(large_boiler_recipe => { - - let recipe_duration = large_boiler_recipe.json.getAsJsonPrimitive("duration").asInt - - large_boiler_recipe.json.remove("duration") - large_boiler_recipe.json.add("duration", recipe_duration * 9) - }) - - //#endregion - - - //#region GT Facades + // 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"]) @@ -1254,8 +189,17 @@ const registerGTCEURecipes = (event) => { result.nbt = facadeNBT return result; }).id('gtceu:facade_cover32'); - //#endregion + event.shapeless(Item.of('gtceu:facade_cover', 8, '{Facade: {Count:1b,id:"minecraft:stone"}}'), ['4x gtceu:facade_cover', "#tfg:whitelisted/facades", '4x gtceu:facade_cover']) + .modifyResult((craftingGrid, result) => { + let blockID = craftingGrid.find(Ingredient.of("#tfg:whitelisted/facades")).id + + let facadeNBT = `{Facade: {Count:1b,id:` + `'${blockID}'` + `}}` + result.nbt = facadeNBT + return result; + }).id('gtceu:facade_cover_recycle'); + + // Diamond gear event.recipes.gtceu.laser_engraver('tfg:diamond_gear') .itemInputs('4x #forge:plates/diamond') .itemOutputs('#forge:gears/diamond') @@ -1263,28 +207,6 @@ const registerGTCEURecipes = (event) => { .duration(200) .EUt(GTValues.VA[GTValues.MV]) - //#region Rose Quartz fabrication + decomposition - event.remove({ id: 'gtceu:electrolyzer/decomposition_electrolyzing_chromatic_compound' }); - event.remove({ id: 'gtceu:autoclave/autoclave_dust_rose_quartz_water' }) - event.remove({ id: 'gtceu:autoclave/autoclave_dust_rose_quartz_distilled' }) - - generateMixerRecipe(event, ['gtceu:nether_quartz_dust', '8x minecraft:redstone'], [], '9x gtceu:rose_quartz_dust', 2, [], 180, 60, 64, 'rose_quartz_dust_mixing') - generateMixerRecipe(event, ['gtceu:tiny_nether_quartz_dust', '8x gtceu:tiny_redstone_dust'], [], 'gtceu:rose_quartz_dust', 2, [], 20, 60, 64, 'tiny_rose_quartz_dust_mixing') - - event.recipes.gtceu.autoclave("autoclave_dust_rose_quartz_ice") - .itemInputs('#forge:dusts/rose_quartz') - .inputFluids(Fluid.of("gtceu:ice", 144)) - .itemOutputs("#forge:gems/rose_quartz") - .duration(2000) - .EUt(120) - - event.recipes.gtceu.electrolyzer('electrolyze_rose_quartz_dust') - .itemInputs('9x gtceu:rose_quartz_dust') - .itemOutputs('1x gtceu:nether_quartz_dust', '8x minecraft:redstone') - .duration(7 * 20) - .EUt(60) - //#endregion - //#region Multiblock Tanks event.recipes.gtceu.assembler('tfg:assembler/wood_wall') @@ -1322,13 +244,6 @@ const registerGTCEURecipes = (event) => { //#endregion - event.smelting('minecraft:iron_ingot', '#forge:ingots/wrought_iron') - .id('tfg:revert_wrought_iron_ingot') - - event.replaceOutput({ id: 'gtceu:distillery/distill_biomass_to_water' }, 'gtceu:wood_dust', 'gtceu:carbon_dust') - event.replaceOutput({ id: 'gtceu:distillery/distill_biomass_to_ethanol' }, 'gtceu:wood_dust', 'gtceu:carbon_dust') - event.replaceOutput({ id: 'gtceu:distillation_tower/distill_biomass' }, 'gtceu:wood_dust', 'gtceu:carbon_dust') - //#region Circuit Fixes global.ADD_CIRCUIT.forEach(item => { @@ -1337,55 +252,6 @@ const registerGTCEURecipes = (event) => { //#endregion - //#region Chemical Reaction for Solar Panel - - event.recipes.gtceu.chemical_reactor('tfg:chlorine_pentafluoride') - .inputFluids(Fluid.of('gtceu:fluorine', 5000), Fluid.of('gtceu:chlorine', 1000)) - .outputFluids(Fluid.of('tfg:chlorine_pentafluoride', 1000)) - .duration(20 * 5) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.chemical_reactor('tfg:chloryl_fluoride') - .inputFluids(Fluid.of('tfg:chlorine_pentafluoride', 1000), Fluid.of('minecraft:water', 2000)) - .outputFluids(Fluid.of('tfg:chloryl_fluoride', 1000), Fluid.of('gtceu:hydrofluoric_acid', 4000)) - .duration(20 * 5) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.large_chemical_reactor('tfg:solar_coolant') - .inputFluids(Fluid.of('tfg:chloryl_fluoride', 3000), Fluid.of('gtceu:helium_3', 8000), Fluid.of('minecraft:water', 8000)) - .outputFluids(Fluid.of('tfg:solar_coolant', 1000), Fluid.of('gtceu:hydrofluoric_acid', 3000), Fluid.of('gtceu:hypochlorous_acid', 3000)) - .duration(20 * 5) - .EUt(GTValues.VH[GTValues.EV]) - - event.recipes.gtceu.large_chemical_reactor('tfg:solar_coolant_t2') - .inputFluids(Fluid.of('tfg:solar_coolant', 8000), Fluid.of('gtceu:argon', 1000)) - .itemInputs(Item.of('#forge:aerogels')) - .outputFluids(Fluid.of('tfg:solar_coolant_tier2', 8000)) - .duration(20 * 15) - .EUt(GTValues.VH[GTValues.IV]) - - //#endregion - - event.replaceInput({ id: 'gtceu:shaped/powderbarrel' }, 'gtceu:wood_plate', '#tfc:lumber') - - event.shaped('gtceu:treated_wood_pressure_plate', [ - ' B ', - 'CDC', - ' E ' - ], { - B: '#tfc:hammers', - C: 'gtceu:treated_wood_slab', - D: '#forge:small_springs', - E: '#forge:tools/screwdrivers' - }).id('gtceu:shaped/treated_pressure_plate') - - event.recipes.gtceu.assembler('gtceu:treated_pressure_plate') - .itemInputs('#forge:small_springs', '2x gtceu:treated_wood_slab') - .itemOutputs('gtceu:treated_wood_pressure_plate') - .circuit(3) - .duration(50) - .EUt(2) - // Matches event.shapeless('4x gtceu:matches', ['#forge:dusts/phosphorus', 'tfc:glue', '4x #forge:bolts/wood']) @@ -1397,21 +263,6 @@ const registerGTCEURecipes = (event) => { event.shapeless(Item.of('gtceu:matchbox', '{usesLeft:8}'), ['minecraft:paper', '8x gtceu:matches']) .id('tfg:shapeless/matchbox') - - event.remove({ id: 'gtceu:chemical_reactor/nano_cpu_wafer' }) - event.remove({ id: 'gtceu:large_chemical_reactor/nano_cpu_wafer' }) - - event.recipes.gtceu.chemical_reactor('tfg:nano_cpu_wafer') - .inputFluids(Fluid.of('gtceu:tritiated_water', 576)) - .itemInputs('gtceu:cpu_wafer', '16x gtceu:carbon_fibers') - .itemOutputs('gtceu:nano_cpu_wafer') - .duration(20*60) - .EUt(GTValues.VA[GTValues.EV]) - .cleanroom(CleanroomType.CLEANROOM) - - event.remove({ id: 'gtceu:chemical_reactor/soda_ash_from_carbon_dioxide' }) - event.remove({ id: 'gtceu:large_chemical_reactor/soda_ash_from_carbon_dioxide' }) - event.recipes.gtceu.implosion_compressor('tfg:dense_lead_plate') .itemInputs('16x #forge:ingots/lead', '16x #forge:ingots/lead', '6x #forge:ingots/lead') .itemInputs('gtceu:industrial_tnt') @@ -1446,75 +297,7 @@ const registerGTCEURecipes = (event) => { F: 'gtceu:stainless_steel_huge_fluid_pipe' }).id('tfg:shaped/large_centrifuge') - event.recipes.gtceu.chemical_reactor('tfg:wood_ash_to_wood_gas_air') - .itemInputs('8x tfc:powder/wood_ash') - .inputFluids(Fluid.of('gtceu:air', 100)) - .outputFluids('gtceu:wood_gas 100') - .duration(20 * 5) - .EUt(GTValues.VA[GTValues.LV]) - - event.remove({ id: 'gtceu:circuit_assembler/mainframe_iv_asmd_soldering_alloy'}) - event.remove({ id: 'gtceu:circuit_assembler/mainframe_iv'}) - event.remove({ id: 'gtceu:circuit_assembler/mainframe_iv_soldering_alloy'}) - event.remove({ id: 'gtceu:circuit_assembler/mainframe_iv_asmd'}) - - event.recipes.gtceu.circuit_assembler('tfg:circuit_assembler/mainframe_iv') - .itemInputs('2x gtceu:aluminium_frame', '2x gtceu:micro_processor_computer', '8x #gtceu:inductors', '16x #gtceu:capacitors', 'gtceu:nano_cpu_chip', '16x gtceu:annealed_copper_single_wire') - .inputFluids(Fluid.of('gtceu:tin', 576)) - .itemOutputs('gtceu:micro_processor_mainframe') - .duration(20 * 40) - .EUt(GTValues.VA[GTValues.HV]) - .cleanroom(CleanroomType.CLEANROOM) - - event.recipes.gtceu.circuit_assembler('tfg:circuit_assembler/mainframe_iv_soldering_alloy') - .itemInputs('2x gtceu:aluminium_frame', '2x gtceu:micro_processor_computer', '8x #gtceu:inductors', '16x #gtceu:capacitors', 'gtceu:nano_cpu_chip', '16x gtceu:annealed_copper_single_wire') - .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) - .itemOutputs('gtceu:micro_processor_mainframe') - .duration(20 * 40) - .EUt(GTValues.VA[GTValues.HV]) - .cleanroom(CleanroomType.CLEANROOM) - - event.recipes.gtceu.circuit_assembler('tfg:circuit_assembler/mainframe_iv_asmd') - .itemInputs('2x gtceu:aluminium_frame', '2x gtceu:micro_processor_computer', '2x gtceu:advanced_smd_inductor', '4x gtceu:advanced_smd_capacitor', 'gtceu:nano_cpu_chip', '16x gtceu:annealed_copper_single_wire') - .inputFluids(Fluid.of('gtceu:tin', 576)) - .itemOutputs('gtceu:micro_processor_mainframe') - .duration(20 * 20) - .EUt(GTValues.VA[GTValues.HV]) - .cleanroom(CleanroomType.CLEANROOM) - - event.recipes.gtceu.circuit_assembler('tfg:circuit_assembler/mainframe_iv_asmd_soldering_alloy') - .itemInputs('2x gtceu:aluminium_frame', '2x gtceu:micro_processor_computer', '2x gtceu:advanced_smd_inductor', '4x gtceu:advanced_smd_capacitor', 'gtceu:nano_cpu_chip', '16x gtceu:annealed_copper_single_wire') - .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) - .itemOutputs('gtceu:micro_processor_mainframe') - .duration(20 * 20) - .EUt(GTValues.VA[GTValues.HV]) - .cleanroom(CleanroomType.CLEANROOM) - - // Buttons - removeCutterRecipe(event, 'blackstone_button') - removeCutterRecipe(event, 'blackstone_button_water') - removeCutterRecipe(event, 'blackstone_button_distilled_water') - removeCutterRecipe(event, 'cut_polished_blackstone_brickslab_into_button') - removeCutterRecipe(event, 'cut_polished_blackstone_brickslab_into_button_water') - removeCutterRecipe(event, 'cut_polished_blackstone_brickslab_into_button_distilled_water') - - event.recipes.gtceu.cutter('tfg:blackstone_button') - .itemInputs('minecraft:polished_blackstone_pressure_plate') - .itemOutputs('6x minecraft:polished_blackstone_button') - .EUt(7) - .duration(100) - - - event.replaceOutput({ id: 'gtceu:cutter/bamboo_button' }, 'minecraft:bamboo_button', '6x minecraft:bamboo_button') - event.replaceOutput({ id: 'gtceu:cutter/bamboo_button_water' }, 'minecraft:bamboo_button', '6x minecraft:bamboo_button') - event.replaceOutput({ id: 'gtceu:cutter/bamboo_button_distilled_water' }, 'minecraft:bamboo_button', '6x minecraft:bamboo_button') - - event.replaceOutput({ id: 'gtceu:cutter/treated_button' }, 'gtceu:treated_wood_button', '6x gtceu:treated_wood_button') - event.replaceOutput({ id: 'gtceu:cutter/treated_button_water' }, 'gtceu:treated_wood_button', '6x gtceu:treated_wood_button') - event.replaceOutput({ id: 'gtceu:cutter/treated_button_distilled_water' }, 'gtceu:treated_wood_button', '6x gtceu:treated_wood_button') - - //#region Replace Recipe - + // ME Pattern Buffer event.remove({ id: 'gtceu:assembly_line/me_pattern_buffer_proxy' }) event.recipes.gtceu.assembly_line('tfg:me_pattern_buffer_proxy') .itemInputs( @@ -1537,88 +320,6 @@ const registerGTCEURecipes = (event) => { event.replaceInput({ id: 'gtceu:assembly_line/me_pattern_buffer' }, 'ae2:pattern_provider', '3x expatternprovider:ex_pattern_provider') event.replaceInput({ id: 'gtceu:assembly_line/me_pattern_buffer' }, 'ae2:interface', '3x expatternprovider:oversize_interface') - event.replaceInput({ id: 'gtceu:shaped/large_combustion_engine' }, '#gtceu:circuits/iv', '#gtceu:circuits/ev') - event.replaceInput({ id: 'gtceu:shaped/nano_chestplate_advanced' }, '#gtceu:circuits/iv', '#gtceu:circuits/ev') - event.replaceInput({ id: 'gtceu:assembler/ev_large_miner' }, '#gtceu:circuits/iv', '#gtceu:circuits/ev') - - // the recycling fix only works if the addMaterialInfo() is on the shaped recipe, NOT the assembler - removeMaceratorRecipe(event, 'macerate_palladium_substation') - event.recipes.gtceu.shaped('gtceu:palladium_substation', [ - 'AAA', - ' B ', - 'AAA' - ], { - A: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Palladium, 1), - B: ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.Ultimet, 1) - }).addMaterialInfo().id('tfg:shaped/casing_palladium_substation') - - event.recipes.gtceu.assembler('casing_palladium_substation') - .itemInputs( - ChemicalHelper.get(TagPrefix.plate, GTMaterials.Palladium, 6), - ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.Ultimet, 1) - ) - .itemOutputs('gtceu:palladium_substation') - .duration(20 * 2.5) - .circuit(6) - .EUt(GTValues.VA[GTValues.LV]) - - - removeMaceratorRecipe(event, 'macerate_power_substation') - event.recipes.gtceu.shaped('gtceu:power_substation', [ - 'ABA', - 'CDC', - 'ABA' - ], { - A: 'gtceu:lapotron_crystal', - B: 'gtceu:mpic_chip', - C: '#gtceu:circuits/ev', - D: 'gtceu:palladium_substation' - }).addMaterialInfo().id('gtceu:shaped/power_substation') - - event.replaceInput({ id: 'gtceu:assembler/field_generator_hv' }, 'gtceu:quantum_eye', 'tfg:cryo_fluix_pearl') - event.replaceInput({ id: 'gtceu:assembler/field_generator_ev' }, 'minecraft:nether_star', 'gtceu:quantum_eye') - event.replaceInput({ id: 'gtceu:assembler/field_generator_iv' }, 'gtceu:quantum_star', 'minecraft:nether_star') - - event.recipes.gtceu.shaped('gtceu:hv_field_generator', [ - 'ABA', - 'CDC', - 'ABA' - ], { - A: ChemicalHelper.get(TagPrefix.wireGtQuadruple, GTMaterials.MercuryBariumCalciumCuprate , 1), - B: ChemicalHelper.get(TagPrefix.plate, GTMaterials.StainlessSteel, 1), - C: '#gtceu:circuits/hv', - D: 'tfg:cryo_fluix_pearl' - }).addMaterialInfo().id('gtceu:shaped/field_generator_hv') - - event.recipes.gtceu.shaped('gtceu:ev_field_generator', [ - 'ABA', - 'CDC', - 'ABA' - ], { - A: ChemicalHelper.get(TagPrefix.wireGtQuadruple, GTMaterials.UraniumTriplatinum , 1), - B: ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.Titanium, 1), - C: '#gtceu:circuits/ev', - D: 'gtceu:quantum_eye' - }).addMaterialInfo().id('gtceu:shaped/field_generator_ev') - - event.recipes.gtceu.shaped('gtceu:iv_field_generator', [ - 'ABA', - 'CDC', - 'ABA' - ], { - A: ChemicalHelper.get(TagPrefix.wireGtQuadruple, GTMaterials.SamariumIronArsenicOxide , 1), - B: ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.TungstenSteel, 1), - C: '#gtceu:circuits/iv', - D: 'minecraft:nether_star' - }).addMaterialInfo().id('gtceu:shaped/field_generator_iv') - - event.remove({ id: 'gtceu:chemical_bath/quantum_eye' }) - event.recipes.gtceu.chemical_bath('tfg:quantum_eye') - .itemInputs('tfg:cryo_fluix_pearl') - .inputFluids(Fluid.of('gtceu:radon', 250)) - .itemOutputs('gtceu:quantum_eye') - .duration(20 * 24) - .EUt(GTValues.VA[GTValues.HV]) // Modify Rotor Holder to require an Assembler @@ -1665,174 +366,31 @@ const registerGTCEURecipes = (event) => { .duration(20 * 6) .EUt(GTValues.VA[GTValues.UV]) - //# Circuit Board - event.replaceInput({ id: 'gtceu:assembler/phenolic_board' }, '#tfg:wood_dusts', 'tfg:high_density_treated_fiberboard') + event.replaceInput({ output: 'gtceu:nano_saber' }, 'gtceu:ruridit_plate', '#forge:plates/ostrum_iodide') + event.replaceOutput({ id: 'gtceu:canner/pack_paracetamol' }, 'gtceu:paracetamol_pill', 'tfg:paracetamol_pill') + event.replaceOutput({ id: 'gtceu:canner/pack_rad_away' }, 'gtceu:rad_away_pill', 'tfg:rad_away_pill') - //#region New Tungsten Line + // Intentionally long to encourage reuse instead of mindlessly creating and distilling + event.recipes.gtceu.mixer('tfg:diluted_hcl_acid') + .inputFluids(Fluid.of('gtceu:hydrochloric_acid', 1000), Fluid.of('minecraft:water')) + .outputFluids(Fluid.of('gtceu:diluted_hydrochloric_acid', 2000)) + .duration(30 * 20) + .EUt(GTValues.VA[GTValues.LV]) - event.remove({ id: 'gtceu:chemical_bath/tungstic_acid_from_scheelite' }) - event.remove({ id: 'gtceu:chemical_bath/tungstic_acid_from_tungstate' }) - event.remove({ id: 'gtceu:electrolyzer/tungstic_acid_electrolysis' }) + event.recipes.gtceu.mixer('tfg:diluted_sulf_acid') + .inputFluids(Fluid.of('gtceu:sulfuric_acid', 2000), Fluid.of('minecraft:water')) + .outputFluids(Fluid.of('gtceu:diluted_sulfuric_acid', 3000)) + .duration(30 * 20) + .EUt(GTValues.VA[GTValues.LV]) - // Transform Tungstate and Scheelite + // Ladder consistency + event.replaceOutput({ id: 'gtceu:assembler/ladder' }, 'minecraft:ladder', '8x minecraft:ladder') - event.recipes.gtceu.large_chemical_reactor('tfg:scheelite_to_sodium_tungstate') - .itemInputs(Item.of('gtceu:scheelite_dust', 6)) - .itemInputs(Item.of('gtceu:soda_ash_dust', 6)) - .itemOutputs(Item.of('tfg:sodium_tungstate_dust', 6)) - .itemOutputs(Item.of('gtceu:calcite_dust', 6)) - .duration(20*12) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.large_chemical_reactor('tfg:tungstate_to_sodium_tungstate') - .itemInputs(Item.of('gtceu:tungstate_dust', 6)) - .itemInputs(Item.of('gtceu:soda_ash_dust', 6)) - .itemOutputs(Item.of('tfg:sodium_tungstate_dust', 6)) - .itemOutputs(Item.of('gtceu:lithium_dust', 2)) - .itemOutputs(Item.of('gtceu:carbon_dust', 1)) - .outputFluids(Fluid.of('gtceu:oxygen', 3000)) - .duration(20*12) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.chemical_bath('tfg:tungstate_to_tungsten_acid') - .inputFluids(Fluid.of('gtceu:hydrochloric_acid', 12000)) - .itemInputs(Item.of('tfg:sodium_tungstate_dust', 6)) - .itemOutputs(Item.of('gtceu:salt_dust', 48)) - .itemOutputs(Item.of('gtceu:tungstic_acid_dust', 6)) - .duration(20*24) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.chemical_bath('tfg:tungsten_acid_to_ammonium_tungstate') - .inputFluids(Fluid.of('gtceu:ammonia', 10000)) - .itemInputs(Item.of('gtceu:tungstic_acid_dust', 12)) - .itemOutputs(Item.of('tfg:ammonium_tungstate_dust', 1)) - .duration(20*16) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.evaporation_tower('tfg:ammonium_tungstate_to_apt_h') - .itemInputs(Item.of('tfg:ammonium_tungstate_dust', 1)) - .itemOutputs(Item.of('tfg:apt_gem', 1)) - .outputFluids(Fluid.of('gtceu:hydrogen', 500)) - .outputFluids(Fluid.of('gtceu:hydrogen', 500)) - .outputFluids(Fluid.of('gtceu:hydrogen', 500)) - .outputFluids(Fluid.of('gtceu:hydrogen', 500)) - .outputFluids(Fluid.of('gtceu:hydrogen', 500)) - .outputFluids(Fluid.of('gtceu:hydrogen', 500)) - .duration(20*90) - .EUt(GTValues.VHA[GTValues.HV]) - - event.recipes.gtceu.distillery('tfg:ammonium_tungstate_to_apt') - .itemInputs(Item.of('tfg:ammonium_tungstate_dust', 1)) - .itemOutputs(Item.of('tfg:apt_gem', 1)) - .outputFluids(Fluid.of('gtceu:hydrogen', 500)) - .duration(20*90) - .EUt(GTValues.VHA[GTValues.HV]) - - event.recipes.gtceu.pyrolyse_oven('tfg:apt') - .itemInputs(Item.of('tfg:apt_gem', 1)) - .itemOutputs(Item.of('tfg:tungsten_oxide_dust', 3)) - .outputFluids(Fluid.of('gtceu:ammonia', 10000)) - .duration(20*36) - .EUt(GTValues.VA[GTValues.EV]) - .circuit(1) - - event.recipes.gtceu.pyrolyse_oven('tfg:apt_nitrogen') - .itemInputs(Item.of('tfg:apt_gem', 1)) - .inputFluids(Fluid.of('gtceu:nitrogen', 1000)) - .itemOutputs(Item.of('tfg:tungsten_oxide_dust', 3)) - .outputFluids(Fluid.of('gtceu:ammonia', 10000)) - .duration(20*18) - .EUt(GTValues.VA[GTValues.EV]) - .circuit(2) - - event.recipes.gtceu.arc_furnace('tfg:tungsten_apt') - .itemInputs(Item.of('tfg:tungsten_oxide_dust', 1)) - .inputFluids(Fluid.of('gtceu:hydrogen', 1000)) - .itemOutputs(Item.of('gtceu:tungsten_dust', 1)) - .duration(20*2.8) - .EUt(GTValues.VA[GTValues.EV]) - - - // New Alloys - - event.recipes.gtceu.mixer('tfg:ostrum_iodide') - .itemInputs('1x #forge:dusts/iodine', '2x #forge:dusts/ostrum') - .itemOutputs('3x #forge:dusts/ostrum_iodide') - .duration(20 * 12) - .circuit(1) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.mixer('tfg:tungsten_bismuth_oxide_composite') - .itemInputs('2x #forge:dusts/bismuth', 'gtceu:tungsten_dust') - .inputFluids(Fluid.of('gtceu:oxygen', 3000)) - .itemOutputs('3x tfg:tungsten_bismuth_oxide_composite_dust') - .duration(20 * 12) - .EUt(GTValues.VA[GTValues.EV]) - - // Handcrafted artisanal concrete - - event.recipes.firmalife.mixing_bowl() - .ingredients(['#tfg:stone_dusts', '#tfg:stone_dusts', '#forge:dusts/marble', '#forge:dusts/gypsum'], Fluid.of('minecraft:water', 1000)) - .outputFluid(Fluid.of('gtceu:concrete', 1000)) - - event.recipes.firmalife.mixing_bowl() - .ingredients(['#tfg:stone_dusts', '#tfg:stone_dusts', '#tfg:stone_dusts', '#forge:dusts/clay'], Fluid.of('minecraft:water', 500)) - .outputFluid(Fluid.of('gtceu:concrete', 500)) - - event.recipes.firmalife.mixing_bowl() - .ingredients(['#tfg:stone_dusts', '#tfg:stone_dusts', '#tfg:stone_dusts', '#forge:dusts/calcite', '#forge:dusts/gypsum'], Fluid.of('minecraft:water', 1000)) - .outputFluid(Fluid.of('gtceu:concrete', 1000)) - - event.recipes.tfc.barrel_sealed(1000) - .inputFluid(Fluid.of('gtceu:concrete', 144)) - .inputItem('gtceu:wood_frame') - .outputItem('gtceu:light_concrete') - .id('tfg:barrel/light_concrete') - - event.recipes.tfc.barrel_sealed(1000) - .inputFluid(Fluid.of('gtceu:concrete', 96)) - .inputItem('tfg:rebar_support') - .outputItem('tfg:reinforced_light_concrete_support') - .id('tfg:barrel/reinforced_light_concrete_support') - - event.recipes.tfc.barrel_sealed(500) - .inputItem('gtceu:light_concrete') - .inputFluid(Fluid.of('tfc:black_dye', 18)) - .outputItem('gtceu:dark_concrete') - .id('tfg:barrel/dark_concrete') - - event.recipes.tfc.barrel_sealed(500) - .inputItem('tfg:light_concrete_support') - .inputFluid(Fluid.of('tfc:black_dye', 10)) - .outputItem('tfg:dark_concrete_support') - .id('tfg:barrel/dark_concrete_support') - - event.recipes.tfc.barrel_sealed(500) - .inputItem('tfg:reinforced_light_concrete_support') - .inputFluid(Fluid.of('tfc:black_dye', 10)) - .outputItem('tfg:reinforced_dark_concrete_support') - .id('tfg:barrel/reinforced_dark_concrete_support') - - event.recipes.gtceu.alloy_smelter('glass_bottle') - .itemInputs('#forge:dusts/glass') - .itemOutputs('tfc:silica_glass_bottle') - .notConsumable('gtceu:bottle_casting_mold') - .EUt(2) - .duration(20 * 5) - .category(GTRecipeCategories.INGOT_MOLDING) - - // Change - - // The 9x buff for large boiler recipes above does not apply to this for some reason, so it gets 3x duration for an effective 1/3 reduction instead - - event.forEachRecipe({ id: /gtceu:large_boiler\/(minecraft_ladder|gtceu_wood_frame)/ }, recipe => { - var newDuration = recipe.get("duration") - recipe.set("duration", newDuration*3) - }) - - event.forEachRecipe({ id: /gtceu:steam_boiler\/(minecraft_ladder|gtceu_wood_frame)/ }, recipe => { - var newDuration = recipe.get("duration") - recipe.set("duration", newDuration/3) - }) + event.recipes.gtceu.assembler('tfg:ladder_from_lumber') + .itemInputs('#tfc:lumber') + .itemOutputs('8x minecraft:ladder') + .circuit(7) + .duration(40) + .EUt(4) } diff --git a/kubejs/server_scripts/gregtech/recipes.machines.js b/kubejs/server_scripts/gregtech/recipes.machines.js index 78e59b039..6603488ac 100644 --- a/kubejs/server_scripts/gregtech/recipes.machines.js +++ b/kubejs/server_scripts/gregtech/recipes.machines.js @@ -781,6 +781,22 @@ function registerGTCEuMachineRecipes(event) { B: '#forge:tools/hammers' }).addMaterialInfo().id('gtceu:shaped/steel_hull') + event.recipes.gtceu.shaped('gtceu:bronze_machine_casing', [ + ' A ', + 'ABA', + ' A ' + ], { + A: ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Bronze, 1), + B: '#forge:tools/hammers' + }).addMaterialInfo().id('gtceu:shaped/bronze_hull') + + event.recipes.gtceu.assembler('bronze_machine_casing') + .itemInputs('4x #forge:ingots/bronze') + .itemOutputs('gtceu:bronze_machine_casing') + .circuit(6) + .duration(2.5 * 20) + .EUt(GTValues.VHA[GTValues.LV]) + removeMaceratorRecipe(event, 'macerate_steam_input_hatch') event.recipes.gtceu.shaped('gtceu:steam_input_hatch', [ 'ACA', @@ -799,7 +815,7 @@ function registerGTCEuMachineRecipes(event) { 'ABA' ], { A: 'gtceu:bronze_plate', - B: ChemicalHelper.get(TagPrefix.gear, GTMaterials.Invar, 1), + B: ChemicalHelper.get(TagPrefix.gear, GTMaterials.Potin, 1), C: 'gtceu:hp_steam_macerator' }).addMaterialInfo().id('gtceu:shaped/steam_grinder') @@ -810,7 +826,7 @@ function registerGTCEuMachineRecipes(event) { 'ABA' ], { A: 'gtceu:bronze_plate', - B: 'gtceu:heatproof_machine_casing', + B: ChemicalHelper.get(TagPrefix.gear, GTMaterials.Invar, 1), C: 'gtceu:hp_steam_furnace' }).addMaterialInfo().id('gtceu:shaped/steam_oven') @@ -828,427 +844,55 @@ function registerGTCEuMachineRecipes(event) { B: 'gtceu:steam_machine_casing' }).addMaterialInfo().id('gtceu:shaped/steam_output_bus') - //#region Chipboard Composite - - event.recipes.gtceu.mixer('gtceu:chipboard_composite_wax') - .itemInputs('2x #tfg:wood_dusts', - '1x #forge:wax') - .itemOutputs('2x tfg:chipboard_composite') - .duration(100) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.mixer('gtceu:chipboard_composite_resin') - .itemInputs('4x #tfg:wood_dusts', - '1x gtceu:sticky_resin') - .itemOutputs('4x tfg:chipboard_composite') - .duration(100) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.mixer('gtceu:chipboard_composite_glue') - .itemInputs('2x #tfg:wood_dusts', - '1x tfc:glue') - .itemOutputs('2x tfg:chipboard_composite') - .duration(100) - .EUt(GTValues.VA[GTValues.LV]) - - - event.recipes.gtceu.mixer('gtceu:chipboard_composite_fluid_glue') - .itemInputs('1x #tfg:wood_dusts') - .inputFluids(Fluid.of('gtceu:glue', 25)) - .itemOutputs('1x tfg:chipboard_composite') - .duration(10) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.compressor('gtceu:wood_mdf') - .itemInputs('1x tfg:chipboard_composite') - .itemOutputs('gtceu:wood_plate') - .duration(200) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.chemical_bath('gtceu:treated_chipboard_composite') - .itemInputs('1x tfg:chipboard_composite') - .inputFluids(Fluid.of('gtceu:creosote', 50)) - .itemOutputs('tfg:treated_chipboard_composite') - .duration(100) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.chemical_bath('gtceu:bath_high_density_treated_fiberboard') - .itemInputs('1x gtceu:wood_plate') - .inputFluids(Fluid.of('gtceu:creosote', 50)) - .itemOutputs('tfg:high_density_treated_fiberboard') - .duration(100) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.chemical_bath('gtceu:bath_treated_wood_dust') - .itemInputs('#tfg:wood_dusts') - .inputFluids(Fluid.of('gtceu:creosote', 50)) - .itemOutputs('gtceu:treated_wood_dust') - .duration(100) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.compressor('tfg:compressed_treated_chipboard_composite') - .itemInputs('tfg:treated_chipboard_composite') - .itemOutputs('tfg:high_density_treated_fiberboard') - .duration(200) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.assembler('tfg:resin_circuit_assembler') - .itemInputs('gtceu:wood_plate', '2x gtceu:sticky_resin') - .itemOutputs('gtceu:resin_circuit_board') - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.ULV]) - - //#region New Casings - - event.recipes.gtceu.assembler('basic_solar_casing') - .itemInputs('gtceu:steel_machine_casing', 'tfg:photo_cell_t1') - .itemOutputs('8x tfg:casings/machine_casing_blue_solar_panel') - .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) - .circuit(6) - .duration(2.5 * 20) - .EUt(16) - - event.recipes.gtceu.assembler('advanced_solar_casing') - .itemInputs('8x tfg:casings/machine_casing_blue_solar_panel', 'ad_astra:photovoltaic_etrium_cell') - .itemOutputs('8x tfg:casings/machine_casing_green_solar_panel') - .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) - .circuit(6) - .duration(2.5 * 20) - .EUt(16) - - event.recipes.gtceu.assembler('elite_solar_casing') - .itemInputs('8x tfg:casings/machine_casing_green_solar_panel', 'ad_astra:photovoltaic_vesnium_cell') - .itemOutputs('8x tfg:casings/machine_casing_red_solar_panel') - .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) - .circuit(6) - .duration(2.5 * 20) - .EUt(16) - - event.recipes.gtceu.assembler('iron_desh_casing') - .itemInputs(ChemicalHelper.get(TagPrefix.plate, GTMaterials.Steel, 6), 'gtceu:desh_frame') - .itemOutputs('2x tfg:casings/machine_casing_iron_desh') - .circuit(6) - .duration(2.5 * 20) - .EUt(16) - - event.recipes.gtceu.assembler('steel_machine_casing') - .itemInputs(ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 4)) - .itemOutputs('gtceu:steel_machine_casing') - .circuit(6) - .duration(2.5 * 20) - .EUt(16) - - event.recipes.gtceu.assembler('tfg:casings/machine_casing_stainless_evaporation') - .itemInputs('gtceu:clean_machine_casing', '4x gtceu:annealed_copper_double_wire') - .inputFluids(Fluid.of('gtceu:polyvinyl_chloride', 288)) - .itemOutputs('tfg:casings/machine_casing_stainless_evaporation') - .circuit(6) - .duration(2.5 * 20) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.assembler('tfg:casings/machine_casing_mars') - .itemInputs('gtceu:clean_machine_casing', '4x #forge:double_wires/kanthal') - .inputFluids(Fluid.of('gtceu:polybenzimidazole', 288)) - .itemOutputs('tfg:casings/machine_casing_mars') - .circuit(6) - .duration(2.5 * 20) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.assembler('gtceu:atomic_casing') - .itemInputs('4x #forge:dense_plates/lead', '2x #forge:plates/rtm_alloy', '#forge:frames/titanium') - .inputFluids(Fluid.of('gtceu:polyvinyl_butyral', 288)) - .itemOutputs('2x gtceu:atomic_casing') - .circuit(6) - .duration(2.5 * 20) - .EUt(GTValues.VA[GTValues.HV]) - - //#endregion - - //#region Large Solar Panel - - event.shaped( - 'gtceu:large_solar_panel', - ['WSW', 'TZT', 'WUW'], - { - S: 'tfg:photo_cell_t1', - Z: 'ad_astra:solar_panel', - W: '#gtceu:circuits/ev', - U: '#forge:gears/rocket_alloy_t1', - T: '#forge:gears/desh' - } - ).id('gtceu:shaped/large_solar_panel') - - event.shaped( - 'gtceu:large_solar_panel_tier2', - ['WSW', 'TZT', 'WUW'], - { - S: 'ad_astra:photovoltaic_etrium_cell', - Z: 'gtceu:large_solar_panel', - W: '#gtceu:circuits/iv', - U: '#forge:gears/rocket_alloy_t1', - T: '#forge:gears/desh' - } - ).id('gtceu:shaped/large_solar_panel_tier2') - - event.shaped( - 'gtceu:large_solar_panel_tier3', - ['WSW', 'TZT', 'WUW'], - { - S: 'ad_astra:photovoltaic_vesnium_cell', - Z: 'gtceu:large_solar_panel_tier2', - W: '#gtceu:circuits/luv', - U: '#forge:gears/rocket_alloy_t1', - T: '#forge:gears/desh' - } - ).id('gtceu:shaped/large_solar_panel_tier3') - - event.recipes.gtceu.chemical_reactor('advanced_photovoltaic_cell') - .itemInputs('8x tfg:photo_cell_t1', - '6x #forge:dusts/vanadium_gallium', - '#forge:insulation_t2/sheet') - .inputFluids(Fluid.of('gtceu:helium_3', 1000)) - .itemOutputs('8x ad_astra:photovoltaic_etrium_cell') - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.chemical_reactor('expert_photovoltaic_cell') - .itemInputs('8x ad_astra:photovoltaic_etrium_cell', - '6x gtceu:energium_dust', - '#forge:insulation_t3/sheet') - .inputFluids(Fluid.of('tfg:cryogenized_fluix', 1000)) - .itemOutputs('8x ad_astra:photovoltaic_vesnium_cell') - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.IV]) - - // LSP Generating recipes - - // Solar T1 - - event.recipes.gtceu.large_solar_panel('solar_panel_t1_emergency') - .chancedInput('tfg:photo_cell_t1', 100, 0) - .duration(20 * 20) - .daytime(false) - .dimension('ad_astra:moon') - .EUt(-((GTValues.V[GTValues.HV])), 2) - .circuit(1) - - event.recipes.gtceu.large_solar_panel('solar_panel_t1') - .notConsumable('tfg:photo_cell_t1') - .perTick(true) - .chancedFluidInput('tfg:compressed_trimix_3 4', 5000, 0) - .perTick(false) - .duration(20 * 20) - .daytime(false) - .dimension('ad_astra:moon') - .EUt(-(GTValues.V[GTValues.EV]), 2) - .circuit(2) - - // Solar T2 - - event.recipes.gtceu.large_solar_panel_tier2('solar_panel_t2_emergency') - .chancedInput('ad_astra:photovoltaic_etrium_cell', 100, 0) - .duration(20 * 20) - .daytime(false) - .dimension('ad_astra:moon') - .EUt(-(GTValues.V[GTValues.EV]), 2) - .circuit(1) - - event.recipes.gtceu.large_solar_panel_tier2('solar_panel_t2_strong') - .notConsumable('ad_astra:photovoltaic_etrium_cell') - .perTick(true) - .chancedFluidInput('tfg:solar_coolant 10', 5000, 0) - .inputFluids('tfg:cryogenized_fluix 4') - .outputFluids('tfg:fluix 1') - .perTick(false) - .duration(20 * 20) - .daytime(false) - .dimension('ad_astra:moon') - .EUt(-(GTValues.V[GTValues.IV]), 2) - .circuit(2) - - event.recipes.gtceu.large_solar_panel_tier2('solar_panel_t2_cheap') - .notConsumable('ad_astra:photovoltaic_etrium_cell') - .perTick(true) - .inputFluids('tfg:compressed_trimix_3 1') - .perTick(false) - .duration(20 * 20) - .daytime(false) - .dimension('ad_astra:moon') - .EUt(-(GTValues.V[GTValues.EV]), 2) - .circuit(3) - - // Solar T3 - - event.recipes.gtceu.large_solar_panel_tier3('solar_panel_t3_emergency') - .chancedInput('ad_astra:photovoltaic_vesnium_cell', 100, 0) - .duration(20 * 20) - .daytime(false) - .dimension('ad_astra:moon') - .EUt(-(GTValues.V[GTValues.IV]), 2) - .circuit(1) - - event.recipes.gtceu.large_solar_panel_tier3('solar_panel_t3_strong') - .notConsumable('ad_astra:photovoltaic_vesnium_cell') - .perTick(true) - .chancedFluidInput('tfg:solar_coolant_tier2 10', 5000, 0) - .inputFluids('tfg:cryogenized_fluix 4') - .outputFluids('tfg:fluix 1') - .perTick(false) - .duration(20 * 20) - .daytime(false) - .dimension('ad_astra:moon') - .EUt(-(GTValues.V[GTValues.LuV]), 2) - .circuit(2) - - event.recipes.gtceu.large_solar_panel_tier3('solar_panel_t3_cheap') - .notConsumable('ad_astra:photovoltaic_vesnium_cell') - .perTick(true) - .chancedFluidInput('tfg:solar_coolant 10', 5000, 0) - .inputFluids('tfg:cryogenized_fluix 4') - .outputFluids('tfg:fluix 1') - .perTick(false) - .duration(20 * 20) - .daytime(false) - .dimension('ad_astra:moon') - .EUt(-(GTValues.V[GTValues.IV]), 2) - .circuit(2) - - //#endregion - - //#region Mars Ore Line - - // Multiblock - - event.shaped('gtceu:ostrum_linear_accelerator', [ - 'USU', - 'WZW', - 'PTP' + // the recycling fix only works if the addMaterialInfo() is on the shaped recipe, NOT the assembler + removeMaceratorRecipe(event, 'macerate_palladium_substation') + event.recipes.gtceu.shaped('gtceu:palladium_substation', [ + 'AAA', + ' B ', + 'AAA' ], { - S: 'tfg:casings/machine_casing_vacuum_engine_intake', - Z: 'gtceu:iv_machine_hull', - W: '#gtceu:circuits/iv', - U: '#forge:double_plates/stellite_100', - T: '#forge:single_cables/platinum', - P: 'gtceu:iv_electric_pump' - } - ).id('gtceu:shaped/ostrum_linear_accelerator') + A: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Palladium, 1), + B: ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.Ultimet, 1) + }).addMaterialInfo().id('tfg:shaped/casing_palladium_substation') - event.recipes.gtceu.assembler('tfg:ostrum_harvester') + event.recipes.gtceu.assembler('casing_palladium_substation') .itemInputs( - '1x gtceu:ev_machine_hull', - '4x #gtceu:circuits/ev', - '4x gtceu:ev_electric_motor', - '4x #forge:rotors/black_steel', - '4x gtceu:ev_electric_pump', - '4x #forge:gears/desh') - .itemOutputs('gtceu:ostrum_harvester') - .duration(400) - .EUt(GTValues.VA[GTValues.EV]) - .circuit(2) + ChemicalHelper.get(TagPrefix.plate, GTMaterials.Palladium, 6), + ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.Ultimet, 1) + ) + .itemOutputs('gtceu:palladium_substation') + .circuit(6) + .duration(20 * 2.5) + .EUt(GTValues.VHA[GTValues.LV]) - event.recipes.gtceu.assembler('tfg:moon_dust_harvester') - .itemInputs( - '1x gtceu:hv_machine_hull', - '4x #gtceu:circuits/hv', - '4x gtceu:hv_electric_motor', - '4x #forge:rotors/titanium', - '4x gtceu:hv_electric_pump', - '4x #forge:gears/rocket_alloy_t1') - .itemOutputs('gtceu:moon_dust_harvester') - .duration(400) - .EUt(GTValues.VA[GTValues.HV]) - .circuit(2) - - // Vacuum Intake - - event.shaped('tfg:casings/machine_casing_vacuum_engine_intake', [ - 'USU', - 'WZW', - 'UTU' + + removeMaceratorRecipe(event, 'macerate_power_substation') + event.recipes.gtceu.shaped('gtceu:power_substation', [ + 'ABA', + 'CDC', + 'ABA' ], { - S: '#forge:tools/hammers', - T: '#forge:tools/wrenches', - W: '#forge:rotors/ultimet', - U: 'gtceu:ultimet_normal_item_pipe', - Z: 'gtceu:inert_machine_casing' - }).id('tfg:shaped/casing_machine_casing_vacuum_engine_intake') + A: 'gtceu:lapotron_crystal', + B: 'gtceu:mpic_chip', + C: '#gtceu:circuits/ev', + D: 'gtceu:palladium_substation' + }).addMaterialInfo().id('gtceu:shaped/power_substation') - event.recipes.gtceu.assembler('tfg:casings/machine_casing_vacuum_engine_intake') - .itemInputs( - '2x #forge:rotors/ultimet', - '4x gtceu:ultimet_normal_item_pipe', - '1x gtceu:inert_machine_casing') - .itemOutputs('tfg:casings/machine_casing_vacuum_engine_intake') - .duration(50) - .EUt(GTValues.VH[GTValues.LV]) - .circuit(2) - - // Stainless Evaporation Tower - - event.recipes.gtceu.shaped('tfg:evaporation_tower', [ - 'TUT', - 'WZW', - 'TUT' + event.recipes.gtceu.shaped('2x gtceu:industrial_steam_casing', [ + 'ABA', + 'ACA', + 'ADA' ], { - T: '#gtceu:circuits/iv', - W: 'gtceu:ev_electric_pump', - U: '#forge:double_wires/nichrome', - Z: 'gtceu:ev_machine_hull' - }).addMaterialInfo().id('tfg:shaped/evaporation_tower') - - //#endregion - - //#region Nuclear Controler - - event.shaped('deafission:fission_reactor_mk1', [ - 'TUT', - 'WZW', - 'TUT' - ], { - T: 'gtceu:atomic_casing', - W: '#gtceu:circuits/ev', - U: 'gtceu:hv_field_generator', - Z: 'gtceu:ev_machine_hull' - } - ).id('tfg:shaped/fission_reactor_mk1') - - event.shaped('gtceu:nuclear_fuel_factory', [ - 'TUT', - 'WZW', - 'TBT' - ], { - T: 'gtceu:atomic_casing', - W: '#gtceu:circuits/ev', - U: 'gtceu:ev_emitter', - Z: 'gtceu:ev_machine_hull', - B: 'gtceu:ev_robot_arm' - } - ).id('tfg:shaped/nuclear_fuel_factory') - - event.shaped('gtceu:heat_exchanger', [ - 'TUT', - 'WZW', - 'GBG' - ], { - T: 'gtceu:high_temperature_smelting_casing', - W: '#gtceu:circuits/ev', - U: 'gtceu:ev_sensor', - Z: 'gtceu:ev_machine_hull', - B: 'gtceu:ev_fluid_regulator', - G: '#forge:gears/ostrum_iodide' - } - ).id('tfg:shaped/heat_exchanger') - - event.shaped('tfg:nuclear_turbine', [ - 'CTC', - 'TZT', - 'BTB' - ], { - T: '#forge:gears/magnalium', - Z: 'gtceu:ev_machine_hull', - B: 'gtceu:ultimet_large_item_pipe', - C: '#gtceu:circuits/ev' - } - ).id('tfg:shaped/nuclear_turbine') + A: '#forge:plates/brass', + B: '#forge:tools/hammers', + C: '#forge:frames/steel', + D: '#forge:tools/wrenches' + }).addMaterialInfo().id('tfg:shaped/industrial_steam_casing') + event.recipes.gtceu.assembler('industrial_steam_casing') + .itemInputs('6x #forge:plates/brass', '#forge:frames/steel') + .itemOutputs('2x gtceu:industrial_steam_casing') + .circuit(6) + .duration(2.5 * 20) + .EUt(GTValues.VHA[GTValues.LV]) } diff --git a/kubejs/server_scripts/gregtech/recipes.materials.js b/kubejs/server_scripts/gregtech/recipes.materials.js index f23616bcc..ea95f9635 100644 --- a/kubejs/server_scripts/gregtech/recipes.materials.js +++ b/kubejs/server_scripts/gregtech/recipes.materials.js @@ -77,11 +77,11 @@ function registerGTCEUMetalRecipes(event) { event.remove({ mod: 'gtceu', type: 'minecraft:crafting_shaped', output: toolHeadItem }) if (material.hasProperty(PropertyKey.INGOT)) { - const ingotItem = ChemicalHelper.get(TagPrefix.ingot, material, 1) + const ingotItem = ChemicalHelper.get(TagPrefix.ingot, material, 1); if (ingotItem.isEmpty() || ingotItem.hasTag('c:hidden_from_recipe_viewers')) return - const materialAmount = Math.floor(headTagPrefix.materialAmount() / GTValues.M) === 1 ? 1 : 2; + const materialAmount = Math.floor(headTagPrefix.materialAmount() / GTValues.M); event.recipes.gtceu.extruder(`tfg:extrude_${material.getName()}_ingot_to_${tagPrefixName}`) .itemInputs(ingotItem.copyWithCount(materialAmount)) @@ -90,17 +90,14 @@ function registerGTCEUMetalRecipes(event) { .duration(material.getMass() * 6) .EUt(GTValues.VA[GTValues.LV]) - let ingotArray = []; - for (let i = 0; i < materialAmount; i++) - ingotArray.push(ingotItem) + let input_array = []; + for (let i = 0; i < materialAmount; i++) { + input_array.push(ingotItem); + } - event.custom({ - type: 'vintageimprovements:curving', - ingredients: ingotArray, - itemAsHead: extruderMold, - results: [toolHeadItem], - processingTime: material.getMass() * 6 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/curving/${material.getName()}_ingot_to_${tagPrefixName}`) + event.recipes.vintageimprovements.curving(toolHeadItem, input_array) + .head(extruderMold) + .id(`tfg:vi/curving/${material.getName()}_ingot_to_${tagPrefixName}`) if (GTMaterials.Stone !== material) { removeMaceratorRecipe(event, `macerate_${material.getName()}_${tagPrefixName}`) @@ -128,12 +125,12 @@ function registerGTCEUMetalRecipes(event) { } else if (material.hasProperty(PropertyKey.GEM)) { - const gemItem = ChemicalHelper.get(TagPrefix.gem, material, 1) + const gemItem = ChemicalHelper.get(TagPrefix.gem, material, Math.floor(headTagPrefix.materialAmount() / GTValues.M)) if (gemItem.isEmpty()) return event.recipes.gtceu.laser_engraver(`tfg:engrave_${material.getName()}_gem_to_${tagPrefixName}`) - .itemInputs(gemItem.copyWithCount(Math.floor(headTagPrefix.materialAmount() / GTValues.M))) + .itemInputs(gemItem) .notConsumable(ChemicalHelper.get(TagPrefix.lens, GTMaterials.Glass, 1)) .circuit(circuitMeta) .itemOutputs(toolHeadItem) @@ -187,6 +184,7 @@ function registerGTCEUMetalRecipes(event) { if (material.hasFlag(MaterialFlags.GENERATE_PLATE) && material !== GTMaterials.Wood && material !== GTMaterials.TreatedWood + && material !== GTMaterials.Stone && !material.hasProperty(PropertyKey.POLYMER)) { const plateStack = ChemicalHelper.get(TagPrefix.plate, material, 1) @@ -717,15 +715,12 @@ function registerGTCEUMetalRecipes(event) { // Centrifuging let byproductMaterial = material.getProperty(PropertyKey.ORE).getOreByProduct(0, material); - let byproductItem = ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1).toJson() - byproductItem.add("chance", 0.111); - event.custom({ - type: 'vintageimprovements:centrifugation', - ingredients: [impureDustItem], - results: [dustItem, byproductItem], - processingTime: material.getMass() * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/centrifuge/${material.getName()}_dust_from_impure`) + event.recipes.vintageimprovements.centrifugation( + [dustItem, Item.of(ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1)).withChance(0.111)], + impureDustItem) + .processingTime(material.getMass() * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/centrifuge/${material.getName()}_dust_from_impure`) // Dropping in water event.custom({ @@ -763,15 +758,12 @@ function registerGTCEUMetalRecipes(event) { // Centrifuging let byproductMaterial = material.getProperty(PropertyKey.ORE).getOreByProduct(1, material); - let byproductItem = ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1).toJson() - byproductItem.add("chance", 0.111); - event.custom({ - type: 'vintageimprovements:centrifugation', - ingredients: [pureDust], - results: [dustItem, byproductItem], - processingTime: material.getMass() * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/centrifuge/${material.getName()}_dust_from_pure`) + event.recipes.vintageimprovements.centrifugation( + [dustItem, Item.of(ChemicalHelper.get(TagPrefix.dust, byproductMaterial, 1)).withChance(0.111)], + pureDust) + .processingTime(material.getMass() * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/centrifuge/${material.getName()}_dust_from_pure`) // Dropping in water event.custom({ @@ -800,7 +792,7 @@ function registerGTCEUMetalRecipes(event) { let smallDust = ChemicalHelper.get(TagPrefix.dustSmall, material, 1) event.recipes.tfc.damage_inputs_shapeless_crafting(event.recipes.minecraft.crafting_shapeless( - `gtceu:${material.getName()}_bud_indicator`, [gem, '#tfc:chisels'])) + ChemicalHelper.get(TFGTagPrefix.budIndicator, material, 1), [gem, '#tfc:chisels'])) .id(`shapeless/${material.getName()}_bud_indicator`) event.shaped(smallDust, @@ -815,6 +807,9 @@ function registerGTCEUMetalRecipes(event) { event.recipes.greate.pressing(ChemicalHelper.get(TagPrefix.gem, material, amount), ChemicalHelper.get(TagPrefix.block, material, 1)) .recipeTier(0) .id(`greate:pressing/unpacking_${material.getName()}_block`) + + event.recipes.tfc.quern(ChemicalHelper.get(TagPrefix.dust, material, 1), ChemicalHelper.get(TagPrefix.gem, material, 1)) + .id(`tfg:quern/${material.getName()}_gem_to_dust`) } /** @@ -896,7 +891,7 @@ function registerGTCEUMetalRecipes(event) { event.recipes.gtceu.assembler(`tfg:${material.getName()}_lamp_from_liquid`) .itemInputs(unfinishedLampStack) - .inputFluids(Fluid.of(GTMaterials.Glass.getFluid(), 576)) + .inputFluids(Fluid.of(GTMaterials.Glass.getFluid(), 144)) .itemOutputs(finishedLampStack) .duration(material.getMass() * 7) .circuit(13) @@ -1083,21 +1078,6 @@ function registerGTCEUMetalRecipes(event) { .EUt(GTValues.VA[GTValues.ULV]) } - /** - * @param {com.gregtechceu.gtceu.api.data.chemical.material.Material_} material - */ - const processBars = (material) => { - const barsStack = ChemicalHelper.get(TFGTagPrefix.bars, material, 4) - const ingotStack = ChemicalHelper.get(TagPrefix.ingot, material, 1) - if (barsStack === null) return; - - event.recipes.gtceu.cutter(`tfg:${material.getName()}_bars`) - .itemInputs(ingotStack) - .itemOutputs(barsStack) - .duration(100) - .EUt(GTValues.VA[GTValues.LV]) - } - /** * @param {com.gregtechceu.gtceu.api.data.chemical.material.Material_} material */ @@ -1115,13 +1095,10 @@ function registerGTCEUMetalRecipes(event) { .EUt(GTValues.VA[isLowTier ? GTValues.LV : GTValues.MV]) if (isLowTier) { - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [doublePlateItem], - results: [buzzsawBladeItem], - speed_limits: 0, - processingTime: material.getMass() * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/lathe/${material.getName()}_buzzsaw`) + event.recipes.vintageimprovements.polishing(buzzsawBladeItem, doublePlateItem) + .speedLimits(0) + .processingTime(material.getMass() * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/${material.getName()}_buzzsaw`) } removeMaceratorRecipe(event, `macerate_${material.getName()}_buzz_saw_blade`) @@ -1184,13 +1161,15 @@ function registerGTCEUMetalRecipes(event) { removeMaceratorRecipe(event, `macerate_iv_${material.getName()}_wirecutter`) event.remove({ id: `gtceu:arc_furnace/arc_iv_${material.getName()}_wirecutter` }) } + + const $GreateMaterials = Java.loadClass("electrolyte.greate.registry.GreateMaterials") forEachMaterial(material => { // greate moment - if (material === GTMaterials.get("andesite_alloy") - || material === GTMaterials.get("refined_radiance") - || material === GTMaterials.get("shadow_steel") - || material === GTMaterials.get("chromatic_compound") + if (material === $GreateMaterials.AndesiteAlloy + || material === $GreateMaterials.RefinedRadiance + || material === $GreateMaterials.ShadowSteel + || material === $GreateMaterials.ChromaticCompound || material === GTMaterials.DamascusSteel) { return; } @@ -1243,7 +1222,6 @@ function registerGTCEUMetalRecipes(event) { processTrapdoor(material) processChain(material) processBell(material) - processBars(material) processBuzzsawBlade(material) event.remove({ id: `gtceu:shaped/spring_${material.getName()}` }) diff --git a/kubejs/server_scripts/gregtech/recipes.recycling.js b/kubejs/server_scripts/gregtech/recipes.recycling.js index 2e398078b..e8981633c 100644 --- a/kubejs/server_scripts/gregtech/recipes.recycling.js +++ b/kubejs/server_scripts/gregtech/recipes.recycling.js @@ -126,39 +126,105 @@ function registerGTCEURecyclingRecipes(event) { // Iron Door - event.recipes.gtceu.macerator('gtceu:macerate_iron_door') - .itemInputs('minecraft:iron_door') - .itemOutputs('2x #forge:dusts/wrought_iron') - .duration(GTMaterials.WroughtIron.getMass() * 2) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) + TFGHelpers.registerMaterialInfo('minecraft:iron_door', { 'iron': 2 }) - event.recipes.gtceu.arc_furnace('gtceu:arc_iron_door') - .itemInputs('minecraft:iron_door') - .itemOutputs('2x #forge:ingots/wrought_iron') - .duration(GTMaterials.WroughtIron.getMass() * 2) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - .EUt(GTValues.VA[GTValues.LV]) + // #region Fix TFC hanging sign metal dupe for Macerator and Arc Furnace + const SIGN_METALS = [ + GTMaterials.Copper, + GTMaterials.Bronze, + GTMaterials.BlackBronze, + GTMaterials.BismuthBronze, + GTMaterials.WroughtIron, + GTMaterials.Steel, + GTMaterials.BlackSteel, + GTMaterials.RedSteel, + GTMaterials.BlueSteel + ]; - // Clean Foil pack - event.recipes.gtceu.macerator('gtceu:macerator/recycling/clean_foil_pack') - .itemInputs('tfg:clean_foil_pack') - .itemOutputs( - ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Aluminium, 1), - ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Polyethylene, 1) - ) - .duration(GTMaterials.Aluminium.getMass() * 1) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .EUt(GTValues.VA[GTValues.ULV]) + SIGN_METALS.forEach(metal => { + // Arc furnace + global.TFC_WOOD_TYPES.forEach(wood => { + event.remove(`gtceu:arc_furnace/arc_wood/hanging_sign/${metal.getName()}/${wood}`) + event.recipes.gtceu.arc_furnace(`gtceu:arc_furnace/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) + .itemInputs(`tfc:wood/hanging_sign/${metal.getName()}/${wood}`) + .itemOutputs('gtceu:tiny_ash_dust') + .chancedOutput(ChemicalHelper.get(TagPrefix.nugget, metal, 1), 3750, 0) + .inputFluids(Fluid.of('gtceu:oxygen', 12)) + .duration(12) + .EUt(30) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + }) - event.recipes.gtceu.arc_furnace('gtceu:arc_furnace/recycling/clean_foil_pack') - .itemInputs('tfg:clean_foil_pack') - .itemOutputs( - ChemicalHelper.get(TagPrefix.nugget, GTMaterials.Aluminium, 2), - ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Ash, 1) - ) - .duration(GTMaterials.Aluminium.getMass() * 1) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - .EUt(GTValues.VA[GTValues.LV]) + global.AFC_WOOD_TYPES.forEach(wood => { + event.recipes.gtceu.arc_furnace(`gtceu:arc_furnace/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) + .itemInputs(`afc:wood/hanging_sign/${metal.getName()}/${wood}`) + .itemOutputs('gtceu:tiny_ash_dust') + .chancedOutput(ChemicalHelper.get(TagPrefix.nugget, metal, 1), 3750, 0) + .inputFluids(Fluid.of('gtceu:oxygen', 12)) + .duration(12) + .EUt(30) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + }) + + // Macerator + global.TFC_HARDWOOD_TYPES.forEach(wood => { + removeMaceratorRecipe(event, `macerate_wood/hanging_sign/${metal.getName()}/${wood}`) + event.recipes.gtceu.macerator(`gtceu:macerator/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) + .itemInputs(`tfc:wood/hanging_sign/${metal.getName()}/${wood}`) + .itemOutputs('gtceu:hardwood_dust') + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, metal, 1), 3750, 0) + .duration(108) + .EUt(8) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + }) + + global.TFC_SOFTWOOD_TYPES.forEach(wood => { + removeMaceratorRecipe(event, `macerate_wood/hanging_sign/${metal.getName()}/${wood}`) + event.recipes.gtceu.macerator(`gtceu:macerator/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) + .itemInputs(`tfc:wood/hanging_sign/${metal.getName()}/${wood}`) + .itemOutputs('gtceu:wood_dust') + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, metal, 1), 3750, 0) + .duration(108) + .EUt(8) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + }) + + global.AFC_HARDWOOD_TYPES.forEach(wood => { + event.recipes.gtceu.macerator(`gtceu:macerator/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) + .itemInputs(`afc:wood/hanging_sign/${metal.getName()}/${wood}`) + .itemOutputs('gtceu:hardwood_dust') + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, metal, 1), 3750, 0) + .duration(108) + .EUt(8) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + }) + + global.AFC_SOFTWOOD_TYPES.forEach(wood => { + event.recipes.gtceu.macerator(`gtceu:macerator/macerate_wood/hanging_sign/${metal.getName()}/${wood}`) + .itemInputs(`afc:wood/hanging_sign/${metal.getName()}/${wood}`) + .itemOutputs('gtceu:wood_dust') + .chancedOutput(ChemicalHelper.get(TagPrefix.dustTiny, metal, 1), 3750, 0) + .duration(108) + .EUt(8) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + }) + }) + // #endregion + + //#region support recycling + event.recipes.gtceu.macerator(`hardwood_support_to_dust`) + .itemInputs('#tfg:hardwood_supports') + .itemOutputs('gtceu:hardwood_dust') + .duration(150) + .EUt(2) + .category(GTRecipeCategories.MACERATOR_RECYCLING); + + event.recipes.gtceu.macerator(`softwood_support_to_dust`) + .itemInputs('#tfg:softwood_supports') + .itemOutputs('gtceu:wood_dust') + .duration(150) + .EUt(2) + .category(GTRecipeCategories.MACERATOR_RECYCLING); + //#endregion } \ No newline at end of file diff --git a/kubejs/server_scripts/gregtech/recipes.removes.js b/kubejs/server_scripts/gregtech/recipes.removes.js index 7102218b7..3cf084f57 100644 --- a/kubejs/server_scripts/gregtech/recipes.removes.js +++ b/kubejs/server_scripts/gregtech/recipes.removes.js @@ -34,6 +34,10 @@ function removeGTCEURecipes(event) { removeMaceratorRecipe(event, 'macerate_diorite') removeMaceratorRecipe(event, 'macerate_cobblestone_slab') removeMaceratorRecipe(event, 'macerate_andesite') + event.remove({ id: 'gtceu:shaped/stone_hammer' }) + event.remove({ id: 'gtceu:mixer/mossy_cobblestone_from_moss_block' }) + event.remove({ id: 'greate:mixing/integration/gtceu/mixer/mossy_cobblestone_from_moss_block' }) + event.remove({ id: 'greate:mixing/integration/gtceu/mixer/mossy_cobblestone_from_vine' }) //#endregion @@ -51,6 +55,9 @@ function removeGTCEURecipes(event) { removeMaceratorRecipe(event, 'macerate_cobblestone') removeMaceratorRecipe(event, 'gravel_to_flint') removeMaceratorRecipe(event, 'macerate_furnace') + removeCutterRecipe(event, 'cut_stone_block_to_plate') + removeCutterRecipe(event, 'cut_stone_block_to_plate_water') + removeCutterRecipe(event, 'cut_stone_block_to_plate_distilled_water') //#endregion @@ -175,6 +182,39 @@ function removeGTCEURecipes(event) { // #endregion + // #region Reconstituted Stone + + event.remove({ id: 'gtceu:shaped/cobblestone_wall_saw' }) + event.remove({ id: 'gtceu:shaped/mossy_cobblestone_wall_saw' }) + event.remove({ id: 'gtceu:shaped/stone_brick_stair_saw' }) + event.remove({ id: 'gtceu:shaped/stone_brick_wall_saw' }) + event.remove({ id: 'gtceu:shaped/mossy_stone_brick_stair_saw' }) + event.remove({ id: 'gtceu:shaped/mossy_stone_brick_slab_saw' }) + event.remove({ id: 'gtceu:shaped/mossy_stone_brick_wall_saw' }) + + // #endregion + + // #region Cut Copper + + event.remove({ id: 'gtceu:shaped/cut_copper_stair_saw' }) + event.remove({ id: 'gtceu:shaped/cut_copper_slab_saw' }) + event.remove({ id: 'gtceu:shaped/exposed_cut_copper_stair_saw' }) + event.remove({ id: 'gtceu:shaped/exposed_cut_copper_slab_saw' }) + event.remove({ id: 'gtceu:shaped/weathered_cut_copper_stair_saw' }) + event.remove({ id: 'gtceu:shaped/weathered_cut_copper_slab_saw' }) + event.remove({ id: 'gtceu:shaped/oxidized_cut_copper_stair_saw' }) + event.remove({ id: 'gtceu:shaped/oxidized_cut_copper_slab_saw' }) + event.remove({ id: 'gtceu:shaped/waxed_cut_copper_stair_saw' }) + event.remove({ id: 'gtceu:shaped/waxed_cut_copper_slab_saw' }) + event.remove({ id: 'gtceu:shaped/waxed_exposed_cut_copper_stair_saw' }) + event.remove({ id: 'gtceu:shaped/waxed_exposed_cut_copper_slab_saw' }) + event.remove({ id: 'gtceu:shaped/waxed_weathered_cut_copper_stair_saw' }) + event.remove({ id: 'gtceu:shaped/waxed_weathered_cut_copper_slab_saw' }) + event.remove({ id: 'gtceu:shaped/waxed_oxidized_cut_copper_stair_saw' }) + event.remove({ id: 'gtceu:shaped/waxed_oxidized_cut_copper_slab_saw' }) + + // #endregion + // #region Plant Ball event.remove({ id: 'gtceu:compressor/plant_ball_from_wheat' }) @@ -423,6 +463,8 @@ function removeGTCEURecipes(event) { event.remove({ id: 'gtceu:shaped/nether_bricks_wall_saw' }) removeMaceratorRecipe(event, 'macerate_nether_brick_stairs') removeMaceratorRecipe(event, 'macerate_nether_brick_slab') + removeMaceratorRecipe(event, 'macerate_nether_bricks') + removeMaceratorRecipe(event, 'macerate_chiseled_nether_bricks') //#endregion @@ -496,6 +538,9 @@ function removeGTCEURecipes(event) { //#endregion + // Iron nugget saw recipe + event.remove({ id: 'gtceu:shapeless/nugget_disassembling_iron'}) + // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² связанных с Primitive Blast Furnace event.remove({ id: 'gtceu:arc_furnace/arc_primitive_blast_furnace' }) removeMaceratorRecipe(event, 'macerate_primitive_blast_furnace') @@ -539,9 +584,32 @@ function removeGTCEURecipes(event) { event.remove({ id: 'gtceu:shaped/purpur_polished_hammer' }) event.remove({ id: 'gtceu:shaped/red_sandstone_polished_hammer' }) event.remove({ id: 'gtceu:shaped/nether_bricks_polished_hammer' }) + event.remove({ id: 'gtceu:shaped/stone_polish_hammer' }) + event.remove({ id: 'gtceu:assembler/assemble_stone_into_polished' }) + event.remove({ id: 'gtceu:forming_press/form_stone_brick_slab_into_pillar' }) event.remove({ id: 'gtceu:shaped_fluid_container/brick_from_water' }) + event.remove({ id: 'gtceu:shaped/stone_stair_saw' }) + event.remove({ id: 'gtceu:shaped/stone_slab_saw' }) + + event.remove({ id: 'gtceu:shaped/cobblestone_stair_saw' }) + event.remove({ id: 'gtceu:shaped/cobblestone_slab_saw' }) + event.remove({ id: 'gtceu:shaped/cobblestone_slab_wall' }) + + event.remove({ id: 'gtceu:shaped/mossy_cobblestone_stair_saw' }) + event.remove({ id: 'gtceu:shaped/mossy_cobblestone_slab_saw' }) + event.remove({ id: 'gtceu:shaped/mossy_cobblestone_slab_wall' }) + + event.remove({ id: 'gtceu:shaped/red_sandstone_stair_saw' }) + event.remove({ id: 'gtceu:shaped/red_sandstone_wall_saw' }) + event.remove({ id: 'gtceu:shaped/red_sandstone_polish_hammer' }) + + event.remove({ id: 'gtceu:shaped/smooth_red_sandstone_stair_saw' }) + event.remove({ id: 'gtceu:shaped/smooth_red_sandstone_slab_saw' }) + + event.remove({ id: 'gtceu:shaped/cut_red_sandstone_slab_saw' }) + // Gears event.remove({ id: 'gtceu:extruder/extrude_wood_ingot_to_small_gear' }) event.remove({ id: 'gtceu:alloy_smelter/alloy_smelt_wood_ingot_to_small_gear' }) @@ -633,6 +701,9 @@ function removeGTCEURecipes(event) { event.remove({ id: 'gtceu:assembler/spyglass' }) event.remove({ id: 'gtceu:assembler/assemble_purpur_into_stair' }) event.remove({ id: 'gtceu:assembler/stonecutter' }) + event.remove({ id: 'gtceu:assembler/cartography_table' }) + + event.remove({ id: 'gtceu:centrifuge/decomposition_centrifuging__blaze' }) event.remove({ id: 'gtceu:chemical_reactor/ghast_tear_separation' }) @@ -655,6 +726,9 @@ function removeGTCEURecipes(event) { removeMaceratorRecipe(event, 'macerate_wool') + removeMaceratorRecipe(event, 'macerate_enchanting_table') + event.remove({ id: 'gtceu:arc_furnace/arc_enchanting_table' }) + event.remove({ id: 'gtceu:gas_collector/nether_air' }) event.remove({ id: 'gtceu:gas_collector/ender_air' }) // TODO: uncomment with venus update @@ -664,6 +738,8 @@ function removeGTCEURecipes(event) { //event.remove({ id: 'gtceu:distillation_tower/distill_liquid_nether_air' }) event.remove({ id: 'gtceu:centrifuge/decomposition_centrifuging__fireclay' }) + event.remove({ id: 'gtceu:arc_furnace/arc_firebricks' }) + event.remove({ id: 'gtceu:macerator/macerate_firebricks' }) event.remove({ id: 'gtceu:centrifuge/decomposition_centrifuging__ender_eye' }) event.remove({ id: 'gtceu:smelting/sticky_resin_from_slime' }) @@ -697,6 +773,9 @@ function removeGTCEURecipes(event) { event.remove({ id: 'gtceu:laser_engraver/engrave_small_red_granite_bricks' }) event.remove({ id: 'gtceu:laser_engraver/engrave_square_red_granite_bricks' }) event.remove({ id: 'gtceu:laser_engraver/engrave_chiseled_red_granite' }) + event.remove({ id: 'gtceu:mixer/mossy_red_granite_cobblestone_from_moss_block' }) + event.remove({ id: 'greate:mixing/integration/gtceu/mixer/mossy_red_granite_cobblestone_from_moss_block' }) + event.remove({ id: 'greate:mixing/integration/gtceu/mixer/mossy_red_granite_cobblestone_from_vine' }) event.remove({ id: 'gtceu:lathe/stone_rod_from_cobblestone' }) @@ -788,6 +867,18 @@ function removeGTCEURecipes(event) { event.remove({ id: 'gtceu:ore_washer/wash_plutonium_pure_dust_to_dust' }) event.remove({ id: 'gtceu:ore_washer/wash_plutonium_dirty_dust_to_dust' }) event.remove({ id: 'gtceu:forge_hammer/hammer_plutonium_refined_ore_to_dust' }) + + + event.remove({ id: 'gtceu:electrolyzer/decomposition_electrolyzing_chromatic_compound' }); + + event.remove({ id: 'gtceu:chemical_reactor/soda_ash_from_carbon_dioxide' }) + event.remove({ id: 'gtceu:large_chemical_reactor/soda_ash_from_carbon_dioxide' }) + + event.remove({ id: 'gtceu:macerator/macerate_chiseled_sandstone' }) + event.remove({ id: 'gtceu:macerator/macerate_sandstone_wall' }) + event.remove({ id: 'gtceu:macerator/macerate_smooth_sandstone' }) + event.remove({ id: 'gtceu:macerator/macerate_sandstone' }) + event.remove({ id: 'gtceu:macerator/macerate_cut_sandstone' }) } function removeMaceratorRecipe(event, id) { diff --git a/kubejs/server_scripts/gregtech/recipes.tfcmetals.js b/kubejs/server_scripts/gregtech/recipes.tfcmetals.js deleted file mode 100644 index 8d78aad7f..000000000 --- a/kubejs/server_scripts/gregtech/recipes.tfcmetals.js +++ /dev/null @@ -1,109 +0,0 @@ -// priority: 0 -"use strict"; - -/** - * @param {Internal.RecipesEventJS} event - */ -function registerGTCEuTFCMetalsRecipes(event) { - //#region LV hull - - event.replaceInput('gtceu:shaped/lv_machine_hull', '#forge:plates/wrought_iron', '#forge:plates/red_steel') - - //#endregion - - //#region make colored steel a bit easier to compensate - - event.recipes.gtceu.arc_furnace('tfg:black_steel_dust_to_ingot') - .itemInputs('gtceu:black_steel_dust') - .itemOutputs('tfc:metal/ingot/black_steel') - .inputFluids(Fluid.of('gtceu:oxygen', 72)) - .duration(500) - .EUt(24) - - event.recipes.gtceu.arc_furnace('tfg:red_steel_dust_to_ingot') - .itemInputs('gtceu:red_steel_dust') - .itemOutputs('tfc:metal/ingot/red_steel') - .inputFluids(Fluid.of('gtceu:oxygen', 72)) - .duration(700) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.arc_furnace('tfg:blue_steel_dust_to_ingot') - .itemInputs('gtceu:blue_steel_dust') - .itemOutputs('tfc:metal/ingot/blue_steel') - .inputFluids(Fluid.of('gtceu:oxygen', 72)) - .duration(700) - .EUt(GTValues.VA[GTValues.LV]) - - //#endregion - - //#region add regular furnace recipes for other tfc alloys - - event.remove({ id: 'gtceu:electric_blast_furnace/blast_bismuth_bronze' }) - event.remove({ id: 'gtceu:electric_blast_furnace/blast_bismuth_bronze_gas' }) - event.remove({ id: 'gtceu:electric_blast_furnace/blast_black_bronze' }) - event.remove({ id: 'gtceu:electric_blast_furnace/blast_black_bronze_gas' }) - event.remove({ id: 'gtceu:vacuum_freezer/cool_hot_black_bronze_ingot' }) - event.remove({ id: 'gtceu:electric_blast_furnace/blast_sterling_silver' }) - event.remove({ id: 'gtceu:electric_blast_furnace/blast_sterling_silver_gas' }) - event.remove({ id: 'gtceu:electric_blast_furnace/blast_rose_gold' }) - event.remove({ id: 'gtceu:electric_blast_furnace/blast_rose_gold_gas' }) - - event.smelting('gtceu:bismuth_bronze_ingot', '#forge:dusts/bismuth_bronze') - .id('tfg:smelting/bismuth_bronze_ingot') - event.smelting('gtceu:black_bronze_ingot', '#forge:dusts/black_bronze') - .id('tfg:smelting/black_bronze_ingot') - event.smelting('gtceu:sterling_silver_ingot', '#forge:dusts/sterling_silver') - .id('tfg:smelting/sterling_silver_ingot') - event.smelting('gtceu:rose_gold_ingot', '#forge:dusts/rose_gold') - .id('tfg:smelting/rose_gold_ingot') - - //#endregion - - // red alloy, because crucible always makes 4+1=5 - - event.recipes.gtceu.alloy_blast_smelter('red_alloy') - .itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone') - .outputFluids(Fluid.of('gtceu:red_alloy', 720)) - .circuit(5) - .duration(75) - .EUt(GTValues.VA[GTValues.LV]) - - event.remove({ id: 'gtceu:mixer/red_alloy' }) - // incorrect on purpose to prevent a greate duplicate recipe (the id becomes mixer/mixer/red_alloy) - event.recipes.gtceu.mixer('gtceu:mixer/red_alloy') - .itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone') - .itemOutputs('5x gtceu:red_alloy_dust') - .circuit(2) - .duration(100) - .EUt(7) - - event.recipes.gtceu.centrifuge('red_alloy_separation') - .itemInputs('5x gtceu:red_alloy_dust') - .itemOutputs('1x gtceu:copper_dust', '4x minecraft:redstone') - .duration(900) - .EUt(30) - - event.recipes.gtceu.alloy_smelter('copper_dust_and_redstone_dust_into_red_alloy') - .itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone') - .itemOutputs('5x gtceu:red_alloy_ingot') - .duration(50) - .EUt(16) - - event.recipes.gtceu.alloy_smelter('annealed_copper_dust_and_redstone_dust_into_red_alloy') - .itemInputs('1x gtceu:annealed_copper_dust', '4x minecraft:redstone') - .itemOutputs('5x gtceu:red_alloy_ingot') - .duration(50) - .EUt(16) - - event.recipes.gtceu.alloy_smelter('copper_ingot_and_redstone_dust_into_red_alloy') - .itemInputs('1x minecraft:copper_ingot', '4x minecraft:redstone') - .itemOutputs('5x gtceu:red_alloy_ingot') - .duration(50) - .EUt(16) - - event.recipes.gtceu.alloy_smelter('annealed_copper_ingot_and_redstone_dust_into_red_alloy') - .itemInputs('1x gtceu:annealed_copper_ingot', '4x minecraft:redstone') - .itemOutputs('5x gtceu:red_alloy_ingot') - .duration(50) - .EUt(16) -} diff --git a/kubejs/server_scripts/gregtech/tags.js b/kubejs/server_scripts/gregtech/tags.js index 2ffd86490..338f388a7 100644 --- a/kubejs/server_scripts/gregtech/tags.js +++ b/kubejs/server_scripts/gregtech/tags.js @@ -13,10 +13,6 @@ function registerGTCEUItemTags(event) { event.add("c:hidden_from_recipe_viewers", item); }); - global.GTCEU_ARMORS.forEach((item) => { - event.add("minecraft:trimmable_armor", item); - }); - // Π”ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ Ρ‚Π΅Π³Π° EMI для скрытия всСх Ρ€ΡƒΠ΄ event.add("c:hidden_from_recipe_viewers", "#forge:ores"); @@ -25,24 +21,14 @@ function registerGTCEUItemTags(event) { event.remove("minecraft:planks", "gtceu:wood_plate"); - event.add("tfg:sugars", "minecraft:sugar"); - event.add("tfg:sugars", "afc:birch_sugar"); - event.add("tfg:sugars", "afc:maple_sugar"); - global.MINECRAFT_DYE_NAMES.forEach((dyeName) => { event.remove("ae2:p2p_attunements/fluid_p2p_tunnel", `gtceu:${dyeName}_dye_bucket`); }); - // Piglin loved - event.add("minecraft:piglin_loved", "gtceu:tiny_pyrite_dust"); - event.add("minecraft:piglin_loved", "gtceu:poor_raw_pyrite"); - event.add("minecraft:piglin_loved", "gtceu:raw_pyrite"); - event.add("minecraft:piglin_loved", "gtceu:rich_raw_pyrite"); - event.remove("forge:gems", "gtceu:coke_gem"); // Rose Quartz Lens - event.add("forge:lenses/pink", "gtceu:rose_quartz_lens"); + event.add("forge:lenses/pink", "greate:rose_quartz_lens"); event.add("tfc:saws", "#forge:tools/buzzsaws"); event.add("tfc:saws", "#forge:tools/chainsaws"); @@ -57,6 +43,7 @@ function registerGTCEUItemTags(event) { // @ts-expect-error According to KJS docs adding tags to tags is supported. event.add("gtceu:molds", "#gtceu:casting_molds", "#gtceu:extruder_molds", "gtceu:empty_mold"); + } /** @param {TagEvent.Block} event */ @@ -66,40 +53,35 @@ function registerGTCEUBlockTags(event) { event.removeAllTagsFrom(item); }); - event.add("minecraft:mineable/pickaxe", "#forge:ores"); - event.add("minecraft:needs_iron_tool", "#forge:ores"); + event.add('gtceu:mineable/pickaxe_or_wrench', 'gtceu:ulv_hermetic_casing'); - // Collapse tags - event.add("tfc:can_collapse", "#forge:ores"); - event.add("tfc:can_start_collapse", "#forge:ores"); - event.add("tfc:can_trigger_collapse", "#forge:ores"); - event.add("c:hidden_from_recipe_viewers", "#forge:ores"); - - event.add("tfc:can_collapse", "#forge:raw_ore_blocks"); - event.add("tfc:can_start_collapse", "#forge:raw_ore_blocks"); - event.add("tfc:can_trigger_collapse", "#forge:raw_ore_blocks"); - event.add("c:hidden_from_recipe_viewers", "#forge:raw_ore_blocks"); - - // Let GT indicators be covered by snow - forEachMaterial((material) => { - if (material.hasProperty(PropertyKey.ORE)) { - const indicator = `gtceu:${material.getName()}_indicator`; - - event.add("tfg:dust_ore_indicators", indicator); - event.add("tfc:can_be_snow_piled", indicator); - event.add("tfc:can_be_ice_piled", indicator); - - if (material.hasProperty(PropertyKey.GEM)) { - const bud = `gtceu:${material.getName()}_bud_indicator`; - - event.add("tfg:bud_ore_indicators", bud); - event.add("tfc:can_be_snow_piled", bud); - event.add("tfc:can_be_ice_piled", bud); - - event.add("minecraft:mineable/pickaxe", bud); - } - } - }); + event.remove("gtceu:cleanroom_doors", "#minecraft:wooden_doors"); + event.add("gtceu:cleanroom_doors", "firmalife:sealed_door"); + event.add("gtceu:cleanroom_doors", "firmalife:iron_greenhouse_door"); + event.add("gtceu:cleanroom_doors", "firmalife:copper_greenhouse_door"); + event.add("gtceu:cleanroom_doors", "firmalife:stainless_steel_greenhouse_door"); + event.add("gtceu:cleanroom_doors", "create:andesite_door"); + event.add("gtceu:cleanroom_doors", "create:brass_door"); + event.add("gtceu:cleanroom_doors", "create:copper_door"); + event.add("gtceu:cleanroom_doors", "create:train_door"); + event.add("gtceu:cleanroom_doors", "create:framed_glass_door"); + event.add("gtceu:cleanroom_doors", "createdeco:andesite_door"); + event.add("gtceu:cleanroom_doors", "createdeco:locked_andesite_door"); + event.add("gtceu:cleanroom_doors", "createdeco:brass_door"); + event.add("gtceu:cleanroom_doors", "createdeco:locked_brass_door"); + event.add("gtceu:cleanroom_doors", "createdeco:copper_door"); + event.add("gtceu:cleanroom_doors", "createdeco:locked_copper_door"); + event.add("gtceu:cleanroom_doors", "createdeco:industrial_iron_door"); + event.add("gtceu:cleanroom_doors", "createdeco:locked_industrial_iron_door"); + event.add("gtceu:cleanroom_doors", "createdeco:zinc_door"); + event.add("gtceu:cleanroom_doors", "createdeco:locked_zinc_door"); + event.add("gtceu:cleanroom_doors", "ad_astra:steel_door"); + event.add("gtceu:cleanroom_doors", "ad_astra:iron_sliding_door"); + event.add("gtceu:cleanroom_doors", "ad_astra:steel_sliding_door"); + event.add("gtceu:cleanroom_doors", "ad_astra:reinforced_door"); + event.add("gtceu:cleanroom_doors", "ad_astra:desh_sliding_door"); + event.add("gtceu:cleanroom_doors", "ad_astra:ostrum_sliding_door"); + event.add("gtceu:cleanroom_doors", "ad_astra:calorite_sliding_door"); } /** @param {TagEvent.Fluid} event */ @@ -109,9 +91,10 @@ function registerGTCEUFluidTags(event) { event.add("c:hidden_from_recipe_viewers", "gtceu:molten_black_steel"); event.add("c:hidden_from_recipe_viewers", "gtceu:molten_red_steel"); event.add("c:hidden_from_recipe_viewers", "gtceu:molten_blue_steel"); + event.add("c:hidden_from_recipe_viewers", "gtceu:molten_black_bronze"); + event.add("c:hidden_from_recipe_viewers", "gtceu:molten_bismuth_bronze"); event.add("c:hidden_from_recipe_viewers", "gtceu:damascus_steel"); event.add("c:hidden_from_recipe_viewers", "gtceu:blaze"); event.add("c:hidden_from_recipe_viewers", "gtceu:thorium"); - event.add('firmalife:usable_in_mixing_bowl', 'gtceu:concrete') -} +} \ No newline at end of file diff --git a/kubejs/server_scripts/gregtech/utility.js b/kubejs/server_scripts/gregtech/utility.js index 797d41a0e..0f000d949 100644 --- a/kubejs/server_scripts/gregtech/utility.js +++ b/kubejs/server_scripts/gregtech/utility.js @@ -1,6 +1,16 @@ // priority: 0 "use strict"; +const JsonObject = Java.loadClass('com.google.gson.JsonObject'); +const JsonArray = Java.loadClass('com.google.gson.JsonArray'); +const JsonParser = Java.loadClass('com.google.gson.JsonParser'); +const JsonElement = Java.loadClass('com.google.gson.JsonElement'); + +// Helper to call `JsonArray.add(JsonElement)` explicitly because "Rhino Moment". +const addJsonElement = (jsonArray, jsonElement) => { + jsonArray.getClass().getMethod("add", JsonElement).invoke(jsonArray, jsonElement); +}; + //#region Mixer Recipes /** * Function for generating gtceu mixer recipes. @@ -85,10 +95,12 @@ function generateGreenHouseRecipe(event, input, fluid, fluid_amount, output, id, .duration(36000) // 30 mins .EUt(EUt) - if (dimension !== null) + if (dimension !== null) { r.dimension(dimension) - if (output_secondary !== null) + } + if (output_secondary !== null) { r.chancedOutput(output_secondary, 750, 0) + } // Π‘ ΡƒΠ΄ΠΎΠ±Ρ€Π΅Π½ΠΈΠ΅ΠΌ (With fertilizer) @@ -103,10 +115,12 @@ function generateGreenHouseRecipe(event, input, fluid, fluid_amount, output, id, .duration(12000) // 10 mins .EUt(EUt) - if (dimension !== null) + if (dimension !== null) { r.dimension(dimension) - if (output_secondary !== null) + } + if (output_secondary !== null) { r.chancedOutput(output_secondary, 4000, 0) + } } //#endregion @@ -137,21 +151,21 @@ const getFillingNBT = (material, amount) => { */ function generatePlatedBlockRecipe(event, material) { // firmaciv plated blocks don't have this property - let tfcProperty = material.getProperty(TFGPropertyKey.TFC_PROPERTY) - let outputMaterial = (tfcProperty === null || tfcProperty.getOutputMaterial() === null) ? material : tfcProperty.getOutputMaterial() + const tfcProperty = material.getProperty(TFGPropertyKey.TFC_PROPERTY) + const outputMaterial = (tfcProperty === null || tfcProperty.getOutputMaterial() === null) ? material : tfcProperty.getOutputMaterial() - let plateItem = ChemicalHelper.get(TagPrefix.plate, material, 1); + const plateItem = ChemicalHelper.get(TagPrefix.plate, material, 1); - let platedBlock = ChemicalHelper.get(TFGTagPrefix.blockPlated, material, 1); - let platedSlab = ChemicalHelper.get(TFGTagPrefix.slabPlated, material, 1); - let platedStair = ChemicalHelper.get(TFGTagPrefix.stairPlated, material, 1); + const platedBlock = ChemicalHelper.get(TFGTagPrefix.blockPlated, material, 1); + const platedSlab = ChemicalHelper.get(TFGTagPrefix.slabPlated, material, 1); + const platedStair = ChemicalHelper.get(TFGTagPrefix.stairPlated, material, 1); - if (platedBlock === null) - return + if (platedBlock === null) return; let tfcMetalName = material.getName(); - if (tfcMetalName === "iron") + if (tfcMetalName === "iron") { tfcMetalName = "cast_iron"; + } event.shapeless(platedBlock, ['#forge:stone_bricks', plateItem, '#forge:tools/hammers']) .id(`tfg:shapeless/${material.getName()}_plated_block`) @@ -247,7 +261,7 @@ function generatePlatedBlockRecipe(event, material) { * @param {(material: com.gregtechceu.gtceu.api.data.chemical.material.Material_) => void} iterator */ function forEachMaterial(iterator) { - for (let material of GTCEuAPI.materialManager.getRegisteredMaterials()) { + for (const material of GTCEuAPI.materialManager.getRegisteredMaterials()) { iterator(material) } } @@ -269,18 +283,8 @@ function forEachMaterial(iterator) { */ function addCircuitToRecipe(event, recipeId, circuitNumber) { - const JsonObject = Java.loadClass('com.google.gson.JsonObject'); - const JsonArray = Java.loadClass('com.google.gson.JsonArray'); - const JsonParser = Java.loadClass('com.google.gson.JsonParser'); - const JsonElementClass = Java.loadClass('com.google.gson.JsonElement'); - - // Helper to call JsonArray.add(JsonElement) explicitly because "Rhino Moment". - const addJsonElement = (jsonArray, jsonElement) => { - jsonArray.getClass().getMethod("add", JsonElementClass).invoke(jsonArray, jsonElement); - }; - event.findRecipes({ id: recipeId }).forEach(recipe => { - let inputsEl = recipe.json.get("inputs"); + const inputsEl = recipe.json.get("inputs"); let inputsObj; if (inputsEl === null || inputsEl.isJsonNull()) { inputsObj = new JsonObject(); @@ -291,7 +295,7 @@ function addCircuitToRecipe(event, recipeId, circuitNumber) { } // Cache existing item inputs. - let itemEl = inputsObj.get("item"); + const itemEl = inputsObj.get("item"); let itemArray; if (itemEl === null || itemEl === undefined || itemEl.isJsonNull()) { itemArray = new JsonArray(); @@ -317,7 +321,7 @@ function addCircuitToRecipe(event, recipeId, circuitNumber) { let hasCircuit = false; for (let i = 0; i < itemArray.size(); i++) { const el = itemArray.get(i); - if (!el.isJsonObject()) continue; + if (!el.isJsonObject()) {continue;} const obj = el.getAsJsonObject(); const content = obj.get("content"); if (content && content.isJsonObject()) { @@ -373,17 +377,14 @@ function woodBuilder(event, name, lumber, logs, log, stripped_log, plank, stair, .duration(50) .EUt(GTValues.VA[GTValues.ULV]) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ item: log }], - results: [{ item: stripped_log }], - speed_limits: 0, - processingTime: 50 - }).id(`tfg:vi/lathe/stripping_${name}_log`) + event.recipes.vintageimprovements.polishing(stripped_log, log) + .speedLimits(0) + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/stripping_${name}_log`) } if (logs && lumber && name) { - event.shapeless(`8x ${lumber}`, + event.shapeless(`8x ${lumber}`, [logs, '#forge:tools/saws'] ).id(`tfg:shapeless/${name}_lumber_from_log`) @@ -391,7 +392,7 @@ function woodBuilder(event, name, lumber, logs, log, stripped_log, plank, stair, } if (plank && lumber && name) { - event.shapeless(`4x ${lumber}`, + event.shapeless(`4x ${lumber}`, [plank, '#forge:tools/saws'] ).id(`tfg:shapeless/${name}_lumber_from_plank`) @@ -401,15 +402,15 @@ function woodBuilder(event, name, lumber, logs, log, stripped_log, plank, stair, 'AA', 'AA' ], { - A: lumber, + A: lumber }).id(`tfg:shaped/${name}_plank_from_lumber`) } if (slab && lumber && name) { - event.shapeless(`2x ${lumber}`, + event.shapeless(`2x ${lumber}`, [slab, '#forge:tools/saws'] ).id(`tfg:shapeless/${name}_lumber_from_slab`) - + generateCutterRecipe(event, slab, `2x ${lumber}`, 50, 7, `cutter_${name}_lumber_from_slab`) } @@ -417,12 +418,12 @@ function woodBuilder(event, name, lumber, logs, log, stripped_log, plank, stair, event.shaped(`6x ${slab}`, [ 'AAA' ], { - A: plank, + A: plank }).id(`tfg:shaped/${name}_slab_from_plank`) } if (stair && lumber && name) { - event.shapeless(`3x ${lumber}`, + event.shapeless(`3x ${lumber}`, [stair, '#forge:tools/saws'] ).id(`tfg:shapeless/${name}_lumber_from_stair`) @@ -435,51 +436,51 @@ function woodBuilder(event, name, lumber, logs, log, stripped_log, plank, stair, 'AA ', 'AAA' ], { - A: plank, + A: plank }).id(`tfg:shaped/${name}_stair_from_plank`) } - + if (door && lumber && name) { event.shaped(`2x ${door}`, [ 'AA', 'AA', 'AA' ], { - A: lumber, + A: lumber }).id(`tfg:shaped/${name}_door_from_lumber`) } - + if (trapdoor && lumber && name) { event.shaped(`3x ${trapdoor}`, [ 'AAA', 'AAA' ], { - A: lumber, + A: lumber }).id(`tfg:shaped/${name}_trapdoor_from_lumber_and_plank`) } - + if (fence && lumber && plank && name) { event.shaped(`8x ${fence}`, [ 'ABA', 'ABA' ], { A: lumber, - B: plank, + B: plank }).id(`tfg:shaped/${name}_fence_from_lumber_and_plank`) } - + if (fence_gate && lumber && plank && name) { event.shaped(`2x ${fence_gate}`, [ 'ABA', 'ABA' ], { A: plank, - B: lumber, + B: lumber }).id(`tfg:shaped/${name}_fence_gate_from_lumber_and_plank`) } - + if (support && logs && name) { - event.shapeless(`8x ${support}`, + event.shapeless(`8x ${support}`, [`2x ${logs}`, '#forge:tools/saws'] ).id(`tfg:shapeless/${name}_support_from_logs`) @@ -490,7 +491,7 @@ function woodBuilder(event, name, lumber, logs, log, stripped_log, plank, stair, .circuit(4) .EUt(GTValues.VA[GTValues.ULV]) } - + if (pressure_plate && slab && name) { event.shaped(pressure_plate, [ ' B ', @@ -500,7 +501,7 @@ function woodBuilder(event, name, lumber, logs, log, stripped_log, plank, stair, A: slab, B: '#forge:tools/hammers', C: '#forge:springs', - D: '#forge:tools/screwdrivers', + D: '#forge:tools/screwdrivers' }).id(`tfg:shaped/${name}_pressure_plate`) event.recipes.gtceu.assembler(`tfg:assembler/${name}_pressure_plate`) @@ -546,30 +547,39 @@ function sterilizeItem(event, input, output, multiplier, cleanroom) { // If there are any errors, log them all and throw once. if (errors.length > 0) { - const message = "sterilizeItem errors:\n - " + errors.join("\n - "); + const message = `sterilizeItem errors:\n - ${ errors.join("\n - ")}`; throw new TypeError(message); }; // Set default multiplier. let recipe_multiplier = 1; - if (multiplier !== undefined) recipe_multiplier = multiplier; + if (multiplier !== undefined) { + recipe_multiplier = multiplier; + } // Create recipes. - let ethanol_recipe = event.recipes.gtceu.chemical_bath(`tfg:ethanol_cleaning/${input.replace(':', '_')}_to_${output.replace(':', '_')}`) + const ethanol_recipe = event.recipes.gtceu.chemical_bath(`tfg:ethanol_cleaning/${input.replace(':', '_')}_to_${output.replace(':', '_')}`) .itemInputs(input) .inputFluids(Fluid.of('gtceu:ethanol', 500*recipe_multiplier)) .itemOutputs(output) .duration(10*20*recipe_multiplier) .EUt(GTValues.VA[GTValues.MV]); - let hydrogen_peroxide_recipe = event.recipes.gtceu.chemical_bath(`tfg:hydrogen_peroxide_cleaning/${input.replace(':', '_')}_to_${output.replace(':', '_')}`) + const hydrogen_peroxide_recipe = event.recipes.gtceu.chemical_bath(`tfg:hydrogen_peroxide_cleaning/${input.replace(':', '_')}_to_${output.replace(':', '_')}`) .itemInputs(input) .inputFluids(Fluid.of('gtceu:hydrogen_peroxide', 200*recipe_multiplier)) .itemOutputs(output) .duration(10*20*recipe_multiplier) .EUt(GTValues.VA[GTValues.MV]); - let autoclave_recipe = event.recipes.gtceu.autoclave(`tfg:autoclave_cleaning/${input.replace(':', '_')}_to_${output.replace(':', '_')}`) + const sodium_dodecyl_sulfate_recipe = event.recipes.gtceu.chemical_bath(`tfg:sodium_dodecyl_sulfate_cleaning/${input.replace(':', '_')}_to_${output.replace(':', '_')}`) + .itemInputs(input) + .inputFluids(Fluid.of('tfg:sodium_dodecyl_sulfate', 50*recipe_multiplier)) + .itemOutputs(output) + .duration(10*20*recipe_multiplier) + .EUt(GTValues.VA[GTValues.MV]); + + const autoclave_recipe = event.recipes.gtceu.autoclave(`tfg:autoclave_cleaning/${input.replace(':', '_')}_to_${output.replace(':', '_')}`) .itemInputs(input) .perTick(true) .inputFluids(Fluid.of('gtceu:steam', 100*recipe_multiplier)) @@ -581,7 +591,59 @@ function sterilizeItem(event, input, output, multiplier, cleanroom) { if (cleanroom) { ethanol_recipe.cleanroom(cleanroom); hydrogen_peroxide_recipe.cleanroom(cleanroom); + sodium_dodecyl_sulfate_recipe.cleanroom(cleanroom); autoclave_recipe.cleanroom(cleanroom); }; }; + +//#endregion +//#region Cleanroom Tool + +/** + * Ensures recipes have a cleanroom recipe condition set to the specified type. + * + * * For each recipe: + * * * If `recipeConditions` is an array, finds an object with `type` === `cleanroom`. + * * * If found, updates its `cleanroom` property to the given `cleanroomType`. + * * * If not found, appends a new condition object `{ type: "cleanroom", cleanroom: cleanroomType }` to the array. + * * * If `recipeConditions` is absent or not an array, creates a new JSON array containing the cleanroom condition. + * + * @throws This function will not work with other recipe conditions present besides `CleanroomType`. + * + * @param {event} event + * @param {string} recipeId - recipe ID. + * @param {'cleanroom'|'sterile_cleanroom'} cleanroomType - Cleanroom type to be assigned. + */ +function addCleanroom(event, recipeId, cleanroomType) { + event.findRecipes({ id: recipeId }).forEach(recipe => { + // Ensure recipe has a cleanroom condition matching the cleanroomType string. + // Replace existing cleanroom condition or add new one if absent. + const desiredCleanroom = cleanroomType; + const conditions = recipe.json.get("recipeConditions"); + let conditionArray; + if (conditions && conditions.isJsonArray && conditions.isJsonArray()) { + conditionArray = conditions.getAsJsonArray(); + } else { + conditionArray = new JsonArray(); + recipe.json.add("recipeConditions", conditionArray); + } + + let hasCleanroom = false; + for (let i = 0; i < conditionArray.size(); i++) { + let element = conditionArray.get(i).getAsJsonObject(); + if (element.has("type") && element.get("type").getAsString() === "cleanroom") { + element.addProperty("cleanroom", desiredCleanroom); + hasCleanroom = true; + break; + } + } + if (!hasCleanroom) { + let cond = new JsonObject(); + cond.addProperty("type", "cleanroom"); + cond.addProperty("cleanroom", desiredCleanroom); + addJsonElement(conditionArray, cond); + } + }); +}; + //#endregion \ No newline at end of file diff --git a/kubejs/server_scripts/handglider/recipes.js b/kubejs/server_scripts/handglider/recipes.js index 1cc17225b..94ca53617 100644 --- a/kubejs/server_scripts/handglider/recipes.js +++ b/kubejs/server_scripts/handglider/recipes.js @@ -4,6 +4,8 @@ const registerHandGliderRecipes = (event) => { event.remove({id: 'hangglider:glider_framework'}) + event.remove({id: 'hangglider:reinforced_hang_glider'}) + // Glider Framework event.shaped('hangglider:glider_framework', [ 'AAA', @@ -16,6 +18,7 @@ const registerHandGliderRecipes = (event) => { D: '#forge:rings' }).id('hangglider:shaped/glider_framework') + // Glider Wing event.shaped('hangglider:glider_wing', [ ' C', ' BA', @@ -25,4 +28,53 @@ const registerHandGliderRecipes = (event) => { B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.WroughtIron, 1), C: '#forge:rings' }).id('hangglider:shaped/glider_wing') -} \ No newline at end of file + + //Reinforced Hang Glider Stuff + event.shaped('hangglider:reinforced_hang_glider', [ + ' A ', + 'ABA', + ' C ' + ], { + A: 'sns:reinforced_fabric', + B: 'hangglider:hang_glider', + C: '#forge:rods/long/aluminium' + }).id('hangglider:shaped/reinforced_hang_glider') + + event.shaped('hangglider:reinforced_hang_glider', [ + ' A ', + ' B ', + ' C ' + ], { + A: '#tfg:lightweight_cloth', + B: 'hangglider:hang_glider', + C: '#forge:rods/long/aluminium' + }).id('hangglider:shaped/reinforced_hang_glider2') + + event.recipes.gtceu.assembler('tfg:hand_glider/reinforced_hang_glider') + .itemInputs('3x sns:reinforced_fabric', '1x hangglider:hang_glider', '1x #forge:rods/long/aluminium') + .circuit(3) + .itemOutputs(Item.of('hangglider:reinforced_hang_glider', "{Damage:0}")) + .duration(1200) + .EUt(30) + + event.recipes.gtceu.assembler('tfg:hand_glider/reinforced_hang_glider2') + .itemInputs('1x #tfg:lightweight_cloth', '1x hangglider:hang_glider', '1x #forge:rods/long/aluminium') + .circuit(3) + .itemOutputs(Item.of('hangglider:reinforced_hang_glider', "{Damage:0}")) + .duration(600) + .EUt(30) + + event.recipes.gtceu.assembler('tfg:hang_glider/reinforced_hang_glider_repairing') + .itemInputs('3x sns:reinforced_fabric', 'hangglider:reinforced_hang_glider') + .circuit(3) + .itemOutputs(Item.of('hangglider:reinforced_hang_glider', "{Damage:0}")) + .duration(800) + .EUt(30) + + event.recipes.gtceu.assembler('tfg:hang_glider/reinforced_hang_glider_repairing2') + .itemInputs('1x #tfg:lightweight_cloth', 'hangglider:reinforced_hang_glider') + .circuit(3) + .itemOutputs(Item.of('hangglider:reinforced_hang_glider', "{Damage:0}")) + .duration(400) + .EUt(30) +} diff --git a/kubejs/server_scripts/hotornot/tags.js b/kubejs/server_scripts/hotornot/tags.js deleted file mode 100644 index bcc28c7b6..000000000 --- a/kubejs/server_scripts/hotornot/tags.js +++ /dev/null @@ -1,23 +0,0 @@ -// priority: 0 -"use strict"; - -const registerHotOrNotItemTags = (event) => { - - // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Ρ‚Π΅Π³ΠΎΠ² Ρƒ ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² - global.HOT_OR_NOT_DISABLED_ITEMS.forEach(item => { - event.removeAllTagsFrom(item) - event.add('c:hidden_from_recipe_viewers', item) - }) - - event.add('tfchotornot:hot_whitelist', '#forge:hot_ingots') - - event.add('firmalife:usable_on_oven', '#tfchotornot:insulating') -} - -const registerHotOrNotBlockTags = (event) => { - - // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Ρ‚Π΅Π³ΠΎΠ² Ρƒ ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² - global.HOT_OR_NOT_DISABLED_ITEMS.forEach(item => { - event.removeAllTagsFrom(item) - }) -} \ No newline at end of file diff --git a/kubejs/server_scripts/immersive_aircraft/recipes.js b/kubejs/server_scripts/immersive_aircraft/recipes.js index cdbd10960..e66a4cf66 100644 --- a/kubejs/server_scripts/immersive_aircraft/recipes.js +++ b/kubejs/server_scripts/immersive_aircraft/recipes.js @@ -59,7 +59,7 @@ function registerImmersiveAircraftRecipes(event) { //It should also set itself to annealed copper if the input is regular copper //Ideally we should make sure the specified material has a specific TagPrefix before pushing it into the array, cant get it to work tho. I think the method TagPrefix.doGenerateItem() is ideal for this */ - + outputsArcFurnace.push(ChemicalHelper.get(result.tagPrefixArcFurnace, arcFurnaceMaterial, result.count)); outputsMacerator.push(ChemicalHelper.get(result.tagPrefixMacerator, material, result.count)); duration += material.getMass() * result.count; @@ -82,7 +82,7 @@ function registerImmersiveAircraftRecipes(event) { * @returns {tagPrefixMacerator: TagPrefix, tagPrefixArcFurnace: TagPrefix, count: number} */ let createMaterialsToResults = (tagPrefixMacerator, tagPrefixArcFurnace, count) => { - let result = + let result = { tagPrefixMacerator: tagPrefixMacerator, tagPrefixArcFurnace: tagPrefixArcFurnace, @@ -92,23 +92,23 @@ function registerImmersiveAircraftRecipes(event) { } //#endregion - event.remove({mod: 'man_of_many_planes'}); - event.remove({mod: 'immersive_aircraft'}); - - event.shaped('immersive_aircraft:hull',[ + event.remove({ mod: 'man_of_many_planes' }); + event.remove({ mod: 'immersive_aircraft' }); + + event.shaped('immersive_aircraft:hull', [ 'AAA', 'BCB', 'AAA' - ],{ + ], { A: '#minecraft:planks', B: 'gtceu:wrought_iron_plate', C: 'tfc:glue', }).id('tfg:immersive_aircraft/shaped/hull'); - event.shaped('immersive_aircraft:engine',[ + event.shaped('immersive_aircraft:engine', [ 'ABC', 'DED' - ],{ + ], { A: '#forge:tools/hammers', B: 'gtceu:tin_alloy_small_fluid_pipe', C: '#forge:tools/wrenches', @@ -116,39 +116,39 @@ function registerImmersiveAircraftRecipes(event) { E: 'create:andesite_casing' }).id('tfg:immersive_aircraft/shaped/engine'); - event.shaped('immersive_aircraft:sail',[ + event.shaped('immersive_aircraft:sail', [ 'ABA', 'BCB', 'ABA' - ],{ + ], { A: 'gtceu:wrought_iron_screw', B: '#forge:cloth', C: '#minecraft:trapdoors' }).id('tfg:immersive_aircraft/shaped/sail'); - event.shaped('immersive_aircraft:rotary_cannon',[ + event.shaped('immersive_aircraft:rotary_cannon', [ 'ABA', 'ACA', ' D ' - ],{ + ], { A: 'create:copper_sheet', B: 'minecraft:dispenser', C: 'gtceu:wrought_iron_gear', D: 'tfc:powderkeg' }).id('tfg:immersive_aircraft/shaped/rotary_cannon'); - event.shaped('immersive_aircraft:heavy_crossbow',[ + event.shaped('immersive_aircraft:heavy_crossbow', [ 'ABA', 'CDC', ' A ' - ],{ + ], { A: '#minecraft:logs', B: 'gtceu:long_steel_rod', C: '#tfg:metal_chains', D: 'minecraft:crossbow' }).id('tfg:immersive_aircraft/shaped/heavy_crossbow'); - event.shaped('immersive_aircraft:telescope',[ + event.shaped('immersive_aircraft:telescope', [ 'ABC', ' D ', ' E ' @@ -160,11 +160,11 @@ function registerImmersiveAircraftRecipes(event) { E: 'gtceu:wrought_iron_plate' }).id('tfg:immersive_aircraft/shaped/telescope'); - event.shaped('immersive_aircraft:bomb_bay',[ + event.shaped('immersive_aircraft:bomb_bay', [ 'AAA', 'ABA', 'ACA' - ],{ + ], { A: 'gtceu:steel_plate', B: 'tfc:powderkeg', C: 'minecraft:dispenser' @@ -172,21 +172,21 @@ function registerImmersiveAircraftRecipes(event) { //#region Airplane Upgrades - event.shaped('immersive_aircraft:industrial_gears',[ + event.shaped('immersive_aircraft:industrial_gears', [ 'ABA', 'CAB', 'ACA' - ],{ + ], { A: 'gtceu:small_brass_gear', B: 'gtceu:double_wrought_iron_plate', C: 'gtceu:double_copper_plate' }).id('tfg:immersive_aircraft/shaped/industrial_gears'); - event.shaped('immersive_aircraft:sturdy_pipes',[ + event.shaped('immersive_aircraft:sturdy_pipes', [ 'EDA', 'BAC', 'AD ' - ],{ + ], { A: '#forge:small_fluid_pipes', B: 'gtceu:blue_steel_plate', C: 'gtceu:red_steel_plate', @@ -194,39 +194,67 @@ function registerImmersiveAircraftRecipes(event) { E: '#forge:tools/screwdrivers', }).id('tfg:immersive_aircraft/shaped/sturdy_pipes') - event.shaped('immersive_aircraft:gyroscope',[ + event.shaped('immersive_aircraft:gyroscope', [ 'ABC', 'DED', 'FDG' - ],{ + ], { A: '#forge:tools/wrenches', - B: 'minecraft:comparator', + B: 'create:precision_mechanism', C: '#forge:gems/quartzite', D: 'gtceu:small_brass_gear', E: 'firmaciv:firmaciv_compass', - F: 'gtceu:aluminium_screw', + F: '#forge:screws/blue_steel', G: '#forge:tools/screwdrivers' }).id('tfg:immersive_aircraft/shaped/gyroscope') - event.shaped('tfg:black_steel_plated_airplane_propeller',[ + event.shaped('immersive_aircraft:gyroscope_dials', [ + 'ABC', + 'DED', + 'FDG' + ], { + A: '#forge:tools/wrenches', + B: '#gtceu:circuits/lv', + C: 'gtceu:lv_sensor', + D: 'gtceu:small_aluminium_gear', + E: 'immersive_aircraft:gyroscope', + F: '#forge:screws/vanadium_steel', + G: '#forge:tools/screwdrivers' + }).id('tfg:immersive_aircraft/shaped/gyroscope_dials') + + event.shaped('immersive_aircraft:gyroscope_hud', [ + 'ABC', + 'DED', + 'FDG' + ], { + A: '#forge:tools/wrenches', + B: 'gtceu:computer_monitor_cover', + C: 'gtceu:mv_sensor', + D: '#gtceu:circuits/mv', + E: 'immersive_aircraft:gyroscope_dials', + F: '#forge:screws/stainless_steel', + G: '#forge:tools/screwdrivers' + }).id('tfg:immersive_aircraft/shaped/gyroscope_hud') + + event.shaped('tfg:black_steel_plated_airplane_propeller', [ 'CA ', 'ABA', ' AD' - ],{ + ], { A: 'gtceu:black_steel_plate', B: '#forge:rotors', C: '#forge:tools/hammers', D: '#forge:tools/wrenches' }).id('tfg:shaped/black_steel_plated_airplane_propeller'); - generateRecyclingRecipe('tfg:recycling/black_steel_plated_airplane_propeller', + generateRecyclingRecipe('tfg:recycling/black_steel_plated_airplane_propeller', createRecyclingRecipeArgs('tfg:black_steel_plated_airplane_propeller', [GTMaterials.BlackSteel], [createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 3)])) - - event.shaped('tfg:redblu_steel_plated_airplane_propeller',[ + + event.shaped('tfg:redblu_steel_plated_airplane_propeller', [ 'ABC', 'DED', 'CBF' - ],{ + ], { A: '#forge:tools/hammers', B: 'gtceu:red_steel_plate', C: 'gtceu:red_alloy_dust', @@ -236,64 +264,64 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:shaped/redblu_steel_plated_airplane_propeller'); generateRecyclingRecipe('tfg:recycling/redblu_steel_plated_airplane_propeller', - createRecyclingRecipeArgs('tfg:redblu_steel_plated_airplane_propeller',[ + createRecyclingRecipeArgs('tfg:redblu_steel_plated_airplane_propeller', [ GTMaterials.RedSteel, GTMaterials.BlueSteel, GTMaterials.RedAlloy - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 1), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 1), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 1) ]) ); - event.shaped('immersive_aircraft:enhanced_propeller',[ + event.shaped('immersive_aircraft:enhanced_propeller', [ 'CA ', 'ABA', ' AD' - ],{ + ], { A: 'vintageimprovements:aluminum_sheet', B: '#forge:rotors', C: '#forge:tools/hammers', D: '#forge:tools/wrenches' }).id('tfg:immersive_aircraft/shaped/enhanced_propeller'); - generateRecyclingRecipe('immersive_aircraft:recycling/enhanced_propeller', + generateRecyclingRecipe('immersive_aircraft:recycling/enhanced_propeller', createRecyclingRecipeArgs('immersive_aircraft:enhanced_propeller', [GTMaterials.Aluminium], [createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 3)])) - event.shaped('tfg:stainless_steel_plated_airplane_propeller',[ + event.shaped('tfg:stainless_steel_plated_airplane_propeller', [ 'CA ', 'ABA', ' AD' - ],{ + ], { A: 'gtceu:stainless_steel_plate', B: '#forge:rotors', C: '#forge:tools/hammers', D: '#forge:tools/wrenches' }).id('tfg:shaped/stainless_steel_plated_airplane_propeller'); - generateRecyclingRecipe('tfg:recycling/stainless_steel_plated_airplane_propeller', + generateRecyclingRecipe('tfg:recycling/stainless_steel_plated_airplane_propeller', createRecyclingRecipeArgs('tfg:stainless_steel_plated_airplane_propeller', [GTMaterials.StainlessSteel], [createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 3)])) - event.shaped('tfg:titanium_plated_airplane_propeller',[ + event.shaped('tfg:titanium_plated_airplane_propeller', [ 'CA ', 'ABA', ' AD' - ],{ + ], { A: 'gtceu:titanium_plate', B: '#forge:rotors', C: '#forge:tools/hammers', D: '#forge:tools/wrenches' }).id('tfg:shaped/titanium_plated_airplane_propeller'); - generateRecyclingRecipe('tfg:recycling/titanium_plated_airplane_propeller', + generateRecyclingRecipe('tfg:recycling/titanium_plated_airplane_propeller', createRecyclingRecipeArgs('tfg:titanium_plated_airplane_propeller', [GTMaterials.Titanium], [createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 3)])) - event.shaped('immersive_aircraft:eco_engine',[ + event.shaped('immersive_aircraft:eco_engine', [ 'ABC', 'BDB', 'EEE' - ],{ + ], { A: '#forge:tools/hammers', B: 'gtceu:double_rose_gold_plate', C: '#forge:tools/screwdrivers', @@ -301,11 +329,11 @@ function registerImmersiveAircraftRecipes(event) { E: 'gtceu:double_sterling_silver_plate' }).id('tfg:immersive_aircraft/shaped/eco_engine'); - event.shaped('immersive_aircraft:steel_boiler',[ + event.shaped('immersive_aircraft:steel_boiler', [ 'ABA', 'ACA', 'DAD' - ],{ + ], { A: 'gtceu:steel_plate', B: 'gtceu:black_steel_rod', C: 'immersive_aircraft:engine', @@ -313,12 +341,12 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:immersive_aircraft/shaped/steel_boiler'); generateRecyclingRecipe('immersive_aircraft:recycling/steel_boiler', - createRecyclingRecipeArgs('immersive_aircraft:steel_boiler',[ + createRecyclingRecipeArgs('immersive_aircraft:steel_boiler', [ GTMaterials.Steel, GTMaterials.TinAlloy, GTMaterials.WroughtIron, GTMaterials.BlackSteel - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 3), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 3), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 1), @@ -326,11 +354,11 @@ function registerImmersiveAircraftRecipes(event) { ]) ) - event.shaped('tfg:lv_aircraft_engine',[ + event.shaped('tfg:lv_aircraft_engine', [ 'ABC', 'DED', 'FGF' - ],{ + ], { A: 'gtceu:red_steel_plate', B: 'gtceu:black_steel_plate', C: 'gtceu:blue_steel_plate', @@ -351,7 +379,7 @@ function registerImmersiveAircraftRecipes(event) { GTMaterials.BlackSteel, GTMaterials.RedAlloy, GTMaterials.TinAlloy - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 10), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 7), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 4), @@ -364,11 +392,11 @@ function registerImmersiveAircraftRecipes(event) { ]) ) - event.shaped('immersive_aircraft:nether_engine',[ + event.shaped('immersive_aircraft:nether_engine', [ 'AAA', 'BCB', 'DED' - ],{ + ], { A: 'vintageimprovements:aluminum_sheet', B: 'gtceu:mv_electric_piston', C: 'immersive_aircraft:engine', @@ -377,7 +405,7 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:immersive_aircraft/shaped/nether_engine') generateRecyclingRecipe('immersive_aircraft:recycling/nether_engine', - createRecyclingRecipeArgs('immersive_aircraft:nether_engine',[ + createRecyclingRecipeArgs('immersive_aircraft:nether_engine', [ GTMaterials.Aluminium, GTMaterials.Cupronickel, GTMaterials.AnnealedCopper, @@ -385,7 +413,7 @@ function registerImmersiveAircraftRecipes(event) { GTMaterials.Bronze, GTMaterials.TinAlloy, GTMaterials.WroughtIron - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 12), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 9), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 3), @@ -396,11 +424,11 @@ function registerImmersiveAircraftRecipes(event) { ]) ) - event.shaped('tfg:hv_aircraft_engine',[ + event.shaped('tfg:hv_aircraft_engine', [ 'AAA', 'BCB', 'DED' - ],{ + ], { A: 'gtceu:stainless_steel_plate', B: 'gtceu:hv_electric_piston', C: 'immersive_aircraft:engine', @@ -409,7 +437,7 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:shaped/hv_aircraft_engine') generateRecyclingRecipe('tfg:recycling/hv_aircraft_engine', - createRecyclingRecipeArgs('tfg:hv_aircraft_engine',[ + createRecyclingRecipeArgs('tfg:hv_aircraft_engine', [ GTMaterials.StainlessSteel, GTMaterials.Electrum, GTMaterials.Silver, @@ -428,11 +456,11 @@ function registerImmersiveAircraftRecipes(event) { ]) ) - event.shaped('tfg:ev_aircraft_engine',[ + event.shaped('tfg:ev_aircraft_engine', [ 'AAA', 'BCB', 'DED' - ],{ + ], { A: 'gtceu:titanium_plate', B: 'gtceu:ev_electric_piston', C: 'immersive_aircraft:engine', @@ -441,7 +469,7 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:shaped/ev_aircraft_engine') generateRecyclingRecipe('tfg:recycling/ev_aircraft_engine', - createRecyclingRecipeArgs('tfg:ev_aircraft_engine',[ + createRecyclingRecipeArgs('tfg:ev_aircraft_engine', [ GTMaterials.Titanium, GTMaterials.Aluminium, GTMaterials.Kanthal, @@ -449,7 +477,7 @@ function registerImmersiveAircraftRecipes(event) { GTMaterials.Neodymium, GTMaterials.TinAlloy, GTMaterials.WroughtIron - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 14), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 9), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 9), @@ -460,11 +488,11 @@ function registerImmersiveAircraftRecipes(event) { ]) ); - event.shaped('immersive_aircraft:hull_reinforcement',[ + event.shaped('immersive_aircraft:hull_reinforcement', [ 'AB ', 'BCB', ' BD' - ],{ + ], { A: '#forge:tools/hammers', B: 'gtceu:black_steel_plate', C: 'immersive_aircraft:hull', @@ -472,7 +500,7 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:immersive_aircraft/shaped/hull_reinforcement'); generateRecyclingRecipe('immersive_aircraft:recycling/hull_reinforcement', - createRecyclingRecipeArgs('immersive_aircraft:hull_reinforcement',[ + createRecyclingRecipeArgs('immersive_aircraft:hull_reinforcement', [ GTMaterials.BlackSteel, GTMaterials.WroughtIron ], [ @@ -481,11 +509,11 @@ function registerImmersiveAircraftRecipes(event) { ]) ) - event.shaped('tfg:redblu_steel_hull_reinforcement',[ + event.shaped('tfg:redblu_steel_hull_reinforcement', [ 'ABF', 'ECE', 'FBD' - ],{ + ], { A: '#forge:tools/hammers', B: 'gtceu:red_steel_plate', C: 'immersive_aircraft:hull', @@ -495,12 +523,12 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:shaped/redblu_steel_hull_reinforcement'); generateRecyclingRecipe('tfg:recycling/redblu_steel_hull_reinforcement', - createRecyclingRecipeArgs('tfg:redblu_steel_hull_reinforcement',[ + createRecyclingRecipeArgs('tfg:redblu_steel_hull_reinforcement', [ GTMaterials.BlueSteel, GTMaterials.RedSteel, GTMaterials.RedAlloy, GTMaterials.WroughtIron - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 1), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 1), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 1), @@ -508,11 +536,11 @@ function registerImmersiveAircraftRecipes(event) { ]) ); - event.shaped('tfg:aluminium_hull_reinforcement',[ + event.shaped('tfg:aluminium_hull_reinforcement', [ 'AB ', 'BCB', ' BD' - ],{ + ], { A: '#forge:tools/hammers', B: 'vintageimprovements:aluminum_sheet', C: 'immersive_aircraft:hull', @@ -520,7 +548,7 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:shaped/aluminium_hull_reinforcement'); generateRecyclingRecipe('tfg:recycling/aluminium_hull_reinforcement', - createRecyclingRecipeArgs('tfg:aluminium_hull_reinforcement',[ + createRecyclingRecipeArgs('tfg:aluminium_hull_reinforcement', [ GTMaterials.Aluminium, GTMaterials.WroughtIron ], [ @@ -529,11 +557,11 @@ function registerImmersiveAircraftRecipes(event) { ]) ) - event.shaped('tfg:stainless_steel_hull_reinforcement',[ + event.shaped('tfg:stainless_steel_hull_reinforcement', [ 'AB ', 'BCB', ' BD' - ],{ + ], { A: '#forge:tools/hammers', B: 'gtceu:stainless_steel_plate', C: 'immersive_aircraft:hull', @@ -541,7 +569,7 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:shaped/stainless_steel_hull_reinforcement'); generateRecyclingRecipe('tfg:recycling/stainless_steel_hull_reinforcement', - createRecyclingRecipeArgs('tfg:stainless_steel_hull_reinforcement',[ + createRecyclingRecipeArgs('tfg:stainless_steel_hull_reinforcement', [ GTMaterials.StainlessSteel, GTMaterials.WroughtIron ], [ @@ -550,11 +578,11 @@ function registerImmersiveAircraftRecipes(event) { ]) ) - event.shaped('tfg:titanium_hull_reinforcement',[ + event.shaped('tfg:titanium_hull_reinforcement', [ 'AB ', 'BCB', ' BD' - ],{ + ], { A: '#forge:tools/hammers', B: 'gtceu:titanium_plate', C: 'immersive_aircraft:hull', @@ -562,7 +590,7 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:shaped/titanium_hull_reinforcement'); generateRecyclingRecipe('tfg:recycling/titanium_hull_reinforcement', - createRecyclingRecipeArgs('tfg:titanium_hull_reinforcement',[ + createRecyclingRecipeArgs('tfg:titanium_hull_reinforcement', [ GTMaterials.Titanium, GTMaterials.WroughtIron ], [ @@ -571,11 +599,11 @@ function registerImmersiveAircraftRecipes(event) { ]) ) - event.shaped('immersive_aircraft:improved_landing_gear',[ + event.shaped('immersive_aircraft:improved_landing_gear', [ 'ABC', 'DEB', 'DDF' - ],{ + ], { A: '#forge:tools/wrenches', B: 'gtceu:black_steel_plate', C: 'gtceu:black_steel_rod', @@ -585,20 +613,20 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:immersive_aircraft/shaped/improved_landing_gear'); generateRecyclingRecipe('immersive_aircraft:recycling/improved_landing_gear', - createRecyclingRecipeArgs('immersive_aircraft:improved_landing_gear',[ + createRecyclingRecipeArgs('immersive_aircraft:improved_landing_gear', [ GTMaterials.BlackSteel, GTMaterials.Brass - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 2), createMaterialsToResults(TagPrefix.dustTiny, TagPrefix.nugget, 7), ]) ); - event.shaped('tfg:redblu_steel_landing_gear',[ + event.shaped('tfg:redblu_steel_landing_gear', [ 'ABC', 'DEB', 'DDF' - ],{ + ], { A: '#forge:tools/wrenches', B: 'gtceu:red_steel_plate', C: 'gtceu:blue_steel_rod', @@ -608,22 +636,22 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:shaped/redblu_steel_landing_gear') generateRecyclingRecipe('tfg:recycling/redblu_steel_landing_gear', - createRecyclingRecipeArgs('tfg:redblu_steel_landing_gear',[ + createRecyclingRecipeArgs('tfg:redblu_steel_landing_gear', [ GTMaterials.RedSteel, GTMaterials.BlueSteel, GTMaterials.Brass, - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 2), createMaterialsToResults(TagPrefix.dustTiny, TagPrefix.nugget, 3), createMaterialsToResults(TagPrefix.dustTiny, TagPrefix.nugget, 7), ]) ); - event.shaped('tfg:aluminium_landing_gear',[ + event.shaped('tfg:aluminium_landing_gear', [ 'ABC', 'DEB', 'DDF' - ],{ + ], { A: '#forge:tools/wrenches', B: 'vintageimprovements:aluminum_sheet', C: 'gtceu:aluminium_rod', @@ -633,20 +661,20 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:shaped/aluminium_landing_gear') generateRecyclingRecipe('tfg:recycling/aluminium_landing_gear', - createRecyclingRecipeArgs('tfg:aluminium_landing_gear',[ + createRecyclingRecipeArgs('tfg:aluminium_landing_gear', [ GTMaterials.Aluminium, GTMaterials.CobaltBrass - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 2), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 3), ]) ); - - event.shaped('tfg:stainless_steel_landing_gear',[ + + event.shaped('tfg:stainless_steel_landing_gear', [ 'ABC', 'DEB', 'DDF' - ],{ + ], { A: '#forge:tools/wrenches', B: 'gtceu:stainless_steel_plate', C: 'gtceu:stainless_steel_rod', @@ -657,20 +685,20 @@ function registerImmersiveAircraftRecipes(event) { generateRecyclingRecipe('tfg:recycling/stainless_steel_landing_gear', - createRecyclingRecipeArgs('tfg:stainless_steel_landing_gear',[ + createRecyclingRecipeArgs('tfg:stainless_steel_landing_gear', [ GTMaterials.StainlessSteel, GTMaterials.CobaltBrass - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 2), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 3), ]) ); - event.shaped('tfg:titanium_landing_gear',[ + event.shaped('tfg:titanium_landing_gear', [ 'ABC', 'DEB', 'DDF' - ],{ + ], { A: '#forge:tools/wrenches', B: 'gtceu:titanium_plate', C: 'gtceu:titanium_rod', @@ -680,10 +708,10 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:shaped/titanium_landing_gear'); generateRecyclingRecipe('tfg:recycling/titanium_landing_gear', - createRecyclingRecipeArgs('tfg:titanium_landing_gear',[ + createRecyclingRecipeArgs('tfg:titanium_landing_gear', [ GTMaterials.Titanium, GTMaterials.CobaltBrass - ],[ + ], [ createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 2), createMaterialsToResults(TagPrefix.dust, TagPrefix.ingot, 3), ]) @@ -692,11 +720,11 @@ function registerImmersiveAircraftRecipes(event) { //#region Aircrafts - event.shaped('immersive_aircraft:quadrocopter',[ + event.shaped('immersive_aircraft:quadrocopter', [ 'ABA', 'CDC', 'AEA' - ],{ + ], { A: '#forge:rotors', B: '#create:seats', C: 'gtceu:long_wood_rod', @@ -704,7 +732,7 @@ function registerImmersiveAircraftRecipes(event) { E: 'immersive_aircraft:engine' }).id('tfg:immersive_aircraft/shaped/quadrocopter'); - event.shaped('immersive_aircraft:airship',[ + event.shaped('immersive_aircraft:airship', [ 'ABA', 'CDE', 'FGA' @@ -718,7 +746,7 @@ function registerImmersiveAircraftRecipes(event) { G: 'tfg:airship_hull' }).id('tfg:immersive_aircraft/shaped/airship') - event.shaped('immersive_aircraft:cargo_airship',[ + event.shaped('immersive_aircraft:cargo_airship', [ 'ABA', 'CDC', 'EFE' @@ -732,14 +760,14 @@ function registerImmersiveAircraftRecipes(event) { }).id('tfg:immersive_aircraft/shaped/cargo_airship') //WAAGH! - event.recipes.create.mechanical_crafting('immersive_aircraft:warship',[ + event.recipes.create.mechanical_crafting('immersive_aircraft:warship', [ 'ABCC ', ' DDD ', ' EEEF', ' EGEH', ' EEEF', ' DDD ' - ],{ + ], { A: 'immersive_aircraft:enhanced_propeller', B: 'immersive_aircraft:steel_boiler', C: 'tfg:airship_balloon', @@ -750,7 +778,7 @@ function registerImmersiveAircraftRecipes(event) { H: '#create:seats' }).id('tfg:immersive_aircraft/mechanical_crafter/warship') - event.recipes.create.mechanical_crafting('immersive_aircraft:gyrodyne',[ + event.recipes.create.mechanical_crafting('immersive_aircraft:gyrodyne', [ ' A ', ' B ', 'CCDDDCC', @@ -758,7 +786,7 @@ function registerImmersiveAircraftRecipes(event) { ' FDDDF ', ' B ', ' G ', - ],{ + ], { A: 'immersive_aircraft:enhanced_propeller', B: 'gtceu:long_wood_rod', C: 'immersive_aircraft:sail', @@ -768,7 +796,7 @@ function registerImmersiveAircraftRecipes(event) { G: 'gtceu:wrought_iron_double_ingot' }).id('tfg:immersive_aircraft/mechanical_crafter/gyrodyne') - event.recipes.create.mechanical_crafting('man_of_many_planes:economy_plane',[ + event.recipes.create.mechanical_crafting('man_of_many_planes:economy_plane', [ ' AABCBAA ', 'ADDBEBDDA', ' FGBHBGF ', @@ -788,7 +816,7 @@ function registerImmersiveAircraftRecipes(event) { H: 'create:steam_engine' }).id('tfg:man_of_many_planes/mechanical_crafter/economy_plane'); - event.recipes.create.mechanical_crafting('immersive_aircraft:biplane',[ + event.recipes.create.mechanical_crafting('immersive_aircraft:biplane', [ ' A ', 'BBBCBBB', ' BDB ', @@ -797,7 +825,7 @@ function registerImmersiveAircraftRecipes(event) { ' E ', ' BEB ', ' B ' - ],{ + ], { A: 'immersive_aircraft:enhanced_propeller', B: 'immersive_aircraft:hull', C: 'immersive_aircraft:steel_boiler', @@ -805,7 +833,7 @@ function registerImmersiveAircraftRecipes(event) { E: '#minecraft:logs' }).id('tfg:immersive_aircraft/mechanical_crafter/biplane') - event.recipes.create.mechanical_crafting('man_of_many_planes:scarlet_biplane',[ + event.recipes.create.mechanical_crafting('man_of_many_planes:scarlet_biplane', [ ' A ', ' B ', 'CCCDEDCCC', @@ -814,7 +842,7 @@ function registerImmersiveAircraftRecipes(event) { ' H ', ' CHC ', ' C ' - ],{ + ], { A: 'immersive_aircraft:enhanced_propeller', B: 'immersive_aircraft:nether_engine', C: 'immersive_aircraft:hull', @@ -825,7 +853,7 @@ function registerImmersiveAircraftRecipes(event) { H: 'tfc:metal/ingot/red_steel' }).id('tfg:man_of_many_planes/mechanical_crafter/scarlet_biplane') - event.recipes.create.mechanical_crafting('immersive_aircraft:bamboo_hopper',[ + event.recipes.create.mechanical_crafting('immersive_aircraft:bamboo_hopper', [ ' A A ', 'BBCBBBCBB', ' DEFED ', @@ -833,7 +861,7 @@ function registerImmersiveAircraftRecipes(event) { ' D D ', ' BBBGBBB ', ' B B ' - ],{ + ], { A: 'immersive_aircraft:enhanced_propeller', B: 'immersive_aircraft:hull', C: 'immersive_aircraft:steel_boiler', @@ -843,5 +871,53 @@ function registerImmersiveAircraftRecipes(event) { G: 'gtceu:double_aluminium_plate' }).id('tfg:immersive_aircraft/mechanical_crafter/bamboo_hopper') -//#endregion + //#endregion + + // Custom stuff + + //Scaffolding Frame + event.shaped('tfg:scaffolding_frame', + [ + ' A ', + 'ABA', + ' A ' + ], + { + A: '#forge:rods/wood', + B: '#forge:cloth' + }).id('tfg:shaped/scaffolding_frame'); + + //Airship Hull + event.shaped('tfg:airship_hull', [ + 'A B', + 'C C', + 'CCC' + ], { + A: '#forge:tools/screwdrivers', + B: '#forge:tools/hammers', + C: 'immersive_aircraft:hull' + }).id('tfg:shaped/airship_hull'); + event.recipes.gtceu.assembler('tfg:assembler/airship_hull') + .itemInputs('5x immersive_aircraft:hull') + .itemOutputs('tfg:airship_hull') + .duration(40) + .circuit(1) + .EUt(GTValues.VA[GTValues.ULV]); + + //Airship Balloon + event.shaped('tfg:airship_balloon', [ + 'ABA', + 'BAB', + 'ABA' + ], { + A: '#forge:string', + B: 'immersive_aircraft:sail' + }).id('tfg:shaped/airship_balloon') + + event.recipes.gtceu.assembler('tfg:assembler/airship_balloon') + .itemInputs('4x immersive_aircraft:sail', '4x #forge:string') + .itemOutputs('tfg:airship_balloon') + .duration(40) + .circuit(1) + .EUt(GTValues.VA[GTValues.ULV]) } \ No newline at end of file diff --git a/kubejs/server_scripts/macaws_for_tfc/recipes.js b/kubejs/server_scripts/macaws_for_tfc/recipes.js index 0f3d9282a..352f5cca6 100644 --- a/kubejs/server_scripts/macaws_for_tfc/recipes.js +++ b/kubejs/server_scripts/macaws_for_tfc/recipes.js @@ -6,11 +6,12 @@ * @param {Internal.RecipesEventJS} event */ function registerMacawsForTFCRecipes(event) { - event.replaceInput({ mod: 'mcw_tfc_aio' }, 'minecraft:stick', '#forge:rods/wooden') event.replaceInput({ mod: 'mcw_tfc_aio' }, 'minecraft:string', '#forge:string') event.replaceInput({ mod: 'mcw_tfc_aio' }, 'minecraft:glass', '#forge:glass') event.replaceInput({ mod: 'mcw_tfc_aio' }, 'minecraft:glass_pane', '#forge:glass_panes') + event.remove({ input: '@mcw_tfc_aio', type: 'gtceu:steam_boiler' }) + event.remove({ input: '@mcw_tfc_aio', type: 'gtceu:large_boiler' }) global.TFC_WOOD_TYPES.forEach(wood => { event.shaped(`8x mcw_tfc_aio:fences/${wood}_fences/${wood}_wired_fence`, [ @@ -22,4 +23,4 @@ function registerMacawsForTFCRecipes(event) { C: `tfc:wood/log/${wood}` }).id(`tfg:shaped/${wood}_wired_fence`) }) -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/main_server_script.js b/kubejs/server_scripts/main_server_script.js index d6a40181a..72e9e2bd8 100644 --- a/kubejs/server_scripts/main_server_script.js +++ b/kubejs/server_scripts/main_server_script.js @@ -11,9 +11,9 @@ ServerEvents.tags('item', event => { registerAFCItemTags(event) registerAlekiroofsItemTags(event) registerAlekishipsItemTags(event) + registerArthropocolypseItemTags(event) registerAsticorCartsItemTags(event) registerBeneathItemTags(event) - registerBetterEndItemTags(event) registerChalkItemTags(event); registerComputerCraftItemTags(event) registerConstructionWandItemTags(event) @@ -50,10 +50,10 @@ ServerEvents.tags('item', event => { registerSNSItemTags(event) registerSpeciesItemTags(event) registerTACZItemTags(event) - registerTFCAmbientalItemTags(event) registerTFCItemTags(event) registerTFCTextileItemTags(event) registerTFGItemTags(event) + registerTFGItemTagsNuclear(event) registerTFCLunchboxItemTags(event) registerVintageImprovementsItemTags(event) registerWABItemTags(event) @@ -91,6 +91,7 @@ ServerEvents.tags('block', event => { registerTACZBlockTags(event) registerTFCBlockTags(event) registerTFGBlockTags(event) + registerTFGBlockTagsNuclear(event) registerVintageImprovementsBlockTags(event) registerWABBlockTags(event) }) @@ -105,9 +106,11 @@ ServerEvents.tags('fluid', event => { registerCreateAdditionsFluidTags(event) registerGTCEUFluidTags(event) registerGreateFluidTags(event) + registerHotOrNotFluidTags(event) registerFirmaLifeFluidTags(event) registerTFCFluidTags(event) registerTFGFluidTags(event) + registerTFGFluidTagsNuclear(event) registerVintageImprovementsFluidTags(event) }) @@ -122,20 +125,17 @@ ServerEvents.tags('worldgen/placed_feature', event => { // Remove default veins event.removeAll('tfc:in_biome/veins') - registerAdAstraPlacedFeatures(event) - registerTFCPlacedFeatures(event) registerTFGPlacedFeatures(event) }) ServerEvents.tags('worldgen/biome', event => { registerAdAstraBiomeTags(event) registerCreatePickyWheelsBiomeTags(event) - registerTFCBiomeTags(event) registerTFGBiomeTags(event) }) ServerEvents.tags('entity_type', event => { - registerAdAstraEntityTypeTags(event) + registerTFGEntityTypeTags(event) registerWABEntityTypeTags(event) }) @@ -177,7 +177,7 @@ TFCEvents.data(event => { */ LootJS.modifiers((event) => { registerAdAstraLoots(event) - registerGTCEULoots(event) + registerTFGOreLoots(event) registerLootrLoots(event) registerPrimitiveCreaturesLoots(event) registerSpeciesLoots(event) @@ -208,12 +208,12 @@ ServerEvents.recipes(event => { registerAlekishipsRecipes(event) registerAE2Recipes(event) registerAFCRecipes(event) + registerArthropocolypseRecipes(event) registerAsticorCartsRecipes(event) registerAE2InsertExportCardRecipes(event) registerAE2NetworkAnalyzerRecipes(event) registerAE2WTLibRecipes(event) registerBeneathRecipes(event) - registerBetterEndRecipes(event) registerBuildingGadgetsRecipes(event) registerChalkRecipes(event); registerComfortsRecipes(event); @@ -266,7 +266,9 @@ ServerEvents.recipes(event => { registerTFCAmbientalRecipes(event) registerTFCBetterBFRecipes(event) registerTFCLunchBoxRecipes(event) + registerTFCScrapingRecipes(event) registerTFCGroomingStationRecipes(event) + registerTFCGurmanRecipes(event) registerTFGRecipes(event) registerTFCTextileRecipes(event) registerToolBeltRecipes(event) diff --git a/kubejs/server_scripts/minecraft/events.js b/kubejs/server_scripts/minecraft/events.js index 32d8af04b..3802c853d 100644 --- a/kubejs/server_scripts/minecraft/events.js +++ b/kubejs/server_scripts/minecraft/events.js @@ -3,11 +3,12 @@ PlayerEvents.tick(event => { // make levitation last shorter, so shulkers aren't so deadly on the moon - - if (event.player.hasEffect('minecraft:levitation')) { - event.server.scheduleInTicks(0, () => { }) - event.server.scheduleInTicks(40, () => { - event.player.removeEffect('minecraft:levitation') - }) + const { player } = event; + if (player.age % 20 === 0) { + if (event.player.hasEffect('minecraft:levitation')) { + if (event.player.getEffect('minecraft:levitation').getDuration() > 60) { + event.player.potionEffects.add('minecraft:levitation', 60, 0, true, true) + } + } } }); diff --git a/kubejs/server_scripts/minecraft/recipes.js b/kubejs/server_scripts/minecraft/recipes.js index f00f2a93d..2909ccf4d 100644 --- a/kubejs/server_scripts/minecraft/recipes.js +++ b/kubejs/server_scripts/minecraft/recipes.js @@ -8,27 +8,6 @@ const registerMinecraftRecipes = (event) => { removeMinecraftRecipes(event) - registerMinecraftDyeRecipes(event) - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: ЗСмля, dirt - - event.recipes.gtceu.macerator('dirt_from_bio_chaff') - .itemInputs('gtceu:bio_chaff') - .itemOutputs('tfc:dirt/loam') - .duration(300) - .EUt(4) - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π‘Ρ‚Π΅ΠΊΠ»ΠΎ, glass - - event.recipes.gtceu.arc_furnace('glass_from_sand') - .itemInputs('#forge:sand') - .itemOutputs('2x minecraft:glass') - .duration(20) - .EUt(30) - - //#endregion //#region Π”ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅, copper @@ -142,48 +121,6 @@ const registerMinecraftRecipes = (event) => { //#endregion - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π‘ΡƒΠΌΠ°Π³Π°, paper - - event.recipes.gtceu.chemical_bath('paper_from_papyrus_distilled') - .itemInputs('tfc:papyrus') - .inputFluids(Fluid.of('gtceu:distilled_water', 100)) - .itemOutputs('4x tfc:soaked_papyrus_strip') - .duration(100) - .EUt(7) - - event.recipes.gtceu.chemical_bath('paper_from_papyrus') - .itemInputs('tfc:papyrus') - .inputFluids("#tfg:clean_water 100") - .itemOutputs('4x tfc:soaked_papyrus_strip') - .duration(100) - .EUt(7) - - event.recipes.gtceu.assembler('papyrus_strips') - .itemInputs('4x tfc:soaked_papyrus_strip') - .itemOutputs('minecraft:paper') - .circuit(1) - .duration(100) - .EUt(7) - - //#endregion - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π‘Π°Ρ…Π°Ρ€, sugar - - event.recipes.gtceu.centrifuge('sugar_from_sugarcane') - .itemInputs('tfc:food/sugarcane') - .inputFluids("#tfg:clean_water 600") - .itemOutputs('minecraft:sugar', 'gtceu:plant_ball') - .duration(800) - .EUt(6) - - event.recipes.gtceu.centrifuge('sugar_from_honey') - .itemInputs('firmalife:raw_honey') - .itemOutputs('minecraft:sugar') - .duration(400) - .EUt(6) - - //#endregion - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π‘Π»ΠΎΠΊ сСна, hay block event.recipes.gtceu.packer('hay_block') @@ -350,6 +287,21 @@ const registerMinecraftRecipes = (event) => { .duration(100) .EUt(4) + event.shaped('2x minecraft:item_frame', [ + 'AAA', + 'ABA', + 'AAA' + ], { + A: '#tfc:lumber', + B: '#forge:cloth' + }).id('tfg:shaped/item_frame_from_cloth') + + event.recipes.gtceu.assembler('item_frame_cloth') + .itemInputs('8x #tfc:lumber', '#forge:cloth') + .itemOutputs('4x minecraft:item_frame') + .duration(100) + .EUt(4) + //#endregion //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π‘Π²Π΅Ρ‚ΠΎ-Ρ€Π°ΠΌΠΊΠ°, glowing item frame @@ -808,7 +760,6 @@ const registerMinecraftRecipes = (event) => { //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π­Π»ΠΈΡ‚Ρ€Π°, elytra - // Ну ΠΈ Ρ…Π΅Ρ€ΡŒ я ΠΏΡ€ΠΈΠ΄ΡƒΠΌΠ°Π», here's some bullshit i came up with event.recipes.gtceu.assembler('tfg:minecraft/elytra') .itemInputs('16x tfg:polycaprolactam_fabric', '16x #forge:foils/aluminium', '8x tfg:phantom_silk', '4x #forge:rings/aluminium', '2x #forge:rods/long/vanadium_steel', '2x #forge:small_springs/aluminium', '1x #forge:small_gears/aluminium') .circuit(4) @@ -846,16 +797,6 @@ const registerMinecraftRecipes = (event) => { //#endregion - //#region Glowstone - - event.recipes.gtceu.mixer('gtceu:lv_glowstone') - .itemInputs('gtceu:gold_dust', 'minecraft:redstone', 'gtceu:sulfur_dust') - .itemOutputs('2x minecraft:glowstone_dust') - .circuit(8) - .duration(1200) - .EUt(30) - - //#endregion //#region Netherite leggings (for the lavaproof diving set) @@ -872,6 +813,21 @@ const registerMinecraftRecipes = (event) => { //#endregion + //#region Netherite Boots (for the lavaproof diving set) + + event.recipes.tfc.advanced_shaped_crafting( + TFC.itemStackProvider.of('minecraft:netherite_boots').copyForgingBonus(), [ + 'ABA', + 'CDC' + ], { + A: '#forge:screws/blue_steel', + B: 'tfc:metal/boots/blue_steel', + C: '#forge:plates/blue_steel', + D: 'beneath:cursed_hide' + }, 0, 1).id('tfg:minecraft/shaped/netherite_boots') + + //#endregion + //#region Scaffoldings event.remove({ output: 'minecraft:scaffolding' }) @@ -901,14 +857,6 @@ const registerMinecraftRecipes = (event) => { generateCutterRecipe(event, '#forge:double_plates/wrought_iron', 'minecraft:iron_door', 400, GTValues.VA[GTValues.LV], 'iron_door') - event.shaped('8x minecraft:ladder', [ - 'A A', - 'AAA', - 'A A' - ], { - A: '#forge:rods/wooden' - }).id('gtceu:shaped/ladder') - // #endregion // #region Calcite @@ -988,19 +936,6 @@ const registerMinecraftRecipes = (event) => { event.smelting('tfc:glue', 'minecraft:magma_cream') .id('tfg:smelting/magma_cream_to_glue') - //#region Clay - event.shaped('minecraft:clay', [ - 'AA', - 'AA' - ], { - A: 'minecraft:clay_ball' - }) - .id('tfg:shaped/clay_balls_to_block') - - event.shapeless('4x minecraft:clay_ball', ['minecraft:clay']) - .id('tfg:shapeless/clay_block_to_balls') - - //#endregion //#region Mushrooms @@ -1010,27 +945,15 @@ const registerMinecraftRecipes = (event) => { event.shapeless('4x minecraft:brown_mushroom', ['minecraft:brown_mushroom_block', '#forge:tools/knives']) .id('tfg:shapeless/cut_brown_mushroom_block') - event.recipes.gtceu.compressor('tfg:red_mushroom') - .itemInputs('4x minecraft:red_mushroom') - .itemOutputs('minecraft:red_mushroom_block') - .duration(20) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.compressor('tfg:brown_mushroom') - .itemInputs('4x minecraft:brown_mushroom') - .itemOutputs('minecraft:brown_mushroom_block') - .duration(20) - .EUt(GTValues.VA[GTValues.ULV]) - event.recipes.gtceu.chemical_bath('tfg:red_mushroom_to_shroomlight') - .itemInputs('minecraft:red_mushroom_block') + .itemInputs('4x minecraft:red_mushroom') .inputFluids(Fluid.of('gtceu:glowstone', 144)) .itemOutputs('minecraft:shroomlight') .duration(200) .EUt(GTValues.VA[GTValues.ULV]) event.recipes.gtceu.chemical_bath('tfg:brown_mushroom_to_shroomlight') - .itemInputs('minecraft:brown_mushroom_block') + .itemInputs('4x minecraft:brown_mushroom') .inputFluids(Fluid.of('gtceu:glowstone', 144)) .itemOutputs('minecraft:shroomlight') .duration(200) @@ -1061,32 +984,32 @@ const registerMinecraftRecipes = (event) => { //#region Glowing Ink Sacs event.recipes.gtceu.chemical_bath('minecraft:glow_inc_sac4') - .itemInputs("gtceu:thorium_dust", "4x #forge:dyes/black") + .itemInputs("gtceu:thorium_dust") .inputFluids(Fluid.of('gtceu:glowstone', 512)) .itemOutputs('16x minecraft:glow_ink_sac') .duration(20) - .EUt(GTValues.VA[GTValues.HV]) + .EUt(GTValues.VA[GTValues.LV]) event.recipes.gtceu.chemical_bath('minecraft:glow_inc_sac1') .itemInputs("#forge:dyes/black") .inputFluids(Fluid.of('gtceu:glowstone', 144)) .itemOutputs('minecraft:glow_ink_sac') .duration(40) - .EUt(GTValues.VA[GTValues.MV]) + .EUt(GTValues.VA[GTValues.LV]) //#endregion //#region Gunpowder - event.shapeless('4x minecraft:gunpowder', + event.shapeless('6x minecraft:gunpowder', ['#forge:tools/mortars', '2x #forge:dusts/saltpeter', '#forge:dusts/sulfur', '3x #forge:dusts/charcoal']) .id('tfg:shapeless/gunpowder_charcoal') - event.shapeless('4x minecraft:gunpowder', + event.shapeless('6x minecraft:gunpowder', ['#forge:tools/mortars', '2x #forge:dusts/saltpeter', '#forge:dusts/sulfur', '3x #forge:dusts/coal']) .id('tfg:shapeless/gunpowder_coal') - event.shapeless('4x minecraft:gunpowder', + event.shapeless('6x minecraft:gunpowder', ['#forge:tools/mortars', '2x #forge:dusts/saltpeter', '#forge:dusts/sulfur', '3x #forge:dusts/carbon']) .id('tfg:shapeless/gunpowder_carbon') diff --git a/kubejs/server_scripts/minecraft/recipes.removes.js b/kubejs/server_scripts/minecraft/recipes.removes.js index c48fac8cb..da3192bef 100644 --- a/kubejs/server_scripts/minecraft/recipes.removes.js +++ b/kubejs/server_scripts/minecraft/recipes.removes.js @@ -2083,4 +2083,6 @@ function removeMinecraftRecipes(event) { event.remove({ id: 'gtceu:assembler/lodestone' }) //#endregion + + event.remove({ id: 'minecraft:armor_stand' }) } \ No newline at end of file diff --git a/kubejs/server_scripts/minecraft/tags.js b/kubejs/server_scripts/minecraft/tags.js index 5e866482f..5e5e68334 100644 --- a/kubejs/server_scripts/minecraft/tags.js +++ b/kubejs/server_scripts/minecraft/tags.js @@ -26,67 +26,15 @@ const registerMinecraftItemTags = (event) => { event.add('tfg:bamboo_slabs', 'minecraft:bamboo_mosaic_slab') event.remove('minecraft:creeper_drop_music_discs', ['minecraft:music_disc_11']) - event.add('tfc:foods', 'minecraft:red_mushroom') - event.add('tfc:foods', 'minecraft:brown_mushroom') - event.add('tfc:foods', 'minecraft:glow_berries') - event.add('tfc:foods', 'minecraft:chorus_fruit') - event.add('tfc:foods', 'minecraft:popped_chorus_fruit') - - event.add('tfc:foods/vegetables', 'minecraft:red_mushroom') - event.add('tfc:foods/vegetables', 'minecraft:brown_mushroom') - event.add('tfc:foods/fruits', 'minecraft:glow_berries') - event.add('tfc:foods/fruits', 'minecraft:chorus_fruit') - event.add('tfc:foods/fruits', 'minecraft:popped_chorus_fruit') - - event.add('beneath:usable_in_juicer', 'minecraft:glow_berries') - event.add('beneath:usable_in_juicer', 'minecraft:chorus_fruit') - event.add('beneath:usable_in_juicer', 'minecraft:red_mushroom') - event.add('beneath:usable_in_juicer', 'minecraft:brown_mushroom') - - event.add('tfc:foods/usable_in_soup', 'minecraft:red_mushroom') - event.add('tfc:foods/usable_in_soup', 'minecraft:brown_mushroom') - event.add('tfc:foods/usable_in_soup', 'minecraft:glow_berries') - event.add('tfc:foods/usable_in_soup', 'minecraft:chorus_fruit') - event.add('tfc:foods/usable_in_soup', 'minecraft:popped_chorus_fruit') - - event.add('tfc:foods/usable_in_salad', 'minecraft:red_mushroom') - event.add('tfc:foods/usable_in_salad', 'minecraft:brown_mushroom') - event.add('tfc:foods/usable_in_salad', 'minecraft:glow_berries') - event.add('tfc:foods/usable_in_salad', 'minecraft:chorus_fruit') - event.add('tfc:foods/usable_in_salad', 'minecraft:popped_chorus_fruit') - - event.add('tfc:rabbit_food', 'minecraft:chorus_fruit') - event.add('tfc:rabbit_food', 'minecraft:popped_chorus_fruit') - - event.add('tfc:rock/raw', 'minecraft:deepslate') - event.add('tfc:rock/raw', 'minecraft:blackstone') - event.add('tfc:rock/raw', 'minecraft:dripstone_block') event.remove('forge:gems', 'minecraft:charcoal') event.remove('forge:gems', 'minecraft:coal') event.remove('forge:gems', 'minecraft:flint') - event.add('tfc:compost_greens', 'minecraft:red_mushroom_block') - event.add('tfc:compost_greens', 'minecraft:brown_mushroom_block') - event.add('tfc:compost_greens', 'minecraft:mushroom_stem') - event.add('tfc:compost_greens', 'minecraft:moss_block') - event.add('tfc:compost_greens_low', 'minecraft:moss_carpet') - event.add('tfc:compost_greens_low', 'minecraft:twisting_vines') - event.add('tfc:compost_greens_high', 'minecraft:pearlescent_froglight') - event.add('tfc:compost_greens_high', 'minecraft:verdant_froglight') - event.add('tfc:compost_greens_high', 'minecraft:ochre_froglight') - //event.add('tfc:moss', 'minecraft:moss_carpet') - event.remove('createaddition:plants', 'minecraft:moss_carpet') - event.add('tfc:colored_terracotta', 'minecraft:white_terracotta') event.add('tfc:bells', 'minecraft:bell') - event.add('tfc:plants', 'minecraft:spore_blossom') - - event.add('tfc:compost_greens', 'minecraft:nether_wart_block') - event.add('tfc:compost_greens', 'minecraft:warped_wart_block') - event.add('tfc:hematitic_sand', 'minecraft:red_sand') event.add('tfc:makes_black_dye', 'minecraft:ink_sac') @@ -95,7 +43,6 @@ const registerMinecraftItemTags = (event) => { event.add('create:blaze_burner_fuel/regular', 'minecraft:coal') event.add('create:blaze_burner_fuel/regular', 'minecraft:charcoal') - event.add('minecraft:wart_blocks', 'minecraft:mushroom_stem') } const registerMinecraftBlockTags = (event) => { @@ -105,99 +52,9 @@ const registerMinecraftBlockTags = (event) => { // Stops saws from being able to pick up ice event.remove('minecraft:ice', 'minecraft:ice') + event.remove('minecraft:ice', 'tfc:sea_ice') // Π’Π΅ΠΏΠ΅Ρ€ΡŒ обсидиан сторадТ Π±Π»ΠΎΠΊ event.add('forge:storage_blocks/obsidian', 'minecraft:obsidian') - //#region Nether blocks - - event.add('tfg:lush_ground_replaceable', 'minecraft:deepslate') - event.add('tfg:lush_ground_replaceable', 'minecraft:blackstone') - - event.add('tfc:rock/raw', 'minecraft:deepslate') - event.add('tfc:rock/raw', 'minecraft:blackstone') - event.add('tfc:rock/raw', 'minecraft:dripstone_block') - event.add('forge:cobblestone/normal', 'minecraft:cobbled_deepslate') - event.add('minecraft:lush_ground_replaceable', 'minecraft:blackstone') - event.add('beneath:nether_bush_plantable_on', 'minecraft:blackstone') - event.add('beneath:nether_bush_plantable_on', 'minecraft:deepslate') - event.add('beneath:nether_bush_plantable_on', 'minecraft:moss_block') - event.add('beneath:nether_bush_plantable_on', 'minecraft:dripstone_block') - event.add('minecraft:nether_carver_replaceables', 'minecraft:blackstone') - event.add('minecraft:nether_carver_replaceables', 'minecraft:deepslate') - event.add('minecraft:nether_carver_replaceables', 'minecraft:dripstone_block') - event.add('minecraft:frogs_spawnable_on', 'minecraft:deepslate') - event.add('minecraft:frogs_spawnable_on', 'minecraft:blackstone') - event.add('minecraft:frogs_spawnable_on', 'minecraft:dripstone_block') - event.add('minecraft:axolotls_spawnable_on', 'minecraft:deepslate') - event.add('minecraft:axolotls_spawnable_on', 'minecraft:dripstone_block') - event.add('tfc:grass_plantable_on', 'minecraft:moss_block') - event.add('tfc:creeping_plantable_on', 'minecraft:moss_block') - event.add('tfc:creeping_plantable_on', 'minecraft:deepslate') - event.add('tfc:creeping_plantable_on', 'minecraft:blackstone') - event.add('tfc:creeping_stone_plantable_on', 'minecraft:moss_block') - event.add('tfc:creeping_stone_plantable_on', 'minecraft:deepslate') - event.add('tfc:creeping_stone_plantable_on', 'minecraft:blackstone') - event.add('minecraft:base_stone_nether', 'minecraft:deepslate') - event.add('minecraft:base_stone_nether', 'minecraft:blackstone') - event.add('minecraft:base_stone_nether', 'minecraft:dripstone_block') - event.add('forge:stone', 'minecraft:blackstone') - - event.add('tfc:can_landslide', 'minecraft:cobbled_deepslate') - - event.add('tfc:breaks_when_isolated', 'minecraft:deepslate') - event.add('tfc:breaks_when_isolated', 'minecraft:blackstone') - event.add('tfc:breaks_when_isolated', 'minecraft:gilded_blackstone') - event.add('tfc:breaks_when_isolated', 'minecraft:dripstone_block') - - event.add('tfg:rock_stairs', 'minecraft:cobbled_deepslate_stairs') - event.add('tfg:rock_slabs', 'minecraft:cobbled_deepslate_slab') - event.add('tfg:rock_walls', 'minecraft:cobbled_deepslate_wall') - event.add('tfg:brick_stairs', 'minecraft:deepslate_brick_stairs') - event.add('tfg:brick_slabs', 'minecraft:deepslate_brick_slab') - event.add('tfg:brick_walls', 'minecraft:deepslate_brick_wall') - event.add('tfg:brick_stairs', 'minecraft:deepslate_tile_stairs') - event.add('tfg:brick_slabs', 'minecraft:deepslate_tile_slab') - event.add('tfg:brick_walls', 'minecraft:deepslate_tile_wall') - event.add('tfg:rock_stairs', 'minecraft:blackstone_stairs') - event.add('tfg:rock_slabs', 'minecraft:blackstone_slab') - event.add('tfg:rock_walls', 'minecraft:blackstone_wall') - event.add('tfg:brick_stairs', 'minecraft:blackstone_stairs') - event.add('tfg:brick_slabs', 'minecraft:blackstone_slab') - event.add('tfg:brick_walls', 'minecraft:blackstone_wall') - - event.add('tfc:bloomery_insulation', 'minecraft:polished_deepslate'); - event.add('tfc:forge_insulation', 'minecraft:polished_deepslate'); - event.add('tfc:bloomery_insulation', 'minecraft:polished_blackstone'); - event.add('tfc:forge_insulation', 'minecraft:polished_blackstone'); - event.add('tfc:bloomery_insulation', 'minecraft:deepslate_tiles'); - event.add('tfc:forge_insulation', 'minecraft:deepslate_tiles'); - event.add('tfc:bloomery_insulation', 'minecraft:cracked_deepslate_tiles'); - event.add('tfc:forge_insulation', 'minecraft:cracked_deepslate_tiles'); - event.add('tfc:bloomery_insulation', 'minecraft:chiseled_deepslate'); - event.add('tfc:forge_insulation', 'minecraft:chiseled_deepslate'); - event.add('tfc:bloomery_insulation', 'minecraft:chiseled_polished_blackstone'); - event.add('tfc:forge_insulation', 'minecraft:chiseled_polished_blackstone'); - event.add('tfc:bloomery_insulation', 'minecraft:gilded_blackstone'); - event.add('tfc:forge_insulation', 'minecraft:gilded_blackstone'); - event.add('tfc:bloomery_insulation', 'minecraft:basalt'); - event.add('tfc:forge_insulation', 'minecraft:basalt'); - event.add('tfc:bloomery_insulation', 'minecraft:smooth_basalt'); - event.add('tfc:forge_insulation', 'minecraft:smooth_basalt'); - - event.add('minecraft:mineable/pickaxe', 'minecraft:lantern'); - - event.add('minecraft:mineable/pickaxe', 'minecraft:cobweb'); - event.add('minecraft:mineable/hoe', 'minecraft:cobweb'); - event.add('minecraft:mineable/shovel', 'minecraft:cobweb'); - event.add('minecraft:mineable/axe', 'minecraft:cobweb'); - - //#region - - event.removeAll('minecraft:sniffer_diggable_block') - - event.add('tfc:can_be_snow_piled', 'minecraft:crimson_fungus') - event.add('tfc:can_be_snow_piled', 'minecraft:warped_fungus') - event.add('tfc:can_be_snow_piled', 'minecraft:torchflower') - event.add('tfc:can_be_snow_piled', 'minecraft:pitcher_plant') } \ No newline at end of file diff --git a/kubejs/server_scripts/more_red/recipes.js b/kubejs/server_scripts/more_red/recipes.js index e4ac1eacf..b1a1a4a15 100644 --- a/kubejs/server_scripts/more_red/recipes.js +++ b/kubejs/server_scripts/more_red/recipes.js @@ -46,10 +46,10 @@ const registerMoreRedRecipes = (event) => { .addMaterialInfo(true) // Red Wire Post - event.recipes.gtceu.shaped('2x morered:redwire_post', ['A', 'B'], { + event.shaped('2x morered:redwire_post', ['A', 'B'], { A: '#forge:rods/wrought_iron', B: '#forge:fine_wires/red_alloy' - }).addMaterialInfo().id('tfg:crafting/red_wire_post') + }).id('tfg:crafting/red_wire_post') // Red Wire Post Plate event.recipes.gtceu.assembler('tfg/morered/red_wire_post_plate') diff --git a/kubejs/server_scripts/primitive_creatures/loot.js b/kubejs/server_scripts/primitive_creatures/loot.js index d71855fc6..bbb54d19f 100644 --- a/kubejs/server_scripts/primitive_creatures/loot.js +++ b/kubejs/server_scripts/primitive_creatures/loot.js @@ -6,13 +6,13 @@ function registerPrimitiveCreaturesLoots(event) { // kaolin klayze event.addEntityLootModifier('primitive_creatures:tfc') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([12,16], ['tfc:kaolin_clay', 'minecraft:clay_ball']) + .addWeightedLoot([12, 16], ['tfc:kaolin_clay', 'minecraft:clay_ball']) .addLoot('tfc:plant/blood_lily') // graphite glayze event.addEntityLootModifier('primitive_creatures:golem_2') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([2,4], ['gtceu:rich_raw_graphite']) + .addWeightedLoot([2, 4], ['gtceu:rich_raw_graphite']) const CLOTHING_DROP_RATE = 0.1 @@ -20,7 +20,7 @@ function registerPrimitiveCreaturesLoots(event) { // forager - light tan clothes, holds a stone axe event.addEntityLootModifier('primitive_creatures:iloger_1') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) .addWeightedLoot([ // the illusion of randomness Item.of('tfc:food/bunchberry', 3), @@ -35,7 +35,7 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc:food/strawberry', 4), Item.of('tfc:food/wintergreen_berry', 5)]) .addAlternativesLoot( - LootEntry.of('gtceu:cobalt_brass_hoe').damage([0.3, 0.9]).when(c => c.randomChance(0.1)), + LootEntry.of('gtceu:cobalt_brass_hoe').damage([0.2, 0.5]).when(c => c.randomChance(0.1)), LootEntry.of('sns:straw_basket').when(c => c.randomChance(0.3)), LootEntry.of('primitive_creatures:totem_0').when(c => c.randomChance(0.05)), LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.05)), @@ -47,17 +47,14 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:raw_shirt'), Item.of('tfc_textile:raw_pants'), Item.of('tfc_textile:raw_socks')]) - event.addEntityLootModifier('primitive_creatures:iloger_1') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // herbalist - brown clothes with a mask that looks like a Creaking event.addEntityLootModifier('primitive_creatures:iloger_2') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) - .addWeightedLoot([3,4], ['gtceu:tricalcium_phosphate_dust']) + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([3, 4], ['gtceu:tricalcium_phosphate_dust']) .addAlternativesLoot( - LootEntry.of('gtceu:cobalt_brass_mortar').damage([0.3, 0.9]).when(c => c.randomChance(0.3)), + LootEntry.of('gtceu:cobalt_brass_knife').damage([0.2, 0.5]).when(c => c.randomChance(0.3)), LootEntry.of('primitive_creatures:totem_0').when(c => c.randomChance(0.05)), LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.05)), LootEntry.of('firmalife:beeswax')) @@ -68,18 +65,15 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:grizzly_bear_shirt'), Item.of('tfc_textile:grizzly_bear_pants'), Item.of('tfc_textile:grizzly_bear_boots')]) - event.addEntityLootModifier('primitive_creatures:iloger_2') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // bonebreaker - skull helmet, bone armor? hits harder, has knockback event.addEntityLootModifier('primitive_creatures:iloger_3') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) - .addWeightedLoot([0,2], ['minecraft:flint']) - .addWeightedLoot([1,3], ['minecraft:bone']) + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([0, 2], ['minecraft:flint']) + .addWeightedLoot([1, 3], ['minecraft:bone']) .addAlternativesLoot( - LootEntry.of('gtceu:cobalt_brass_shovel').damage([0.3, 0.9]).when(c => c.randomChance(0.5)), + LootEntry.of('gtceu:cobalt_brass_shovel').damage([0.2, 0.5]).when(c => c.randomChance(0.5)), LootEntry.of('minecraft:skeleton_skull').when(c => c.randomChance(0.3)), LootEntry.of('primitive_creatures:grh')) // battered wool event.addEntityLootModifier('primitive_creatures:iloger_3') @@ -89,18 +83,15 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:direwolf_shirt'), Item.of('tfc_textile:direwolf_pants'), Item.of('tfc_textile:direwolf_boots')]) - event.addEntityLootModifier('primitive_creatures:iloger_3') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // ambusher - leaf on head, leafy clothes (like the swamp vanilla villager type), ranged with poison event.addEntityLootModifier('primitive_creatures:iloger_4') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([8,12], LootEntry.of('minecraft:tipped_arrow')).addPotion("poison") - .addWeightedLoot([4,8], ['firmalife:food/nightshade_berry']) - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([8, 12], LootEntry.of('minecraft:tipped_arrow')).addPotion("poison") + .addWeightedLoot([4, 8], ['firmalife:food/nightshade_berry']) + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) .addAlternativesLoot( - LootEntry.of('minecraft:bow').damage([0.3, 0.9]).when(c => c.randomChance(0.5)), + LootEntry.of('minecraft:bow').damage([0.2, 0.5]).when(c => c.randomChance(0.5)), LootEntry.of('primitive_creatures:totem_0').when(c => c.randomChance(0.05)), LootEntry.of('primitive_creatures:totem_2').when(c => c.randomChance(0.05)), LootEntry.of('sns:quiver')) @@ -111,15 +102,12 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:crocodile_shirt'), Item.of('tfc_textile:crocodile_pants'), Item.of('tfc_textile:crocodile_boots')]) - event.addEntityLootModifier('primitive_creatures:iloger_4') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // hunter - wears brown and white fur, briefly disappears when hit, ranged with weakness event.addEntityLootModifier('primitive_creatures:iloger_5') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([8,12], LootEntry.of('minecraft:tipped_arrow')).addPotion("weakness") - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([8, 12], LootEntry.of('minecraft:tipped_arrow')).addPotion("weakness") + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) .addAlternativesLoot( // placeholder for a blowpipe LootEntry.of('minecraft:bamboo').when(c => c.randomChance(0.5)), @@ -133,18 +121,15 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:sabertooth_shirt'), Item.of('tfc_textile:sabertooth_pants'), Item.of('tfc_textile:sabertooth_boots')]) - event.addEntityLootModifier('primitive_creatures:iloger_5') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // shaman - yellow clothes, throws fireballs event.addEntityLootModifier('primitive_creatures:iloger_6') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) - .addWeightedLoot([1,2], ['primitive_creatures:f_1']) // primitive explosives - .addWeightedLoot([1,3], ['minecraft:gunpowder']) + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([1, 2], ['primitive_creatures:f_1']) // primitive explosives + .addWeightedLoot([2, 4], ['minecraft:gunpowder']) .addAlternativesLoot( - LootEntry.of('gtceu:cobalt_brass_mortar').damage([0.5, 0.9]).when(c => c.randomChance(0.3)), + LootEntry.of('gtceu:cobalt_brass_mortar').damage([0.2, 0.5]).when(c => c.randomChance(0.3)), LootEntry.of('primitive_creatures:totem_2').when(c => c.randomChance(0.05)), LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.05)), LootEntry.of('primitive_creatures:grh')) // battered wool @@ -155,17 +140,14 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:cougar_shirt'), Item.of('tfc_textile:cougar_pants'), Item.of('tfc_textile:cougar_boots')]) - event.addEntityLootModifier('primitive_creatures:iloger_6') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // beast tamer - wears tiger fur, holds vanilla sugarcane? fucking summons ravagers event.addEntityLootModifier('primitive_creatures:wiloger') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) - .addWeightedLoot([0,2], ['primitive_creatures:grh']) // battered wool + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([0, 2], ['primitive_creatures:grh']) // battered wool .addAlternativesLoot( - LootEntry.of('gtceu:cobalt_brass_butchery_knife').damage([0.3, 0.9]).when(c => c.randomChance(0.3)), + LootEntry.of('gtceu:cobalt_brass_butchery_knife').damage([0.2, 0.5]).when(c => c.randomChance(0.3)), LootEntry.of('primitive_creatures:totem_0').when(c => c.randomChance(0.05)), LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.05)), LootEntry.of('minecraft:lead')) @@ -176,14 +158,11 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:tiger_shirt'), Item.of('tfc_textile:tiger_pants'), Item.of('tfc_textile:tiger_boots')]) - event.addEntityLootModifier('primitive_creatures:wiloger') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // warrior - lion fur, holds flint club - stuns you in place when hit event.addEntityLootModifier('primitive_creatures:piloger_9') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) .addAlternativesLoot( LootEntry.of('primitive_creatures:yhgi').when(c => c.randomChance(0.8)), // flint club LootEntry.of('tfc:small_raw_hide').when(c => c.randomChance(0.4)), @@ -195,17 +174,14 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:lion_shirt'), Item.of('tfc_textile:lion_pants'), Item.of('tfc_textile:lion_boots')]) - event.addEntityLootModifier('primitive_creatures:piloger_9') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // mercenary event.addEntityLootModifier('primitive_creatures:viloger_10') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) - .addWeightedLoot([1,2], ['minecraft:emerald']) + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([2, 4], ['minecraft:emerald']) .addAlternativesLoot( - LootEntry.of('gtceu:cobalt_brass_knife').damage([0.3, 0.7]).when(c => c.randomChance(0.3)), + LootEntry.of('gtceu:cobalt_brass_knife').damage([0.2, 0.5]).when(c => c.randomChance(0.3)), LootEntry.of('primitive_creatures:totem_2').when(c => c.randomChance(0.05)), LootEntry.of('primitive_creatures:totem_3').when(c => c.randomChance(0.05)), LootEntry.of('primitive_creatures:grh')) // battered wool) @@ -216,19 +192,16 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:raw_shirt'), Item.of('tfc_textile:raw_pants'), Item.of('tfc_textile:raw_socks')]) - event.addEntityLootModifier('primitive_creatures:viloger_10') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // huntmaster - miniboss event.addEntityLootModifier('primitive_creatures:nahida') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) .addWeightedLoot([ - LootEntry.of('gtceu:cobalt_brass_spade').damage([0.85, 1]), - LootEntry.of('gtceu:cobalt_brass_sickle').damage([0.85, 1]), - LootEntry.of('gtceu:cobalt_brass_mining_hammer').damage([0.85, 1]), - LootEntry.of('gtceu:cobalt_brass_sword').damage([0.85, 1])]) + Item.of('gtceu:cobalt_brass_spade', '{Damage:0,DisallowContainerItem:0b,GT.Behaviours:{AoEColumn:1,AoELayer:0,AoERow:1,MaxAoEColumn:1,MaxAoELayer:0,MaxAoERow:1},GT.Tool:{AttackDamage:3.5f,AttackSpeed:-3.4f,DefaultEnchantments:[],HarvestLevel:2,MaxDamage:18431,ToolSpeed:5.0f},HideFlags:2}'), + Item.of('gtceu:cobalt_brass_scythe', '{Damage:0,DisallowContainerItem:0b,GT.Behaviours:{AoEColumn:2,AoELayer:2,AoERow:2,MaxAoEColumn:2,MaxAoELayer:2,MaxAoERow:2},GT.Tool:{AttackDamage:7.0f,AttackSpeed:-3.2f,DefaultEnchantments:[],HarvestLevel:2,MaxDamage:18431,ToolSpeed:6.5f},HideFlags:2}'), + Item.of('gtceu:cobalt_brass_mining_hammer', '{Damage:0,DisallowContainerItem:0b,GT.Behaviours:{AoEColumn:1,AoELayer:0,AoERow:1,MaxAoEColumn:1,MaxAoELayer:0,MaxAoERow:1,TorchPlacing:1b},GT.Tool:{AttackDamage:3.5f,AttackSpeed:-3.4f,DefaultEnchantments:[],HarvestLevel:2,MaxDamage:18431,ToolSpeed:5.0f},HideFlags:2}'), + Item.of('gtceu:cobalt_brass_sword')]) event.addEntityLootModifier('primitive_creatures:nahida') .addWeightedLoot([ Item.of('sns:leather_sack'), @@ -246,16 +219,14 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:panther_shirt'), Item.of('tfc_textile:panther_pants'), Item.of('tfc_textile:panther_boots')]) - event.addEntityLootModifier('primitive_creatures:nahida') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // berserker - guy with celtic blue face paint event.addEntityLootModifier('primitive_creatures:iloger_10') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([5, 8], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) .addWeightedLoot([ - LootEntry.of('gtceu:cobalt_brass_sword').damage([0.85, 1]), + Item.of('gtceu:cobalt_brass_sword'), + Item.of('gtceu:cobalt_brass_axe', '{Damage:0,DisallowContainerItem:0b,GT.Behaviours:{DisableShields:1b,TreeFelling:1b},GT.Tool:{AttackDamage:7.0f,AttackSpeed:-3.4f,DefaultEnchantments:[],HarvestLevel:2,MaxDamage:6143,ToolSpeed:4.5f},HideFlags:2}'), LootEntry.of('sns:burlap_sack'), LootEntry.of('sns:seed_pouch'), LootEntry.of('sns:ore_sack')]) @@ -266,18 +237,14 @@ function registerPrimitiveCreaturesLoots(event) { Item.of('tfc_textile:sabertooth_shirt'), Item.of('tfc_textile:sabertooth_pants'), Item.of('tfc_textile:sabertooth_boots')]) - event.addEntityLootModifier('primitive_creatures:iloger_10') - .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([2, 4], ['tfg:food/raw_long_pig_filet']) // mistah beeeaaaasssstt event.addEntityLootModifier('primitive_creatures:beast') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([20, 30], ['tfg:food/raw_long_pig_filet']) - .addWeightedLoot([12,16], ['minecraft:bone']) - .addWeightedLoot([2,3], ['tfc:large_raw_hide']) - .addWeightedLoot([4,6], ['tfc:blubber']) + .addWeightedLoot([4, 6], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([6, 9], ['minecraft:bone']) + .addWeightedLoot([1, 2], ['tfc:large_raw_hide']) event.addEntityLootModifier('primitive_creatures:beast') .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([10, 15], ['tfg:food/raw_long_pig_filet']) + .addWeightedLoot([2, 3], ['tfg:food/raw_long_pig_filet']) } \ No newline at end of file diff --git a/kubejs/server_scripts/primitive_creatures/tags.js b/kubejs/server_scripts/primitive_creatures/tags.js index 501c74bac..cfe6e253e 100644 --- a/kubejs/server_scripts/primitive_creatures/tags.js +++ b/kubejs/server_scripts/primitive_creatures/tags.js @@ -30,4 +30,8 @@ function registerPrimitiveCreaturesItemTags(event) { event.add('primitive_creatures:mercenary_payment', 'minecraft:spider_eye') event.add('primitive_creatures:mercenary_payment', 'minecraft:flint') event.add('primitive_creatures:mercenary_payment', 'minecraft:emerald') + + // Flint clubs + event.add('tfc:usable_on_tool_rack', 'primitive_creatures:yhgi') + event.add('tfc:usable_on_tool_rack', 'primitive_creatures:reh') } \ No newline at end of file diff --git a/kubejs/server_scripts/railways/recipes.js b/kubejs/server_scripts/railways/recipes.js index 4efb3f49b..866d4be89 100644 --- a/kubejs/server_scripts/railways/recipes.js +++ b/kubejs/server_scripts/railways/recipes.js @@ -67,6 +67,14 @@ const registerRailWaysRecipes = (event) => { .EUt(28) .addMaterialInfo(true) + event.recipes.gtceu.assembler(`tfg:railways/wooden_headstock_screwlink_coupler`) + .itemInputs(`railways:screwlink_coupler`, `#minecraft:wooden_slabs`) + .circuit(1) + .itemOutputs(`railways:wooden_headstock_screwlink_coupler`) + .duration(200) + .EUt(28) + .addMaterialInfo(true) + event.recipes.gtceu.assembler(`tfg:railways/buffer`) .itemInputs(`6x #forge:rods/long/steel`, `2x railways:small_buffer`) .circuit(1) @@ -133,6 +141,43 @@ const registerRailWaysRecipes = (event) => { //#endregion + //portable fuel interface + event.shaped('railways:portable_fuel_interface', [ + 'C ', + 'BAD', + ], { + A: 'create:portable_fluid_interface', + B: 'create:railway_casing', + C: '#forge:tools/wrenches', + D: 'create_factory_logistics:fluid_mechanism', + }).id('tfg:railways/shaped/portable_fuel_interface') + + event.recipes.gtceu.assembler('tfg:railways/portable_fuel_interface') + .itemInputs('create:portable_fluid_interface', 'create:railway_casing', 'create_factory_logistics:fluid_mechanism') + .circuit(1) + .itemOutputs('railways:portable_fuel_interface') + .duration(200) + .EUt(28) + + //fuel tank + event.shaped('railways:fuel_tank', [ + 'CE ', + 'BAD', + ], { + A: 'create:fluid_tank', + B: 'create:railway_casing', + C: '#forge:tools/screwdrivers', + D: 'create:electron_tube', + E: 'firmalife:reinforced_glass', + }).id('tfg:railways/shaped/fuel_tank') + + event.recipes.gtceu.assembler('tfg:railways/fuel_tank') + .itemInputs ('create:fluid_tank', 'create:railway_casing', 'create:electron_tube', 'firmalife:reinforced_glass') + .circuit(1) + .itemOutputs('railways:fuel_tank') + .duration(200) + .EUt(28) + // ΠŸΠ΅Ρ€Π΅ΠΊΠ»ΡŽΡ‡Π°Ρ‚Π΅Π»ΡŒ ΠΏΡƒΡ‚ΠΈ ΠΏΠΎΠ΅Π·Π΄Π° ΠΈΠ· Π°Π½Π΄Π΅Π·ΠΈΡ‚Π° event.shaped('railways:track_switch_andesite', [ 'BAB', @@ -216,13 +261,13 @@ const registerRailWaysRecipes = (event) => { 'DA ' ], { A: '#forge:storage_blocks/charcoal', - B: '#forge:bolts/black_steel', - C: '#forge:plates/black_steel', + B: '#forge:bolts/iron', + C: '#forge:plates/iron', D: '#forge:tools/hammers' }).id('tfg:railways/shaped/smokestack_caboosestyle') event.recipes.gtceu.assembler('tfg:railways/smokestack_caboosestyle') - .itemInputs('#forge:storage_blocks/charcoal', '2x #forge:bolts/black_steel', '#forge:plates/black_steel') + .itemInputs('#forge:storage_blocks/charcoal', '2x #forge:bolts/iron', '#forge:plates/iron') .circuit(4) .itemOutputs('railways:smokestack_caboosestyle') .duration(200) @@ -234,12 +279,12 @@ const registerRailWaysRecipes = (event) => { 'BAB' ], { A: '#forge:storage_blocks/charcoal', - B: '#forge:bolts/black_steel', + B: '#forge:bolts/iron', C: '#forge:tools/hammers' }).id('tfg:railways/shaped/smokestack_long') event.recipes.gtceu.assembler('tfg:railways/smokestack_long') - .itemInputs('#forge:storage_blocks/charcoal', '2x #forge:bolts/black_steel') + .itemInputs('#forge:storage_blocks/charcoal', '2x #forge:bolts/iron') .circuit(5) .itemOutputs('railways:smokestack_long') .duration(200) @@ -252,12 +297,12 @@ const registerRailWaysRecipes = (event) => { 'BAB' ], { A: '#forge:storage_blocks/charcoal', - B: '#forge:plates/black_steel', + B: '#forge:plates/iron', C: '#forge:tools/hammers' }).id('tfg:railways/shaped/smokestack_coalburner') event.recipes.gtceu.assembler('tfg:railways/smokestack_coalburner') - .itemInputs('#forge:storage_blocks/charcoal', '6x #forge:plates/black_steel') + .itemInputs('#forge:storage_blocks/charcoal', '6x #forge:plates/iron') .circuit(6) .itemOutputs('railways:smokestack_coalburner') .duration(200) @@ -269,12 +314,12 @@ const registerRailWaysRecipes = (event) => { 'BAB' ], { A: '#forge:storage_blocks/charcoal', - B: '#forge:plates/black_steel', + B: '#forge:plates/iron', C: '#forge:tools/hammers' }).id('tfg:railways/shaped/smokestack_oilburner') event.recipes.gtceu.assembler('tfg:railways/smokestack_oilburner') - .itemInputs('#forge:storage_blocks/charcoal', '6x #forge:plates/black_steel') + .itemInputs('#forge:storage_blocks/charcoal', '6x #forge:plates/iron') .circuit(7) .itemOutputs('railways:smokestack_oilburner') .duration(200) @@ -286,12 +331,12 @@ const registerRailWaysRecipes = (event) => { 'BAB' ], { A: '#forge:storage_blocks/charcoal', - B: '#forge:plates/black_steel', + B: '#forge:plates/iron', C: '#forge:tools/hammers' }).id('tfg:railways/shaped/smokestack_streamlined') event.recipes.gtceu.assembler('tfg:railways/smokestack_streamlined') - .itemInputs('#forge:storage_blocks/charcoal', '2x #forge:plates/black_steel') + .itemInputs('#forge:storage_blocks/charcoal', '2x #forge:plates/iron') .circuit(8) .itemOutputs('railways:smokestack_streamlined') .duration(200) @@ -304,13 +349,13 @@ const registerRailWaysRecipes = (event) => { 'BAB' ], { A: '#forge:storage_blocks/charcoal', - B: '#forge:plates/black_steel', - C: '#forge:bolts/black_steel', + B: '#forge:plates/iron', + C: '#forge:bolts/iron', D: '#forge:tools/hammers' }).id('tfg:railways/shaped/smokestack_woodburner') event.recipes.gtceu.assembler('tfg:railways/smokestack_woodburner') - .itemInputs('#forge:storage_blocks/charcoal', '3x #forge:plates/black_steel', '2x #forge:bolts/black_steel') + .itemInputs('#forge:storage_blocks/charcoal', '3x #forge:plates/iron', '2x #forge:bolts/iron') .circuit(9) .itemOutputs('railways:smokestack_woodburner') .duration(200) diff --git a/kubejs/server_scripts/rnr/recipes.js b/kubejs/server_scripts/rnr/recipes.js index 27cd2d635..54bb5abdd 100644 --- a/kubejs/server_scripts/rnr/recipes.js +++ b/kubejs/server_scripts/rnr/recipes.js @@ -51,9 +51,38 @@ const registerRnrRecipes = (event) => { '1x rnr:ceramic_roof_tile', 'rnr:unfired_roof_tile' ).id('rnr:smelting/unfired_roof_tile') + + event.remove({id: 'rnr:clay_knapping/roof_tile_a'}) + event.remove({id: 'rnr:clay_knapping/roof_tile_b'}) + event.remove({id: 'rnr:clay_knapping/roof_tile_c'}) + + event.recipes.tfc.knapping('10x rnr:unfired_roof_tile', 'tfc:clay', [ + 'XXXXX', + 'X X', + ' ', + 'XXXXX', + 'X X' + ]).id('tfg:clay_knapping/roof_tile_a') + + event.recipes.tfc.knapping('5x rnr:unfired_roof_tile', 'tfc:clay', [ + 'XXXXX', + 'X X', + ' ', + ' ', + ' ' + ]).id('tfg:clay_knapping/roof_tile_b') + + event.recipes.tfc.knapping('5x rnr:unfired_roof_tile', 'tfc:clay', [ + ' ', + ' ', + ' ', + 'XXXXX', + 'X X' + ]).id('tfg:clay_knapping/roof_tile_c') + event.recipes.gtceu.mixer('rnr:mixer/wet_concrete_mix') - .inputFluids('gtceu:concrete 192', "#tfg:clean_water 808") + .inputFluids('gtceu:concrete 200', "#tfg:clean_water 800") .outputFluids('rnr:concrete 1000') .circuit(7) .duration(200) diff --git a/kubejs/server_scripts/sacksnstuff/recipes.js b/kubejs/server_scripts/sacksnstuff/recipes.js index 216fdee8c..f49d33ae7 100644 --- a/kubejs/server_scripts/sacksnstuff/recipes.js +++ b/kubejs/server_scripts/sacksnstuff/recipes.js @@ -156,14 +156,10 @@ const registerSNSRecipes = (event) => { .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.vintageimprovements.curving('sns:buckle', '#forge:plates/wrought_iron') + .head('gtceu:small_pipe_extruder_mold') + .id('sns:vi/curving/buckle') event.recipes.gtceu.extruder('sns:buckle2') .itemInputs('#forge:plates/steel') @@ -172,13 +168,10 @@ const registerSNSRecipes = (event) => { .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.recipes.vintageimprovements.curving('2x sns:buckle', '#forge:plates/steel') + .head('gtceu:small_pipe_extruder_mold') + .id('sns:vi/curving/buckle2') + event.shaped('sns:pack_frame', [ 'AAA', diff --git a/kubejs/server_scripts/sacksnstuff/tags.js b/kubejs/server_scripts/sacksnstuff/tags.js index 99e479d13..bb1c9422b 100644 --- a/kubejs/server_scripts/sacksnstuff/tags.js +++ b/kubejs/server_scripts/sacksnstuff/tags.js @@ -24,6 +24,9 @@ function registerSNSItemTags(event) { event.add('sns:allowed_in_ore_sack', '#tfc:metamorphic_rock') event.add('sns:allowed_in_ore_sack', '#tfc:igneous_intrusive_rock') event.add('sns:allowed_in_ore_sack', '#tfc:igneous_extrusive_rock') + + event.add('sns:allowed_in_seed_pouch', '#minecraft:saplings') + event.add('sns:allowed_in_seed_pouch', '#tfc:wild_fruits') event.add('sns:prevented_in_item_containers', '#tfc:fired_vessels') diff --git a/kubejs/server_scripts/sophisticated_backpacks/recipes.js b/kubejs/server_scripts/sophisticated_backpacks/recipes.js index 6a844e21a..0873a71f5 100644 --- a/kubejs/server_scripts/sophisticated_backpacks/recipes.js +++ b/kubejs/server_scripts/sophisticated_backpacks/recipes.js @@ -179,18 +179,18 @@ const registerSophisticatedBackpacksRecipes = (event) => { 'CDE', 'FGF' ], { - A: 'gtceu:hv_electric_motor', - B: 'gtceu:mercury_barium_calcium_cuprate_single_wire', - C: 'gtceu:hv_conveyor_module', + A: '#forge:cogwheels', + B: 'gtceu:item_filter', + C: '#forge:belt_connectors', D: 'sophisticatedbackpacks:upgrade_base', - E: 'gtceu:hv_robot_arm', - F: '#gtceu:circuits/hv', - G: '#gtceu:batteries/hv' + E: 'create:mechanical_arm', + F: '#gtceu:circuits/ulv', + G: 'create:electron_tube' }).id('tfg:sophisticated_backpacks/shaped/pickup_upgrade') event.shapeless('sophisticatedbackpacks:advanced_pickup_upgrade', [ 'sophisticatedbackpacks:pickup_upgrade', - '#gtceu:circuits/ev' + 'gtceu:item_smart_filter' ]).id('tfg:sophisticated_backpacks/shapeless/advanced_pickup_upgrade') event.shaped('sophisticatedbackpacks:filter_upgrade', [ @@ -213,23 +213,37 @@ const registerSophisticatedBackpacksRecipes = (event) => { '#gtceu:circuits/mv' ]).id('tfg:sophisticated_backpacks/shapeless/advanced_filter_upgrade') - event.shaped('sophisticatedbackpacks:magnet_upgrade', [ + event.shaped('sophisticatedbackpacks:magnet_upgrade', [ 'ABA', - 'CDC', - 'FEG' + 'CDE', + 'FGF' ], { - A: 'gtceu:lv_robot_arm', - B: 'gtceu:item_filter', - C: '#gtceu:circuits/lv', - D: 'sophisticatedbackpacks:upgrade_base', - E: 'gtceu:lv_item_magnet', - F: '#forge:tools/wrenches', - G: '#forge:tools/screwdrivers' + A: 'gtceu:lv_electric_motor', + B: 'gtceu:lv_item_magnet', + C: 'gtceu:lv_conveyor_module', + D: 'sophisticatedbackpacks:pickup_upgrade', + E: 'gtceu:lv_robot_arm', + F: '#gtceu:circuits/lv', + G: '#gtceu:batteries/lv' }).id('tfg:sophisticated_backpacks/shaped/magnet_upgrade') + event.shaped('sophisticatedbackpacks:advanced_magnet_upgrade', [ + 'ABA', + 'CDE', + 'FGF' + ], { + A: 'gtceu:lv_electric_motor', + B: 'gtceu:lv_item_magnet', + C: 'gtceu:lv_conveyor_module', + D: 'sophisticatedbackpacks:advanced_pickup_upgrade', + E: 'gtceu:lv_robot_arm', + F: '#gtceu:circuits/lv', + G: '#gtceu:batteries/lv' + }).id('tfg:sophisticated_backpacks/shaped/advanced_magnet_upgrade') + event.shapeless('sophisticatedbackpacks:advanced_magnet_upgrade', [ 'sophisticatedbackpacks:magnet_upgrade', - 'gtceu:hv_item_magnet' + 'gtceu:item_smart_filter' ]).id('tfg:sophisticated_backpacks/shapeless/advanced_magnet_upgrade') event.shaped('sophisticatedbackpacks:void_upgrade', [ @@ -430,4 +444,4 @@ const registerSophisticatedBackpacksRecipes = (event) => { 'sophisticatedbackpacks:feeding_upgrade', '#gtceu:circuits/mv' ]).id('tfg:sophisticated_backpacks/shapeless/advanced_feeding_upgrade') -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/soulbound/tags.js b/kubejs/server_scripts/soulbound/tags.js index eae933e2f..ae0298e35 100644 --- a/kubejs/server_scripts/soulbound/tags.js +++ b/kubejs/server_scripts/soulbound/tags.js @@ -7,4 +7,6 @@ const registerSoulboundItemTags = (event) => { global.SOULBINDABLE_ITEMS.forEach(x => { event.add('tfg:soulbindable_items', x.equipment) }) + + event.add('c:hidden_from_recipe_viewers', 'soulbinding:binding_chains') } diff --git a/kubejs/server_scripts/species/loot.js b/kubejs/server_scripts/species/loot.js index df3ccd87e..54772ee26 100644 --- a/kubejs/server_scripts/species/loot.js +++ b/kubejs/server_scripts/species/loot.js @@ -41,14 +41,15 @@ function registerSpeciesLoots(event) { event.addEntityLootModifier('species:cruncher') - .addLoot('tfc:large_raw_hide') + .addLoot('species:music_disk_spawner') + .addWeightedLoot([3, 4], ['tfc:large_raw_hide']) .addWeightedLoot([10, 13], ['minecraft:bone']) - .addWeightedLoot([14, 24], ['tfg:food/raw_cruncher_ribs']) + .addWeightedLoot([24, 36], ['tfg:food/raw_cruncher_ribs']) .addSequenceLoot(LootEntry.of('species:cruncher_egg').when(c => c.randomChance(0.5))) event.addEntityLootModifier('species:cruncher') .matchMainHand('#forge:tools/butchery_knives') - .addWeightedLoot([7, 12], ['tfg:food/raw_cruncher_ribs']) + .addWeightedLoot([12, 18], ['tfg:food/raw_cruncher_ribs']) event.addEntityLootModifier('species:stackatick') diff --git a/kubejs/server_scripts/species/recipes.js b/kubejs/server_scripts/species/recipes.js index 14b95dcdf..9dd84f942 100644 --- a/kubejs/server_scripts/species/recipes.js +++ b/kubejs/server_scripts/species/recipes.js @@ -13,6 +13,9 @@ function registerSpeciesRecipes(event) { event.shapeless('species:music_disc_lapidarian', ['etched:blank_music_disc', 'tfc:rock/raw/basalt_slab']) event.shapeless('species:music_disk_spawner', ['etched:blank_music_disc', 'computercraft:disk']) + + // TODO: add recipes for its enchants? Quick Crank, Scattershot, Capacity, and Sparing + event.shaped('species:cranktrap', [ 'ABA', 'CDC', @@ -29,10 +32,10 @@ function registerSpeciesRecipes(event) { 'CBC', 'DED' ], { - A: '#forge:rods/black_steel', + A: '#forge:rods/steel', B: 'minecraft:crossbow', - C: '#forge:small_gears/steel', - D: 'tfc:metal/chain/black_steel', + C: '#forge:small_gears/wrought_iron', + D: 'tfc:metal/chain/steel', E: 'create:hand_crank' }).id('tfg:shaped/crankbow') @@ -66,30 +69,6 @@ function registerSpeciesRecipes(event) { B: 'firmaciv:rope_coil' }).id('tfg:shaped/harpoon') - 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_wraptor_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_wraptor_egg_full') - .itemInputs('tfg:wraptor_egg') - .itemOutputs('4x tfg:wraptor_sugar') - .duration(200) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.extractor('tfg:juice_sniffer_egg') - .itemInputs('tfg:sniffer_egg') - .outputFluids(Fluid.of('firmalife:cream', 1000)) - .duration(100) - .EUt(GTValues.VA[GTValues.MV]) - event.shaped('species:ricoshield', [ 'EBE', 'ACA', @@ -123,4 +102,60 @@ function registerSpeciesRecipes(event) { B: 'species:kinetic_core', C: 'tacz:target' }).id('tfg:shaped/deflector_dummy') + + event.recipes.tfc.sewing('species:wicked_mask', + [ + 1, 0, 0, 0, 1, 0, 0, 0, 1, + 1, 0, 0, 0, 1, 0, 0, 0, 1, + 1, 0, 0, 0, 1, 0, 0, 0, 1, + 0, 0, 0, 0, 1, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + [ + 1, 1, 1, 1, 0, 0, 0, 0, + 1, -1, -1, 1, 0, -1, -1, 0, + 1, 1, 1, 1, 0, 0, 0, 0, + 1, 1, -1, -1, -1, -1, 0, 0 + ]).id('tfg:sewing/wicked_mask') + + event.recipes.gtceu.assembler('tfg:wicked_mask') + .itemInputs('2x #tfc:sewing_light_cloth', '2x #tfc:sewing_dark_cloth', '3x #forge:string') + .itemOutputs('species:wicked_mask') + .EUt(GTValues.VA[GTValues.ULV]) + .duration(200) + + event.recipes.firmalife.mixing_bowl() + .outputItem('2x species:wicked_treat') + .itemIngredients(['#tfg:medicine', 'minecraft:bone_meal', 'minecraft:bone_meal']) + .id('tfg:mixing_bowl/wicked_treat') + + event.recipes.gtceu.mixer('tfg:wicked_treat') + .itemInputs('#tfg:medicine', '2x minecraft:bone_meal') + .itemOutputs('2x species:wicked_treat') + .EUt(GTValues.VA[GTValues.ULV]) + .duration(200) + + event.shaped('2x species:smoke_bomb', [ + ' A ', + 'BCB', + 'EDE' + ], { + A: '#forge:string', + B: 'minecraft:paper', + C: '#tfg:invisibility_ingredients', + D: 'gtceu:sticky_resin', + E: 'minecraft:gunpowder' + }).id('tfg:shaped/smoke_bomb_paper') + + event.shaped('2x species:smoke_bomb', [ + ' A ', + 'BC ', + 'EDE' + ], { + A: '#forge:string', + B: '#tfc:fired_vessels', + C: '#tfg:invisibility_ingredients', + D: 'gtceu:sticky_resin', + E: 'minecraft:gunpowder' + }).id('tfg:shaped/smoke_bomb_vessel') } \ No newline at end of file diff --git a/kubejs/server_scripts/species/tags.js b/kubejs/server_scripts/species/tags.js index 2d0e501ad..7fb416847 100644 --- a/kubejs/server_scripts/species/tags.js +++ b/kubejs/server_scripts/species/tags.js @@ -25,8 +25,12 @@ const registerSpeciesItemTags = (event) => { event.add('tfg:martian_eggs', 'species:springling_egg') event.add('tfg:martian_eggs', 'species:petrified_egg') + event.add('tfc:foods', 'species:birt_egg') + event.add('tfc:foods', 'species:birtday_cake') + event.add('tfc:foods', 'species:birtday_cake_slice') + event.add('species:goober_breed_items', '#forge:mushrooms') - event.add('species:cruncher_eats', '#tfc:foods/meat') + event.add('species:cruncher_eats', '#tfc:foods/meats') event.add('tfc:compost_greens', 'species:alphacene_mushroom_block') event.add('tfc:compost_greens_low', 'species:alphacene_mushroom_growth') @@ -35,4 +39,6 @@ const registerSpeciesItemTags = (event) => { event.add('minecraft:wart_blocks', 'species:alphacene_mushroom_block') event.add('species:stackatick_tempt_items', 'tfc:sweetener') + + event.add('forge:ender_pearls', 'species:wicked_swapper') } diff --git a/kubejs/server_scripts/tacz/index_modifiers.js b/kubejs/server_scripts/tacz/index_modifiers.js index 01946e5b8..c157e27de 100644 --- a/kubejs/server_scripts/tacz/index_modifiers.js +++ b/kubejs/server_scripts/tacz/index_modifiers.js @@ -18,6 +18,7 @@ const ammoIndexLogic = (event) => { switch(id) { case "tacz:45_70": json.stack_size = 64; break; case "tacz:12g": json.stack_size = 64; break; + case "tacz:30_06": json.stack_size = 64; break; case "create_armorer:40mmhe": json.stack_size = 16; break; case "create_armorer:rbapb": json.stack_size = 64; break; @@ -99,6 +100,12 @@ const gunIndexLogic = (event) => { return event.removeGun(); } + + if (id === "create_armorer:sniper_semi_clockwork"){ + const json = JSON.parse(event.getStdJson()); + json.type = "rifle"; + return event.setJson(JSON.stringify(json)); + } } const attachmentDataLogic = (event) => { @@ -109,37 +116,181 @@ const gunDataLogic = (event) => { const id = event.getId().toString(); const json = JSON.parse(event.getStdJson()); + //Pistols + if (id === "ulv_guns:flintlock_data"){ + json.bullet.damage = 14; + json.bullet.extra_damage.damage_adjust = + [ + {"distance": 15, "damage": 14}, + {"distance": 35, "damage": 12}, + {"distance": 45, "damage": 10}, + {"distance": "infinite", "damage": 8} + ] + } + if(id === "create_armorer:pistol_revolver_torque_data"){ + json.ammo = "create_armorer:rbapb"; + + json.bullet.pierce = 2; + json.bullet.damage = 12; + json.bullet.extra_damage.armor_ignore = 0.25; + json.bullet.extra_damage.head_shot_multiplier = 1.5; + json.bullet.extra_damage.damage_adjust = + [ + {"distance": 25, "damage": 12}, + {"distance": 50, "damage": 11}, + {"distance": 75, "damage": 9}, + {"distance": "infinite", "damage": 7} + ] + + } + + if(id === "create_armorer:pistol_auto_stress_data"){ + json.ammo = "create_armorer:rbapb"; + json.ammo_amount = 10; + json.extended_mag_ammo_amount = + [ + 14, + 18, + 22 + ] + + json.fire_mode = + [ + "semi" + ] + + json.bullet.damage = 8; + json.bullet.extra_damage.armor_ignore = 0.25; + json.bullet.extra_damage.damage_adjust = + [ + {"distance": 32, "damage": 8}, + {"distance": 64, "damage": 7}, + {"distance": "infinite", "damage": 6} + ] + } + + if(id === "applied_armorer:niklas_pistol_semi_pride_data"){ json.bullet.extra_damage.armor_ignore = 0.25; } + if(id === "applied_armorer:niklas_pistol_double_win_win_data"){ + json.bullet.damage = 10; + json.bullet.extra_damage.armor_ignore = 0.25; + json.bullet.extra_damage.head_shot_multiplier = 1.5; + json.bullet.extra_damage.damage_adjust = + [ + {"distance": 15, "damage": 10}, + {"distance": 35, "damage": 9}, + {"distance": "infinite", "damage": 8} + ] + } + + //Snipers + if(id === "tacz:springfield1873_data") { + json.bullet.damage = 25; + json.bullet.extra_damage.damage_adjust = + [ + {"distance": 40, "damage": 25}, + {"distance": 70, "damage": 21}, + {"distance": 100, "damage": 17}, + {"distance": "infinite", "damage": 12} + ] + } + + if(id === "tacz:m700_data"){ + json.ammo_amount = 2; + json.extended_mag_ammo_amount = + [ + 4, + 6, + 9 + ] + + json.bullet.damage = 32; + json.bullet.extra_damage.head_shot_multiplier = 1.75; + json.bullet.extra_damage.damage_adjust = + [ + {"distance": 48, "damage": 32}, + {"distance": 96, "damage": 28}, + {"distance": 128, "damage": 23}, + {"distance": "infinite", "damage": 18} + ] + } + + if(id === "applied_armorer:moritz_sniper_semi_k30_data") { + json.bullet.pierce = 4; + json.bullet.damage = 40; + json.bullet.extra_damage.armor_ignore = 0.55; + json.bullet.extra_damage.damage_adjust = + [ + {"distance": 100, "damage": 40}, + {"distance": 200, "damage": 35}, + {"distance": "infinite", "damage": 30} + ] + } + + + //Rifles if(id === "create_armorer:sniper_semi_clockwork_data"){ + json.ammo = "create_armorer:slap"; + json.ammo_amount = 10; + json.extended_mag_ammo_amount = + [ + 13, + 16, + 20 + ] + + json.bullet.extra_damage.armor_ignore = 0.30; json.bullet.damage = 22; + json.bullet.extra_damage.head_shot_multiplier = 1.50; json.bullet.extra_damage.damage_adjust = [ {"distance": 60, "damage": 22}, {"distance": 120, "damage": 19}, {"distance": "infinite", "damage": 17} ] + json.builtin_attachments = {}; json.builtin_attachments.scope = "create_armorer:sight_simple"; } + if(id === "create_armorer:rifle_assult_crane_data"){ + json.ammo_amount = 20; + json.extended_mag_ammo_amount = + [ + 28, + 36, + 44 + ] + } + if(id === "applied_armorer:moritz_rifle_ar77_data") { json.ammo = "applied_armorer:hard_core_quartz_bullet"; - json.bullet.damage = 13; + json.ammo_amount = 25; + json.extended_mag_ammo_amount = + [ + 36, + 45, + 52 + ] + + + json.bullet.damage = 14; json.bullet.extra_damage.armor_ignore = 0.35; json.bullet.extra_damage.head_shot_multiplier = 1.75; json.bullet.extra_damage.damage_adjust = [ - {"distance": 80, "damage": 13}, - {"distance": 120, "damage": 11}, - {"distance": "infinite", "damage": 9} + {"distance": 80, "damage": 14}, + {"distance": 120, "damage": 12}, + {"distance": "infinite", "damage": 10} ] } + //Shotguns if(id === "tacz:db_long_data"){ json.bullet.extra_damage.armor_ignore = 0.22; } @@ -148,6 +299,71 @@ const gunDataLogic = (event) => { json.bullet.extra_damage.armor_ignore = 0.22; } + //SMGs + if(id === "create_armorer:smg_auto_crank_data"){ + json.ammo = "create_armorer:rbapb"; + + json.ammo_amount = 25; + json.extended_mag_ammo_amount = + [ + 35, + 45, + 55 + ] + + json.bullet.damage = 8; + json.bullet.extra_damage.armor_ignore = 0.25; + json.bullet.extra_damage.head_shot_multiplier = 1.2; + json.bullet.extra_damage.damage_adjust = + [ + {"distance": 24, "damage": 8}, + {"distance": 48, "damage": 7}, + {"distance": 72, "damage": 6}, + {"distance": "infinite", "damage": 5} + ] + } + + if(id === "applied_armorer:niklas_smg_freedom_data"){ + json.ammo_amount = 35; + json.extended_mag_ammo_amount = + [ + 45, + 55, + 65 + ] + + json.bullet.damage = 10; + json.bullet.extra_damage.armor_ignore = 0.25; + json.bullet.extra_damage.damage_adjust = + [ + {"distance": 24, "damage": 10}, + {"distance": 48, "damage": 9}, + {"distance": 72, "damage": 8}, + {"distance": "infinite", "damage": 7} + ] + } + + //Heavy + if(id === "create_armorer:mg_platemag_flywheel_data") { + json.ammo_amount = 40; + json.extended_mag_ammo_amount = + [ + 55, + 80, + 115 + ] + + json.rpm = 640; + + json.bullet.damage = 12; + json.bullet.extra_damage.damage_adjust = + [ + {"distance": 32, "damage": 12}, + {"distance": 64, "damage": 11}, + {"distance": "infinite", "damage": 10} + ] + } + if(id === "create_armorer:cannon_40mm_salamander_data"){ json.bullet.damage = 50; json.bullet.extra_damage.damage_adjust = @@ -155,6 +371,7 @@ const gunDataLogic = (event) => { {"distance": 200, "damage": 50}, {"distance": "infinite", "damage": 45} ] + json.builtin_attachments = {}; json.builtin_attachments.scope = "create_armorer:sight_simple"; } diff --git a/kubejs/server_scripts/tacz/recipes.ammo.js b/kubejs/server_scripts/tacz/recipes.ammo.js index d010adc8b..5b2200f4c 100644 --- a/kubejs/server_scripts/tacz/recipes.ammo.js +++ b/kubejs/server_scripts/tacz/recipes.ammo.js @@ -20,8 +20,17 @@ function registerTACZAmmoRecipes(event){ .itemOutputs(Item.of('tacz:ammo_box', '{Level:2}')) .EUt(GTValues.VA[GTValues.HV]) .duration(60) + + //event.remove({ mod: 'applied_ammo_box' }) + event.remove({ type: 'applied_ammo_box:shaped_nbt' }) - + event.recipes.gtceu.assembler('tfg_tacz:wl_ammo_box') + .itemInputs('2x #gtceu:batteries/ev', 'ae2:wireless_terminal', '4x #forge:double_plates/ostrum', + '2x gtceu:ev_sensor', 'gtceu:ev_emitter', '2x #forge:rods/ultimet') + .itemOutputs('applied_ammo_box:ammo_box') + .EUt(GTValues.VA[GTValues.EV]) + .duration(100) + //Extruder Casing event.recipes.gtceu.extruder('tfg_tacz:small_casing') .itemInputs('#forge:ingots/brass') @@ -45,15 +54,15 @@ function registerTACZAmmoRecipes(event){ //Additives event.recipes.gtceu.chemical_reactor('tfg_tacz:nitrocellulose_from_wood') .itemInputs('gtceu:thermochemically_treated_hardwood_dust') - .inputFluids(Fluid.of('gtceu:nitric_acid', 200), Fluid.of('gtceu:sulfuric_acid', 400), Fluid.of('minecraft:water', 600)) + .inputFluids(Fluid.of('gtceu:nitration_mixture', 800), Fluid.of('minecraft:water', 600)) .itemOutputs('2x tfg:nitrocellulose') .EUt(GTValues.VA[GTValues.EV]) .duration(20) event.recipes.gtceu.chemical_reactor('tfg_tacz:nitrocellulose_from_wood_dih20') .itemInputs('gtceu:thermochemically_treated_hardwood_dust') - .inputFluids(Fluid.of('gtceu:nitric_acid', 200), Fluid.of('gtceu:sulfuric_acid', 400), Fluid.of('gtceu:distilled_water', 600)) + .inputFluids(Fluid.of('gtceu:nitration_mixture', 800), Fluid.of('gtceu:distilled_water', 600)) .itemOutputs('4x tfg:nitrocellulose') - .outputFluids(Fluid.of('gtceu:nitration_mixture', 100)) + .outputFluids(Fluid.of('gtceu:sulfuric_acid', 200)) .EUt(GTValues.VA[GTValues.EV]) .duration(40) @@ -81,9 +90,18 @@ function registerTACZAmmoRecipes(event){ .itemOutputs(Item.of('tacz:ammo', 4, '{AmmoId:"tacz:45_70"}')) .EUt(GTValues.VA[GTValues.LV]) + .circuit(4) .duration(20) //Clockwork era + event.recipes.gtceu.assembler('tfg_tacz:rb_small_lv') + .itemInputs('4x #forge:nuggets/lead','2x #forge:foils/copper', '#forge:ingots/brass', + '#forge:dusts/gunpowder') + .itemOutputs(Item.of('tacz:ammo', 4, + '{AmmoId:"create_armorer:rbapb"}')) + .EUt(GTValues.VA[GTValues.LV]) + .circuit(1) + .duration(20) event.recipes.gtceu.assembler('tfg_tacz:rb_small') .itemInputs('4x #forge:nuggets/lead','2x #forge:foils/copper', '4x tfg:small_bullet_casing', '#forge:dusts/gunpowder') @@ -98,20 +116,36 @@ function registerTACZAmmoRecipes(event){ '{AmmoId:"create_armorer:rbapb"}')) .EUt(GTValues.VA[GTValues.EV]) .duration(20) + event.recipes.gtceu.assembler('tfg_tacz:slap_large') - .itemInputs('4x #forge:nuggets/lead','4x #forge:foils/copper', '4x tfg:large_bullet_casing', + .itemInputs('4x #forge:bolts/lead','4x #forge:foils/copper', '4x tfg:large_bullet_casing', '#forge:dusts/gunpowder') .itemOutputs(Item.of('tacz:ammo', 4, '{AmmoId:"create_armorer:slap"}')) .EUt(GTValues.VA[GTValues.MV]) .duration(20) event.recipes.gtceu.assembler('tfg_tacz:slap_large_nc') - .itemInputs('8x #forge:nuggets/lead','8x #forge:foils/copper', '8x tfg:large_bullet_casing', + .itemInputs('8x #forge:bolts/lead','8x #forge:foils/copper', '8x tfg:large_bullet_casing', 'tfg:nitrocellulose') .itemOutputs(Item.of('tacz:ammo', 8, '{AmmoId:"create_armorer:slap"}')) .EUt(GTValues.VA[GTValues.EV]) .duration(20) + + event.recipes.gtceu.assembler('tfg_tacz:3006_large') + .itemInputs('4x #forge:rods/annealed_copper','4x #forge:foils/copper', '4x tfg:large_bullet_casing', + '#forge:dusts/gunpowder') + .itemOutputs(Item.of('tacz:ammo', 4, + '{AmmoId:"tacz:30_06"}')) + .EUt(GTValues.VA[GTValues.MV]) + .duration(20) + event.recipes.gtceu.assembler('tfg_tacz:3006_large_nc') + .itemInputs('8x #forge:rods/annealed_copper','8x #forge:foils/copper', '8x tfg:large_bullet_casing', + 'tfg:nitrocellulose') + .itemOutputs(Item.of('tacz:ammo', 8, + '{AmmoId:"tacz:30_06"}')) + .EUt(GTValues.VA[GTValues.EV]) + .duration(20) //Certus era diff --git a/kubejs/server_scripts/tacz/recipes.attach.js b/kubejs/server_scripts/tacz/recipes.attach.js index 18164e679..4ffab3aa5 100644 --- a/kubejs/server_scripts/tacz/recipes.attach.js +++ b/kubejs/server_scripts/tacz/recipes.attach.js @@ -12,7 +12,7 @@ function registerTACZAttachRecipes(event){ B: 'tfc:lens', C: 'gtceu:brass_small_item_pipe', D: '#forge:tools/screwdrivers', - E: '#forge:screws/black_steel', + E: '#forge:screws', F: '#forge:tools/files' }).id('tfg_tacz:trapdoor_scope'); diff --git a/kubejs/server_scripts/tacz/recipes.guns.js b/kubejs/server_scripts/tacz/recipes.guns.js index 2ec61fc5b..93a60512b 100644 --- a/kubejs/server_scripts/tacz/recipes.guns.js +++ b/kubejs/server_scripts/tacz/recipes.guns.js @@ -10,13 +10,13 @@ function registerTACZGunRecipes(event){ ], { A: '#forge:tools/files', B: 'tfg:flintlock_mechanism', - C: 'gtceu:steel_small_fluid_pipe', + C: 'gtceu:lead_small_fluid_pipe', D: '#firmaciv:hard_wood', E: '#forge:tools/saws', F: '#forge:ingots/brass', G: '#forge:tools/screwdrivers' - }).id('tacz:flintlock_pistol'); + }).id('tfg_tacz:flintlock_pistol'); /* NYI event.shaped(Item.of('tacz:modern_kinetic_gun', '{GunCurrentAmmoCount:0,GunFireMode:"SEMI",GunId:"ulv_guns:blunderbuss",HasBulletInBarrel:1b}'), [ 'ABC', @@ -46,7 +46,7 @@ function registerTACZGunRecipes(event){ F: '#forge:ingots/black_steel', G: '#forge:tools/screwdrivers' - }).id('tacz:trapdoor_rifle'); + }).id('tfg_tacz:trapdoor_rifle'); //DB shotguns event.recipes.gtceu.assembler('tfg_tacz:db_short') @@ -70,66 +70,85 @@ function registerTACZGunRecipes(event){ //Region clockwork era event.recipes.gtceu.assembler('tfg_tacz:ca_torque_revo') - .itemInputs('gtceu:steel_small_fluid_pipe', '4x #forge:ingots/aluminium', '2x #forge:plates/brass', + .itemInputs('gtceu:steel_small_fluid_pipe', '4x #forge:ingots/black_steel', '2x #forge:plates/brass', '6x #forge:rings/brass', '2x gtceu:treated_wood_planks', '8x #forge:screws/black_steel', - 'tfg:advanced_clockwork_mechanism') - .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) + '3x greate:steel_cogwheel') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 256)) .itemOutputs(Item.of('tacz:modern_kinetic_gun', '{GunCurrentAmmoCount:0,GunFireMode:"SEMI",GunId:"create_armorer:pistol_revolver_torque",HasBulletInBarrel:1b}')) .circuit(1) + .EUt(GTValues.VA[GTValues.LV]) + .duration(80) + event.recipes.gtceu.assembler('tfg_tacz:ca_stress_pistol') + .itemInputs('gtceu:steel_small_fluid_pipe', '4x #forge:ingots/black_steel', '2x #forge:ingots/aluminium', + '3x #forge:plates/brass', 'gtceu:treated_wood_planks', '12x #forge:screws/black_steel', + '4x #forge:screws/brass', 'tfg:advanced_clockwork_mechanism') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 468)) + .itemOutputs(Item.of('tacz:modern_kinetic_gun', + '{GunCurrentAmmoCount:0,GunFireMode:"SEMI",GunId:"create_armorer:pistol_auto_stress",HasBulletInBarrel:1b}')) + .circuit(2) .EUt(GTValues.VA[GTValues.MV]) .duration(80) event.recipes.gtceu.assembler('tfg_tacz:ca_crane') .itemInputs('gtceu:steel_small_fluid_pipe', '7x #forge:ingots/aluminium', '2x #forge:ingots/black_steel', '4x #forge:plates/brass','2x gtceu:copper_tiny_fluid_pipe', '2x gtceu:treated_wood_planks', '2x #forge:small_gears/steel', '14x #forge:screws/black_steel', 'tfg:advanced_clockwork_mechanism') - .inputFluids(Fluid.of('gtceu:soldering_alloy', 540)) + .inputFluids(Fluid.of('gtceu:soldering_alloy', 684)) .itemOutputs(Item.of('tacz:modern_kinetic_gun', '{GunCurrentAmmoCount:0,GunFireMode:"AUTO",GunId:"create_armorer:rifle_assult_crane",HasBulletInBarrel:1b}')) .EUt(GTValues.VA[GTValues.MV]) .duration(100) + event.recipes.gtceu.assembler('tfg_tacz:ca_crank_smg') + .itemInputs('gtceu:steel_small_fluid_pipe', '5x #forge:ingots/aluminium', '5x #forge:plates/brass', + '6x gtceu:steel_tiny_fluid_pipe', '2x gtceu:treated_wood_planks', '2x #forge:small_gears/steel', + '16x #forge:screws/black_steel', 'tfg:advanced_clockwork_mechanism') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 612)) + .itemOutputs(Item.of('tacz:modern_kinetic_gun', + '{GunCurrentAmmoCount:0,GunFireMode:"AUTO",GunId:"create_armorer:smg_auto_crank",HasBulletInBarrel:1b}')) + .circuit(3) + .EUt(GTValues.VA[GTValues.MV]) + .duration(100) event.recipes.gtceu.assembler('tfg_tacz:ca_pump_bearing') .itemInputs('2x gtceu:steel_small_fluid_pipe', '4x #forge:ingots/aluminium', '4x #forge:plates/brass', '8x gtceu:treated_wood_planks', '#forge:small_gears/steel', '#forge:gears/steel', '16x #forge:screws/black_steel', 'tfg:advanced_clockwork_mechanism') - .inputFluids(Fluid.of('gtceu:soldering_alloy', 432)) + .inputFluids(Fluid.of('gtceu:soldering_alloy', 504)) .itemOutputs(Item.of('tacz:modern_kinetic_gun', '{GunCurrentAmmoCount:0,GunFireMode:"SEMI",GunId:"create_armorer:shotgun_pump_bearing",HasBulletInBarrel:0b}')) .EUt(GTValues.VA[GTValues.MV]) - .circuit(3) + .circuit(4) .duration(100) event.recipes.gtceu.assembler('tfg_tacz:ca_clockwork_sniper') - .itemInputs('gtceu:steel_normal_fluid_pipe', '7x #forge:ingots/aluminium', '7x #forge:ingots/black_steel', + .itemInputs('gtceu:steel_normal_fluid_pipe', '6x #forge:ingots/aluminium', '3x #forge:ingots/black_steel', '4x #forge:plates/brass','6x gtceu:copper_tiny_fluid_pipe', '2x gtceu:treated_wood_planks', - '14x #forge:screws/black_steel', 'tfg:advanced_clockwork_mechanism') - .inputFluids(Fluid.of('gtceu:soldering_alloy', 792)) + '12x #forge:screws/black_steel', 'tfg:advanced_clockwork_mechanism') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 684)) .itemOutputs(Item.of('tacz:modern_kinetic_gun', '{GunCurrentAmmoCount:0,GunFireMode:"SEMI",GunId:"create_armorer:sniper_semi_clockwork",HasBulletInBarrel:1b}')) .EUt(GTValues.VA[GTValues.MV]) - .circuit(4) + .circuit(5) .duration(120) event.recipes.gtceu.assembler('tfg_tacz:ca_flywheel_mg') .itemInputs('gtceu:steel_normal_fluid_pipe', '10x #forge:ingots/aluminium', '6x #forge:ingots/black_steel', '6x #forge:plates/brass', 'create:steam_engine', '3x gtceu:steel_tiny_fluid_pipe', '2x gtceu:treated_wood_planks','20x #forge:screws/black_steel', '2x tfg:advanced_clockwork_mechanism') - .inputFluids(Fluid.of('gtceu:soldering_alloy', 936)) + .inputFluids(Fluid.of('gtceu:soldering_alloy', 1008)) .itemOutputs(Item.of('tacz:modern_kinetic_gun', '{GunCurrentAmmoCount:0,GunFireMode:"AUTO",GunId:"create_armorer:mg_platemag_flywheel",HasBulletInBarrel:1b}')) .EUt(GTValues.VA[GTValues.MV]) .duration(160) + event.recipes.gtceu.assembler('tfg_tacz:tacz_m700') + .itemInputs('3x gtceu:steel_small_fluid_pipe', '5x #forge:ingots/aluminium', '4x #forge:plates/black_steel', + '16x gtceu:treated_wood_planks', '16x #forge:screws/black_steel', 'tfg:advanced_clockwork_mechanism') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 768)) + .itemOutputs(Item.of('tacz:modern_kinetic_gun', + '{GunCurrentAmmoCount:0,GunFireMode:"SEMI",GunId:"tacz:m700",HasBulletInBarrel:0b}')) + .EUt(GTValues.VA[GTValues.MV]) + .circuit(6) + .duration(120) //Region certus era - event.recipes.gtceu.assembler('tfg_tacz:aa_pride') - .itemInputs('gtceu:titanium_small_fluid_pipe', '4x #forge:ingots/titanium', '2x #forge:plates/stainless_steel', - '2x #forge:rods/long/titanium', '8x #forge:screws/hsla_steel', 'tfg:certus_mechanism') - .inputFluids(Fluid.of('gtceu:polytetrafluoroethylene', 1152)) - .itemOutputs(Item.of('tacz:modern_kinetic_gun', - '{GunCurrentAmmoCount:0,GunFireMode:"SEMI",GunId:"applied_armorer:niklas_pistol_semi_pride",HasBulletInBarrel:0b}')) - .circuit(2) - .EUt(GTValues.VA[GTValues.EV]) - .duration(80) - event.recipes.gtceu.assembler('tfg_tacz:aa_right') .itemInputs('gtceu:titanium_small_fluid_pipe', '5x #forge:ingots/titanium', '3x #forge:plates/stainless_steel', '#forge:rods/long/titanium', '10x #forge:screws/hsla_steel', 'tfg:certus_mechanism') @@ -139,6 +158,16 @@ function registerTACZGunRecipes(event){ .circuit(1) .EUt(GTValues.VA[GTValues.EV]) .duration(80) + + event.recipes.gtceu.assembler('tfg_tacz:aa_pride') + .itemInputs('gtceu:titanium_small_fluid_pipe', '4x #forge:ingots/titanium', '2x #forge:plates/stainless_steel', + '2x #forge:rods/long/titanium', '8x #forge:screws/hsla_steel', 'tfg:certus_mechanism') + .inputFluids(Fluid.of('gtceu:polytetrafluoroethylene', 1152)) + .itemOutputs(Item.of('tacz:modern_kinetic_gun', + '{GunCurrentAmmoCount:0,GunFireMode:"SEMI",GunId:"applied_armorer:niklas_pistol_semi_pride",HasBulletInBarrel:0b}')) + .circuit(2) + .EUt(GTValues.VA[GTValues.EV]) + .duration(80) event.recipes.gtceu.assembler('tfg_tacz:aa_win_win') .itemInputs('2x gtceu:titanium_small_fluid_pipe', '10x #forge:ingots/titanium', '6x #forge:plates/stainless_steel', @@ -150,6 +179,17 @@ function registerTACZGunRecipes(event){ .EUt(GTValues.VA[GTValues.EV]) .duration(120) + event.recipes.gtceu.assembler('tfg_tacz:aa_k30') + .itemInputs('2x gtceu:titanium_small_fluid_pipe', '8x #forge:ingots/titanium', '2x #forge:ingots/magnalium', + '8x #forge:plates/stainless_steel', '3x #forge:rods/long/hsla_steel', '2x tfc:lens', + '24x #forge:screws/hsla_steel', 'tfg:certus_mechanism') + .inputFluids(Fluid.of('gtceu:polytetrafluoroethylene', 1728)) + .itemOutputs(Item.of('tacz:modern_kinetic_gun', + '{GunCurrentAmmoCount:0,GunFireMode:"SEMI",GunId:"applied_armorer:moritz_sniper_semi_k30",HasBulletInBarrel:0b}')) + .circuit(4) + .EUt(GTValues.VA[GTValues.EV]) + .duration(220) + event.recipes.gtceu.assembler('tfg_tacz:aa_ar') .itemInputs('gtceu:titanium_small_fluid_pipe', '10x #forge:ingots/titanium', '5x #forge:plates/stainless_steel', '2x #forge:rods/long/hsla_steel', '2x tfc:lens', '20x #forge:screws/hsla_steel', @@ -172,16 +212,16 @@ function registerTACZGunRecipes(event){ .EUt(GTValues.VA[GTValues.EV]) .duration(180) - event.recipes.gtceu.assembler('tfg_tacz:aa_k30') - .itemInputs('2x gtceu:titanium_small_fluid_pipe', '8x #forge:ingots/titanium', '2x #forge:ingots/magnalium', - '8x #forge:plates/stainless_steel', '3x #forge:rods/long/hsla_steel', '2x tfc:lens', - '24x #forge:screws/hsla_steel', 'tfg:certus_mechanism') - .inputFluids(Fluid.of('gtceu:polytetrafluoroethylene', 1728)) + event.recipes.gtceu.assembler('tfg_tacz:aa_freedom') + .itemInputs('gtceu:titanium_small_fluid_pipe', '7x #forge:ingots/titanium', '4x #forge:plates/stainless_steel', + '2x #forge:rods/long/hsla_steel', '2x tfc:lens', '16x #forge:screws/hsla_steel', + 'tfg:certus_mechanism') + .inputFluids(Fluid.of('gtceu:polytetrafluoroethylene', 2160)) .itemOutputs(Item.of('tacz:modern_kinetic_gun', - '{GunCurrentAmmoCount:0,GunFireMode:"SEMI",GunId:"applied_armorer:moritz_sniper_semi_k30",HasBulletInBarrel:0b}')) - .circuit(4) + '{GunCurrentAmmoCount:0,GunFireMode:"AUTO",GunId:"applied_armorer:niklas_smg_freedom",HasBulletInBarrel:1b}')) + .circuit(7) .EUt(GTValues.VA[GTValues.EV]) - .duration(220) + .duration(160) event.recipes.gtceu.assembler('tfg_tacz:aa_gl') .itemInputs('gtceu:tungsten_steel_normal_fluid_pipe', '12x #forge:ingots/titanium', '6x #forge:plates/stainless_steel', diff --git a/kubejs/server_scripts/tacz/recipes.misc.js b/kubejs/server_scripts/tacz/recipes.misc.js index 90901ff94..c37803055 100644 --- a/kubejs/server_scripts/tacz/recipes.misc.js +++ b/kubejs/server_scripts/tacz/recipes.misc.js @@ -59,6 +59,22 @@ function registerTACZMiscRecipes(event) { }).id('tfg:shell_casing_extruder_mold'); //Mechanisms + event.shaped('tfg:flintlock_mechanism', [ + 'ABC', + 'DEF', + 'GHI' + ], { + A: '#forge:tools/screwdrivers', + B: '#forge:gems/flint', + C: '#forge:tools/files', + D: '#forge:springs', + E: '#forge:bolts/wrought_iron', + F: '#forge:double_plates/wrought_iron', + G: '#forge:tools/wire_cutters', + H: '#forge:gears/wrought_iron', + I: '#forge:tools/hammers' + }).id('tfg:shaped/flintlock_mechanism_iron'); + event.shaped('tfg:flintlock_mechanism', [ 'ABC', 'DEF', @@ -73,7 +89,7 @@ function registerTACZMiscRecipes(event) { G: '#forge:tools/wire_cutters', H: '#forge:small_gears/steel', I: '#forge:tools/hammers' - }).id('tfg:shaped/flintlock_mechanism'); + }).id('tfg:shaped/flintlock_mechanism_steel'); event.recipes.gtceu.assembler('tfg:advanced_clockwork_mechanism') .itemInputs('2x greate:aluminium_cogwheel', 'greate:silicone_rubber_belt_connector', '2x #forge:springs/aluminium', diff --git a/kubejs/server_scripts/tacz/tags.js b/kubejs/server_scripts/tacz/tags.js index 1ccc63bc8..1cdfbbbc3 100644 --- a/kubejs/server_scripts/tacz/tags.js +++ b/kubejs/server_scripts/tacz/tags.js @@ -10,6 +10,7 @@ const registerTACZItemTags = (event) => { event.add('tfc:usable_on_tool_rack', 'tacz:ammo_box') event.add('tfc:usable_on_tool_rack', 'tacz:modern_kinetic_gun') + event.add('tfc:usable_on_tool_rack', 'applied_ammo_box:ammo_box') } diff --git a/kubejs/server_scripts/tfc/data.js b/kubejs/server_scripts/tfc/data.js index 16be426b5..7fe74b566 100644 --- a/kubejs/server_scripts/tfc/data.js +++ b/kubejs/server_scripts/tfc/data.js @@ -7,8 +7,6 @@ const registerTFCDataForTFC = (event) => { registerTFCLampFuels(event) registerTFCFertilizers(event) registerTFCKnappingTypes(event) - registerTFCItemSize(event) - registerTFCFoodData(event) } @@ -27,6 +25,9 @@ const registerTFCHeats = (event) => { // Baked Potato event.itemHeat('tfc:food/baked_potato', 1.0, null, null) + + // Soybean + event.itemHeat('tfc:food/soybean', 1.0, null, null) } @@ -36,11 +37,27 @@ const registerTFCFuels = (event) => { event.fuel('beneath:cursecoal', 1540, 2200, 1.0) - event.fuel('minecraft:coal', 1415, 2200, 1.0) + event.fuel('gtceu:charcoal_block', 1350, 1800 * 9, 1.0) + event.fuel('gtceu:charcoal_dust', 1350, 600, 1.0) + + event.fuel('minecraft:coal', 1415, 1900 / 2, 1.0) + event.fuel('minecraft:coal_block', 1415, 1900 * 4.5, 1.0) + event.fuel('gtceu:flawless_coal_gem', 1415, 1900 * 2, 1.0) + event.fuel('gtceu:exquisite_coal_gem', 1415, 1900 * 4, 1.0) + event.fuel('gtceu:flawed_coal_gem', 1415, 1900 / 2, 1.0) + event.fuel('gtceu:chipped_coal_gem', 1415, 1900 / 4, 1.0) + + event.fuel('gtceu:crushed_coal_ore', 1415, 1000, 0.8) + event.fuel('gtceu:purified_coal_ore', 1415, 1000, 1.0) + event.fuel('gtceu:refined_coal_ore', 1415, 1000, 1.0) + event.fuel('gtceu:impure_coal_dust', 1415, 500, 0.8) + event.fuel('gtceu:rich_raw_coal', 1415, 2200, 0.95) event.fuel('gtceu:raw_coal', 1415, 1900, 0.95) event.fuel('gtceu:poor_raw_coal', 1415, 1600, 0.95) - event.fuel('gtceu:coal_dust', 1415, 600, 0.95) + event.fuel('gtceu:coal_dust', 1415, 600, 0.85) + event.fuel('gtceu:small_coal_dust', 1415, 600 / 4, 0.85) + event.fuel('gtceu:tiny_coal_dust', 1415, 600 / 9, 0.85) } @@ -62,37 +79,42 @@ const registerTFCFertilizers = (event) => { event.fertilizer('gtceu:small_phosphorus_dust', null, 0.037, null) event.fertilizer('gtceu:phosphorus_dust', null, 0.15, null) + event.fertilizer('gtceu:tiny_bone_dust', null, 0.01, null) + event.fertilizer('gtceu:small_bone_dust', null, 0.025, null) + + event.fertilizer('gtceu:tiny_apatite_dust', null, 0.016, null) + event.fertilizer('gtceu:small_apatite_dust', null, 0.037, null) + event.fertilizer('gtceu:apatite_dust', null, 0.15, null) + + event.fertilizer('gtceu:tiny_tricalcium_phosphate_dust', null, 0.016, null) + event.fertilizer('gtceu:small_tricalcium_phosphate_dust', null, 0.037, null) + event.fertilizer('gtceu:tricalcium_phosphate_dust', null, 0.15, null) + + event.fertilizer('gtceu:tiny_phosphate_dust', null, 0.02, null) + event.fertilizer('gtceu:small_phosphate_dust', null, 0.05, null) + event.fertilizer('gtceu:phosphate_dust', null, 0.2, null) + event.fertilizer('gtceu:tiny_saltpeter_dust', 0.01, null, 0.038) event.fertilizer('gtceu:small_saltpeter_dust', 0.025, null, 0.0875) event.fertilizer('gtceu:saltpeter_dust', 0.10, null, 0.35) - event.fertilizer('gtceu:tiny_bone_dust', null, 0.01, null) - event.fertilizer('gtceu:small_bone_dust', null, 0.025, null) + event.fertilizer('gtceu:tiny_rock_salt_dust', null, null, 0.025) + event.fertilizer('gtceu:small_rock_salt_dust', null, null, 0.0625) + event.fertilizer('gtceu:rock_salt_dust', null, null, 0.25) + + event.fertilizer('gtceu:tiny_potassium_sulfate_dust', null, null, 0.03) + event.fertilizer('gtceu:small_potassium_sulfate_dust', null, null, 0.075) + event.fertilizer('gtceu:potassium_sulfate_dust', null, null, 0.3) + + event.fertilizer('gtceu:tiny_ammonium_chloride_dust', 0.03, null, null) + event.fertilizer('gtceu:small_ammonium_chloride_dust', 0.075, null, null) + event.fertilizer('gtceu:ammonium_chloride_dust', 0.3, null, null) + + } 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') -} - - -const registerTFCItemSize = (event) => { - event.itemSize('#tfc:ore_pieces', 'very_small', 'very_light', 'tfc_ores') - - event.itemSize('#tfc:foods/sealed_preserves', 'tiny', 'medium', 'sealed_preserves') - event.itemSize('#tfc:foods/preserves', 'tiny', 'medium', 'preserves') - - event.itemSize('#forge:tools/wrenches', 'very_large', 'very_heavy', 'wrenches') - event.itemSize('#forge:tools/mining_hammers', 'very_large', 'very_heavy', 'mining_hammers') - event.itemSize('#forge:tools/spades', 'very_large', 'very_heavy', 'spades') -} - - -const registerTFCFoodData = (event) => { - - event.foodItem('firmalife:ice_shavings', food => { - food.water(5) - food.decayModifier(0) - }) -} +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/events.js b/kubejs/server_scripts/tfc/events.js new file mode 100644 index 000000000..5d60d5f72 --- /dev/null +++ b/kubejs/server_scripts/tfc/events.js @@ -0,0 +1,5 @@ +ItemEvents.rightClicked(event => { + if (event.item.hasTag('tfc:nonplaceable')) { + event.cancel() + } +}) diff --git a/kubejs/server_scripts/tfc/loot.js b/kubejs/server_scripts/tfc/loot.js index 044f9b757..ab68c15ca 100644 --- a/kubejs/server_scripts/tfc/loot.js +++ b/kubejs/server_scripts/tfc/loot.js @@ -6,6 +6,8 @@ function registerTFCLoots(event) { event.addEntityLootModifier('tfc:black_bear') .addWeightedLoot([8, 12], ['tfc:food/bear']) + .addWeightedLoot([1, 2], ['tfc:blubber']) + event.addEntityLootModifier('tfc:black_bear') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 6], ['tfc:food/bear']) @@ -13,6 +15,7 @@ function registerTFCLoots(event) { event.addEntityLootModifier('tfc:grizzly_bear') .addWeightedLoot([10, 16], ['tfc:food/bear']) + .addWeightedLoot([1, 2], ['tfc:blubber']) event.addEntityLootModifier('tfc:grizzly_bear') .matchMainHand('#forge:tools/butchery_knives') @@ -21,11 +24,12 @@ function registerTFCLoots(event) { event.addEntityLootModifier('tfc:polar_bear') .addWeightedLoot([14, 20], ['tfc:food/bear']) - .addWeightedLoot([2, 5], ['tfc:blubber']) + .addWeightedLoot([6, 12], ['tfc:blubber']) event.addEntityLootModifier('tfc:polar_bear') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/bear']) + .addWeightedLoot([3, 6], ['tfc:blubber']) event.addEntityLootModifier('tfc:cougar') @@ -46,8 +50,9 @@ function registerTFCLoots(event) { event.addEntityLootModifier('tfc:sabertooth') .addWeightedLoot([9, 14], ['tfc:food/gran_feline']) + .addWeightedLoot([1, 2], ['tfc:blubber']) - event.addEntityLootModifier('tfc:sabertooth') + event.addEntityLootModifier('tfc:sabertooth') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 7], ['tfc:food/gran_feline']) @@ -94,6 +99,7 @@ function registerTFCLoots(event) { event.addEntityLootModifier('tfc:dog') .addWeightedLoot([5, 8], ['tfc:food/wolf']) + .addWeightedLoot([1, 2], ['tfc:blubber']) event.addEntityLootModifier('tfc:dog') .matchMainHand('#forge:tools/butchery_knives') @@ -140,115 +146,197 @@ function registerTFCLoots(event) { .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') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([5, 10], ['tfc:food/camelidae']) + .addWeightedLoot([1, 2], ['tfc:blubber']) + event.addEntityLootModifier('tfc:boar') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/pork']) + .addWeightedLoot([3, 5], ['tfc:blubber']) + event.addEntityLootModifier('tfc:bongo') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/venison']) + .addWeightedLoot([1, 2], ['tfc:blubber']) + + + event.addEntityLootModifier('tfc:caribou') + .addWeightedLoot([3, 6], ['tfc:blubber']) event.addEntityLootModifier('tfc:caribou') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([3, 5], ['tfc:food/venison']) + event.addEntityLootModifier('tfc:chicken') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 3], ['tfc:food/chicken']) + event.addEntityLootModifier('tfc:cow') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([8, 12], ['tfc:food/beef']) + .addWeightedLoot([2, 4], ['tfc:blubber']) + event.addEntityLootModifier('tfc:deer') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/venison']) + .addWeightedLoot([1, 2], ['tfc:blubber']) + + + event.addEntityLootModifier('tfc:dolphin') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([6, 12], ['tfc:blubber']) + .addWeightedLoot([3, 5], ['minecraft:bone']) + + event.addEntityLootModifier('tfc:dolphin') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([3, 6], ['tfc:blubber']) + event.addEntityLootModifier('tfc:donkey') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/horse_meat']) + .addWeightedLoot([1, 2], ['tfc:blubber']) + event.addEntityLootModifier('tfc:duck') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 3], ['tfc:food/duck']) + event.addEntityLootModifier('tfc:frog') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/frog_legs']) + event.addEntityLootModifier('tfc:gazelle') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([2, 4], ['tfc:food/venison']) + .addWeightedLoot([1, 2], ['tfc:blubber']) + event.addEntityLootModifier('tfc:goat') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 6], ['tfc:food/chevon']) + .addWeightedLoot([1, 2], ['tfc:blubber']) + event.addEntityLootModifier('tfc:grouse') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/grouse']) + event.addEntityLootModifier('tfc:horse') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/horse_meat']) + .addWeightedLoot([1, 2], ['tfc:blubber']) + + + event.addEntityLootModifier('tfc:manatee') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([5, 12], ['tfc:blubber']) + .addWeightedLoot([1, 5], ['minecraft:bone']) + + event.addEntityLootModifier('tfc:manatee') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([2, 6], ['tfc:blubber']) + event.addEntityLootModifier('tfc:moose') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([5, 10], ['tfc:food/venison']) + .addWeightedLoot([3, 6], ['tfc:blubber']) + event.addEntityLootModifier('tfc:mule') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/horse_meat']) + .addWeightedLoot([1, 2], ['tfc:blubber']) + + + event.addEntityLootModifier('tfc:musk_ox') + .addWeightedLoot([2, 4], ['tfc:blubber']) event.addEntityLootModifier('tfc:musk_ox') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/mutton']) + event.addEntityLootModifier('tfc:peafowl') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/peafowl']) + event.addEntityLootModifier('tfc:pheasant') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/pheasant']) + + event.addEntityLootModifier('tfc:pig') + .addWeightedLoot([4, 6], ['tfc:blubber']) + event.addEntityLootModifier('tfc:pig') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([5, 7], ['tfc:food/pork']) + .addWeightedLoot([2, 3], ['tfc:blubber']) + + + event.addEntityLootModifier('tfc:orca') + .removeLoot(ItemFilter.ALWAYS_TRUE) + .addWeightedLoot([12, 20], ['tfc:blubber']) + .addWeightedLoot([3, 7], ['minecraft:bone']) + + event.addEntityLootModifier('tfc:orca') + .matchMainHand('#forge:tools/butchery_knives') + .addWeightedLoot([6, 10], ['tfc:blubber']) + event.addEntityLootModifier('tfc:quail') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 3], ['tfc:food/quail']) + event.addEntityLootModifier('tfc:rabbit') .matchMainHand('#forge:tools/butchery_knives') .addLoot('tfc:food/rabbit') + .addWeightedLoot([0, 1], ['tfc:blubber']) + event.addEntityLootModifier('tfc:sheep') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([6, 9], ['tfc:food/mutton']) + .addWeightedLoot([1, 2], ['tfc:blubber']) + event.addEntityLootModifier('tfc:turkey') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([1, 2], ['tfc:food/turkey']) + event.addEntityLootModifier('tfc:turtle') .matchMainHand('#forge:tools/butchery_knives') .addLoot('tfc:food/turtle') + event.addEntityLootModifier('tfc:wildebeest') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([4, 7], ['tfc:food/beef']) + .addWeightedLoot([2, 3], ['tfc:blubber']) + event.addEntityLootModifier('tfc:yak') .matchMainHand('#forge:tools/butchery_knives') .addWeightedLoot([7, 10], ['tfc:food/chevon']) + .addWeightedLoot([3, 6], ['tfc:blubber']) // Blocks diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 2ce60c45e..bae982345 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -10,19 +10,43 @@ const registerTFCRecipes = (event) => { removeTFCRecipes(event) registerTFCMaterialsRecipes(event) registerTFCMetalsRecipes(event) - registerTFCStoneRecipes(event) - registerTFCSandRecipes(event) - registerTFCDirtRecipes(event) - registerTFCWoodRecipes(event) - registerTFCKnappingRecipes(event) - registerTFCMachineRecipes(event) - registerTFCAlabasterRecipes(event) registerTFCDyeRecipes(event) - //#region Π Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ ΠΏΠΎΡ€ΠΎΡˆΠΊΠΎΠ² - // Π”ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠ΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² - global.TFC_QUERN_POWDER_RECIPE_COMPONENTS.forEach(element => { + const TFC_QUERN_POWDER_RECIPE_COMPONENTS = /** @type {const} */ ([ + { input: "#forge:dusts/coke", output: "4x tfc:powder/coke", name: "coke_powder" }, + { input: "#forge:dusts/amethyst", output: "4x tfc:powder/amethyst", name: "amethyst_powder" }, + { input: "#forge:dusts/diamond", output: "4x tfc:powder/diamond", name: "diamond_powder" }, + { input: "#forge:dusts/emerald", output: "4x tfc:powder/emerald", name: "emerald_powder" }, + { input: "#forge:dusts/lapis", output: "4x tfc:powder/lapis_lazuli", name: "lapis_powder" }, + { input: "#forge:dusts/opal", output: "4x tfc:powder/opal", name: "opal_powder" }, + { input: "#forge:dusts/pyrite", output: "4x tfc:powder/pyrite", name: "pyrite_powder" }, + { input: "#forge:dusts/ruby", output: "4x tfc:powder/ruby", name: "ruby_powder" }, + { input: "#forge:dusts/sapphire", output: "4x tfc:powder/sapphire", name: "sapphire_powder" }, + { input: "#forge:dusts/topaz", output: "4x tfc:powder/topaz", name: "topaz_powder" }, + { input: "#forge:dusts/gold", output: "4x tfc:powder/native_gold", name: "gold_powder" }, + { input: "#forge:dusts/silver", output: "4x tfc:powder/native_silver", name: "silver_powder" }, + { input: "#forge:dusts/copper", output: "4x tfc:powder/native_copper", name: "copper_powder" }, + { input: "#forge:dusts/cassiterite", output: "4x tfc:powder/cassiterite", name: "cassiterite_powder" }, + { input: "#forge:dusts/bismuth", output: "4x tfc:powder/bismuthinite", name: "bismuth_powder" }, + { input: "#forge:dusts/garnierite", output: "4x tfc:powder/garnierite", name: "garnierite_powder" }, + { input: "#forge:dusts/sphalerite", output: "4x tfc:powder/sphalerite", name: "sphalerite_powder" }, + { input: "#forge:dusts/magnetite", output: "4x tfc:powder/magnetite", name: "magnetite_powder" }, + { input: "#forge:dusts/tetrahedrite", output: "4x tfc:powder/tetrahedrite", name: "tetrahedrite_powder" }, + { input: "#forge:dusts/malachite", output: "4x tfc:powder/malachite", name: "malachite_powder" }, + { input: "#forge:dusts/yellow_limonite", output: "4x tfc:powder/limonite", name: "limonite_powder" }, + { input: "#forge:dusts/hematite", output: "4x tfc:powder/hematite", name: "hematite_powder" }, + { input: "#forge:dusts/sulfur", output: "4x tfc:powder/sulfur", name: "sulfur_powder" }, + { input: "#forge:dusts/saltpeter", output: "4x tfc:powder/saltpeter", name: "saltpeter_powder" }, + { input: "#forge:dusts/salt", output: "4x tfc:powder/salt", name: "salt_powder" }, + { input: "#forge:dusts/graphite", output: "4x tfc:powder/graphite", name: "graphite_powder" }, + { input: "#forge:dusts/borax", output: "4x tfc:powder/flux", name: "flux_powder" }, + { input: "#forge:dusts/soda_ash", output: "4x tfc:powder/soda_ash", name: "soda_ash" }, + { input: "gtceu:charcoal_dust", output: "4x tfc:powder/charcoal", name: "charcoal" }, + { input: "tfc:ore/sylvite", output: "4x tfc:powder/sylvite", name: "sylvite" } + ]); + + TFC_QUERN_POWDER_RECIPE_COMPONENTS.forEach(element => { event.recipes.gtceu.macerator(`tfg:${element.name}`) .itemInputs(element.input) .itemOutputs(element.output) @@ -33,26 +57,6 @@ const registerTFCRecipes = (event) => { .id(`tfg:quern/${element.name}`) }) - //#endregion - - //#region Π Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ ΠΎΠ±ΠΆΠ°Ρ€ΠΊΠΈ Ρ„ΠΎΡ€ΠΌ - - global.TFC_FURNACE_MOLD_RECIPE_COMPONENTS.forEach(element => { - event.smelting(element.output, element.input) - .id(`tfg:smelting/${element.name}`) - }) - - global.MINECRAFT_DYE_NAMES.forEach(dye => { - event.smelting(`tfc:ceramic/${dye}_glazed_vessel`, `tfc:ceramic/${dye}_unfired_vessel`) - .id(`tfg:smelting/${dye}_glazed_vessel`) - - event.smelting(`tfc:ceramic/large_vessel/${dye}`, `tfc:ceramic/unfired_large_vessel/${dye}`) - .id(`tfg:smelting/${dye}_large_vessel`) - }) - - //#endregion - - //#region Π Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ элСктричСской Ρ‚Π΅ΠΏΠ»ΠΈΡ†Ρ‹ // Π”Π΅Ρ€Π΅Π²ΠΎ @@ -89,21 +93,12 @@ const registerTFCRecipes = (event) => { const itemId = element.id; const recipeId = `greenhouse_${itemId.replace(':', '_')}`; - generateGreenHouseRecipe(event, itemId, '#tfc:any_fresh_water', 8000, `8x ${itemId}`, + generateGreenHouseRecipe(event, itemId, '#tfc:any_fresh_water', 8000, `8x ${itemId}`, recipeId, null, 8, itemId, GTValues.VH[GTValues.LV]); }); //#endregion - event.shapeless('tfc:crucible', ['tfc:crucible']).id('tfg:empty_crucible') - - event.shapeless('2x minecraft:stick', ['#minecraft:saplings', '#forge:tools/knives']).id('tfg:strip_saplings') - - event.recipes.gtceu.cutter('tfg:saplings_to_sticks') - .itemInputs('#minecraft:saplings') - .itemOutputs('2x minecraft:stick') - .duration(20) - .EUt(7) // ДомСнная ΠΏΠ΅Ρ‡ΡŒ event.recipes.gtceu.shaped('tfc:blast_furnace', [ @@ -126,40 +121,64 @@ const registerTFCRecipes = (event) => { [TFC.ingredient.notRotten('tfc:pumpkin'), '#tfc:knives'], 'tfc:pumpkin') .id(`tfc:crafting/pumpkin_chunks_knife`) - // Lime + // Flux + Lime event.smelting('tfc:powder/lime', 'tfc:powder/flux') .id('tfg:smelting/lime') - // Kaolinite Clay - regular smelting recipes can't have multiple inputs - event.recipes.gtceu.alloy_smelter('tfg:kaolinite') - .itemInputs('tfc:kaolin_clay') - .circuit(1) - .chancedOutput('tfc:powder/kaolinite', 2000, 0) - .duration(100) - .EUt(16) + event.recipes.gtceu.macerator('flux') + .itemInputs('#tfc:fluxstone') + .itemOutputs('2x tfc:powder/flux') + .duration(30) + .EUt(2) - // Fire Clay - event.recipes.gtceu.alloy_smelter('tfg:cheaper_fire_clay') - .itemInputs('#forge:dusts/graphite', '4x tfc:kaolin_clay') - .itemOutputs('2x tfc:fire_clay') - .duration(600) - .EUt(GTValues.VA[GTValues.ULV]) + event.recipes.gtceu.forge_hammer('flux') + .itemInputs('#tfc:fluxstone') + .itemOutputs('2x tfc:powder/flux') + .duration(30) + .EUt(2) - event.recipes.gtceu.alloy_smelter('tfg:oops_i_smelted_all_my_kaolin') - .itemInputs('minecraft:clay_ball', 'tfc:powder/kaolinite') - .itemOutputs('tfc:kaolin_clay') - .duration(600) - .EUt(GTValues.VA[GTValues.ULV]) + event.recipes.greate.pressing('2x tfc:powder/flux', '#tfc:fluxstone') + .recipeTier(0) + .id('greate:pressing/flux') - // Π’Ρ‹ΠΏΠ°Ρ€ΠΈΠ²Π°Π½ΠΈΠ΅ соли + // Salt Water event.recipes.tfc.pot([], Fluid.of('tfc:salt_water', 625), 300, 100) .itemOutput('gtceu:small_salt_dust') .id('tfg:tfc/pot/salt') - // Salt Water generateMixerRecipe(event, ['#forge:dusts/salt'], "#tfg:clean_water 1000", [], 2, Fluid.of('tfc:salt_water', 1000), 40, 7, 64, 'tfg:tfc/salt_water') + event.recipes.gtceu.centrifuge('centrifuging_tfc_salt_water') + .inputFluids(Fluid.of('tfc:salt_water', 1000)) + .itemOutputs('1x gtceu:salt_dust') + .outputFluids(Fluid.of('minecraft:water', 1000)) + .duration(51) + .EUt(30) + .circuit(1) + + event.recipes.gtceu.electrolyzer('electrolyze_tfc_salt_water') + .inputFluids(Fluid.of('tfc:salt_water', 1000)) + .itemOutputs('1x gtceu:sodium_hydroxide_dust', '2x gtceu:small_sodium_hydroxide_dust') + .outputFluids(Fluid.of('gtceu:chlorine', 500), Fluid.of('gtceu:hydrogen', 500)) + .duration(720) + .EUt(30) + + // Add circuit to gregtech salt water mixer recipe + event.remove({ id: 'gtceu:mixer/salt_water' }) + generateMixerRecipe(event, ['2x #forge:dusts/salt'], Fluid.of('minecraft:water', 1000), [], 1, Fluid.of('gtceu:salt_water', 1000), 40, 7, 64, 'tfg:gtceu/salt_water') + + event.recipes.tfc.barrel_instant() + .inputItem(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Salt, 1)) + .inputFluid(Fluid.of('minecraft:water', 1000)) + .outputFluid(Fluid.of('tfc:salt_water', 1000)) + .id('tfg:barrel/water_to_salt_water') + + event.recipes.tfc.barrel_instant() + .inputItem("tfc:powder/salt") + .inputFluid(Fluid.of('minecraft:water', 250)) + .outputFluid(Fluid.of('tfc:salt_water', 250)) + .id('tfg:barrel/water_to_salt_water_tfc') // Seaweed and kelp event.recipes.tfc.heating('tfc:groundcover/seaweed', 200) @@ -176,20 +195,9 @@ const registerTFCRecipes = (event) => { 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') - //#region ΠžΠ±Ρ€ΡƒΡˆΠ΅Π½ΠΈΡ - - event.recipes.tfc.collapse('#tfg:rock_slabs').id('tfg:collapse/rock_slabs') - event.recipes.tfc.collapse('#tfg:rock_stairs').id('tfg:collapse/rock_stairs') - event.recipes.tfc.collapse('#tfg:rock_walls').id('tfg:collapse/rock_walls') - - //#endregion - //More accesible solar drier event.replaceInput({ id: 'firmalife:crafting/solar_drier' }, 'gtceu:stainless_steel_rod', 'gtceu:silver_rod') - //Wood ash - event.recipes.create.splashing([Item.of('tfc:powder/wood_ash').withChance(0.25), Item.of('minecraft:stick').withChance(0.25)], 'tfc:torch') - .id('tfg:splashing/wash_torch') //Lye generateMixerRecipe(event, 'tfc:powder/wood_ash', "#tfg:clean_water 200", @@ -204,102 +212,36 @@ const registerTFCRecipes = (event) => { .EUt(2) // Brass Mechanism - event.recipes.shapeless('gtceu:small_brass_gear', [ 'tfc:brass_mechanisms' ]).id('tfg:replace_brass_mechanisms') event.replaceInput({ input: 'tfc:brass_mechanisms' }, 'tfc:brass_mechanisms', 'gtceu:small_brass_gear') - // Fertilizers - event.recipes.gtceu.centrifuge('tfg:gtceu/centrifuge/pure_fertilizers') - .itemInputs('1x gtceu:fertilizer') - .itemOutputs('1x tfc:pure_nitrogen', '1x tfc:pure_potassium', '1x tfc:pure_phosphorus') - .duration(340) - .EUt(GTValues.VA[GTValues.ULV]) + // Rennet + event.recipes.gtceu.fermenter('tfg:fermenter/vegetable_rennet') + .itemInputs('#tfg:ferments_to_rennet') + .itemOutputs('firmalife:rennet') + .duration(400) + .EUt(16) - event.recipes.gtceu.mixer('tfg:tfc/mixer/fertilizer') - .itemInputs('1x tfc:pure_nitrogen', '1x tfc:pure_potassium', '1x tfc:pure_phosphorus', ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Clay, 1)) - .itemOutputs('1x gtceu:fertilizer') - .duration(160) - .EUt(GTValues.VA[GTValues.ULV]) + event.recipes.gtceu.fermenter('tfg:fermenter/biomass_rennet') + .inputFluids(Fluid.of('gtceu:fermented_biomass', 100)) + .itemOutputs('firmalife:rennet') + .duration(2400) + .EUt(16) - event.recipes.gtceu.gas_pressurizer('tfg:pure_nitrogen') - .itemInputs('#forge:wax') - .inputFluids(Fluid.of('gtceu:nitrogen', 1000)) - .itemOutputs('16x tfc:pure_nitrogen') + // Brine + event.recipes.gtceu.mixer('tfg:tfc/brine') + .inputFluids(Fluid.of('tfc:salt_water', 900)) + .inputFluids(Fluid.of('tfc:vinegar', 100)) + .outputFluids(Fluid.of('tfc:brine', 1000)) .duration(100) - .EUt(GTValues.VA[GTValues.LV]) + .EUt(16) - //Hide Sewing - const stages = [ - 'raw', - 'soaked', - 'scraped', - 'prepared', - 'sheepskin' - ]; - - stages.forEach(stage => { - //Combining - event.recipes.tfc.damage_inputs_shapeless_crafting( - event.shapeless(`1x tfc:medium_${stage}_hide`, [ - `2x tfc:small_${stage}_hide`, - '#tfc:sewing_needles', - '#forge:string', - 'tfc:glue' - ]).id(`tfg:tfc/small_to_medium_${stage}_hide`) - ) - event.recipes.tfc.damage_inputs_shapeless_crafting( - event.shapeless(`1x tfc:large_${stage}_hide`, [ - `3x tfc:small_${stage}_hide`, - '#tfc:sewing_needles', - '#forge:string', - 'tfc:glue' - ]).id(`tfg:tfc/small_to_large_${stage}_hide`) - ) - - event.recipes.gtceu.assembler(`tfg:gtceu/assembler/small_to_medium_${stage}_hide`) - .inputFluids(Fluid.of('gtceu:glue', 25)) - .itemOutputs(`1x tfc:medium_${stage}_hide`) - .itemInputs(`2x tfc:small_${stage}_hide`) - .duration(60) - .circuit(7) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.assembler(`tfg:gtceu/assembler/small_to_large_${stage}_hide`) - .inputFluids(Fluid.of('gtceu:glue', 25)) - .itemOutputs(`1x tfc:large_${stage}_hide`) - .itemInputs(`3x tfc:small_${stage}_hide`) - .duration(60) - .circuit(9) - .EUt(GTValues.VA[GTValues.ULV]) - - //Cutting - event.recipes.tfc.damage_inputs_shapeless_crafting( - event.shapeless(`2x tfc:small_${stage}_hide`, [ - `1x tfc:medium_${stage}_hide`, - '#forge:shears' - ]).id(`tfg:tfc/medium_to_small_${stage}_hide`) - ) - - event.recipes.tfc.damage_inputs_shapeless_crafting( - event.shapeless(`3x tfc:small_${stage}_hide`, [ - `1x tfc:large_${stage}_hide`, - '#forge:shears' - ]).id(`tfg:tfc/large_to_small_${stage}_hide`) - ) - - event.recipes.gtceu.assembler(`tfg:gtceu/assembler/medium_to_small_${stage}_hide`) - .itemOutputs(`2x tfc:small_${stage}_hide`) - .itemInputs(`1x tfc:medium_${stage}_hide`) - .duration(60) - .circuit(4) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.assembler(`tfg:gtceu/assembler/large_to_small_${stage}_hide`) - .itemOutputs(`3x tfc:small_${stage}_hide`) - .itemInputs(`1x tfc:large_${stage}_hide`) - .duration(60) - .circuit(6) - .EUt(GTValues.VA[GTValues.ULV]) - }); + // LimeWater + Sand -> Mortar + event.recipes.gtceu.mixer('mortar') + .itemInputs('#forge:sand') + .inputFluids(Fluid.of('tfc:limewater', 100)) + .itemOutputs('16x tfc:mortar') + .duration(800) + .EUt(8) // Jar lids @@ -311,43 +253,78 @@ const registerTFCRecipes = (event) => { event.replaceInput({ mod: 'tfc' }, 'minecraft:sugar', '#tfg:sugars') - // Sea Water - event.recipes.tfc.barrel_instant() - .inputItem(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Salt, 1)) - .inputFluid(Fluid.of('minecraft:water', 1000)) - .outputFluid(Fluid.of('tfc:salt_water', 1000)) - .id('tfg:barrel/water_to_salt_water') - event.recipes.tfc.barrel_instant() - .inputItem("tfc:powder/salt") - .inputFluid(Fluid.of('minecraft:water', 250)) - .outputFluid(Fluid.of('tfc:salt_water', 250)) - .id('tfg:barrel/water_to_salt_water_tfc') + // jute net -> burlap net + event.replaceInput({ id: 'tfc:crafting/jute_net' }, 'tfc:jute_fiber', '#tfg:burlap_fiber') - // jute net -> burlap net - event.replaceInput({ id: 'tfc:crafting/jute_net'}, 'tfc:jute_fiber', '#tfg:burlap_fiber') + // horse armor to use burlap + global.TFC_EQUIPMENT_METALS.forEach(material => { + event.replaceInput({ id: `tfc:crafting/${material}_horse_armor` }, `tfc:jute_fiber`, `#tfg:burlap_fiber`) + }) - // horse armor to use burlap - global.TFC_EQUIPMENT_METALS.forEach(material => { - event.replaceInput({ id: `tfc:crafting/${material}_horse_armor`}, `tfc:jute_fiber`, `#tfg:burlap_fiber`) - }) + event.recipes.gtceu.centrifuge('tfg:soot') + .itemInputs('tfc:soot') + .itemOutputs('#forge:dusts/carbon') + .duration(20) + .EUt(2) - // Just a dummy recipe to tell people they can get wood ash by throwing torches in water via TFC - event.custom({ - type: "ae2:transform", - circumstance: { - type: "fluid", - tag: "tfc:water" - }, - ingredients: [{ item: 'tfc:torch' }], - result: { item: 'tfc:powder/wood_ash' } - }).id(`tfg:ae_transform/torch_to_wood_ash`) + event.recipes.gtceu.extruder('tfg:wrought_iron_grill_electric_only') + .itemInputs('2x #forge:plates/wrought_iron') + .notConsumable('tfg:large_casing_extruder_mold') + .itemOutputs('tfc:wrought_iron_grill') + .duration(60) + .EUt(8) - event.shaped('8x minecraft:ladder', [ - 'A A', - 'AAA', - 'A A' - ], { - A: '#tfc:lumber' - }).id('tfc:crafting/vanilla/ladder') + // acetic acid to vinegar conversion + + event.recipes.gtceu.mixer('vinegar_from_acetic_acid') + .inputFluids( + Fluid.of('minecraft:water', 950), + Fluid.of('gtceu:acetic_acid', 50) + ) + .outputFluids( + Fluid.of('tfc:vinegar', 1000) + ) + .circuit(1) + .duration(30) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.distillery('acetic_acid_from_vinegar') + .inputFluids( + Fluid.of('tfc:vinegar', 1000) + ) + .outputFluids( + Fluid.of('gtceu:acetic_acid', 50) + ) + .circuit(1) + .duration(50) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.distillery('water_from_vinegar') + .inputFluids( + Fluid.of('tfc:vinegar', 1000) + ) + .outputFluids( + Fluid.of('minecraft:water', 950) + ) + .circuit(2) + .duration(50) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.distillation_tower('vinegar_distillation') + .inputFluids( + Fluid.of('tfc:vinegar', 1000) + ) + .outputFluids( + Fluid.of('gtceu:acetic_acid', 50), + Fluid.of('minecraft:water', 950) + ) + .duration(80) + .EUt(GTValues.VA[GTValues.MV]) + + // fix alcohol tag for vinegar + event.recipes.tfc.barrel_sealed(8000) + .inputs('#tfc:foods/fruits', TFC.fluidStackIngredient('#tfg:alcohols', 250)) + .outputFluid(Fluid.of('tfc:vinegar', 250)) + .id('tfc:barrel/vinegar') } diff --git a/kubejs/server_scripts/tfc/recipes.machines.js b/kubejs/server_scripts/tfc/recipes.machines.js deleted file mode 100644 index d2f419575..000000000 --- a/kubejs/server_scripts/tfc/recipes.machines.js +++ /dev/null @@ -1,441 +0,0 @@ -ο»Ώ// priority: 0 -"use strict"; - -function registerTFCMachineRecipes(event) { - - // Π‘ΡƒΠΌΠ°Π³Π° - event.recipes.gtceu.cutter('tfg:unrefined_paper') - .itemInputs('tfc:unrefined_paper') - .itemOutputs('minecraft:paper') - .duration(100) - .EUt(7) - - // Limewater - event.recipes.gtceu.mixer('tfg:limewater_from_lime') - .itemInputs('tfc:powder/lime') - .inputFluids(Fluid.of('water', 500)) - .outputFluids(Fluid.of('tfc:limewater', 500)) - .duration(20) - .EUt(16) - - event.recipes.gtceu.mixer('tfg:limewater_from_flux') - .itemInputs('tfc:powder/flux') - .inputFluids(Fluid.of('water', 500)) - .outputFluids(Fluid.of('tfc:limewater', 500)) - .duration(20) - .EUt(16) - - // Tannin - event.recipes.gtceu.chemical_bath('tfg:tannin') - .itemInputs('#tfc:makes_tannin') - .inputFluids(Fluid.of('water', 1000)) - .outputFluids(Fluid.of('tfc:tannin', 1000)) - .duration(2400) - .EUt(16) - - // Soaked hides - event.recipes.gtceu.chemical_bath('tfg:small_soaked_hide') - .itemInputs('tfc:small_raw_hide') - .inputFluids(Fluid.of('tfc:limewater', 300)) - .itemOutputs('tfc:small_soaked_hide') - .duration(1600) - .EUt(16) - - event.recipes.gtceu.chemical_bath('tfg:medium_soaked_hide') - .itemInputs('tfc:medium_raw_hide') - .inputFluids(Fluid.of('tfc:limewater', 400)) - .itemOutputs('tfc:medium_soaked_hide') - .duration(2400) - .EUt(16) - - event.recipes.gtceu.chemical_bath('tfg:large_soaked_hide') - .itemInputs('tfc:large_raw_hide') - .inputFluids(Fluid.of('tfc:limewater', 500)) - .itemOutputs('tfc:large_soaked_hide') - .duration(3200) - .EUt(16) - - // Scraped Hides - event.recipes.gtceu.cutter('tfg:small_scraped_hide') - .itemInputs('tfc:small_soaked_hide') - .itemOutputs('tfc:small_scraped_hide') - .duration(100) - .EUt(7) - - event.recipes.gtceu.cutter('tfg:medium_scraped_hide') - .itemInputs('tfc:medium_soaked_hide') - .itemOutputs('tfc:medium_scraped_hide') - .duration(100) - .EUt(7) - - event.recipes.gtceu.cutter('tfg:large_scraped_hide') - .itemInputs('tfc:large_soaked_hide') - .itemOutputs('tfc:large_scraped_hide') - .duration(100) - .EUt(7) - - // Prepared hides - event.recipes.gtceu.chemical_bath('tfg:small_prepared_hide') - .itemInputs('tfc:small_soaked_hide') - .inputFluids(Fluid.of('water', 300)) - .itemOutputs('tfc:small_prepared_hide') - .duration(1600) - .EUt(16) - - event.recipes.gtceu.chemical_bath('tfg:medium_prepared_hide') - .itemInputs('tfc:medium_soaked_hide') - .inputFluids(Fluid.of('water', 400)) - .itemOutputs('tfc:medium_prepared_hide') - .duration(2400) - .EUt(16) - - event.recipes.gtceu.chemical_bath('tfg:large_prepared_hide') - .itemInputs('tfc:large_soaked_hide') - .inputFluids(Fluid.of('water', 500)) - .itemOutputs('tfc:large_prepared_hide') - .duration(3200) - .EUt(16) - - // Leather - event.recipes.gtceu.chemical_bath('tfg:small_leather') - .itemInputs('tfc:small_prepared_hide') - .inputFluids(Fluid.of('tfc:tannin', 300)) - .itemOutputs('minecraft:leather') - .duration(1600) - .EUt(16) - - event.recipes.gtceu.chemical_bath('tfg:medium_leather') - .itemInputs('tfc:medium_prepared_hide') - .inputFluids(Fluid.of('tfc:tannin', 400)) - .itemOutputs('2x minecraft:leather') - .duration(2400) - .EUt(16) - - event.recipes.gtceu.chemical_bath('tfg:large_leather') - .itemInputs('tfc:large_prepared_hide') - .inputFluids(Fluid.of('tfc:tannin', 500)) - .itemOutputs('3x minecraft:leather') - .duration(3200) - .EUt(16) - - //#region ΠœΠΎΠ»Π΄Ρ‹ Π² ассСмблСрС - - for (let i = 0; i < global.TFC_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS.length; i++) { - let element = global.TFC_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS[i]; - - event.recipes.gtceu.assembler(`tfg:tfc/${element.name}`) - .itemInputs(element.input) - .circuit(i) - .itemOutputs(element.output) - .duration(450) - .EUt(2) - } - - event.recipes.gtceu.extruder('tfg:unfired_clay_brick') - .itemInputs('minecraft:clay_ball') - .notConsumable('gtceu:ingot_extruder_mold') - .itemOutputs('tfc:ceramic/unfired_brick') - .duration(20) - .EUt(2) - - event.recipes.gtceu.extruder('tfg:unfired_fire_clay_brick') - .itemInputs('tfc:fire_clay') - .notConsumable('gtceu:ingot_extruder_mold') - .itemOutputs('tfc:ceramic/unfired_fire_brick') - .duration(20) - .EUt(2) - - //#endregion - - //#region БтСклянныС смСси Π² Π±ΡƒΡ‚Ρ‹Π»ΠΊΠΈ Π² ассСмблСрС - - global.TFC_BATCH_TO_BOTTLE_ASSEMBLING_RECIPE_COMPONENTS.forEach(element => { - event.recipes.gtceu.alloy_smelter(`tfg:tfc/${element.name}`) - .itemInputs(element.input) - .notConsumable('gtceu:bottle_casting_mold') - .itemOutputs(element.output) - .duration(100) - .EUt(2) - .category(GTRecipeCategories.INGOT_MOLDING) - }) - - //#endregion - - //#region Π‘Π«Π«Π«Π  0_0 - - // Rennet - event.recipes.gtceu.fermenter('tfg:fermenter/vegetable_rennet') - .itemInputs('#tfg:ferments_to_rennet') - .itemOutputs('firmalife:rennet') - .duration(400) - .EUt(16) - - event.recipes.gtceu.fermenter('tfg:fermenter/biomass_rennet') - .inputFluids(Fluid.of('gtceu:fermented_biomass', 100)) - .itemOutputs('firmalife:rennet') - .duration(2400) - .EUt(16) - - //#endregion - - // Brine - - event.recipes.gtceu.mixer('tfg:tfc/brine') - .inputFluids(Fluid.of('tfc:salt_water', 900)) - .inputFluids(Fluid.of('tfc:vinegar', 100)) - .outputFluids(Fluid.of('tfc:brine', 1000)) - .duration(100) - .EUt(16) - - //#endregion - - // Lamp Glass - event.recipes.gtceu.alloy_smelter(`tfg:tfc/lamp_glass`) - .itemInputs('#tfc:glass_batches') - .notConsumable('#tfg:unfinished_lamps') - .itemOutputs('tfc:lamp_glass') - .duration(100) - .EUt(2) - - event.recipes.gtceu.alloy_smelter(`tfg:tfc/lamp_glass_from_dust`) - .itemInputs('#forge:dusts/glass') - .notConsumable('#tfg:unfinished_lamps') - .itemOutputs('tfc:lamp_glass') - .duration(100) - .EUt(2) - - // Empty Jar - event.recipes.gtceu.alloy_smelter('tfc:jar_alloying') - .itemInputs('#tfc:glass_batches_tier_2') - .notConsumable('gtceu:ball_casting_mold') - .itemOutputs('tfc:empty_jar') - .duration(100) - .EUt(2) - .category(GTRecipeCategories.INGOT_MOLDING) - - event.recipes.gtceu.fluid_solidifier('tfc:jar_solidification') - .inputFluids(Fluid.of('gtceu:glass', 144)) - .notConsumable('gtceu:cylinder_casting_mold') - .itemOutputs('tfc:empty_jar') - .duration(100) - .EUt(2) - - event.recipes.gtceu.extractor('tfc:jar_extraction') - .itemInputs('#tfc:jars') - .outputFluids(Fluid.of('gtceu:glass', 144)) - .duration(50) - .EUt(2) - - event.recipes.gtceu.extractor('tfc:glass_batch_extraction') - .itemInputs('#tfc:glass_batches') - .outputFluids(Fluid.of('gtceu:glass', 144)) - .duration(50) - .EUt(2) - - event.recipes.gtceu.lathe('tfc:lens') - .itemInputs('#forge:glass') - .itemOutputs('tfc:lens') - .duration(100) - .EUt(16) - - // Wool Yarn - event.recipes.gtceu.macerator('macerate_wool') - .itemInputs('#minecraft:wool') - .itemOutputs('tfc:wool_yarn') - .chancedOutput('tfc:wool_yarn', 9000, 0) - .chancedOutput('tfc:wool_yarn', 5000, 0) - .chancedOutput('tfc:wool_yarn', 2000, 0) - .duration(200) - .EUt(2) - - // LimeWater + Sand -> Mortar - event.recipes.gtceu.mixer('mortar') - .itemInputs('#forge:sand') - .inputFluids(Fluid.of('tfc:limewater', 100)) - .itemOutputs('16x tfc:mortar') - .duration(800) - .EUt(8) - - - // 1x Small SheepSkin -> 1x Wool - event.recipes.gtceu.assembler('tfg:tfc/wool_1') - .itemInputs('tfc:small_sheepskin_hide') - .itemOutputs('tfc:wool') - .duration(100) - .circuit(3) - .EUt(4) - - // 1x Medium SheepSkin -> 1x Wool - event.recipes.gtceu.assembler('tfg:tfc/wool_2') - .itemInputs('tfc:medium_sheepskin_hide') - .itemOutputs('2x tfc:wool') - .duration(100) - .circuit(3) - .EUt(4) - - // 1x Large SheepSkin -> 1x Wool - event.recipes.gtceu.assembler('tfg:tfc/wool_3') - .itemInputs('tfc:large_sheepskin_hide') - .itemOutputs('3x tfc:wool') - .duration(100) - .circuit(3) - .EUt(4) - - // Wool Yarn - event.recipes.gtceu.wiremill('tfg:tfc/wool_yarn') - .itemInputs('tfc:wool') - .itemOutputs('8x tfc:wool_yarn') - .duration(100) - .EUt(4) - - // Burlap Cloth - event.recipes.gtceu.assembler('tfg:tfc/burlap_cloth') - .itemInputs('12x tfc:jute_fiber') - .circuit(0) - .itemOutputs('tfc:burlap_cloth') - .duration(100) - .EUt(4) - - // Silk Cloth - event.recipes.gtceu.assembler('tfg:tfc/silk_cloth') - .itemInputs('24x minecraft:string') - .circuit(0) - .itemOutputs('tfc:silk_cloth') - .duration(100) - .EUt(4) - - // Wool Cloth - event.recipes.gtceu.assembler('tfg:tfc/wool_cloth') - .itemInputs('16x tfc:wool_yarn') - .circuit(0) - .itemOutputs('tfc:wool_cloth') - .duration(100) - .EUt(4) - - // Cloths to Wool - event.recipes.gtceu.assembler('tfg:tfc/cloth_to_wool') - .itemInputs('4x #tfc:sewing_light_cloth') - .itemOutputs('8x minecraft:white_wool') - .circuit(16) - .duration(100) - .EUt(4) - - // Jute Fiber - generateMixerRecipe(event, 'tfc:jute', "#tfg:clean_water 200", - 'tfc:jute_fiber', null, [], 100, 4, 16, 'tfg:tfc/jute_fiber') - - // Ceramic Recycling - event.recipes.gtceu.macerator('tfg:sherd_to_brick_dust') - .itemInputs('firmalife:pottery_sherd') - .itemOutputs('#forge:dusts/brick') - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .duration(20) - .EUt(2) - - event.recipes.gtceu.macerator('tfg:ceramic_molds') - .itemInputs('#tfc:fired_molds') - .itemOutputs('2x #forge:dusts/brick') - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .duration(20) - .EUt(2) - - event.recipes.gtceu.macerator('tfg:large_vessels') - .itemInputs('#tfc:fired_large_vessels') - .itemOutputs('5x #forge:dusts/brick') - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .duration(20) - .EUt(2) - - event.recipes.gtceu.macerator('tfg:casting_channel') - .itemInputs('tfcchannelcasting:channel') - .itemOutputs('1x #forge:dusts/brick') - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .duration(20) - .EUt(2) - - event.recipes.gtceu.macerator('tfg:mold_table') - .itemInputs('tfcchannelcasting:mold_table') - .itemOutputs('5x #forge:dusts/brick') - .category(GTRecipeCategories.MACERATOR_RECYCLING) - .duration(20) - .EUt(2) - - // Humus and compost - event.recipes.gtceu.extractor('tfg:humus_from_leaves') - .itemInputs('#minecraft:leaves') - .itemOutputs('tfc:groundcover/humus') - .duration(600) - .EUt(2) - - event.recipes.gtceu.extractor('tfg:humus_from_fallen_leaves') - .itemInputs('#tfc:fallen_leaves') - .itemOutputs('tfc:groundcover/humus') - .duration(600) - .EUt(2) - - event.recipes.gtceu.fermenter('tfg:fertilizer_to_compost') - .itemInputs('4x gtceu:fertilizer') - .itemOutputs('tfc:compost') - .duration(1200) - .EUt(2) - - const BROWNS = [ '16x #tfc:compost_browns_low', '8x #tfc:compost_browns', '4x #tfc:compost_browns_high' ]; - const GREENS = [ '16x #tfc:compost_greens_low', '8x #tfc:compost_greens', '4x #tfc:compost_greens_high' ]; - - let i = 0; - BROWNS.forEach(brown => { - GREENS.forEach(green => { - event.recipes.gtceu.mixer(`tfg:compost_${i++}`) - .itemInputs(brown, green) - .itemOutputs('tfc:compost') - .duration(1200) - .EUt(2) - }) - }) - - event.recipes.gtceu.centrifuge('tfg:soot') - .itemInputs('tfc:soot') - .itemOutputs('#forge:dusts/carbon') - .duration(20) - .EUt(2) - - // Stripped logs - - global.TFC_WOOD_TYPES.forEach(wood => { - event.recipes.gtceu.lathe(`tfg:stripping_${wood}_log`) - .itemInputs(`tfc:wood/log/${wood}`) - .itemOutputs(`tfc:wood/stripped_log/${wood}`) - .duration(50) - .EUt(2) - - event.recipes.gtceu.lathe(`tfg:stripping_${wood}_wood`) - .itemInputs(`tfc:wood/wood/${wood}`) - .itemOutputs(`tfc:wood/stripped_wood/${wood}`) - .duration(50) - .EUt(2) - - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ item: `tfc:wood/log/${wood}` }], - results: [{ item: `tfc:wood/stripped_log/${wood}` }], - speed_limits: 0, - processingTime: 50 - }).id(`tfg:vi/lathe/stripping_${wood}_log`) - - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ item: `tfc:wood/wood/${wood}` }], - results: [{ item: `tfc:wood/stripped_wood/${wood}` }], - speed_limits: 0, - processingTime: 50 - }).id(`tfg:vi/lathe/stripping_${wood}_wood`) - }) - - - event.recipes.gtceu.extruder('tfg:wrought_iron_grill_electric_only') - .itemInputs('2x #forge:plates/wrought_iron') - .notConsumable('tfg:large_casing_extruder_mold') - .itemOutputs('tfc:wrought_iron_grill') - .duration(60) - .EUt(8) -} diff --git a/kubejs/server_scripts/tfc/recipes.materials.js b/kubejs/server_scripts/tfc/recipes.materials.js index 064897fba..c89a439d6 100644 --- a/kubejs/server_scripts/tfc/recipes.materials.js +++ b/kubejs/server_scripts/tfc/recipes.materials.js @@ -240,15 +240,9 @@ function registerTFCMaterialsRecipes(event) { // These aren't TFC recipes but they go here since they don't have a tag prefix // and I'm too lazy to make them one - event.custom({ - type: 'vintageimprovements:curving', - ingredients: [doublePlateItem], - // tuyeres are roughly bottle shaped, right? - // (there's no other mold that wouldn't conflict and this seems close enough) - itemAsHead: 'gtceu:bottle_extruder_mold', - results: [{ item: `tfc:metal/tuyere/${material.getName()}` }], - processingTime: material.getMass() * 6 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/curving/${material.getName()}_tuyere`) + event.recipes.vintageimprovements.curving(`tfc:metal/tuyere/${material.getName()}`, doublePlateItem) + .head('gtceu:bottle_extruder_mold') + .id(`tfg:vi/curving/${material.getName()}_tuyere`) event.recipes.gtceu.extruder(`tfg:${material.getName()}_tuyere`) .itemInputs(doublePlateItem) @@ -271,13 +265,9 @@ function registerTFCMaterialsRecipes(event) { .tier(tfcProperty.getTier()) .id(`tfc:anvil/${material.getName()}_shield`) - event.custom({ - type: 'vintageimprovements:curving', - ingredients: [doublePlateItem], - itemAsHead: 'gtceu:plate_extruder_mold', - results: [{ item: `tfc:metal/shield/${material.getName()}` }], - processingTime: material.getMass() * 6 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/curving/${material.getName()}_shield`) + event.recipes.vintageimprovements.curving(`tfc:metal/shield/${material.getName()}`, doublePlateItem) + .head('gtceu:plate_extruder_mold') + .id(`tfg:vi/curving/${material.getName()}_shield`) event.recipes.gtceu.extruder(`tfg:${material.getName()}_shield`) .itemInputs(doublePlateItem) @@ -527,6 +517,11 @@ function registerTFCMaterialsRecipes(event) { event.recipes.tfc.anvil(rodItem.withCount(2), ingotItem, ['draw_last']) .tier(tfcProperty.getTier()) .id(`tfc:anvil/${material.getName()}_rod`) + + if (material.hasFlag(TFGMaterialFlags.CAN_BE_UNMOLDED)) { + event.recipes.tfc.casting(rodItem.withCount(1), 'tfg:rod_mold', Fluid.of(outputMaterial.getFluid(), 72), 0.05) + .id(`tfc:casting/${material.getName()}_rod`) + } // Long Rods let longRodItem = ChemicalHelper.get(TagPrefix.rodLong, material, 1) @@ -623,16 +618,21 @@ function registerTFCMaterialsRecipes(event) { } // Nugget - let nuggetItem = ChemicalHelper.get(TagPrefix.nugget, material, 6) + let nuggetItem = ChemicalHelper.get(TagPrefix.nugget, material, 9) if (!nuggetItem.isEmpty()) { - event.recipes.tfc.heating(`#forge:nuggets/${material.getName()}`, tfcProperty.getMeltTemp()) + event.recipes.tfc.heating(nuggetItem, tfcProperty.getMeltTemp()) .resultFluid(Fluid.of(outputMaterial.getFluid(), 144/9)) .id(`tfc:heating/metal/${material.getName()}_nugget`) event.recipes.tfc.anvil(nuggetItem, ingotItem, ['punch_last', 'hit_second_last', 'punch_third_last']) .tier(tfcProperty.getTier()) .id(`tfc:anvil/${material.getName()}_nugget`) + + if (material.hasFlag(TFGMaterialFlags.CAN_BE_UNMOLDED)) { + event.recipes.tfc.casting(nuggetItem.withCount(4), 'tfg:nugget_mold', Fluid.of(outputMaterial.getFluid(), 64), 0.05) + .id(`tfc:casting/${material.getName()}_nugget`) + } } } @@ -640,16 +640,17 @@ function registerTFCMaterialsRecipes(event) { let smallGearItem = ChemicalHelper.get(TagPrefix.gearSmall, material, 1) if (!smallGearItem.isEmpty()) { - if (tfcProperty.getMeltTemp() <= 1540) { - event.recipes.tfc.heating(`gtceu:small_${material.getName()}_gear`, tfcProperty.getMeltTemp()) - .resultFluid(Fluid.of(`gtceu:${material.getName()}`, 144)) + event.recipes.tfc.heating(smallGearItem, tfcProperty.getMeltTemp()) + .resultFluid(Fluid.of(outputMaterial.getFluid(), 144)) .id(`tfc:heating/small_${material.getName()}_gear`) - } - if (material.hasFlag(MaterialFlags.GENERATE_SMALL_GEAR)) { - event.recipes.tfc.anvil(`gtceu:small_${material.getName()}_gear`, `#forge:ingots/${material.getName()}`, ['hit_last', 'shrink_second_last', 'draw_third_last']) + event.recipes.tfc.anvil(smallGearItem, `#forge:ingots/${material.getName()}`, ['hit_last', 'shrink_second_last', 'draw_third_last']) .tier(tfcProperty.getTier()) .id(`tfc:anvil/small_${material.getName()}_gear`) + + if (material.hasFlag(TFGMaterialFlags.CAN_BE_UNMOLDED)) { + event.recipes.tfc.casting(smallGearItem, 'tfg:small_gear_mold', Fluid.of(outputMaterial.getFluid(), 144), 0.05) + .id(`tfc:casting/small_${material.getName()}_gear`) } } @@ -1302,6 +1303,12 @@ function registerTFCMaterialsRecipes(event) { .tier(tfcProperty.getTier()) .id(`tfc:anvil/${material.getName()}_bars`) + event.stonecutting(`4x tfc:metal/bars/${material.getName()}`, ingotItem); + + let quarterMap = {}; + quarterMap[material.getName()] = 0.25; + TFGHelpers.registerMaterialInfo(`tfc:metal/bars/${material.getName()}`, quarterMap) + // 16x Π Π΅ΡˆΠ΅Ρ‚ΠΊΠ° event.recipes.tfc.anvil(`8x tfc:metal/bars/${material.getName()}`, ChemicalHelper.get(TFGTagPrefix.ingotDouble, material, 1), ['upset_last', 'punch_second_last', 'punch_third_last']) @@ -1324,22 +1331,40 @@ function registerTFCMaterialsRecipes(event) { let tongPartStack = Item.of(`tfchotornot:tong_part/${material.getName()}`) if (!tongsStack.isEmpty() && !tongPartStack.isEmpty() && material !== GTMaterials.Iron) { + // tong parts + event.recipes.vintageimprovements.curving(tongPartStack, `#forge:rods/long/${material.getName()}`) + .head('gtceu:rod_extruder_mold') + .id(`tfg:vi/curving/${material.getName()}_tong`) + + event.recipes.gtceu.extruder(`tfg:${material.getName()}_tong`) + .itemInputs(`#forge:rods/long/${material.getName()}`) + .notConsumable('gtceu:rod_extruder_mold') + .itemOutputs(tongPartStack) + .duration(material.getMass()) + .EUt(GTValues.VA[GTValues.LV]) + + // tongs event.recipes.tfc.advanced_shaped_crafting( TFC.isp.of(tongsStack).copyForgingBonus(), [ 'AA', 'BC' ], { A: tongPartStack, - B: '#forge:bolts', + B: Ingredient.of('#forge:bolts').subtract('gtceu:wood_bolt'), C: '#forge:tools/hammers' }, 0, 0).id(`tfchotornot:crafting/tongs/${material.getName()}`) - // tong parts + event.recipes.gtceu.forge_hammer(`tfg:${material.getName()}_tong`) + .itemInputs(tongPartStack.withCount(2)) + .itemOutputs(tongsStack) + .duration(material.getMass()) + .EUt(GTValues.VA[GTValues.ULV]) + + // tong heating event.recipes.tfc.heating(tongPartStack, tfcProperty.getMeltTemp()) .resultFluid(Fluid.of(outputMaterial.getFluid(), 144)) .id(`tfchotornot:heating/tong_part/${material.getName()}`) - // tong heating event.recipes.tfc.heating(tongsStack, tfcProperty.getMeltTemp()) .resultFluid(Fluid.of(outputMaterial.getFluid(), 288)) .useDurability(true) diff --git a/kubejs/server_scripts/tfc/recipes.metals.js b/kubejs/server_scripts/tfc/recipes.metals.js index a1026e886..82358d538 100644 --- a/kubejs/server_scripts/tfc/recipes.metals.js +++ b/kubejs/server_scripts/tfc/recipes.metals.js @@ -200,39 +200,6 @@ function registerTFCMetalsRecipes(event) { .duration(700) .EUt(4) - // Rose Gold + Sterling Silver - const copper_types = [ - "#forge:ingots/copper", - "#forge:dusts/copper", - "#forge:ingots/annealed_copper", - "#forge:dusts/annealed_copper" - ]; - const gold_types = [ - "#forge:ingots/gold", - "#forge:dusts/gold" - ]; - const silver_types = [ - "#forge:ingots/silver", - "#forge:dusts/silver" - ]; - - copper_types.forEach(copper_types_array => { - gold_types.forEach(gold_types_array => { - event.recipes.gtceu.alloy_smelter(`rose_gold_from_${copper_types_array.replace(/:/g, "/").replace(/#/g, "")}_and_${gold_types_array.replace(/:/g, "/").replace(/#/g, "")}`) - .itemInputs(Ingredient.of(copper_types_array).withCount(1), Ingredient.of(gold_types_array).withCount(4)) - .itemOutputs(ChemicalHelper.get(TagPrefix.ingot, GTMaterials.RoseGold, 5)) - .duration(20*10) - .EUt(GTValues.VA[GTValues.LV]) - }); - silver_types.forEach(silver_types_array => { - event.recipes.gtceu.alloy_smelter(`sterling_silver_from_${copper_types_array.replace(/:/g, "/").replace(/#/g, "")}_and_${silver_types_array.replace(/:/g, "/").replace(/#/g, "")}`) - .itemInputs(Ingredient.of(copper_types_array).withCount(1), Ingredient.of(silver_types_array).withCount(4)) - .itemOutputs(ChemicalHelper.get(TagPrefix.ingot, GTMaterials.SterlingSilver, 5)) - .duration(20*10) - .EUt(GTValues.VA[GTValues.LV]) - }); - }); - const TFC_INTERMEDIATE_METALS = [ @@ -401,6 +368,10 @@ function registerTFCMetalsRecipes(event) { }) //#endregion + event.smelting('minecraft:iron_ingot', '#forge:ingots/wrought_iron') + .id('tfg:revert_wrought_iron_ingot') + + // Melting powders const METAL_POWDERS = [ diff --git a/kubejs/server_scripts/tfc/recipes.wood.js b/kubejs/server_scripts/tfc/recipes.wood.js deleted file mode 100644 index 7ede26945..000000000 --- a/kubejs/server_scripts/tfc/recipes.wood.js +++ /dev/null @@ -1,55 +0,0 @@ -ο»Ώ// priority: 0 -"use strict"; - -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` }) - event.remove({ id: `tfc:crafting/wood/${wood}_bladed_axle` }) - event.remove({ id: `tfc:crafting/wood/${wood}_encased_axle` }) - event.remove({ id: `tfc:crafting/wood/${wood}_clutch` }) - event.remove({ id: `tfc:crafting/wood/${wood}_gear_box` }) - event.remove({ id: `tfc:crafting/wood/${wood}_water_wheel` }) - - // Π‘Ρ€Π΅Π²Π½Π° -> ΠŸΠΈΠ»ΠΎΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ - generateCutterRecipe(event, `#tfc:${wood}_logs`, `16x tfc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_log`) - - // Доски -> ΠŸΠΈΠ»ΠΎΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ - generateCutterRecipe(event, `tfc:wood/planks/${wood}`, `4x tfc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_planks`) - - // Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒ -> ΠŸΠΈΠ»ΠΎΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ - generateCutterRecipe(event, `tfc:wood/planks/${wood}_stairs`, `3x tfc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_stairs`) - - - // ΠŸΠ»ΠΈΡ‚Π° -> ΠŸΠΈΠ»ΠΎΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ - generateCutterRecipe(event, `tfc:wood/planks/${wood}_slab`, `2x tfc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_slab`) - - // ? -> ДСрСвянная наТимная пластина - event.shaped(`tfc:wood/planks/${wood}_pressure_plate`, [ - ' B ', - 'CDC', - ' E ' - ], { - B: '#tfc:hammers', - C: `tfc:wood/planks/${wood}_slab`, - D: '#forge:small_springs', - E: '#forge:tools/screwdrivers' - }).id(`tfc:crafting/wood/${wood}_pressure_plate`) - - event.recipes.gtceu.assembler(`${wood}_pressure_plate`) - .itemInputs('#forge:small_springs', `2x tfc:wood/planks/${wood}_slab`) - .circuit(3) - .itemOutputs(`2x tfc:wood/planks/${wood}_pressure_plate`) - .duration(50) - .EUt(2) - - // ? -> ДСрСвянная ΠΊΠ½ΠΎΠΏΠΊΠ° - event.remove({ id: `tfc:crafting/wood/${wood}_button` }) - - generateCutterRecipe(event, `tfc:wood/planks/${wood}_pressure_plate`, `6x tfc:wood/planks/${wood}_button`, 50, 7, `${wood}_button`) - - }) -} \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/tags.js b/kubejs/server_scripts/tfc/tags.js index de1e0b940..fcd635f26 100644 --- a/kubejs/server_scripts/tfc/tags.js +++ b/kubejs/server_scripts/tfc/tags.js @@ -18,51 +18,114 @@ function registerTFCItemTags(event) { } }); - event.add("tfc:usable_on_tool_rack", "#forge:tools/mining_hammers"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/spades"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/wrenches"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/files"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/crowbars"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/screwdrivers"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/wire_cutters"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/butchery_knives"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/plungers"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/mortars"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/mallets"); - - event.add("tfc:usable_on_tool_rack", "#forge:tools/chainsaws"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/buzzsaws"); - event.add("tfc:usable_on_tool_rack", "#forge:tools/drills"); - - event.add("tfc:usable_on_tool_rack", "#forge:tools/fishing_nets"); - - event.add("tfc:usable_on_tool_rack", "#tfc:buckets"); - - event.add("tfc:usable_on_tool_rack", "buildinggadgets2:gadget_building"); - event.add("tfc:usable_on_tool_rack", "buildinggadgets2:gadget_exchanging"); - event.add("tfc:usable_on_tool_rack", "buildinggadgets2:gadget_copy_paste"); - event.add("tfc:usable_on_tool_rack", "buildinggadgets2:gadget_cut_paste"); - event.add("tfc:usable_on_tool_rack", "buildinggadgets2:gadget_destruction"); - event.add("tfc:usable_on_tool_rack", "create:super_glue"); - event.add("tfc:usable_on_tool_rack", "exposure:camera"); - event.add("tfc:usable_on_tool_rack", "measurements:tape_measure"); - event.add("tfc:usable_on_tool_rack", "#chalk:chalks"); - event.add("tfc:usable_on_tool_rack", "chalk:chalk_box"); - event.add("tfc:usable_on_tool_rack", "computercraft:pocket_computer_normal"); - event.add("tfc:usable_on_tool_rack", "computercraft:pocket_computer_advanced"); - event.add("tfc:usable_on_tool_rack", "grapplemod:grapplinghook"); - event.add("tfc:usable_on_tool_rack", "grapplemod:launcheritem"); - event.add("tfc:usable_on_tool_rack", "ae2:color_applicator"); - event.add("tfc:usable_on_tool_rack", "ae2:matter_cannon"); - event.add("tfc:usable_on_tool_rack", "ae2:network_tool"); - event.add("tfc:usable_on_tool_rack", "ae2:wireless_terminal"); - event.add("tfc:usable_on_tool_rack", "ae2:wireless_crafting_terminal"); - event.add("tfc:usable_on_tool_rack", "waterflasks:leather_flask"); - event.add("tfc:usable_on_tool_rack", "waterflasks:iron_flask"); - event.add("tfc:usable_on_tool_rack", "waterflasks:red_steel_flask"); - event.add("tfc:usable_on_tool_rack", "tfc:wool_cloth"); - event.add("tfc:usable_on_tool_rack", "firmalife:mixing_bowl"); - event.add("tfc:usable_on_tool_rack", "#gtceu:molds"); + /** + * @type {string[]} - Item IDs and tags usable on tfc tool racks. + */ + const usableOnToolRack = [ + "#forge:tools/mining_hammers", + "#forge:tools/spades", + "#forge:tools/wrenches", + "#forge:tools/files", + "#forge:tools/crowbars", + "#forge:tools/screwdrivers", + "#forge:tools/wire_cutters", + "#forge:tools/butchery_knives", + "#forge:tools/plungers", + "#forge:tools/mortars", + "#forge:tools/mallets", + "#forge:tools/chainsaws", + "#forge:tools/buzzsaws", + "#forge:tools/drills", + "#forge:tools/fishing_nets", + "#tfc:buckets", + "tfc:lens", + "#forge:lenses", + "buildinggadgets2:gadget_building", + "buildinggadgets2:gadget_exchanging", + "buildinggadgets2:gadget_copy_paste", + "buildinggadgets2:gadget_cut_paste", + "buildinggadgets2:gadget_destruction", + "create:super_glue", + "exposure:camera", + "measurements:tape_measure", + "#chalk:chalks", + "chalk:chalk_box", + "computercraft:pocket_computer_normal", + "computercraft:pocket_computer_advanced", + "grapplemod:grapplinghook", + "grapplemod:launcheritem", + "ae2:color_applicator", + "ae2:matter_cannon", + "ae2:network_tool", + "ae2:wireless_terminal", + "ae2:wireless_crafting_terminal", + "waterflasks:leather_flask", + "waterflasks:iron_flask", + "waterflasks:red_steel_flask", + "tfc:wool_cloth", + "firmalife:mixing_bowl", + "#gtceu:molds", + "#gtceu:molds", + "create:wrench", + "framedblocks:framed_screwdriver", + "framedblocks:framed_wrench", + "framedblocks:framed_hammer", + "framedblocks:framed_key", + "mcw_tfc_aio:roofing_hammer", + "mcw_tfc_aio:pliers", + "tfclunchbox:lunchbox", + "tfclunchbox:cooling_lunchbox", + "tfclunchbox:electric_lunchbox", + "primitive_creatures:yhgi", + "primitive_creatures:reh", + "species:harpoon", + "species:crankbow", + "tfg:trowel" + ]; + usableOnToolRack.forEach((entry) => { + event.add("tfc:usable_on_tool_rack", entry); + }); + + //liquid non placeable + event.add("tfc:nonplaceable", "minecraft:milk_bucket") + event.add("tfc:nonplaceable", "firmalife:bucket/yak_milk") + event.add("tfc:nonplaceable", "firmalife:bucket/goat_milk") + event.add("tfc:nonplaceable", "tfc_gurman:ox_milk_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:sheep_milk_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:alpaca_milk_bucket") + event.add("tfc:nonplaceable", "tfc:bucket/beer") + event.add("tfc:nonplaceable", "tfc:bucket/cider") + event.add("tfc:nonplaceable", "tfc:bucket/rum") + event.add("tfc:nonplaceable", "tfc:bucket/sake") + event.add("tfc:nonplaceable", "tfc:bucket/vodka") + event.add("tfc:nonplaceable", "tfc:bucket/whiskey") + event.add("tfc:nonplaceable", "tfc:bucket/corn_whiskey") + event.add("tfc:nonplaceable", "tfc:bucket/rye_whiskey") + event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_beer") + event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_cider") + event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_rum") + event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_sake") + event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_vodka") + event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_whiskey") + event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_corn_whiskey") + event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_rye_whiskey") + event.add("tfc:nonplaceable", "tfcagedalcohol:bucket/aged_mead") + event.add("tfc:nonplaceable", "tfc_gurman:nalivka_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:coffee_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:tea_mint_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:tea_chamomile_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:tea_rosehip_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:tea_nettle_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:cocoa_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:compote_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:kvass_bucket") + event.add("tfc:nonplaceable", "tfc_gurman:lemonade_bucket") + event.add("tfc:nonplaceable", "firmalife:bucket/mead") + event.add("tfc:nonplaceable", "firmalife:bucket/red_wine") + event.add("tfc:nonplaceable", "firmalife:bucket/white_wine") + event.add("tfc:nonplaceable", "firmalife:bucket/rose_wine") + event.add("tfc:nonplaceable", "firmalife:bucket/sparkling_wine") + event.add("tfc:nonplaceable", "firmalife:bucket/dessert_wine") // Π˜Π½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ для закваски event.add("tfg:ferments_to_rennet", "tfc:food/soybean"); @@ -92,14 +155,6 @@ function registerTFCItemTags(event) { event.add("minecraft:fishes", "tfc:food/rainbow_trout"); event.add("minecraft:fishes", "tfc:food/smallmouth_bass"); - // Make eggs not useless - event.add("tfc:foods/usable_in_salad", "tfc:food/cooked_egg"); - event.add("tfc:foods/usable_in_salad", "tfc:food/boiled_egg"); - event.add("tfc:foods/usable_in_jam_sandwich", "tfc:food/cooked_egg"); - event.add("tfc:foods/usable_in_jam_sandwich", "tfc:food/boiled_egg"); - event.add("tfc:foods/usable_in_sandwich", "tfc:food/cooked_egg"); - event.add("tfc:foods/usable_in_sandwich", "tfc:food/boiled_egg"); - // Π§Ρ‚ΠΎΠ±Ρ‹ ΠΆΠ°Ρ€ΠΈΠ»ΠΈΡΡŒ Π±Ρ€Π΅Π²Π½Π° ΠΈΠ· TFC Π² ΠΏΠΈΡ€ΠΎΠ»ΠΈΠ·. ΠΏΠ΅Ρ‡ΠΊΠ΅ // ΠŸΠΎΡ‡Π΅ΠΌΡƒ нСльзя просто Π΄ΠΎΠ±Π°Π²ΠΈΡ‚ΡŒ Ρ‚Π΅Π³ Π² Ρ‚Π΅Π³? (допустим minecraft:logs), ΠΏΠΎΡ‚ΠΎΠΌΡƒ Ρ‡Ρ‚ΠΎ ΠΈΠ·-Π·Π° этого Π»ΠΎΠΌΠ°ΡŽΡ‚ΡΡ всС Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ minecraft:logs, магия... global.TFC_WOOD_TYPES.forEach((woodType) => { @@ -114,13 +169,30 @@ function registerTFCItemTags(event) { // Вэги для возмоТности использования Ρ€Π°Π·Π½Ρ‹Ρ… ΡƒΠ³Π»Π΅ΠΉ Π² ΠΊΡƒΠ·Π½Π΅ event.add("tfc:forge_fuel", "minecraft:coal"); - event.add("tfc:forge_fuel", "beneath:cursecoal"); - event.add("tfc:forge_fuel", "gtceu:coke_gem"); + event.add("tfc:forge_fuel", "minecraft:coal_block"); + event.add("tfc:forge_fuel", 'gtceu:flawless_coal_gem'); + event.add("tfc:forge_fuel", 'gtceu:exquisite_coal_gem'); + event.add("tfc:forge_fuel", 'gtceu:flawed_coal_gem'); + event.add("tfc:forge_fuel", 'gtceu:chipped_coal_gem'); + event.add("tfc:forge_fuel", 'gtceu:crushed_coal_ore'); + event.add("tfc:forge_fuel", 'gtceu:purified_coal_ore'); + event.add("tfc:forge_fuel", 'gtceu:refined_coal_ore'); + event.add("tfc:forge_fuel", 'gtceu:impure_coal_dust'); + event.add("tfc:forge_fuel", "gtceu:rich_raw_coal"); event.add("tfc:forge_fuel", "gtceu:raw_coal"); event.add("tfc:forge_fuel", "gtceu:poor_raw_coal"); event.add("tfc:forge_fuel", "gtceu:coal_dust"); + event.add("tfc:forge_fuel", "gtceu:small_coal_dust"); + event.add("tfc:forge_fuel", "gtceu:tiny_coal_dust"); + + event.add("tfc:forge_fuel", "beneath:cursecoal"); + + event.add("tfc:forge_fuel", "gtceu:coke_gem"); + event.add("tfc:forge_fuel", "gtceu:coke_dust"); + event.add("tfc:forge_fuel", "gtceu:charcoal_dust"); + event.add("tfc:forge_fuel", "gtceu:charcoal_block"); // Change blast furnace to use coke event.remove("tfc:blast_furnace_fuel", "minecraft:coal"); @@ -128,16 +200,6 @@ function registerTFCItemTags(event) { event.add("tfc:blast_furnace_fuel", "gtceu:coke_gem"); event.add("tfc:blast_furnace_fuel", "beneath:cursecoal"); - // Create a tag for Steam Bloomery - - event.add("tfc:steam_bloomery_basic_fuels", "minecraft:coal"); - event.add("tfc:steam_bloomery_basic_fuels", "minecraft:charcoal"); - event.add("tfc:steam_bloomery_basic_fuels", "gtceu:rich_raw_coal"); - event.add("tfc:steam_bloomery_basic_fuels", "gtceu:raw_coal"); - event.add("tfc:steam_bloomery_basic_fuels", "gtceu:poor_raw_coal"); - event.add("tfc:steam_bloomery_basic_fuels", "gtceu:coal_dust"); - event.add("tfc:steam_bloomery_basic_fuels", "gtceu:charcoal_dust"); - // Вэги для сундуков, Ρ‡Ρ‚ΠΎΠ±Ρ‹ ΠΎΡ‚Π»ΠΈΡ‡Π°Ρ‚ΡŒ ΠΈΡ… Π²ΠΈΠ΄Ρ‹ global.TFC_WOOD_TYPES.forEach((woodType) => { event.add("tfg:default_chests", `tfc:wood/chest/${woodType}`); @@ -151,6 +213,7 @@ function registerTFCItemTags(event) { event.add("tfg:hardwood", `#tfc:${woodType}_logs`); event.add("tfg:stripped_hardwood", `tfc:wood/stripped_log/${woodType}`); event.add("tfg:stripped_hardwood", `tfc:wood/stripped_wood/${woodType}`); + event.add("tfg:hardwood_supports", `tfc:wood/support/${woodType}`); }); //Softwood Tags @@ -158,6 +221,7 @@ function registerTFCItemTags(event) { event.add("tfg:softwood", `#tfc:${woodType}_logs`); event.add("tfg:stripped_softwood", `tfc:wood/stripped_log/${woodType}`); event.add("tfg:stripped_softwood", `tfc:wood/stripped_wood/${woodType}`); + event.add("tfg:softwood_supports", `tfc:wood/support/${woodType}`); }); // Π’Π΅Π³ΠΈ для сосудов ΠΏΠΎ Ρ†Π²Π΅Ρ‚Π°ΠΌ @@ -260,15 +324,19 @@ function registerTFCItemTags(event) { // Π’Π΅Π³ΠΈ для ΠΊΠ°ΠΌΠ΅Π½Π½Ρ‹Ρ… ступСнСк Ρ‚Ρ„ΠΊ global.TFC_STONE_TYPES.forEach((stoneTypeName) => { + + //Add to buttons + event.add("minecraft:stone_buttons", `tfc:rock/button/${stoneTypeName}`); + event.add("minecraft:buttons", `tfc:rock/button/${stoneTypeName}`); + + //Add to rock slabs global.TFC_ROCK_SLAB_BLOCK_TYPES.forEach((slabType) => { event.add(`tfg:rock_slabs`, `tfc:rock/${slabType}/${stoneTypeName}_slab`); event.add(`tfg:rock_stairs`, `tfc:rock/${slabType}/${stoneTypeName}_stairs`); event.add(`tfg:rock_walls`, `tfc:rock/${slabType}/${stoneTypeName}_wall`); }); - }); - - // Π’Π΅Π³ΠΈ для ΠΊΠΈΡ€ΠΏΠΈΡ‡Π½Ρ‹Ρ… ступСнСк Ρ‚Ρ„ΠΊ - global.TFC_STONE_TYPES.forEach((stoneTypeName) => { + + //Add to brick slabs global.TFC_BRICK_SLAB_BLOCK_TYPES.forEach((slabType) => { event.add(`tfg:brick_slabs`, `tfc:rock/${slabType}/${stoneTypeName}_slab`); event.add(`tfg:brick_stairs`, `tfc:rock/${slabType}/${stoneTypeName}_stairs`); @@ -306,12 +374,6 @@ function registerTFCItemTags(event) { event.add("forge:cloth", "tfc:wool_cloth"); event.add("forge:cloth", "tfc:silk_cloth"); - // Piglin loved - event.add("minecraft:piglin_loved", "tfc:ore/small_native_gold"); - event.add("minecraft:piglin_loved", "tfc:ore/poor_native_gold"); - event.add("minecraft:piglin_loved", "tfc:ore/normal_native_gold"); - event.add("minecraft:piglin_loved", "tfc:ore/rich_native_gold"); - // Bells event.add("tfc:bells", "tfc:bronze_bell"); event.add("tfc:bells", "tfc:brass_bell"); @@ -329,12 +391,6 @@ function registerTFCItemTags(event) { event.add("forge:mushrooms", "tfc:plant/artists_conk"); event.add("forge:raw_materials/sylvite", "tfc:ore/sylvite"); - - global.TFC_STONE_TYPES.forEach((stone) => { - 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"); @@ -345,6 +401,12 @@ function registerTFCItemTags(event) { global.TFC_DRY_MUD_BRICKS.forEach((dryMudBrick) => { event.add("tfc:dry_mud_bricks", dryMudBrick); }); + + // Workaround for some of the ruin structures having tfc knives + event.add('tfc:knives', 'tfc:stone/knife/sedimentary') + event.add('tfc:knives', 'tfc:stone/knife/metamorphic') + event.add('tfc:knives', 'tfc:stone/knife/igneous_intrusive') + event.add('tfc:knives', 'tfc:stone/knife/igneous_extrusive') } /** @param {TagEvent.Block} event */ @@ -413,36 +475,6 @@ function registerTFCBlockTags(event) { // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Ρ‚Π΅Π³ΠΎΠ² Ρƒ Ρ€ΡƒΠ΄ event.removeAllTagsFrom("/tfc:ore/[^*]+/[^*]+/"); - //#region Nether - - event.add("beneath:nether_bush_plantable_on", "#tfc:clay_grass"); - event.add("minecraft:small_dripleaf_placeable", "#tfc:clay_grass"); - event.add("minecraft:big_dripleaf_placeable", "#tfc:clay_grass"); - event.add("minecraft:frogs_spawnable_on", "#tfc:clay_grass"); - event.add("minecraft:axolotls_spawnable_on", "#tfc:clay_grass"); - - event.add("minecraft:small_dripleaf_placeable", "#tfc:clay"); - event.add("minecraft:big_dripleaf_placeable", "#tfc:clay"); - event.add("minecraft:frogs_spawnable_on", "#tfc:clay"); - event.add("minecraft:axolotls_spawnable_on", "#tfc:clay"); - - event.add("beneath:nether_bush_plantable_on", "#tfc:mud"); - event.add("minecraft:frogs_spawnable_on", "#tfc:mud"); - - event.add("beneath:nether_bush_plantable_on", "#tfc:dirt"); - event.add("minecraft:frogs_spawnable_on", "#tfc:dirt"); - - event.add("minecraft:base_stone_nether", "tfc:rock/raw/gneiss"); - event.add("minecraft:base_stone_nether", "tfc:rock/raw/schist"); - event.add("minecraft:base_stone_nether", "tfc:rock/raw/diorite"); - event.add("minecraft:base_stone_nether", "tfc:rock/raw/granite"); - event.add("minecraft:base_stone_nether", "tfc:rock/raw/gabbro"); - event.add("minecraft:base_stone_nether", "tfc:rock/raw/basalt"); - event.add("minecraft:nether_carver_replaceables", "#minecraft:base_stone_nether"); - event.add("minecraft:frogs_spawnable_on", "#minecraft:base_stone_nether"); - - //#endregion - // Lets the basin be put on top of a charcoal forge event.add("tfc:forge_invisible_whitelist", "create:basin"); @@ -459,6 +491,7 @@ function registerTFCBlockTags(event) { const brick_blacklist = "drying|slab|stairs|wall|additionalplacements"; event.add("tfc:bloomery_insulation", `/^(?=.*brick)(?!.*(${brick_blacklist})).*/`); event.add("tfc:forge_insulation", `/^(?=.*brick)(?!.*(${brick_blacklist})).*/`); + event.add("tfc:forge_insulation", 'create:depot'); global.TFC_STONE_TYPES.forEach((stone) => { event.add("minecraft:stone_buttons", `tfc:rock/button/${stone}`); @@ -467,8 +500,9 @@ function registerTFCBlockTags(event) { event.add('tfc:can_be_snow_piled', 'tfc:groundcover/feather'); - event.add('tfcambiental:hot_stuff', 'tfc:pot'); - event.add('tfcambiental:hot_stuff', 'tfc:grill'); + global.TFC_MAGMA_BLOCKS.forEach(magma => { + event.add('minecraft:infiniburn_overworld', magma) + }) } /** @param {TagEvent.Fluid} event */ @@ -537,68 +571,187 @@ function registerTFCFluidTags(event) { event.add("tfc:usable_in_tool_head_mold", "gtceu:black_bronze"); event.add("tfc:usable_in_tool_head_mold", "gtceu:bronze"); + /********************************************************************************************************** + * + * Utility functions to classify fluids into tags based on temperature and properties. + * * * Seperates fluids into hot, cold, neutral, and acidic fluid tags. + * * * Uses these tags to determine usability in different containers. + * + ***********************************************************************************************************/ + const $FluidState = Java.loadClass("com.gregtechceu.gtceu.api.fluids.FluidState") const $FluidAttribute = Java.loadClass("com.gregtechceu.gtceu.api.fluids.attribute.FluidAttributes") + const ForgeRegistries = Java.loadClass('net.minecraftforge.registries.ForgeRegistries'); + const FluidStack = Java.loadClass('net.minecraftforge.fluids.FluidStack'); forEachMaterial(material => { if (material.hasProperty(PropertyKey.FLUID)) { let fluid = material.getFluid(); - - // Ignore gases let fluidType = fluid.getFluidType(); - if (fluidType.isLighterThanAir()) - return; - - // Check for acids - try { - // This is in a try catch because I don't know how to check if an object is of type - // AttributedFluid or GTFluid here - if (fluid.getAttributes().contains($FluidAttribute.ACID)) - return; - } - catch (exception) { - return; - } - - // Check for plasmas (and gases again in case the previous check didn't work) - let fluidState = fluid.getState(); - if (fluidState === $FluidState.PLASMA || fluidState === $FluidState.GAS) - return; - let fluidName = fluidType.toString(); - let temperature = fluidType.getTemperature(); - - // 340 is the max temperature of wood pipes - // 120 is the cryogenic temperature threshold (see gtceu/FluidConstants) - if (temperature <= 340 && temperature >= 120) { - event.add("tfc:usable_in_barrel", fluidName); - event.add("tfc:usable_in_wooden_bucket", fluidName); - } - - // Red steel's max temperature, can do cryo - if (temperature <= 370) { - event.add("tfc:usable_in_red_steel_bucket", fluidName); - } - - // Blue steel's max temp, can't do cryo - if (temperature <= 4618 && temperature >= 120) { - event.add("tfc:usable_in_blue_steel_bucket", fluidName); + + // Tags acidic fluids. + try { + if (fluid.getAttributes().contains($FluidAttribute.ACID)) { + event.add("forge:acidic", fluidName); + }; } + catch (exception) { /* empty */ } } }) - event.add("tfc:usable_in_pot", "gtceu:ice"); - event.add("tfc:ingredients", "tfc:spring_water"); + ForgeRegistries.FLUIDS.getValues().forEach(fluid => { - event.add("tfc:alcohols", "tfcagedalcohol:aged_beer"); - event.add("tfc:alcohols", "tfcagedalcohol:aged_cider"); - event.add("tfc:alcohols", "tfcagedalcohol:aged_rum"); - event.add("tfc:alcohols", "tfcagedalcohol:aged_sake"); - event.add("tfc:alcohols", "tfcagedalcohol:aged_vodka"); - event.add("tfc:alcohols", "tfcagedalcohol:aged_whiskey"); - event.add("tfc:alcohols", "tfcagedalcohol:aged_corn_whiskey"); - event.add("tfc:alcohols", "tfcagedalcohol:aged_rye_whiskey"); - event.add("tfc:alcohols", "tfcagedalcohol:aged_mead"); + // Determine if fluid is hot or not. (pun intended) + const hotFluids = (fluid) => { + + let temp = -1; + try { + temp = fluid.getFluidType().getTemperature(); + } catch (e1) { + try { + temp = fluid.getFluidType().getTemperature(new FluidStack(fluid, 1000)); + } catch (e2) { + temp = -1; + } + } + + const id = ForgeRegistries.FLUIDS.getKey(fluid); + + if (!id) return; + + // Return if fluid is hidden from recipe viewers. + const idString = id.toString(); + + let hiddenWrapper; + try { hiddenWrapper = event.get('c:hidden_from_recipe_viewers'); } catch (e) { /* ignore */ } + + const wrapperHas = (wrapper) => { + if (!wrapper) return false; + try { return wrapper.getObjectIds().toArray().some(wid => String(wid) === idString); } catch (e) { return false; } + }; + + if (wrapperHas(hiddenWrapper)) return; + + const idStr = id.toString(); + + // Temp testing. + // Not extreme temps. + if (temp <= 340 && temp >= 120) { + event.add("tfg:moderate_temperature_fluids", idStr); + } + // Red steel: can't do heat, can do cryo. + if (temp <= 370) { + event.add("tfc:usable_in_red_steel_bucket", idStr); + } + // Burns ya. + if (temp >= 1300) { + event.add("tfchotornot:hot_whitelist", idStr); + } + // Frostburns ya. (The zero check is to stop 'invalid' fluids from counting as too cold) + if (temp < 223 && temp > 0) { + event.add("tfchotornot:cold_whitelist", idStr); + } + // Blue steel: can do heat, can't do cryo. + if (temp >= 120) { + event.add("tfc:usable_in_blue_steel_bucket", idStr); + } + }; + + // Determine if fluid is a gas or a plasma, and tag accordingly. + const liquidTag = (fluid) => { + const id = ForgeRegistries.FLUIDS.getKey(fluid); + if (!id) return; + const idString = id.toString(); + + // Check against tag wrappers for gas and plasma fluids. + let gaseousWrapper, plasmaticWrapper, hiddenWrapper; + try { gaseousWrapper = event.get('forge:gaseous'); } catch (e) { /* ignore */ } + try { plasmaticWrapper = event.get('forge:plasmatic'); } catch (e) { /* ignore */ } + try { hiddenWrapper = event.get('c:hidden_from_recipe_viewers'); } catch (e) { /* ignore */ } + + const wrapperHas = (wrapper) => { + if (!wrapper) return false; + try { return wrapper.getObjectIds().toArray().some(wid => String(wid) === idString); } catch (e) { return false; } + }; + + const isGaseous = wrapperHas(gaseousWrapper); + const isPlasmatic = wrapperHas(plasmaticWrapper); + const isHidden = wrapperHas(hiddenWrapper); + + if (isGaseous || isPlasmatic || isHidden) + return; + + event.add('forge:liquid', idString); + }; + + // Determine if fluid is neutral (not gas, plasma, acidic, or extreme temp), and tag accordingly. + const neutralTag = (fluid) => { + const id = ForgeRegistries.FLUIDS.getKey(fluid); + if (!id) return; + const idString = id.toString(); + + // Check against tag wrappers for gas, plasma, acidic, and normal temp fluids. + let acidicWrapper, moderateTemperatureWrapper, gaseousWrapper, plasmaticWrapper, hiddenWrapper; + try { acidicWrapper = event.get('forge:acidic'); } catch (e) { /* ignore */ } + try { moderateTemperatureWrapper = event.get('tfg:moderate_temperature_fluids'); } catch (e) { /* ignore */ } + try { gaseousWrapper = event.get('forge:gaseous'); } catch (e) { /* ignore */ } + try { plasmaticWrapper = event.get('forge:plasmatic'); } catch (e) { /* ignore */ } + try { hiddenWrapper = event.get('c:hidden_from_recipe_viewers'); } catch (e) { /* ignore */ } + + const wrapperHas = (wrapper) => { + if (!wrapper) return false; + try { return wrapper.getObjectIds().toArray().some(wid => String(wid) === idString); } catch (e) { return false; } + }; + + const isAcidic = wrapperHas(acidicWrapper); + const isExtreme = !wrapperHas(moderateTemperatureWrapper); + const isGaseous = wrapperHas(gaseousWrapper); + const isPlasmatic = wrapperHas(plasmaticWrapper); + const isHidden = wrapperHas(hiddenWrapper); + + if (isGaseous || isPlasmatic || isAcidic || isExtreme || isHidden) return; + event.add('forge:neutral_fluids', idString); + }; + + // Execute tagging functions. + hotFluids(fluid); + liquidTag(fluid); + neutralTag(fluid); + }); + + // Can use any liquid. + event.add('tfc:usable_in_pot', '#forge:neutral_fluids') + event.add('firmalife:usable_in_vat', '#forge:neutral_fluids') + + // Can use only neutral fluids. + event.add('tfc:usable_in_barrel', '#forge:neutral_fluids'); + event.add('tfc:usable_in_wooden_bucket', '#forge:neutral_fluids'); + // Ceramic jugs and glass bottles + event.add('tfc:usable_in_jug', '#forge:neutral_fluids'); + event.add('firmalife:usable_in_mixing_bowl', '#forge:neutral_fluids'); + + // All fluids are given the '#tfg:not_solid' tag incase we have a use for them regardless of state. + event.add('tfg:not_solid', '#forge:liquid') + event.add('tfg:not_solid', '#forge:gaseous') + event.add('tfg:not_solid', '#forge:plasmatic') + + /***********************************************************************************************************/ + + event.add("tfc:ingredients", "tfc:spring_water"); + event.add('tfc:drinkables', 'tfc:spring_water') + + event.add('tfg:alcohols', '#tfc:alcohols') + event.add("tfg:alcohols", "tfcagedalcohol:aged_beer"); + event.add("tfg:alcohols", "tfcagedalcohol:aged_cider"); + event.add("tfg:alcohols", "tfcagedalcohol:aged_rum"); + event.add("tfg:alcohols", "tfcagedalcohol:aged_sake"); + event.add("tfg:alcohols", "tfcagedalcohol:aged_vodka"); + event.add("tfg:alcohols", "tfcagedalcohol:aged_whiskey"); + event.add("tfg:alcohols", "tfcagedalcohol:aged_corn_whiskey"); + event.add("tfg:alcohols", "tfcagedalcohol:aged_rye_whiskey"); + event.add("tfg:alcohols", "tfcagedalcohol:aged_mead"); + event.add("tfg:alcohols", "tfc_gurman:nalivka"); // ДобавляСм Ρ‚Π΅Π³ для скрытия Π² EMI event.add("c:hidden_from_recipe_viewers", "tfc:metal/bismuth"); @@ -625,40 +778,3 @@ function registerTFCFluidTags(event) { event.add("c:hidden_from_recipe_viewers", "tfc:metal/high_carbon_red_steel"); event.add("c:hidden_from_recipe_viewers", "tfc:metal/high_carbon_blue_steel"); } - -/** @param {TagEvent.Biome} event */ -function registerTFCBiomeTags(event) { - event.add("tfc:kaolin_clay_spawns_in", "tfc:rolling_hills"); - - global.TFC_BIOMES.forEach(biome => { - event.add('tfg:overworld_biomes', biome); - }) -} - -/** @param {TagEvent.PlacedFeature} event */ -function registerTFCPlacedFeatures(event) { - // Add back the non-ore ones - event.add("tfc:in_biome/veins", "tfc:vein/gravel"); - event.add("tfc:in_biome/veins", "tfc:vein/kaolin_disc"); - event.add("tfc:in_biome/veins", "tfc:vein/granite_dike"); - event.add("tfc:in_biome/veins", "tfc:vein/diorite_dike"); - event.add("tfc:in_biome/veins", "tfc:vein/gabbro_dike"); - - // Geodes - event.add("tfc:in_biome/veins", "tfg:earth/geode/amethyst"); - event.add("tfc:in_biome/veins", "tfg:earth/geode/barite"); - event.add("tfc:in_biome/veins", "tfg:earth/geode/calcite"); - event.add("tfc:in_biome/veins", "tfg:earth/geode/gypsum"); - event.add("tfc:in_biome/veins", "tfg:earth/geode/opal"); - event.add("tfc:in_biome/veins", "tfg:earth/geode/pyrite"); - event.add("tfc:in_biome/veins", "tfg:earth/geode/quartzite"); - - // 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"); - event.add("tfc:in_biome/underground_decoration", "tfg:earth/sulfur_patch"); -} diff --git a/kubejs/server_scripts/tfc_gurman/recipes.js b/kubejs/server_scripts/tfc_gurman/recipes.js new file mode 100644 index 000000000..8c0b80b00 --- /dev/null +++ b/kubejs/server_scripts/tfc_gurman/recipes.js @@ -0,0 +1,404 @@ +// priority: 0 +"use strict"; + +function registerTFCGurmanRecipes(event) { + //#region Food Oven Recipes + + global.cookingRecipe(event, 'margarita_pizza', 'tfc_gurman:raw_margarita_pizza', 'tfc_gurman:margarita_pizza'); + + global.cookingRecipe(event, 'pepperoni_pizza', 'tfc_gurman:raw_pepperoni_pizza', 'tfc_gurman:pepperoni_pizza'); + + global.cookingRecipe(event, 'hawaiian_pizza', 'tfc_gurman:raw_hawaiian_pizza', 'tfc_gurman:hawaiian_pizza'); + + global.cookingRecipe(event, 'four_cheeses_pizza', 'tfc_gurman:raw_four_cheeses_pizza', 'tfc_gurman:four_cheeses_pizza'); + + global.cookingRecipe(event, 'four_meats_pizza', 'tfc_gurman:raw_four_meats_pizza', 'tfc_gurman:four_meats_pizza'); + + global.cookingRecipe(event, 'neapolitano_pizza', 'tfc_gurman:raw_neapolitano_pizza', 'tfc_gurman:neapolitano_pizza'); + + global.cookingRecipe(event, 'croissants', 'tfc_gurman:raw_croissants', 'tfc_gurman:croissants'); + + global.cookingRecipe(event, 'kiev_cutlets', 'tfc_gurman:raw_kiev_cutlets', 'tfc_gurman:kiev_cutlets'); + + global.cookingRecipe(event, 'quiche', 'tfc_gurman:raw_quiche', 'tfc_gurman:quiche'); + + global.cookingRecipe(event, 'tandoori_chicken', 'tfc_gurman:raw_tandoori_chicken', 'tfc_gurman:tandoori_chicken'); + + global.cookingRecipe(event, 'placinda', 'tfc_gurman:raw_placinda', 'tfc_gurman:placinda'); + + global.cookingRecipe(event, 'tonkatsu', 'tfc_gurman:raw_tonkatsu', 'tfc_gurman:tonkatsu'); + + global.cookingRecipe(event, 'takoyaki', 'tfc_gurman:raw_takoyaki', 'tfc_gurman:takoyaki'); + + global.cookingRecipe(event, 'bulgogi', 'tfc_gurman:raw_bulgogi', 'tfc_gurman:bulgogi'); + + global.cookingRecipe(event, 'bratwurst', 'tfc_gurman:raw_bratwurst', 'tfc_gurman:bratwurst'); + + global.cookingRecipe(event, 'crepes', 'tfc_gurman:raw_crepes', 'tfc_gurman:crepes'); + + global.cookingRecipe(event, 'chebureki', 'tfc_gurman:raw_chebureki', 'tfc_gurman:chebureki'); + + global.cookingRecipe(event, 'khachapuri', 'tfc_gurman:raw_khachapuri', 'tfc_gurman:khachapuri'); + + global.cookingRecipe(event, 'lavash_wrap', 'tfc_gurman:raw_lavash_wrap', 'tfc_gurman:lavash_wrap'); + + global.cookingRecipe(event, 'syrniki', 'tfc_gurman:raw_syrniki', 'tfc_gurman:syrniki'); + + global.cookingRecipe(event, 'oladyi', 'tfc_gurman:raw_oladyi', 'tfc_gurman:oladyi'); + + // Falafel - from soybean (no raw version) + global.cookingRecipe(event, 'falafel', 'tfc:food/soybean', 'tfc_gurman:falafel'); + + global.cookingRecipe(event, 'pelmeni', 'tfc_gurman:raw_pelmeni', 'tfc_gurman:pelmeni', '#tfg:clean_water 500'); + + global.cookingRecipe(event, 'vareniki', 'tfc_gurman:raw_vareniki', 'tfc_gurman:vareniki', '#tfg:clean_water 500'); + + //#endregion + + //#region Food Processor Recipes + + // Borscht + global.processorRecipe(event, 'borscht', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['tfc:food/beet', 'tfc:food/cabbage', 'tfc:food/carrot', 'tfc:food/onion', 'tfc:food/tomato', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['3x tfc_gurman:borscht'], + circuit: 20, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:borscht').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Schi + global.processorRecipe(event, 'schi', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['2x tfc:food/cabbage', 'tfc:food/carrot', 'tfc:food/onion', 'tfc:food/tomato', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['3x tfc_gurman:schi'], + circuit: 20, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:schi').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Coffee + global.processorRecipe(event, 'coffee', 1000, GTValues.VHA[GTValues.LV], { + itemInputs: ['2x firmalife:food/roasted_cocoa_beans'], + fluidInputs: ['minecraft:water 1000'], + fluidOutputs: ['tfc_gurman:coffee 1000'], + circuit: 2 + }); + + // Cocoa + global.processorRecipe(event, 'cocoa', 1000, GTValues.VHA[GTValues.LV], { + itemInputs: ['2x firmalife:food/cocoa_powder'], + fluidInputs: ['#tfc:milks 1000'], + fluidOutputs: ['tfc_gurman:cocoa 1000'], + circuit: 1 + }); + + // Compote + global.processorRecipe(event, 'compote', 1000, GTValues.VHA[GTValues.LV], { + itemInputs: ['2x #tfc:foods/fruits'], + fluidInputs: ['minecraft:water 1000'], + fluidOutputs: ['tfc_gurman:compote 1000'], + circuit: 2 + }); + + // Lemonade + global.processorRecipe(event, 'lemonade', 1500, GTValues.VHA[GTValues.LV], { + itemInputs: ['2x tfc:food/lemon', '#tfc:sweetener'], + fluidInputs: ['minecraft:water 1000'], + fluidOutputs: ['tfc_gurman:lemonade 1000'], + circuit: 2 + }); + + // Kvass + global.processorRecipe(event, 'kvass', 2400, GTValues.VHA[GTValues.LV], { + itemInputs: ['2x #tfc:foods/grains'], + fluidInputs: ['minecraft:water 1000'], + fluidOutputs: ['tfc_gurman:kvass 1000'], + circuit: 2 + }); + + // Tea Mint + global.processorRecipe(event, 'tea_mint', 200, GTValues.VHA[GTValues.LV], { + itemInputs: ['2x tfc_gurman:dried_mint_leaves'], + fluidInputs: ['minecraft:water 1000'], + fluidOutputs: ['tfc_gurman:tea_mint 1000'], + circuit: 2 + }); + + // Tea Chamomile + global.processorRecipe(event, 'tea_chamomile', 200, GTValues.VHA[GTValues.LV], { + itemInputs: ['2x tfc_gurman:dried_chamomile_leaves'], + fluidInputs: ['minecraft:water 1000'], + fluidOutputs: ['tfc_gurman:tea_chamomile 1000'], + circuit: 2 + }); + + // Tea Rosehip + global.processorRecipe(event, 'tea_rosehip', 200, GTValues.VHA[GTValues.LV], { + itemInputs: ['2x tfc_gurman:dried_rosehip_leaves'], + fluidInputs: ['minecraft:water 1000'], + fluidOutputs: ['tfc_gurman:tea_rosehip 1000'], + circuit: 2 + }); + + // Tea Nettle + global.processorRecipe(event, 'tea_nettle', 200, GTValues.VHA[GTValues.LV], { + itemInputs: ['2x tfc_gurman:dried_nettle_leaves'], + fluidInputs: ['minecraft:water 1000'], + fluidOutputs: ['tfc_gurman:tea_nettle 1000'], + circuit: 2 + }); + + // Solyanka + global.processorRecipe(event, 'solyanka', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['#tfc:foods/meats', 'tfc:food/cabbage', 'tfc:food/onion', 'tfc:food/tomato', 'tfc:food/olive', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['3x tfc_gurman:solyanka'], + circuit: 20, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:solyanka').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Okroshka + global.processorRecipe(event, 'okroshka', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['tfc:food/cabbage', 'tfc:food/tomato', 'tfc:food/potato', 'tfc:food/onion', '#firmalife:foods/raw_eggs', '3x #tfc:bowls'], + fluidInputs: ['tfc_gurman:kvass 1000'], + itemOutputs: ['3x tfc_gurman:okroshka'], + circuit: 20, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:okroshka').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Zama + global.processorRecipe(event, 'zama', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['tfc:food/chicken', 'tfc:food/carrot', 'tfc:food/onion', 'tfc:powder/salt', 'tfc:food/garlic', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['3x tfc_gurman:zama'], + circuit: 20, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:zama').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Curry + global.processorRecipe(event, 'curry', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['#tfc:foods/cooked_meats', '#tfc:foods/vegetables', 'tfc:powder/salt', 'tfc:food/cooked_rice', '3x #tfc:bowls'], + fluidInputs: ['#tfc:milks 1000'], + itemOutputs: ['3x tfc_gurman:curry'], + circuit: 16, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:curry').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Goulash + global.processorRecipe(event, 'goulash', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['#tfc:foods/raw_meats', 'tfc:food/onion', 'tfc:food/potato', 'tfc:powder/salt', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 100'], + itemOutputs: ['3x tfc_gurman:goulash'], + circuit: 16, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:goulash').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Pho + global.processorRecipe(event, 'pho', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['firmalife:food/cooked_pasta', '#tfc:foods/cooked_meats', 'tfc:food/garlic', 'tfc:powder/salt', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 100'], + itemOutputs: ['3x tfc_gurman:pho'], + circuit: 16, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:pho').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Bouillabaisse + global.processorRecipe(event, 'bouillabaisse', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['#firmalife:foods/raw_fish', 'tfc:food/tomato', 'tfc:food/onion', 'tfc:food/garlic', 'tfc:powder/salt', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['3x tfc_gurman:bouillabaisse'], + circuit: 16, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:bouillabaisse').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Ramen with Beef + global.processorRecipe(event, 'ramen_beef', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['firmalife:food/raw_egg_noodles', '#firmalife:foods/raw_eggs', 'tfc:food/beef', 'tfc:food/onion', '2x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['2x tfc_gurman:ramen_with_beef'], + circuit: 21, + itemOutputProvider: TFC.isp.of('2x tfc_gurman:ramen_with_beef').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Ramen with Camelidae + global.processorRecipe(event, 'ramen_camelidae', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['firmalife:food/raw_egg_noodles', '#firmalife:foods/raw_eggs', 'tfc:food/camelidae', 'tfc:food/onion', '2x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['2x tfc_gurman:ramen_with_camelidae'], + circuit: 21, + itemOutputProvider: TFC.isp.of('2x tfc_gurman:ramen_with_camelidae').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Ramen with Chevon + global.processorRecipe(event, 'ramen_chevon', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['firmalife:food/raw_egg_noodles', '#firmalife:foods/raw_eggs', 'tfc:food/chevon', 'tfc:food/onion', '2x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['2x tfc_gurman:ramen_with_chevon'], + circuit: 21, + itemOutputProvider: TFC.isp.of('2x tfc_gurman:ramen_with_chevon').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Ramen with Bacon + global.processorRecipe(event, 'ramen_bacon', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['firmalife:food/raw_egg_noodles', '#firmalife:foods/raw_eggs', 'firmalife:food/bacon', 'tfc:food/onion', '2x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['2x tfc_gurman:ramen_with_bacon'], + circuit: 21, + itemOutputProvider: TFC.isp.of('2x tfc_gurman:ramen_with_bacon').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Biryani + global.processorRecipe(event, 'biryani', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['tfc:food/rice_grain', '#tfc:foods/meats', 'tfc:food/onion', 'tfc:food/carrot', 'tfc:food/tomato', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['3x tfc_gurman:biryani'], + circuit: 20, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:biryani').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Fried Rice + global.processorRecipe(event, 'fried_rice', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['tfc:food/cooked_rice', '#forge:eggs', '#tfc:foods/vegetables', 'tfc:powder/salt', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 100'], + itemOutputs: ['3x tfc_gurman:fried_rice'], + circuit: 16, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:fried_rice').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Kimchi + global.processorRecipe(event, 'kimchi', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['tfc:food/cabbage', 'tfc:food/carrot', 'tfc:food/onion', 'tfc:food/garlic', 'tfc:powder/salt', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['3x tfc_gurman:kimchi'], + circuit: 20, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:kimchi').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Dolma + global.processorRecipe(event, 'dolma', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['#tfc:foods/meats', 'tfc:food/rice_grain', 'tfc:powder/salt', '2x #tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['2x tfc_gurman:dolma'], + circuit: 16, + itemOutputProvider: TFC.isp.of('2x tfc_gurman:dolma').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Spaghetti Bolognese + global.processorRecipe(event, 'spaghetti_bolognese', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['firmalife:food/cooked_pasta', '#tfc:foods/cooked_meats', 'tfc:food/tomato', 'tfc:food/onion', 'tfc:food/garlic', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 500'], + itemOutputs: ['3x tfc_gurman:spaghetti_bolognese'], + circuit: 18, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:spaghetti_bolognese').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Pasta Carbonara + global.processorRecipe(event, 'pasta_carbonara', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['firmalife:food/cooked_pasta', 'firmalife:food/bacon', '#firmalife:foods/raw_eggs', 'firmalife:food/shredded_cheese', 'tfc:powder/salt', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 500'], + itemOutputs: ['3x tfc_gurman:pasta_carbonara'], + circuit: 18, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:pasta_carbonara').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Ratatouille + global.processorRecipe(event, 'ratatouille', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['tfc:food/tomato', 'tfc:food/pumpkin_chunks', 'tfc:food/carrot', 'tfc:food/onion', 'tfc:food/garlic', '3x #tfc:bowls'], + fluidInputs: ['minecraft:water 500'], + itemOutputs: ['3x tfc_gurman:ratatouille'], + circuit: 18, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:ratatouille').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Risotto + global.processorRecipe(event, 'risotto', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['tfc:food/rice_grain', '#firmalife:foods/cheeses', '#tfc:foods/vegetables', '2x #tfc:bowls'], + fluidInputs: ['minecraft:water 100'], + itemOutputs: ['3x tfc_gurman:risotto'], + circuit: 18, + itemOutputProvider: TFC.isp.of('3x tfc_gurman:risotto').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Porridge + global.processorRecipe(event, 'porridge', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['#tfc:foods/grains', 'tfc:powder/salt', '#tfc:bowls'], + fluidInputs: ['minecraft:water 250'], + itemOutputs: ['tfc_gurman:porridge'], + circuit: 18, + itemOutputProvider: TFC.isp.of('tfc_gurman:porridge').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Mamaliga + global.processorRecipe(event, 'mamaliga', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['tfc:food/maize_grain', 'tfc:powder/salt', '#tfc:bowls'], + fluidInputs: ['minecraft:water 1000'], + itemOutputs: ['tfc_gurman:mamaliga'], + circuit: 16, + itemOutputProvider: TFC.isp.of('tfc_gurman:mamaliga').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // Adjika + global.processorRecipe(event, 'adjika', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['tfc:food/green_bell_pepper', 'tfc:food/red_bell_pepper', 'tfc:powder/salt', 'tfc:food/garlic', 'firmalife:plant/cilantro', '5x #tfc:bowls'], + fluidInputs: ['minecraft:water 500'], + itemOutputs: ['5x tfc_gurman:adjika'], + circuit: 8, + itemOutputProvider: TFC.isp.of('5x tfc_gurman:adjika').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + //#endregion + + // #region Drying + global.processorRecipeText(event, 'dried_mint', 200, GTValues.VA[GTValues.LV], "tfg.food_recipe.drying", { + itemInputs: ["tfc:plant/foxglove"], + fluidInputs: ['gtceu:nitrogen 100'], + itemOutputs: ["tfc_gurman:dried_mint_leaves"], + circuit: 6 + }); + + global.processorRecipeText(event, 'dried_chamomile', 200, GTValues.VA[GTValues.LV], "tfg.food_recipe.drying", { + itemInputs: ["tfc:plant/lilac"], + fluidInputs: ['gtceu:nitrogen 100'], + itemOutputs: ["tfc_gurman:dried_chamomile_leaves"], + circuit: 6 + }); + + global.processorRecipeText(event, 'dried_rosehip', 200, GTValues.VA[GTValues.LV], "tfg.food_recipe.drying", { + itemInputs: ["tfc:plant/rose"], + fluidInputs: ['gtceu:nitrogen 100'], + itemOutputs: ["tfc_gurman:dried_rosehip_leaves"], + circuit: 6 + }); + + global.processorRecipeText(event, 'dried_nettle', 200, GTValues.VA[GTValues.LV], "tfg.food_recipe.drying", { + itemInputs: ["tfc:plant/trillium"], + fluidInputs: ['gtceu:nitrogen 100'], + itemOutputs: ["tfc_gurman:dried_nettle_leaves"], + circuit: 6 + }); + // #endregion Drying + + // #region Crafting table foods + + // TODO: unfinished + global.processorRecipe(event, 'margarita_pizza', 300, GTValues.VA[GTValues.LV], { + itemInputs: ['firmalife:food/pizza_dough', 'firmalife:food/shredded_cheese', 'tfc:food/tomato', 'tfc:food/red_bell_pepper', 'tfc_gurman:plant_mix', 'firmalife:food/tomato_sauce'], + itemOutputs: ['tfc_gurman:raw_margarita_pizza'], + circuit: 4, + itemOutputProvider: TFC.isp.of('tfc_gurman:raw_margarita_pizza').simpleModifier('tfg:force_add_bowl').copyOldestFood() + }); + + // #endregion + + // #region Replacements + + event.replaceInput({ id: "tfc_gurman:crafting/tiramisu" }, "minecraft:sugar", "#tfg:sugars"); + + event.recipes.tfc.advanced_shapeless_crafting(TFC.isp.of('4x tfc_gurman:raw_takoyaki').copyOldestFood(), [ + TFC.ingredient.notRotten('tfg:food/raw_crawlermari'), + TFC.ingredient.notRotten('#tfc:foods/flour'), + TFC.ingredient.notRotten('#forge:eggs'), + 'tfc:powder/salt' + ]).id('tfg:shapeless/takoyaki_from_crawlermari'); + + // #endregion +} diff --git a/kubejs/server_scripts/tfcambiental/tags.js b/kubejs/server_scripts/tfcambiental/tags.js deleted file mode 100644 index aeabe274a..000000000 --- a/kubejs/server_scripts/tfcambiental/tags.js +++ /dev/null @@ -1,26 +0,0 @@ -// priority: 0 -"use strict"; - -const registerTFCAmbientalItemTags = (event) => { - - event.add('minecraft:trimmable_armor', 'tfcambiental:wool_hat') - event.add('minecraft:trimmable_armor', 'tfcambiental:wool_sweater') - event.add('minecraft:trimmable_armor', 'tfcambiental:wool_pants') - event.add('minecraft:trimmable_armor', 'tfcambiental:wool_boots') - event.add('minecraft:trimmable_armor', 'tfcambiental:silk_cowl') - event.add('minecraft:trimmable_armor', 'tfcambiental:silk_shirt') - event.add('minecraft:trimmable_armor', 'tfcambiental:silk_pants') - event.add('minecraft:trimmable_armor', 'tfcambiental:silk_shoes') - event.add('minecraft:trimmable_armor', 'tfcambiental:burlap_cowl') - event.add('minecraft:trimmable_armor', 'tfcambiental:burlap_shirt') - event.add('minecraft:trimmable_armor', 'tfcambiental:burlap_pants') - event.add('minecraft:trimmable_armor', 'tfcambiental:burlap_shoes') - event.add('minecraft:trimmable_armor', 'tfcambiental:insulated_leather_hat') - event.add('minecraft:trimmable_armor', 'tfcambiental:insulated_leather_tunic') - event.add('minecraft:trimmable_armor', 'tfcambiental:insulated_leather_pants') - event.add('minecraft:trimmable_armor', 'tfcambiental:insulated_leather_boots') - - event.add('tfg:lightweight_cloth', 'tfc:silk_cloth') - event.add('tfg:lightweight_cloth', 'tfg:phantom_silk') - event.add('tfg:lightweight_cloth', 'tfg:polycaprolactam_fabric') -} \ No newline at end of file diff --git a/kubejs/server_scripts/hotornot/recipes.js b/kubejs/server_scripts/tfchotornot/recipes.js similarity index 100% rename from kubejs/server_scripts/hotornot/recipes.js rename to kubejs/server_scripts/tfchotornot/recipes.js diff --git a/kubejs/server_scripts/tfchotornot/tags.js b/kubejs/server_scripts/tfchotornot/tags.js new file mode 100644 index 000000000..b320fb6f4 --- /dev/null +++ b/kubejs/server_scripts/tfchotornot/tags.js @@ -0,0 +1,92 @@ +// priority: 0 +"use strict"; + +const registerHotOrNotItemTags = (event) => { + + // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Ρ‚Π΅Π³ΠΎΠ² Ρƒ ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² + global.HOT_OR_NOT_DISABLED_ITEMS.forEach(item => { + event.removeAllTagsFrom(item) + event.add('c:hidden_from_recipe_viewers', item) + }) + + event.add('tfchotornot:hot_whitelist', '#forge:hot_ingots') + event.add('tfchotornot:hot_whitelist', 'minecraft:magma_block') + event.add('tfchotornot:cold_whitelist', 'minecraft:blue_ice') + event.add('tfchotornot:cold_whitelist', 'tfg:dry_ice') + + global.TFC_MAGMA_BLOCKS.forEach(magma => { + event.add('tfchotornot:hot_whitelist', magma) + }) + + + event.add('firmalife:usable_on_oven', '#tfchotornot:insulating') + + event.add('tfg:insulating_container', 'gtceu:ulv_super_tank') + event.add('tfg:insulating_container', 'gtceu:lv_super_tank') + event.add('tfg:insulating_container', 'gtceu:mv_super_tank') + event.add('tfg:insulating_container', 'gtceu:hv_super_tank') + event.add('tfg:insulating_container', 'gtceu:ev_super_tank') + event.add('tfg:insulating_container', 'gtceu:iv_quantum_tank') + event.add('tfg:insulating_container', 'gtceu:luv_quantum_tank') + event.add('tfg:insulating_container', 'gtceu:zpm_quantum_tank') + event.add('tfg:insulating_container', 'gtceu:uv_quantum_tank') + event.add('tfg:insulating_container', 'gtceu:uhv_quantum_tank') + event.add('tfg:insulating_container', 'gtceu:glass_vial') + event.add('tfg:insulating_container', 'gtceu:fluid_cell') + event.add('tfg:insulating_container', 'gtceu:universal_fluid_cell') + event.add('tfg:insulating_container', 'gtceu:steel_fluid_cell') + event.add('tfg:insulating_container', 'gtceu:aluminium_fluid_cell') + event.add('tfg:insulating_container', 'gtceu:stainless_steel_fluid_cell') + event.add('tfg:insulating_container', 'gtceu:titanium_fluid_cell') + event.add('tfg:insulating_container', 'gtceu:tungsten_steel_fluid_cell') + + event.add('tfg:hot_protection_equipment', 'tfc:metal/chestplate/blue_steel') + event.add('tfg:hot_protection_equipment', 'tfc:metal/boots/blue_steel') + event.add('tfg:hot_protection_equipment', 'sns:blue_steel_toe_hiking_boots') + event.add('tfg:hot_protection_equipment', 'minecraft:netherite_boots') + event.add('tfg:hot_protection_equipment', 'create:netherite_backtank') + event.add('tfg:hot_protection_equipment', 'create:netherite_diving_boots') + event.add('tfg:hot_protection_equipment', 'ad_astra:netherite_space_suit') + event.add('tfg:hot_protection_equipment', 'ad_astra:netherite_space_boots') + event.add('tfg:hot_protection_equipment', 'gtceu:hazmat_chestpiece') + event.add('tfg:hot_protection_equipment', 'gtceu:hazmat_boots') + event.add('tfg:hot_protection_equipment', 'gtceu:quarktech_chestplate') + event.add('tfg:hot_protection_equipment', 'gtceu:advanced_quarktech_chestplate') + event.add('tfg:hot_protection_equipment', 'gtceu:quarktech_boots') + + event.add('tfg:cold_protection_equipment', 'tfc:metal/chestplate/red_steel') + event.add('tfg:cold_protection_equipment', 'tfc:metal/boots/red_steel') + event.add('tfg:cold_protection_equipment', 'sns:red_steel_toe_hiking_boots') + event.add('tfg:cold_protection_equipment', 'ad_astra:space_boots') + event.add('tfg:cold_protection_equipment', 'ad_astra:space_suit') + event.add('tfg:cold_protection_equipment', 'ad_astra:netherite_space_suit') + event.add('tfg:cold_protection_equipment', 'ad_astra:netherite_space_boots') + event.add('tfg:cold_protection_equipment', 'gtceu:hazmat_chestpiece') + event.add('tfg:cold_protection_equipment', 'gtceu:hazmat_boots') + event.add('tfg:cold_protection_equipment', 'gtceu:quarktech_chestplate') + event.add('tfg:cold_protection_equipment', 'gtceu:advanced_quarktech_chestplate') + event.add('tfg:cold_protection_equipment', 'gtceu:quarktech_boots') + + event.add('tfg:floating_protection_equipment', 'create:copper_diving_boots') + event.add('tfg:floating_protection_equipment', 'create:netherite_diving_boots') + event.add('tfg:floating_protection_equipment', 'ad_astra:space_boots') + event.add('tfg:floating_protection_equipment', 'ad_astra:netherite_space_boots') + event.add('tfg:floating_protection_equipment', 'gtceu:hazmat_boots') + event.add('tfg:floating_protection_equipment', 'gtceu:quarktech_boots') +} + +const registerHotOrNotFluidTags = (event) => { + event.add("tfchotornot:gaseous_whitelist", 'gtceu:helium') + event.add("tfchotornot:gaseous_whitelist", 'gtceu:helium_3') + event.add("tfchotornot:gaseous_whitelist", 'gtceu:hydrogen') + event.add("tfchotornot:gaseous_whitelist", 'gtceu:coal_gas') + event.add("tfchotornot:gaseous_whitelist", 'gtceu:methane') +} + +const registerHotOrNotBlockTags = (event) => { + + // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Ρ‚Π΅Π³ΠΎΠ² Ρƒ ΠΎΡ‚ΠΊΠ»ΡŽΡ‡Π΅Π½Π½Ρ‹Ρ… ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚ΠΎΠ² + global.HOT_OR_NOT_DISABLED_ITEMS.forEach(item => { + event.removeAllTagsFrom(item) + }) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfcscraping/recipes.js b/kubejs/server_scripts/tfcscraping/recipes.js new file mode 100644 index 000000000..23d6ee49f --- /dev/null +++ b/kubejs/server_scripts/tfcscraping/recipes.js @@ -0,0 +1,16 @@ +// priority: 0 +"use strict"; + +/** + * + * @param {Internal.RecipesEventJS} event + */ +const registerTFCScrapingRecipes = (event) => { + + event.remove({ input: 'tfcscraping:ceramic/scraping_knife_blade_mold'}) + event.recipes.tfc.casting('tfcscraping:metal/scraping_knife_blade/bismuth_bronze', 'tfcscraping:ceramic/scraping_knife_blade_mold', TFC.fluidStackIngredient('gtceu:bismuth_bronze', 288), 0.1) + event.recipes.tfc.casting('tfcscraping:metal/scraping_knife_blade/black_bronze', 'tfcscraping:ceramic/scraping_knife_blade_mold', TFC.fluidStackIngredient('gtceu:black_bronze', 288), 0.1) + event.recipes.tfc.casting('tfcscraping:metal/scraping_knife_blade/bronze', 'tfcscraping:ceramic/scraping_knife_blade_mold', TFC.fluidStackIngredient('gtceu:bronze', 288), 0.1) + event.recipes.tfc.casting('tfcscraping:metal/scraping_knife_blade/copper', 'tfcscraping:ceramic/scraping_knife_blade_mold', TFC.fluidStackIngredient('gtceu:copper', 288), 0.1) + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/beneath/tags.beneath.js b/kubejs/server_scripts/tfg/beneath/tags.beneath.js new file mode 100644 index 000000000..c61249bb5 --- /dev/null +++ b/kubejs/server_scripts/tfg/beneath/tags.beneath.js @@ -0,0 +1,139 @@ +"use strict"; + +function registerTFGBeneathItemTags(event) { + + event.add("minecraft:piglin_loved", "gtceu:tiny_pyrite_dust"); + event.add("minecraft:piglin_loved", "gtceu:poor_raw_pyrite"); + event.add("minecraft:piglin_loved", "gtceu:raw_pyrite"); + event.add("minecraft:piglin_loved", "gtceu:rich_raw_pyrite"); + event.add("minecraft:piglin_loved", "tfc:ore/small_native_gold"); + event.add("minecraft:piglin_loved", "tfc:ore/poor_native_gold"); + event.add("minecraft:piglin_loved", "tfc:ore/normal_native_gold"); + event.add("minecraft:piglin_loved", "tfc:ore/rich_native_gold"); + event.add('minecraft:piglin_loved', 'tfg:piglin_disguise') + + event.add('tfc:plants', 'minecraft:spore_blossom') + event.remove('createaddition:plants', 'minecraft:moss_carpet') + + event.add('tfc:compost_greens', 'minecraft:red_mushroom_block') + event.add('tfc:compost_greens', 'minecraft:brown_mushroom_block') + event.add('tfc:compost_greens', 'minecraft:mushroom_stem') + event.add('tfc:compost_greens', 'minecraft:moss_block') + event.add('tfc:compost_greens_low', 'minecraft:moss_carpet') + event.add('tfc:compost_greens_low', 'minecraft:twisting_vines') +} + + +function registerTFGBeneathBlockTags(event) { + event.add('tfg:lush_ground_replaceable', 'minecraft:deepslate') + event.add('tfg:lush_ground_replaceable', 'minecraft:blackstone') + + event.add('minecraft:lush_ground_replaceable', 'minecraft:blackstone') + event.add('beneath:nether_bush_plantable_on', 'minecraft:blackstone') + event.add('beneath:nether_bush_plantable_on', 'minecraft:deepslate') + event.add('beneath:nether_bush_plantable_on', 'minecraft:moss_block') + event.add('beneath:nether_bush_plantable_on', 'minecraft:dripstone_block') + event.add('minecraft:nether_carver_replaceables', 'minecraft:blackstone') + event.add('minecraft:nether_carver_replaceables', 'minecraft:deepslate') + event.add('minecraft:nether_carver_replaceables', 'minecraft:dripstone_block') + event.add('minecraft:frogs_spawnable_on', 'minecraft:deepslate') + event.add('minecraft:frogs_spawnable_on', 'minecraft:blackstone') + event.add('minecraft:frogs_spawnable_on', 'minecraft:dripstone_block') + event.add('minecraft:axolotls_spawnable_on', 'minecraft:deepslate') + event.add('minecraft:axolotls_spawnable_on', 'minecraft:dripstone_block') + event.add('tfc:grass_plantable_on', 'minecraft:moss_block') + event.add('tfc:creeping_plantable_on', 'minecraft:moss_block') + event.add('tfc:creeping_plantable_on', 'minecraft:deepslate') + event.add('tfc:creeping_plantable_on', 'minecraft:blackstone') + event.add('tfc:creeping_stone_plantable_on', 'minecraft:moss_block') + event.add('tfc:creeping_stone_plantable_on', 'minecraft:deepslate') + event.add('tfc:creeping_stone_plantable_on', 'minecraft:blackstone') + + event.add('minecraft:base_stone_nether', 'minecraft:deepslate') + event.add('minecraft:base_stone_nether', 'minecraft:blackstone') + event.add('minecraft:base_stone_nether', 'minecraft:dripstone_block') + event.add("minecraft:base_stone_nether", "tfc:rock/raw/gneiss"); + event.add("minecraft:base_stone_nether", "tfc:rock/raw/schist"); + event.add("minecraft:base_stone_nether", "tfc:rock/raw/diorite"); + event.add("minecraft:base_stone_nether", "tfc:rock/raw/granite"); + event.add("minecraft:base_stone_nether", "tfc:rock/raw/gabbro"); + event.add("minecraft:base_stone_nether", "tfc:rock/raw/basalt"); + + event.add('minecraft:mineable/pickaxe', 'minecraft:lantern'); + + event.add('minecraft:mineable/pickaxe', 'minecraft:cobweb'); + event.add('minecraft:mineable/hoe', 'minecraft:cobweb'); + event.add('minecraft:mineable/shovel', 'minecraft:cobweb'); + event.add('minecraft:mineable/axe', 'minecraft:cobweb'); + + event.add('minecraft:nether_carver_replaceables', 'tfg:rock/hardened_deepslate') + event.add('minecraft:moss_replaceable', 'tfg:rock/hardened_deepslate') + event.add('minecraft:base_stone_nether', 'tfg:rock/hardened_deepslate') + event.add('beneath:nether_bush_plantable_on', 'tfg:rock/hardened_deepslate') + event.add('tfc:grass_plantable_on', 'tfg:rock/hardened_deepslate') + event.add('tfc:creeping_plantable_on', 'tfg:rock/hardened_deepslate') + + event.add('minecraft:nether_carver_replaceables', 'tfg:rock/hardened_blackstone') + event.add('minecraft:moss_replaceable', 'tfg:rock/hardened_blackstone') + event.add('minecraft:base_stone_nether', 'tfg:rock/hardened_blackstone') + event.add('beneath:nether_bush_plantable_on', 'tfg:rock/hardened_blackstone') + event.add('tfc:creeping_plantable_on', 'tfg:rock/hardened_blackstone') + + event.add('minecraft:nether_carver_replaceables', 'tfg:rock/hardened_dripstone') + event.add('minecraft:base_stone_nether', 'tfg:rock/hardened_dripstone') + + event.add("beneath:nether_bush_plantable_on", "#tfc:clay_grass"); + event.add("minecraft:small_dripleaf_placeable", "#tfc:clay_grass"); + event.add("minecraft:big_dripleaf_placeable", "#tfc:clay_grass"); + event.add("minecraft:frogs_spawnable_on", "#tfc:clay_grass"); + event.add("minecraft:axolotls_spawnable_on", "#tfc:clay_grass"); + + event.add("minecraft:small_dripleaf_placeable", "#tfc:clay"); + event.add("minecraft:big_dripleaf_placeable", "#tfc:clay"); + event.add("minecraft:frogs_spawnable_on", "#tfc:clay"); + event.add("minecraft:axolotls_spawnable_on", "#tfc:clay"); + + event.add("beneath:nether_bush_plantable_on", "#tfc:mud"); + event.add("minecraft:frogs_spawnable_on", "#tfc:mud"); + + event.add("beneath:nether_bush_plantable_on", "#tfc:dirt"); + event.add("minecraft:frogs_spawnable_on", "#tfc:dirt"); + + event.add("minecraft:nether_carver_replaceables", "#minecraft:base_stone_nether"); + event.add("minecraft:frogs_spawnable_on", "#minecraft:base_stone_nether"); +} + +function registerTFGBeneathBiomeTags(event) { + + event.add('tfg:nether_biomes', 'tfg:nether/lush_hollow') + event.add('minecraft:allows_surface_slime_spawns', 'tfg:nether/lush_hollow') + event.add('minecraft:spawns_cold_variant_frogs', 'tfg:nether/lush_hollow') + + event.add('tfg:nether_biomes', 'tfg:nether/decaying_caverns') + event.add('minecraft:allows_surface_slime_spawns', 'tfg:nether/decaying_caverns') + event.add('minecraft:spawns_warm_variant_frogs', 'tfg:nether/decaying_caverns') + event.add('minecraft:has_closer_water_fog', 'tfg:nether/decaying_caverns') + + event.add('tfg:nether_biomes', 'tfg:nether/basalt_deltas') + event.add('tfg:nether_biomes', 'tfg:nether/ash_forest') + event.add('tfg:nether_biomes', 'tfg:nether/lava_floes') + event.add('tfg:nether_biomes', 'tfg:nether/webbed_lair') + event.add('tfg:nether_biomes', 'tfg:nether/gneiss_caves') + event.add('tfg:nether_biomes', 'tfg:nether/diorite_caves') + event.add('tfg:nether_biomes', 'tfg:nether/gabbro_caves') + event.add('tfg:nether_biomes', 'tfg:nether/granite_caves') + event.add('tfg:nether_biomes', 'tfg:nether/schist_caves') + + event.add('minecraft:has_structure/nether_fossil', '#tfg:nether_biomes') + event.add('minecraft:has_structure/bastion_remnant', '#tfg:nether_biomes') + +} + +function registerTFGBeneathPlacedFeatures(event) { + + event.add('tfg:nether_veins', 'beneath:vein/crackrack_pipe') + + event.add('tfg:nether_underground_decoration', 'minecraft:spring_open') + event.add('tfg:nether_underground_decoration', 'minecraft:spring_closed') + event.add('tfg:nether_underground_decoration', 'tfg:nether/terrain/magma_blob') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/data.js b/kubejs/server_scripts/tfg/data.js index 7117ad9cd..6608c3ef1 100644 --- a/kubejs/server_scripts/tfg/data.js +++ b/kubejs/server_scripts/tfg/data.js @@ -10,8 +10,11 @@ function registerTFCDataForTFG(event) { registerTFGCropRanges(event); registerTFGFLPlanters(event); registerTFGFauna(event); + registerTFGEquipmentData(event); } +//#region Heat Data + /** @param {Internal.TFCDataEventJS} event */ function registerTFGHeatData(event) { event.itemHeat("tfg:latex_soaked_gloves", 1, null, null); @@ -38,8 +41,24 @@ function registerTFGHeatData(event) { event.itemHeat('betterend:cave_pumpkin_pie_raw', 1.0, null, null); event.itemHeat('betterend:cave_pumpkin_pie', 1.0, null, null); + + event.itemHeat('tfg:food/raw_beer_battered_cheese_curds', 1.0, null, null); + event.itemHeat('tfg:food/cooked_beer_battered_cheese_curds', 1.0, null, null); + event.itemHeat('tfg:food/raw_fries', 1.0, null, null); + event.itemHeat('tfg:food/cooked_fries', 1.0, null, null); + event.itemHeat('tfg:food/brioche_dough', 1.0, null, null); + event.itemHeat('tfg:food/brioche_bun', 1.0, null, null); + event.itemHeat('tfg:food/raw_burger_patty', 1.0, null, null); + event.itemHeat('tfg:food/cooked_burger_patty', 1.0, null, null); + + event.itemHeat('tfg:unfired_rod_mold', 1.0, null, null); + event.itemHeat('tfg:unfired_small_gear_mold', 1.0, null, null); + event.itemHeat('tfg:unfired_nugget_mold', 1.0, null, null); } +//#endregion +//#region Item Size + /** @param {Internal.TFCDataEventJS} event */ function registerTFGItemSize(event) { /** @@ -73,7 +92,7 @@ function registerTFGItemSize(event) { event.itemSize("tfg:trowel", "large", "medium", "trowel"); - event.itemSize("tfg:railgun_ammo_shell", "large", "heavy", "trowel"); + event.itemSize("tfg:railgun_ammo_shell", "large", "medium", "railgun_ammo_shell"); event.itemSize("tfg:harvest_basket", "large", "medium", "harvest_basket"); event.itemSize("tfg:aluminium_harvest_basket", "large", "medium", "aluminium_harvest_basket"); @@ -139,7 +158,7 @@ function registerTFGItemSize(event) { "gtceu:red_granite", "gtceu:light_concrete", "gtceu:dark_concrete", - "create:cardboard_block", + "create:cardboard_block" ]) ), "large", @@ -228,7 +247,7 @@ function registerTFGItemSize(event) { "ae2:cable_anchor", "ae2:level_emitter", "ae2:energy_level_emitter", - "expatternprovider:threshold_level_emitter", + "expatternprovider:threshold_level_emitter" ]), "tiny", "very_light", @@ -271,7 +290,7 @@ function registerTFGItemSize(event) { "expatternprovider:precise_export_bus", "expatternprovider:precise_storage_bus", "expatternprovider:threshold_export_bus", - "expatternprovider:oversize_interface_part", + "expatternprovider:oversize_interface_part" ]), "very_small", "very_light", @@ -287,8 +306,35 @@ function registerTFGItemSize(event) { event.itemSize("tfg:beaker", "large", "heavy", "tfg/beaker"); event.itemSize("tfg:flask", "normal", "medium", "tfg/flask"); event.itemSize("tfg:vial", "tiny", "light", "tfg/vial"); + + + event.itemSize('#tfc:ore_pieces', 'very_small', 'very_light', 'tfc_ores') + + event.itemSize('#tfc:foods/sealed_preserves', 'tiny', 'medium', 'sealed_preserves') + event.itemSize('#tfc:foods/preserves', 'tiny', 'medium', 'preserves') + + event.itemSize('#forge:tools/wrenches', 'very_large', 'very_heavy', 'wrenches') + event.itemSize('#forge:tools/mining_hammers', 'very_large', 'very_heavy', 'mining_hammers') + event.itemSize('#forge:tools/spades', 'very_large', 'very_heavy', 'spades') + + event.itemSize( + orArray([ + "tfg:unfired_rod_mold", + "tfg:unfired_small_gear_mold", + "tfg:unfired_nugget_mold", + "tfg:rod_mold", + "tfg:small_gear_mold", + "tfg:nugget_mold" + ]), + "normal", + "medium", + "Molds" + ) } +//#endregion +//#region Support Data + //up, down, horizontal /** @param {Internal.TFCDataEventJS} event */ function registerTFGSupportData(event) { @@ -310,757 +356,5 @@ function registerTFGSupportData(event) { event.support(`tfg:${wood.name}_support_horizontal`, 2, 2, 4, `${wood.name}_support`); }); } -/** @param {Internal.TFCDataEventJS} event */ -function registerTFGFoodData(event) { - // meats - event.foodItem("tfg:food/raw_birt", (food) => { - food.hunger(2); - food.protein(1.2); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_birt", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(2.2); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_crawlermari", (food) => { - food.hunger(2); - food.water(5); - food.protein(1.2); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_crawlermari", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(2.2); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_limpet", (food) => { - food.hunger(2); - food.water(5); - food.protein(1.2); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_limpet", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(2.2); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_moon_rabbit", (food) => { - food.hunger(2); - food.protein(1.2); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_moon_rabbit", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(2.2); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_glacian_mutton", (food) => { - food.hunger(2); - food.protein(1.5); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_glacian_mutton", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(3); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_sniffer_beef", (food) => { - food.hunger(2); - food.protein(1.5); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_sniffer_beef", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(3); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_wraptor", (food) => { - food.hunger(2); - food.protein(1.5); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_wraptor", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(3); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_springling_collar", (food) => { - food.hunger(2); - food.protein(1.5); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_springling_collar", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(3); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_surfer_steak", (food) => { - food.hunger(2); - food.protein(1.5); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_surfer_steak", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(3); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_cruncher_ribs", (food) => { - food.hunger(2); - food.protein(2.0); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_cruncher_ribs", (food) => { - food.hunger(4); - food.saturation(2.2); - food.protein(4); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_long_pig_filet", (food) => { - food.hunger(2); - food.protein(1.5); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_long_pig_filet", (food) => { - food.hunger(2); - food.saturation(2); - food.protein(2); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_stackatick_chunks", (food) => { - food.hunger(2); - food.protein(1.2); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/raw_stickastackatick", (food) => { - food.hunger(2); - food.protein(1.2); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_stickastackatick", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(3); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_walker_steak", (food) => { - food.hunger(2); - food.protein(2.0); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_walker_steak", (food) => { - food.hunger(4); - food.saturation(2.2); - food.protein(4); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_glider_wings", (food) => { - food.hunger(2); - food.protein(1.5); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_glider_wings", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(2.75); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_whole_soarer", (food) => { - food.hunger(2); - food.protein(1.5); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_whole_soarer", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(3.1); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_crusher_meat", (food) => { - food.hunger(2); - food.protein(1.5); - food.decayModifier(3); - }); - - event.foodItem("tfg:food/cooked_crusher_meat", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(3); - food.decayModifier(2.25); - }); - - event.foodItem("tfg:food/raw_goober_meat", (food) => { - food.hunger(2); - food.protein(1.5); - food.decayModifier(3); - food.water(1); - }); - - event.foodItem("tfg:food/cooked_goober_meat", (food) => { - food.hunger(4); - food.saturation(2); - food.protein(3); - food.decayModifier(2.25); - }); - - // high-tech food - - global.FOOD_FRUIT.forEach((fruit) => { - event.foodItem(`tfg:food/freeze_dried/${fruit.name}`, (food) => { - food.hunger(4); - food.saturation(fruit.saturation); - food.water(0); - food.fruit(fruit.fruit); - food.decayModifier(fruit.decay); - }); - }); - - event.foodItem("tfg:food/calorie_paste", (food) => { - food.hunger(6); - food.saturation(4); - food.decayModifier(4.5); - food.grain(0.1); - food.vegetables(0.2); - food.protein(0.2); - }); - - event.foodItem("tfg:food/meal_bag", (food) => { - food.type("dynamic"); - }); - - // crops - - event.foodItem("tfg:roasted_sunflower_seeds", (food) => { - food.hunger(4); - food.decayModifier(0.5); - food.grain(0.1); - food.saturation(0.5); - }); - - event.foodItem("tfg:sunflower_product", (food) => { - food.decayModifier(0.5); - }); - - event.foodItem("betterend:amber_root_product", (food) => { - food.hunger(4); - food.decayModifier(1); - food.saturation(1); - food.grain(3); - }); - - event.foodItem("betterend:blossom_berry_product", (food) => { - food.hunger(5); - food.decayModifier(2); - food.saturation(1); - food.water(7.5); - food.fruit(2.1); - }); - - event.foodItem("betterend:cave_pumpkin", (food) => { - food.hunger(4); - food.saturation(0); - food.decayModifier(0.5); - }); - - event.foodItem("betterend:cave_pumpkin_chunks", (food) => { - food.hunger(4); - food.saturation(1); - food.decayModifier(2.5); - food.water(5); - food.fruit(0.8); - }); - - event.foodItem("betterend:cave_pumpkin_pie_dough", (food) => { - food.hunger(2); - food.decayModifier(3); - }); - - event.foodItem("betterend:cave_pumpkin_pie_raw", (food) => { - food.hunger(2); - food.decayModifier(3); - }); - - event.foodItem("betterend:cave_pumpkin_pie", (food) => { - food.hunger(4); - food.saturation(2.8); - food.decayModifier(1.5); - food.water(5); - food.protein(1); - food.fruit(5); - food.grain(4); - food.dairy(1); - }); - - event.foodItem("betterend:chorus_mushroom_product", (food) => { - food.hunger(2); - food.saturation(1); - food.decayModifier(3); - food.water(3); - food.vegetables(1.5); - }); - - event.foodItem("betterend:chorus_mushroom_cooked", (food) => { - food.hunger(2); - food.saturation(2.1); - food.decayModifier(1.5); - food.vegetables(2.5); - }); - - event.foodItem("betterend:shadow_berry_product", (food) => { - food.hunger(5); - food.decayModifier(2); - food.saturation(1); - food.water(5); - food.fruit(1.9); - }); - - event.foodItem("betterend:shadow_berry_cooked", (food) => { - food.hunger(5); - food.decayModifier(1); - food.saturation(2); - food.fruit(2.2); - }); - - event.foodItem("betterend:bolux_mushroom_product", (food) => { - food.hunger(2); - food.saturation(1); - food.decayModifier(3); - food.water(3); - food.vegetables(1.5); - }); - - event.foodItem("betterend:bolux_mushroom_cooked", (food) => { - food.hunger(2); - food.saturation(2); - food.decayModifier(1.5); - food.vegetables(2.4); - }); - - event.foodItem('tfg:food/raw_dino_nugget', (food) => { - food.type("dynamic"); - food.hunger(1); - food.decayModifier(3); - }); - - event.foodItem('tfg:food/cooked_dino_nugget', (food) => { - food.type("dynamic"); - food.hunger(3); - food.saturation(2); - food.decayModifier(1.5); - }); - - // misc - - event.foodItem("tfg:food/ice_soup", (food) => { - food.hunger(1); - food.water(20); - food.decayModifier(0); - }); - - event.drinkable("tfg:semiheavy_ammoniacal_water", (data) => { - data.thirst(10); - data.effect("minecraft:nausea", (effect) => { - effect.chance(0.5); - effect.duration(200); - }); - }); -} - -/** @param {Internal.TFCDataEventJS} event */ -function registerTFGCropRanges(event) { - // Earth - event.climateRange((climate) => { - climate.minHydration(20); - climate.maxHydration(80); - climate.minTemperature(5); - climate.maxTemperature(40); - climate.hydrationWiggle(7.5); - climate.temperatureWiggle(5.5); - }, "tfg:sunflower"); - - event.climateRange((climate) => { - climate.minHydration(10); - climate.maxHydration(60); - climate.minTemperature(-5); - climate.maxTemperature(25); - 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) => { - climate.minHydration(0); - climate.maxHydration(40); - climate.minTemperature(-150); - climate.maxTemperature(15); - climate.hydrationWiggle(7.5); - climate.temperatureWiggle(5.5); - }, "betterend:amber_root"); - - event.climateRange((climate) => { - climate.minHydration(70); - climate.maxHydration(100); - climate.minTemperature(-80); - climate.maxTemperature(30); - climate.hydrationWiggle(7.5); - climate.temperatureWiggle(5.5); - }, "betterend:blossom_berry"); - - event.climateRange((climate) => { - climate.minHydration(0); - climate.maxHydration(40); - climate.minTemperature(-150); - climate.maxTemperature(15); - climate.hydrationWiggle(7.5); - climate.temperatureWiggle(5.5); - }, "betterend:bolux_mushroom"); - - event.climateRange((climate) => { - climate.minHydration(0); - climate.maxHydration(60); - climate.minTemperature(-100); - climate.maxTemperature(30); - climate.hydrationWiggle(7.5); - climate.temperatureWiggle(5.5); - }, "betterend:cave_pumpkin_plant"); - - event.climateRange((climate) => { - climate.minHydration(0); - climate.maxHydration(40); - climate.minTemperature(-150); - climate.maxTemperature(15); - climate.hydrationWiggle(7.5); - climate.temperatureWiggle(5.5); - }, "betterend:chorus_mushroom"); - - event.climateRange((climate) => { - climate.minHydration(50); - climate.maxHydration(100); - climate.minTemperature(-80); - climate.maxTemperature(30); - climate.hydrationWiggle(7.5); - climate.temperatureWiggle(5.5); - }, "betterend:shadow_berry"); -} - -/** @param {Internal.TFCDataEventJS} event */ -function registerTFGFLPlanters(event) { - event.firmalifePlantable( - "tfg:sunflower_seeds", - "large", - 0, - 3, - 0.15, - "tfg:sunflower_seeds", - "tfg:sunflower_product", - "nitrogen", - [ - "tfg:block/crop/sunflower_greenhouse_0", - "tfg:block/crop/sunflower_greenhouse_1", - "tfg:block/crop/sunflower_greenhouse_2", - "tfg:block/crop/sunflower_greenhouse_3", - ], - null - ); - - event.firmalifePlantable( - "tfg:rapeseed_seeds", - "large", - 0, - 3, - 0.15, - "tfg:rapeseed_seeds", - "tfg:rapeseed_product", - "phosphorous", - [ - "tfg:block/crop/rapeseed_greenhouse_0", - "tfg:block/crop/rapeseed_greenhouse_1", - "tfg:block/crop/rapeseed_greenhouse_2", - "tfg:block/crop/rapeseed_greenhouse_3", - ], - 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", - "large", - 0, - 3, - 0.15, - "betterend:amber_root_seeds", - "betterend:amber_root_product", - "phosphorous", - [ - "betterend:block/amber_root_0", - "betterend:block/amber_root_1", - "betterend:block/amber_root_2", - "betterend:block/amber_root_3", - ], - null - ); - - event.firmalifePlantable( - "betterend:blossom_berry_seeds", - "large", - 0, - 3, - 0.15, - "betterend:blossom_berry_seeds", - "betterend:blossom_berry_product", - "potassium", - [ - "betterend:block/blossom_berry_seed_0", - "betterend:block/blossom_berry_seed_1", - "betterend:block/blossom_berry_seed_2", - "betterend:block/blossom_berry_seed_3", - ], - null - ); - - event.firmalifePlantable( - "betterend:bolux_mushroom_seeds", - "quad", - 1, - 3, - 0.15, - "betterend:bolux_mushroom_seeds", - "betterend:bolux_mushroom_product", - "phosphorous", - [ - "betterend:block/bolux_mushroom_greenhouse_0", - "betterend:block/bolux_mushroom_greenhouse_1", - "betterend:block/bolux_mushroom_greenhouse_2", - "betterend:block/bolux_mushroom_greenhouse_3", - ], - null - ); - - event.firmalifePlantable( - "betterend:chorus_mushroom_seeds", - "quad", - 1, - 3, - 0.15, - "betterend:chorus_mushroom_seeds", - "betterend:chorus_mushroom_product", - "phosphorous", - [ - "betterend:block/chorus_mushroom_0", - "betterend:block/chorus_mushroom_1", - "betterend:block/chorus_mushroom_2", - "betterend:block/chorus_mushroom_3", - ], - null - ); - - event.firmalifePlantable( - "betterend:cave_pumpkin_plant_seeds", - "hanging", - 2, - 3, - 0.15, - "betterend:cave_pumpkin_plant_seeds", - "betterend:cave_pumpkin", - "phosphorous", - [ - "betterend:block/cave_pumpkin_greenhouse_0", - "betterend:block/cave_pumpkin_greenhouse_1", - "betterend:block/cave_pumpkin_greenhouse_2", - "betterend:block/cave_pumpkin_greenhouse_3", - ], - "betterend:block/cave_pumpkin_top" - ); - - event.firmalifePlantable( - "betterend:shadow_berry_seeds", - "quad", - 1, - 3, - 0.15, - "betterend:shadow_berry_seeds", - "betterend:shadow_berry_product", - "potassium", - [ - "betterend:block/shadow_berry_greenhouse_0", - "betterend:block/shadow_berry_greenhouse_1", - "betterend:block/shadow_berry_greenhouse_2", - "betterend:block/shadow_berry_greenhouse_3", - ], - null - ); -} - - -/** @param {Internal.TFCDataEventJS} event */ -function registerTFGFauna(event) { - - // -108 is the average at z=-4k to z=-6k, which feels like a big enough band - event.fauna( - climate => { - climate.maxTemp(-108) - climate.fuzzy(false) - }, - faunaData => { - faunaData.solidGround(true) - }, - "tfg:glacian_ram") - - event.fauna( - climate => { - climate.minTemp(-102) - climate.maxTemp(-30) - climate.fuzzy(true) - }, - faunaData => { - faunaData.solidGround(true) - }, - "tfg:sniffer") - - event.fauna( - climate => { - climate.minTemp(-100) - climate.fuzzy(true) - }, - faunaData => { - faunaData.solidGround(true) - }, - "tfg:wraptor") - - event.fauna( - climate => { - climate.minTemp(-108) - climate.fuzzy(true) - }, - faunaData => { - faunaData.solidGround(true) - }, - "species:springling") - - event.fauna( - climate => { - climate.minTemp(-109) - climate.fuzzy(true) - }, - faunaData => { - faunaData.solidGround(true) - }, - "species:goober") - - event.fauna( - climate => { - climate.minTemp(-97) - climate.fuzzy(true) - }, - faunaData => { - faunaData.solidGround(true) - }, - "wan_ancient_beasts:walker") - - event.fauna( - climate => { - climate.minTemp(-109) - climate.fuzzy(true) - }, - faunaData => { - faunaData.solidGround(true) - }, - "wan_ancient_beasts:eater") - - event.fauna( - climate => { - climate.minTemp(-100) - climate.fuzzy(true) - }, - faunaData => { - faunaData.solidGround(true) - }, - "wan_ancient_beasts:crusher") - - event.fauna( - climate => { - climate.minTemp(-105) - climate.fuzzy(true) - }, - faunaData => { - faunaData.solidGround(true) - }, - "wan_ancient_beasts:soarer") - - event.fauna( - climate => { - climate.minTemp(-106) - climate.fuzzy(true) - }, - faunaData => { - faunaData.solidGround(true) - }, - "wan_ancient_beasts:glider") -} \ No newline at end of file +//#endregion \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/entities.js b/kubejs/server_scripts/tfg/entities.js deleted file mode 100644 index 88aa8fe1e..000000000 --- a/kubejs/server_scripts/tfg/entities.js +++ /dev/null @@ -1,44 +0,0 @@ -// priority: 0 -"use strict"; - -const NEW_MOB_MAX_HP = { - // moon mobs - "endermanoverhaul:end_enderman": 50 , - "endermanoverhaul:end_islands_enderman": 120, - "endermanoverhaul:windswept_hills_enderman": 70, - "endermanoverhaul:soulsand_valley_enderman": 80, - // mars mobs -- wan's ancient beasts has its own config for this - "endermanoverhaul:crimson_enderman": 60, - "endermanoverhaul:warped_enderman": 60, - "endermanoverhaul:badlands_enderman": 65, - "endermanoverhaul:cave_enderman": 60, - "ad_astra:martian_raptor": 50, - "tfg:glacian_ram": 50, - "tfg:wraptor": 60, - // sniffer uses the value in wan's ancient beasts config - "species:goober": 100, - "species:stackatick": 20, - "species:springling": 60, - "species:quake": 130, - "species:cruncher": 1200 -} - -EntityEvents.spawned((event) => { - - // Easier to just keep all entities in here for balancing instead of spreading them around - - let { entity, entity: {type} } = event; - - let newHP = NEW_MOB_MAX_HP[type] ?? 0; - if (newHP === 0) - return; - - let baseHealth = entity.maxHealth; - let missingHealth = newHP - baseHealth; - - entity.modifyAttribute("minecraft:generic.max_health", "tfg_health_buff_id", missingHealth, "addition"); - - if (missingHealth > 0) { - entity.health += missingHealth; - } -}) \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/equipment/data.equipment.js b/kubejs/server_scripts/tfg/equipment/data.equipment.js new file mode 100644 index 000000000..4263d344b --- /dev/null +++ b/kubejs/server_scripts/tfg/equipment/data.equipment.js @@ -0,0 +1,189 @@ +"use strict"; + +function registerTFGEquipmentData(event) { + + // #region Armor resistances + + event.itemDamageResistance( + 'create:copper_diving_helmet', + 2, + 2, + 2 + ) + event.itemDamageResistance( + 'create:copper_backtank', + 2, + 2, + 2 + ) + event.itemDamageResistance( + 'create:copper_diving_boots', + 2, + 2, + 2 + ) + event.itemDamageResistance( + 'create:copper_diving_helmet', + 2, + 2, + 2 + ) + event.itemDamageResistance( + 'gtceu:hazmat_headpiece', + null, + null, + 3 + ) + event.itemDamageResistance( + 'gtceu:hazmat_chestpiece', + null, + null, + 3 + ) + event.itemDamageResistance( + 'gtceu:hazmat_leggings', + null, + null, + 3 + ) + event.itemDamageResistance( + 'gtceu:hazmat_boots', + null, + null, + 3 + ) + event.itemDamageResistance( + 'create:netherite_diving_helmet', + 13, + 13, + 15 + ) + event.itemDamageResistance( + 'create:netherite_backtank', + 13, + 13, + 15 + ) + event.itemDamageResistance( + 'minecraft:netherite_leggings', + 13, + 13, + 15 + ) + event.itemDamageResistance( + 'create:netherite_diving_boots', + 13, + 13, + 15 + ) + event.itemDamageResistance( + 'gtceu:nanomuscle_helmet', + 16, + 16, + 16 + ) + event.itemDamageResistance( + 'gtceu:nanomuscle_chestplate', + 16, + 16, + 16 + ) + event.itemDamageResistance( + 'gtceu:advanced_nanomuscle_chestplate', + 16, + 16, + 16 + ) + event.itemDamageResistance( + 'gtceu:nanomuscle_leggings', + 16, + 16, + 16 + ) + event.itemDamageResistance( + 'gtceu:nanomuscle_boots', + 16, + 16, + 16 + ) + event.itemDamageResistance( + 'gtceu:quarktech_helmet', + 24, + 24, + 24 + ) + event.itemDamageResistance( + 'gtceu:quarktech_chestplate', + 24, + 24, + 24 + ) + event.itemDamageResistance( + 'gtceu:advanced_quarktech_chestplate', + 24, + 24, + 24 + ) + event.itemDamageResistance( + 'gtceu:quarktech_leggings', + 24, + 24, + 24 + ) + event.itemDamageResistance( + 'gtceu:quarktech_boots', + 24, + 24, + 24 + ) + event.itemDamageResistance( + 'ad_astra:space_helmet', + 16, + 16, + 16 + ) + event.itemDamageResistance( + 'ad_astra:space_suit', + 16, + 16, + 16 + ) + event.itemDamageResistance( + 'ad_astra:space_pants', + 16, + 16, + 16 + ) + event.itemDamageResistance( + 'ad_astra:space_boots', + 16, + 16, + 16 + ) + event.itemDamageResistance( + 'ad_astra:netherite_space_helmet', + 21, + 21, + 21 + ) + event.itemDamageResistance( + 'ad_astra:netherite_space_suit', + 21, + 21, + 21 + ) + event.itemDamageResistance( + 'ad_astra:netherite_space_pants', + 21, + 21, + 21 + ) + event.itemDamageResistance( + 'ad_astra:netherite_space_boots', + 21, + 21, + 21 + ) + + // #endregion +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/equipment/events.equipment.js b/kubejs/server_scripts/tfg/equipment/events.equipment.js new file mode 100644 index 000000000..6451241e6 --- /dev/null +++ b/kubejs/server_scripts/tfg/equipment/events.equipment.js @@ -0,0 +1,22 @@ +"use strict"; + +PlayerEvents.tick((event) => { + const { player } = event; + if (player.age % 100 === 0) { + if ((player.headArmorItem === 'create:netherite_diving_helmet' + || player.headArmorItem === 'ad_astra:netherite_space_helmet') + && (player.chestArmorItem === 'create:netherite_backtank' + || player.chestArmorItem === 'ad_astra:netherite_space_suit') + && (player.legsArmorItem === 'minecraft:netherite_leggings' + || player.legsArmorItem === 'ad_astra:netherite_space_pants') + && (player.feetArmorItem === 'create:netherite_diving_boots' + || player.feetArmorItem === 'minecraft:netherite_boots' + || player.feetArmorItem === 'ad_astra:netherite_space_boots')) { + player.potionEffects.add("minecraft:fire_resistance", 350, 0, true, false); + } + + if (player.legsArmorItem === 'gtceu:nanomuscle_leggings') { + player.potionEffects.add("minecraft:speed", 350, 0, true, false); + } + } +}); diff --git a/kubejs/server_scripts/tfg/equipment/recipes.equipment.js b/kubejs/server_scripts/tfg/equipment/recipes.equipment.js new file mode 100644 index 000000000..83c54f8d4 --- /dev/null +++ b/kubejs/server_scripts/tfg/equipment/recipes.equipment.js @@ -0,0 +1,54 @@ +"use strict"; + +function registerTFGEquipmentRecipes(event) { + // #region Primitive protection + + event.recipes.tfc.barrel_sealed(2000) + .outputItem('tfg:prepared_leather_gloves') + .inputs('tfchotornot:mittens', Fluid.of('tfc:vinegar', 1000)) + .id('tfg:sealed_barrel/prepared_leather_gloves') + + event.recipes.firmalife.vat() + .outputItem('tfg:latex_soaked_gloves') + .inputs('tfg:prepared_leather_gloves', Fluid.of('tfg:vulcanized_latex', 1000)) + .length(300) + .temperature(200) + .id('tfg:vat/latex_soaked_gloves') + + event.recipes.firmalife.oven('tfg:latex_soaked_gloves', 120, 1200, 'gtceu:rubber_gloves') + .id('tfg:oven/rubber_gloves') + + event.remove({ id: 'gtceu:shaped/rubber_gloves' }) + + event.recipes.gtceu.alloy_smelter('rubber_gloves_alloy_smelter') + .itemInputs('2x #forge:plates/rubber') + .notConsumable('create:brass_hand') + .itemOutputs('gtceu:rubber_gloves') + .duration(200) + .EUt(GTValues.VA[GTValues.ULV]) + .category(GTRecipeCategories.INGOT_MOLDING) + + + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('gtceu:face_mask', [ + 'ACA', + 'ABA', + ' D ' + ], { + A: '#forge:string', + B: '#forge:cloth', + C: 'minecraft:paper', + D: '#tfc:sewing_needles' + }) + ).id('gtceu:shaped/face_mask') + + event.recipes.gtceu.assembler('assemble_face_mask') + .itemInputs('4x #forge:string', '#forge:cloth', 'minecraft:paper') + .itemOutputs('gtceu:face_mask') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + .circuit(7) + + // #endregion + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/equipment/tags.equipment.js b/kubejs/server_scripts/tfg/equipment/tags.equipment.js new file mode 100644 index 000000000..b0d28afdc --- /dev/null +++ b/kubejs/server_scripts/tfg/equipment/tags.equipment.js @@ -0,0 +1,52 @@ +"use strict"; + +function registerTFGEquipmentItemTags(event) { + + event.add('minecraft:trimmable_armor', 'create:copper_diving_helmet') + event.add('minecraft:trimmable_armor', 'create:copper_diving_boots') + event.add('minecraft:trimmable_armor', 'create:netherite_diving_helmet') + event.add('minecraft:trimmable_armor', 'create:netherite_diving_boots') + event.add('minecraft:trimmable_armor', 'tfcambiental:wool_hat') + event.add('minecraft:trimmable_armor', 'tfcambiental:wool_sweater') + event.add('minecraft:trimmable_armor', 'tfcambiental:wool_pants') + event.add('minecraft:trimmable_armor', 'tfcambiental:wool_boots') + event.add('minecraft:trimmable_armor', 'tfcambiental:silk_cowl') + event.add('minecraft:trimmable_armor', 'tfcambiental:silk_shirt') + event.add('minecraft:trimmable_armor', 'tfcambiental:silk_pants') + event.add('minecraft:trimmable_armor', 'tfcambiental:silk_shoes') + event.add('minecraft:trimmable_armor', 'tfcambiental:burlap_cowl') + event.add('minecraft:trimmable_armor', 'tfcambiental:burlap_shirt') + event.add('minecraft:trimmable_armor', 'tfcambiental:burlap_pants') + event.add('minecraft:trimmable_armor', 'tfcambiental:burlap_shoes') + event.add('minecraft:trimmable_armor', 'tfcambiental:insulated_leather_hat') + event.add('minecraft:trimmable_armor', 'tfcambiental:insulated_leather_tunic') + event.add('minecraft:trimmable_armor', 'tfcambiental:insulated_leather_pants') + event.add('minecraft:trimmable_armor', 'tfcambiental:insulated_leather_boots') + event.add('minecraft:trimmable_armor', '#firmalife:beekeeper_armor') + + global.GTCEU_ARMORS.forEach((item) => { + event.add("minecraft:trimmable_armor", item); + }); + + event.add('gtceu:ppe_armor', '#ad_astra:space_suit_items') + event.add('minecraft:trimmable_armor', '#ad_astra:space_suit_items') + + 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') + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/europa/tags.europa.js b/kubejs/server_scripts/tfg/europa/tags.europa.js new file mode 100644 index 000000000..de5cfc9a7 --- /dev/null +++ b/kubejs/server_scripts/tfg/europa/tags.europa.js @@ -0,0 +1,22 @@ +"use strict"; + +function registerTFGEuropaEntityTypeTags(event) { + const ENTITIES = [ + 'endermanoverhaul:coral_enderman', + 'endermanoverhaul:snowy_enderman', + 'endermanoverhaul:ice_spikes_enderman', + 'species:deepfish', + 'species:leaf_hanger' + ] + + ENTITIES.forEach(entity => { + event.add('ad_astra:can_survive_extreme_cold', entity) + event.add('ad_astra:lives_without_oxygen', entity) + }) +} + +function registerTFGEuropaPlacedFeatures(event) { + + event.add("tfg:glacio_top_layer_modification", "tfg:glow_lichen") + event.add("tfg:glacio_top_layer_modification", "tfc:surface_loose_rocks") +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/events.interactions.js b/kubejs/server_scripts/tfg/events.interactions.js new file mode 100644 index 000000000..963d0160d --- /dev/null +++ b/kubejs/server_scripts/tfg/events.interactions.js @@ -0,0 +1,522 @@ + +/** + * @typedef {Object} BrickVariant + * @property {string} brick_type - The name of the brick variant. + * @property {string|null} brick - Main brick block ID. + * @property {string|null} brick_stairs - Brick stairs block ID. + * @property {string|null} brick_slab - Brick slab block ID. + * @property {string|null} brick_wall - Brick wall block ID. + * @property {string|null} cracked_brick - Cracked brick block ID. + * @property {string|null} cracked_stairs - Cracked brick stairs block ID. + * @property {string|null} cracked_slab - Cracked brick slab block ID. + * @property {string|null} cracked_wall - Cracked brick wall block ID. + * @property {string|null} mossy_brick - Mossy brick block ID. + * @property {string|null} mossy_stairs - Mossy brick stairs block ID. + * @property {string|null} mossy_slab - Mossy brick slab block ID. + * @property {string|null} mossy_wall - Mossy brick wall block ID. + * @property {string|null} smooth_brick - Smooth brick block ID. + * @property {string|null} smooth_stairs - Smooth brick stairs block ID. + * @property {string|null} smooth_slab - Smooth brick slab block ID. + * @property {string|null} smooth_wall - Smooth brick wall block ID. + * @property {string|null} chiseled_brick - Chiseled brick block ID. + */ + +const AA_REGULAR_STONES = ['moon', 'mars', 'venus', 'mercury', 'glacio'] + +// #region BRICK_INDEX +/** @type {BrickVariant[]} */ +global.BRICK_INDEX = (global.TFC_STONE_TYPES ? global.TFC_STONE_TYPES : []).map(tfc_stone => ({ + brick_type: tfc_stone, + brick: `tfc:rock/bricks/${tfc_stone}`, brick_stairs: `tfc:rock/bricks/${tfc_stone}_stairs`, brick_slab: `tfc:rock/bricks/${tfc_stone}_slab`, brick_wall: `tfc:rock/bricks/${tfc_stone}_wall`, + cracked_brick: `tfc:rock/cracked_bricks/${tfc_stone}`, cracked_stairs: `tfc:rock/cracked_bricks/${tfc_stone}_stairs`, cracked_slab: `tfc:rock/cracked_bricks/${tfc_stone}_slab`, cracked_wall: `tfc:rock/cracked_bricks/${tfc_stone}_wall`, + mossy_brick: `tfc:rock/mossy_bricks/${tfc_stone}`, mossy_stairs: `tfc:rock/mossy_bricks/${tfc_stone}_stairs`, mossy_slab: `tfc:rock/mossy_bricks/${tfc_stone}_slab`, mossy_wall: `tfc:rock/mossy_bricks/${tfc_stone}_wall`, + smooth_brick: `tfc:rock/smooth/${tfc_stone}`, smooth_stairs: `tfc:rock/smooth/${tfc_stone}_stairs`, smooth_slab: `tfc:rock/smooth/${tfc_stone}_slab`, smooth_wall: `tfc:rock/smooth/${tfc_stone}_wall`, + chiseled_brick: `tfc:rock/chiseled/${tfc_stone}` +})); +(global.CREATE_DECO_BRICK_TYPES ? global.CREATE_DECO_BRICK_TYPES : []).slice(0, -1).forEach(create_brick => { + global.BRICK_INDEX.push({ + brick_type: create_brick, + brick: `createdeco:${create_brick}_bricks`, brick_stairs: `createdeco:${create_brick}_brick_stairs`, brick_slab: `createdeco:${create_brick}_brick_slab`, brick_wall: `createdeco:${create_brick}_brick_wall`, + cracked_brick: `createdeco:cracked_${create_brick}_bricks`, cracked_stairs: `createdeco:cracked_${create_brick}_brick_stairs`, cracked_slab: `createdeco:cracked_${create_brick}_brick_slab`, cracked_wall: `createdeco:cracked_${create_brick}_brick_wall`, + mossy_brick: `createdeco:mossy_${create_brick}_bricks`, mossy_stairs: `createdeco:mossy_${create_brick}_brick_stairs`, mossy_slab: `createdeco:mossy_${create_brick}_brick_slab`, mossy_wall: `createdeco:mossy_${create_brick}_brick_wall`, + smooth_brick: `createdeco:corner_${create_brick}_bricks`, smooth_stairs: `createdeco:corner_${create_brick}_brick_stairs`, smooth_slab: `createdeco:corner_${create_brick}_brick_slab`, smooth_wall: `createdeco:corner_${create_brick}_brick_wall`, + chiseled_brick: `createdeco:tiled_${create_brick}_bricks` + }) +}); +global.BRICK_INDEX = global.BRICK_INDEX.concat([ + // { brick_type: '', + // brick: '', brick_stairs: '', brick_slab: '', brick_wall: '', + // cracked_brick: '', cracked_stairs: '', cracked_slab: '', cracked_wall: '', + // mossy_brick: '', mossy_stairs: '', mossy_slab: '', mossy_wallL: '', + // smooth_brick: '', smooth_stairs: '', smooth_slab: '', smooth_wall: '', + // chiseled_brick: '' }, + + { + brick_type: 'red', + brick: 'minecraft:bricks', brick_stairs: 'minecraft:brick_stairs', brick_slab: 'minecraft:brick_slab', brick_wall: 'minecraft:brick_wall', + cracked_brick: 'createdeco:cracked_red_bricks', cracked_stairs: 'createdeco:cracked_red_brick_stairs', cracked_slab: 'createdeco:cracked_red_brick_slab', cracked_wall: 'createdeco:cracked_red_brick_wall', + mossy_brick: 'createdeco:mossy_red_bricks', mossy_stairs: 'createdeco:mossy_red_brick_stairs', mossy_slab: 'createdeco:mossy_red_brick_slab', mossy_wall: 'createdeco:mossy_red_brick_wall', + smooth_brick: 'createdeco:corner_red_bricks', smooth_stairs: 'createdeco:corner_red_brick_stairs', smooth_slab: 'createdeco:corner_red_brick_slab', smooth_wall: 'createdeco:corner_red_brick_wall', + chiseled_brick: 'createdeco:tiled_red_bricks' + }, + + { + brick_type: 'light_concrete', + brick: 'gtceu:light_concrete_bricks', brick_stairs: null, brick_slab: null, brick_wall: null, + cracked_brick: 'gtceu:cracked_light_concrete_bricks', cracked_stairs: null, cracked_slab: null, cracked_wall: null, + mossy_brick: 'gtceu:mossy_light_concrete_bricks', mossy_stairs: null, mossy_slab: null, mossy_wall: null, + smooth_brick: 'gtceu:polished_light_concrete', smooth_stairs: null, smooth_slab: null, smooth_wall: null, + chiseled_brick: 'gtceu:chiseled_light_concrete' + }, + + { + brick_type: 'dark_concrete', + brick: 'gtceu:dark_concrete_bricks', brick_stairs: null, brick_slab: null, brick_wall: null, + cracked_brick: 'gtceu:cracked_dark_concrete_bricks', cracked_stairs: null, cracked_slab: null, cracked_wall: null, + mossy_brick: 'gtceu:mossy_dark_concrete_bricks', mossy_stairs: null, mossy_slab: null, mossy_wall: null, + smooth_brick: 'gtceu:polished_dark_concrete', smooth_stairs: null, smooth_slab: null, smooth_wall: null, + chiseled_brick: 'gtceu:chiseled_dark_concrete' + }, + + { + brick_type: 'deepslate', + brick: 'minecraft:deepslate_bricks', brick_stairs: 'minecraft:deepslate_brick_stairs', brick_slab: 'minecraft:deepslate_brick_slab', brick_wall: 'minecraft:deepslate_brick_wall', + cracked_brick: 'minecraft:cracked_deepslate_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_deepslate_stairs', cracked_slab: 'tfg:rock/cracked_bricks_deepslate_slab', cracked_wall: 'tfg:rock/cracked_bricks_deepslate_wall', + mossy_brick: 'tfg:rock/mossy_bricks_deepslate', mossy_stairs: 'tfg:rock/mossy_bricks_deepslate_stairs', mossy_slab: 'tfg:rock/mossy_bricks_deepslate_slab', mossy_wall: 'tfg:rock/mossy_bricks_deepslate_wall', + smooth_brick: 'minecraft:polished_deepslate', smooth_stairs: 'minecraft:polished_deepslate_stairs', smooth_slab: 'minecraft:polished_deepslate_slab', smooth_wall: 'minecraft:polished_deepslate_wall', + chiseled_brick: 'minecraft:chiseled_deepslate' + }, + + { + brick_type: 'deepslate_tiles', + brick: 'minecraft:deepslate_tiles', brick_stairs: 'minecraft:deepslate_tile_stairs', brick_slab: 'minecraft:deepslate_tile_slab', brick_wall: 'minecraft:deepslate_tile_wall', + cracked_brick: 'minecraft:cracked_deepslate_tiles', cracked_stairs: 'tfg:rock/cracked_tiles_deepslate_stairs', cracked_slab: 'tfg:rock/cracked_tiles_deepslate_slab', cracked_wall: 'tfg:rock/cracked_tiles_deepslate_wall', + mossy_brick: null, mossy_stairs: null, mossy_slab: null, mossy_wall: null, + smooth_brick: 'minecraft:polished_deepslate', smooth_stairs: 'minecraft:polished_deepslate_stairs', smooth_slab: 'minecraft:polished_deepslate_slab', smooth_wall: 'minecraft:polished_deepslate_wall', + chiseled_brick: 'minecraft:chiseled_deepslate' + }, + + { + brick_type: 'blackstone', + brick: 'minecraft:polished_blackstone_bricks', brick_stairs: 'minecraft:polished_blackstone_brick_stairs', brick_slab: 'minecraft:polished_blackstone_brick_slab', brick_wall: 'minecraft:polished_blackstone_brick_wall', + cracked_brick: 'minecraft:cracked_polished_blackstone_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_blackstone_stairs', cracked_slab: 'tfg:rock/cracked_bricks_blackstone_slab', cracked_wall: 'tfg:rock/cracked_bricks_blackstone_wall', + mossy_brick: 'tfg:rock/mossy_bricks_blackstone', mossy_stairs: 'tfg:rock/mossy_bricks_blackstone_stairs', mossy_slab: 'tfg:rock/mossy_bricks_blackstone_slab', mossy_wall: 'tfg:rock/mossy_bricks_blackstone_wall', + smooth_brick: 'minecraft:polished_blackstone', smooth_stairs: 'minecraft:polished_blackstone_stairs', smooth_slab: 'minecraft:polished_blackstone_slab', smooth_wall: 'minecraft:polished_blackstone_wall', + chiseled_brick: 'minecraft:chiseled_polished_blackstone' + }, + + { + brick_type: 'dripstone', + brick: 'create:cut_dripstone_bricks', brick_stairs: 'create:cut_dripstone_brick_stairs', brick_slab: 'create:cut_dripstone_brick_slab', brick_wall: 'create:cut_dripstone_brick_wall', + cracked_brick: 'tfg:rock/cracked_bricks_dripstone', cracked_stairs: 'tfg:rock/cracked_bricks_dripstone_stairs', cracked_slab: 'tfg:rock/cracked_bricks_dripstone_slab', cracked_wall: 'tfg:rock/cracked_bricks_dripstone_wall', + mossy_brick: 'tfg:rock/mossy_bricks_dripstone', mossy_stairs: 'tfg:rock/mossy_bricks_dripstone_stairs', mossy_slab: 'tfg:rock/mossy_bricks_dripstone_slab', mossy_wall: 'tfg:rock/mossy_bricks_dripstone_wall', + smooth_brick: 'create:polished_cut_dripstone', smooth_stairs: 'create:polished_cut_dripstone_stairs', smooth_slab: 'create:polished_cut_dripstone_slab', smooth_wall: 'create:polished_cut_dripstone_wall', + chiseled_brick: 'create:small_dripstone_bricks' + }, + + { + brick_type: 'crackrack', + brick: 'minecraft:nether_bricks', brick_stairs: 'minecraft:nether_bricks_stairs', brick_slab: 'minecraft:nether_bricks_slab', brick_wall: 'minecraft:nether_bricks_wall', + cracked_brick: 'minecraft:cracked_nether_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_nether_stairs', cracked_slab: 'tfg:rock/cracked_bricks_nether_slab', cracked_wall: 'tfg:rock/cracked_bricks_nether_wall', + mossy_brick: 'tfg:rock/mossy_bricks_nether', mossy_stairs: 'tfg:rock/mossy_bricks_nether_stairs', mossy_slab: 'tfg:rock/mossy_bricks_nether_slab', mossy_wall: 'tfg:rock/mossy_bricks_nether_wall', + smooth_brick: 'tfg:rock/polished_crackrack', smooth_stairs: 'tfg:rock/polished_crackrack_stairs', smooth_slab: 'tfg:rock/polished_crackrack_slab', smooth_wall: 'tfg:rock/polished_crackrack_wall', + chiseled_brick: 'minecraft:chiseled_nether_bricks' + }, + + { + brick_type: 'moon_deepslate', + brick: 'tfg:rock/bricks_moon_deepslate', brick_stairs: 'tfg:rock/bricks_moon_deepslate_stairs', brick_slab: 'tfg:rock/bricks_moon_deepslate_slab', brick_wall: 'tfg:rock/bricks_moon_deepslate_wall', + cracked_brick: 'tfg:rock/cracked_bricks_moon_deepslate', cracked_stairs: 'tfg:rock/cracked_bricks_moon_deepslate_stairs', cracked_slab: 'tfg:rock/cracked_bricks_moon_slab', cracked_wall: 'tfg:rock/cracked_bricks_moon_wall', + mossy_brick: 'tfg:rock/mossy_bricks_moon_deepslate', mossy_stairs: 'tfg:rock/mossy_bricks_moon_deepslate_stairs', mossy_slab: 'tfg:rock/mossy_bricks_moon_slab', mossy_wall: 'tfg:rock/mossy_bricks_moon_deepslate_wall', + smooth_brick: 'tfg:rock/polished_moon_deepslate', smooth_stairs: 'tfg:rock/polished_moon_deepslate_stairs', smooth_slab: 'ad_astra:polished_moon_stone_slab', smooth_wall: 'tfg:rock/polished_moon_deepslate_wall', + chiseled_brick: 'tfg:rock/chiseled_bricks_moon_deepslate' + }, + + { + brick_type: 'permafrost', + brick: 'ad_astra:permafrost_bricks', brick_stairs: 'ad_astra:permafrost_brick_stairs', brick_slab: 'ad_astra:permafrost_brick_slab', brick_wall: 'ad_astra:permafrost_brick_wall', + cracked_brick: 'ad_astra:cracked_permafrost_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_permafrost_stairs', cracked_slab: 'tfg:rock/cracked_bricks_permafrost_slab', cracked_wall: 'tfg:rock/cracked_bricks_permafrost_wall', + mossy_brick: 'tfg:rock/mossy_bricks_permafrost', mossy_stairs: 'tfg:rock/mossy_bricks_permafrost_stairs', mossy_slab: 'tfg:rock/mossy_bricks_permafrost_slab', mossy_wall: 'tfg:rock/mossy_bricks_permafrost_wall', + smooth_brick: 'ad_astra:polished_permafrost', smooth_stairs: 'ad_astra:polished_permafrost_stairs', smooth_slab: 'ad_astra:polished_permafrost_slab', smooth_wall: 'tfg:rock/polished_permafrost_wall', + chiseled_brick: 'ad_astra:chiseled_permafrost_bricks' + }, + + { + brick_type: 'red_granite', + brick: 'gtceu:red_granite_bricks', brick_stairs: 'tfg:rock/bricks_red_granite_stairs', brick_slab: 'tfg:rock/bricks_red_granite_slab', brick_wall: 'tfg:rock/bricks_red_granite_wall', + cracked_brick: 'gtceu:cracked_red_granite_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_red_granite_stairs', cracked_slab: 'tfg:rock/cracked_bricks_red_granite_slab', cracked_wall: 'tfg:rock/cracked_bricks_red_granite_wall', + mossy_brick: 'gtceu:mossy_red_granite_bricks', mossy_stairs: 'tfg:rock/mossy_bricks_red_granite_stairs', mossy_slab: 'tfg:rock/mossy_bricks_red_granite_slab', mossy_wall: 'tfg:rock/mossy_bricks_red_granite_wall', + smooth_brick: 'gtceu:polished_red_granite', smooth_stairs: 'tfg:rock/polished_red_granite_stairs', smooth_slab: 'tfg:rock/polished_red_granite_slab', smooth_wall: 'tfg:rock/polished_red_granite_wall', + chiseled_brick: 'gtceu:chiseled_red_granite' + }, + + { + brick_type: 'venus_sandstone', + brick: 'ad_astra:venus_sandstone_bricks', brick_stairs: 'ad_astra:venus_sandstone_brick_stairs', brick_slab: 'ad_astra:venus_sandstone_brick_slab', brick_wall: 'tfg:rock/bricks_venus_sandstone_wall', + cracked_brick: 'ad_astra:cracked_venus_sandstone_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_venus_sandstone_stairs', cracked_slab: 'tfg:rock/cracked_bricks_venus_sandstone_slab', cracked_wall: 'tfg:rock/cracked_bricks_stone_wall', + mossy_brick: null, mossy_stairs: null, mossy_slab: null, mossy_wall: null, + smooth_brick: null, smooth_stairs: null, smooth_slab: null, smooth_wall: null, + chiseled_brick: null + }, + + { + brick_type: 'stone', + brick: 'minecraft:stone_bricks', brick_stairs: 'minecraft:stone_brick_stairs', brick_slab: 'minecraft:stone_brick_slab', brick_wall: 'minecraft:stone_brick_wall', + cracked_brick: 'minecraft:cracked_stone_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_stone_stairs', cracked_slab: 'tfg:rock/cracked_bricks_stone_slab', cracked_wall: 'tfg:rock/cracked_bricks_stone_wall', + mossy_brick: 'minecraft:mossy_stone_bricks', mossy_stairs: 'minecraft:mossy_stone_brick_stairs', mossy_slab: 'minecraft:mossy_stone_brick_slab', mossy_wall: 'minecraft:mossy_stone_brick_wall', + smooth_brick: 'minecraft:smooth_stone', smooth_stairs: 'tfg:rock/smooth_stone_stairs', smooth_slab: 'minecraft:smooth_stone_slab', smooth_wall: 'tfg:rock/smooth_stone_wall', + chiseled_brick: 'minecraft:chiseled_stone_bricks' + } +]); + +global.BRICK_INDEX = global.BRICK_INDEX.concat((AA_REGULAR_STONES ? AA_REGULAR_STONES : []).map(stone => ( + { + brick_type: stone, + brick: `ad_astra:${stone}_stone_bricks`, brick_stairs: `ad_astra:${stone}_stone_brick_stairs`, brick_slab: `ad_astra:${stone}_stone_brick_slab`, brick_wall: `ad_astra:${stone}_stone_brick_wall`, + cracked_brick: `ad_astra:cracked_${stone}_stone_bricks`, cracked_stairs: `tfg:rock/cracked_bricks_${stone}_stairs`, cracked_slab: `tfg:rock/cracked_bricks_${stone}_slab`, cracked_wall: `tfg:rock/cracked_bricks_${stone}_wall`, + mossy_brick: `tfg:rock/mossy_bricks_${stone}`, mossy_stairs: `tfg:rock/mossy_bricks_${stone}_stairs`, mossy_slab: `tfg:rock/mossy_bricks_${stone}_slab`, mossy_wall: `tfg:rock/mossy_bricks_${stone}_wall`, + smooth_brick: `ad_astra:polished_${stone}_stone`, smooth_stairs: `ad_astra:polished_${stone}_stone_stairs`, smooth_slab: `ad_astra:polished_${stone}_stone_slab`, smooth_wall: `tfg:rock/polished_${stone}_wall`, + chiseled_brick: `ad_astra:chiseled_${stone}_stone_bricks` + } +))) + +// #endregion BRICK_INDEX + +// #region COBBLE_INDEX +global.COBBLE_INDEX = (global.TFC_STONE_TYPES ? global.TFC_STONE_TYPES : []).map(tfc_stone => ({ + cobble_type: tfc_stone, + block: `tfc:rock/cobble/${tfc_stone}`, stairs: `tfc:rock/cobble/${tfc_stone}_stairs`, slab: `tfc:rock/cobble/${tfc_stone}_slab`, wall: `tfc:rock/cobble/${tfc_stone}_wall`, + mossy_block: `tfc:rock/mossy_cobble/${tfc_stone}`, mossy_stairs: `tfc:rock/mossy_cobble/${tfc_stone}_stairs`, mossy_slab: `tfc:rock/mossy_cobble/${tfc_stone}_slab`, mossy_wall: `tfc:rock/mossy_cobble/${tfc_stone}_wall` +})); + +global.COBBLE_INDEX = global.COBBLE_INDEX.concat([ + { + cobble_type: 'deepslate', + block: 'minecraft:cobbled_deepslate', stairs: 'minecraft:cobbled_deepslate_stairs', slab: 'minecraft:cobbled_deepslate_slab', wall: 'minecraft:cobbled_deepslate_wall', + mossy_block: 'tfg:rock/mossy_cobble_deepslate', mossy_stairs: 'tfg:rock/mossy_cobble_deepslate_stairs', mossy_slab: 'tfg:rock/mossy_cobble_deepslate_slab', mossy_wall: 'tfg:rock/mossy_cobble_deepslate_wall' + }, + + { + cobble_type: 'blackstone', + block: 'tfg:rock/cobble_blackstone', stairs: 'tfg:rock/cobble_blackstone_stairs', slab: 'tfg:rock/cobble_blackstone_slab', wall: 'tfg:rock/cobble_blackstone_wall', + mossy_block: 'tfg:rock/mossy_cobble_blackstone', mossy_stairs: 'tfg:rock/mossy_cobble_blackstone_stairs', mossy_slab: 'tfg:rock/mossy_cobble_blackstone_slab', mossy_wall: 'tfg:rock/mossy_cobble_blackstone_wall' + }, + + { + cobble_type: 'dripstone', + block: 'tfg:rock/cobble_dripstone', stairs: 'tfg:rock/cobble_dripstone_stairs', slab: 'tfg:rock/cobble_dripstone_slab', wall: 'tfg:rock/cobble_dripstone_wall', + mossy_block: 'tfg:rock/mossy_cobble_dripstone', mossy_stairs: 'tfg:rock/mossy_cobble_dripstone_stairs', mossy_slab: 'tfg:rock/mossy_cobble_dripstone_slab', mossy_wall: 'tfg:rock/mossy_cobble_dripstone_wall' + }, + + { + cobble_type: 'crackrack', + block: 'tfg:rock/cobble_crackrack', stairs: 'tfg:rock/cobble_crackrack_stairs', slab: 'tfg:rock/cobble_crackrack_slab', wall: 'tfg:rock/cobble_crackrack_wall', + mossy_block: 'tfg:rock/mossy_cobble_crackrack', mossy_stairs: 'tfg:rock/mossy_cobble_crackrack_stairs', mossy_slab: 'tfg:rock/mossy_cobble_crackrack_slab', mossy_wall: 'tfg:rock/mossy_cobble_crackrack_wall' + }, + + { + cobble_type: 'moon_deepslate', + block: 'tfg:rock/cobble_moon_deepslate', stairs: 'tfg:rock/cobble_moon_deepslate_stairs', slab: 'tfg:rock/cobble_moon_deepslate_slab', wall: 'tfg:rock/cobble_moon_deepslate_wall', + mossy_block: 'tfg:rock/mossy_cobble_moon_deepslate', mossy_stairs: 'tfg:rock/mossy_cobble_moon_deepslate_stairs', mossy_slab: 'tfg:rock/mossy_cobble_moon_deepslate_slab', mossy_wall: 'tfg:rock/mossy_cobble_moon_deepslate_wall' + }, + + { + cobble_type: 'permafrost', + block: 'tfg:rock/cobble_permafrost', stairs: 'tfg:rock/cobble_permafrost_stairs', slab: 'tfg:rock/cobble_permafrost_slab', wall: 'tfg:rock/cobble_permafrost_wall', + mossy_block: 'tfg:rock/mossy_cobble_permafrost', mossy_stairs: 'tfg:rock/mossy_cobble_permafrost_stairs', mossy_slab: 'tfg:rock/mossy_cobble_permafrost_slab', mossy_wall: 'tfg:rock/mossy_cobble_permafrost_wall' + }, + + { + cobble_type: 'red_granite', + block: 'gtceu:red_granite_cobblestone', stairs: 'tfg:rock/cobble_red_granite_stairs', slab: 'tfg:rock/cobble_red_granite_slab', wall: 'tfg:rock/cobble_red_granite_wall', + mossy_block: 'gtceu:mossy_red_granite_cobblestone', mossy_stairs: 'tfg:rock/mossy_cobble_red_granite_stairs', mossy_slab: 'tfg:rock/mossy_cobble_red_granite_slab', mossy_wall: 'tfg:rock/mossy_cobble_red_granite_wall' + }, + + { + cobble_type: 'stone', + block: 'minecraft:cobblestone', stairs: 'minecraft:cobblestone_stairs', slab: 'minecraft:cobblestone_slab', wall: 'minecraft:cobblestone_wall', + mossy_block: 'minecraft:mossy_cobblestone', mossy_stairs: 'minecraft:mossy_cobblestone_stairs', mossy_slab: 'minecraft:mossy_cobblestone_slab', mossy_wall: 'minecraft:mossy_cobblestone_wall' + } +]); + +global.COBBLE_INDEX = global.COBBLE_INDEX.concat((AA_REGULAR_STONES ? AA_REGULAR_STONES : []).map(stone => ( + { + cobble_type: stone, + block: `ad_astra:${stone}_cobblestone`, stairs: `ad_astra:${stone}_cobblestone_stairs`, slab: `ad_astra:${stone}_cobblestone_slab`, wall: `tfg:rock/cobble_${stone}_wall`, + mossy_block: `tfg:rock/mossy_cobble_${stone}`, mossy_stairs: `tfg:rock/mossy_cobble_${stone}_stairs`, mossy_slab: `tfg:rock/mossy_cobble_${stone}_slab`, mossy_wall: `tfg:rock/mossy_cobble_${stone}_wall` + } +))) + +// #endregion COBBLE_INDEX + +/** + * Function for replacing a block with another block by crouch-right-clicking with a tool. + * + * If input and output is null recipe will just return. + * + * @param {*} event + * @param {string} inputBlock -Block ID to be replaced. Accepts a Tag, but not recommended. + * @param {string} outputBlock -Block ID of the replacement. + * @param {string} toolId -Item ID of the tool. + * @param {boolean} damageTool -Sets wether the tool should be damaged on use. + * @param {string} soundId -Sound ID to be used as the flair sound effect. Can be null. + * @param {string} particleId -SimpleParticleType ID to be used as the flair particle. Can be null. + * @param {boolean} copyBlockstate - Sets wether the blockstate should be copied from the input block to the output block. + */ +function transformBlockWithTool(event, inputBlock, outputBlock, toolId, damageTool, soundId, particleId, copyBlockstate) { + const { server, item, player, block } = event; + + if (!inputBlock || !outputBlock) return; + + if (inputBlock.startsWith('#')) { + if (!block.hasTag(inputBlock.substring(1))) return; + } else { + if (block.id.toString() !== inputBlock) return; + } + + if (toolId.startsWith('#')) { + if (item.isEmpty() || !player.mainHandItem.hasTag(toolId.substring(1))) return; + } else { + if (item.isEmpty() || player.mainHandItem.id !== toolId) return; + } + + if (!player.crouching) return; + + let state = block.getBlockState().toString(); + if (state.includes('[') && copyBlockstate === true) { + state = state.substring(state.indexOf('[')); + } else { + state = ''; + } + + if (soundId) { + server.runCommandSilent(`playsound ${soundId} player ${player.username} ${player.x} ${player.y} ${player.z} 1 2 1`) + } + if (particleId) { + server.runCommandSilent(`particle ${particleId} ${block.x} ${block.y + 0.8} ${block.z} 0.1 0.1 0.1 0.6 10`) + } + player.swing(); + + if (!player.isCreative() && damageTool) { + item.damageValue++; + if (item.damageValue >= item.maxDamage) { + server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`); + item.count--; + } + } + + const dim = block.level.name.getString(); + server.runCommandSilent(`execute in ${dim} run fill ${block.x} ${block.y} ${block.z} ${block.x} ${block.y} ${block.z} air`); + server.runCommandSilent(`execute in ${dim} run setblock ${block.x} ${block.y} ${block.z} ${outputBlock}${state}`); +}; + +/** + * Function for replacing a block with another block by crouch-right-clicking with a tool and receiving an item. + * + * If input and output is null recipe will just return. + * + * @param {*} event + * @param {string} inputBlock -Block ID to be replaced. Accepts a Tag, but not recommended. + * @param {string} outputBlock -Block ID of the replacement. + * @param {string} outputItem -Item ID of item to receive + * @param {number} outputCount -Number of items to be returned + * @param {string} toolId -Item ID of the tool. + * @param {boolean} damageTool -Sets wether the tool should be damaged on use. + * @param {string} soundId -Sound ID to be used as the flair sound effect. Can be null. + * @param {string} particleId -SimpleParticleType ID to be used as the flair particle. Can be null. + * @param {boolean} copyBlockstate - Sets wether the blockstate should be copied from the input block to the output block. + */ +function transformBlockWithToolReturn(event, inputBlock, outputBlock, outputItem, outputCount, toolId, damageTool, soundId, particleId, copyBlockstate) { + const { server, item, player, block } = event; + + if (!inputBlock || !outputBlock) return; + + if (inputBlock.startsWith('#')) { + if (!block.hasTag(inputBlock.substring(1))) return; + } else { + if (block.id.toString() !== inputBlock) return; + } + if (!player.crouching) return; + + if (toolId.startsWith('#')) { + if (item.isEmpty() || !player.mainHandItem.hasTag(toolId.substring(1))) return; + } else { + if (item.isEmpty() || player.mainHandItem.id !== toolId) return; + } + + transformBlockWithTool(event, inputBlock, outputBlock, toolId, damageTool, soundId, particleId, copyBlockstate) + + const dim = block.level.name.getString(); + server.runCommandSilent(`execute in ${dim} run summon item ${player.x} ${player.y} ${player.z} {Item:{id:'${outputItem}', Count:${outputCount}b}}`); + +} +/** + * Function for replacing a block with another block by crouch-right-clicking with an item. + * + * If input and output is null recipe will just return. + * + * @param {*} event + * @param {string} inputBlock -Block ID to be replaced. Accepts a Tag, but not recommended. + * @param {string} outputBlock -Block ID of the replacement. + * @param {string} itemId -Item ID of the consumed item. Accepts Tags. + * @param {boolean} consumeItem -Sets wether the item should be comsumed or not. + * @param {number} consumeAmount -Number of items to consume, can't be greater than stacksize. + * @param {string} soundId -Sound ID to be used as the flair sound effect. Can be null. + * @param {string} particleId -SimpleParticleType ID to be used as the flair particle. Can be null. + * @param {boolean} copyBlockstate - Sets wether the blockstate should be copied from the input block to the output block. + */ +function transformBlockWithItem(event, inputBlock, outputBlock, itemId, consumeItem, consumeAmount, soundId, particleId, copyBlockstate) { + const { server, item, player, block } = event; + + if (!inputBlock || !outputBlock) return; + + if (inputBlock.startsWith('#')) { + if (!block.hasTag(inputBlock.substring(1))) return; + } else { + if (block.id.toString() !== inputBlock) return; + } + + if (itemId.startsWith('#')) { + if (item.isEmpty() || !player.mainHandItem.hasTag(itemId.substring(1))) return; + } else { + if (item.isEmpty() || player.mainHandItem.id !== itemId) return; + } + if (!player.crouching) return; + + let state = block.getBlockState().toString() + if (state.includes('[') && copyBlockstate === true) { + state = state.substring(block.getBlockState().toString().indexOf('[')); + } else { + state = '' + } + + if (!player.isCreative() && consumeItem === true) { + if (item.count < consumeAmount) { + player.tell(`Item count is too low. Held amount = ${item.count}, required amount = ${consumeAmount}`) + return; + } + item.count -= consumeAmount; + } + if (soundId) { + server.runCommandSilent(`playsound ${soundId} player ${player.username} ${player.x} ${player.y} ${player.z} 1 2 1`) + } + if (particleId) { + server.runCommandSilent(`particle ${particleId} ${block.x} ${block.y + 0.8} ${block.z} 0.1 0.1 0.1 0.6 10`) + } + player.swing() + event.server.runCommandSilent(`execute in ${event.block.level.name.getString()} run fill ${block.x} ${block.y} ${block.z} ${block.x} ${block.y} ${block.z} air`) + event.server.runCommandSilent(`execute in ${event.block.level.name.getString()} run setblock ${block.x} ${block.y} ${block.z} ${outputBlock}${state}`) +}; + +// Declare Events +BlockEvents.rightClicked(event => { + //Brick index events + for (const b of global.BRICK_INDEX) { + //brick -> cracked + transformBlockWithTool(event, b.brick, b.cracked_brick, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); + transformBlockWithTool(event, b.brick_stairs, b.cracked_stairs, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); + transformBlockWithTool(event, b.brick_slab, b.cracked_slab, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); + transformBlockWithTool(event, b.brick_wall, b.cracked_wall, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); + //brick -> mossy + transformBlockWithItem(event, b.brick, b.mossy_brick, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.brick, b.mossy_brick, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.brick_stairs, b.mossy_stairs, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.brick_stairs, b.mossy_stairs, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.brick_slab, b.mossy_slab, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.brick_slab, b.mossy_slab, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.brick_wall, b.mossy_wall, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.brick_wall, b.mossy_wall, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + //cracked -> mossy + transformBlockWithItem(event, b.cracked_brick, b.mossy_brick, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.cracked_brick, b.mossy_brick, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.cracked_stairs, b.mossy_stairs, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.cracked_stairs, b.mossy_stairs, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.cracked_slab, b.mossy_slab, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.cracked_slab, b.mossy_slab, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.cracked_wall, b.mossy_wall, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.cracked_wall, b.mossy_wall, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + //mossy -> cracked + transformBlockWithTool(event, b.mossy_brick, b.cracked_brick, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); + transformBlockWithTool(event, b.mossy_stairs, b.cracked_stairs, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); + transformBlockWithTool(event, b.mossy_slab, b.cracked_slab, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); + transformBlockWithTool(event, b.mossy_wall, b.cracked_wall, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); + //mossy -> brick + transformBlockWithTool(event, b.mossy_brick, b.brick, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.mossy_brick, b.brick, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithTool(event, b.mossy_stairs, b.brick_stairs, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.mossy_stairs, b.brick_stairs, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithTool(event, b.mossy_slab, b.brick_slab, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.mossy_slab, b.brick_slab, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithTool(event, b.mossy_wall, b.brick_wall, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.mossy_wall, b.brick_wall, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + //cracked -> brick + transformBlockWithItem(event, b.cracked_brick, b.brick, 'tfc:mortar', true, 1, 'minecraft:item.ink_sac.use', 'minecraft:effect', true); + transformBlockWithItem(event, b.cracked_stairs, b.brick_stairs, 'tfc:mortar', true, 1, 'minecraft:item.ink_sac.use', 'minecraft:effect', true); + transformBlockWithItem(event, b.cracked_slab, b.brick_slab, 'tfc:mortar', true, 1, 'minecraft:item.ink_sac.use', 'minecraft:effect', true); + transformBlockWithItem(event, b.cracked_wall, b.brick_wall, 'tfc:mortar', true, 1, 'minecraft:item.ink_sac.use', 'minecraft:effect', true); + // brick -> smooth + transformBlockWithTool(event, b.brick, b.smooth_brick, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true); + transformBlockWithTool(event, b.mossy_brick, b.smooth_brick, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true); + transformBlockWithTool(event, b.cracked_brick, b.smooth_brick, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true); + // smooth -> brick + transformBlockWithTool(event, b.smooth_brick, b.cracked_brick, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); + transformBlockWithItem(event, b.smooth_brick, b.mossy_brick, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, b.smooth_brick, b.mossy_brick, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithTool(event, b.smooth_brick, b.brick, '#forge:tools/files', true, 'minecraft:block.beehive.shear', 'minecraft:crit', true); + } + + //Cobble index events + for (const c of global.COBBLE_INDEX) { + //cobble -> mossy + transformBlockWithItem(event, c.block, c.mossy_block, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.block, c.mossy_block, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.stairs, c.mossy_stairs, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.stairs, c.mossy_stairs, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.slab, c.mossy_slab, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.slab, c.mossy_slab, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.wall, c.mossy_wall, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.wall, c.mossy_wall, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); + //mossy -> cobble + transformBlockWithTool(event, c.mossy_block, c.block, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.mossy_block, c.block, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithTool(event, c.mossy_stairs, c.stairs, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.mossy_stairs, c.stairs, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithTool(event, c.mossy_slab, c.slab, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.mossy_slab, c.slab, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithTool(event, c.mossy_wall, c.wall, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + transformBlockWithItem(event, c.mossy_wall, c.wall, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); + } + + //Misc Events + transformBlockWithItem(event, 'gtceu:incoloy_ma_956_frame', 'tfg:glacian_wool_frame', 'tfg:glacian_wool', true, 2, 'block.wool.place', 'minecraft:happy_villager', true); + transformBlockWithToolReturn(event, 'tfg:glacian_wool_frame', 'gtceu:incoloy_ma_956_frame', 'tfg:glacian_wool', 2,'#forge:tools/wire_cutters', true, 'minecraft:block.beehive.shear', 'minecraft:crit', true); + + transformBlockWithItem(event, 'gtceu:incoloy_ma_956_frame', 'tfg:aes_insulation_frame', 'tfg:aes_insulation_roll', true, 1, 'block.wool.place', 'minecraft:happy_villager', true); + transformBlockWithToolReturn(event, 'tfg:aes_insulation_frame', 'gtceu:incoloy_ma_956_frame', 'tfg:aes_insulation_roll', 1, '#forge:tools/wire_cutters', true, 'minecraft:block.beehive.shear', 'minecraft:crit', true); + + transformBlockWithItem(event, 'gtceu:incoloy_ma_956_frame', 'tfg:moderate_core_frame', 'tfg:graphite_moderator', true, 1, 'block.wool.place', 'minecraft:happy_villager', true); + transformBlockWithToolReturn(event, 'tfg:moderate_core_frame', 'gtceu:incoloy_ma_956_frame', 'tfg:graphite_moderator', 1, '#forge:tools/wire_cutters', true, 'minecraft:block.beehive.shear', 'minecraft:crit', true); + + transformBlockWithItem(event, 'gtceu:incoloy_ma_956_frame', 'tfg:impure_moderate_core_frame', 'tfg:impure_graphite_moderator', true, 1, 'block.wool.place', 'minecraft:happy_villager', true); + transformBlockWithToolReturn(event, 'tfg:impure_moderate_core_frame', 'gtceu:incoloy_ma_956_frame', 'tfg:impure_graphite_moderator', 1, '#forge:tools/wire_cutters', true, 'minecraft:block.beehive.shear', 'minecraft:crit', true); + +}); + +// Makes scythes, hoes, and knives take damage when cutting grass +BlockEvents.broken(event => { + const { server, item, player, block } = event; + + let toolUsed = player.mainHandItem; + + if (!block.hasTag('tfc:mineable_with_sharp_tool') || !toolUsed.hasTag('tfc:sharp_tools')) { + return; + } + + if (!player.isCreative()) { + toolUsed.damageValue++; + if (toolUsed.damageValue >= toolUsed.maxDamage) { + server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`); + toolUsed.count--; + } + } +}); diff --git a/kubejs/server_scripts/tfg/events.js b/kubejs/server_scripts/tfg/events.js index 37f1b7963..4c19dd387 100644 --- a/kubejs/server_scripts/tfg/events.js +++ b/kubejs/server_scripts/tfg/events.js @@ -11,110 +11,6 @@ TFGServerEvents.dimensionalPowerConsumption(event => { event["add(java.lang.String,double)"]("ad_astra:mars_orbit", 100000); }); -//#region Medicine - -//Pills & Tablets -const pill_event = [ - 'haste', - 'luck', - 'night_vision', - 'poison', - 'regeneration', - 'slowness', - 'speed', - 'water_breathing', - 'weakness', -]; - -pill_event.forEach(pill_event => { - - ItemEvents.rightClicked(event => { - const { item, server, player, player: { x, y, z } } = event - if (item.id !== `tfg:${pill_event}_pill`) return - item.count-- - player.addItemCooldown(item, 100) - server.runCommandSilent(`effect give ${player.username} minecraft:${pill_event} 480 0 true`) - server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${player.username} ${x} ${y} ${z} 10 1.5 1`) - }); - - ItemEvents.rightClicked(event => { - const { item, server, player, player: { x, y, z } } = event - if (item.id !== `tfg:${pill_event}_tablet`) return - item.count-- - player.addItemCooldown(item, 100) - server.runCommandSilent(`effect give ${player.username} minecraft:${pill_event} 1800 0 true`) - server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${player.username} ${x} ${y} ${z} 10 1.5 1`) - }); -}); - -ItemEvents.rightClicked(event => { - const { item, server, player, player: { x, y, z } } = event - if (item.id !== `tfg:antipoison_pill`) return - item.count-- - player.addItemCooldown(item, 50) - event.player.removeEffect('minecraft:poison') - server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${player.username} ${x} ${y} ${z} 10 1.5 1`) -}); - -ItemEvents.rightClicked(event => { - const { item, server, player, player: { x, y, z } } = event - if (item.id !== `tfg:antipoison_tablet`) return - item.count-- - player.addItemCooldown(item, 50) - event.player.removeEffect('minecraft:poison') - event.player.removeEffect('minecraft:wither') - event.player.removeEffect('minecraft:weakness') - event.player.removeEffect('minecraft:slowness') - event.player.removeEffect('minecraft:mining_fatigue') - event.player.removeEffect('minecraft:nausea') - event.player.removeEffect('minecraft:blindness') - event.player.removeEffect('minecraft:hunger') - event.player.removeEffect('minecraft:bad_omen') - event.player.removeEffect('minecraft:darkness') - event.player.removeEffect('minecraft:unluck') - server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${player.username} ${x} ${y} ${z} 10 1.5 1`) -}); - -//salvos -const salvo_event = [ - 'fire_resistance', - 'invisibility', - 'luck', - 'resistance', -]; - -salvo_event.forEach(salvo_event => { - - ItemEvents.rightClicked(event => { - const { item, server, player, player: { x, y, z } } = event - if (item.id !== `tfg:${salvo_event}_salvo`) return - item.count-- - player.addItemCooldown(item, 100) - server.runCommandSilent(`effect give ${player.username} minecraft:${salvo_event} 480 0 true`) - server.runCommandSilent(`playsound minecraft:item.glow_ink_sac.use player ${player.username} ${x} ${y} ${z} 10 2 1`) - }); -}); - -ItemEvents.rightClicked(event => { - const { item, server, player, player: { x, y, z } } = event - if (item.id !== `tfg:absorption_salvo`) return - item.count-- - player.addItemCooldown(item, 200) - server.runCommandSilent(`effect give ${player.username} minecraft:absorption 480 4 true`) - server.runCommandSilent(`playsound minecraft:item.glow_ink_sac.use player ${player.username} ${x} ${y} ${z} 10 2 1`) -}); - -ItemEvents.rightClicked(event => { - const { item, server, player, player: { x, y, z } } = event - if (item.id !== `tfg:instant_health_salvo`) return - item.count-- - player.addItemCooldown(item, 100) - server.runCommandSilent(`effect give ${player.username} minecraft:instant_health 1 1 true`) - server.runCommandSilent(`playsound minecraft:item.glow_ink_sac.use player ${player.username} ${x} ${y} ${z} 10 2 1`) -}); - -//#endregion - // Vase Sounds global.MINECRAFT_DYE_NAMES.forEach(color => { BlockEvents.rightClicked(event => { @@ -158,623 +54,3 @@ function getTFGPersistentDataRoot(player) { return player.persistentData.getCompound("tfg:custom_data") } -//#region Fishing Net -const fish = [ - 'cod', - 'crappie', - 'jellyfish', - 'lake_trout', - 'largemouth_bass', - 'rainbow_trout', - 'salmon', - 'smallmouth_bass', - 'tropical_fish', - 'bluegill' -]; - -const shellfish = [ - 'lobster', - 'isopod', - 'crayfish' -]; - -//tags wont work here (or at least I couldnt get it to work) so we need to manually declare each net tier. -const tiers = [ - 'wood', - 'brass', - 'rose_gold', - 'sterling_silver', - 'invar', - 'tin_alloy', - 'cupronickel', - 'magnalium' -]; - -//Event detects if fish is right clicked with fishing net and then teleports the mob into the void, plays some actions and gives the player the proper item. -tiers.forEach(tier => { - fish.forEach(fish => { - ItemEvents.entityInteracted(`tfg:fishing_net/${tier}`, (event) => { - const { item, player, server, target } = event; - - if (target.type !== `tfc:${fish}`) return - server.runCommandSilent(`particle minecraft:bubble_pop ${target.x} ${target.y} ${target.z} 0.5 0.5 0.5 0.00001 10`) - server.runCommandSilent(`playsound minecraft:entity.player.splash player ${player.username} ${target.x} ${target.y} ${target.z} 2 2 1`) - server.runCommandSilent(`tp ${target.uuid} ${target.x} ${target.y - 382} ${target.z}`) - event.player.give(`tfc:food/${fish}`) - player.swing() - if (player.isCreative() === false) { - item.damageValue++ - if (item.damageValue >= item.maxDamage) { - server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`) - item.count-- - } - } - }) - }) - - //Shellfish Exception - shellfish.forEach(shellfish => { - ItemEvents.entityInteracted(`tfg:fishing_net/${tier}`, (event) => { - const { item, player, server, target } = event; - - if (target.type !== `tfc:${shellfish}`) return - server.runCommandSilent(`particle minecraft:bubble_pop ${target.x} ${target.y} ${target.z} 0.5 0.5 0.5 0.00001 10`) - server.runCommandSilent(`playsound minecraft:entity.player.splash player ${player.username} ${target.x} ${target.y} ${target.z} 2 2 1`) - server.runCommandSilent(`tp ${target.uuid} ${target.x} ${target.y - 382} ${target.z}`) - event.player.give('tfc:food/shellfish') - player.swing() - if (player.isCreative() === false) { - item.damageValue++ - if (item.damageValue >= item.maxDamage) { - server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`) - item.count-- - } - } - }) - }) - - //Pufferfish Exception - ItemEvents.entityInteracted(`tfg:fishing_net/${tier}`, (event) => { - const { item, player, server, target } = event; - - if (target.type !== 'tfc:pufferfish') return - server.runCommandSilent(`particle minecraft:bubble_pop ${target.x} ${target.y} ${target.z} 0.5 0.5 0.5 0.00001 10`) - server.runCommandSilent(`playsound minecraft:entity.player.splash player ${player.username} ${target.x} ${target.y} ${target.z} 2 2 1`) - server.runCommandSilent(`tp ${target.uuid} ${target.x} ${target.y - 382} ${target.z}`) - event.player.give('minecraft:pufferfish') - player.swing() - if (player.isCreative() === false) { - item.damageValue++ - if (item.damageValue >= item.maxDamage) { - server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`) - item.count-- - } - } - }) -}) -//#endregion - -//#region Block Interactions - -/** - * @typedef {Object} BrickVariant - * @property {string} brick_type - The name of the brick variant. - * @property {string|null} brick - Main brick block ID. - * @property {string|null} brick_stairs - Brick stairs block ID. - * @property {string|null} brick_slab - Brick slab block ID. - * @property {string|null} brick_wall - Brick wall block ID. - * @property {string|null} cracked_brick - Cracked brick block ID. - * @property {string|null} cracked_stairs - Cracked brick stairs block ID. - * @property {string|null} cracked_slab - Cracked brick slab block ID. - * @property {string|null} cracked_wall - Cracked brick wall block ID. - * @property {string|null} mossy_brick - Mossy brick block ID. - * @property {string|null} mossy_stairs - Mossy brick stairs block ID. - * @property {string|null} mossy_slab - Mossy brick slab block ID. - * @property {string|null} mossy_wall - Mossy brick wall block ID. - * @property {string|null} smooth_brick - Smooth brick block ID. - * @property {string|null} smooth_stairs - Smooth brick stairs block ID. - * @property {string|null} smooth_slab - Smooth brick slab block ID. - * @property {string|null} smooth_wall - Smooth brick wall block ID. - * @property {string|null} chiseled_brick - Chiseled brick block ID. - */ - -const AA_REGULAR_STONES = ['moon', 'mars', 'venus', 'mercury', 'glacio'] - -// #region BRICK_INDEX -/** @type {BrickVariant[]} */ -global.BRICK_INDEX = (global.TFC_STONE_TYPES ? global.TFC_STONE_TYPES : []).map(tfc_stone => ({ - brick_type: tfc_stone, - brick: `tfc:rock/bricks/${tfc_stone}`, brick_stairs: `tfc:rock/bricks/${tfc_stone}_stairs`, brick_slab: `tfc:rock/bricks/${tfc_stone}_slab`, brick_wall: `tfc:rock/bricks/${tfc_stone}_wall`, - cracked_brick: `tfc:rock/cracked_bricks/${tfc_stone}`, cracked_stairs: `tfc:rock/cracked_bricks/${tfc_stone}_stairs`, cracked_slab: `tfc:rock/cracked_bricks/${tfc_stone}_slab`, cracked_wall: `tfc:rock/cracked_bricks/${tfc_stone}_wall`, - mossy_brick: `tfc:rock/mossy_bricks/${tfc_stone}`, mossy_stairs: `tfc:rock/mossy_bricks/${tfc_stone}_stairs`, mossy_slab: `tfc:rock/mossy_bricks/${tfc_stone}_slab`, mossy_wall: `tfc:rock/mossy_bricks/${tfc_stone}_wall`, - smooth_brick: `tfc:rock/smooth/${tfc_stone}`, smooth_stairs: `tfc:rock/smooth/${tfc_stone}_stairs`, smooth_slab: `tfc:rock/smooth/${tfc_stone}_slab`, smooth_wall: `tfc:rock/smooth/${tfc_stone}_wall`, - chiseled_brick: `tfc:rock/chiseled/${tfc_stone}` -})); -(global.CREATE_DECO_BRICK_TYPES ? global.CREATE_DECO_BRICK_TYPES : []).slice(0, -1).forEach(create_brick => { - global.BRICK_INDEX.push({ - brick_type: create_brick, - brick: `createdeco:${create_brick}_bricks`, brick_stairs: `createdeco:${create_brick}_brick_stairs`, brick_slab: `createdeco:${create_brick}_brick_slab`, brick_wall: `createdeco:${create_brick}_brick_wall`, - cracked_brick: `createdeco:cracked_${create_brick}_bricks`, cracked_stairs: `createdeco:cracked_${create_brick}_brick_stairs`, cracked_slab: `createdeco:cracked_${create_brick}_brick_slab`, cracked_wall: `createdeco:cracked_${create_brick}_brick_wall`, - mossy_brick: `createdeco:mossy_${create_brick}_bricks`, mossy_stairs: `createdeco:mossy_${create_brick}_brick_stairs`, mossy_slab: `createdeco:mossy_${create_brick}_brick_slab`, mossy_wall: `createdeco:mossy_${create_brick}_brick_wall`, - smooth_brick: `createdeco:corner_${create_brick}_bricks`, smooth_stairs: `createdeco:corner_${create_brick}_brick_stairs`, smooth_slab: `createdeco:corner_${create_brick}_brick_slab`, smooth_wall: `createdeco:corner_${create_brick}_brick_wall`, - chiseled_brick: `createdeco:tiled_${create_brick}_bricks` - }) -}); -global.BRICK_INDEX = global.BRICK_INDEX.concat([ - // { brick_type: '', - // brick: '', brick_stairs: '', brick_slab: '', brick_wall: '', - // cracked_brick: '', cracked_stairs: '', cracked_slab: '', cracked_wall: '', - // mossy_brick: '', mossy_stairs: '', mossy_slab: '', mossy_wallL: '', - // smooth_brick: '', smooth_stairs: '', smooth_slab: '', smooth_wall: '', - // chiseled_brick: '' }, - - { - brick_type: 'red', - brick: 'minecraft:bricks', brick_stairs: 'minecraft:brick_stairs', brick_slab: 'minecraft:brick_slab', brick_wall: 'minecraft:brick_wall', - cracked_brick: 'createdeco:cracked_red_bricks', cracked_stairs: 'createdeco:cracked_red_brick_stairs', cracked_slab: 'createdeco:cracked_red_brick_slab', cracked_wall: 'createdeco:cracked_red_brick_wall', - mossy_brick: 'createdeco:mossy_red_bricks', mossy_stairs: 'createdeco:mossy_red_brick_stairs', mossy_slab: 'createdeco:mossy_red_brick_slab', mossy_wall: 'createdeco:mossy_red_brick_wall', - smooth_brick: 'createdeco:corner_red_bricks', smooth_stairs: 'createdeco:corner_red_brick_stairs', smooth_slab: 'createdeco:corner_red_brick_slab', smooth_wall: 'createdeco:corner_red_brick_wall', - chiseled_brick: 'createdeco:tiled_red_bricks' - }, - - { - brick_type: 'light_concrete', - brick: 'gtceu:light_concrete_bricks', brick_stairs: null, brick_slab: null, brick_wall: null, - cracked_brick: 'gtceu:cracked_light_concrete_bricks', cracked_stairs: null, cracked_slab: null, cracked_wall: null, - mossy_brick: 'gtceu:mossy_light_concrete_bricks', mossy_stairs: null, mossy_slab: null, mossy_wall: null, - smooth_brick: 'gtceu:polished_light_concrete', smooth_stairs: null, smooth_slab: null, smooth_wall: null, - chiseled_brick: 'gtceu:chiseled_light_concrete' - }, - - { - brick_type: 'dark_concrete', - brick: 'gtceu:dark_concrete_bricks', brick_stairs: null, brick_slab: null, brick_wall: null, - cracked_brick: 'gtceu:cracked_dark_concrete_bricks', cracked_stairs: null, cracked_slab: null, cracked_wall: null, - mossy_brick: 'gtceu:mossy_dark_concrete_bricks', mossy_stairs: null, mossy_slab: null, mossy_wall: null, - smooth_brick: 'gtceu:polished_dark_concrete', smooth_stairs: null, smooth_slab: null, smooth_wall: null, - chiseled_brick: 'gtceu:chiseled_dark_concrete' - }, - - { - brick_type: 'deepslate', - brick: 'minecraft:deepslate_bricks', brick_stairs: 'minecraft:deepslate_brick_stairs', brick_slab: 'minecraft:deepslate_brick_slab', brick_wall: 'minecraft:deepslate_brick_wall', - cracked_brick: 'minecraft:cracked_deepslate_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_deepslate_stairs', cracked_slab: 'tfg:rock/cracked_bricks_deepslate_slab', cracked_wall: 'tfg:rock/cracked_bricks_deepslate_wall', - mossy_brick: 'tfg:rock/mossy_bricks_deepslate', mossy_stairs: 'tfg:rock/mossy_bricks_deepslate_stairs', mossy_slab: 'tfg:rock/mossy_bricks_deepslate_slab', mossy_wall: 'tfg:rock/mossy_bricks_deepslate_wall', - smooth_brick: 'minecraft:polished_deepslate', smooth_stairs: 'minecraft:polished_deepslate_stairs', smooth_slab: 'minecraft:polished_deepslate_slab', smooth_wall: 'minecraft:polished_deepslate_wall', - chiseled_brick: 'minecraft:chiseled_deepslate' - }, - - { - brick_type: 'deepslate_tiles', - brick: 'minecraft:deepslate_tiles', brick_stairs: 'minecraft:deepslate_tile_stairs', brick_slab: 'minecraft:deepslate_tile_slab', brick_wall: 'minecraft:deepslate_tile_wall', - cracked_brick: 'minecraft:cracked_deepslate_tiles', cracked_stairs: 'tfg:rock/cracked_tiles_deepslate_stairs', cracked_slab: 'tfg:rock/cracked_tiles_deepslate_slab', cracked_wall: 'tfg:rock/cracked_tiles_deepslate_wall', - mossy_brick: null, mossy_stairs: null, mossy_slab: null, mossy_wall: null, - smooth_brick: 'minecraft:polished_deepslate', smooth_stairs: 'minecraft:polished_deepslate_stairs', smooth_slab: 'minecraft:polished_deepslate_slab', smooth_wall: 'minecraft:polished_deepslate_wall', - chiseled_brick: 'minecraft:chiseled_deepslate' - }, - - { - brick_type: 'blackstone', - brick: 'minecraft:polished_blackstone_bricks', brick_stairs: 'minecraft:polished_blackstone_brick_stairs', brick_slab: 'minecraft:polished_blackstone_brick_slab', brick_wall: 'minecraft:polished_blackstone_brick_wall', - cracked_brick: 'minecraft:cracked_polished_blackstone_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_blackstone_stairs', cracked_slab: 'tfg:rock/cracked_bricks_blackstone_slab', cracked_wall: 'tfg:rock/cracked_bricks_blackstone_wall', - mossy_brick: 'tfg:rock/mossy_bricks_blackstone', mossy_stairs: 'tfg:rock/mossy_bricks_blackstone_stairs', mossy_slab: 'tfg:rock/mossy_bricks_blackstone_slab', mossy_wall: 'tfg:rock/mossy_bricks_blackstone_wall', - smooth_brick: 'minecraft:polished_blackstone', smooth_stairs: 'minecraft:polished_blackstone_stairs', smooth_slab: 'minecraft:polished_blackstone_slab', smooth_wall: 'minecraft:polished_blackstone_wall', - chiseled_brick: 'minecraft:chiseled_polished_blackstone' - }, - - { - brick_type: 'dripstone', - brick: 'create:cut_dripstone_bricks', brick_stairs: 'create:cut_dripstone_brick_stairs', brick_slab: 'create:cut_dripstone_brick_slab', brick_wall: 'create:cut_dripstone_brick_wall', - cracked_brick: 'tfg:rock/cracked_bricks_dripstone', cracked_stairs: 'tfg:rock/cracked_bricks_dripstone_stairs', cracked_slab: 'tfg:rock/cracked_bricks_dripstone_slab', cracked_wall: 'tfg:rock/cracked_bricks_dripstone_wall', - mossy_brick: 'tfg:rock/mossy_bricks_dripstone', mossy_stairs: 'tfg:rock/mossy_bricks_dripstone_stairs', mossy_slab: 'tfg:rock/mossy_bricks_dripstone_slab', mossy_wall: 'tfg:rock/mossy_bricks_dripstone_wall', - smooth_brick: 'create:polished_cut_dripstone', smooth_stairs: 'create:polished_cut_dripstone_stairs', smooth_slab: 'create:polished_cut_dripstone_slab', smooth_wall: 'create:polished_cut_dripstone_wall', - chiseled_brick: 'create:small_dripstone_bricks' - }, - - { - brick_type: 'crackrack', - brick: 'minecraft:nether_bricks', brick_stairs: 'minecraft:nether_bricks_stairs', brick_slab: 'minecraft:nether_bricks_slab', brick_wall: 'minecraft:nether_bricks_wall', - cracked_brick: 'minecraft:cracked_nether_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_nether_stairs', cracked_slab: 'tfg:rock/cracked_bricks_nether_slab', cracked_wall: 'tfg:rock/cracked_bricks_nether_wall', - mossy_brick: 'tfg:rock/mossy_bricks_nether', mossy_stairs: 'tfg:rock/mossy_bricks_nether_stairs', mossy_slab: 'tfg:rock/mossy_bricks_nether_slab', mossy_wall: 'tfg:rock/mossy_bricks_nether_wall', - smooth_brick: 'tfg:rock/polished_crackrack', smooth_stairs: 'tfg:rock/polished_crackrack_stairs', smooth_slab: 'tfg:rock/polished_crackrack_slab', smooth_wall: 'tfg:rock/polished_crackrack_wall', - chiseled_brick: 'minecraft:chiseled_nether_bricks' - }, - - { - brick_type: 'moon_deepslate', - brick: 'tfg:rock/bricks_moon_deepslate', brick_stairs: 'tfg:rock/bricks_moon_deepslate_stairs', brick_slab: 'tfg:rock/bricks_moon_deepslate_slab', brick_wall: 'tfg:rock/bricks_moon_deepslate_wall', - cracked_brick: 'tfg:rock/cracked_bricks_moon_deepslate', cracked_stairs: 'tfg:rock/cracked_bricks_moon_deepslate_stairs', cracked_slab: 'tfg:rock/cracked_bricks_moon_slab', cracked_wall: 'tfg:rock/cracked_bricks_moon_wall', - mossy_brick: 'tfg:rock/mossy_bricks_moon_deepslate', mossy_stairs: 'tfg:rock/mossy_bricks_moon_deepslate_stairs', mossy_slab: 'tfg:rock/mossy_bricks_moon_slab', mossy_wall: 'tfg:rock/mossy_bricks_moon_deepslate_wall', - smooth_brick: 'tfg:rock/polished_moon_deepslate', smooth_stairs: 'tfg:rock/polished_moon_deepslate_stairs', smooth_slab: 'ad_astra:polished_moon_stone_slab', smooth_wall: 'tfg:rock/polished_moon_deepslate_wall', - chiseled_brick: 'tfg:rock/chiseled_bricks_moon_deepslate' - }, - - { - brick_type: 'permafrost', - brick: 'ad_astra:permafrost_bricks', brick_stairs: 'ad_astra:permafrost_brick_stairs', brick_slab: 'ad_astra:permafrost_brick_slab', brick_wall: 'ad_astra:permafrost_brick_wall', - cracked_brick: 'ad_astra:cracked_permafrost_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_permafrost_stairs', cracked_slab: 'tfg:rock/cracked_bricks_permafrost_slab', cracked_wall: 'tfg:rock/cracked_bricks_permafrost_wall', - mossy_brick: 'tfg:rock/mossy_bricks_permafrost', mossy_stairs: 'tfg:rock/mossy_bricks_permafrost_stairs', mossy_slab: 'tfg:rock/mossy_bricks_permafrost_slab', mossy_wall: 'tfg:rock/mossy_bricks_permafrost_wall', - smooth_brick: 'ad_astra:polished_permafrost', smooth_stairs: 'ad_astra:polished_permafrost_stairs', smooth_slab: 'ad_astra:polished_permafrost_slab', smooth_wall: 'tfg:rock/polished_permafrost_wall', - chiseled_brick: 'ad_astra:chiseled_permafrost_bricks' - }, - - { - brick_type: 'red_granite', - brick: 'gtceu:red_granite_bricks', brick_stairs: 'tfg:rock/bricks_red_granite_stairs', brick_slab: 'tfg:rock/bricks_red_granite_slab', brick_wall: 'tfg:rock/bricks_red_granite_wall', - cracked_brick: 'gtceu:cracked_red_granite_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_red_granite_stairs', cracked_slab: 'tfg:rock/cracked_bricks_red_granite_slab', cracked_wall: 'tfg:rock/cracked_bricks_red_granite_wall', - mossy_brick: 'gtceu:mossy_red_granite_bricks', mossy_stairs: 'tfg:rock/mossy_bricks_red_granite_stairs', mossy_slab: 'tfg:rock/mossy_bricks_red_granite_slab', mossy_wall: 'tfg:rock/mossy_bricks_red_granite_wall', - smooth_brick: 'gtceu:polished_red_granite', smooth_stairs: 'tfg:rock/polished_red_granite_stairs', smooth_slab: 'tfg:rock/polished_red_granite_slab', smooth_wall: 'tfg:rock/polished_red_granite_wall', - chiseled_brick: 'gtceu:chiseled_red_granite' - }, - - { - brick_type: 'venus_sandstone', - brick: 'ad_astra:venus_sandstone_bricks', brick_stairs: 'ad_astra:venus_sandstone_brick_stairs', brick_slab: 'ad_astra:venus_sandstone_brick_slab', brick_wall: 'tfg:rock/bricks_venus_sandstone_wall', - cracked_brick: 'ad_astra:cracked_venus_sandstone_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_venus_sandstone_stairs', cracked_slab: 'tfg:rock/cracked_bricks_venus_sandstone_slab', cracked_wall: 'tfg:rock/cracked_bricks_stone_wall', - mossy_brick: null, mossy_stairs: null, mossy_slab: null, mossy_wall: null, - smooth_brick: null, smooth_stairs: null, smooth_slab: null, smooth_wall: null, - chiseled_brick: null - }, - - { - brick_type: 'stone', - brick: 'minecraft:stone_bricks', brick_stairs: 'minecraft:stone_brick_stairs', brick_slab: 'minecraft:stone_brick_slab', brick_wall: 'minecraft:stone_brick_wall', - cracked_brick: 'minecraft:cracked_stone_bricks', cracked_stairs: 'tfg:rock/cracked_bricks_stone_stairs', cracked_slab: 'tfg:rock/cracked_bricks_stone_slab', cracked_wall: 'tfg:rock/cracked_bricks_stone_wall', - mossy_brick: 'minecraft:mossy_stone_bricks', mossy_stairs: 'minecraft:mossy_stone_brick_stairs', mossy_slab: 'minecraft:mossy_stone_brick_slab', mossy_wall: 'minecraft:mossy_stone_brick_wall', - smooth_brick: 'minecraft:smooth_stone', smooth_stairs: 'tfg:rock/smooth_stone_stairs', smooth_slab: 'minecraft:smooth_stone_slab', smooth_wall: 'tfg:rock/smooth_stone_wall', - chiseled_brick: 'minecraft:chiseled_stone_bricks' - } -]); - -global.BRICK_INDEX = global.BRICK_INDEX.concat((AA_REGULAR_STONES ? AA_REGULAR_STONES : []).map(stone => ( - { - brick_type: stone, - brick: `ad_astra:${stone}_stone_bricks`, brick_stairs: `ad_astra:${stone}_stone_brick_stairs`, brick_slab: `ad_astra:${stone}_stone_brick_slab`, brick_wall: `ad_astra:${stone}_stone_brick_wall`, - cracked_brick: `ad_astra:cracked_${stone}_stone_bricks`, cracked_stairs: `tfg:rock/cracked_bricks_${stone}_stairs`, cracked_slab: `tfg:rock/cracked_bricks_${stone}_slab`, cracked_wall: `tfg:rock/cracked_bricks_${stone}_wall`, - mossy_brick: `tfg:rock/mossy_bricks_${stone}`, mossy_stairs: `tfg:rock/mossy_bricks_${stone}_stairs`, mossy_slab: `tfg:rock/mossy_bricks_${stone}_slab`, mossy_wall: `tfg:rock/mossy_bricks_${stone}_wall`, - smooth_brick: `ad_astra:polished_${stone}_stone`, smooth_stairs: `ad_astra:polished_${stone}_stone_stairs`, smooth_slab: `ad_astra:polished_${stone}_stone_slab`, smooth_wall: `tfg:rock/polished_${stone}_wall`, - chiseled_brick: `ad_astra:chiseled_${stone}_stone_bricks` - } -))) - -// #endregion BRICK_INDEX - -// #region COBBLE_INDEX -global.COBBLE_INDEX = (global.TFC_STONE_TYPES ? global.TFC_STONE_TYPES : []).map(tfc_stone => ({ - cobble_type: tfc_stone, - block: `tfc:rock/cobble/${tfc_stone}`, stairs: `tfc:rock/cobble/${tfc_stone}_stairs`, slab: `tfc:rock/cobble/${tfc_stone}_slab`, wall: `tfc:rock/cobble/${tfc_stone}_wall`, - mossy_block: `tfc:rock/mossy_cobble/${tfc_stone}`, mossy_stairs: `tfc:rock/mossy_cobble/${tfc_stone}_stairs`, mossy_slab: `tfc:rock/mossy_cobble/${tfc_stone}_slab`, mossy_wall: `tfc:rock/mossy_cobble/${tfc_stone}_wall` -})); - -global.COBBLE_INDEX = global.COBBLE_INDEX.concat([ - { - cobble_type: 'deepslate', - block: 'minecraft:cobbled_deepslate', stairs: 'minecraft:cobbled_deepslate_stairs', slab: 'minecraft:cobbled_deepslate_slab', wall: 'minecraft:cobbled_deepslate_wall', - mossy_block: 'tfg:rock/mossy_cobble_deepslate', mossy_stairs: 'tfg:rock/mossy_cobble_deepslate_stairs', mossy_slab: 'tfg:rock/mossy_cobble_deepslate_slab', mossy_wall: 'tfg:rock/mossy_cobble_deepslate_wall' - }, - - { - cobble_type: 'blackstone', - block: 'tfg:rock/cobble_blackstone', stairs: 'tfg:rock/cobble_blackstone_stairs', slab: 'tfg:rock/cobble_blackstone_slab', wall: 'tfg:rock/cobble_blackstone_wall', - mossy_block: 'tfg:rock/mossy_cobble_blackstone', mossy_stairs: 'tfg:rock/mossy_cobble_blackstone_stairs', mossy_slab: 'tfg:rock/mossy_cobble_blackstone_slab', mossy_wall: 'tfg:rock/mossy_cobble_blackstone_wall' - }, - - { - cobble_type: 'dripstone', - block: 'tfg:rock/cobble_dripstone', stairs: 'tfg:rock/cobble_dripstone_stairs', slab: 'tfg:rock/cobble_dripstone_slab', wall: 'tfg:rock/cobble_dripstone_wall', - mossy_block: 'tfg:rock/mossy_cobble_dripstone', mossy_stairs: 'tfg:rock/mossy_cobble_dripstone_stairs', mossy_slab: 'tfg:rock/mossy_cobble_dripstone_slab', mossy_wall: 'tfg:rock/mossy_cobble_dripstone_wall' - }, - - { - cobble_type: 'crackrack', - block: 'tfg:rock/cobble_crackrack', stairs: 'tfg:rock/cobble_crackrack_stairs', slab: 'tfg:rock/cobble_crackrack_slab', wall: 'tfg:rock/cobble_crackrack_wall', - mossy_block: 'tfg:rock/mossy_cobble_crackrack', mossy_stairs: 'tfg:rock/mossy_cobble_crackrack_stairs', mossy_slab: 'tfg:rock/mossy_cobble_crackrack_slab', mossy_wall: 'tfg:rock/mossy_cobble_crackrack_wall' - }, - - { - cobble_type: 'moon_deepslate', - block: 'tfg:rock/cobble_moon_deepslate', stairs: 'tfg:rock/cobble_moon_deepslate_stairs', slab: 'tfg:rock/cobble_moon_deepslate_slab', wall: 'tfg:rock/cobble_moon_deepslate_wall', - mossy_block: 'tfg:rock/mossy_cobble_moon_deepslate', mossy_stairs: 'tfg:rock/mossy_cobble_moon_deepslate_stairs', mossy_slab: 'tfg:rock/mossy_cobble_moon_deepslate_slab', mossy_wall: 'tfg:rock/mossy_cobble_moon_deepslate_wall' - }, - - { - cobble_type: 'permafrost', - block: 'tfg:rock/cobble_permafrost', stairs: 'tfg:rock/cobble_permafrost_stairs', slab: 'tfg:rock/cobble_permafrost_slab', wall: 'tfg:rock/cobble_permafrost_wall', - mossy_block: 'tfg:rock/mossy_cobble_permafrost', mossy_stairs: 'tfg:rock/mossy_cobble_permafrost_stairs', mossy_slab: 'tfg:rock/mossy_cobble_permafrost_slab', mossy_wall: 'tfg:rock/mossy_cobble_permafrost_wall' - }, - - { - cobble_type: 'red_granite', - block: 'gtceu:red_granite_cobblestone', stairs: 'tfg:rock/cobble_red_granite_stairs', slab: 'tfg:rock/cobble_red_granite_slab', wall: 'tfg:rock/cobble_red_granite_wall', - mossy_block: 'gtceu:mossy_red_granite_cobblestone', mossy_stairs: 'tfg:rock/mossy_cobble_red_granite_stairs', mossy_slab: 'tfg:rock/mossy_cobble_red_granite_slab', mossy_wall: 'tfg:rock/mossy_cobble_red_granite_wall' - }, - - { - cobble_type: 'stone', - block: 'minecraft:cobblestone', stairs: 'minecraft:cobblestone_stairs', slab: 'minecraft:cobblestone_slab', wall: 'minecraft:cobblestone_wall', - mossy_block: 'minecraft:mossy_cobblestone', mossy_stairs: 'minecraft:mossy_cobblestone_stairs', mossy_slab: 'minecraft:mossy_cobblestone_slab', mossy_wall: 'minecraft:mossy_cobblestone_wall' - } -]); - -global.COBBLE_INDEX = global.COBBLE_INDEX.concat((AA_REGULAR_STONES ? AA_REGULAR_STONES : []).map(stone => ( - { - cobble_type: stone, - block: `ad_astra:${stone}_cobblestone`, stairs: `ad_astra:${stone}_cobblestone_stairs`, slab: `ad_astra:${stone}_cobblestone_slab`, wall: `tfg:rock/cobble_${stone}_wall`, - mossy_block: `tfg:rock/mossy_cobble_${stone}`, mossy_stairs: `tfg:rock/mossy_cobble_${stone}_stairs`, mossy_slab: `tfg:rock/mossy_cobble_${stone}_slab`, mossy_wall: `tfg:rock/mossy_cobble_${stone}_wall` - } -))) - -// #endregion COBBLE_INDEX - -/** - * Function for replacing a block with another block by crouch-right-clicking with a tool. - * - * If input and output is null recipe will just return. - * - * @param {*} event - * @param {string} inputBlock -Block ID to be replaced. Accepts a Tag, but not recommended. - * @param {string} outputBlock -Block ID of the replacement. - * @param {string} toolId -Item ID of the tool. - * @param {boolean} damageTool -Sets wether the tool should be damaged on use. - * @param {string} soundId -Sound ID to be used as the flair sound effect. Can be null. - * @param {string} particleId -SimpleParticleType ID to be used as the flair particle. Can be null. - * @param {boolean} copyBlockstate - Sets wether the blockstate should be copied from the input block to the output block. - */ -function transformBlockWithTool(event, inputBlock, outputBlock, toolId, damageTool, soundId, particleId, copyBlockstate) { - const { server, item, player, block } = event; - - if (!inputBlock || !outputBlock) return; - - if (inputBlock.startsWith('#')) { - if (!block.hasTag(inputBlock.substring(1))) return; - } else { - if (block.id.toString() !== inputBlock) return; - } - - if (toolId.startsWith('#')) { - if (item.isEmpty() || !player.mainHandItem.hasTag(toolId.substring(1))) return; - } else { - if (item.isEmpty() || player.mainHandItem.id !== toolId) return; - } - - if (!player.crouching) return; - - let state = block.getBlockState().toString(); - if (state.includes('[') && copyBlockstate === true) { - state = state.substring(state.indexOf('[')); - } else { - state = ''; - } - - if (soundId) { - server.runCommandSilent(`playsound ${soundId} player ${player.username} ${player.x} ${player.y} ${player.z} 1 2 1`) - } - if (particleId) { - server.runCommandSilent(`particle ${particleId} ${block.x} ${block.y + 0.8} ${block.z} 0.1 0.1 0.1 0.6 10`) - } - player.swing(); - - if (!player.isCreative() && damageTool) { - item.damageValue++; - if (item.damageValue >= item.maxDamage) { - server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`); - item.count--; - } - } - - const dim = block.level.name.getString(); - server.runCommandSilent(`execute in ${dim} run fill ${block.x} ${block.y} ${block.z} ${block.x} ${block.y} ${block.z} air`); - server.runCommandSilent(`execute in ${dim} run setblock ${block.x} ${block.y} ${block.z} ${outputBlock}${state}`); -}; - -/** - * Function for replacing a block with another block by crouch-right-clicking with a tool and receiving an item. - * - * If input and output is null recipe will just return. - * - * @param {*} event - * @param {string} inputBlock -Block ID to be replaced. Accepts a Tag, but not recommended. - * @param {string} outputBlock -Block ID of the replacement. - * @param {string} outputItem -Item ID of item to receive - * @param {number} outputCount -Number of items to be returned - * @param {string} toolId -Item ID of the tool. - * @param {boolean} damageTool -Sets wether the tool should be damaged on use. - * @param {string} soundId -Sound ID to be used as the flair sound effect. Can be null. - * @param {string} particleId -SimpleParticleType ID to be used as the flair particle. Can be null. - * @param {boolean} copyBlockstate - Sets wether the blockstate should be copied from the input block to the output block. - */ -function transformBlockWithToolReturn(event, inputBlock, outputBlock, outputItem, outputCount, toolId, damageTool, soundId, particleId, copyBlockstate) { - const { server, item, player, block } = event; - - if (!inputBlock || !outputBlock) return; - - if (inputBlock.startsWith('#')) { - if (!block.hasTag(inputBlock.substring(1))) return; - } else { - if (block.id.toString() !== inputBlock) return; - } - if (!player.crouching) return; - - if (toolId.startsWith('#')) { - if (item.isEmpty() || !player.mainHandItem.hasTag(toolId.substring(1))) return; - } else { - if (item.isEmpty() || player.mainHandItem.id !== toolId) return; - } - - transformBlockWithTool(event, inputBlock, outputBlock, toolId, damageTool, soundId, particleId, copyBlockstate) - - const dim = block.level.name.getString(); - server.runCommandSilent(`execute in ${dim} run summon item ${player.x} ${player.y} ${player.z} {Item:{id:'${outputItem}', Count:${outputCount}b}}`); - -} -/** - * Function for replacing a block with another block by crouch-right-clicking with an item. - * - * If input and output is null recipe will just return. - * - * @param {*} event - * @param {string} inputBlock -Block ID to be replaced. Accepts a Tag, but not recommended. - * @param {string} outputBlock -Block ID of the replacement. - * @param {string} itemId -Item ID of the consumed item. Accepts Tags. - * @param {boolean} consumeItem -Sets wether the item should be comsumed or not. - * @param {number} consumeAmount -Number of items to consume, can't be greater than stacksize. - * @param {string} soundId -Sound ID to be used as the flair sound effect. Can be null. - * @param {string} particleId -SimpleParticleType ID to be used as the flair particle. Can be null. - * @param {boolean} copyBlockstate - Sets wether the blockstate should be copied from the input block to the output block. - */ -function transformBlockWithItem(event, inputBlock, outputBlock, itemId, consumeItem, consumeAmount, soundId, particleId, copyBlockstate) { - const { server, item, player, block } = event; - - if (!inputBlock || !outputBlock) return; - - if (inputBlock.startsWith('#')) { - if (!block.hasTag(inputBlock.substring(1))) return; - } else { - if (block.id.toString() !== inputBlock) return; - } - - if (itemId.startsWith('#')) { - if (item.isEmpty() || !player.mainHandItem.hasTag(itemId.substring(1))) return; - } else { - if (item.isEmpty() || player.mainHandItem.id !== itemId) return; - } - if (!player.crouching) return; - - let state = block.getBlockState().toString() - if (state.includes('[') && copyBlockstate === true) { - state = state.substring(block.getBlockState().toString().indexOf('[')); - } else { - state = '' - } - - if (!player.isCreative() && consumeItem === true) { - if (item.count < consumeAmount) { - player.tell(`Item count is too low. Held amount = ${item.count}, required amount = ${consumeAmount}`) - return; - } - item.count -= consumeAmount; - } - if (soundId) { - server.runCommandSilent(`playsound ${soundId} player ${player.username} ${player.x} ${player.y} ${player.z} 1 2 1`) - } - if (particleId) { - server.runCommandSilent(`particle ${particleId} ${block.x} ${block.y + 0.8} ${block.z} 0.1 0.1 0.1 0.6 10`) - } - player.swing() - event.server.runCommandSilent(`execute in ${event.block.level.name.getString()} run fill ${block.x} ${block.y} ${block.z} ${block.x} ${block.y} ${block.z} air`) - event.server.runCommandSilent(`execute in ${event.block.level.name.getString()} run setblock ${block.x} ${block.y} ${block.z} ${outputBlock}${state}`) -}; - -// Declare Events -BlockEvents.rightClicked(event => { - //Brick index events - for (const b of global.BRICK_INDEX) { - //brick -> cracked - transformBlockWithTool(event, b.brick, b.cracked_brick, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); - transformBlockWithTool(event, b.brick_stairs, b.cracked_stairs, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); - transformBlockWithTool(event, b.brick_slab, b.cracked_slab, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); - transformBlockWithTool(event, b.brick_wall, b.cracked_wall, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); - //brick -> mossy - transformBlockWithItem(event, b.brick, b.mossy_brick, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.brick, b.mossy_brick, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.brick_stairs, b.mossy_stairs, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.brick_stairs, b.mossy_stairs, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.brick_slab, b.mossy_slab, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.brick_slab, b.mossy_slab, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.brick_wall, b.mossy_wall, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.brick_wall, b.mossy_wall, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - //cracked -> mossy - transformBlockWithItem(event, b.cracked_brick, b.mossy_brick, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.cracked_brick, b.mossy_brick, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.cracked_stairs, b.mossy_stairs, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.cracked_stairs, b.mossy_stairs, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.cracked_slab, b.mossy_slab, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.cracked_slab, b.mossy_slab, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.cracked_wall, b.mossy_wall, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.cracked_wall, b.mossy_wall, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - //mossy -> cracked - transformBlockWithTool(event, b.mossy_brick, b.cracked_brick, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); - transformBlockWithTool(event, b.mossy_stairs, b.cracked_stairs, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); - transformBlockWithTool(event, b.mossy_slab, b.cracked_slab, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); - transformBlockWithTool(event, b.mossy_wall, b.cracked_wall, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); - //mossy -> brick - transformBlockWithTool(event, b.mossy_brick, b.brick, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.mossy_brick, b.brick, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithTool(event, b.mossy_stairs, b.brick_stairs, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.mossy_stairs, b.brick_stairs, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithTool(event, b.mossy_slab, b.brick_slab, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.mossy_slab, b.brick_slab, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithTool(event, b.mossy_wall, b.brick_wall, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.mossy_wall, b.brick_wall, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - //cracked -> brick - transformBlockWithItem(event, b.cracked_brick, b.brick, 'tfc:mortar', true, 1, 'minecraft:item.ink_sac.use', 'minecraft:effect', true); - transformBlockWithItem(event, b.cracked_stairs, b.brick_stairs, 'tfc:mortar', true, 1, 'minecraft:item.ink_sac.use', 'minecraft:effect', true); - transformBlockWithItem(event, b.cracked_slab, b.brick_slab, 'tfc:mortar', true, 1, 'minecraft:item.ink_sac.use', 'minecraft:effect', true); - transformBlockWithItem(event, b.cracked_wall, b.brick_wall, 'tfc:mortar', true, 1, 'minecraft:item.ink_sac.use', 'minecraft:effect', true); - // brick -> smooth - transformBlockWithTool(event, b.brick, b.smooth_brick, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true); - transformBlockWithTool(event, b.mossy_brick, b.smooth_brick, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true); - transformBlockWithTool(event, b.cracked_brick, b.smooth_brick, '#create:sandpaper', true, 'create:sanding_short', 'minecraft:crit', true); - // smooth -> brick - transformBlockWithTool(event, b.smooth_brick, b.cracked_brick, '#forge:tools/hammers', true, 'minecraft:block.copper.hit', 'minecraft:crit', true); - transformBlockWithItem(event, b.smooth_brick, b.mossy_brick, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, b.smooth_brick, b.mossy_brick, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithTool(event, b.smooth_brick, b.brick, '#forge:tools/files', true, 'minecraft:block.beehive.shear', 'minecraft:crit', true); - } - - //Cobble index events - for (const c of global.COBBLE_INDEX) { - //cobble -> mossy - transformBlockWithItem(event, c.block, c.mossy_block, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.block, c.mossy_block, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.stairs, c.mossy_stairs, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.stairs, c.mossy_stairs, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.slab, c.mossy_slab, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.slab, c.mossy_slab, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.wall, c.mossy_wall, '#tfc:compost_greens_low', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.wall, c.mossy_wall, 'gtceu:plant_ball', true, 1, 'minecraft:block.moss.hit', 'minecraft:item_slime', true); - //mossy -> cobble - transformBlockWithTool(event, c.mossy_block, c.block, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.mossy_block, c.block, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithTool(event, c.mossy_stairs, c.stairs, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.mossy_stairs, c.stairs, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithTool(event, c.mossy_slab, c.slab, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.mossy_slab, c.slab, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithTool(event, c.mossy_wall, c.wall, '#forge:tools/knives', true, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - transformBlockWithItem(event, c.mossy_wall, c.wall, 'tfc:groundcover/pumice', true, 1, 'minecraft:item.axe.wax_off', 'minecraft:item_slime', true); - } - - //Misc Events - transformBlockWithItem(event, 'gtceu:incoloy_ma_956_frame', 'tfg:glacian_wool_frame', 'tfg:glacian_wool', true, 2, 'block.wool.place', 'minecraft:happy_villager', true); - transformBlockWithToolReturn(event, 'tfg:glacian_wool_frame', 'gtceu:incoloy_ma_956_frame', 'tfg:glacian_wool', 2,'#forge:tools/wire_cutters', true, 'minecraft:block.beehive.shear', 'minecraft:crit', true); - - transformBlockWithItem(event, 'gtceu:incoloy_ma_956_frame', 'tfg:aes_insulation_frame', 'tfg:aes_insulation_roll', true, 1, 'block.wool.place', 'minecraft:happy_villager', true); - transformBlockWithToolReturn(event, 'tfg:aes_insulation_frame', 'gtceu:incoloy_ma_956_frame', 'tfg:aes_insulation_roll', 1, '#forge:tools/wire_cutters', true, 'minecraft:block.beehive.shear', 'minecraft:crit', true); - - transformBlockWithItem(event, 'gtceu:incoloy_ma_956_frame', 'tfg:moderate_core_frame', 'tfg:graphite_moderator', true, 1, 'block.wool.place', 'minecraft:happy_villager', true); - transformBlockWithToolReturn(event, 'tfg:moderate_core_frame', 'gtceu:incoloy_ma_956_frame', 'tfg:graphite_moderator', 1, '#forge:tools/wire_cutters', true, 'minecraft:block.beehive.shear', 'minecraft:crit', true); - - transformBlockWithItem(event, 'gtceu:incoloy_ma_956_frame', 'tfg:impure_moderate_core_frame', 'tfg:impure_graphite_moderator', true, 1, 'block.wool.place', 'minecraft:happy_villager', true); - transformBlockWithToolReturn(event, 'tfg:impure_moderate_core_frame', 'gtceu:incoloy_ma_956_frame', 'tfg:impure_graphite_moderator', 1, '#forge:tools/wire_cutters', true, 'minecraft:block.beehive.shear', 'minecraft:crit', true); - -}); - -// Makes scythes, hoes, and knives take damage when cutting grass -BlockEvents.broken('tfc:mineable_with_sharp_tool', event => { - let player = event.player; - let toolUsed = player.mainHandItem; - - if (!toolUsed.hasTag('tfc:sharp_tools')) { - return; - } - - if (!player.isCreative()) { - toolUsed.damageValue++; - if (toolUsed.damageValue >= toolUsed.maxDamage) { - event.server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`); - toolUsed.count--; - } - } -}); - -//#endregion diff --git a/kubejs/server_scripts/tfg/food/data.crops.js b/kubejs/server_scripts/tfg/food/data.crops.js new file mode 100644 index 000000000..af2a55d2f --- /dev/null +++ b/kubejs/server_scripts/tfg/food/data.crops.js @@ -0,0 +1,88 @@ +"use strict"; + + +/** @param {Internal.TFCDataEventJS} event */ +function registerTFGCropRanges(event) { + // Earth + event.climateRange((climate) => { + climate.minHydration(20); + climate.maxHydration(80); + climate.minTemperature(5); + climate.maxTemperature(40); + climate.hydrationWiggle(7.5); + climate.temperatureWiggle(5.5); + }, "tfg:sunflower"); + + event.climateRange((climate) => { + climate.minHydration(10); + climate.maxHydration(60); + climate.minTemperature(-5); + climate.maxTemperature(25); + 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) => { + climate.minHydration(0); + climate.maxHydration(40); + climate.minTemperature(-150); + climate.maxTemperature(15); + climate.hydrationWiggle(7.5); + climate.temperatureWiggle(5.5); + }, "betterend:amber_root"); + + event.climateRange((climate) => { + climate.minHydration(70); + climate.maxHydration(100); + climate.minTemperature(-80); + climate.maxTemperature(30); + climate.hydrationWiggle(7.5); + climate.temperatureWiggle(5.5); + }, "betterend:blossom_berry"); + + event.climateRange((climate) => { + climate.minHydration(0); + climate.maxHydration(40); + climate.minTemperature(-150); + climate.maxTemperature(15); + climate.hydrationWiggle(7.5); + climate.temperatureWiggle(5.5); + }, "betterend:bolux_mushroom"); + + event.climateRange((climate) => { + climate.minHydration(0); + climate.maxHydration(60); + climate.minTemperature(-100); + climate.maxTemperature(30); + climate.hydrationWiggle(7.5); + climate.temperatureWiggle(5.5); + }, "betterend:cave_pumpkin_plant"); + + event.climateRange((climate) => { + climate.minHydration(0); + climate.maxHydration(40); + climate.minTemperature(-150); + climate.maxTemperature(15); + climate.hydrationWiggle(7.5); + climate.temperatureWiggle(5.5); + }, "betterend:chorus_mushroom"); + + event.climateRange((climate) => { + climate.minHydration(50); + climate.maxHydration(100); + climate.minTemperature(-80); + climate.maxTemperature(30); + climate.hydrationWiggle(7.5); + climate.temperatureWiggle(5.5); + }, "betterend:shadow_berry"); +} diff --git a/kubejs/server_scripts/tfg/food/data.food.js b/kubejs/server_scripts/tfg/food/data.food.js new file mode 100644 index 000000000..def08ba3d --- /dev/null +++ b/kubejs/server_scripts/tfg/food/data.food.js @@ -0,0 +1,583 @@ +"use strict"; + +/** @param {Internal.TFCDataEventJS} event */ +function registerTFGFoodData(event) { + + // Ice shavings + event.foodItem('firmalife:ice_shavings', food => { + food.water(5) + food.decayModifier(0) + }) + + // Birt + event.foodItem("tfg:food/raw_birt", (food) => { + food.hunger(2); + food.protein(1.2); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_birt", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(2.2); + food.decayModifier(2.25); + }); + + // Crawlermari + event.foodItem("tfg:food/raw_crawlermari", (food) => { + food.hunger(2); + food.water(5); + food.protein(1.2); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_crawlermari", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(2.2); + food.decayModifier(2.25); + }); + + // Limpet + event.foodItem("tfg:food/raw_limpet", (food) => { + food.hunger(2); + food.water(5); + food.protein(1.2); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_limpet", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(2.2); + food.decayModifier(2.25); + }); + + // Moon Rabbit + event.foodItem("tfg:food/raw_moon_rabbit", (food) => { + food.hunger(2); + food.protein(1.2); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_moon_rabbit", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(2.2); + food.decayModifier(2.25); + }); + + // Glacian Mutton + event.foodItem("tfg:food/raw_glacian_mutton", (food) => { + food.hunger(2); + food.protein(1.5); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_glacian_mutton", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(3); + food.decayModifier(2.25); + }); + + // Sniffer Beef + event.foodItem("tfg:food/raw_sniffer_beef", (food) => { + food.hunger(2); + food.protein(1.5); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_sniffer_beef", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(3); + food.decayModifier(2.25); + }); + + // Wraptor + event.foodItem("tfg:food/raw_wraptor", (food) => { + food.hunger(2); + food.protein(1.5); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_wraptor", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(3); + food.decayModifier(2.25); + }); + + // Springling Collar + event.foodItem("tfg:food/raw_springling_collar", (food) => { + food.hunger(2); + food.protein(1.5); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_springling_collar", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(3); + food.decayModifier(2.25); + }); + + // Surfer Steak + event.foodItem("tfg:food/raw_surfer_steak", (food) => { + food.hunger(2); + food.protein(1.5); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_surfer_steak", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(3); + food.decayModifier(2.25); + }); + + // Cruncher Ribs + event.foodItem("tfg:food/raw_cruncher_ribs", (food) => { + food.hunger(2); + food.protein(2.0); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_cruncher_ribs", (food) => { + food.hunger(4); + food.saturation(2.2); + food.protein(4); + food.decayModifier(2.25); + }); + + // Long Pig Filet + event.foodItem("tfg:food/raw_long_pig_filet", (food) => { + food.hunger(2); + food.protein(1.5); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_long_pig_filet", (food) => { + food.hunger(2); + food.saturation(2); + food.protein(2); + food.decayModifier(2.25); + }); + + // Stackatick Chunks + event.foodItem("tfg:food/raw_stackatick_chunks", (food) => { + food.hunger(2); + food.protein(1.2); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/raw_stickastackatick", (food) => { + food.hunger(2); + food.protein(1.2); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_stickastackatick", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(3); + food.decayModifier(2.25); + }); + + // Walker Steak + event.foodItem("tfg:food/raw_walker_steak", (food) => { + food.hunger(2); + food.protein(2.0); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_walker_steak", (food) => { + food.hunger(4); + food.saturation(2.2); + food.protein(4); + food.decayModifier(2.25); + }); + + // Glider Wings + event.foodItem("tfg:food/raw_glider_wings", (food) => { + food.hunger(2); + food.protein(1.5); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_glider_wings", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(2.75); + food.decayModifier(2.25); + }); + + // Soarer + event.foodItem("tfg:food/raw_whole_soarer", (food) => { + food.hunger(2); + food.protein(1.5); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_whole_soarer", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(3.1); + food.decayModifier(2.25); + }); + + // Crusher Meat + event.foodItem("tfg:food/raw_crusher_meat", (food) => { + food.hunger(2); + food.protein(1.5); + food.decayModifier(3); + }); + + event.foodItem("tfg:food/cooked_crusher_meat", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(3); + food.decayModifier(2.25); + }); + + // Goober Meat + event.foodItem("tfg:food/raw_goober_meat", (food) => { + food.hunger(2); + food.protein(1.5); + food.decayModifier(3); + food.water(1); + }); + + event.foodItem("tfg:food/cooked_goober_meat", (food) => { + food.hunger(4); + food.saturation(2); + food.protein(3); + food.decayModifier(2.25); + }); + + // high-tech food + global.FOOD_FRUIT.forEach((fruit) => { + event.foodItem(`tfg:food/freeze_dried/${fruit.name}`, (food) => { + food.hunger(4); + food.saturation(fruit.saturation); + food.water(0); + food.fruit(fruit.fruit); + food.decayModifier(fruit.decay); + }); + }); + + event.foodItem("tfg:food/calorie_paste", (food) => { + food.hunger(6); + food.saturation(4); + food.decayModifier(4.5); + food.grain(0.1); + food.vegetables(0.2); + food.protein(0.2); + }); + + event.foodItem("tfg:food/meal_bag", (food) => { + food.type("dynamic"); + }); + + // Sunflower products + event.foodItem("tfg:roasted_sunflower_seeds", (food) => { + food.hunger(4); + food.decayModifier(0.5); + food.grain(0.1); + food.saturation(0.5); + }); + + event.foodItem("tfg:sunflower_product", (food) => { + food.decayModifier(0.5); + }); + + // Amber Roots + event.foodItem("betterend:amber_root_product", (food) => { + food.hunger(4); + food.decayModifier(1); + food.saturation(1); + food.grain(3); + }); + + // Blossom Berries + event.foodItem("betterend:blossom_berry_product", (food) => { + food.hunger(5); + food.decayModifier(2); + food.saturation(1); + food.water(7.5); + food.fruit(2.1); + }); + + // Cave Pumpkin + event.foodItem("betterend:cave_pumpkin", (food) => { + food.hunger(4); + food.saturation(0); + food.decayModifier(0.5); + }); + + event.foodItem("betterend:cave_pumpkin_chunks", (food) => { + food.hunger(4); + food.saturation(1); + food.decayModifier(2.5); + food.water(5); + food.fruit(0.8); + }); + + event.foodItem("betterend:cave_pumpkin_pie_dough", (food) => { + food.hunger(2); + food.decayModifier(3); + }); + + event.foodItem("betterend:cave_pumpkin_pie_raw", (food) => { + food.hunger(2); + food.decayModifier(3); + }); + + event.foodItem("betterend:cave_pumpkin_pie", (food) => { + food.hunger(4); + food.saturation(2.8); + food.decayModifier(1.5); + food.water(5); + food.protein(1); + food.fruit(5); + food.grain(4); + food.dairy(1); + }); + + // Chorus Mushroom + event.foodItem("betterend:chorus_mushroom_product", (food) => { + food.hunger(2); + food.saturation(1); + food.decayModifier(3); + food.water(3); + food.vegetables(1.5); + }); + + event.foodItem("betterend:chorus_mushroom_cooked", (food) => { + food.hunger(2); + food.saturation(2.1); + food.decayModifier(1.5); + food.vegetables(2.5); + }); + + // Shadow Berry + event.foodItem("betterend:shadow_berry_product", (food) => { + food.hunger(5); + food.decayModifier(2); + food.saturation(1); + food.water(5); + food.fruit(1.9); + }); + + event.foodItem("betterend:shadow_berry_cooked", (food) => { + food.hunger(5); + food.decayModifier(1); + food.saturation(2); + food.fruit(2.2); + }); + + // Bolux Mushroom + event.foodItem("betterend:bolux_mushroom_product", (food) => { + food.hunger(2); + food.saturation(1); + food.decayModifier(3); + food.water(3); + food.vegetables(1.5); + }); + + event.foodItem("betterend:bolux_mushroom_cooked", (food) => { + food.hunger(2); + food.saturation(2); + food.decayModifier(1.5); + food.vegetables(2.4); + }); + + // Dino Nuggets + event.foodItem('tfg:food/raw_dino_nugget', (food) => { + food.type("dynamic"); + food.hunger(1); + food.decayModifier(3); + }); + + event.foodItem('tfg:food/cooked_dino_nugget', (food) => { + food.type("dynamic"); + food.hunger(3); + food.saturation(2); + food.decayModifier(1.5); + }); + + // Ice Soup + event.foodItem("tfg:food/ice_soup", (food) => { + food.hunger(1); + food.water(20); + food.decayModifier(0); + }); + + // Fries + event.foodItem('tfg:food/raw_fries', (food) => { + food.hunger(1); + food.decayModifier(3); + food.vegetables(0.25); + }); + + event.foodItem('tfg:food/cooked_fries', (food) => { + food.hunger(2); + food.decayModifier(1.5); + food.vegetables(0.6); + food.saturation(2); + }); + + // Cheese Curds + event.foodItem('tfg:food/raw_beer_battered_cheese_curds', (food) => { + food.hunger(1); + food.decayModifier(1.3); + food.dairy(1); + food.saturation(1); + }); + + event.foodItem('tfg:food/cooked_beer_battered_cheese_curds', (food) => { + food.hunger(3); + food.decayModifier(0.8); + food.dairy(1.2); + food.saturation(2); + food.grain(0.5); + }); + + // Hamburgers + event.foodItem('tfg:food/raw_burger_patty', (food) => { + food.hunger(2); + food.decayModifier(2.3); + food.protein(2); + }); + + event.foodItem('tfg:food/cooked_burger_patty', (food) => { + food.hunger(4); + food.decayModifier(2); + food.protein(2.5); + food.saturation(2); + }); + + event.foodItem('tfg:food/brioche_dough', (food) => { + food.hunger(1.5); + food.decayModifier(2.3); + }); + + event.foodItem('tfg:food/brioche_bun', (food) => { + food.hunger(3.5); + food.decayModifier(1.5); + food.grain(1.5); + food.dairy(0.5); + food.saturation(1); + }); + + event.foodItem('tfg:food/hamburger', (food) => { + food.type("dynamic"); + }); + + event.foodItem('tfg:food/cheeseburger', (food) => { + food.type("dynamic"); + }); + + // Poutine + event.foodItem('tfg:food/poutine', (food) => { + food.type("dynamic_bowl"); + }); + + // Oatmeal + event.foodItem('tfg:food/oatmeal', (food) => { + food.type("dynamic_bowl"); + }); + + // Biochem Items + event.foodItem("tfg:progenitor_cells", (food) => { + food.decayModifier(1); + }); + event.foodItem("tfg:rough_endoplasmic_reticula", (food) => { + food.decayModifier(0.5); + }); + event.foodItem("tfg:smooth_endoplasmic_reticula", (food) => { + food.decayModifier(0.5); + }); + + // Instant Mac + event.foodItem('tfg:food/raw_instant_mac', (food) => { + food.hunger(2); + food.decayModifier(0.2); + }); + + event.foodItem('tfg:food/cooked_instant_mac', (food) => { + food.hunger(3.5); + food.decayModifier(1.6); + food.grain(1.5); + food.dairy(2.5); + food.protein(0.8); + food.saturation(1.8); + }); + + //#region Drinkables + // Proto Growth Medium + event.drinkable("tfg:proto_growth_medium", (data) => { + data.thirst(10); + data.food(food => { + food.dairy(5); + food.protein(1); + }); + data.effect("minecraft:absorption", (effect) => { + effect.amplifier(2); + effect.chance(0.25); + effect.duration(1200); + }); + }); + + // Semiheavy Ammoniacal Water + event.drinkable("tfg:semiheavy_ammoniacal_water", (data) => { + data.thirst(10); + data.effect("minecraft:nausea", (effect) => { + effect.chance(0.5); + effect.duration(200); + }); + }); + + // Rich Stock + event.drinkable('tfg:rich_stock', (data) => { + data.thirst(4); + data.effect("tfc:thirst", (effect) => { + effect.chance(0.2); + effect.duration(20*5); + }); + data.food(food => { + food.protein(0.25); + food.vegetables(0.25); + }); + }); + + // Light Stock + event.drinkable('tfg:light_stock', (data) => { + data.thirst(4); + data.effect("tfc:thirst", (effect) => { + effect.chance(0.2); + effect.duration(20*5); + }); + data.food(food => { + food.protein(0.25); + food.vegetables(0.25); + }); + }); + + // Brown Gravy + event.drinkable('tfg:brown_gravy', (data) => { + data.thirst(2); + data.effect("tfc:thirst", (effect) => { + effect.chance(0.3); + effect.duration(20*5); + }); + data.food(food => { + food.protein(0.5); + food.vegetables(0.5); + food.grain(0.25); + }); + }); + + //#endregion +} diff --git a/kubejs/server_scripts/tfg/food/data.planters.js b/kubejs/server_scripts/tfg/food/data.planters.js new file mode 100644 index 000000000..e694e6ca7 --- /dev/null +++ b/kubejs/server_scripts/tfg/food/data.planters.js @@ -0,0 +1,167 @@ +"use strict"; + + +/** @param {Internal.TFCDataEventJS} event */ +function registerTFGFLPlanters(event) { + event.firmalifePlantable( + "tfg:sunflower_seeds", + "large", + 0, + 3, + 0.15, + "tfg:sunflower_seeds", + "tfg:sunflower_product", + "nitrogen", + [ + "tfg:block/crop/sunflower_greenhouse_0", + "tfg:block/crop/sunflower_greenhouse_1", + "tfg:block/crop/sunflower_greenhouse_2", + "tfg:block/crop/sunflower_greenhouse_3" + ], + null + ); + + event.firmalifePlantable( + "tfg:rapeseed_seeds", + "large", + 0, + 3, + 0.15, + "tfg:rapeseed_seeds", + "tfg:rapeseed_product", + "phosphorous", + [ + "tfg:block/crop/rapeseed_greenhouse_0", + "tfg:block/crop/rapeseed_greenhouse_1", + "tfg:block/crop/rapeseed_greenhouse_2", + "tfg:block/crop/rapeseed_greenhouse_3" + ], + 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", + "large", + 0, + 3, + 0.15, + "betterend:amber_root_seeds", + "betterend:amber_root_product", + "phosphorous", + [ + "betterend:block/amber_root_0", + "betterend:block/amber_root_1", + "betterend:block/amber_root_2", + "betterend:block/amber_root_3" + ], + null + ); + + event.firmalifePlantable( + "betterend:blossom_berry_seeds", + "large", + 0, + 3, + 0.15, + "betterend:blossom_berry_seeds", + "betterend:blossom_berry_product", + "potassium", + [ + "betterend:block/blossom_berry_seed_0", + "betterend:block/blossom_berry_seed_1", + "betterend:block/blossom_berry_seed_2", + "betterend:block/blossom_berry_seed_3" + ], + null + ); + + event.firmalifePlantable( + "betterend:bolux_mushroom_seeds", + "quad", + 1, + 3, + 0.15, + "betterend:bolux_mushroom_seeds", + "betterend:bolux_mushroom_product", + "phosphorous", + [ + "betterend:block/bolux_mushroom_greenhouse_0", + "betterend:block/bolux_mushroom_greenhouse_1", + "betterend:block/bolux_mushroom_greenhouse_2", + "betterend:block/bolux_mushroom_greenhouse_3" + ], + null + ); + + event.firmalifePlantable( + "betterend:chorus_mushroom_seeds", + "quad", + 1, + 3, + 0.15, + "betterend:chorus_mushroom_seeds", + "betterend:chorus_mushroom_product", + "phosphorous", + [ + "betterend:block/chorus_mushroom_0", + "betterend:block/chorus_mushroom_1", + "betterend:block/chorus_mushroom_2", + "betterend:block/chorus_mushroom_3" + ], + null + ); + + event.firmalifePlantable( + "betterend:cave_pumpkin_plant_seeds", + "hanging", + 2, + 3, + 0.15, + "betterend:cave_pumpkin_plant_seeds", + "betterend:cave_pumpkin", + "phosphorous", + [ + "betterend:block/cave_pumpkin_greenhouse_0", + "betterend:block/cave_pumpkin_greenhouse_1", + "betterend:block/cave_pumpkin_greenhouse_2", + "betterend:block/cave_pumpkin_greenhouse_3" + ], + "betterend:block/cave_pumpkin_top" + ); + + event.firmalifePlantable( + "betterend:shadow_berry_seeds", + "quad", + 1, + 3, + 0.15, + "betterend:shadow_berry_seeds", + "betterend:shadow_berry_product", + "potassium", + [ + "betterend:block/shadow_berry_greenhouse_0", + "betterend:block/shadow_berry_greenhouse_1", + "betterend:block/shadow_berry_greenhouse_2", + "betterend:block/shadow_berry_greenhouse_3" + ], + null + ); +} diff --git a/kubejs/server_scripts/tfg/food/recipes.biomass.js b/kubejs/server_scripts/tfg/food/recipes.biomass.js new file mode 100644 index 000000000..82455ef59 --- /dev/null +++ b/kubejs/server_scripts/tfg/food/recipes.biomass.js @@ -0,0 +1,182 @@ +"use strict"; + +function registerTFGBiomassRecipes(event) { + + //#region Biomass + + event.recipes.gtceu.brewery('biomass_from_tfc_seeds') + .itemInputs('#tfc:seeds') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 100)) + .duration(100) + .EUt(3) + + event.recipes.gtceu.brewery('biomass_from_tfc_food') + .itemInputs('#tfc:foods') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 100)) + .duration(100) + .EUt(3) + + event.recipes.gtceu.brewery('biomass_from_tfc_plants') + .itemInputs('#tfc:plants') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 100)) + .duration(100) + .EUt(3) + + event.recipes.gtceu.brewery('biomass_from_moon_plants') + .itemInputs('#tfg:moon_plants') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 100)) + .duration(100) + .EUt(3) + + event.recipes.gtceu.brewery('biomass_from_mars_plants') + .itemInputs('#tfg:mars_plants') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 100)) + .duration(100) + .EUt(3) + + event.recipes.gtceu.brewery('biomass_from_tfc_corals') + .itemInputs('#tfc:corals') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 100)) + .duration(100) + .EUt(3) + + event.recipes.gtceu.brewery('biomass_from_spider_eyes') + .itemInputs('minecraft:spider_eye') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 100)) + .duration(100) + .EUt(3) + + event.recipes.gtceu.brewery('biomass_from_leaves') + .itemInputs('#minecraft:leaves') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 20)) + .duration(100) + .EUt(3) + + event.recipes.gtceu.brewery('biomass_from_fallen_leaves') + .itemInputs('#tfc:fallen_leaves') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 20)) + .duration(100) + .EUt(3) + + event.recipes.gtceu.brewery('biomass_from_minecraft_plants') + .itemInputs('#createaddition:plants') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 20)) + .duration(100) + .EUt(3) + + event.recipes.gtceu.brewery('biomass_from_wart_blocks') + .itemInputs('#minecraft:wart_blocks') + .inputFluids("#tfc:any_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 100)) + .duration(100) + .EUt(3) + + event.replaceOutput({ id: 'gtceu:distillery/distill_biomass_to_water' }, 'gtceu:wood_dust', 'gtceu:carbon_dust') + event.replaceOutput({ id: 'gtceu:distillery/distill_biomass_to_ethanol' }, 'gtceu:wood_dust', 'gtceu:carbon_dust') + event.replaceOutput({ id: 'gtceu:distillation_tower/distill_biomass' }, 'gtceu:wood_dust', 'gtceu:carbon_dust') + + //#endregion + + //#region Plant ball + + event.recipes.gtceu.compressor('plant_ball_from_tfc_seeds') + .itemInputs('4x #tfc:seeds') + .itemOutputs('gtceu:plant_ball') + .duration(300) + .EUt(2) + + let food = Ingredient.of('#tfc:foods') + .subtract('minecraft:brown_mushroom') + .subtract('minecraft:red_mushroom') + .withCount(8) + + event.recipes.gtceu.compressor('plant_ball_from_tfc_food') + .itemInputs(food) + .itemOutputs('gtceu:plant_ball') + .duration(300) + .EUt(2) + + event.recipes.gtceu.compressor('plant_ball_from_tfc_plants') + .itemInputs('4x #tfc:plants') + .itemOutputs('gtceu:plant_ball') + .duration(300) + .EUt(2) + + event.recipes.gtceu.compressor('plant_ball_from_moon_plants') + .itemInputs('4x #tfg:moon_plants') + .itemOutputs('gtceu:plant_ball') + .duration(300) + .EUt(2) + + event.recipes.gtceu.compressor('plant_ball_from_mars_plants') + .itemInputs('4x #tfg:mars_plants') + .itemOutputs('gtceu:plant_ball') + .duration(300) + .EUt(2) + + event.recipes.gtceu.compressor('plant_ball_from_tfc_corals') + .itemInputs('4x #tfc:corals') + .itemOutputs('gtceu:plant_ball') + .duration(300) + .EUt(2) + + event.recipes.gtceu.compressor('plant_ball_from_misc_plants') + .itemInputs('10x #createaddition:plants') + .itemOutputs('gtceu:plant_ball') + .duration(300) + .EUt(2) + + event.recipes.gtceu.compressor('plant_ball_from_wart_blocks') + .itemInputs('4x #minecraft:wart_blocks') + .itemOutputs('gtceu:plant_ball') + .duration(300) + .EUt(2) + + //#endregion + + // Sugar + event.recipes.gtceu.centrifuge('sugar_from_sugarcane') + .itemInputs('tfc:food/sugarcane') + .inputFluids("#tfg:clean_water 600") + .itemOutputs('minecraft:sugar', 'gtceu:plant_ball') + .duration(800) + .EUt(6) + + event.recipes.gtceu.extractor('sugar_from_honey') + .itemInputs('firmalife:raw_honey') + .itemOutputs('minecraft:sugar') + .duration(400) + .EUt(6) + + event.recipes.gtceu.centrifuge('tfg:beets_to_sugar') + .itemInputs('5x tfc:food/beet') + .inputFluids(Fluid.of('tfc:salt_water', 1000)) + .itemOutputs('3x minecraft:sugar', '3x gtceu:plant_ball', '1x #forge:dusts/salt') + .outputFluids(Fluid.of('minecraft:water', 1000)) + .duration(800) + .EUt(7) + .circuit(3) + + // Misc + event.recipes.gtceu.macerator('macerate_cocoa') + .itemInputs('firmalife:food/roasted_cocoa_beans') + .itemOutputs('gtceu:cocoa_dust') + .duration(100) + .EUt(2) + + event.recipes.gtceu.macerator('macerate_meat_to_dust') + .itemInputs('#tfc:foods/meats') + .itemOutputs('gtceu:meat_dust', 'gtceu:tiny_bone_dust') + .duration(100) + .EUt(2) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.food.js b/kubejs/server_scripts/tfg/food/recipes.food.js similarity index 52% rename from kubejs/server_scripts/tfg/recipes.food.js rename to kubejs/server_scripts/tfg/food/recipes.food.js index 06df16aa9..17feb698f 100644 --- a/kubejs/server_scripts/tfg/recipes.food.js +++ b/kubejs/server_scripts/tfg/food/recipes.food.js @@ -1,136 +1,137 @@ ο»Ώ// priority: 0 "use strict"; + +const $ISPRecipeLogic = Java.loadClass("su.terrafirmagreg.core.common.data.tfgt.machine.trait.ISPOutputRecipeLogic") +const $SizedIngredient = Java.loadClass("com.gregtechceu.gtceu.api.recipe.ingredient.SizedIngredient") +const Sized = (ing, amount) => $SizedIngredient.create(ing, amount) + +/** +* @typedef {Object} FoodRecipeData +* @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 {"food_oven"|"food_processor"} type +* @param {string} id +* @param {number} duration +* @param {number} EUt +* @param {string} text +* @param {FoodRecipeData} data +*/ +global.registerFoodRecipe = (event, 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 +*/ +global.processorRecipe = (event, id, duration, EUt, data) => global.registerFoodRecipe(event, "food_processor", id, duration, EUt, "", data) + +/** +* @param {string} id +* @param {number} duration +* @param {number} EUt +* @param {FoodRecipeData} data +* @param {string} text +*/ +global.processorRecipeText = (event, id, duration, EUt, text, data) => global.registerFoodRecipe(event, "food_processor", id, duration, EUt, text, data) + +/** +* @param {string} id +* @param {string} input +* @param {string} out +* @param {Internal.FluidIngredient?} fluid +* @param {boolean?} isFirmaDynamic +*/ +global.cookingRecipe = (event, id, input, out, fluid, isFirmaDynamic) => { + return global.registerFoodRecipe(event, "food_oven", id, 20 * 10, GTValues.VA[GTValues.LV], "", { + itemInputs: [input], + itemOutputs: [out], + fluidInputs: (fluid === undefined) ? [] : [fluid], + itemOutputProvider: ((isFirmaDynamic) ? TFC.isp.of(out).firmaLifeCopyDynamicFood() : TFC.isp.of(out).copyFood()).addTrait("firmalife:oven_baked") + }) +} + +//#endregion + + /** * @param {Internal.RecipesEventJS} event */ function registerTFGFoodRecipes(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") - const Sized = (ing, amount) => $SizedIngredient.create(ing, amount) - - /** - * @typedef {Object} FoodRecipeData - * @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 {"food_oven"|"food_processor"} type - * @param {string} id - * @param {number} duration - * @param {number} EUt - * @param {string} text - * @param {FoodRecipeData} data - */ - function registerFoodRecipe(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 processorRecipe = (id, duration, EUt, data) => registerFoodRecipe("food_processor", id, duration, EUt, "", data) - - /** - * @param {string} id - * @param {number} duration - * @param {number} EUt - * @param {FoodRecipeData} data - * @param {string} text - */ - const processorRecipeText = (id, duration, EUt, text, data) => registerFoodRecipe("food_processor", id, duration, EUt, text, data) - - /** - * @param {string} id - * @param {string} input - * @param {string} out - * @param {Internal.FluidIngredient?} fluid - * @param {boolean?} isFirmaDynamic - */ - function cookingRecipe(id, input, out, fluid, isFirmaDynamic) { - return registerFoodRecipe("food_oven", id, 300, GTValues.VA[GTValues.LV], "", { - itemInputs: [input], - itemOutputs: [out], - fluidInputs: (fluid === undefined) ? [] : [fluid], - itemOutputProvider: ((isFirmaDynamic) ? TFC.isp.of(out).firmaLifeCopyDynamicFood() : TFC.isp.of(out).copyFood()).addTrait("firmalife:oven_baked") - }) - } - - //#endregion - - //#region ================= Meat cooking ================= + //#region Meat cooking global.TFC_MEAT_RECIPE_COMPONENTS.forEach(item => { - cookingRecipe(item.name, item.input, item.output) + global.cookingRecipe(event, item.name, item.input, item.output) }) //#endregion - //#region ================= TFC Grains ================= + //#region TFC Grains global.TFC_GRAINS.forEach(grain => { // Raw crop to grain - processorRecipe(`${grain}_grain`, 100, 8, { + global.processorRecipe(event, `${grain}_grain`, 100, 8, { circuit: 30, itemInputs: [`tfc:food/${grain}`], itemOutputs: [`tfc:food/${grain}_grain`], @@ -138,7 +139,7 @@ function registerTFGFoodRecipes(event) { }) // Grain to flour - processorRecipe(`${grain}_flour`, 100, 8, { + global.processorRecipe(event, `${grain}_flour`, 100, 8, { circuit: 31, itemInputs: [`tfc:food/${grain}_grain`], itemOutputs: [`2x tfc:food/${grain}_flour`], @@ -155,7 +156,7 @@ function registerTFGFoodRecipes(event) { }, 0, 0).id(`tfg:mortar/${grain}_flour`) // Flatbread dough - processorRecipe(`${grain}_flatbread_dough`, 300, 8, { + global.processorRecipe(event, `${grain}_flatbread_dough`, 300, 8, { itemInputs: [`tfc:food/${grain}_flour`], itemOutputs: [`2x tfc:food/${grain}_dough`], circuit: 1, @@ -164,7 +165,7 @@ function registerTFGFoodRecipes(event) { }) // Firmalife dough - processorRecipe(`${grain}_dough`, 300, 16, { + global.processorRecipe(event, `${grain}_dough`, 300, 16, { itemInputs: [`tfc:food/${grain}_flour`, `#tfc:sweetener`], itemOutputs: [`4x firmalife:food/${grain}_dough`], circuit: 1, @@ -173,10 +174,10 @@ function registerTFGFoodRecipes(event) { }) // Bread baking - cookingRecipe(`${grain}_flatbread`, `tfc:food/${grain}_dough`, `firmalife:food/${grain}_flatbread`) - cookingRecipe(`${grain}_bread`, `firmalife:food/${grain}_dough`, `tfc:food/${grain}_bread`) + global.cookingRecipe(event, `${grain}_flatbread`, `tfc:food/${grain}_dough`, `firmalife:food/${grain}_flatbread`) + global.cookingRecipe(event, `${grain}_bread`, `firmalife:food/${grain}_dough`, `tfc:food/${grain}_bread`) - processorRecipe(`${grain}_bread_slice`, 10, 8, { + global.processorRecipe(event, `${grain}_bread_slice`, 10, 8, { circuit: 1, itemInputs: [`tfc:food/${grain}_bread`], itemOutputs: [`2x firmalife:food/${grain}_slice`], @@ -187,52 +188,52 @@ function registerTFGFoodRecipes(event) { let breadTypes = [["bread", `tfc:food/${grain}_bread`], ["flatbread", `firmalife:food/${grain}_flatbread`], ["slice", `firmalife:food/${grain}_slice`]] breadTypes.forEach((type) => { - processorRecipe(`${grain}_${type[0]}_sandwich`, 100, 16, { + global.processorRecipe(event, `${grain}_${type[0]}_sandwich`, 100, 16, { circuit: 3, itemInputs: [`2x ${type[1]}`, "3x #tfc:foods/usable_in_sandwich"], itemOutputs: [`2x tfc:food/${grain}_bread_sandwich`], itemOutputProvider: TFC.isp.of(`2x tfc:food/${grain}_bread_sandwich`).meal( (food => food.hunger(4).water(0.5).saturation(1).decayModifier(4.5)), [ (portion) => portion.ingredient(Ingredient.of('#tfc:sandwich_bread')).nutrientModifier(0.5).saturationModifier(0.5).waterModifier(0.5), - (portion) => portion.nutrientModifier(0.8).saturationModifier(0.8).waterModifier(0.8), + (portion) => portion.nutrientModifier(0.8).saturationModifier(0.8).waterModifier(0.8) ]) }) //Note: Jam needs to be first in the recipe code or else it will consider it as the usable_in_jam_sandwhich ingredients. //1 Jam - processorRecipe(`${grain}_${type[0]}_jam_sandwich_1`, 100, 16, { + global.processorRecipe(event, `${grain}_${type[0]}_jam_sandwich_1`, 100, 16, { circuit: 4, itemInputs: [`2x ${type[1]}`, '#tfc:foods/preserves', '2x #tfc:foods/usable_in_jam_sandwich_2'], itemOutputs: [`2x tfc:food/${grain}_bread_jam_sandwich`, 'tfc:empty_jar'], itemOutputProvider: TFC.isp.of(`2x tfc:food/${grain}_bread_jam_sandwich`).meal( (food => food.hunger(4).water(0.5).saturation(1).decayModifier(4.5)), [ (portion) => portion.ingredient(Ingredient.of('#tfc:sandwich_bread')).nutrientModifier(0.5).saturationModifier(0.5).waterModifier(0.5), - (portion) => portion.nutrientModifier(0.8).saturationModifier(0.8).waterModifier(0.8), - ]), + (portion) => portion.nutrientModifier(0.8).saturationModifier(0.8).waterModifier(0.8) + ]) }) //2 Jam - processorRecipe(`${grain}_${type[0]}_jam_sandwich_2`, 100, 16, { + global.processorRecipe(event, `${grain}_${type[0]}_jam_sandwich_2`, 100, 16, { circuit: 4, itemInputs: [`2x ${type[1]}`, '2x #tfc:foods/preserves', '1x #tfc:foods/usable_in_jam_sandwich_2'], itemOutputs: [`2x tfc:food/${grain}_bread_jam_sandwich`, '2x tfc:empty_jar'], itemOutputProvider: TFC.isp.of(`2x tfc:food/${grain}_bread_jam_sandwich`).meal( (food => food.hunger(4).water(0.5).saturation(1).decayModifier(4.5)), [ (portion) => portion.ingredient(Ingredient.of('#tfc:sandwich_bread')).nutrientModifier(0.5).saturationModifier(0.5).waterModifier(0.5), - (portion) => portion.nutrientModifier(0.8).saturationModifier(0.8).waterModifier(0.8), - ]), + (portion) => portion.nutrientModifier(0.8).saturationModifier(0.8).waterModifier(0.8) + ]) }) //3 Jam - processorRecipe(`${grain}_${type[0]}_jam_sandwich_3`, 100, 16, { + global.processorRecipe(event, `${grain}_${type[0]}_jam_sandwich_3`, 100, 16, { circuit: 4, itemInputs: [`2x ${type[1]}`, '3x #tfc:foods/preserves'], itemOutputs: [`2x tfc:food/${grain}_bread_jam_sandwich`, '3x tfc:empty_jar'], itemOutputProvider: TFC.isp.of(`2x tfc:food/${grain}_bread_jam_sandwich`).meal( (food => food.hunger(4).water(0.5).saturation(1).decayModifier(4.5)), [ (portion) => portion.ingredient(Ingredient.of('#tfc:sandwich_bread')).nutrientModifier(0.5).saturationModifier(0.5).waterModifier(0.5), - (portion) => portion.nutrientModifier(0.8).saturationModifier(0.8).waterModifier(0.8), - ]), + (portion) => portion.nutrientModifier(0.8).saturationModifier(0.8).waterModifier(0.8) + ]) }) }) @@ -241,14 +242,14 @@ function registerTFGFoodRecipes(event) { //#endregion - //#region ================= Firmalife ================= + //#region Firmalife global.FIRMALIFE_COOKING_RECIPE_COMPONENTS.forEach(item => { - cookingRecipe(item.name, item.input, item.output, undefined, true) + global.cookingRecipe(event, item.name, item.input, item.output, undefined, true) }) // Pineapple fiber - processorRecipe("firmalife:crafting/pineapple_fiber", 300, 16, { + global.processorRecipe(event, "firmalife:crafting/pineapple_fiber", 300, 16, { circuit: 3, itemInputs: ["firmalife:food/pineapple"], fluidInputs: [Fluid.of('gtceu:nitrogen', 100)], @@ -256,82 +257,97 @@ function registerTFGFoodRecipes(event) { }) //#endregion - //#region ================= Dairy ================= + //#region Dairy global.TFC_CURDS_AND_CHEESES.forEach(item => { - // TODO: curds in a food processor always come out rotten + event.recipes.gtceu.fermenter(`tfg:curdled_${item.id}`) + .inputFluids(Fluid.of(item.milk, 2000)) + .itemInputs('firmalife:rennet') + .outputFluids(Fluid.of(item.curdled_fluid, 2000)) + .duration(2400) + .EUt(16) - //processorRecipe(`${item.curd}_curd`, 1200, 16, { - // itemOutputs: [item.curd], - // fluidInputs: [Fluid.of(item.input_fluid, 1000)], - // itemOutputProvider: TFC.isp.of(item.curd).resetFood() - //}) + event.recipes.gtceu.mixer(`lactose_milk_${item.id}`) + .circuit(1) + .inputFluids(Fluid.of(item.milk, 1000), Fluid.of('gtceu:acetic_acid', 25)) + .itemOutputs('1x gtceu:lactose_dust') + .outputFluids(Fluid.of(item.curdled_fluid, 1000)) + .duration(300) + .EUt(GTValues.VA[GTValues.LV]) - processorRecipe(`${item.cheese1}_cheese_wheel_1`, 8000, 16, { - itemInputs: [`3x ${item.curd}`], - itemOutputs: [`firmalife:${item.cheese1}_wheel`], - fluidInputs: [Fluid.of('tfc:salt_water', 750)], - itemOutputProvider: TFC.isp.of(`firmalife:${item.cheese1}_wheel`).copyOldestFood() + global.processorRecipe(event, `${item.id}_curd`, 1200, 16, { + itemOutputs: [item.curd], + fluidInputs: [Fluid.of(item.curdled_fluid, 1000)], + itemOutputProvider: TFC.isp.of(item.curd).resetFood() }) - processorRecipe(`${item.cheese2}_cheese_wheel_2`, 1000, 16, { + global.processorRecipe(event, `${item.id}_unsalted_cheese_wheel`, 8000, 16, { + itemInputs: [`3x ${item.curd}`], + itemOutputs: [item.unsalted_wheel], + fluidInputs: [Fluid.of('tfc:salt_water', 750)], + itemOutputProvider: TFC.isp.of(item.unsalted_wheel).copyOldestFood() + }) + + global.processorRecipe(event, `${item.id}_unsalted_cheese_cutting`, 100, 8, { + itemInputs: [item.unsalted_wheel], + itemOutputs: [`4x ${item.unsalted_cheese}`], + itemOutputProvider: TFC.isp.of(`4x ${item.unsalted_cheese}`).copyOldestFood() + }) + + if (item.salted_wheel === null || item.salted_cheese === null) + return; + + global.processorRecipe(event, `${item.id}_salted_cheese_wheel`, 1000, 16, { circuit: 2, itemInputs: [`3x ${item.curd}`, `6x tfc:powder/salt`], - itemOutputs: [`firmalife:${item.cheese2}_wheel`], - itemOutputProvider: TFC.isp.of(`firmalife:${item.cheese2}_wheel`).copyOldestFood() + itemOutputs: [item.salted_wheel], + itemOutputProvider: TFC.isp.of(item.salted_wheel).copyOldestFood() }) - processorRecipe(`${item.cheese1}_cheese_cutting_1`, 100, 8, { - itemInputs: [`firmalife:${item.cheese1}_wheel`], - itemOutputs: [`4x firmalife:food/${item.cheese1}`], - itemOutputProvider: TFC.isp.of(`4x firmalife:food/${item.cheese1}`).copyOldestFood() + global.processorRecipe(event, `${item.id}_salted_cheese_cutting`, 100, 8, { + itemInputs: [item.salted_wheel], + itemOutputs: [`4x ${item.salted_cheese}`], + itemOutputProvider: TFC.isp.of(`4x ${item.salted_cheese}`).copyOldestFood() }) - - processorRecipe(`${item.cheese2}_cheese_cutting_2`, 100, 8, { - itemInputs: [`firmalife:${item.cheese2}_wheel`], - itemOutputs: [`4x firmalife:food/${item.cheese2}`], - itemOutputProvider: TFC.isp.of(`4x firmalife:food/${item.cheese2}`).copyOldestFood() - }) - }) // Milks - processorRecipe(`white_chocolate_blend`, 300, 16, { + global.processorRecipe(event, `white_chocolate_blend`, 300, 16, { circuit: 3, itemInputs: ['2x firmalife:food/cocoa_butter', '#tfc:sweetener'], fluidInputs: ['#tfc:milks 1000'], itemOutputs: ['2x firmalife:food/white_chocolate_blend'], - itemOutputProvider: TFC.isp.of('2x firmalife:food/white_chocolate_blend').resetFood(), + itemOutputProvider: TFC.isp.of('2x firmalife:food/white_chocolate_blend').resetFood() }) - processorRecipe(`dark_chocolate_blend`, 300, 16, { + global.processorRecipe(event, `dark_chocolate_blend`, 300, 16, { circuit: 2, itemInputs: ['2x firmalife:food/cocoa_powder', '#tfc:sweetener'], fluidInputs: ['#tfc:milks 1000'], itemOutputs: ['2x firmalife:food/dark_chocolate_blend'], - itemOutputProvider: TFC.isp.of('2x firmalife:food/dark_chocolate_blend').resetFood(), + itemOutputProvider: TFC.isp.of('2x firmalife:food/dark_chocolate_blend').resetFood() }) - processorRecipe(`milk_chocolate_blend`, 300, 16, { + global.processorRecipe(event, `milk_chocolate_blend`, 300, 16, { circuit: 1, itemInputs: ['firmalife:food/cocoa_powder', 'firmalife:food/cocoa_butter', '#tfc:sweetener'], fluidInputs: ['#tfc:milks 1000'], itemOutputs: ['2x firmalife:food/milk_chocolate_blend'], - itemOutputProvider: TFC.isp.of('2x firmalife:food/milk_chocolate_blend').resetFood(), + itemOutputProvider: TFC.isp.of('2x firmalife:food/milk_chocolate_blend').resetFood() }) // TODO: this has nutrition dynamically set in the pot recipe, can we do that here? - processorRecipe(`egg_noodles`, 50, 8, { + global.processorRecipe(event, `egg_noodles`, 50, 8, { circuit: 6, itemInputs: ["#tfc:foods/flour", 'tfc:powder/salt', '#forge:eggs'], fluidInputs: ['#tfc:milks 1000'], itemOutputs: ['firmalife:food/raw_egg_noodles'], - itemOutputProvider: TFC.isp.of("firmalife:food/raw_egg_noodles").copyOldestFood(), + itemOutputProvider: TFC.isp.of("firmalife:food/raw_egg_noodles").copyOldestFood() }) - processorRecipe(`rice_noodles`, 50, 8, { + global.processorRecipe(event, `rice_noodles`, 50, 8, { itemInputs: ["tfc:food/rice_flour", 'tfc:food/maize_flour', 'tfc:powder/salt'], fluidInputs: ['#tfc:milks 1000'], itemOutputs: ['2x firmalife:food/raw_rice_noodles'], @@ -348,9 +364,38 @@ function registerTFGFoodRecipes(event) { //#endregion - //#region ================= Food preservation ================= + //#region Chocolate + const chocolateType = ["white_chocolate", "milk_chocolate", "dark_chocolate"] + const chocolateShape = ["", "_heart", "_bell", "_knife"] //"" is firmalife chocolate bar + const chocolatemolds = ["tfc:ceramic/ingot_mold", "tfcchannelcasting:heart_mold", "tfc:ceramic/bell_mold", "tfc:ceramic/knife_blade_mold"] + + for (const ctype of chocolateType) { + for (const cshape of chocolateShape) { + global.processorRecipe(event, `${ctype}_${cshape}_melting`, 100, 16, { + circuit: 1, + itemInputs:[cshape == "" ? `firmalife:food/${ctype}` : `tfcchannelcasting:food/${ctype}${cshape}`], + fluidOutputs:[cshape == "" ? Fluid.of(`tfcchannelcasting:${ctype}`, 144) : Fluid.of(`tfcchannelcasting:${ctype}`, 100)], + }) + } + } + + for (const ctype of chocolateType) { + for (const cshape of chocolateShape) { + global.processorRecipe(event, `${ctype}_${cshape}_casting`, 100, 16, { + fluidInputs: [cshape == "" ? Fluid.of(`tfcchannelcasting:${ctype}`, 144) : Fluid.of(`tfcchannelcasting:${ctype}`, 100)], + itemOutputs: [cshape == "" ? `firmalife:food/${ctype}` : `tfcchannelcasting:food/${ctype}${cshape}`], + itemOutputProvider: TFC.isp.of(cshape == "" ? `firmalife:food/${ctype}` : `tfcchannelcasting:food/${ctype}${cshape}`).resetFood(), + notConsumable: [chocolatemolds[chocolateShape.indexOf(cshape)]] + }) + } + } + + //#endregion + + //#region Food preservation const smoking_meats = Ingredient.of('#tfc:foods/raw_meats').itemIds; + const smoking_cheese = Ingredient.of('#firmalife:foods/cheeses').itemIds; const brining_veg = Ingredient.of('#firmalife:foods/pizza_ingredients').itemIds; const drying_fruits = Ingredient.of('#tfc:foods/fruits').itemIds; const drying_recipes = [ @@ -366,7 +411,7 @@ function registerTFGFoodRecipes(event) { const brining_ingredients = smoking_meats.concat(brining_veg); brining_ingredients.forEach(item => { - processorRecipeText(`${item.replace(/:/g, "/")}/brining`, 200, 16, "tfg.food_recipe.brining", { + global.processorRecipeText(event, `${item.replace(/:/g, "/")}/brining`, 200, 16, "tfg.food_recipe.brining", { circuit: 5, itemInputs: [item], itemOutputs: [item], @@ -376,7 +421,17 @@ function registerTFGFoodRecipes(event) { }) smoking_meats.forEach(item => { - processorRecipeText(`${item.replace(/:/g, "/")}/smoking`, 200, 16, "tfg.food_recipe.smoking", { + global.processorRecipeText(event, `${item.replace(/:/g, "/")}/smoking`, 200, 16, "tfg.food_recipe.smoking", { + circuit: 6, + itemInputs: [item], + itemOutputs: [item], + fluidInputs: [Fluid.of('gtceu:wood_gas', 5)], + itemOutputProvider: TFC.isp.copyInput().addTrait("firmalife:smoked") + }) + }) + + smoking_cheese.forEach(item => { + global.processorRecipeText(event, `${item.replace(/:/g, "/")}/smoking`, 200, 16, "tfg.food_recipe.smoking", { circuit: 6, itemInputs: [item], itemOutputs: [item], @@ -386,7 +441,7 @@ function registerTFGFoodRecipes(event) { }) drying_fruits.forEach(item => { - processorRecipeText(`${item.replace(/:/g, "/")}/drying`, 200, 16, "tfg.food_recipe.drying", { + global.processorRecipeText(event, `${item.replace(/:/g, "/")}/drying`, 200, 16, "tfg.food_recipe.drying", { circuit: 6, itemInputs: [item], itemOutputs: [item], @@ -396,7 +451,7 @@ function registerTFGFoodRecipes(event) { }) drying_recipes.forEach(item => { - processorRecipeText(`${item.input.replace(/:/g, "/")}/drying`, 200, 16, "tfg.food_recipe.drying", { + global.processorRecipeText(event, `${item.input.replace(/:/g, "/")}/drying`, 200, 16, "tfg.food_recipe.drying", { circuit: 6, itemInputs: [item.input], itemOutputs: [item.output], @@ -406,7 +461,7 @@ function registerTFGFoodRecipes(event) { }) global.FOOD_FRUIT.forEach(fruit => { - processorRecipeText(`${fruit.name}/drying`, 100, 120, "tfg.food_recipe.freeze_drying", { + global.processorRecipeText(event, `${fruit.name}/drying`, 100, 120, "tfg.food_recipe.freeze_drying", { circuit: 7, itemInputs: [fruit.id, 'tfg:foil_pack', 'tfg:dry_ice'], itemOutputs: [`tfg:food/freeze_dried/${fruit.name}`], @@ -418,66 +473,66 @@ function registerTFGFoodRecipes(event) { //#region Meal Bags //1 Input - processorRecipeText('meal_bag/1', 100, 120, "tfg.food_recipe.freeze_drying", { + global.processorRecipeText(event, 'meal_bag/1', 100, 120, "tfg.food_recipe.freeze_drying", { circuit: 10, itemInputs: ['1x #tfg:foods/usable_in_meal_bag', '2x tfg:foil_pack', 'tfg:dry_ice'], itemOutputs: ['2x tfg:food/meal_bag'], itemOutputProvider: TFC.isp.of('2x tfg:food/meal_bag').meal( (food => food.hunger(4).saturation(1.5).decayModifier(4.5)), [ - (portion) => portion.nutrientModifier(1).saturationModifier(0.8).waterModifier(0.8), + (portion) => portion.nutrientModifier(1).saturationModifier(0.8).waterModifier(0) ]).addTrait('tfg:freeze_dried') }) //2 Input - processorRecipeText('meal_bag/2', 100, 120, "tfg.food_recipe.freeze_drying", { + global.processorRecipeText(event, 'meal_bag/2', 100, 120, "tfg.food_recipe.freeze_drying", { circuit: 11, itemInputs: ['2x #tfg:foods/usable_in_meal_bag', '2x tfg:foil_pack', 'tfg:dry_ice'], itemOutputs: ['2x tfg:food/meal_bag'], itemOutputProvider: TFC.isp.of('2x tfg:food/meal_bag').meal( (food => food.hunger(4).saturation(1.5).decayModifier(4.5)), [ - (portion) => portion.nutrientModifier(1).saturationModifier(0.8).waterModifier(0.8), + (portion) => portion.nutrientModifier(1).saturationModifier(0.8).waterModifier(0) ]).addTrait('tfg:freeze_dried') }) //3 Input - processorRecipeText('meal_bag/3', 100, 120, "tfg.food_recipe.freeze_drying", { + global.processorRecipeText(event, 'meal_bag/3', 100, 120, "tfg.food_recipe.freeze_drying", { circuit: 12, itemInputs: ['3x #tfg:foods/usable_in_meal_bag', '2x tfg:foil_pack', 'tfg:dry_ice'], itemOutputs: ['2x tfg:food/meal_bag'], itemOutputProvider: TFC.isp.of('2x tfg:food/meal_bag').meal( (food => food.hunger(4).saturation(1.5).decayModifier(4.5)), [ - (portion) => portion.nutrientModifier(1).saturationModifier(0.8).waterModifier(0.8), + (portion) => portion.nutrientModifier(1).saturationModifier(0.8).waterModifier(0) ]).addTrait('tfg:freeze_dried') }) //4 Input - processorRecipeText('meal_bag/4', 100, 120, "tfg.food_recipe.freeze_drying", { + global.processorRecipeText(event, 'meal_bag/4', 100, 120, "tfg.food_recipe.freeze_drying", { circuit: 13, itemInputs: ['4x #tfg:foods/usable_in_meal_bag', '2x tfg:foil_pack', 'tfg:dry_ice'], itemOutputs: ['2x tfg:food/meal_bag'], itemOutputProvider: TFC.isp.of('2x tfg:food/meal_bag').meal( (food => food.hunger(4).saturation(1.5).decayModifier(4.5)), [ - (portion) => portion.nutrientModifier(1).saturationModifier(0.8).waterModifier(0.8), + (portion) => portion.nutrientModifier(1).saturationModifier(0.8).waterModifier(0) ]).addTrait('tfg:freeze_dried') }) //5 Input - processorRecipeText('meal_bag/5', 100, 120, "tfg.food_recipe.freeze_drying", { + global.processorRecipeText(event, 'meal_bag/5', 100, 120, "tfg.food_recipe.freeze_drying", { circuit: 14, itemInputs: ['5x #tfg:foods/usable_in_meal_bag', '2x tfg:foil_pack', 'tfg:dry_ice'], itemOutputs: ['2x tfg:food/meal_bag'], itemOutputProvider: TFC.isp.of('2x tfg:food/meal_bag').meal( (food => food.hunger(4).saturation(1.5).decayModifier(4.5)), [ - (portion) => portion.nutrientModifier(1).saturationModifier(0.8).waterModifier(0.8), + (portion) => portion.nutrientModifier(1).saturationModifier(0.8).waterModifier(0) ]).addTrait('tfg:freeze_dried') }) //#endregion - //#region ================= Misc ================= + //#region Jams global.TFC_JAMS.forEach(name => { - processorRecipe(`${name}_jam`, 200, 8, { + global.processorRecipe(event, `${name}_jam`, 200, 8, { circuit: 15, itemInputs: [`4x tfc:food/${name}`, "#tfc:sweetener", "4x #tfc:empty_jar_with_lid"], fluidInputs: ['#tfg:clean_water 100'], @@ -485,7 +540,7 @@ function registerTFGFoodRecipes(event) { itemOutputProvider: TFC.isp.of(`4x tfc:jar/${name}`).copyFood() }) - processorRecipe(`${name}_jam_no_seal`, 200, 8, { + global.processorRecipe(event, `${name}_jam_no_seal`, 200, 8, { circuit: 16, itemInputs: [`4x tfc:food/${name}`, "#tfc:sweetener", "4x tfc:empty_jar"], fluidInputs: ['#tfg:clean_water 100'], @@ -495,7 +550,7 @@ function registerTFGFoodRecipes(event) { }) global.FIRMALIFE_JAMS.forEach(name => { - processorRecipe(`${name}_jam`, 200, 8, { + global.processorRecipe(event, `${name}_jam`, 200, 8, { circuit: 15, itemInputs: [`4x firmalife:food/${name}`, "#tfc:sweetener", "4x #tfc:empty_jar_with_lid"], fluidInputs: ['#tfg:clean_water 100'], @@ -503,7 +558,7 @@ function registerTFGFoodRecipes(event) { itemOutputProvider: TFC.isp.of(`4x firmalife:jar/${name}`).copyFood() }) - processorRecipe(`${name}_jam_no_seal`, 200, 8, { + global.processorRecipe(event, `${name}_jam_no_seal`, 200, 8, { circuit: 16, itemInputs: [`4x firmalife:food/${name}`, "#tfc:sweetener", "4x tfc:empty_jar"], fluidInputs: ['#tfg:clean_water 100'], @@ -512,23 +567,24 @@ function registerTFGFoodRecipes(event) { }) }) - cookingRecipe("pasta", "firmalife:food/raw_egg_noodles", "firmalife:food/cooked_pasta", "#tfg:clean_water 100") + //#endregion + //#region Misc - cookingRecipe("corn_tortilla", "firmalife:food/masa", "firmalife:food/corn_tortilla") + global.cookingRecipe(event, "pasta", "firmalife:food/raw_egg_noodles", "firmalife:food/cooked_pasta", "#tfg:clean_water 100") - cookingRecipe("baked_potato", "tfc:food/potato", "tfc:food/baked_potato") + global.cookingRecipe(event, "corn_tortilla", "firmalife:food/masa", "firmalife:food/corn_tortilla") - cookingRecipe("boiled_egg", "#firmalife:foods/raw_eggs", "tfc:food/boiled_egg", "#tfg:clean_water 200") + global.cookingRecipe(event, "baked_potato", "tfc:food/potato", "tfc:food/baked_potato") - cookingRecipe("cooked_rice", "tfc:food/rice_grain", "tfc:food/cooked_rice", "#tfg:clean_water 200") + global.cookingRecipe(event, "cooked_rice", "tfc:food/rice_grain", "tfc:food/cooked_rice", "#tfg:clean_water 200") - processorRecipe("pasta_tomato_sauce", 60, 8, { + global.processorRecipe(event, "pasta_tomato_sauce", 60, 8, { itemInputs: ["firmalife:food/cooked_pasta", "firmalife:food/tomato_sauce"], itemOutputs: ["firmalife:food/pasta_with_tomato_sauce"], itemOutputProvider: TFC.isp.of('firmalife:food/pasta_with_tomato_sauce').copyFood() }) - processorRecipe(`masa_flour`, 100, 8, { + global.processorRecipe(event, `masa_flour`, 100, 8, { circuit: 31, itemInputs: [`firmalife:food/nixtamal`], itemOutputs: [`4x firmalife:food/masa_flour`], @@ -553,7 +609,7 @@ function registerTFGFoodRecipes(event) { B: '#forge:tools/mortars' }, 0, 0).id(`tfg:mortar/olive_paste`) - processorRecipe('firmalife_masa', 300, 2, { + global.processorRecipe(event, 'firmalife_masa', 300, 2, { circuit: 3, itemInputs: ["firmalife:food/masa_flour"], fluidInputs: ['#tfg:clean_water 100'], @@ -561,13 +617,13 @@ function registerTFGFoodRecipes(event) { itemOutputProvider: TFC.isp.of("2x firmalife:food/masa").copyFood() }) - processorRecipe("tortilla_chips", 40, 16, { + global.processorRecipe(event, "tortilla_chips", 40, 16, { itemInputs: ["firmalife:food/taco_shell", "tfc:powder/salt"], itemOutputs: ["firmalife:food/tortilla_chips"], itemOutputProvider: TFC.isp.of("firmalife:food/tortilla_chips").copyFood() }) - processorRecipe("tomato_sauce", 300, 8, { + global.processorRecipe(event, "tomato_sauce", 300, 8, { circuit: 1, itemInputs: ['tfc:food/tomato', 'tfc:powder/salt', 'tfc:food/garlic'], fluidInputs: ['#tfg:clean_water 200'], @@ -575,60 +631,70 @@ function registerTFGFoodRecipes(event) { itemOutputProvider: TFC.isp.of('5x firmalife:food/tomato_sauce').copyOldestFood() }) - processorRecipe("tomato_sauce_mix", 600, 8, { + global.processorRecipe(event, "tomato_sauce_mix", 600, 8, { circuit: 2, itemInputs: ['tfc:food/tomato', 'tfc:powder/salt', 'tfc:food/garlic'], itemOutputs: ['5x firmalife:food/tomato_sauce_mix'], - itemOutputProvider: TFC.isp.of('5x firmalife:food/tomato_sauce_mix').copyOldestFood(), + itemOutputProvider: TFC.isp.of('5x firmalife:food/tomato_sauce_mix').copyOldestFood() }) - processorRecipe("tomato_sauce_from_mix", 200, 8, { + global.processorRecipe(event, "tomato_sauce_from_mix", 200, 8, { itemInputs: ['firmalife:food/tomato_sauce_mix'], fluidInputs: ['#tfg:clean_water 200'], itemOutputs: ['firmalife:food/tomato_sauce'], - itemOutputProvider: TFC.isp.of('firmalife:food/tomato_sauce').copyOldestFood(), + itemOutputProvider: TFC.isp.of('firmalife:food/tomato_sauce').copyOldestFood() }) - processorRecipe("olive_paste", 60, 8, { + global.processorRecipe(event, "olive_paste", 60, 8, { itemInputs: ['tfc:food/olive'], itemOutputs: ['2x tfc:olive_paste'], itemOutputProvider: TFC.isp.of('2x tfc:olive_paste'), circuit: 3 }) - processorRecipe("soybean_paste", 60, 8, { + global.processorRecipe(event, "soybean_paste", 60, 8, { itemInputs: ['firmalife:food/dehydrated_soybeans'], itemOutputs: ['firmalife:food/soybean_paste'], - itemOutputProvider: TFC.isp.of('firmalife:food/soybean_paste').copyOldestFood(), + itemOutputProvider: TFC.isp.of('firmalife:food/soybean_paste').copyOldestFood() }) - processorRecipeText('calorie_paste', 100, 512, "tfg.food_recipe.freeze_drying", { + global.processorRecipeText(event, 'calorie_paste', 100, 512, "tfg.food_recipe.freeze_drying", { circuit: 8, itemInputs: ['firmalife:food/soybean_paste', 'tfg:foil_pack', '2x gtceu:small_meat_dust', 'tfg:dry_ice'], itemOutputs: ['tfg:food/calorie_paste'], fluidInputs: [Fluid.of('gtceu:fermented_biomass', 40)], - itemOutputProvider: TFC.isp.of('tfg:food/calorie_paste').copyOldestFood().addTrait('tfg:freeze_dried'), + itemOutputProvider: TFC.isp.of('tfg:food/calorie_paste').copyOldestFood().addTrait('tfg:freeze_dried') + }) + + global.processorRecipe(event, "boiled_egg", 200, 16, { + circuit: 1, + itemInputs: ["#firmalife:foods/raw_eggs"], + fluidInputs: ["#tfg:clean_water 200"], + itemOutputs: ["tfc:food/boiled_egg"], + itemOutputProvider: TFC.isp.of("tfc:food/boiled_egg").copyFood() }) //Kelp - cookingRecipe("dried_kelp_a", "tfc:plant/winged_kelp", "tfc:food/dried_kelp") - cookingRecipe("dried_kelp_b", "tfc:plant/leafy_kelp", "tfc:food/dried_kelp") - cookingRecipe("dried_kelp_c", "tfc:plant/giant_kelp_flower", "tfc:food/dried_kelp") + global.cookingRecipe(event, "dried_kelp_a", "tfc:plant/winged_kelp", "tfc:food/dried_kelp") + global.cookingRecipe(event, "dried_kelp_b", "tfc:plant/leafy_kelp", "tfc:food/dried_kelp") + global.cookingRecipe(event, "dried_kelp_c", "tfc:plant/giant_kelp_flower", "tfc:food/dried_kelp") //Seaweed - cookingRecipe("dried_seaweed_a", "tfc:food/fresh_seaweed", "tfc:food/dried_seaweed") - cookingRecipe("dried_seaweed_b", "tfc:groundcover/seaweed", "tfc:food/dried_seaweed") + global.cookingRecipe(event, "dried_seaweed_a", "tfc:food/fresh_seaweed", "tfc:food/dried_seaweed") + global.cookingRecipe(event, "dried_seaweed_b", "tfc:groundcover/seaweed", "tfc:food/dried_seaweed") // Vinegar - processorRecipe('vinegar_alcohol', 600, GTValues.VA[GTValues.LV], { + global.processorRecipe(event, 'vinegar_alcohol', 600, GTValues.VA[GTValues.LV], { circuit: 5, itemInputs: ['#tfc:foods/fruits'], - fluidInputs: ['#tfc:alcohols 250'], - fluidOutputs: [Fluid.of('tfc:vinegar', 250)], + fluidInputs: ['#tfg:alcohols 250'], + fluidOutputs: [Fluid.of('tfc:vinegar', 250)] }) - // Pizza - processorRecipe("pizza_no_extra", 600, 16, { + //#region Pizza + + global.processorRecipe(event, "pizza_no_extra", 600, 16, { + circuit: 3, itemInputs: ["firmalife:food/pizza_dough", "firmalife:food/tomato_sauce", "firmalife:food/shredded_cheese"], itemOutputs: ["firmalife:food/raw_pizza"], itemOutputProvider: TFC.isp.of("firmalife:food/raw_pizza").meal( @@ -637,7 +703,7 @@ function registerTFGFoodRecipes(event) { ) }) - processorRecipe("pizza_1_extra", 600, 16, { + global.processorRecipe(event, "pizza_1_extra", 600, GTValues.VHA[GTValues.MV], { circuit: 1, itemInputs: ["firmalife:food/pizza_dough", "firmalife:food/tomato_sauce", "firmalife:food/shredded_cheese", "#firmalife:foods/pizza_ingredients"], itemOutputs: ["firmalife:food/raw_pizza"], @@ -647,7 +713,7 @@ function registerTFGFoodRecipes(event) { ) }) - processorRecipe("pizza_2_extra", 600, 16, { + global.processorRecipe(event, "pizza_2_extra", 600, GTValues.VHA[GTValues.MV], { circuit: 2, itemInputs: ["firmalife:food/pizza_dough", "firmalife:food/tomato_sauce", "firmalife:food/shredded_cheese", "2x #firmalife:foods/pizza_ingredients"], itemOutputs: ["firmalife:food/raw_pizza"], @@ -657,68 +723,73 @@ function registerTFGFoodRecipes(event) { ) }) - processorRecipe("pizza_dough", 300, 16, { + global.processorRecipe(event, "pizza_dough", 300, 16, { itemInputs: ['firmalife:spice/basil_leaves', '#tfc:foods/dough', 'tfc:powder/salt'], fluidInputs: ['#firmalife:oils 100'], itemOutputs: ['4x firmalife:food/pizza_dough'], itemOutputProvider: TFC.isp.of("4x firmalife:food/pizza_dough").copyOldestFood() }) - processorRecipe("shredded_cheese", 100, 16, { + //#endregion + + global.processorRecipe(event, "shredded_cheese", 100, 16, { itemInputs: ['#firmalife:foods/cheeses'], itemOutputs: ['4x firmalife:food/shredded_cheese'], circuit: 30, itemOutputProvider: TFC.isp.of('4x firmalife:food/shredded_cheese').copyFood() }) - processorRecipe("basil", 20, 16, { + global.processorRecipe(event, "basil", 20, 16, { itemInputs: ['firmalife:plant/basil'], itemOutputs: ['2x firmalife:spice/basil_leaves'], circuit: 30, itemOutputProvider: TFC.isp.of('2x firmalife:spice/basil_leaves').resetFood() }) - // Ice cream - processorRecipe("vanilla_ice_cream", 300, 16, { + //#region Ice cream + + global.processorRecipe(event, "vanilla_ice_cream", 300, 16, { itemInputs: ['firmalife:ice_shavings', '#tfc:sweetener', 'firmalife:spice/vanilla'], itemOutputs: ['2x firmalife:food/vanilla_ice_cream'], fluidInputs: [Fluid.of('firmalife:cream', 1000)], itemOutputProvider: TFC.isp.of("2x firmalife:food/vanilla_ice_cream").resetFood() }) - processorRecipe("chocolate_ice_cream", 300, 16, { + global.processorRecipe(event, "chocolate_ice_cream", 300, 16, { itemInputs: ['firmalife:food/vanilla_ice_cream'], itemOutputs: ['firmalife:food/chocolate_ice_cream'], fluidInputs: [Fluid.of('tfcchannelcasting:milk_chocolate', 100)], itemOutputProvider: TFC.isp.of("firmalife:food/chocolate_ice_cream").resetFood() }) - processorRecipe("strawberry_ice_cream", 300, 16, { + global.processorRecipe(event, "strawberry_ice_cream", 300, 16, { itemInputs: ['firmalife:food/vanilla_ice_cream', '2x tfc:food/strawberry'], itemOutputs: ['firmalife:food/strawberry_ice_cream'], itemOutputProvider: TFC.isp.of("firmalife:food/strawberry_ice_cream").resetFood() }) - processorRecipe("cookie_dough_ice_cream", 300, 16, { + global.processorRecipe(event, "cookie_dough_ice_cream", 300, 16, { itemInputs: [`firmalife:food/vanilla_ice_cream`, `firmalife:food/chocolate_chip_cookie_dough`], itemOutputs: [`2x firmalife:food/cookie_dough_ice_cream`], itemOutputProvider: TFC.isp.of("firmalife:food/cookie_dough_ice_cream").resetFood() }) - processorRecipe("banana_split", 500, 16, { + global.processorRecipe(event, "banana_split", 500, 16, { itemInputs: ['firmalife:food/vanilla_ice_cream', 'firmalife:food/strawberry_ice_cream', 'firmalife:food/chocolate_ice_cream', 'firmalife:food/pineapple', 'tfc:food/cherry', '2x tfc:food/banana'], itemOutputs: ['2x firmalife:food/banana_split'], itemOutputProvider: TFC.isp.of('2x firmalife:food/banana_split').resetFood() }) - processorRecipe("butter", 300, 16, { + //#endregion + + global.processorRecipe(event, "butter", 300, 16, { itemInputs: ["tfc:powder/salt"], fluidInputs: [Fluid.of('firmalife:cream', 1000)], itemOutputs: ["firmalife:food/butter"], itemOutputProvider: TFC.isp.of('firmalife:food/butter').resetFood() }) - processorRecipe("pie_dough", 300, 16, { + global.processorRecipe(event, "pie_dough", 300, 16, { circuit: 2, itemInputs: ['#tfc:sweetener', 'firmalife:food/butter', '#tfc:foods/flour'], fluidInputs: ['#tfg:clean_water 1000'], @@ -726,7 +797,7 @@ function registerTFGFoodRecipes(event) { itemOutputProvider: TFC.isp.of('firmalife:food/pie_dough').copyOldestFood() }) - processorRecipe("pumpkin_pie_dough", 300, 16, { + global.processorRecipe(event, "pumpkin_pie_dough", 300, 16, { circuit: 2, itemInputs: ['#tfc:sweetener', '#forge:eggs', '2x tfc:food/pumpkin_chunks', '#tfc:foods/flour'], fluidInputs: ['#tfg:clean_water 1000'], @@ -734,139 +805,153 @@ function registerTFGFoodRecipes(event) { itemOutputProvider: TFC.isp.of('firmalife:food/pumpkin_pie_dough').copyOldestFood() }) - processorRecipe("raw_pumpkin_pie", 20, 8, { + global.processorRecipe(event, "raw_pumpkin_pie", 20, 8, { itemInputs: ["firmalife:food/pumpkin_pie_dough", "#firmalife:pie_pans"], itemOutputs: ["firmalife:food/raw_pumpkin_pie"], itemOutputProvider: TFC.isp.of("firmalife:food/raw_pumpkin_pie").copyFood() }) - processorRecipe("cookie_dough", 300, 16, { + global.processorRecipe(event, "cookie_dough", 300, 16, { itemInputs: ['#tfc:sweetener', '#forge:eggs', 'firmalife:food/butter', '#tfc:foods/flour', "firmalife:spice/vanilla"], itemOutputs: ['4x firmalife:food/cookie_dough'], itemOutputProvider: TFC.isp.of('4x firmalife:food/cookie_dough').copyOldestFood() }) - processorRecipe("chocolate_chip_cookie_dough", 300, 16, { + global.processorRecipe(event, "chocolate_chip_cookie_dough", 300, 16, { itemInputs: ['4x firmalife:food/cookie_dough', '#firmalife:foods/chocolate'], itemOutputs: ['4x firmalife:food/chocolate_chip_cookie_dough'], itemOutputProvider: TFC.isp.of('4x firmalife:food/chocolate_chip_cookie_dough').copyOldestFood() }) - processorRecipe("hardtack_dough", 300, 16, { + global.processorRecipe(event, "hardtack_dough", 300, 16, { itemInputs: ['tfc:powder/salt', '#tfc:foods/flour'], fluidInputs: ['#tfg:clean_water 1000'], itemOutputs: ['4x firmalife:food/hardtack_dough'], - itemOutputProvider: TFC.isp.of('4x firmalife:food/hardtack_dough').copyOldestFood() + circuit: 3, + itemOutputProvider: TFC.isp.of('4x firmalife:food/hardtack_dough').copyFood() }) - processorRecipe("yeast_starter", 1200, 8, { + global.processorRecipe(event, "yeast_starter", 1200, 8, { circuit: 2, fluidInputs: [Fluid.of('firmalife:yeast_starter', 100)], fluidOutputs: [Fluid.of('firmalife:yeast_starter', 600)], - itemInputs: ['#tfc:foods/flour'], + itemInputs: ['#tfc:foods/flour'] }) - processorRecipe("yeast_starter_from_water", 7200, 8, { + global.processorRecipe(event, "yeast_starter_from_water", 7200, 8, { circuit: 10, itemInputs: ['#tfc:foods/fruits'], - fluidInputs: ['#tfg:clean_water 100'], - fluidOutputs: [Fluid.of('firmalife:yeast_starter', 100)], + fluidInputs: ['#tfg:clean_water 100', 'gtceu:nitrogen 100'], + fluidOutputs: [Fluid.of('firmalife:yeast_starter', 100)] }) - processorRecipe("cocoa_dust", 100, 4, { + global.processorRecipe(event, "cocoa_dust", 100, 4, { + circuit: 1, itemInputs: ["firmalife:food/roasted_cocoa_beans"], itemOutputs: ["gtceu:cocoa_dust"], itemOutputProvider: TFC.isp.of("gtceu:cocoa_dust") }) - processorRecipe("red_grapes", 50, 8, { + global.processorRecipe(event, "cocoa_butter", 100, 4, { + circuit: 2, + itemInputs: ["firmalife:food/roasted_cocoa_beans"], + itemOutputs: ["firmalife:food/cocoa_butter"], + itemOutputProvider: TFC.isp.of("firmalife:food/cocoa_butter") + }) + + global.processorRecipe(event, "red_grapes", 50, 8, { itemInputs: ["firmalife:food/red_grapes"], itemOutputs: ["firmalife:food/smashed_red_grapes"], - itemOutputProvider: TFC.isp.of('firmalife:food/smashed_red_grapes').copyOldestFood() + itemOutputProvider: TFC.isp.of('firmalife:food/smashed_red_grapes').copyFood() }) - processorRecipe("white_grapes", 50, 8, { + global.processorRecipe(event, "white_grapes", 50, 8, { itemInputs: ["firmalife:food/white_grapes"], itemOutputs: ["firmalife:food/smashed_white_grapes"], - itemOutputProvider: TFC.isp.of('firmalife:food/smashed_white_grapes').copyOldestFood() + itemOutputProvider: TFC.isp.of('firmalife:food/smashed_white_grapes').copyFood() }) - processorRecipe("cured_maize", 300, 8, { + global.processorRecipe(event, "cured_maize", 300, 8, { circuit: 1, itemInputs: ["tfc:food/maize_grain"], inputFluids: [Fluid.of('tfc:limewater', 100)], itemOutputs: ["firmalife:food/cured_maize"], - itemOutputProvider: TFC.isp.of('firmalife:food/cured_maize').copyOldestFood() + itemOutputProvider: TFC.isp.of('firmalife:food/cured_maize').copyFood() }) - processorRecipe("soy_mixture", 300, 8, { + global.processorRecipe(event, "soy_mixture", 300, 8, { circuit: 1, itemInputs: ["tfc:food/soybean", 'tfc:powder/salt'], fluidInputs: ['#tfg:clean_water 50'], itemOutputs: ["firmalife:food/soy_mixture"], - itemOutputProvider: TFC.isp.of('firmalife:food/soy_mixture').copyOldestFood() + itemOutputProvider: TFC.isp.of('firmalife:food/soy_mixture').copyFood() }) - processorRecipe("brown_mushroom", 100, 8, { + global.processorRecipe(event, "brown_mushroom", 100, 8, { circuit: 30, itemInputs: ["minecraft:brown_mushroom_block"], itemOutputs: ["4x minecraft:brown_mushroom"], itemOutputProvider: TFC.isp.of("4x minecraft:brown_mushroom").resetFood() }) - processorRecipe("red_mushroom", 100, 8, { + global.processorRecipe(event, "red_mushroom", 100, 8, { circuit: 30, itemInputs: ["minecraft:red_mushroom_block"], itemOutputs: ["4x minecraft:red_mushroom"], itemOutputProvider: TFC.isp.of("4x minecraft:red_mushroom").resetFood() }) - processorRecipe("cut_pumpkin", 100, 8, { + global.processorRecipe(event, "cut_pumpkin", 100, 8, { circuit: 30, itemInputs: ["tfc:pumpkin"], itemOutputs: ["4x tfc:food/pumpkin_chunks"], - itemOutputProvider: TFC.isp.of("4x tfc:food/pumpkin_chunks").copyOldestFood() + itemOutputProvider: TFC.isp.of("4x tfc:food/pumpkin_chunks").copyFood() }) - processorRecipe("cut_melon", 100, 8, { + global.processorRecipe(event, "cut_melon", 100, 8, { circuit: 30, itemInputs: ["tfc:melon"], itemOutputs: ["4x tfc:food/melon_slice"], - itemOutputProvider: TFC.isp.of("4x tfc:food/melon_slice").copyOldestFood() + itemOutputProvider: TFC.isp.of("4x tfc:food/melon_slice").copyFood() }) - processorRecipe("salsa", 300, 8, { + global.processorRecipe(event, "salsa", 300, 8, { circuit: 1, - itemInputs: ['tfc:food/tomato', 'tfc:powder/salt', 'firmalife:plant/cilantro'], + itemInputs: ['tfc:food/tomato', 'tfc:powder/salt', 'tfg:spice/cilantro_leaves'], itemOutputs: ['5x firmalife:food/salsa'], - itemOutputProvider: TFC.isp.of('5x firmalife:food/salsa').copyOldestFood() + itemOutputProvider: TFC.isp.of('5x firmalife:food/salsa').copyFood() }) - processorRecipe("bacon", 300, 8, { + global.processorRecipe(event, "bacon", 300, 8, { circuit: 1, - itemInputs: [/*TFC.ingredient.hasTrait(*/'tfc:food/pork'/*, 'firmalife:smoked')*/, 'tfc:powder/salt'], + itemInputs: ['tfc:food/pork', 'tfc:powder/salt'], itemOutputs: ['4x firmalife:food/bacon'], - itemOutputProvider: TFC.isp.of('4x firmalife:food/bacon').copyOldestFood() + fluidInputs: ['gtceu:wood_gas 5', 'tfc:brine 100'], + itemOutputProvider: TFC.isp.of('4x firmalife:food/bacon') + .addTrait("firmalife:smoked") + .addTrait("tfc:brined") + .addTrait("tfc:salted") + .copyFood() }) - processorRecipe("picked_egg", 1000, 8, { + global.processorRecipe(event, "pickled_egg", 1000, 8, { circuit: 1, itemInputs: ['minecraft:clay_ball', 'tfc:powder/wood_ash', 'tfc:powder/salt', 'tfc:food/boiled_egg'], itemOutputs: ['firmalife:food/pickled_egg'], - itemOutputProvider: TFC.isp.of('firmalife:food/pickled_egg').copyOldestFood() + itemOutputProvider: TFC.isp.of('firmalife:food/pickled_egg').copyFood() }) - processorRecipe("garlic_bread", 300, 8, { + global.processorRecipe(event, "garlic_bread", 300, 8, { circuit: 1, itemInputs: ['firmalife:food/toast', 'firmalife:food/butter', 'tfc:food/garlic'], itemOutputs: ['firmalife:food/garlic_bread'], itemOutputProvider: TFC.isp.of('firmalife:food/garlic_bread').copyOldestFood() }) - // Alcohols + //#region Alcohols global.TFC_ALCOHOL.forEach(alcohol => { - processorRecipe(alcohol.id.replace(/:/g, "_"), 2400, 1, { + global.processorRecipe(event, alcohol.id.replace(/:/g, "_"), 2400, 1, { itemInputs: [alcohol.ingredient], fluidInputs: ['#tfg:clean_water 500', 'firmalife:yeast_starter 10'], fluidOutputs: [Fluid.of(alcohol.id, 500)], @@ -875,9 +960,10 @@ function registerTFGFoodRecipes(event) { }) }) - // Cakes + //#endregion + //#region Cakes - processorRecipe("cake_base", 300, 8, { + global.processorRecipe(event, "cake_base", 300, 8, { circuit: 4, itemInputs: ["#forge:eggs", "2x #tfg:sugars", "2x #tfc:foods/flour"], fluidInputs: ['#tfc:milks 1000'], @@ -885,46 +971,54 @@ function registerTFGFoodRecipes(event) { itemOutputProvider: TFC.isp.of("createaddition:cake_base").copyOldestFood() }) - cookingRecipe("baked_cake_base", "createaddition:cake_base", "createaddition:cake_base_baked") + global.cookingRecipe(event, "baked_cake_base", "createaddition:cake_base", "createaddition:cake_base_baked") - processorRecipe("vanilla_cake", 300, 8, { + global.processorRecipe(event, "vanilla_cake", 300, 8, { itemInputs: ['createaddition:cake_base_baked', '3x tfc:food/strawberry', 'firmalife:spice/vanilla'], fluidInputs: [Fluid.of("tfcchannelcasting:white_chocolate", 400)], - itemOutputs: ["tfc:cake"] + itemOutputs: ["tfc:cake"], + itemOutputProvider: TFC.isp.of("tfc:cake").copyOldestFood() }) - processorRecipe("milk_chocolate_cake", 300, 8, { + global.processorRecipe(event, "milk_chocolate_cake", 300, 8, { itemInputs: ['createaddition:cake_base_baked', '3x tfc:food/cherry', 'firmalife:food/cocoa_powder'], fluidInputs: [Fluid.of("tfcchannelcasting:milk_chocolate", 400)], - itemOutputs: ["createaddition:chocolate_cake"] + itemOutputs: ["createaddition:chocolate_cake"], + itemOutputProvider: TFC.isp.of("createaddition:chocolate_cake").copyOldestFood() }) - processorRecipe("dark_chocolate_cake", 300, 8, { + global.processorRecipe(event, "dark_chocolate_cake", 300, 8, { itemInputs: ['createaddition:cake_base_baked', '3x tfc:food/cherry', 'firmalife:food/cocoa_powder'], fluidInputs: [Fluid.of("tfcchannelcasting:dark_chocolate", 400)], - itemOutputs: ["createaddition:chocolate_cake"] + itemOutputs: ["createaddition:chocolate_cake"], + itemOutputProvider: TFC.isp.of("createaddition:chocolate_cake").copyOldestFood() }) - processorRecipe("maple_honey_cake", 300, 8, { + global.processorRecipe(event, "maple_honey_cake", 300, 8, { itemInputs: ['createaddition:cake_base_baked', '4x firmalife:raw_honey'], fluidInputs: [Fluid.of("afc:maple_syrup", 1000)], - itemOutputs: ["createaddition:honey_cake"] + itemOutputs: ["createaddition:honey_cake"], + itemOutputProvider: TFC.isp.of("createaddition:honey_cake").copyOldestFood() }) - processorRecipe("birch_honey_cake", 300, 8, { + global.processorRecipe(event, "birch_honey_cake", 300, 8, { itemInputs: ['createaddition:cake_base_baked', '4x firmalife:raw_honey'], fluidInputs: [Fluid.of("afc:birch_syrup", 1000)], - itemOutputs: ["createaddition:honey_cake"] + itemOutputs: ["createaddition:honey_cake"], + itemOutputProvider: TFC.isp.of("createaddition:honey_cake").copyOldestFood() }) - processorRecipe("birtday_cake", 300, GTValues.VA[GTValues.HV], { + global.processorRecipe(event, "birtday_cake", 300, GTValues.VA[GTValues.HV], { itemInputs: ['createaddition:cake_base', '4x species:birt_egg', '4x tfc:food/blueberry', '2x minecraft:chorus_fruit', 'gtceu:blue_alloy_single_wire'], fluidInputs: [Fluid.of('gtceu:helium_3', 50)], - itemOutputs: ["species:birtday_cake"] + itemOutputs: ["species:birtday_cake"], + itemOutputProvider: TFC.isp.of("species:birtday_cake").copyOldestFood() }) - // Soup - processorRecipe("grain_soup", 300, 8, { + //#endregion + //#region Soup + + global.processorRecipe(event, "grain_soup", 300, 8, { circuit: 20, itemInputs: [ '3x #tfc:bowls', @@ -933,7 +1027,7 @@ function registerTFGFoodRecipes(event) { ], fluidInputs: [Fluid.of('minecraft:water', 100)], itemOutputs: ['3x tfc:food/grain_soup'], - itemOutputProvider: TFC.isp.of('3x tfc:food/grain_soup').meal( + itemOutputProvider: TFC.isp.of('3x tfc:food/grain_soup').simpleModifier('tfg:add_bowl').meal( (food) => food.hunger(5).water(1).saturation(1).decayModifier(4.5), [ (portion) => portion @@ -945,7 +1039,7 @@ function registerTFGFoodRecipes(event) { ) }) - processorRecipe("fruit_soup", 200, 8, { + global.processorRecipe(event, "fruit_soup", 200, 8, { circuit: 21, itemInputs: [ '3x #tfc:bowls', @@ -954,7 +1048,7 @@ function registerTFGFoodRecipes(event) { ], fluidInputs: [Fluid.of('minecraft:water', 100)], itemOutputs: ['3x tfc:food/fruit_soup'], - itemOutputProvider: TFC.isp.of('3x tfc:food/fruit_soup').meal( + itemOutputProvider: TFC.isp.of('3x tfc:food/fruit_soup').simpleModifier('tfg:add_bowl').meal( (food) => food.hunger(5).water(1).saturation(1).decayModifier(4.5), [ (portion) => portion @@ -966,7 +1060,7 @@ function registerTFGFoodRecipes(event) { ) }) - processorRecipe("vegetables_soup", 200, 8, { + global.processorRecipe(event, "vegetables_soup", 200, 8, { circuit: 22, itemInputs: [ '3x #tfc:bowls', @@ -975,7 +1069,7 @@ function registerTFGFoodRecipes(event) { ], fluidInputs: [Fluid.of('minecraft:water', 100)], itemOutputs: ['3x tfc:food/vegetables_soup'], - itemOutputProvider: TFC.isp.of('3x tfc:food/vegetables_soup').meal( + itemOutputProvider: TFC.isp.of('3x tfc:food/vegetables_soup').simpleModifier('tfg:add_bowl').meal( (food) => food.hunger(5).water(1).saturation(1).decayModifier(4.5), [ (portion) => portion @@ -987,7 +1081,7 @@ function registerTFGFoodRecipes(event) { ) }) - processorRecipe("protein_soup", 200, 8, { + global.processorRecipe(event, "protein_soup", 200, 8, { circuit: 23, itemInputs: [ '3x #tfc:bowls', @@ -996,7 +1090,7 @@ function registerTFGFoodRecipes(event) { ], fluidInputs: [Fluid.of('minecraft:water', 100)], itemOutputs: ['3x tfc:food/protein_soup'], - itemOutputProvider: TFC.isp.of('3x tfc:food/protein_soup').meal( + itemOutputProvider: TFC.isp.of('3x tfc:food/protein_soup').simpleModifier('tfg:add_bowl').meal( (food) => food.hunger(5).water(1).saturation(1).decayModifier(4.5), [ (portion) => portion @@ -1008,7 +1102,7 @@ function registerTFGFoodRecipes(event) { ) }) - processorRecipe("dairy_soup", 200, 8, { + global.processorRecipe(event, "dairy_soup", 200, 8, { circuit: 24, itemInputs: [ '3x #tfc:bowls', @@ -1017,7 +1111,7 @@ function registerTFGFoodRecipes(event) { ], fluidInputs: [Fluid.of('minecraft:water', 100)], itemOutputs: ['3x tfc:food/dairy_soup'], - itemOutputProvider: TFC.isp.of('3x tfc:food/dairy_soup').meal( + itemOutputProvider: TFC.isp.of('3x tfc:food/dairy_soup').simpleModifier('tfg:add_bowl').meal( (food) => food.hunger(5).water(1).saturation(1).decayModifier(4.5), [ (portion) => portion @@ -1027,7 +1121,9 @@ function registerTFGFoodRecipes(event) { .waterModifier(0.8) ] ) - }) + }) + + //#endregion // These don't need the ISP handling, they're just here to keep all the food recipes together @@ -1051,27 +1147,6 @@ function registerTFGFoodRecipes(event) { .EUt(GTValues.VA[GTValues.ULV]) .duration(600) - event.recipes.gtceu.fermenter('tfg:fermenter/curdled_milk') - .inputFluids(Fluid.of('minecraft:milk', 2000)) - .itemInputs('firmalife:rennet') - .outputFluids(Fluid.of('tfc:curdled_milk', 2000)) - .duration(2400) - .EUt(16) - - event.recipes.gtceu.fermenter('tfg:fermenter/curdled_yak_milk') - .inputFluids(Fluid.of('firmalife:yak_milk', 2000)) - .itemInputs('firmalife:rennet') - .outputFluids(Fluid.of('firmalife:curdled_yak_milk', 2000)) - .duration(2400) - .EUt(16) - - event.recipes.gtceu.fermenter('tfg:fermenter/curdled_goat_milk') - .inputFluids(Fluid.of('firmalife:goat_milk', 2000)) - .itemInputs('firmalife:rennet') - .outputFluids(Fluid.of('firmalife:curdled_goat_milk', 2000)) - .duration(2400) - .EUt(16) - // GT cocoa dust compat event.recipes.gtceu.macerator('firmalife:food/cocoa_powder') .itemInputs('gtceu:cocoa_dust') @@ -1085,33 +1160,41 @@ function registerTFGFoodRecipes(event) { event.recipes.tfc.quern('gtceu:cocoa_dust', 'firmalife:food/roasted_cocoa_beans') .id('tfg:quern/cocoa_dust'); - event.recipes.tfc.pot(['#tfc:bowls', 'firmalife:ice_shavings', 'firmalife:ice_shavings', 'firmalife:ice_shavings', 'firmalife:ice_shavings'], + // These don't seem to work with the set_bowl ISP modifier + event.recipes.tfc.pot(['#tfc:bowls', 'firmalife:ice_shavings', 'firmalife:ice_shavings', 'firmalife:ice_shavings', 'firmalife:ice_shavings'], Fluid.of('minecraft:water', 1000), 20, 10) - .itemOutput('tfg:food/ice_soup') + .itemOutput(TFC.isp.of('tfg:food/ice_soup')) .id('tfg:pot/ice_soup') + event.recipes.gtceu.food_processor('ice_soup') + .itemInputs('#tfc:bowls', '4x firmalife:ice_shavings') + .inputFluids(Fluid.of('minecraft:water', 1000)) + .itemOutputs('tfg:food/ice_soup') + .duration(60) + .EUt(16) + event.shaped('4x tfc:powder/salt', ['A', 'B'], {A: '#forge:dusts/salt', B: '#forge:tools/mortars'}) .id(`tfg:mortar/salt`) //#endregion - //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π—ΠΎΠ»ΠΎΡ‚ΠΎΠ΅ яблоко - - processorRecipe('golden_apple_from_red', 30 * 20, GTValues.VA[GTValues.HV], { + //Golden Apple + global.processorRecipe(event, 'golden_apple_from_red', 30 * 20, GTValues.VA[GTValues.HV], { itemInputs: ['tfc:food/red_apple'], fluidInputs: [Fluid.of('gtceu:gold', 144 * 8)], itemOutputs: ['minecraft:golden_apple'], - circuit: 5 + circuit: 5, + itemOutputProvider: TFC.isp.of('minecraft:golden_apple').resetFood() }) - processorRecipe('golden_apple_from_green', 30 * 20, GTValues.VA[GTValues.HV], { + + global.processorRecipe(event, 'golden_apple_from_green', 30 * 20, GTValues.VA[GTValues.HV], { itemInputs: ['tfc:food/green_apple'], fluidInputs: [Fluid.of('gtceu:gold', 144 * 8)], itemOutputs: ['minecraft:golden_apple'], - circuit: 5 + circuit: 5, + itemOutputProvider: TFC.isp.of('minecraft:golden_apple').resetFood() }) - //#endregion - //#region New foods event.recipes.tfc.heating('tfg:food/raw_birt', 200) @@ -1179,6 +1262,12 @@ function registerTFGFoodRecipes(event) { event.recipes.tfc.heating('tfg:food/raw_long_pig_filet', 200) .resultItem(TFC.isp.of('tfg:food/cooked_long_pig_filet').copyFood()) + + event.recipes.tfc.heating('tfg:food/brioche_dough', 200) + .resultItem(TFC.isp.of('tfg:food/brioche_bun').copyFood()); + + event.recipes.tfc.heating('tfg:food/raw_burger_patty', 200) + .resultItem(TFC.isp.of('tfg:food/cooked_burger_patty').copyFood()); event.recipes.tfc.advanced_shapeless_crafting( TFC.itemStackProvider.of('tfg:food/raw_stickastackatick').copyFood(), @@ -1196,14 +1285,14 @@ function registerTFGFoodRecipes(event) { [TFC.ingredient.notRotten('betterend:cave_pumpkin'), '#tfc:knives'], 'betterend:cave_pumpkin') .id(`tfg:crafting/cave_pumpkin_chunks_knife`) - processorRecipe("cut_cave_pumpkin", 100, 8, { + global.processorRecipe(event, "cut_cave_pumpkin", 100, 8, { circuit: 30, itemInputs: ["betterend:cave_pumpkin"], itemOutputs: ["4x betterend:cave_pumpkin_chunks"], - itemOutputProvider: TFC.isp.of("4x betterend:cave_pumpkin_chunks").copyOldestFood() + itemOutputProvider: TFC.isp.of("4x betterend:cave_pumpkin_chunks").copyFood() }) - processorRecipe("cave_pumpkin_pie_dough", 300, GTValues.VA[GTValues.HV], { + global.processorRecipe(event, "cave_pumpkin_pie_dough", 300, GTValues.VA[GTValues.HV], { itemInputs: ['#tfg:martian_eggs', '2x betterend:cave_pumpkin_chunks', 'betterend:amber_root_product', 'tfg:wraptor_sugar'], fluidInputs: ['minecraft:water 1000'], itemOutputs: ["betterend:cave_pumpkin_pie_dough"], @@ -1218,7 +1307,7 @@ function registerTFGFoodRecipes(event) { TFC.ingredient.notRotten('betterend:amber_root_product'), 'tfg:wraptor_sugar'], Fluid.of('minecraft:water', 1000)) - .outputItem(TFC.isp.of('betterend:cave_pumpkin_pie_dough').copyOldestFood()) + .outputItem('betterend:cave_pumpkin_pie_dough') .id('tfg:mixing_bowl/cave_pumpkin_pie_dough') event.recipes.tfc.advanced_shapeless_crafting( @@ -1227,7 +1316,7 @@ function registerTFGFoodRecipes(event) { '#firmalife:pie_pans' ]).id(`tfg:shapeless/cave_pumpkin_pie_raw`) - processorRecipe("raw_cave_pumpkin_pie", 20, 8, { + global.processorRecipe(event, "raw_cave_pumpkin_pie", 20, 8, { itemInputs: [`betterend:cave_pumpkin_pie_dough`, "#firmalife:pie_pans"], itemOutputs: ["betterend:cave_pumpkin_pie_raw"], itemOutputProvider: TFC.isp.of("betterend:cave_pumpkin_pie_raw").copyFood() @@ -1235,7 +1324,7 @@ function registerTFGFoodRecipes(event) { // Dino nugs - registerFoodRecipe("food_oven", "raw_dino_nugget", 300, GTValues.VA[GTValues.LV], "", { + global.registerFoodRecipe(event, "food_oven", "raw_dino_nugget", 300, GTValues.VA[GTValues.LV], 'tfg.food_recipe.deep_frying', { itemInputs: ["tfg:food/raw_dino_nugget"], itemOutputs: ["tfg:food/cooked_dino_nugget"], fluidInputs: ['#firmalife:oils 100'], @@ -1247,7 +1336,7 @@ function registerTFGFoodRecipes(event) { [(portion) => portion.nutrientModifier(2.0)]) }) - processorRecipe("raw_dino_nuggets", 300, GTValues.VA[GTValues.HV], { + global.processorRecipe(event, "raw_dino_nuggets", 300, GTValues.VA[GTValues.HV], { itemInputs: ['#tfg:raw_dinosaur_meat', '3x #tfc:foods/flour', 'tfc:powder/salt'], fluidInputs: ['tfc:beer 200'], notConsumable: ['gtceu:nugget_casting_mold'], @@ -1259,7 +1348,7 @@ function registerTFGFoodRecipes(event) { ) }) - processorRecipe("raw_dino_nuggets_aged_beer", 300, GTValues.VA[GTValues.HV], { + global.processorRecipe(event, "raw_dino_nuggets_aged_beer", 300, GTValues.VA[GTValues.HV], { itemInputs: ['#tfg:raw_dinosaur_meat', '3x #tfc:foods/flour', 'tfc:powder/salt'], fluidInputs: ['tfcagedalcohol:aged_beer 200'], notConsumable: ['gtceu:nugget_casting_mold'], @@ -1271,86 +1360,387 @@ function registerTFGFoodRecipes(event) { ) }) + // Deep Frying + for (let i = 1; i <= 5; i++) { + // Fries + event.recipes.tfc.pot( + Array(i).fill('tfg:food/raw_fries'), + TFC.fluidStackIngredient('#firmalife:oils', 100 * i), + 20*20, + 200 + ) + .itemOutput(TFC.isp.of(`${i}x tfg:food/cooked_fries`).copyFood() + ).id(`tfg:pot/cooked_fries_${i}`); + + // Beer Battered Cheese Curds + event.recipes.tfc.pot( + Array(i).fill('tfg:food/raw_beer_battered_cheese_curds'), + TFC.fluidStackIngredient('#firmalife:oils', 100 * i), + 20*20, + 200 + ) + .itemOutput(TFC.isp.of(`${i}x tfg:food/cooked_beer_battered_cheese_curds`).copyFood() + ).id(`tfg:pot/cooked_beer_battered_cheese_curds_${i}`); + }; + + // Fries + event.recipes.tfc.advanced_shapeless_crafting( + TFC.itemStackProvider.of('4x tfg:food/raw_fries').copyFood(), + [TFC.ingredient.notRotten('tfc:food/potato'), '#tfc:knives'], + 'tfc:food/potato' + ).id(`tfg:crafting/raw_fries_knife`); + + global.processorRecipe(event, 'raw_fries', 20*1, 8, { + itemInputs: ['tfc:food/potato'], + itemOutputs: ['4x tfg:food/raw_fries'], + circuit: 7, + itemOutputProvider: TFC.isp.of('4x tfg:food/raw_fries').copyFood() + }); + + global.registerFoodRecipe(event, 'food_oven', 'cooked_fries', 20*6, GTValues.VA[GTValues.ULV], 'tfg.food_recipe.deep_frying', { + itemInputs: ['tfg:food/raw_fries'], + itemOutputs: ['tfg:food/cooked_fries'], + fluidInputs: ['#firmalife:oils 100'], + itemOutputProvider: TFC.isp.of('tfg:food/cooked_fries').copyFood().addTrait('firmalife:oven_baked') + }); + + // Beer Battered Cheese Curds + global.registerFoodRecipe(event, 'food_oven', 'cooked_beer_battered_cheese_curds', 20*6, GTValues.VA[GTValues.ULV], 'tfg.food_recipe.deep_frying', { + itemInputs: ['tfg:food/raw_beer_battered_cheese_curds'], + itemOutputs: ['tfg:food/cooked_beer_battered_cheese_curds'], + fluidInputs: ['#firmalife:oils 100'], + itemOutputProvider: TFC.isp.of('tfg:food/cooked_beer_battered_cheese_curds').copyFood().addTrait('firmalife:oven_baked') + }); + + /** + * @type {string[]} - Beer types for beer battered cheese curds. + */ + const beer = ['tfc:beer', 'tfcagedalcohol:aged_beer']; + beer.forEach(beerType => { + global.processorRecipe(event, `raw_beer_battered_cheese_curds/${beerType.replace(':', '_')}`, 20*5, GTValues.VA[GTValues.ULV], { + itemInputs: ['4x #tfg:foods/cheese_curds', '#tfc:foods/flour', 'tfc:powder/salt', '#forge:eggs'], + fluidInputs: [`${beerType} 100`], + itemOutputs: ['4x tfg:food/raw_beer_battered_cheese_curds'], + itemOutputProvider: TFC.isp.of('4x tfg:food/raw_beer_battered_cheese_curds').copyOldestFood() + }); + }); + + // Hamburgers + event.recipes.tfc.advanced_shaped_crafting( + TFC.isp.of('tfg:food/hamburger').meal( + (food) => food.hunger(4).decayModifier(1.3), + [(portion) => portion.nutrientModifier(1.2).saturationModifier(1.1)] + ), + [ + 'CA ', + 'BBB', + ' A ' + ], { + A: TFC.ingredient.notRotten('tfg:food/brioche_bun'), + B: TFC.ingredient.notRotten('#tfg:foods/usable_in_burgers'), + C: '#forge:tools/knives' + }, + 0, + 0 + ).id('tfg:crafting/hamburger'); + + event.recipes.tfc.advanced_shaped_crafting( + TFC.isp.of('tfg:food/cheeseburger').meal( + (food) => food.hunger(4).decayModifier(1.3), + [(portion) => portion.nutrientModifier(1.2).saturationModifier(1.1)] + ), + [ + 'CA ', + 'BBD', + ' A ' + ], { + A: TFC.ingredient.notRotten('tfg:food/brioche_bun'), + B: TFC.ingredient.notRotten('#tfg:foods/usable_in_burgers'), + C: '#forge:tools/knives', + D: TFC.ingredient.notRotten('#tfg:foods/cheeses') + }, + 0, + 0 + ).id('tfg:crafting/cheeseburger'); + + // Prosessor burgers allow extra ingredients. + for (let i = 1; i <= 5; i++) { + global.processorRecipe(event, `hamburger_${i}`, 20*1, GTValues.VA[GTValues.ULV], { + itemInputs: [`${i}x #tfg:foods/usable_in_burgers`, '2x tfg:food/brioche_bun'], + itemOutputs: ['tfg:food/hamburger'], + circuit: i, + itemOutputProvider: TFC.isp.of('tfg:food/hamburger').meal( + (food) => food.hunger(4).decayModifier(1.3), + [(portion) => portion.nutrientModifier(1.2).saturationModifier(1.1)] + ) + }); + }; + + for (let i = 1; i <= 4; i++) { + global.processorRecipe(event, `cheeseburger_${i}`, 20*1, GTValues.VA[GTValues.ULV], { + itemInputs: [`${i}x #tfg:foods/usable_in_burgers`, '2x tfg:food/brioche_bun', '#tfg:foods/cheeses'], + itemOutputs: ['tfg:food/cheeseburger'], + circuit: i, + itemOutputProvider: TFC.isp.of('tfg:food/cheeseburger').meal( + (food) => food.hunger(4).decayModifier(1.3), + [(portion) => portion.nutrientModifier(1.2).saturationModifier(1.1)] + ) + }); + }; + + // Tirage Mixture + event.recipes.gtceu.food_processor('tfg:tirage_mixture') + .itemInputs('#tfc:sweetener') + .inputFluids(Fluid.of('firmalife:yeast_starter', 100)) + .itemOutputs('firmalife:tirage_mixture') + .duration(10) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) + + // Brioche Dough + event.recipes.firmalife.mixing_bowl() + .itemIngredients([ + TFC.ingredient.notRotten('#forge:eggs'), + TFC.ingredient.notRotten('#tfc:foods/flour'), + TFC.ingredient.notRotten('#tfc:foods/flour'), + 'firmalife:tirage_mixture' + ]) + .fluidIngredient(TFC.fluidStackIngredient('#tfc:milks', 500)) + .outputItem('6x tfg:food/brioche_dough') + .id('tfg:mixing_bowl/brioche_dough'); + + global.processorRecipe(event, 'brioche_dough/tirage_mixture', 20*2, GTValues.VA[GTValues.ULV], { + itemInputs: ['2x #tfc:foods/flour', '#forge:eggs', 'firmalife:tirage_mixture'], + fluidInputs: ['#tfc:milks 500'], + itemOutputs: ['6x tfg:food/brioche_dough'], + circuit: 5, + itemOutputProvider: TFC.isp.of('6x tfg:food/brioche_dough').copyOldestFood() + }); + + global.processorRecipe(event, 'brioche_dough/yeast', 20*2, GTValues.VA[GTValues.ULV], { + itemInputs: ['2x #tfc:foods/flour', '#forge:eggs', '#tfc:sweetener'], + fluidInputs: ['#tfc:milks 500', 'firmalife:yeast_starter 100'], + itemOutputs: ['6x tfg:food/brioche_dough'], + circuit: 5, + itemOutputProvider: TFC.isp.of('6x tfg:food/brioche_dough').copyOldestFood() + }); + + global.cookingRecipe(event, 'brioche_bun', 'tfg:food/brioche_dough', 'tfg:food/brioche_bun'); + + // Burger Patty + event.recipes.tfc.advanced_shapeless_crafting( + TFC.itemStackProvider.of('tfg:food/raw_burger_patty').copyFood(), + [ + TFC.ingredient.notRotten('#tfg:foods/burger_meats'), + '#forge:tools/mortars' + ] + ).id('tfg:crafting/raw_burger_patty'); + + global.processorRecipe(event, 'raw_burger_patty', 20*1, GTValues.VA[GTValues.ULV], { + itemInputs: ['#tfg:foods/burger_meats'], + itemOutputs: ['tfg:food/raw_burger_patty'], + notConsumable: ['gtceu:wire_extruder_mold'], + itemOutputProvider: TFC.isp.of('tfg:food/raw_burger_patty').copyFood() + }); + + // Rich Stock + event.recipes.tfc.pot( + [ + '#tfg:foods/makes_rich_stock', + '#tfc:foods/vegetables', + '#forge:bones', + 'tfc:powder/salt', + 'tfg:spice/bay_leaf' + ], + TFC.fluidStackIngredient('#tfg:clean_water', 1000), + 20*15, + 200 + ) + .fluidOutput(Fluid.of('tfg:rich_stock', 1000) + ).id('tfg:pot/rich_stock'); + + global.processorRecipe(event, 'rich_stock', 20*5, GTValues.VA[GTValues.ULV], { + itemInputs: [ + '#tfg:foods/makes_rich_stock', + '#tfc:foods/vegetables', + '#forge:bones', + 'tfc:powder/salt', + 'tfg:spice/bay_leaf' + ], + fluidInputs: ['#tfg:clean_water 1000'], + fluidOutputs: [Fluid.of('tfg:rich_stock', 1000)] + }); + + // Light Stock + event.recipes.tfc.pot( + [ + '#tfg:foods/makes_light_stock', + '#tfc:foods/vegetables', + '#forge:bones', + 'tfc:powder/salt', + 'firmalife:spice/basil_leaves' + ], + TFC.fluidStackIngredient('#tfg:clean_water', 1000), + 20*15, + 200 + ) + .fluidOutput(Fluid.of('tfg:light_stock', 1000) + ).id('tfg:pot/light_stock'); + + global.processorRecipe(event, 'light_stock', 20*5, GTValues.VA[GTValues.ULV], { + itemInputs: [ + '#tfg:foods/makes_light_stock', + '#tfc:foods/vegetables', + '#forge:bones', + 'tfc:powder/salt', + 'firmalife:spice/basil_leaves' + ], + fluidInputs: ['#tfg:clean_water 1000'], + fluidOutputs: [Fluid.of('tfg:light_stock', 1000)] + }); + + // Brown Gravy + global.processorRecipe(event, 'brown_gravy', 20*5, GTValues.VA[GTValues.ULV], { + itemInputs: [ + '#tfc:foods/flour', + 'firmalife:food/butter', + 'tfg:spice/allspice' + ], + fluidInputs: ['tfg:light_stock 1000', 'tfg:rich_stock 1000'], + fluidOutputs: [Fluid.of('tfg:brown_gravy', 2000)] + }); + + // Poutine + global.processorRecipe(event, 'poutine', 20*10, GTValues.VA[GTValues.LV], { + itemInputs: [ + '4x tfg:food/cooked_fries', + '#tfg:foods/cheese_curds', + '2x #tfc:bowls' + ], + fluidInputs: ['tfg:brown_gravy 500'], + itemOutputs: ['2x tfg:food/poutine'], + itemOutputProvider: TFC.isp.of('2x tfg:food/poutine').simpleModifier('tfg:add_bowl').meal( + (food) => food.hunger(5).water(5).saturation(1).decayModifier(1).grain(1).protein(0.5).dairy(1.5), + [(portion) => portion.nutrientModifier(0.8).saturationModifier(1)] + ) + }); + + // Oatmeal + for (let i = 1; i <= 4; i++) { + global.processorRecipe(event, `oatmeal_${i}`, 20*15, GTValues.VA[GTValues.LV], { + itemInputs: [ + '4x #tfc:bowls', + 'tfc:food/oat_grain', + `${i}x #tfg:foods/usable_in_oatmeal`, + '#tfc:sweetener' + ], + fluidInputs: ['#tfc:milks 1000'], + itemOutputs: ['4x tfg:food/oatmeal'], + circuit: i, + itemOutputProvider: TFC.isp.of('4x tfg:food/oatmeal').simpleModifier('tfg:add_bowl').meal( + (food) => food.hunger(5).water(5).saturation(1).decayModifier(1.4).grain(0.8).dairy(1.5), + [(portion) => portion.nutrientModifier(0.7).saturationModifier(0.7)] + ) + }); + }; + + // Sodium Dihydrogen Citrate + event.recipes.gtceu.chemical_reactor('tfg:sodium_dihydrogen_citrate') + .itemInputs( + ChemicalHelper.get(TagPrefix.dust, 'tfg:citric_acid', 1), + ChemicalHelper.get(TagPrefix.dust, GTMaterials.SodiumBicarbonate, 1) + ) + .itemOutputs('tfg:sodium_dihydrogen_citrate_dust') + .outputFluids( + Fluid.of('minecraft:water', 1000), + Fluid.of('gtceu:carbon_dioxide', 1000) + ) + .duration(20*10) + .EUt(GTValues.VA[GTValues.HV]); + + // Citric Acid + global.processorRecipe(event, 'citric_acid', 20*20, GTValues.VA[GTValues.HV], { + itemInputs: [ + '#tfg:foods/citrus_fruits', + 'gtceu:calcium_hydroxide_dust' + ], + fluidInputs: ['gtceu:sulfuric_acid 100'], + itemOutputs: ['2x tfg:citric_acid_dust' ], + itemOutputProvider: TFC.isp.of('2x tfg:citric_acid_dust') + }); + + // Slice of "Cheese" + event.recipes.gtceu.food_processor('tfg:slice_of_cheese') + .itemInputs( + ChemicalHelper.get(TagPrefix.dust, 'gtceu:lactose', 1), + ChemicalHelper.get(TagPrefix.dust, 'tfg:cholesterol', 1), + ChemicalHelper.get(TagPrefix.dust, 'tfg:sodium_dihydrogen_citrate', 1), + ChemicalHelper.get(TagPrefix.foil, GTMaterials.Polyethylene, 8) + ) + .inputFluids('#tfg:clean_water 1000') + .itemOutputs('8x tfg:food/slice_of_cheese') + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.LV]) + + // Instant Mac + global.processorRecipe(event, 'raw_instant_mac', 20 * 10, GTValues.VA[GTValues.LV], { + itemInputs: ['firmalife:food/raw_egg_noodles', '#tfg:foods/cheeses', '2x create:cardboard'], + itemOutputs: ['2x tfg:food/raw_instant_mac'], + fluidInputs: ['gtceu:polyethylene 100'], + itemOutputProvider: TFC.isp.of('2x tfg:food/raw_instant_mac').copyFood() + }); + + global.registerFoodRecipe(event, 'food_oven', 'cooked_instant_mac', 20 * 1, GTValues.VA[GTValues.LV], '' ,{ + itemInputs: ['tfg:food/raw_instant_mac'], + itemOutputs: ['tfg:food/cooked_instant_mac'], + fluidInputs: ['#tfc:milks 500'], + itemOutputProvider: TFC.isp.of('tfg:food/cooked_instant_mac').copyFood() + }); + + //#region Spices + + // Skips the first two spices as they are already in Firmalife + global.SPICES.slice(2).forEach(spice => { + event.recipes.tfc.advanced_shapeless_crafting( + Item.of(spice.product).withCount(2), + [ + spice.plant, + '#forge:tools/knives' + ] + ).id(`tfg:crafting/${spice.product.replace(':', '_')}`); + + event.recipes.gtceu.food_processor(`tfg:${spice.product.replace(':', '_')}`) + .itemInputs(spice.plant) + .itemOutputs(Item.of(spice.product).withCount(2)) + .duration(10) + .circuit(1) + .EUt(GTValues.VA[GTValues.ULV]); + }); + + // Replace input didnt work. + event.remove({id: 'firmalife:crafting/salsa'}); + event.replaceInput({id: 'firmalife:crafting/lasagna'},'firmalife:plant/oregano','tfg:spice/oregano_leaves'); + + event.recipes.tfc.advanced_shapeless_crafting( + TFC.itemStackProvider.of('5x firmalife:food/salsa').copyFood(), + [ + 'tfg:spice/cilantro_leaves', + 'tfc:food/tomato', + 'tfc:powder/salt', + '#forge:tools/knives' + ] + ).id('tfg:crafting/salsa'); + //#endregion - // Food processing machine recipes - event.remove({id: 'gtceu:shaped/mv_food_refrigerator'}) - event.remove({id: 'gtceu:shaped/hv_food_refrigerator'}) - event.remove({id: 'gtceu:shaped/ev_food_refrigerator'}) - event.remove({id: 'gtceu:shaped/iv_food_refrigerator'}) + global.processorRecipe(event, 'nixtamal', 20*30, GTValues.VA[GTValues.ULV], { + itemInputs: ['firmalife:food/cured_maize'], + fluidInputs: ['#tfg:clean_water 100'], + itemOutputs: ['firmalife:food/nixtamal'], + circuit: 1, + itemOutputProvider: TFC.isp.of('firmalife:food/nixtamal').copyFood() + }); - event.recipes.gtceu.assembler('tfg:assembler/mv_food_refrigerator') - .itemInputs( - ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Copper, 2), - ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2), - ChemicalHelper.get(TagPrefix.rotor, GTMaterials.Bronze, 1), - '2x gtceu:mv_electric_pump', - 'gtceu:mv_hermetic_casing', - '#gtceu:circuits/mv' - ) - .inputFluids(Fluid.of('tfg:chlorodifluoromethane', 6000)) - .itemOutputs('1x tfg:mv_food_refrigerator') - .duration(200) - .circuit(7) - .addMaterialInfo(true) - .EUt(GTValues.VA[GTValues.LV]) + //#endregion - event.recipes.gtceu.assembler('tfg:assembler/hv_food_refrigerator') - .itemInputs( - ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Gold, 2), - ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2), - ChemicalHelper.get(TagPrefix.rotor, GTMaterials.Steel, 1), - '2x gtceu:hv_electric_pump', - 'gtceu:hv_hermetic_casing', - '#gtceu:circuits/hv' - ) - .inputFluids(Fluid.of('tfg:1_1_1_2_tetrafluoroethane', 6000)) - .itemOutputs('1x tfg:hv_food_refrigerator') - .duration(200) - .circuit(7) - .addMaterialInfo(true) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.assembler('tfg:assembler/ev_food_refrigerator') - .itemInputs( - ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Aluminium, 2), - ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2), - ChemicalHelper.get(TagPrefix.rotor, GTMaterials.StainlessSteel, 1), - '2x gtceu:ev_electric_pump', - 'gtceu:ev_hermetic_casing', - '#gtceu:circuits/ev' - ) - .inputFluids(Fluid.of('tfg:cryogenized_fluix', 6000)) - .itemOutputs('1x tfg:ev_food_refrigerator') - .duration(200) - .circuit(7) - .addMaterialInfo(true) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.assembler('tfg:assembler/iv_food_refrigerator') - .itemInputs( - ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Platinum, 2), - ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2), - ChemicalHelper.get(TagPrefix.rotor, GTMaterials.Titanium, 1), - '2x gtceu:iv_electric_pump', - 'gtceu:iv_hermetic_casing', - '#gtceu:circuits/iv' - ) - .inputFluids(Fluid.of('tfg:solar_coolant_tier2', 6000)) - .itemOutputs('1x tfg:iv_food_refrigerator') - .duration(200) - .circuit(7) - .addMaterialInfo(true) - .EUt(GTValues.VA[GTValues.LV]) - - event.shaped('tfg:electric_greenhouse', [ - 'ABA', - 'CDC', - 'BCB' - ], { - A: '#gtceu:circuits/mv', - B: '#forge:single_cables/copper', - C: 'tfc:compost', - D: 'gtceu:steel_machine_casing' - }).id('tfg:shaped/electric_greenhouse') } diff --git a/kubejs/server_scripts/tfg/food/recipes.meal_bags.js b/kubejs/server_scripts/tfg/food/recipes.meal_bags.js new file mode 100644 index 000000000..f1d7cd128 --- /dev/null +++ b/kubejs/server_scripts/tfg/food/recipes.meal_bags.js @@ -0,0 +1,108 @@ +"use strict"; + +function registerTFGMealBagRecipes(event) { + + // Food related + event.recipes.gtceu.forming_press('tfg:forming_press/foil_pack') + .itemInputs(ChemicalHelper.get(TagPrefix.foil, GTMaterials.Aluminium, 1), ChemicalHelper.get(TagPrefix.foil, GTMaterials.Polyethylene, 1)) + .itemOutputs('1x tfg:foil_pack') + .duration(100) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.gas_pressurizer('tfg:fluid_solidifier/dry_ice') + .inputFluids(Fluid.of('gtceu:carbon_dioxide', 1000)) + .notConsumable('gtceu:block_casting_mold') + .itemOutputs('2x tfg:dry_ice') + .duration(100) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.vacuum_freezer('tfg:vacuum_freezer/liq_co2') + .inputFluids(Fluid.of('gtceu:carbon_dioxide', 1000)) + .outputFluids(Fluid.of('gtceu:liquid_carbon_dioxide', 1000)) + .duration(160) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.vacuum_freezer('tfg:vacuum_freezer/dry_ice') + .inputFluids(Fluid.of('gtceu:liquid_carbon_dioxide', 1000)) + .notConsumable('gtceu:block_casting_mold') + .itemOutputs('10x tfg:dry_ice') + .duration(60) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.fluid_heater('tfg:fluid_heater/decompress_liq_co2') + .itemInputs('1x tfg:dry_ice') + .outputFluids(Fluid.of('gtceu:carbon_dioxide', 100)) + .duration(20) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.fluid_heater('tfg:fluid_heater/decompress_dry_ice') + .inputFluids(Fluid.of('gtceu:liquid_carbon_dioxide', 100)) + .outputFluids(Fluid.of('gtceu:carbon_dioxide', 100)) + .duration(20) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.mixer('tfg:clean_foil_pack') + .itemInputs('1x tfg:used_foil_pack') + .inputFluids("#tfg:clean_water 100") + .itemOutputs('1x tfg:clean_foil_pack') + .duration(200) + .circuit(1) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.chemical_bath('tfg:ore_washer/distilled/clean_foil_pack') + .itemInputs('1x tfg:used_foil_pack') + .inputFluids(Fluid.of('gtceu:distilled_water', 10)) + .itemOutputs('1x tfg:clean_foil_pack') + .duration(200) + .circuit(2) + .EUt(GTValues.VA[GTValues.ULV]) + + event.custom({ + type: "ae2:transform", + circumstance: { + type: "fluid", + tag: "tfc:water" + }, + ingredients: [ + { item: 'tfg:used_foil_pack' }], + result: { item: 'tfg:clean_foil_pack' } + }).id('tfg:ae_transform/clean_foil_pack') + + event.recipes.greate.splashing(['tfg:clean_foil_pack'], 'tfg:used_foil_pack') + .id('tfg:splashing/clean_foil_pack') + + event.shapeless('1x tfg:used_foil_pack', [ + 'tfg:food/calorie_paste' + ]).id('tfg:shapeless/emptying/calorie_paste') + + event.shapeless('1x tfg:used_foil_pack', [ + 'tfg:food/meal_bag' + ]).id('tfg:shapeless/emptying/meal_bag') + + global.FOOD_FRUIT.forEach(fruit => { + event.shapeless('1x tfg:used_foil_pack', [ + `tfg:food/freeze_dried/${fruit.name}` + ]).id(`tfg:shapeless/emptying/freeze_dried/${fruit.name}`) + }) + + // Recycling + event.recipes.gtceu.macerator('gtceu:macerator/recycling/clean_foil_pack') + .itemInputs('tfg:clean_foil_pack') + .itemOutputs( + ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Aluminium, 1), + ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Polyethylene, 1) + ) + .duration(GTMaterials.Aluminium.getMass() * 1) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.arc_furnace('gtceu:arc_furnace/recycling/clean_foil_pack') + .itemInputs('tfg:clean_foil_pack') + .itemOutputs( + ChemicalHelper.get(TagPrefix.nugget, GTMaterials.Aluminium, 2), + ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Ash, 1) + ) + .duration(GTMaterials.Aluminium.getMass() * 1) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/food/recipes.refrigerators.js b/kubejs/server_scripts/tfg/food/recipes.refrigerators.js new file mode 100644 index 000000000..97113c2aa --- /dev/null +++ b/kubejs/server_scripts/tfg/food/recipes.refrigerators.js @@ -0,0 +1,113 @@ +"use strict"; + +function registerTFGRefrigeratorRecipes(event) { + + //#region Machine Recipes + + event.remove({ id: 'gtceu:shaped/mv_food_refrigerator' }) + event.remove({ id: 'gtceu:shaped/hv_food_refrigerator' }) + event.remove({ id: 'gtceu:shaped/ev_food_refrigerator' }) + event.remove({ id: 'gtceu:shaped/iv_food_refrigerator' }) + + event.recipes.gtceu.assembler('tfg:assembler/mv_food_refrigerator') + .itemInputs( + ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Copper, 2), + ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2), + ChemicalHelper.get(TagPrefix.rotor, GTMaterials.Bronze, 1), + '2x gtceu:mv_electric_pump', + 'gtceu:mv_hermetic_casing', + '#gtceu:circuits/mv' + ) + .inputFluids(Fluid.of('tfg:chlorodifluoromethane', 6000)) + .itemOutputs('1x tfg:mv_food_refrigerator') + .duration(200) + .circuit(7) + .addMaterialInfo(true) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.assembler('tfg:assembler/hv_food_refrigerator') + .itemInputs( + ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Gold, 2), + ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2), + ChemicalHelper.get(TagPrefix.rotor, GTMaterials.Steel, 1), + '2x gtceu:hv_electric_pump', + 'gtceu:hv_hermetic_casing', + '#gtceu:circuits/hv' + ) + .inputFluids(Fluid.of('tfg:1_1_1_2_tetrafluoroethane', 6000)) + .itemOutputs('1x tfg:hv_food_refrigerator') + .duration(200) + .circuit(7) + .addMaterialInfo(true) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.assembler('tfg:assembler/ev_food_refrigerator') + .itemInputs( + ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Aluminium, 2), + ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2), + ChemicalHelper.get(TagPrefix.rotor, GTMaterials.StainlessSteel, 1), + '2x gtceu:ev_electric_pump', + 'gtceu:ev_hermetic_casing', + '#gtceu:circuits/ev' + ) + .inputFluids(Fluid.of('tfg:cryogenized_fluix', 6000)) + .itemOutputs('1x tfg:ev_food_refrigerator') + .duration(200) + .circuit(7) + .addMaterialInfo(true) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.assembler('tfg:assembler/iv_food_refrigerator') + .itemInputs( + ChemicalHelper.get(TagPrefix.cableGtSingle, GTMaterials.Platinum, 2), + ChemicalHelper.get(TagPrefix.plate, GTMaterials.Polyethylene, 2), + ChemicalHelper.get(TagPrefix.rotor, GTMaterials.Titanium, 1), + '2x gtceu:iv_electric_pump', + 'gtceu:iv_hermetic_casing', + '#gtceu:circuits/iv' + ) + .inputFluids(Fluid.of('tfg:solar_coolant_tier2', 6000)) + .itemOutputs('1x tfg:iv_food_refrigerator') + .duration(200) + .circuit(7) + .addMaterialInfo(true) + .EUt(GTValues.VA[GTValues.LV]) + + //#endregion + + // Refrigerants + + event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/chlorodifluoromethane') + .inputFluids(Fluid.of('gtceu:chloroform', 1000), Fluid.of('gtceu:hydrofluoric_acid', 2000)) + .outputFluids(Fluid.of('tfg:chlorodifluoromethane', 1000), Fluid.of('gtceu:hydrochloric_acid', 2000)) + .duration(480) + .circuit(2) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/breakdown/chlorodifluoromethane') + .inputFluids(Fluid.of('tfg:chlorodifluoromethane', 200)) + .outputFluids(Fluid.of('gtceu:tetrafluoroethylene', 100), Fluid.of('gtceu:hydrochloric_acid', 200)) + .duration(100) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/acetylene') + .inputFluids(Fluid.of('gtceu:methane', 2000), Fluid.of('gtceu:oxygen', 3000)) + .outputFluids(Fluid.of('tfg:acetylene', 1000), Fluid.of('minecraft:water', 3000)) + .circuit(4) + .duration(120) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/1_1_1_2_tetrafluoroethane') + .inputFluids(Fluid.of('tfg:acetylene', 1000), Fluid.of('gtceu:chlorine', 4000), Fluid.of('gtceu:hydrofluoric_acid', 4000)) + .outputFluids(Fluid.of('tfg:1_1_1_2_tetrafluoroethane', 1000), Fluid.of('gtceu:hydrochloric_acid', 4000)) + .circuit(4) + .duration(480) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.cracker('tfg:cracker/isobutane') + .inputFluids(Fluid.of('gtceu:butane', 4000)) + .outputFluids(Fluid.of('tfg:isobutane', 1000), Fluid.of('gtceu:lpg', 3000)) + .circuit(4) + .duration(2400) + .EUt(GTValues.VA[GTValues.HV]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/food/tags.food.js b/kubejs/server_scripts/tfg/food/tags.food.js new file mode 100644 index 000000000..97826d234 --- /dev/null +++ b/kubejs/server_scripts/tfg/food/tags.food.js @@ -0,0 +1,360 @@ +"use strict"; + +function registerTFGFoodItemTags(event) { + + // Crops + event.add('tfc:seeds', 'tfg:sunflower_seeds') + event.add('tfc:seeds', 'tfg:rapeseed_seeds') + event.add('tfc:seeds', 'tfg:flax_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('tfc:compost_greens_high', 'tfg:lunar_chorus_flower') + + event.add("tfg:sugars", "minecraft:sugar"); + event.add("tfg:sugars", "afc:birch_sugar"); + event.add("tfg:sugars", "afc:maple_sugar"); + + const RAW_MEATS = [ + 'tfg:food/raw_birt', + 'tfg:food/raw_crawlermari', + 'tfg:food/raw_limpet' + ] + RAW_MEATS.forEach(meat => { + event.add('tfc:foods', meat) + event.add('tfc:foods/meats', meat) + event.add('tfc:foods/raw_meats', meat) + }) + + const COOKED_MEATS = [ + 'tfg:food/cooked_birt', + 'tfg:food/cooked_crawlermari', + 'tfg:food/cooked_limpet' + ] + COOKED_MEATS.forEach(meat => { + event.add('tfc:foods', meat) + event.add('tfc:foods/meats', meat) + 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); + + const usable_in_jam_sandwich_2 = usable_in_jam_sandwich.filter(item => !preserves.includes(item)); + + usable_in_jam_sandwich_2.forEach(item => { + event.add('tfc:foods/usable_in_jam_sandwich_2', item); + }); + + event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_sniffer_beef') + event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_wraptor') + event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_springling_collar') + event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_walker_steak') + event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_glider_wings') + event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_whole_soarer') + event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_crusher_meat') + event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_goober_meat') + event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_cruncher_ribs') + event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_surfer_steak') + event.add('tfg:raw_dinosaur_meat', 'wan_ancient_beasts:raw_ancient_meat') + + /** + * List of items that can make light stock. + * @type {string[]} + */ + const makesLightStock = [ + 'tfc:food/chicken', + 'tfc:food/cooked_chicken', + 'tfc:food/quail', + 'tfc:food/cooked_quail', + 'tfc:food/pheasant', + 'tfc:food/cooked_pheasant', + 'tfc:food/grouse', + 'tfc:food/cooked_grouse', + 'tfc:food/turkey', + 'tfc:food/cooked_turkey', + 'tfc:food/peafowl', + 'tfc:food/cooked_peafowl', + 'tfc:food/rabbit', + 'tfc:food/cooked_rabbit', + 'tfc:food/duck', + 'tfc:food/cooked_duck', + 'tfg:food/raw_birt', + 'tfg:food/cooked_birt', + 'tfg:food/raw_moon_rabbit', + 'tfg:food/cooked_moon_rabbit', + 'tfg:food/raw_wraptor', + 'tfg:food/cooked_wraptor', + 'tfg:food/raw_glider_wings', + 'tfg:food/cooked_glider_wings', + 'tfg:food/raw_whole_soarer', + 'tfg:food/cooked_whole_soarer' + ]; + makesLightStock.forEach(item => { + event.add('tfg:foods/makes_light_stock', item); + }); + + /** + * List of items that can make rich stock. + * @type {string[]} + */ + const makesRichStock = [ + 'tfc:food/beef', + 'tfc:food/cooked_beef', + 'tfc:food/mutton', + 'tfc:food/cooked_mutton', + 'tfc:food/bear', + 'tfc:food/cooked_bear', + 'tfc:food/horse_meat', + 'tfc:food/cooked_horse_meat', + 'tfc:food/venison', + 'tfc:food/cooked_venison', + 'tfc:food/chevon', + 'tfc:food/cooked_chevon', + 'tfc:food/gran_feline', + 'tfc:food/cooked_gran_feline', + 'tfc:food/turtle', + 'tfc:food/cooked_turtle', + 'tfc:food/camelidae', + 'tfc:food/cooked_camelidae', + 'tfg:food/raw_glacian_mutton', + 'tfg:food/cooked_glacian_mutton', + 'tfg:food/raw_sniffer_beef', + 'tfg:food/cooked_sniffer_beef', + 'tfg:food/raw_walker_steak', + 'tfg:food/cooked_walker_steak', + 'tfg:food/raw_crusher_meat', + 'tfg:food/cooked_crusher_meat', + 'wan_ancient_beasts:raw_ancient_meat', + 'wan_ancient_beasts:cooked_ancient_meat' + ]; + makesRichStock.forEach(item => { + event.add('tfg:foods/makes_rich_stock', item); + }); + + /** + * @type {string[]} - List of cheese curd item IDs. + */ + const cheeseCurds = [ + 'firmalife:food/yak_curd', + 'firmalife:food/goat_curd', + 'firmalife:food/milk_curd', + 'tfc_gurman:ox_curd', + 'tfc_gurman:sheep_curd', + 'tfc_gurman:alpaca_curd' + ]; + cheeseCurds.forEach(item => { + event.add('tfg:foods/cheese_curds', item); + }); + + /** + * @type {string[]} - List of item tags and item IDs that can be used on burgers. + */ + const usable_in_burgers = [ + '#tfc:foods/vegetables', + 'firmalife:food/cooked_bacon', + 'tfc:food/cooked_egg', + 'firmalife:food/tofu' + ]; + usable_in_burgers.forEach(item => { + event.add('tfg:foods/usable_in_burgers', item); + }); + + /** + * @type {string[]} - List of cheese tags and item IDs that can be used on a cheeseburger. + */ + const cheeses = [ + '#firmalife:foods/cheeses', + 'tfg:food/slice_of_cheese', + 'firmalife:food/shredded_cheese', + '#tfc_gurman:foods/brinza' + ]; + cheeses.forEach(item => { + event.add('tfg:foods/cheeses', item); + }); + + /** + * @type {string[]} - List of item IDs that can be used as burger meats. + */ + const burgerMeats = [ + 'tfc:food/beef', + 'tfc:food/turkey', + 'tfc:food/venison', + 'tfg:food/raw_sniffer_beef', + 'tfg:food/raw_crusher_meat', + 'wan_ancient_beasts:raw_ancient_meat' + ]; + burgerMeats.forEach(item => { + event.add('tfg:foods/burger_meats', item); + }); + + // Spice tags + global.SPICES.forEach(spice => { + event.add('tfg:foods/spices', spice.product); + event.add('tfg:foods/spice_plants', spice.plant); + }); + + /** + * @type {string[]} - List of item tags and item IDs that are allowed to be used in oatmeal. + */ + const usable_in_oatmeal = [ + '#tfc:foods/fruits', + 'tfc:food/oat_grain', + '#firmalife:foods/chocolate' + ]; + usable_in_oatmeal.forEach(item => { + event.add('tfg:foods/usable_in_oatmeal', item); + }); + + /** + * @type {string[]} - List of citrus fruit item IDs. + */ + const citrus_fruits = [ + 'tfc:food/orange', + 'tfc:jar/orange_unsealed', + 'tfg:food/freeze_dried/orange', + 'tfc:food/lemon', + 'tfc:jar/lemon_unsealed', + 'tfg:food/freeze_dried/lemon', + 'minecraft:glow_berries', + 'tfg:food/freeze_dried/glow_berries' + ]; + citrus_fruits.forEach(item => { + event.add('tfg:foods/citrus_fruits', item); + }); + + /** + * List of item tags and item IDs that are allowed to be used in a meal bag. + * @type {string[]} + */ + const usable_in_meal_bag = [ + '#tfc:foods/meats', + '#tfc:foods/grains', + '#tfc:foods/vegetables', + '#tfc:foods/fruits', + '#tfc:foods/dairy', + '#tfc:foods/preserves', + '#firmalife:foods/chocolate', + '#tfcchannelcasting:foods/chocolate_sweet', + 'firmalife:food/sugar_cookie', + 'firmalife:food/chocolate_chip_cookie', + 'firmalife:food/vanilla_ice_cream', + 'firmalife:food/strawberry_ice_cream', + 'firmalife:food/chocolate_ice_cream', + 'tfc:food/cooked_egg', + 'tfc:food/boiled_egg', + 'firmalife:food/pickled_egg', + 'tfc:food/cooked_rice', + 'firmalife:food/cooked_pasta', + 'firmalife:food/pasta_with_tomato_sauce', + 'firmalife:food/cooked_rice_noodles', + 'firmalife:food/tortilla_chips', + 'firmalife:food/shredded_cheese', + 'firmalife:food/salsa', + 'firmalife:food/tomato_sauce', + 'tfg:roasted_sunflower_seeds', + 'tfg:food/cooked_dino_nugget', + 'firmalife:food/toast', + 'firmalife:food/toast_with_butter', + 'firmalife:food/toast_with_jam', + 'firmalife:food/butter', + 'tfc_gurman:adjika', + 'tfc_gurman:tzatziki', + 'tfc_gurman:falafel', + 'tfc_gurman:hummus', + 'tfc_gurman:sauerkraut', + 'tfc_gurman:bratwurst' + ]; + usable_in_meal_bag.forEach(item => { + event.add('tfg:foods/usable_in_meal_bag', item); + }); + event.add('tfg:foil_packs', 'tfg:foil_pack'); + event.add('tfg:foil_packs', 'tfg:clean_foil_pack') + + event.add('tfg:solid_fats', 'firmalife:food/butter') + event.add('tfg:solid_fats', 'tfc:blubber') + + // Space foods + event.add('tfc:foods', 'minecraft:red_mushroom') + event.add('tfc:foods', 'minecraft:brown_mushroom') + event.add('tfc:foods', 'minecraft:glow_berries') + event.add('tfc:foods', 'minecraft:chorus_fruit') + event.add('tfc:foods', 'minecraft:popped_chorus_fruit') + + event.add('tfc:foods/vegetables', 'minecraft:red_mushroom') + event.add('tfc:foods/vegetables', 'minecraft:brown_mushroom') + event.add('tfc:foods/fruits', 'minecraft:glow_berries') + event.add('tfc:foods/fruits', 'minecraft:chorus_fruit') + event.add('tfc:foods/fruits', 'minecraft:popped_chorus_fruit') + + event.add('beneath:usable_in_juicer', 'minecraft:glow_berries') + event.add('beneath:usable_in_juicer', 'minecraft:chorus_fruit') + event.add('beneath:usable_in_juicer', 'minecraft:red_mushroom') + event.add('beneath:usable_in_juicer', 'minecraft:brown_mushroom') + + event.add('tfc:foods/usable_in_soup', 'minecraft:red_mushroom') + event.add('tfc:foods/usable_in_soup', 'minecraft:brown_mushroom') + event.add('tfc:foods/usable_in_soup', 'minecraft:glow_berries') + event.add('tfc:foods/usable_in_soup', 'minecraft:chorus_fruit') + event.add('tfc:foods/usable_in_soup', 'minecraft:popped_chorus_fruit') + + // Make eggs not useless + event.add('tfc:foods/usable_in_salad', 'firmalife:food/pickled_egg') + event.add("tfc:foods/usable_in_salad", "tfc:food/cooked_egg"); + event.add("tfc:foods/usable_in_salad", "tfc:food/boiled_egg"); + event.add("tfc:foods/usable_in_jam_sandwich", "tfc:food/cooked_egg"); + event.add("tfc:foods/usable_in_jam_sandwich", "tfc:food/boiled_egg"); + event.add("tfc:foods/usable_in_sandwich", "tfc:food/cooked_egg"); + event.add("tfc:foods/usable_in_sandwich", "tfc:food/boiled_egg"); + event.add("tfc:foods/usable_in_sandwich", "firmalife:food/pickled_egg"); + + event.add('tfc:foods/usable_in_salad', 'minecraft:red_mushroom') + event.add('tfc:foods/usable_in_salad', 'minecraft:brown_mushroom') + event.add('tfc:foods/usable_in_salad', 'minecraft:glow_berries') + event.add('tfc:foods/usable_in_salad', 'minecraft:chorus_fruit') + event.add('tfc:foods/usable_in_salad', 'minecraft:popped_chorus_fruit') + + event.add('tfc:rabbit_food', 'minecraft:chorus_fruit') + event.add('tfc:rabbit_food', 'minecraft:popped_chorus_fruit') + + event.add('tfc:foods', 'ad_astra:cheese') + event.add('tfc:foods/dairy', 'ad_astra:cheese') + event.add('tfc:foods/usable_in_sandwich', 'ad_astra:cheese') + event.add('tfc:foods/usable_in_jam_sandwich', 'ad_astra:cheese') + event.add('tfc:foods/usable_in_jam_sandwich_2', 'ad_astra:cheese') + event.add('firmalife:foods/cheeses', 'ad_astra:cheese') + + // Auto-eat blacklist for backpack feeding upgrade and quarktech helmet + const AUTO_EAT_BLACKLIST = [ + '#tfg:medicine', + 'minecraft:rotten_flesh', + '#beneath:poisonous_mushrooms' + ] + AUTO_EAT_BLACKLIST.forEach(food => { + event.add('tfg:auto_eat_blacklist', food) + }) +} + +function registerTFGFoodBlockTags(event) { + //crop stuff + event.add('tfc:crops', 'tfg:rapeseed') + event.add('tfc:mineable_with_sharp_tool', 'tfg:rapeseed') + + 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') + + event.add('ad_astra:destroyed_in_space', '#tfc:wild_fruits') + event.add('ad_astra:destroyed_in_space', '#minecraft:saplings') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/json_tool.armor_trim.js b/kubejs/server_scripts/tfg/json_tool.armor_trim.js index 4f66e02ce..d7bbc80b6 100644 --- a/kubejs/server_scripts/tfg/json_tool.armor_trim.js +++ b/kubejs/server_scripts/tfg/json_tool.armor_trim.js @@ -29,7 +29,7 @@ const materials = [ {materialName: 'salt_tfc', nameColor: '#bebec2', itemName: 'gtceu:exquisite_salt_gem', indexNumber: 0.196}, {materialName: 'sapphire_tfc', nameColor: '#2628b0', itemName: 'gtceu:exquisite_sapphire_gem', indexNumber: 0.197}, {materialName: 'sodalite_tfc', nameColor: '#2e40c6', itemName: 'gtceu:exquisite_sodalite_gem', indexNumber: 0.198}, - {materialName: 'coke_tfc', nameColor: '#424847', itemName: 'gtceu:exquisite_coke_gem', indexNumber: 0.199}, + {materialName: 'armalcolite_tfc', nameColor: '#424847', itemName: 'gtceu:exquisite_armalcolite_gem', indexNumber: 0.199}, {materialName: 'spessartine_tfc', nameColor: '#c28017', itemName: 'gtceu:exquisite_spessartine_gem', indexNumber: 0.181}, {materialName: 'topaz_tfc', nameColor: '#b1a42d', itemName: 'gtceu:exquisite_topaz_gem', indexNumber: 0.182}, {materialName: 'uvarovite_tfc', nameColor: '#22b43b', itemName: 'gtceu:exquisite_uvarovite_gem', indexNumber: 0.183}, @@ -48,7 +48,7 @@ const materials = [ {materialName: 'red_garnet_tfc', nameColor: '#710910', itemName: 'gtceu:exquisite_red_garnet_gem', indexNumber: 0.177}, {materialName: 'yellow_garnet_tfc', nameColor: '#bbc207', itemName: 'gtceu:exquisite_yellow_garnet_gem', indexNumber: 0.178}, {materialName: 'monazite_tfc', nameColor: '#9eb576', itemName: 'gtceu:exquisite_monazite_gem', indexNumber: 0.179}, - {materialName: 'rose_quartz_tfc', nameColor: '#ba3458', itemName: 'gtceu:exquisite_rose_quartz_gem', indexNumber: 0.161}, + {materialName: 'rose_quartz_tfc', nameColor: '#ba3458', itemName: 'greate:exquisite_rose_quartz_gem', indexNumber: 0.161}, {materialName: 'fluix_tfc', nameColor: '#53458d', itemName: 'tfg:exquisite_fluix_gem', indexNumber: 0.162}, //Metals {materialName: 'silver_tfc', nameColor: '#d8d8f4', itemName: 'vintageimprovements:silver_sheet', indexNumber: 0.162}, @@ -69,7 +69,7 @@ const materials = [ // #region Tags // Assigns trim_materials tag to items registered above -function registerTFGTrimTags(event) { +function registerTFGTrimItemTags(event) { event.removeAll('minecraft:trim_materials') materials.forEach(material => { event.add('minecraft:trim_materials', material.itemName) diff --git a/kubejs/server_scripts/tfg/loot.js b/kubejs/server_scripts/tfg/loot.js index bde84e8cc..173f8e745 100644 --- a/kubejs/server_scripts/tfg/loot.js +++ b/kubejs/server_scripts/tfg/loot.js @@ -9,7 +9,7 @@ function registerTFGLoots(event) { .removeLoot(Ingredient.all) //ore .pool((pool) => { - pool.rolls([4, 6]); + pool.rolls([2, 4]); 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)), @@ -39,7 +39,7 @@ function registerTFGLoots(event) { }) //seeds .pool((pool) => { - pool.rolls([2, 8]); + pool.rolls([2, 4]); pool.addAlternativesLoot( LootEntry.of('tfc:seeds/onion').when((c) => c.randomChance(0.2)), LootEntry.of('tfc:seeds/cabbage').when((c) => c.randomChance(0.2)), diff --git a/kubejs/server_scripts/tfg/machines/recipes.casings.js b/kubejs/server_scripts/tfg/machines/recipes.casings.js new file mode 100644 index 000000000..ecdc8cdaa --- /dev/null +++ b/kubejs/server_scripts/tfg/machines/recipes.casings.js @@ -0,0 +1,189 @@ +"use strict"; + +function registerTFGCasingRecipes(event) { + + event.recipes.gtceu.assembler('steel_machine_casing') + .itemInputs(ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Steel, 4)) + .itemOutputs('gtceu:steel_machine_casing') + .circuit(6) + .duration(2.5 * 20) + .EUt(16) + + // Railgun + global.GTCEU_SUPERCONDUCTORS.forEach((type, index) => { + const multiplier = index + 1 + + event.recipes.gtceu.assembler(`tfg:assembler/superconductor_coil_small_from_${type.name}`) + .itemInputs( + ChemicalHelper.get(TagPrefix.plate, GTMaterials.HSLASteel, 4), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.Steel, 2), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.SteelMagnetic, 1), + ChemicalHelper.get(TagPrefix.wireFine, GTMaterials[type.materialId], 4) + ) + .inputFluids(Fluid.of('gtceu:epoxy', 144)) + .itemOutputs(Item.of('tfg:superconductor_coil_small', 4 * multiplier)) + .circuit(4) + .duration(400) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.assembler(`tfg:assembler/superconductor_coil_large_from_${type.name}`) + .itemInputs( + ChemicalHelper.get(TagPrefix.plate, GTMaterials.HSLASteel, 4), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.Steel, 2), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.SteelMagnetic, 1), + ChemicalHelper.get(TagPrefix.wireGtSingle, GTMaterials[type.materialId], 4)) + .inputFluids(Fluid.of('gtceu:epoxy', 144)) + .itemOutputs(Item.of('tfg:superconductor_coil_large', 4 * multiplier)) + .circuit(7) + .duration(600) + .EUt(GTValues.VA[GTValues.MV]) + }) + + event.recipes.gtceu.assembler('tfg:assembler/electromagnetic_accelerator') + .itemInputs( + '2x #forge:plates/desh', + 'gtceu:mv_voltage_coil', + '5x tfg:dry_ice', + 'gtceu:nonconducting_casing' + ) + .inputFluids(Fluid.of('gtceu:blue_alloy', 288)) + .itemOutputs('6x tfg:electromagnetic_accelerator') + .circuit(4) + .duration(800) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.assembler('tfg:assembler/machine_casing_aluminium_plated_steel') + .itemInputs( + ChemicalHelper.get(TagPrefix.plate, GTMaterials.Aluminium, 6), + ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.Steel, 1) + ) + .inputFluids(Fluid.of('gtceu:silicon', 72)) + .itemOutputs('2x tfg:machine_casing_aluminium_plated_steel') + .circuit(6) + .duration(20 * (2.5)) + .EUt(GTValues.VH[GTValues.LV]) + + // Solar + event.recipes.gtceu.assembler('basic_solar_casing') + .itemInputs('gtceu:steel_machine_casing', 'tfg:photo_cell_t1') + .itemOutputs('8x tfg:casings/machine_casing_blue_solar_panel') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) + .circuit(6) + .duration(2.5 * 20) + .EUt(16) + + event.recipes.gtceu.assembler('advanced_solar_casing') + .itemInputs('8x tfg:casings/machine_casing_blue_solar_panel', 'ad_astra:photovoltaic_etrium_cell') + .itemOutputs('8x tfg:casings/machine_casing_green_solar_panel') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) + .circuit(6) + .duration(2.5 * 20) + .EUt(16) + + event.recipes.gtceu.assembler('elite_solar_casing') + .itemInputs('8x tfg:casings/machine_casing_green_solar_panel', 'ad_astra:photovoltaic_vesnium_cell') + .itemOutputs('8x tfg:casings/machine_casing_red_solar_panel') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) + .circuit(6) + .duration(2.5 * 20) + .EUt(16) + + event.recipes.gtceu.assembler('tfg:reflector_from_lens') + .itemInputs( + '24x #forge:lenses', + ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.BlackSteel, 1) + ) + .inputFluids(Fluid.of('gtceu:silver', 1296)) + .itemOutputs('1x tfg:reflector') + .circuit(6) + .duration(20 * (60)) + .EUt(GTValues.VH[GTValues.HV]) + + event.recipes.gtceu.assembler('tfg:reflector_from_inr') + .itemInputs( + '1x gtceu:neutron_reflector', + ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.BlackSteel, 1) + ) + .itemOutputs('2x tfg:reflector') + .circuit(9) + .duration(20 * (20)) + .EUt(GTValues.VH[GTValues.MV]) + + event.recipes.gtceu.assembler('tfg:reflector_from_certus') + .itemInputs( + ChemicalHelper.get(TagPrefix.plate, GTMaterials.CertusQuartz, 12), + ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.BlackSteel, 1) + ) + .inputFluids(Fluid.of('gtceu:silver', 488)) + .itemOutputs('1x tfg:reflector') + .circuit(6) + .dimension('ad_astra:moon') + .duration(20 * (60)) + .EUt(GTValues.VH[GTValues.MV]) + + // Moon + event.recipes.gtceu.assembler('iron_desh_casing') + .itemInputs(ChemicalHelper.get(TagPrefix.plate, GTMaterials.Steel, 6), 'gtceu:desh_frame') + .itemOutputs('2x tfg:casings/machine_casing_iron_desh') + .circuit(6) + .duration(2.5 * 20) + .EUt(16) + + // Evaporation + event.recipes.gtceu.assembler('tfg:casings/machine_casing_stainless_evaporation') + .itemInputs('gtceu:clean_machine_casing', '4x gtceu:annealed_copper_double_wire') + .inputFluids(Fluid.of('gtceu:polyvinyl_chloride', 288)) + .itemOutputs('tfg:casings/machine_casing_stainless_evaporation') + .circuit(6) + .duration(2.5 * 20) + .EUt(GTValues.VA[GTValues.HV]) + + // Ostrum Linear Acclerator + event.recipes.gtceu.assembler('tfg:casings/machine_casing_mars') + .itemInputs('gtceu:clean_machine_casing', '4x #forge:double_wires/kanthal') + .inputFluids(Fluid.of('gtceu:polybenzimidazole', 288)) + .itemOutputs('tfg:casings/machine_casing_mars') + .circuit(6) + .duration(2.5 * 20) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.assembler('gtceu:atomic_casing') + .itemInputs('4x #forge:dense_plates/lead', '2x #forge:plates/rtm_alloy', '#forge:frames/titanium') + .inputFluids(Fluid.of('gtceu:polyvinyl_butyral', 288)) + .itemOutputs('2x gtceu:atomic_casing') + .circuit(6) + .duration(2.5 * 20) + .EUt(GTValues.VA[GTValues.HV]) + + // Vacuum Intake + event.shaped('tfg:casings/machine_casing_vacuum_engine_intake', [ + 'USU', + 'WZW', + 'UTU' + ], { + S: '#forge:tools/hammers', + T: '#forge:tools/wrenches', + W: '#forge:rotors/ultimet', + U: 'gtceu:ultimet_normal_item_pipe', + Z: 'gtceu:inert_machine_casing' + }).id('tfg:shaped/casing_machine_casing_vacuum_engine_intake') + + event.recipes.gtceu.assembler('tfg:casings/machine_casing_vacuum_engine_intake') + .itemInputs( + '2x #forge:rotors/ultimet', + '4x gtceu:ultimet_normal_item_pipe', + '1x gtceu:inert_machine_casing') + .itemOutputs('tfg:casings/machine_casing_vacuum_engine_intake') + .duration(50) + .EUt(GTValues.VH[GTValues.LV]) + .circuit(2) + + event.recipes.gtceu.assembler('tfg:casings/machine_casing_power_casing') + .itemInputs('gtceu:ostrum_frame', '4x #forge:plates/titanium_tungsten_carbide', '16x #forge:fine_wires/copper', + '16x #forge:fine_wires/tungsten_bismuth_oxide_composite') + .inputFluids(Fluid.of('gtceu:reinforced_epoxy_resin', 288)) + .itemOutputs('2x tfg:machine_casing_power_casing') + .circuit(6) + .duration(2.5 * 20) + .EUt(GTValues.VA[GTValues.EV]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/machines/recipes.components.js b/kubejs/server_scripts/tfg/machines/recipes.components.js new file mode 100644 index 000000000..5f9746144 --- /dev/null +++ b/kubejs/server_scripts/tfg/machines/recipes.components.js @@ -0,0 +1,254 @@ +"use strict"; + +function registerTFGElectronicComponentsRecipes(event) { + + // Electron tubes + event.shaped('1x create:electron_tube', [ + 'FAG', + 'BCB', + 'DED' + ], { + A: 'gtceu:glass_tube', + B: '#forge:bolts/steel', + C: 'gtceu:wood_plate', + D: 'gtceu:red_alloy_single_wire', + E: '#forge:plates/wrought_iron', + F: '#forge:tools/screwdrivers', + G: '#forge:tools/wire_cutters' + }).id('tfg:create/shaped/electron_tube') + + event.recipes.createSequencedAssembly([ + '2x create:electron_tube', + ], 'gtceu:wood_plate', [ + event.recipes.createDeploying('tfg:unfinished_electron_tube', ['tfg:unfinished_electron_tube', '#forge:plates/wrought_iron']), + event.recipes.createDeploying('tfg:unfinished_electron_tube', ['tfg:unfinished_electron_tube', 'gtceu:red_alloy_single_wire']), + event.recipes.createDeploying('tfg:unfinished_electron_tube', ['tfg:unfinished_electron_tube', 'gtceu:red_alloy_single_wire']), + event.recipes.createDeploying('tfg:unfinished_electron_tube', ['tfg:unfinished_electron_tube', 'gtceu:glass_tube']), + ]).transitionalItem('tfg:unfinished_electron_tube').loops(1).id('tfg:create/sequenced_assembly/electron_tube') + + event.recipes.gtceu.assembler('create:electron_tube') + .itemInputs('#forge:plates/wrought_iron', 'gtceu:glass_tube', '2x gtceu:red_alloy_single_wire') + .itemOutputs('2x create:electron_tube') + .duration(50) + .EUt(7) + .circuit(14) + + event.shaped('4x create:electron_tube', [ + 'FAG', + 'DCD' + ], { + A: 'gtceu:glass_tube', + C: 'gtceu:plastic_circuit_board', + D: 'gtceu:red_alloy_single_wire', + F: '#forge:tools/screwdrivers', + G: '#forge:tools/wire_cutters' + }).id('tfg:create/shaped/electron_tube2') + + event.recipes.gtceu.assembler('create:electron_tube2') + .itemInputs('gtceu:plastic_circuit_board', 'gtceu:glass_tube', '2x gtceu:red_alloy_single_wire') + .itemOutputs('4x create:electron_tube') + .duration(50) + .EUt(7) + + event.shaped('4x create:electron_tube', [ + ' A ', + ' B ', + ' C ' + ], { + A: '#forge:tools/screwdrivers', + B: 'gtceu:nand_chip', + C: 'gtceu:plastic_circuit_board' + }).id('tfg:create/shaped/electron_tube3') + + event.recipes.gtceu.assembler('create:electron_tube3') + .itemInputs('gtceu:plastic_circuit_board', 'gtceu:nand_chip') + .itemOutputs('4x create:electron_tube') + .duration(50) + .EUt(7) + + // Vacuum Tubes + event.remove({ id: 'gtceu:shaped/vacuum_tube' }) + event.replaceInput({ id: 'gtceu:assembler/vacuum_tube_plain' }, 'gtceu:steel_bolt', 'gtceu:resin_circuit_board') + event.replaceInput({ id: 'gtceu:assembler/vacuum_tube_red_alloy' }, 'gtceu:steel_bolt', 'gtceu:resin_circuit_board') + event.replaceInput({ id: 'gtceu:assembler/vacuum_tube_red_alloy_annealed' }, 'gtceu:steel_bolt', 'gtceu:resin_circuit_board') + + event.recipes.createSequencedAssembly([ + 'gtceu:vacuum_tube', + ], 'gtceu:resin_circuit_board', [ + event.recipes.createDeploying('tfg:unfinished_vacuum_tube', ['tfg:unfinished_vacuum_tube', '#forge:bolts/steel']), + event.recipes.createDeploying('tfg:unfinished_vacuum_tube', ['tfg:unfinished_vacuum_tube', 'gtceu:copper_single_wire']), + event.recipes.createDeploying('tfg:unfinished_vacuum_tube', ['tfg:unfinished_vacuum_tube', 'gtceu:copper_single_wire']), + event.recipes.createDeploying('tfg:unfinished_vacuum_tube', ['tfg:unfinished_vacuum_tube', 'gtceu:glass_tube']), + event.custom({ type: 'vintageimprovements:vacuumizing', ingredients: [{ item: 'tfg:unfinished_vacuum_tube' }], results: [{ item: 'tfg:unfinished_vacuum_tube' }], processingTime: 80 }) + ]).transitionalItem('tfg:unfinished_vacuum_tube').loops(1).id('tfg:gtceu/sequenced_assembly/vacuum_tube') + + // ULV Coil + event.recipes.createSequencedAssembly([ + 'gtceu:ulv_voltage_coil', + ], 'gtceu:magnetic_iron_rod', [ + event.recipes.createDeploying('gtceu:magnetic_iron_rod', ['gtceu:magnetic_iron_rod', '#forge:fine_wires/lead']) + ]).transitionalItem('gtceu:magnetic_iron_rod').loops(32).id('tfg:sequenced_assembly/ulv_voltage_coil') + + // LV basic circuit + event.remove({ id: 'gtceu:shaped/electronic_circuit_lv' }) + + event.recipes.createSequencedAssembly([ + 'gtceu:basic_electronic_circuit', + ], 'gtceu:resin_printed_circuit_board', [ + event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', 'gtceu:resistor']), + event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', 'gtceu:resistor']), + event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', 'gtceu:vacuum_tube']), + event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', 'gtceu:vacuum_tube']), + event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', 'create:electron_tube']), + event.recipes.createFilling('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', Fluid.of('gtceu:glue', 50)]), + event.recipes.createDeploying('tfg:unfinished_basic_electronic_circuit', ['tfg:unfinished_basic_electronic_circuit', '#forge:plates/steel']), + ]).transitionalItem('tfg:unfinished_basic_electronic_circuit').loops(1).id('tfg:gtceu/sequenced_assembly/basic_electronic_circuit') + + // MV basic circuit + event.remove({ id: 'gtceu:shaped/electronic_circuit_mv' }) + + event.recipes.createSequencedAssembly([ + 'gtceu:good_electronic_circuit', + ], 'gtceu:phenolic_printed_circuit_board', [ + event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', 'gtceu:diode']), + event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', 'gtceu:diode']), + event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', '#forge:single_wires/copper']), + event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', '#forge:single_wires/copper']), + event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', 'gtceu:basic_electronic_circuit']), + event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', 'gtceu:basic_electronic_circuit']), + event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', 'gtceu:basic_electronic_circuit']), + event.recipes.createDeploying('tfg:unfinished_good_electronic_circuit', ['tfg:unfinished_good_electronic_circuit', '#forge:plates/steel']), + ]).transitionalItem('tfg:unfinished_good_electronic_circuit').loops(1).id('tfg:gtceu/sequenced_assembly/good_electronic_circuit') + + // Vitrified Pearl + event.recipes.gtceu.shaped('gtceu:mv_field_generator', [ + 'ABA', + 'CDC', + 'ABA' + ], { + A: ChemicalHelper.get(TagPrefix.wireGtQuadruple, GTMaterials.MagnesiumDiboride, 1), + B: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Aluminium, 1), + C: '#gtceu:circuits/mv', + D: 'tfg:vitrified_pearl' + }).addMaterialInfo().id('gtceu:shaped/field_generator_mv') + + event.recipes.gtceu.assembler('field_generator_mv') + .itemInputs('tfg:vitrified_pearl', '2x #forge:plates/aluminium', '2x #gtceu:circuits/mv', '4x #forge:quadruple_wires/magnesium_diboride') + .itemOutputs('gtceu:mv_field_generator') + .duration(100) + .EUt(30) + + // Cryo Fluix Pearl + event.replaceInput({ id: 'gtceu:assembler/field_generator_hv' }, 'gtceu:quantum_eye', 'tfg:cryo_fluix_pearl') + + event.recipes.gtceu.shaped('gtceu:hv_field_generator', [ + 'ABA', + 'CDC', + 'ABA' + ], { + A: ChemicalHelper.get(TagPrefix.wireGtQuadruple, GTMaterials.MercuryBariumCalciumCuprate, 1), + B: ChemicalHelper.get(TagPrefix.plate, GTMaterials.StainlessSteel, 1), + C: '#gtceu:circuits/hv', + D: 'tfg:cryo_fluix_pearl' + }).addMaterialInfo().id('gtceu:shaped/field_generator_hv') + + // Change recipes to want EV circuit instead of IV + event.replaceInput({ id: 'gtceu:shaped/large_combustion_engine' }, '#gtceu:circuits/iv', '#gtceu:circuits/ev') + event.replaceInput({ id: 'gtceu:shaped/nano_chestplate_advanced' }, '#gtceu:circuits/iv', '#gtceu:circuits/ev') + event.replaceInput({ id: 'gtceu:assembler/ev_large_miner' }, '#gtceu:circuits/iv', '#gtceu:circuits/ev') + + // Nano wafer + event.remove({ id: 'gtceu:chemical_reactor/nano_cpu_wafer' }) + event.remove({ id: 'gtceu:large_chemical_reactor/nano_cpu_wafer' }) + + event.recipes.gtceu.chemical_reactor('tfg:nano_cpu_wafer') + .inputFluids(Fluid.of('gtceu:tritiated_water', 576)) + .itemInputs('gtceu:cpu_wafer', '16x gtceu:carbon_fibers') + .itemOutputs('gtceu:nano_cpu_wafer') + .duration(20*60) + .EUt(GTValues.VA[GTValues.EV]) + .cleanroom(CleanroomType.CLEANROOM) + + // Change components of IV mainframe to nano chip + event.remove({ id: 'gtceu:circuit_assembler/mainframe_iv_asmd_soldering_alloy'}) + event.remove({ id: 'gtceu:circuit_assembler/mainframe_iv'}) + event.remove({ id: 'gtceu:circuit_assembler/mainframe_iv_soldering_alloy'}) + event.remove({ id: 'gtceu:circuit_assembler/mainframe_iv_asmd'}) + + event.recipes.gtceu.circuit_assembler('tfg:circuit_assembler/mainframe_iv') + .itemInputs('2x gtceu:aluminium_frame', '2x gtceu:micro_processor_computer', '8x #gtceu:inductors', '16x #gtceu:capacitors', 'gtceu:nano_cpu_chip', '16x gtceu:annealed_copper_single_wire') + .inputFluids(Fluid.of('gtceu:tin', 576)) + .itemOutputs('gtceu:micro_processor_mainframe') + .duration(20 * 40) + .EUt(GTValues.VA[GTValues.HV]) + .cleanroom(CleanroomType.CLEANROOM) + + event.recipes.gtceu.circuit_assembler('tfg:circuit_assembler/mainframe_iv_soldering_alloy') + .itemInputs('2x gtceu:aluminium_frame', '2x gtceu:micro_processor_computer', '8x #gtceu:inductors', '16x #gtceu:capacitors', 'gtceu:nano_cpu_chip', '16x gtceu:annealed_copper_single_wire') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) + .itemOutputs('gtceu:micro_processor_mainframe') + .duration(20 * 40) + .EUt(GTValues.VA[GTValues.HV]) + .cleanroom(CleanroomType.CLEANROOM) + + event.recipes.gtceu.circuit_assembler('tfg:circuit_assembler/mainframe_iv_asmd') + .itemInputs('2x gtceu:aluminium_frame', '2x gtceu:micro_processor_computer', '2x gtceu:advanced_smd_inductor', '4x gtceu:advanced_smd_capacitor', 'gtceu:nano_cpu_chip', '16x gtceu:annealed_copper_single_wire') + .inputFluids(Fluid.of('gtceu:tin', 576)) + .itemOutputs('gtceu:micro_processor_mainframe') + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.HV]) + .cleanroom(CleanroomType.CLEANROOM) + + event.recipes.gtceu.circuit_assembler('tfg:circuit_assembler/mainframe_iv_asmd_soldering_alloy') + .itemInputs('2x gtceu:aluminium_frame', '2x gtceu:micro_processor_computer', '2x gtceu:advanced_smd_inductor', '4x gtceu:advanced_smd_capacitor', 'gtceu:nano_cpu_chip', '16x gtceu:annealed_copper_single_wire') + .inputFluids(Fluid.of('gtceu:soldering_alloy', 288)) + .itemOutputs('gtceu:micro_processor_mainframe') + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.HV]) + .cleanroom(CleanroomType.CLEANROOM) + + // Quantum Eye + event.replaceInput({ id: 'gtceu:assembler/field_generator_ev' }, 'minecraft:nether_star', 'gtceu:quantum_eye') + + event.recipes.gtceu.shaped('gtceu:ev_field_generator', [ + 'ABA', + 'CDC', + 'ABA' + ], { + A: ChemicalHelper.get(TagPrefix.wireGtQuadruple, GTMaterials.UraniumTriplatinum, 1), + B: ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.Titanium, 1), + C: '#gtceu:circuits/ev', + D: 'gtceu:quantum_eye' + }).addMaterialInfo().id('gtceu:shaped/field_generator_ev') + + event.remove({ id: 'gtceu:chemical_bath/quantum_eye' }) + event.recipes.gtceu.chemical_bath('tfg:quantum_eye') + .itemInputs('tfg:cryo_fluix_pearl') + .inputFluids(Fluid.of('gtceu:radon', 250)) + .itemOutputs('gtceu:quantum_eye') + .duration(20 * 24) + .EUt(GTValues.VA[GTValues.HV]) + + // Nether Star + event.replaceInput({ id: 'gtceu:assembler/field_generator_iv' }, 'gtceu:quantum_star', 'minecraft:nether_star') + + event.recipes.gtceu.shaped('gtceu:iv_field_generator', [ + 'ABA', + 'CDC', + 'ABA' + ], { + A: ChemicalHelper.get(TagPrefix.wireGtQuadruple, GTMaterials.SamariumIronArsenicOxide, 1), + B: ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.TungstenSteel, 1), + C: '#gtceu:circuits/iv', + D: 'minecraft:nether_star' + }).addMaterialInfo().id('gtceu:shaped/field_generator_iv') + + event.recipes.gtceu.chemical_reactor('tfg:gtceu/nether_star_dust') + .itemInputs('2x #forge:dusts/iridium', '#forge:dusts/diamond') + .circuit(10) + .itemOutputs('gtceu:nether_star_dust') + // TODO: change to something else with venus + .inputFluids(Fluid.of('gtceu:neon', 1000)) + .duration(700) + .EUt(2720) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/machines/recipes.ender_pearls.js b/kubejs/server_scripts/tfg/machines/recipes.ender_pearls.js new file mode 100644 index 000000000..84162e695 --- /dev/null +++ b/kubejs/server_scripts/tfg/machines/recipes.ender_pearls.js @@ -0,0 +1,61 @@ +"use strict"; + +function registerTFGEnderPearlRecipes(event) { + event.recipes.gtceu.chemical_reactor('kaolinite') + .itemInputs('5x #tfg:aluminium_oxide', '2x #forge:dusts/silicon') + .inputFluids(Fluid.of('gtceu:distilled_water', 6000), Fluid.of('gtceu:chlorine', 8000)) + .itemOutputs('17x tfc:powder/kaolinite') + .outputFluids(Fluid.of('gtceu:hydrochloric_acid', 8000)) + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('kaolinite_ruby') + .itemInputs('6x #forge:dusts/ruby', '2x #forge:dusts/silicon') + .inputFluids(Fluid.of('gtceu:distilled_water', 6000), Fluid.of('gtceu:chlorine', 8000)) + .itemOutputs('17x tfc:powder/kaolinite', '1x #forge:dusts/chromium') + .outputFluids(Fluid.of('gtceu:hydrochloric_acid', 8000)) + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.pyrolyse_oven('vitrified_ender_dust') + .itemInputs('minecraft:ender_pearl', '2x tfc:powder/kaolinite', '4x #forge:insulation_t1') + .inputFluids(Fluid.of('gtceu:nitrogen', 100)) + .itemOutputs('tfg:vitrified_pearl') + .chancedOutput('gtceu:ash_dust', 2500, 0) + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.implosion_compressor('vitrified_ender_pearl_dynamite') + .itemInputs('4x #forge:dusts/vitrified_pearl', '2x gtceu:dynamite') + .itemOutputs('3x tfg:vitrified_pearl') + .chancedOutput('#forge:dusts/dark_ash', 2500, 0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.implosion_compressor('vitrified_ender_pearl_powderbarrel') + .itemInputs('4x #forge:dusts/vitrified_pearl', '8x gtceu:powderbarrel') + .itemOutputs('3x tfg:vitrified_pearl') + .chancedOutput('#forge:dusts/dark_ash', 2500, 0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.implosion_compressor('vitrified_ender_pearl_tnt') + .itemInputs('4x #forge:dusts/vitrified_pearl', '4x minecraft:tnt') + .itemOutputs('3x tfg:vitrified_pearl') + .chancedOutput('#forge:dusts/dark_ash', 2500, 0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.implosion_compressor('vitrified_ender_pearl_itnt') + .itemInputs('4x #forge:dusts/vitrified_pearl', 'gtceu:industrial_tnt') + .itemOutputs('3x tfg:vitrified_pearl') + .chancedOutput('#forge:dusts/dark_ash', 2500, 0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.macerator('vitrified_ender_pearl') + .itemInputs('tfg:vitrified_pearl') + .itemOutputs('#forge:dusts/vitrified_pearl') + .duration(40) + .EUt(GTValues.VA[GTValues.ULV]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.molds.js b/kubejs/server_scripts/tfg/machines/recipes.molds.js similarity index 100% rename from kubejs/server_scripts/tfg/recipes.molds.js rename to kubejs/server_scripts/tfg/machines/recipes.molds.js diff --git a/kubejs/server_scripts/tfg/machines/recipes.multiblocks.js b/kubejs/server_scripts/tfg/machines/recipes.multiblocks.js new file mode 100644 index 000000000..65f5b2f21 --- /dev/null +++ b/kubejs/server_scripts/tfg/machines/recipes.multiblocks.js @@ -0,0 +1,238 @@ +"use strict"; + +function registerTFGMultiblockRecipes(event) { + + // Multi-Smelter + event.shaped('gtceu:multi_smelter', [ + 'AAA', + 'BCB', + 'DBD' + ], { + A: 'gtceu:hp_steam_furnace', + B: '#gtceu:circuits/hv', + C: 'gtceu:heatproof_machine_casing', + D: 'gtceu:copper_single_cable' + }).id('gtceu:shaped/multi_furnace') + + event.shaped('gtceu:multi_smelter', [ + 'AAA', + 'BCB', + 'DBD' + ], { + A: 'gtceu:lv_electric_furnace', + B: '#gtceu:circuits/hv', + C: 'gtceu:heatproof_machine_casing', + D: 'gtceu:copper_single_cable' + }).id('gtceu:shaped/multi_furnace2') + + // Electric Blast Furnace + event.shaped('gtceu:electric_blast_furnace', [ + 'AAA', + 'BCB', + 'DBD' + ], { + A: 'gtceu:hp_steam_furnace', + B: '#gtceu:circuits/lv', + C: 'gtceu:heatproof_machine_casing', + D: 'gtceu:tin_single_cable' + }).id('gtceu:shaped/electric_blast_furnace') + + event.shaped('gtceu:electric_blast_furnace', [ + 'AAA', + 'BCB', + 'DBD' + ], { + A: 'gtceu:lv_electric_furnace', + B: '#gtceu:circuits/lv', + C: 'gtceu:heatproof_machine_casing', + D: 'gtceu:tin_single_cable' + }).id('gtceu:shaped/electric_blast_furnace2') + + // TFG customs + event.recipes.gtceu.shaped('tfg:electric_greenhouse', [ + 'ABA', + 'CDC', + 'BCB' + ], { + A: '#gtceu:circuits/mv', + B: '#forge:single_cables/copper', + C: 'tfc:compost', + D: 'gtceu:steel_machine_casing' + }).addMaterialInfo().id('tfg:shaped/electric_greenhouse') + + event.recipes.gtceu.shaped('tfg:steam_bloomery', [ + 'CEC', + 'DAD', + 'CBC' + ], { + A: 'tfc:bloomery', + B: '#forge:frames/bronze', + C: '#forge:rods/black_steel', + D: '#forge:screws/wrought_iron', + E: '#forge:tools/wrenches' + }).addMaterialInfo().id('tfg:shaped/steam_bloomery') + + event.recipes.gtceu.shaped('tfg:steam_thermal_centrifuge', [ + 'ACA', + 'DBD', + 'ACA' + ], { + A: '#forge:plates/brass', + B: 'create:steam_engine', + C: ChemicalHelper.get(TagPrefix.gear, GTMaterials.Invar, 1), + D: '#gtceu:circuits/lv' + }).addMaterialInfo().id('tfg:shaped/steam_thermal_centrifuge') + + event.recipes.gtceu.shaped('tfg:steam_fuser', [ + 'ABA', + 'ACA', + 'ABA' + ], { + A: '#forge:plates/bronze', + B: 'gtceu:potin_large_fluid_pipe', + C: 'gtceu:hp_steam_alloy_smelter' + }).addMaterialInfo().id('gtceu:shaped/steam_fuser') + + event.recipes.gtceu.shaped('tfg:steam_squasher', [ + 'ABA', + 'ACA', + 'ABA' + ], { + A: '#forge:plates/brass', + B: 'gtceu:potin_large_fluid_pipe', + C: 'gtceu:hp_steam_compressor' + }).addMaterialInfo().id('gtceu:shaped/steam_squasher') + + event.recipes.gtceu.shaped('tfg:steam_presser', [ + 'ADA', + 'ACA', + 'ABA' + ], { + A: '#forge:plates/brass', + B: 'tfc:metal/anvil/steel', + C: 'gtceu:hp_steam_forge_hammer', + D: 'gtceu:potin_large_fluid_pipe' + }).addMaterialInfo().id('gtceu:shaped/steam_presser') + + event.recipes.gtceu.shaped('tfg:ostrum_linear_accelerator', [ + 'USU', + 'WZW', + 'PTP' + ], { + S: 'tfg:casings/machine_casing_vacuum_engine_intake', + Z: 'gtceu:iv_machine_hull', + W: '#gtceu:circuits/iv', + U: '#forge:double_plates/stellite_100', + T: '#forge:single_cables/platinum', + P: 'gtceu:iv_electric_pump' + }).addMaterialInfo().id('tfg:shaped/ostrum_linear_accelerator') + + event.recipes.gtceu.assembler('tfg:ostrum_harvester') + .itemInputs( + '1x gtceu:ev_machine_hull', + '4x #gtceu:circuits/ev', + '4x gtceu:ev_electric_motor', + '4x #forge:rotors/black_steel', + '4x gtceu:ev_electric_pump', + '4x #forge:gears/desh') + .itemOutputs('gtceu:ostrum_harvester') + .duration(400) + .EUt(GTValues.VA[GTValues.EV]) + .circuit(2) + + event.recipes.gtceu.assembler('tfg:moon_dust_harvester') + .itemInputs( + '1x gtceu:hv_machine_hull', + '4x #gtceu:circuits/hv', + '4x gtceu:hv_electric_motor', + '4x #forge:rotors/titanium', + '4x gtceu:hv_electric_pump', + '4x #forge:gears/rocket_alloy_t1') + .itemOutputs('gtceu:moon_dust_harvester') + .duration(400) + .EUt(GTValues.VA[GTValues.HV]) + .circuit(2) + + event.recipes.gtceu.shaped('tfg:evaporation_tower', [ + 'TUT', + 'WZW', + 'TUT' + ], { + T: '#gtceu:circuits/iv', + W: 'gtceu:ev_electric_pump', + U: '#forge:double_wires/nichrome', + Z: 'gtceu:ev_machine_hull' + }).addMaterialInfo().id('tfg:shaped/evaporation_tower') + + event.recipes.gtceu.shaped('deafission:fission_reactor_mk1', [ + 'TUT', + 'WZW', + 'TUT' + ], { + T: 'gtceu:atomic_casing', + W: '#gtceu:circuits/ev', + U: 'gtceu:hv_field_generator', + Z: 'gtceu:ev_machine_hull' + }).addMaterialInfo().id('tfg:shaped/fission_reactor_mk1') + + event.recipes.gtceu.shaped('gtceu:nuclear_fuel_factory', [ + 'TUT', + 'WZW', + 'TBT' + ], { + T: 'gtceu:atomic_casing', + W: '#gtceu:circuits/ev', + U: 'gtceu:ev_emitter', + Z: 'gtceu:ev_machine_hull', + B: 'gtceu:ev_robot_arm' + }).addMaterialInfo().id('tfg:shaped/nuclear_fuel_factory') + + event.recipes.gtceu.shaped('gtceu:heat_exchanger', [ + 'TUT', + 'WZW', + 'GBG' + ], { + T: 'gtceu:high_temperature_smelting_casing', + W: '#gtceu:circuits/ev', + U: 'gtceu:ev_sensor', + Z: 'gtceu:ev_machine_hull', + B: 'gtceu:ev_fluid_regulator', + G: '#forge:gears/ostrum_iodide' + }).addMaterialInfo().id('tfg:shaped/heat_exchanger') + + event.recipes.gtceu.shaped('tfg:nuclear_turbine', [ + 'CTC', + 'TZT', + 'BTB' + ], { + T: '#forge:gears/magnalium', + Z: 'gtceu:ev_machine_hull', + B: 'gtceu:ultimet_large_item_pipe', + C: '#gtceu:circuits/ev' + }).addMaterialInfo().id('tfg:shaped/nuclear_turbine') + + event.recipes.gtceu.shaped('gtceu:coal_liquefaction_tower', [ + 'ABA', + 'CDC', + 'EFE' + ], { + A: '#forge:double_wires/cupronickel', + B: 'gtceu:aluminium_drum', + C: '#gtceu:circuits/mv', + D: 'gtceu:mv_machine_hull', + E: 'gtceu:solid_machine_casing', + F: 'gtceu:mv_electric_piston' + }).addMaterialInfo().id('gtceu:shaped/coal_liquefaction_tower') + + event.remove({output: 'gtceu:active_transformer'}) + + event.recipes.gtceu.assembler('tfg:active_power_transformer') + .itemInputs('1x gtceu:iv_transformer_1a', '1x #gtceu:circuits/iv', '8x gtceu:uranium_triplatinum_single_wire', + '2x gtceu:hpic_chip') + .inputFluids(Fluid.of('gtceu:ostrum_iodide', 288)) + .itemOutputs('tfg:active_power_transformer') + .duration(300) + .EUt(GTValues.VA[GTValues.EV]) + .circuit(2) + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/machines/recipes.steam_bloomery.js b/kubejs/server_scripts/tfg/machines/recipes.steam_bloomery.js new file mode 100644 index 000000000..7f5b1888e --- /dev/null +++ b/kubejs/server_scripts/tfg/machines/recipes.steam_bloomery.js @@ -0,0 +1,38 @@ +"use strict"; + +function registerTFGSteamBloomeryRecipes(event) { + + event.recipes.gtceu.steam_bloomery('steam_raw_iron_bloom_coal') + .itemInputs('#forge:ingots/iron', '#tfg:steam_bloomery_basic_fuels') + .itemOutputs('tfc:raw_iron_bloom') + .duration(2400) + .EUt(2) + + event.recipes.gtceu.steam_bloomery('steam_raw_iron_bloom_coalcoke') + .itemInputs('2x #forge:ingots/iron', '#tfc:blast_furnace_fuel') + .itemOutputs('2x tfc:raw_iron_bloom') + .duration(2400) + .EUt(2) + + forEachMaterial(material => { + + const tfcProperty = material.getProperty(TFGPropertyKey.TFC_PROPERTY) + if (tfcProperty === null) + return; + + const outputMaterial = tfcProperty.getOutputMaterial() === null ? material : tfcProperty.getOutputMaterial() + if (outputMaterial === GTMaterials.Iron) { + event.recipes.gtceu.steam_bloomery(`steam_raw_iron_bloom_coal_${material.getName()}`) + .itemInputs(ChemicalHelper.get(TagPrefix.dust, material, 1), '#tfg:steam_bloomery_basic_fuels') + .itemOutputs('tfc:raw_iron_bloom') + .duration(2400) + .EUt(2) + + event.recipes.gtceu.steam_bloomery(`steam_raw_iron_bloom_coalcoke_${material.getName()}`) + .itemInputs(ChemicalHelper.get(TagPrefix.dust, material, 2), '#tfc:blast_furnace_fuel') + .itemOutputs('2x tfc:raw_iron_bloom') + .duration(2400) + .EUt(2) + } + }) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/tags.facades.js b/kubejs/server_scripts/tfg/machines/tags.facades.js similarity index 96% rename from kubejs/server_scripts/tfg/tags.facades.js rename to kubejs/server_scripts/tfg/machines/tags.facades.js index 13c5b8ea6..4afd087c3 100644 --- a/kubejs/server_scripts/tfg/tags.facades.js +++ b/kubejs/server_scripts/tfg/machines/tags.facades.js @@ -1,7 +1,7 @@ // priority: 0 "use strict"; -function registerFacadeWhitelistTags(event) { +function registerTFGFacadeWhitelistItemTags(event) { const facade_materials = [ //tags @@ -23,7 +23,7 @@ function registerFacadeWhitelistTags(event) { '#minecraft:terracotta', '#forge:concretes', '#create:casing', - '#dormum_ornamentum:brick_items', + '#domum_ornamentum:brick_items', '#simplylight:any_lamp_on', '#simplylight:any_lamp_off', '#minecraft:planks', @@ -38,7 +38,14 @@ function registerFacadeWhitelistTags(event) { '#tfg:ad_astra_calorite_blocks', '#tfg:ad_astra_etrium_blocks', '#tfg:titanium_concrete', - + + //reconstituted stone blocks + 'minecraft:smooth_stone', + 'minecraft:stone_bricks', + 'minecraft:cracked_stone_bricks', + 'minecraft:chiseled_stone_bricks', + 'minecraft:mossy_stone_bricks', + //rnr shingles 'rnr:ceramic_roof', 'rnr:terracotta_roof', @@ -65,6 +72,7 @@ function registerFacadeWhitelistTags(event) { 'gtceu:laminated_glass', 'gtceu:plascrete', 'gtceu:cleanroom_glass', + 'gtceu:treated_wood_planks', //gtceu casing 'gtceu:steam_machine_casing', @@ -119,6 +127,7 @@ function registerFacadeWhitelistTags(event) { 'gtceu:spatial_storage_hazard_sign_block', 'gtceu:turret_hazard_sign_block', 'gtceu:void_hazard_sign_block', + 'gtceu:high_temperature_hazard_sign_block', 'gtceu:yellow_stripes_block_a', 'gtceu:yellow_stripes_block_b', diff --git a/kubejs/server_scripts/tfg/mars/data.mars.js b/kubejs/server_scripts/tfg/mars/data.mars.js new file mode 100644 index 000000000..0a40f9896 --- /dev/null +++ b/kubejs/server_scripts/tfg/mars/data.mars.js @@ -0,0 +1,68 @@ +"use strict"; + +function registerTFGMarsBedrockFluidVeins(event) { + + const Registries = Java.loadClass("net.minecraft.core.registries.Registries") + const ResourceKey = Java.loadClass("net.minecraft.resources.ResourceKey") + 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") + const martianRusticusHillsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/rusticus_hills") + const martianRusticusPlainsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/rusticus_plains") + const martianSangnumHillsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/sangnum_hills") + const martianSangnumPlainsResourceKey = ResourceKey.create(Registries.BIOME, "tfg:mars/sangnum_plains") + + event.add('tfg:semiheavy_ammoniacal_water', vein => { + vein.dimensions('ad_astra:mars') + vein.fluid(() => Fluid.of('tfg:semiheavy_ammoniacal_water').fluid) + vein.weight(100) + vein.minimumYield(200) + vein.maximumYield(400) + vein.depletionAmount(1) + vein.depletionChance(20) + vein.depletedYield(15) + }) + + event.add('tfg:liquid_carbon_dioxide', vein => { + vein.dimensions('ad_astra:mars') + vein.fluid(() => Fluid.of('gtceu:liquid_carbon_dioxide').fluid) + vein.weight(30) + vein.minimumYield(20) + vein.maximumYield(350) + vein.depletionAmount(1) + vein.depletionChance(20) + vein.depletedYield(5) + }) + + event.add('tfg:liquid_ice', vein => { + vein.dimensions('ad_astra:mars') + vein.fluid(() => Fluid.of('gtceu:ice').fluid) + vein.weight(20) + vein.minimumYield(20) + vein.maximumYield(200) + vein.depletionAmount(1) + vein.depletionChance(20) + vein.depletedYield(5) + }) + + // 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', vein => { + vein.dimensions('ad_astra:mars') + vein.fluid(() => Fluid.of('tfg:heavy_ammoniacal_water').fluid) + vein.biomes(20, martianAmberHillsResourceKey) + vein.biomes(20, martianAmberPlainsResourceKey) + vein.biomes(20, martianRusticusHillsResourceKey) + vein.biomes(20, martianRusticusPlainsResourceKey) + vein.biomes(20, martianSangnumHillsResourceKey) + vein.biomes(20, martianSangnumPlainsResourceKey) + // This one is exclusively far inland, so it's ok to buff it a bit in case the player has bad luck + vein.biomes(50, martianMountainsResourceKey) + vein.weight(0) + vein.minimumYield(100) + vein.maximumYield(650) + vein.depletionAmount(1) + vein.depletionChance(20) + vein.depletedYield(30) + }) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/events.mars.js b/kubejs/server_scripts/tfg/mars/events.sandstorm.js similarity index 100% rename from kubejs/server_scripts/tfg/events.mars.js rename to kubejs/server_scripts/tfg/mars/events.sandstorm.js diff --git a/kubejs/server_scripts/tfg/mars/recipes.iodine.js b/kubejs/server_scripts/tfg/mars/recipes.iodine.js new file mode 100644 index 000000000..d4ac26ee0 --- /dev/null +++ b/kubejs/server_scripts/tfg/mars/recipes.iodine.js @@ -0,0 +1,117 @@ +"use strict"; + +function registerTFGMarsIodineRecipes(event) { + + // This file is specifically for the crappy mars-based iodine recipe chain. + // The "proper" venus one is elsewhere + + event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/log/crimson')) + .resultFluid(Fluid.of('tfg:crimsene', 1)) + .minTemp(-110) + .maxTemp(-15) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/crimson_log") + + event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/wood/crimson')) + .resultFluid(Fluid.of('tfg:crimsene', 1)) + .minTemp(-110) + .maxTemp(-15) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/crimson_wood") + + event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/log/warped')) + .resultFluid(Fluid.of('tfg:warpane', 1)) + .minTemp(-110) + .maxTemp(-15) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/warped_log") + + event.recipes.afc.tree_tapping(TFC.blockIngredient('beneath:wood/wood/warped')) + .resultFluid(Fluid.of('tfg:warpane', 1)) + .minTemp(-110) + .maxTemp(-15) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/warped_wood") + + event.recipes.gtceu.autoclave('tfg:crimsene') + .inputFluids(Fluid.of('tfg:crimsene', 144), Fluid.of('gtceu:liquid_carbon_dioxide', 1000)) + .outputFluids(Fluid.of('gtceu:carbon_monoxide', 1000)) + .itemOutputs('#forge:gems/crimsene') + .duration(20 * 60) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.firmalife.vat() + .inputs('10x tfg:dry_ice', Fluid.of('tfg:crimsene', 200)) + .outputItem('tfg:crimsene_gem') + .length(300) + .temperature(100) + .id('tfg:vat/crimsene') + + event.recipes.gtceu.autoclave('tfg:warpane') + .inputFluids(Fluid.of('tfg:warpane', 144), Fluid.of('gtceu:liquid_carbon_dioxide', 1000)) + .outputFluids(Fluid.of('gtceu:hydrogen', 1000)) + .itemOutputs('#forge:gems/warpane') + .duration(20 * 60) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.firmalife.vat() + .inputs('10x tfg:dry_ice', Fluid.of('tfg:warpane', 200)) + .outputItem('tfg:warpane_gem') + .length(300) + .temperature(100) + .id('tfg:vat/warpane') + + event.recipes.gtceu.macerator('tfg:crimsene') + .itemInputs('#forge:gems/crimsene') + .itemOutputs('#forge:dusts/crimsene') + .duration(20 * 5) + .EUt(2) + + event.recipes.gtceu.macerator('tfg:warpane') + .itemInputs('#forge:gems/warpane') + .itemOutputs('#forge:dusts/warpane') + .duration(20 * 5) + .EUt(2) + + event.recipes.gtceu.mixer('tfg:mars_sap') + .itemInputs('#forge:dusts/warpane', '#forge:dusts/crimsene') + .inputFluids(Fluid.of('gtceu:hydrochloric_acid', 1000), Fluid.of('gtceu:krypton', 500)) + .itemOutputs('#forge:dusts/mycelienzene') + .duration(30 * 20) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.deafission.fission_reactor_processing('tfg:mars_sap') + .itemInputs('#forge:dusts/mycelienzene') + .outputFluids(Fluid.of('tfg:cooked_mycelienzane', 1000)) + .blastFurnaceTemp(100) + .duration(30 * 10) + + event.recipes.gtceu.centrifuge('mars_sap_separation') + .inputFluids(Fluid.of('tfg:cooked_mycelienzane', 2000)) + .outputFluids( + Fluid.of('tfg:iodomethane', 1000), + Fluid.of('tfg:trideuteroiodomethane', 1000), + Fluid.of('gtceu:krypton', 1000), + Fluid.of('gtceu:diluted_hydrochloric_acid', 4000)) + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_reactor('tfg:iodomethane_separation') + .inputFluids( + Fluid.of('tfg:iodomethane', 1000), + Fluid.of('gtceu:hydrogen', 1000)) + .itemOutputs('#forge:dusts/iodine') + .outputFluids(Fluid.of('gtceu:methane', 1000)) + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.chemical_reactor('tfg:trideuteroiodomethane_separation') + .inputFluids( + Fluid.of('tfg:trideuteroiodomethane', 1000), + Fluid.of('gtceu:oxygen', 1500)) + .itemOutputs('#forge:dusts/iodine', '#forge:dusts/carbon') + .outputFluids(Fluid.of('tfg:heavy_water', 1500)) + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.MV]) + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/mars/recipes.mars.js b/kubejs/server_scripts/tfg/mars/recipes.mars.js new file mode 100644 index 000000000..3b4149e2e --- /dev/null +++ b/kubejs/server_scripts/tfg/mars/recipes.mars.js @@ -0,0 +1,274 @@ +"use strict"; + +function registerTFGMarsRecipes(event) { + + // Mars air + + event.recipes.gtceu.vacuum_freezer('tfg:liquid_mars_air') + .inputFluids(Fluid.of('tfg:mars_air', 4000)) + .outputFluids(Fluid.of('tfg:liquid_mars_air', 4000)) + .duration(80) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.centrifuge('tfg:centrifuge_mars_air') + .inputFluids(Fluid.of('tfg:mars_air', 10000)) + .outputFluids(Fluid.of('gtceu:carbon_dioxide', 3900), Fluid.of('gtceu:nitrogen', 1000), Fluid.of('gtceu:argon', 500)) + .duration(1600) + .EUt(GTValues.VA[GTValues.LV]) + + // TODO: move neon and xenon somewhere else + event.recipes.gtceu.distillation_tower('tfg:distill_liquid_mars_air') + .inputFluids(Fluid.of('tfg:liquid_mars_air', 100000)) + .outputFluids(Fluid.of('gtceu:carbon_dioxide', 80000)) + .outputFluids(Fluid.of('gtceu:nitrogen', 7000)) + .outputFluids(Fluid.of('gtceu:argon', 5000)) + .outputFluids(Fluid.of('gtceu:oxygen', 3000)) + .outputFluids(Fluid.of('gtceu:krypton', 1000)) + .outputFluids(Fluid.of('gtceu:neon', 1000)) + .outputFluids(Fluid.of('gtceu:xenon', 1000)) + .chancedOutput('gtceu:ammonium_chloride_dust', 2250, 0) + .disableDistilleryRecipes(true) + .duration(2000) + .EUt(GTValues.VA[GTValues.EV]) + + //#region Mars Water + + event.recipes.gtceu.centrifuge('mars_heavy_water') + .inputFluids(Fluid.of('tfg:heavy_ammoniacal_water', 1000)) + .outputFluids(Fluid.of('tfg:heavy_water', 500)) + .itemOutputs('#forge:dusts/ammonium_chloride', '2x #forge:small_dusts/ammonium_chloride') + .duration(20*9) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.gtceu.centrifuge('mars_semiheavy_water') + .inputFluids(Fluid.of('tfg:semiheavy_ammoniacal_water', 1000)) + .outputFluids(Fluid.of('tfg:semiheavy_water', 500)) + .itemOutputs('2x #forge:tiny_dusts/ammonium_chloride') + .duration(20*9) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.distillery('mars_semiheavy_water') + .inputFluids(Fluid.of('tfg:semiheavy_ammoniacal_water', 1000)) + .outputFluids(Fluid.of('minecraft:water', 250)) + .duration(20*5) + .EUt(GTValues.VA[GTValues.MV]) + + // Mars plants + + event.recipes.gtceu.mixer('tfg:bio_glowstone') + .itemInputs('betterend:cave_pumpkin_chunks', '4x species:alphacene_mushroom_block') + .outputFluids(Fluid.of('gtceu:biomass', 100)) + .itemOutputs('2x minecraft:glowstone_dust') + .duration(5 * 20) + .EUt(GTValues.VA[GTValues.EV]) + .dimension('ad_astra:mars') + + // Ad astra woods + + global.AD_ASTRA_WOOD.forEach(wood => { + woodBuilder(event, wood.name, wood.lumber, wood.logs, wood.log, wood.stripped_log, wood.plank, wood.stair, wood.slab, wood.door, wood.trapdoor, wood.fence, wood.fence_gate, wood.support, wood.pressure_plate, wood.button) + }) + + event.shaped('8x ad_astra:aeronos_ladder', [ + 'A A', + 'ABA', + 'A A' + ], { + A: 'tfg:wood/lumber/aeronos', + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Wood, 1), + }).id('tfg:shaped/aeronos_ladder') + + event.shaped('8x ad_astra:strophar_ladder', [ + 'A A', + 'ABA', + 'A A' + ], { + A: 'tfg:wood/lumber/strophar', + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Wood, 1), + }).id('tfg:shaped/strophar_ladder') + + + generateGreenHouseRecipe(event, '8x tfg:saplings/strophar', 'tfg:semiheavy_ammoniacal_water', 16000, + '64x ad_astra:strophar_stem', 'tfg:green_house/strophar_mushroom', 'ad_astra:mars', 8, + '16x ad_astra:strophar_cap', GTValues.VA[GTValues.MV]) + generateGreenHouseRecipe(event, '8x tfg:saplings/aeronos', 'tfg:semiheavy_ammoniacal_water', 16000, + '64x ad_astra:aeronos_stem', 'tfg:green_house/aeronos_mushroom', 'ad_astra:mars', 8, + '16x ad_astra:aeronos_cap', GTValues.VA[GTValues.MV]) + generateGreenHouseRecipe(event, '8x tfg:saplings/glacian', 'tfg:semiheavy_ammoniacal_water', 16000, + '64x ad_astra:glacian_log', 'tfg:green_house/glacian_tree', 'ad_astra:mars', 8, + '8x species:alphacene_moss_block', GTValues.VA[GTValues.MV]) + + // Beneath woods + + generateGreenHouseRecipe(event, '8x tfg:saplings/warped', 'tfg:semiheavy_ammoniacal_water', 16000, + '64x beneath:wood/log/warped', 'tfg:green_house/warped_fungus', 'ad_astra:mars', 8, + '32x minecraft:warped_wart_block', GTValues.VA[GTValues.MV]) + generateGreenHouseRecipe(event, '8x tfg:saplings/crimson', 'tfg:semiheavy_ammoniacal_water', 16000, + '64x beneath:wood/log/crimson', 'tfg:green_house/crimson_fungus', 'ad_astra:mars', 8, + '32x minecraft:nether_wart_block', GTValues.VA[GTValues.MV]) + + // don't pass in the items like doors, trapdoors etc because beneath already has good recipes for those + woodBuilder(event, 'crimson', 'beneath:wood/lumber/crimson', '#tfc:crimson_logs', 'beneath:wood/log/crimson', + 'beneath:wood/stripped_log/crimson', 'beneath:wood/planks/crimson', null, + 'beneath:wood/planks/crimson_slab', null, null, null, null, null, 'beneath:wood/planks/crimson_pressure_plate', + 'beneath:wood/planks/crimson_button') + + event.recipes.gtceu.lathe(`tfg:cutter/crimson_stripped_wood_from_wood`) + .itemInputs('beneath:wood/wood/crimson') + .itemOutputs('beneath:wood/stripped_wood/crimson') + .duration(50) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.vintageimprovements.polishing('beneath:wood/stripped_wood/crimson', 'beneath:wood/wood/crimson') + .speedLimits(0) + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/stripping_crimson_wood`) + + woodBuilder(event, 'warped', 'beneath:wood/lumber/warped', '#tfc:warped_logs', 'beneath:wood/log/warped', + 'beneath:wood/stripped_log/warped', 'beneath:wood/planks/warped', null, + 'beneath:wood/planks/warped_slab', null, null, null, null, null, 'beneath:wood/planks/warped_pressure_plate', + 'beneath:wood/planks/warped_button') + + event.recipes.gtceu.lathe(`tfg:cutter/warped_stripped_wood_from_wood`) + .itemInputs('beneath:wood/wood/warped') + .itemOutputs('beneath:wood/stripped_wood/warped') + .duration(50) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.vintageimprovements.polishing('beneath:wood/stripped_wood/warped', 'beneath:wood/wood/warped') + .speedLimits(0) + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/stripping_warped_wood`) + + // Alphacene + + 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]) + + //Large Nest + event.shaped('tfg:large_nest_box', + [ + 'B B', + 'ABA', + 'AAA' + ], { + A: 'beneath:crimson_thatch', + B: 'beneath:crimson_straw' + }).id('tfg:shaped_large_nest_crimson') + + event.shaped('tfg:large_nest_box_warped', + [ + 'B B', + 'ABA', + 'AAA' + ], { + A: 'beneath:warped_thatch', + B: 'beneath:warped_straw' + }).id('tfg:shaped_large_nest_warped') + + // Animal stuff + + 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_wraptor_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_wraptor_egg_full') + .itemInputs('tfg:wraptor_egg') + .itemOutputs('4x tfg:wraptor_sugar') + .duration(200) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.extractor('tfg:juice_sniffer_egg') + .itemInputs('tfg:sniffer_egg') + .outputFluids(Fluid.of('firmalife:cream', 1000)) + .duration(100) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.tfc.loom( + '8x ad_astra:glacian_fur', + '8x tfg:glacian_wool', + 8, + 'ad_astra:block/glacian_fur' + ) + + event.recipes.gtceu.assembler('tfg:assembler/glacian_fur') + .itemInputs('tfg:glacian_wool') + .circuit(10) + .itemOutputs('ad_astra:glacian_fur') + .duration(100) + .EUt(4) + + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless('8x tfc:wool_yarn', [ + 'tfc:spindle', + 'tfg:glacian_wool' + ]).id('tfg:shapeless/glacian_wool_to_yarn')) + + event.recipes.gtceu.wiremill('tfg:glacian_wool_yarn') + .itemInputs('tfg:glacian_wool') + .itemOutputs('8x tfc:wool_yarn') + .duration(100) + .EUt(4) + + event.shaped('minecraft:pink_bed', [ + 'AAA', + 'BBB' + ], { + A: 'ad_astra:glacian_fur', + B: '#tfc:lumber' + }).id('tfg:shaped/glacian_bed') + + // Plants + + Ingredient.of('#tfg:mars_plants').stacks.forEach(element => { + const itemId = element.id; + const recipeId = `greenhouse_${itemId.replace(':', '_')}`; + + generateGreenHouseRecipe(event, itemId, 'tfg:semiheavy_ammoniacal_water', 8000, `8x ${itemId}`, + recipeId, 'ad_astra:mars', 8, itemId, GTValues.VA[GTValues.LV]); + }); + + generateGreenHouseRecipe(event, '8x betterend:amber_root_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, + '24x betterend:amber_root_product', 'amber_root', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) + + generateGreenHouseRecipe(event, '8x betterend:blossom_berry_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, + '24x betterend:blossom_berry_product', 'blossom_berry', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) + + generateGreenHouseRecipe(event, '8x betterend:bolux_mushroom_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, + '24x betterend:bolux_mushroom_product', 'bolux_mushroom', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) + + generateGreenHouseRecipe(event, '8x betterend:cave_pumpkin_plant_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, + '24x betterend:cave_pumpkin', 'cave_pumpkin', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) + + generateGreenHouseRecipe(event, '8x betterend:chorus_mushroom_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, + '24x betterend:chorus_mushroom_product', 'chorus_mushroom', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) + + generateGreenHouseRecipe(event, '8x betterend:shadow_berry_seeds', 'tfg:semiheavy_ammoniacal_water', 8000, + '24x betterend:shadow_berry_product', 'shadow_berry', 'ad_astra:mars', 8, null, GTValues.VA[GTValues.LV]) + + event.recipes.firmalife.oven('betterend:cave_pumpkin_pie_raw', 400, 60 * 20, 'betterend:cave_pumpkin_pie') + + // Mars primitive stuff + + event.recipes.vintageimprovements.vacuumizing( + [Fluid.of('tfg:latex', 100), Fluid.of('gtceu:ammonia', 100)], + [Fluid.of('tfg:warpane', 100), Fluid.of('tfg:crimsene', 100)]) + .secondaryFluidInput(1) + .secondaryFluidOutput(1) + .processingTime(1000) + .heated() + .id('tfg:vacuumizing/mars_latex') + + event.recipes.vintageimprovements.vacuumizing( + [Fluid.of('minecraft:water', 250), Fluid.of('gtceu:ammonia', 250)], + Fluid.of('tfg:semiheavy_ammoniacal_water', 1000)) + .secondaryFluidOutput(1) + .processingTime(300) + .heated() + .id('tfg:vacummizing/mars_water') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/mars/recipes.ostrum.js b/kubejs/server_scripts/tfg/mars/recipes.ostrum.js new file mode 100644 index 000000000..7aa0cdffd --- /dev/null +++ b/kubejs/server_scripts/tfg/mars/recipes.ostrum.js @@ -0,0 +1,140 @@ +"use strict"; + +function registerTFGMarsOstrumRecipes(event) { + + var $HeatRecipeCapability = Java.loadClass("fi.dea.mc.deafission.common.data.recipe.HeatRecipeCapability"); + var $HeatIngredient = Java.loadClass("fi.dea.mc.deafission.common.data.recipe.HeatIngredient"); + const $ChanceLogic = Java.loadClass('com.gregtechceu.gtceu.api.recipe.chance.logic.ChanceLogic') + + // 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) + .EUt(GTValues.VA[GTValues.LV]); + + // Ostrum Linear Accelerator Recipes + + event.recipes.gtceu.ostrum_linear_accelerator('tfg:ostrum_transformation') + .inputFluids('gtceu:residual_radioactive_concoction 100') + .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) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/hematite'), 1, 10) + .dimension('ad_astra:mars') + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.IV]); + + // Ostrum Linear Accelerator Recipes + + // .input($HeatRecipeCapability.CAP, new $HeatIngredient(X, Y)) where X is Minimal Temperature to run and where Y is HU consummed per craft + /* + event.recipes.gtceu.ostrum_linear_accelerator('tfg:ostrum_transformation') + .inputFluids('gtceu:residual_radioactive_concoction 100') + .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_vapor_t1') + .perTick(true) + .inputFluids('gtceu:residual_radioactive_concoction 1') + .perTick(false) + .inputFluids(Fluid.of('gtceu:lightweight_ostrum_vapor',1000)) + .inputFluids(Fluid.of('gtceu:radon', 10)) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/thorium'), 1, 10) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/silver'), 1, 10) + .itemOutputsRanged(Item.of('gtceu:dusty_raw_tricalcium_phosphate'), 1, 10) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/bauxite'), 1, 10) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/lead'), 1, 10) + //.input($HeatRecipeCapability.CAP, new $HeatIngredient(100, 500)) + .dimension('ad_astra:mars') + .duration(20 * 20) + .circuit(1); + + event.recipes.gtceu.ostrum_linear_accelerator('tfg:lightweight_ostrum_vapor_t2') + .perTick(true) + .inputFluids('gtceu:residual_radioactive_concoction 1') + .inputFluids(Fluid.of('tfg:semiheavy_water', 1)) + .perTick(false) + .inputFluids(Fluid.of('gtceu:lightweight_ostrum_vapor',1000)) + .inputFluids(Fluid.of('gtceu:radon', 10)) + .inputFluids(Fluid.of('gtceu:krypton', 10)) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/thorium'), 10, 20) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/silver'), 1, 10) + .itemOutputsRanged(Item.of('gtceu:dusty_raw_tricalcium_phosphate'), 1, 10) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/bauxite'), 1, 10) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/lead'), 1, 10) + .itemOutputsRanged(Item.of('gtceu:dusty_raw_pitchblende'), 1, 10) + //.input($HeatRecipeCapability.CAP, new $HeatIngredient(100, 500)) + .dimension('ad_astra:mars') + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.IV]) + .circuit(2); + + event.recipes.gtceu.ostrum_linear_accelerator('tfg:lightweight_ostrum_vapor_t3') + .perTick(true) + .inputFluids('gtceu:residual_radioactive_concoction 1') + .inputFluids(Fluid.of('tfg:semiheavy_water', 1)) + .perTick(false) + .inputFluids(Fluid.of('gtceu:lightweight_ostrum_vapor',1000)) + .inputFluids(Fluid.of('gtceu:radon', 10)) + .inputFluids(Fluid.of('gtceu:krypton', 10)) + .inputFluids(Fluid.of('gtceu:tritiated_water', 10)) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/thorium'), 10, 20) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/silver'), 1, 10) + .itemOutputsRanged(Item.of('gtceu:dusty_raw_tricalcium_phosphate'), 1, 10) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/bauxite'), 1, 10) + .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/lead'), 10, 10) + .itemOutputsRanged(Item.of('gtceu:dusty_raw_pitchblende'), 10, 20) + .input($HeatRecipeCapability.CAP, new $HeatIngredient(100, 500)) + .dimension('ad_astra:mars') + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.IV]) + .circuit(3); + */ + //#endregion + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/mars/tags.mars.js b/kubejs/server_scripts/tfg/mars/tags.mars.js new file mode 100644 index 000000000..202f69c27 --- /dev/null +++ b/kubejs/server_scripts/tfg/mars/tags.mars.js @@ -0,0 +1,529 @@ +"use strict"; + +function registerTFGMarsItemTags(event) { + + event.add('c:hidden_from_recipe_viewers', 'tfg:mars_ice') + + event.add('tfc:compost_greens', 'ad_astra:aeronos_cap') + event.add('tfc:compost_greens', 'ad_astra:strophar_cap') + + // Dirt + event.add('minecraft:dirt', 'tfg:grass/mars_dirt') + event.add('minecraft:dirt', 'tfg:grass/mars_clay_dirt') + event.add('tfc:dirt', 'tfg:grass/mars_dirt') + event.add('tfc:dirt', 'tfg:grass/mars_clay_dirt') + event.add('tfc:grass', 'tfg:grass/amber_mycelium') + event.add('tfc:grass', 'tfg:grass/amber_clay_mycelium') + event.add('tfc:grass', 'tfg:grass/rusticus_mycelium') + event.add('tfc:grass', 'tfg:grass/rusticus_clay_mycelium') + event.add('tfc:grass', 'tfg:grass/sangnum_mycelium') + event.add('tfc:grass', 'tfg:grass/sangnum_clay_mycelium') + event.add('tfc:farmland', 'tfg:grass/mars_farmland') + event.add('tfc:paths', 'tfg:grass/mars_path') + event.add('tfc:kaolin_clay', 'tfg:grass/amber_kaolin_mycelium') + event.add('tfc:kaolin_clay', 'tfg:grass/rusticus_kaolin_mycelium') + event.add('tfc:kaolin_clay', 'tfg:grass/sangnum_kaolin_mycelium') + + // Mars animals + event.add('tfg:martian_eggs', 'tfg:sniffer_egg') + event.add('tfg:martian_eggs', 'tfg:wraptor_egg') + event.add('forge:eggs', '#tfg:martian_eggs') + event.add('firmalife:foods/raw_eggs', '#tfg:martian_eggs') + + event.add('tfg:martian_animal_foods', 'betterend:amber_root_product') + event.add('tfg:martian_animal_foods', 'betterend:blossom_berry_product') + event.add('tfg:martian_animal_foods', 'betterend:chorus_mushroom_product') + event.add('tfg:martian_animal_foods', 'betterend:shadow_berry_product') + event.add('tfg:martian_animal_foods', 'betterend:bolux_mushroom_product') + event.add('tfg:martian_animal_foods', 'betterend:cave_pumpkin_chunks') + + event.add('tfg:glacian_ram_food', '#tfg:martian_animal_foods') + event.add('tfg:sniffer_food', '#tfg:martian_animal_foods') + event.add('tfg:wraptor_food', '#tfg:martian_animal_foods') + + event.remove('minecraft:wool', 'ad_astra:glacian_fur') + + event.add('tfg:mineral_rich_wool', 'tfg:wraptor_wool') + event.add('tfg:mineral_rich_wool', 'tfg:sniffer_wool') + + event.add('buildinggadgets2:deny', 'tfg:spice') + + // these are log tags + event.remove('ad_astra:aeronos_caps', 'ad_astra:aeronos_cap') + event.remove('ad_astra:strophar_caps', 'ad_astra:strophar_cap') + + event.add('tfc:makes_tannin', '#ad_astra:glacian_logs') + event.add('tfc:makes_tannin', '#tfc:crimson_logs') + event.add('tfc:makes_tannin', '#tfc:warped_logs') + + // Crops + event.add('forge:seeds', 'betterend:amber_root_seeds') + event.add('forge:seeds', 'betterend:blossom_berry_seeds') + event.add('forge:seeds', 'betterend:bolux_mushroom_seeds') + event.add('forge:seeds', 'betterend:cave_pumpkin_plant_seeds') + event.add('forge:seeds', 'betterend:shadow_berry_seeds') + + event.add('tfc:foods', 'betterend:amber_root_product') + event.add('tfc:foods/grains', 'betterend:amber_root_product') + + event.add('tfc:foods', 'betterend:blossom_berry_product') + event.add('tfc:foods/fruits', 'betterend:blossom_berry_product') + + event.add('tfc:foods', 'betterend:bolux_mushroom_product') + event.add('tfc:foods/vegetables', 'betterend:bolux_mushroom_product') + event.add('forge:mushrooms', 'betterend:bolux_mushroom_product') + event.add('tfc:foods', 'betterend:bolux_mushroom_cooked') + event.add('tfc:foods/vegetables', 'betterend:bolux_mushroom_cooked') + event.add('forge:mushrooms', 'betterend:bolux_mushroom_cooked') + + event.add('tfc:foods', 'betterend:cave_pumpkin') + event.add('tfc:foods', 'betterend:cave_pumpkin_chunks') + event.add('tfc:foods/fruits', 'betterend:cave_pumpkin_chunks') + event.add('tfc:foods', 'betterend:cave_pumpkin_pie_dough') + event.add('tfc:foods', 'betterend:cave_pumpkin_pie_raw') + event.add('tfc:foods', 'betterend:cave_pumpkin_pie') + event.add('firmalife:foods/washable', 'betterend:cave_pumpkin_pie_raw') + event.add('firmalife:foods/washable', 'betterend:cave_pumpkin_pie') + + event.add('tfc:foods', 'betterend:chorus_mushroom_product') + event.add('tfc:foods/vegetables', 'betterend:chorus_mushroom_product') + event.add('forge:mushrooms', 'betterend:chorus_mushroom_product') + event.add('tfc:foods', 'betterend:chorus_mushroom_cooked') + event.add('tfc:foods/vegetables', 'betterend:chorus_mushroom_cooked') + event.add('forge:mushrooms', 'betterend:chorus_mushroom_cooked') + + event.add('tfc:foods', 'betterend:shadow_berry_product') + event.add('tfc:foods/fruits', 'betterend:shadow_berry_product') + event.add('tfc:foods', 'betterend:shadow_berry_cooked') + event.add('tfc:foods/fruits', 'betterend:shadow_berry_cooked') + + event.add('forge:mushrooms', 'betterend:flammalix') + event.add('forge:mushrooms', 'betterend:small_amaranita_mushroom') +} + +function registerTFGMarsBlockTags(event) { + + event.add('buildinggadgets2:deny', 'tfg:spice') + event.add('ae2:blacklisted/spatial', 'tfg:spice') + + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/dacite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/dacite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/dacite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/basalt') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/basalt') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/basalt') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/gabbro') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/gabbro') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/gabbro') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/diorite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/diorite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/diorite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/rhyolite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/rhyolite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/rhyolite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/andesite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/andesite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/andesite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/chert') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/chert') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/chert') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/conglomerate') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/conglomerate') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/conglomerate') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/claystone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/claystone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/claystone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/limestone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/limestone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/limestone') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/dolomite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/dolomite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/dolomite') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/raw/shale') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/hardened/shale') + event.add('ad_astra:mars_stone_replaceables', 'tfc:rock/gravel/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', 'tfg:rock/gravel_mars') + 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', 'tfg:rock/hardened_venus_stone') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/gravel_venus') + event.add('ad_astra:mars_stone_replaceables', 'gtceu:red_granite') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/hardened_red_granite') + event.add('ad_astra:mars_stone_replaceables', 'tfg:rock/gravel_red_granite') + event.add('ad_astra:mars_stone_replaceables', 'create:ochrum') + + event.add('tfc:can_carve', '#ad_astra:mars_stone_replaceables') + + event.add('tfg:mars_soil', 'minecraft:red_sand') + event.add('tfg:mars_soil', 'ad_astra:mars_sand') + event.add('tfg:mars_soil', 'ad_astra:venus_sand') + event.add('tfg:mars_soil', 'tfg:rock/gravel_venus') + event.add('tfg:mars_soil', 'tfg:rock/gravel_mars') + event.add('tfg:mars_soil', 'tfc:rock/gravel/dacite') + event.add('tfg:mars_soil', 'tfc:rock/gravel/basalt') + event.add('tfg:mars_soil', 'tfc:rock/gravel/gabbro') + event.add('tfg:mars_soil', 'tfc:rock/gravel/diorite') + event.add('tfg:mars_soil', 'tfc:rock/gravel/rhyolite') + event.add('tfg:mars_soil', 'tfc:rock/gravel/andesite') + event.add('tfg:mars_soil', 'tfc:rock/gravel/conglomerate') + event.add('tfg:mars_soil', 'tfc:rock/gravel/claystone') + event.add('tfg:mars_soil', 'tfc:rock/gravel/limestone') + event.add('tfg:mars_soil', 'tfc:rock/gravel/dolomite') + event.add('tfg:mars_soil', 'tfc:rock/gravel/shale') + event.add('tfg:mars_soil', 'tfc:sand/black') + 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/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') + event.add('minecraft:animals_spawnable_on', '#tfg:mars_plants') + event.add('minecraft:valid_spawn', '#minecraft:animals_spawnable_on') + + event.removeAll('minecraft:sniffer_diggable_block') + + event.add('tfc:can_be_snow_piled', 'minecraft:crimson_fungus') + event.add('tfc:can_be_snow_piled', 'minecraft:warped_fungus') + event.add('tfc:can_be_snow_piled', 'minecraft:torchflower') + event.add('tfc:can_be_snow_piled', 'minecraft:pitcher_plant') + + 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', 'tfg:glacian_leaves') + event.add('tfg:heightmap_ignore', 'betterend:glacian_hymenophore') + event.add('tfg:heightmap_ignore', 'species:alphacene_moss_block') + event.add('tfg:heightmap_ignore', 'minecraft:ice') + + event.remove('minecraft:enderman_holdable', 'minecraft:crimson_fungus') + event.remove('minecraft:enderman_holdable', 'minecraft:warped_fungus') + + event.remove('ad_astra:strophar_caps', 'ad_astra:strophar_cap') + event.remove('ad_astra:aeronos_caps', 'ad_astra:aeronos_cap') + + event.add('tfc:can_be_snow_piled', 'ad_astra:aeronos_mushroom') + event.add('tfc:can_be_snow_piled', 'ad_astra:strophar_mushroom') + + 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:paths', 'tfg:grass/mars_path') + + 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('tfc:kaolin_clay', 'tfg:grass/amber_kaolin_mycelium') + event.add('tfc:kaolin_clay', 'tfg:grass/rusticus_kaolin_mycelium') + event.add('tfc:kaolin_clay', '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/amber_clay_mycelium') + event.add('tfg:do_not_destroy_in_space', 'tfg:grass/rusticus_clay_mycelium') + event.add('tfg:do_not_destroy_in_space', 'tfg:grass/sangnum_clay_mycelium') + event.add('tfg:do_not_destroy_in_space', 'tfg:grass/amber_kaolin_mycelium') + event.add('tfg:do_not_destroy_in_space', 'tfg:grass/rusticus_kaolin_mycelium') + event.add('tfg:do_not_destroy_in_space', 'tfg:grass/sangnum_kaolin_mycelium') + event.add('tfg:do_not_destroy_in_space', 'tfg:grass/mars_farmland') + event.add('tfg:do_not_destroy_in_space', 'tfg:grass/mars_path') + + 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/mars_path') + 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:mineable/shovel', 'tfg:grass/mars_dirt') + event.add('minecraft:mineable/shovel', 'tfg:grass/mars_clay_dirt') + event.add('minecraft:mineable/shovel', 'tfg:grass/mars_path') + event.add('minecraft:mineable/shovel', 'tfg:grass/mars_farmland') + event.add('minecraft:mineable/shovel', 'tfg:grass/amber_mycelium') + event.add('minecraft:mineable/shovel', 'tfg:grass/amber_clay_mycelium') + event.add('minecraft:mineable/shovel', 'tfg:grass/amber_kaolin_mycelium') + event.add('minecraft:mineable/shovel', 'tfg:grass/rusticus_mycelium') + event.add('minecraft:mineable/shovel', 'tfg:grass/rusticus_clay_mycelium') + event.add('minecraft:mineable/shovel', 'tfg:grass/rusticus_kaolin_mycelium') + event.add('minecraft:mineable/shovel', 'tfg:grass/sangnum_mycelium') + event.add('minecraft:mineable/shovel', 'tfg:grass/sangnum_clay_mycelium') + event.add('minecraft:mineable/shovel', 'tfg:grass/sangnum_kaolin_mycelium') + + event.add('tfc:bush_plantable_on', 'tfg:grass/mars_farmland') + event.add('tfc:grass_plantable_on', 'tfg:grass/mars_farmland') + event.add('tfc:creeping_plantable_on', 'tfg:grass/mars_farmland') + + event.add('tfg:decorative_plant_attachable', '#minecraft:logs') + event.add('tfg:decorative_plant_attachable', 'minecraft:mushroom_stem') + event.add('tfg:decorative_plant_attachable', 'species:alphacene_mushroom_block') + event.add('tfg:decorative_plant_attachable', 'species:alphacene_moss_block') + event.add('tfg:decorative_plant_attachable', 'ad_astra:aeronos_cap') + event.add('tfg:decorative_plant_attachable', 'ad_astra:strophar_cap') + event.add('tfg:decorative_plant_attachable', 'tfg:glacian_leaves') + event.add('tfg:decorative_plant_attachable', 'minecraft:nether_wart_block') + event.add('tfg:decorative_plant_attachable', 'minecraft:warped_wart_block') + event.add('tfg:decorative_plant_attachable', 'betterend:cave_bush') + event.add('tfg:decorative_plant_attachable', 'betterend:lucernia_leaves') + + event.add('minecraft:mineable/shovel', 'tfg:ash_pile') + event.add('minecraft:mineable/shovel', 'tfg:pile/black_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/white_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/brown_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/red_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/yellow_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/pink_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/green_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/moon_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/mars_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/venus_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/hematitic_sand') + event.add('minecraft:mineable/shovel', 'tfg:pile/mars_sand_covering') + event.add('minecraft:mineable/shovel', 'tfg:pile/venus_sand_covering') + event.add('minecraft:mineable/shovel', 'tfg:pile/hematitic_sand_covering') +} + +function registerTFGMarsBiomeTags(event) { + + global.MARS_BIOMES.forEach(biome => { + event.add('tfg:mars_biomes', biome) + }) + + event.add('sandworm_mod:can_spawn_sandworms', 'tfg:mars/martian_dunes') + event.add('sandworm_mod:can_spawn_sandworms', 'tfg:mars/martian_deep_desert') + + 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_dark_sand_particles', 'tfg:mars/martian_mountains') + 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_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_river') + + event.add('tfg:has_mild_dust_storms', 'tfg:mars/martian_mountains') + event.add('tfg:has_mild_dust_storms', 'tfg:mars/martian_river') + event.add('tfg:has_mild_dust_storms', 'tfg:mars/amber_hills') + event.add('tfg:has_mild_dust_storms', 'tfg:mars/rusticus_hills') + event.add('tfg:has_mild_dust_storms', 'tfg:mars/sangnum_hills') + event.add('tfg:has_moderate_dust_storms', 'tfg:mars/amber_plains') + event.add('tfg:has_moderate_dust_storms', 'tfg:mars/amber_edge') + event.add('tfg:has_moderate_dust_storms', 'tfg:mars/rusticus_plains') + event.add('tfg:has_moderate_dust_storms', 'tfg:mars/rusticus_edge') + event.add('tfg:has_moderate_dust_storms', 'tfg:mars/sangnum_plains') + event.add('tfg:has_moderate_dust_storms', 'tfg:mars/sangnum_edge') + event.add('tfg:has_severe_dust_storms', 'tfg:mars/martian_dunes') + event.add('tfg:has_severe_dust_storms', 'tfg:mars/martian_deep_desert') +} + +function registerTFGMarsEntityTypeTags(event) { + + const ENTITIES = [ + 'tfg:sniffer', + 'tfg:glacian_ram', + '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', + 'wan_ancient_beasts:soarer', + 'wan_ancient_beasts:glider', + 'wan_ancient_beasts:toxlacanth', + 'wan_ancient_beasts:surfer', + 'tfg:surfer' + ] + + ENTITIES.forEach(entity => { + event.add('ad_astra:can_survive_extreme_cold', entity) + event.add('ad_astra:lives_without_oxygen', entity) + }) + + event.add('tfc:deals_piercing_damage', 'tfg:wraptor') + event.add('tfc:deals_piercing_damage', 'species:cruncher') + event.add('tfc:deals_piercing_damage', 'wan_ancient_beasts:eater') + event.add('tfc:deals_piercing_damage', 'wan_ancient_beasts:soarer') + event.add('tfc:deals_piercing_damage', 'wan_ancient_beasts:glider') + event.add('tfc:deals_piercing_damage', 'ad_astra:martian_raptor') + event.add('tfc:deals_crushing_damage', 'species:quake') + event.add('tfc:deals_crushing_damage', 'wan_ancient_beasts:walker') + event.add('tfc:deals_crushing_damage', 'wan_ancient_beasts:crusher') + event.add('tfc:deals_slashing_damage', 'endermanoverhaul:crimson_forest_enderman') + event.add('tfc:deals_slashing_damage', 'endermanoverhaul:warped_forest_enderman') + event.add('tfc:deals_slashing_damage', 'endermanoverhaul:badlands_enderman') + event.add('tfc:deals_slashing_damage', 'endermanoverhaul:cave_enderman') + + // 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', 'tfg:surfer') + event.add('tfg:ignores_gravity', 'wan_ancient_beasts:toxlacanth') + event.add('tfg:ignores_gravity', 'endermanoverhaul:coral_enderman') +} + +function registerTFGMarsPlacedFeatures(event) { + // Underground decoration + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/loose_rocks') + event.add('tfg:mars_underground_decoration', 'tfc:cave_spike') + event.add('tfg:mars_underground_decoration', 'tfc:cave_column') + event.add('tfg:mars_underground_decoration', 'tfc:large_cave_spike') + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/noise_cave_stalagmite') + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/noise_cave_stalagtite') + + 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', 'tfg:mars/underground/ice_cave') + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/icicle') + event.add('tfg:mars_underground_decoration', 'tfg:mars/underground/icicle_extra') + 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_global_small_plants", "tfg:mars/tree/lucernia") + event.add("tfg:mars_global_small_plants", "tfg:mars/tree/lucernia_common") + event.add("tfg:mars_global_small_plants", "tfg:mars/tree/cave_bush") + event.add("tfg:mars_global_small_plants", "tfg:mars/tree/cave_bush_common") + 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_amber_vegetal_decoration", "#tfg:mars_global_small_plants") + event.add("tfg:mars_rusticus_vegetal_decoration", "#tfg:mars_global_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/bulb_moss") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/aurant_polypore") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/filalux_wings") + event.add("tfg:mars_amber_vegetal_decoration", "tfg:mars/surface/filalux_wings_top") + + 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/bulb_moss") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/aurant_polypore") + event.add("tfg:mars_rusticus_vegetal_decoration", "tfg:mars/surface/purple_polypore") + + 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/purple_polypore") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/filalux_wings") + event.add("tfg:mars_sangnum_vegetal_decoration", "tfg:mars/surface/filalux_wings_top") + + 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") + event.add("tfg:mars_top_layer_modification", "tfg:mars/terrain/mars_poles") +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/moon/data.moon.js b/kubejs/server_scripts/tfg/moon/data.moon.js new file mode 100644 index 000000000..7e72dfc32 --- /dev/null +++ b/kubejs/server_scripts/tfg/moon/data.moon.js @@ -0,0 +1,38 @@ +"use strict"; + +function registerTFGMoonBedrockFluidVeins(event) { + + event.add('tfg:moon_helium_3', vein => { + vein.dimensions('ad_astra:moon') + vein.fluid(() => Fluid.of('gtceu:helium_3').fluid) + vein.weight(100) + vein.minimumYield(200) + vein.maximumYield(400) + vein.depletionAmount(1) + vein.depletionChance(1) + vein.depletedYield(200) + }) + + event.add('tfg:moon_helium', vein => { + vein.dimensions('ad_astra:moon') + vein.fluid(() => Fluid.of('gtceu:helium').fluid) + vein.weight(10) + vein.minimumYield(20) + vein.maximumYield(50) + vein.depletionAmount(1) + vein.depletionChance(1) + vein.depletedYield(20) + }) + + event.add('tfg:moon_argon', vein => { + vein.dimensions('ad_astra:moon') + vein.fluid(() => Fluid.of('gtceu:argon').fluid) + vein.weight(5) + vein.minimumYield(10) + vein.maximumYield(30) + vein.depletionAmount(1) + vein.depletionChance(1) + vein.depletedYield(10) + }) + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/moon/recipes.moon.js b/kubejs/server_scripts/tfg/moon/recipes.moon.js new file mode 100644 index 000000000..2a6ca6a5c --- /dev/null +++ b/kubejs/server_scripts/tfg/moon/recipes.moon.js @@ -0,0 +1,27 @@ +"use strict"; + +function registerTFGMoonRecipes(event) { + + // Cryo Fluix + event.recipes.gtceu.vacuum_freezer('gtceu:cryo_fluix') + .inputFluids(Fluid.of('gtceu:helium_3', 1000)) + .inputFluids(Fluid.of('tfg:fluix', 144)) + .outputFluids(Fluid.of('tfg:cryogenized_fluix', 576)) + .duration(30 * 20) + .EUt(GTValues.VA[GTValues.MV]) + .dimension('ad_astra:moon') + + event.recipes.gtceu.fluid_heater('tfg:cryo_fluix') + .inputFluids(Fluid.of('tfg:cryogenized_fluix', 576)) + .outputFluids(Fluid.of('tfg:fluix', 144)) + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.autoclave('tfg:cryo_fluix_pearl') + .inputFluids(Fluid.of('tfg:cryogenized_fluix', 576)) + .itemInputs('tfg:vitrified_pearl') + .itemOutputs('tfg:cryo_fluix_pearl') + .duration(300) + .EUt(GTValues.VA[GTValues.EV]) + .cleanroom(CleanroomType.CLEANROOM) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/moon/recipes.plants.js b/kubejs/server_scripts/tfg/moon/recipes.plants.js new file mode 100644 index 000000000..38c5e8f8b --- /dev/null +++ b/kubejs/server_scripts/tfg/moon/recipes.plants.js @@ -0,0 +1,118 @@ +"use strict"; + +function registerTFGMoonPlantRecipes(event) { + + // 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 + + // Chorus + event.recipes.gtceu.greenhouse('tfg:chorus') + .notConsumable('8x tfg:lunar_chorus_flower') + .itemOutputs('64x minecraft:chorus_fruit') + .chancedOutput('8x tfg:lunar_chorus_flower', 750, 0) + .chancedOutput('8x tfg:lunar_chorus_flower', 500, 0) + .chancedOutput('8x tfg:lunar_chorus_flower', 750, 0) + .duration(36000) // 30 mins + .circuit(1) + .EUt(GTValues.VA[GTValues.MV]) + .dimension('ad_astra:moon') + + event.recipes.gtceu.greenhouse('tfg:chorus_helium') + .notConsumable('8x tfg:lunar_chorus_flower') + .inputFluids(Fluid.of('gtceu:helium_3', 2000)) + .itemOutputs('64x minecraft:chorus_fruit') + .chancedOutput('8x tfg:lunar_chorus_flower', 4000, 0) + .chancedOutput('8x tfg:lunar_chorus_flower', 3000, 0) + .chancedOutput('8x tfg:lunar_chorus_flower', 4000, 0) + .duration(12000) // 10 mins + .circuit(2) + .EUt(GTValues.VA[GTValues.MV]) + .dimension('ad_astra:moon') + + // Replace the built-in greg one to add a circuit + event.recipes.gtceu.fermenter('fermented_biomass') + .inputFluids(Fluid.of('gtceu:biomass', 100)) + .outputFluids(Fluid.of('gtceu:fermented_biomass', 100)) + .circuit(1) + .duration(150) + .EUt(2) + + event.recipes.gtceu.fermenter('tfg:chorus') + .itemInputs('minecraft:chorus_fruit') + .inputFluids(Fluid.of('gtceu:biomass', 20)) + .chancedOutput('ae2:ender_dust', 100, 0) + .outputFluids(Fluid.of('gtceu:nitrogen', 1000)) + .circuit(2) + .duration(5 * 20) + .EUt(GTValues.VA[GTValues.MV]) + .dimension('ad_astra:moon') + + event.recipes.gtceu.fermenter('tfg:chorus_flower') + .itemInputs('tfg:lunar_chorus_flower') + .inputFluids(Fluid.of('gtceu:biomass', 20)) + .chancedOutput('ae2:ender_dust', 100, 0) + .outputFluids(Fluid.of('gtceu:nitrogen', 1000)) + .circuit(2) + .duration(5 * 20) + .EUt(GTValues.VA[GTValues.MV]) + .dimension('ad_astra:moon') + + // Lightblooms + event.recipes.gtceu.greenhouse('tfg:lightbloom') + .notConsumable('8x minecraft:twisting_vines') + .itemOutputs('16x minecraft:twisting_vines') + .chancedOutput('minecraft:pearlescent_froglight', 2500, 0) + .chancedOutput('minecraft:verdant_froglight', 2500, 0) + .chancedOutput('minecraft:ochre_froglight', 2500, 0) + .duration(36000) // 30 mins + .circuit(1) + .EUt(GTValues.VA[GTValues.LV]) + .dimension('ad_astra:moon') + + event.recipes.gtceu.greenhouse('tfg:lightbloom_helium') + .notConsumable('8x minecraft:twisting_vines') + .inputFluids(Fluid.of('gtceu:helium_3', 2000)) + .itemOutputs('16x minecraft:twisting_vines') + .chancedOutput('minecraft:pearlescent_froglight', 3500, 0) + .chancedOutput('minecraft:verdant_froglight', 3500, 0) + .chancedOutput('minecraft:ochre_froglight', 3500, 0) + .duration(12000) // 30 mins + .circuit(2) + .EUt(GTValues.VA[GTValues.LV]) + .dimension('ad_astra:moon') + + event.recipes.gtceu.brewery('biomass_from_twisting_vines') + .itemInputs('minecraft:twisting_vines') + .inputFluids("#tfg:clean_water 20") + .outputFluids(Fluid.of('gtceu:biomass', 20)) + .duration(50) + .EUt(3) + + Ingredient.of('#tfg:moon_plants').stacks.forEach(element => { + const itemId = element.id; + const recipeId = `betterend:greenhouse_${itemId.replace(':', '_')}`; + + event.recipes.gtceu.greenhouse(recipeId) + .notConsumable(element.id) + .itemOutputs(`8x ${element.id}`) + .chancedOutput(element.id, 750, 0) + .chancedOutput(element.id, 500, 0) + .chancedOutput(element.id, 750, 0) + .duration(36000) // 30 mins + .circuit(1) + .EUt(GTValues.VA[GTValues.MV]) + .dimension('ad_astra:moon') + + event.recipes.gtceu.greenhouse(`${recipeId}_helium`) + .notConsumable(element.id) + .inputFluids(Fluid.of('gtceu:helium_3', 500)) + .itemOutputs(`8x ${element.id}`) + .chancedOutput(element.id, 4000, 0) + .chancedOutput(element.id, 3000, 0) + .chancedOutput(element.id, 4000, 0) + .duration(12000) // 30 mins + .circuit(2) + .EUt(GTValues.VA[GTValues.MV]) + .dimension('ad_astra:moon') + }); +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.space_ores.js b/kubejs/server_scripts/tfg/moon/recipes.regolith.js similarity index 63% rename from kubejs/server_scripts/tfg/recipes.space_ores.js rename to kubejs/server_scripts/tfg/moon/recipes.regolith.js index 5e6aa6393..1d43f7489 100644 --- a/kubejs/server_scripts/tfg/recipes.space_ores.js +++ b/kubejs/server_scripts/tfg/moon/recipes.regolith.js @@ -1,6 +1,6 @@ -// priority: 0 +"use strict"; -function registerTFGSpaceOres(event) { +function registerTFGMoonRegolithRecipes(event) { //#region Moon Harvester @@ -139,67 +139,6 @@ function registerTFGSpaceOres(event) { .itemOutputs('#forge:dusts/tin') .duration(20 * 45) .EUt(GTValues.VA[GTValues.MV]) - - //#region Mars Ores Line - - // 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) - .EUt(GTValues.VA[GTValues.LV]); - - - // Ostrum Linear Accelerator Recipes - - event.recipes.gtceu.ostrum_linear_accelerator('tfg:ostrum_transformation') - .inputFluids('gtceu:residual_radioactive_concoction 100') - .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) - .itemOutputsRanged(Item.of('#forge:dusty_raw_materials/hematite'), 1, 10) - .dimension('ad_astra:mars') - .duration(20 * 5) - .EUt(GTValues.VA[GTValues.IV]); - - //#endregion + // #endregion } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/moon/tags.moon.js b/kubejs/server_scripts/tfg/moon/tags.moon.js new file mode 100644 index 000000000..33b50a4d3 --- /dev/null +++ b/kubejs/server_scripts/tfg/moon/tags.moon.js @@ -0,0 +1,117 @@ +"use strict"; + +function registerTFGMoonItemTags(event) { + + event.add('tfg:moon_plants', 'tfg:lunar_roots') + event.add('tfg:moon_plants', 'tfg:lunar_sprouts') + + event.add('tfc:compost_greens_high', 'minecraft:pearlescent_froglight') + event.add('tfc:compost_greens_high', 'minecraft:verdant_froglight') + event.add('tfc:compost_greens_high', 'minecraft:ochre_froglight') +} + +function registerTFGMoonBlockTags(event) { + + event.add('minecraft:rabbits_spawnable_on', '#ad_astra:moon_stone_replaceables') + event.add('species:limpet_spawnable_on', '#ad_astra:moon_stone_replaceables') + + event.add('ad_astra:moon_stone_replaceables', 'ad_astra:moon_sand') + event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/hardened_moon_stone') + event.add('ad_astra:moon_stone_replaceables', 'tfc:sand/white') + event.add('ad_astra:moon_stone_replaceables', 'tfc:sand/black') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/diorite') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/gabbro') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/basalt') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/rhyolite') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/andesite') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/gravel/dacite') + event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/gravel_moon') + event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/gravel_moon_deepslate') + event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/gravel_glacio') + event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/hardened_moon_deepslate') + event.add('ad_astra:moon_stone_replaceables', 'ad_astra:glacio_stone') + event.add('ad_astra:moon_stone_replaceables', 'tfg:rock/hardened_glacio_stone') + event.add('ad_astra:moon_stone_replaceables', 'ad_astra:glacio_cobblestone') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/basalt') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/basalt') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/gabbro') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/gabbro') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/diorite') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/diorite') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/rhyolite') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/rhyolite') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/andesite') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/andesite') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/raw/dacite') + event.add('ad_astra:moon_stone_replaceables', 'tfc:rock/hardened/dacite') + + event.add('tfc:can_carve', '#ad_astra:moon_stone_replaceables') +} + +function registerTFGMoonBiomeTags(event) { + global.MOON_BIOMES.forEach(biome => { + event.add('tfg:moon_biomes', biome) + event.add('tfg:has_structure/meteors', biome) + event.add('tfg:has_structure/cheese_ores', biome) + event.add('tfg:has_structure/moonbase', biome) + event.add('tfg:has_structure/moon_rabbit_houses', biome) + event.add('species:limpet_spawns', biome) + }) +} + +function registerTFGMoonEntityTypeTags(event) { + const ENTITIES = [ + 'tfc:rat', + 'tfg:moon_rabbit', + 'minecraft:enderman', + 'minecraft:shulker', + 'minecraft:shulker_bullet', + 'minecraft:skeleton', + 'minecraft:stray', + 'species:limpet', + 'species:birt', + 'endermanoverhaul:windswept_hills_enderman', + 'endermanoverhaul:soulsand_valley_enderman', + 'endermanoverhaul:spirit', + 'endermanoverhaul:end_enderman', + 'endermanoverhaul:end_islands_enderman', + ] + + ENTITIES.forEach(entity => { + event.add('ad_astra:can_survive_extreme_cold', entity) + event.add('ad_astra:lives_without_oxygen', entity) + }) + + event.add('tfc:deals_piercing_damage', 'minecraft:stray') + event.add('tfc:deals_slashing_damage', 'minecraft:enderman') + event.add('tfc:deals_slashing_damage', 'endermanoverhaul:windswept_hills_enderman') + event.add('tfc:deals_slashing_damage', 'endermanoverhaul:soulsand_valley_enderman') + event.add('tfc:deals_piercing_damage', 'endermanoverhaul:end_enderman') + event.add('tfc:deals_slashing_damage', 'endermanoverhaul:end_islands_enderman') + event.add('tfc:deals_crushing_damage', 'ad_astra:star_crawler') + event.add('tfc:deals_crushing_damage', 'species:birt') + + event.add('tfg:ignores_gravity', 'minecraft:shulker_bullet') + event.add('tfg:ignores_gravity', 'endermanoverhaul:spirit') + event.add('tfg:ignores_gravity', 'species:birt') + event.add('tfg:ignores_gravity', 'ad_astra:star_crawler') +} + +function registerTFGMoonPlacedFeatures(event) { + event.add('tfg:moon_craters', 'tfg:moon/crater/extra_large') + event.add('tfg:moon_craters', 'tfg:moon/crater/large') + event.add('tfg:moon_craters', 'tfg:moon/crater/medium') + event.add('tfg:moon_craters', 'tfg:moon/crater/small') + + global.MOON_STONE_TYPES.forEach(stone => { + // only in the sparse ones + event.add('tfg:moon_large_rock_features', `tfg:moon/surface/delta/${stone}`) + // in all moon biomes + event.add('tfg:moon_small_rock_features', `tfg:moon/surface/pile/${stone}`) + event.add('tfg:moon_small_rock_features', `tfg:moon/surface/loose/${stone}`) + }) + + event.add('tfg:moon_small_rock_features', 'tfg:moon/surface/pile_moon_sand') + event.add('tfg:moon_small_rock_features', 'tfg:moon/surface/pile_white_sand') + event.add('tfg:moon_small_rock_features', 'tfg:moon/surface/pile_black_sand') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/recipes.alabaster.js b/kubejs/server_scripts/tfg/natural_blocks/recipes.alabaster.js similarity index 98% rename from kubejs/server_scripts/tfc/recipes.alabaster.js rename to kubejs/server_scripts/tfg/natural_blocks/recipes.alabaster.js index 3fe1055cb..9c65df063 100644 --- a/kubejs/server_scripts/tfc/recipes.alabaster.js +++ b/kubejs/server_scripts/tfg/natural_blocks/recipes.alabaster.js @@ -1,7 +1,7 @@ // priority: 0 "use strict"; -function registerTFCAlabasterRecipes(event) { +function registerTFGAlabasterRecipes(event) { event.recipes.tfc.damage_inputs_shapeless_crafting(event.recipes.minecraft.crafting_shapeless('4x tfc:alabaster_brick', ['#forge:raw_materials/gypsum', '#tfc:chisels'])) .id('tfc:crafting/alabaster_brick/raw_gypsum') diff --git a/kubejs/server_scripts/tfg/recipes.collapse.js b/kubejs/server_scripts/tfg/natural_blocks/recipes.collapse.js similarity index 90% rename from kubejs/server_scripts/tfg/recipes.collapse.js rename to kubejs/server_scripts/tfg/natural_blocks/recipes.collapse.js index 707fe1360..25c6a741b 100644 --- a/kubejs/server_scripts/tfg/recipes.collapse.js +++ b/kubejs/server_scripts/tfg/natural_blocks/recipes.collapse.js @@ -22,7 +22,7 @@ function registerTFGCollapseRecipes(event) { event.recipes.tfc.landslide('tfg:ash_pile', 'tfg:ash_pile') event.recipes.tfc.landslide('minecraft:cobbled_deepslate', 'minecraft:cobbled_deepslate') - event.recipes.tfc.landslide('minecraft:mossy_cobbled_deepslate', 'minecraft:mossy_cobbled_deepslate') + event.recipes.tfc.landslide('tfg:rock/mossy_cobble_deepslate', 'tfg:rock/mossy_cobble_deepslate') event.recipes.tfc.landslide('tfg:rock/cobble_blackstone', 'tfg:rock/cobble_blackstone') event.recipes.tfc.landslide('tfg:rock/mossy_cobble_blackstone', 'tfg:rock/mossy_cobble_blackstone') event.recipes.tfc.landslide('tfg:rock/cobble_dripstone', 'tfg:rock/cobble_dripstone') @@ -112,9 +112,20 @@ function registerTFGCollapseRecipes(event) { 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') + + event.recipes.tfc.landslide('tfg:sand/fluorapatite/blue', 'tfg:sand/fluorapatite/blue') + event.recipes.tfc.landslide('tfg:sand/fluorapatite/green', 'tfg:sand/fluorapatite/green') + event.recipes.tfc.landslide('tfg:sand/fluorapatite/brown', 'tfg:sand/fluorapatite/brown') + event.recipes.tfc.landslide('tfg:sand/fluorapatite/orange', 'tfg:sand/fluorapatite/orange') + event.recipes.tfc.landslide('tfg:sand/fluorapatite/white', 'tfg:sand/fluorapatite/white') + event.recipes.tfc.landslide('tfg:sand/fluorapatite/yellow', 'tfg:sand/fluorapatite/yellow') // #endregion // #region Other + event.recipes.tfc.collapse('#tfg:rock_slabs').id('tfg:collapse/rock_slabs') + event.recipes.tfc.collapse('#tfg:rock_stairs').id('tfg:collapse/rock_stairs') + event.recipes.tfc.collapse('#tfg:rock_walls').id('tfg:collapse/rock_walls') + event.recipes.tfc.collapse('minecraft:cobblestone', 'minecraft:stone') event.recipes.tfc.landslide('minecraft:cobblestone', 'minecraft:cobblestone') event.recipes.tfc.landslide('minecraft:mossy_cobblestone', 'minecraft:mossy_cobblestone') diff --git a/kubejs/server_scripts/tfg/natural_blocks/recipes.concrete.js b/kubejs/server_scripts/tfg/natural_blocks/recipes.concrete.js new file mode 100644 index 000000000..b305c5209 --- /dev/null +++ b/kubejs/server_scripts/tfg/natural_blocks/recipes.concrete.js @@ -0,0 +1,144 @@ +"use strict"; + +function registerTFGConcreteRecipes(event) { + + const recipe = event.recipes.gtceu.mixer('concrete_from_marble') + .itemInputs(Ingredient.of('#tfg:stone_dusts').subtract('gtceu:marble_dust').withCount(2), 'gtceu:marble_dust', 'gtceu:gypsum_dust') + .inputFluids("#tfg:clean_water 1000") + .outputFluids('gtceu:concrete 1152') + .duration(40) + .EUt(16) + + generateMixerRecipe(event, ['3x #tfg:stone_dusts', 'gtceu:clay_dust'], + "#tfg:clean_water 500", [], null, 'gtceu:concrete 576', 20, 16, 64, 'concrete_from_clay') + + generateMixerRecipe(event, ['3x #tfg:stone_dusts', 'gtceu:calcite_dust', 'gtceu:gypsum_dust'], + "#tfg:clean_water 1000", [], null, 'gtceu:concrete 1152', 40, 16, 64, 'concrete_from_calcite') + + //GT light/dark concrete recipe fix + + event.remove({ id: 'gtceu:fluid_solidifier/solidify_concrete_block' }) + event.remove({ id: 'gtceu:chemical_bath/light_to_dark_concrete' }) + + event.recipes.gtceu.fluid_solidifier('gtceu:fluid_solidifier/solidify_light_concrete') + .inputFluids(Fluid.of('gtceu:concrete', 144)) + .notConsumable('1x gtceu:block_casting_mold') + .itemOutputs('1x gtceu:light_concrete') + .duration(98) + .EUt(7) + + event.recipes.gtceu.chemical_bath('gtceu:chemical_bath/dark_concrete') + .inputFluids(Fluid.of('tfc:black_dye', 18)) + .itemInputs('1x gtceu:light_concrete') + .itemOutputs('1x gtceu:dark_concrete') + .duration(20) + .EUt(7) + + event.recipes.gtceu.extractor('gtceu:extractor/extract_light_concrete') + .itemInputs('1x gtceu:light_concrete') + .outputFluids(Fluid.of('gtceu:concrete', 144)) + .duration(98) + .EUt(30) + + event.stonecutting('gtceu:light_concrete_bricks', 'gtceu:light_concrete').id('tfg:stonecutting/light_concrete_bricks') + event.stonecutting('gtceu:chiseled_light_concrete', 'gtceu:light_concrete').id('tfg:stonecutting/chiseled_light_concrete') + event.stonecutting('gtceu:light_concrete_tile', 'gtceu:light_concrete').id('tfg:stonecutting/light_concrete_tile') + event.stonecutting('gtceu:light_concrete_small_tile', 'gtceu:light_concrete').id('tfg:stonecutting/light_concrete_small_tile') + event.stonecutting('gtceu:light_concrete_windmill_a', 'gtceu:light_concrete').id('tfg:stonecutting/light_concrete_windmill_a') + event.stonecutting('gtceu:light_concrete_windmill_b', 'gtceu:light_concrete').id('tfg:stonecutting/light_concrete_windmill_b') + event.stonecutting('gtceu:small_light_concrete_bricks', 'gtceu:light_concrete').id('tfg:stonecutting/small_light_concrete_bricks') + event.stonecutting('gtceu:square_light_concrete_bricks', 'gtceu:light_concrete').id('tfg:stonecutting/square_light_concrete_bricks') + + event.stonecutting('gtceu:dark_concrete_bricks', 'gtceu:dark_concrete').id('tfg:stonecutting/dark_concrete_bricks') + event.stonecutting('gtceu:chiseled_dark_concrete', 'gtceu:dark_concrete').id('tfg:stonecutting/chiseled_dark_concrete') + event.stonecutting('gtceu:dark_concrete_tile', 'gtceu:dark_concrete').id('tfg:stonecutting/dark_concrete_tile') + event.stonecutting('gtceu:dark_concrete_small_tile', 'gtceu:dark_concrete').id('tfg:stonecutting/dark_concrete_small_tile') + event.stonecutting('gtceu:dark_concrete_windmill_a', 'gtceu:dark_concrete').id('tfg:stonecutting/dark_concrete_windmill_a') + event.stonecutting('gtceu:dark_concrete_windmill_b', 'gtceu:dark_concrete').id('tfg:stonecutting/dark_concrete_windmill_b') + event.stonecutting('gtceu:small_dark_concrete_bricks', 'gtceu:dark_concrete').id('tfg:stonecutting/small_dark_concrete_bricks') + event.stonecutting('gtceu:square_dark_concrete_bricks', 'gtceu:dark_concrete').id('tfg:stonecutting/square_dark_concrete_bricks') + + // Handcrafted artisanal concrete + + event.recipes.firmalife.mixing_bowl() + .ingredients(['#tfg:stone_dusts', '#tfg:stone_dusts', '#forge:dusts/marble', '#forge:dusts/gypsum'], Fluid.of('minecraft:water', 1000)) + .outputFluid(Fluid.of('gtceu:concrete', 1000)) + + event.recipes.firmalife.mixing_bowl() + .ingredients(['#tfg:stone_dusts', '#tfg:stone_dusts', '#tfg:stone_dusts', '#forge:dusts/clay'], Fluid.of('minecraft:water', 500)) + .outputFluid(Fluid.of('gtceu:concrete', 500)) + + event.recipes.firmalife.mixing_bowl() + .ingredients(['#tfg:stone_dusts', '#tfg:stone_dusts', '#tfg:stone_dusts', '#forge:dusts/calcite', '#forge:dusts/gypsum'], Fluid.of('minecraft:water', 1000)) + .outputFluid(Fluid.of('gtceu:concrete', 1000)) + + event.recipes.tfc.barrel_sealed(1000) + .inputFluid(Fluid.of('gtceu:concrete', 144)) + .inputItem('gtceu:wood_frame') + .outputItem('gtceu:light_concrete') + .id('tfg:barrel/light_concrete') + + event.recipes.tfc.barrel_sealed(1000) + .inputFluid(Fluid.of('gtceu:concrete', 96)) + .inputItem('tfg:rebar_support') + .outputItem('tfg:reinforced_light_concrete_support') + .id('tfg:barrel/reinforced_light_concrete_support') + + event.recipes.tfc.barrel_sealed(500) + .inputItem('gtceu:light_concrete') + .inputFluid(Fluid.of('tfc:black_dye', 18)) + .outputItem('gtceu:dark_concrete') + .id('tfg:barrel/dark_concrete') + + event.recipes.tfc.barrel_sealed(500) + .inputItem('tfg:light_concrete_support') + .inputFluid(Fluid.of('tfc:black_dye', 10)) + .outputItem('tfg:dark_concrete_support') + .id('tfg:barrel/dark_concrete_support') + + event.recipes.tfc.barrel_sealed(500) + .inputItem('tfg:reinforced_light_concrete_support') + .inputFluid(Fluid.of('tfc:black_dye', 10)) + .outputItem('tfg:reinforced_dark_concrete_support') + .id('tfg:barrel/reinforced_dark_concrete_support') + + // Titanium concrete + event.recipes.gtceu.assembler('tfg:titanium_concrete') + .itemInputs('2x #forge:rods/titanium', '#forge:dusts/kaolinite') + .inputFluids(Fluid.of('gtceu:concrete', 144 * 1.5)) + .itemOutputs('tfg:titanium_concrete') + .circuit(2) + .duration(20) + .EUt(GTValues.VH[GTValues.EV]) + + event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_bricks') + .itemInputs('tfg:polished_titanium_concrete') + .notConsumable('#forge:lenses/light_blue') + .itemOutputs('tfg:titanium_concrete_bricks') + .duration(20 * (2.5)) + .EUt(GTValues.VA[GTValues.LV]) + event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_bricks_small') + .itemInputs('tfg:polished_titanium_concrete') + .notConsumable('#forge:lenses/pink') + .itemOutputs('tfg:titanium_concrete_bricks_small') + .duration(20 * (2.5)) + .EUt(GTValues.VA[GTValues.LV]) + event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_bricks_square') + .itemInputs('tfg:polished_titanium_concrete') + .notConsumable('#forge:lenses/green') + .itemOutputs('tfg:titanium_concrete_bricks_square') + .duration(20 * (2.5)) + .EUt(GTValues.VA[GTValues.LV]) + event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_tile') + .itemInputs('tfg:polished_titanium_concrete') + .notConsumable('#forge:lenses/red') + .itemOutputs('tfg:titanium_concrete_tile') + .duration(20 * (2.5)) + .EUt(GTValues.VA[GTValues.LV]) + event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_tile_small') + .itemInputs('tfg:polished_titanium_concrete') + .notConsumable('#forge:lenses/black') + .itemOutputs('tfg:titanium_concrete_tile_small') + .duration(20 * (2.5)) + .EUt(GTValues.VA[GTValues.LV]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/recipes.dirt.js b/kubejs/server_scripts/tfg/natural_blocks/recipes.dirt.js similarity index 82% rename from kubejs/server_scripts/tfc/recipes.dirt.js rename to kubejs/server_scripts/tfg/natural_blocks/recipes.dirt.js index cda85a26b..da3f7600f 100644 --- a/kubejs/server_scripts/tfc/recipes.dirt.js +++ b/kubejs/server_scripts/tfg/natural_blocks/recipes.dirt.js @@ -1,12 +1,19 @@ ο»Ώ// priority: 0 "use strict"; -function registerTFCDirtRecipes(event) { +function registerTFGDirtRecipes(event) { + + // Dirt creation + event.recipes.gtceu.macerator('dirt_from_bio_chaff') + .itemInputs('gtceu:bio_chaff') + .itemOutputs('tfc:dirt/loam') + .duration(300) + .EUt(4) // Loam + Silt -> Silty Loam (ΠœΠΈΠΊΡΠ΅Ρ€) event.recipes.gtceu.mixer('silty_loam_dirt') .itemInputs('tfc:dirt/loam', 'tfc:dirt/silt') - .itemOutputs('tfc:dirt/silty_loam') + .itemOutputs('2x tfc:dirt/silty_loam') .duration(200) .EUt(16) @@ -18,6 +25,14 @@ function registerTFCDirtRecipes(event) { .duration(200) .EUt(16) + // Loam + Salt -> Silt + event.recipes.gtceu.mixer('silty_dirt') + .itemInputs('tfc:dirt/loam', 'tfc:powder/salt') + .circuit(3) + .itemOutputs('tfc:dirt/silt') + .duration(200) + .EUt(16) + // Dirt + Sticks -> Rooted Dirt global.TFC_MUD_TYPES.forEach(mud => { event.recipes.gtceu.mixer(`${mud}_to_rooted`) @@ -52,6 +67,16 @@ function registerTFCDirtRecipes(event) { }).id(`tfg:ae_transform/${mud}_to_mud`) // Mud bricks + event.recipes.gtceu.extruder(`tfc:mud_bricks/${mud}`) + .itemInputs(`tfc:mud/${mud}`) + .notConsumable('gtceu:ingot_extruder_mold') + .itemOutputs(`4x tfc:drying_bricks/${mud}`) + .duration(100) + .EUt(2) + + event.recipes.vintageimprovements.curving(`4x tfc:drying_bricks/${mud}`, `tfc:mud/${mud}`) + .head('gtceu:ingot_extruder_mold') + .id(`tfg:vi/curving/${mud}_bricks`) // Π’Π»Π°ΠΆΠ½Ρ‹ΠΉ ΠΊΠΈΡ€ΠΏΠΈΡ‡ -> ΠšΠΈΡ€ΠΏΠΈΡ‡ event.smelting(`tfc:mud_brick/${mud}`, `tfc:drying_bricks/${mud}`) diff --git a/kubejs/server_scripts/tfg/recipes.rocks.js b/kubejs/server_scripts/tfg/natural_blocks/recipes.rocks.js similarity index 90% rename from kubejs/server_scripts/tfg/recipes.rocks.js rename to kubejs/server_scripts/tfg/natural_blocks/recipes.rocks.js index 40450204d..425001285 100644 --- a/kubejs/server_scripts/tfg/recipes.rocks.js +++ b/kubejs/server_scripts/tfg/natural_blocks/recipes.rocks.js @@ -6,68 +6,35 @@ */ function registerTFGRockRecipes(event) { - // #region REMOVES - event.remove({ id: 'gtceu:shaped/stone_stair_saw' }) - event.remove({ id: 'gtceu:shaped/stone_slab_saw' }) - - event.remove({ id: 'gtceu:shaped/cobblestone_stair_saw' }) - event.remove({ id: 'gtceu:shaped/cobblestone_slab_saw' }) - event.remove({ id: 'gtceu:shaped/cobblestone_slab_wall' }) - - event.remove({ id: 'gtceu:shaped/mossy_cobblestone_stair_saw' }) - event.remove({ id: 'gtceu:shaped/mossy_cobblestone_slab_saw' }) - event.remove({ id: 'gtceu:shaped/mossy_cobblestone_slab_wall' }) - - event.remove({ id: 'gtceu:shaped/red_sandstone_stair_saw' }) - event.remove({ id: 'gtceu:shaped/red_sandstone_wall_saw' }) - event.remove({ id: 'gtceu:shaped/red_sandstone_polish_hammer' }) - - event.remove({ id: 'gtceu:shaped/smooth_red_sandstone_stair_saw' }) - event.remove({ id: 'gtceu:shaped/smooth_red_sandstone_slab_saw' }) - - event.remove({ id: 'gtceu:shaped/cut_red_sandstone_slab_saw' }) - - removeMaceratorRecipe(event, 'macerate_nether_bricks') - removeMaceratorRecipe(event, 'macerate_chiseled_nether_bricks') // #region GLUEING_TOGETHER - // loose rocks to cobble, bricks to brick blocks + // raw rock to hardened, bricks to brick blocks const GLUEING_TOGETHER = [ - { loose: 'tfg:loose/deepslate', block: 'minecraft:cobbled_deepslate' }, { loose: 'tfg:brick/deepslate', block: '4x minecraft:deepslate_bricks' }, - - { loose: 'beneath:blackstone_pebble', block: 'tfg:rock/cobble_blackstone' }, - - { loose: 'tfg:loose/dripstone', block: 'tfg:rock/cobble_dripstone' }, + { loose: 'beneath:blackstone_brick', block: '4x minecraft:polished_blackstone_bricks' }, { loose: 'tfg:brick/dripstone', block: '4x create:cut_dripstone_bricks' }, - - { loose: 'tfg:loose/crackrack', block: 'tfg:rock/cobble_crackrack' }, - - { loose: 'tfg:loose/moon_stone', block: 'ad_astra:moon_cobblestone' }, + { loose: 'minecraft:nether_brick', block: '4x minecraft:nether_bricks' }, { loose: 'tfg:brick/moon_stone', block: '4x ad_astra:moon_stone_bricks' }, - - { loose: 'tfg:loose/moon_deepslate', block: 'tfg:rock/cobble_moon_deepslate' }, { loose: 'tfg:brick/moon_deepslate', block: '4x tfg:rock/bricks_moon_deepslate' }, - - { loose: 'tfg:loose/mars_stone', block: 'ad_astra:mars_cobblestone' }, { loose: 'tfg:brick/mars_stone', block: '4x ad_astra:mars_stone_bricks' }, - - { loose: 'tfg:loose/venus_stone', block: 'ad_astra:venus_cobblestone' }, { loose: 'tfg:brick/venus_stone', block: '4x ad_astra:venus_stone_bricks' }, - - { loose: 'tfg:loose/red_granite', block: 'gtceu:red_granite_cobblestone' }, { loose: 'tfg:brick/red_granite', block: '4x gtceu:red_granite_bricks' }, - - { loose: 'tfg:loose/mercury_stone', block: 'ad_astra:mercury_cobblestone' }, { loose: 'tfg:brick/mercury_stone', block: '4x ad_astra:mercury_stone_bricks' }, - - { loose: 'tfg:loose/glacio_stone', block: 'ad_astra:glacio_cobblestone' }, { loose: 'tfg:brick/glacio_stone', block: '4x ad_astra:glacio_stone_bricks' }, - - { loose: 'tfg:loose/permafrost', block: 'tfg:rock/cobble_permafrost' }, { loose: 'tfg:brick/permafrost', block: '4x ad_astra:permafrost_bricks' }, + { loose: 'minecraft:popped_chorus_fruit', block: '4x minecraft:purpur_block' }, + { loose: 'gtceu:stone_ingot', block: '4x minecraft:stone_bricks' }, - { loose: 'minecraft:popped_chorus_fruit', block: '4x minecraft:purpur_block' } + { loose: 'minecraft:deepslate', block: '2x tfg:rock/hardened_deepslate' }, + { loose: 'minecraft:blackstone', block: '2x tfg:rock/hardened_blackstone' }, + { loose: 'minecraft:dripstone_block', block: '2x tfg:rock/hardened_dripstone' }, + { loose: 'ad_astra:moon_stone', block: '2x tfg:rock/hardened_moon_stone' }, + { loose: 'ad_astra:moon_deepslate', block: '2x tfg:rock/hardened_moon_deepslate'}, + { loose: 'ad_astra:mars_stone', block: '2x tfg:rock/hardened_mars_stone'}, + { loose: 'ad_astra:venus_stone', block: '2x tfg:rock/hardened_venus_stone'}, + { loose: 'ad_astra:mercury_stone', block: '2x tfg:rock/hardened_mercury_stone'}, + { loose: 'ad_astra:glacio_stone', block: '2x tfg:rock/hardened_glacio_stone'}, + { loose: 'gtceu:red_granite', block: '2x tfg:rock/hardened_red_granite'} ] GLUEING_TOGETHER.forEach(x => { @@ -84,82 +51,68 @@ function registerTFGRockRecipes(event) { .itemInputs(`5x ${x.loose}`) .inputFluids(Fluid.of('gtceu:concrete', 72)) .itemOutputs(x.block) - .circuit(2) + .circuit(1) .duration(50) .EUt(2) - - if( x.loose.includes('loose') || x.loose.includes('pebble') ){ - event.recipes.gtceu.packer(`tfc:gtceu/packer/unpacking_${x.block}`.replace(/[: ]/g, '_')) - .itemInputs(`1x ${x.block}`) - .itemOutputs(`4x ${x.loose}`) - .circuit(1) - .duration(20) - .EUt(GTValues.VA[GTValues.ULV]) - } }) // #endregion GLUEING_TOGETHER // #region COBBLE_TO_LOOSE const COBBLE_TO_LOOSE = [ - { cobble: 'minecraft:blackstone', loose: 'beneath:blackstone_pebble' }, + { cobble: 'tfg:rock/cobble_blackstone', loose: 'beneath:blackstone_pebble' }, + { cobble: 'minecraft:cobbled_deepslate', loose: 'tfg:loose/deepslate' }, { cobble: 'tfg:rock/cobble_dripstone', loose: 'tfg:loose/dripstone' }, { cobble: 'tfg:rock/cobble_crackrack', loose: 'tfg:loose/crackrack' }, + { cobble: 'ad_astra:moon_cobblestone', loose: 'tfg:loose/moon_stone' }, { cobble: 'tfg:rock/cobble_moon_deepslate', loose: 'tfg:loose/moon_deepslate' }, - { cobble: 'gtceu:red_granite_cobblestone', loose: 'tfg:brick/red_granite' }, - { cobble: 'tfg:rock/cobble_permafrost', loose: 'tfg:loose/permafrost' }, - { cobble: 'gtceu:red_granite_cobblestone', loose: 'tfg:loose/red_granite' } + { cobble: 'ad_astra:mars_cobblestone', loose: 'tfg:loose/mars_stone' }, + { cobble: 'ad_astra:venus_cobblestone', loose: 'tfg:loose/venus_stone' }, + { cobble: 'ad_astra:mercury_cobblestone', loose: 'tfg:loose/mercury_stone' }, + { cobble: 'ad_astra:glacio_cobblestone', loose: 'tfg:loose/glacio_stone' }, + { cobble: 'gtceu:red_granite_cobblestone', loose: 'tfg:loose/red_granite' }, + { cobble: 'tfg:rock/cobble_permafrost', loose: 'tfg:loose/permafrost' } ] COBBLE_TO_LOOSE.forEach(x => { - event.shapeless(`4x ${x.loose}`, [x.cobble]) + event.shapeless(`4x ${x.loose}`, [x.cobble]); + + event.shaped(x.cobble, [ + 'AA', + 'AA' + ], { + A: x.loose + }); + + event.recipes.gtceu.packer(`tfc:gtceu/packer/unpacking_${x.cobble}`.replace(/[: ]/g, '_')) + .itemInputs(`1x ${x.cobble}`) + .itemOutputs(`4x ${x.loose}`) + .circuit(1) + .duration(20) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.packer(`tfc:gtceu/packer/packing_${x.cobble}`.replace(/[: ]/g, '_')) + .itemInputs(`4x ${x.loose}`) + .itemOutputs(`1x ${x.cobble}`) + .circuit(1) + .duration(20) + .EUt(GTValues.VA[GTValues.ULV]) }) // #endregion COBBLE_TO_LOOSE - // #region LOOSE_TO_GRAVEL - const LOOSE_TO_GRAVEL = [ - { loose: 'tfg:loose/deepslate', gravel: 'tfg:rock/gravel_deepslate' }, - { loose: 'beneath:blackstone_pebble', gravel: 'tfg:rock/gravel_blackstone' }, - { loose: 'tfg:loose/dripstone', gravel: 'tfg:rock/gravel_dripstone' }, - { loose: 'tfg:loose/crackrack', gravel: 'tfg:rock/gravel_crackrack' }, - { loose: 'tfg:loose/moon_stone', gravel: 'tfg:rock/gravel_moon' }, - { loose: 'tfg:loose/moon_deepslate', gravel: 'tfg:rock/gravel_moon_deepslate' }, - { loose: 'tfg:loose/glacio_stone', gravel: 'tfg:rock/gravel_glacio' }, - { loose: 'tfg:loose/mars_stone', gravel: 'tfg:rock/gravel_mars' }, - { loose: 'tfg:loose/venus_stone', gravel: 'tfg:rock/gravel_venus' }, - { loose: 'tfg:loose/mercury_stone', gravel: 'tfg:rock/gravel_mercury' }, - { loose: 'tfg:loose/permafrost', gravel: 'tfg:rock/gravel_permafrost' }, - { loose: 'tfg:loose/red_granite', gravel: 'tfg:rock/gravel_red_granite' } - ] - - LOOSE_TO_GRAVEL.forEach(x => { - event.shapeless(x.gravel, [`4x ${x.loose}`]) - - event.shapeless(`16x ${x.loose}`, [`4x ${x.gravel}`]) - - var stone = x.gravel.replace('tfg:rock/gravel_', '') - event.recipes.gtceu.packer(`tfc:gtceu/packer/packing_loose_${stone}_to_gravel`) - .itemInputs(`4x ${x.loose}`) - .itemOutputs(x.gravel) - .circuit(2) - .duration(30) - .EUt(GTValues.VA[GTValues.LV]) - - }) - // #region LOOSE_TO_BRICKS const LOOSE_TO_BRICKS = [ - { loose: 'tfg:loose/deepslate', brick: 'tfg:brick/deepslate' }, - { loose: 'tfg:loose/dripstone', brick: 'tfg:brick/dripstone' }, - { loose: 'tfg:loose/crackrack', brick: 'minecraft:nether_brick' }, - { loose: 'tfg:loose/moon_stone', brick: 'tfg:brick/moon_stone' }, - { loose: 'tfg:loose/moon_deepslate', brick: 'tfg:brick/moon_deepslate' }, - { loose: 'tfg:loose/mars_stone', brick: 'tfg:brick/mars_stone' }, - { loose: 'tfg:loose/venus_stone', brick: 'tfg:brick/venus_stone' }, - { loose: 'tfg:loose/mercury_stone', brick: 'tfg:brick/mercury_stone' }, - { loose: 'tfg:loose/glacio_stone', brick: 'tfg:brick/glacio_stone' }, - { loose: 'tfg:loose/permafrost', brick: 'tfg:brick/permafrost' }, - { loose: 'tfg:loose/red_granite', brick: 'tfg:brick/red_granite' }, - + { loose: 'tfg:loose/deepslate', brick: 'tfg:brick/deepslate' }, + { loose: 'tfg:loose/dripstone', brick: 'tfg:brick/dripstone' }, + { loose: 'tfg:loose/crackrack', brick: 'minecraft:nether_brick' }, + { loose: 'tfg:loose/moon_stone', brick: 'tfg:brick/moon_stone' }, + { loose: 'tfg:loose/moon_deepslate', brick: 'tfg:brick/moon_deepslate' }, + { loose: 'tfg:loose/mars_stone', brick: 'tfg:brick/mars_stone' }, + { loose: 'tfg:loose/venus_stone', brick: 'tfg:brick/venus_stone' }, + { loose: 'tfg:loose/mercury_stone', brick: 'tfg:brick/mercury_stone' }, + { loose: 'tfg:loose/glacio_stone', brick: 'tfg:brick/glacio_stone' }, + { loose: 'tfg:loose/permafrost', brick: 'tfg:brick/permafrost' }, + { loose: 'tfg:loose/red_granite', brick: 'tfg:brick/red_granite' }, + { loose: 'beneath:blackstone_pebble', brick: 'beneath:blackstone_brick' } ] LOOSE_TO_BRICKS.forEach(x => { @@ -170,14 +123,15 @@ function registerTFGRockRecipes(event) { event.recipes.gtceu.cutter(`${x.loose}_to_${x.brick}`.replace(/:/g, '_')) .itemInputs(x.loose) .itemOutputs(x.brick) - .duration(40) - .EUt(8) + .duration(10) + .EUt(2) }) // #endregion LOOSE_TO_BRICKS // #region AQUEDUCTS const AQUEDUCTS = [ { brick: 'tfg:brick/deepslate', aqueduct: 'tfg:rock/aqueduct_deepslate' }, + { brick: 'beneath:blackstone_brick', aqueduct: 'beneath:blackstone_aqueduct' }, { brick: 'tfg:brick/dripstone', aqueduct: 'tfg:rock/aqueduct_dripstone' }, { brick: 'minecraft:nether_brick', aqueduct: 'tfg:rock/aqueduct_nether' }, { brick: 'tfg:brick/moon_stone', aqueduct: 'tfg:rock/aqueduct_moon_stone' }, @@ -187,7 +141,8 @@ function registerTFGRockRecipes(event) { { brick: 'tfg:brick/mercury_stone', aqueduct: 'tfg:rock/aqueduct_mercury_stone' }, { brick: 'tfg:brick/glacio_stone', aqueduct: 'tfg:rock/aqueduct_glacio_stone' }, { brick: 'tfg:brick/permafrost', aqueduct: 'tfg:rock/aqueduct_permafrost' }, - { brick: 'tfg:brick/red_granite', aqueduct: 'tfg:rock/aqueduct_red_granite' } + { brick: 'tfg:brick/red_granite', aqueduct: 'tfg:rock/aqueduct_red_granite' }, + { brick: 'gtceu:stone_ingot', aqueduct: 'tfg:rock/aqueduct_stone' } ] AQUEDUCTS.forEach(x => { @@ -198,20 +153,49 @@ function registerTFGRockRecipes(event) { A: x.brick, B: 'tfc:mortar' }) - }) - event.shaped('tfg:rock/aqueduct_stone', [ - 'ABA', - 'ABA', - 'AAA' - ], { - A: 'gtceu:stone_ingot', - B: 'tfc:mortar' - }) - - + event.recipes.gtceu.assembler(`${x.brick}_to_${x.aqueduct}`.replace(/:/g, '_')) + .itemInputs(`3x ${x.brick}`) + .circuit(3) + .inputFluids(Fluid.of('gtceu:concrete', 16)) + .itemOutputs(x.aqueduct) + .duration(50) + .EUt(2) + }) // #endregion AQUEDUCT + // #region COBBLE TO MOSSY COBBLE + + const COBBLE_TO_MOSSY = [ + { cobble: 'minecraft:cobblestone', mossy: 'minecraft:mossy_cobblestone' }, + { cobble: 'tfg:rock/cobble_blackstone', mossy: 'tfg:rock/mossy_cobble_blackstone' }, + { cobble: 'minecraft:cobbled_deepslate', mossy: 'tfg:rock/mossy_cobble_deepslate' }, + { cobble: 'tfg:rock/cobble_dripstone', mossy: 'tfg:rock/mossy_cobble_dripstone' }, + { cobble: 'tfg:rock/cobble_crackrack', mossy: 'tfg:rock/mossy_cobble_crackrack' }, + { cobble: 'ad_astra:moon_cobblestone', mossy: 'tfg:rock/mossy_cobble_moon' }, + { cobble: 'tfg:rock/cobble_moon_deepslate', mossy: 'tfg:rock/mossy_cobble_moon_deepslate' }, + { cobble: 'ad_astra:mars_cobblestone', mossy: 'tfg:rock/mossy_cobble_mars' }, + { cobble: 'ad_astra:venus_cobblestone', mossy: 'tfg:rock/mossy_cobble_venus' }, + { cobble: 'ad_astra:mercury_cobblestone', mossy: 'tfg:rock/mossy_cobble_mercury' }, + { cobble: 'ad_astra:glacio_cobblestone', mossy: 'tfg:rock/mossy_cobble_glacio' }, + { cobble: 'tfg:rock/cobble_permafrost', mossy: 'tfg:rock/mossy_cobble_permafrost' }, + { cobble: 'gtceu:red_granite_cobblestone', mossy: 'gtceu:mossy_red_granite_cobblestone' }, + { cobble: 'gtceu:light_concrete_cobblestone', mossy: 'gtceu:mossy_light_concrete_cobblestone' }, + { cobble: 'gtceu:dark_concrete_cobblestone', mossy: 'gtceu:mossy_dark_concrete_cobblestone' } + ]; + + COBBLE_TO_MOSSY.forEach(x => { + + event.recipes.gtceu.assembler(`${x.mossy}_cobble_rocks_to_mossy_cobble`.replace(/: /g, '_')) + .itemInputs(x.cobble, '#tfc:compost_greens_low') + .circuit(0) + .inputFluids("#tfg:clean_water 144") + .itemOutputs(x.mossy) + .duration(50) + .EUt(2) + }) + + // #endregion // #region RAW_TO_POLISHED const RAW_TO_POLISHED = [ @@ -364,14 +348,6 @@ function registerTFGRockRecipes(event) { .notConsumable('tfc:lens') .duration(30) .EUt(GTValues.VA[GTValues.ULV]) - - //event.custom({ - // type: 'vintageimprovements:laser_cutting', - // ingredients: [{ item: x.raw }], - // results: [{item: x.polished }], - // energy: GTValues.VA[GTValues.ULV] * 30 * 4, - // maxChargeRate: GTValues.VA[GTValues.ULV] * 4 - //}).id(`tfg:vi/laser/tfg/${x.raw.replace(/:/g, '_')}_to_${x.polished.replace(/:/g, '_')}`) }) // #endregion RAW_TO_POLISHED @@ -405,7 +381,7 @@ function registerTFGRockRecipes(event) { .EUt(8) event.recipes.greate.pressing(x.cracked, x.raw) - .recipeTier(1) + .recipeTier(0) .id(`greate:pressing/${x.raw}_to_${x.cracked}`.replace(/:/g, '_')) }) // #endregion CRACKING @@ -594,19 +570,19 @@ function registerTFGRockRecipes(event) { dust: 'tfg:moon_deepslate_dust', loose: null, stonecutting: true }, // Cobble - Mossy { raw: 'tfg:rock/polished_moon_deepslate', stair: 'tfg:rock/polished_moon_deepslate_stairs', slab: 'tfg:rock/polished_moon_deepslate_slab', wall: 'tfg:rock/polished_moon_deepslate_wall', - dust: 'gtceu:moon_deepslate_dust', loose: null, stonecutting: true }, // Smooth + dust: 'tfg:moon_deepslate_dust', loose: null, stonecutting: true }, // Smooth { raw: 'tfg:rock/bricks_moon_deepslate', stair: 'tfg:rock/bricks_moon_deepslate_stairs', slab: 'tfg:rock/bricks_moon_deepslate_slab', wall: 'tfg:rock/bricks_moon_deepslate_wall', - dust: 'gtceu:moon_deepslate_dust', loose: null, stonecutting: true }, // Bricks + dust: 'tfg:moon_deepslate_dust', loose: null, stonecutting: true }, // Bricks { raw: 'tfg:rock/cracked_bricks_moon_deepslate', stair: 'tfg:rock/cracked_bricks_moon_deepslate_stairs', slab: 'tfg:rock/cracked_bricks_moon_deepslate_slab', wall: 'tfg:rock/cracked_bricks_moon_deepslate_wall', - dust: 'gtceu:moon_deepslate_dust', loose: null, stonecutting: true }, // Bricks - Cracked + dust: 'tfg:moon_deepslate_dust', loose: null, stonecutting: true }, // Bricks - Cracked { raw: 'tfg:rock/mossy_bricks_moon_deepslate', stair: 'tfg:rock/mossy_bricks_moon_deepslate_stairs' , slab: 'tfg:rock/mossy_bricks_moon_deepslate_slab', wall: 'tfg:rock/mossy_bricks_moon_deepslate_wall', - dust: 'gtceu:moon_deepslate_dust', loose: null, stonecutting: true }, // Bricks - Mossy + dust: 'tfg:moon_deepslate_dust', loose: null, stonecutting: true }, // Bricks - Mossy { raw: 'tfg:rock/chiseled_bricks_moon_deepslate', stair: 'tfg:rock/chiseled_bricks_moon_deepslate_stairs', slab: 'tfg:rock/chiseled_bricks_moon_deepslate_slab', wall: 'tfg:rock/chiseled_bricks_moon_deepslate_wall', - dust: 'gtceu:moon_deepslate_dust', loose: null, stonecutting: true }, // Bricks - Extra + dust: 'tfg:moon_deepslate_dust', loose: null, stonecutting: true }, // Bricks - Extra // Permafrost { raw: 'ad_astra:permafrost', stair: 'tfg:rock/permafrost_stairs', slab: 'tfg:rock/permafrost_slab', wall: 'tfg:rock/permafrost_wall', @@ -742,16 +718,16 @@ function registerTFGRockRecipes(event) { // #region @Create Stones // @Create Andesite { raw: 'create:cut_andesite', stair: 'create:cut_andesite_stairs', slab: 'create:cut_andesite_slab', wall: 'create:cut_andesite_wall', - dust: 'tfg:andesite_dust', loose: null, stonecutting: false }, // Raw + dust: 'gtceu:andesite_dust', loose: null, stonecutting: false }, // Raw { raw: 'create:polished_cut_andesite', stair: 'create:polished_cut_andesite_stairs', slab: 'create:polished_cut_andesite_slab', wall: 'create:polished_cut_andesite_wall', - dust: 'tfg:andesite_dust', loose: null, stonecutting: false }, // Smooth + dust: 'gtceu:andesite_dust', loose: null, stonecutting: false }, // Smooth { raw: 'create:cut_andesite_bricks', stair: 'create:cut_andesite_brick_stairs', slab: 'create:cut_andesite_brick_slab', wall: 'create:cut_andesite_brick_wall', - dust: 'tfg:andesite_dust', loose: null, stonecutting: false }, // Bricks + dust: 'gtceu:andesite_dust', loose: null, stonecutting: false }, // Bricks { raw: 'create:small_andesite_bricks', stair: 'create:small_andesite_brick_stairs', slab: 'create:small_andesite_brick_slab', wall: 'create:small_andesite_brick_wall', - dust: 'tfg:andesite_dust', loose: null, stonecutting: false }, // Bricks - Extra + dust: 'gtceu:andesite_dust', loose: null, stonecutting: false }, // Bricks - Extra // @Create Calcite { raw: 'create:cut_calcite', stair: 'create:cut_calcite_stairs', slab: 'create:cut_calcite_slab', wall: 'create:cut_calcite_wall', @@ -781,16 +757,16 @@ function registerTFGRockRecipes(event) { // @Create Diorite { raw: 'create:cut_diorite', stair: 'create:cut_diorite_stairs', slab: 'create:cut_diorite_slab', wall: 'create:cut_diorite_wall', - dust: 'tfg:diorite_dust', loose: null, stonecutting: false }, // Raw + dust: 'gtceu:diorite_dust', loose: null, stonecutting: false }, // Raw { raw: 'create:polished_cut_diorite', stair: 'create:polished_cut_diorite_stairs', slab: 'create:polished_cut_diorite_slab', wall: 'create:polished_cut_diorite_wall', - dust: 'tfg:diorite_dust', loose: null, stonecutting: false }, // Smooth + dust: 'gtceu:diorite_dust', loose: null, stonecutting: false }, // Smooth { raw: 'create:cut_diorite_bricks', stair: 'create:cut_diorite_brick_stairs', slab: 'create:cut_diorite_brick_slab', wall: 'create:cut_diorite_brick_wall', - dust: 'tfg:diorite_dust', loose: null, stonecutting: false }, // Bricks + dust: 'gtceu:diorite_dust', loose: null, stonecutting: false }, // Bricks { raw: 'create:small_diorite_bricks', stair: 'create:small_diorite_brick_stairs', slab: 'create:small_diorite_brick_slab', wall: 'create:small_diorite_brick_wall', - dust: 'tfg:diorite_dust', loose: null, stonecutting: false }, // Bricks - Extra + dust: 'gtceu:diorite_dust', loose: null, stonecutting: false }, // Bricks - Extra // @Create Limestone { raw: 'create:cut_limestone', stair: 'create:cut_limestone_stairs', slab: 'create:cut_limestone_slab', wall: 'create:cut_limestone_wall', @@ -900,7 +876,7 @@ function registerTFGRockRecipes(event) { ]) CUT_GRIND.forEach(x => { - if (x.raw != null && x.dust != null ) { + if (x.raw != null && x.dust != null) { try{ event.recipes.gtceu.macerator(x.raw.replace(/.*:/g, 'macerate_')) .itemInputs(x.raw) @@ -955,7 +931,7 @@ function registerTFGRockRecipes(event) { } } if (x.wall != null) { - if (x.raw != null) { + if (x.raw != null) { if (x.stonecutting) { event.stonecutting(x.wall, x.raw).id(`${x.raw}_to_${x.wall}`.replace(/:/g, '_')) } @@ -972,10 +948,9 @@ function registerTFGRockRecipes(event) { .EUt(2) .category(GTRecipeCategories.MACERATOR_RECYCLING) } - } - - if (x.loose != null && x.raw != null) { - event.shapeless(`4x ${x.loose}`, [x.raw]) + if (x.loose != null) { + event.shapeless(`2x ${x.loose}`, [x.wall]) + } } }) @@ -1163,6 +1138,7 @@ function registerTFGRockRecipes(event) { { block: 'beneath:crackrack', dimension: null }, { block: 'tfg:rock/cobble_crackrack', dimension: null }, { block: 'minecraft:basalt', dimension: null }, + { block: 'minecraft:calcite', dimension: null }, { block: 'ad_astra:moon_stone', dimension: 'ad_astra:moon' }, { block: 'ad_astra:moon_cobblestone', dimension: 'ad_astra:moon' }, { block: 'ad_astra:moon_deepslate', dimension: 'ad_astra:moon' }, @@ -1170,6 +1146,7 @@ function registerTFGRockRecipes(event) { { block: 'ad_astra:glacio_stone', dimension: 'ad_astra:moon' }, { block: 'ad_astra:glacio_cobblestone', dimension: 'ad_astra:moon' }, { block: 'create:asurine', dimension: 'ad_astra:moon' }, + { block: 'ae2:sky_stone_block', dimension: 'ad_astra:moon' }, { block: 'ad_astra:mars_stone', dimension: 'ad_astra:mars' }, { block: 'ad_astra:mars_cobblestone', dimension: 'ad_astra:mars' }, { block: 'ad_astra:venus_stone', dimension: 'ad_astra:mars' }, @@ -1179,10 +1156,14 @@ function registerTFGRockRecipes(event) { { block: 'create:ochrum', dimension: 'ad_astra:mars' }, { block: 'create:scoria', dimension: 'ad_astra:venus' }, { block: 'minecraft:tuff', dimension: 'ad_astra:venus' }, + { block: 'betterend:flavolite', dimension: 'ad_astra:venus' }, + { block: 'betterend:sandy_jadestone', dimension: 'ad_astra:venus' }, + { block: 'betterend:sulphuric_rock', dimension: 'ad_astra:venus' }, + { block: 'betterend:brimstone', dimension: 'ad_astra:venus' }, { block: 'ad_astra:mercury_stone', dimension: 'ad_astra:mercury' }, { block: 'ad_astra:mercury_cobblestone', dimension: 'ad_astra:mercury' }, { block: 'create:crimsite', dimension: 'ad_astra:mercury' }, - { block: 'create:scorchia', dimension: 'ad_astra:mercury' }, + { block: 'create:scorchia', dimension: null }, { block: 'ad_astra:permafrost', dimension: 'ad_astra:glacio' }, { block: 'tfg:rock/cobble_permafrost', dimension: 'ad_astra:glacio' }, { block: 'create:veridium', dimension: 'ad_astra:glacio' }, @@ -1214,14 +1195,12 @@ function registerTFGRockRecipes(event) { .itemOutputs('ad_astra:permafrost') .duration(40*20) .EUt(2) - .dimension('ad_astra:glacio') event.recipes.gtceu.compressor('tfg:venus_sandstone') .itemInputs('4x ad_astra:venus_sand') .itemOutputs('ad_astra:venus_sandstone') .duration(40*20) .EUt(2) - .dimension('ad_astra:mars') // #endregion COMPRESSOR @@ -1258,4 +1237,36 @@ function registerTFGRockRecipes(event) { }) //#endregion Magma Blocks + + //#region GT marble + event.stonecutting('gtceu:polished_marble', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_polished_marble') + event.stonecutting('gtceu:chiseled_marble', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_chiseled_marble') + event.stonecutting('gtceu:marble_tile', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_marble_tile') + event.stonecutting('gtceu:marble_small_tile', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_marble_small_tile') + event.stonecutting('gtceu:marble_windmill_a', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_marble_windmill_a') + event.stonecutting('gtceu:marble_windmill_b', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_marble_windmill_b') + event.stonecutting('gtceu:small_marble_bricks', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_small_marble_bricks') + event.stonecutting('gtceu:square_marble_bricks', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_square_marble_bricks') + //#endregion + + // Blackstone Buttons + removeCutterRecipe(event, 'blackstone_button') + removeCutterRecipe(event, 'blackstone_button_water') + removeCutterRecipe(event, 'blackstone_button_distilled_water') + removeCutterRecipe(event, 'cut_polished_blackstone_brickslab_into_button') + removeCutterRecipe(event, 'cut_polished_blackstone_brickslab_into_button_water') + removeCutterRecipe(event, 'cut_polished_blackstone_brickslab_into_button_distilled_water') + + event.recipes.gtceu.cutter('tfg:blackstone_button') + .itemInputs('minecraft:polished_blackstone_pressure_plate') + .itemOutputs('6x minecraft:polished_blackstone_button') + .EUt(7) + .duration(100) + + // Misc + event.recipes.gtceu.cutter('tfg:vanilla_stone_slab_to_plate') + .itemInputs('minecraft:stone_slab') + .itemOutputs('#forge:plates/stone') + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) } \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/recipes.sand.js b/kubejs/server_scripts/tfg/natural_blocks/recipes.sand.js similarity index 93% rename from kubejs/server_scripts/tfc/recipes.sand.js rename to kubejs/server_scripts/tfg/natural_blocks/recipes.sand.js index 2ef29e6a1..6b035dca2 100644 --- a/kubejs/server_scripts/tfc/recipes.sand.js +++ b/kubejs/server_scripts/tfg/natural_blocks/recipes.sand.js @@ -1,7 +1,7 @@ ο»Ώ// priority: 0 "use strict"; -function registerTFCSandRecipes(event) { +function registerTFGSandRecipes(event) { // НСфтСносный -> Π–Π΅Π»Ρ‚Ρ‹ΠΉ пСсок event.recipes.gtceu.centrifuge('oilsands_ore_separation') @@ -210,4 +210,25 @@ function registerTFCSandRecipes(event) { event.recipes.greate.pressing('tfc:sand/pink', '#tfc:pink_gravel') .recipeTier(1) .id(`greate:pressing/pink_gravel_to_sand`) + + // Quartz sand + event.shaped('gtceu:quartz_sand_dust', [ + 'A', + 'B' + ], { + A: '#forge:sand', + B: '#forge:tools/mortars' + }).id('gtceu:shaped/quartz_sand') + + event.recipes.gtceu.macerator('quartz_sand_from_sand') + .itemInputs('#forge:sand') + .itemOutputs('gtceu:quartz_sand_dust') + .duration(30) + .EUt(2) + + event.recipes.gtceu.electrolyzer('sand_electrolysis') + .itemInputs('8x #forge:sand') + .itemOutputs('gtceu:silicon_dioxide_dust') + .duration(500) + .EUt(25) } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.stone_dusts.js b/kubejs/server_scripts/tfg/natural_blocks/recipes.stone_dusts.js similarity index 97% rename from kubejs/server_scripts/tfg/recipes.stone_dusts.js rename to kubejs/server_scripts/tfg/natural_blocks/recipes.stone_dusts.js index 2ce4ca2eb..e753c0c09 100644 --- a/kubejs/server_scripts/tfg/recipes.stone_dusts.js +++ b/kubejs/server_scripts/tfg/natural_blocks/recipes.stone_dusts.js @@ -6,6 +6,17 @@ */ function registerTFGStoneDustRecipes(event) { + event.recipes.gtceu.centrifuge('gtceu:stone_dust_separation') + .itemInputs('gtceu:stone_dust') + .chancedOutput('#forge:small_dusts/quartzite', 2500, 0) + .chancedOutput('#forge:small_dusts/potassium_feldspar', 2500, 0) + .chancedOutput('#forge:small_dusts/marble', 2222, 0) + .chancedOutput('#forge:small_dusts/biotite', 1111, 0) + .chancedOutput('#forge:small_dusts/metal_mixture', 825, 80) + .chancedOutput('#forge:small_dusts/sodalite', 550, 55) + .duration(12 * 20) + .EUt(GTValues.VA[GTValues.HV]) + event.remove({ id: 'gtceu:electrolyzer/decomposition_electrolyzing_blackstone' }) event.recipes.gtceu.centrifuge('gtceu:decomposition_centrifuging__diorite') diff --git a/kubejs/server_scripts/tfc/recipes.stone.js b/kubejs/server_scripts/tfg/natural_blocks/recipes.tfc_stone.js similarity index 90% rename from kubejs/server_scripts/tfc/recipes.stone.js rename to kubejs/server_scripts/tfg/natural_blocks/recipes.tfc_stone.js index 41cc3e426..d60074501 100644 --- a/kubejs/server_scripts/tfc/recipes.stone.js +++ b/kubejs/server_scripts/tfg/natural_blocks/recipes.tfc_stone.js @@ -1,6 +1,10 @@ ο»Ώ// priority: 0 "use strict"; +/** + * + * @param {Internal.RecipesEventJS} event + */ function registerTFCStoneRecipes(event) { global.TFC_STONE_TYPES.forEach(stone => { @@ -29,10 +33,10 @@ function registerTFCStoneRecipes(event) { .itemInputs(`tfc:rock/raw/${stone}`) .itemOutputs(`tfc:rock/cobble/${stone}`) .duration(10) - .EUt(16) + .EUt(7) event.recipes.greate.pressing(`tfc:rock/cobble/${stone}`, `tfc:rock/raw/${stone}`) - .recipeTier(1) + .recipeTier(0) .id(`greate:pressing/${stone}_raw_to_cobble`) // Raw Pressure Plate @@ -59,33 +63,20 @@ function registerTFCStoneRecipes(event) { generateCutterRecipe(event, `tfc:rock/pressure_plate/${stone}`, `6x tfc:rock/button/${stone}`, 50, 2, `${stone}_raw_button`) - // Gravel Crafting - event.shapeless(`1x tfc:rock/gravel/${stone}`, [ - `4x tfc:rock/loose/${stone}` - ]).id(`tfc:shapeless/loose_${stone}_to_gravel`) - - event.shapeless(`1x tfc:rock/gravel/${stone}`, [ - `4x tfc:rock/mossy_loose/${stone}` - ]).id(`tfc:shapeless/mossy_loose_${stone}_to_gravel`) - - event.shapeless(`16x tfc:rock/loose/${stone}`, [ - `4x tfc:rock/gravel/${stone}` - ]).id(`tfc:shapeless/gravel_to_loose_${stone}`) - - // Gravel Packing - event.recipes.gtceu.packer(`tfc:gtceu/packer/packing_loose_${stone}_to_gravel`) + // Cobble Packing + event.recipes.gtceu.packer(`tfc:gtceu/packer/packing_loose_${stone}_to_cobble`) .itemInputs(`4x tfc:rock/loose/${stone}`) - .itemOutputs(`1x tfc:rock/gravel/${stone}`) + .itemOutputs(`1x tfc:rock/cobble/${stone}`) .circuit(1) .duration(30) - .EUt(GTValues.VA[GTValues.LV]) + .EUt(GTValues.VA[GTValues.ULV]) - event.recipes.gtceu.packer(`tfc:gtceu/packer/packing_mossy_loose_${stone}_to_gravel`) + event.recipes.gtceu.packer(`tfc:gtceu/packer/packing_mossy_loose_${stone}_to_cobble`) .itemInputs(`4x tfc:rock/mossy_loose/${stone}`) - .itemOutputs(`1x tfc:rock/gravel/${stone}`) + .itemOutputs(`1x tfc:rock/mossy_cobble/${stone}`) .circuit(1) .duration(30) - .EUt(GTValues.VA[GTValues.LV]) + .EUt(GTValues.VA[GTValues.ULV]) // Cobble Unpacking event.recipes.gtceu.packer(`tfc:gtceu/packer/unpacking_${stone}_cobble_into_loose`) @@ -163,30 +154,12 @@ function registerTFCStoneRecipes(event) { .itemInputs(`tfc:rock/cobble/${stone}`) .itemOutputs(`tfc:rock/gravel/${stone}`) .duration(10) - .EUt(16) + .EUt(7) event.recipes.greate.pressing(`tfc:rock/gravel/${stone}`, `tfc:rock/cobble/${stone}`) - .recipeTier(1) + .recipeTier(0) .id(`greate:pressing/${stone}_cobble_to_gravel`) - // Glueing Losse to Cobble - event.shaped(`tfc:rock/cobble/${stone}`, [ - 'ABA', - 'BAB', - 'ABA' - ], { - A: `tfc:rock/loose/${stone}`, - B: '#tfc:mortar' - }).id(`tfc:crafting/rock/${stone}_loose_rocks_to_cobble`) - - event.recipes.gtceu.assembler(`${stone}_loose_rocks_to_cobble`) - .itemInputs(`4x tfc:rock/loose/${stone}`) - .circuit(2) - .inputFluids(Fluid.of('gtceu:concrete', 72)) - .itemOutputs(`tfc:rock/cobble/${stone}`) - .duration(50) - .EUt(2) - // #endregion @@ -208,10 +181,10 @@ function registerTFCStoneRecipes(event) { .itemInputs(`tfc:rock/bricks/${stone}`) .itemOutputs(`tfc:rock/cracked_bricks/${stone}`) .duration(25) - .EUt(8) + .EUt(7) event.recipes.greate.pressing(`tfc:rock/cracked_bricks/${stone}`, `tfc:rock/bricks/${stone}`) - .recipeTier(1) + .recipeTier(0) .id(`greate:pressing/cracked_bricks_${stone}`) //#endregion @@ -219,22 +192,6 @@ function registerTFCStoneRecipes(event) { //#region Mossy Cobble // Cobble -> Mossy Cobble - event.shaped(`tfc:rock/mossy_cobble/${stone}`, [ - 'ABA', - 'BAB', - 'ABA' - ], { - A: `tfc:rock/mossy_loose/${stone}`, - B: '#tfc:mortar' - }).id(`tfc:crafting/rock/${stone}_mossy_loose_rocks_to_cobble`) - - event.recipes.gtceu.assembler(`${stone}_mossy_loose_rocks_to_mossy_cobble`) - .itemInputs(`4x tfc:rock/mossy_loose/${stone}`) - .circuit(0) - .inputFluids(Fluid.of('gtceu:concrete', 72)) - .itemOutputs(`tfc:rock/mossy_cobble/${stone}`) - .duration(50) - .EUt(2) event.recipes.gtceu.assembler(`${stone}_cobble_rocks_to_mossy_cobble`) .itemInputs(`tfc:rock/cobble/${stone}`, '#tfc:compost_greens_low') @@ -286,7 +243,7 @@ function registerTFCStoneRecipes(event) { event.recipes.gtceu.assembler(`aqueduct_${stone}`) .itemInputs(`3x tfc:brick/${stone}`) - .circuit(0) + .circuit(3) .inputFluids(Fluid.of('gtceu:concrete', 16)) .itemOutputs(`tfc:rock/aqueduct/${stone}`) .duration(50) @@ -561,6 +518,17 @@ function registerTFCStoneRecipes(event) { .EUt(2) .category(GTRecipeCategories.MACERATOR_RECYCLING) + //#endregion + + //#region Recycle beam + let dustSmall = ChemicalHelper.get(TagPrefix.dustSmall, stoneMaterial, 1); + event.recipes.gtceu.macerator(`${stone}_support_to_dust`) + .itemInputs(`tfg:${stone}_support`) + .itemOutputs(dustSmall) + .duration(150) + .EUt(2) + .category(GTRecipeCategories.MACERATOR_RECYCLING); + //#endregion //#endregion diff --git a/kubejs/server_scripts/tfg/tags.stones.js b/kubejs/server_scripts/tfg/natural_blocks/tags.stones.js similarity index 98% rename from kubejs/server_scripts/tfg/tags.stones.js rename to kubejs/server_scripts/tfg/natural_blocks/tags.stones.js index 000a1d7cf..2df6ade7c 100644 --- a/kubejs/server_scripts/tfg/tags.stones.js +++ b/kubejs/server_scripts/tfg/natural_blocks/tags.stones.js @@ -1,6 +1,6 @@ // priority: 0 -function registerTFGItemStoneTags(event) { +function registerTFGStoneItemTags(event) { event.add('tfc:fluxstone', 'tfg:loose/dripstone') @@ -407,6 +407,11 @@ function registerTFGItemStoneTags(event) { event.add(`tfc:${STONE_TYPES.red_granite}_items`, 'gtceu:chiseled_red_granite') event.add('tfc:rock/bricks', 'gtceu:chiseled_red_granite') event.add('tfc:rock/chiseled_bricks', 'gtceu:chiseled_red_granite') + + // Smooth stone slabs + event.add('forge:smooth_stone_slabs', 'tfg:rock/polished_crackrack_slab') + event.add('forge:smooth_stone_slabs', 'tfg:rock/polished_moon_deepslate_slab') + event.add('forge:smooth_stone_slabs', 'tfg:rock/polished_red_granite_slab') // Permafrost (???) [NA] event.remove('tfc:metamorphic_rock', 'tfg:loose/permafrost') diff --git a/kubejs/server_scripts/gregtech/loot.js b/kubejs/server_scripts/tfg/ores_and_materials/loot.ores.js similarity index 73% rename from kubejs/server_scripts/gregtech/loot.js rename to kubejs/server_scripts/tfg/ores_and_materials/loot.ores.js index 70f787b9c..60fb0ca79 100644 --- a/kubejs/server_scripts/gregtech/loot.js +++ b/kubejs/server_scripts/tfg/ores_and_materials/loot.ores.js @@ -23,19 +23,18 @@ const STONE_TYPES_TO_COBBLE = { granite: 'tfc:rock/cobble/granite', deepslate: 'minecraft:cobbled_deepslate', pyroxenite: 'tfg:rock/cobble_blackstone', - dripstone: 'tfg:block/rock/cobble_dripstone', - keratophyre: 'tfg:block/rock/cobble_crackrack', + dripstone: 'tfg:rock/cobble_dripstone', + keratophyre: 'tfg:rock/cobble_crackrack', moon_stone: 'ad_astra:moon_cobblestone', - moon_deepslate: 'ad_astra:moon_sand', + moon_deepslate: 'tfg:rock/cobble_moon_deepslate', mars_stone: 'ad_astra:mars_cobblestone', venus_stone: 'ad_astra:venus_cobblestone', mercury_stone: 'ad_astra:mercury_cobblestone', glacio_stone: 'ad_astra:glacio_cobblestone', - permafrost: 'gtceu:ice_dust' + permafrost: 'tfg:rock/cobble_permafrost' } -const registerGTCEULoots = (event) => { - +const registerTFGOreLoots = (event) => { // Have to define these here because normal loot table jsons don't support checking for hammers // Crush raw rock into cobble @@ -61,51 +60,39 @@ const registerGTCEULoots = (event) => { LootEntry.of('tfg:rock/cobble_blackstone'), LootEntry.of('tfc:powder/native_gold') ) - + // Go through all materials + const $GreateMaterials = Java.loadClass("electrolyte.greate.registry.GreateMaterials") + forEachMaterial(material => { if (material.hasProperty(PropertyKey.ORE)) { // Indicator buds if (material.hasProperty(PropertyKey.GEM)) { - let normalDrop = ChemicalHelper.get(TagPrefix.gemChipped, material, 1) - let sawDrop = ChemicalHelper.get(TagPrefix.gem, material, 1) - - let bud = `gtceu:${material.getName()}_bud_indicator`; + let bud = ChemicalHelper.get(TFGTagPrefix.budIndicator, material, 1).getItem().id; event.addBlockLootModifier(bud) .matchMainHand("tfc:gem_saw") - .addLoot(sawDrop); + .addLoot(ChemicalHelper.get(TagPrefix.gem, material, 1)); event.addBlockLootModifier(bud) .not(n => n.matchMainHand("tfc:gem_saw")) - .addLoot(normalDrop); + .addLoot(ChemicalHelper.get(TagPrefix.gemChipped, material, 1)); } let richRawOre = ChemicalHelper.get(TFGTagPrefix.richRawOre, material, 1) let normalRawOre = ChemicalHelper.get(TagPrefix.rawOre, material, 1) let poorRawOre = ChemicalHelper.get(TFGTagPrefix.poorRawOre, material, 1) - // I LOVE LOOTJS I LOVE LOOTJS I LOVE LOOTJS - let rawOreBlock = `:${ChemicalHelper.get(TagPrefix.rawOreBlock, material, 1).getItem()}`; - if (material === GTMaterials.Copper || material === GTMaterials.Gold || material === GTMaterials.Iron) { - rawOreBlock = `minecraft${ rawOreBlock}`; - } else if (material === TFGHelpers.getMaterial('desh') - || material === TFGHelpers.getMaterial('ostrum') - || material === TFGHelpers.getMaterial('calorite')) { - rawOreBlock = `ad_astra${ rawOreBlock}`; - } else { - rawOreBlock = `gtceu${ rawOreBlock}`; - } - + let rawOreBlock = ChemicalHelper.get(TagPrefix.rawOreBlock, material, 1).getItem().id; event.addBlockLootModifier(rawOreBlock) .removeLoot(ItemFilter.ALWAYS_TRUE) .addWeightedLoot([4, 6], - [ - richRawOre.withChance(0.2), - normalRawOre.withChance(0.6), - poorRawOre.withChance(0.2) - ]); + [ + richRawOre.withChance(0.2), + normalRawOre.withChance(0.6), + poorRawOre.withChance(0.2) + ]); // Stone ores global.ORE_BEARING_STONES.forEach(stoneType => { @@ -121,9 +108,10 @@ const registerGTCEULoots = (event) => { } let stoneTypeDust = ChemicalHelper.get(TagPrefix.dust, stoneTypeMaterial, 1) + let namespace = material === $GreateMaterials.RoseQuartz ? 'greate' : 'gtceu'; // break with pickaxe/mining hammer/drill/mining machine - event.addBlockLootModifier(`gtceu:${stoneType}_${material.getName()}_ore`) + event.addBlockLootModifier(`${namespace}:${stoneType}_${material.getName()}_ore`) .removeLoot(ItemFilter.ALWAYS_TRUE) .addWeightedLoot([ richRawOre.withChance(0.2), @@ -135,7 +123,7 @@ const registerGTCEULoots = (event) => { ) // break with hammer - event.addBlockLootModifier(`gtceu:${stoneType}_${material.getName()}_ore`) + event.addBlockLootModifier(`${namespace}:${stoneType}_${material.getName()}_ore`) .matchMainHand('#forge:tools/hammers') .addLoot(STONE_TYPES_TO_COBBLE[stoneType]); }) diff --git a/kubejs/server_scripts/tfg/ores_and_materials/recipes.alloys.js b/kubejs/server_scripts/tfg/ores_and_materials/recipes.alloys.js new file mode 100644 index 000000000..8beef8cc9 --- /dev/null +++ b/kubejs/server_scripts/tfg/ores_and_materials/recipes.alloys.js @@ -0,0 +1,258 @@ +ο»Ώ// priority: 0 +"use strict"; + +/** + * @param {Internal.RecipesEventJS} event + */ +function registerTFGAlloyingRecipes(event) { + + // #region Colored steels + + event.replaceInput('gtceu:shaped/lv_machine_hull', '#forge:plates/wrought_iron', '#forge:plates/red_steel') + + event.remove({id:'gtceu:electric_blast_furnace/blast_black_steel_gas'}) + event.remove({id:'gtceu:electric_blast_furnace/blast_black_steel'}) + event.remove({id:'gtceu:electric_blast_furnace/blast_red_steel_gas'}) + event.remove({id:'gtceu:electric_blast_furnace/blast_red_steel'}) + event.remove({id:'gtceu:electric_blast_furnace/blast_blue_steel_gas'}) + event.remove({id:'gtceu:electric_blast_furnace/blast_blue_steel'}) + + event.recipes.gtceu.electric_blast_furnace('blast_black_steel_gas_mv') + .itemInputs('gtceu:black_steel_dust') + .itemOutputs('tfc:metal/ingot/black_steel') + .inputFluids(Fluid.of('gtceu:nitrogen', 1000)) + .duration(469) + .circuit(2) + .EUt(GTValues.VA[GTValues.MV]) + .blastFurnaceTemp(1000) + + event.recipes.gtceu.electric_blast_furnace('blast_black_steel_mv') + .itemInputs('gtceu:black_steel_dust') + .itemOutputs('tfc:metal/ingot/black_steel') + .duration(700) + .circuit(1) + .EUt(GTValues.VA[GTValues.MV]) + .blastFurnaceTemp(1000) + + event.recipes.gtceu.electric_blast_furnace('blast_red_steel_gas_mv') + .itemInputs('gtceu:red_steel_dust') + .itemOutputs('tfc:metal/ingot/red_steel') + .inputFluids(Fluid.of('gtceu:nitrogen', 1000)) + .duration(670) + .circuit(2) + .EUt(GTValues.VA[GTValues.MV]) + .blastFurnaceTemp(1000) + + event.recipes.gtceu.electric_blast_furnace('blast_red_steel_mv') + .itemInputs('gtceu:red_steel_dust') + .itemOutputs('tfc:metal/ingot/red_steel') + .duration(1000) + .circuit(1) + .EUt(GTValues.VA[GTValues.MV]) + .blastFurnaceTemp(1000) + + event.recipes.gtceu.electric_blast_furnace('blast_blue_steel_gas_mv') + .itemInputs('gtceu:blue_steel_dust') + .itemOutputs('tfc:metal/ingot/blue_steel') + .inputFluids(Fluid.of('gtceu:nitrogen', 1000)) + .duration(670) + .circuit(2) + .EUt(GTValues.VA[GTValues.MV]) + .blastFurnaceTemp(1000) + + event.recipes.gtceu.electric_blast_furnace('blast_blue_steel_mv') + .itemInputs('gtceu:blue_steel_dust') + .itemOutputs('tfc:metal/ingot/blue_steel') + .duration(1000) + .circuit(1) + .EUt(GTValues.VA[GTValues.MV]) + .blastFurnaceTemp(1000) + + //#endregion + + //#region add regular furnace recipes for other tfc alloys + + event.remove({ id: 'gtceu:electric_blast_furnace/blast_bismuth_bronze' }) + event.remove({ id: 'gtceu:electric_blast_furnace/blast_bismuth_bronze_gas' }) + event.remove({ id: 'gtceu:electric_blast_furnace/blast_black_bronze' }) + event.remove({ id: 'gtceu:electric_blast_furnace/blast_black_bronze_gas' }) + event.remove({ id: 'gtceu:vacuum_freezer/cool_hot_black_bronze_ingot' }) + event.remove({ id: 'gtceu:electric_blast_furnace/blast_sterling_silver' }) + event.remove({ id: 'gtceu:electric_blast_furnace/blast_sterling_silver_gas' }) + event.remove({ id: 'gtceu:electric_blast_furnace/blast_rose_gold' }) + event.remove({ id: 'gtceu:electric_blast_furnace/blast_rose_gold_gas' }) + + event.smelting('gtceu:bismuth_bronze_ingot', '#forge:dusts/bismuth_bronze') + .id('tfg:smelting/bismuth_bronze_ingot') + event.smelting('gtceu:black_bronze_ingot', '#forge:dusts/black_bronze') + .id('tfg:smelting/black_bronze_ingot') + event.smelting('gtceu:sterling_silver_ingot', '#forge:dusts/sterling_silver') + .id('tfg:smelting/sterling_silver_ingot') + event.smelting('gtceu:rose_gold_ingot', '#forge:dusts/rose_gold') + .id('tfg:smelting/rose_gold_ingot') + + event.recipes.gtceu.alloy_blast_smelter('tfg:abs_bismuth_bronze') + .itemInputs('1x gtceu:bismuth_dust', '3x gtceu:copper_dust', '1x gtceu:zinc_dust') + .outputFluids(Fluid.of('gtceu:bismuth_bronze', 720)) + .circuit(4) + .blastFurnaceTemp(1357) + .duration(300) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.alloy_blast_smelter('tfg:abs_black_bronze') + .itemInputs('3x gtceu:copper_dust', '1x gtceu:gold_dust', '1x gtceu:silver_dust') + .outputFluids(Fluid.of('gtceu:black_bronze', 720)) + .circuit(4) + .blastFurnaceTemp(1357) + .duration(300) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.mixer('tfg:bismuth_bronze_from_raw') + .itemInputs('1x gtceu:bismuth_dust', '3x gtceu:copper_dust', '1x gtceu:zinc_dust') + .itemOutputs('5x gtceu:bismuth_bronze_dust') + .circuit(2) + .duration(100) + .EUt(7) + + event.recipes.gtceu.mixer('tfg:black_bronze_from_raw') + .itemInputs('3x gtceu:copper_dust', '1x gtceu:gold_dust', '1x gtceu:silver_dust') + .itemOutputs('5x gtceu:black_bronze_dust') + .circuit(2) + .duration(100) + .EUt(7) + + //#endregion + + // Rose Gold + Sterling Silver + const copper_types = [ + "#forge:ingots/copper", + "#forge:dusts/copper", + "#forge:ingots/annealed_copper", + "#forge:dusts/annealed_copper" + ]; + const gold_types = [ + "#forge:ingots/gold", + "#forge:dusts/gold" + ]; + const silver_types = [ + "#forge:ingots/silver", + "#forge:dusts/silver" + ]; + + copper_types.forEach(copper_types_array => { + gold_types.forEach(gold_types_array => { + event.recipes.gtceu.alloy_smelter(`rose_gold_from_${copper_types_array.replace(/:/g, "/").replace(/#/g, "")}_and_${gold_types_array.replace(/:/g, "/").replace(/#/g, "")}`) + .itemInputs(Ingredient.of(copper_types_array).withCount(1), Ingredient.of(gold_types_array).withCount(4)) + .itemOutputs(ChemicalHelper.get(TagPrefix.ingot, GTMaterials.RoseGold, 5)) + .duration(20*10) + .EUt(GTValues.VA[GTValues.LV]) + }); + silver_types.forEach(silver_types_array => { + event.recipes.gtceu.alloy_smelter(`sterling_silver_from_${copper_types_array.replace(/:/g, "/").replace(/#/g, "")}_and_${silver_types_array.replace(/:/g, "/").replace(/#/g, "")}`) + .itemInputs(Ingredient.of(copper_types_array).withCount(1), Ingredient.of(silver_types_array).withCount(4)) + .itemOutputs(ChemicalHelper.get(TagPrefix.ingot, GTMaterials.SterlingSilver, 5)) + .duration(20*10) + .EUt(GTValues.VA[GTValues.LV]) + }); + }); + + event.remove({ id: 'gtceu:mixer/red_alloy' }) + // incorrect on purpose to prevent a greate duplicate recipe (the id becomes mixer/mixer/red_alloy) + event.recipes.gtceu.mixer('gtceu:mixer/red_alloy') + .itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone') + .itemOutputs('5x gtceu:red_alloy_dust') + .circuit(2) + .duration(100) + .EUt(7) + + event.recipes.gtceu.centrifuge('red_alloy_separation') + .itemInputs('5x gtceu:red_alloy_dust') + .itemOutputs('1x gtceu:copper_dust', '4x minecraft:redstone') + .duration(900) + .EUt(30) + + event.recipes.gtceu.alloy_smelter('copper_dust_and_redstone_dust_into_red_alloy') + .itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone') + .itemOutputs('5x gtceu:red_alloy_ingot') + .duration(50) + .EUt(16) + + event.recipes.gtceu.alloy_smelter('annealed_copper_dust_and_redstone_dust_into_red_alloy') + .itemInputs('1x gtceu:annealed_copper_dust', '4x minecraft:redstone') + .itemOutputs('5x gtceu:red_alloy_ingot') + .duration(50) + .EUt(16) + + event.recipes.gtceu.alloy_smelter('copper_ingot_and_redstone_dust_into_red_alloy') + .itemInputs('1x minecraft:copper_ingot', '4x minecraft:redstone') + .itemOutputs('5x gtceu:red_alloy_ingot') + .duration(50) + .EUt(16) + + event.recipes.gtceu.alloy_smelter('annealed_copper_ingot_and_redstone_dust_into_red_alloy') + .itemInputs('1x gtceu:annealed_copper_ingot', '4x minecraft:redstone') + .itemOutputs('5x gtceu:red_alloy_ingot') + .duration(50) + .EUt(16) + + event.remove({ id: 'gtceu:mixer/sterling_silver' }) + generateMixerRecipe(event, ['#forge:dusts/copper', '4x #forge:dusts/silver'], [], '5x gtceu:sterling_silver_dust', + 1, [], 500, 7, 64, 'gtceu:mixer/sterling_silver') + + event.remove({ id: 'gtceu:mixer/rose_gold' }) + generateMixerRecipe(event, ['#forge:dusts/copper', '4x #forge:dusts/gold'], [], '5x gtceu:rose_gold_dust', + 3, [], 500, 7, 64, 'gtceu:mixer/rose_gold') + + // Glowstone + event.recipes.gtceu.mixer('tfg:lv_glowstone') + .itemInputs('gtceu:gold_dust', 'minecraft:redstone', 'gtceu:sulfur_dust') + .itemOutputs('2x minecraft:glowstone_dust') + .circuit(8) + .duration(1200) + .EUt(30) + + event.recipes.gtceu.alloy_blast_smelter('tfg:liquid_glowstone') + .itemInputs('10x #forge:dusts/gold', '10x #forge:dusts/redstone', '10x #forge:dusts/sulfur') + .outputFluids(Fluid.of('gtceu:glowstone', 2880)) + .circuit(9) + .blastFurnaceTemp(1064) + .duration(12000) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.implosion_compressor('tfg:glowstone_block_dynamite') + .itemInputs('5x #forge:dusts/glowstone', '2x gtceu:dynamite') + .itemOutputs('1x minecraft:glowstone') + .chancedOutput('#forge:dusts/ash', 2500, 0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.implosion_compressor('tfg:glowstone_block_tnt') + .itemInputs('5x #forge:dusts/glowstone', '4x minecraft:tnt') + .itemOutputs('1x minecraft:glowstone') + .chancedOutput('#forge:dusts/ash', 2500, 0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.implosion_compressor('tfg:glowstone_block_industrial_tnt') + .itemInputs('5x #forge:dusts/glowstone', '1x gtceu:industrial_tnt') + .itemOutputs('1x minecraft:glowstone') + .chancedOutput('#forge:dusts/ash', 2500, 0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + // New Alloys + + event.recipes.gtceu.mixer('tfg:ostrum_iodide') + .itemInputs('1x #forge:dusts/iodine', '2x #forge:dusts/ostrum') + .itemOutputs('3x #forge:dusts/ostrum_iodide') + .duration(20 * 12) + .circuit(1) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.mixer('tfg:tungsten_bismuth_oxide_composite') + .itemInputs('2x #forge:dusts/bismuth', 'gtceu:tungsten_dust') + .inputFluids(Fluid.of('gtceu:oxygen', 3000)) + .itemOutputs('3x tfg:tungsten_bismuth_oxide_composite_dust') + .duration(20 * 12) + .EUt(GTValues.VA[GTValues.EV]) +} diff --git a/kubejs/server_scripts/tfg/ores_and_materials/recipes.bromine.js b/kubejs/server_scripts/tfg/ores_and_materials/recipes.bromine.js new file mode 100644 index 000000000..76f55f6ab --- /dev/null +++ b/kubejs/server_scripts/tfg/ores_and_materials/recipes.bromine.js @@ -0,0 +1,126 @@ +"use strict"; + +function registerTFGBromineRecipes(event) { + + /* + + event.recipes.gtceu.evaporation_tower('evaporation_brine') + .inputFluids(Fluid.of('tfc:salt_water', 20000)) + .outputFluids(Fluid.of('gtceu:raw_brine', 1000)) + .duration(20*50) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.evaporation_tower('evaporation_brine_mars') + .inputFluids(Fluid.of('tfg:semiheavy_ammoniacal_water', 20000)) + .outputFluids(Fluid.of('gtceu:raw_brine', 1000)) + .duration(20*50) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.fluid_heater('heat_brine') + .inputFluids(Fluid.of("gtceu:raw_brine", 1000)) + .outputFluids(Fluid.of("gtceu:hot_brine", 1000)) + .duration(20*600) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.heat_exchanger('heat_brine_nuclear') + .inputFluids(Fluid.of("gtceu:raw_brine", 1000)) + .inputFluids(Fluid.of("gtceu:irradiated_steam", 1000)) + .outputFluids(Fluid.of("gtceu:hot_brine", 1000)) + .outputFluids(Fluid.of("gtceu:dense_steam", 1000)) + .duration(20*100) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('debrominated_brine_raw_brine_mixing') + .inputFluids(Fluid.of("gtceu:raw_brine", 1000)) + .inputFluids(Fluid.of('gtceu:hot_debrominated_brine', 1000)) + .outputFluids(Fluid.of('gtceu:hot_brine', 2000)) + .outputFluids(Fluid.of('gtceu:debrominated_brine', 1000)) + .duration(20*10) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('brine_acidification') + .inputFluids(Fluid.of("gtceu:hot_brine", 2000)) + .inputFluids(Fluid.of('gtceu:hydrochloric_acid', 1000)) + .outputFluids(Fluid.of('gtceu:hot_alkaline_debrominated_brine', 2000)) + .outputFluids(Fluid.of('gtceu:hydrogen_iodide', 1000)) + .duration(20*5) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('aciditic_bromine_exhaust_heating') + .inputFluids(Fluid.of("gtceu:hot_brine", 1000)) + .inputFluids(Fluid.of('gtceu:acidic_bromine_exhaust', 1000)) + .outputFluids(Fluid.of('gtceu:hot_chlorinated_brominated_brine', 1000)) + .outputFluids(Fluid.of('gtceu:steam', 3000)) + .duration(20*5) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('brine_chloroination') + .inputFluids(Fluid.of("gtceu:hot_brine", 1000)) + .inputFluids(Fluid.of('gtceu:chlorine', 1000)) + .outputFluids(Fluid.of('gtceu:hot_chlorinated_brominated_brine', 1000)) + .duration(20*5) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('brine_neutralization') + .inputFluids(Fluid.of("gtceu:hot_alkaline_debrominated_brine", 3000)) + .itemInputs('gtceu:potassium_dust') + .outputFluids(Fluid.of('gtceu:hot_debrominated_brine', 2000)) + .itemOutputs(Item.of('2x gtceu:rock_salt_dust')) + .duration(20*5) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.centrifuge('debrominated_brine_decomposition') + .inputFluids(Fluid.of('gtceu:debrominated_brine', 2000)) + .outputFluids(Fluid.of('tfc:salt_water'), 1000) + .duration(20*3) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.chemical_reactor('brine_filtration') + .inputFluids(Fluid.of('gtceu:hot_chlorinated_brominated_brine', 1000)) + .inputFluids(Fluid.of('gtceu:chlorine', 1000)) + .inputFluids(Fluid.of('gtceu:steam', 1000)) + .outputFluids(Fluid.of('gtceu:hot_alkaline_debrominated_brine', 1000)) + .outputFluids(Fluid.of('gtceu:brominated_chlorine_vapor', 2000)) + .duration(20*15) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('brominated_chlorine_vapor_condensation') + .inputFluids(Fluid.of('gtceu:brominated_chlorine_vapor', 1000)) + .inputFluids(Fluid.of('minecraft:water', 1000)) + .outputFluids(Fluid.of('gtceu:acidic_bromine_solution', 1000)) + .outputFluids(Fluid.of('minecraft:water', 2000)) + .duration(20*15) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('bromine_vapor_concentration') + .inputFluids(Fluid.of('gtceu:acidic_bromine_solution', 1000)) + .inputFluids(Fluid.of('gtceu:steam', 1000)) + .outputFluids(Fluid.of('gtceu:concentrated_bromine_solution', 1000)) + .outputFluids(Fluid.of('gtceu:acidic_bromine_exhaust', 1000)) + .duration(20*5) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.distillery('bromine_distillation_to_chlorine') + .inputFluids(Fluid.of('gtceu:concentrated_bromine_solution', 100)) + .outputFluids(Fluid.of('gtceu:chlorine', 50)) + .duration(20*5) + .circuit(1) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.distillery('bromine_distillation_to_bromine') + .inputFluids(Fluid.of('gtceu:concentrated_bromine_solution', 40)) + .outputFluids(Fluid.of('gtceu:bromine', 40)) + .duration(20*2) + .circuit(2) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.distillation_tower('bromine_distillation') + .inputFluids(Fluid.of('gtceu:concentrated_bromine_solution', 1000)) + .outputFluids(Fluid.of('gtceu:chlorine', 500)) + .outputFluids(Fluid.of('gtceu:bromine', 1000)) + .duration(20*25) + .EUt(GTValues.VA[GTValues.HV]) + + */ + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/ores_and_materials/recipes.quartzes.js b/kubejs/server_scripts/tfg/ores_and_materials/recipes.quartzes.js new file mode 100644 index 000000000..e5474b941 --- /dev/null +++ b/kubejs/server_scripts/tfg/ores_and_materials/recipes.quartzes.js @@ -0,0 +1,139 @@ +"use strict"; + +function registerTFGQuartzRecipes(event) { + + //#region Rose Quartz fabrication + decomposition + event.remove({ id: 'gtceu:autoclave/autoclave_dust_rose_quartz_water' }) + event.remove({ id: 'gtceu:autoclave/autoclave_dust_rose_quartz_distilled' }) + + generateMixerRecipe(event, ['gtceu:nether_quartz_dust', '8x minecraft:redstone'], [], '9x #forge:dusts/rose_quartz', 2, [], 180, 60, 64, 'rose_quartz_dust_mixing') + generateMixerRecipe(event, ['gtceu:tiny_nether_quartz_dust', '8x gtceu:tiny_redstone_dust'], [], '#forge:dusts/rose_quartz', 2, [], 20, 60, 64, 'tiny_rose_quartz_dust_mixing') + + event.recipes.gtceu.autoclave("autoclave_dust_rose_quartz_ice") + .itemInputs('#forge:dusts/rose_quartz') + .inputFluids(Fluid.of("gtceu:ice", 144)) + .itemOutputs("#forge:gems/rose_quartz") + .duration(2000) + .EUt(120) + + event.recipes.gtceu.electrolyzer('electrolyze_rose_quartz_dust') + .itemInputs('9x #forge:dusts/rose_quartz') + .itemOutputs('1x #forge:dusts/nether_quartz', '8x minecraft:redstone') + .duration(7 * 20) + .EUt(60) + //#endregion + + //#region Glass + + event.recipes.gtceu.arc_furnace('glass_from_sand') + .itemInputs('#forge:sand') + .itemOutputs('2x minecraft:glass') + .duration(20) + .EUt(30) + + const TFC_BATCH_TO_BOTTLE_ASSEMBLING_RECIPE_COMPONENTS = /** @type {const} */ ([ + { input: "tfc:silica_glass_batch", output: "tfc:silica_glass_bottle", name: "silica_glass_bottle" }, + { input: "tfc:hematitic_glass_batch", output: "tfc:hematitic_glass_bottle", name: "hematitic_glass_bottle" }, + { input: "tfc:olivine_glass_batch", output: "tfc:olivine_glass_bottle", name: "olivine_glass_bottle" }, + { input: "tfc:volcanic_glass_batch", output: "tfc:volcanic_glass_bottle", name: "volcanic_glass_bottle" } + ]); + + TFC_BATCH_TO_BOTTLE_ASSEMBLING_RECIPE_COMPONENTS.forEach(element => { + event.recipes.gtceu.alloy_smelter(`tfg:tfc/${element.name}`) + .itemInputs(element.input) + .notConsumable('gtceu:bottle_casting_mold') + .itemOutputs(element.output) + .duration(100) + .EUt(2) + .category(GTRecipeCategories.INGOT_MOLDING) + }) + + // Lamp Glass + event.recipes.gtceu.alloy_smelter(`tfg:tfc/lamp_glass`) + .itemInputs('#tfc:glass_batches') + .notConsumable('#tfg:unfinished_lamps') + .itemOutputs('tfc:lamp_glass') + .duration(100) + .EUt(2) + + event.recipes.gtceu.alloy_smelter(`tfg:tfc/lamp_glass_from_dust`) + .itemInputs('#forge:dusts/glass') + .notConsumable('#tfg:unfinished_lamps') + .itemOutputs('tfc:lamp_glass') + .duration(100) + .EUt(2) + + // Empty Jar + event.recipes.gtceu.alloy_smelter('tfc:jar_alloying') + .itemInputs('#tfc:glass_batches_tier_2') + .notConsumable('gtceu:ball_casting_mold') + .itemOutputs('tfc:empty_jar') + .duration(100) + .EUt(2) + .category(GTRecipeCategories.INGOT_MOLDING) + + event.recipes.gtceu.fluid_solidifier('tfc:jar_solidification') + .inputFluids(Fluid.of('gtceu:glass', 144)) + .notConsumable('gtceu:cylinder_casting_mold') + .itemOutputs('tfc:empty_jar') + .duration(100) + .EUt(2) + + event.recipes.gtceu.extractor('tfc:jar_extraction') + .itemInputs('#tfc:jars') + .outputFluids(Fluid.of('gtceu:glass', 144)) + .duration(50) + .EUt(2) + + event.recipes.gtceu.extractor('tfc:glass_batch_extraction') + .itemInputs('#tfc:glass_batches') + .outputFluids(Fluid.of('gtceu:glass', 144)) + .duration(50) + .EUt(2) + + event.recipes.gtceu.lathe('tfc:lens') + .itemInputs('#forge:glass') + .itemOutputs('tfc:lens') + .duration(100) + .EUt(16) + + // Add all glass colors to macerator/hammer + removeMaceratorRecipe(event, 'macerate_glass'); + event.recipes.gtceu.macerator("gtceu:macerator/macerate_glass") + .itemInputs( + "#forge:glass" + ) + .itemOutputs("gtceu:glass_dust") + .duration(20) + .EUt(2); + + removeMaceratorRecipe(event, 'macerate_glass_pane'); + event.recipes.gtceu.macerator("gtceu:macerator/macerate_glass_pane") + .itemInputs( + "#forge:glass_panes" + ) + .itemOutputs("3x gtceu:tiny_glass_dust") + .duration(6) + .EUt(2) + + event.replaceInput({ id: "gtceu:shaped/glass_dust_hammer" }, + "minecraft:glass", + "#forge:glass" + ); + + + event.recipes.gtceu.alloy_smelter('glass_bottle') + .itemInputs('#forge:dusts/glass') + .itemOutputs('tfc:silica_glass_bottle') + .notConsumable('gtceu:bottle_casting_mold') + .EUt(2) + .duration(20 * 5) + .category(GTRecipeCategories.INGOT_MOLDING) + + + // Glass Tube + event.recipes.tfc.glassworking('gtceu:glass_tube', '#tfc:glass_batches_tier_3', ['blow', 'stretch', 'stretch']) + .id('tfg:gtceu/glassworking/glass_tube') + + //#endregion +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/ores_and_materials/recipes.tungsten.js b/kubejs/server_scripts/tfg/ores_and_materials/recipes.tungsten.js new file mode 100644 index 000000000..10511c843 --- /dev/null +++ b/kubejs/server_scripts/tfg/ores_and_materials/recipes.tungsten.js @@ -0,0 +1,86 @@ +"use strict"; + +function registerTFGTungstenRecipes(event) { + + event.remove({ id: 'gtceu:chemical_bath/tungstic_acid_from_scheelite' }) + event.remove({ id: 'gtceu:chemical_bath/tungstic_acid_from_tungstate' }) + event.remove({ id: 'gtceu:electrolyzer/tungstic_acid_electrolysis' }) + + // Transform Tungstate and Scheelite + + event.recipes.gtceu.large_chemical_reactor('tfg:scheelite_to_sodium_tungstate') + .itemInputs(Item.of('gtceu:scheelite_dust', 6)) + .itemInputs(Item.of('gtceu:soda_ash_dust', 6)) + .itemOutputs(Item.of('tfg:sodium_tungstate_dust', 7)) + .itemOutputs(Item.of('gtceu:calcite_dust', 5)) + .duration(20*12) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.large_chemical_reactor('tfg:tungstate_to_sodium_tungstate') + .itemInputs(Item.of('gtceu:tungstate_dust', 7)) + .itemInputs(Item.of('gtceu:soda_ash_dust', 6)) + .itemOutputs(Item.of('tfg:sodium_tungstate_dust', 7)) + .itemOutputs(Item.of('gtceu:lithium_dust', 2)) + .itemOutputs(Item.of('gtceu:carbon_dust', 1)) + .outputFluids(Fluid.of('gtceu:oxygen', 3000)) + .duration(20*12) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_bath('tfg:tungstate_to_tungsten_acid') + .inputFluids(Fluid.of('gtceu:hydrochloric_acid', 2000)) + .itemInputs(Item.of('tfg:sodium_tungstate_dust', 7)) + .itemOutputs(Item.of('gtceu:salt_dust', 4)) + .itemOutputs(Item.of('gtceu:tungstic_acid_dust', 7)) + .duration(20*24) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_bath('tfg:tungsten_acid_to_ammonium_tungstate') + .inputFluids(Fluid.of('gtceu:ammonia', 10000)) + .itemInputs(Item.of('gtceu:tungstic_acid_dust', 7)) + .itemOutputs(Item.of('tfg:ammonium_tungstate_dust', 1)) + .duration(20*16) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.evaporation_tower('tfg:ammonium_tungstate_to_apt_h') + .itemInputs(Item.of('tfg:ammonium_tungstate_dust', 1)) + .itemOutputs(Item.of('tfg:apt_gem', 1)) + .outputFluids(Fluid.of('gtceu:hydrogen', 500)) + .outputFluids(Fluid.of('gtceu:hydrogen', 500)) + .outputFluids(Fluid.of('gtceu:hydrogen', 500)) + .outputFluids(Fluid.of('gtceu:hydrogen', 500)) + .outputFluids(Fluid.of('gtceu:hydrogen', 500)) + .outputFluids(Fluid.of('gtceu:hydrogen', 500)) + .duration(20*48) + .EUt(GTValues.VHA[GTValues.HV]) + + event.recipes.gtceu.distillery('tfg:ammonium_tungstate_to_apt') + .itemInputs(Item.of('tfg:ammonium_tungstate_dust', 1)) + .itemOutputs(Item.of('tfg:apt_gem', 1)) + .outputFluids(Fluid.of('gtceu:hydrogen', 500)) + .duration(20*48) + .EUt(GTValues.VHA[GTValues.HV]) + + event.recipes.gtceu.pyrolyse_oven('tfg:apt') + .itemInputs(Item.of('tfg:apt_gem', 1)) + .itemOutputs(Item.of('tfg:tungsten_oxide_dust', 1)) + .outputFluids(Fluid.of('gtceu:ammonia', 10000)) + .duration(20*36) + .EUt(GTValues.VA[GTValues.EV]) + .circuit(1) + + event.recipes.gtceu.pyrolyse_oven('tfg:apt_nitrogen') + .itemInputs(Item.of('tfg:apt_gem', 1)) + .inputFluids(Fluid.of('gtceu:nitrogen', 1000)) + .itemOutputs(Item.of('tfg:tungsten_oxide_dust', 1)) + .outputFluids(Fluid.of('gtceu:ammonia', 10000)) + .duration(20*18) + .EUt(GTValues.VA[GTValues.EV]) + .circuit(2) + + event.recipes.gtceu.arc_furnace('tfg:tungsten_apt') + .itemInputs(Item.of('tfg:tungsten_oxide_dust', 1)) + .inputFluids(Fluid.of('gtceu:hydrogen', 3000)) + .itemOutputs(Item.of('gtceu:tungsten_dust', 1)) + .duration(20*2.8) + .EUt(GTValues.VA[GTValues.EV]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/ores_and_materials/recipes.zirconium.js b/kubejs/server_scripts/tfg/ores_and_materials/recipes.zirconium.js new file mode 100644 index 000000000..50666ac21 --- /dev/null +++ b/kubejs/server_scripts/tfg/ores_and_materials/recipes.zirconium.js @@ -0,0 +1,62 @@ +// priority: 0 + +function registerTFGZirconiumRecipes(event) { + + // #region Zirconium + + event.recipes.gtceu.chemical_reactor('tfg:silicon_tetrachloride') + .itemInputs('#forge:dusts/silicon') + .inputFluids('gtceu:chlorine 4000') + .outputFluids('tfg:silicon_tetrachloride 1000') + .duration(20 * 20) + .circuit(1) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.chemical_reactor('tfg:silicon_tetrachloride_decomp') + .inputFluids('tfg:silicon_tetrachloride 1000', 'minecraft:water 2000') + .itemOutputs('#forge:dusts/silicon') + .outputFluids('gtceu:hydrochloric_acid 4000', 'gtceu:oxygen 2000') + .duration(5 * 20) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.chemical_reactor('tfg:zirconium_tetrachloride') + .itemInputs('4x #forge:dusts/carbon', '6x #forge:dusts/zircon') + .inputFluids('gtceu:chlorine 8000') + .outputFluids('gtceu:carbon_monoxide 4000', 'tfg:silicon_tetrachloride 1000') + .itemOutputs('5x #forge:dusts/zirconium_tetrachloride') + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.electric_blast_furnace('tfg:zirconium') + .itemInputs('2x #forge:dusts/magnesium', '5x #forge:dusts/zirconium_tetrachloride') + .itemOutputs('#forge:hot_ingots/zirconium', '6x #forge:dusts/magnesium_chloride') + .duration(55 * 20) + .blastFurnaceTemp(4241) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_reactor('tfg:zirconium_bromide') + .itemInputs('#forge:dusts/zirconium', '2x #forge:dusts/carbon') + .inputFluids('gtceu:bromine 4000', 'gtceu:oxygen 2000') + .itemOutputs('5x #forge:dusts/zirconium_bromide') + .outputFluids('gtceu:carbon_monoxide 2000') + .duration(10 * 20) + .EUt(GTValues.VA[GTValues.IV]) + + event.recipes.gtceu.chemical_reactor('tfg:zirconium_diboride') + .itemInputs('10x #forge:dusts/zirconium_bromide', '5x #forge:dusts/boron_carbide') + .notConsumable('#forge:dusts/carbon') + .itemOutputs('6x #forge:dusts/zirconium_diboride', '#forge:dusts/carbon') + .outputFluids('gtceu:bromine 8000') + .duration(10 * 20) + .EUt(GTValues.VA[GTValues.IV]) + + event.recipes.gtceu.chemical_reactor('tfg:boron_carbide') + .itemInputs('4x #forge:dusts/boron', '7x #forge:dusts/carbon') + .inputFluids('gtceu:oxygen 6000') + .itemOutputs('5x #forge:dusts/boron_carbide') + .outputFluids('gtceu:carbon_monoxide 6000') + .duration(10 * 20) + .EUt(GTValues.VA[GTValues.HV]) + + // #endregion +} diff --git a/kubejs/server_scripts/tfg/powergen/nuclear/recipes.components.js b/kubejs/server_scripts/tfg/powergen/nuclear/recipes.components.js new file mode 100644 index 000000000..46cf556da --- /dev/null +++ b/kubejs/server_scripts/tfg/powergen/nuclear/recipes.components.js @@ -0,0 +1,41 @@ +// priority: 0 +"use strict"; + +function registerTFGNuclearComponentsRecipes(event) { + + let component = function (type, block, value) { + event.custom({ + type: 'deafission:component_fr', + componentType: type, + block: block, + data: { + value: value + } + }); + }; + + let componentThermal = function(type, block, temp, cap) { + event.custom({ + type: 'deafission:component_hb', + componentType: type, + block: block, + data: { + temperature: temp, + capacity: cap + } + }); + }; + + // Examples: https://bitbucket.org/Vazde/minecraft-fission/src/master/mod/settings-run/kubejs/server_scripts/recipes.js + + component("HEAT", "minecraft:blue_ice", 0.5) + component("HEAT", "tfg:glacian_wool_frame", 2); + component("HEAT", "tfg:aes_insulation_frame", 1); + component("HEAT", "tfg:moderate_core_frame", 10); + component("HEAT", "tfg:impure_moderate_core_frame", 5); +/* + componentThermal('THERMAL', 'minecraft:sand', 1000, 25); + componentThermal('THERMAL', 'tfg:impure_moderate_core_frame', 2000, 50); + componentThermal('THERMAL', 'minecraft:bedrock', 9001, 1e5); +*/ +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.nuclear.js b/kubejs/server_scripts/tfg/powergen/nuclear/recipes.nuclear.js similarity index 70% rename from kubejs/server_scripts/tfg/recipes.nuclear.js rename to kubejs/server_scripts/tfg/powergen/nuclear/recipes.nuclear.js index 492920b91..e548d5e55 100644 --- a/kubejs/server_scripts/tfg/recipes.nuclear.js +++ b/kubejs/server_scripts/tfg/powergen/nuclear/recipes.nuclear.js @@ -56,27 +56,26 @@ function registerTFGNuclearRecipes(event) { .duration(20*600) .EUt(GTValues.VA[GTValues.EV]) .dimension('ad_astra:mars') - - /* REMOVE FOR VENUS COMMENTED OUT +/* event.recipes.gtceu.nuclear_fuel_factory('tfg:tbu_232_rod') .inputFluids(Fluid.of('gtceu:nuclear_waste', 32000)) - .itemInputs('#forge:ingots/thorium_232', 'tfg:empty_rod') - .itemOutputs('tfg:tbu-232_rod') + .itemInputs('2x #forge:rods/thorium_232', 'tfg:empty_rod') + .itemOutputs('tfg:tbu_232_rod') .duration(20*300) .EUt(GTValues.V[GTValues.IV]) - */ - event.recipes.gtceu.lathe('tfg:empty_rod') - .itemInputs('gtceu:cobalt_large_restrictive_item_pipe') +*/ + event.recipes.gtceu.assembler('tfg:empty_rod') + .itemInputs('3x gtceu:cobalt_large_restrictive_item_pipe', '3x gtceu:lead_huge_fluid_pipe') .itemOutputs('tfg:empty_rod') .duration(20*15) .EUt(GTValues.VA[GTValues.HV]) + .addMaterialInfo(true) //#endregion //#region Processing Fuels event.recipes.gtceu.centrifuge('thorium_isotope') - //.inputFluids(Fluid.of('minecraft:water', 50)) .itemInputs('9x #forge:dusts/thorium') .chancedOutput('#forge:dusts/thorium_230', 9000, 0) .itemOutputs('8x #forge:dusts/thorium_232') @@ -85,28 +84,6 @@ function registerTFGNuclearRecipes(event) { //#endregion - //#region Mars Water - - event.recipes.gtceu.centrifuge('mars_heavy_water') - .inputFluids(Fluid.of('tfg:heavy_ammoniacal_water', 1000)) - .outputFluids(Fluid.of('tfg:heavy_water', 500)) - .itemOutputs('#forge:dusts/ammonium_chloride', '2x #forge:small_dusts/ammonium_chloride') - .duration(20*9) - .EUt(GTValues.VHA[GTValues.ULV]) - - event.recipes.gtceu.centrifuge('mars_semiheavy_water') - .inputFluids(Fluid.of('tfg:semiheavy_ammoniacal_water', 1000)) - .outputFluids(Fluid.of('tfg:semiheavy_water', 500)) - .itemOutputs('2x #forge:tiny_dusts/ammonium_chloride') - .duration(20*9) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.distillery('mars_semiheavy_water') - .inputFluids(Fluid.of('tfg:semiheavy_ammoniacal_water', 1000)) - .outputFluids(Fluid.of('minecraft:water', 250)) - .duration(20*5) - .EUt(GTValues.VA[GTValues.MV]) - // Martian Sludge event.recipes.gtceu.chemical_bath('dirty_hexafluorosilicic_acid') @@ -163,7 +140,6 @@ function registerTFGNuclearRecipes(event) { .outputFluids(Fluid.of('gtceu:dioxygen_difluoride', 1000)) .duration(20*16) .EUt(GTValues.VA[GTValues.IV]) - .dimension('ad_astra:mars') event.recipes.gtceu.large_chemical_reactor('plutonium_dust') .itemInputs('#forge:dusts/refined_nuclear_residue') @@ -181,20 +157,32 @@ function registerTFGNuclearRecipes(event) { event.recipes.gtceu.heat_exchanger('uranium_steam') .perTick(true) .inputFluids(Fluid.of('minecraft:water', 10)) - .inputFluids(Fluid.of('gtceu:radioactive_steam', 10)) + .inputFluids(Fluid.of('gtceu:radioactive_steam', 1600)) .inputFluids(Fluid.of('gtceu:ammonium_formate', 10)) - .outputFluids(Fluid.of('gtceu:dense_steam', 10)) + .outputFluids(Fluid.of('gtceu:dense_steam', 1600)) .outputFluids(Fluid.of('gtceu:formamide', 10)) .perTick(false) .duration(20*5) .EUt(1) + .circuit(1) + .dimension('ad_astra:mars') + + event.recipes.gtceu.heat_exchanger('uranium_steam_power_only') + .perTick(true) + .inputFluids(Fluid.of('minecraft:water', 10)) + .inputFluids(Fluid.of('gtceu:radioactive_steam', 1600)) + .outputFluids(Fluid.of('gtceu:dense_steam', 1600)) + .perTick(false) + .duration(20*5) + .EUt(1) + .circuit(2) .dimension('ad_astra:mars') event.recipes.gtceu.heat_exchanger('plutonium_steam') .perTick(true) .inputFluids(Fluid.of('minecraft:water', 10)) - .inputFluids(Fluid.of('gtceu:irradiated_steam', 10)) - .outputFluids(Fluid.of('gtceu:dense_steam', 10)) + .inputFluids(Fluid.of('gtceu:irradiated_steam', 1600)) + .outputFluids(Fluid.of('gtceu:dense_steam', 1600)) .perTick(false) .duration(20*5) .EUt(1) @@ -215,15 +203,6 @@ function registerTFGNuclearRecipes(event) { //#region Fission Reactor - // Recipe for Thorium Reactor Just keeping it in case we got mod issues -/* event.recipes.gtceu.fission_reactor('thorium_uranium_waste') - .itemInputs('#forge:bolts/thorium_rod') - .inputFluids(Fluid.of('minecraft:water', 100)) - .outputFluids(Fluid.of('gtceu:dense_steam', 100)) - .outputFluids(Fluid.of('gtceu:uranium_waste', 20)) - .duration(20*50) - .EUt(32)*/ - // Thorium Fission event.recipes.deafission.fission_reactor_fuel('tfg:thorium') @@ -238,21 +217,12 @@ function registerTFGNuclearRecipes(event) { .notConsumable(Item.of('tfg:thorium_rod')) .perTick(true) .inputFluids(Fluid.of('tfg:heavy_water', 2)) - .outputFluids(Fluid.of('gtceu:dense_steam', 2)) + .outputFluids(Fluid.of('gtceu:dense_steam', 480)) .perTick(false) .dimension('ad_astra:mars') .addData("coolant_heat_per_tick", 1) .duration(1); - // Recipe for Uranium Reactor Just keeping it in case we got mod issues -/* event.recipes.gtceu.fission_reactor('uranium_radioactive') - .itemInputs('#forge:bolts/uranium_rod') - .inputFluids(Fluid.of('tfg:heavy_water', 75)) - .outputFluids(Fluid.of('gtceu:radioactive_steam', 75)) - .outputFluids(Fluid.of('gtceu:radioactive_waste', 50)) - .duration(20*100) - .EUt(32)*/ - // Uranium Fission event.recipes.deafission.fission_reactor_fuel('tfg:uranium') @@ -266,21 +236,12 @@ function registerTFGNuclearRecipes(event) { .notConsumable(Item.of('tfg:uranium_rod')) .perTick(true) .inputFluids(Fluid.of('tfg:heavy_water', 20)) - .outputFluids(Fluid.of('gtceu:radioactive_steam', 10)) + .outputFluids(Fluid.of('gtceu:radioactive_steam', 1600)) .perTick(false) .addData("coolant_heat_per_tick", 1) .duration(1) .dimension('ad_astra:mars') - // Recipe for Plutonium Reactor Just keeping it in case we got mod issues -/* event.recipes.gtceu.fission_reactor('plutonium_irradiated') - .itemInputs('#forge:bolts/plutonium_rod') - .inputFluids(Fluid.of('tfg:heavy_water', 2000)) - .outputFluids(Fluid.of('gtceu:irradiated_steam', 2000)) - .outputFluids(Fluid.of('gtceu:tritiated_water', 50)) - .duration(20*100) - .EUt(32)*/ - // Plutonium Fission event.recipes.deafission.fission_reactor_fuel('tfg:plutonium') @@ -294,21 +255,29 @@ function registerTFGNuclearRecipes(event) { .notConsumable(Item.of('tfg:plutonium_rod')) .perTick(true) .inputFluids(Fluid.of('tfg:heavy_water', 25)) - .outputFluids(Fluid.of('gtceu:irradiated_steam', 40)) + .outputFluids(Fluid.of('gtceu:irradiated_steam', 6400)) .perTick(false) .addData("coolant_heat_per_tick", 1) .duration(1) .dimension('ad_astra:mars') - // Fission Reactor for Energy Just keeping it in case we got mod issues + // TBU Fission /* - event.recipes.gtceu.fission_reactor('tbu_reactor') - .itemInputs('tfg:tbu_232_rod') - .inputFluids(Fluid.of('gtceu:flibe', 1000)) - .outputFluids(Fluid.of('gtceu:hot_flibe', 1000)) - .outputFluids(Fluid.of('gtceu:nuclear_waste', 500)) - .duration(20*100) - .EUt(32) + event.recipes.deafission.fission_reactor_fuel('kubejs:fuelcell_custom_x1') + .itemInputs('tfg:tbu_232_rod') + .itemOutputs('minecraft:dirt') + // Mandatory by GT; no real impact. Use this as a convention: + // durability / const / heatValue + .duration(10000 / 0.4 / 2) + .dimension('ad_astra:mars'); + + event.recipes.deafission.fission_reactor_coolant('tfg:tbu_coolant') + .itemInputs(Ingredient.of([ + 'tfg:tbu_232_rod'])) + .inputFluids(Fluid.of('tfg:heavy_water', 100)) + .outputFluids(Fluid.of('gtceu:dense_steam', 100)) + .addData("coolant_heat_per_tick", 12.34) + .duration(1000); */ //#endregion @@ -346,7 +315,7 @@ function registerTFGNuclearRecipes(event) { .EUt(GTValues.VA[GTValues.EV]) .duration(20*9) - // Graphite Moderator Line + //#region Graphite Moderator Line const $ChanceLogic = Java.loadClass('com.gregtechceu.gtceu.api.recipe.chance.logic.ChanceLogic') @@ -454,13 +423,14 @@ function registerTFGNuclearRecipes(event) { //#region Power Generation event.recipes.gtceu.nuclear_turbine('dense_steam') - .inputFluids(Fluid.of('gtceu:dense_steam', 1)) + .inputFluids(Fluid.of('gtceu:dense_steam', 160)) .EUt(-(32)) .duration(20*1.5) //#endregion //#region Cooling Tower + event.recipes.gtceu.assembler('tfg:ostrum_carbon_casing') .itemInputs('2x #forge:plates/ostrum', '2x #forge:plates/titanium_carbide', '#forge:dense_plates/hsla_steel', '#forge:frames/black_steel') .itemOutputs('2x tfg:casings/machine_casing_ostrum_carbon') @@ -468,6 +438,7 @@ function registerTFGNuclearRecipes(event) { .duration(20 * (2.5)) .EUt(GTValues.VH[GTValues.LV]) .addMaterialInfo(true) + /* event.recipes.gtceu.mixer('tfg:thermally_conductive_fluid') .itemInputs('7x #forge:dusts/gallium', '2x #forge:dusts/tin', '#forge:dusts/zinc') @@ -483,7 +454,9 @@ function registerTFGNuclearRecipes(event) { .circuit(6) .EUt(GTValues.VA[GTValues.IV] * 2) .duration(20*4) - + */ + + /* event.shaped('tfg:cooling_tower', [ 'ABA', 'CDC', @@ -495,9 +468,16 @@ function registerTFGNuclearRecipes(event) { D: 'gtceu:iv_machine_hull', E: 'gtceu:iv_fluid_regulator' }).id('tfg:shaped/cooling_tower') - - //#endregion + */ + //#endregion + /* + event.recipes.deafission.hb_import('tfg:dense_steam') + .inputFluids(Fluid.of('gtceu:dense_steam', 100)) + .outputFluids(Fluid.of('minecraft:water', 10)) + .blastFurnaceTemp(4000) + .addData("hb_energy", 100) + */ //#region FLiBe Line - SCRAP FROM MARS TO VENUS /* @@ -587,127 +567,87 @@ function registerTFGNuclearRecipes(event) { //#endregion - //#region Bromine Line - SCRAP FROM MARS TO VENUS + //#region Epoxidized Isosorbide Linolenate - /* - - event.recipes.gtceu.evaporation_tower('evaporation_brine') - .inputFluids(Fluid.of('tfc:salt_water', 20000)) - .outputFluids(Fluid.of('gtceu:raw_brine', 1000)) - .duration(20*50) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.evaporation_tower('evaporation_brine_mars') - .inputFluids(Fluid.of('tfg:semiheavy_ammoniacal_water', 20000)) - .outputFluids(Fluid.of('gtceu:raw_brine', 1000)) - .duration(20*50) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.fluid_heater('heat_brine') - .inputFluids(Fluid.of("gtceu:raw_brine", 1000)) - .outputFluids(Fluid.of("gtceu:hot_brine", 1000)) - .duration(20*600) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.heat_exchanger('heat_brine_nuclear') - .inputFluids(Fluid.of("gtceu:raw_brine", 1000)) - .inputFluids(Fluid.of("gtceu:irradiated_steam", 1000)) - .outputFluids(Fluid.of("gtceu:hot_brine", 1000)) - .outputFluids(Fluid.of("gtceu:dense_steam", 1000)) - .duration(20*100) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.chemical_reactor('debrominated_brine_raw_brine_mixing') - .inputFluids(Fluid.of("gtceu:raw_brine", 1000)) - .inputFluids(Fluid.of('gtceu:hot_debrominated_brine', 1000)) - .outputFluids(Fluid.of('gtceu:hot_brine', 2000)) - .outputFluids(Fluid.of('gtceu:debrominated_brine', 1000)) - .duration(20*10) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.chemical_reactor('brine_acidification') - .inputFluids(Fluid.of("gtceu:hot_brine", 2000)) - .inputFluids(Fluid.of('gtceu:hydrochloric_acid', 1000)) - .outputFluids(Fluid.of('gtceu:hot_alkaline_debrominated_brine', 2000)) - .outputFluids(Fluid.of('gtceu:hydrogen_iodide', 1000)) - .duration(20*5) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.chemical_reactor('aciditic_bromine_exhaust_heating') - .inputFluids(Fluid.of("gtceu:hot_brine", 1000)) - .inputFluids(Fluid.of('gtceu:acidic_bromine_exhaust', 1000)) - .outputFluids(Fluid.of('gtceu:hot_chlorinated_brominated_brine', 1000)) - .outputFluids(Fluid.of('gtceu:steam', 3000)) - .duration(20*5) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.chemical_reactor('brine_chloroination') - .inputFluids(Fluid.of("gtceu:hot_brine", 1000)) - .inputFluids(Fluid.of('gtceu:chlorine', 1000)) - .outputFluids(Fluid.of('gtceu:hot_chlorinated_brominated_brine', 1000)) - .duration(20*5) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.chemical_reactor('brine_neutralization') - .inputFluids(Fluid.of("gtceu:hot_alkaline_debrominated_brine", 3000)) - .itemInputs('gtceu:potassium_dust') - .outputFluids(Fluid.of('gtceu:hot_debrominated_brine', 2000)) - .itemOutputs(Item.of('2x gtceu:rock_salt_dust')) - .duration(20*5) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.centrifuge('debrominated_brine_decomposition') - .inputFluids(Fluid.of('gtceu:debrominated_brine', 2000)) - .outputFluids(Fluid.of('tfc:salt_water'), 1000) - .duration(20*3) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.chemical_reactor('brine_filtration') - .inputFluids(Fluid.of('gtceu:hot_chlorinated_brominated_brine', 1000)) - .inputFluids(Fluid.of('gtceu:chlorine', 1000)) - .inputFluids(Fluid.of('gtceu:steam', 1000)) - .outputFluids(Fluid.of('gtceu:hot_alkaline_debrominated_brine', 1000)) - .outputFluids(Fluid.of('gtceu:brominated_chlorine_vapor', 2000)) - .duration(20*15) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.chemical_reactor('brominated_chlorine_vapor_condensation') - .inputFluids(Fluid.of('gtceu:brominated_chlorine_vapor', 1000)) - .inputFluids(Fluid.of('minecraft:water', 1000)) - .outputFluids(Fluid.of('gtceu:acidic_bromine_solution', 1000)) - .outputFluids(Fluid.of('minecraft:water', 2000)) - .duration(20*15) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.chemical_reactor('bromine_vapor_concentration') - .inputFluids(Fluid.of('gtceu:acidic_bromine_solution', 1000)) - .inputFluids(Fluid.of('gtceu:steam', 1000)) - .outputFluids(Fluid.of('gtceu:concentrated_bromine_solution', 1000)) - .outputFluids(Fluid.of('gtceu:acidic_bromine_exhaust', 1000)) - .duration(20*5) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.distillery('bromine_distillation_to_chlorine') - .inputFluids(Fluid.of('gtceu:concentrated_bromine_solution', 100)) - .outputFluids(Fluid.of('gtceu:chlorine', 50)) - .duration(20*5) - .circuit(1) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.distillery('bromine_distillation_to_bromine') - .inputFluids(Fluid.of('gtceu:concentrated_bromine_solution', 40)) - .outputFluids(Fluid.of('gtceu:bromine', 40)) - .duration(20*2) + event.recipes.gtceu.distillery('tfg:linolenic_from_seed') + .inputFluids(Fluid.of('gtceu:seed_oil', 1000)) + .outputFluids(Fluid.of('tfg:linolenic_acid', 10)) .circuit(2) + .duration(100) + .EUt(GTValues.VA[GTValues.MV]) + event.recipes.gtceu.distillery('tfg:linolenic_from_olive') + .inputFluids(Fluid.of('tfc:olive_oil', 1000)) + .outputFluids(Fluid.of('tfg:linolenic_acid', 20)) + .circuit(2) + .duration(100) + .EUt(GTValues.VA[GTValues.MV]) + event.recipes.gtceu.distillery('tfg:linolenic_from_soybean') + .inputFluids(Fluid.of('firmalife:soybean_oil', 1000)) + .outputFluids(Fluid.of('tfg:linolenic_acid', 50)) + .circuit(2) + .duration(100) .EUt(GTValues.VA[GTValues.MV]) - event.recipes.gtceu.distillation_tower('bromine_distillation') - .inputFluids(Fluid.of('gtceu:concentrated_bromine_solution', 1000)) - .outputFluids(Fluid.of('gtceu:chlorine', 500)) - .outputFluids(Fluid.of('gtceu:bromine', 1000)) - .duration(20*25) - .EUt(GTValues.VA[GTValues.HV]) + //These two might not fit here but eh + event.recipes.gtceu.chemical_reactor('tfg:sucrose_to_monos') + .itemInputs('8x #tfg:sugars') + .inputFluids(Fluid.of('minecraft:water', 8000), Fluid.of('gtceu:sulfuric_acid', 200)) + .circuit(2) + .itemOutputs('24x #forge:dusts/glucose', '24x #forge:dusts/fructose') + .duration(400) + .EUt(GTValues.VA[GTValues.IV]) + event.recipes.gtceu.chemical_reactor('tfg:lactose_to_monos') + .itemInputs('8x #forge:dusts/lactose') + .inputFluids(Fluid.of('minecraft:water', 8000), Fluid.of('gtceu:sulfuric_acid', 200)) + .circuit(2) + .itemOutputs('24x #forge:dusts/glucose', '24x #forge:dusts/galactose') + .duration(400) + .EUt(GTValues.VA[GTValues.IV]) - */ + event.recipes.gtceu.chemical_reactor('tfg:glucose_to_sorbitol') + .itemInputs('12x #forge:dusts/glucose') + .inputFluids(Fluid.of('gtceu:hydrogen', 2000)) + .notConsumable('#forge:dusts/ruthenium') + .circuit(2) + .itemOutputs('13x #forge:dusts/sorbitol') + .duration(100) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_reactor('tfg:sorbitol_to_sorbitan') + .itemInputs('26x #forge:dusts/sorbitol') + .inputFluids(Fluid.of('tfg:dimethyl_carbonate', 1000)) + .notConsumable('#forge:dusts/potassium_hydroxide') + .circuit(3) + .itemOutputs('23x #forge:dusts/14_sorbitan') + .duration(160) + .EUt(GTValues.VA[GTValues.IV]) + event.recipes.gtceu.chemical_reactor('tfg:sorbitan_to_isosorbide') + .itemInputs('23x #forge:dusts/14_sorbitan') + .inputFluids(Fluid.of('tfg:dimethyl_carbonate', 1000)) + .notConsumable('#forge:dusts/potassium_hydroxide') + .circuit(3) + .itemOutputs('20x #forge:dusts/isosorbide') + .duration(160) + .EUt(GTValues.VA[GTValues.IV]) + + event.recipes.gtceu.large_chemical_reactor('tfg:lipid_attach_isosorbide') + .itemInputs('10x #forge:dusts/isosorbide') + .inputFluids(Fluid.of('tfg:linolenic_acid', 1000), Fluid.of('minecraft:water', 2000)) + .notConsumableFluid(Fluid.of('gtceu:toluene', 1000)) + .circuit(4) + .outputFluids(Fluid.of('tfg:isosorbide_ln', 1000)) + .duration(100) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.large_chemical_reactor('tfg:epoxidation_isosorbide_ln') + .inputFluids(Fluid.of('tfg:isosorbide_ln', 1000), Fluid.of('gtceu:hydrogen_peroxide', 3000), Fluid.of('gtceu:sulfuric_acid', 200)) + .notConsumableFluid(Fluid.of('gtceu:acetic_acid', 1000)) + .circuit(4) + .outputFluids(Fluid.of('tfg:epox_isosorbide_ln', 1000)) + .duration(100) + .EUt(GTValues.VA[GTValues.IV]) + + + //#endregion } diff --git a/kubejs/server_scripts/tfg/powergen/nuclear/recipes.smr_additives.js b/kubejs/server_scripts/tfg/powergen/nuclear/recipes.smr_additives.js new file mode 100644 index 000000000..f525b0887 --- /dev/null +++ b/kubejs/server_scripts/tfg/powergen/nuclear/recipes.smr_additives.js @@ -0,0 +1,40 @@ +// priority: 0 + +function registerTFGSMRAdditives(event) { + + event.recipes.gtceu.chemical_reactor('tfg:ozone_synthesis') + .inputFluids(Fluid.of('gtceu:oxygen', 3000)) + .outputFluids(Fluid.of('tfg:ozone', 1000)) + .notConsumable('#tfg:components/uv_leds') + .duration(200) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_reactor('tfg:tin_chloride_combining') + .itemInputs('#forge:dusts/tin') + .inputFluids(Fluid.of('gtceu:chlorine', 2000)) + .itemOutputs('3x #forge:dusts/tin_chloride') + .duration(100) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.chemical_reactor('tfg:cyclohexanone_synthesis') + .inputFluids(Fluid.of('gtceu:phenol', 1000), Fluid.of('gtceu:hydrogen', 4000)) + .outputFluids(Fluid.of('tfg:cyclohexanone', 1000)) + .notConsumable('#forge:dusts/palladium') + .duration(120) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('tfg:cyclohexanone_add_oxime') + .itemInputs('#forge:dusts/tin') + .inputFluids(Fluid.of('tfg:cyclohexanone', 1000), Fluid.of('gtceu:ammonia', 1000), Fluid.of('gtceu:hydrogen_peroxide', 1000)) + .itemOutputs('19x #forge:dusts/cyclohexanone_oxime') + .outputFluids(Fluid.of('minecraft:water', 2000)) + .duration(200) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('tfg:cyclohexanone_peroxidation') + .inputFluids(Fluid.of('tfg:cyclohexanone', 1000), Fluid.of('gtceu:hydrogen_peroxide', 2000)) + .outputFluids(Fluid.of('tfg:cyclohex_diperoxide', 1000)) + .notConsumable('#forge:dusts/tin_chloride') + .duration(120) + .EUt(GTValues.VA[GTValues.IV]) +} diff --git a/kubejs/server_scripts/tfg/powergen/nuclear/tags.nuclear.js b/kubejs/server_scripts/tfg/powergen/nuclear/tags.nuclear.js new file mode 100644 index 000000000..97fe73b6c --- /dev/null +++ b/kubejs/server_scripts/tfg/powergen/nuclear/tags.nuclear.js @@ -0,0 +1,52 @@ +ο»Ώ"use strict"; + +const registerTFGItemTagsNuclear = (event) => { + + //Fission Nucleat Fuel + event.add('deafission:fuels', 'tfg:thorium_rod') + event.add('deafission:fuels', 'tfg:uranium_rod') + event.add('deafission:fuels', 'tfg:plutonium_rod') + event.add('tfg:fission_rods', '#deafission:fuels') + +} + +const registerTFGBlockTagsNuclear = (event) => { + + //#region Fision Components + let COMPONENTS_FR = 'deafission:components_fr'; + + // Max Heating + event.add(COMPONENTS_FR, 'tfg:glacian_wool_frame'); // Max Heat 2 + event.add(COMPONENTS_FR, 'minecraft:blue_ice'); // Max Heat 0.5 + event.add(COMPONENTS_FR, 'tfg:aes_insulation_frame'); // Max Heat 1 + event.add(COMPONENTS_FR, 'tfg:moderate_core_frame'); // Max Heat 10 + event.add(COMPONENTS_FR, 'tfg:impure_moderate_core_frame'); // Max Heat 5 + //event.add(COMPONENTS, 'minecraft:blue_ice'); // Max Heat 0.5 + + event.add(COMPONENTS_FR, 'minecraft:bedrock'); // Max Heat 10000 CREATIVE BLOCK + + // Increase Throttle + //event.add(COMPONENTS_FR, 'minecraft:iron_block'); + + // Increase Effiency + //event.add(COMPONENTS_FR, 'minecraft:packed_ice'); + + event.add('tfg:fission_coolant','deafission:components') + + // Heat Battery Components + + let COMPONENTS_HB = 'deafission:components_hb'; + + event.add(COMPONENTS_HB, 'minecraft:sand'); + event.add(COMPONENTS_HB, 'tfg:impure_moderate_core_frame'); + + event.add(COMPONENTS_HB, 'minecraft:bedrock'); // For Creative usage only + + //#endregion +} +//#endregion + +//#region Fluids +const registerTFGFluidTagsNuclear = (event) => { + +} diff --git a/kubejs/server_scripts/tfg/powergen/recipes.biodiesel.js b/kubejs/server_scripts/tfg/powergen/recipes.biodiesel.js new file mode 100644 index 000000000..861184069 --- /dev/null +++ b/kubejs/server_scripts/tfg/powergen/recipes.biodiesel.js @@ -0,0 +1,124 @@ +"use strict"; + +function registerTFGBiodieselRecipes(event) { + + // Biofuels + + event.recipes.gtceu.chemical_reactor(`seed_oil_alcohol_biodiesel`) + .inputFluids("#tfg:alcohols 1000", Fluid.of('gtceu:seed_oil', 6000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.ULV]) + + // So you can craft Biodiesel without Chemical Reactor + event.recipes.gtceu.mixer(`tfg:seed_oil_alcohol_biodiesel`) + .inputFluids("#tfg:alcohols 1000", Fluid.of('gtceu:seed_oil', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:bio_diesel', 500)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.gtceu.chemical_reactor(`olive_oil_alcohol_biodiesel`) + .inputFluids("#tfg:alcohols 1000", Fluid.of('tfc:olive_oil', 4000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.ULV]) + + // So you can craft Biodiesel without Chemical Reactor + event.recipes.gtceu.mixer(`tfg:olive_oil_alcohol_biodiesel`) + .inputFluids("#tfg:alcohols 1000", Fluid.of('tfc:olive_oil', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:bio_diesel', 500)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.gtceu.chemical_reactor(`soybean_oil_alcohol_biodiesel`) + .inputFluids("#tfg:alcohols 1000", Fluid.of('firmalife:soybean_oil', 4000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.ULV]) + + // So you can craft Biodiesel without Chemical Reactor + event.recipes.gtceu.mixer(`tfg:soybean_oil_alcohol_biodiesel`) + .inputFluids("#tfg:alcohols 1000", Fluid.of('firmalife:soybean_oil', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:bio_diesel', 500)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.gtceu.chemical_reactor(`fish_oil_alcohol_biodiesel`) + .inputFluids("#tfg:alcohols 1000", Fluid.of('gtceu:fish_oil', 6000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.gtceu.chemical_reactor(`tallow_alcohol_biodiesel`) + .inputFluids("#tfg:alcohols 1000", Fluid.of('tfc:tallow', 6000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.ULV]) + + + // So you can craft Biodiesel without Chemical Reactor + event.recipes.gtceu.mixer(`tfg:fish_oil_alcohol_biodiesel`) + .inputFluids("#tfg:alcohols 1000", Fluid.of('gtceu:fish_oil', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:bio_diesel', 500)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.ULV]) + + + event.recipes.gtceu.mixer(`tfg:tallow_alcohol_biodiesel`) + .inputFluids("#tfg:alcohols 1000", Fluid.of('tfc:tallow', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:bio_diesel', 500)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.gtceu.chemical_reactor(`olive_oil_ethanol_biodiesel`) + .inputFluids(Fluid.of('tfc:olive_oil', 4000), Fluid.of('gtceu:ethanol', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.LV]) + + event.recipes.gtceu.chemical_reactor(`olive_oil_methanol_biodiesel`) + .inputFluids(Fluid.of('tfc:olive_oil', 4000), Fluid.of('gtceu:methanol', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.LV]) + + event.recipes.gtceu.chemical_reactor(`soybean_oil_ethanol_biodiesel`) + .inputFluids(Fluid.of('firmalife:soybean_oil', 4000), Fluid.of('gtceu:ethanol', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.LV]) + + event.recipes.gtceu.chemical_reactor(`soybean_oil_methanol_biodiesel`) + .inputFluids(Fluid.of('firmalife:soybean_oil', 4000), Fluid.of('gtceu:methanol', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.LV]) + + event.recipes.gtceu.chemical_reactor(`tallow_methanol_biodiesel`) + .inputFluids(Fluid.of('tfc:tallow', 6000), Fluid.of('gtceu:methanol', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.LV]) + + event.recipes.gtceu.chemical_reactor(`tallow_ethanol_biodiesel`) + .inputFluids(Fluid.of('tfc:tallow', 6000), Fluid.of('gtceu:ethanol', 1000)) + .itemInputs('#forge:tiny_dusts/sodium_hydroxide') + .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) + .duration(20 * 10) + .EUt(GTValues.VHA[GTValues.LV]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/powergen/recipes.boiler.js b/kubejs/server_scripts/tfg/powergen/recipes.boiler.js new file mode 100644 index 000000000..847e4123a --- /dev/null +++ b/kubejs/server_scripts/tfg/powergen/recipes.boiler.js @@ -0,0 +1,164 @@ +"use strict"; + +function registerTFGBoilerRecipes(event) { + + //Remove boiler recipes that are unlikely to be used and pollute the recipe tab (most everything excluding coke/charcoal) + event.remove({ id: /gtceu:....._boiler\/mcw.+/ }) + event.remove({ id: /gtceu:....._boiler\/.*button.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*trapdoor.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*banner.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*wool.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*fence.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*treated.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*cardboard.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*pressure_plate.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*carpet.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*stairs.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*sign.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*door.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*planks.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*slab.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*biomass.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*bio_chaff.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*chest.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*bundle.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*lectern.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*cartography.*/}) + event.remove({ id: /gtceu:....._boiler\/.*ladder.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*crossbow.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*jukebox.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*resin.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*daylight_detector.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*bow.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*scaffolding.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*loom.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*bowl.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*sticky_resin.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*plant_ball.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*note_block.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*smithing_table.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*fiberboard.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*wood.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*sapling.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*log.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*stem.*/ }) + event.remove({ id: /gtceu:....._boiler\/.*mosaic.*/ }) + + //Re-add some recipes to the boiler under tags + event.recipes.gtceu.steam_boiler('tfg:logs') + .itemInputs('#minecraft:logs') + .duration(300) + .dimension('minecraft:overworld') + + event.recipes.gtceu.steam_boiler('tfg:saplings') + .itemInputs('#minecraft:saplings') + .duration(100) + .dimension('minecraft:overworld') + + event.recipes.gtceu.steam_boiler('tfg:planks') + .itemInputs('#minecraft:planks') + .duration(75) + .dimension('minecraft:overworld') + + // Small nerf to charcoal + + event.forEachRecipe({ id: /gtceu:(steam_boiler|large_boiler)\/.*charcoal.*/ }, recipe => { + var newDuration = recipe.get("duration") + recipe.set("duration", newDuration/4*3) + }) + + // Allow oil in small boilers + + event.remove({ id: "gtceu:large_boiler/gtceu_oil" }) + event.remove({ id: "gtceu:large_boiler/gtceu_oil_heavy" }) + event.remove({ id: "gtceu:large_boiler/gtceu_fish_oil" }) + // This generates both a small boiler and large boiler recipe. Remove it above to avoid a duplicate + event.recipes.gtceu.steam_boiler('tfg:oil') + .inputFluids(Fluid.of('gtceu:oil', 200)) + .duration(200) + .dimension('minecraft:overworld') + + event.recipes.gtceu.steam_boiler('tfg:heavy_oil') + .inputFluids(Fluid.of('gtceu:oil_heavy', 32)) + .duration(200) + .dimension('minecraft:overworld') + + event.recipes.gtceu.steam_boiler('tfg:fish_oil') + .inputFluids(Fluid.of('gtceu:fish_oil', 160)) + .duration(200) + .dimension('minecraft:overworld') + + // These aren't in base GT, but they have the same stats as oil + event.recipes.gtceu.steam_boiler('tfg:raw_oil') + .inputFluids(Fluid.of('gtceu:oil_medium', 200)) + .duration(200) + .dimension('minecraft:overworld') + + event.recipes.gtceu.steam_boiler('tfg:light_oil') + .inputFluids(Fluid.of('gtceu:oil_light', 200)) + .duration(200) + .dimension('minecraft:overworld') + + // Same stats as fish oil + event.recipes.gtceu.steam_boiler('tfg:olive_oil') + .inputFluids(Fluid.of('tfc:olive_oil', 160)) + .duration(200) + .dimension('minecraft:overworld') + + event.recipes.gtceu.steam_boiler('tfg:seed_oil') + .inputFluids(Fluid.of('gtceu:seed_oil', 160)) + .duration(200) + .dimension('minecraft:overworld') + + event.recipes.gtceu.steam_boiler('tfg:soybean_oil') + .inputFluids(Fluid.of('firmalife:soybean_oil', 160)) + .duration(200) + .dimension('minecraft:overworld') + + event.recipes.gtceu.steam_boiler('tfg:tallow') + .inputFluids(Fluid.of('tfc:tallow', 160)) + .duration(200) + .dimension('minecraft:overworld') + + // fish oil extraction + event.recipes.gtceu.extractor(`tfg:fish_oil`) + .itemInputs('#minecraft:fishes') + .outputFluids(Fluid.of('gtceu:fish_oil', 400)) + .duration(40) + .EUt(4) + + event.recipes.gtceu.extractor(`tfg:tallow`) + .itemInputs('tfc:blubber') + .outputFluids(Fluid.of('tfc:tallow', 400)) + .duration(40) + .EUt(4) + + // Seed oil + event.recipes.gtceu.extractor(`tfg:seed_oil`) + .itemInputs('#tfc:seeds') + .outputFluids(Fluid.of('gtceu:seed_oil', 50)) + .duration(32) + .EUt(2) + + event.recipes.gtceu.extractor(`rapeseed_oil`) + .itemInputs('tfg:rapeseed_product') + .outputFluids(Fluid.of('gtceu:seed_oil', 600)) + .duration(20 * 5) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.gtceu.extractor(`sunflower_oil`) + .itemInputs('tfg:sunflower_product') + .outputFluids(Fluid.of('gtceu:seed_oil', 350)) + .duration(20 * 5) + .EUt(GTValues.VHA[GTValues.ULV]) + + event.recipes.tfc.barrel_sealed(1000) + .inputs('tfg:rapeseed_product', Fluid.of('minecraft:water', 100)) + .outputFluid(Fluid.of('gtceu:seed_oil', 250)) + .id('tfg:barrel/rapeseed_to_oil') + + event.recipes.tfc.barrel_sealed(1000) + .inputs('tfg:sunflower_product', Fluid.of('minecraft:water', 100)) + .outputFluid(Fluid.of('gtceu:seed_oil', 120)) + .id('tfg:barrel/sunflower_to_oil') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/powergen/recipes.coal.js b/kubejs/server_scripts/tfg/powergen/recipes.coal.js new file mode 100644 index 000000000..6220f542f --- /dev/null +++ b/kubejs/server_scripts/tfg/powergen/recipes.coal.js @@ -0,0 +1,96 @@ +"use strict"; + +function registerTFGCoalRecipes(event) { + + event.recipes.gtceu.coke_oven("tfg:poor_coal_to_coke") + .itemInputs('2x gtceu:poor_raw_coal') + .itemOutputs('1x gtceu:coke_gem') + .outputFluids(Fluid.of('gtceu:creosote', 500)) + .duration(900) + + event.recipes.gtceu.coke_oven("tfg:coal_to_coke") + .itemInputs('gtceu:raw_coal') + .itemOutputs('2x gtceu:coke_gem') + .outputFluids(Fluid.of('gtceu:creosote', 1000)) + .duration(900) + + event.recipes.gtceu.coke_oven("tfg:rich_coal_to_coke") + .itemInputs('gtceu:rich_raw_coal') + .itemOutputs('4x gtceu:coke_gem') + .outputFluids(Fluid.of('gtceu:creosote', 2000)) + .duration(900) + + event.recipes.gtceu.pyrolyse_oven("tfg:rich_coal_to_tar") + .itemInputs('3x gtceu:rich_raw_coal') + .chancedOutput('gtceu:dark_ash_dust', 5000, 0) + .outputFluids(Fluid.of('gtceu:coal_tar', 3000)) + .duration(288) + .EUt(96) + .circuit(8) + + event.recipes.gtceu.pyrolyse_oven("tfg:rich_coal_to_coke_creosote") + .itemInputs('4x gtceu:rich_raw_coal') + .itemOutputs('16x gtceu:coke_gem') + .outputFluids(Fluid.of('gtceu:creosote', 8000)) + .duration(576) + .EUt(64) + .circuit(1) + + event.recipes.gtceu.pyrolyse_oven("tfg:coal_to_coal_gas") + .itemInputs('4x gtceu:rich_raw_coal') + .itemOutputs('16x gtceu:coke_gem') + .inputFluids(Fluid.of('gtceu:steam')) + .outputFluids(Fluid.of('gtceu:coal_gas', 4000)) + .duration(288) + .EUt(96) + .circuit(22) + + event.recipes.gtceu.pyrolyse_oven("tfg:coal_to_coke_creosote_nitrogen") + .itemInputs('4x gtceu:rich_raw_coal') + .itemOutputs('16x gtceu:coke_gem') + .inputFluids(Fluid.of('gtceu:nitrogen')) + .outputFluids(Fluid.of('gtceu:creosote', 8000)) + .duration(288) + .EUt(96) + .circuit(2) + + event.recipes.gtceu.coke_oven("tfg:raw_coal_to_coke") + .itemInputs('gtceu:raw_coal') + .itemOutputs('2x gtceu:coke_gem') + .outputFluids(Fluid.of('gtceu:creosote', 2000)) + .duration(1710) + + event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_tar") + .itemInputs('6x gtceu:raw_coal') + .chancedOutput('gtceu:dark_ash_dust', 5000, 0) + .outputFluids(Fluid.of('gtceu:coal_tar', 3000)) + .duration(288) + .EUt(96) + .circuit(8) + + event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coke_creosote") + .itemInputs('8x gtceu:raw_coal') + .itemOutputs('16x gtceu:coke_gem') + .outputFluids(Fluid.of('gtceu:creosote', 8000)) + .duration(576) + .EUt(64) + .circuit(1) + + event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coal_gas") + .itemInputs('8x gtceu:raw_coal') + .itemOutputs('16x gtceu:coke_gem') + .inputFluids(Fluid.of('gtceu:steam')) + .outputFluids(Fluid.of('gtceu:coal_gas', 4000)) + .duration(288) + .EUt(96) + .circuit(22) + + event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coke_creosote_nitrogen") + .itemInputs('8x gtceu:raw_coal') + .itemOutputs('16x gtceu:coke_gem') + .inputFluids(Fluid.of('gtceu:nitrogen')) + .outputFluids(Fluid.of('gtceu:creosote', 8000)) + .duration(288) + .EUt(96) + .circuit(2) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/powergen/recipes.early_gas.js b/kubejs/server_scripts/tfg/powergen/recipes.early_gas.js new file mode 100644 index 000000000..a6826317b --- /dev/null +++ b/kubejs/server_scripts/tfg/powergen/recipes.early_gas.js @@ -0,0 +1,375 @@ +// priority: 0 + +function registerTFGEarlyGasRecipes(event) { + + const $ChanceLogic = Java.loadClass('com.gregtechceu.gtceu.api.recipe.chance.logic.ChanceLogic') + + // New Fuels + + //#region Syngas + + event.recipes.vintageimprovements.vacuumizing(Fluid.of('tfg:syngas', 100), ['minecraft:charcoal', Fluid.of('gtceu:creosote', 250)]) + .secondaryFluidOutput(0) + .processingTime(4000) + .heated() + .id('tfg:vi/vacuumizing/syngas_from_charcoal') + + event.recipes.vintageimprovements.vacuumizing(Fluid.of('tfg:syngas', 200), ['minecraft:coal', Fluid.of('gtceu:creosote', 250)]) + .secondaryFluidOutput(0) + .processingTime(4000) + .heated() + .id('tfg:vi/vacuumizing/syngas_from_coal') + + event.recipes.vintageimprovements.vacuumizing(Fluid.of('tfg:syngas', 400), ['gtceu:coke_gem', Fluid.of('gtceu:creosote', 250)]) + .secondaryFluidOutput(0) + .processingTime(4000) + .heated() + .id('tfg:vi/vacuumizing/syngas_from_coke') + + event.recipes.vintageimprovements.vacuumizing(Fluid.of('tfg:syngas', 400), ['beneath:cursecoal', Fluid.of('gtceu:creosote', 250)]) + .secondaryFluidOutput(0) + .processingTime(4000) + .heated() + .id('tfg:vi/vacuumizing/syngas_from_anthracite') + + event.recipes.gtceu.brewery('tfg:syngas_from_charcoal') + .itemInputs('minecraft:charcoal') + .inputFluids('gtceu:creosote 250') + .outputFluids('tfg:syngas 100') + .duration(20*15) + .EUt(GTValues.VHA[GTValues.LV]) + + event.recipes.gtceu.brewery('tfg:syngas_from_coal') + .itemInputs('minecraft:coal') + .inputFluids('gtceu:creosote 250') + .outputFluids('tfg:syngas 200') + .duration(20*15) + .EUt(GTValues.VHA[GTValues.LV]) + + event.recipes.gtceu.brewery('tfg:syngas_from_coke') + .itemInputs('gtceu:coke_gem') + .inputFluids('gtceu:creosote 250') + .outputFluids('tfg:syngas 400') + .duration(20*15) + .EUt(GTValues.VHA[GTValues.LV]) + + event.recipes.gtceu.brewery('tfg:syngas_from_anthracite') + .itemInputs('beneath:cursecoal') + .inputFluids('gtceu:creosote 250') + .outputFluids('tfg:syngas 400') + .duration(20*15) + .EUt(GTValues.VHA[GTValues.LV]) + + //#endregion + + //#region Reformate Gas + + // Charcoal + + event.recipes.gtceu.coal_liquefaction_tower('tfg:raw_aromatic_mix_charcoal') + .itemInputs(Item.of('minecraft:charcoal', 40)) + .inputFluids(Fluid.of('gtceu:creosote', 4000)) + .outputFluids(Fluid.of('gtceu:coal_tar', 500), Fluid.of('tfg:syngas', 4400), Fluid.of('tfg:raw_aromatic_mix', 4000)) + .duration(20*64) + .circuit(1) + .EUt(GTValues.VHA[GTValues.MV]) + + event.recipes.gtceu.coal_liquefaction_tower('tfg:raw_aromatic_mix_charcoal_hydrogen') + .itemInputs(Item.of('minecraft:charcoal', 40)) + .inputFluids(Fluid.of('gtceu:creosote', 4000)) + .perTick(true) + .chancedFluidInput(Fluid.of('gtceu:hydrogen', 1), 1000, 0) + .perTick(false) + .outputFluids(Fluid.of('gtceu:coal_tar', 500), Fluid.of('tfg:syngas', 4400), Fluid.of('tfg:raw_aromatic_mix', 4000)) + .duration(20*32) + .circuit(2) + .EUt(GTValues.VHA[GTValues.MV]) + + // Coal + + event.recipes.gtceu.coal_liquefaction_tower('tfg:raw_aromatic_mix_coal') + .itemInputs(Item.of('minecraft:coal', 10)) + .inputFluids(Fluid.of('gtceu:creosote', 4000)) + .outputFluids(Fluid.of('gtceu:coal_tar', 1000), Fluid.of('tfg:syngas', 6400), Fluid.of('tfg:raw_aromatic_mix', 4000)) + .duration(20*64) + .circuit(1) + .EUt(GTValues.VHA[GTValues.MV]) + + event.recipes.gtceu.coal_liquefaction_tower('tfg:raw_aromatic_mix_coal_hydrogen') + .itemInputs(Item.of('minecraft:coal', 10)) + .inputFluids(Fluid.of('gtceu:creosote', 4000)) + .perTick(true) + .chancedFluidInput(Fluid.of('gtceu:hydrogen', 1), 1000, 0) + .perTick(false) + .outputFluids(Fluid.of('gtceu:coal_tar', 1000), Fluid.of('tfg:syngas', 6400), Fluid.of('tfg:raw_aromatic_mix', 4000)) + .duration(20*32) + .circuit(2) + .EUt(GTValues.VHA[GTValues.MV]) + + // Coke + + event.recipes.gtceu.coal_liquefaction_tower('tfg:raw_aromatic_mix_coke') + .itemInputs(Item.of('gtceu:coke_gem', 8)) + .inputFluids(Fluid.of('gtceu:creosote', 4000)) + .outputFluids(Fluid.of('gtceu:coal_tar', 2000), Fluid.of('tfg:syngas', 12800), Fluid.of('tfg:raw_aromatic_mix', 4000)) + .duration(20*64) + .circuit(1) + .EUt(GTValues.VHA[GTValues.MV]) + + event.recipes.gtceu.coal_liquefaction_tower('tfg:raw_aromatic_mix_coke_hydrogen') + .itemInputs(Item.of('gtceu:coke_gem', 8)) + .inputFluids(Fluid.of('gtceu:creosote', 4000)) + .perTick(true) + .chancedFluidInput(Fluid.of('gtceu:hydrogen', 1), 1000, 0) + .perTick(false) + .outputFluids(Fluid.of('gtceu:coal_tar', 2000), Fluid.of('tfg:syngas', 12800), Fluid.of('tfg:raw_aromatic_mix', 4000)) + .duration(20*32) + .circuit(2) + .EUt(GTValues.VHA[GTValues.MV]) + + // Anthracite + + event.recipes.gtceu.coal_liquefaction_tower('tfg:raw_aromatic_mix_anthracite') + .itemInputs(Item.of('beneath:cursecoal', 5)) + .inputFluids(Fluid.of('gtceu:creosote', 4000)) + .outputFluids(Fluid.of('gtceu:coal_tar', 2000), Fluid.of('tfg:syngas', 12800), Fluid.of('tfg:raw_aromatic_mix', 4000)) + .duration(20*64) + .circuit(1) + .EUt(GTValues.VHA[GTValues.MV]) + + event.recipes.gtceu.coal_liquefaction_tower('tfg:raw_aromatic_mix_anthracite_hydrogen') + .itemInputs(Item.of('beneath:cursecoal', 5)) + .inputFluids(Fluid.of('gtceu:creosote', 4000)) + .perTick(true) + .chancedFluidInput(Fluid.of('gtceu:hydrogen', 1), 1000, 0) + .perTick(false) + .outputFluids(Fluid.of('gtceu:coal_tar', 2000), Fluid.of('tfg:syngas', 12800), Fluid.of('tfg:raw_aromatic_mix', 4000)) + .duration(20*32) + .circuit(2) + .EUt(GTValues.VHA[GTValues.MV]) + + // Aromatic Processing + + event.recipes.gtceu.chemical_reactor('tfg:aromatic_feedstock') + .inputFluids(Fluid.of('tfg:raw_aromatic_mix', 4000), Fluid.of('gtceu:benzene', 525), Fluid.of('gtceu:steam', 1000)) + .outputFluids(Fluid.of('tfg:aromatic_feedstock', 2000)) + .duration(20*30) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.chemical_reactor('tfg:reformed_aromatic_feedstock') + .chancedInput(Item.of('gtceu:tiny_rhenium_dust'), 1000, 0) // 10% chance + .inputFluids(Fluid.of('tfg:aromatic_feedstock', 2000)) + .outputFluids(Fluid.of('tfg:reformed_aromatic_feedstock', 2000)) + .duration(20*18) + .EUt(GTValues.VA[GTValues.MV]) + + // Reformate Gas Alternative Step + + event.recipes.gtceu.cracker('tfg:reformate_gas_cracker') + .inputFluids(Fluid.of('tfg:reformed_aromatic_feedstock', 2000), Fluid.of('gtceu:steam', 4000)) + .outputFluids(Fluid.of('tfg:reformate_gas', 8000)) + .outputFluids(Fluid.of('tfg:cracker_off_gas', 1000)) + .duration(20*30) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.chemical_reactor('tfg:reformate_gas') + .inputFluids(Fluid.of('tfg:reformed_aromatic_feedstock', 2000), Fluid.of('gtceu:steam', 1000)) + .outputFluids(Fluid.of('tfg:reformate_gas', 3000)) + .duration(20*30) + .EUt(GTValues.VA[GTValues.MV]) + + // Recycling + + event.recipes.gtceu.electrolyzer('tfg:cracker_off_gas_recycling') + .inputFluids(Fluid.of('tfg:cracker_off_gas', 1000)) + .outputFluids(Fluid.of('gtceu:carbon_dioxide', 500), Fluid.of('gtceu:hydrogen', 500)) + .chancedOutput(Item.of('gtceu:tiny_rhenium_dust'), 1000, 0) // 10% chance + .duration(20*4.5) + .EUt(GTValues.VA[GTValues.HV]) + + // Modify Recipe to balance new line + + event.remove({ id: 'gtceu:extractor/charcoal_extraction' }) + event.recipes.gtceu.extractor('tfg:charcoal_extraction') + .itemInputs(Item.of('minecraft:charcoal')) + .outputFluids(Fluid.of('gtceu:wood_tar', 100)) + .duration(20*6.4) + .EUt(GTValues.VA[GTValues.MV]) + + //#endregion + + // Increase Pyrolyse Oven duration + + event.forEachRecipe({ id: /gtceu:pyrolyse_oven\/(log_to_creosote|log_to_creosote_nitrogen)/ }, recipe => { + var newDuration = recipe.get("duration") + recipe.set("duration", newDuration*2) + }) + + event.forEachRecipe({ id: /gtceu:pyrolyse_oven\/(log_to_wood_tar|log_to_wood_tar_nitrogen)/ }, recipe => { + var newDuration = recipe.get("duration") + recipe.set("duration", newDuration*2) + }) + + //#region Power Gen + + // Add Syngas + + event.recipes.gtceu.gas_turbine('tfg:syngas') // Gas Turbine + .inputFluids(Fluid.of('tfg:syngas', 1)) + .EUt(-(32)) + .duration(20*0.2) + .dimension('minecraft:overworld') + .dimension('minecraft:the_nether') + + // Reformate Gas + + event.recipes.gtceu.gas_turbine('tfg:reformate_gas') // Gas Turbine + .inputFluids(Fluid.of('tfg:reformate_gas', 1)) + .EUt(-(32)) + .duration(20*0.6) + .dimension('minecraft:overworld') + .dimension('minecraft:the_nether') + + // BTX Fuel + + event.recipes.gtceu.gas_turbine('tfg:btx_fuel') // Gas Turbine + .inputFluids(Fluid.of('tfg:btx_fuel', 1)) + .EUt(-(32)) + .duration(20*2.6) + .dimension('minecraft:overworld') + .dimension('minecraft:the_nether') + + //#endregion + + // Process Syngas + + event.recipes.gtceu.chemical_reactor('tfg:electrolyze_syngas') + .notConsumable(Item.of('gtceu:copper_dust', 1)) + .inputFluids(Fluid.of('tfg:syngas', 1000)) + .outputFluids(Fluid.of('gtceu:methanol', 4000), Fluid.of('minecraft:water', 2000)) + .duration(20*12) + .EUt(GTValues.VA[GTValues.MV]) + + //#region BTX Fuel + + // ZSM - 5 + + event.recipes.gtceu.chemical_reactor('tfg:sodium_silicate') + .itemInputs(Item.of('#forge:dusts/nether_quartz')) + .inputFluids(Fluid.of('tfc:lye', 1000)) + .outputFluids(Fluid.of('tfg:sodium_silicate', 1000)) + .duration(20*26) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.chemical_reactor('tfg:sodium_aluminum') + .itemInputs(Item.of('#forge:dusts/aluminium')) + .inputFluids(Fluid.of('tfc:lye', 1000)) + .itemOutputs(Item.of('#forge:dusts/sodium_aluminium', 1)) + .duration(20*26) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.chemical_reactor('tfg:tpaoh') + .itemInputs(Item.of('2x #forge:dusts/sodium')) + .inputFluids(Fluid.of('gtceu:ammonia', 1000), Fluid.of('gtceu:ethanol', 1000)) + .outputFluids(Fluid.of('tfg:tpaoh', 1000)) + .duration(20*8) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_reactor('tfg:zsm_5_gel') + .itemInputs(Item.of('#forge:dusts/sodium_aluminium')) + .inputFluids(Fluid.of('tfg:tpaoh', 12000)) + .inputFluids(Fluid.of('tfg:sodium_silicate', 5000)) + .outputFluids(Fluid.of('tfg:zsm5_gel', 1000)) + .duration(20*16) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('tfg:catalyser_zsm') + .itemInputs(Item.of('#forge:dusts/platinum'), Item.of('10x #forge:dusts/rhenium')) + .inputFluids(Fluid.of('gtceu:hydrogen', 1000)) + .inputFluids(Fluid.of('tfg:zsm5_gel', 1000)) + .itemOutputs(Item.of('tfg:catalyser_pt_re_zsm', 1)) + .duration(20*60) + .EUt(GTValues.VA[GTValues.HV]) + + // BTX + + event.recipes.gtceu.distillation_tower('tfg:methanol_distil_propylene') + .inputFluids(Fluid.of('gtceu:methanol', 6000)) + .outputFluids(Fluid.of('gtceu:hydrogen', 10000), Fluid.of('gtceu:oxygen', 6000), Fluid.of('gtceu:methane', 1000), Fluid.of('gtceu:ethylene', 1000), Fluid.of('gtceu:propene', 1000)) + .duration(20*30) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.cracker('tfg:crude_mixed_gas') + .itemInputs(Item.of('tfg:catalyser_pt_re_zsm')) + .inputFluids(Fluid.of('tfg:reformate_gas', 8000)) + .inputFluids(Fluid.of('gtceu:propene', 2000)) + .outputFluids(Fluid.of('tfg:crude_mixed_gas', 10000)) + .duration(20*240) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.large_chemical_reactor('tfg:btx_fuel') + .inputFluids(Fluid.of('tfg:crude_mixed_gas', 10000)) + .inputFluids(Fluid.of('gtceu:benzene', 20000)) + .inputFluids(Fluid.of('gtceu:toluene', 6000)) + .inputFluids(Fluid.of('gtceu:dimethylbenzene', 12000)) + .itemOutputs(Item.of('tfg:used_catalyser', 1)) + .outputFluids(Fluid.of('tfg:btx_fuel', 48000)) + .duration(20*6) + .EUt(GTValues.VA[GTValues.IV]) + .circuit(24) + + // Loop + + event.recipes.gtceu.macerator('tfg:catalyser_power') + .itemInputs(Item.of('tfg:used_catalyser', 1)) + .itemOutputs(Item.of('tfg:catalyser_powder_dust', 1), Item.of('gtceu:platinum_dust', 1)) + .duration(20*30) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.chemical_reactor('tfg:clean_powder') + .itemInputs(Item.of('tfg:catalyser_powder_dust', 1)) + .inputFluids(Fluid.of('gtceu:hydrogen_peroxide', 2000)) + .itemOutputs(Item.of('tfg:clean_powder_dust', 1), Item.of('gtceu:sodium_dust', 1)) + .duration(20*14) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.coal_liquefaction_tower('tfg:leachate') + .itemInputs(Item.of('tfg:clean_powder_dust', 1)) + .inputFluids(Fluid.of('gtceu:diluted_hydrochloric_acid', 1000)) + .outputFluids(Fluid.of('tfg:leachate', 1000)) + .duration(20*45) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.centrifuge('tfg:metal_rich_solution') + .inputFluids(Fluid.of('tfg:leachate', 1000)) + .itemOutputs(Item.of('gtceu:nether_quartz_dust', 2), Item.of('gtceu:aluminium_dust', 1)) + .outputFluids(Fluid.of('tfg:metal_rich_solution', 1000)) + .duration(20*45) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.mixer('tfg:aciditic_waste') + .itemInputs(Item.of('gtceu:reinforced_epoxy_resin_plate', 1)) + .inputFluids(Fluid.of('tfg:metal_rich_solution', 200), Fluid.of('gtceu:glue', 200)) + .outputFluids(Fluid.of('tfg:aciditic_waste', 200)) + .itemOutputs(Item.of('tfg:loaded_resin', 2)) + .duration(20*15) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.distillery('tfg:rhenium_dust') + .inputFluids(Fluid.of('gtceu:sulfuric_acid', 100)) + .itemInputs(Item.of('tfg:loaded_resin', 1)) + .itemOutputs(Item.of('gtceu:rhenium_dust', 1)) + .duration(20*8) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.electrolyzer('tfg:aciditic_waste_electrolyzing') + .inputFluids(Fluid.of('tfg:aciditic_waste', 1000)) + .outputFluids(Fluid.of('gtceu:ammonia', 500)) + .outputFluids(Fluid.of('gtceu:ethanol', 500)) + .duration(20*4) + .EUt(GTValues.VA[GTValues.HV]) + + + + +} diff --git a/kubejs/server_scripts/tfg/powergen/recipes.solar.js b/kubejs/server_scripts/tfg/powergen/recipes.solar.js new file mode 100644 index 000000000..e74ec4cb7 --- /dev/null +++ b/kubejs/server_scripts/tfg/powergen/recipes.solar.js @@ -0,0 +1,184 @@ +"use strict"; + +function registerTFGSolarRecipes(event) { + + //#region Large Solar Panel + + event.shaped( + 'gtceu:large_solar_panel', + ['WSW', 'TZT', 'WUW'], + { + S: 'tfg:photo_cell_t1', + Z: 'ad_astra:solar_panel', + W: '#gtceu:circuits/ev', + U: '#forge:gears/rocket_alloy_t1', + T: '#forge:gears/desh' + } + ).id('gtceu:shaped/large_solar_panel') + + event.shaped( + 'gtceu:large_solar_panel_tier2', + ['WSW', 'TZT', 'WUW'], + { + S: 'ad_astra:photovoltaic_etrium_cell', + Z: 'gtceu:large_solar_panel', + W: '#gtceu:circuits/iv', + U: '#forge:gears/rocket_alloy_t1', + T: '#forge:gears/desh' + } + ).id('gtceu:shaped/large_solar_panel_tier2') + + event.shaped( + 'gtceu:large_solar_panel_tier3', + ['WSW', 'TZT', 'WUW'], + { + S: 'ad_astra:photovoltaic_vesnium_cell', + Z: 'gtceu:large_solar_panel_tier2', + W: '#gtceu:circuits/luv', + U: '#forge:gears/rocket_alloy_t1', + T: '#forge:gears/desh' + } + ).id('gtceu:shaped/large_solar_panel_tier3') + + event.recipes.gtceu.chemical_reactor('advanced_photovoltaic_cell') + .itemInputs('8x tfg:photo_cell_t1', + '6x #forge:dusts/vanadium_gallium', + '#forge:insulation_t2/sheet') + .inputFluids(Fluid.of('gtceu:helium_3', 1000)) + .itemOutputs('8x ad_astra:photovoltaic_etrium_cell') + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_reactor('expert_photovoltaic_cell') + .itemInputs('8x ad_astra:photovoltaic_etrium_cell', + '6x gtceu:energium_dust', + '#forge:insulation_t3/sheet') + .inputFluids(Fluid.of('tfg:cryogenized_fluix', 1000)) + .itemOutputs('8x ad_astra:photovoltaic_vesnium_cell') + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.IV]) + + //#region Chemical Reaction for Solar Panel + + event.recipes.gtceu.chemical_reactor('tfg:chlorine_pentafluoride') + .inputFluids(Fluid.of('gtceu:fluorine', 5000), Fluid.of('gtceu:chlorine', 1000)) + .outputFluids(Fluid.of('tfg:chlorine_pentafluoride', 1000)) + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.chemical_reactor('tfg:chloryl_fluoride') + .inputFluids(Fluid.of('tfg:chlorine_pentafluoride', 1000), Fluid.of('minecraft:water', 2000)) + .outputFluids(Fluid.of('tfg:chloryl_fluoride', 1000), Fluid.of('gtceu:hydrofluoric_acid', 4000)) + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.large_chemical_reactor('tfg:solar_coolant') + .inputFluids(Fluid.of('tfg:chloryl_fluoride', 3000), Fluid.of('gtceu:helium_3', 8000), Fluid.of('minecraft:water', 8000)) + .outputFluids(Fluid.of('tfg:solar_coolant', 1000), Fluid.of('gtceu:hydrofluoric_acid', 3000), Fluid.of('gtceu:hypochlorous_acid', 3000)) + .duration(20 * 5) + .EUt(GTValues.VH[GTValues.EV]) + + event.recipes.gtceu.large_chemical_reactor('tfg:solar_coolant_t2') + .inputFluids(Fluid.of('tfg:solar_coolant', 8000), Fluid.of('gtceu:argon', 1000)) + .itemInputs(Item.of('#forge:aerogels')) + .outputFluids(Fluid.of('tfg:solar_coolant_tier2', 8000)) + .duration(20 * 15) + .EUt(GTValues.VH[GTValues.IV]) + + //#endregion + + // LSP Generating recipes + + // Solar T1 + + event.recipes.gtceu.large_solar_panel('solar_panel_t1_emergency') + .chancedInput('tfg:photo_cell_t1', 100, 0) + .duration(20 * 20) + .daytime(false) + .dimension('ad_astra:moon') + .EUt(-((GTValues.V[GTValues.HV])), 2) + .circuit(1) + + event.recipes.gtceu.large_solar_panel('solar_panel_t1') + .notConsumable('tfg:photo_cell_t1') + .perTick(true) + .chancedFluidInput('tfg:compressed_trimix_3 4', 5000, 0) + .perTick(false) + .duration(20 * 20) + .daytime(false) + .dimension('ad_astra:moon') + .EUt(-(GTValues.V[GTValues.EV]), 2) + .circuit(2) + + // Solar T2 + + event.recipes.gtceu.large_solar_panel_tier2('solar_panel_t2_emergency') + .chancedInput('ad_astra:photovoltaic_etrium_cell', 100, 0) + .duration(20 * 20) + .daytime(false) + .dimension('ad_astra:moon') + .EUt(-(GTValues.V[GTValues.EV]), 2) + .circuit(1) + + event.recipes.gtceu.large_solar_panel_tier2('solar_panel_t2_strong') + .notConsumable('ad_astra:photovoltaic_etrium_cell') + .perTick(true) + .chancedFluidInput('tfg:solar_coolant 10', 5000, 0) + .inputFluids('tfg:cryogenized_fluix 4') + .outputFluids('tfg:fluix 1') + .perTick(false) + .duration(20 * 20) + .daytime(false) + .dimension('ad_astra:moon') + .EUt(-(GTValues.V[GTValues.IV]), 2) + .circuit(2) + + event.recipes.gtceu.large_solar_panel_tier2('solar_panel_t2_cheap') + .notConsumable('ad_astra:photovoltaic_etrium_cell') + .perTick(true) + .inputFluids('tfg:compressed_trimix_3 1') + .perTick(false) + .duration(20 * 20) + .daytime(false) + .dimension('ad_astra:moon') + .EUt(-(GTValues.V[GTValues.EV]), 2) + .circuit(3) + + // Solar T3 + + event.recipes.gtceu.large_solar_panel_tier3('solar_panel_t3_emergency') + .chancedInput('ad_astra:photovoltaic_vesnium_cell', 100, 0) + .duration(20 * 20) + .daytime(false) + .dimension('ad_astra:moon') + .EUt(-(GTValues.V[GTValues.IV]), 2) + .circuit(1) + + event.recipes.gtceu.large_solar_panel_tier3('solar_panel_t3_strong') + .notConsumable('ad_astra:photovoltaic_vesnium_cell') + .perTick(true) + .chancedFluidInput('tfg:solar_coolant_tier2 10', 5000, 0) + .inputFluids('tfg:cryogenized_fluix 4') + .outputFluids('tfg:fluix 1') + .perTick(false) + .duration(20 * 20) + .daytime(false) + .dimension('ad_astra:moon') + .EUt(-(GTValues.V[GTValues.LuV]), 2) + .circuit(2) + + event.recipes.gtceu.large_solar_panel_tier3('solar_panel_t3_cheap') + .notConsumable('ad_astra:photovoltaic_vesnium_cell') + .perTick(true) + .chancedFluidInput('tfg:solar_coolant 10', 5000, 0) + .inputFluids('tfg:cryogenized_fluix 4') + .outputFluids('tfg:fluix 1') + .perTick(false) + .duration(20 * 20) + .daytime(false) + .dimension('ad_astra:moon') + .EUt(-(GTValues.V[GTValues.IV]), 2) + .circuit(2) + + //#endregion +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/primitive/fishing_nets/events.fishing_nets.js b/kubejs/server_scripts/tfg/primitive/fishing_nets/events.fishing_nets.js new file mode 100644 index 000000000..c8bb64476 --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/fishing_nets/events.fishing_nets.js @@ -0,0 +1,93 @@ +const fish = [ + 'cod', + 'crappie', + 'jellyfish', + 'lake_trout', + 'largemouth_bass', + 'rainbow_trout', + 'salmon', + 'smallmouth_bass', + 'tropical_fish', + 'bluegill' +]; + +const shellfish = [ + 'lobster', + 'isopod', + 'crayfish' +]; + +//tags wont work here (or at least I couldnt get it to work) so we need to manually declare each net tier. +const tiers = [ + 'wood', + 'brass', + 'rose_gold', + 'sterling_silver', + 'invar', + 'tin_alloy', + 'cupronickel', + 'magnalium' +]; + +//Event detects if fish is right clicked with fishing net and then teleports the mob into the void, plays some actions and gives the player the proper item. +tiers.forEach(tier => { + fish.forEach(fish => { + ItemEvents.entityInteracted(`tfg:fishing_net/${tier}`, (event) => { + const { item, player, server, target } = event; + + if (target.type !== `tfc:${fish}`) return + server.runCommandSilent(`particle minecraft:bubble_pop ${target.x} ${target.y} ${target.z} 0.5 0.5 0.5 0.00001 10`) + server.runCommandSilent(`playsound minecraft:entity.player.splash player ${player.username} ${target.x} ${target.y} ${target.z} 2 2 1`) + server.runCommandSilent(`tp ${target.uuid} ${target.x} ${target.y - 382} ${target.z}`) + event.player.give(`tfc:food/${fish}`) + player.swing() + if (player.isCreative() === false) { + item.damageValue++ + if (item.damageValue >= item.maxDamage) { + server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`) + item.count-- + } + } + }) + }) + + //Shellfish Exception + shellfish.forEach(shellfish => { + ItemEvents.entityInteracted(`tfg:fishing_net/${tier}`, (event) => { + const { item, player, server, target } = event; + + if (target.type !== `tfc:${shellfish}`) return + server.runCommandSilent(`particle minecraft:bubble_pop ${target.x} ${target.y} ${target.z} 0.5 0.5 0.5 0.00001 10`) + server.runCommandSilent(`playsound minecraft:entity.player.splash player ${player.username} ${target.x} ${target.y} ${target.z} 2 2 1`) + server.runCommandSilent(`tp ${target.uuid} ${target.x} ${target.y - 382} ${target.z}`) + event.player.give('tfc:food/shellfish') + player.swing() + if (player.isCreative() === false) { + item.damageValue++ + if (item.damageValue >= item.maxDamage) { + server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`) + item.count-- + } + } + }) + }) + + //Pufferfish Exception + ItemEvents.entityInteracted(`tfg:fishing_net/${tier}`, (event) => { + const { item, player, server, target } = event; + + if (target.type !== 'tfc:pufferfish') return + server.runCommandSilent(`particle minecraft:bubble_pop ${target.x} ${target.y} ${target.z} 0.5 0.5 0.5 0.00001 10`) + server.runCommandSilent(`playsound minecraft:entity.player.splash player ${player.username} ${target.x} ${target.y} ${target.z} 2 2 1`) + server.runCommandSilent(`tp ${target.uuid} ${target.x} ${target.y - 382} ${target.z}`) + event.player.give('minecraft:pufferfish') + player.swing() + if (player.isCreative() === false) { + item.damageValue++ + if (item.damageValue >= item.maxDamage) { + server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`) + item.count-- + } + } + }) +}) \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.fishing_nets.js b/kubejs/server_scripts/tfg/primitive/fishing_nets/recipes.fishing_nets.js similarity index 100% rename from kubejs/server_scripts/tfg/recipes.fishing_nets.js rename to kubejs/server_scripts/tfg/primitive/fishing_nets/recipes.fishing_nets.js diff --git a/kubejs/server_scripts/tfg/primitive/medicine/events.medicine.js b/kubejs/server_scripts/tfg/primitive/medicine/events.medicine.js new file mode 100644 index 000000000..3d8231c38 --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/medicine/events.medicine.js @@ -0,0 +1,87 @@ + +//Pills & Tablets +const pill_event = [ + 'haste', + 'luck', + 'night_vision', + 'poison', + 'regeneration', + 'slowness', + 'speed', + 'water_breathing', + 'weakness', +]; + +pill_event.forEach(pill_event => { + + ItemEvents.foodEaten(event => { + const { item, server, player, player: { x, y, z } } = event + if (item.id !== `tfg:${pill_event}_pill`) return + player.addItemCooldown(item, 100) + server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${player.username} ${x} ${y} ${z} 10 1.5 1`) + }); + + ItemEvents.foodEaten(event => { + const { item, server, player, player: { x, y, z } } = event + if (item.id !== `tfg:${pill_event}_tablet`) return + player.addItemCooldown(item, 100) + server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${player.username} ${x} ${y} ${z} 10 1.5 1`) + }); +}); + +ItemEvents.foodEaten(event => { + const { item, server, player, player: { x, y, z } } = event + if (item.id !== `tfg:antipoison_pill`) return + player.addItemCooldown(item, 50) + event.player.removeEffect('minecraft:poison') + server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${player.username} ${x} ${y} ${z} 10 1.5 1`) +}); + +ItemEvents.foodEaten(event => { + const { item, server, player, player: { x, y, z } } = event + if (item.id !== `tfg:antipoison_tablet`) return + player.addItemCooldown(item, 50) + event.player.removeEffect('minecraft:poison') + event.player.removeEffect('minecraft:wither') + event.player.removeEffect('minecraft:weakness') + event.player.removeEffect('minecraft:slowness') + event.player.removeEffect('minecraft:mining_fatigue') + event.player.removeEffect('minecraft:nausea') + event.player.removeEffect('minecraft:blindness') + event.player.removeEffect('minecraft:hunger') + event.player.removeEffect('minecraft:bad_omen') + event.player.removeEffect('minecraft:darkness') + event.player.removeEffect('minecraft:unluck') + server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${player.username} ${x} ${y} ${z} 10 1.5 1`) +}); + +//salvos +const salvo_event = [ + 'fire_resistance', + 'invisibility', + 'luck', + 'resistance', +]; + +salvo_event.forEach(salvo_event => { + ItemEvents.foodEaten(event => { + const { item, server, player, player: { x, y, z } } = event + if (item.id !== `tfg:${salvo_event}_salvo`) return + player.addItemCooldown(item, 100) + server.runCommandSilent(`playsound minecraft:item.glow_ink_sac.use player ${player.username} ${x} ${y} ${z} 10 2 1`) + }); +}); + +ItemEvents.foodEaten(event => { + const { item, server, player, player: { x, y, z } } = event + if (item.id !== `tfg:absorption_salvo`) return + player.addItemCooldown(item, 200) + server.runCommandSilent(`playsound minecraft:item.glow_ink_sac.use player ${player.username} ${x} ${y} ${z} 10 2 1`) +}); + +ItemEvents.foodEaten(event => { + const { item, server, player, player: { x, y, z } } = event + if (item.id !== `tfg:instant_health_salvo`) return + player.addItemCooldown(item, 100) + server.runCommandSilent(`playsound minecraft:item.glow_ink_sac.use player ${player.username} ${x} ${y} ${z} 10 2 1`) +}); \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.medicine.js b/kubejs/server_scripts/tfg/primitive/medicine/recipes.medicine.js similarity index 98% rename from kubejs/server_scripts/tfg/recipes.medicine.js rename to kubejs/server_scripts/tfg/primitive/medicine/recipes.medicine.js index 306daecd4..59d431279 100644 --- a/kubejs/server_scripts/tfg/recipes.medicine.js +++ b/kubejs/server_scripts/tfg/primitive/medicine/recipes.medicine.js @@ -570,13 +570,4 @@ function registerTFGMedicineRecipes(event) { .EUt(GTValues.VA[GTValues.LV]) //#endregion - - //#region Paracetamol - - event.recipes.firmalife.mixing_bowl() - .ingredients(['tfg:regeneration_pill', 'tfg:weakness_pill', 'tfg:antipoison_pill', 'tfg:slowness_pill'], Fluid.of('tfc:vinegar', 250)) - .outputItem('4x gtceu:paracetamol_pill') - .id(`tfg:mixing_bowl/paracetamol`) - - //#endregion } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/primitive/medicine/tags.medicine.js b/kubejs/server_scripts/tfg/primitive/medicine/tags.medicine.js new file mode 100644 index 000000000..85d964511 --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/medicine/tags.medicine.js @@ -0,0 +1,94 @@ +"use strict"; + +function registerTFGMedicineItemTags(event) { + + event.add('tfg:medicine', 'tfg:antipoison_pill') + event.add('tfg:medicine', 'tfg:antipoison_tablet') + event.add('tfg:medicine', 'tfg:haste_pill') + event.add('tfg:medicine', 'tfg:haste_tablet') + event.add('tfg:medicine', 'tfg:night_vision_pill') + event.add('tfg:medicine', 'tfg:night_vision_tablet') + event.add('tfg:medicine', 'tfg:poison_pill') + event.add('tfg:medicine', 'tfg:poison_tablet') + event.add('tfg:medicine', 'tfg:regeneration_pill') + event.add('tfg:medicine', 'tfg:regeneration_tablet') + event.add('tfg:medicine', 'tfg:slowness_pill') + event.add('tfg:medicine', 'tfg:slowness_tablet') + event.add('tfg:medicine', 'tfg:speed_pill') + event.add('tfg:medicine', 'tfg:speed_tablet') + event.add('tfg:medicine', 'tfg:water_breathing_pill') + event.add('tfg:medicine', 'tfg:water_breathing_tablet') + event.add('tfg:medicine', 'tfg:weakness_pill') + event.add('tfg:medicine', 'tfg:weakness_tablet') + event.add('tfg:medicine', 'tfg:absorption_salvo') + event.add('tfg:medicine', 'tfg:fire_resistance_salvo') + event.add('tfg:medicine', 'tfg:invisibility_salvo') + event.add('tfg:medicine', 'tfg:luck_salvo') + event.add('tfg:medicine', 'tfg:resistance_salvo') + event.add('tfg:medicine', 'tfg:instant_health_salvo') + event.add('tfg:medicine', 'tfg:paracetamol_pill') + event.add('tfg:medicine', 'tfg:rad_away_pill') + + event.add('tfg:antipoison_ingredients', 'tfc:plant/blood_lily') + event.add('tfg:antipoison_ingredients', 'tfc:plant/pistia') + event.add('tfg:antipoison_ingredients', 'tfc:powder/bismuthinite') + event.add('tfg:antipoison_ingredients', 'gtceu:mica_dust') + event.add('tfg:antipoison_ingredients', 'gtceu:fullers_earth_dust') + + event.add('tfg:poison_ingredients', 'tfc:plant/butterfly_milkweed') + event.add('tfg:poison_ingredients', 'tfc:plant/grape_hyacinth') + event.add('tfg:poison_ingredients', 'tfc:plant/lily_of_the_valley') + event.add('tfg:poison_ingredients', 'tfc:plant/pulsatilla') + event.add('tfg:poison_ingredients', 'firmalife:food/nightshade_berry') + event.add('tfg:poison_ingredients', 'minecraft:red_mushroom') + + event.add('tfg:regeneration_ingredients', 'tfc:plant/lilac') + event.add('tfg:regeneration_ingredients', 'tfc:plant/field_horsetail') + event.add('tfg:regeneration_ingredients', 'tfc:plant/licorice_fern') + event.add('tfg:regeneration_ingredients', 'tfc:plant/sacred_datura') + + event.add('tfg:speed_ingredients', 'tfc:plant/labrador_tea') + event.add('tfg:speed_ingredients', 'firmalife:raw_honey') + + event.add('tfg:slowness_ingredients', 'tfc:plant/marigold') + event.add('tfg:slowness_ingredients', 'tfc:plant/nasturtium') + event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_red') + event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_white') + event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_yellow') + + event.add('tfg:weakness_ingredients', 'tfc:plant/laminaria') + event.add('tfg:weakness_ingredients', 'tfc:plant/sea_palm') + event.add('tfg:weakness_ingredients', 'tfc:plant/sea_lavender') + event.add('tfg:weakness_ingredients', 'tfc:plant/canna') + event.add('tfg:weakness_ingredients', 'tfc:plant/water_canna') + + event.add('tfg:haste_ingredients', '#tfg:sugars') + + event.add('tfg:water_breathing_ingredients', 'tfc:powder/saltpeter') + event.add('tfg:water_breathing_ingredients', 'tfc:powder/charcoal') + event.add('tfg:water_breathing_ingredients', 'tfg:rapeseed_product') + + event.add('tfg:night_vision_ingredients', 'tfc:food/carrot') + event.add('tfg:night_vision_ingredients', 'beneath:gleamflower') + event.add('tfg:night_vision_ingredients', 'tfg:sunflower_product') + + event.add('tfg:invisibility_ingredients', 'tfc:plant/calendula') + event.add('tfg:invisibility_ingredients', 'tfc:plant/snapdragon_pink') + + event.add('tfg:absorption_ingredients', 'tfc:plant/poppy') + event.add('tfg:absorption_ingredients', 'beneath:burpflower') + + event.add('tfg:fire_resistance_ingredients', 'tfc:plant/cattail') + event.add('tfg:fire_resistance_ingredients', 'tfc:plant/meads_milkweed') + event.add('tfg:fire_resistance_ingredients', 'firmalife:plant/bay_laurel') + event.add('tfg:fire_resistance_ingredients', 'beneath:ghost_pepper') + + event.add('tfg:resistance_ingredients', 'tfc:plant/hibiscus') + event.add('tfg:resistance_ingredients', 'gtceu:calcium_dust') + + event.add('tfg:instant_health_ingredients', 'tfc:plant/foxglove') + event.add('tfg:instant_health_ingredients', 'tfc:plant/artists_conk') + + event.add('tfg:luck_ingredients', 'tfc:plant/goldenrod') + event.add('tfg:luck_ingredients', 'tfc:plant/heather') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/primitive/recipes.arrows.js b/kubejs/server_scripts/tfg/primitive/recipes.arrows.js new file mode 100644 index 000000000..81482c127 --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.arrows.js @@ -0,0 +1,84 @@ +"use strict"; + +function registerTFGArrowRecipes(event) { + // Arrow Parts + event.recipes.tfc.knapping( + '4x tfg:flint_arrow_head', + 'tfg:flint', + [ + ' XXX', + ' XXXX', + 'XXXXX', + ' XXX ', + ' X ' + ] + ).outsideSlotRequired(false) + .id('tfg:knapping/flint_arrow_head') + + event.recipes.gtceu.cutter('tfg:assembler/flint_arrow_head') + .itemInputs('1x minecraft:flint') + .itemOutputs('4x tfg:flint_arrow_head') + .duration(20) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless('4x tfg:fletching', [ + 'minecraft:feather', + '#forge:tools/knives' + ]).id('tfg:shapeless/fletching')) + + event.recipes.gtceu.assembler('tfg:assembler/fletching') + .itemInputs('1x minecraft:feather') + .itemOutputs('4x tfg:fletching') + .duration(20) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) + + event.shaped('minecraft:arrow', [ + ' A ', + ' B ', + ' C ' + ], { + A: 'tfg:flint_arrow_head', + B: '#forge:rods/wooden', + C: 'tfg:fletching' + }).id('tfg:shaped/arrow') + + event.shaped('minecraft:arrow', [ + ' A ', + ' B ', + ' C ' + ], { + A: 'primitive_creatures:tt_5', + B: '#forge:rods/wooden', + C: 'tfg:fletching' + }).id('tfg:shaped/arrow_shard') + + // Wraptor feathers + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless('4x tfg:fletching', [ + 'tfg:wraptor_wool', + '#forge:tools/knives' + ]).id('tfg:shapeless/wraptor_feather_fletching')) + + event.recipes.gtceu.assembler('tfg:assembler/wraptor_feather_fletching') + .itemInputs('1x tfg:wraptor_wool') + .itemOutputs('4x tfg:fletching') + .duration(20) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) + + // Glider feathers + 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]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/primitive/recipes.baskets.js b/kubejs/server_scripts/tfg/primitive/recipes.baskets.js new file mode 100644 index 000000000..a6bdc30ff --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.baskets.js @@ -0,0 +1,64 @@ +"use strict"; + +function registerTFGBasketRecipes(event) { + event.shaped('tfg:harvest_basket', [ + 'BDB', + 'ACA', + 'AAA' + ], { + A: 'tfg:soaked_hardwood_strip', + B: ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 1), + C: 'tfc:glue', + D: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1) + }).id('tfg:shaped/harvest_basket_from_wood') + + event.recipes.gtceu.assembler('tfg:assembler/harvest_basket_from_wood') + .itemInputs( + '5x tfg:soaked_hardwood_strip', + ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 2), + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1) + ) + .inputFluids(Fluid.of('gtceu:glue', 50)) + .itemOutputs('tfg:harvest_basket') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.shaped('tfg:harvest_basket', [ + 'BDB', + 'ACA', + 'AAA' + ], { + A: 'tfc:soaked_papyrus_strip', + B: ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 1), + C: 'tfc:glue', + D: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1) + }).id('tfg:shaped/harvest_basket_from_papyrus') + + event.recipes.gtceu.assembler('tfg:assembler/harvest_basket_from_papyrus') + .itemInputs( + '5x tfc:soaked_papyrus_strip', + ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 2), + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1) + ) + .inputFluids(Fluid.of('gtceu:glue', 50)) + .itemOutputs('tfg:harvest_basket') + .circuit(2) + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.assembler('tfg:assembler/aluminium_harvest_basket') + .itemInputs( + ChemicalHelper.get(TagPrefix.plate, GTMaterials.Aluminium, 3), + ChemicalHelper.get(TagPrefix.foil, GTMaterials.Aluminium, 2), + ChemicalHelper.get(TagPrefix.bolt, GTMaterials.Steel, 2), + ChemicalHelper.get(TagPrefix.rodLong, + GTMaterials.Aluminium, 1) + ) + .inputFluids(Fluid.of('gtceu:cobalt_brass', 144)) + .itemOutputs('tfg:aluminium_harvest_basket') + .duration(200) + .circuit(4) + .EUt(GTValues.VA[GTValues.LV]) + .addMaterialInfo(true) + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/primitive/recipes.clay.js b/kubejs/server_scripts/tfg/primitive/recipes.clay.js new file mode 100644 index 000000000..9d6db8bbe --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.clay.js @@ -0,0 +1,222 @@ +ο»Ώ"use strict"; + +function registerTFGClayRecipes(event) { + + event.shapeless('tfc:crucible', ['tfc:crucible']).id('tfg:empty_crucible') + + event.shaped('minecraft:clay', [ + 'AA', + 'AA' + ], { + A: 'minecraft:clay_ball' + }).id('tfg:shaped/clay_balls_to_block') + + event.shapeless('4x minecraft:clay_ball', ['minecraft:clay']) + .id('tfg:shapeless/clay_block_to_balls') + + const TFC_FURNACE_MOLD_RECIPE_COMPONENTS = /** @type {const} */ ([ + { input: "tfc:ceramic/unfired_ingot_mold", output: "tfc:ceramic/ingot_mold", name: "ingot_mold" }, + { input: "tfc:ceramic/unfired_pickaxe_head_mold", output: "tfc:ceramic/pickaxe_head_mold", name: "pickaxe_head_mold" }, + { input: "tfc:ceramic/unfired_propick_head_mold", output: "tfc:ceramic/propick_head_mold", name: "propick_head_mold" }, + { input: "tfc:ceramic/unfired_axe_head_mold", output: "tfc:ceramic/axe_head_mold", name: "axe_head_mold" }, + { input: "tfc:ceramic/unfired_shovel_head_mold", output: "tfc:ceramic/shovel_head_mold", name: "shovel_head_mold" }, + { input: "tfc:ceramic/unfired_hoe_head_mold", output: "tfc:ceramic/hoe_head_mold", name: "hoe_head_mold" }, + { input: "tfc:ceramic/unfired_chisel_head_mold", output: "tfc:ceramic/chisel_head_mold", name: "chisel_head_mold" }, + { input: "tfc:ceramic/unfired_hammer_head_mold", output: "tfc:ceramic/hammer_head_mold", name: "hammer_head_mold" }, + { input: "tfc:ceramic/unfired_saw_blade_mold", output: "tfc:ceramic/saw_blade_mold", name: "saw_blade_mold" }, + { input: "tfc:ceramic/unfired_javelin_head_mold", output: "tfc:ceramic/javelin_head_mold", name: "javelin_head_mold" }, + { input: "tfc:ceramic/unfired_sword_blade_mold", output: "tfc:ceramic/sword_blade_mold", name: "sword_blade_mold" }, + { input: "tfc:ceramic/unfired_mace_head_mold", output: "tfc:ceramic/mace_head_mold", name: "mace_head_mold" }, + { input: "tfc:ceramic/unfired_knife_blade_mold", output: "tfc:ceramic/knife_blade_mold", name: "knife_blade_mold" }, + { input: "tfc:ceramic/unfired_scythe_blade_mold", output: "tfc:ceramic/scythe_blade_mold", name: "scythe_blade_mold" }, + { input: "tfc:ceramic/unfired_bell_mold", output: "tfc:ceramic/bell_mold", name: "bell_mold" }, + { input: "tfc:ceramic/unfired_fire_ingot_mold", output: "tfc:ceramic/fire_ingot_mold", name: "fire_ingot_mold" }, + { input: "tfc:ceramic/unfired_brick", output: "minecraft:brick", name: "brick" }, + { input: "tfc:ceramic/unfired_crucible", output: "tfc:crucible", name: "crucible" }, + { input: "tfc:ceramic/unfired_flower_pot", output: "minecraft:flower_pot", name: "flower_pot" }, + { input: "tfc:ceramic/unfired_pan", output: "tfc:pan/empty", name: "pan" }, + { input: "tfc:ceramic/unfired_blowpipe", output: "tfc:ceramic_blowpipe", name: "ceramic_blowpipe" }, + { input: "tfc:ceramic/unfired_bowl", output: "tfc:ceramic/bowl", name: "bowl" }, + { input: "tfc:ceramic/unfired_fire_brick", output: "tfc:ceramic/fire_brick", name: "fire_brick" }, + { input: "tfc:ceramic/unfired_jug", output: "tfc:ceramic/jug", name: "jug" }, + { input: "tfc:ceramic/unfired_pot", output: "tfc:ceramic/pot", name: "pot" }, + { input: "tfc:ceramic/unfired_spindle_head", output: "tfc:ceramic/spindle_head", name: "spindle_head" }, + { input: "tfc:ceramic/unfired_vessel", output: "tfc:ceramic/vessel", name: "vessel" }, + { input: "tfc:ceramic/unfired_large_vessel", output: "tfc:ceramic/large_vessel", name: "large_vessel" }, + { input: "tfcchannelcasting:unfired_channel", output: "tfcchannelcasting:channel", name: "channel" }, + { input: "tfcchannelcasting:unfired_mold_table", output: "tfcchannelcasting:mold_table", name: "mold_table" }, + { input: "firmalife:oven_top", output: "firmalife:cured_oven_top", name: "oven_top" }, + { input: "firmalife:oven_chimney", output: "firmalife:cured_oven_chimney", name: "oven_chimney" }, + { input: "firmalife:oven_bottom", output: "firmalife:cured_oven_bottom", name: "oven_bottom" }, + { input: "firmalife:oven_hopper", output: "firmalife:cured_oven_hopper", name: "oven_hopper" }, + { input: "tfg:unfired_rod_mold", output: "tfg:rod_mold", name: "rod_mold" }, + { input: "tfg:unfired_small_gear_mold", output: "tfg:small_gear_mold", name: "small_gear_mold" }, + { input: "tfg:unfired_nugget_mold", output: "tfg:nugget_mold", name: "nugget_mold" } + ]); + + TFC_FURNACE_MOLD_RECIPE_COMPONENTS.forEach(element => { + event.smelting(element.output, element.input) + .id(`tfg:smelting/${element.name}`) + }) + + global.MINECRAFT_DYE_NAMES.forEach(dye => { + event.smelting(`tfc:ceramic/${dye}_glazed_vessel`, `tfc:ceramic/${dye}_unfired_vessel`) + .id(`tfg:smelting/${dye}_glazed_vessel`) + + event.smelting(`tfc:ceramic/large_vessel/${dye}`, `tfc:ceramic/unfired_large_vessel/${dye}`) + .id(`tfg:smelting/${dye}_large_vessel`) + }) + + const TFC_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS = /** @type {const} */ ([ + { input: "5x minecraft:clay_ball", output: "2x tfc:ceramic/unfired_flower_pot", name: "flower_pot" }, + { input: "5x minecraft:clay_ball", output: "4x tfc:ceramic/unfired_bowl", name: "bowl" }, + { input: "5x minecraft:clay_ball", output: "10x rnr:unfired_roof_tile", name: "roof_tile" }, + { input: "5x minecraft:clay_ball", output: "firmalife:oven_top", name: "oven_top" }, + { input: "5x minecraft:clay_ball", output: "firmalife:oven_chimney", name: "oven_chimney" }, + { input: "5x minecraft:clay_ball", output: "firmalife:oven_bottom", name: "oven_bottom" } + ]); + + for (let i = 0; i < TFC_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS.length; i++) { + let element = TFC_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS[i]; + + event.recipes.gtceu.assembler(`tfg:tfc/${element.name}`) + .itemInputs(element.input) + .circuit(i) + .itemOutputs(element.output) + .duration(450) + .EUt(2) + } + + const TFC_FIRE_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS = /** @type {const} */ ([ + { input: "5x tfc:fire_clay", output: "tfc:ceramic/unfired_crucible", name: "crucible" } + ]); + + for (let i = 0; i < TFC_FIRE_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS.length; i++) { + let element = TFC_FIRE_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS[i]; + + event.recipes.gtceu.assembler(`tfg:tfc/${element.name}`) + .itemInputs(element.input) + .circuit(i) + .itemOutputs(element.output) + .duration(450) + .EUt(2) + } + + event.shapeless('3x tfc:ceramic/unfired_brick', ['4x minecraft:clay_ball', 'gtceu:brick_wooden_form', 'minecraft:clay_ball']) + .id('tfg:shapeless/unfired_brick_via_wooden_form') + + event.shapeless('3x tfc:ceramic/unfired_fire_brick', ['4x tfc:fire_clay', 'gtceu:brick_wooden_form', 'tfc:fire_clay']) + .id('tfg:shapeless/unfired_fire_brick_via_wooden_form') + + event.recipes.gtceu.extruder('tfg:unfired_clay_brick') + .itemInputs('minecraft:clay_ball') + .notConsumable('gtceu:ingot_extruder_mold') + .itemOutputs('tfc:ceramic/unfired_brick') + .duration(20) + .EUt(2) + + event.recipes.gtceu.extruder('tfg:unfired_fire_clay_brick') + .itemInputs('tfc:fire_clay') + .notConsumable('gtceu:ingot_extruder_mold') + .itemOutputs('tfc:ceramic/unfired_fire_brick') + .duration(20) + .EUt(2) + + // Kaolinite Clay - regular smelting recipes can't have multiple inputs + event.recipes.gtceu.alloy_smelter('tfg:kaolinite') + .itemInputs('tfc:kaolin_clay') + .circuit(1) + .chancedOutput('tfc:powder/kaolinite', 2000, 0) + .duration(100) + .EUt(16) + + // Fire Clay + event.recipes.gtceu.alloy_smelter('tfg:cheaper_fire_clay') + .itemInputs('#forge:dusts/graphite', '4x tfc:kaolin_clay') + .itemOutputs('2x tfc:fire_clay') + .duration(600) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.alloy_smelter('tfg:oops_i_smelted_all_my_kaolin') + .itemInputs('minecraft:clay_ball', 'tfc:powder/kaolinite') + .itemOutputs('tfc:kaolin_clay') + .duration(600) + .EUt(GTValues.VA[GTValues.ULV]) + + // Compressed Coke Clay + event.shaped('gtceu:compressed_coke_clay', [ + 'AAA', + 'BCB', + 'BBB' + ], { + A: 'minecraft:clay_ball', + B: '#forge:sand', + C: 'gtceu:brick_wooden_form' + }).replaceIngredient('gtceu:brick_wooden_form', 'gtceu:brick_wooden_form').id('gtceu:shaped/compressed_coke_clay') + + // Coke Oven Brick + event.recipes.tfc.heating('gtceu:compressed_coke_clay', 1399) + .resultItem('gtceu:coke_oven_brick') + .id('tfg:heating/coke_oven_bricks') + + event.recipes.gtceu.alloy_smelter('gtceu:coke_oven_brick') + .itemInputs('3x #forge:sand', '2x minecraft:clay_ball') + .itemOutputs('gtceu:coke_oven_brick') + .duration(7.5 * 20) + .EUt(GTValues.VA[GTValues.ULV]) + + // Ceramic Recycling + event.recipes.gtceu.macerator('tfg:sherd_to_brick_dust') + .itemInputs('firmalife:pottery_sherd') + .itemOutputs('#forge:dusts/brick') + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .duration(20) + .EUt(2) + + event.recipes.gtceu.macerator('tfg:ceramic_molds') + .itemInputs('#tfc:fired_molds') + .itemOutputs('2x #forge:dusts/brick') + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .duration(20) + .EUt(2) + + event.recipes.gtceu.macerator('tfg:large_vessels') + .itemInputs('#tfc:fired_large_vessels') + .itemOutputs('5x #forge:dusts/brick') + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .duration(20) + .EUt(2) + + event.recipes.gtceu.macerator('tfg:casting_channel') + .itemInputs('tfcchannelcasting:channel') + .itemOutputs('1x #forge:dusts/brick') + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .duration(20) + .EUt(2) + + event.recipes.gtceu.macerator('tfg:mold_table') + .itemInputs('tfcchannelcasting:mold_table') + .itemOutputs('5x #forge:dusts/brick') + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .duration(20) + .EUt(2) + + // Renewable clay + + event.remove({ id: 'gtceu:electrolyzer/decomposition_electrolyzing_clay' }) + + event.recipes.gtceu.rock_breaker("clay_duping") + .notConsumable('minecraft:clay') + .itemOutputs('minecraft:clay') + .adjacentFluids(["tfc:salt_water", "tfc:spring_water"]) + .duration(50) + .EUt(GTValues.VA[GTValues.LV]) + + // heating + event.recipes.tfc.heating('tfg:unfired_rod_mold', 1399) + .resultItem('tfg:rod_mold') + event.recipes.tfc.heating('tfg:unfired_small_gear_mold', 1399) + .resultItem('tfg:small_gear_mold') + event.recipes.tfc.heating('tfg:unfired_nugget_mold', 1399) + .resultItem('tfg:nugget_mold') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/primitive/recipes.cloth.js b/kubejs/server_scripts/tfg/primitive/recipes.cloth.js new file mode 100644 index 000000000..624402e90 --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.cloth.js @@ -0,0 +1,255 @@ +"use strict"; + +function registerTFGClothRecipes(event) { + + //Cloth & String + event.recipes.gtceu.wiremill('tfg:wiremill/phantom_thread') + .itemInputs('1x minecraft:phantom_membrane') + .itemOutputs('16x tfg:phantom_thread') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.wiremill('tfg:wiremill/polycaprolactam_string') + .itemInputs(ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Polycaprolactam, 1)) + .itemOutputs('32x tfg:polycaprolactam_string') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.assembler('tfg:assembler/phantom_silk') + .itemInputs('16x tfg:phantom_thread') + .itemOutputs('1x tfg:phantom_silk') + .duration(100) + .circuit(3) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.assembler('tfg:assembler/polycaprolactam_fabric') + .itemInputs('16x tfg:polycaprolactam_string') + .itemOutputs('1x tfg:polycaprolactam_fabric') + .duration(100) + .circuit(3) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.chemical_bath('tfg:chemical_bath/bleaching/polycaprolactam_string') + .itemInputs('tfg:polycaprolactam_string') + .inputFluids(Fluid.of('gtceu:chlorine', 16)) + .itemOutputs('minecraft:string') + .duration(80) + .EUt(GTValues.VA[GTValues.ULV]) + .category(GTRecipeCategories.CHEM_DYES) + + event.recipes.tfc.loom( + '1x tfg:phantom_silk', + '16x tfg:phantom_thread', + 8, + 'tfg:block/phantom_silk_block' + ) + + event.recipes.tfc.loom( + '1x tfg:polycaprolactam_fabric', + '16x tfg:polycaprolactam_string', + 8, + 'tfg:block/polycaprolactam_fabric_block' + ) + + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless('16x tfg:phantom_thread', [ + 'minecraft:phantom_membrane', + 'tfc:spindle' + ]).id('tfg:shapeless/phantom_thread')) + + // Wool Yarn + event.recipes.gtceu.wiremill('tfg:tfc/wool_yarn') + .itemInputs('tfc:wool') + .itemOutputs('8x tfc:wool_yarn') + .duration(100) + .EUt(4) + + // Burlap Cloth + event.recipes.gtceu.assembler('tfg:tfc/burlap_cloth') + .itemInputs('12x tfc:jute_fiber') + .circuit(0) + .itemOutputs('tfc:burlap_cloth') + .duration(100) + .EUt(4) + + // Silk Cloth + event.recipes.gtceu.assembler('tfg:tfc/silk_cloth') + .itemInputs('24x minecraft:string') + .circuit(0) + .itemOutputs('tfc:silk_cloth') + .duration(100) + .EUt(4) + + // Wool Cloth + event.recipes.gtceu.assembler('tfg:tfc/wool_cloth') + .itemInputs('16x tfc:wool_yarn') + .circuit(0) + .itemOutputs('tfc:wool_cloth') + .duration(100) + .EUt(4) + + // Cloths to Wool + event.recipes.gtceu.assembler('tfg:tfc/cloth_to_wool') + .itemInputs('4x #tfc:sewing_light_cloth') + .itemOutputs('8x minecraft:white_wool') + .circuit(16) + .duration(100) + .EUt(4) + + // Wool Yarn + event.recipes.gtceu.macerator('macerate_wool') + .itemInputs('#minecraft:wool') + .itemOutputs('tfc:wool_yarn') + .chancedOutput('tfc:wool_yarn', 9000, 0) + .chancedOutput('tfc:wool_yarn', 5000, 0) + .chancedOutput('tfc:wool_yarn', 2000, 0) + .duration(200) + .EUt(2) + + // Jute Fiber + generateMixerRecipe(event, 'tfc:jute', "#tfg:clean_water 200", + 'tfc:jute_fiber', null, [], 100, 4, 16, 'tfg:tfc/jute_fiber') + + //#region flax stuff + + event.shapeless('1x tfg:flax_bundle', ['9x tfg:flax_product']) + event.recipes.gtceu.packer('tfg:packer/flax_bundle') + .itemInputs('9x tfg:flax_product') + .itemOutputs('tfg:flax_bundle') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.shapeless('1x tfg:bundled_scraped_flax', ['9x tfg:flax_waste']) + event.recipes.gtceu.packer('tfg:packer/bundled_scraped_flax') + .itemInputs('9x tfg:flax_waste') + .itemOutputs('tfg:bundled_scraped_flax') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + 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( + 'tfg:bundled_scraped_flax', + 'tfg:flax_bundle', + 'tfg:item/bundled_scraped_flax', + 'tfg:item/flax_bundle', + '18x tfg:flax_line' + ).id('tfg:scraping/flax_line_from_bundle') + + 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.scraping( + '9x tfc:groundcover/humus', + 'tfg:bundled_scraped_flax', + 'tfc:item/groundcover/humus', + 'tfg:item/bundled_scraped_flax', + '9x tfg:flax_tow' + ).id('tfg:scraping/flax_tow_from_pile') + + event.recipes.gtceu.cutter('tfg:flax_line_in_cutter') + .itemInputs('tfg:flax_product') + .itemOutputs('2x tfg:flax_line', 'tfg:flax_waste') + .duration(60) + .EUt(2) + + event.recipes.gtceu.cutter('tfg:flax_line_from_bundle_in_cutter') + .itemInputs('tfg:flax_bundle') + .itemOutputs('18x tfg:flax_line', 'tfg:bundled_scraped_flax') + .duration(540) + .EUt(2) + + event.recipes.gtceu.cutter('tfg:flax_tow_in_cutter') + .itemInputs('tfg:flax_waste') + .itemOutputs('1x tfg:flax_tow', '1x tfc:groundcover/humus') + .duration(60) + .EUt(2) + + event.recipes.gtceu.cutter('tfg:flax_tow_from_bundle_in_cutter') + .itemInputs('tfg:bundled_scraped_flax') + .itemOutputs('9x tfg:flax_tow', '9x tfc:groundcover/humus') + .duration(540) + .EUt(2) + + event.recipes.gtceu.centrifuge('tfg:flax_product') + .itemInputs('tfg:flax_product') + .itemOutputs('2x tfg:flax_line', 'tfg:flax_tow', 'tfc:groundcover/humus') + .duration(200) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.centrifuge('tfg:flax_product_from_bundle') + .itemInputs('tfg:flax_bundle') + .itemOutputs('18x tfg:flax_line', '9x tfg:flax_tow', '9x tfc:groundcover/humus') + .duration(1800) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.vintageimprovements.centrifugation(['2x tfg:flax_line', 'tfg:flax_tow', 'tfc:groundcover/humus'], 'tfg:flax_product') + .processingTime(200 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi_seperate_flax') + + event.recipes.vintageimprovements.centrifugation(['18x tfg:flax_line', '9x tfg:flax_tow', '9x tfc:groundcover/humus'], 'tfg:flax_bundle') + .processingTime(1500 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi_seperate_flax_from_bundle') + + // #endregion + + //#region flax line spinning + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless('4x tfg:linen_thread', [ + 'tfg:flax_line', + 'tfc:spindle' + ]).id('tfg:shapeless/linen_thread') + ) + + event.recipes.vintageimprovements.coiling('4x tfg:linen_thread', 'tfg:flax_line') + .processingTime(20 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .springColor('F6E6B5') + .id('tfg:vi_spin_flax_line') + + event.recipes.gtceu.wiremill('tfg:spin_flax_line') + .itemInputs('tfg:flax_line') + .itemOutputs('4x tfg:linen_thread') + .duration(80) + .EUt(GTValues.VA[GTValues.LV]) + //#endregion + //#region flax 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) + //#endregion +} diff --git a/kubejs/server_scripts/tfg/primitive/recipes.compost.js b/kubejs/server_scripts/tfg/primitive/recipes.compost.js new file mode 100644 index 000000000..623e231a2 --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.compost.js @@ -0,0 +1,194 @@ +"use strict"; + +function registerTFGCompostRecipes(event) { + //#region Fertiliser + event.recipes.gtceu.mixer('tfg:fertilizer') + .itemInputs( + '#tfc:dirt', + '2x #tfg:wood_dusts', + '4x #forge:sand' + ) + .circuit(1) + .inputFluids("#tfg:clean_water 1000") + .itemOutputs('4x gtceu:fertilizer') + .duration(300) + .EUt(30) + + event.recipes.gtceu.mixer('tfg:fertilizer_2') + .itemInputs('tfc:compost') + .inputFluids('#tfg:clean_water 1000') + .itemOutputs('4x gtceu:fertilizer') + .duration(300) + .EUt(30) + + event.recipes.gtceu.centrifuge('tfg:gtceu/centrifuge/pure_fertilizers') + .itemInputs('1x gtceu:fertilizer') + .itemOutputs('1x tfc:pure_nitrogen', '1x tfc:pure_potassium', '1x tfc:pure_phosphorus') + .duration(340) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.mixer('tfg:tfc/mixer/fertilizer') + .itemInputs('1x tfc:pure_nitrogen', '1x tfc:pure_potassium', '1x tfc:pure_phosphorus', ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Clay, 1)) + .itemOutputs('1x gtceu:fertilizer') + .duration(160) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.gas_pressurizer('tfg:pure_nitrogen') + .itemInputs('#forge:wax') + .inputFluids(Fluid.of('gtceu:nitrogen', 1000)) + .itemOutputs('16x tfc:pure_nitrogen') + .duration(100) + .EUt(GTValues.VA[GTValues.LV]) + //#endregion + + // Humus and compost + event.recipes.gtceu.extractor('tfg:humus_from_leaves') + .itemInputs('#minecraft:leaves') + .itemOutputs('tfc:groundcover/humus') + .duration(600) + .EUt(2) + + event.recipes.gtceu.extractor('tfg:humus_from_fallen_leaves') + .itemInputs('#tfc:fallen_leaves') + .itemOutputs('tfc:groundcover/humus') + .duration(600) + .EUt(2) + + event.recipes.gtceu.fermenter('tfg:fertilizer_to_compost') + .itemInputs('4x gtceu:fertilizer') + .itemOutputs('tfc:compost') + .duration(1200) + .EUt(2) + + const BROWNS = [ '16x #tfc:compost_browns_low', '8x #tfc:compost_browns', '4x #tfc:compost_browns_high' ]; + const GREENS = [ '16x #tfc:compost_greens_low', '8x #tfc:compost_greens', '4x #tfc:compost_greens_high' ]; + + let i = 0; + BROWNS.forEach(brown => { + GREENS.forEach(green => { + event.recipes.gtceu.mixer(`tfg:compost_${i++}`) + .itemInputs(brown, green) + .itemOutputs('tfc:compost') + .duration(1200) + .EUt(2) + }) + }) + + //Greens + // Lows via crafting with mortar + event.shaped(Item.of('tfg:universal_compost_greens', 1), [ + 'AB' + ], { + A: '#tfc:compost_greens_low', + B: '#forge:tools/mortars' + }).id('tfg:shaped/universal_compost_greens_from_low') + + // Mediums via crafting with mortar + event.shaped(Item.of('tfg:universal_compost_greens', 2), [ + 'AB' + ], { + A: '#tfc:compost_greens', + B: '#forge:tools/mortars' + }).id('tfg:shaped/universal_compost_greens_from_medium') + + // Highs via crafting with mortar + event.shaped(Item.of('tfg:universal_compost_greens', 4), [ + 'AB' + ], { + A: '#tfc:compost_greens_high', + B: '#forge:tools/mortars' + }).id('tfg:shaped/universal_compost_greens_from_high') + + // Filters + const greens_low = Ingredient.of('#tfc:compost_greens_low') + const browns_low = Ingredient.of('#tfc:compost_browns_low').itemIds + const greens_medium = Ingredient.of('#tfc:compost_greens') + const browns_medium = Ingredient.of('#tfc:compost_browns').itemIds + const greens_high = Ingredient.of('#tfc:compost_greens_high') + const browns_high = Ingredient.of('#tfc:compost_browns_high').itemIds + + let low_filtered = greens_low + let medium_filtered = greens_medium + let high_filtered = greens_high + + browns_low.forEach(item => { + low_filtered = low_filtered.subtract(item) + low_filtered = low_filtered.subtract('tfg:universal_compost_greens') + }) + browns_medium.forEach(item => { + medium_filtered = medium_filtered.subtract(item) + }) + browns_high.forEach(item => { + high_filtered = high_filtered.subtract(item) + }) + + // Lows via forge hammer + event.recipes.gtceu.forge_hammer('tfg:universal_compost_greens_low') + .itemInputs(low_filtered) + .itemOutputs('tfg:universal_compost_greens') + .duration(20) + .EUt(8) + + // Mediums via forge hammer + event.recipes.gtceu.forge_hammer('tfg:universal_compost_greens_medium') + .itemInputs(medium_filtered) + .itemOutputs(Item.of('tfg:universal_compost_greens', 2)) + .duration(20) + .EUt(8) + + // Highs via forge hammer + event.recipes.gtceu.forge_hammer('tfg:universal_compost_greens_high') + .itemInputs(high_filtered) + .itemOutputs(Item.of('tfg:universal_compost_greens', 4)) + .duration(20) + .EUt(8) + + //Browns + // Lows via crafting with mortar + event.shaped(Item.of('tfg:universal_compost_browns', 1), [ + 'A', + 'B' + ], { + A: '#tfc:compost_browns_low', + B: '#forge:tools/mortars' + }).id('tfg:shaped/universal_compost_browns_from_low') + + // Mediums via crafting with mortar + event.shaped(Item.of('tfg:universal_compost_browns', 2), [ + 'A', + 'B' + ], { + A: '#tfc:compost_browns', + B: '#forge:tools/mortars' + }).id('tfg:shaped/universal_compost_browns_from_medium') + + // Highs via crafting with mortar + event.shaped(Item.of('tfg:universal_compost_browns', 4), [ + 'A', + 'B' + ], { + A: '#tfc:compost_browns_high', + B: '#forge:tools/mortars' + }).id('tfg:shaped/universal_compost_browns_from_high') + + // Lows via forge hammer + event.recipes.gtceu.forge_hammer('tfg:universal_compost_browns_low') + .itemInputs('#tfc:compost_browns_low') + .itemOutputs('tfg:universal_compost_browns') + .duration(20) + .EUt(8) + + // Mediums via forge hammer + event.recipes.gtceu.forge_hammer('tfg:universal_compost_browns_medium') + .itemInputs('#tfc:compost_browns') + .itemOutputs(Item.of('tfg:universal_compost_browns', 2)) + .duration(20) + .EUt(8) + + // Highs via forge hammer + event.recipes.gtceu.forge_hammer('tfg:universal_compost_browns_high') + .itemInputs('#tfc:compost_browns_high') + .itemOutputs(Item.of('tfg:universal_compost_browns', 4)) + .duration(20) + .EUt(8) +} \ No newline at end of file diff --git a/kubejs/server_scripts/minecraft/recipes.dyes.js b/kubejs/server_scripts/tfg/primitive/recipes.dyes.js similarity index 95% rename from kubejs/server_scripts/minecraft/recipes.dyes.js rename to kubejs/server_scripts/tfg/primitive/recipes.dyes.js index 4a7c41962..a7f97bc90 100644 --- a/kubejs/server_scripts/minecraft/recipes.dyes.js +++ b/kubejs/server_scripts/tfg/primitive/recipes.dyes.js @@ -1,7 +1,7 @@ ο»Ώ// priority: 0 "use strict"; -function registerMinecraftDyeRecipes(event) { +function registerTFGDyeRecipes(event) { global.MINECRAFT_DYE_NAMES.forEach(dye => { event.remove({ id: `minecraft:dye_${dye}_wool` }) @@ -9,8 +9,7 @@ function registerMinecraftDyeRecipes(event) { event.remove({ id: `minecraft:dye_${dye}_carpet` }) event.remove({ id: `minecraft:${dye}_bed` }) event.remove({ id: `minecraft:dye_${dye}_bed` }) - - //#region Π’Ρ‹Ρ…ΠΎΠ΄: ΠšΠΎΠ²Ρ€Ρ‹, ΠšΡ€ΠΎΠ²Π°Ρ‚ΠΈ + event.remove({ id: `tfc:crafting/vanilla/color/${dye}_concrete_powder` }) event.shapeless(`2x minecraft:${dye}_carpet`, [ '#tfc:saws', @@ -25,17 +24,12 @@ function registerMinecraftDyeRecipes(event) { .duration(300) .EUt(4) .category(GTRecipeCategories.CHEM_DYES) - - event.recipes.gtceu.chemical_bath(`${dye}_bed`) - .itemInputs(`minecraft:white_bed`) - .inputFluids(Fluid.of(`tfc:${dye}_dye`, 216)) - .itemOutputs(`minecraft:${dye}_bed`) - .duration(300) - .EUt(4) - .category(GTRecipeCategories.CHEM_DYES) } - //#endregion + event.recipes.tfc.barrel_instant() + .inputs(`minecraft:${dye}_concrete_powder`, TFC.fluidStackIngredient('minecraft:water', 100)) + .outputItem(`minecraft:${dye}_concrete`) + .id(`tfg:barrel/dye/${dye}_concrete`); }) // White diff --git a/kubejs/server_scripts/tfg/primitive/recipes.glue_and_chipboard.js b/kubejs/server_scripts/tfg/primitive/recipes.glue_and_chipboard.js new file mode 100644 index 000000000..b6d6c956d --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.glue_and_chipboard.js @@ -0,0 +1,158 @@ +"use strict"; + +function registerTFGChipboardRecipes(event) { + + // Glue from resin + event.recipes.gtceu.extractor('tfg:glue_from_tfc_glue') + .itemInputs('tfc:glue') + .outputFluids(Fluid.of('gtceu:glue', 50)) + .duration(20 * 10) + .EUt(5) + + event.recipes.gtceu.extractor('tfg:glue_from_sticky_resin') + .itemInputs('gtceu:sticky_resin') + .outputFluids(Fluid.of('gtceu:glue', 100)) + .duration(20 * 10) + .EUt(5) + + event.recipes.gtceu.extractor('tfg:glue_from_conifer_resin') + .itemInputs('tfg:conifer_rosin') + .outputFluids(Fluid.of('gtceu:glue', 50)) + .duration(20 * 10) + .EUt(5) + + event.recipes.gtceu.mixer('tfg:glue_from_bone_meal') + .itemInputs('minecraft:bone_meal') + .inputFluids(Fluid.of('tfc:limewater', 500)) + .outputFluids(Fluid.of('gtceu:glue', 50)) + .duration(100) + .EUt(5) + + // Chipboard + event.recipes.firmalife.mixing_bowl() + .itemIngredients(['#tfg:wood_dusts', '#tfg:wood_dusts', 'tfc:glue']) + .outputItem('2x tfg:chipboard_composite') + .id('tfg:mixing_bowl/chipboard_composite_glue') + + event.recipes.firmalife.mixing_bowl() + .itemIngredients(['#tfg:wood_dusts', '#tfg:wood_dusts', '#tfg:wood_dusts', '#tfg:wood_dusts', 'gtceu:sticky_resin']) + .outputItem('4x tfg:chipboard_composite') + .id('tfg:mixing_bowl/chipboard_composite_resin') + + event.recipes.firmalife.mixing_bowl() + .itemIngredients(['#tfg:wood_dusts', '#tfg:wood_dusts', '#forge:wax']) + .outputItem('2x tfg:chipboard_composite') + .id('tfg:mixing_bowl/chipboard_composite_wax') + + event.recipes.gtceu.mixer('gtceu:chipboard_composite_wax') + .itemInputs('2x #tfg:wood_dusts', + '1x #forge:wax') + .itemOutputs('2x tfg:chipboard_composite') + .duration(100) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.mixer('gtceu:chipboard_composite_resin') + .itemInputs('4x #tfg:wood_dusts', + '1x gtceu:sticky_resin') + .itemOutputs('4x tfg:chipboard_composite') + .duration(100) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.mixer('gtceu:chipboard_composite_glue') + .itemInputs('2x #tfg:wood_dusts', + '1x tfc:glue') + .itemOutputs('2x tfg:chipboard_composite') + .duration(100) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.mixer('gtceu:chipboard_composite_fluid_glue') + .itemInputs('1x #tfg:wood_dusts') + .inputFluids(Fluid.of('gtceu:glue', 25)) + .itemOutputs('1x tfg:chipboard_composite') + .duration(10) + .EUt(GTValues.VA[GTValues.LV]) + + // Pre-treated chipboard + event.recipes.firmalife.mixing_bowl() + .itemIngredients(['gtceu:treated_wood_dust', 'gtceu:treated_wood_dust', 'tfc:glue']) + .outputItem('2x tfg:treated_chipboard_composite') + .id('tfg:mixing_bowl/treated_chipboard_composite_glue') + + event.recipes.firmalife.mixing_bowl() + .itemIngredients(['gtceu:treated_wood_dust', 'gtceu:treated_wood_dust', 'gtceu:treated_wood_dust', 'gtceu:treated_wood_dust', 'gtceu:sticky_resin']) + .outputItem('4x tfg:treated_chipboard_composite') + .id('tfg:mixing_bowl/treated_chipboard_composite_resin') + + event.recipes.firmalife.mixing_bowl() + .itemIngredients(['gtceu:treated_wood_dust', 'gtceu:treated_wood_dust', '#forge:wax']) + .outputItem('2x tfg:treated_chipboard_composite') + .id('tfg:mixing_bowl/treated_chipboard_composite_wax') + + event.recipes.gtceu.mixer('gtceu:treated_chipboard_composite_wax') + .itemInputs('2x gtceu:treated_wood_dust', '1x #forge:wax') + .itemOutputs('2x tfg:treated_chipboard_composite') + .duration(100) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.mixer('gtceu:treated_chipboard_composite_resin') + .itemInputs('4x gtceu:treated_wood_dust', '1x gtceu:sticky_resin') + .itemOutputs('4x tfg:treated_chipboard_composite') + .duration(100) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.mixer('gtceu:treated_chipboard_composite_glue') + .itemInputs('2x gtceu:treated_wood_dust', '1x tfc:glue') + .itemOutputs('2x tfg:treated_chipboard_composite') + .duration(100) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.mixer('gtceu:treated_chipboard_composite_fluid_glue') + .itemInputs('1x gtceu:treated_wood_dust') + .inputFluids(Fluid.of('gtceu:glue', 25)) + .itemOutputs('1x tfg:treated_chipboard_composite') + .duration(10) + .EUt(GTValues.VA[GTValues.LV]) + + + // + event.recipes.gtceu.compressor('gtceu:wood_mdf') + .itemInputs('1x tfg:chipboard_composite') + .itemOutputs('gtceu:wood_plate') + .duration(200) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.chemical_bath('gtceu:treated_chipboard_composite') + .itemInputs('1x tfg:chipboard_composite') + .inputFluids(Fluid.of('gtceu:creosote', 50)) + .itemOutputs('tfg:treated_chipboard_composite') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.chemical_bath('gtceu:bath_high_density_treated_fiberboard') + .itemInputs('1x gtceu:wood_plate') + .inputFluids(Fluid.of('gtceu:creosote', 50)) + .itemOutputs('tfg:high_density_treated_fiberboard') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.chemical_bath('gtceu:bath_treated_wood_dust') + .itemInputs('#tfg:wood_dusts') + .inputFluids(Fluid.of('gtceu:creosote', 50)) + .itemOutputs('gtceu:treated_wood_dust') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.compressor('tfg:compressed_treated_chipboard_composite') + .itemInputs('tfg:treated_chipboard_composite') + .itemOutputs('tfg:high_density_treated_fiberboard') + .duration(200) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.assembler('tfg:resin_circuit_assembler') + .itemInputs('gtceu:wood_plate', '2x gtceu:sticky_resin') + .itemOutputs('gtceu:resin_circuit_board') + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.ULV]) + + event.replaceInput({ id: 'gtceu:assembler/phenolic_board' }, '#tfg:wood_dusts', 'tfg:high_density_treated_fiberboard') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/primitive/recipes.ice.js b/kubejs/server_scripts/tfg/primitive/recipes.ice.js new file mode 100644 index 000000000..b610d3c9a --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.ice.js @@ -0,0 +1,104 @@ +"use strict"; + +function registerTFGIceRecipes(event) { + + // Ice + event.remove({ id: 'gtceu:compressor/ice_from_dust' }) + event.remove({ id: 'gtceu:compressor/ice_from_snow' }) + + event.shapeless('#forge:dusts/ice', ['#forge:tools/mortars', '4x firmalife:ice_shavings']) + .id('tfg:shaped/ice_shavings') + + event.recipes.tfc.quern('#forge:small_dusts/ice', 'firmalife:ice_shavings') + .id('tfg:quern/ice_dust') + + event.recipes.gtceu.macerator('tfg:macerating_ice_shavings') + .itemInputs('firmalife:ice_shavings') + .itemOutputs('#forge:small_dusts/ice') + .duration(10) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.macerator('tfg:macerating_ice_shavings_reverse') + .itemInputs('#forge:dusts/ice') + .itemOutputs('4x firmalife:ice_shavings') + .duration(20) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.fluid_solidifier('tfg:ice') + .inputFluids("#tfg:clean_water 144") + .notConsumable('gtceu:block_casting_mold') + .itemOutputs('minecraft:ice') + .duration(200) + .EUt(GTValues.VA[GTValues.LV]) + + event.shapeless('4x firmalife:ice_shavings', ['#forge:dusts/ice', '#forge:tools/hammers']) + + event.recipes.gtceu.mixer('tfg:ice_slush_from_dry_ice') + .itemInputs('1x tfg:dry_ice') + .inputFluids("#tfc:water 8000") + .outputFluids(Fluid.of('gtceu:ice', 8000)) + .duration(80) + .EUt(GTValues.VA[GTValues.ULV]) + + // Cooling water + event.recipes.tfc.barrel_sealed(250) + .inputItem('1x tfg:dry_ice') + .inputFluid(Fluid.of('minecraft:water', 5000)) + .outputFluid(Fluid.of('gtceu:ice', 5000)) + .id('tfg:barrel/cooling_water_0') + + event.recipes.tfc.barrel_sealed(1000) + .inputItem('1x #forge:dusts/ice') + .inputFluid(Fluid.of('minecraft:water', 144)) + .outputFluid(Fluid.of('gtceu:ice', 144)) + .id('tfg:barrel/cooling_water_1') + + event.recipes.tfc.barrel_sealed(1000) + .inputItem('16x minecraft:snowball') + .inputFluid(Fluid.of('minecraft:water', 144)) + .outputFluid(Fluid.of('gtceu:ice', 144)) + .id('tfg:barrel/cooling_water_2') + + event.recipes.tfc.barrel_sealed(2000) + .inputItem('1x #forge:dusts/ice') + .inputFluid(Fluid.of('tfc:salt_water', 144)) + .outputFluid(Fluid.of('gtceu:ice', 144)) + .id('tfg:barrel/cooling_water_3') + + event.recipes.tfc.barrel_sealed(2000) + .inputItem('16x minecraft:snowball') + .inputFluid(Fluid.of('tfc:salt_water', 144)) + .outputFluid(Fluid.of('gtceu:ice', 144)) + .id('tfg:barrel/cooling_water_4') + + // Freezing it + event.recipes.tfc.barrel_sealed(3000) + .inputItem('9x #forge:dusts/ice') + .inputFluid(Fluid.of('gtceu:ice', 144)) + .outputItem('minecraft:packed_ice') + .id('tfg:barrel/packed_ice') + + // Heating it back up + event.recipes.tfc.pot([], Fluid.of('gtceu:ice', 144), 300, 100) + .fluidOutput(Fluid.of('minecraft:water', 144)) + + event.recipes.firmalife.vat() + .inputFluid(Fluid.of('gtceu:ice', 144)) + .outputFluid(Fluid.of('minecraft:water', 144)) + .length(300) + .temperature(100) + + // Snow + event.recipes.firmalife.stomping('minecraft:snow', 'minecraft:snowball', + 'minecraft:block/snow', 'minecraft:block/snow', 'minecraft:block.snow.place') + .id('tfg:stomping/snow_layer') + + event.shapeless('minecraft:snow_block', ['8x minecraft:snow']) + .id('tfg:shapeless/snow_block') + + event.shapeless('8x minecraft:snowball', ['minecraft:snow_block']) + .id('tfg:shapeless/snowball') + + event.shapeless('8x minecraft:snow', ['minecraft:snow_block', '#forge:tools/saws']) + .id('tfg:shapeless/snow') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/recipes.knapping.js b/kubejs/server_scripts/tfg/primitive/recipes.knapping.js similarity index 91% rename from kubejs/server_scripts/tfc/recipes.knapping.js rename to kubejs/server_scripts/tfg/primitive/recipes.knapping.js index 1240dd49d..93da6cee1 100644 --- a/kubejs/server_scripts/tfc/recipes.knapping.js +++ b/kubejs/server_scripts/tfg/primitive/recipes.knapping.js @@ -1,7 +1,7 @@ ο»Ώ// priority: 0 "use strict"; -function registerTFCKnappingRecipes(event) { +function registerTFGKnappingRecipes(event) { //#region Π’ΠΎΠΏΠΎΡ€ @@ -212,7 +212,6 @@ function registerTFCKnappingRecipes(event) { "XXX", "XXX", "XXX" - ]) .ingredient('tfc:straw') .outsideSlotRequired(false) @@ -223,10 +222,40 @@ function registerTFCKnappingRecipes(event) { event.recipes.tfc.knapping('tfcambiental:straw_hat', 'tfg:straw', [ " XXX ", "XXXXX" - ]) .ingredient('tfc:straw') .outsideSlotRequired(false) .id('sns:straw_knapping/straw_hat') + + // Molds + event.recipes.tfc.knapping('tfg:unfired_rod_mold', 'tfc:fire_clay', [ + "XXXXX", + "XXX X", + "XX XX", + "X XXX", + "XXXXX" + ]) + .ingredient('5x tfc:fire_clay') + .id('tfg:fire_clay_knapping/unfired_rod_mold') + + event.recipes.tfc.knapping('tfg:unfired_small_gear_mold', 'tfc:fire_clay', [ + "XX XX", + "X X", + " X ", + "X X", + "XX XX" + ]) + .ingredient('5x tfc:fire_clay') + .id('tfg:fire_clay_knapping/unfired_small_gear_mold') + + event.recipes.tfc.knapping('tfg:unfired_nugget_mold', 'tfc:clay', [ + "XXXXX", + "X X X", + "XXXXX", + "X X X", + "XXXXX" + ]) + .ingredient('5x minecraft:clay_ball') + .id('tfg:fire_clay_knapping/unfired_nugget_mold') -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/tfg/primitive/recipes.leather.js b/kubejs/server_scripts/tfg/primitive/recipes.leather.js new file mode 100644 index 000000000..4a99ace21 --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.leather.js @@ -0,0 +1,212 @@ +ο»Ώ// priority: 0 +"use strict"; + +function registerTFGLeatherRecipes(event) { + + // Limewater + event.recipes.gtceu.mixer('tfg:limewater_from_lime') + .itemInputs('tfc:powder/lime') + .inputFluids(Fluid.of('water', 500)) + .outputFluids(Fluid.of('tfc:limewater', 500)) + .duration(20) + .EUt(16) + + event.recipes.gtceu.mixer('tfg:limewater_from_flux') + .itemInputs('tfc:powder/flux') + .inputFluids(Fluid.of('water', 500)) + .outputFluids(Fluid.of('tfc:limewater', 500)) + .duration(20) + .EUt(16) + + // Tannin + event.recipes.gtceu.chemical_bath('tfg:tannin') + .itemInputs('#tfc:makes_tannin') + .inputFluids(Fluid.of('water', 1000)) + .outputFluids(Fluid.of('tfc:tannin', 1000)) + .duration(2400) + .EUt(16) + + // Soaked hides + event.recipes.gtceu.chemical_bath('tfg:small_soaked_hide') + .itemInputs('tfc:small_raw_hide') + .inputFluids(Fluid.of('tfc:limewater', 300)) + .itemOutputs('tfc:small_soaked_hide') + .duration(1600) + .EUt(16) + + event.recipes.gtceu.chemical_bath('tfg:medium_soaked_hide') + .itemInputs('tfc:medium_raw_hide') + .inputFluids(Fluid.of('tfc:limewater', 400)) + .itemOutputs('tfc:medium_soaked_hide') + .duration(2400) + .EUt(16) + + event.recipes.gtceu.chemical_bath('tfg:large_soaked_hide') + .itemInputs('tfc:large_raw_hide') + .inputFluids(Fluid.of('tfc:limewater', 500)) + .itemOutputs('tfc:large_soaked_hide') + .duration(3200) + .EUt(16) + + // Scraped Hides + event.recipes.gtceu.cutter('tfg:small_scraped_hide') + .itemInputs('tfc:small_soaked_hide') + .itemOutputs('tfc:small_scraped_hide') + .duration(100) + .EUt(7) + + event.recipes.gtceu.cutter('tfg:medium_scraped_hide') + .itemInputs('tfc:medium_soaked_hide') + .itemOutputs('tfc:medium_scraped_hide') + .duration(100) + .EUt(7) + + event.recipes.gtceu.cutter('tfg:large_scraped_hide') + .itemInputs('tfc:large_soaked_hide') + .itemOutputs('tfc:large_scraped_hide') + .duration(100) + .EUt(7) + + // Prepared hides + event.recipes.gtceu.chemical_bath('tfg:small_prepared_hide') + .itemInputs('tfc:small_soaked_hide') + .inputFluids(Fluid.of('water', 300)) + .itemOutputs('tfc:small_prepared_hide') + .duration(1600) + .EUt(16) + + event.recipes.gtceu.chemical_bath('tfg:medium_prepared_hide') + .itemInputs('tfc:medium_soaked_hide') + .inputFluids(Fluid.of('water', 400)) + .itemOutputs('tfc:medium_prepared_hide') + .duration(2400) + .EUt(16) + + event.recipes.gtceu.chemical_bath('tfg:large_prepared_hide') + .itemInputs('tfc:large_soaked_hide') + .inputFluids(Fluid.of('water', 500)) + .itemOutputs('tfc:large_prepared_hide') + .duration(3200) + .EUt(16) + + // Leather + event.recipes.gtceu.chemical_bath('tfg:small_leather') + .itemInputs('tfc:small_prepared_hide') + .inputFluids(Fluid.of('tfc:tannin', 300)) + .itemOutputs('minecraft:leather') + .duration(1600) + .EUt(16) + + event.recipes.gtceu.chemical_bath('tfg:medium_leather') + .itemInputs('tfc:medium_prepared_hide') + .inputFluids(Fluid.of('tfc:tannin', 400)) + .itemOutputs('2x minecraft:leather') + .duration(2400) + .EUt(16) + + event.recipes.gtceu.chemical_bath('tfg:large_leather') + .itemInputs('tfc:large_prepared_hide') + .inputFluids(Fluid.of('tfc:tannin', 500)) + .itemOutputs('3x minecraft:leather') + .duration(3200) + .EUt(16) + + // 1x Small SheepSkin -> 1x Wool + event.recipes.gtceu.assembler('tfg:tfc/wool_1') + .itemInputs('tfc:small_sheepskin_hide') + .itemOutputs('tfc:wool') + .duration(100) + .circuit(3) + .EUt(4) + + // 1x Medium SheepSkin -> 1x Wool + event.recipes.gtceu.assembler('tfg:tfc/wool_2') + .itemInputs('tfc:medium_sheepskin_hide') + .itemOutputs('2x tfc:wool') + .duration(100) + .circuit(3) + .EUt(4) + + // 1x Large SheepSkin -> 1x Wool + event.recipes.gtceu.assembler('tfg:tfc/wool_3') + .itemInputs('tfc:large_sheepskin_hide') + .itemOutputs('3x tfc:wool') + .duration(100) + .circuit(3) + .EUt(4) + + //Hide Sewing + const stages = [ + 'raw', + 'soaked', + 'scraped', + 'prepared', + 'sheepskin' + ]; + + stages.forEach(stage => { + //Combining + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless(`1x tfc:medium_${stage}_hide`, [ + `2x tfc:small_${stage}_hide`, + '#tfc:sewing_needles', + '#forge:string', + 'tfc:glue' + ]).id(`tfg:tfc/small_to_medium_${stage}_hide`) + ) + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless(`1x tfc:large_${stage}_hide`, [ + `3x tfc:small_${stage}_hide`, + '#tfc:sewing_needles', + '#forge:string', + 'tfc:glue' + ]).id(`tfg:tfc/small_to_large_${stage}_hide`) + ) + + event.recipes.gtceu.assembler(`tfg:gtceu/assembler/small_to_medium_${stage}_hide`) + .inputFluids(Fluid.of('gtceu:glue', 25)) + .itemOutputs(`1x tfc:medium_${stage}_hide`) + .itemInputs(`2x tfc:small_${stage}_hide`) + .duration(60) + .circuit(7) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.assembler(`tfg:gtceu/assembler/small_to_large_${stage}_hide`) + .inputFluids(Fluid.of('gtceu:glue', 25)) + .itemOutputs(`1x tfc:large_${stage}_hide`) + .itemInputs(`3x tfc:small_${stage}_hide`) + .duration(60) + .circuit(9) + .EUt(GTValues.VA[GTValues.ULV]) + + //Cutting + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless(`2x tfc:small_${stage}_hide`, [ + `1x tfc:medium_${stage}_hide`, + '#forge:shears' + ]).id(`tfg:tfc/medium_to_small_${stage}_hide`) + ) + + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless(`3x tfc:small_${stage}_hide`, [ + `1x tfc:large_${stage}_hide`, + '#forge:shears' + ]).id(`tfg:tfc/large_to_small_${stage}_hide`) + ) + + event.recipes.gtceu.assembler(`tfg:gtceu/assembler/medium_to_small_${stage}_hide`) + .itemOutputs(`2x tfc:small_${stage}_hide`) + .itemInputs(`1x tfc:medium_${stage}_hide`) + .duration(60) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.assembler(`tfg:gtceu/assembler/large_to_small_${stage}_hide`) + .itemOutputs(`3x tfc:small_${stage}_hide`) + .itemInputs(`1x tfc:large_${stage}_hide`) + .duration(60) + .circuit(6) + .EUt(GTValues.VA[GTValues.ULV]) + }); + +} diff --git a/kubejs/server_scripts/tfg/recipes.paper.js b/kubejs/server_scripts/tfg/primitive/recipes.paper.js similarity index 91% rename from kubejs/server_scripts/tfg/recipes.paper.js rename to kubejs/server_scripts/tfg/primitive/recipes.paper.js index ced487b9f..9fba0ec9e 100644 --- a/kubejs/server_scripts/tfg/recipes.paper.js +++ b/kubejs/server_scripts/tfg/primitive/recipes.paper.js @@ -5,7 +5,34 @@ * @param {Internal.RecipesEventJS} event */ function registerTFGPapermakingRecipes(event) { - + + event.recipes.gtceu.cutter('tfg:unrefined_paper') + .itemInputs('tfc:unrefined_paper') + .itemOutputs('minecraft:paper') + .duration(100) + .EUt(7) + + event.recipes.gtceu.chemical_bath('paper_from_papyrus_distilled') + .itemInputs('tfc:papyrus') + .inputFluids(Fluid.of('gtceu:distilled_water', 100)) + .itemOutputs('4x tfc:soaked_papyrus_strip') + .duration(100) + .EUt(7) + + event.recipes.gtceu.chemical_bath('paper_from_papyrus') + .itemInputs('tfc:papyrus') + .inputFluids("#tfg:clean_water 100") + .itemOutputs('4x tfc:soaked_papyrus_strip') + .duration(100) + .EUt(7) + + event.recipes.gtceu.assembler('papyrus_strips') + .itemInputs('4x tfc:soaked_papyrus_strip') + .itemOutputs('minecraft:paper') + .circuit(1) + .duration(100) + .EUt(7) + const generateVatRecipe = (id, inputItem, fluid, fluidAmount, output) => { event.custom({ "type": "firmalife:vat", @@ -129,9 +156,11 @@ function registerTFGPapermakingRecipes(event) { //Beat thermochemically treated hardwood dust into soaked unrefined paper event.recipes.tfc.anvil('tfg:soaked_unrefined_paper', 'gtceu:thermochemically_treated_hardwood_dust', ['hit_last', 'hit_second_last', 'hit_third_last']) .id('tfg:anvil/soaked_unrefined_paper') + event.recipes.greate.pressing(Item.of('tfg:soaked_unrefined_paper'), 'gtceu:thermochemically_treated_hardwood_dust') .recipeTier(0) .id('greate:pressing/soaked_unrefined_paper') + event.custom({ type: "firmalife:stomping", ingredient: { diff --git a/kubejs/server_scripts/tfg/primitive/recipes.rubber.js b/kubejs/server_scripts/tfg/primitive/recipes.rubber.js new file mode 100644 index 000000000..5920707dd --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.rubber.js @@ -0,0 +1,145 @@ +"use strict"; + +function registerTFGRubberRecipes(event) { + + // Tapping + event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/rubber_fig")) + .resultFluid(Fluid.of("tfg:latex", 2)) + .minTemp(4) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/latex/rubber_fig") + event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_rubber_fig")) + .resultFluid(Fluid.of("tfg:latex", 2)) + .minTemp(4) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/latex/ancient_rubber_fig") + + event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/hevea")) + .resultFluid(Fluid.of("tfg:latex", 3)) + .minTemp(8) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/latex/hevea") + event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_hevea")) + .resultFluid(Fluid.of("tfg:latex", 3)) + .minTemp(8) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/latex/ancient_hevea") + + event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/kapok")) + .resultFluid(Fluid.of("tfg:latex", 4)) + .minTemp(12) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/kapok_latex") + event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_kapok")) + .resultFluid(Fluid.of("tfg:latex", 4)) + .minTemp(12) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/ancient_kapok_latex") + + // Latex + event.recipes.gtceu.extractor('latex_from_log') + .itemInputs('#tfg:latex_logs') + .outputFluids(Fluid.of('tfg:latex', 250)) + .duration(600) + .EUt(20) + + event.recipes.gtceu.extractor('latex_from_sapling') + .itemInputs('#tfg:rubber_saplings') + .outputFluids(Fluid.of('tfg:latex', 100)) + .duration(750) + .EUt(20) + + event.recipes.gtceu.extractor('latex_from_leaves') + .itemInputs('#tfg:rubber_leaves') + .outputFluids(Fluid.of('tfg:latex', 50)) + .duration(750) + .EUt(20) + + // Sticky resin + event.recipes.tfc.pot('tfc:powder/wood_ash', Fluid.of('tfg:latex', 1000), 1200, 300) + .itemOutput('gtceu:sticky_resin') + .id('tfg:pot/sticky_resin_from_latex') + + event.recipes.tfc.pot('tfc:powder/wood_ash', Fluid.of('tfg:conifer_pitch', 1000), 1200, 300) + .itemOutput('gtceu:sticky_resin') + .id('tfg:pot/sticky_resin_from_conifer_pitch') + + event.recipes.gtceu.fluid_solidifier('tfg:fluid_solidifier/latex_to_sticky_resin') + .duration(12 * 20) + .EUt(30) + .itemInputs('tfc:powder/wood_ash') + .itemOutputs('gtceu:sticky_resin') + .inputFluids(Fluid.of('tfg:latex', 1000)) + + event.recipes.gtceu.fluid_solidifier('tfg:fluid_solidifier/pitch_to_sticky_resin') + .duration(12 * 20) + .EUt(30) + .itemInputs('tfc:powder/wood_ash') + .itemOutputs('gtceu:sticky_resin') + .inputFluids(Fluid.of('tfg:conifer_pitch', 1000)) + + // Rubber Processing Line + event.recipes.firmalife.vat() + .inputs('tfc:powder/sulfur', Fluid.of('tfg:latex', 1000)) + .outputFluid(Fluid.of('tfg:vulcanized_latex', 1000)) + .length(300) + .temperature(300) + .id('tfg:vat/vulcanized_latex') + + event.recipes.tfc.pot('tfc:powder/sulfur', Fluid.of('tfg:latex', 1000), 1200, 300) + .fluidOutput(Fluid.of('tfg:vulcanized_latex', 1000)) + .id('tfg:pot/vulcanized_latex') + + event.recipes.gtceu.chemical_reactor('tfg:latex_to_vulcanized_latex') + .duration(100) + .EUt(20) + .itemInputs('tfc:powder/sulfur') + .inputFluids(Fluid.of('tfg:latex', 1000)) + .outputFluids(Fluid.of('tfg:vulcanized_latex', 1000)) + + event.recipes.gtceu.fluid_solidifier('tfg:vulcanized_latex_to_raw_rubber_pulp') + .duration(100) + .EUt(20) + .inputFluids(Fluid.of('tfg:vulcanized_latex', 1000)) + .itemOutputs('4x gtceu:raw_rubber_dust') + + event.recipes.gtceu.fluid_solidifier('tfg:solidify_glue') + .inputFluids(Fluid.of('gtceu:glue', 50)) + .notConsumable('gtceu:ball_casting_mold') + .itemOutputs('tfc:glue') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.centrifuge('tfg:centrifuge_rosin') + .itemInputs('tfg:conifer_rosin') + .outputFluids(Fluid.of('gtceu:glue', 50)) + .itemOutputs('2x #forge:dusts/carbon') + .chancedOutput('gtceu:plant_ball', 7500, 0) + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.centrifuge('tfg:centrifuge_sticky_resin') + .itemInputs('gtceu:sticky_resin') + .outputFluids(Fluid.of('gtceu:glue', 100)) + .itemOutputs('3x #forge:dusts/carbon') + .chancedOutput('gtceu:plant_ball', 5000, 0) + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.chemical_reactor(`tfg:treat_latex_plants_into_latex`) + .itemInputs('16x #tfg:rubber_plants', 'gtceu:tiny_sodium_hydroxide_dust') + .circuit(1) + .outputFluids(Fluid.of('tfg:latex', 1000)) + .duration(200) + .EUt(20) + + event.recipes.gtceu.centrifuge('rubber_log_separation') + .itemInputs('#tfg:latex_logs') + .chancedOutput('gtceu:raw_rubber_dust', 5000, 0) + .chancedOutput('gtceu:plant_ball', 3750, 0) + .chancedOutput('gtceu:sticky_resin', 2500, 0) + .chancedOutput('gtceu:wood_dust', 2500, 0) + .outputFluids(Fluid.of('gtceu:methane', 60)) + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.MV]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.supports.js b/kubejs/server_scripts/tfg/primitive/recipes.supports.js similarity index 67% rename from kubejs/server_scripts/tfg/recipes.supports.js rename to kubejs/server_scripts/tfg/primitive/recipes.supports.js index ddb1e88c4..90a296b6d 100644 --- a/kubejs/server_scripts/tfg/recipes.supports.js +++ b/kubejs/server_scripts/tfg/primitive/recipes.supports.js @@ -21,6 +21,13 @@ function registerTFGSupportRecipes(event) { .duration(120) .EUt(GTValues.VA[GTValues.ULV]) + event.recipes.gtceu.macerator(`reinforced_light_concrete_support_to_dust`) + .itemInputs('tfg:reinforced_light_concrete_support') + .itemOutputs('gtceu:tiny_steel_dust') + .duration(150) + .EUt(2) + .category(GTRecipeCategories.MACERATOR_RECYCLING); + event.recipes.gtceu.chemical_bath('tfg:gtceu/chemical_bath/reinforced_dark_concrete_support') .inputFluids(Fluid.of('tfc:black_dye', 10)) .itemOutputs('1x tfg:reinforced_dark_concrete_support') @@ -35,6 +42,13 @@ function registerTFGSupportRecipes(event) { .duration(60) .EUt(GTValues.VA[GTValues.ULV]) + event.recipes.gtceu.macerator(`reinforced_dark_concrete_support_to_dust`) + .itemInputs('tfg:reinforced_dark_concrete_support') + .itemOutputs('gtceu:tiny_steel_dust') + .duration(150) + .EUt(2) + .category(GTRecipeCategories.MACERATOR_RECYCLING); + event.recipes.tfc.damage_inputs_shaped_crafting( event.shaped('8x tfg:light_concrete_support', [ 'AB ', @@ -116,19 +130,19 @@ function registerTFGSupportRecipes(event) { // REDO w/ table and loop const EXO_STONE_SUPPORTS = [ - { loose: 'tfg:loose/deepslate', support: 'tfg:migmatite_support' }, - { loose: 'beneath:blackstone_pebble', support: 'tfg:pyroxenite_support' }, - { loose: 'tfg:loose/dripstone', support: 'tfg:travertine_support' }, - { loose: 'tfg:loose/crackrack', support: 'tfg:keratophyre_support' }, - { loose: 'tfg:loose/moon_stone', support: 'tfg:anorthosite_support' }, - { loose: 'tfg:loose/moon_deepslate', support: 'tfg:norite_support' }, - { loose: 'tfg:loose/mars_stone', support: 'tfg:argillite_support' }, - { loose: 'tfg:loose/venus_stone', support: 'tfg:trachyte_support' }, - { loose: 'tfg:loose/mercury_stone', support: 'tfg:komatiite_support' }, - { loose: 'tfg:loose/glacio_stone', support: 'tfg:phonolite_support' }, - { loose: 'tfg:loose/permafrost', support: 'tfg:permafrost_support' }, - { loose: 'tfg:loose/red_granite', support: 'tfg:red_granite_support' }, - { loose: 'gtceu:stone_ingot', support: 'tfg:stone_support' } + { loose: 'tfg:loose/deepslate', support: 'tfg:migmatite_support', material: 'deepslate' }, + { loose: 'beneath:blackstone_pebble', support: 'tfg:pyroxenite_support', material: 'blackstone', }, + { loose: 'tfg:loose/dripstone', support: 'tfg:travertine_support', material: 'dripstone' }, + { loose: 'tfg:loose/crackrack', support: 'tfg:keratophyre_support', material: 'netherrack' }, + { loose: 'tfg:loose/moon_stone', support: 'tfg:anorthosite_support', material: 'moon_stone' }, + { loose: 'tfg:loose/moon_deepslate', support: 'tfg:norite_support', material: 'moon_deepslate' }, + { loose: 'tfg:loose/mars_stone', support: 'tfg:argillite_support', material: 'mars_stone' }, + { loose: 'tfg:loose/venus_stone', support: 'tfg:trachyte_support', material: 'venus_stone', }, + { loose: 'tfg:loose/mercury_stone', support: 'tfg:komatiite_support', material: 'mercury_stone' }, + { loose: 'tfg:loose/glacio_stone', support: 'tfg:phonolite_support', material: 'glacio_stone' }, + { loose: 'tfg:loose/permafrost', support: 'tfg:permafrost_support', material: 'ice' }, + { loose: 'tfg:loose/red_granite', support: 'tfg:red_granite_support', material: 'granite_red' }, + { loose: 'gtceu:stone_ingot', support: 'tfg:stone_support', material: 'stone' } ] EXO_STONE_SUPPORTS.forEach(s => { @@ -151,6 +165,18 @@ function registerTFGSupportRecipes(event) { .itemInputs(`3x ${s.loose}`) .duration(40) .EUt(GTValues.VA[GTValues.ULV]) + + let regexMatch = s.support.match(/tfg:(.*?)_support/); + let supportName = regexMatch[1]; + let stoneMaterial = TFGHelpers.getMaterial(s.material); + let dustSmall = ChemicalHelper.get(TagPrefix.dustSmall, stoneMaterial, 1) + + event.recipes.gtceu.macerator(`${supportName}_support_to_dust`) + .itemInputs(s.support) + .itemOutputs(dustSmall) + .duration(150) + .EUt(2) + .category(GTRecipeCategories.MACERATOR_RECYCLING); }) // Metal Supports @@ -170,6 +196,13 @@ function registerTFGSupportRecipes(event) { .duration(100) .EUt(GTValues.VA[GTValues.ULV]) + event.recipes.gtceu.macerator(`rebar_support_to_dust`) + .itemInputs(`tfg:rebar_support`) + .itemOutputs(`gtceu:tiny_steel_dust`) + .duration(150) + .EUt(2) + .category(GTRecipeCategories.MACERATOR_RECYCLING); + event.recipes.tfc.anvil( '1x tfg:steel_support', '#forge:double_ingots/steel', @@ -186,4 +219,11 @@ function registerTFGSupportRecipes(event) { .duration(100) .EUt(GTValues.VA[GTValues.ULV]) .addMaterialInfo(true) + + event.recipes.gtceu.macerator("steel_support_to_dust") + .itemInputs('tfg:steel_support') + .itemOutputs('2x gtceu:steel_dust') + .duration(150) + .EUt(2) + .category(GTRecipeCategories.MACERATOR_RECYCLING); } diff --git a/kubejs/server_scripts/tfg/primitive/recipes.vases.js b/kubejs/server_scripts/tfg/primitive/recipes.vases.js new file mode 100644 index 000000000..a24bd5cb9 --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.vases.js @@ -0,0 +1,61 @@ +"use strict"; + +function registerTFGVaseRecipes(event) { + + global.MINECRAFT_DYE_NAMES.forEach(color => { + event.recipes.gtceu.chemical_bath(`tfg:chemical_bath/dyeing/decorative_vase/unfired/${color}`) + .itemInputs('#tfg:decorative_vases/unfired') + .inputFluids(Fluid.of(`tfc:${color}_dye`, 25)) + .itemOutputs(`tfg:decorative_vase/unfired/${color}`) + .duration(80) + .EUt(GTValues.VA[GTValues.ULV]) + .category(GTRecipeCategories.CHEM_DYES) + + event.recipes.tfc.heating(`tfg:decorative_vase/unfired/${color}`, 1399) + .resultItem(`tfg:decorative_vase/${color}`) + .id(`tfg:heating/decorative_vase/unfired/${color}`) + + event.recipes.tfc.barrel_sealed(1000) + .outputItem(`tfg:decorative_vase/unfired/${color}`) + .inputItem(Ingredient.of('#tfg:decorative_vases/unfired').subtract(`tfg:decorative_vase/unfired/${color}`)) + .inputFluid(Fluid.of(`tfc:${color}_dye`, 25)) + .id(`tfg:barrel/dyeing/decorative_vase/${color}`) + + event.smelting( + `1x tfg:decorative_vase/${color}`, + `tfg:decorative_vase/unfired/${color}` + ).id(`tfg:smelting/decorative_vase/${color}`) + }) + + event.recipes.gtceu.chemical_bath(`tfg:chemical_bath/bleaching/decorative_vase/unfired`) + .itemInputs('#tfg:decorative_vases/unfired') + .inputFluids(Fluid.of('gtceu:chlorine', 72)) + .itemOutputs('tfg:decorative_vase/unfired') + .duration(80) + .EUt(GTValues.VA[GTValues.ULV]) + .category(GTRecipeCategories.CHEM_DYES) + + event.smelting( + '1x tfg:decorative_vase', + 'tfg:decorative_vase/unfired' + ).id('tfg:smelting/decorative_vase') + + event.recipes.tfc.heating('tfg:decorative_vase/unfired', 1399) + .resultItem('tfg:decorative_vase') + .id('tfg:heating/decorative_vase/unfired') + + event.recipes.tfc.knapping( + 'tfg:decorative_vase/unfired', + 'tfc:clay', + [ + ' X X ', + 'XX XX', + 'X X', + 'X X', + 'XXXXX' + ] + ) + .ingredient('5x minecraft:clay_ball') + .outsideSlotRequired(false) + .id('tfg:knapping/decorative_vase/unfired') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/primitive/recipes.wax.js b/kubejs/server_scripts/tfg/primitive/recipes.wax.js new file mode 100644 index 000000000..e3376285f --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.wax.js @@ -0,0 +1,138 @@ +"use strict"; + +function registerTFGWaxRecipes(event) { + + //forge:wax + event.replaceInput({}, 'firmalife:beeswax', '#forge:wax') + + //paraffin + event.recipes.gtceu.chemical_reactor('tfg:paraffin_wax_from_lubricant') + .circuit(7) + .itemOutputs('6x tfg:paraffin_wax') + .outputFluids(Fluid.of('gtceu:oil_light', 25)) + .inputFluids(Fluid.of('gtceu:lubricant', 250), Fluid.of('gtceu:acetone', 25)) + .duration(500) + .EUt(GTValues.VA[GTValues.LV]) + + // Tapping + event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/aspen")) + .resultFluid(Fluid.of('tfg:conifer_pitch', 2)) + .minTemp(-10) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/aspen_resin") + event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_aspen")) + .resultFluid(Fluid.of('tfg:conifer_pitch', 2)) + .minTemp(-10) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/ancient_aspen_resin") + + event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/spruce")) + .resultFluid(Fluid.of('tfg:conifer_pitch', 4)) + .minTemp(-15) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/spruce_resin") + event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_spruce")) + .resultFluid(Fluid.of('tfg:conifer_pitch', 4)) + .minTemp(-15) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/ancient_spruce_resin") + + event.recipes.afc.tree_tapping(TFC.blockIngredient("tfc:wood/log/white_cedar")) + .resultFluid(Fluid.of('tfg:conifer_pitch', 3)) + .minTemp(-8) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/white_cedar_resin") + event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_white_cedar")) + .resultFluid(Fluid.of('tfg:conifer_pitch', 3)) + .minTemp(-8) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/ancient_white_cedar_resin") + + event.recipes.afc.tree_tapping(TFC.blockIngredient('tfc:wood/log/douglas_fir')) + .resultFluid(Fluid.of('tfg:conifer_pitch', 2)) + .minTemp(-8) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/douglas_fir_resin") + event.recipes.afc.tree_tapping(TFC.blockIngredient("afc:wood/log/ancient_douglas_fir")) + .resultFluid(Fluid.of('tfg:conifer_pitch', 2)) + .minTemp(-8) + .requiresNaturalLog(true) + .id("tfg:tree_tapping/ancient_douglas_fir_resin") + + // Conifer Pitch + event.recipes.gtceu.extractor('conifer_from_log') + .itemInputs('#tfg:rosin_logs') + .outputFluids(Fluid.of('tfg:conifer_pitch', 250)) + .duration(600) + .EUt(20) + + event.recipes.gtceu.extractor('conifer_from_sapling') + .itemInputs('#tfg:rosin_saplings') + .outputFluids(Fluid.of('tfg:conifer_pitch', 100)) + .duration(750) + .EUt(20) + + event.recipes.gtceu.extractor('conifer_from_leaves') + .itemInputs('#tfg:rosin_leaves') + .outputFluids(Fluid.of('tfg:conifer_pitch', 50)) + .duration(750) + .EUt(20) + + event.recipes.gtceu.centrifuge('conifer_log_separation') + .itemInputs('#tfg:rosin_logs') + .chancedOutput('tfg:conifer_rosin', 7500, 0) + .chancedOutput('gtceu:plant_ball', 3750, 0) + .chancedOutput('gtceu:sticky_resin', 2500, 0) + .chancedOutput('gtceu:wood_dust', 2500, 0) + .outputFluids(Fluid.of('gtceu:methane', 60)) + .duration(20 * 20) + .EUt(GTValues.VA[GTValues.MV]) + + // Rosin + event.recipes.firmalife.vat() + .inputs('tfc:powder/charcoal', Fluid.of('tfg:conifer_pitch', 1000)) + .outputItem('tfg:conifer_rosin') + .id('tfg:vat/conifer_pitch_to_rosin'); + + event.recipes.tfc.pot('tfc:powder/charcoal', Fluid.of('tfg:conifer_pitch', 1000), 1200, 300) + .itemOutput('tfg:conifer_rosin') + .id('tfg:pot/conifer_pitch_to_rosin') + + event.recipes.gtceu.fluid_solidifier('tfg:pitch_to_rosin') + .inputFluids(Fluid.of('tfg:conifer_pitch', 1000)) + .itemInputs('tfc:powder/charcoal') + .itemOutputs('tfg:conifer_rosin') + .duration(20 * 12) + .EUt(GTValues.VA[GTValues.LV]) + + //#region Wax Unification + + // Recipe Removals + event.remove({ id: 'gtceu:extractor/extract_honeycomb_block' }); + event.remove({ id: 'gtceu:extractor/extract_honeycomb' }); + event.remove({ id: 'gtceu:extractor/extract_wax_dust' }); + + // Extractor Recipe + event.recipes.gtceu.extractor('tfg:wax_melting') + .itemInputs(Ingredient.of('#forge:wax')) + .outputFluids(Fluid.of('gtceu:wax', 144)) + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.LV]) + .category(GTRecipeCategories.EXTRACTOR_RECYCLING); + + event.recipes.gtceu.extractor('tfg:tiny_wax_dust_melting') + .itemInputs(ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Wax, 1)) + .outputFluids(Fluid.of('gtceu:wax', 16)) + .duration(10) + .EUt(GTValues.VA[GTValues.LV]) + .category(GTRecipeCategories.EXTRACTOR_RECYCLING); + + event.recipes.gtceu.extractor('tfg:small_wax_dust_melting') + .itemInputs(ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Wax, 1)) + .outputFluids(Fluid.of('gtceu:wax', 36)) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + .category(GTRecipeCategories.EXTRACTOR_RECYCLING); + + //#endregion +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/primitive/recipes.wood.js b/kubejs/server_scripts/tfg/primitive/recipes.wood.js new file mode 100644 index 000000000..79017f62a --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/recipes.wood.js @@ -0,0 +1,230 @@ +ο»Ώ"use strict"; + +function registerTFGWoodRecipes(event) { + + event.replaceInput({ output: '#tfc:sewing_tables'}, '#forge:shears', '#forge:tools/knives') + event.replaceInput({ id: 'gtceu:shaped/powderbarrel' }, 'gtceu:wood_plate', '#tfc:lumber') + + // Wood ash + event.smelting('4x tfc:powder/wood_ash', '1x #minecraft:logs_that_burn').id('tfg:wood_ash') + + event.recipes.gtceu.chemical_reactor('tfg:wood_ash_to_wood_gas_air') + .itemInputs('8x tfc:powder/wood_ash') + .inputFluids(Fluid.of('gtceu:air', 100)) + .outputFluids('gtceu:wood_gas 100') + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.create.splashing([Item.of('tfc:powder/wood_ash').withChance(0.25), Item.of('minecraft:stick').withChance(0.25)], 'tfc:torch') + .id('tfg:splashing/wash_torch') + + // Just a dummy recipe to tell people they can get wood ash by throwing torches in water via TFC + event.custom({ + type: "ae2:transform", + circumstance: { + type: "fluid", + tag: "tfc:water" + }, + ingredients: [{ item: 'tfc:torch' }], + result: { item: 'tfc:powder/wood_ash' } + }).id(`tfg:ae_transform/torch_to_wood_ash`) + + // Ladder + event.shaped('8x minecraft:ladder', [ + 'A A', + 'AAA', + 'A A' + ], { + A: '#forge:rods/wooden' + }).id('gtceu:shaped/ladder') + + event.shaped('8x minecraft:ladder', [ + 'A A', + 'AAA', + 'A A' + ], { + A: '#tfc:lumber' + }).id('tfc:crafting/vanilla/ladder') + + event.replaceInput({ id: 'tfc:crafting/vanilla/armor_stand' }, '#minecraft:planks', '#tfc:lumber') + event.remove({ id: 'tfc:crafting/vanilla/armor_stand_bulk' }) + + // Treated Wood + event.remove({ id: 'gtceu:shaped/treated_wood_planks' }) + + event.recipes.tfc.barrel_sealed(4000) + .outputItem('gtceu:treated_wood_planks') + .inputs('#minecraft:planks', TFC.fluidStackIngredient('#forge:creosote', 100)) + .id('tfg:barrel/treated_wood_planks') + + event.recipes.tfc.barrel_sealed(2000) + .outputItem('gtceu:treated_wood_dust') + .inputs('#tfg:wood_dusts', TFC.fluidStackIngredient('#forge:creosote', 50)) + .id('tfg:barrel/treated_wood_dust') + + event.shaped('2x gtceu:treated_wood_door', [ + 'AA ', + 'AA ', + 'AA ' + ], { + A: 'gtceu:treated_wood_plate' + }).id('tfg:shaped/treated_door') + + event.shaped('3x gtceu:treated_wood_trapdoor', [ + 'AAA', + 'AAA', + ' ' + ], { + A: 'gtceu:treated_wood_plate' + }).id('tfg:shaped/treated_trapdoor') + + event.shaped('gtceu:treated_wood_pressure_plate', [ + ' B ', + 'CDC', + ' E ' + ], { + B: '#tfc:hammers', + C: 'gtceu:treated_wood_slab', + D: '#forge:small_springs', + E: '#forge:tools/screwdrivers' + }).id('gtceu:shaped/treated_pressure_plate') + + event.recipes.gtceu.assembler('gtceu:treated_pressure_plate') + .itemInputs('#forge:small_springs', '2x gtceu:treated_wood_slab') + .itemOutputs('gtceu:treated_wood_pressure_plate') + .circuit(3) + .duration(50) + .EUt(2) + + event.replaceOutput({ id: 'gtceu:cutter/treated_button' }, 'gtceu:treated_wood_button', '6x gtceu:treated_wood_button') + event.replaceOutput({ id: 'gtceu:cutter/treated_button_water' }, 'gtceu:treated_wood_button', '6x gtceu:treated_wood_button') + event.replaceOutput({ id: 'gtceu:cutter/treated_button_distilled_water' }, 'gtceu:treated_wood_button', '6x gtceu:treated_wood_button') + + event.replaceOutput({ id: 'gtceu:cutter/bamboo_button' }, 'minecraft:bamboo_button', '6x minecraft:bamboo_button') + event.replaceOutput({ id: 'gtceu:cutter/bamboo_button_water' }, 'minecraft:bamboo_button', '6x minecraft:bamboo_button') + event.replaceOutput({ id: 'gtceu:cutter/bamboo_button_distilled_water' }, 'minecraft:bamboo_button', '6x minecraft:bamboo_button') + + // Empty Wooden Form + event.shaped('gtceu:empty_wooden_form', [ + ' AA', + 'BAA' + ], { + A: '#minecraft:planks', + B: '#forge:tools/saws' + }).id('gtceu:shaped/plank_to_wooden_shape') + + // Wood gears + event.shaped('gtceu:small_wood_gear', [ + 'AB ', + 'BCB', + ' B ' + ], { + A: '#forge:tools/saws', + B: '#forge:rods/wooden', + C: 'tfc:glue' + }).id('gtceu:shaped/small_gear_wood') + + event.shaped('gtceu:wood_gear', [ + 'AB ', + 'BCB', + ' B ' + ], { + A: '#forge:tools/saws', + B: '#minecraft:planks', + C: 'tfc:glue' + }).id('gtceu:shaped/gear_wood') + + // Sticks + event.shapeless('2x minecraft:stick', ['#minecraft:saplings', '#forge:tools/knives']).id('tfg:strip_saplings') + + event.recipes.gtceu.cutter('tfg:saplings_to_sticks') + .itemInputs('#minecraft:saplings') + .itemOutputs('2x minecraft:stick') + .duration(20) + .EUt(7) + + event.recipes.gtceu.packer('tfg:stick_bunch') + .itemInputs('9x #forge:rods/wooden') + .circuit(5) + .itemOutputs('tfc:stick_bunch') + .duration(50) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.packer('tfg:stick_bundle') + .itemInputs('18x #forge:rods/wooden') + .circuit(8) + .itemOutputs('tfc:stick_bundle') + .duration(50) + .EUt(GTValues.VA[GTValues.ULV]) + + + // КакиС Ρ‚ΠΎ Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Π΄Π΅Ρ€Π΅Π²Π° + global.TFC_WOOD_TYPES.forEach(wood => { + event.remove({ id: `tfc:crafting/wood/${wood}_axle` }) + event.remove({ id: `tfc:crafting/wood/${wood}_bladed_axle` }) + event.remove({ id: `tfc:crafting/wood/${wood}_encased_axle` }) + event.remove({ id: `tfc:crafting/wood/${wood}_clutch` }) + event.remove({ id: `tfc:crafting/wood/${wood}_gear_box` }) + event.remove({ id: `tfc:crafting/wood/${wood}_water_wheel` }) + + // Π‘Ρ€Π΅Π²Π½Π° -> ΠŸΠΈΠ»ΠΎΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ + generateCutterRecipe(event, `#tfc:${wood}_logs`, `16x tfc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_log`) + + // Доски -> ΠŸΠΈΠ»ΠΎΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ + generateCutterRecipe(event, `tfc:wood/planks/${wood}`, `4x tfc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_planks`) + + // Π‘Ρ‚ΡƒΠΏΠ΅Π½ΡŒ -> ΠŸΠΈΠ»ΠΎΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ + generateCutterRecipe(event, `tfc:wood/planks/${wood}_stairs`, `3x tfc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_stairs`) + + + // ΠŸΠ»ΠΈΡ‚Π° -> ΠŸΠΈΠ»ΠΎΠΌΠ°Ρ‚Π΅Ρ€ΠΈΠ°Π»Ρ‹ + generateCutterRecipe(event, `tfc:wood/planks/${wood}_slab`, `2x tfc:wood/lumber/${wood}`, 50, 7, `${wood}_lumber_from_slab`) + + // ? -> ДСрСвянная наТимная пластина + event.shaped(`tfc:wood/planks/${wood}_pressure_plate`, [ + ' B ', + 'CDC', + ' E ' + ], { + B: '#tfc:hammers', + C: `tfc:wood/planks/${wood}_slab`, + D: '#forge:small_springs', + E: '#forge:tools/screwdrivers' + }).id(`tfc:crafting/wood/${wood}_pressure_plate`) + + event.recipes.gtceu.assembler(`${wood}_pressure_plate`) + .itemInputs('#forge:small_springs', `2x tfc:wood/planks/${wood}_slab`) + .circuit(3) + .itemOutputs(`2x tfc:wood/planks/${wood}_pressure_plate`) + .duration(50) + .EUt(2) + + // ? -> ДСрСвянная ΠΊΠ½ΠΎΠΏΠΊΠ° + event.remove({ id: `tfc:crafting/wood/${wood}_button` }) + + generateCutterRecipe(event, `tfc:wood/planks/${wood}_pressure_plate`, `6x tfc:wood/planks/${wood}_button`, 50, 7, `${wood}_button`) + + // Stripped logs + event.recipes.gtceu.lathe(`tfg:stripping_${wood}_log`) + .itemInputs(`tfc:wood/log/${wood}`) + .itemOutputs(`tfc:wood/stripped_log/${wood}`) + .duration(50) + .EUt(2) + + event.recipes.gtceu.lathe(`tfg:stripping_${wood}_wood`) + .itemInputs(`tfc:wood/wood/${wood}`) + .itemOutputs(`tfc:wood/stripped_wood/${wood}`) + .duration(50) + .EUt(2) + + event.recipes.vintageimprovements.polishing(`tfc:wood/stripped_log/${wood}`, `tfc:wood/log/${wood}`) + .speedLimits(0) + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/stripping_${wood}_log`) + + event.recipes.vintageimprovements.polishing(`tfc:wood/stripped_wood/${wood}`, `tfc:wood/wood/${wood}`) + .speedLimits(0) + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/stripping_${wood}_wood`) + }) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/primitive/tags.primitive.js b/kubejs/server_scripts/tfg/primitive/tags.primitive.js new file mode 100644 index 000000000..22246eba6 --- /dev/null +++ b/kubejs/server_scripts/tfg/primitive/tags.primitive.js @@ -0,0 +1,113 @@ +"use strict"; + +function registerTFGPrimitiveItemTags(event) { + + //Decorative Vases + global.MINECRAFT_DYE_NAMES.forEach(color => { + event.add('c:hidden_from_recipe_viewers', `tfg:decorative_vase/generated/${color}`) + event.add('tfg:decorative_vases/generated', `tfg:decorative_vase/generated/${color}`) + event.add('tfg:decorative_vases', `tfg:decorative_vase/${color}`) + event.add('tfg:decorative_vases/unfired', `tfg:decorative_vase/unfired/${color}`) + }) + event.add('tfg:decorative_vases', 'tfg:decorative_vase') + event.add('tfg:decorative_vases/unfired', 'tfg:decorative_vase/unfired') + + //Knapping + event.add('tfc:any_knapping', 'minecraft:flint') + + // Tools + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/wood') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/brass') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/rose_gold') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/sterling_silver') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/invar') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/tin_alloy') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/cupronickel') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/magnalium') + + event.add('forge:tools/trowels', 'tfg:trowel') + + event.add('tfg:harvester', 'tfg:harvest_basket') + event.add('tfg:harvester', 'tfg:aluminium_harvest_basket') + + event.add('tfg:tools/ore_prospectors/copper', 'tfc:metal/propick/copper') + event.add('tfg:tools/ore_prospectors/bronze', 'tfc:metal/propick/bronze') + event.add('tfg:tools/ore_prospectors/bronze', 'tfc:metal/propick/bismuth_bronze') + event.add('tfg:tools/ore_prospectors/bronze', 'tfc:metal/propick/black_bronze') + event.add('tfg:tools/ore_prospectors/wrought_iron', 'tfc:metal/propick/wrought_iron') + event.add('tfg:tools/ore_prospectors/steel', 'tfc:metal/propick/steel') + event.add('tfg:tools/ore_prospectors/black_steel', 'tfc:metal/propick/black_steel') + event.add('tfg:tools/ore_prospectors/blue_steel', 'tfc:metal/propick/blue_steel') + event.add('tfg:tools/ore_prospectors/red_steel', 'tfc:metal/propick/red_steel') + + // Paper from wood + event.add('tfg:hardwood_strips', 'tfg:hardwood_strip') + event.add('tfg:hardwood_strips', 'tfg:soaked_hardwood_strip') + //Adding any of these dusts to the forge dusts/wood tag will make it so you can craft softwood pulp using hardwood pulp. which is not ok. + event.add('tfg:wood_dusts', 'gtceu:hardwood_dust') + event.add('tfg:tiny_wood_dusts', 'gtceu:tiny_hardwood_dust') + event.add('tfg:small_wood_dusts', 'gtceu:small_hardwood_dust') + event.add('tfg:wood_dusts', 'gtceu:wood_dust') + event.add('tfg:tiny_wood_dusts', 'gtceu:tiny_wood_dust') + event.add('tfg:small_wood_dusts', 'gtceu:small_wood_dust') + + // Waxe + event.add('forge:wax', 'gtceu:wax_dust'); + event.add('forge:wax', 'tfg:paraffin_wax') + event.add('forge:wax', 'firmalife:beeswax') + event.add('forge:wax', 'tfg:conifer_rosin') + event.add('forge:wax', 'tfg:crimsene_gem') + event.add('forge:wax', 'tfg:warpane_gem') + + // Cloth & String + event.add('tfg:lightweight_cloth', 'tfc:silk_cloth') + event.add('tfg:lightweight_cloth', 'tfg:phantom_silk') + event.add('tfg:lightweight_cloth', 'tfg:polycaprolactam_fabric') + event.add('forge:cloth', 'tfg:phantom_silk') + event.add('forge:cloth', 'tfg:polycaprolactam_fabric') + event.add('tfc:high_quality_cloth', 'tfg:phantom_silk') + event.add('tfc:high_quality_cloth', 'tfg:polycaprolactam_fabric') + event.add('tfc:sewing_light_cloth', 'tfg:phantom_silk') + 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') +} + +function registerTFGPrimitiveBlockTags(event) { + event.add('minecraft:mineable/shovel', 'tfg:ash_pile') + + event.add('tfg:harvester_harvestable', '#tfc:fruit_tree_leaves') + event.add('tfg:harvester_harvestable', '#tfc:berry_bushes') + event.add('tfg:harvester_harvestable', '#tfc:any_spreading_bush') + event.add('tfg:harvester_harvestable', '#firmalife:grape_strings') + event.add('tfg:harvester_harvestable', '#firmalife:grape_trellis_posts_plant') + //added for QOL but doesnt harvest anything + event.add('tfg:harvester_harvestable', 'firmalife:grape_fluff_red') + event.add('tfg:harvester_harvestable', 'firmalife:grape_fluff_white') +} + +function registerTFGPrimitiveFluidTags(event) { + event.add('tfg:usable_in_small_gear_mold', 'gtceu:copper') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:tin') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:sterling_silver') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:bismuth_bronze') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:bronze') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:zinc') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:silver') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:potin') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:bismuth') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:lead') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:nickel') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:brass') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:gold') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:red_alloy') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:black_bronze') + event.add('tfg:usable_in_small_gear_mold', 'gtceu:rose_gold') + + event.add('tfg:usable_in_rod_mold', 'gtceu:red_alloy') + event.add('tfg:usable_in_rod_mold', 'gtceu:bronze') + event.add('tfg:usable_in_rod_mold', 'gtceu:bismuth_bronze') + event.add('tfg:usable_in_rod_mold', 'gtceu:black_bronze') + event.add('tfg:usable_in_rod_mold', 'gtceu:brass') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.converting.js b/kubejs/server_scripts/tfg/recipes.converting.js deleted file mode 100644 index b4258f30c..000000000 --- a/kubejs/server_scripts/tfg/recipes.converting.js +++ /dev/null @@ -1,10 +0,0 @@ -// priority: 0 -"use strict"; - -/** - * @param {Internal.RecipesEventJS} event - */ -function registerTFGConvertingRecipes(event) { - - event.shapeless('vintageimprovements:belt_grinder', 'vintageimprovements:lathe') -} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.js b/kubejs/server_scripts/tfg/recipes.js index 781873af8..f6d91db2c 100644 --- a/kubejs/server_scripts/tfg/recipes.js +++ b/kubejs/server_scripts/tfg/recipes.js @@ -6,19 +6,81 @@ */ const registerTFGRecipes = (event) => { - registerTFGPapermakingRecipes(event) + registerTFGMoldRecipes(event) + registerTFGMiscellaneousRecipes(event) + registerTFGTemporaryRecipes(event) + + registerTFGFoodRecipes(event) + registerTFGRefrigeratorRecipes(event) + registerTFGMealBagRecipes(event) + registerTFGBiomassRecipes(event) + + // TFC stone types + registerTFCStoneRecipes(event) + // Non-TFC stone types registerTFGRockRecipes(event) registerTFGCollapseRecipes(event) - registerTFGMoldRecipes(event) - registerTFGMedicineRecipes(event) - registerTFGMiscellaneousRecipes(event) - registerTFGSupportRecipes(event) - registerTFGFishingNetsRecipes(event) - registerTFGConvertingRecipes(event) - registerTFGFoodRecipes(event) - registerTFGSpaceRecipes(event) registerTFGStoneDustRecipes(event) + registerTFGConcreteRecipes(event) + registerTFGAlabasterRecipes(event) + registerTFGDirtRecipes(event) + registerTFGSandRecipes(event) + + registerTFGPapermakingRecipes(event) + registerTFGMedicineRecipes(event) + registerTFGFishingNetsRecipes(event) + registerTFGSupportRecipes(event) + registerTFGVaseRecipes(event) + registerTFGIceRecipes(event) + registerTFGBasketRecipes(event) + registerTFGArrowRecipes(event) + registerTFGCompostRecipes(event) + registerTFGClothRecipes(event) + registerTFGChipboardRecipes(event) + registerTFGWaxRecipes(event) + registerTFGRubberRecipes(event) + registerTFGWoodRecipes(event) + registerTFGKnappingRecipes(event) + registerTFGLeatherRecipes(event) + registerTFGClayRecipes(event) + registerTFGEquipmentRecipes(event) + registerTFGDyeRecipes(event) + + registerTFGCasingRecipes(event) + registerTFGEnderPearlRecipes(event) + registerTFGMultiblockRecipes(event) + registerTFGSteamBloomeryRecipes(event) + registerTFGElectronicComponentsRecipes(event) + + registerTFGEarlyGasRecipes(event) + registerTFGBoilerRecipes(event) + registerTFGBiodieselRecipes(event) registerTFGNuclearRecipes(event) + registerTFGSMRAdditives(event) + registerTFGNuclearComponentsRecipes(event) + registerTFGSolarRecipes(event) + registerTFGCoalRecipes(event) + + registerTFGZirconiumRecipes(event) + registerTFGBromineRecipes(event) + registerTFGTungstenRecipes(event) + registerTFGAlloyingRecipes(event) + registerTFGQuartzRecipes(event) + + registerTFGSpaceRecipes(event) + registerTFGRailgunRecipes(event) + registerTFGRocketRecipes(event) + registerTFGSpaceSuitRecipes(event) + registerTFGInsulationRecipes(event) + + registerTFGMoonRecipes(event) + registerTFGMoonPlantRecipes(event) + registerTFGMoonRegolithRecipes(event) + + registerTFGMarsRecipes(event) + registerTFGMarsIodineRecipes(event) + registerTFGMarsOstrumRecipes(event) + + registerTFGVenusRecipes(event) registerTFGBiochemRecipes(event) - registerTFGSpaceOres(event) } diff --git a/kubejs/server_scripts/tfg/recipes.miscellaneous.js b/kubejs/server_scripts/tfg/recipes.miscellaneous.js index 6efcf0d46..3499e2494 100644 --- a/kubejs/server_scripts/tfg/recipes.miscellaneous.js +++ b/kubejs/server_scripts/tfg/recipes.miscellaneous.js @@ -7,13 +7,9 @@ */ function registerTFGMiscellaneousRecipes(event) { - //tfc:moss - event.replaceInput({}, 'minecraft:vine', '#tfc:moss') - - //forge:wax - event.replaceInput({}, 'firmalife:beeswax', '#forge:wax') - //Moss + event.replaceInput({ input: 'minecraft:vine' }, 'minecraft:vine', '#tfc:moss') + event.shapeless('1x minecraft:moss_block', [ '#tfc:dirt', '#tfc:moss' @@ -25,379 +21,13 @@ function registerTFGMiscellaneousRecipes(event) { A: 'minecraft:moss_block' }).id(`tfg:shaped/moss_carpet`) - //paraffin - event.recipes.gtceu.chemical_reactor('tfg:paraffin_wax_from_lubricant') - .circuit(7) - .itemOutputs('6x tfg:paraffin_wax') - .outputFluids(Fluid.of('gtceu:oil_light', 25)) - .inputFluids(Fluid.of('gtceu:lubricant', 250), Fluid.of('gtceu:acetone', 25)) - .duration(500) - .EUt(GTValues.VA[GTValues.LV]) - - // Rosin - event.recipes.firmalife.vat() - .inputs('tfc:powder/charcoal', Fluid.of('tfg:conifer_pitch', 1000)) - .outputItem('tfg:conifer_rosin') - .id('tfg:vat/conifer_pitch_to_rosin'); - - event.recipes.tfc.pot('tfc:powder/charcoal', Fluid.of('tfg:conifer_pitch', 1000), 1200, 300) - .itemOutput('tfg:conifer_rosin') - .id('tfg:pot/conifer_pitch_to_rosin') - - event.recipes.gtceu.fluid_solidifier('tfg:pitch_to_rosin') - .inputFluids(Fluid.of('tfg:conifer_pitch', 1000)) - .itemInputs('tfc:powder/charcoal') - .itemOutputs('tfg:conifer_rosin') - .duration(20 * 12) - .EUt(GTValues.VA[GTValues.LV]) - - // Decorative Vases - global.MINECRAFT_DYE_NAMES.forEach(color => { - event.recipes.gtceu.chemical_bath(`tfg:chemical_bath/dyeing/decorative_vase/unfired/${color}`) - .itemInputs('#tfg:decorative_vases/unfired') - .inputFluids(Fluid.of(`tfc:${color}_dye`, 25)) - .itemOutputs(`tfg:decorative_vase/unfired/${color}`) - .duration(80) - .EUt(GTValues.VA[GTValues.ULV]) - .category(GTRecipeCategories.CHEM_DYES) - - event.recipes.tfc.heating(`tfg:decorative_vase/unfired/${color}`, 1399) - .resultItem(`tfg:decorative_vase/${color}`) - .id(`tfg:heating/decorative_vase/unfired/${color}`) - - event.recipes.tfc.barrel_sealed(1000) - .outputItem(`tfg:decorative_vase/unfired/${color}`) - .inputItem(Ingredient.of('#tfg:decorative_vases/unfired').subtract(`tfg:decorative_vase/unfired/${color}`)) - .inputFluid(Fluid.of(`tfc:${color}_dye`, 25)) - .id(`tfg:barrel/dyeing/decorative_vase/${color}`) - - event.smelting( - `1x tfg:decorative_vase/${color}`, - `tfg:decorative_vase/unfired/${color}` - ).id(`tfg:smelting/decorative_vase/${color}`) - }) - - event.recipes.gtceu.chemical_bath(`tfg:chemical_bath/bleaching/decorative_vase/unfired`) - .itemInputs('#tfg:decorative_vases/unfired') - .inputFluids(Fluid.of('gtceu:chlorine', 72)) - .itemOutputs('tfg:decorative_vase/unfired') - .duration(80) - .EUt(GTValues.VA[GTValues.ULV]) - .category(GTRecipeCategories.CHEM_DYES) - - event.smelting( - '1x tfg:decorative_vase', - 'tfg:decorative_vase/unfired' - ).id('tfg:smelting/decorative_vase') - - event.recipes.tfc.heating('tfg:decorative_vase/unfired', 1399) - .resultItem('tfg:decorative_vase') - .id('tfg:heating/decorative_vase/unfired') - - event.recipes.tfc.knapping( - 'tfg:decorative_vase/unfired', - 'tfc:clay', - [ - ' X X ', - 'XX XX', - 'X X', - 'X X', - 'XXXXX' - ] - ).outsideSlotRequired(false) - .id('tfg:knapping/decorative_vase/unfired') - - - // lactose & curd - event.recipes.gtceu.mixer('lactose_milk_cow') - .circuit(1) - .inputFluids(Fluid.of('minecraft:milk', 1000), Fluid.of('gtceu:acetic_acid', 25)) - .itemOutputs('1x gtceu:lactose_dust') - .outputFluids(Fluid.of('tfc:curdled_milk', 1000)) - .duration(300) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.mixer('lactose_milk_yak') - .circuit(1) - .inputFluids(Fluid.of('firmalife:yak_milk', 1000), Fluid.of('gtceu:acetic_acid', 25)) - .itemOutputs('1x gtceu:lactose_dust') - .outputFluids(Fluid.of('firmalife:curdled_yak_milk', 1000)) - .duration(300) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.mixer('lactose_milk_goat') - .circuit(1) - .inputFluids(Fluid.of('firmalife:goat_milk', 1000), Fluid.of('gtceu:acetic_acid', 25)) - .itemOutputs('1x gtceu:lactose_dust') - .outputFluids(Fluid.of('firmalife:curdled_goat_milk', 1000)) - .duration(300) - .EUt(GTValues.VA[GTValues.LV]) - - //Scaffolding Frame - event.shaped('tfg:scaffolding_frame', - [ - ' A ', - 'ABA', - ' A ' - ], - { - A: '#forge:rods/wood', - B: '#forge:cloth' - }).id('tfg:shaped/scaffolding_frame'); - - //Airship Hull - event.shaped('tfg:airship_hull', [ - 'A B', - 'C C', - 'CCC' - ], { - A: '#forge:tools/screwdrivers', - B: '#forge:tools/hammers', - C: 'immersive_aircraft:hull' - }).id('tfg:shaped/airship_hull'); - event.recipes.gtceu.assembler('tfg:assembler/airship_hull') - .itemInputs('5x immersive_aircraft:hull') - .itemOutputs('tfg:airship_hull') - .duration(40) - .circuit(1) - .EUt(GTValues.VA[GTValues.ULV]); - - //Airship Balloon - event.shaped('tfg:airship_balloon', [ - 'ABA', - 'BAB', - 'ABA' - ], { - A: '#forge:string', - B: 'immersive_aircraft:sail' - }).id('tfg:shaped/airship_balloon') - - event.recipes.gtceu.assembler('tfg:assembler/airship_balloon') - .itemInputs('4x immersive_aircraft:sail', '4x #forge:string') - .itemOutputs('tfg:airship_balloon') - .duration(40) - .circuit(1) - .EUt(GTValues.VA[GTValues.ULV]) - - // Steam bloomery - event.shaped('gtceu:steam_bloomery', [ - 'CEC', - 'DAD', - 'CBC' - ], { - A: 'tfc:bloomery', - B: '#forge:frames/bronze', - C: '#forge:rods/black_steel', - D: '#forge:screws/wrought_iron', - E: '#forge:tools/wrenches' - }) - - // Arrow Parts - event.recipes.tfc.knapping( - '4x tfg:flint_arrow_head', - 'tfg:flint', - [ - ' XXX', - ' XXXX', - 'XXXXX', - ' XXX ', - ' X ' - ] - ).outsideSlotRequired(false) - .id('tfg:knapping/flint_arrow_head') - - event.recipes.gtceu.assembler('tfg:assembler/flint_arrow_head') - .itemInputs('1x minecraft:flint') - .itemOutputs('4x tfg:flint_arrow_head') - .duration(20) - .circuit(4) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.tfc.damage_inputs_shapeless_crafting( - event.shapeless('4x tfg:fletching', [ - 'minecraft:feather', - '#forge:tools/knives' - ]).id('tfg:shapeless/fletching')) - - event.recipes.gtceu.assembler('tfg:assembler/fletching') - .itemInputs('1x minecraft:feather') - .itemOutputs('4x tfg:fletching') - .duration(20) - .circuit(4) - .EUt(GTValues.VA[GTValues.ULV]) - - event.shaped('4x minecraft:arrow', [ - ' A ', - ' B ', - ' C ' - ], { - A: 'tfg:flint_arrow_head', - B: '#forge:rods/wooden', - C: 'tfg:fletching' - }).id('tfg:shaped/arrow') - - // Ice - event.remove({ id: 'gtceu:compressor/ice_from_dust' }) - event.remove({ id: 'gtceu:compressor/ice_from_snow' }) - - event.shapeless('#forge:dusts/ice', ['#forge:tools/mortars', '4x firmalife:ice_shavings']) - .id('tfg:shaped/ice_shavings') - - event.recipes.tfc.quern('#forge:small_dusts/ice', 'firmalife:ice_shavings') - .id('tfg:quern/ice_dust') - - event.recipes.gtceu.macerator('tfg:macerating_ice_shavings') - .itemInputs('firmalife:ice_shavings') - .itemOutputs('#forge:small_dusts/ice') - .duration(10) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.macerator('tfg:macerating_ice_shavings_reverse') - .itemInputs('#forge:dusts/ice') - .itemOutputs('4x firmalife:ice_shavings') - .duration(20) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.fluid_solidifier('tfg:ice') - .inputFluids("#tfg:clean_water 144") - .notConsumable('gtceu:block_casting_mold') - .itemOutputs('minecraft:ice') - .duration(200) - .EUt(GTValues.VA[GTValues.LV]) - - event.shapeless('4x firmalife:ice_shavings', ['#forge:dusts/ice', '#forge:tools/hammers']) - - event.recipes.gtceu.mixer('tfg:ice_slush_from_dry_ice') - .itemInputs('1x tfg:dry_ice') - .inputFluids("#tfc:water 8000") - .outputFluids(Fluid.of('gtceu:ice', 8000)) - .duration(80) - .EUt(GTValues.VA[GTValues.ULV]) - - // Cooling water - event.recipes.tfc.barrel_sealed(250) - .inputItem('1x tfg:dry_ice') - .inputFluid(Fluid.of('minecraft:water', 5000)) - .outputFluid(Fluid.of('gtceu:ice', 5000)) - .id('tfg:barrel/cooling_water_0') - - event.recipes.tfc.barrel_sealed(1000) - .inputItem('1x #forge:dusts/ice') - .inputFluid(Fluid.of('minecraft:water', 144)) - .outputFluid(Fluid.of('gtceu:ice', 144)) - .id('tfg:barrel/cooling_water_1') - - event.recipes.tfc.barrel_sealed(1000) - .inputItem('16x minecraft:snowball') - .inputFluid(Fluid.of('minecraft:water', 144)) - .outputFluid(Fluid.of('gtceu:ice', 144)) - .id('tfg:barrel/cooling_water_2') - - event.recipes.tfc.barrel_sealed(2000) - .inputItem('1x #forge:dusts/ice') - .inputFluid(Fluid.of('tfc:salt_water', 144)) - .outputFluid(Fluid.of('gtceu:ice', 144)) - .id('tfg:barrel/cooling_water_3') - - event.recipes.tfc.barrel_sealed(2000) - .inputItem('16x minecraft:snowball') - .inputFluid(Fluid.of('tfc:salt_water', 144)) - .outputFluid(Fluid.of('gtceu:ice', 144)) - .id('tfg:barrel/cooling_water_4') - - // Freezing it - event.recipes.tfc.barrel_sealed(3000) - .inputItem('9x #forge:dusts/ice') - .inputFluid(Fluid.of('gtceu:ice', 144)) - .outputItem('minecraft:packed_ice') - .id('tfg:barrel/packed_ice') - - // Heating it back up - event.recipes.tfc.pot([], Fluid.of('gtceu:ice', 144), 300, 100) - .fluidOutput(Fluid.of('minecraft:water', 144)) - - event.recipes.firmalife.vat() - .inputFluid(Fluid.of('gtceu:ice', 144)) - .outputFluid(Fluid.of('minecraft:water', 144)) - .length(300) - .temperature(100) - - // Snow - event.recipes.firmalife.stomping('minecraft:snow', 'minecraft:snowball', - 'minecraft:block/snow', 'minecraft:block/snow', 'minecraft:block.snow.place') - .id('tfg:stomping/snow_layer') - - event.shapeless('minecraft:snow_block', ['8x minecraft:snow']) - .id('tfg:shapeless/snow_block') - - event.shapeless('8x minecraft:snowball', ['minecraft:snow_block']) - .id('tfg:shapeless/snowball') - - event.shapeless('8x minecraft:snow', ['minecraft:snow_block', '#forge:tools/saws']) - .id('tfg:shapeless/snow') - - //Cloth & String - event.recipes.gtceu.wiremill('tfg:wiremill/phantom_thread') - .itemInputs('1x minecraft:phantom_membrane') - .itemOutputs('16x tfg:phantom_thread') - .duration(100) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.wiremill('tfg:wiremill/polycaprolactam_string') - .itemInputs(ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Polycaprolactam, 1)) - .itemOutputs('32x tfg:polycaprolactam_string') - .duration(100) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.assembler('tfg:assembler/phantom_silk') - .itemInputs('16x tfg:phantom_thread') - .itemOutputs('1x tfg:phantom_silk') - .duration(100) - .circuit(3) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.assembler('tfg:assembler/polycaprolactam_fabric') - .itemInputs('16x tfg:polycaprolactam_string') - .itemOutputs('1x tfg:polycaprolactam_fabric') - .duration(100) - .circuit(3) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.chemical_bath('tfg:chemical_bath/bleaching/polycaprolactam_string') - .itemInputs('tfg:polycaprolactam_string') - .inputFluids(Fluid.of('gtceu:chlorine', 16)) - .itemOutputs('minecraft:string') - .duration(80) - .EUt(GTValues.VA[GTValues.ULV]) - .category(GTRecipeCategories.CHEM_DYES) - - event.recipes.tfc.loom( - '1x tfg:phantom_silk', - '16x tfg:phantom_thread', - 8, - 'tfg:block/phantom_silk_block' - ) - - event.recipes.tfc.loom( - '1x tfg:polycaprolactam_fabric', - '16x tfg:polycaprolactam_string', - 8, - 'tfg:block/polycaprolactam_fabric_block' - ) - - event.recipes.tfc.damage_inputs_shapeless_crafting( - event.shapeless('16x tfg:phantom_thread', [ - 'minecraft:phantom_membrane', - 'tfc:spindle' - ]).id('tfg:shapeless/phantom_thread')) - // Universal Circuit global.UNIVERSAL_CIRCUIT_TIERS.forEach(tier => { event.shapeless(Item.of(`tfg:${tier}_universal_circuit`, 1), [Ingredient.of([`#gtceu:circuits/${tier}`]).subtract([`tfg:${tier}_universal_circuit`])] ).id(`universal_circuits_${tier}`); }); - + // Armor stands event.shapeless('1x tfg:armor_stand_arms', [ 'minecraft:armor_stand' ]).id(`tfg:shapeless/armor_stand_arms`) @@ -406,6 +36,7 @@ function registerTFGMiscellaneousRecipes(event) { 'tfg:armor_stand_arms' ]).id(`tfg:shapeless/armor_stand`) + // Piglin disguise event.recipes.tfc.sewing( '1x tfg:piglin_disguise', [ @@ -422,7 +53,7 @@ function registerTFGMiscellaneousRecipes(event) { ] ).id('tfg:sewing/piglin_disguise') - //trowel + //Trowel event.shaped('tfg:trowel', [ 'DBC', 'AA ', @@ -441,841 +72,6 @@ function registerTFGMiscellaneousRecipes(event) { .circuit(4) .EUt(GTValues.VA[GTValues.ULV]) - // Food related - event.recipes.gtceu.forming_press('tfg:forming_press/foil_pack') - .itemInputs(ChemicalHelper.get(TagPrefix.foil, GTMaterials.Aluminium, 1), ChemicalHelper.get(TagPrefix.foil, GTMaterials.Polyethylene, 1)) - .itemOutputs('1x tfg:foil_pack') - .duration(100) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.gas_pressurizer('tfg:fluid_solidifier/dry_ice') - .inputFluids(Fluid.of('gtceu:carbon_dioxide', 1000)) - .notConsumable('gtceu:block_casting_mold') - .itemOutputs('2x tfg:dry_ice') - .duration(100) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.vacuum_freezer('tfg:vacuum_freezer/liq_co2') - .inputFluids(Fluid.of('gtceu:carbon_dioxide', 1000)) - .outputFluids(Fluid.of('gtceu:liquid_carbon_dioxide', 1000)) - .duration(160) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.vacuum_freezer('tfg:vacuum_freezer/dry_ice') - .inputFluids(Fluid.of('gtceu:liquid_carbon_dioxide', 1000)) - .notConsumable('gtceu:block_casting_mold') - .itemOutputs('10x tfg:dry_ice') - .duration(60) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.fluid_heater('tfg:fluid_heater/decompress_liq_co2') - .itemInputs('1x tfg:dry_ice') - .outputFluids(Fluid.of('gtceu:carbon_dioxide', 100)) - .duration(20) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.fluid_heater('tfg:fluid_heater/decompress_dry_ice') - .inputFluids(Fluid.of('gtceu:liquid_carbon_dioxide', 100)) - .outputFluids(Fluid.of('gtceu:carbon_dioxide', 100)) - .duration(20) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.mixer('tfg:clean_foil_pack') - .itemInputs('1x tfg:used_foil_pack') - .inputFluids("#tfg:clean_water 100") - .itemOutputs('1x tfg:clean_foil_pack') - .duration(200) - .circuit(1) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.ore_washer('tfg:ore_washer/distilled/clean_foil_pack') - .itemInputs('1x tfg:used_foil_pack') - .inputFluids(Fluid.of('gtceu:distilled_water', 10)) - .itemOutputs('1x tfg:clean_foil_pack') - .duration(200) - .circuit(2) - .EUt(GTValues.VA[GTValues.ULV]) - - event.custom({ - type: "ae2:transform", - circumstance: { - type: "fluid", - tag: "tfc:water" - }, - ingredients: [ - { item: 'tfg:used_foil_pack' }], - result: { item: 'tfg:clean_foil_pack' } - }).id('tfg:ae_transform/clean_foil_pack') - - event.recipes.greate.splashing(['tfg:clean_foil_pack'], 'tfg:used_foil_pack') - .id('tfg:splashing/clean_foil_pack') - - event.shapeless('1x tfg:used_foil_pack', [ - 'tfg:food/calorie_paste' - ]).id('tfg:shapeless/emptying/calorie_paste') - - event.shapeless('1x tfg:used_foil_pack', [ - 'tfg:food/meal_bag' - ]).id('tfg:shapeless/emptying/meal_bag') - - global.FOOD_FRUIT.forEach(fruit => { - event.shapeless('1x tfg:used_foil_pack', [ - `tfg:food/freeze_dried/${fruit.name}` - ]).id(`tfg:shapeless/emptying/freeze_dried/${fruit.name}`) - }) - - // Refrigerants - - event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/chlorodifluoromethane') - .inputFluids(Fluid.of('gtceu:chloroform', 1000), Fluid.of('gtceu:hydrofluoric_acid', 2000)) - .outputFluids(Fluid.of('tfg:chlorodifluoromethane', 1000), Fluid.of('gtceu:hydrochloric_acid', 2000)) - .duration(480) - .circuit(2) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/breakdown/chlorodifluoromethane') - .inputFluids(Fluid.of('tfg:chlorodifluoromethane', 200)) - .outputFluids(Fluid.of('gtceu:tetrafluoroethylene', 100), Fluid.of('gtceu:hydrochloric_acid', 200)) - .duration(100) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/acetylene') - .inputFluids(Fluid.of('gtceu:methane', 2000), Fluid.of('gtceu:oxygen', 3000)) - .outputFluids(Fluid.of('tfg:acetylene', 1000), Fluid.of('minecraft:water', 3000)) - .circuit(4) - .duration(120) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.chemical_reactor('tfg:chemical_reactor/1_1_1_2_tetrafluoroethane') - .inputFluids(Fluid.of('tfg:acetylene', 1000), Fluid.of('gtceu:chlorine', 4000), Fluid.of('gtceu:hydrofluoric_acid', 4000)) - .outputFluids(Fluid.of('tfg:1_1_1_2_tetrafluoroethane', 1000), Fluid.of('gtceu:hydrochloric_acid', 4000)) - .circuit(4) - .duration(480) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.cracker('tfg:cracker/isobutane') - .inputFluids(Fluid.of('gtceu:butane', 4000)) - .outputFluids(Fluid.of('tfg:isobutane', 1000), Fluid.of('gtceu:lpg', 3000)) - .circuit(4) - .duration(2400) - .EUt(GTValues.VA[GTValues.HV]) - - // Biofuels - - event.recipes.gtceu.chemical_reactor(`seed_oil_alcohol_biodiesel`) - .inputFluids("#tfc:alcohols 1000", Fluid.of('gtceu:seed_oil', 6000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.ULV]) - - // So you can craft Biodiesel without Chemical Reactor - event.recipes.gtceu.mixer(`tfg:seed_oil_alcohol_biodiesel`) - .inputFluids("#tfc:alcohols 1000", Fluid.of('gtceu:seed_oil', 1000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:bio_diesel', 500)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.ULV]) - - event.recipes.gtceu.chemical_reactor(`olive_oil_alcohol_biodiesel`) - .inputFluids("#tfc:alcohols 1000", Fluid.of('tfc:olive_oil', 4000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.ULV]) - - // So you can craft Biodiesel without Chemical Reactor - event.recipes.gtceu.mixer(`tfg:olive_oil_alcohol_biodiesel`) - .inputFluids("#tfc:alcohols 1000", Fluid.of('tfc:olive_oil', 1000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:bio_diesel', 500)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.ULV]) - - event.recipes.gtceu.chemical_reactor(`soybean_oil_alcohol_biodiesel`) - .inputFluids("#tfc:alcohols 1000", Fluid.of('firmalife:soybean_oil', 4000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.ULV]) - - // So you can craft Biodiesel without Chemical Reactor - event.recipes.gtceu.mixer(`tfg:soybean_oil_alcohol_biodiesel`) - .inputFluids("#tfc:alcohols 1000", Fluid.of('firmalife:soybean_oil', 1000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:bio_diesel', 500)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.ULV]) - - event.recipes.gtceu.chemical_reactor(`fish_oil_alcohol_biodiesel`) - .inputFluids("#tfc:alcohols 1000", Fluid.of('gtceu:fish_oil', 6000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.ULV]) - - // So you can craft Biodiesel without Chemical Reactor - event.recipes.gtceu.mixer(`tfg:fish_oil_alcohol_biodiesel`) - .inputFluids("#tfc:alcohols 1000", Fluid.of('gtceu:fish_oil', 1000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:bio_diesel', 500)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.ULV]) - - event.recipes.gtceu.chemical_reactor(`olive_oil_ethanol_biodiesel`) - .inputFluids(Fluid.of('tfc:olive_oil', 4000), Fluid.of('gtceu:ethanol', 1000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.LV]) - - event.recipes.gtceu.chemical_reactor(`olive_oil_methanol_biodiesel`) - .inputFluids(Fluid.of('tfc:olive_oil', 4000), Fluid.of('gtceu:methanol', 1000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.LV]) - - event.recipes.gtceu.chemical_reactor(`soybean_oil_ethanol_biodiesel`) - .inputFluids(Fluid.of('firmalife:soybean_oil', 4000), Fluid.of('gtceu:ethanol', 1000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.LV]) - - event.recipes.gtceu.chemical_reactor(`soybean_oil_methanol_biodiesel`) - .inputFluids(Fluid.of('firmalife:soybean_oil', 4000), Fluid.of('gtceu:methanol', 1000)) - .itemInputs('#forge:tiny_dusts/sodium_hydroxide') - .outputFluids(Fluid.of('gtceu:glycerol'), Fluid.of('gtceu:bio_diesel', 6000)) - .duration(20 * 10) - .EUt(GTValues.VHA[GTValues.LV]) - - event.recipes.gtceu.extractor(`rapeseed_oil`) - .itemInputs('tfg:rapeseed_product') - .outputFluids(Fluid.of('gtceu:seed_oil', 600)) - .duration(20 * 5) - .EUt(GTValues.VHA[GTValues.ULV]) - - event.recipes.gtceu.extractor(`sunflower_oil`) - .itemInputs('tfg:sunflower_product') - .outputFluids(Fluid.of('gtceu:seed_oil', 350)) - .duration(20 * 5) - .EUt(GTValues.VHA[GTValues.ULV]) - - event.recipes.tfc.barrel_sealed(1000) - .inputs('tfg:rapeseed_product', Fluid.of('minecraft:water', 100)) - .outputFluid(Fluid.of('gtceu:seed_oil', 250)) - .id('tfg:barrel/rapeseed_to_oil') - - event.recipes.tfc.barrel_sealed(1000) - .inputs('tfg:sunflower_product', Fluid.of('minecraft:water', 100)) - .outputFluid(Fluid.of('gtceu:seed_oil', 120)) - .id('tfg:barrel/sunflower_to_oil') - - // Not-ender pearl stuff - - event.recipes.gtceu.chemical_reactor('kaolinite') - .itemInputs('5x #tfg:aluminium_oxide', '2x #forge:dusts/silicon') - .inputFluids(Fluid.of('gtceu:distilled_water', 6000), Fluid.of('gtceu:chlorine', 8000)) - .itemOutputs('17x tfc:powder/kaolinite') - .outputFluids(Fluid.of('gtceu:hydrochloric_acid', 8000)) - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.chemical_reactor('kaolinite_ruby') - .itemInputs('6x #forge:dusts/ruby', '2x #forge:dusts/silicon') - .inputFluids(Fluid.of('gtceu:distilled_water', 6000), Fluid.of('gtceu:chlorine', 8000)) - .itemOutputs('17x tfc:powder/kaolinite', '1x #forge:dusts/chromium') - .outputFluids(Fluid.of('gtceu:hydrochloric_acid', 8000)) - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.pyrolyse_oven('vitrified_ender_dust') - .itemInputs('minecraft:ender_pearl', '2x tfc:powder/kaolinite', '4x #forge:insulation_t1') - .inputFluids(Fluid.of('gtceu:nitrogen', 100)) - .itemOutputs('tfg:vitrified_pearl') - .chancedOutput('gtceu:ash_dust', 2500, 0) - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.implosion_compressor('vitrified_ender_pearl_dynamite') - .itemInputs('4x #forge:dusts/vitrified_pearl', '2x gtceu:dynamite') - .itemOutputs('3x tfg:vitrified_pearl') - .chancedOutput('#forge:dusts/dark_ash', 2500, 0) - .duration(20) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.implosion_compressor('vitrified_ender_pearl_powderbarrel') - .itemInputs('4x #forge:dusts/vitrified_pearl', '8x gtceu:powderbarrel') - .itemOutputs('3x tfg:vitrified_pearl') - .chancedOutput('#forge:dusts/dark_ash', 2500, 0) - .duration(20) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.implosion_compressor('vitrified_ender_pearl_tnt') - .itemInputs('4x #forge:dusts/vitrified_pearl', '4x minecraft:tnt') - .itemOutputs('3x tfg:vitrified_pearl') - .chancedOutput('#forge:dusts/dark_ash', 2500, 0) - .duration(20) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.implosion_compressor('vitrified_ender_pearl_itnt') - .itemInputs('4x #forge:dusts/vitrified_pearl', 'gtceu:industrial_tnt') - .itemOutputs('3x tfg:vitrified_pearl') - .chancedOutput('#forge:dusts/dark_ash', 2500, 0) - .duration(20) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.macerator('vitrified_ender_pearl') - .itemInputs('tfg:vitrified_pearl') - .itemOutputs('#forge:dusts/vitrified_pearl') - .duration(40) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.shaped('gtceu:mv_field_generator', [ - 'ABA', - 'CDC', - 'ABA' - ], { - A: ChemicalHelper.get(TagPrefix.wireGtQuadruple, GTMaterials.MagnesiumDiboride, 1), - B: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Aluminium, 1), - C: '#gtceu:circuits/mv', - D: 'tfg:vitrified_pearl' - }).addMaterialInfo().id('gtceu:shaped/field_generator_mv') - - event.recipes.gtceu.assembler('field_generator_mv') - .itemInputs('tfg:vitrified_pearl', '2x #forge:plates/aluminium', '2x #gtceu:circuits/mv', '4x #forge:quadruple_wires/magnesium_diboride') - .itemOutputs('gtceu:mv_field_generator') - .duration(100) - .EUt(30) - - // Harvest Baskets - - event.shaped('tfg:harvest_basket', [ - 'BDB', - 'ACA', - 'AAA' - ], { - A: 'tfg:soaked_hardwood_strip', - B: ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 1), - C: 'tfc:glue', - D: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1), - }).id('tfg:shaped/harvest_basket_from_wood') - - event.recipes.gtceu.assembler('tfg:assembler/harvest_basket_from_wood') - .itemInputs( - '5x tfg:soaked_hardwood_strip', - ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 2), - ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1) - ) - .inputFluids(Fluid.of('gtceu:glue', 50)) - .itemOutputs('tfg:harvest_basket') - .duration(100) - .EUt(GTValues.VA[GTValues.ULV]) - - event.shaped('tfg:harvest_basket', [ - 'BDB', - 'ACA', - 'AAA' - ], { - A: 'tfc:soaked_papyrus_strip', - B: ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 1), - C: 'tfc:glue', - D: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1), - }).id('tfg:shaped/harvest_basket_from_papyrus') - - event.recipes.gtceu.assembler('tfg:assembler/harvest_basket_from_papyrus') - .itemInputs( - '5x tfc:soaked_papyrus_strip', - ChemicalHelper.get(TagPrefix.bolt, GTMaterials.SterlingSilver, 2), - ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 1) - ) - .inputFluids(Fluid.of('gtceu:glue', 50)) - .itemOutputs('tfg:harvest_basket') - .circuit(2) - .duration(100) - .EUt(GTValues.VA[GTValues.ULV]) - - event.recipes.gtceu.assembler('tfg:assembler/aluminium_harvest_basket') - .itemInputs( - ChemicalHelper.get(TagPrefix.plate, GTMaterials.Aluminium, 3), - ChemicalHelper.get(TagPrefix.foil, GTMaterials.Aluminium, 2), - ChemicalHelper.get(TagPrefix.bolt, GTMaterials.Steel, 2), - ChemicalHelper.get(TagPrefix.rodLong, - GTMaterials.Aluminium, 1) - ) - .inputFluids(Fluid.of('gtceu:cobalt_brass', 144)) - .itemOutputs('tfg:aluminium_harvest_basket') - .duration(200) - .circuit(4) - .EUt(GTValues.VA[GTValues.LV]) - .addMaterialInfo(true) - - //Rock-wool stuff - event.recipes.gtceu.mixer('tfg:aes_mix') - .itemInputs('5x gtceu:silicon_dioxide_dust', '4x gtceu:quicklime_dust', 'gtceu:magnesia_dust') - .itemOutputs('10x tfg:aes_mix_dust') - .duration(160) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.electric_blast_furnace('tfg:molten_aes') - .itemInputs('2x tfg:aes_mix_dust') - .outputFluids(Fluid.of('tfg:molten_aes', 1000)) - .chancedOutput('gtceu:ash_dust', 3000, 0) - .circuit(1) - .duration(400) - .blastFurnaceTemp(3000) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.electric_blast_furnace('tfg:molten_aes_he') - .itemInputs('2x tfg:aes_mix_dust') - .inputFluids(Fluid.of('gtceu:helium', 200)) - .outputFluids(Fluid.of('tfg:molten_aes', 1000)) - .circuit(2) - .duration(140) - .blastFurnaceTemp(3000) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.centrifuge('tfg:aes_wool') - .inputFluids(Fluid.of('tfg:molten_aes', 200)) - .itemOutputs('tfg:aes_wool') - .duration(30) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.forming_press('tfg:aes_compressed_wool') - .itemInputs('4x tfg:aes_wool') - .notConsumable('gtceu:ingot_casting_mold') - .itemOutputs('tfg:aes_compressed_wool') - .duration(40) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.chemical_bath('tfg:aes_insulation_sheet') - .itemInputs('tfg:aes_compressed_wool') - .inputFluids(Fluid.of('gtceu:epoxy', 72)) - .circuit(1) - .itemOutputs('tfg:aes_insulation_sheet') - .duration(80) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.chemical_bath('tfg:aes_insulation_roll') - .itemInputs('9x tfg:aes_compressed_wool') - .inputFluids(Fluid.of('gtceu:epoxy', 648)) - .itemOutputs('tfg:aes_insulation_roll') - .circuit(9) - .duration(400) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.assembler('tfg:aes_insulation_roll') - .itemInputs('9x tfg:aes_insulation_sheet') - .itemOutputs('tfg:aes_insulation_roll') - .circuit(0) - .duration(20) - .EUt(GTValues.VA[GTValues.LV]) - - event.shaped('tfg:aes_insulation_roll', [ - 'AAA', - 'AAA', - 'AAA' - ], { - A: 'tfg:aes_insulation_sheet', - }).id('tfg:shaped/aes_insulation_roll') - - event.recipes.gtceu.assembler('tfg:aes_insulation_sheet') - .itemInputs('9x tfg:aes_insulation_sheet') - .itemOutputs('tfg:aes_insulation_roll') - .circuit(0) - .duration(20) - .EUt(GTValues.VA[GTValues.LV]) - - event.shapeless('9x tfg:aes_insulation_sheet', [ - 'tfg:aes_insulation_roll' - ]).id('tfg:shapeless/aes_insulation_sheet') - - event.recipes.gtceu.electric_blast_furnace('tfg:smelt_aes_sheet') - .itemInputs('tfg:aes_insulation_sheet') - .inputFluids(Fluid.of('gtceu:helium', 200)) - .outputFluids(Fluid.of('tfg:molten_aes', 800)) - .chancedOutput('gtceu:ash_dust', 2500, 0) - .circuit(1) - .duration(140) - .blastFurnaceTemp(3000) - .EUt(GTValues.VA[GTValues.EV]) - event.recipes.gtceu.electric_blast_furnace('tfg:smelt_aes_roll') - .itemInputs('tfg:aes_insulation_roll') - .inputFluids(Fluid.of('gtceu:helium', 1000)) - .itemOutputs('2x gtceu:ash_dust') - .outputFluids(Fluid.of('tfg:molten_aes', 7200)) - .circuit(9) - .duration(1000) - .blastFurnaceTemp(3000) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.electric_blast_furnace('tfg:smelt_sniffer_wool') - .itemInputs('tfg:sniffer_wool') - .chancedOutput('gtceu:ash_dust', 7500, 0) - .outputFluids(Fluid.of('tfg:molten_aes', 200)) - .circuit(4) - .duration(80) - .blastFurnaceTemp(3000) - .EUt(GTValues.VA[GTValues.EV]) - event.recipes.gtceu.electric_blast_furnace('tfg: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(3000) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.tfc.damage_inputs_shapeless_crafting( - event.shapeless('8x tfc:wool_yarn', [ - 'tfc:spindle', - 'tfg:glacian_wool' - ]).id('tfg:shapeless/glacian_wool_to_yarn')) - - event.recipes.gtceu.wiremill('tfg:glacian_wool_yarn') - .itemInputs('tfg:glacian_wool') - .itemOutputs('8x tfc:wool_yarn') - .duration(100) - .EUt(4) - - event.recipes.tfc.damage_inputs_shapeless_crafting( - event.shapeless('4x tfg:fletching', [ - 'tfg:wraptor_wool', - '#forge:tools/knives' - ]).id('tfg:shapeless/wraptor_feather_fletching')) - - event.recipes.gtceu.assembler('tfg:assembler/wraptor_feather_fletching') - .itemInputs('1x tfg:wraptor_wool') - .itemOutputs('4x tfg:fletching') - .duration(20) - .circuit(4) - .EUt(GTValues.VA[GTValues.ULV]) - - - //endregion - - //#region Casings - global.GTCEU_SUPERCONDUCTORS.forEach((type, index) => { - const multiplier = index + 1 - - event.recipes.gtceu.assembler(`tfg:assembler/superconductor_coil_small_from_${type.name}`) - .itemInputs( - ChemicalHelper.get(TagPrefix.plate, GTMaterials.HSLASteel, 4), - ChemicalHelper.get(TagPrefix.rod, GTMaterials.Steel, 2), - ChemicalHelper.get(TagPrefix.rod, GTMaterials.SteelMagnetic, 1), - ChemicalHelper.get(TagPrefix.wireFine, GTMaterials[type.materialId], 4) - ) - .inputFluids(Fluid.of('gtceu:epoxy', 144)) - .itemOutputs(Item.of('tfg:superconductor_coil_small', 4 * multiplier)) - .circuit(4) - .duration(400) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.assembler(`tfg:assembler/superconductor_coil_large_from_${type.name}`) - .itemInputs( - ChemicalHelper.get(TagPrefix.plate, GTMaterials.HSLASteel, 4), - ChemicalHelper.get(TagPrefix.rod, GTMaterials.Steel, 2), - ChemicalHelper.get(TagPrefix.rod, GTMaterials.SteelMagnetic, 1), - ChemicalHelper.get(TagPrefix.wireGtSingle, GTMaterials[type.materialId], 4)) - .inputFluids(Fluid.of('gtceu:epoxy', 144)) - .itemOutputs(Item.of('tfg:superconductor_coil_large', 4 * multiplier)) - .circuit(7) - .duration(600) - .EUt(GTValues.VA[GTValues.MV]) - }) - - event.recipes.gtceu.assembler('tfg:assembler/electromagnetic_accelerator') - .itemInputs( - '2x #forge:plates/desh', - 'gtceu:mv_voltage_coil', - '5x tfg:dry_ice', - 'gtceu:nonconducting_casing' - ) - .inputFluids(Fluid.of('gtceu:blue_alloy', 288)) - .itemOutputs('6x tfg:electromagnetic_accelerator') - .circuit(4) - .duration(800) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.assembler('tfg:assembler/machine_casing_aluminium_plated_steel') - .itemInputs( - ChemicalHelper.get(TagPrefix.plate, GTMaterials.Aluminium, 6), - ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.Steel, 1) - ) - .inputFluids(Fluid.of('gtceu:silicon', 72)) - .itemOutputs('2x tfg:machine_casing_aluminium_plated_steel') - .circuit(6) - .duration(20 * (2.5)) - .EUt(GTValues.VH[GTValues.LV]) - - event.recipes.gtceu.assembler('tfg:reflector_from_lens') - .itemInputs( - '24x #forge:lenses', - ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.BlackSteel, 1) - ) - .inputFluids(Fluid.of('gtceu:silver', 1296)) - .itemOutputs('1x tfg:reflector') - .circuit(6) - .duration(20 * (60)) - .EUt(GTValues.VH[GTValues.HV]) - - event.recipes.gtceu.assembler('tfg:reflector_from_inr') - .itemInputs( - '1x gtceu:neutron_reflector', - ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.BlackSteel, 1) - ) - .itemOutputs('2x tfg:reflector') - .circuit(9) - .duration(20 * (20)) - .EUt(GTValues.VH[GTValues.MV]) - - event.recipes.gtceu.assembler('tfg:reflector_from_certus') - .itemInputs( - ChemicalHelper.get(TagPrefix.plate, GTMaterials.CertusQuartz, 12), - ChemicalHelper.get(TagPrefix.frameGt, GTMaterials.BlackSteel, 1) - ) - .inputFluids(Fluid.of('gtceu:silver', 488)) - .itemOutputs('1x tfg:reflector') - .circuit(6) - .dimension('ad_astra:moon') - .duration(20 * (60)) - .EUt(GTValues.VH[GTValues.MV]) - - //#endregion - - //region ammonia borane - event.recipes.gtceu.chemical_reactor('tfg:sodium_hydride_synthesis') - .itemInputs('#forge:dusts/sodium') - .inputFluids(Fluid.of('gtceu:hydrogen', 1000)) - .itemOutputs('2x #forge:dusts/sodium_hydride') - .duration(400) - .EUt(GTValues.VA[GTValues.HV]) - event.recipes.gtceu.chemical_reactor('tfg:boric_acid_synthesis') - .itemInputs('#forge:dusts/borax') - .inputFluids(Fluid.of('gtceu:hydrochloric_acid', 2000)) - .itemOutputs('4x #forge:dusts/boric_acid', '2x #forge:dusts/salt') - .outputFluids(Fluid.of('minecraft:water', 5000)) - .duration(400) - .EUt(GTValues.VA[GTValues.HV]) - event.recipes.gtceu.chemical_reactor('tfg:trimethyl_borate_synthesis') - .itemInputs('#forge:dusts/boric_acid') - .inputFluids(Fluid.of('gtceu:methanol', 3000), Fluid.of('gtceu:sulfuric_acid', 100)) - .outputFluids(Fluid.of('tfg:trimethyl_borate', 1000), Fluid.of('minecraft:water', 3000)) - .duration(300) - .EUt(GTValues.VA[GTValues.EV]) - event.recipes.gtceu.chemical_reactor('tfg:sodium_borohydride_synthesis') - .itemInputs('4x #forge:dusts/sodium_hydride') - .inputFluids(Fluid.of('tfg:trimethyl_borate', 1000)) - .itemOutputs('#forge:dusts/sodium_borohydride', '3x #forge:dusts/sodium_methoxide') - .duration(160) - .EUt(GTValues.VA[GTValues.EV]) - event.recipes.gtceu.chemical_reactor('tfg:ammonia_borane_synthesis') - .itemInputs('#forge:dusts/sodium_borohydride', '#forge:dusts/ammonium_chloride') - .itemOutputs('#forge:dusts/ammonia_borane', '#forge:dusts/salt') - .outputFluids(Fluid.of('gtceu:hydrogen', 2000)) - .duration(100) - .EUt(GTValues.VA[GTValues.IV]) - //endregion - - //region polyurethane - event.recipes.gtceu.chemical_reactor('tfg:aniline_synthesis') - .inputFluids(Fluid.of('gtceu:nitrobenzene', 1000), Fluid.of('gtceu:hydrogen', 6000)) - .notConsumable('#forge:dusts/iron') - .outputFluids(Fluid.of('tfg:aniline', 1000), Fluid.of('minecraft:water', 2000)) - .duration(140) - .EUt(GTValues.VA[GTValues.EV]) - event.recipes.gtceu.chemical_reactor('tfg:dimethyl_carbonate_synthesis') - .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)) - .outputFluids(Fluid.of('tfg:methyl_phenylcarbamate', 1000), Fluid.of('gtceu:methanol', 1000)) - .duration(200) - .EUt(GTValues.VA[GTValues.EV]) - event.recipes.gtceu.chemical_reactor('tfg:mpc_synthesis') - .inputFluids(Fluid.of('tfg:methyl_phenylcarbamate', 2000), Fluid.of('gtceu:formaldehyde', 1000)) - .outputFluids(Fluid.of('tfg:methylene_diphenyl_dicarbamate', 1000), Fluid.of('minecraft:water', 1000)) - .duration(200) - .EUt(GTValues.VA[GTValues.EV]) - event.recipes.gtceu.chemical_reactor('tfg:mpi_synthesis') - .inputFluids(Fluid.of('tfg:methylene_diphenyl_dicarbamate', 1000)) - .itemOutputs('#forge:dusts/methylene_diphenyl_diisocyanate') - .outputFluids(Fluid.of('gtceu:methanol', 2000)) - .duration(80) - .EUt(GTValues.VA[GTValues.IV]) - event.recipes.gtceu.mixer('tfg:aes_polyurethane_electric_only') - .itemInputs('2x #tfg:mineral_rich_wool', 'tfg:aes_compressed_wool', '#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]) - - //endregion - - //Aerogel - event.recipes.gtceu.chemical_reactor('tfg:tmos_synthesis') - .inputFluids(Fluid.of('tfg:dimethyl_carbonate', 2000)) - .itemInputs('#forge:dusts/silicon_dioxide') - .notConsumable('#forge:small_dusts/potassium_hydroxide') - .outputFluids(Fluid.of('tfg:tmos', 1000), Fluid.of('gtceu:carbon_dioxide', 2000)) - .duration(100) - .EUt(GTValues.VA[GTValues.IV]) - event.recipes.gtceu.chemical_reactor('tfg:tmos_hydrolysis') - .inputFluids(Fluid.of('tfg:tmos', 1000), Fluid.of('gtceu:distilled_water', 2000)) - .outputFluids(Fluid.of('gtceu:methanol', 4000)) - .itemOutputs('#forge:dusts/silicon_dioxide') - .duration(100) - .EUt(GTValues.VA[GTValues.MV]) - event.recipes.gtceu.large_chemical_reactor('tfg:silica_gel_synthesis') - .inputFluids(Fluid.of('tfg:tmos', 1000), Fluid.of('gtceu:ethanol', 2000), Fluid.of('gtceu:distilled_water', 500), - Fluid.of('gtceu:hydrochloric_acid', 100)) - .outputFluids(Fluid.of('tfg:silica_gel', 1000)) - .duration(300) - .EUt(GTValues.VA[GTValues.IV]) - event.recipes.gtceu.chemical_reactor('tfg:silica_gel_soaking') - .inputFluids(Fluid.of('tfg:silica_gel', 1000), Fluid.of('gtceu:acetone', 2000)) - .outputFluids(Fluid.of('tfg:soaked_silica_gel', 1000)) - .duration(400) - .EUt(GTValues.VA[GTValues.EV]) - event.recipes.gtceu.large_chemical_reactor('tfg:silica_aerogel') - .inputFluids(Fluid.of('tfg:soaked_silica_gel', 1000), Fluid.of('gtceu:liquid_carbon_dioxide', 3000)) - .outputFluids(Fluid.of('gtceu:carbon_dioxide', 3000), Fluid.of('gtceu:acetone', 1000)) - .itemOutputs('tfg:silica_aerogel') - .duration(400) - .EUt(GTValues.VA[GTValues.IV]) - //endregion - - //Tier 3 insulation - event.recipes.gtceu.forming_press('tfg:mli_shielding') - .itemInputs('4x #forge:plates/ammonia_borane', '2x tfg:aes_polyurethane', '4x gtceu:carbon_fiber_plate') - .itemOutputs('tfg:mli_shielding') - .duration(100) - .EUt(GTValues.VA[GTValues.IV]) - //endregion - - //#region Universal compost - - //Greens - // Lows via crafting with mortar - event.shaped(Item.of('tfg:universal_compost_greens', 1), [ - 'AB' - ], { - A: Ingredient.of(['#tfc:compost_greens_low']).subtract(['tfg:universal_compost_greens']), - B: '#forge:tools/mortars' - }).id('tfg:shaped/universal_compost_greens_from_low') - - // Mediums via crafting with mortar - event.shaped(Item.of('tfg:universal_compost_greens', 2), [ - 'AB' - ], { - A: '#tfc:compost_greens', - B: '#forge:tools/mortars' - }).id('tfg:shaped/universal_compost_greens_from_medium') - - // Highs via crafting with mortar - event.shaped(Item.of('tfg:universal_compost_greens', 4), [ - 'AB' - ], { - A: '#tfc:compost_greens_high', - B: '#forge:tools/mortars' - }).id('tfg:shaped/universal_compost_greens_from_high') - - // Filters - const greens_low = Ingredient.of('#tfc:compost_greens_low') - const browns_low = Ingredient.of('#tfc:compost_browns_low').itemIds - const greens_medium = Ingredient.of('#tfc:compost_greens') - const browns_medium = Ingredient.of('#tfc:compost_browns').itemIds - const greens_high = Ingredient.of('#tfc:compost_greens_high') - const browns_high = Ingredient.of('#tfc:compost_browns_high').itemIds - - let low_filtered = greens_low - let medium_filtered = greens_medium - let high_filtered = greens_high - - browns_low.forEach(item => { - low_filtered = low_filtered.subtract(item) - low_filtered = low_filtered.subtract('tfg:universal_compost_greens') - }) - browns_medium.forEach(item => { - medium_filtered = medium_filtered.subtract(item) - }) - browns_high.forEach(item => { - high_filtered = high_filtered.subtract(item) - }) - - // Lows via forge hammer - event.recipes.gtceu.forge_hammer('tfg:universal_compost_greens_low') - .itemInputs(low_filtered) - .itemOutputs('tfg:universal_compost_greens') - .duration(20) - .EUt(8) - - // Mediums via forge hammer - event.recipes.gtceu.forge_hammer('tfg:universal_compost_greens_medium') - .itemInputs(medium_filtered) - .itemOutputs(Item.of('tfg:universal_compost_greens', 2)) - .duration(20) - .EUt(8) - - // Highs via forge hammer - event.recipes.gtceu.forge_hammer('tfg:universal_compost_greens_high') - .itemInputs(high_filtered) - .itemOutputs(Item.of('tfg:universal_compost_greens', 4)) - .duration(20) - .EUt(8) - - //Browns - // Lows via crafting with mortar - event.shaped(Item.of('tfg:universal_compost_browns', 1), [ - 'BA' - ], { - A: Ingredient.of(['#tfc:compost_browns_low']).subtract(['tfg:universal_compost_browns']), - B: '#forge:tools/mortars' - }).id('tfg:shaped/universal_compost_browns_from_low') - - // Mediums via crafting with mortar - event.shaped(Item.of('tfg:universal_compost_browns', 2), [ - 'BA' - ], { - A: '#tfc:compost_browns', - B: '#forge:tools/mortars' - }).id('tfg:shaped/universal_compost_browns_from_medium') - - // Highs via crafting with mortar - event.shaped(Item.of('tfg:universal_compost_browns', 4), [ - 'BA' - ], { - A: '#tfc:compost_browns_high', - B: '#forge:tools/mortars' - }).id('tfg:shaped/universal_compost_browns_from_high') - - // Lows via forge hammer - event.recipes.gtceu.forge_hammer('tfg:universal_compost_browns_low') - .itemInputs('#tfc:compost_browns_low') - .itemOutputs('tfg:universal_compost_browns') - .duration(20) - .EUt(8) - - // Mediums via forge hammer - event.recipes.gtceu.forge_hammer('tfg:universal_compost_browns_medium') - .itemInputs('#tfc:compost_browns') - .itemOutputs(Item.of('tfg:universal_compost_browns', 2)) - .duration(20) - .EUt(8) - - // Highs via forge hammer - event.recipes.gtceu.forge_hammer('tfg:universal_compost_browns_high') - .itemInputs('#tfc:compost_browns_high') - .itemOutputs(Item.of('tfg:universal_compost_browns', 4)) - .duration(20) - .EUt(8) - - //#endregion - // Etching Tip event.recipes.tfc.damage_inputs_shapeless_crafting(event.recipes.minecraft.crafting_shapeless('tfg:etching_diamond_tip', [ '#forge:tools/hammers', @@ -1285,220 +81,7 @@ function registerTFGMiscellaneousRecipes(event) { event.replaceInput({ id: "minecraft:jukebox" }, 'minecraft:diamond', 'tfg:etching_diamond_tip'); - //Large Nest - event.shaped('tfg:large_nest_box', - [ - 'B B', - 'ABA', - 'AAA' - ], { - A: 'beneath:crimson_thatch', - B: 'beneath:crimson_straw' - }).id('tfg:shaped_large_nest_crimson') - - event.shaped('tfg:large_nest_box_warped', - [ - 'B B', - 'ABA', - 'AAA' - ], { - A: 'beneath:warped_thatch', - B: 'beneath:warped_straw' - }).id('tfg:shaped_large_nest_warped') - - //#endregion - - //#region flax stuff - - event.shapeless('1x tfg:flax_bundle', ['9x tfg:flax_product']) - event.recipes.gtceu.packer('tfg:packer/flax_bundle') - .itemInputs('9x tfg:flax_product') - .itemOutputs('tfg:flax_bundle') - .duration('100') - .EUt(GTValues.VA[GTValues.ULV]) - - event.shapeless('1x tfg:bundled_scraped_flax', ['9x tfg:flax_waste']) - event.recipes.gtceu.packer('tfg:packer/bundled_scraped_flax') - .itemInputs('9x tfg:flax_waste') - .itemOutputs('tfg:bundled_scraped_flax') - .duration('100') - .EUt(GTValues.VA[GTValues.ULV]) - - 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( - 'tfg:bundled_scraped_flax', - 'tfg:flax_bundle', - 'tfg:item/bundled_scraped_flax', - 'tfg:item/flax_bundle', - '18x tfg:flax_line' - ).id('tfg:scraping/flax_line_from_bundle') - - 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.scraping( - '9x tfc:groundcover/humus', - 'tfg:bundled_scraped_flax', - 'tfc:item/groundcover/humus', - 'tfg:item/bundled_scraped_flax', - '9x tfg:flax_tow' - ).id('tfg:scraping/flax_tow_from_pile') - - event.recipes.gtceu.cutter('tfg:flax_line_in_cutter') - .itemInputs('tfg:flax_product') - .itemOutputs('2x tfg:flax_line', 'tfg:flax_waste') - .duration(60) - .EUt(2) - - event.recipes.gtceu.cutter('tfg:flax_line_from_bundle_in_cutter') - .itemInputs('tfg:flax_bundle') - .itemOutputs('18x tfg:flax_line', 'tfg:bundled_scraped_flax') - .duration(540) - .EUt(2) - - event.recipes.gtceu.cutter('tfg:flax_tow_in_cutter') - .itemInputs('tfg:flax_waste') - .itemOutputs('1x tfg:flax_tow', '1x tfc:groundcover/humus') - .duration(60) - .EUt(2) - - event.recipes.gtceu.cutter('tfg:flax_tow_from_bundle_in_cutter') - .itemInputs('tfg:bundled_scraped_flax') - .itemOutputs('9x tfg:flax_tow', '9x tfc:groundcover/humus') - .duration(540) - .EUt(2) - - event.recipes.gtceu.centrifuge('tfg:flax_product') - .itemInputs('tfg:flax_product') - .itemOutputs('2x tfg:flax_line', 'tfg:flax_tow', 'tfc:groundcover/humus') - .duration(200) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.centrifuge('tfg:flax_product_from_bundle') - .itemInputs('tfg:flax_bundle') - .itemOutputs('18x tfg:flax_line', '9x tfg:flax_tow', '9x tfc:groundcover/humus') - .duration(1800) - .EUt(GTValues.VA[GTValues.LV]) - - event.custom({ - type: 'vintageimprovements:centrifugation', - ingredients: [{ item: 'tfg:flax_product' }], - results: [{ item: 'tfg:flax_line', count: 2 }, { item: 'tfg:flax_tow' }, { item: 'tfc:groundcover/humus' }], - processingTime: 40 * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id('tfg:vi_seperate_flax') - - event.custom({ - type: 'vintageimprovements:centrifugation', - ingredients: [{ item: 'tfg:flax_bundle' }], - results: [{ item: 'tfg:flax_line', count: 18 }, { item: 'tfg:flax_tow', count: 9 }, { item: 'tfc:groundcover/humus', count: 9 }], - processingTime: 360 * 90 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id('tfg:vi_seperate_flax_from_bundle') - - //#region flax line spining - event.recipes.tfc.damage_inputs_shapeless_crafting( - event.shapeless('4x tfg:linen_thread', [ - 'tfg:flax_line', - 'tfc:spindle' - ]).id('tfg:shapeless/linen_thread') - ) - - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [{ item: 'tfg:flax_line' }], - results: [{ item: 'tfg:linen_thread', count: 4 }], - processingTime: 2 * 10 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id('tfg:vi_spin_flax_line') - - event.recipes.gtceu.wiremill('tfg:spin_flax_line') - .itemInputs('tfg:flax_line') - .itemOutputs('4x tfg:linen_thread') - .duration(80) - .EUt(GTValues.VA[GTValues.LV]) - - //#region flax 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) - - - - event.recipes.gtceu.assembler('tfg:titanium_concrete') - .itemInputs('2x #forge:rods/titanium', '#forge:dusts/kaolinite') - .inputFluids(Fluid.of('gtceu:concrete', 144 * 1.5)) - .itemOutputs('tfg:titanium_concrete') - .circuit(2) - .duration(20) - .EUt(GTValues.VH[GTValues.EV]) - - event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_bricks') - .itemInputs('tfg:polished_titanium_concrete') - .notConsumable('#forge:lenses/light_blue') - .itemOutputs('tfg:titanium_concrete_bricks') - .duration(20 * (2.5)) - .EUt(GTValues.VA[GTValues.LV]) - event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_bricks_small') - .itemInputs('tfg:polished_titanium_concrete') - .notConsumable('#forge:lenses/pink') - .itemOutputs('tfg:titanium_concrete_bricks_small') - .duration(20 * (2.5)) - .EUt(GTValues.VA[GTValues.LV]) - event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_bricks_square') - .itemInputs('tfg:polished_titanium_concrete') - .notConsumable('#forge:lenses/green') - .itemOutputs('tfg:titanium_concrete_bricks_square') - .duration(20 * (2.5)) - .EUt(GTValues.VA[GTValues.LV]) - event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_tile') - .itemInputs('tfg:polished_titanium_concrete') - .notConsumable('#forge:lenses/red') - .itemOutputs('tfg:titanium_concrete_tile') - .duration(20 * (2.5)) - .EUt(GTValues.VA[GTValues.LV]) - event.recipes.gtceu.laser_engraver('tfg:titanium_concrete_tile_small') - .itemInputs('tfg:polished_titanium_concrete') - .notConsumable('#forge:lenses/black') - .itemOutputs('tfg:titanium_concrete_tile_small') - .duration(20 * (2.5)) - .EUt(GTValues.VA[GTValues.LV]) - // Interplanetary ae2 card - event.recipes.gtceu.assembler('tfg:wireless_card') .itemInputs( 'ae2:advanced_card', @@ -1512,5 +95,78 @@ function registerTFGMiscellaneousRecipes(event) { .itemOutputs('tfg:wireless_card') .duration(300) .EUt(GTValues.VA[GTValues.EV]) - + + // Replace bronze drums & crates with a tag containing the 3 different bronzes + // NOTE: A better way to do this would be to overwrite GTCraftingComponents.CRATE and GTCraftingComponents.DRUM in crafting_components.js, but tags seem to get populated after the recipes get registed, so... + event.replaceInput({ input: 'gtceu:bronze_crate' }, 'gtceu:bronze_crate', '#tfg:any_bronze_crate') + event.replaceInput({ input: 'gtceu:bronze_drum' , not: { id: 'gtceu:shapeless/drum_nbt_bronze' }}, 'gtceu:bronze_drum', '#tfg:any_bronze_drum') + + //#region RNR Paving Cart + const rubber_types = [ + { fluid: 'styrene_butadiene_rubber', quantity: 144 }, + { fluid: 'silicone_rubber', quantity: 288 }, + { fluid: 'rubber', quantity: 576 } + ]; + rubber_types.forEach((rubber) => { + event.recipes.gtceu.assembler(`tfg:cobalt_brass_wheel/${rubber.fluid}`) + .itemInputs( + ChemicalHelper.get(TagPrefix.rod, GTMaterials.CobaltBrass, 8), + Ingredient.of('firmaciv:rope_coil'), + Ingredient.of('#forge:screws/any_bronze').withCount(4) + ) + .inputFluids(Fluid.of(`gtceu:${rubber.fluid}`, rubber.quantity)) + .itemOutputs('tfg:cobalt_brass_wheel') + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.LV]) + }); + TFGHelpers.registerMaterialInfo('tfg:cobalt_brass_wheel', { 'rubber': 1, 'cobalt_brass': 4 }); + + event.recipes.create.mechanical_crafting('tfg:cobalt_brass_wheel', [ + ' D ', + 'CAAAC', + 'DABAD', + 'CAAAC', + ' D ' + + ], { + A: '#forge:rods/cobalt_brass', + B: 'firmaciv:rope_coil', + C: '#forge:screws/any_bronze', + D: '#forge:plates/rubber' + }).id('tfg:mechanical_crafter/cobalt_brass_wheel') + + const mattock_types = ['red', 'blue']; + mattock_types.forEach((type) => { + event.recipes.gtceu.assembler(`tfg:rnr_plow/${type}_steel`) + .itemInputs( + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.CobaltBrass, 1), + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TreatedWood, 2), + ChemicalHelper.get(TagPrefix.plate, GTMaterials.Invar, 4), + ChemicalHelper.get(TagPrefix.spring, GTMaterials.Steel, 2), + Ingredient.of('tfg:cobalt_brass_wheel').withCount(2), + Ingredient.of('create:chute').withCount(1), + Ingredient.of(`#forge:mattock_heads/${type}_steel`).withCount(3) + ) + .itemOutputs('tfg:rnr_plow') + .duration(20 * 60) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.create.mechanical_crafting('tfg:rnr_plow', [ + ' B B ', + 'ECACE', + 'DCFCD', + ' GGG ' + ], { + A: '#forge:rods/long/cobalt_brass', + B: '#forge:rods/long/treated_wood', + C: '#forge:plates/invar', + D: '#forge:springs/steel', + E: 'tfg:cobalt_brass_wheel', + F: 'create:chute', + G: `#forge:mattock_heads/${type}_steel` + }).id(`tfg:mechanical_crafter/rnr_plow/${type}_steel`) + }); + TFGHelpers.registerMaterialInfo('tfg:rnr_plow', { 'cobalt_brass': 9, 'invar': 4, 'steel': 2, 'wrought_iron': 3, 'treated_wood': 2 }); + + //#endregion } diff --git a/kubejs/server_scripts/tfg/recipes.space.js b/kubejs/server_scripts/tfg/recipes.space.js deleted file mode 100644 index 116faaea0..000000000 --- a/kubejs/server_scripts/tfg/recipes.space.js +++ /dev/null @@ -1,457 +0,0 @@ -// priority: 0 -"use strict"; - -/** - * @param {Internal.RecipesEventJS} event - */ -function registerTFGSpaceRecipes(event) { - - const allowedCombustibleDims = [ - { - dimension: "minecraft:the_nether", - type: "dimension" - }, - { - dimension: "minecraft:overworld", - type: "dimension" - } - ] - - event.findRecipes({ type: "gtceu:large_boiler" }).forEach(recipe => { - recipe.json.add("recipeConditions", allowedCombustibleDims) - }) - event.findRecipes({ type: "gtceu:steam_boiler" }).forEach(recipe => { - recipe.json.add("recipeConditions", allowedCombustibleDims) - }) - event.findRecipes({ type: "gtceu:combustion_generator" }).forEach(recipe => { - recipe.json.add("recipeConditions", allowedCombustibleDims) - }) - event.findRecipes({ type: "gtceu:gas_turbine" }).forEach(recipe => { - recipe.json.add("recipeConditions", allowedCombustibleDims) - }) - - // Air collector - - event.recipes.gtceu.gas_collector('tfg:nether') - .circuit(2) - .outputFluids(Fluid.of('gtceu:air', 10000)) - .dimension('minecraft:the_nether') - .duration(200) - .EUt(16) - - event.recipes.gtceu.gas_collector('tfg:moon') - .circuit(3) - .outputFluids(Fluid.of('gtceu:argon', 1)) - .dimension('ad_astra:moon') - .duration(20*60*30) - .EUt(16) - - event.recipes.gtceu.gas_collector('tfg:mars') - .circuit(4) - .outputFluids(Fluid.of('tfg:mars_air', 10000)) - .dimension('ad_astra:mars') - .duration(20*10) - .EUt(16) - - event.recipes.gtceu.vacuum_freezer('tfg:liquid_mars_air') - .inputFluids(Fluid.of('tfg:mars_air', 4000)) - .outputFluids(Fluid.of('tfg:liquid_mars_air', 4000)) - .duration(80) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.centrifuge('tfg:centrifuge_mars_air') - .inputFluids(Fluid.of('tfg:mars_air', 10000)) - .outputFluids(Fluid.of('gtceu:carbon_dioxide', 3900), Fluid.of('gtceu:nitrogen', 1000), Fluid.of('gtceu:argon', 500)) - .duration(1600) - .EUt(GTValues.VA[GTValues.MV]) - - // TODO: move neon and xenon somewhere else - event.recipes.gtceu.distillation_tower('tfg:distill_liquid_mars_air') - .inputFluids(Fluid.of('tfg:liquid_mars_air', 100000)) - .outputFluids(Fluid.of('gtceu:carbon_dioxide', 80000)) - .outputFluids(Fluid.of('gtceu:nitrogen', 7000)) - .outputFluids(Fluid.of('gtceu:argon', 5000)) - .outputFluids(Fluid.of('gtceu:oxygen', 3000)) - .outputFluids(Fluid.of('gtceu:krypton', 1000)) - .outputFluids(Fluid.of('gtceu:neon', 1000)) - .outputFluids(Fluid.of('gtceu:xenon', 1000)) - .chancedOutput('gtceu:ammonium_chloride_dust', 2250, 0) - .disableDistilleryRecipes(true) - .duration(2000) - .EUt(GTValues.VA[GTValues.EV]) - - // Aqueous accumulator -- use adjacentFluids (plural) to avoid rhino ambiguous method issues - - let aaCircuit = 1; - - event.recipes.gtceu.aqueous_accumulator('water') - .circuit(aaCircuit++) - .duration(20) - .EUt(GTValues.VHA[GTValues.ULV]) - .adjacentFluids(["minecraft:water"]) - .outputFluids(Fluid.of("minecraft:water", 1000)) - - event.recipes.gtceu.aqueous_accumulator('sea_water') - .circuit(aaCircuit++) - .duration(20) - .EUt(GTValues.VA[GTValues.ULV]) - .adjacentFluids(["tfc:salt_water"]) - .outputFluids(Fluid.of("tfc:salt_water", 1000)) - - event.recipes.gtceu.aqueous_accumulator('semiheavy_water_mars') - .circuit(aaCircuit++) - .dimension('ad_astra:mars') - .duration(20) - .EUt(GTValues.VHA[GTValues.ULV]) - .adjacentFluids(["tfg:semiheavy_ammoniacal_water"]) - .outputFluids(Fluid.of("tfg:semiheavy_ammoniacal_water", 1000)) - - event.recipes.gtceu.aqueous_accumulator('lava_overworld') - .circuit(aaCircuit++) - .dimension('minecraft:overworld') - .duration(20*15) - .EUt(GTValues.VHA[GTValues.HV]) - .adjacentFluids(["minecraft:lava"]) - .outputFluids(Fluid.of("minecraft:lava", 1000)) - - event.recipes.gtceu.aqueous_accumulator('lava_nether') - .circuit(aaCircuit++) - .dimension('minecraft:the_nether') - .duration(20*15) - .EUt(GTValues.VHA[GTValues.HV]) - .adjacentFluids(["minecraft:lava"]) - .outputFluids(Fluid.of("minecraft:lava", 1000)) - - event.recipes.gtceu.aqueous_accumulator('spring_water') - .circuit(aaCircuit++) - .dimension('minecraft:overworld') - .duration(20) - .EUt(GTValues.VA[GTValues.LV]) - .adjacentFluids(["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]) - .adjacentFluids(["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 - - // Chorus - event.recipes.gtceu.greenhouse('tfg:chorus') - .notConsumable('8x tfg:lunar_chorus_flower') - .itemOutputs('64x minecraft:chorus_fruit') - .chancedOutput('8x tfg:lunar_chorus_flower', 750, 0) - .chancedOutput('8x tfg:lunar_chorus_flower', 500, 0) - .chancedOutput('8x tfg:lunar_chorus_flower', 750, 0) - .duration(36000) // 30 mins - .circuit(1) - .EUt(GTValues.VA[GTValues.MV]) - .dimension('ad_astra:moon') - - event.recipes.gtceu.greenhouse('tfg:chorus_helium') - .notConsumable('8x tfg:lunar_chorus_flower') - .inputFluids(Fluid.of('gtceu:helium_3', 2000)) - .itemOutputs('64x minecraft:chorus_fruit') - .chancedOutput('8x tfg:lunar_chorus_flower', 4000, 0) - .chancedOutput('8x tfg:lunar_chorus_flower', 3000, 0) - .chancedOutput('8x tfg:lunar_chorus_flower', 4000, 0) - .duration(12000) // 10 mins - .circuit(2) - .EUt(GTValues.VA[GTValues.MV]) - .dimension('ad_astra:moon') - - // Replace the built-in greg one to add a circuit - event.recipes.gtceu.fermenter('fermented_biomass') - .inputFluids(Fluid.of('gtceu:biomass', 100)) - .outputFluids(Fluid.of('gtceu:fermented_biomass', 100)) - .circuit(1) - .duration(150) - .EUt(2) - - event.recipes.gtceu.fermenter('tfg:chorus') - .itemInputs('minecraft:chorus_fruit') - .inputFluids(Fluid.of('gtceu:biomass', 20)) - .chancedOutput('ae2:ender_dust', 100, 0) - .outputFluids(Fluid.of('gtceu:nitrogen', 1000)) - .circuit(2) - .duration(5 * 20) - .EUt(GTValues.VA[GTValues.MV]) - .dimension('ad_astra:moon') - - event.recipes.gtceu.fermenter('tfg:chorus_flower') - .itemInputs('tfg:lunar_chorus_flower') - .inputFluids(Fluid.of('gtceu:biomass', 20)) - .chancedOutput('ae2:ender_dust', 100, 0) - .outputFluids(Fluid.of('gtceu:nitrogen', 1000)) - .circuit(2) - .duration(5 * 20) - .EUt(GTValues.VA[GTValues.MV]) - .dimension('ad_astra:moon') - - event.recipes.gtceu.mixer('tfg:bio_glowstone') - .itemInputs('betterend:cave_pumpkin_chunks', '4x species:alphacene_mushroom_block') - .outputFluids(Fluid.of('gtceu:biomass', 100)) - .itemOutputs('2x minecraft:glowstone_dust') - .duration(5 * 20) - .EUt(GTValues.VA[GTValues.EV]) - .dimension('ad_astra:mars') - - // Lightblooms - event.recipes.gtceu.greenhouse('tfg:lightbloom') - .notConsumable('8x minecraft:twisting_vines') - .itemOutputs('16x minecraft:twisting_vines') - .chancedOutput('minecraft:pearlescent_froglight', 2500, 0) - .chancedOutput('minecraft:verdant_froglight', 2500, 0) - .chancedOutput('minecraft:ochre_froglight', 2500, 0) - .duration(36000) // 30 mins - .circuit(1) - .EUt(GTValues.VA[GTValues.LV]) - .dimension('ad_astra:moon') - - event.recipes.gtceu.greenhouse('tfg:lightbloom_helium') - .notConsumable('8x minecraft:twisting_vines') - .inputFluids(Fluid.of('gtceu:helium_3', 2000)) - .itemOutputs('16x minecraft:twisting_vines') - .chancedOutput('minecraft:pearlescent_froglight', 3500, 0) - .chancedOutput('minecraft:verdant_froglight', 3500, 0) - .chancedOutput('minecraft:ochre_froglight', 3500, 0) - .duration(12000) // 30 mins - .circuit(2) - .EUt(GTValues.VA[GTValues.LV]) - .dimension('ad_astra:moon') - - event.recipes.gtceu.brewery('biomass_from_twisting_vines') - .itemInputs('minecraft:twisting_vines') - .inputFluids("#tfg:clean_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 20)) - .duration(50) - .EUt(3) - - // Space suit gases - - event.recipes.gtceu.gas_pressurizer('compressed_nitrox') - .inputFluids(Fluid.of('gtceu:nitrogen', 8000), Fluid.of('gtceu:oxygen', 2000)) - .outputFluids(Fluid.of('tfg:compressed_nitrox', 1000)) - .circuit(1) - .duration(100) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.gas_pressurizer('compressed_heliox') - .inputFluids(Fluid.of('gtceu:helium', 8000), Fluid.of('gtceu:oxygen', 2000)) - .outputFluids(Fluid.of('tfg:compressed_heliox', 1000)) - .circuit(1) - .duration(100) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.gas_pressurizer('compressed_heliox_3') - .inputFluids(Fluid.of('gtceu:helium_3', 8000), Fluid.of('gtceu:oxygen', 2000)) - .outputFluids(Fluid.of('tfg:compressed_heliox_3', 1000)) - .circuit(1) - .duration(100) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.gas_pressurizer('compressed_trimix') - .inputFluids(Fluid.of('gtceu:nitrogen', 5000), Fluid.of('gtceu:oxygen', 3000), Fluid.of('gtceu:helium', 2000)) - .outputFluids(Fluid.of('tfg:compressed_trimix', 1000)) - .circuit(2) - .duration(100) - .EUt(GTValues.VA[GTValues.HV]) - - event.recipes.gtceu.gas_pressurizer('compressed_trimix_3') - .inputFluids(Fluid.of('gtceu:nitrogen', 5000), Fluid.of('gtceu:oxygen', 3000), Fluid.of('gtceu:helium_3', 2000)) - .outputFluids(Fluid.of('tfg:compressed_trimix_3', 1000)) - .circuit(2) - .duration(100) - .EUt(GTValues.VA[GTValues.HV]) - - //Cryo Fluix Pearl - event.recipes.gtceu.autoclave('tfg:cryo_fluix_pearl') - .inputFluids(Fluid.of('tfg:cryogenized_fluix', 576)) - .itemInputs('tfg:vitrified_pearl') - .itemOutputs('tfg:cryo_fluix_pearl') - .duration(300) - .EUt(GTValues.VA[GTValues.EV]) - .cleanroom(CleanroomType.CLEANROOM) - - // Railgun stuff - // (the railgun inputs and outputs are in tfg-core) - - - //item bus to railgun item bus conversion recipes - const GTTiers = ['ulv', 'lv', 'mv', 'hv', 'ev', 'iv', 'luv', 'zpm', 'uv', 'uhv'] - GTTiers.forEach(x => { - event.recipes.gtceu.assembler(`tfg:${x}_input_to_${x}_railgun_input_assembler`) - .itemInputs(`gtceu:${x}_input_bus`) - .circuit(4) - .itemOutputs(`tfg:${x}_railgun_item_loader_in`) - .duration(20 * 5) - .EUt(GTValues.VA[GTValues.LV]) - - event.recipes.gtceu.assembler(`tfg:${x}_output_to_${x}_railgun_output_assembler`) - .itemInputs(`gtceu:${x}_output_bus`) - .circuit(4) - .itemOutputs(`tfg:${x}_railgun_item_loader_out`) - .duration(20 * 5) - .EUt(GTValues.VA[GTValues.LV]) - }) - - //Railgun ammo - event.recipes.gtceu.assembler('tfg:railgun_ammo_basic') - .itemInputs('#forge:double_plates/steel', '2x #forge:rods/magnetic_iron', '2x #forge:fine_wires/annealed_copper') - .inputFluids('gtceu:rocket_fuel 250') - .itemOutputs('tfg:railgun_ammo_shell') - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.assembler('tfg:railgun_ammo_advanced') - .itemInputs('#forge:double_plates/titanium', '2x #forge:rods/magnetic_steel', '2x #forge:fine_wires/gold') - .inputFluids('gtceu:rocket_fuel 250') - .itemOutputs('4x tfg:railgun_ammo_shell') - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.assembler('tfg:railgun_ammo_best') - .itemInputs('#forge:double_plates/tungsten', '2x #forge:rods/magnetic_neodymium', '2x #forge:fine_wires/aluminium') - .inputFluids('gtceu:rocket_fuel 250') - .itemOutputs('8x tfg:railgun_ammo_shell') - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.assembler('tfg:railgun_ammo_moon') - .itemInputs('#forge:double_plates/steel', '2x ae2:charged_certus_quartz_crystal', '2x ae2:quartz_fiber') - .inputFluids('gtceu:rocket_fuel 250') - .itemOutputs('4x tfg:railgun_ammo_shell') - .dimension('ad_astra:moon') - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.assembler('tfg:railgun_ammo_mars') - .itemInputs('#forge:double_plates/lead', '2x #forge:rods/ostrum', '2x #forge:fine_wires/silver') - .inputFluids('gtceu:rocket_fuel 250') - .itemOutputs('8x tfg:railgun_ammo_shell') - .dimension('ad_astra:mars') - .duration(20 * 10) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.shaped('tfg:railgun_ammo_loader', [ - 'RMR', - 'MBM', - 'CCC' - ], { - B: 'gtceu:mv_input_bus', - R: 'gtceu:mv_robot_arm', - M: 'gtceu:mv_electric_motor', - C: '#forge:single_cables/annealed_copper' - }).addMaterialInfo().id('tfg:shaped/railgun_ammo_loader') - - event.recipes.gtceu.shaped('tfg:interplanetary_logistics_monitor', [ - 'CDC', - 'SHE', - 'WCW' - ], { - C: '#gtceu:circuits/hv', - D: 'gtceu:computer_monitor_cover', - S: 'gtceu:hv_sensor', - H: 'gtceu:hv_machine_hull', - E: 'gtceu:hv_emitter', - W: '#forge:single_cables/silver' - }).addMaterialInfo().id('tfg:shaped/interplanetary_logistics_monitor') - - event.recipes.gtceu.shaped('tfg:interplanetary_item_launcher', [ - 'NSN', - 'CHC', - 'NEN' - ], { - C: '#gtceu:circuits/ev', - S: 'gtceu:hv_sensor', - E: 'gtceu:hv_emitter', - H: 'gtceu:ev_machine_hull', - N: '#forge:plates/hsla_steel' - }).addMaterialInfo().id('tfg:shaped/interplanetary_item_launcher') - - event.recipes.gtceu.shaped('tfg:interplanetary_item_receiver', [ - 'CSC', - 'WHW', - 'CSC' - ], { - C: '#gtceu:circuits/mv', - S: 'gtceu:mv_sensor', - W: '#forge:double_cables/copper', - H: 'gtceu:mv_machine_hull' - }).addMaterialInfo().id('tfg:shaped/interplanetary_item_receiver') - - // Mars tree tapping - - event.recipes.gtceu.autoclave('tfg:crimsene') - .inputFluids(Fluid.of('tfg:crimsene', 144), Fluid.of('gtceu:liquid_carbon_dioxide', 1000)) - .outputFluids(Fluid.of('gtceu:carbon_monoxide', 1000)) - .itemOutputs('#forge:gems/crimsene') - .duration(20 * 30) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.autoclave('tfg:warpane') - .inputFluids(Fluid.of('tfg:warpane', 144), Fluid.of('gtceu:liquid_carbon_dioxide', 1000)) - .outputFluids(Fluid.of('gtceu:hydrogen', 1000)) - .itemOutputs('#forge:gems/warpane') - .duration(20 * 30) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.macerator('tfg:crimsene') - .itemInputs('#forge:gems/crimsene') - .itemOutputs('#forge:dusts/crimsene') - .duration(20 * 5) - .EUt(2) - - event.recipes.gtceu.macerator('tfg:warpane') - .itemInputs('#forge:gems/warpane') - .itemOutputs('#forge:dusts/warpane') - .duration(20 * 5) - .EUt(2) - - event.recipes.gtceu.mixer('tfg:mars_sap') - .itemInputs('#forge:dusts/warpane', '#forge:dusts/crimsene') - .inputFluids(Fluid.of('gtceu:hydrochloric_acid', 1000), Fluid.of('gtceu:krypton', 500)) - .itemOutputs('#forge:dusts/mycelienzene') - .duration(30 * 20) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.deafission.fission_reactor_processing('tfg:mars_sap') - .itemInputs('#forge:dusts/mycelienzene') - .outputFluids(Fluid.of('tfg:cooked_mycelienzane', 1000)) - // TODO: change these to something appropriate - .blastFurnaceTemp(100) - .duration(30 * 10) - - event.recipes.gtceu.centrifuge('mars_sap_separation') - .inputFluids(Fluid.of('tfg:cooked_mycelienzane', 2000)) - .outputFluids( - Fluid.of('tfg:iodomethane', 1000), - Fluid.of('tfg:trideuteroiodomethane', 1000), - Fluid.of('gtceu:krypton', 1000), - Fluid.of('gtceu:diluted_hydrochloric_acid', 4000)) - .duration(20 * 20) - .EUt(GTValues.VA[GTValues.EV]) - - event.recipes.gtceu.chemical_reactor('tfg:iodomethane_separation') - .inputFluids( - Fluid.of('tfg:iodomethane', 1000), - Fluid.of('gtceu:hydrogen', 1000)) - .itemOutputs('#forge:dusts/iodine') - .outputFluids(Fluid.of('gtceu:methane', 1000)) - .duration(20 * 5) - .EUt(GTValues.VA[GTValues.MV]) - - event.recipes.gtceu.chemical_reactor('tfg:trideuteroiodomethane_separation') - .inputFluids( - Fluid.of('tfg:trideuteroiodomethane', 1000), - Fluid.of('gtceu:oxygen', 1500)) - .itemOutputs('#forge:dusts/iodine', '#forge:dusts/carbon') - .outputFluids(Fluid.of('tfg:heavy_water', 1500)) - .duration(20 * 5) - .EUt(GTValues.VA[GTValues.MV]) -} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.temporary.js b/kubejs/server_scripts/tfg/recipes.temporary.js new file mode 100644 index 000000000..2365c1fca --- /dev/null +++ b/kubejs/server_scripts/tfg/recipes.temporary.js @@ -0,0 +1,124 @@ +// priority: 0 +"use strict"; + +/** + * @param {Internal.RecipesEventJS} event + */ +function registerTFGTemporaryRecipes(event) { + + event.shapeless('vintageimprovements:belt_grinder', 'vintageimprovements:lathe') + + event.shapeless('tfg:ostrum_linear_accelerator', 'gtceu:ostrum_linear_accelerator') + event.shapeless('tfg:steam_bloomery', 'gtceu:steam_bloomery') + + event.shapeless('greate:rose_quartz_dust', 'gtceu:rose_quartz_dust') + event.shapeless('greate:tiny_rose_quartz_dust', 'gtceu:tiny_rose_quartz_dust') + event.shapeless('greate:small_rose_quartz_dust', 'gtceu:small_rose_quartz_dust') + event.shapeless('greate:poor_raw_rose_quartz', 'gtceu:poor_raw_rose_quartz') + event.shapeless('greate:raw_rose_quartz', 'gtceu:raw_rose_quartz') + event.shapeless('greate:rich_raw_rose_quartz', 'gtceu:rich_raw_rose_quartz') + event.shapeless('greate:chipped_rose_quartz_gem', 'gtceu:chipped_rose_quartz_gem') + event.shapeless('greate:flawed_rose_quartz_gem', 'gtceu:flawed_rose_quartz_gem') + event.shapeless('greate:flawless_rose_quartz_gem', 'gtceu:flawless_rose_quartz_gem') + event.shapeless('greate:exquisite_rose_quartz_gem', 'gtceu:exquisite_rose_quartz_gem') + event.shapeless('greate:pure_rose_quartz_dust', 'gtceu:pure_rose_quartz_dust') + event.shapeless('greate:impure_rose_quartz_dust', 'gtceu:impure_rose_quartz_dust') + event.shapeless('greate:purified_rose_quartz_ore', 'gtceu:purified_rose_quartz_ore') + event.shapeless('greate:crushed_rose_quartz_ore', 'gtceu:crushed_rose_quartz_ore') + event.shapeless('greate:refined_rose_quartz_ore', 'gtceu:refined_rose_quartz_ore') + event.shapeless('greate:rose_quartz_lens', 'gtceu:rose_quartz_lens') + event.shapeless('greate:rose_quartz_plate', 'gtceu:rose_quartz_plate') + + // TODO: remove nether/ender air in 0.12 + + + // Temporary recipes until gregtech fixes its pipe problem with .setIgnored() + const broken_pipes = [ + GTMaterials.Copper, + GTMaterials.Brass, + GTMaterials.Gold, + GTMaterials.Iron, + GTMaterials.Cobalt, + GTMaterials.RoseGold, + GTMaterials.Aluminium, + GTMaterials.Invar, + GTMaterials.Lead, + GTMaterials.Nickel, + GTMaterials.Osmium, + GTMaterials.Palladium, + GTMaterials.Platinum, + GTMaterials.Rhodium, + GTMaterials.Silver, + GTMaterials.Vanadium, + GTMaterials.Zinc, + TFGHelpers.getMaterial('ostrum') + ] + broken_pipes.forEach(material => { + if (material.hasProperty(PropertyKey.FLUID_PIPE)) { + event.shaped(ChemicalHelper.get(TagPrefix.pipeTinyFluid, material, 2), [ + ' S ', + 'HPW' + ], { + P: ChemicalHelper.get(TagPrefix.plate, material, 1), + H: '#forge:tools/hammers', + W: '#forge:tools/wrenches', + S: '#forge:tools/saws' + }).id(`tfg:temp/tiny_fluid_pipe_${material.getName()}`) + + event.shaped(ChemicalHelper.get(TagPrefix.pipeSmallFluid, material, 1), [ + 'WPH' + ], { + P: ChemicalHelper.get(TagPrefix.plate, material, 1), + H: '#forge:tools/hammers', + W: '#forge:tools/wrenches' + }).id(`tfg:temp/small_fluid_pipe_${material.getName()}`) + + event.shaped(ChemicalHelper.get(TagPrefix.pipeNormalFluid, material, 1), [ + 'PPP', + 'W H' + ], { + P: ChemicalHelper.get(TagPrefix.plate, material, 1), + H: '#forge:tools/hammers', + W: '#forge:tools/wrenches' + }).id(`tfg:temp/normal_fluid_pipe_${material.getName()}`) + + event.shaped(ChemicalHelper.get(TagPrefix.pipeLargeFluid, material, 1), [ + 'PPP', + 'W H', + 'PPP' + ], { + P: ChemicalHelper.get(TagPrefix.plate, material, 1), + H: '#forge:tools/hammers', + W: '#forge:tools/wrenches' + }).id(`tfg:temp/large_fluid_pipe_${material.getName()}`) + } + else if (material.hasProperty(PropertyKey.ITEM_PIPE)) { + event.shaped(ChemicalHelper.get(TagPrefix.pipeSmallItem, material, 1), [ + 'WPH' + ], { + P: ChemicalHelper.get(TagPrefix.plate, material, 1), + H: '#forge:tools/hammers', + W: '#forge:tools/wrenches' + }).id(`tfg:temp/small_item_pipe_${material.getName()}`) + + event.shaped(ChemicalHelper.get(TagPrefix.pipeNormalItem, material, 1), [ + 'PPP', + 'W H' + ], { + P: ChemicalHelper.get(TagPrefix.plate, material, 1), + H: '#forge:tools/hammers', + W: '#forge:tools/wrenches' + }).id(`tfg:temp/normal_item_pipe_${material.getName()}`) + + event.shaped(ChemicalHelper.get(TagPrefix.pipeLargeItem, material, 1), [ + 'PPP', + 'W H', + 'PPP' + ], { + P: ChemicalHelper.get(TagPrefix.plate, material, 1), + H: '#forge:tools/hammers', + W: '#forge:tools/wrenches' + }).id(`tfg:temp/large_item_pipe_${material.getName()}`) + } + }) +} diff --git a/kubejs/server_scripts/tfg/space_general/recipes.insulation.js b/kubejs/server_scripts/tfg/space_general/recipes.insulation.js new file mode 100644 index 000000000..25fc6579b --- /dev/null +++ b/kubejs/server_scripts/tfg/space_general/recipes.insulation.js @@ -0,0 +1,252 @@ +"use strict"; + +function registerTFGInsulationRecipes(event) { + + //#region Rock-wool stuff + event.recipes.gtceu.mixer('tfg:aes_mix') + .itemInputs('5x gtceu:silicon_dioxide_dust', '4x gtceu:quicklime_dust', 'gtceu:magnesia_dust') + .itemOutputs('10x tfg:aes_mix_dust') + .duration(160) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.electric_blast_furnace('tfg:molten_aes') + .itemInputs('#forge:dusts/aes_mix') + .outputFluids(Fluid.of('tfg:molten_aes', 500)) + .chancedOutput('gtceu:ash_dust', 3000, 0) + .circuit(1) + .duration(200) + .blastFurnaceTemp(3000) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.electric_blast_furnace('tfg:molten_aes_he') + .itemInputs('#forge:dusts/aes_mix') + .inputFluids(Fluid.of('gtceu:helium', 100)) + .outputFluids(Fluid.of('tfg:molten_aes', 500)) + .circuit(2) + .duration(70) + .blastFurnaceTemp(3000) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.electric_blast_furnace('tfg:small_molten_aes') + .itemInputs('#forge:small_dusts/aes_mix') + .outputFluids(Fluid.of('tfg:molten_aes', 125)) + .chancedOutput('gtceu:ash_dust', 1000, 0) + .circuit(1) + .duration(120) + .blastFurnaceTemp(3000) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.electric_blast_furnace('tfg:small_molten_aes_he') + .itemInputs('#forge:small_dusts/aes_mix') + .inputFluids(Fluid.of('gtceu:helium', 100)) + .outputFluids(Fluid.of('tfg:molten_aes', 125)) + .circuit(2) + .duration(40) + .blastFurnaceTemp(3000) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.centrifuge('tfg:aes_wool') + .inputFluids(Fluid.of('tfg:molten_aes', 200)) + .itemOutputs('tfg:aes_wool') + .duration(30) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.forming_press('tfg:aes_compressed_wool') + .itemInputs('4x tfg:aes_wool') + .notConsumable('gtceu:ingot_casting_mold') + .itemOutputs('tfg:aes_compressed_wool') + .duration(40) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_bath('tfg:aes_insulation_sheet') + .itemInputs('tfg:aes_compressed_wool') + .inputFluids(Fluid.of('gtceu:epoxy', 72)) + .circuit(1) + .itemOutputs('tfg:aes_insulation_sheet') + .duration(80) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.chemical_bath('tfg:aes_insulation_roll') + .itemInputs('9x tfg:aes_compressed_wool') + .inputFluids(Fluid.of('gtceu:epoxy', 648)) + .itemOutputs('tfg:aes_insulation_roll') + .circuit(9) + .duration(400) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.assembler('tfg:aes_insulation_roll') + .itemInputs('9x tfg:aes_insulation_sheet') + .itemOutputs('tfg:aes_insulation_roll') + .circuit(0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + event.shaped('tfg:aes_insulation_roll', [ + 'AAA', + 'AAA', + 'AAA' + ], { + A: 'tfg:aes_insulation_sheet' + }).id('tfg:shaped/aes_insulation_roll') + + event.recipes.gtceu.assembler('tfg:aes_insulation_sheet') + .itemInputs('9x tfg:aes_insulation_sheet') + .itemOutputs('tfg:aes_insulation_roll') + .circuit(0) + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + + event.shapeless('9x tfg:aes_insulation_sheet', [ + 'tfg:aes_insulation_roll' + ]).id('tfg:shapeless/aes_insulation_sheet') + + event.recipes.gtceu.electric_blast_furnace('tfg:smelt_aes_sheet') + .itemInputs('tfg:aes_insulation_sheet') + .inputFluids(Fluid.of('gtceu:helium', 200)) + .outputFluids(Fluid.of('tfg:molten_aes', 800)) + .chancedOutput('gtceu:ash_dust', 2500, 0) + .circuit(1) + .duration(140) + .blastFurnaceTemp(3000) + .EUt(GTValues.VA[GTValues.EV]) + event.recipes.gtceu.electric_blast_furnace('tfg:smelt_aes_roll') + .itemInputs('tfg:aes_insulation_roll') + .inputFluids(Fluid.of('gtceu:helium', 1000)) + .itemOutputs('2x gtceu:ash_dust') + .outputFluids(Fluid.of('tfg:molten_aes', 7200)) + .circuit(9) + .duration(1000) + .blastFurnaceTemp(3000) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.electric_blast_furnace('tfg:smelt_sniffer_wool') + .itemInputs('tfg:sniffer_wool') + .chancedOutput('gtceu:ash_dust', 7500, 0) + .outputFluids(Fluid.of('tfg:molten_aes', 200)) + .circuit(4) + .duration(80) + .blastFurnaceTemp(3000) + .EUt(GTValues.VA[GTValues.EV]) + event.recipes.gtceu.electric_blast_furnace('tfg: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(3000) + .EUt(GTValues.VA[GTValues.EV]) + // #endregion + + //#region ammonia borane + event.recipes.gtceu.chemical_reactor('tfg:sodium_hydride_synthesis') + .itemInputs('#forge:dusts/sodium') + .inputFluids(Fluid.of('gtceu:hydrogen', 1000)) + .itemOutputs('2x #forge:dusts/sodium_hydride') + .duration(400) + .EUt(GTValues.VA[GTValues.HV]) + event.recipes.gtceu.chemical_reactor('tfg:boric_acid_synthesis') + .itemInputs('23x #forge:dusts/borax') + .inputFluids(Fluid.of('gtceu:hydrochloric_acid', 2000)) + .itemOutputs('28x #forge:dusts/boric_acid', '2x #forge:dusts/salt') + .outputFluids(Fluid.of('minecraft:water', 5000)) + .duration(400) + .EUt(GTValues.VA[GTValues.HV]) + event.recipes.gtceu.chemical_reactor('tfg:trimethyl_borate_synthesis') + .itemInputs('7x #forge:dusts/boric_acid') + .inputFluids(Fluid.of('gtceu:methanol', 3000), Fluid.of('gtceu:sulfuric_acid', 100)) + .outputFluids(Fluid.of('tfg:trimethyl_borate', 1000), Fluid.of('minecraft:water', 3000)) + .duration(300) + .EUt(GTValues.VA[GTValues.EV]) + event.recipes.gtceu.chemical_reactor('tfg:sodium_borohydride_synthesis') + .itemInputs('4x #forge:dusts/sodium_hydride') + .inputFluids(Fluid.of('tfg:trimethyl_borate', 1000)) + .itemOutputs('6x #forge:dusts/sodium_borohydride', '18x #forge:dusts/sodium_methoxide') + .duration(160) + .EUt(GTValues.VA[GTValues.EV]) + event.recipes.gtceu.chemical_reactor('tfg:ammonia_borane_synthesis') + .itemInputs('6x #forge:dusts/sodium_borohydride', '6x #forge:dusts/ammonium_chloride') + .itemOutputs('8x #forge:dusts/ammonia_borane', '2x #forge:dusts/salt') + .outputFluids(Fluid.of('gtceu:hydrogen', 2000)) + .duration(100) + .EUt(GTValues.VA[GTValues.IV]) + //#endregion + + //#region polyurethane + event.recipes.gtceu.chemical_reactor('tfg:aniline_synthesis') + .inputFluids(Fluid.of('gtceu:nitrobenzene', 1000), Fluid.of('gtceu:hydrogen', 6000)) + .notConsumable('#forge:dusts/iron') + .outputFluids(Fluid.of('tfg:aniline', 1000), Fluid.of('minecraft:water', 2000)) + .duration(140) + .EUt(GTValues.VA[GTValues.EV]) + event.recipes.gtceu.chemical_reactor('tfg:dimethyl_carbonate_synthesis') + .inputFluids(Fluid.of('gtceu:carbon_monoxide', 1000), Fluid.of('gtceu:oxygen', 1000), 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)) + .outputFluids(Fluid.of('tfg:methyl_phenylcarbamate', 1000), Fluid.of('gtceu:methanol', 1000)) + .duration(200) + .EUt(GTValues.VA[GTValues.EV]) + event.recipes.gtceu.chemical_reactor('tfg:mpc_synthesis') + .inputFluids(Fluid.of('tfg:methyl_phenylcarbamate', 2000), Fluid.of('gtceu:formaldehyde', 1000)) + .outputFluids(Fluid.of('tfg:methylene_diphenyl_dicarbamate', 1000), Fluid.of('minecraft:water', 1000)) + .duration(200) + .EUt(GTValues.VA[GTValues.EV]) + event.recipes.gtceu.chemical_reactor('tfg:mpi_synthesis') + .inputFluids(Fluid.of('tfg:methylene_diphenyl_dicarbamate', 1000)) + .itemOutputs('27x #forge:dusts/methylene_diphenyl_diisocyanate') + .outputFluids(Fluid.of('gtceu:methanol', 2000)) + .duration(80) + .EUt(GTValues.VA[GTValues.IV]) + event.recipes.gtceu.mixer('tfg:aes_polyurethane_electric_only') + .itemInputs('2x #tfg:mineral_rich_wool', 'tfg:aes_compressed_wool', '27x #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]) + + //#endregion + + //#region Aerogel + event.recipes.gtceu.chemical_reactor('tfg:tmos_synthesis') + .inputFluids(Fluid.of('tfg:dimethyl_carbonate', 2000)) + .itemInputs('3x #forge:dusts/silicon_dioxide') + .notConsumable('#forge:small_dusts/potassium_hydroxide') + .outputFluids(Fluid.of('tfg:tmos', 1000), Fluid.of('gtceu:carbon_dioxide', 2000)) + .duration(100) + .EUt(GTValues.VA[GTValues.IV]) + event.recipes.gtceu.chemical_reactor('tfg:tmos_hydrolysis') + .inputFluids(Fluid.of('tfg:tmos', 1000), Fluid.of('gtceu:distilled_water', 2000)) + .outputFluids(Fluid.of('gtceu:methanol', 4000)) + .itemOutputs('3x #forge:dusts/silicon_dioxide') + .duration(100) + .EUt(GTValues.VA[GTValues.MV]) + event.recipes.gtceu.large_chemical_reactor('tfg:silica_gel_synthesis') + .inputFluids(Fluid.of('tfg:tmos', 1000), Fluid.of('gtceu:ethanol', 2000), Fluid.of('gtceu:distilled_water', 500), + Fluid.of('gtceu:hydrochloric_acid', 100)) + .outputFluids(Fluid.of('tfg:silica_gel', 1000)) + .duration(300) + .EUt(GTValues.VA[GTValues.IV]) + event.recipes.gtceu.chemical_reactor('tfg:silica_gel_soaking') + .inputFluids(Fluid.of('tfg:silica_gel', 1000), Fluid.of('gtceu:acetone', 2000)) + .outputFluids(Fluid.of('tfg:soaked_silica_gel', 1000)) + .duration(400) + .EUt(GTValues.VA[GTValues.EV]) + event.recipes.gtceu.large_chemical_reactor('tfg:silica_aerogel') + .inputFluids(Fluid.of('tfg:soaked_silica_gel', 1000), Fluid.of('gtceu:liquid_carbon_dioxide', 3000)) + .outputFluids(Fluid.of('gtceu:carbon_dioxide', 3000), Fluid.of('gtceu:acetone', 1000)) + .itemOutputs('tfg:silica_aerogel') + .duration(400) + .EUt(GTValues.VA[GTValues.IV]) + //#endregion + + //#region Tier 3 insulation + event.recipes.gtceu.forming_press('tfg:mli_shielding') + .itemInputs('4x #forge:plates/ammonia_borane', '2x tfg:aes_polyurethane', '4x gtceu:carbon_fiber_plate') + .itemOutputs('tfg:mli_shielding') + .duration(100) + .EUt(GTValues.VA[GTValues.IV]) + //#endregion +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/space_general/recipes.railgun.js b/kubejs/server_scripts/tfg/space_general/recipes.railgun.js new file mode 100644 index 000000000..fb532c5bf --- /dev/null +++ b/kubejs/server_scripts/tfg/space_general/recipes.railgun.js @@ -0,0 +1,111 @@ +"use strict"; + +function registerTFGRailgunRecipes(event) { + + // Railgun stuff + // (the railgun inputs and outputs are in tfg-core) + + + //item bus to railgun item bus conversion recipes + const GTTiers = ['ulv', 'lv', 'mv', 'hv', 'ev', 'iv', 'luv', 'zpm', 'uv', 'uhv'] + GTTiers.forEach(x => { + event.recipes.gtceu.assembler(`tfg:${x}_input_to_${x}_railgun_input_assembler`) + .itemInputs(`gtceu:${x}_input_bus`) + .circuit(4) + .itemOutputs(`tfg:${x}_railgun_item_loader_in`) + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.assembler(`tfg:${x}_output_to_${x}_railgun_output_assembler`) + .itemInputs(`gtceu:${x}_output_bus`) + .circuit(4) + .itemOutputs(`tfg:${x}_railgun_item_loader_out`) + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.LV]) + }) + + //Railgun ammo + event.recipes.gtceu.assembler('tfg:railgun_ammo_basic') + .itemInputs('#forge:double_plates/steel', '2x #forge:rods/magnetic_iron', '2x #forge:fine_wires/annealed_copper') + .inputFluids('gtceu:rocket_fuel 250') + .itemOutputs('tfg:railgun_ammo_shell') + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.assembler('tfg:railgun_ammo_advanced') + .itemInputs('#forge:double_plates/titanium', '2x #forge:rods/magnetic_steel', '2x #forge:fine_wires/gold') + .inputFluids('gtceu:rocket_fuel 250') + .itemOutputs('4x tfg:railgun_ammo_shell') + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.assembler('tfg:railgun_ammo_best') + .itemInputs('#forge:double_plates/tungsten', '2x #forge:rods/magnetic_neodymium', '2x #forge:fine_wires/aluminium') + .inputFluids('gtceu:rocket_fuel 250') + .itemOutputs('8x tfg:railgun_ammo_shell') + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.assembler('tfg:railgun_ammo_moon') + .itemInputs('#forge:double_plates/steel', '2x ae2:charged_certus_quartz_crystal', '2x ae2:quartz_fiber') + .inputFluids('gtceu:rocket_fuel 250') + .itemOutputs('4x tfg:railgun_ammo_shell') + .dimension('ad_astra:moon') + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.assembler('tfg:railgun_ammo_mars') + .itemInputs('#forge:double_plates/lead', '2x #forge:rods/ostrum', '2x #forge:fine_wires/silver') + .inputFluids('gtceu:rocket_fuel 250') + .itemOutputs('8x tfg:railgun_ammo_shell') + .dimension('ad_astra:mars') + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.shaped('tfg:railgun_ammo_loader', [ + 'RMR', + 'MBM', + 'CCC' + ], { + B: 'gtceu:mv_input_bus', + R: 'gtceu:mv_robot_arm', + M: 'gtceu:mv_electric_motor', + C: '#forge:single_cables/annealed_copper' + }).addMaterialInfo().id('tfg:shaped/railgun_ammo_loader') + + event.recipes.gtceu.shaped('tfg:interplanetary_logistics_monitor', [ + 'CDC', + 'SHE', + 'WCW' + ], { + C: '#gtceu:circuits/hv', + D: 'gtceu:computer_monitor_cover', + S: 'gtceu:hv_sensor', + H: 'gtceu:hv_machine_hull', + E: 'gtceu:hv_emitter', + W: '#forge:single_cables/silver' + }).addMaterialInfo().id('tfg:shaped/interplanetary_logistics_monitor') + + event.recipes.gtceu.shaped('tfg:interplanetary_item_launcher', [ + 'NSN', + 'CHC', + 'NEN' + ], { + C: '#gtceu:circuits/ev', + S: 'gtceu:hv_sensor', + E: 'gtceu:hv_emitter', + H: 'gtceu:ev_machine_hull', + N: '#forge:plates/hsla_steel' + }).addMaterialInfo().id('tfg:shaped/interplanetary_item_launcher') + + event.recipes.gtceu.shaped('tfg:interplanetary_item_receiver', [ + 'CSC', + 'WHW', + 'CSC' + ], { + C: '#gtceu:circuits/mv', + S: 'gtceu:mv_sensor', + W: '#forge:double_cables/copper', + H: 'gtceu:mv_machine_hull' + }).addMaterialInfo().id('tfg:shaped/interplanetary_item_receiver') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/space_general/recipes.rockets.js b/kubejs/server_scripts/tfg/space_general/recipes.rockets.js new file mode 100644 index 000000000..161eb46af --- /dev/null +++ b/kubejs/server_scripts/tfg/space_general/recipes.rockets.js @@ -0,0 +1,283 @@ +"use strict"; + +function registerTFGRocketRecipes(event) { + + //#region Tier 1 rocket + + event.recipes.gtceu.assembler('tfg:rocket_nose_cone_t1') + .itemInputs( + 'gtceu:hv_emitter', + ChemicalHelper.get(TagPrefix.plateDense, TFGHelpers.getMaterial('rocket_alloy_t1'), 1), + ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.StainlessSteel, 3)) + .inputFluids(Fluid.of('gtceu:polyethylene', 144 * 16)) + .itemOutputs('ad_astra:rocket_nose_cone') + .duration(1200) + .circuit(2) + .EUt(480) + .addMaterialInfo(true, true) + + + event.recipes.gtceu.pyrolyse_oven('tfg:pyrolyse_vitrified_asbestos_dust') + .inputFluids(Fluid.of('gtceu:nitrogen', 100)) + .itemInputs('gtceu:asbestos_dust') + .itemOutputs('gtceu:vitrified_asbestos_dust') + .duration(80) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.mixer('tfg:rocket_alloy_t1') + .itemInputs('6x #forge:dusts/aluminium', '2x #forge:dusts/stainless_steel') + .inputFluids(Fluid.of('gtceu:red_steel', 144)) + .itemOutputs('9x #forge:dusts/rocket_alloy_t1') + .duration(580) + .circuit(2) + .EUt(480) + + event.recipes.gtceu.chemical_bath('tfg:rocket_alloy_cool_down_water') + .itemInputs('#forge:hot_ingots/rocket_alloy_t1') + .inputFluids(Fluid.of('minecraft:water', 100)) + .itemOutputs('#forge:ingots/rocket_alloy_t1') + .duration(400) + .EUt(120) + + event.recipes.gtceu.chemical_bath('tfg:rocket_alloy_cool_down_distilled_water') + .itemInputs('#forge:hot_ingots/rocket_alloy_t1') + .inputFluids(Fluid.of('gtceu:distilled_water', 100)) + .itemOutputs('#forge:ingots/rocket_alloy_t1') + .duration(250) + .EUt(120) + + event.recipes.gtceu.assembler(`tfg:rocket_fin_t1`) + .itemInputs( + ChemicalHelper.get(TagPrefix.plate, TFGHelpers.getMaterial('rocket_alloy_t1'), 1), + ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.StainlessSteel, 1) + ) + .itemOutputs('ad_astra:rocket_fin') + .duration(150) + .circuit(2) + .EUt(GTValues.VA[GTValues.HV]) + .addMaterialInfo(true) + + + event.recipes.gtceu.assembler('tfg:rocket_steel_engine') + .itemInputs( + ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.StainlessSteel, 2), + '2x #gtceu:circuits/hv', + 'gtceu:hv_electric_pump', + '2x gtceu:power_thruster', + ChemicalHelper.get(TagPrefix.rotor, GTMaterials.StainlessSteel, 1) + ) + .inputFluids(Fluid.of('gtceu:blue_steel', 144 * 8)) + .itemOutputs('ad_astra:steel_engine') + .duration(600) + .circuit(2) + .EUt(GTValues.VA[GTValues.HV]) + .addMaterialInfo(true, true) + + event.recipes.gtceu.assembler('ad_astra:assembler_tier_1_rocket') + .itemInputs( + ChemicalHelper.get(TagPrefix.plateDense, TFGHelpers.getMaterial('rocket_alloy_t1'), 8), + '4x ad_astra:rocket_fin', + '1x ad_astra:steel_engine', + '1x ad_astra:rocket_nose_cone', + '16x #forge:insulation_t1', + '4x #gtceu:circuits/hv' + ) + .inputFluids(Fluid.of('gtceu:silicon', 144 * 16)) + .itemOutputs('ad_astra:tier_1_rocket') + .duration(1200) + .circuit(2) + .EUt(GTValues.VA[GTValues.HV]) + .addMaterialInfo(true, true) + + //#endregion + + + //region tier 2 rocket + + event.remove({ mod: 'gtceu', input: 'gtceu:hot_rocket_alloy_t2_ingot' }) + + event.recipes.gtceu.alloy_blast_smelter('gtceu:alloy_blast_smelter/rocket_alloy_t2') + .itemInputs('19x #forge:dusts/titanium', '3x #forge:dusts/chromium', '3x #forge:dusts/tin', '3x #forge:dusts/aluminium') + .inputFluids(Fluid.of('gtceu:vanadium', 144 * 4), Fluid.of('gtceu:distilled_water', 16000)) + .outputFluids(Fluid.of('gtceu:molten_rocket_alloy_t2', 144 * 32)) + .duration(1320 * 20) + .circuit(2) + .blastFurnaceTemp(3200) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.alloy_blast_smelter('gtceu:alloy_blast_smelter/rocket_alloy_t2_gas') + .itemInputs('19x #forge:dusts/titanium', '3x #forge:dusts/chromium', '3x #forge:dusts/tin', '3x #forge:dusts/aluminium') + .inputFluids(Fluid.of('gtceu:vanadium', 144 * 4), Fluid.of('gtceu:distilled_water', 16000), Fluid.of('gtceu:helium', 3200)) + .outputFluids(Fluid.of('gtceu:molten_rocket_alloy_t2', 144 * 32)) + .duration(17688) + .circuit(12) + .blastFurnaceTemp(3200) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.vacuum_freezer('tfg:vacuum_freezer/cool_molten_rocket_alloy_t2') + .notConsumable('gtceu:ingot_casting_mold') + .inputFluids(Fluid.of('gtceu:molten_rocket_alloy_t2', 144), Fluid.of('tfg:cryogenized_fluix', 288)) + .itemOutputs('#forge:ingots/rocket_alloy_t2') + .duration(120) + .EUt(GTValues.VA[GTValues.MV]) + + event.recipes.gtceu.mixer('tfg:rocket_alloy_t2') + .itemInputs('19x #forge:dusts/titanium', '3x #forge:dusts/chromium', '3x #forge:dusts/tin', '3x #forge:dusts/aluminium') + .inputFluids(Fluid.of('gtceu:vanadium', 144 * 4)) + .itemOutputs('32x #forge:dusts/rocket_alloy_t2') + .duration(15 * 20) + .circuit(5) + .EUt(GTValues.VA[GTValues.EV]) + + event.recipes.gtceu.vacuum_freezer('tfg:vacuum_freezer/cool_rocket_alloy_t2') + .itemInputs('#forge:hot_ingots/rocket_alloy_t2') + .inputFluids(Fluid.of('gtceu:distilled_water', 500), Fluid.of('tfg:cryogenized_fluix', 288)) + .itemOutputs('#forge:ingots/rocket_alloy_t2') + .duration(120) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.assembler('tfg:rocket_fin_t2') + .itemInputs('#forge:plates/rocket_alloy_t2', + '#forge:double_plates/titanium') + .itemOutputs('tfg:rocket_fin_t2') + .duration(180) + .circuit(3) + .EUt(GTValues.VA[GTValues.EV]) + .addMaterialInfo(true) + + event.recipes.gtceu.assembler('tfg:rocket_cone_t2') + .itemInputs('gtceu:ev_emitter', '#forge:dense_plates/rocket_alloy_t2', '#forge:double_plates/titanium', + '#forge:double_plates/desh') + .itemOutputs('tfg:rocket_cone_t2') + .duration(1440) + .circuit(3) + .EUt(GTValues.VA[GTValues.EV]) + .addMaterialInfo(true) + + + event.recipes.gtceu.assembler('tfg:rocket_desh_engine') + .itemInputs( + ChemicalHelper.get(TagPrefix.plateDouble, GTMaterials.Titanium, 4), + '2x #gtceu:circuits/ev', + 'gtceu:ev_electric_pump', + '3x gtceu:advanced_power_thruster', + ChemicalHelper.get(TagPrefix.rod, GTMaterials.NeodymiumMagnetic, 4), + ChemicalHelper.get(TagPrefix.rotor, GTMaterials.Titanium, 1)) + .inputFluids(Fluid.of('gtceu:desh', 144 * 12)) + .itemOutputs('ad_astra:desh_engine') + .duration(800) + .circuit(3) + .EUt(GTValues.VA[GTValues.EV]) + .addMaterialInfo(true, true) + + event.recipes.gtceu.assembler('ad_astra:tier_2_rocket') + .itemInputs( + ChemicalHelper.get(TagPrefix.plateDense, TFGHelpers.getMaterial('rocket_alloy_t2'), 12), + '4x tfg:rocket_fin_t2', + '1x ad_astra:desh_engine', + '1x tfg:rocket_cone_t2', + '12x #forge:insulation_t2/roll', + '4x #gtceu:circuits/ev' + ) + .inputFluids(Fluid.of('gtceu:titanium', 144 * 16)) + .itemOutputs('ad_astra:tier_2_rocket') + .duration(1440) + .circuit(3) + .EUt(GTValues.VA[GTValues.EV]) + .addMaterialInfo(true, true) + + //#endregion + + //region Tier 3 DISABLED UNTIL IV + event.remove({ id: "gtceu:vacuum_freezer/cool_hot_rocket_alloy_t3_ingot" }) + event.remove({ id: "gtceu:vacuum_freezer/rocket_alloy_t3" }) + /* + event.recipes.gtceu.vacuum_freezer('tfg:cool_rocket_alloy_t3') + .inputFluids(Fluid.of('gtceu:molten_rocket_alloy_t3', 144), Fluid.of('gtceu:ice', 4000)) + .notConsumable('gtceu:ingot_casting_mold') + .itemOutputs('#forge:ingots/rocket_alloy_t3') + .duration(800) + .EUt(GTValues.VA[GTValues.HV]) + event.recipes.gtceu.vacuum_freezer('tfg:cool_hot_rocket_alloy_t3') + .itemInputs('#forge:hot_ingots/rocket_alloy_t3') + .inputFluids(Fluid.of('gtceu:liquid_helium', 500)) + .itemOutputs('#forge:ingots/rocket_alloy_t3') + .outputFluids(Fluid.of('gtceu:helium', 250)) + .duration(400) + .EUt(GTValues.VA[GTValues.HV]) + + //Add some unique cooling thing for molten ingots + + event.recipes.gtceu.assembler('tfg:rocket_fin_t3') + .itemInputs('#forge:plates/rocket_alloy_t3', '#forge:double_plates/tungsten_steel') + .itemOutputs('tfg:rocket_fin_t3') + .duration(220) + .circuit(4) + .EUt(GTValues.VA[GTValues.IV]) + .addMaterialInfo(true) + + event.recipes.gtceu.assembler('tfg:rocket_cone_t3') + .itemInputs('gtceu:iv_emitter', '#forge:dense_plates/rocket_alloy_t3', '#forge:double_plates/tungsten_steel', + '#forge:double_plates/ostrum', 'gtceu:plutonium_nugget') //change this to the pellet + .itemOutputs('tfg:rocket_cone_t3') + .duration(1700) + .circuit(4) + .EUt(GTValues.VA[GTValues.IV]) + .addMaterialInfo(true) + + event.recipes.gtceu.assembler('tfg:elite_power_thruster') + .itemInputs('gtceu:ev_electric_motor', '2x #forge:rings/titanium', '#forge:rods/titanium', + 'gtceu:ultimet_rotor', '2x gtceu:aluminium_single_cable') + .itemOutputs('tfg:elite_power_thruster') + .duration(200) + .EUt(GTValues.VA[GTValues.LV]) + .addMaterialInfo(true) + + event.recipes.gtceu.assembler('tfg:rocket_ostrum_engine') + .itemInputs( + '6x #forge:double_plates/tungsten_steel', + '4x #gtceu:circuits/iv', + 'gtceu:iv_electric_pump', + '3x tfg:elite_power_thruster', + '4x #forge:insulation_t3/cryo', + '6x #forge:rods/magnetic_neodymium', + '#forge:rotors/tungsten_steel') + .inputFluids(Fluid.of('gtceu:ostrum', 144 * 16)) + .itemOutputs('ad_astra:ostrum_engine') + .duration(960) + .circuit(4) + .EUt(GTValues.VA[GTValues.IV]) + .addMaterialInfo(true, true) + + event.recipes.gtceu.assembler('tfg:rocket_ostrum_tank') + .itemInputs( + '4x #forge:double_plates/rocket_alloy_t3', + 'gtceu:iv_electric_pump', + 'tfg:elite_power_thruster', + '2x #forge:insulation_t3/cryo') + .inputFluids(Fluid.of('gtceu:ostrum', 144 * 4)) + .itemOutputs('ad_astra:ostrum_tank') + .duration(400) + .circuit(4) + .EUt(GTValues.VA[GTValues.IV]) + .addMaterialInfo(true, true) + + event.recipes.gtceu.assembler('ad_astra:tier_3_rocket') + .itemInputs( + '16x #forge:dense_plates/rocket_alloy_t3', + '4x tfg:rocket_fin_t3', + '1x ad_astra:ostrum_engine', + '2x ad_astra:ostrum_tank', + '1x tfg:rocket_cone_t3', + '8x #forge:insulation_t3/sheet' + ) + .inputFluids(Fluid.of('gtceu:bromine', 1000 * 16)) + .itemOutputs('ad_astra:tier_3_rocket') + .duration(1700) + .circuit(4) + .EUt(GTValues.VA[GTValues.IV]) + .addMaterialInfo(true, true) + + //#endregion +*/ +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/space_general/recipes.space.js b/kubejs/server_scripts/tfg/space_general/recipes.space.js new file mode 100644 index 000000000..88e54b3a5 --- /dev/null +++ b/kubejs/server_scripts/tfg/space_general/recipes.space.js @@ -0,0 +1,114 @@ +// priority: 0 +"use strict"; + +/** + * @param {Internal.RecipesEventJS} event + */ +function registerTFGSpaceRecipes(event) { + + const allowedCombustibleDims = [ + { + dimension: "minecraft:the_nether", + type: "dimension" + }, + { + dimension: "minecraft:overworld", + type: "dimension" + } + ] + + event.findRecipes({ type: "gtceu:large_boiler" }).forEach(recipe => { + recipe.json.add("recipeConditions", allowedCombustibleDims) + }) + event.findRecipes({ type: "gtceu:steam_boiler" }).forEach(recipe => { + recipe.json.add("recipeConditions", allowedCombustibleDims) + }) + event.findRecipes({ type: "gtceu:combustion_generator" }).forEach(recipe => { + recipe.json.add("recipeConditions", allowedCombustibleDims) + }) + event.findRecipes({ type: "gtceu:gas_turbine" }).forEach(recipe => { + recipe.json.add("recipeConditions", allowedCombustibleDims) + }) + + // Air collector + + event.recipes.gtceu.gas_collector('tfg:nether') + .circuit(2) + .outputFluids(Fluid.of('gtceu:air', 10000)) + .dimension('minecraft:the_nether') + .duration(200) + .EUt(16) + + event.recipes.gtceu.gas_collector('tfg:moon') + .circuit(3) + .outputFluids(Fluid.of('gtceu:argon', 1)) + .dimension('ad_astra:moon') + .duration(20*60*30) + .EUt(16) + + event.recipes.gtceu.gas_collector('tfg:mars') + .circuit(4) + .outputFluids(Fluid.of('tfg:mars_air', 10000)) + .dimension('ad_astra:mars') + .duration(20*10) + .EUt(16) + + + // Aqueous accumulator -- use adjacentFluids (plural) to avoid rhino ambiguous method issues + + let aaCircuit = 1; + + event.recipes.gtceu.aqueous_accumulator('water') + .circuit(aaCircuit++) + .duration(20) + .EUt(GTValues.VHA[GTValues.ULV]) + .adjacentFluids(["minecraft:water"]) + .outputFluids(Fluid.of("minecraft:water", 1000)) + + event.recipes.gtceu.aqueous_accumulator('sea_water') + .circuit(aaCircuit++) + .duration(20) + .EUt(GTValues.VA[GTValues.ULV]) + .adjacentFluids(["tfc:salt_water"]) + .outputFluids(Fluid.of("tfc:salt_water", 1000)) + + event.recipes.gtceu.aqueous_accumulator('semiheavy_water_mars') + .circuit(aaCircuit++) + .dimension('ad_astra:mars') + .duration(20) + .EUt(GTValues.VHA[GTValues.ULV]) + .adjacentFluids(["tfg:semiheavy_ammoniacal_water"]) + .outputFluids(Fluid.of("tfg:semiheavy_ammoniacal_water", 1000)) + + event.recipes.gtceu.aqueous_accumulator('lava_overworld') + .circuit(aaCircuit++) + .dimension('minecraft:overworld') + .duration(20*15) + .EUt(GTValues.VHA[GTValues.HV]) + .adjacentFluids(["minecraft:lava"]) + .outputFluids(Fluid.of("minecraft:lava", 1000)) + + event.recipes.gtceu.aqueous_accumulator('lava_nether') + .circuit(aaCircuit++) + .dimension('minecraft:the_nether') + .duration(20*15) + .EUt(GTValues.VHA[GTValues.HV]) + .adjacentFluids(["minecraft:lava"]) + .outputFluids(Fluid.of("minecraft:lava", 1000)) + + event.recipes.gtceu.aqueous_accumulator('spring_water') + .circuit(aaCircuit++) + .dimension('minecraft:overworld') + .duration(20) + .EUt(GTValues.VA[GTValues.LV]) + .adjacentFluids(["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]) + .adjacentFluids(["minecraft:water"]) + .outputFluids(Fluid.of("minecraft:water", 16000)) + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/space_general/recipes.space_suits.js b/kubejs/server_scripts/tfg/space_general/recipes.space_suits.js new file mode 100644 index 000000000..7c1d54856 --- /dev/null +++ b/kubejs/server_scripts/tfg/space_general/recipes.space_suits.js @@ -0,0 +1,182 @@ +"use strict"; + +function registerTFGSpaceSuitRecipes(event) { + + event.recipes.gtceu.shaped('ad_astra:launch_pad', [ + 'BAB', + 'AAA', + 'BAB' + ], { + A: '#forge:plates/steel', + B: '#forge:rods/steel' + }).addMaterialInfo().id('tfg:launch_pad') + + + // Space suit gases + + event.recipes.gtceu.gas_pressurizer('compressed_nitrox') + .inputFluids(Fluid.of('gtceu:nitrogen', 8000), Fluid.of('gtceu:oxygen', 2000)) + .outputFluids(Fluid.of('tfg:compressed_nitrox', 1000)) + .circuit(1) + .duration(100) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.gas_pressurizer('compressed_heliox') + .inputFluids(Fluid.of('gtceu:helium', 8000), Fluid.of('gtceu:oxygen', 2000)) + .outputFluids(Fluid.of('tfg:compressed_heliox', 1000)) + .circuit(1) + .duration(100) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.gas_pressurizer('compressed_heliox_3') + .inputFluids(Fluid.of('gtceu:helium_3', 8000), Fluid.of('gtceu:oxygen', 2000)) + .outputFluids(Fluid.of('tfg:compressed_heliox_3', 1000)) + .circuit(1) + .duration(100) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.gas_pressurizer('compressed_trimix') + .inputFluids(Fluid.of('gtceu:nitrogen', 5000), Fluid.of('gtceu:oxygen', 3000), Fluid.of('gtceu:helium', 2000)) + .outputFluids(Fluid.of('tfg:compressed_trimix', 1000)) + .circuit(2) + .duration(100) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.gas_pressurizer('compressed_trimix_3') + .inputFluids(Fluid.of('gtceu:nitrogen', 5000), Fluid.of('gtceu:oxygen', 3000), Fluid.of('gtceu:helium_3', 2000)) + .outputFluids(Fluid.of('tfg:compressed_trimix_3', 1000)) + .circuit(2) + .duration(100) + .EUt(GTValues.VA[GTValues.HV]) + + //#region space suits + + event.recipes.gtceu.forming_press('space_suit_fabric') + .itemInputs( + '#forge:foils/aluminium', + 'gtceu:carbon_fiber_mesh', + '#forge:foils/silicone_rubber', + 'tfg:polycaprolactam_fabric' + ) + .itemOutputs('2x tfg:space_suit_fabric') + .duration(20 * 10) + .EUt(GTValues.VA[GTValues.HV]) + .addMaterialInfo(true) + + event.recipes.gtceu.forming_press('better_space_suit_fabric') + .itemInputs( + '#forge:foils/polybenzimidazole', + 'gtceu:carbon_fiber_mesh', + '#forge:aerogels', + 'tfg:glacian_wool' + ) + .itemOutputs('2x tfg:better_space_suit_fabric') + .duration(20 * 5) + .EUt(GTValues.VA[GTValues.IV]) + .addMaterialInfo(true) + + event.recipes.gtceu.shaped('ad_astra:space_helmet', [ + 'AAA', + 'ADA', + 'BBB' + ], { + A: 'gtceu:tempered_glass', + B: 'tfg:space_suit_fabric', + D: '#forge:small_fluid_pipes/polyethylene' + }).addMaterialInfo().id('tfg:space_helmet') + + event.recipes.gtceu.assembler('ad_astra:netherite_space_helmet') + .itemInputs( + 'ad_astra:space_helmet', + '2x #forge:plates/tungsten_steel', + '1x #forge:plates/ostrum', + '3x tfg:better_space_suit_fabric', + '5x gtceu:laminated_glass' + ) + .itemOutputs('ad_astra:netherite_space_helmet') + .duration(400) + .EUt(GTValues.VA[GTValues.IV]) + .addMaterialInfo(true) + + event.recipes.gtceu.shaped('ad_astra:space_suit', [ + 'B B', + 'BDB', + 'BBB' + ], { + B: 'tfg:space_suit_fabric', + D: 'ad_astra:oxygen_gear' + }).addMaterialInfo().id('tfg:space_suit') + + 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', + '3x #forge:plates/tungsten_steel', + '2x #forge:plates/ostrum', + '5x tfg:better_space_suit_fabric' + ) + .itemOutputs('ad_astra:netherite_space_suit') + .duration(400) + .EUt(GTValues.VA[GTValues.IV]) + .addMaterialInfo(true) + + event.shapeless('ad_astra:netherite_space_suit', ['ad_astra:netherite_space_suit']) + .id('tfg:empty_netherite_space_suit') + + event.recipes.gtceu.shaped('ad_astra:space_pants', [ + 'BAB', + 'B B', + 'B B' + ], { + A: 'gtceu:hv_electric_motor', + B: 'tfg:space_suit_fabric', + }).addMaterialInfo().id('tfg:space_pants') + + event.recipes.gtceu.assembler('ad_astra:netherite_space_pants') + .itemInputs( + 'ad_astra:space_pants', + '2x #forge:plates/tungsten_steel', + '2x #forge:plates/ostrum', + '4x tfg:better_space_suit_fabric' + ) + .itemOutputs('ad_astra:netherite_space_pants') + .duration(400) + .EUt(GTValues.VA[GTValues.IV]) + .addMaterialInfo(true) + + event.recipes.gtceu.shaped('ad_astra:space_boots', [ + 'B B', + 'A A' + ], { + A: '#forge:plates/polyphenylene_sulfide', + B: 'tfg:space_suit_fabric' + }).addMaterialInfo().id('tfg:space_boots') + + event.recipes.gtceu.assembler('ad_astra:netherite_space_boots') + .itemInputs( + 'ad_astra:space_boots', + '1x #forge:plates/tungsten_steel', + '1x #forge:plates/ostrum', + '2x tfg:better_space_suit_fabric' + ) + .itemOutputs('ad_astra:netherite_space_boots') + .duration(400) + .EUt(GTValues.VA[GTValues.IV]) + .addMaterialInfo(true) + + event.recipes.gtceu.shaped('ad_astra:oxygen_gear', [ + 'BAB', + 'ECE', + 'BDB' + ], { + A: '#gtceu:circuits/hv', + B: '#forge:tiny_fluid_pipes/stainless_steel', + C: 'gtceu:hv_electric_pump', + D: 'gtceu:fluid_detector_cover', + E: 'ad_astra:gas_tank' + }).addMaterialInfo().id('tfg:oxygen_gear') + + //#endregion +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/space_general/tags.railgun.js b/kubejs/server_scripts/tfg/space_general/tags.railgun.js new file mode 100644 index 000000000..0ad284fb5 --- /dev/null +++ b/kubejs/server_scripts/tfg/space_general/tags.railgun.js @@ -0,0 +1,82 @@ +"use strict"; + +function registerTFGRailgunItemTags(event) { + + event.add('tfg:cannot_launch_in_railgun', '#tfc:vessels') + event.add('tfg:cannot_launch_in_railgun', '#tfc:large_vessels') + event.add('tfg:cannot_launch_in_railgun', 'ae2:item_storage_cell_1k') + event.add('tfg:cannot_launch_in_railgun', 'ae2:item_storage_cell_4k') + event.add('tfg:cannot_launch_in_railgun', 'ae2:item_storage_cell_16k') + event.add('tfg:cannot_launch_in_railgun', 'ae2:item_storage_cell_64k') + event.add('tfg:cannot_launch_in_railgun', 'ae2:item_storage_cell_256k') + event.add('tfg:cannot_launch_in_railgun', 'ae2:fluid_storage_cell_1k') + event.add('tfg:cannot_launch_in_railgun', 'ae2:fluid_storage_cell_4k') + event.add('tfg:cannot_launch_in_railgun', 'ae2:fluid_storage_cell_16k') + event.add('tfg:cannot_launch_in_railgun', 'ae2:fluid_storage_cell_64k') + event.add('tfg:cannot_launch_in_railgun', 'ae2:fluid_storage_cell_256k') + event.add('tfg:cannot_launch_in_railgun', 'ae2:spatial_storage_cell_2') + event.add('tfg:cannot_launch_in_railgun', 'ae2:spatial_storage_cell_16') + event.add('tfg:cannot_launch_in_railgun', 'ae2:spatial_storage_cell_128') + event.add('tfg:cannot_launch_in_railgun', 'megacells:item_storage_cell_1m') + event.add('tfg:cannot_launch_in_railgun', 'megacells:item_storage_cell_4m') + event.add('tfg:cannot_launch_in_railgun', 'megacells:item_storage_cell_16m') + event.add('tfg:cannot_launch_in_railgun', 'megacells:item_storage_cell_64m') + event.add('tfg:cannot_launch_in_railgun', 'megacells:fluid_storage_cell_1m') + event.add('tfg:cannot_launch_in_railgun', 'megacells:fluid_storage_cell_4m') + event.add('tfg:cannot_launch_in_railgun', 'megacells:fluid_storage_cell_16m') + event.add('tfg:cannot_launch_in_railgun', 'megacells:fluid_storage_cell_64m') + event.add('tfg:cannot_launch_in_railgun', 'create:minecart_contraption') + event.add('tfg:cannot_launch_in_railgun', 'tfg:railgun_ammo_shell') + event.add('tfg:cannot_launch_in_railgun', 'create:cardboard_package_12x10') + event.add('tfg:cannot_launch_in_railgun', 'create:cardboard_package_10x8') + event.add('tfg:cannot_launch_in_railgun', 'create:cardboard_package_10x12') + event.add('tfg:cannot_launch_in_railgun', 'create:cardboard_package_12x12') + event.add('tfg:cannot_launch_in_railgun', 'create_factory_logistics:composite_package') + event.add('tfg:cannot_launch_in_railgun', 'create_factory_logistics:copper_jar_package_8x8') + event.add('tfg:cannot_launch_in_railgun', 'sns:ore_sack') + event.add('tfg:cannot_launch_in_railgun', 'sns:leather_sack') + event.add('tfg:cannot_launch_in_railgun', 'sns:burlap_sack') + event.add('tfg:cannot_launch_in_railgun', 'sns:seed_pouch') + event.add('tfg:cannot_launch_in_railgun', 'sns:straw_basket') + event.add('tfg:cannot_launch_in_railgun', 'sns:frame_pack') + event.add('tfg:cannot_launch_in_railgun', 'tfclunchbox:lunchbox') + event.add('tfg:cannot_launch_in_railgun', 'tfclunchbox:cooling_lunchbox') + event.add('tfg:cannot_launch_in_railgun', 'tfclunchbox:electric_lunchbox') + event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:backpack') + event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:copper_backpack') + event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:iron_backpack') + event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:gold_backpack') + event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:diamond_backpack') + event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:netherite_backpack') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:wood_crate') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:bronze_crate') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:black_bronze_crate') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:bismuth_bronze_crate') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:steel_crate') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:aluminium_crate') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:stainless_steel_crate') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:titanium_crate') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:tungsten_steel_crate') + event.add('tfg:cannot_launch_in_railgun', '#create:toolboxes') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:ulv_super_chest') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:lv_super_chest') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:mv_super_chest') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:hv_super_chest') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:ev_super_chest') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:iv_quantum_chest') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:luv_quantum_chest') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:zpm_quantum_chest') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:uv_quantum_chest') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:uhv_quantum_chest') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:ulv_super_tank') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:lv_super_tank') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:mv_super_tank') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:hv_super_tank') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:ev_super_tank') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:iv_quantum_tank') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:luv_quantum_tank') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:zpm_quantum_tank') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:uv_quantum_tank') + event.add('tfg:cannot_launch_in_railgun', 'gtceu:uhv_quantum_tank') + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/space_general/tags.rockets.js b/kubejs/server_scripts/tfg/space_general/tags.rockets.js new file mode 100644 index 000000000..fd6a8ef65 --- /dev/null +++ b/kubejs/server_scripts/tfg/space_general/tags.rockets.js @@ -0,0 +1,28 @@ +"use strict"; + +function registerTFGRocketItemTags(event) { + + // Insulation Tier 1 + event.add('forge:insulation_t1', 'gtceu:borosilicate_glass_dust') + event.add('forge:insulation_t1', 'gtceu:vitrified_asbestos_dust') + + //Insulation Tier 2 + event.add('forge:insulation_t2/sheet', 'tfg:aes_insulation_sheet') + event.add('forge:insulation_t2/roll', 'tfg:aes_insulation_roll') + + //Insulation Tier3 + event.add('forge:insulation_t3/foam', 'tfg:aes_polyurethane') + event.add('forge:insulation_t3/sheet', 'tfg:mli_shielding') + event.add('forge:insulation_t3/cryo', 'tfg:silica_aerogel') + + event.add('forge:aerogels', 'tfg:silica_aerogel') + + //Rocket Engines + event.add('ad_astra:rocket_engine', 'ad_astra:steel_engine') + event.add('ad_astra:rocket_engine', 'ad_astra:desh_engine') + event.add('ad_astra:rocket_engine', 'ad_astra:ostrum_engine') + + //Rocket Tank + event.add('ad_astra:rocket_tank', 'ad_astra:ostrum_tank') + +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/tags.interaction.js b/kubejs/server_scripts/tfg/tags.interaction.js index 99be4b76f..ad0c2bea0 100644 --- a/kubejs/server_scripts/tfg/tags.interaction.js +++ b/kubejs/server_scripts/tfg/tags.interaction.js @@ -1,8 +1,8 @@ // priority: 0 "use strict"; -function registerBlockInteractionTags(event) { - +function registerBlockInteractionItemTags(event) { + /** * @typedef {Object} BrickVariant * @property {string} brick_type - The name of the brick variant. @@ -23,11 +23,11 @@ function registerBlockInteractionTags(event) { * @property {string|null} smooth_slab - Smooth brick slab block ID. * @property {string|null} smooth_wall - Smooth brick wall block ID. * @property {string|null} chiseled_brick - Chiseled brick block ID. - */ - - for (const b of global.BRICK_INDEX) { + */ + + for (const b of global.BRICK_INDEX) { if (b.brick !== null) { event.add('tfg:interaction/brick', b.brick) } - if (b.brick_stairs !== null) {event.add('tfg:interaction/brick_stairs', b.brick_stairs) } + if (b.brick_stairs !== null) { event.add('tfg:interaction/brick_stairs', b.brick_stairs) } if (b.brick_slab !== null) { event.add('tfg:interaction/brick_slab', b.brick_slab) } if (b.brick_wall !== null) { event.add('tfg:interaction/brick_wall', b.brick_wall) } @@ -42,27 +42,22 @@ function registerBlockInteractionTags(event) { if (b.mossy_wall !== null) { event.add('tfg:interaction/mossy_brick_wall', b.mossy_wall) } if (b.smooth_brick !== null) { event.add('tfg:interaction/smooth_brick', b.smooth_brick) } - //event.add('tfg:interaction/smooth_bricks', b.smooth_stairs) - //event.add('tfg:interaction/smooth_bricks', b.smooth_slab) - //event.add('tfg:interaction/smooth_bricks', b.smooth_wall) - + //event.add('tfg:interaction/smooth_bricks', b.smooth_stairs) + //event.add('tfg:interaction/smooth_bricks', b.smooth_slab) + //event.add('tfg:interaction/smooth_bricks', b.smooth_wall) + } - } - - - for (const c of global.COBBLE_INDEX) { - - event.add('tfg:interaction/cobble', c.block) - event.add('tfg:interaction/cobble_stairs', c.stairs) - event.add('tfg:interaction/cobble_slab', c.slab) - event.add('tfg:interaction/cobble_wall', c.wall) - event.add('tfg:interaction/mossy_cobble', c.mossy_block) - event.add('tfg:interaction/mossy_cobble_stairs', c.mossy_stairs) - event.add('tfg:interaction/mossy_cobble_slab', c.mossy_slab) - event.add('tfg:interaction/mossy_cobble_wall', c.mossy_wall) + for (const c of global.COBBLE_INDEX) { - - } - + event.add('tfg:interaction/cobble', c.block) + event.add('tfg:interaction/cobble_stairs', c.stairs) + event.add('tfg:interaction/cobble_slab', c.slab) + event.add('tfg:interaction/cobble_wall', c.wall) + + event.add('tfg:interaction/mossy_cobble', c.mossy_block) + event.add('tfg:interaction/mossy_cobble_stairs', c.mossy_stairs) + event.add('tfg:interaction/mossy_cobble_slab', c.mossy_slab) + event.add('tfg:interaction/mossy_cobble_wall', c.mossy_wall) + } } diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index dcb09bde2..3a474fde3 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -2,202 +2,52 @@ const registerTFGItemTags = (event) => { - registerTFGTrimTags(event) - registerFacadeWhitelistTags(event) - registerBlockInteractionTags(event) - registerTFGItemStoneTags(event) + registerTFGTrimItemTags(event) + registerTFGFacadeWhitelistItemTags(event) + registerBlockInteractionItemTags(event) + registerTFGStoneItemTags(event) + registerTFGFoodItemTags(event); + registerTFGMedicineItemTags(event); + registerTFGPrimitiveItemTags(event) + registerTFGEquipmentItemTags(event); + registerTFGRailgunItemTags(event) + registerTFGRocketItemTags(event) + registerTFGGeneralWorldgenItemTags(event); + registerTFGBeneathItemTags(event) + registerTFGMoonItemTags(event) + registerTFGMarsItemTags(event) + registerTFGVenusItemTags(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: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('tfc:compost_greens_high', 'tfg:lunar_chorus_flower') - event.add('tfg:water_breathing_ingredients', 'tfg:rapeseed_product') - event.add('tfg:night_vision_ingredients', 'tfg:sunflower_product') - - // Actually "layers", can't rename them without screwing with peoples' worlds - event.add('c:hidden_from_recipe_viewers', 'tfg:ash_pile') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/black_sand') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/brown_sand') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/green_sand') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/pink_sand') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/red_sand') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/white_sand') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/yellow_sand') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/mars_sand') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/moon_sand') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/venus_sand') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/hematitic_sand') - - // Actually "piles", the kind that can hide plants inside them - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/mars_sand_covering') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/venus_sand_covering') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/hematitic_sand_covering') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/mars_snow_covering') - - // Actually "piles", the kind that can hide plants inside them - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/mars_sand_covering') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/venus_sand_covering') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/hematitic_sand_covering') - event.add('c:hidden_from_recipe_viewers', 'tfg:pile/mars_snow_covering') - - event.add('c:hidden_from_recipe_viewers', 'tfg:mars_ice') - - //Decorative Vases - global.MINECRAFT_DYE_NAMES.forEach(color => { - event.add('c:hidden_from_recipe_viewers', `tfg:decorative_vase/generated/${color}`) - event.add('tfg:decorative_vases/generated', `tfg:decorative_vase/generated/${color}`) - event.add('tfg:decorative_vases', `tfg:decorative_vase/${color}`) - event.add('tfg:decorative_vases/unfired', `tfg:decorative_vase/unfired/${color}`) - }) - event.add('tfg:decorative_vases', 'tfg:decorative_vase') - event.add('tfg:decorative_vases/unfired', 'tfg:decorative_vase/unfired') - - //Knapping - event.add('tfc:any_knapping', 'minecraft:flint') + // TEMPORARY, REMOVE WHEN GURMAN FIXES THIS + event.remove('tfc:foods', 'tfc_gurman:havai_pizza') //Circuit Stuff event.add('tfg:components/uv_leds', 'tfg:uv_led') event.add('tfg:components/uv_leds', 'tfg:smd_uv_led') - //Fission Nucleat Fuel - event.add('deafission:fuels', 'tfg:thorium_rod') - event.add('deafission:fuels', 'tfg:uranium_rod') - event.add('deafission:fuels', 'tfg:plutonium_rod') - event.add('tfg:fission_rods', '#deafission:fuels') + // Platline + event.add('tfg:platinum_ore_group', 'gtceu:purified_pentlandite_ore') + event.add('tfg:platinum_ore_group', 'gtceu:purified_chalcopyrite_ore') + event.add('tfg:platinum_ore_group', 'gtceu:purified_tetrahedrite_ore') + event.add('tfg:platinum_ore_group', 'gtceu:purified_bornite_ore') + event.add('tfg:platinum_ore_group', 'gtceu:purified_cooperite_ore') + event.add('tfg:platinum_ore_group', 'gtceu:purified_chalcocite_ore') - //#region Tools & Armor - event.add('forge:tools/fishing_nets', 'tfg:fishing_net/wood') - event.add('forge:tools/fishing_nets', 'tfg:fishing_net/brass') - event.add('forge:tools/fishing_nets', 'tfg:fishing_net/rose_gold') - event.add('forge:tools/fishing_nets', 'tfg:fishing_net/sterling_silver') - event.add('forge:tools/fishing_nets', 'tfg:fishing_net/invar') - event.add('forge:tools/fishing_nets', 'tfg:fishing_net/tin_alloy') - event.add('forge:tools/fishing_nets', 'tfg:fishing_net/cupronickel') - event.add('forge:tools/fishing_nets', 'tfg:fishing_net/magnalium') - - event.add('minecraft:piglin_loved', 'tfg:piglin_disguise') - - event.add('forge:tools/trowels', 'tfg:trowel') - event.add('tfc:usable_on_tool_rack', 'tfg:trowel') - - event.add('tfg:harvester', 'tfg:harvest_basket') - event.add('tfg:harvester', 'tfg:aluminium_harvest_basket') - - event.add('tfg:tools/ore_prospectors/copper', 'tfc:metal/propick/copper') - event.add('tfg:tools/ore_prospectors/bronze', 'tfc:metal/propick/bronze') - event.add('tfg:tools/ore_prospectors/bronze', 'tfc:metal/propick/bismuth_bronze') - event.add('tfg:tools/ore_prospectors/bronze', 'tfc:metal/propick/black_bronze') - event.add('tfg:tools/ore_prospectors/wrought_iron', 'tfc:metal/propick/wrought_iron') - event.add('tfg:tools/ore_prospectors/steel', 'tfc:metal/propick/steel') - event.add('tfg:tools/ore_prospectors/black_steel', 'tfc:metal/propick/black_steel') - event.add('tfg:tools/ore_prospectors/blue_steel', 'tfc:metal/propick/blue_steel') - event.add('tfg:tools/ore_prospectors/red_steel', 'tfc:metal/propick/red_steel') + //Bronze Crates & Drums + event.add('tfg:any_bronze_crate', 'gtceu:bronze_crate') + event.add('tfg:any_bronze_crate', 'gtceu:black_bronze_crate') + event.add('tfg:any_bronze_crate', 'gtceu:bismuth_bronze_crate') + event.add('tfg:any_bronze_drum', 'gtceu:bronze_drum') + event.add('tfg:any_bronze_drum', 'gtceu:black_bronze_drum') + event.add('tfg:any_bronze_drum', 'gtceu:bismuth_bronze_drum') + //#region Tools event.add('tfg:empty_dna_syringes', 'tfg:empty_dna_syringe') event.add('tfg:empty_dna_syringes', 'tfg:clean_dna_syringe') event.add('tfc:sewing_needles', 'tfg:stainless_steel_needle') //#endregion - // #region Paper from wood - event.add('tfg:hardwood_strips', 'tfg:hardwood_strip') - event.add('tfg:hardwood_strips', 'tfg:soaked_hardwood_strip') - //Adding any of these dusts to the forge dusts/wood tag will make it so you can craft softwood pulp using hardwood pulp. which is not ok. - event.add('tfg:wood_dusts', 'gtceu:hardwood_dust') - event.add('tfg:tiny_wood_dusts', 'gtceu:tiny_hardwood_dust') - event.add('tfg:small_wood_dusts', 'gtceu:small_hardwood_dust') - event.add('tfg:wood_dusts', 'gtceu:wood_dust') - event.add('tfg:tiny_wood_dusts', 'gtceu:tiny_wood_dust') - event.add('tfg:small_wood_dusts', 'gtceu:small_wood_dust') - - event.add('forge:wax', 'tfg:paraffin_wax') - event.add('forge:wax', 'firmalife:beeswax') - event.add('forge:wax', 'tfg:conifer_rosin') - event.add('forge:wax', 'tfg:crimsene_gem') - event.add('forge:wax', 'tfg:warpane_gem') - // #endregion - - event.add('buildinggadgets2:deny', 'tfg:spice') - - //#region Cloth & String - event.add('forge:cloth', 'tfg:phantom_silk') - event.add('forge:cloth', 'tfg:polycaprolactam_fabric') - event.add('tfc:high_quality_cloth', 'tfg:phantom_silk') - event.add('tfc:high_quality_cloth', 'tfg:polycaprolactam_fabric') - event.add('tfc:sewing_light_cloth', 'tfg:phantom_silk') - 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 - event.add('tfg:antipoison_ingredients', 'tfc:plant/blood_lily') - event.add('tfg:antipoison_ingredients', 'tfc:plant/pistia') - event.add('tfg:antipoison_ingredients', 'tfc:powder/bismuthinite') - event.add('tfg:antipoison_ingredients', 'gtceu:mica_dust') - event.add('tfg:antipoison_ingredients', 'gtceu:fullers_earth_dust') - - event.add('tfg:poison_ingredients', 'tfc:plant/butterfly_milkweed') - event.add('tfg:poison_ingredients', 'tfc:plant/grape_hyacinth') - event.add('tfg:poison_ingredients', 'tfc:plant/lily_of_the_valley') - event.add('tfg:poison_ingredients', 'tfc:plant/pulsatilla') - event.add('tfg:poison_ingredients', 'firmalife:food/nightshade_berry') - event.add('tfg:poison_ingredients', 'minecraft:red_mushroom') - - event.add('tfg:regeneration_ingredients', 'tfc:plant/lilac') - event.add('tfg:regeneration_ingredients', 'tfc:plant/field_horsetail') - event.add('tfg:regeneration_ingredients', 'tfc:plant/licorice_fern') - event.add('tfg:regeneration_ingredients', 'tfc:plant/sacred_datura') - - event.add('tfg:speed_ingredients', 'tfc:plant/labrador_tea') - event.add('tfg:speed_ingredients', 'firmalife:raw_honey') - - event.add('tfg:slowness_ingredients', 'tfc:plant/marigold') - event.add('tfg:slowness_ingredients', 'tfc:plant/nasturtium') - event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_red') - event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_white') - event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_yellow') - - event.add('tfg:weakness_ingredients', 'tfc:plant/laminaria') - event.add('tfg:weakness_ingredients', 'tfc:plant/sea_palm') - event.add('tfg:weakness_ingredients', 'tfc:plant/sea_lavender') - event.add('tfg:weakness_ingredients', 'tfc:plant/canna') - event.add('tfg:weakness_ingredients', 'tfc:plant/water_canna') - - event.add('tfg:haste_ingredients', '#tfg:sugars') - - event.add('tfg:water_breathing_ingredients', 'tfc:powder/saltpeter') - event.add('tfg:water_breathing_ingredients', 'tfc:powder/charcoal') - - event.add('tfg:night_vision_ingredients', 'tfc:food/carrot') - event.add('tfg:night_vision_ingredients', 'beneath:gleamflower') - - event.add('tfg:invisibility_ingredients', 'tfc:plant/calendula') - event.add('tfg:absorption_ingredients', 'beneath:burpflower') - - event.add('tfg:fire_resistance_ingredients', 'tfc:plant/cattail') - event.add('tfg:fire_resistance_ingredients', 'tfc:plant/meads_milkweed') - event.add('tfg:fire_resistance_ingredients', 'firmalife:plant/bay_laurel') - event.add('tfg:fire_resistance_ingredients', 'beneath:ghost_pepper') - - event.add('tfg:resistance_ingredients', 'tfc:plant/hibiscus') - event.add('tfg:resistance_ingredients', 'gtceu:calcium_dust') - - event.add('tfg:instant_health_ingredients', 'tfc:plant/foxglove') - event.add('tfg:instant_health_ingredients', 'tfc:plant/artists_conk') - - event.add('tfg:absorption_ingredients', 'tfc:plant/poppy') - event.add('tfg:invisibility_ingredients', 'tfc:plant/snapdragon_pink') - - event.add('tfg:luck_ingredients', 'tfc:plant/goldenrod') - event.add('tfg:luck_ingredients', 'tfc:plant/heather') - // #endregion - // Airplane Upgrades global.AIRCRAFT_UPGRADES.forEach(value => { event.add('immersive_aircraft:upgrades', `tfg:${value}`); @@ -229,383 +79,42 @@ const registerTFGItemTags = (event) => { event.add('forge:screws/any_bronze', '#forge:screws/bronze') event.add('forge:screws/any_bronze', '#forge:screws/bismuth_bronze') event.add('forge:screws/any_bronze', '#forge:screws/black_bronze') - - //#region Food - const RAW_MEATS = [ - 'tfg:food/raw_birt', - 'tfg:food/raw_crawlermari', - 'tfg:food/raw_limpet' - ] - RAW_MEATS.forEach(meat => { - event.add('tfc:foods', meat) - event.add('tfc:foods/meats', meat) - event.add('tfc:foods/raw_meats', meat) - }) - - const COOKED_MEATS = [ - 'tfg:food/cooked_birt', - 'tfg:food/cooked_crawlermari', - 'tfg:food/cooked_limpet' - ] - COOKED_MEATS.forEach(meat => { - event.add('tfc:foods', meat) - event.add('tfc:foods/meats', meat) - 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') + // Steam Bloomery + event.add("tfg:steam_bloomery_basic_fuels", "minecraft:coal"); + event.add("tfg:steam_bloomery_basic_fuels", "minecraft:charcoal"); + event.add("tfg:steam_bloomery_basic_fuels", "gtceu:rich_raw_coal"); + event.add("tfg:steam_bloomery_basic_fuels", "gtceu:raw_coal"); + event.add("tfg:steam_bloomery_basic_fuels", "gtceu:poor_raw_coal"); + event.add("tfg:steam_bloomery_basic_fuels", "gtceu:coal_dust"); + event.add("tfg:steam_bloomery_basic_fuels", "gtceu:charcoal_dust"); + + //#region holder materials + event.remove('forge:dusts', 'tfg:nitrocellulose') + event.remove('forge:dusts/nitrocellulose', 'tfg:nitrocellulose') - 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); - - const usable_in_jam_sandwich_2 = usable_in_jam_sandwich.filter(item => !preserves.includes(item)); - - usable_in_jam_sandwich_2.forEach(item => { - event.add('tfc:foods/usable_in_jam_sandwich_2', item); - }); - - event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_sniffer_beef') - event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_wraptor') - event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_springling_collar') - event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_walker_steak') - event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_glider_wings') - event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_whole_soarer') - event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_crusher_meat') - event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_goober_meat') - event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_cruncher_ribs') - event.add('tfg:raw_dinosaur_meat', 'tfg:food/raw_surfer_steak') - event.add('tfg:raw_dinosaur_meat', 'wan_ancient_beasts:raw_ancient_meat') - - //#region Meal Bag - /** - * List of item tags and item IDs that are allowed to be used in a meal bag. - * @type {string[]} - */ - const usable_in_meal_bag = [ - '#tfc:foods/meats', - '#tfc:foods/grains', - '#tfc:foods/vegetables', - '#tfc:foods/fruits', - '#tfc:foods/dairy', - '#firmalife:foods/chocolate', - '#tfcchannelcasting:foods/chocolate_sweet', - 'firmalife:food/chocolate_chip_cookie', - 'firmalife:food/vanilla_ice_cream', - 'firmalife:food/strawberry_ice_cream', - 'firmalife:food/chocolate_ice_cream', - 'firmalife:food/banana_split', - 'tfc:food/cooked_egg', - 'tfc:food/boiled_egg', - 'tfc:food/cooked_rice', - 'firmalife:food/cooked_pasta', - 'firmalife:food/pasta_with_tomato_sauce', - 'firmalife:food/cooked_rice_noodles', - 'firmalife:food/tortilla_chips', - 'firmalife:food/shredded_cheese', - 'firmalife:food/salsa', - 'firmalife:food/tomato_sauce', - 'tfg:roasted_sunflower_seeds', - 'tfg:food/cooked_dino_nugget' - ]; - usable_in_meal_bag.forEach(item => { - event.add('tfg:foods/usable_in_meal_bag', item); - }); - event.add('tfg:foil_packs', 'tfg:foil_pack'); - event.add('tfg:foil_packs', 'tfg:clean_foil_pack') - //#endregion - //#endregion - - //#region Blacklisted from the railgun - event.add('tfg:cannot_launch_in_railgun', '#tfc:vessels') - event.add('tfg:cannot_launch_in_railgun', '#tfc:large_vessels') - event.add('tfg:cannot_launch_in_railgun', 'ae2:item_storage_cell_1k') - event.add('tfg:cannot_launch_in_railgun', 'ae2:item_storage_cell_4k') - event.add('tfg:cannot_launch_in_railgun', 'ae2:item_storage_cell_16k') - event.add('tfg:cannot_launch_in_railgun', 'ae2:item_storage_cell_64k') - event.add('tfg:cannot_launch_in_railgun', 'ae2:item_storage_cell_256k') - event.add('tfg:cannot_launch_in_railgun', 'ae2:fluid_storage_cell_1k') - event.add('tfg:cannot_launch_in_railgun', 'ae2:fluid_storage_cell_4k') - event.add('tfg:cannot_launch_in_railgun', 'ae2:fluid_storage_cell_16k') - event.add('tfg:cannot_launch_in_railgun', 'ae2:fluid_storage_cell_64k') - event.add('tfg:cannot_launch_in_railgun', 'ae2:fluid_storage_cell_256k') - event.add('tfg:cannot_launch_in_railgun', 'ae2:spatial_storage_cell_2') - event.add('tfg:cannot_launch_in_railgun', 'ae2:spatial_storage_cell_16') - event.add('tfg:cannot_launch_in_railgun', 'ae2:spatial_storage_cell_128') - event.add('tfg:cannot_launch_in_railgun', 'megacells:item_storage_cell_1m') - event.add('tfg:cannot_launch_in_railgun', 'megacells:item_storage_cell_4m') - event.add('tfg:cannot_launch_in_railgun', 'megacells:item_storage_cell_16m') - event.add('tfg:cannot_launch_in_railgun', 'megacells:item_storage_cell_64m') - event.add('tfg:cannot_launch_in_railgun', 'megacells:fluid_storage_cell_1m') - event.add('tfg:cannot_launch_in_railgun', 'megacells:fluid_storage_cell_4m') - event.add('tfg:cannot_launch_in_railgun', 'megacells:fluid_storage_cell_16m') - event.add('tfg:cannot_launch_in_railgun', 'megacells:fluid_storage_cell_64m') - event.add('tfg:cannot_launch_in_railgun', 'create:minecart_contraption') - event.add('tfg:cannot_launch_in_railgun', 'tfg:railgun_ammo_shell') - event.add('tfg:cannot_launch_in_railgun', 'create:cardboard_package_12x10') - event.add('tfg:cannot_launch_in_railgun', 'create:cardboard_package_10x8') - event.add('tfg:cannot_launch_in_railgun', 'create:cardboard_package_10x12') - event.add('tfg:cannot_launch_in_railgun', 'create:cardboard_package_12x12') - event.add('tfg:cannot_launch_in_railgun', 'create_factory_logistics:composite_package') - event.add('tfg:cannot_launch_in_railgun', 'create_factory_logistics:copper_jar_package_8x8') - event.add('tfg:cannot_launch_in_railgun', 'sns:ore_sack') - event.add('tfg:cannot_launch_in_railgun', 'sns:leather_sack') - event.add('tfg:cannot_launch_in_railgun', 'sns:burlap_sack') - event.add('tfg:cannot_launch_in_railgun', 'sns:seed_pouch') - event.add('tfg:cannot_launch_in_railgun', 'sns:straw_basket') - event.add('tfg:cannot_launch_in_railgun', 'sns:frame_pack') - event.add('tfg:cannot_launch_in_railgun', 'tfclunchbox:lunchbox') - event.add('tfg:cannot_launch_in_railgun', 'tfclunchbox:cooling_lunchbox') - event.add('tfg:cannot_launch_in_railgun', 'tfclunchbox:electric_lunchbox') - event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:backpack') - event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:copper_backpack') - event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:iron_backpack') - event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:gold_backpack') - event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:diamond_backpack') - event.add('tfg:cannot_launch_in_railgun', 'sophisticatedbackpacks:netherite_backpack') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:wood_crate') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:bronze_crate') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:black_bronze_crate') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:bismuth_bronze_crate') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:steel_crate') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:aluminium_crate') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:stainless_steel_crate') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:titanium_crate') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:tungsten_steel_crate') - event.add('tfg:cannot_launch_in_railgun', '#create:toolboxes') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:ulv_super_chest') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:lv_super_chest') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:mv_super_chest') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:hv_super_chest') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:ev_super_chest') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:iv_quantum_chest') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:luv_quantum_chest') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:zpm_quantum_chest') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:uv_quantum_chest') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:uhv_quantum_chest') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:ulv_super_tank') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:lv_super_tank') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:mv_super_tank') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:hv_super_tank') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:ev_super_tank') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:iv_quantum_tank') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:luv_quantum_tank') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:zpm_quantum_tank') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:uv_quantum_tank') - event.add('tfg:cannot_launch_in_railgun', 'gtceu:uhv_quantum_tank') - //#endregion + event.remove('forge:dusts', 'tfg:cellulose_matrix') + event.remove('forge:dusts/cellulose_matrix', 'tfg:cellulose_matrix') - // #region Dirt - event.add('tfg:moon_plants', 'tfg:lunar_roots') - event.add('tfg:moon_plants', 'tfg:lunar_sprouts') - - event.add('minecraft:dirt', 'tfg:grass/mars_dirt') - event.add('minecraft:dirt', 'tfg:grass/mars_clay_dirt') - event.add('tfc:dirt', 'tfg:grass/mars_dirt') - event.add('tfc:dirt', 'tfg:grass/mars_clay_dirt') - event.add('tfc:grass', 'tfg:grass/amber_mycelium') - event.add('tfc:grass', 'tfg:grass/amber_clay_mycelium') - event.add('tfc:grass', 'tfg:grass/rusticus_mycelium') - event.add('tfc:grass', 'tfg:grass/rusticus_clay_mycelium') - event.add('tfc:grass', 'tfg:grass/sangnum_mycelium') - event.add('tfc:grass', 'tfg:grass/sangnum_clay_mycelium') - event.add('tfc:farmland', 'tfg:grass/mars_farmland') - event.add('tfc:paths', 'tfg:grass/mars_path') - event.add('tfc:kaolin_clay', 'tfg:grass/amber_kaolin_mycelium') - event.add('tfc:kaolin_clay', 'tfg:grass/rusticus_kaolin_mycelium') - event.add('tfc:kaolin_clay', 'tfg:grass/sangnum_kaolin_mycelium') - // #endregion - - //Mars animal region - event.add('tfg:martian_eggs', 'tfg:sniffer_egg') - event.add('tfg:martian_eggs', 'tfg:wraptor_egg') - event.add('forge:eggs', '#tfg:martian_eggs') - event.add('firmalife:foods/raw_eggs', '#tfg:martian_eggs') + event.remove('tfc:pileable_ingots', 'tfg:polycaprolactam_fabric') + event.remove('forge:ingots', 'tfg:polycaprolactam_fabric') + event.remove('forge:ingots/tfg_polycaprolactam', 'tfg:polycaprolactam_fabric') - event.add('tfg:martian_animal_foods', 'betterend:amber_root_product') - event.add('tfg:martian_animal_foods', 'betterend:blossom_berry_product') - event.add('tfg:martian_animal_foods', 'betterend:chorus_mushroom_product') - event.add('tfg:martian_animal_foods', 'betterend:shadow_berry_product') - event.add('tfg:martian_animal_foods', 'betterend:bolux_mushroom_product') - event.add('tfg:martian_animal_foods', 'betterend:cave_pumpkin_chunks') - - event.add('tfg:glacian_ram_food', '#tfg:martian_animal_foods') - event.add('tfg:sniffer_food', '#tfg:martian_animal_foods') - 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') + event.remove('forge:nuggets', 'tfg:polycaprolactam_string') + event.remove('forge:nuggets/tfg_polycaprolactam', 'tfg:polycaprolactam_string') //#endregion } //#region Blocks const registerTFGBlockTags = (event) => { - event.add('minecraft:mineable/shovel', 'tfg:ash_pile') - //crop stuff - event.add('tfc:crops', 'tfg:rapeseed') - event.add('tfc:mineable_with_sharp_tool', 'tfg:rapeseed') - - 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 Fision Components - var COMPONENTS = 'deafission:components'; - - // Max Heating - event.add(COMPONENTS, 'tfg:glacian_wool_frame'); // Max Heat 2 - event.add(COMPONENTS, 'minecraft:blue_ice'); // Max Heat 0.5 - event.add(COMPONENTS, 'tfg:aes_insulation_frame'); // Max Heat 1 - event.add(COMPONENTS, 'tfg:moderate_core_frame'); // Max Heat 10 - event.add(COMPONENTS, 'tfg:impure_moderate_core_frame'); // Max Heat 5 - //event.add(COMPONENTS, 'minecraft:blue_ice'); // Max Heat 0.5 - - event.add(COMPONENTS, 'minecraft:bedrock'); // Max Heat 10000 CREATIVE BLOCK - - // Increase Throttle - //event.add(COMPONENTS, 'minecraft:iron_block'); - - // Increase Effiency - //event.add(COMPONENTS, 'minecraft:packed_ice'); - - event.add('tfg:fission_coolant','deafission:components') - - //#endregion - - // #region Nether blocks - event.add('minecraft:nether_carver_replaceables', 'tfg:rock/hardened_deepslate') - event.add('minecraft:moss_replaceable', 'tfg:rock/hardened_deepslate') - event.add('minecraft:base_stone_nether', 'tfg:rock/hardened_deepslate') - event.add('beneath:nether_bush_plantable_on', 'tfg:rock/hardened_deepslate') - event.add('tfc:grass_plantable_on', 'tfg:rock/hardened_deepslate') - event.add('tfc:creeping_plantable_on', 'tfg:rock/hardened_deepslate') - event.add('tfc:rock/hardened', 'tfg:rock/hardened_deepslate') - - event.add('minecraft:nether_carver_replaceables', 'tfg:rock/hardened_blackstone') - event.add('minecraft:moss_replaceable', 'tfg:rock/hardened_blackstone') - event.add('minecraft:base_stone_nether', 'tfg:rock/hardened_blackstone') - event.add('beneath:nether_bush_plantable_on', 'tfg:rock/hardened_blackstone') - event.add('tfc:creeping_plantable_on', 'tfg:rock/hardened_blackstone') - event.add('tfc:rock/hardened', 'tfg:rock/hardened_blackstone') - - event.add('minecraft:nether_carver_replaceables', 'tfg:rock/hardened_dripstone') - event.add('minecraft:base_stone_nether', 'tfg:rock/hardened_dripstone') - event.add('tfc:rock/hardened', 'tfg:rock/hardened_dripstone') - // #endregion - - // #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:paths', 'tfg:grass/mars_path') - 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('tfc:kaolin_clay', 'tfg:grass/amber_kaolin_mycelium') - event.add('tfc:kaolin_clay', 'tfg:grass/rusticus_kaolin_mycelium') - event.add('tfc:kaolin_clay', '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/amber_clay_mycelium') - event.add('tfg:do_not_destroy_in_space', 'tfg:grass/rusticus_clay_mycelium') - event.add('tfg:do_not_destroy_in_space', 'tfg:grass/sangnum_clay_mycelium') - event.add('tfg:do_not_destroy_in_space', 'tfg:grass/amber_kaolin_mycelium') - event.add('tfg:do_not_destroy_in_space', 'tfg:grass/rusticus_kaolin_mycelium') - event.add('tfg:do_not_destroy_in_space', 'tfg:grass/sangnum_kaolin_mycelium') - event.add('tfg:do_not_destroy_in_space', 'tfg:grass/mars_farmland') - event.add('tfg:do_not_destroy_in_space', 'tfg:grass/mars_path') - 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/mars_path') - 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:mineable/shovel', 'tfg:grass/mars_dirt') - event.add('minecraft:mineable/shovel', 'tfg:grass/mars_clay_dirt') - event.add('minecraft:mineable/shovel', 'tfg:grass/mars_path') - event.add('minecraft:mineable/shovel', 'tfg:grass/mars_farmland') - event.add('minecraft:mineable/shovel', 'tfg:grass/amber_mycelium') - event.add('minecraft:mineable/shovel', 'tfg:grass/amber_clay_mycelium') - event.add('minecraft:mineable/shovel', 'tfg:grass/amber_kaolin_mycelium') - event.add('minecraft:mineable/shovel', 'tfg:grass/rusticus_mycelium') - event.add('minecraft:mineable/shovel', 'tfg:grass/rusticus_clay_mycelium') - event.add('minecraft:mineable/shovel', 'tfg:grass/rusticus_kaolin_mycelium') - event.add('minecraft:mineable/shovel', 'tfg:grass/sangnum_mycelium') - event.add('minecraft:mineable/shovel', 'tfg:grass/sangnum_clay_mycelium') - event.add('minecraft:mineable/shovel', 'tfg:grass/sangnum_kaolin_mycelium') - event.add('tfc:bush_plantable_on', 'tfg:grass/mars_farmland') - event.add('tfc:grass_plantable_on', 'tfg:grass/mars_farmland') - event.add('tfc:creeping_plantable_on', 'tfg:grass/mars_farmland') - - event.add('minecraft:mushroom_grow_block', '#tfc:dirt') - event.add('minecraft:mushroom_grow_block', '#tfc:grass') - event.add('minecraft:mushroom_grow_block', '#forge:sand') - event.add('minecraft:mushroom_grow_block', '#forge:gravel') - // #endregion - - event.add('tfg:harvester_harvestable', '#tfc:fruit_tree_leaves') - event.add('tfg:harvester_harvestable', '#tfc:berry_bushes') - event.add('tfg:harvester_harvestable', '#tfc:any_spreading_bush') - event.add('tfg:harvester_harvestable', '#firmalife:grape_strings') - event.add('tfg:harvester_harvestable', '#firmalife:grape_trellis_posts_plant') - //added for QOL but doesnt harvest anything - event.add('tfg:harvester_harvestable', 'firmalife:grape_fluff_red') - event.add('tfg:harvester_harvestable', 'firmalife:grape_fluff_white') + registerTFGPrimitiveBlockTags(event) + registerTFGFoodBlockTags(event) + registerTFGGeneralWorldgenBlockTags(event) + registerTFGBeneathBlockTags(event) + registerTFGMoonBlockTags(event) + registerTFGMarsBlockTags(event) + registerTFGVenusBlockTags(event) event.add('minecraft:mineable/pickaxe', 'tfg:superconductor_coil_large') event.add('minecraft:mineable/pickaxe', 'tfg:superconductor_coil_small') @@ -617,18 +126,7 @@ const registerTFGBlockTags = (event) => { event.add('forge:mineable/wrench', 'tfg:electromagnetic_accelerator') 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') - event.add('tfg:decorative_plant_attachable', 'minecraft:mushroom_stem') - event.add('tfg:decorative_plant_attachable', 'species:alphacene_mushroom_block') - event.add('tfg:decorative_plant_attachable', 'species:alphacene_moss_block') - event.add('tfg:decorative_plant_attachable', 'ad_astra:aeronos_cap') - event.add('tfg:decorative_plant_attachable', 'ad_astra:strophar_cap') - event.add('tfg:decorative_plant_attachable', 'tfg:glacian_leaves') - event.add('tfg:decorative_plant_attachable', 'minecraft:nether_wart_block') - event.add('tfg:decorative_plant_attachable', 'minecraft:warped_wart_block') - event.add('tfg:decorative_plant_attachable', 'betterend:cave_bush') - event.add('tfg:decorative_plant_attachable', 'betterend:lucernia_leaves') + event.add('forge:mineable/wrench', 'tfg:machine_casing_power_casing') event.add('minecraft:mineable/pickaxe', 'tfg:mars_ice') event.add('minecraft:mineable/pickaxe', 'tfg:dry_ice') @@ -636,158 +134,87 @@ const registerTFGBlockTags = (event) => { event.add('tfcambiental:cold_stuff', 'tfg:dry_ice') event.add('minecraft:ice', 'tfg:mars_ice') event.add('minecraft:ice', 'tfg:dry_ice') - - event.add('minecraft:mineable/shovel', 'tfg:ash_pile') - event.add('minecraft:mineable/shovel', 'tfg:pile/black_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/white_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/brown_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/red_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/yellow_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/pink_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/green_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/moon_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/mars_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/venus_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/hematitic_sand') - event.add('minecraft:mineable/shovel', 'tfg:pile/mars_sand_covering') - event.add('minecraft:mineable/shovel', 'tfg:pile/venus_sand_covering') - event.add('minecraft:mineable/shovel', 'tfg:pile/hematitic_sand_covering') } //#endregion //#region Fluids const registerTFGFluidTags = (event) => { - event.add('tfc:usable_in_pot', 'tfg:latex') - event.add('tfc:usable_in_barrel', 'tfg:latex') - event.add('tfc:usable_in_wooden_bucket', 'tfg:latex') - event.add('tfc:usable_in_red_steel_bucket', 'tfg:latex') - event.add('tfc:usable_in_blue_steel_bucket', 'tfg:latex') - - event.add('tfc:usable_in_pot', 'tfg:vulcanized_latex') - event.add('tfc:usable_in_barrel', 'tfg:vulcanized_latex') - event.add('tfc:usable_in_wooden_bucket', 'tfg:vulcanized_latex') - event.add('tfc:usable_in_red_steel_bucket', 'tfg:vulcanized_latex') - event.add('tfc:usable_in_blue_steel_bucket', 'tfg:vulcanized_latex') - - event.add('tfc:usable_in_pot', 'tfg:conifer_pitch') - event.add('tfc:usable_in_barrel', 'tfg:conifer_pitch') - event.add('tfc:usable_in_wooden_bucket', 'tfg:conifer_pitch') - event.add('tfc:usable_in_red_steel_bucket', 'tfg:conifer_pitch') - event.add('tfc:usable_in_blue_steel_bucket', 'tfg:conifer_pitch') + registerTFGPrimitiveFluidTags(event) event.add('tfg:clean_water', 'minecraft:water') event.add('tfg:clean_water', 'tfc:river_water') event.add('tfg:clean_water', 'tfc:spring_water') - event.add('tfc:usable_in_barrel', 'gtceu:seed_oil') - - event.add('forge:liquid', 'tfg:semiheavy_ammoniacal_water') event.add('tfc:any_water', 'tfg:semiheavy_ammoniacal_water') event.add('tfc:hydrating', 'tfg:semiheavy_ammoniacal_water') event.add('tfc:drinkables', 'tfg:semiheavy_ammoniacal_water') event.add('tfc:any_drinkables', 'tfg:semiheavy_ammoniacal_water') event.add('tfc:ingredients', 'tfg:semiheavy_ammoniacal_water') - event.add('tfc:usable_in_pot', 'tfg:semiheavy_ammoniacal_water') - event.add('tfc:usable_in_wooden_bucket', 'tfg:semiheavy_ammoniacal_water') - event.add('tfc:usable_in_barrel', 'tfg:semiheavy_ammoniacal_water') - event.add('firmalife:usable_in_mixing_bowl', 'tfg:semiheavy_ammoniacal_water') - event.add('firmalife:mixable', 'tfg:semiheavy_ammoniacal_water') - event.add('firmalife:usable_in_vat', 'tfg:semiheavy_ammoniacal_water') event.add('minecraft:water', 'tfg:semiheavy_ammoniacal_water') + event.add('tfc:drinkables', 'tfg:proto_growth_medium') + event.add('tfc:any_drinkables', 'tfg:proto_growth_medium') + + event.add('tfc:drinkables', 'tfg:brown_gravy') + event.add('tfc:any_drinkables', 'tfg:brown_gravy') + + event.add('minecraft:water', 'tfg:rich_stock') + event.add('tfc:drinkables', 'tfg:rich_stock') + event.add('tfc:any_drinkables', 'tfg:rich_stock') + + event.add('minecraft:water', 'tfg:light_stock') + event.add('tfc:drinkables', 'tfg:light_stock') + event.add('tfc:any_drinkables', 'tfg:light_stock') + + event.add('tfc:drinkables', 'gtceu:ethanol') + event.add('tfc:any_drinkables', 'gtceu:ethanol') + event.add('tfc:drinkables', 'gtceu:methanol') + event.add('tfc:any_drinkables', 'gtceu:methanol') + global.BREATHABLE_COMPRESSED_AIRS.forEach(x => { event.add('tfg:breathable_compressed_air', x) }) + + // Platline tags + event.add('tfg:sulfuric_metal_solution', 'gtceu:sulfuric_copper_solution') + event.add('tfg:sulfuric_metal_solution', 'gtceu:sulfuric_nickel_solution') } //#endregion const registerTFGBiomeTags = (event) => { - - // #region TFG Structure Biomes - - event.add('tfg:has_structure/plains_temperate_0', 'tfc:plains') - event.add('tfg:has_structure/plains_temperate_0', 'tfc:plateau') - event.add('tfg:has_structure/plains_temperate_0', 'tfc:highlands') - - event.add('tfg:has_structure/aqueduct', 'tfc:plains') - event.add('tfg:has_structure/aqueduct', 'tfc:highlands') - event.add('tfg:has_structure/aqueduct', 'tfc:lowlands') - event.add('tfg:has_structure/aqueduct', 'tfc:badlands') - - event.add('tfg:has_structure/ocean_moai_0', 'tfc:volcanic_oceanic_mountains') - event.add('tfg:has_structure/ocean_moai_0', 'tfc:volcanic_mountains') - - event.add('tfg:has_structure/illages', 'tfc:plains') - event.add('tfg:has_structure/illages', 'tfc:hills') - event.add('tfg:has_structure/illages', 'tfc:rolling_hills') - event.add('tfg:has_structure/illages', 'tfc:badlands') - event.add('tfg:has_structure/illages', 'tfc:plateau') - event.add('tfg:has_structure/illages', 'tfc:old_mountains') - - event.add('tfg:never_has_structure/illages', '#tfc:is_lake') - event.add('tfg:never_has_structure/illages', '#tfc:is_ocean') - event.add('tfg:never_has_structure/illages', '#tfc:is_river') - - // #endregion - - // #region Nether biomes - event.add('tfg:nether_biomes', 'tfg:nether/lush_hollow') - event.add('minecraft:allows_surface_slime_spawns', 'tfg:nether/lush_hollow') - event.add('minecraft:spawns_cold_variant_frogs', 'tfg:nether/lush_hollow') - - event.add('tfg:nether_biomes', 'tfg:nether/decaying_caverns') - event.add('minecraft:allows_surface_slime_spawns', 'tfg:nether/decaying_caverns') - event.add('minecraft:spawns_warm_variant_frogs', 'tfg:nether/decaying_caverns') - event.add('minecraft:has_closer_water_fog', 'tfg:nether/decaying_caverns') - - event.add('tfg:nether_biomes', 'tfg:nether/basalt_deltas') - event.add('tfg:nether_biomes', 'tfg:nether/ash_forest') - event.add('tfg:nether_biomes', 'tfg:nether/lava_floes') - event.add('tfg:nether_biomes', 'tfg:nether/webbed_lair') - event.add('tfg:nether_biomes', 'tfg:nether/gneiss_caves') - event.add('tfg:nether_biomes', 'tfg:nether/diorite_caves') - event.add('tfg:nether_biomes', 'tfg:nether/gabbro_caves') - event.add('tfg:nether_biomes', 'tfg:nether/granite_caves') - event.add('tfg:nether_biomes', 'tfg:nether/schist_caves') - - event.add('minecraft:has_structure/nether_fossil', '#tfg:nether_biomes') - event.add('minecraft:has_structure/bastion_remnant', '#tfg:nether_biomes') - // #endregion + registerTFGOverworldBiomeTags(event) + registerTFGBeneathBiomeTags(event) + registerTFGMoonBiomeTags(event) + registerTFGMarsBiomeTags(event) + registerTFGVenusBiomeTags(event) } function registerTFGConfiguredFeatures(event) { registerTFGForestConfiguredFeatures(event) } -// Other space decoration is in ad_astra/tags.js const registerTFGPlacedFeatures = (event) => { - - // #region Earth biomes - - event.add('tfc:in_biome/surface_decoration/ocean', 'tfg:earth/rose_quartz/rose_quartz') - event.add('tfc:in_biome/surface_decoration/ocean_reef', 'tfg:earth/rose_quartz/rose_quartz') - event.add('tfc:in_biome/surface_decoration/deep_ocean', 'tfg:earth/rose_quartz/rose_quartz') - event.add('tfc:in_biome/surface_decoration/deep_ocean_trench', 'tfg:earth/rose_quartz/rose_quartz') - event.add('tfc:in_biome/surface_decoration/shore', 'tfg:earth/rose_quartz/rose_quartz') - event.add('tfc:in_biome/surface_decoration/tidal_flats', 'tfg:earth/rose_quartz/rose_quartz') - event.add('tfc:in_biome/surface_decoration/lowlands', 'tfg:earth/rose_quartz/rose_quartz') - event.add('tfc:in_biome/surface_decoration/salt_marsh', 'tfg:earth/rose_quartz/rose_quartz') - event.add('tfc:in_biome/surface_decoration/plains', 'tfg:earth/rose_quartz/rose_quartz') - event.add('tfc:in_biome/surface_decoration/lake', 'tfg:earth/rose_quartz/rose_quartz') - - // #endregion - registerTFGOreVeinFeatures(event); - // #region Nether + registerTFGOverworldPlacedFeatures(event); + registerTFGBeneathPlacedFeatures(event); + registerTFGMoonPlacedFeatures(event); + registerTFGMarsPlacedFeatures(event); + registerTFGVenusPlacedFeatures(event); + registerTFGEuropaPlacedFeatures(event); +} - event.add('tfg:nether_veins', 'beneath:vein/crackrack_pipe') +const registerTFGEntityTypeTags = (event) => { - event.add('tfg:nether_underground_decoration', 'minecraft:spring_open') - event.add('tfg:nether_underground_decoration', 'minecraft:spring_closed') - event.add('tfg:nether_underground_decoration', 'tfg:nether/terrain/magma_blob') + registerTFGMoonEntityTypeTags(event) + registerTFGMarsEntityTypeTags(event) + registerTFGVenusEntityTypeTags(event) + registerTFGEuropaEntityTypeTags(event) - // #endregion + event.add('ad_astra:can_survive_in_space', 'railways:conductor') + event.add('ad_astra:can_survive_in_space', 'endermanoverhaul:pet_enderman') + event.add('ad_astra:can_survive_in_space', 'endermanoverhaul:axolotl_pet_enderman') + event.add('ad_astra:can_survive_in_space', 'endermanoverhaul:hammerhead_pet_enderman') } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/tags.veins.js b/kubejs/server_scripts/tfg/tags.veins.js index 75fd2d810..3ab4438e6 100644 --- a/kubejs/server_scripts/tfg/tags.veins.js +++ b/kubejs/server_scripts/tfg/tags.veins.js @@ -72,6 +72,7 @@ const registerTFGOreVeinFeatures = (event) => { event.add('tfg:mars_veins', 'tfg:mars/vein/mars_sapphire') event.add('tfg:mars_veins', 'tfg:mars/vein/mars_graphite') event.add('tfg:mars_veins', 'tfg:mars/vein/mars_hematite') + event.add('tfg:mars_veins', 'tfg:mars/vein/mars_lapis') 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') @@ -165,4 +166,10 @@ const registerTFGOreVeinFeatures = (event) => { // #endregion + + // #region venus ores + + + // #endregion + } diff --git a/kubejs/server_scripts/tfg/venus/data.venus.js b/kubejs/server_scripts/tfg/venus/data.venus.js new file mode 100644 index 000000000..7dc7d555d --- /dev/null +++ b/kubejs/server_scripts/tfg/venus/data.venus.js @@ -0,0 +1,26 @@ +"use strict"; + +function registerTFGVenusBedrockFluidVeins(event) { + + event.add('tfg:venus_sulfuric_acid', vein => { + vein.dimensions('ad_astra:venus') + vein.fluid(() => Fluid.of('gtceu:sulfuric_acid').fluid) + vein.weight(50) + vein.minimumYield(100) + vein.maximumYield(200) + vein.depletionAmount(1) + vein.depletionChance(50) + vein.depletedYield(20) + }) + + event.add('tfg:venus_lava', vein => { + vein.dimensions('ad_astra:venus') + vein.fluid(() => Fluid.of('minecraft:lava').fluid) + vein.weight(50) + vein.minimumYield(200) + vein.maximumYield(400) + vein.depletionAmount(1) + vein.depletionChance(1) + vein.depletedYield(50) + }) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.biochem.js b/kubejs/server_scripts/tfg/venus/recipes.biochem.js similarity index 54% rename from kubejs/server_scripts/tfg/recipes.biochem.js rename to kubejs/server_scripts/tfg/venus/recipes.biochem.js index 58bc16287..c3298a2da 100644 --- a/kubejs/server_scripts/tfg/recipes.biochem.js +++ b/kubejs/server_scripts/tfg/venus/recipes.biochem.js @@ -7,6 +7,7 @@ function registerTFGBiochemRecipes(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") + const Sized = (ing, amount) => $SizedIngredient.create(ing, amount) /** * @typedef {Object} BioreactorRecipeData @@ -117,7 +118,6 @@ function registerTFGBiochemRecipes(event) { ///////////////////////////////////////// - //#region Recipes // EXAMPLE // growthChamberRecipeText('test/test', 10*60*20, GTValues.VA[GTValues.EV], 'tfg.food_recipe.brining', { // itemInputs: ['tfc:food/red_apple','tfc:food/red_apple', '1x tfc:silica_glass_bottle'], @@ -132,7 +132,6 @@ function registerTFGBiochemRecipes(event) { // itemOutputProvider: TFC.isp.of('3x tfc:food/green_apple').copyFood().addTrait('firmalife:smoked') // }) - //#endregion //#region Multiblock Parts event.recipes.gtceu.assembler('tfg:uv_led') @@ -188,7 +187,7 @@ function registerTFGBiochemRecipes(event) { C: '#gtceu:circuits/ev', D: 'gtceu:aluminium_single_cable', E: 'gtceu:ev_electric_pump', - F: 'gtceu:ev_electric_motor', + F: 'gtceu:ev_electric_motor' }).addMaterialInfo().id('tfg:shaped/bioreactor'); event.recipes.gtceu.shaped('tfg:casings/bioculture_rotor_primary', [ @@ -354,5 +353,389 @@ function registerTFGBiochemRecipes(event) { lab_cleaning.forEach(entry => { sterilizeItem(event, entry.input, entry.output, entry.multiplier, entry.cleanroom); }); + + //#endregion + //#region Decellularization + + // Hydrogenation of fatty acids to produce lauryl alcohol. + event.recipes.gtceu.chemical_reactor('tfg:lauryl_alcohol') + .inputFluids( + '#firmalife:oils 1000', + Fluid.of('gtceu:hydrogen', 2000) + ) + .notConsumable(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Palladium, 1)) + .outputFluids(Fluid.of('tfg:lauryl_alcohol', 1000)) + .duration(20*20) + .EUt(GTValues.VA[GTValues.EV]); + + // Direct synthesis of chlorosulfuric acid. + event.recipes.gtceu.chemical_reactor('tfg:chlorosulfuric_acid') + .inputFluids( + Fluid.of('gtceu:sulfur_trioxide', 1000), + Fluid.of('gtceu:hydrochloric_acid', 1000) + ) + .outputFluids(Fluid.of('tfg:chlorosulfuric_acid', 1000)) + .duration(10*20) + .EUt(GTValues.VA[GTValues.HV]); + + // Synthesis of sodium dodecyl sulfate. Chemistry is not accurate since the organic group in lauryl alcohol is unknown here. + event.recipes.gtceu.chemical_reactor('tfg:sodium_dodecyl_sulfate') + .inputFluids( + Fluid.of('tfg:lauryl_alcohol', 1000), + Fluid.of('tfg:chlorosulfuric_acid', 2000) + ) + .outputFluids( + Fluid.of('tfg:sodium_dodecyl_sulfate', 1000), + Fluid.of('gtceu:sulfur_trioxide', 1000) + ) + .duration(30*20) + .EUt(GTValues.VA[GTValues.EV]); + + // Redox reaction to produce sodium hypochlorite. + event.recipes.gtceu.chemical_reactor('tfg:sodium_hypochlorite') + .itemInputs( + ChemicalHelper.get(TagPrefix.dust, GTMaterials.SodiumHydroxide, 2) + ) + .inputFluids( + Fluid.of('gtceu:chlorine', 2000) + ) + .outputFluids( + Fluid.of('tfg:sodium_hypochlorite', 1000), + Fluid.of('minecraft:water', 1000) + ) + .itemOutputs(Item.of('gtceu:salt_dust')) + .circuit(1) + .duration(10*20) + .EUt(GTValues.VA[GTValues.HV]); + + // Decellularization of organic material to produce cellulose matrix. + /** + * @type {Array} + * @property {'fluid'|'item'} type - Item or Fluid. + * @property {string} id - Item or fluid ID. + * @property {number} amount - Amount of items or millibuckets of fluid. + */ + const organics = [ + { type: 'item', id: 'gtceu:bio_chaff', amount: 1 }, + { type: 'fluid', id: 'gtceu:biomass', amount: 1000 } + ]; + + /** + * Registers a bioreactor "decellularization" recipes. + * + * @param {event} event + * @param {'fluid'|'item'} organicType - Type of the organic input. Must be either 'fluid' or 'item'. + * @param {string} organicId - Registry ID of the organic input. + * @param {number} organicAmount - Amount of the organic input. + */ + function deccellularizationRecipe(event, organicType, organicId, organicAmount) { + let recipe = event.recipes.gtceu.bioreactor(`tfg:decellularization/${organicId.replace(':', '_')}`) + .inputFluids( + Fluid.of('tfg:sodium_dodecyl_sulfate', 200), + Fluid.of('gtceu:acetone', 1000), + Fluid.of('tfg:sodium_hypochlorite', 1000) + ) + .itemInputs( + Ingredient.of('tfg:lab_equipment') + ) + .itemOutputs( + Item.of('tfg:cellulose_matrix'), + Item.of('tfg:dirty_lab_equipment') + ) + .duration(30*20) + .EUt(GTValues.VA[GTValues.IV]) + .cleanroom(CleanroomType.CLEANROOM) + .dimension('ad_astra:venus'); + + if (organicType === 'fluid') { + recipe.inputFluids( + Fluid.of(organicId, organicAmount) + ); + }; + if (organicType === 'item') { + recipe.itemInputs( + Ingredient.of(organicId).withCount(organicAmount) + ); + }; + }; + + organics.forEach(organic => + deccellularizationRecipe(event, organic.type, organic.id, organic.amount) + ); + + //#endregion + //#region Gram Stain + + // N,N-Dimethylaniline synthesis. + event.recipes.gtceu.chemical_reactor('tfg:n_n_dimethylaniline') + .inputFluids( + Fluid.of('tfg:aniline', 1000), + Fluid.of('tfg:iodomethane', 2000) + ) + .outputFluids( + Fluid.of('tfg:n_n_dimethylaniline', 1000), + Fluid.of('gtceu:hydrogen_iodide', 2000) + ) + .duration(20*20) + .EUt(GTValues.VA[GTValues.EV]); + + // Crystal violet synthesis. + event.recipes.gtceu.large_chemical_reactor('tfg:crystal_violet') + .inputFluids( + Fluid.of('tfg:n_n_dimethylaniline', 3000), + Fluid.of('gtceu:formaldehyde', 1000), + Fluid.of('gtceu:hydrochloric_acid', 1000), + Fluid.of('gtceu:oxygen', 2000) + ) + .outputFluids( + Fluid.of('tfg:crystal_violet', 1000), + Fluid.of('gtceu:distilled_water', 3000) + ) + .duration(20*20) + .EUt(GTValues.VA[GTValues.IV]); + + // Crystal violet to dye. + event.recipes.gtceu.mixer('tfg:crystal_violet_dye') + .inputFluids( + Fluid.of('tfg:crystal_violet', 10), + Fluid.of('minecraft:water', 1000) + ) + .outputFluids(Fluid.of('tfc:purple_dye', 1000)) + .duration(5*20) + .EUt(GTValues.VA[GTValues.LV]); + + //Gram stain solution. + /** + * @type {Array} + * @property {string} solvent - Solvent fluid ID. + */ + const gramStainSolvents = [ + 'gtceu:ethanol', + 'gtceu:acetone' + ]; + gramStainSolvents.forEach(solvent => { + event.recipes.gtceu.large_chemical_reactor(`tfg:gram_stain_solvent_${solvent.replace(':', '_')}`) + .inputFluids( + Fluid.of('tfg:crystal_violet', 1000), + Fluid.of('tfc:red_dye', 1000), + Fluid.of(solvent, 1000) + ) + .itemInputs( + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Iodine, 1) + ) + .outputFluids(Fluid.of('tfg:gram_stain', 4000)) + .duration(8*20) + .EUt(GTValues.VA[GTValues.IV]) + .cleanroom(CleanroomType.CLEANROOM) + .dimension('ad_astra:venus'); + }); + + //#endregion + //#region Triglcerides + + // Butyric acid synthesis. + event.recipes.gtceu.chemical_reactor('tfg:butyric_acid') + .inputFluids( + Fluid.of('gtceu:propene', 2000), + Fluid.of('gtceu:carbon_monoxide', 6000), + Fluid.of('gtceu:hydrogen', 12000) + ) + .outputFluids( + Fluid.of('tfg:butyric_acid', 3000) + ) + .duration(10*20) + .circuit(4) + .EUt(GTValues.VA[GTValues.EV]); + + // Triglycerides from fat. + event.recipes.gtceu.vacuum_freezer('tfg:triglyceride_oil_from_fat') + .inputFluids( + Fluid.of('gtceu:liquid_carbon_dioxide', 1000) + ) + .itemInputs( + Ingredient.of('#tfg:solid_fats') + ) + .outputFluids( + Fluid.of('tfg:triglyceride_oil', 2000) + ) + .itemOutputs( + ChemicalHelper.get(TagPrefix.dust, 'tfg:cholesterol', 1) + ) + .duration(20*20) + .EUt(GTValues.VA[GTValues.IV]); + + // Triglycerides from cell factory. + bioreactorRecipe('triglyceride_oil_from_smooth_er_byacid', 10*20, 1920, { + fluidInputs: [ + 'gtceu:glycerol 1000', + 'tfg:butyric_acid 3000' + ], + itemInputs: [ + 'tfg:smooth_endoplasmic_reticula', + 'tfg:lab_equipment' + ], + fluidOutputs: [ + Fluid.of('tfg:triglyceride_oil', 3000) + ], + itemOutputs: [ + 'tfg:dirty_lab_equipment' + ], + cleanroom: CleanroomType.CLEANROOM + }); + + bioreactorRecipe('triglyceride_oil_from_smooth_er_lnacid', 10*20, 1920, { + fluidInputs: [ + 'gtceu:glycerol 1000', + 'tfg:linolenic_acid 3000' + ], + itemInputs: [ + 'tfg:smooth_endoplasmic_reticula', + 'tfg:lab_equipment' + ], + fluidOutputs: [ + Fluid.of('tfg:triglyceride_oil', 3000) + ], + itemOutputs: [ + 'tfg:dirty_lab_equipment' + ], + cleanroom: CleanroomType.CLEANROOM + }); + + // Lactose from cell factory. + bioreactorRecipe('lactose_from_rough_endoplasmic_reticula', 10*20, 1920, { + itemInputs: [ + 'tfg:rough_endoplasmic_reticula', + 'tfg:lab_equipment', + 'tfg:cholesterol_dust' + ], + itemOutputs: [ + '4x gtceu:lactose_dust', + 'tfg:dirty_lab_equipment' + ], + cleanroom: CleanroomType.CLEANROOM, + itemOutputProvider: TFC.isp.of('4x gtceu:lactose_dust') + }); + + // Alpha keratin from cell factory. + bioreactorRecipe('alpha_keratin_from_rough_endoplasmic_reticula', 10*20, 1920, { + itemInputs: [ + 'tfg:rough_endoplasmic_reticula', + 'tfg:lab_equipment' + ], + fluidInputs: [ + 'tfg:proto_growth_medium 1000' + ], + itemOutputs: [ + '4x tfg:alpha_keratin', + 'tfg:dirty_lab_equipment' + ], + cleanroom: CleanroomType.CLEANROOM, + itemOutputProvider: TFC.isp.of('4x tfg:alpha_keratin') + }); + + //#endregion + //#region Basic Feeder Cells + + // Set collagen recipes to require a normal cleanroom instead of sterile. + /** + * @type {Array} + * @property {'string'} recipeId - Collagen recipe ID's. + */ + const collagenRecipes = [ + 'gtceu:large_chemical_reactor/collagen_from_bone', + 'gtceu:large_chemical_reactor/collagen_from_bone_meal', + 'gtceu:chemical_reactor/collagen_from_bone', + 'gtceu:chemical_reactor/collagen_from_bone_meal' + ]; + collagenRecipes.forEach(recipeEntry => { + addCleanroom(event, recipeEntry, 'cleanroom') + }); + + // Proto growth medium synthesis. + event.recipes.gtceu.bioreactor('tfg:proto_growth_medium') + .inputFluids( + Fluid.of('gtceu:distilled_water', 1000) + ) + .itemInputs( + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Calcium, 1), + ChemicalHelper.get(TagPrefix.dust, GTMaterials.SodiumHydroxide, 1), + ChemicalHelper.get(TagPrefix.dust, 'gtceu:lactose', 1) + ) + .outputFluids( + Fluid.of('tfg:proto_growth_medium', 1000) + ) + .duration(10*20) + .EUt(GTValues.VA[GTValues.EV]) + .cleanroom(CleanroomType.CLEANROOM); + + // Fibroblast feeder cell synthesis. + event.recipes.gtceu.bioreactor('tfg:fibroblast_feeder_cells') + .inputFluids( + Fluid.of('firmalife:sugar_water', 1000), + Fluid.of('tfg:mutative_yeast', 1000) + ) + .itemInputs( + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Collagen, 1), + Ingredient.of('tfg:lab_equipment') + ) + .notConsumable( + Ingredient.of('tfg:filled_dna_syringe') + ) + .outputFluids( + Fluid.of('tfg:fibroblast_feeder_cells', 1000) + ) + .itemOutputs( + Item.of('tfg:dirty_lab_equipment') + ) + .duration(1*60*20) + .EUt(GTValues.VA[GTValues.EV]) + .circuit(1) + .dimension('ad_astra:venus') + .cleanroom(CleanroomType.CLEANROOM); + + // Rough endoplasmic reticula synthesis. + bioreactorRecipe('tfg:rough_endoplasmic_reticula', 1*60*20, GTValues.VA[GTValues.EV], { + itemInputs: [ + 'gtceu:collagen_dust', + 'tfg:lab_equipment' + ], + fluidInputs: [ + Fluid.of('firmalife:sugar_water', 1000), + Fluid.of('tfg:mutative_yeast', 1000) + ], + itemOutputs: [ + 'tfg:rough_endoplasmic_reticula', + 'tfg:dirty_lab_equipment' + ], + notConsumable: [ + 'tfg:filled_dna_syringe' + ], + circuit: 2, + cleanroom: CleanroomType.CLEANROOM, + itemOutputProvider: TFC.isp.of('tfg:rough_endoplasmic_reticula').resetFood() + }); + + // Smooth endoplasmic reticula synthesis. + bioreactorRecipe('tfg:smooth_endoplasmic_reticula', 1*60*20, GTValues.VA[GTValues.EV], { + itemInputs: [ + 'gtceu:collagen_dust', + 'tfg:lab_equipment' + ], + fluidInputs: [ + Fluid.of('firmalife:sugar_water', 1000), + Fluid.of('tfg:mutative_yeast', 1000) + ], + itemOutputs: [ + 'tfg:smooth_endoplasmic_reticula', + 'tfg:dirty_lab_equipment' + ], + notConsumable: [ + 'tfg:filled_dna_syringe' + ], + circuit: 3, + cleanroom: CleanroomType.CLEANROOM, + itemOutputProvider: TFC.isp.of('tfg:smooth_endoplasmic_reticula').resetFood() + }); + //#endregion } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/venus/recipes.venus.js b/kubejs/server_scripts/tfg/venus/recipes.venus.js new file mode 100644 index 000000000..51e2a90cc --- /dev/null +++ b/kubejs/server_scripts/tfg/venus/recipes.venus.js @@ -0,0 +1,22 @@ +"use strict"; + +function registerTFGVenusRecipes(event) { + + event.stonecutting('betterend:flavolite', '#tfg:leucitite_blocks') + event.stonecutting('betterend:flavolite_bricks', '#tfg:leucitite_blocks') + event.stonecutting('betterend:flavolite_pillar', '#tfg:leucitite_blocks') + event.stonecutting('betterend:flavolite_polished', '#tfg:leucitite_blocks') + event.stonecutting('betterend:flavolite_tiles', '#tfg:leucitite_blocks') + + event.stonecutting('betterend:sandy_jadestone', '#tfg:lamproite_blocks') + event.stonecutting('betterend:sandy_jadestone_bricks', '#tfg:lamproite_blocks') + event.stonecutting('betterend:sandy_jadestone_pillar', '#tfg:lamproite_blocks') + event.stonecutting('betterend:sandy_jadestone_polished', '#tfg:lamproite_blocks') + event.stonecutting('betterend:sandy_jadestone_tiles', '#tfg:lamproite_blocks') + + event.stonecutting('betterend:sulphuric_rock', '#tfg:ignimbrite_blocks') + event.stonecutting('betterend:sulphuric_rock_bricks', '#tfg:ignimbrite_blocks') + event.stonecutting('betterend:sulphuric_rock_pillar', '#tfg:ignimbrite_blocks') + event.stonecutting('betterend:sulphuric_rock_polished', '#tfg:ignimbrite_blocks') + event.stonecutting('betterend:sulphuric_rock_tiles', '#tfg:ignimbrite_blocks') +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/venus/tags.venus.js b/kubejs/server_scripts/tfg/venus/tags.venus.js new file mode 100644 index 000000000..e9be39331 --- /dev/null +++ b/kubejs/server_scripts/tfg/venus/tags.venus.js @@ -0,0 +1,208 @@ +"use strict"; + +function registerTFGVenusItemTags(event) { + event.add('tfg:leucitite_blocks', 'betterend:flavolite') + event.add('tfg:leucitite_blocks', 'betterend:flavolite_bricks') + event.add('tfg:leucitite_blocks', 'betterend:flavolite_pillar') + event.add('tfg:leucitite_blocks', 'betterend:flavolite_polished') + event.add('tfg:leucitite_blocks', 'betterend:flavolite_tiles') + + event.add('tfg:lamproite_blocks', 'betterend:sandy_jadestone') + event.add('tfg:lamproite_blocks', 'betterend:sandy_jadestone_bricks') + event.add('tfg:lamproite_blocks', 'betterend:sandy_jadestone_pillar') + event.add('tfg:lamproite_blocks', 'betterend:sandy_jadestone_polished') + event.add('tfg:lamproite_blocks', 'betterend:sandy_jadestone_tiles') + + event.add('tfg:ignimbrite_blocks', 'betterend:sulphuric_rock') + event.add('tfg:ignimbrite_blocks', 'betterend:sulphuric_rock_bricks') + event.add('tfg:ignimbrite_blocks', 'betterend:sulphuric_rock_pillar') + event.add('tfg:ignimbrite_blocks', 'betterend:sulphuric_rock_polished') + event.add('tfg:ignimbrite_blocks', 'betterend:sulphuric_rock_tiles') +} + + +function registerTFGVenusBlockTags(event) { + + 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') + + event.add('ad_astra:venus_stone_replaceables', 'ad_astra:venus_stone') + event.add('ad_astra:venus_stone_replaceables', 'tfg:rock/hardened_venus_stone') + event.add('ad_astra:venus_stone_replaceables', 'tfg:rock/gravel_venus') + event.add('ad_astra:venus_stone_replaceables', 'gtceu:red_granite') + event.add('ad_astra:venus_stone_replaceables', 'tfg:rock/hardened_red_granite') + event.add('ad_astra:venus_stone_replaceables', 'tfg:rock/gravel_red_granite') + event.add('ad_astra:venus_stone_replaceables', 'ad_astra:moon_deepslate') + event.add('ad_astra:venus_stone_replaceables', 'tfg:rock/hardened_moon_deepslate') + event.add('ad_astra:venus_stone_replaceables', 'tfg:rock/gravel_moon_deepslate') + event.add('ad_astra:venus_stone_replaceables', 'minecraft:deepslate') + event.add('ad_astra:venus_stone_replaceables', 'tfg:rock/hardened_deepslate') + event.add('ad_astra:venus_stone_replaceables', 'tfg:rock/gravel_deepslate') + event.add('ad_astra:venus_stone_replaceables', 'minecraft:dripstone_block') + event.add('ad_astra:venus_stone_replaceables', 'tfg:rock/hardened_dripstone') + event.add('ad_astra:venus_stone_replaceables', 'tfg:rock/gravel_dripstone') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/granite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/granite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/granite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/diorite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/diorite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/diorite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/gabbro') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/gabbro') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/gabbro') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/basalt') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/basalt') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/basalt') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/magma/basalt') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/rhyolite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/andesite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/andesite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/dacite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/dacite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/dacite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/slate') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/slate') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/slate') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/schist') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/schist') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/schist') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/gneiss') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/gneiss') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/gneiss') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/phyllite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/phyllite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/phyllite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/raw/quartzite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/hardened/quartzite') + event.add('ad_astra:venus_stone_replaceables', 'tfc:rock/gravel/quartzite') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sand/fluorapatite/blue') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sandstone/raw/fluorapatite/blue') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sand/fluorapatite/green') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sandstone/raw/fluorapatite/green') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sand/fluorapatite/brown') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sandstone/raw/fluorapatite/brown') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sand/fluorapatite/orange') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sandstone/raw/fluorapatite/orange') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sand/fluorapatite/white') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sandstone/raw/fluorapatite/white') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sand/fluorapatite/yellow') + event.add('ad_astra:venus_stone_replaceables', 'tfg:sandstone/raw/fluorapatite/yellow') + event.add('ad_astra:venus_stone_replaceables', 'tfc:sand/red') + event.add('ad_astra:venus_stone_replaceables', 'tfc:raw_sandstone/red') + event.add('ad_astra:venus_stone_replaceables', 'tfc:sand/black') + event.add('ad_astra:venus_stone_replaceables', 'tfc:raw_sandstone/black') + event.add('ad_astra:venus_stone_replaceables', 'create:scoria') + event.add('ad_astra:venus_stone_replaceables', 'create:scorchia') + event.add('ad_astra:venus_stone_replaceables', 'minecraft:tuff') + event.add('ad_astra:venus_stone_replaceables', 'minecraft:basalt') + event.add('ad_astra:venus_stone_replaceables', 'minecraft:smooth_basalt') + event.add('ad_astra:venus_stone_replaceables', 'betterend:brimstone') + event.add('ad_astra:venus_stone_replaceables', 'betterend:flavolite') + event.add('ad_astra:venus_stone_replaceables', 'betterend:sandy_jadestone') + event.add('ad_astra:venus_stone_replaceables', 'betterend:sulphuric_rock') + event.add('ad_astra:venus_stone_replaceables', 'betterend:flavolite') + event.add('ad_astra:venus_stone_replaceables', 'betterend:lacugrove_bark') + event.add('ad_astra:venus_stone_replaceables', 'betterend:lucernia_bark') + + event.add('tfc:can_carve', '#ad_astra:venus_stone_replaceables') + + event.add("tfc:monster_spawns_on", "create:scorchia"); + event.add("tfc:monster_spawns_on", "minecraft:basalt"); + event.add("tfc:monster_spawns_on", "minecraft:smooth_basalt"); + + event.add("minecraft:strider_warm_blocks", "create:scorchia"); + event.add("minecraft:strider_warm_blocks", "minecraft:basalt"); + event.add("minecraft:strider_warm_blocks", "minecraft:smooth_basalt"); + event.add("minecraft:strider_warm_blocks", 'tfc:rock/raw/basalt'); + event.add("minecraft:strider_warm_blocks", 'tfc:rock/magma/basalt'); + + event.add('tfc:can_landslide', 'tfg:sand/fluorapatite/blue') + event.add('tfc:can_landslide', 'tfg:sand/fluorapatite/green') + event.add('tfc:can_landslide', 'tfg:sand/fluorapatite/brown') + event.add('tfc:can_landslide', 'tfg:sand/fluorapatite/orange') + event.add('tfc:can_landslide', 'tfg:sand/fluorapatite/white') + event.add('tfc:can_landslide', 'tfg:sand/fluorapatite/yellow') + + event.add('tfg:decorative_plant_attachable', 'betterend:sulphuric_rock') +} + +function registerTFGVenusBiomeTags(event) { + global.VENUS_BIOMES.forEach(biome => { + event.add('tfg:venus_biomes', biome); + event.add('ad_astra:has_acid_rain', biome); + }) +} + +function registerTFGVenusEntityTypeTags(event) { + const ENTITIES = [ + 'minecraft:enderman', + 'minecraft:magma_cube', + 'minecraft:blaze', + 'minecraft:strider', + "endermanoverhaul:desert_enderman", + "endermanoverhaul:savanna_enderman", + "endermanoverhaul:nether_wastes_enderman", + "ad_astra:sulfur_creeper", + 'species:cliff_hanger', + 'species:trooper', + 'primitive_creatures:golem_2', + 'arthropocolypse:scarab', + 'arthropocolypse:prairie_grasshopper', + 'arthropocolypse:field_cricket', + 'arthropocolypse:ice_crawler', + 'arthropocolypse:behemoth_desert_spider', + 'arthropocolypse:behemoth_desert_scorpion', + 'arthropocolypse:worker_ant', + 'arthropocolypse:soldier_ant', + 'arthropocolypse:stag_beetle', + 'arthropocolypse:stag_beetle_larva', + 'arthropocolypse:wharf_roach', + 'arthropocolypse:platerodrilus', + 'arthropocolypse:mealworm_beetle', + 'arthropocolypse:mealworm', + 'arthropocolypse:millipede_head', + 'arthropocolypse:millipede_body', + 'arthropocolypse:millipede_tail' + ] + + ENTITIES.forEach(entity => { + event.add('ad_astra:can_survive_extreme_heat', entity) + event.add('ad_astra:lives_without_oxygen', entity) + event.add('ad_astra:can_survive_in_acid_rain', entity) + event.add('gtceu:heat_immune', entity) + }) + + event.add('tfc:deals_slashing_damage', 'endermanoverhaul:desert_enderman') + event.add('tfc:deals_slashing_damage', 'endermanoverhaul:savanna_enderman') + event.add('tfc:deals_slashing_damage', 'endermanoverhaul:nether_wastes_enderman') + event.add('tfc:deals_slashing_damage', 'species:cliff_hanger') + event.add('tfc:deals_crushing_damage', 'minecraft:magma_cube') + event.add('tfc:deals_crushing_damage', 'primitive_creatures:golem_2') + event.add('tfc:deals_piercing_damage', 'arthropocolypse:scarab') + event.add('tfc:deals_piercing_damage', 'arthropocolypse:ice_crawler') + event.add('tfc:deals_piercing_damage', 'arthropocolypse:behemoth_desert_spider') + event.add('tfc:deals_piercing_damage', 'arthropocolypse:behemoth_desert_scorpion') + event.add('tfc:deals_piercing_damage', 'arthropocolypse:soldier_ant') + event.add('tfc:deals_piercing_damage', 'arthropocolypse:stag_beetle') + event.add('tfc:deals_piercing_damage', 'arthropocolypse:wharf_roach') + event.add('tfc:deals_piercing_damage', 'arthropocolypse:platerodrilus') + event.add('tfc:deals_piercing_damage', 'arthropocolypse:mealworm_beetle') + event.add('tfc:deals_piercing_damage', 'arthropocolypse:millipede_head') +} + +function registerTFGVenusPlacedFeatures(event) { + + // Underground decoration + event.add("tfg:venus_underground_decoration", "tfg:glow_lichen") + event.add('tfg:venus_underground_decoration', 'tfg:venus/underground/loose_rocks') + event.add('tfg:venus_underground_decoration', 'tfc:cave_spike') + event.add('tfg:venus_underground_decoration', 'tfc:cave_column') + event.add('tfg:venus_underground_decoration', 'tfc:large_cave_spike') + event.add('tfg:venus_underground_decoration', 'tfg:venus/underground/noise_cave_stalagmite') + event.add('tfg:venus_underground_decoration', 'tfg:venus/underground/noise_cave_stalagtite') + + event.add("tfg:venus_top_layer_modification", "tfc:surface_loose_rocks") +} diff --git a/kubejs/server_scripts/tfg/worldgen/data.fauna.js b/kubejs/server_scripts/tfg/worldgen/data.fauna.js new file mode 100644 index 000000000..6a54f27b4 --- /dev/null +++ b/kubejs/server_scripts/tfg/worldgen/data.fauna.js @@ -0,0 +1,108 @@ +"use strict"; + + +/** @param {Internal.TFCDataEventJS} event */ +function registerTFGFauna(event) { + + // -108 is the average at z=-4k to z=-6k, which feels like a big enough band + event.fauna( + climate => { + climate.maxTemp(-108) + climate.fuzzy(false) + }, + faunaData => { + faunaData.solidGround(true) + }, + "tfg:glacian_ram") + + event.fauna( + climate => { + climate.minTemp(-102) + climate.maxTemp(-30) + climate.fuzzy(true) + }, + faunaData => { + faunaData.solidGround(true) + }, + "tfg:sniffer") + + event.fauna( + climate => { + climate.minTemp(-100) + climate.fuzzy(true) + }, + faunaData => { + faunaData.solidGround(true) + }, + "tfg:wraptor") + + event.fauna( + climate => { + climate.minTemp(-108) + climate.fuzzy(true) + }, + faunaData => { + faunaData.solidGround(true) + }, + "species:springling") + + event.fauna( + climate => { + climate.minTemp(-109) + climate.fuzzy(true) + }, + faunaData => { + faunaData.solidGround(true) + }, + "species:goober") + + event.fauna( + climate => { + climate.minTemp(-97) + climate.fuzzy(true) + }, + faunaData => { + faunaData.solidGround(true) + }, + "wan_ancient_beasts:walker") + + event.fauna( + climate => { + climate.minTemp(-109) + climate.fuzzy(true) + }, + faunaData => { + faunaData.solidGround(true) + }, + "wan_ancient_beasts:eater") + + event.fauna( + climate => { + climate.minTemp(-100) + climate.fuzzy(true) + }, + faunaData => { + faunaData.solidGround(true) + }, + "wan_ancient_beasts:crusher") + + event.fauna( + climate => { + climate.minTemp(-105) + climate.fuzzy(true) + }, + faunaData => { + faunaData.solidGround(true) + }, + "wan_ancient_beasts:soarer") + + event.fauna( + climate => { + climate.minTemp(-106) + climate.fuzzy(true) + }, + faunaData => { + faunaData.solidGround(true) + }, + "wan_ancient_beasts:glider") +} diff --git a/kubejs/server_scripts/tfg/events.chunks.js b/kubejs/server_scripts/tfg/worldgen/events.chunks.js similarity index 80% rename from kubejs/server_scripts/tfg/events.chunks.js rename to kubejs/server_scripts/tfg/worldgen/events.chunks.js index b8cc0d71e..1caa80b20 100644 --- a/kubejs/server_scripts/tfg/events.chunks.js +++ b/kubejs/server_scripts/tfg/worldgen/events.chunks.js @@ -130,6 +130,53 @@ TFCEvents.createChunkDataProvider('mars', event => { }); }) +TFCEvents.createChunkDataProvider('venus', event => { + event.partial((data, chunk) => { + let x = chunk.pos.minBlockX; + let z = chunk.pos.minBlockZ; + + const avgTemp1 = calcAverage(z, global.VENUS_PLANET_SIZE, 0, 100) + const avgTemp2 = calcAverage(z + 15, global.VENUS_PLANET_SIZE, 0, 100) + const avgRain1 = calcAverage(x, global.VENUS_PLANET_SIZE, 0, 100) + const avgRain2 = calcAverage(x + 15, global.VENUS_PLANET_SIZE, 0, 100) + + let rain = TFC.misc.lerpFloatLayer( + avgRain1 + rainLayer.noise(x, z), + avgRain1 + rainLayer.noise(x, z + 15), + avgRain2 + rainLayer.noise(x + 15, z), + avgRain2 + rainLayer.noise(x + 15, z + 15) + ); + let temp = TFC.misc.lerpFloatLayer( + avgTemp1 + tempLayer.noise(x, z), + avgTemp1 + tempLayer.noise(x, z + 15), + avgTemp2 + tempLayer.noise(x + 15, z), + avgTemp2 + tempLayer.noise(x + 15, z + 15) + ); + + data.generatePartial( + rain, + temp, + floatToForestType(forestLayerNoise.noise(x, z)), + forestWeirdnessNoise.noise(x, z), // forest weirdness + forestDensityNoise.noise(x, z) // forest density + ); + }); + + event.full((data, chunk) => { + let heights = []; + for (let z = 0; z < 16; z++) { + for (let x = 0; x < 16; x++) { + heights[x + 16 * z] = chunk.getHeight($HeightMap.Types.OCEAN_FLOOR_WG, x, z); + } + } + data.generateFull(heights, EMPTY_AQUIFER); + }); + + event.rocks((x, y, z, surfaceY, cache, rockSettings) => { + return rockSettings.sampleAtLayer(rockLayer.getAt(x, z), (surfaceY - y) / ROCK_LAYER_HEIGHT); + }); +}) + TFCEvents.createChunkDataProvider('glacio', event => { event.partial((data, chunk) => { let x = chunk.pos.minBlockX; diff --git a/kubejs/server_scripts/tfg/worldgen/events.entities.js b/kubejs/server_scripts/tfg/worldgen/events.entities.js new file mode 100644 index 000000000..8534d677a --- /dev/null +++ b/kubejs/server_scripts/tfg/worldgen/events.entities.js @@ -0,0 +1,184 @@ +// priority: 0 +"use strict"; + +const NEW_MOB_MAX_HP = { + // earth mobs + "primitive_creatures:beast": 40, + + // moon mobs + "endermanoverhaul:end_enderman": 50, + "endermanoverhaul:end_islands_enderman": 120, + "endermanoverhaul:windswept_hills_enderman": 70, + "endermanoverhaul:soulsand_valley_enderman": 80, + + // mars mobs -- wan's ancient beasts has its own config for this (also includes sniffer) + "endermanoverhaul:crimson_enderman": 60, + "endermanoverhaul:warped_enderman": 60, + "endermanoverhaul:badlands_enderman": 65, + "endermanoverhaul:cave_enderman": 60, + "ad_astra:martian_raptor": 50, + "tfg:glacian_ram": 50, + "tfg:wraptor": 60, + "species:goober": 100, + "species:stackatick": 20, + "species:springling": 60, + "species:quake": 130, + "species:cruncher": 1200, + + // venus mobs + "endermanoverhaul:savanna_enderman": 85, + "endermanoverhaul:desert_enderman": 90, + "ad_astra:sulfur_creeper": 60, + "species:cliff_hanger": 95, + "species:trooper": 30, + "minecraft:blaze": 80, + "minecraft:strider": 50, + 'arthropocolypse:scarab': 10, + 'arthropocolypse:prairie_grasshopper': 15, + 'arthropocolypse:field_cricket': 20, + 'arthropocolypse:ice_crawler': 70, + 'arthropocolypse:behemoth_desert_spider': 1300, + 'arthropocolypse:behemoth_desert_scorpion': 200, + 'arthropocolypse:worker_ant': 30, + 'arthropocolypse:soldier_ant': 60, + 'arthropocolypse:stag_beetle': 90, + 'arthropocolypse:stag_beetle_larva': 20, + 'arthropocolypse:wharf_roach': 20, + 'arthropocolypse:platerodrilus': 95, + 'arthropocolypse:mealworm_beetle': 50, + 'arthropocolypse:mealworm': 15, + 'arthropocolypse:millipede_head': 110, + 'arthropocolypse:millipede_body': 110, + 'arthropocolypse:millipede_tail': 110, + + // europa mobs + "endermanoverhaul:ice_spikes_enderman": 85, + "endermanoverhaul:snowy_enderman": 80, + "endermanoverhaul:coral_enderman": 80, + "species:leaf_hanger": 85, +}; + +const NEW_MOB_ARMOR = { + // mars + "endermanoverhaul:crimson_enderman": 2, + "endermanoverhaul:warped_enderman": 2, + "endermanoverhaul:badlands_enderman": 2, + "species:quake": 6, + + // venus + "endermanoverhaul:savanna_enderman": 4, + "endermanoverhaul:desert_enderman": 4, + "endermanoverhaul:nether_wastes_enderman": 2, + "ad_astra:sulfur_creeper": 4, + "species:cliff_hanger": 2, +}; + +const NEEDS_FIREPROOFING = [ + "primitive_creatures:golem_2", + "endermanoverhaul:savanna_enderman", + "endermanoverhaul:desert_enderman", + 'arthropocolypse:scarab', + 'arthropocolypse:prairie_grasshopper', + 'arthropocolypse:field_cricket', + 'arthropocolypse:ice_crawler', + 'arthropocolypse:behemoth_desert_spider', + 'arthropocolypse:behemoth_desert_scorpion', + 'arthropocolypse:worker_ant', + 'arthropocolypse:soldier_ant', + 'arthropocolypse:stag_beetle', + 'arthropocolypse:stag_beetle_larva', + 'arthropocolypse:wharf_roach', + 'arthropocolypse:platerodrilus', + 'arthropocolypse:mealworm_beetle', + 'arthropocolypse:mealworm', + 'arthropocolypse:millipede_head', + 'arthropocolypse:millipede_body', + 'arthropocolypse:millipede_tail' +]; + +const VENUS_DAMAGE_BUFFING = { + "primitive_creatures:golem_2": 10, + "endermanoverhaul:savanna_enderman": 10, + "endermanoverhaul:desert_enderman": 10, + 'arthropocolypse:scarab': 4, + 'arthropocolypse:ice_crawler': 12, + 'arthropocolypse:behemoth_desert_spider': 30, + 'arthropocolypse:behemoth_desert_scorpion': 20, + 'arthropocolypse:worker_ant': 10, + 'arthropocolypse:soldier_ant': 15, + 'arthropocolypse:stag_beetle': 8, + 'arthropocolypse:wharf_roach': 8, + 'arthropocolypse:platerodrilus': 14, + 'arthropocolypse:mealworm_beetle': 8, + 'arthropocolypse:millipede_head': 20, +}; + + +// Easier to just keep all entities in here for balancing instead of spreading them around + +EntityEvents.spawned((event) => { + let { entity, entity: { type }, level, level: { dimension } } = event; + + let newHP = NEW_MOB_MAX_HP[type] ?? 0; + + // Special cases + if (type === "minecraft:enderman") { + switch (dimension) { + // use default for beneath + case "ad_astra:moon": newHP = 45; + case "ad_astra:mars": newHP = 65; + case "ad_astra:venus": newHP = 75; + case "ad_astra:mercury": newHP = 75; + case "ad_astra:glacio": newHP = 85; + } + } + else if (type === "endermanoverhaul:nether_wastes_enderman") { + switch (dimension) { + // use default for beneath + case "ad_astra:venus": newHP = 80; + } + } + else if (type === "minecraft:magma_cube") { + switch (dimension) { + // use default for beneath + case "ad_astra:venus": newHP = entity.maxHealth * 7; + } + } + else if (type === "primitive_creatures:golem_2") { + switch (dimension) { + // use default for beneath + case "ad_astra:venus": newHP = 90; + } + } + + // Add fire immunity to some things + if (NEEDS_FIREPROOFING.includes(type)) { + entity.potionEffects.add("minecraft:fire_resistance", -1, 0, true, false); + } + + + if (newHP !== 0) { + let baseHealth = entity.maxHealth; + let missingHealth = newHP - baseHealth; + + entity.modifyAttribute("minecraft:generic.max_health", "tfg_health_buff_id", missingHealth, "addition"); + + if (missingHealth > 0) { + entity.health += missingHealth; + } + } + + let newArmor = NEW_MOB_ARMOR[type] ?? 0; + if (newArmor !== 0) { + let baseArmor = entity.armor; + let missingArmor = newArmor - baseArmor; + entity.modifyAttribute("minecraft:generic.armor", "tfg_armor_buff_id", missingArmor, "addition"); + } + + let newAttack = VENUS_DAMAGE_BUFFING[type] ?? 0 + if (dimension === "ad_astra:venus" && newAttack !== 0) { + let baseAttack = entity.attack_damage; + let missingAttack = newAttack - baseAttack; + entity.modifyAttribute("minecraft:generic.attack_damage", "tfg_attack_buff_id", missingAttack, "addition"); + } +}) \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/events.forests.js b/kubejs/server_scripts/tfg/worldgen/events.forests.js similarity index 100% rename from kubejs/server_scripts/tfg/events.forests.js rename to kubejs/server_scripts/tfg/worldgen/events.forests.js diff --git a/kubejs/server_scripts/tfc/select_climates.js b/kubejs/server_scripts/tfg/worldgen/select_climates.js similarity index 74% rename from kubejs/server_scripts/tfc/select_climates.js rename to kubejs/server_scripts/tfg/worldgen/select_climates.js index 0fda74bd9..d31b1ecb7 100644 --- a/kubejs/server_scripts/tfc/select_climates.js +++ b/kubejs/server_scripts/tfg/worldgen/select_climates.js @@ -14,9 +14,16 @@ TFCEvents.selectClimateModel(event => { event.setModel('tfg:mars_climate'); break; + case 'ad_astra:venus': + event.setModel('tfg:venus_climate'); + break; + case 'ad_astra:earth_orbit': case 'ad_astra:moon_orbit': case 'ad_astra:mars_orbit': + case 'ad_astra:venus_orbit': + case 'ad_astra:mercury_orbit': + case 'ad_astra:glacio_orbit': event.setModel('tfg:orbit_climate'); break; diff --git a/kubejs/server_scripts/tfg/worldgen/tags.general_worldgen.js b/kubejs/server_scripts/tfg/worldgen/tags.general_worldgen.js new file mode 100644 index 000000000..55ba87c95 --- /dev/null +++ b/kubejs/server_scripts/tfg/worldgen/tags.general_worldgen.js @@ -0,0 +1,212 @@ +"use strict"; + +function registerTFGGeneralWorldgenItemTags(event) { + + // Actually "layers", can't rename them without screwing with peoples' worlds + event.add('c:hidden_from_recipe_viewers', 'tfg:ash_pile') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/black_sand') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/brown_sand') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/green_sand') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/pink_sand') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/red_sand') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/white_sand') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/yellow_sand') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/mars_sand') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/moon_sand') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/venus_sand') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/hematitic_sand') + + // Actually "piles", the kind that can hide plants inside them + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/mars_sand_covering') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/venus_sand_covering') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/hematitic_sand_covering') + event.add('c:hidden_from_recipe_viewers', 'tfg:pile/mars_snow_covering') + + event.add('forge:cobblestone', 'ad_astra:moon_cobblestone') + event.add('forge:cobblestone', 'ad_astra:mars_cobblestone') + event.add('forge:cobblestone', 'ad_astra:venus_cobblestone') + event.add('forge:cobblestone', 'ad_astra:mercury_cobblestone') + event.add('forge:cobblestone', 'ad_astra:glacio_cobblestone') + + event.add('forge:smooth_stone_slab', 'ad_astra:polished_moon_stone_slab') + event.add('forge:smooth_stone_slab', 'ad_astra:polished_mars_stone_slab') + event.add('forge:smooth_stone_slab', 'ad_astra:polished_venus_stone_slab') + event.add('forge:smooth_stone_slab', 'ad_astra:polished_mercury_stone_slab') + event.add('forge:smooth_stone_slab', 'ad_astra:polished_glacio_stone_slab') + event.add('forge:smooth_stone_slab', 'ad_astra:polished_permafrost_slab') + event.add('forge:smooth_stone_slab', 'minecraft:polished_deepslate_slab') + event.add('forge:smooth_stone_slab', 'minecraft:polished_blackstone_slab') + event.add('forge:smooth_stone_slab', 'minecraft:polished_blackstone_brick_slab') + + event.add('tfc:rock/smooth', 'minecraft:smooth_stone') + + event.add('tfc:rock/raw', 'minecraft:deepslate') + event.add('tfc:rock/raw', 'minecraft:blackstone') + event.add('tfc:rock/raw', 'minecraft:dripstone_block') + + event.add('minecraft:wart_blocks', 'ad_astra:aeronos_cap') + event.add('minecraft:wart_blocks', 'ad_astra:strophar_cap') + event.add('minecraft:wart_blocks', 'minecraft:mushroom_stem') + event.add('tfc:compost_greens', 'minecraft:nether_wart_block') + event.add('tfc:compost_greens', 'minecraft:warped_wart_block') +} + +function registerTFGGeneralWorldgenBlockTags(event) { + + // All new stones + global.EXTRATERRESTRIAL_RAW_ROCKS.forEach(rock => { + event.add('forge:stone', rock) + event.add('tfc:breaks_when_isolated', rock) + event.add('tfc:rock/raw', rock) + event.add('minecraft:mineable/pickaxe', rock) + event.add('tfc:can_carve', rock) + // Collapse tags also require a collapse recipe to work. + // Don't add the recipe if you don't want them to actually collapse! + event.add('tfc:can_collapse', rock) + event.add('tfc:can_trigger_collapse', rock) + event.add('tfc:can_start_collapse', rock) + event.add('tfc:powderkeg_breaking_blocks', rock) + event.add('tfc:bloomery_insulation', rock) + event.add('firmalife:oven_insulation', rock) + event.add('tfc:forge_insulation', rock) + }) + + global.EXTRATERRESTRIAL_HARDENED_ROCKS.forEach(rock => { + event.add('minecraft:mineable/pickaxe', rock) + event.add('tfc:can_collapse', rock) + event.add('tfc:can_trigger_collapse', rock) + event.add('tfc:powderkeg_breaking_blocks', rock) + event.add('tfc:bloomery_insulation', rock) + event.add('firmalife:oven_insulation', rock) + event.add('tfc:forge_insulation', rock) + event.add('tfc:can_carve', rock) + }) + + event.add('tfc:can_landslide', 'minecraft:cobbled_deepslate') + event.add('forge:cobblestone/normal', 'minecraft:cobbled_deepslate') + + event.add('tfc:breaks_when_isolated', 'minecraft:deepslate') + event.add('tfc:breaks_when_isolated', 'minecraft:blackstone') + event.add('tfc:breaks_when_isolated', 'minecraft:gilded_blackstone') + event.add('tfc:breaks_when_isolated', 'minecraft:dripstone_block') + + event.add('forge:stone', 'minecraft:blackstone') + + event.add('tfg:rock_stairs', 'minecraft:cobbled_deepslate_stairs') + event.add('tfg:rock_slabs', 'minecraft:cobbled_deepslate_slab') + event.add('tfg:rock_walls', 'minecraft:cobbled_deepslate_wall') + event.add('tfg:brick_stairs', 'minecraft:deepslate_brick_stairs') + event.add('tfg:brick_slabs', 'minecraft:deepslate_brick_slab') + event.add('tfg:brick_walls', 'minecraft:deepslate_brick_wall') + event.add('tfg:brick_stairs', 'minecraft:deepslate_tile_stairs') + event.add('tfg:brick_slabs', 'minecraft:deepslate_tile_slab') + event.add('tfg:brick_walls', 'minecraft:deepslate_tile_wall') + event.add('tfg:rock_stairs', 'minecraft:blackstone_stairs') + event.add('tfg:rock_slabs', 'minecraft:blackstone_slab') + event.add('tfg:rock_walls', 'minecraft:blackstone_wall') + event.add('tfg:brick_stairs', 'minecraft:blackstone_stairs') + event.add('tfg:brick_slabs', 'minecraft:blackstone_slab') + event.add('tfg:brick_walls', 'minecraft:blackstone_wall') + + event.add('tfc:bloomery_insulation', 'minecraft:polished_deepslate'); + event.add('tfc:forge_insulation', 'minecraft:polished_deepslate'); + event.add('tfc:bloomery_insulation', 'minecraft:polished_blackstone'); + event.add('tfc:forge_insulation', 'minecraft:polished_blackstone'); + event.add('tfc:bloomery_insulation', 'minecraft:deepslate_tiles'); + event.add('tfc:forge_insulation', 'minecraft:deepslate_tiles'); + event.add('tfc:bloomery_insulation', 'minecraft:cracked_deepslate_tiles'); + event.add('tfc:forge_insulation', 'minecraft:cracked_deepslate_tiles'); + event.add('tfc:bloomery_insulation', 'minecraft:chiseled_deepslate'); + event.add('tfc:forge_insulation', 'minecraft:chiseled_deepslate'); + event.add('tfc:bloomery_insulation', 'minecraft:chiseled_polished_blackstone'); + event.add('tfc:forge_insulation', 'minecraft:chiseled_polished_blackstone'); + event.add('tfc:bloomery_insulation', 'minecraft:gilded_blackstone'); + event.add('tfc:forge_insulation', 'minecraft:gilded_blackstone'); + event.add('tfc:bloomery_insulation', 'minecraft:basalt'); + event.add('tfc:forge_insulation', 'minecraft:basalt'); + event.add('tfc:bloomery_insulation', 'minecraft:smooth_basalt'); + event.add('tfc:forge_insulation', 'minecraft:smooth_basalt'); + + // Ores + event.add("minecraft:mineable/pickaxe", "#forge:ores"); + event.add("minecraft:needs_iron_tool", "#forge:ores"); + + event.add("tfc:can_collapse", "#forge:ores"); + event.add("tfc:can_start_collapse", "#forge:ores"); + event.add("tfc:can_trigger_collapse", "#forge:ores"); + event.add("c:hidden_from_recipe_viewers", "#forge:ores"); + + event.add("tfc:can_collapse", "#forge:raw_ore_blocks"); + event.add("tfc:can_start_collapse", "#forge:raw_ore_blocks"); + event.add("tfc:can_trigger_collapse", "#forge:raw_ore_blocks"); + event.add("c:hidden_from_recipe_viewers", "#forge:raw_ore_blocks"); + + // Let GT indicators be covered by snow + forEachMaterial((material) => { + if (material.hasProperty(PropertyKey.ORE)) { + const indicator = `gtceu:${material.getName()}_indicator`; + + event.add("tfg:dust_ore_indicators", indicator); + event.add("tfc:can_be_snow_piled", indicator); + event.add("tfc:can_be_ice_piled", indicator); + + if (material.hasProperty(PropertyKey.GEM)) { + const bud = `gtceu:${material.getName()}_bud_indicator`; + + event.add("tfg:bud_ore_indicators", bud); + event.add("tfc:can_be_snow_piled", bud); + event.add("tfc:can_be_ice_piled", bud); + + event.add("minecraft:mineable/pickaxe", bud); + } + } + }); + + // More rock tags + event.add('tfc:can_landslide', 'ad_astra:moon_sand') + event.add('tfc:can_landslide', 'ad_astra:mars_sand') + event.add('tfc:can_landslide', 'ad_astra:venus_sand') + event.add('tfc:can_landslide', 'minecraft:red_sand') + + event.add('tfc:can_landslide', 'ad_astra:moon_cobblestone') + event.add('tfc:can_landslide', 'ad_astra:mars_cobblestone') + event.add('tfc:can_landslide', 'ad_astra:venus_cobblestone') + event.add('tfc:can_landslide', 'ad_astra:mercury_cobblestone') + event.add('tfc:can_landslide', 'ad_astra:glacio_cobblestone') + event.add('tfc:can_landslide', 'gtceu:red_granite_cobblestone') + + event.add('forge:cobblestone', 'ad_astra:moon_cobblestone') + event.add('forge:cobblestone', 'ad_astra:mars_cobblestone') + event.add('forge:cobblestone', 'ad_astra:venus_cobblestone') + event.add('forge:cobblestone', 'ad_astra:mercury_cobblestone') + event.add('forge:cobblestone', 'ad_astra:glacio_cobblestone') + + event.add('tfc:can_landslide', 'ad_astra:moon_cobblestone_slab') + event.add('tfc:can_landslide', 'ad_astra:mars_cobblestone_slab') + event.add('tfc:can_landslide', 'ad_astra:venus_cobblestone_slab') + event.add('tfc:can_landslide', 'ad_astra:mercury_cobblestone_slab') + event.add('tfc:can_landslide', 'ad_astra:glacio_cobblestone_slab') + + event.add('tfc:can_landslide', 'ad_astra:moon_cobblestone_stairs') + event.add('tfc:can_landslide', 'ad_astra:mars_cobblestone_stairs') + event.add('tfc:can_landslide', 'ad_astra:venus_cobblestone_stairs') + event.add('tfc:can_landslide', 'ad_astra:mercury_cobblestone_stairs') + event.add('tfc:can_landslide', 'ad_astra:glacio_cobblestone_stairs') + + event.add('tfg:rock_stairs', 'ad_astra:moon_stone_stairs') + event.add('tfg:rock_stairs', 'ad_astra:mars_stone_stairs') + event.add('tfg:rock_stairs', 'ad_astra:venus_stone_stairs') + event.add('tfg:rock_stairs', 'ad_astra:mercury_stone_stairs') + event.add('tfg:rock_stairs', 'ad_astra:glacio_stone_stairs') + + event.add('tfg:rock_slabs', 'ad_astra:moon_stone_slab') + event.add('tfg:rock_slabs', 'ad_astra:mars_stone_slab') + event.add('tfg:rock_slabs', 'ad_astra:venus_stone_slab') + event.add('tfg:rock_slabs', 'ad_astra:mercury_stone_slab') + event.add('tfg:rock_slabs', 'ad_astra:glacio_stone_slab') + + event.add('minecraft:mushroom_grow_block', '#tfc:dirt') + event.add('minecraft:mushroom_grow_block', '#tfc:grass') + event.add('minecraft:mushroom_grow_block', '#forge:sand') + event.add('minecraft:mushroom_grow_block', '#forge:gravel') +} diff --git a/kubejs/server_scripts/tfg/worldgen/tags.overworld.js b/kubejs/server_scripts/tfg/worldgen/tags.overworld.js new file mode 100644 index 000000000..4bebe7ca2 --- /dev/null +++ b/kubejs/server_scripts/tfg/worldgen/tags.overworld.js @@ -0,0 +1,106 @@ +"use strict"; + +function registerTFGOverworldBiomeTags(event) { + + // Structures + event.add('tfg:has_structure/plains_temperate_0', 'tfc:plains') + event.add('tfg:has_structure/plains_temperate_0', 'tfc:plateau') + event.add('tfg:has_structure/plains_temperate_0', 'tfc:highlands') + + event.add('tfg:has_structure/aqueduct', 'tfc:plains') + event.add('tfg:has_structure/aqueduct', 'tfc:highlands') + event.add('tfg:has_structure/aqueduct', 'tfc:lowlands') + event.add('tfg:has_structure/aqueduct', 'tfc:badlands') + + event.add('tfg:has_structure/ocean_moai_0', 'tfc:volcanic_oceanic_mountains') + event.add('tfg:has_structure/ocean_moai_0', 'tfc:volcanic_mountains') + + event.add('tfg:has_structure/illages', 'tfc:plains') + event.add('tfg:has_structure/illages', 'tfc:hills') + event.add('tfg:has_structure/illages', 'tfc:rolling_hills') + event.add('tfg:has_structure/illages', 'tfc:badlands') + event.add('tfg:has_structure/illages', 'tfc:plateau') + event.add('tfg:has_structure/illages', 'tfc:old_mountains') + + event.add('tfg:has_structure/illager_camp', 'tfc:badlands') + event.add('tfg:has_structure/illager_camp', 'tfc:canyons') + event.add('tfg:has_structure/illager_camp', 'tfc:highlands') + event.add('tfg:has_structure/illager_camp', 'tfc:hills') + event.add('tfg:has_structure/illager_camp', 'tfc:inverted_badlands') + event.add('tfg:has_structure/illager_camp', 'tfc:low_canyons') + event.add('tfg:has_structure/illager_camp', 'tfc:lowlands') + event.add('tfg:has_structure/illager_camp', 'tfc:mountains') + event.add('tfg:has_structure/illager_camp', 'tfc:oceanic_mountains') + event.add('tfg:has_structure/illager_camp', 'tfc:old_mountains') + event.add('tfg:has_structure/illager_camp', 'tfc:plains') + event.add('tfg:has_structure/illager_camp', 'tfc:plateau') + event.add('tfg:has_structure/illager_camp', 'tfc:rolling_hills') + event.add('tfg:has_structure/illager_camp', 'tfc:salt_marsh') + event.add('tfg:has_structure/illager_camp', 'tfc:shore') + event.add('tfg:has_structure/illager_camp', 'tfc:tidal_flats') + event.add('tfg:has_structure/illager_camp', 'tfc:volcanic_mountains') + event.add('tfg:has_structure/illager_camp', 'tfc:volcanic_oceanic_mountains') + + event.add('tfg:has_structure/illager_roaming', 'tfc:highlands') + event.add('tfg:has_structure/illager_roaming', 'tfc:hills') + event.add('tfg:has_structure/illager_roaming', 'tfc:lowlands') + event.add('tfg:has_structure/illager_roaming', 'tfc:plains') + event.add('tfg:has_structure/illager_roaming', 'tfc:plateau') + event.add('tfg:has_structure/illager_roaming', 'tfc:rolling_hills') + event.add('tfg:has_structure/illager_roaming', 'tfc:salt_marsh') + + event.add('tfg:never_has_structure/illages', '#tfc:is_lake') + event.add('tfg:never_has_structure/illages', '#tfc:is_ocean') + event.add('tfg:never_has_structure/illages', '#tfc:is_river') + + // Kaolin + event.add("tfc:kaolin_clay_spawns_in", "tfc:rolling_hills"); + + global.TFC_BIOMES.forEach(biome => { + event.add('tfg:overworld_biomes', biome); + }) +} + +function registerTFGOverworldPlacedFeatures(event) { + + // Rose quartz + event.add('tfc:in_biome/surface_decoration/ocean', 'tfg:earth/rose_quartz/rose_quartz') + event.add('tfc:in_biome/surface_decoration/ocean_reef', 'tfg:earth/rose_quartz/rose_quartz') + event.add('tfc:in_biome/surface_decoration/deep_ocean', 'tfg:earth/rose_quartz/rose_quartz') + event.add('tfc:in_biome/surface_decoration/deep_ocean_trench', 'tfg:earth/rose_quartz/rose_quartz') + event.add('tfc:in_biome/surface_decoration/shore', 'tfg:earth/rose_quartz/rose_quartz') + event.add('tfc:in_biome/surface_decoration/tidal_flats', 'tfg:earth/rose_quartz/rose_quartz') + event.add('tfc:in_biome/surface_decoration/lowlands', 'tfg:earth/rose_quartz/rose_quartz') + event.add('tfc:in_biome/surface_decoration/salt_marsh', 'tfg:earth/rose_quartz/rose_quartz') + event.add('tfc:in_biome/surface_decoration/plains', 'tfg:earth/rose_quartz/rose_quartz') + event.add('tfc:in_biome/surface_decoration/lake', 'tfg:earth/rose_quartz/rose_quartz') + + // Tarkianite + event.add('tfc:in_biome/veins', 'tfg:earth/vein/normal_tarkianite') + + // Add back the non-ore ones + event.add("tfc:in_biome/veins", "tfc:vein/gravel"); + event.add("tfc:in_biome/veins", "tfc:vein/kaolin_disc"); + event.add("tfc:in_biome/veins", "tfc:vein/granite_dike"); + event.add("tfc:in_biome/veins", "tfc:vein/diorite_dike"); + event.add("tfc:in_biome/veins", "tfc:vein/gabbro_dike"); + + // Geodes + event.add("tfc:in_biome/veins", "tfg:earth/geode/amethyst"); + event.add("tfc:in_biome/veins", "tfg:earth/geode/barite"); + event.add("tfc:in_biome/veins", "tfg:earth/geode/calcite"); + event.add("tfc:in_biome/veins", "tfg:earth/geode/gypsum"); + event.add("tfc:in_biome/veins", "tfg:earth/geode/opal"); + event.add("tfc:in_biome/veins", "tfg:earth/geode/pyrite"); + event.add("tfc:in_biome/veins", "tfg:earth/geode/quartzite"); + + // 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"); + event.add("tfc:in_biome/underground_decoration", "tfg:earth/sulfur_patch"); + event.add("tfc:in_biome/underground_decoration", "tfg:earth/oil_spout"); +} \ No newline at end of file diff --git a/kubejs/server_scripts/vintage_improvements/recipes.js b/kubejs/server_scripts/vintage_improvements/recipes.js index 4fbcea0c1..5f908e4b3 100644 --- a/kubejs/server_scripts/vintage_improvements/recipes.js +++ b/kubejs/server_scripts/vintage_improvements/recipes.js @@ -56,7 +56,7 @@ function registerVintageImprovementsRecipes(event) { ' A ' ], { A: '#forge:plates/treated_wood', - B: '#forge:rods/long/black_steel', + B: '#forge:rods/long/steel', C: 'create:andesite_casing', D: '#forge:frames/treated_wood', E: 'greate:steel_cogwheel' @@ -159,14 +159,14 @@ function registerVintageImprovementsRecipes(event) { { material: GTMaterials.Gold, blows: STARTING_BLOWS }, { material: GTMaterials.Bismuth, blows: STARTING_BLOWS }, { material: GTMaterials.RoseGold, blows: STARTING_BLOWS }, + { material: GTMaterials.Silver, blows: STARTING_BLOWS }, { material: GTMaterials.SterlingSilver, blows: STARTING_BLOWS }, { material: GTMaterials.Tin, blows: STARTING_BLOWS }, { material: GTMaterials.Lead, blows: STARTING_BLOWS } ] let HAMMERING_ITEMS = [ - { input: 'tfc:raw_iron_bloom', output: 'tfc:refined_iron_bloom', blows: STARTING_BLOWS }, - { input: 'tfc:refined_iron_bloom', output: 'gtceu:wrought_iron_ingot', blows: STARTING_BLOWS } + { input: 'gtceu:thermochemically_treated_hardwood_dust', output: 'tfg:soaked_unrefined_paper', blows: 3 } ] HAMMERING_MATERIALS.forEach(x => { @@ -174,6 +174,11 @@ function registerVintageImprovementsRecipes(event) { x.blows--; }) + HAMMERING_ITEMS.forEach(x => { + generateHammeringRecipeFromItem(event, x.input, x.output, x.blows, 'copper'); + x.blows--; + }) + // Tier 2 HAMMERING_MATERIALS.push({ material: GTMaterials.Bronze, blows: STARTING_BLOWS }) HAMMERING_MATERIALS.push({ material: GTMaterials.BlackBronze, blows: STARTING_BLOWS }) @@ -182,6 +187,9 @@ function registerVintageImprovementsRecipes(event) { HAMMERING_MATERIALS.push({ material: GTMaterials.RedAlloy, blows: STARTING_BLOWS }) HAMMERING_MATERIALS.push({ material: GTMaterials.Potin, blows: STARTING_BLOWS }) + HAMMERING_ITEMS.push({ input: 'tfc:raw_iron_bloom', output: 'tfc:refined_iron_bloom', blows: STARTING_BLOWS }) + HAMMERING_ITEMS.push({ input: 'tfc:refined_iron_bloom', output: 'gtceu:wrought_iron_ingot', blows: STARTING_BLOWS }) + HAMMERING_MATERIALS.forEach(x => { generateHammeringRecipe(event, x.material, x.blows, 'bronze'); generateHammeringRecipe(event, x.material, x.blows, 'black_bronze'); @@ -257,9 +265,9 @@ function registerVintageImprovementsRecipes(event) { }) // #endregion - + const $GreateMaterials = Java.loadClass("electrolyte.greate.registry.GreateMaterials") forEachMaterial(material => { - if (material == GTMaterials.get("andesite_alloy")) + if (material == $GreateMaterials.AndesiteAlloy) return; const ingotItem = ChemicalHelper.get(TagPrefix.ingot, material, 1); @@ -276,48 +284,46 @@ function registerVintageImprovementsRecipes(event) { // #region Coiling if (material.hasFlag(MaterialFlags.GENERATE_ROD) && material.hasFlag(MaterialFlags.GENERATE_SPRING_SMALL)) { - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [ChemicalHelper.get(TagPrefix.rod, material, 1)], - results: [ChemicalHelper.get(TagPrefix.springSmall, material, 2)], - processingTime: (material.getMass() / 2) * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/coiling/${material.getName()}_small_spring`) + event.recipes.vintageimprovements.coiling( + ChemicalHelper.get(TagPrefix.springSmall, material, 2), + ChemicalHelper.get(TagPrefix.rod, material, 1)) + .processingTime((material.getMass() / 2) * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/coiling/${material.getName()}_small_spring`) + .springColor(material.getMaterialRGB().toString(16)) } if (material.hasFlag(MaterialFlags.GENERATE_LONG_ROD) && material.hasFlag(MaterialFlags.GENERATE_SPRING)) { - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [ChemicalHelper.get(TagPrefix.rodLong, material, 1)], - results: [ChemicalHelper.get(TagPrefix.spring, material, 1)], - processingTime: material.getMass() * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/coiling/${material.getName()}_spring`) + event.recipes.vintageimprovements.coiling( + ChemicalHelper.get(TagPrefix.spring, material, 1), + ChemicalHelper.get(TagPrefix.rodLong, material, 1)) + .processingTime(material.getMass() * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/coiling/${material.getName()}_spring`) + .springColor(material.getMaterialRGB().toString(16)) } const singleWire = ChemicalHelper.get(TagPrefix.wireGtSingle, material, 2) if (singleWire !== null) { - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [ChemicalHelper.get(TagPrefix.ingot, material, 1)], - results: [singleWire], - processingTime: material.getMass() * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/coiling/${material.getName()}_single_wire`) + event.recipes.vintageimprovements.coiling(singleWire, ChemicalHelper.get(TagPrefix.ingot, material, 1)) + .processingTime(material.getMass() * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/coiling/${material.getName()}_single_wire`) + .springColor(material.getMaterialRGB().toString(16)) } if (material.hasFlag(MaterialFlags.GENERATE_FINE_WIRE)) { if (singleWire !== null) { - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [ChemicalHelper.get(TagPrefix.wireGtSingle, material, 1)], - results: [ChemicalHelper.get(TagPrefix.wireFine, material, 4)], - processingTime: material.getMass() * 3 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/coiling/${material.getName()}_fine_wire`) + event.recipes.vintageimprovements.coiling( + ChemicalHelper.get(TagPrefix.wireFine, material, 4), + ChemicalHelper.get(TagPrefix.wireGtSingle, material, 1)) + .processingTime(material.getMass() * 3 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/coiling/${material.getName()}_fine_wire`) + .springColor(material.getMaterialRGB().toString(16)) } else { - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [ChemicalHelper.get(TagPrefix.ingot, material, 1)], - results: [ChemicalHelper.get(TagPrefix.wireFine, material, 8)], - processingTime: material.getMass() * 3 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/coiling/${material.getName()}_fine_wire`) + event.recipes.vintageimprovements.coiling( + ChemicalHelper.get(TagPrefix.wireFine, material, 8), + ChemicalHelper.get(TagPrefix.ingot, material, 1)) + .processingTime(material.getMass() * 3 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/coiling/${material.getName()}_fine_wire`) + .springColor(material.getMaterialRGB().toString(16)) } } @@ -329,38 +335,18 @@ function registerVintageImprovementsRecipes(event) { let highYield = material.hasFlag(MaterialFlags.HIGH_SIFTER_OUTPUT) - // aaaaargh I hate these custom type recipes - let gem = `gtceu:${material.getName()}_gem`; - if (material === GTMaterials.Coal) - gem = 'minecraft:coal' - else if (material === GTMaterials.Diamond) - gem = 'minecraft:diamond' - else if (material === GTMaterials.Emerald) - gem = 'minecraft:emerald' - else if (material === GTMaterials.Lapis) - gem = 'minecraft:lapis_lazuli' - else if (material === GTMaterials.NetherQuartz) - gem = 'minecraft:quartz' - else if (material === GTMaterials.Amethyst) - gem = 'minecraft:amethyst_shard' - else if (material === GTMaterials.CertusQuartz) - gem = 'ae2:certus_quartz_crystal' - else if (material === TFGHelpers.getMaterial('rose_quartz')) - gem = 'create:rose_quartz' - - event.custom({ - type: 'vintageimprovements:vibrating', - ingredients: [{ item: `gtceu:purified_${material.getName()}_ore` }], - results: [ - { item: `gtceu:exquisite_${material.getName()}_gem`, chance: highYield ? 0.05 : 0.03 }, - { item: `gtceu:flawless_${material.getName()}_gem`, chance: highYield ? 0.15 : 0.10 }, - { item: gem, chance: highYield ? 0.50 : 0.35 }, - { item: `gtceu:pure_${material.getName()}_dust`, chance: highYield ? 0.25 : 0.50 }, - { item: `gtceu:flawed_${material.getName()}_gem`, chance: highYield ? 0.20 : 0.25 }, - { item: `gtceu:chipped_${material.getName()}_gem`, chance: highYield ? 0.30 : 0.35 } - ], - processingTime: 200 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/vibrating/${material.getName()}`) + event.recipes.vintageimprovements.vibrating( + [ + Item.of(ChemicalHelper.get(TagPrefix.gemExquisite, material, 1)).withChance(highYield ? 0.05 : 0.03), + Item.of(ChemicalHelper.get(TagPrefix.gemFlawless, material, 1)).withChance(highYield ? 0.15 : 0.10), + Item.of(ChemicalHelper.get(TagPrefix.gem, material, 1)).withChance(highYield ? 0.50 : 0.35), + Item.of(ChemicalHelper.get(TagPrefix.dustPure, material, 1)).withChance(highYield ? 0.25 : 0.50), + Item.of(ChemicalHelper.get(TagPrefix.gemFlawed, material, 1)).withChance(highYield ? 0.20 : 0.25), + Item.of(ChemicalHelper.get(TagPrefix.gemChipped, material, 1)).withChance(highYield ? 0.30 : 0.35) + ], + ChemicalHelper.get(TagPrefix.crushedPurified, material, 1)) + .processingTime(200 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/vibrating/${material.getName()}`) } // #endregion @@ -374,13 +360,10 @@ function registerVintageImprovementsRecipes(event) { : ChemicalHelper.get(TagPrefix.ingot, material, 1) if (latheInput !== null) { - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [latheInput], - results: [ChemicalHelper.get(TagPrefix.rod, material, 2)], - speed_limits: 3, - processingTime: material.getMass() * 4 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/lathe/${material.getName()}_to_rod`) + event.recipes.vintageimprovements.polishing(ChemicalHelper.get(TagPrefix.rod, material, 2), latheInput) + .speedLimits(3) + .processingTime(material.getMass() * 4 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/${material.getName()}_to_rod`) } if (material.hasProperty(PropertyKey.GEM)) { @@ -390,13 +373,12 @@ function registerVintageImprovementsRecipes(event) { } if (material.hasFlag(MaterialFlags.GENERATE_BOLT_SCREW)) { - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [ChemicalHelper.get(TagPrefix.bolt, material, 1)], - results: [ChemicalHelper.get(TagPrefix.screw, material, 1)], - speed_limits: 2, - processingTime: Math.max(1, material.getMass() / 8) * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/lathe/${material.getName()}_bolt_to_screw`) + event.recipes.vintageimprovements.polishing( + ChemicalHelper.get(TagPrefix.screw, material, 1), + ChemicalHelper.get(TagPrefix.bolt, material, 1)) + .speedLimits(2) + .processingTime(Math.max(1, material.getMass() / 8) * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/${material.getName()}_bolt_to_screw`) } // #endregion @@ -405,109 +387,81 @@ function registerVintageImprovementsRecipes(event) { // #region Vibrating - event.custom({ - type: 'vintageimprovements:vibrating', - ingredients: [{ tag: 'tfc:rock/gravel' }], - results: [ - { item: 'minecraft:flint' }, - { item: 'minecraft:flint', chance: 0.9 }, - { item: 'minecraft:flint', chance: 0.8 }, - { item: 'minecraft:flint', chance: 0.6 }, - { item: 'minecraft:flint', chance: 0.33 }, - { item: 'minecraft:flint', chance: 0.25 } - ], - processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/vibrating/gravel`) + event.recipes.vintageimprovements.vibrating([ + Item.of('minecraft:flint'), + Item.of('minecraft:flint').withChance(0.9), + Item.of('minecraft:flint').withChance(0.8), + Item.of('minecraft:flint').withChance(0.6), + Item.of('minecraft:flint').withChance(0.33), + Item.of('minecraft:flint').withChance(0.25) + ], '#tfc:rock/gravel') + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/vibrating/gravel`) global.TFC_STONE_TYPES.forEach(stone => { - event.custom({ - type: 'vintageimprovements:vibrating', - ingredients: [{ item: `tfc:deposit/native_gold/${stone}` }], - results: [ChemicalHelper.get(TagPrefix.rawOre, GTMaterials.Gold, 1)], - processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/vibrating/deposits/${stone}_gold`) + event.recipes.vintageimprovements.vibrating( + ChemicalHelper.get(TagPrefix.rawOre, GTMaterials.Gold, 1), + `tfc:deposit/native_gold/${stone}`) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/vibrating/deposits/${stone}_gold`) - event.custom({ - type: 'vintageimprovements:vibrating', - ingredients: [{ item: `tfc:deposit/native_copper/${stone}` }], - results: [ChemicalHelper.get(TagPrefix.rawOre, GTMaterials.Copper, 1)], - processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/vibrating/deposits/${stone}_copper`) + event.recipes.vintageimprovements.vibrating( + ChemicalHelper.get(TagPrefix.rawOre, GTMaterials.Copper, 1), + `tfc:deposit/native_copper/${stone}`) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/vibrating/deposits/${stone}_copper`) - event.custom({ - type: 'vintageimprovements:vibrating', - ingredients: [{ item: `tfc:deposit/native_silver/${stone}` }], - results: [ChemicalHelper.get(TagPrefix.rawOre, GTMaterials.Silver, 1)], - processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/vibrating/deposits/${stone}_silver`) + event.recipes.vintageimprovements.vibrating( + ChemicalHelper.get(TagPrefix.rawOre, GTMaterials.Silver, 1), + `tfc:deposit/native_silver/${stone}`) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/vibrating/deposits/${stone}_silver`) - event.custom({ - type: 'vintageimprovements:vibrating', - ingredients: [{ item: `tfc:deposit/cassiterite/${stone}` }], - results: [ChemicalHelper.get(TagPrefix.rawOre, GTMaterials.Cassiterite, 1)], - processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/vibrating/deposits/${stone}_cassiterite`) + event.recipes.vintageimprovements.vibrating( + ChemicalHelper.get(TagPrefix.rawOre, GTMaterials.Cassiterite, 1), + `tfc:deposit/cassiterite/${stone}`) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/vibrating/deposits/${stone}_cassiterite`) }) // #endregion // #region Lathe - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ tag: 'forge:glass' }], - results: [{ item: 'tfc:lens' }], - speed_limits: 1, - processingTime: 100 - }).id(`tfg:vi/lathe/lens`) + event.recipes.vintageimprovements.polishing('tfc:lens', '#forge:glass') + .speedLimits(1) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/lens`) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ tag: 'forge:exquisite_gems/rose_quartz' }], - results: [{ item: 'gtceu:rose_quartz_lens' }, { item: 'gtceu:rose_quartz_dust', count: 2 }], - speed_limits: 1, - processingTime: 100 - }).id(`tfg:vi/lathe/rose_quartz_lens`) + event.recipes.vintageimprovements.polishing(['#forge:lenses/rose_quartz', '2x #forge:dusts/rose_quartz'], '#forge:exquisite_gems/rose_quartz') + .speedLimits(1) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/rose_quartz_lens`) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ tag: 'forge:exquisite_gems/diamond' }], - results: [{ item: 'gtceu:diamond_lens' }, { item: 'gtceu:diamond_dust', count: 2 }], - speed_limits: 1, - processingTime: 100 - }).id(`tfg:vi/lathe/diamond_lens`) + event.recipes.vintageimprovements.polishing(['#forge:lenses/diamond', '2x #forge:dusts/diamond'], '#forge:exquisite_gems/diamond') + .speedLimits(1) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/diamond_lens`) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ tag: 'forge:exquisite_gems/emerald' }], - results: [{ item: 'gtceu:emerald_lens' }, { item: 'gtceu:emerald_dust', count: 2 }], - speed_limits: 1, - processingTime: 100 - }).id(`tfg:vi/lathe/emerald_lens`) + event.recipes.vintageimprovements.polishing(['#forge:lenses/emerald', '2x #forge:dusts/emerald'], '#forge:exquisite_gems/emerald') + .speedLimits(1) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/emerald_lens`) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ tag: 'forge:exquisite_gems/ruby' }], - results: [{ item: 'gtceu:ruby_lens' }, { item: 'gtceu:ruby_dust', count: 2 }], - speed_limits: 1, - processingTime: 100 - }).id(`tfg:vi/lathe/ruby_lens`) + event.recipes.vintageimprovements.polishing(['#forge:lenses/ruby', '2x #forge:dusts/ruby'], '#forge:exquisite_gems/ruby') + .speedLimits(1) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/ruby_lens`) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ tag: 'forge:exquisite_gems/sapphire' }], - results: [{ item: 'gtceu:sapphire_lens' }, { item: 'gtceu:sapphire_dust', count: 2 }], - speed_limits: 1, - processingTime: 100 - }).id(`tfg:vi/lathe/sapphire_lens`) + event.recipes.vintageimprovements.polishing(['#forge:lenses/sapphire', '2x #forge:dusts/sapphire'], '#forge:exquisite_gems/sapphire') + .speedLimits(1) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/sapphire_lens`) - event.custom({ - type: 'vintageimprovements:polishing', - ingredients: [{ tag: 'forge:exquisite_gems/amethyst' }], - results: [{ item: 'gtceu:amethyst_lens' }, { item: 'gtceu:amethyst_dust', count: 2 }], - speed_limits: 1, - processingTime: 100 - }).id(`tfg:vi/lathe/amethyst_lens`) + event.recipes.vintageimprovements.polishing(['#forge:lenses/amethyst', '2x #forge:dusts/amethyst'], '#forge:exquisite_gems/amethyst') + .speedLimits(1) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/lathe/amethyst_lens`) // #endregion @@ -521,7 +475,7 @@ function registerVintageImprovementsRecipes(event) { // LV recipes only let EUt = (r.tickInputs && r.tickInputs.eu) ? r.tickInputs.eu[0].content : null; - if (!(EUt <= 32)) return + if (EUt > 32) return // Skip this one if (r.outputs.item[0].content.ingredient.item === "gtceu:nan_certificate") return // Skip glass too @@ -537,13 +491,9 @@ function registerVintageImprovementsRecipes(event) { let output = r.outputs.item[0].content.ingredient; output.count = r.outputs.item[0].content.count; - event.custom({ - type: 'vintageimprovements:curving', - ingredients: input_array, - itemAsHead: r.inputs.item[1].content.ingredient.item, - results: [output], - processingTime: r.duration * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/curving/${recipe.getId().split(':')[1]}`) + event.recipes.vintageimprovements.curving(output, input_array) + .head(r.inputs.item[1].content.ingredient.item) + .id(`tfg:vi/curving/${recipe.getId().split(':')[1]}`) } ) @@ -554,224 +504,144 @@ function registerVintageImprovementsRecipes(event) { // Item to fluids: vacuumizing // Fluids to item: pressurizing - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ item: 'tfc:glue' }], - results: [{ fluid: 'gtceu:glue', amount: 50 }], - heatRequirement: "heated", - processingTime: 100 - }).id('tfg:vi/vacuumizing/glue_melting') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('gtceu:glue', 50), 'tfc:glue') + .heated() + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/glue_melting') - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ item: 'gtceu:sticky_resin' }], - results: [{ fluid: 'gtceu:glue', amount: 100 }], - heatRequirement: "heated", - processingTime: 200 - }).id('tfg:vi/vacuumizing/glue_from_resin') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('gtceu:glue', 100), 'gtceu:sticky_resin') + .heated() + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/glue_from_resin') - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ item: 'tfg:conifer_rosin' }], - results: [{ fluid: 'gtceu:glue', amount: 50 }], - heatRequirement: "heated", - processingTime: 200 - }).id('tfg:vi/vacuumizing/glue_from_rosin') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('gtceu:glue', 50), 'tfg:conifer_rosin') + .heated() + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/glue_from_rosin') - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ item: 'minecraft:bone_meal' }, { fluid: 'tfc:limewater', amount: 500 }], - results: [{ fluid: 'gtceu:glue', amount: 50 }], - heatRequirement: "heated", - processingTime: 100 - }).id('tfg:vi/vacuumizing/glue_from_bone_meal') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('gtceu:glue', 50), [Fluid.of('tfc:limewater', 500), 'minecraft:bone_meal']) + .heated() + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/glue_from_bone_meal') - event.custom({ - type: 'vintageimprovements:pressurizing', - ingredients: [{ fluid: 'gtceu:glue', amount: 50 }], - results: [{ item: 'tfc:glue' }], - processingTime: 100 - }).id('tfg:vi/pressurizing/glue_solidifying') + event.recipes.vintageimprovements.pressurizing('tfc:glue', Fluid.of('gtceu:glue', 50)) + .heated() + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/pressurizing/glue_solidifying') - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ item: 'gtceu:rubber_dust' }], - results: [{ fluid: 'gtceu:rubber', amount: 144 }], - heatRequirement: "heated", - processingTime: 100 - }).id('tfg:vi/vacuum/rubber') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('gtceu:rubber', 144), '#forge:dusts/rubber') + .heated() + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuum/rubber') // Vaccuming rubber wood stuff for latex - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ tag: 'tfg:latex_logs' }], - results: [{ fluid: 'tfg:latex', amount: 100 }], - processingTime: 600 - }).id('tfg:vi/vacuumizing/latex_from_rubber_logs') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('tfg:latex', 100), '#tfg:latex_logs') + .processingTime(300 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/latex_from_rubber_logs') - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ tag: 'tfg:rubber_saplings' }], - results: [{ fluid: 'tfg:latex', amount: 25 }], - processingTime: 300 - }).id('tfg:vi/vacuumizing/latex_from_rubber_sapling') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('tfg:latex', 25), '#tfg:rubber_saplings') + .processingTime(150 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/latex_from_rubber_sapling') - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ tag: 'tfg:rubber_leaves' }], - results: [{ fluid: 'tfg:latex', amount: 10 }], - processingTime: 150 - }).id('tfg:vi/vacuumizing/latex_from_rubber_leaves') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('tfg:latex', 10), '#tfg:rubber_leaves') + .processingTime(75 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/latex_from_rubber_leaves') - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ tag: 'tfg:rubber_plants' }, { item: 'tfc:powder/soda_ash' }, { fluid: 'tfc:salt_water', amount: 50 }], - results: [{ fluid: 'tfg:latex', amount: 50 }], - heatRequirement: "heated", - processingTime: 40 - }).id('tfg:vi/vacuumizing/latex_from_rubber_plants') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('tfg:latex', 50), ['#tfg:rubber_plants', 'tfc:powder/soda_ash', Fluid.of('tfc:salt_water', 50)]) + .heated() + .processingTime(20 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/latex_from_rubber_plants') // Vulc. latex to raw rubber pulp - event.custom({ - type: 'vintageimprovements:pressurizing', - ingredients: [{ fluid: 'tfg:vulcanized_latex', amount: 250 }], - results: [{ item: 'gtceu:raw_rubber_dust' }], - heatRequirement: "heated", - processingTime: 120 - }).id('tfg:vi/pressurizing/vulcanized_latex_to_raw_rubber') + event.recipes.vintageimprovements.pressurizing('#forge:dusts/raw_rubber', Fluid.of('tfg:vulcanized_latex', 250)) + .heated() + .processingTime(60 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/pressurizing/vulcanized_latex_to_raw_rubber') // Seed oils - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ item: 'tfg:sunflower_product' }], - results: [{ fluid: 'gtceu:seed_oil', amount: 350 }], - processingTime: 1000 - }).id('tfg:vi/vacuumizing/sunflower') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('gtceu:seed_oil', 350), 'tfg:sunflower_product') + .processingTime(500 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/sunflower') + + event.recipes.vintageimprovements.vacuumizing(Fluid.of('gtceu:seed_oil', 600), 'tfg:rapeseed_product') + .processingTime(500 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/rapeseed') - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ item: 'tfg:rapeseed_product' }], - results: [{ fluid: 'gtceu:seed_oil', amount: 600 }], - processingTime: 1000 - }).id('tfg:vi/vacuumizing/rapeseed') - - event.custom({ - type: 'vintageimprovements:vacuumizing', - ingredients: [{ tag: 'forge:seeds' }], - results: [{ fluid: 'gtceu:seed_oil', amount: 16 }], - processingTime: 100 - }).id('tfg:vi/vacuumizing/seed_oil') - - event.custom({ - type: 'vintageimprovements:pressurizing', - ingredients: [{ fluid: 'tfc:lye', amount: 1000 }], - results: [{ item: 'gtceu:sodium_hydroxide_dust' }], - heatRequirement: "heated", - processingTime: 300 - }).id('tfg:vi/pressurizing/lye') + event.recipes.vintageimprovements.vacuumizing(Fluid.of('gtceu:seed_oil', 16), '#forge:seeds') + .processingTime(50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id('tfg:vi/vacuumizing/seed_oil') + + event.recipes.vintageimprovements.pressurizing('#forge:dusts/sodium_hydroxide', Fluid.of('tfc:lye', 1000)) + .processingTime(150 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .heated() + .id('tfg:vi/pressurizing/lye') // #endregion // #region Coiling + event.recipes.vintageimprovements.coiling('8x tfc:wool_yarn', 'tfc:wool') + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/coiling/wool_yarn`) - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [{ item: 'tfc:wool' }], - results: [{ item: 'tfc:wool_yarn', count: 8 }], - processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/coiling/wool_yarn`) + event.recipes.vintageimprovements.coiling('8x tfc:wool_yarn', 'tfg:glacian_wool') + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/coiling/glacian_wool_yarn`) + .springColor('FFCCFC') - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [{ item: 'tfg:glacian_wool' }], - results: [{ item: 'tfc:wool_yarn', count: 8 }], - processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/coiling/glacian_wool_yarn`) + event.recipes.vintageimprovements.coiling('16x tfg:phantom_thread', 'minecraft:phantom_membrane') + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/coiling/phantom_thread`) + .springColor('E1C4C4') - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [{ item: 'minecraft:phantom_membrane' }], - results: [{ item: 'tfg:phantom_thread', count: 16 }], - processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/coiling/phantom_thread`) + event.recipes.vintageimprovements.coiling('8x firmalife:pineapple_yarn', 'firmalife:pineapple_fiber') + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/coiling/pineapple_yarn`) + .springColor('FFFCCC') - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [{ item: 'firmalife:pineapple_fiber' }], - results: [{ item: 'firmalife:pineapple_yarn', count: 8 }], - processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/coiling/pineapple_yarn`) - - event.custom({ - type: 'vintageimprovements:coiling', - ingredients: [ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Polycaprolactam, 1)], - results: [{ item: 'tfg:polycaprolactam_string', count: 32 }], - processingTime: 100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/coiling/nylon_string`) + event.recipes.vintageimprovements.coiling('32x tfg:polycaprolactam_string', ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Polycaprolactam, 1)) + .processingTime(100 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER) + .id(`tfg:vi/coiling/nylon_string`) + .springColor('000000') // #endregion // #region Curving - event.custom({ - type: 'vintageimprovements:curving', - ingredients: [{ item: 'minecraft:clay_ball' }], - itemAsHead: 'gtceu:ingot_extruder_mold', - results: [{ item: 'tfc:ceramic/unfired_brick' }], - processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/curving/clay_brick`) + event.recipes.vintageimprovements.curving('tfc:ceramic/unfired_brick', 'minecraft:clay_ball') + .head('gtceu:ingot_extruder_mold') + .id(`tfg:vi/curving/clay_brick`) - event.custom({ - type: 'vintageimprovements:curving', - ingredients: [{ item: 'tfc:fire_clay' }], - itemAsHead: 'gtceu:ingot_extruder_mold', - results: [{ item: 'tfc:ceramic/unfired_fire_brick' }], - processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/curving/fire_brick`) + event.recipes.vintageimprovements.curving('tfc:ceramic/unfired_fire_brick', 'tfc:fire_clay') + .head('gtceu:ingot_extruder_mold') + .id(`tfg:vi/curving/fire_brick`) - event.custom({ - type: 'vintageimprovements:curving', - ingredients: [{ tag: 'forge:ingots/copper' }], - itemAsHead: 'gtceu:bottle_extruder_mold', - results: [{ item: 'afc:tree_tap' }], - processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/curving/tree_tap`) + event.recipes.vintageimprovements.curving('afc:tree_tap', '#forge:ingots/copper') + .head('gtceu:bottle_extruder_mold') + .id(`tfg:vi/curving/tree_tap`) - event.custom({ - type: 'vintageimprovements:curving', - ingredients: [{ tag: 'forge:plates/copper' }], - itemAsHead: 'tfg:small_casing_extruder_mold', - results: [{ item: 'firmalife:sprinkler' }], - processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/curving/sprinkler`) + event.recipes.vintageimprovements.curving('firmalife:sprinkler', '#forge:plates/copper') + .head('tfg:small_casing_extruder_mold') + .id(`tfg:vi/curving/sprinkler`) - event.custom({ - type: 'vintageimprovements:curving', - ingredients: [{ tag: 'forge:double_plates/wrought_iron' }], - itemAsHead: 'tfg:large_casing_extruder_mold', - results: [{ item: 'tfc:wrought_iron_grill' }], - processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER - }).id(`tfg:vi/curving/wrought_iron_grill`) + event.recipes.vintageimprovements.curving('tfc:wrought_iron_grill', '#forge:double_plates/wrought_iron') + .head('tfg:large_casing_extruder_mold') + .id(`tfg:vi/curving/wrought_iron_grill`) // #endregion } function generateHammeringRecipe(event, material, blows, anvil) { - event.custom({ - type: 'vintageimprovements:hammering', - hammerBlows: blows, - ingredients: [ChemicalHelper.get(TFGTagPrefix.ingotDouble, material, 1)], - results: [ChemicalHelper.get(TagPrefix.plate, material, 1)], - anvilBlock: `tfc:metal/anvil/${anvil}` - }).id(`tfg:vi/hammer/${material.getName()}_plate_on_${anvil}_anvil`) + event.recipes.vintageimprovements.hammering( + ChemicalHelper.get(TagPrefix.plate, material, 1), + ChemicalHelper.get(TFGTagPrefix.ingotDouble, material, 1)) + .anvilBlock(`tfc:metal/anvil/${anvil}`) + .hammerBlows(blows) + .id(`tfg:vi/hammer/${material.getName()}_plate_on_${anvil}_anvil`) } function generateHammeringRecipeFromItem(event, input, output, blows, anvil) { - event.custom({ - type: 'vintageimprovements:hammering', - hammerBlows: blows, - ingredients: [{ item: input }], - results: [{ item: output }], - anvilBlock: `tfc:metal/anvil/${anvil}` - }).id(`tfg:vi/hammer/${input.replace(/[#:]/g, '_')}_on_${anvil}_anvil`) -} \ No newline at end of file + event.recipes.vintageimprovements.hammering(output, input) + .anvilBlock(`tfc:metal/anvil/${anvil}`) + .hammerBlows(blows) + .id(`tfg:vi/hammer/${input.replace(/[#:]/g, '_')}_on_${anvil}_anvil`) +} diff --git a/kubejs/server_scripts/wan_ancient_beasts/recipes.js b/kubejs/server_scripts/wan_ancient_beasts/recipes.js index 2b65d3851..9f083ead7 100644 --- a/kubejs/server_scripts/wan_ancient_beasts/recipes.js +++ b/kubejs/server_scripts/wan_ancient_beasts/recipes.js @@ -38,19 +38,6 @@ const registerWABRecipes = (event) => { .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]) - event.shaped('wan_ancient_beasts:reinforced_shield', [ 'BAB', 'DCD', diff --git a/kubejs/server_scripts/wan_ancient_beasts/tags.js b/kubejs/server_scripts/wan_ancient_beasts/tags.js index 044e0c9af..5e5e95e49 100644 --- a/kubejs/server_scripts/wan_ancient_beasts/tags.js +++ b/kubejs/server_scripts/wan_ancient_beasts/tags.js @@ -30,7 +30,7 @@ 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') + event.add('tfc:foods/meats', 'wan_ancient_beasts:cooked_toxlacanth') // Eater meat event.add('tfc:foods/raw_meats', 'wan_ancient_beasts:raw_ancient_meat') diff --git a/kubejs/startup_scripts/ad_astra/constants.js b/kubejs/startup_scripts/ad_astra/constants.js index e706f6738..93a924324 100644 --- a/kubejs/startup_scripts/ad_astra/constants.js +++ b/kubejs/startup_scripts/ad_astra/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.AD_ASTRA_DISABLED_ITEMS = @@ -110,7 +110,37 @@ global.BREATHABLE_COMPRESSED_AIRS = ]; global.AD_ASTRA_WOOD = [ - {name: 'aeronos', logs: '#ad_astra:aeronos_caps', log: 'ad_astra:aeronos_stem', stripped_log: null, lumber: 'tfg:wood/lumber/aeronos', plank: 'ad_astra:aeronos_planks', stair: 'ad_astra:aeronos_stairs', slab: 'ad_astra:aeronos_slab', fence: 'ad_astra:aeronos_fence', fence_gate: 'ad_astra:aeronos_fence_gate', door: 'ad_astra:aeronos_door', trapdoor: 'ad_astra:aeronos_trapdoor', button: null, pressure_plate: null, support: 'tfg:aeronos_support', isHardwood: false}, - {name: 'strophar', logs: '#ad_astra:strophar_caps', log: 'ad_astra:strophar_stem', stripped_log: null, lumber: 'tfg:wood/lumber/strophar', plank: 'ad_astra:strophar_planks', stair: 'ad_astra:strophar_stairs', slab: 'ad_astra:strophar_slab', fence:'ad_astra:strophar_fence', fence_gate: 'ad_astra:strophar_fence_gate', door:'ad_astra:strophar_door', trapdoor: 'ad_astra:strophar_trapdoor', button: null, pressure_plate: null, support: 'tfg:strophar_support', isHardwood: false}, - {name: 'glacian', logs: '#ad_astra:glacian_logs', log: 'ad_astra:glacian_log', stripped_log: 'ad_astra:stripped_glacian_log', lumber: 'tfg:wood/lumber/glacian', plank: 'ad_astra:glacian_planks', stair: 'ad_astra:glacian_stairs', slab: 'ad_astra:glacian_slab', fence: 'ad_astra:glacian_fence', fence_gate: 'ad_astra:glacian_fence_gate', door: 'ad_astra:glacian_door', trapdoor: 'ad_astra:glacian_trapdoor', button: 'ad_astra:glacian_button', pressure_plate: 'ad_astra:glacian_pressure_plate', support: 'tfg:glacian_support', isHardwood: true}, + { + name: 'aeronos', + logs: '#ad_astra:aeronos_caps', log: 'ad_astra:aeronos_stem', stripped_log: null, + lumber: 'tfg:wood/lumber/aeronos', plank: 'ad_astra:aeronos_planks', + stair: 'ad_astra:aeronos_stairs', slab: 'ad_astra:aeronos_slab', + fence: 'ad_astra:aeronos_fence', fence_gate: 'ad_astra:aeronos_fence_gate', + door: 'ad_astra:aeronos_door', trapdoor: 'ad_astra:aeronos_trapdoor', + button: null, pressure_plate: null, + support: 'tfg:aeronos_support', + isHardwood: false + }, + { + name: 'strophar', + logs: '#ad_astra:strophar_caps', log: 'ad_astra:strophar_stem', stripped_log: null, + lumber: 'tfg:wood/lumber/strophar', plank: 'ad_astra:strophar_planks', + stair: 'ad_astra:strophar_stairs', slab: 'ad_astra:strophar_slab', + fence:'ad_astra:strophar_fence', fence_gate: 'ad_astra:strophar_fence_gate', + door:'ad_astra:strophar_door', trapdoor: 'ad_astra:strophar_trapdoor', + button: null, pressure_plate: null, + support: 'tfg:strophar_support', + isHardwood: false + }, + { + name: 'glacian', + logs: '#ad_astra:glacian_logs', log: 'ad_astra:glacian_log', stripped_log: 'ad_astra:stripped_glacian_log', + lumber: 'tfg:wood/lumber/glacian', plank: 'ad_astra:glacian_planks', + stair: 'ad_astra:glacian_stairs', slab: 'ad_astra:glacian_slab', + fence: 'ad_astra:glacian_fence', fence_gate: 'ad_astra:glacian_fence_gate', + door: 'ad_astra:glacian_door', trapdoor: 'ad_astra:glacian_trapdoor', + button: 'ad_astra:glacian_button', pressure_plate: 'ad_astra:glacian_pressure_plate', + support: 'tfg:glacian_support', + isHardwood: true + } ] \ No newline at end of file diff --git a/kubejs/startup_scripts/ad_astra/materials.js b/kubejs/startup_scripts/ad_astra/materials.js deleted file mode 100644 index 98d9d69f3..000000000 --- a/kubejs/startup_scripts/ad_astra/materials.js +++ /dev/null @@ -1,92 +0,0 @@ -// priority: 0 -"use strict"; - -const registerAdAstraMaterials = (event) => { - - event.create('armalcolite') - .gem(2) - .components('1x magnesium', '1x rutile', '1x ilmenite') - .color(0x443333) - .secondaryColor(0x5e2c21) - .iconSet(GTMaterialIconSet.getByName('tfc_emerald')) - .ore() - .addOreByproducts('rutile', 'rutile', 'ilmenite') - - // #region ad astra ores - - // moon - event.create('desh') - .components('2x olivine', '1x rutile', '4x nitrogen') - .color(0xF39A4C) - .secondaryColor(0xF35A6C) - .iconSet(GTMaterialIconSet.getByName('tfc_hematite')) - .ore() - .addOreByproducts('olivine', 'rutile', 'rutile') - .ingot() - .liquid() - .blastTemp(2800, 'mid', GTValues.VA[GTValues.HV]) - .flags( - GTMaterialFlags.FORCE_GENERATE_BLOCK, - GTMaterialFlags.GENERATE_PLATE, - GTMaterialFlags.GENERATE_ROD, - GTMaterialFlags.GENERATE_DENSE, - GTMaterialFlags.GENERATE_GEAR, - GTMaterialFlags.GENERATE_FRAME, - GTMaterialFlags.DISABLE_ALLOY_BLAST - ) - - // mars - event.create('ostrum') - .components('2x pitchblende', '1x tricalcium_phosphate', '1x bauxite', '1x silver', '1x beryllium') - .color(0xbd7980) - .secondaryColor(0xA66C8D) - .iconSet(GTMaterialIconSet.getByName('tfc_cassiterite')) - .ingot() - .liquid() - .blastTemp(3700, 'mid', GTValues.VA[GTValues.EV]) - .flags( - GTMaterialFlags.DISABLE_DECOMPOSITION, - GTMaterialFlags.FORCE_GENERATE_BLOCK, - GTMaterialFlags.GENERATE_PLATE, - GTMaterialFlags.GENERATE_ROD, - GTMaterialFlags.GENERATE_FRAME, - GTMaterialFlags.DISABLE_ALLOY_BLAST - ) - - // venus? - event.create('calorite') - //.components('2x mercury', '1x tungsten', '1x rhodium', '2x sulfur') - .color(0xC94D4E) - .secondaryColor(0x9A296A) - .iconSet(GTMaterialIconSet.getByName('tfc_copper')) - .ore() - .ingot() - .flags( - GTMaterialFlags.FORCE_GENERATE_BLOCK, - GTMaterialFlags.GENERATE_PLATE - ) - - // ??? - event.create('etrium') - //.components('1x niobium', '1x molybdenum', '1x ruthenium', '3x carbon', '1x monochloramine') - .color(0x7BFCD7) - .secondaryColor(0x3582D2) - .iconSet(GTMaterialIconSet.getByName('tfc_silver')) - .ore() - .ingot() - .flags( - GTMaterialFlags.FORCE_GENERATE_BLOCK, - GTMaterialFlags.GENERATE_PLATE, - GTMaterialFlags.GENERATE_ROD - ) - - // #endregion -} - -const registerAdAstraMaterialModification = (event) => { - - const $FLUID_PIPE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.FluidPipeProperties') - - // Ostrum fluid pipe - same flow rate as titanium, higher temp range - GTMaterials.get('ostrum').setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(3700, 150, true, false, true, false)); -} \ No newline at end of file diff --git a/kubejs/startup_scripts/ad_astra/modifications.js b/kubejs/startup_scripts/ad_astra/modifications.js index fbdf2b383..36a8c4333 100644 --- a/kubejs/startup_scripts/ad_astra/modifications.js +++ b/kubejs/startup_scripts/ad_astra/modifications.js @@ -31,4 +31,23 @@ function registerAdAstraBlockModifications(event) { event.modify('ad_astra:aeronos_cap', block => { block.lightEmission = 0 }) +} + +function registerAdAstraItemModifications(event) { + + const space_suits = [ + 'ad_astra:space_helmet', + 'ad_astra:space_suit', + 'ad_astra:space_pants', + 'ad_astra:space_boots', + 'ad_astra:netherite_space_helmet', + 'ad_astra:netherite_space_suit', + 'ad_astra:netherite_space_pants', + 'ad_astra:netherite_space_boots' + ] + space_suits.forEach(e => { + event.modify(e, item => { + item.maxDamage = item.maxDamage * 2 + }) + }) } \ No newline at end of file diff --git a/kubejs/startup_scripts/advancedperipherals/constants.js b/kubejs/startup_scripts/advancedperipherals/constants.js index 3680e5292..3862aed0b 100644 --- a/kubejs/startup_scripts/advancedperipherals/constants.js +++ b/kubejs/startup_scripts/advancedperipherals/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.ADVANCED_PERIPHERALS_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/ae2/constants.js b/kubejs/startup_scripts/ae2/constants.js index 88e39d121..f7d1ec8a9 100644 --- a/kubejs/startup_scripts/ae2/constants.js +++ b/kubejs/startup_scripts/ae2/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.AE2_DISABLED_ITEMS = [ @@ -62,7 +62,7 @@ global.AE2_GLASS_CABLES = [ 'ae2:brown_glass_cable', 'ae2:green_glass_cable', 'ae2:red_glass_cable', - 'ae2:black_glass_cable', + 'ae2:black_glass_cable' ] // Covered Cable @@ -82,7 +82,7 @@ global.AE2_COVERED_CABLES = [ 'ae2:brown_covered_cable', 'ae2:green_covered_cable', 'ae2:red_covered_cable', - 'ae2:black_covered_cable', + 'ae2:black_covered_cable' ] // Dense Covered Cable @@ -102,7 +102,7 @@ global.AE2_COVERED_DENSE_CABLES = [ 'ae2:brown_covered_dense_cable', 'ae2:green_covered_dense_cable', 'ae2:red_covered_dense_cable', - 'ae2:black_covered_dense_cable', + 'ae2:black_covered_dense_cable' ] // Smart Cable @@ -122,7 +122,7 @@ global.AE2_SMART_CABLES = [ 'ae2:brown_smart_cable', 'ae2:green_smart_cable', 'ae2:red_smart_cable', - 'ae2:black_smart_cable', + 'ae2:black_smart_cable' ] // Dense Smart Cable @@ -142,7 +142,7 @@ global.AE2_SMART_DENSE_CABLES = [ 'ae2:brown_smart_dense_cable', 'ae2:green_smart_dense_cable', 'ae2:red_smart_dense_cable', - 'ae2:black_smart_dense_cable', + 'ae2:black_smart_dense_cable' ] // Smart Cable @@ -162,7 +162,7 @@ global.AE2_SMART_CABLES = [ 'ae2:brown_smart_cable', 'ae2:green_smart_cable', 'ae2:red_smart_cable', - 'ae2:black_smart_cable', + 'ae2:black_smart_cable' ] // Dense Smart Cable @@ -182,7 +182,7 @@ global.AE2_SMART_DENSE_CABLES = [ 'ae2:brown_smart_dense_cable', 'ae2:green_smart_dense_cable', 'ae2:red_smart_dense_cable', - 'ae2:black_smart_dense_cable', + 'ae2:black_smart_dense_cable' ] @@ -203,7 +203,7 @@ global.AE2_PAINTBALLS = [ 'ae2:brown_paint_ball', 'ae2:green_paint_ball', 'ae2:red_paint_ball', - 'ae2:black_paint_ball', + 'ae2:black_paint_ball' ] // Lumen paint ball global.AE2_LUMEN_PAINTBALLS = [ @@ -222,6 +222,6 @@ global.AE2_LUMEN_PAINTBALLS = [ 'ae2:brown_lumen_paint_ball', 'ae2:green_lumen_paint_ball', 'ae2:red_lumen_paint_ball', - 'ae2:black_lumen_paint_ball', + 'ae2:black_lumen_paint_ball' ] diff --git a/kubejs/startup_scripts/ae2/fluids.js b/kubejs/startup_scripts/ae2/fluids.js deleted file mode 100644 index 60038bb0b..000000000 --- a/kubejs/startup_scripts/ae2/fluids.js +++ /dev/null @@ -1,13 +0,0 @@ -// priority: 0 -"use strict"; - -const registerAE2Fluids = (event) => { - -// AE2 Moon Fluix - - event.create('tfg:cryogenized_fluix') - .thickTexture(0xde8cfb) - .bucketColor(0xde8cfb) - .luminosity(14) - .temperature(10) -} \ No newline at end of file diff --git a/kubejs/startup_scripts/ae2/materials.js b/kubejs/startup_scripts/ae2/materials.js index 316f6fe33..d4ab8056d 100644 --- a/kubejs/startup_scripts/ae2/materials.js +++ b/kubejs/startup_scripts/ae2/materials.js @@ -11,7 +11,7 @@ const registerAE2Materials = (event) => { GTMaterialFlags.CRYSTALLIZABLE, GTMaterialFlags.DISABLE_DECOMPOSITION ) - .components('1x nether_quartz', '1x certus_quartz') + .components('1x unknown', '1x nether_quartz', '1x certus_quartz') .color(0x8f5ccb) .secondaryColor(0x252f5a) } \ No newline at end of file diff --git a/kubejs/startup_scripts/afc/constants.js b/kubejs/startup_scripts/afc/constants.js index 6ccba7a9c..f8c487284 100644 --- a/kubejs/startup_scripts/afc/constants.js +++ b/kubejs/startup_scripts/afc/constants.js @@ -1,3 +1,4 @@ +// priority: -100 "use strict"; global.AFC_DISABLED_ITEMS = [ @@ -107,7 +108,7 @@ global.AFC_SOFTWOOD_TYPES = [ 'tualang', 'cypress', - 'fig', + 'fig' ] global.AFC_HARDWOOD_TYPES = diff --git a/kubejs/startup_scripts/alekiroofs/constants.js b/kubejs/startup_scripts/alekiroofs/constants.js index efc6bd946..c416eda46 100644 --- a/kubejs/startup_scripts/alekiroofs/constants.js +++ b/kubejs/startup_scripts/alekiroofs/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.ALEKIROOFS_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/alekiships/constants.js b/kubejs/startup_scripts/alekiships/constants.js index 69f512d1c..4d7c918a2 100644 --- a/kubejs/startup_scripts/alekiships/constants.js +++ b/kubejs/startup_scripts/alekiships/constants.js @@ -1,3 +1,4 @@ +// priority: -100 "use strict"; global.ALEKISHIPS_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/arthropocolypse/constants.js b/kubejs/startup_scripts/arthropocolypse/constants.js new file mode 100644 index 000000000..b3db71b5d --- /dev/null +++ b/kubejs/startup_scripts/arthropocolypse/constants.js @@ -0,0 +1,12 @@ +// priority: -100 +"use strict"; + +global.ARTHROPOCOLYPSE_DISABLED_ITEMS = [ + 'arthropocolypse:beetle_helmet', + 'arthropocolypse:beetle_chestplate', + 'arthropocolypse:beetle_leggings', + 'arthropocolypse:beetle_boots', + 'arthropocolypse:gilded_scale_elytra', + 'arthropocolypse:gilded_double_head_axe', + 'arthropocolypse:carrot_piece' +]; \ No newline at end of file diff --git a/kubejs/startup_scripts/asticor_carts/constants.js b/kubejs/startup_scripts/asticor_carts/constants.js index 664e571a2..ff9a0509f 100644 --- a/kubejs/startup_scripts/asticor_carts/constants.js +++ b/kubejs/startup_scripts/asticor_carts/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.ASTICOR_CARTS_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/beneath/constants.js b/kubejs/startup_scripts/beneath/constants.js index 69fcec829..536ac80b1 100644 --- a/kubejs/startup_scripts/beneath/constants.js +++ b/kubejs/startup_scripts/beneath/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.BENEATH_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/chisel_and_bits/constants.js b/kubejs/startup_scripts/chisel_and_bits/constants.js deleted file mode 100644 index 5c8a9ee0f..000000000 --- a/kubejs/startup_scripts/chisel_and_bits/constants.js +++ /dev/null @@ -1,17 +0,0 @@ -// priority: 0 -"use strict"; - -global.CHISEL_AND_BITS_DISABLED_ITEMS = [ - 'chiselsandbits:block_bit', - 'chiselsandbits:chiseled_block', - - 'chiselsandbits:chisel_stone', - 'chiselsandbits:chisel_iron', - 'chiselsandbits:chisel_gold', - 'chiselsandbits:chisel_netherite', - - 'chiselsandbits:bit_bag_dyed', - 'chiselsandbits:pattern_single_use', - 'chiselsandbits:pattern_multi_use', - 'chiselsandbits:monocle' -]; \ No newline at end of file diff --git a/kubejs/startup_scripts/computer_craft/constants.js b/kubejs/startup_scripts/computer_craft/constants.js index a108b9f5e..e255a52d1 100644 --- a/kubejs/startup_scripts/computer_craft/constants.js +++ b/kubejs/startup_scripts/computer_craft/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.COMPUTER_CRAFT_DISCS = [ @@ -17,5 +17,5 @@ global.COMPUTER_CRAFT_DISCS = [ '{Color:8349260}', '{Color:5744206}', '{Color:13388876}', - '{Color:1118481}', + '{Color:1118481}' ] \ No newline at end of file diff --git a/kubejs/startup_scripts/create/constants.js b/kubejs/startup_scripts/create/constants.js index 65e50e6e2..6439596d0 100644 --- a/kubejs/startup_scripts/create/constants.js +++ b/kubejs/startup_scripts/create/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; /** @@ -68,8 +68,6 @@ global.CREATE_DISABLED_ITEMS = [ 'create:creative_fluid_tank', 'create:unprocessed_obsidian_sheet', 'create:creative_motor', - 'create:refined_radiance_casing', - 'create:shadow_steel_casing', 'create:wooden_bracket', 'create:red_sand_paper', 'create:empty_blaze_burner', diff --git a/kubejs/startup_scripts/create/creative_tab.js b/kubejs/startup_scripts/create/creative_tab.js new file mode 100644 index 000000000..6f21cfa5c --- /dev/null +++ b/kubejs/startup_scripts/create/creative_tab.js @@ -0,0 +1,7 @@ +// priority: 0 +"use strict"; + +StartupEvents.modifyCreativeTab('create:base', event => { + event.add('create:shadow_steel_casing') + event.add('create:refined_radiance_casing') +}) diff --git a/kubejs/startup_scripts/create_additions/constants.js b/kubejs/startup_scripts/create_additions/constants.js index 400bd3ba7..4627fdf2c 100644 --- a/kubejs/startup_scripts/create_additions/constants.js +++ b/kubejs/startup_scripts/create_additions/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.CREATE_ADDITIONS_DISABLED_ITEMS = [ @@ -36,5 +36,6 @@ global.CREATE_ADDITIONS_DISABLED_ITEMS = [ 'createaddition:small_light_connector', 'createaddition:electrum_block', 'createaddition:portable_energy_interface', - 'createaddition:straw' + 'createaddition:straw', + 'createaddition:modular_accumulator' ]; diff --git a/kubejs/startup_scripts/create_connected/constants.js b/kubejs/startup_scripts/create_connected/constants.js index ca883e3be..8a4b737d7 100644 --- a/kubejs/startup_scripts/create_connected/constants.js +++ b/kubejs/startup_scripts/create_connected/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.CREATE_CONNECTED_DISABLED_ITEMS = [ @@ -19,5 +19,5 @@ global.CREATE_CONNECTED_DISABLED_ITEMS = [ 'create_connected:brass_encased_cross_connector', 'create_connected:kinetic_bridge', 'create_connected:kinetic_battery', - 'create_connected:charged_kinetic_battery', + 'create_connected:charged_kinetic_battery' ] \ No newline at end of file diff --git a/kubejs/startup_scripts/createdeco/constants.js b/kubejs/startup_scripts/createdeco/constants.js index 8bfec458a..3387d561e 100644 --- a/kubejs/startup_scripts/createdeco/constants.js +++ b/kubejs/startup_scripts/createdeco/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; /** @global */ @@ -9,7 +9,7 @@ global.CREATEDECO_DISABLED_ITEMS = /** @type {const} */ ([ "createdeco:industrial_iron_sheet", "createdeco:netherite_nugget", "createdeco:industrial_iron_nugget", - "createdeco:industrial_iron_ingot", + "createdeco:industrial_iron_ingot" ]); /** @global */ @@ -21,7 +21,7 @@ global.CREATE_DECO_BRICK_TYPES = /** @type {const} */ ([ "blue", "pearl", "dean", - "red", + "red" ]); global.CREATE_DECO_GLASS_PANES = /** @type {const} */ ([ @@ -30,7 +30,7 @@ global.CREATE_DECO_GLASS_PANES = /** @type {const} */ ([ "createdeco:iron_window_pane", "createdeco:industrial_iron_window_pane", "createdeco:brass_window_pane", - "createdeco:zinc_window_pane", + "createdeco:zinc_window_pane" ]); global.CREATE_DECO_CATWALK_TYPES = /** @type {const} */ ([ @@ -39,5 +39,5 @@ global.CREATE_DECO_CATWALK_TYPES = /** @type {const} */ ([ "iron", "copper", "industrial_iron", - "zinc", + "zinc" ]); diff --git a/kubejs/startup_scripts/domum_ornamentum/constants.js b/kubejs/startup_scripts/domum_ornamentum/constants.js index e525d4c91..0226624f4 100644 --- a/kubejs/startup_scripts/domum_ornamentum/constants.js +++ b/kubejs/startup_scripts/domum_ornamentum/constants.js @@ -1,9 +1,9 @@ -// priority: 0 +// priority: -100 "use strict"; global.DOMUM_ORNAMENTUM_DISABLED_ITEMS = /** @type {const} */ ([ "domum_ornamentum:blockbarreldeco_standing", - "domum_ornamentum:blockbarreldeco_onside", + "domum_ornamentum:blockbarreldeco_onside" ]); global.DOMUM_ORNAMENTUM_FLOATING_CARPETS = /** @type {const} */ ([ @@ -22,5 +22,5 @@ global.DOMUM_ORNAMENTUM_FLOATING_CARPETS = /** @type {const} */ ([ "domum_ornamentum:brown_floating_carpet", "domum_ornamentum:green_floating_carpet", "domum_ornamentum:red_floating_carpet", - "domum_ornamentum:black_floating_carpet", + "domum_ornamentum:black_floating_carpet" ]); diff --git a/kubejs/startup_scripts/extended_ae2/constants.js b/kubejs/startup_scripts/extended_ae2/constants.js index 97a7c2945..26cf04231 100644 --- a/kubejs/startup_scripts/extended_ae2/constants.js +++ b/kubejs/startup_scripts/extended_ae2/constants.js @@ -1,45 +1,15 @@ +// priority: 0 "use strict"; global.EXTENDED_AE2_DISABLED_ITEMS = [ 'expatternprovider:infinity_cell', - 'expatternprovider:fishbig', - //'expatternprovider:pattern_provider_upgrade', - //'expatternprovider:interface_upgrade', 'expatternprovider:io_bus_upgrade', - //'expatternprovider:pattern_terminal_upgrade', - //'expatternprovider:drive_upgrade', 'expatternprovider:ex_inscriber', 'expatternprovider:crystal_fixer', 'expatternprovider:ex_charger', 'expatternprovider:caner', 'expatternprovider:circuit_cutter', - 'expatternprovider:silicon_block', - - - //Π² Π±ΡƒΠ΄ΡƒΡ‰Π΅ΠΌ Π±ΡƒΠ΄Π΅Ρ‚ ΠΊΡ€Π°Ρ„Ρ‚ - /* - 'expatternprovider:ex_io_port', - 'expatternprovider:wireless_tool', - 'expatternprovider:wireless_connect', - 'expatternprovider:active_formation_plane', - 'expatternprovider:wireless_ex_pat', - 'expatternprovider:pattern_modifier', - 'expatternprovider:threshold_level_emitter', - - 'expatternprovider:ex_export_bus_part', - 'expatternprovider:ex_import_bus_part', - 'expatternprovider:ex_pattern_access_part', - 'expatternprovider:me_packing_tape', - 'expatternprovider:tag_storage_bus', - 'expatternprovider:tag_export_bus', - 'expatternprovider:mod_storage_bus', - 'expatternprovider:mod_export_bus', - 'expatternprovider:precise_export_bus', - 'expatternprovider:ingredient_buffer', - 'expatternprovider:ex_drive', - 'expatternprovider:ex_molecular_assembler', - - */ + 'expatternprovider:silicon_block' ] \ No newline at end of file diff --git a/kubejs/startup_scripts/firmaciv/constants.js b/kubejs/startup_scripts/firmaciv/constants.js index 3a6e659cd..563af9b9b 100644 --- a/kubejs/startup_scripts/firmaciv/constants.js +++ b/kubejs/startup_scripts/firmaciv/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; /** diff --git a/kubejs/startup_scripts/firmalife/constants.js b/kubejs/startup_scripts/firmalife/constants.js index 83747ad96..db0ce962b 100644 --- a/kubejs/startup_scripts/firmalife/constants.js +++ b/kubejs/startup_scripts/firmalife/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; /** @@ -35,7 +35,10 @@ global.FIRMALIFE_DISABLED_ITEMS = [ // disabled so people use tongs instead 'firmalife:peel', - 'firmalife:bucket/chocolate' + 'firmalife:bucket/chocolate', + 'firmalife:bucket/fruity_fluid', + 'firmalife:bucket/metal/chromium', + 'firmalife:bucket/metal/stainless_steel' ]; global.FIRMALIFE_HIDED_ITEMS = [ @@ -99,12 +102,12 @@ global.FIRMALIFE_JAMS = [ global.FIRMALIFE_GREENHOUSE_FRUIT_RECIPE_COMPONENTS = [ { input: 'firmalife:plant/cocoa_sapling', fluid_amount: 8000, output: '3x firmalife:food/cocoa_beans', name: 'cocoa_beans' }, - { input: 'firmalife:plant/fig_sapling', fluid_amount: 8000, output: '3x firmalife:food/fig', name: 'fig' }, + { input: 'firmalife:plant/fig_sapling', fluid_amount: 8000, output: '3x firmalife:food/fig', name: 'fig' } ]; global.FIRMALIFE_GREENHOUSE_BERRY_RECIPE_COMPONENTS = [ { input: 'firmalife:plant/pineapple_bush', fluid_amount: 6000, output: '3x firmalife:food/pineapple', name: 'pineapple' }, - { input: 'firmalife:plant/nightshade_bush', fluid_amount: 6000, output: '3x firmalife:food/nightshade_berry', name: 'nightshade' }, + { input: 'firmalife:plant/nightshade_bush', fluid_amount: 6000, output: '3x firmalife:food/nightshade_berry', name: 'nightshade' } ]; global.FIRMALIFE_COOKING_RECIPE_COMPONENTS = [ diff --git a/kubejs/startup_scripts/framedblocks/constants.js b/kubejs/startup_scripts/framedblocks/constants.js index 539d11f8a..c45e47f52 100644 --- a/kubejs/startup_scripts/framedblocks/constants.js +++ b/kubejs/startup_scripts/framedblocks/constants.js @@ -1,10 +1,10 @@ -// priority: 0 +// priority: -100 "use strict"; global.FRAMEDBLOCKS_DISABLED_ITEMS = [ "framedblocks:framed_soul_torch", "framedblocks:framed_torch", - "framedblocks:framed_obsidian_pressure_plate", + "framedblocks:framed_obsidian_pressure_plate" ]; /** @satisfies {Special.Item[]} */ @@ -44,7 +44,7 @@ global.FRAMED_HALF_BLOCKS = /** @type {const} */ ([ "framedblocks:framed_centered_slab", "framedblocks:framed_centered_panel", "framedblocks:framed_checkered_slab", - "framedblocks:framed_checkered_panel", + "framedblocks:framed_checkered_panel" ]); /** @satisfies {Special.Item[]} */ @@ -68,5 +68,5 @@ global.FRAMED_TINY_BLOCKS = /** @type {const} */ ([ "framedblocks:framed_small_corner_slope_panel", "framedblocks:framed_small_inner_corner_slope_panel", "framedblocks:framed_small_double_corner_slope_panel", - "framedblocks:framed_mini_cube", + "framedblocks:framed_mini_cube" ]); diff --git a/kubejs/startup_scripts/ftb_quests/constants.js b/kubejs/startup_scripts/ftb_quests/constants.js index 1c89e5871..d7eb41a35 100644 --- a/kubejs/startup_scripts/ftb_quests/constants.js +++ b/kubejs/startup_scripts/ftb_quests/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; /** diff --git a/kubejs/startup_scripts/grapplemod/constants.js b/kubejs/startup_scripts/grapplemod/constants.js index 49cb155c8..c51596e47 100644 --- a/kubejs/startup_scripts/grapplemod/constants.js +++ b/kubejs/startup_scripts/grapplemod/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.GRAPPLEMOD_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/greate/constants.js b/kubejs/startup_scripts/greate/constants.js index 29c2613e4..7259a3d08 100644 --- a/kubejs/startup_scripts/greate/constants.js +++ b/kubejs/startup_scripts/greate/constants.js @@ -1,8 +1,29 @@ -// priority: 0 +// priority: -100 "use strict"; +global.GREATE_MATERIAL_TIERS = [ + 'andesite_alloy', + 'steel', + 'aluminium', + 'stainless_steel', + 'titanium', + 'tungsten_steel', + 'rhodium_plated_palladium', + 'naquadah_alloy', + 'darmstadtium', + 'neutronium' +]; + +global.AVAILABLE_GREATE_MATERIAL_TIERS = [ + 'andesite_alloy', + 'steel', + 'aluminium', + 'stainless_steel', + 'titanium' +]; + global.GREATE_DISABLED_ITEMS = /** @type {const} */ ([ - "create:andesite_alloy", + "greate:andesite_alloy_alloy", "gtceu:steel_alloy", "gtceu:aluminium_alloy", "gtceu:stainless_steel_alloy", @@ -14,8 +35,9 @@ global.GREATE_DISABLED_ITEMS = /** @type {const} */ ([ "gtceu:neutronium_alloy", "gtceu:neutronium_whisk", - "greate:polybenzimidazole_belt_connector", + "greate:polyethylene_belt_connector", "greate:polytetrafluoroethylene_belt_connector", + "greate:polybenzimidazole_belt_connector", "greate:andesite_alloy_crushing_wheel", "greate:andesite_alloy_encased_fan", @@ -93,66 +115,66 @@ global.GREATE_DISABLED_ITEMS = /** @type {const} */ ([ "greate:neutronium_vertical_gearbox", // Adding these here because they're greate's fault - "gtceu:andesite_alloy_bucket", - "gtceu:andesite_alloy_ring", - "gtceu:tiny_andesite_alloy_dust", - "gtceu:small_andesite_alloy_dust", - "gtceu:andesite_alloy_dust", - "gtceu:andesite_alloy_plate", - "gtceu:double_andesite_alloy_plate", - "gtceu:andesite_alloy_nugget", - "gtceu:andesite_alloy_rotor", - "gtceu:andesite_alloy_whisk", - "gtceu:andesite_alloy_bolt", - "gtceu:andesite_alloy_ingot", - "gtceu:andesite_alloy_rod", - "gtceu:andesite_alloy_screw", - "gtceu:andesite_alloy_buzz_saw_blade", - "gtceu:andesite_alloy_block", - "gtceu:andesite_alloy_buzzsaw", + "greate:andesite_alloy_bucket", + "greate:andesite_alloy_ring", + "greate:tiny_andesite_alloy_dust", + "greate:small_andesite_alloy_dust", + "greate:andesite_alloy_dust", + "greate:andesite_alloy_plate", + "greate:double_andesite_alloy_plate", + "greate:andesite_alloy_nugget", + "greate:andesite_alloy_rotor", + "greate:andesite_alloy_whisk", + "greate:andesite_alloy_bolt", + "greate:andesite_alloy_ingot", + "greate:andesite_alloy_rod", + "greate:andesite_alloy_screw", + "greate:andesite_alloy_buzz_saw_blade", + "greate:andesite_alloy_block", + "greate:andesite_alloy_buzzsaw", - "gtceu:refined_radiance_bucket", - "gtceu:tiny_refined_radiance_dust", - "gtceu:small_refined_radiance_dust", - "gtceu:refined_radiance_dust", - "gtceu:refined_radiance_plate", - "gtceu:double_refined_radiance_plate", - "gtceu:refined_radiance_nugget", - "gtceu:refined_radiance_bolt", - "gtceu:refined_radiance_ingot", - "gtceu:refined_radiance_rod", - "gtceu:refined_radiance_screw", - "gtceu:long_refined_radiance_rod", - "gtceu:refined_radiance_block", + "greate:refined_radiance_bucket", + "greate:tiny_refined_radiance_dust", + "greate:small_refined_radiance_dust", + "greate:refined_radiance_dust", + "greate:refined_radiance_plate", + "greate:double_refined_radiance_plate", + "greate:refined_radiance_nugget", + "greate:refined_radiance_bolt", + "greate:refined_radiance_ingot", + "greate:refined_radiance_rod", + "greate:refined_radiance_screw", + "greate:long_refined_radiance_rod", + "greate:refined_radiance_block", - "gtceu:chromatic_compound_bucket", - "gtceu:tiny_chromatic_compound_dust", - "gtceu:small_chromatic_compound_dust", - "gtceu:chromatic_compound_dust", - "gtceu:chromatic_compound_nugget", - "gtceu:chromatic_compound_ingot", - "gtceu:chromatic_compound_block", + "greate:chromatic_compound_bucket", + "greate:tiny_chromatic_compound_dust", + "greate:small_chromatic_compound_dust", + "greate:chromatic_compound_dust", + "greate:chromatic_compound_nugget", + "greate:chromatic_compound_ingot", + "greate:chromatic_compound_block", - "gtceu:shadow_steel_bucket", - "gtceu:tiny_shadow_steel_dust", - "gtceu:small_shadow_steel_dust", - "gtceu:shadow_steel_dust", - "gtceu:shadow_steel_plate", - "gtceu:double_shadow_steel_plate", - "gtceu:shadow_steel_nugget", - "gtceu:shadow_steel_bolt", - "gtceu:shadow_steel_ingot", - "gtceu:shadow_steel_rod", - "gtceu:shadow_steel_screw", - "gtceu:long_shadow_steel_rod", - "gtceu:shadow_steel_block", + "greate:shadow_steel_bucket", + "greate:tiny_shadow_steel_dust", + "greate:small_shadow_steel_dust", + "greate:shadow_steel_dust", + "greate:shadow_steel_plate", + "greate:double_shadow_steel_plate", + "greate:shadow_steel_nugget", + "greate:shadow_steel_bolt", + "greate:shadow_steel_ingot", + "greate:shadow_steel_rod", + "greate:shadow_steel_screw", + "greate:long_shadow_steel_rod", + "greate:shadow_steel_block" ]); global.GREATE_DISABLED_FLUIDS = /** @type {const} */ ([ - "gtceu:andesite_alloy", - "gtceu:refined_radiance", - "gtceu:chromatic_compound", - "gtceu:shadow_steel", + "greate:andesite_alloy", + "greate:refined_radiance", + "greate:chromatic_compound", + "greate:shadow_steel" ]); global.GREATE_DISABLED_TAGS = /** @type {const} */ ([ @@ -167,7 +189,7 @@ global.GREATE_DISABLED_TAGS = /** @type {const} */ ([ "#forge:alloys/rhodium_plated_palladium", "#forge:alloys/naquadah_alloy", "#forge:alloys/darmstadtium", - "#forge:alloys/neutronium", + "#forge:alloys/neutronium" ]); global.GREATE_BELTS = /** @type {const} */ ([ @@ -175,7 +197,7 @@ global.GREATE_BELTS = /** @type {const} */ ([ "greate:polybenzimidazole_belt_connector", "greate:polyethylene_belt_connector", "greate:polytetrafluoroethylene_belt_connector", - "greate:rubber_belt_connector", + "greate:rubber_belt_connector" ]); global.GREATE_CRUSHING_WHEELS = /** @type {const} */ ([ @@ -188,7 +210,7 @@ global.GREATE_CRUSHING_WHEELS = /** @type {const} */ ([ "greate:rhodium_plated_palladium_crushing_wheel", "greate:naquadah_alloy_crushing_wheel", "greate:darmstadtium_crushing_wheel", - "greate:neutronium_crushing_wheel", + "greate:neutronium_crushing_wheel" ]); global.GREATE_ENCASED_FANS = /** @type {const} */ ([ @@ -201,7 +223,7 @@ global.GREATE_ENCASED_FANS = /** @type {const} */ ([ "greate:rhodium_plated_palladium_encased_fan", "greate:naquadah_alloy_encased_fan", "greate:darmstadtium_encased_fan", - "greate:neutronium_encased_fan", + "greate:neutronium_encased_fan" ]); global.GREATE_MECHANICAL_MIXERS = /** @type {const} */ ([ @@ -214,7 +236,7 @@ global.GREATE_MECHANICAL_MIXERS = /** @type {const} */ ([ "greate:rhodium_plated_palladium_mechanical_mixer", "greate:naquadah_alloy_mechanical_mixer", "greate:darmstadtium_mechanical_mixer", - "greate:neutronium_mechanical_mixer", + "greate:neutronium_mechanical_mixer" ]); global.GREATE_MECHANICAL_PRESSES = /** @type {const} */ ([ @@ -227,7 +249,7 @@ global.GREATE_MECHANICAL_PRESSES = /** @type {const} */ ([ "greate:rhodium_plated_palladium_mechanical_press", "greate:naquadah_alloy_mechanical_press", "greate:darmstadtium_mechanical_press", - "greate:neutronium_mechanical_press", + "greate:neutronium_mechanical_press" ]); global.GREATE_MECHANICAL_PUMPS = /** @type {const} */ ([ @@ -240,7 +262,7 @@ global.GREATE_MECHANICAL_PUMPS = /** @type {const} */ ([ "greate:rhodium_plated_palladium_mechanical_pump", "greate:naquadah_alloy_mechanical_pump", "greate:darmstadtium_mechanical_pump", - "greate:neutronium_mechanical_pump", + "greate:neutronium_mechanical_pump" ]); global.GREATE_MECHANICAL_SAWS = /** @type {const} */ ([ @@ -253,7 +275,7 @@ global.GREATE_MECHANICAL_SAWS = /** @type {const} */ ([ "greate:rhodium_plated_palladium_mechanical_saw", "greate:naquadah_alloy_mechanical_saw", "greate:darmstadtium_mechanical_saw", - "greate:neutronium_mechanical_saw", + "greate:neutronium_mechanical_saw" ]); global.GREATE_MILLSTONES = /** @type {const} */ ([ @@ -266,5 +288,5 @@ global.GREATE_MILLSTONES = /** @type {const} */ ([ "greate:rhodium_plated_palladium_millstone", "greate:naquadah_alloy_millstone", "greate:darmstadtium_millstone", - "greate:neutronium_millstone", + "greate:neutronium_millstone" ]); diff --git a/kubejs/startup_scripts/greate/material_modification.js b/kubejs/startup_scripts/greate/material_modification.js new file mode 100644 index 000000000..21b3e8055 --- /dev/null +++ b/kubejs/startup_scripts/greate/material_modification.js @@ -0,0 +1,16 @@ +// priority: 0 +"use strict"; + +const registerGreateMaterialModification = (event) => { + + const $GreateMaterials = Java.loadClass("electrolyte.greate.registry.GreateMaterials") + + // Add flags + $GreateMaterials.RoseQuartz.addFlags( + GTMaterialFlags.GENERATE_LENS + ); + + // Material composition + $GreateMaterials.AndesiteAlloy.setComponents([]) + $GreateMaterials.AndesiteAlloy.setFormula("?") +} \ No newline at end of file diff --git a/kubejs/startup_scripts/greate/materials.js b/kubejs/startup_scripts/greate/materials.js index f02a6127d..562be0323 100644 --- a/kubejs/startup_scripts/greate/materials.js +++ b/kubejs/startup_scripts/greate/materials.js @@ -1,13 +1,42 @@ +// priority: 0 "use strict"; const registerGreateMaterials = (event) => { + // Belt materials should already have an ingot and plate item already + const $BeltProperty = Java.loadClass("electrolyte.greate.content.gtceu.material.BeltProperty") + const $GreateMaterials = Java.loadClass("electrolyte.greate.registry.GreateMaterials") + const $GreatePropertyKeys = Java.loadClass("electrolyte.greate.content.gtceu.material.GreatePropertyKeys") -} + // Wood belt + $GreateMaterials.AndesiteAlloy.setProperty(GreatePropertyKeys.BELT, new $BeltProperty([$GreateMaterials.AndesiteAlloy], 5)) -const registerGreateMaterialModification = (event) => { - GTMaterials.get("rose_quartz").addFlags( - GTMaterialFlags.GENERATE_LENS - ); + // Leather belt + GTMaterials.Stone.setProperty(GreatePropertyKeys.BELT, new $BeltProperty([GTMaterials.Steel, $GreateMaterials.AndesiteAlloy], 10)) - GTMaterials.get('andesite_alloy').setFormula("?", true) + // Remove plastic belts + GTMaterials.Polyethylene.getProperties().removeProperty(GreatePropertyKeys.BELT); + GTMaterials.Polytetrafluoroethylene.getProperties().removeProperty(GreatePropertyKeys.BELT); + GTMaterials.Polybenzimidazole.getProperties().removeProperty(GreatePropertyKeys.BELT); + + // Change properties of other rubber belts + GTMaterials.Rubber.getProperties().removeProperty(GreatePropertyKeys.BELT); + GTMaterials.Rubber.setProperty(GreatePropertyKeys.BELT, new $BeltProperty([GTMaterials.Steel, $GreateMaterials.AndesiteAlloy], 20)) + + GTMaterials.SiliconeRubber.getProperties().removeProperty(GreatePropertyKeys.BELT); + GTMaterials.SiliconeRubber.setProperty(GreatePropertyKeys.BELT, new $BeltProperty([GTMaterials.StainlessSteel, GTMaterials.Aluminium], 25)) + + GTMaterials.StyreneButadieneRubber.setProperty(GreatePropertyKeys.BELT, new $BeltProperty([GTMaterials.Titanium, GTMaterials.StainlessSteel], 30)) + + // Change stress levels + let capacity = 32; + $GreateMaterials.AndesiteAlloy.getProperty($GreatePropertyKeys.KINETIC).setMaxCapacity(capacity); + GTMaterials.Steel.getProperty($GreatePropertyKeys.KINETIC).setMaxCapacity(capacity *= 4); + GTMaterials.Aluminium.getProperty($GreatePropertyKeys.KINETIC).setMaxCapacity(capacity *= 4); + GTMaterials.StainlessSteel.getProperty($GreatePropertyKeys.KINETIC).setMaxCapacity(capacity *= 4); + GTMaterials.Titanium.getProperty($GreatePropertyKeys.KINETIC).setMaxCapacity(capacity *= 4); + GTMaterials.TungstenSteel.getProperty($GreatePropertyKeys.KINETIC).setMaxCapacity(capacity *= 4); + GTMaterials.RhodiumPlatedPalladium.getProperty($GreatePropertyKeys.KINETIC).setMaxCapacity(capacity *= 4); + GTMaterials.NaquadahAlloy.getProperty($GreatePropertyKeys.KINETIC).setMaxCapacity(capacity *= 4); + GTMaterials.Darmstadtium.getProperty($GreatePropertyKeys.KINETIC).setMaxCapacity(capacity *= 4); + GTMaterials.Neutronium.getProperty($GreatePropertyKeys.KINETIC).setMaxCapacity(capacity *= 4); } \ No newline at end of file diff --git a/kubejs/startup_scripts/gtceu/constants.js b/kubejs/startup_scripts/gtceu/constants.js index 547da8ddc..92c377a5e 100644 --- a/kubejs/startup_scripts/gtceu/constants.js +++ b/kubejs/startup_scripts/gtceu/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; //#region Disabled Items @@ -123,7 +123,7 @@ global.GTCEU_DISABLED_ITEMS = /** @type {const} */ ([ "gtceu:damascus_steel_plate", "gtceu:double_damascus_steel_plate", "gtceu:damascus_steel_gear", - "gtceu:damascus_steel_buzzsaw_blade", + "gtceu:damascus_steel_buzz_saw_blade", "gtceu:damascus_steel_drill_head", "gtceu:damascus_steel_chainsaw_head", "gtceu:damascus_steel_bolt", @@ -141,6 +141,27 @@ global.GTCEU_DISABLED_ITEMS = /** @type {const} */ ([ "gtceu:lv_damascus_steel_chainsaw", "gtceu:damascus_steel_buzzsaw", "gtceu:damascus_steel_bucket", + "gtceu:damascus_steel_wire_cutter_head", + "gtceu:lv_damascus_steel_wire_cutter", + "gtceu:hv_damascus_steel_wire_cutter", + "gtceu:iv_damascus_steel_wire_cutter", + "gtceu:damascus_steel_butchery_knife_head", + "gtceu:damascus_steel_sword_head", + "gtceu:damascus_steel_screwdriver_tip", + "gtceu:damascus_steel_file_head", + "gtceu:damascus_steel_spade_head", + "gtceu:damascus_steel_mining_hammer_head", + "gtceu:damascus_steel_hoe_head", + "gtceu:damascus_steel_hammer_head", + "gtceu:damascus_steel_knife_head", + "gtceu:damascus_steel_pickaxe_head", + "gtceu:damascus_steel_axe_head", + "gtceu:damascus_steel_saw_head", + "gtceu:damascus_steel_shovel_head", + "gtceu:damascus_steel_scythe_head", + + "gtceu:molten_black_bronze_bucket", + "gtceu:molten_bismuth_bronze_bucket", //armor "gtceu:bronze_helmet", @@ -156,11 +177,6 @@ global.GTCEU_DISABLED_ITEMS = /** @type {const} */ ([ "gtceu:titanium_leggings", "gtceu:titanium_boots", - // Huh - "gtceu:wax_dust", - "gtceu:small_wax_dust", - "gtceu:tiny_wax_dust", - // Sculk "gtceu:tiny_echo_shard_dust", "gtceu:small_echo_shard_dust", @@ -214,7 +230,12 @@ global.GTCEU_DISABLED_ITEMS = /** @type {const} */ ([ "gtceu:thorium_block", "gtceu:thorium_plate", "gtceu:double_thorium_plate", - "gtceu:thorium_rod" + "gtceu:thorium_rod", + "gtceu:thorium_bucket", + + // Replaced with our own + "gtceu:paracetamol_pill", + "gtceu:rad_away_pill" ]); //#endregion @@ -230,7 +251,7 @@ global.GTCEU_HIDED_ITEMS = /** @type {const} */ ([ "gtceu:iv_damascus_steel_wrench", "gtceu:lv_damascus_steel_screwdriver", - "gtceu:sus_record", + "gtceu:sus_record" ]); //#endregion @@ -250,7 +271,7 @@ global.GTCEU_ARMORS = /** @type {const} */ ([ "gtceu:quarktech_leggings", "gtceu:quarktech_boots", "gtceu:quarktech_helmet", - "gtceu:advanced_quarktech_chestplate", + "gtceu:advanced_quarktech_chestplate" ]); //#endregion @@ -313,7 +334,7 @@ global.TFG_CASTING_MOLDS = /** @type {const} */ ([ "tfg:lamp_casting_mold", "tfg:trapdoor_casting_mold", "tfg:chain_casting_mold", - "tfg:bell_casting_mold", + "tfg:bell_casting_mold" ]); global.GTCEU_CASTING_MOLDS = /** @type {const} */ ([ @@ -334,7 +355,7 @@ global.GTCEU_CASTING_MOLDS = /** @type {const} */ ([ "gtceu:small_pipe_casting_mold", "gtceu:normal_pipe_casting_mold", "gtceu:large_pipe_casting_mold", - "gtceu:huge_pipe_casting_mold", + "gtceu:huge_pipe_casting_mold" ]); //#endregion @@ -371,7 +392,7 @@ global.ORE_BEARING_STONES = /** @type {const} */ ([ "mars_stone", "venus_stone", "mercury_stone", - "glacio_stone", + "glacio_stone" ]); //#endregion @@ -391,7 +412,10 @@ global.ADD_CIRCUIT = /** @type {const} */ ([ { recipeId: "gtceu:large_chemical_reactor/sodium_bicarbonate_from_salt", circuitNumber: 2 }, { recipeId: "gtceu:chemical_reactor/acetic_acid_from_methanol", circuitNumber: 1 }, - { recipeId: "gtceu:large_chemical_reactor/acetic_acid_from_methanol", circuitNumber: 1 } + { recipeId: "gtceu:large_chemical_reactor/acetic_acid_from_methanol", circuitNumber: 1 }, + + { recipeId: "gtceu:chemical_reactor/butraldehyde", circuitNumber: 5 }, + { recipeId: "gtceu:large_chemical_reactor/butraldehyde", circuitNumber: 5 } ]); //#endregion @@ -406,6 +430,6 @@ global.GTCEU_SUPERCONDUCTORS = /** @type {const} */ ([ { name: "indium_tin_barium_titanium_cuprate", materialId: "IndiumTinBariumTitaniumCuprate" }, { name: "uranium_rhodium_dinaquadide", materialId: "UraniumRhodiumDinaquadide" }, { name: "enriched_naquadah_trinium_europium_duranide", materialId: "EnrichedNaquadahTriniumEuropiumDuranide" }, - { name: "ruthenium_trinium_americium_neutronate", materialId: "RutheniumTriniumAmericiumNeutronate" }, + { name: "ruthenium_trinium_americium_neutronate", materialId: "RutheniumTriniumAmericiumNeutronate" } ]); //#endregion diff --git a/kubejs/startup_scripts/gtceu/items.js b/kubejs/startup_scripts/gtceu/items.js deleted file mode 100644 index 6b29ca59f..000000000 --- a/kubejs/startup_scripts/gtceu/items.js +++ /dev/null @@ -1,45 +0,0 @@ -// priority: 0 -"use strict"; - -const registerGTCEuItems = (event) => { - - event.create('tfg:ulv_universal_circuit') - .translationKey('item.ulv_universal_circuit') - - event.create('tfg:lv_universal_circuit') - .translationKey('item.lv_universal_circuit') - - event.create('tfg:mv_universal_circuit') - .translationKey('item.mv_universal_circuit') - - event.create('tfg:hv_universal_circuit') - .translationKey('item.hv_universal_circuit') - - event.create('tfg:ev_universal_circuit') - .translationKey('item.ev_universal_circuit') - - event.create('tfg:iv_universal_circuit') - .translationKey('item.iv_universal_circuit') - - event.create('tfg:luv_universal_circuit') - .translationKey('item.luv_universal_circuit') - - event.create('tfg:zpm_universal_circuit') - .translationKey('item.zpm_universal_circuit') - - event.create('tfg:uv_universal_circuit') - .translationKey('item.uv_universal_circuit') - - event.create('tfg:uhv_universal_circuit') - .translationKey('item.uhv_universal_circuit') - - event.create('tfg:chipboard_composite') - .translationKey('item.chipboard_composite') - - event.create('tfg:treated_chipboard_composite') - .translationKey('item.treated_chipboard_composite') - - event.create('tfg:high_density_treated_fiberboard') - .translationKey('item.high_density_treated_fiberboard') - -} diff --git a/kubejs/startup_scripts/gtceu/machines.js b/kubejs/startup_scripts/gtceu/machines.js index 45e7d1b21..864e69f0e 100644 --- a/kubejs/startup_scripts/gtceu/machines.js +++ b/kubejs/startup_scripts/gtceu/machines.js @@ -2,49 +2,8 @@ const registerGTCEuMachines = (event) => { - const $SteamMulti = Java.loadClass('com.gregtechceu.gtceu.common.machine.multiblock.steam.SteamParallelMultiblockMachine'); - const $Tags = Java.loadClass("dev.latvian.mods.kubejs.util.Tags") const CoilWorkableElectricMultiblockMachine = Java.loadClass("com.gregtechceu.gtceu.api.machine.multiblock.CoilWorkableElectricMultiblockMachine") - //#region Steam Bloomery - - event.create('steam_bloomery', 'multiblock') - .machine((holder) => new $SteamMulti(holder, 8)) - .rotationState(RotationState.NON_Y_AXIS) - .recipeType('steam_bloomery') - .recipeModifier((machine, recipe) => $SteamMulti.recipeModifier(machine, recipe), true) - .appearanceBlock(GTBlocks.CASING_BRONZE_BRICKS) - .pattern(definition => FactoryBlockPattern.start() - .aisle(" F ", " C ", " E ", " E ", " E ") - .aisle("FCF", "C#C", "E#E", "E#E", "E#E") - .aisle(" F ", "CXC", " E ", " E ", " E ") - .where('X', Predicates.controller(Predicates.blocks(definition.get()))) - .where('C', Predicates.blockTag($Tags.block("tfc:bloomery_insulation"))) - .where('F', Predicates.blocks(GTBlocks.FIREBOX_BRONZE.get()) - .or(Predicates.abilities(PartAbility.STEAM).setExactLimit(1))) - .where('E', Predicates.abilities(PartAbility.STEAM_IMPORT_ITEMS).setMaxGlobalLimited(2) - .or(Predicates.abilities(PartAbility.STEAM_EXPORT_ITEMS).setExactLimit(1)) - .or(Predicates.blockTag($Tags.block("tfc:bloomery_insulation")))) - .where('#', Predicates.air()) - .where(' ', Predicates.any()) - .build() - ) - .shapeInfo(controller => MultiblockShapeInfo.builder() - .aisle(" F ", " C ", " C ", " C ", " C ") - .aisle("FCF", "C#C", "C#C", "C#C", "C#C") - .aisle(" i ", "CXC", " O ", " I ", " C ") - .where('X', controller, Direction.SOUTH) - .where('C', Block.getBlock('tfc:rock/bricks/rhyolite')) - .where('F', GTBlocks.FIREBOX_BRONZE.get()) - .where('i', GTMachines.STEAM_HATCH, Direction.SOUTH) - .where('O', GTMachines.STEAM_EXPORT_BUS, Direction.SOUTH) - .where('I', GTMachines.STEAM_IMPORT_BUS, Direction.SOUTH) - .build() - ) - .workableCasingModel( - "gtceu:block/casings/solid/machine_casing_bronze_plated_bricks", - "tfg:block/steam_bloomery") - //#endregion //#region Large Solar Panels //Tier 1 @@ -270,8 +229,8 @@ const registerGTCEuMachines = (event) => { .recipeType('nuclear_fuel_factory') .recipeModifiers( [ - GTRecipeModifiers.PARALLEL_HATCH, - (machine, recipe) => GTRecipeModifiers.pyrolyseOvenOverclock(machine, recipe), + GTRecipeModifiers.PARALLEL_HATCH, + (machine, recipe) => GTRecipeModifiers.pyrolyseOvenOverclock(machine, recipe), GTRecipeModifiers.BATCH_MODE ] ) @@ -447,59 +406,39 @@ const registerGTCEuMachines = (event) => { 'gtceu:block/casings/gcym/nonconducting_casing', 'gtceu:block/multiblock/distillation_tower') - // Extraterrestrial Ore Fabricator - event.create('ostrum_linear_accelerator', 'multiblock') + //#region Power Rework + + // Coal Liquefaction Tower + + event.create('coal_liquefaction_tower', 'multiblock') + .machine((holder) => new CoilWorkableElectricMultiblockMachine(holder)) .rotationState(RotationState.NON_Y_AXIS) - .recipeType('ostrum_linear_accelerator') - .recipeModifiers([GTRecipeModifiers.PARALLEL_HATCH, GTRecipeModifiers.OC_NON_PERFECT, GTRecipeModifiers.BATCH_MODE]) - .appearanceBlock(() => Block.getBlock('tfg:casings/machine_casing_mars')) + .recipeType('coal_liquefaction_tower') + .recipeModifiers([(machine, recipe) => GTRecipeModifiers.pyrolyseOvenOverclock(machine, recipe), GTRecipeModifiers.BATCH_MODE]) + .appearanceBlock(() => Block.getBlock('gtceu:solid_machine_casing')) .pattern(definition => FactoryBlockPattern.start() - .aisle('AAAAAAAAA', 'AAAAAAAAA', 'AAAAAAAAA', ' ', ' ' ) - .aisle('BAAAAAAAA', 'B#######D', 'BBBBBBBAA', ' BCCCB ', ' BBBBB ' ) - .aisle('AAAAAAAAA', 'A#######D', 'BB###BBAA', ' C###C ', ' BHHHB ' ) - .aisle('BEBEBEAAA', 'BEBEBEA#D', 'BBBBBBBAA', ' BCCCB ', ' BBBBB ' ) - .aisle('A AFA', 'A AXA', 'AAAAAAAFA', ' ', ' ' ) + .aisle('CCC', 'D D', 'D D', 'DED', 'DED', 'BBB') + .aisle('CCC', ' Y ', ' E ', 'E#E', 'EEE', 'BMB') + .aisle('CXC', 'D D', 'D D', 'DED', 'DED', 'BBB' ) .where('X', Predicates.controller(Predicates.blocks(definition.get()))) - .where('A', Predicates.blocks('tfg:casings/machine_casing_mars') - .or(Predicates.abilities(PartAbility.INPUT_ENERGY).setMinGlobalLimited(1).setMaxGlobalLimited(2))) - .where('B', Predicates.blocks('tfg:casings/machine_casing_ostrum_carbon')) - .where('C', Predicates.blocks('tfg:casings/machine_casing_vacuum_engine_intake')) - .where('D', Predicates.blocks('gtceu:heat_vent')) - .where('E', Predicates.blocks('tfg:casings/machine_casing_mars') - .or(Predicates.abilities(PartAbility.IMPORT_FLUIDS).setMaxGlobalLimited(6)) - .or(Predicates.abilities(PartAbility.IMPORT_ITEMS).setMaxGlobalLimited(6))) - .where('F', Predicates.blocks('tfg:casings/machine_casing_mars') - .or(Predicates.abilities(PartAbility.MAINTENANCE).setExactLimit(1))) - .where('H', Predicates.blocks('tfg:casings/machine_casing_mars') - .or(Predicates.abilities(PartAbility.EXPORT_ITEMS)) - .or(Predicates.abilities(PartAbility.EXPORT_FLUIDS))) + .where('B', Predicates.blocks('gtceu:solid_machine_casing').setMinGlobalLimited(4) + .or(Predicates.abilities(PartAbility.IMPORT_FLUIDS).setPreviewCount(2)) + .or(Predicates.abilities(PartAbility.IMPORT_ITEMS).setPreviewCount(1))) + .where('C', Predicates.blocks('gtceu:solid_machine_casing') + .or(Predicates.abilities(PartAbility.EXPORT_FLUIDS).setPreviewCount(2)) + .or(Predicates.abilities(PartAbility.INPUT_ENERGY).setExactLimit(1).setPreviewCount(1)) + .or(Predicates.abilities(PartAbility.MAINTENANCE).setExactLimit(1).setPreviewCount(1))) + .where('D', Predicates.blocks('create:metal_girder')) + .where('E', Predicates.blocks('gtceu:steam_machine_casing')) + .where('Y', Predicates.heatingCoils()) + .where('M', Predicates.abilities(PartAbility.MUFFLER).setExactLimit(1)) .where('#', Predicates.air()) .where(' ', Predicates.any()) .build() ) - .shapeInfo(controller => MultiblockShapeInfo.builder() - .aisle('KKAAAAAAA', 'AAAAAAAAA', 'AAAAAAAAA', ' ', ' ' ) - .aisle('BAAAAAAAA', 'B D', 'BBBBBBBAA', ' BCCCB ', ' BBBBB ' ) - .aisle('AAAAAAAAA', 'A D', 'BB BBAA', ' C C ', ' BIAHB ' ) - .aisle('BEBEBEAAA', 'BEBFBEA#D', 'BBBBBBBAA', ' BCCCB ', ' BBBBB ' ) - .aisle('A AMA', 'A AXA', 'AAAAAAAAA', ' ', ' ' ) - .where('X', controller, Direction.SOUTH) - .where('A', Block.getBlock('tfg:casings/machine_casing_mars')) - .where('B', Block.getBlock('tfg:casings/machine_casing_ostrum_carbon')) - .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('F', GTMachines.ITEM_IMPORT_BUS[GTValues.EV], Direction.SOUTH) - .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')) - .build() - ) .workableCasingModel( - 'tfg:block/casings/machine_casing_mars', - 'gtceu:block/machines/thermal_centrifuge') + 'gtceu:block/casings/solid/machine_casing_solid_steel', + 'gtceu:block/multiblock/distillation_tower') -} +} \ No newline at end of file diff --git a/kubejs/startup_scripts/gtceu/materials.js b/kubejs/startup_scripts/gtceu/material_modification.js similarity index 86% rename from kubejs/startup_scripts/gtceu/materials.js rename to kubejs/startup_scripts/gtceu/material_modification.js index 186d44764..dffc9f8ed 100644 --- a/kubejs/startup_scripts/gtceu/materials.js +++ b/kubejs/startup_scripts/gtceu/material_modification.js @@ -1,24 +1,25 @@ ο»Ώ// priority: 0 "use strict"; -const registerGTCEuMaterials = (event) => { - -} - const registerGTCEuMaterialModification = (event) => { //const TFGPropertyKey = Java.loadClass('su.terrafirmagreg.core.compat.gtceu.TFGPropertyKeys') const $TFC_PROPERTY = Java.loadClass('su.terrafirmagreg.core.compat.gtceu.properties.TFCProperty') const $ORE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.OreProperty') + const $INGOT_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.IngotProperty') + const $DUST_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.DustProperty'); + const $BLAST_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.BlastProperty') const $ITEM_PIPE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.ItemPipeProperties') const $FLUID_PIPE_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.FluidPipeProperties') const $HAZARD_PROPERTY = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.properties.HazardProperty') - + const $TFGT_MEDICAL_CONDITIONS = Java.loadClass('su.terrafirmagreg.core.common.data.tfgt.TFGTMedicalConditions') const $MATERIAL_FLAGS = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.info.MaterialFlags') const $FluidStorageKeys = Java.loadClass('com.gregtechceu.gtceu.api.fluids.store.FluidStorageKeys') + const $GreateMaterials = Java.loadClass("electrolyte.greate.registry.GreateMaterials") + const { HAS_TFC_TOOL, // used to generate new TFC items like javelins HAS_GT_TOOL, // does not generate items, just TFC recipes for GT tools @@ -147,9 +148,9 @@ const registerGTCEuMaterialModification = (event) => { let AlSi = GTMaterials.get('aluminium_silicate') AlSi.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(1540, 1540, 1540, 1)) GTMaterials.Kyanite.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(1540, 1540, 1540, AlSi, 1, 95)) - GTMaterials.Mica.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(1540, 1540, 1540, AlSi, 1, 90)) - GTMaterials.Spodumene.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(1540, 1540, 1540, AlSi, 1, 85)) - GTMaterials.Pollucite.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(1540, 1540, 1540, AlSi, 1, 85)) + GTMaterials.Mica.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(1540, 1540, 1540, AlSi, 1, 40)) + GTMaterials.Spodumene.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(1540, 1540, 1540, AlSi, 1, 30)) + GTMaterials.Pollucite.setProperty(TFGPropertyKey.TFC_PROPERTY, new $TFC_PROPERTY(1540, 1540, 1540, AlSi, 1, 25)) GTMaterials.Gold.addFlags(GENERATE_BELL); @@ -188,13 +189,30 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.Hematite.addFlags(GENERATE_DUSTY_ORES); //#endregion - + // + // /* Castable stuff */ + GTMaterials.Copper.addFlags(CAN_BE_UNMOLDED); + GTMaterials.BismuthBronze.addFlags(CAN_BE_UNMOLDED); + GTMaterials.BlackBronze.addFlags(CAN_BE_UNMOLDED); + GTMaterials.Bronze.addFlags(CAN_BE_UNMOLDED); + GTMaterials.Tin.addFlags(CAN_BE_UNMOLDED); + GTMaterials.Bismuth.addFlags(CAN_BE_UNMOLDED); + GTMaterials.Zinc.addFlags(CAN_BE_UNMOLDED); + GTMaterials.SterlingSilver.addFlags(CAN_BE_UNMOLDED); + GTMaterials.RoseGold.addFlags(CAN_BE_UNMOLDED); + GTMaterials.Silver.addFlags(CAN_BE_UNMOLDED); + GTMaterials.Gold.addFlags(CAN_BE_UNMOLDED); + GTMaterials.Nickel.addFlags(CAN_BE_UNMOLDED); + GTMaterials.Brass.addFlags(CAN_BE_UNMOLDED); + GTMaterials.RedAlloy.addFlags(CAN_BE_UNMOLDED); + GTMaterials.Lead.addFlags(CAN_BE_UNMOLDED); + GTMaterials.Potin.addFlags(CAN_BE_UNMOLDED); // // /* Π˜ΠΌΠ΅ΡŽΡ‚ инструмСнты, Π±Ρ€ΠΎΠ½ΡŽ TFC, Π΄Π²ΠΎΠΉΠ½Ρ‹Π΅ слитки */ - GTMaterials.Copper.addFlags(GENERATE_DOUBLE_INGOTS, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY, CAN_BE_UNMOLDED); - GTMaterials.BismuthBronze.addFlags(GENERATE_DOUBLE_INGOTS, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY, CAN_BE_UNMOLDED); - GTMaterials.Bronze.addFlags(GENERATE_DOUBLE_INGOTS, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY, CAN_BE_UNMOLDED); - GTMaterials.BlackBronze.addFlags(GENERATE_DOUBLE_INGOTS, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY, CAN_BE_UNMOLDED); + GTMaterials.Copper.addFlags(GENERATE_DOUBLE_INGOTS, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY); + GTMaterials.BismuthBronze.addFlags(GENERATE_DOUBLE_INGOTS, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY); + GTMaterials.Bronze.addFlags(GENERATE_DOUBLE_INGOTS, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY); + GTMaterials.BlackBronze.addFlags(GENERATE_DOUBLE_INGOTS, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY); GTMaterials.WroughtIron.addFlags(GENERATE_DOUBLE_INGOTS, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY); GTMaterials.Steel.addFlags(GENERATE_DOUBLE_INGOTS, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY); GTMaterials.BlackSteel.addFlags(GENERATE_DOUBLE_INGOTS, GENERATE_ROTOR, HAS_TFC_TOOL, HAS_TFC_ARMOR, HAS_TFC_UTILITY); @@ -211,6 +229,7 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.Malachite.addFlags(HAS_SMALL_TFC_ORE); GTMaterials.Sphalerite.addFlags(HAS_SMALL_TFC_ORE); GTMaterials.Tetrahedrite.addFlags(HAS_SMALL_TFC_ORE); + GTMaterials.Chromite.addFlags(HAS_SMALL_TFC_ORE); // // /* Π˜ΠΌΠ΅ΡŽΡ‚ малСнькиС чистыС куски Ρ€ΡƒΠ΄Ρ‹ TFC */ GTMaterials.Copper.addFlags(HAS_SMALL_NATIVE_TFC_ORE); @@ -218,11 +237,11 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.Silver.addFlags(HAS_SMALL_NATIVE_TFC_ORE); // // /* Π˜ΠΌΠ΅ΡŽΡ‚ Π΄Π²ΠΎΠΉΠ½Ρ‹Π΅ слитки */ - GTMaterials.RedAlloy.addFlags(GENERATE_DOUBLE_INGOTS, GENERATE_SMALL_GEAR, CAN_BE_UNMOLDED); + GTMaterials.RedAlloy.addFlags(GENERATE_DOUBLE_INGOTS, GENERATE_SMALL_GEAR); GTMaterials.TinAlloy.addFlags(GENERATE_DOUBLE_INGOTS); GTMaterials.Lead.addFlags(GENERATE_DOUBLE_INGOTS); GTMaterials.Invar.addFlags(GENERATE_DOUBLE_INGOTS, HAS_GT_TOOL); - GTMaterials.Potin.addFlags(GENERATE_DOUBLE_INGOTS, CAN_BE_UNMOLDED); + GTMaterials.Potin.addFlags(GENERATE_DOUBLE_INGOTS, ); GTMaterials.Cobalt.addFlags(GENERATE_DOUBLE_INGOTS); GTMaterials.CobaltBrass.addFlags(GENERATE_DOUBLE_INGOTS, HAS_GT_TOOL); // @@ -259,6 +278,7 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.BismuthBronze.addFlags(GENERATE_SMALL_GEAR); GTMaterials.Nickel.addFlags(GENERATE_ROD, GENERATE_LONG_ROD); + GTMaterials.Zinc.addFlags(GENERATE_LONG_ROD); GTMaterials.BlackSteel.addFlags(GENERATE_LONG_ROD, GENERATE_BOLT_SCREW); GTMaterials.BlueSteel.addFlags(GENERATE_LONG_ROD, GENERATE_BOLT_SCREW); GTMaterials.RedSteel.addFlags(GENERATE_LONG_ROD, GENERATE_BOLT_SCREW, GENERATE_FOIL); @@ -295,6 +315,13 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.Plutonium239.addFlags(GENERATE_ROD, NO_ORE_PROCESSING_TAB, NO_ORE_SMELTING) GTMaterials.Thorium.addFlags(NO_ORE_SMELTING) + // Unhiding elements + GTMaterials.Zirconium.setProperty(PropertyKey.DUST, new $DUST_PROPERTY()); + GTMaterials.Zirconium.setProperty(PropertyKey.INGOT, new $INGOT_PROPERTY()); + GTMaterials.Zirconium.setProperty(PropertyKey.BLAST, new $BLAST_PROPERTY(4200, 'mid', GTValues.VA[GTValues.EV], 1300, GTValues.VA[GTValues.HV], 14.7*20)); + GTMaterials.Zirconium.addFlags(GENERATE_FINE_WIRE, GENERATE_PLATE, NO_ORE_SMELTING); + + // Tools GTMaterials.Stone.setProperty(PropertyKey.TOOL, ToolProperty.Builder.of(1.2, 1.0, 8, 1, [ GTToolType.AXE, GTToolType.HARD_HAMMER, @@ -333,17 +360,20 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.RedSteel.setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(370, 75, true, false, true, false)); // Blue steel fluid pipe - same flow rate as aluminium, same temp tolerance as tungsten GTMaterials.BlueSteel.setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(4618, 75, true, false, false, false)); + // Ostrum fluid pipe - same flow rate as titanium, higher temp range + GTMaterials.get('ostrum').setProperty(PropertyKey.FLUID_PIPE, new $FLUID_PIPE_PROPERTY(3700, 150, true, false, true, false)); - // Add some hazards back + // int is how fast the condition progresses (default 1.0) + // bool is whether or not the condition applies to anything made with the material, other than dusts (default false) GTMaterials.Realgar.setProperty(PropertyKey.HAZARD, new $HAZARD_PROPERTY($HAZARD_PROPERTY.HazardTrigger.INHALATION, GTMedicalConditions.ARSENICOSIS, 1, false)); GTMaterials.Cobaltite.setProperty(PropertyKey.HAZARD, new $HAZARD_PROPERTY($HAZARD_PROPERTY.HazardTrigger.INHALATION, GTMedicalConditions.ARSENICOSIS, 1, false)); GTMaterials.Galena.setProperty(PropertyKey.HAZARD, new $HAZARD_PROPERTY($HAZARD_PROPERTY.HazardTrigger.INHALATION, GTMedicalConditions.WEAK_POISON, 1, false)); GTMaterials.Chromite.setProperty(PropertyKey.HAZARD, new $HAZARD_PROPERTY($HAZARD_PROPERTY.HazardTrigger.SKIN_CONTACT, GTMedicalConditions.IRRITANT, 1, false)); - GTMaterials.Thorium.setProperty(PropertyKey.HAZARD, new $HAZARD_PROPERTY($HAZARD_PROPERTY.HazardTrigger.ANY, GTMedicalConditions.CARCINOGEN, 1, true)); - + GTMaterials.Thorium.setProperty(PropertyKey.HAZARD, new $HAZARD_PROPERTY($HAZARD_PROPERTY.HazardTrigger.ANY, $TFGT_MEDICAL_CONDITIONS.RADIOACTIVE, 1, true)); + // This contains hazardous elements so GT tags it as hazardous automatically - TFGHelpers.getMaterial('ostrum').getProperties().removeProperty(PropertyKey.HAZARD); - TFGHelpers.getMaterial('ostrum_iodide').getProperties().removeProperty(PropertyKey.HAZARD); + GTMaterials.get('ostrum').getProperties().removeProperty(PropertyKey.HAZARD); + GTMaterials.get('ostrum_iodide').getProperties().removeProperty(PropertyKey.HAZARD); // Superconductors being radioactive at EV is a little evil GTMaterials.UraniumTriplatinum.getProperties().removeProperty(PropertyKey.HAZARD); @@ -408,6 +438,10 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.GraniteRed.setMaterialARGB(0x974B3C) GTMaterials.GraniteRed.setMaterialSecondaryARGB(0x632117) GTMaterials.RhodiumPlatedPalladium.setMaterialARGB(0xFFC2EC) + GTMaterials.Rhenium.setMaterialARGB(0x8cb07f) + GTMaterials.Rhenium.setMaterialSecondaryARGB(0x9ccbd6) + GTMaterials.Diamond.setMaterialARGB(0x4AEDD9) + GTMaterials.Diamond.setMaterialSecondaryARGB(0x1AAAA7) global.MINECRAFT_DYE_NAMES.forEach(colorName => { @@ -417,15 +451,18 @@ const registerGTCEuMaterialModification = (event) => { }); - let rose_quartz = GTMaterials.get('greate:rose_quartz'); + let rose_quartz = $GreateMaterials.RoseQuartz; rose_quartz.setProperty(PropertyKey.ORE, new $ORE_PROPERTY()); rose_quartz.getProperty(PropertyKey.ORE).setOreByProducts(rose_quartz, GTMaterials.Redstone, rose_quartz); rose_quartz.setMaterialIconSet(GTMaterialIconSet.getByName('nether_quartz')) + + let zirconium_diboride = TFGHelpers.getMaterial('zirconium_diboride'); + zirconium_diboride.setProperty(PropertyKey.BLAST, new $BLAST_PROPERTY(4500, "high", GTValues.VA[GTValues.EV], 2700, GTValues.VA[GTValues.HV], 12.5*20)); - GTMaterials.get('tfg:kaolinite').setFormula("Al2Si2O5(OH)4", true) - GTMaterials.get('tfg:vitrified_pearl').setFormula("(Al2Si2O5(OH)4)(BeK4N5)", true) - GTMaterials.get('tfg:tmos').setFormula("Si(OCH3)4", true) - GTMaterials.get('tfg:fluix').setFormula("?(?SiO2)(SiO2)", true) - GTMaterials.CertusQuartz.setFormula("?SiO2", true) - GTMaterials.GraniteRed.setFormula("?", true) -} + GTMaterials.CertusQuartz.setComponents('1x unknown', '1x silicon', '2x oxygen') + GTMaterials.Glowstone.setComponents('1x gold', '1x redstone') + GTMaterials.GraniteRed.setComponents([]) + GTMaterials.GraniteRed.setFormula("?") + GTMaterials.Thorium.setFormula('ThO2') + GTMaterials.Americium.setFormula('Am²⁴³') +} \ 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 4550c419c..3cffd2c81 100644 --- a/kubejs/startup_scripts/gtceu/recipe_types.js +++ b/kubejs/startup_scripts/gtceu/recipe_types.js @@ -1,12 +1,5 @@ const registerGTCEuRecipeTypes = (event) => { - event.create('steam_bloomery') - .category('steam_bloomery') - .setEUIO('in') - .setMaxIOSize(2, 1, 0, 0) - .setProgressBar(GuiTextures.PROGRESS_BAR_ARROW, FillDirection.LEFT_TO_RIGHT) - .setSound(GTSoundEntries.FIRE) - event.create('large_solar_panel') .category('generator') .setEUIO('out') @@ -39,10 +32,11 @@ const registerGTCEuRecipeTypes = (event) => { event.create('heat_exchanger') .category('heat_exchanger') .setEUIO('in') - .setMaxIOSize(0, 0, 4, 4) + .setMaxIOSize(1, 0, 3, 3) .setSlotOverlay(false, false, GuiTextures.ATOMIC_OVERLAY_1) .setProgressBar(GuiTextures.PROGRESS_BAR_GAS_COLLECTOR, FillDirection.LEFT_TO_RIGHT) .setSound(GTSoundEntries.TURBINE) + /* Just keeping it in case we got mod issues event.create('fission_reactor') .category('fission_reactor') @@ -68,12 +62,12 @@ const registerGTCEuRecipeTypes = (event) => { .setProgressBar(GuiTextures.PROGRESS_BAR_GAS_COLLECTOR, FillDirection.LEFT_TO_RIGHT) .setSound(GTSoundEntries.TURBINE) - event.create('ostrum_linear_accelerator') - .category('ostrum_linear_accelerator') + event.create('coal_liquefaction_tower') + .category('coal_liquefaction_tower') .setEUIO('in') - .setMaxIOSize(1, 3, 3, 3) - .setSlotOverlay(false, false, GuiTextures.EXTRACTOR_OVERLAY) - .setProgressBar(GuiTextures.PROGRESS_BAR_EXTRACT, FillDirection.LEFT_TO_RIGHT) - .setSound(GTSoundEntries.BATH) + .setMaxIOSize(2, 0, 3, 3) + .setSlotOverlay(false, false, GuiTextures.HEATING_OVERLAY_1) + .setProgressBar(GuiTextures.PROGRESS_BAR_ARC_FURNACE, FillDirection.LEFT_TO_RIGHT) + .setSound(GTSoundEntries.COMBUSTION) -} +} \ No newline at end of file diff --git a/kubejs/startup_scripts/horornot/constants.js b/kubejs/startup_scripts/horornot/constants.js index 1e7e4f093..10623336c 100644 --- a/kubejs/startup_scripts/horornot/constants.js +++ b/kubejs/startup_scripts/horornot/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.HOT_OR_NOT_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/main_startup_script.js b/kubejs/startup_scripts/main_startup_script.js index 3c90aa21a..d0c502952 100644 --- a/kubejs/startup_scripts/main_startup_script.js +++ b/kubejs/startup_scripts/main_startup_script.js @@ -1,19 +1,12 @@ -// priority: 0 +// priority: 100 "use strict"; StartupEvents.registry('item', event => { - registerBetterEndItems(event) - registerGTCEuItems(event) registerTFGItems(event) }) StartupEvents.registry('block', event => { - registerTFGBlocks(event) - registerBetterEndBlocks(event) -}) - -StartupEvents.registry('entity_type', event => { - registerTFGEntityTypes(event) + registerTFGBlocks(event) }) BlockEvents.modification(event => { @@ -22,6 +15,7 @@ BlockEvents.modification(event => { }) ItemEvents.modification(event => { + registerAdAstraItemModifications(event) registerBeneathItemModifications(event) registerCreateItemModifications(event) registerFirmalifeItemModifications(event) @@ -32,7 +26,10 @@ ItemEvents.modification(event => { StartupEvents.registry('fluid', event => { registerTFGFluids(event) - registerAE2Fluids(event) +}) + +StartupEvents.registry('sound_event', event => { + registerTFGSounds(event) }) GTCEuStartupEvents.registry('gtceu:recipe_type', event => { @@ -51,24 +48,19 @@ GTCEuStartupEvents.registry('gtceu:tag_prefix', event => { }) GTCEuStartupEvents.registry('gtceu:material', event => { - registerAdAstraMaterials(event) registerAE2Materials(event) registerCreateMaterials(event) - registerTFCMaterials(event) - registerGTCEuMaterials(event) registerGreateMaterials(event) registerTFGMaterials(event) - registerTFGNuclearMaterials(event) }) GTCEuStartupEvents.registry('gtceu:material_icon_set', event => { - registerTFCIconSets(event) + registerTFGIconSets(event) }) GTCEuStartupEvents.materialModification(event => { registerGTCEuMaterialModification(event) registerGreateMaterialModification(event) - registerAdAstraMaterialModification(event) }) GTCEuStartupEvents.registry('gtceu:dimension_marker', event => { diff --git a/kubejs/startup_scripts/mega_cells/constants.js b/kubejs/startup_scripts/mega_cells/constants.js index b6092623f..dc245ba27 100644 --- a/kubejs/startup_scripts/mega_cells/constants.js +++ b/kubejs/startup_scripts/mega_cells/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.MEGA_CELLS_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/minecraft/constants.js b/kubejs/startup_scripts/minecraft/constants.js index 00d96cdea..6770553fe 100644 --- a/kubejs/startup_scripts/minecraft/constants.js +++ b/kubejs/startup_scripts/minecraft/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; /** @@ -395,7 +395,6 @@ global.MINECRAFT_DISABLED_ITEMS = [ // Броня "minecraft:netherite_helmet", "minecraft:netherite_chestplate", - "minecraft:netherite_boots", "minecraft:golden_helmet", "minecraft:golden_chestplate", "minecraft:golden_leggings", @@ -471,14 +470,12 @@ global.MINECRAFT_DISABLED_ITEMS = [ 'minecraft:netherite_scrap', 'minecraft:suspicious_gravel', 'minecraft:gravel', - 'minecraft:large_fern', 'minecraft:tall_grass', 'minecraft:sculk_vein', 'minecraft:lily_pad', 'minecraft:vine', 'minecraft:seagrass', 'minecraft:grass', - 'minecraft:fern', 'minecraft:dandelion', 'minecraft:poppy', 'minecraft:blue_orchid', @@ -492,8 +489,6 @@ global.MINECRAFT_DISABLED_ITEMS = [ 'minecraft:cornflower', 'minecraft:lily_of_the_valley', 'minecraft:wither_rose', - 'minecraft:torchflower', - 'minecraft:pitcher_plant', 'minecraft:sculk', 'minecraft:sculk_vein', 'minecraft:sculk_catalyst', @@ -621,6 +616,7 @@ global.MINECRAFT_DISABLED_ITEMS = [ 'minecraft:furnace', 'minecraft:amethyst_cluster', 'minecraft:rabbit_hide', + 'minecraft:raw_copper', 'minecraft:raw_iron', 'minecraft:raw_gold', 'minecraft:compass', diff --git a/kubejs/startup_scripts/modern_markings/constants.js b/kubejs/startup_scripts/modern_markings/constants.js index 8e8fdddb9..d9f193d84 100644 --- a/kubejs/startup_scripts/modern_markings/constants.js +++ b/kubejs/startup_scripts/modern_markings/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.MODERN_MARKINGS_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/more_red/constants.js b/kubejs/startup_scripts/more_red/constants.js index 1d68174d0..a1dc897b1 100644 --- a/kubejs/startup_scripts/more_red/constants.js +++ b/kubejs/startup_scripts/more_red/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.MORE_RED_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/railways/constants.js b/kubejs/startup_scripts/railways/constants.js index a9b82a08d..071c8bf6b 100644 --- a/kubejs/startup_scripts/railways/constants.js +++ b/kubejs/startup_scripts/railways/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.RAIL_WAYS_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/rnr/constants.js b/kubejs/startup_scripts/rnr/constants.js index d08795ff6..8fc4106bc 100644 --- a/kubejs/startup_scripts/rnr/constants.js +++ b/kubejs/startup_scripts/rnr/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.RNR_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/sacksnsuch/constants.js b/kubejs/startup_scripts/sacksnsuch/constants.js index 082ed5400..ee8509179 100644 --- a/kubejs/startup_scripts/sacksnsuch/constants.js +++ b/kubejs/startup_scripts/sacksnsuch/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; diff --git a/kubejs/startup_scripts/sophisticated_backpacks/constants.js b/kubejs/startup_scripts/sophisticated_backpacks/constants.js index e2cc7bc7f..209de7700 100644 --- a/kubejs/startup_scripts/sophisticated_backpacks/constants.js +++ b/kubejs/startup_scripts/sophisticated_backpacks/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.SOPHISTICATED_BACKPACKS_DISABLED_ITEMS = [ diff --git a/kubejs/startup_scripts/soulbind/constants.js b/kubejs/startup_scripts/soulbind/constants.js index b332e784c..222773199 100644 --- a/kubejs/startup_scripts/soulbind/constants.js +++ b/kubejs/startup_scripts/soulbind/constants.js @@ -1,3 +1,6 @@ +// priority: -100 +"use strict"; + global.SOULBINDABLE_ITEMS = [ { equipment: 'ad_astra:space_helmet', item: 'endermanoverhaul:soul_pearl' }, { equipment: 'ad_astra:space_suit', item: 'endermanoverhaul:soul_pearl' }, @@ -7,5 +10,5 @@ global.SOULBINDABLE_ITEMS = [ { 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' }, + { 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 881a885ca..ec40a9568 100644 --- a/kubejs/startup_scripts/species/constants.js +++ b/kubejs/startup_scripts/species/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.SPECIES_DISABLED_BLOCKS = [ @@ -22,13 +22,9 @@ global.SPECIES_DISABLED_ITEMS = [ 'species:bewereager_head', 'species:quake_head', 'species:ghoul_head', - 'species:wicked_mask', - 'species:wicked_swapper', 'species:spectralibur', - 'species:smoke_bomb', 'species:wicked_dope', 'species:monster_meal', - 'species:wicked_treat', 'species:ghoul_tongue', 'species:broken_links', 'species:werefang', diff --git a/kubejs/startup_scripts/tacz/constants.js b/kubejs/startup_scripts/tacz/constants.js index 319b52e24..1f404d387 100644 --- a/kubejs/startup_scripts/tacz/constants.js +++ b/kubejs/startup_scripts/tacz/constants.js @@ -1,6 +1,6 @@ +// priority: -100 "use strict"; - global.TACZ_GUNS_INDEX = [ //TACZ //Pistol @@ -134,7 +134,7 @@ global.TACZ_AMMO_INDEX = [ 'tacz:357mag', 'tacz:46x30', 'tacz:57x28', - 'tacz:30x06', + 'tacz:30_06', 'tacz:50ae', 'tacz:45_70', 'tacz:762x25', @@ -346,12 +346,14 @@ global.TACZ_ENABLED_GUNS = [ //Pistol 'ulv_guns:flintlock', 'create_armorer:pistol_revolver_torque', + 'create_armorer:pistol_auto_stress', 'applied_armorer:niklas_pistol_semi_right', 'applied_armorer:niklas_pistol_semi_pride', 'applied_armorer:niklas_pistol_double_win_win', //Sniper 'tacz:springfield1873', + 'tacz:m700', 'create_armorer:sniper_semi_clockwork', 'applied_armorer:moritz_sniper_semi_k30', @@ -367,7 +369,8 @@ global.TACZ_ENABLED_GUNS = [ 'tacz:db_long', //SMG - + 'create_armorer:smg_auto_crank', + 'applied_armorer:niklas_smg_freedom', //Heavy 'create_armorer:mg_platemag_flywheel', @@ -380,6 +383,7 @@ global.TACZ_ENABLED_GUNS = [ global.TACZ_ENABLED_AMMO = [ 'tacz:12g', 'tacz:45_70', + 'tacz:30_06', 'create_armorer:slap', 'create_armorer:rbapb', 'create_armorer:40mmhe', diff --git a/kubejs/startup_scripts/tfc/constants.js b/kubejs/startup_scripts/tfc/constants.js index 8f5a680ef..24c389857 100644 --- a/kubejs/startup_scripts/tfc/constants.js +++ b/kubejs/startup_scripts/tfc/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; /** @@ -306,7 +306,7 @@ global.TFC_DISABLED_ITEMS = /** @type {const} */ ([ "tfc:ore/ruby", "tfc:ore/sapphire", "tfc:ore/topaz", - + "tfc:ore/gypsum", "tfc:ore/graphite", "tfc:ore/sulfur", "tfc:ore/cinnabar", @@ -315,7 +315,6 @@ global.TFC_DISABLED_ITEMS = /** @type {const} */ ([ "tfc:ore/borax", "tfc:ore/bituminous_coal", "tfc:ore/lignite", - "tfc:ore/halite", // Axles "tfc:wood/axle/acacia", @@ -573,7 +572,7 @@ global.TFC_DISABLED_ITEMS = /** @type {const} */ ([ "tfc:bucket/metal/steel", "tfc:bucket/metal/black_steel", "tfc:bucket/metal/blue_steel", - "tfc:bucket/metal/red_steel", + "tfc:bucket/metal/red_steel" ]); /** Items that need to be hidden, but you want to keep their tags.*/ @@ -600,7 +599,7 @@ global.TFC_HIDDEN_ITEMS = /** @type {const} */ ([ "tfc:wild_crop/squash", "tfc:wild_crop/sugarcane", "tfc:wild_crop/tomato", - "tfc:wild_crop/jute", + "tfc:wild_crop/jute" ]); /** @@ -626,7 +625,7 @@ global.TFC_STONE_TYPES = /** @type {const} */ ([ "basalt", // Exists in GT "diorite", // Exists in GT "andesite", // Exists in GT - "granite", // Exists in GT + "granite" // Exists in GT ]); global.TFC_WOOD_TYPES = /** @type {const} */ ([ @@ -649,7 +648,7 @@ global.TFC_WOOD_TYPES = /** @type {const} */ ([ "spruce", "sycamore", "white_cedar", - "willow", + "willow" ]); global.TFC_HARDWOOD_TYPES = /** @type {const} */ ([ @@ -663,7 +662,7 @@ global.TFC_HARDWOOD_TYPES = /** @type {const} */ ([ "maple", "oak", "rosewood", - "sycamore", + "sycamore" ]); global.TFC_SOFTWOOD_TYPES = /** @type {const} */ ([ @@ -675,46 +674,11 @@ global.TFC_SOFTWOOD_TYPES = /** @type {const} */ ([ "sequoia", "spruce", "white_cedar", - "willow", + "willow" ]); global.TFC_MUD_TYPES = /** @type {const} */ (["silt", "loam", "sandy_loam", "silty_loam"]); -global.TFC_WOOD_ITEM_TYPES_TO_WOOD_DUST = /** @type {const} */ ({ - "#tfc:lumber": { name: "lumber", output: ["1x gtceu:wood_dust"] }, - "#tfc:support_beams": { name: "support_beams", output: ["2x gtceu:wood_dust"] }, - "#tfc:minecarts": { name: "minecarts", output: ["5x gtceu:wood_dust", "1x gtceu:small_wrought_iron_dust"] }, - "#minecraft:signs": { name: "signs", output: ["1x gtceu:wood_dust"] }, - "#minecraft:hanging_signs": { name: "hanging_signs", output: ["1x gtceu:wood_dust"] }, - "#minecraft:logs": { name: "logs", output: ["6x gtceu:wood_dust"] }, - "#minecraft:planks": { name: "planks", output: ["1x gtceu:wood_dust"] }, - "#tfc:bookshelves": { name: "bookshelves", output: ["6x gtceu:wood_dust"] }, - "#minecraft:wooden_doors": { name: "wooden_doors", output: ["2x gtceu:wood_dust"] }, - "#minecraft:wooden_trapdoors": { name: "wooden_trapdoors", output: ["2x gtceu:wood_dust"] }, - "#minecraft:wooden_fences": { name: "wooden_fences", output: ["1x gtceu:wood_dust"] }, - "#forge:fence_gates/wooden": { name: "wooden_fence_gates", output: ["1x gtceu:wood_dust"] }, - "#minecraft:wooden_buttons": { name: "wooden_buttons", output: ["1x gtceu:wood_dust"] }, - "#minecraft:wooden_pressure_plates": { name: "wooden_pressure_plates", output: ["1x gtceu:wood_dust"] }, - "#minecraft:wooden_slabs": { name: "wooden_slabs", output: ["2x gtceu:wood_dust"] }, - "#minecraft:wooden_stairs": { name: "wooden_stairs", output: ["2x gtceu:wood_dust"] }, - "#tfc:tool_racks": { name: "tool_racks", output: ["1x gtceu:wood_dust"] }, - "#tfc:twigs": { name: "twigs", output: ["1x gtceu:wood_dust"] }, - "#tfc:workbenches": { name: "workbenches", output: ["1x gtceu:wood_dust"] }, - "#forge:chests/wooden": { name: "wooden_chests", output: ["8x gtceu:wood_dust"] }, - "#tfc:looms": { name: "looms", output: ["2x gtceu:wood_dust"] }, - "#tfc:sluices": { name: "sluices", output: ["4x gtceu:wood_dust"] }, - "#tfc:barrels": { name: "barrels", output: ["2x gtceu:wood_dust"] }, - "#tfc:lecterns": { name: "lecterns", output: ["4x gtceu:wood_dust"] }, - "#tfc:scribing_tables": { name: "scribing_tables", output: ["1x gtceu:wood_dust"] }, - "#tfc:jar_shelves": { name: "jar_shelves", output: ["1x gtceu:wood_dust"] }, - "#tfcastikorcarts:cart_wheel": { name: "", output: ["1x gtceu:wood_dust"] }, - "#tfcastikorcarts:plow": { name: "plow", output: ["2x gtceu:wood_dust"] }, - "#tfcastikorcarts:animal_cart": { name: "animal_cart", output: ["2x gtceu:wood_dust"] }, - "#tfcastikorcarts:supply_cart": { name: "supply_cart", output: ["2x gtceu:wood_dust"] }, - "#firmalife:food_shelves": { name: "food_shelves", output: ["2x gtceu:wood_dust"] }, - "#firmalife:hangers": { name: "hangers", output: ["1x gtceu:wood_dust"] }, -}); - /** * Π₯Ρ€Π°Π½ΠΈΡ‚ названия Ρ‚ΠΈΠΏΠΎΠ² ΠΏΠΎΠ»ΡƒΠ±Π»ΠΎΠΊΠΎΠ² ΠΈΠ· камня Π² TFC. (НС ΠΊΠΈΡ€ΠΏΠΈΡ‡Π΅ΠΉ) */ @@ -730,135 +694,6 @@ global.TFC_BRICK_SLAB_BLOCK_TYPES = /** @type {const} */ (["bricks", "mossy_bric */ global.SAND_COLORS = /** @type {const} */ (["brown", "white", "black", "red", "yellow", "green", "pink"]); -global.TFC_SIMPLE_MATERIALS = /** @type {const} */ ([ - "gypsum", - "cinnabar", - "cryolite", - "saltpeter", - "sylvite", - "borax", - "halite", - "amethyst", - "opal", - "pyrite", - "topaz", - "bituminous_coal", - "lignite", - "graphite", - "sulfur", - "diamond", - "emerald", - "lapis_lazuli", - "ruby", - "sapphire", -]); - -global.TFC_ORE_TYPES = /** @type {const} */ (["poor", "normal", "rich"]); - -global.TFC_ORE_MATERIALS = /** @type {const} */ ([ - "bismuthinite", - "cassiterite", - "garnierite", - "hematite", - "limonite", - "magnetite", - "malachite", - "native_copper", - "native_gold", - "native_silver", - "sphalerite", - "tetrahedrite", -]); - -global.TFC_FURNACE_MOLD_RECIPE_COMPONENTS = /** @type {const} */ ([ - { input: "tfc:ceramic/unfired_ingot_mold", output: "tfc:ceramic/ingot_mold", name: "ingot_mold" }, - { - input: "tfc:ceramic/unfired_pickaxe_head_mold", - output: "tfc:ceramic/pickaxe_head_mold", - name: "pickaxe_head_mold", - }, - { - input: "tfc:ceramic/unfired_propick_head_mold", - output: "tfc:ceramic/propick_head_mold", - name: "propick_head_mold", - }, - { input: "tfc:ceramic/unfired_axe_head_mold", output: "tfc:ceramic/axe_head_mold", name: "axe_head_mold" }, - { input: "tfc:ceramic/unfired_shovel_head_mold", output: "tfc:ceramic/shovel_head_mold", name: "shovel_head_mold" }, - { input: "tfc:ceramic/unfired_hoe_head_mold", output: "tfc:ceramic/hoe_head_mold", name: "hoe_head_mold" }, - { input: "tfc:ceramic/unfired_chisel_head_mold", output: "tfc:ceramic/chisel_head_mold", name: "chisel_head_mold" }, - { input: "tfc:ceramic/unfired_hammer_head_mold", output: "tfc:ceramic/hammer_head_mold", name: "hammer_head_mold" }, - { input: "tfc:ceramic/unfired_saw_blade_mold", output: "tfc:ceramic/saw_blade_mold", name: "saw_blade_mold" }, - { - input: "tfc:ceramic/unfired_javelin_head_mold", - output: "tfc:ceramic/javelin_head_mold", - name: "javelin_head_mold", - }, - { input: "tfc:ceramic/unfired_sword_blade_mold", output: "tfc:ceramic/sword_blade_mold", name: "sword_blade_mold" }, - { input: "tfc:ceramic/unfired_mace_head_mold", output: "tfc:ceramic/mace_head_mold", name: "mace_head_mold" }, - { input: "tfc:ceramic/unfired_knife_blade_mold", output: "tfc:ceramic/knife_blade_mold", name: "knife_blade_mold" }, - { - input: "tfc:ceramic/unfired_scythe_blade_mold", - output: "tfc:ceramic/scythe_blade_mold", - name: "scythe_blade_mold", - }, - { input: "tfc:ceramic/unfired_bell_mold", output: "tfc:ceramic/bell_mold", name: "bell_mold" }, - { input: "tfc:ceramic/unfired_fire_ingot_mold", output: "tfc:ceramic/fire_ingot_mold", name: "fire_ingot_mold" }, - { input: "tfc:ceramic/unfired_brick", output: "minecraft:brick", name: "brick" }, - { input: "tfc:ceramic/unfired_crucible", output: "tfc:crucible", name: "crucible" }, - { input: "tfc:ceramic/unfired_flower_pot", output: "minecraft:flower_pot", name: "flower_pot" }, - { input: "tfc:ceramic/unfired_pan", output: "tfc:pan/empty", name: "pan" }, - { input: "tfc:ceramic/unfired_blowpipe", output: "tfc:ceramic_blowpipe", name: "ceramic_blowpipe" }, - { input: "tfc:ceramic/unfired_bowl", output: "tfc:ceramic/bowl", name: "bowl" }, - { input: "tfc:ceramic/unfired_fire_brick", output: "tfc:ceramic/fire_brick", name: "fire_brick" }, - { input: "tfc:ceramic/unfired_jug", output: "tfc:ceramic/jug", name: "jug" }, - { input: "tfc:ceramic/unfired_pot", output: "tfc:ceramic/pot", name: "pot" }, - { input: "tfc:ceramic/unfired_spindle_head", output: "tfc:ceramic/spindle_head", name: "spindle_head" }, - { input: "tfc:ceramic/unfired_vessel", output: "tfc:ceramic/vessel", name: "vessel" }, - { input: "tfc:ceramic/unfired_large_vessel", output: "tfc:ceramic/large_vessel", name: "large_vessel" }, - { input: "tfcchannelcasting:unfired_channel", output: "tfcchannelcasting:channel", name: "channel" }, - { input: "tfcchannelcasting:unfired_mold_table", output: "tfcchannelcasting:mold_table", name: "mold_table" }, -]); - -global.TFC_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS = /** @type {const} */ ([ - { input: "5x minecraft:clay_ball", output: "2x tfc:ceramic/unfired_ingot_mold", name: "ingot_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_pickaxe_head_mold", name: "pickaxe_head_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_propick_head_mold", name: "propick_head_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_axe_head_mold", name: "axe_head_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_shovel_head_mold", name: "shovel_head_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_hoe_head_mold", name: "hoe_head_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_chisel_head_mold", name: "chisel_head_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_hammer_head_mold", name: "hammer_head_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_saw_blade_mold", name: "saw_blade_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_javelin_head_mold", name: "javelin_head_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_sword_blade_mold", name: "sword_blade_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_mace_head_mold", name: "mace_head_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_knife_blade_mold", name: "knife_blade_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_scythe_blade_mold", name: "scythe_blade_mold" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_bell_mold", name: "bell_mold" }, - { input: "5x minecraft:clay_ball", output: "2x tfc:ceramic/unfired_flower_pot", name: "flower_pot" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_pan", name: "pan" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_blowpipe", name: "ceramic_blowpipe" }, - { input: "5x minecraft:clay_ball", output: "4x tfc:ceramic/unfired_bowl", name: "bowl" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_jug", name: "jug" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_pot", name: "pot" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_spindle_head", name: "spindle_head" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_vessel", name: "vessel" }, - { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_large_vessel", name: "large_vessel" }, - { input: "5x minecraft:clay_ball", output: "tfcchannelcasting:unfired_heart_mold", name: "heart_mold" }, - { input: "5x minecraft:clay_ball", output: "2x rnr:unfired_roof_tile", name: "roof_tile" }, - { input: "5x tfc:fire_clay", output: "tfc:ceramic/unfired_fire_ingot_mold", name: "fire_ingot_mold" }, - { input: "5x tfc:fire_clay", output: "tfc:ceramic/unfired_crucible", name: "crucible" }, - { input: "5x tfc:fire_clay", output: "tfcchannelcasting:unfired_channel", name: "channel" }, - { input: "5x tfc:fire_clay", output: "tfcchannelcasting:unfired_mold_table", name: "mold_table" }, -]); - -global.TFC_BATCH_TO_BOTTLE_ASSEMBLING_RECIPE_COMPONENTS = /** @type {const} */ ([ - { input: "tfc:silica_glass_batch", output: "tfc:silica_glass_bottle", name: "silica_glass_bottle" }, - { input: "tfc:hematitic_glass_batch", output: "tfc:hematitic_glass_bottle", name: "hematitic_glass_bottle" }, - { input: "tfc:olivine_glass_batch", output: "tfc:olivine_glass_bottle", name: "olivine_glass_bottle" }, - { input: "tfc:volcanic_glass_batch", output: "tfc:volcanic_glass_bottle", name: "volcanic_glass_bottle" }, -]); - global.TFC_MEAT_RECIPE_COMPONENTS = /** @type {const} */ ([ { input: "tfc:food/horse_meat", output: "tfc:food/cooked_horse_meat", name: "cooked_horse_meat" }, { input: "tfc:food/bear", output: "tfc:food/cooked_bear", name: "cooked_bear" }, @@ -920,40 +755,8 @@ global.TFC_MEAT_RECIPE_COMPONENTS = /** @type {const} */ ([ { input: "tfg:food/raw_long_pig_filet", output: "tfg:food/cooked_long_pig_filet", name: "cooked_long_pig_filet" }, { input: "tfg:food/raw_cruncher_ribs", output: "tfg:food/cooked_cruncher_ribs", name: "cooked_cruncher_ribs" }, { input: "tfg:food/raw_stickastackatick", output: "tfg:food/cooked_stickastackatick", name: "cooked_stickastackatick" }, -]); + { input: "tfg:food/raw_burger_patty", output: "tfg:food/cooked_burger_patty", name: "cooked_burger_patty" } -global.TFC_QUERN_POWDER_RECIPE_COMPONENTS = /** @type {const} */ ([ - { input: "#forge:dusts/coke", output: "4x tfc:powder/coke", name: "coke_powder" }, - { input: "#forge:dusts/amethyst", output: "4x tfc:powder/amethyst", name: "amethyst_powder" }, - { input: "#forge:dusts/diamond", output: "4x tfc:powder/diamond", name: "diamond_powder" }, - { input: "#forge:dusts/emerald", output: "4x tfc:powder/emerald", name: "emerald_powder" }, - { input: "#forge:dusts/lapis", output: "4x tfc:powder/lapis_lazuli", name: "lapis_powder" }, - { input: "#forge:dusts/opal", output: "4x tfc:powder/opal", name: "opal_powder" }, - { input: "#forge:dusts/pyrite", output: "4x tfc:powder/pyrite", name: "pyrite_powder" }, - { input: "#forge:dusts/ruby", output: "4x tfc:powder/ruby", name: "ruby_powder" }, - { input: "#forge:dusts/sapphire", output: "4x tfc:powder/sapphire", name: "sapphire_powder" }, - { input: "#forge:dusts/topaz", output: "4x tfc:powder/topaz", name: "topaz_powder" }, - { input: "#forge:dusts/gold", output: "4x tfc:powder/native_gold", name: "gold_powder" }, - { input: "#forge:dusts/silver", output: "4x tfc:powder/native_silver", name: "silver_powder" }, - { input: "#forge:dusts/copper", output: "4x tfc:powder/native_copper", name: "copper_powder" }, - { input: "#forge:dusts/cassiterite", output: "4x tfc:powder/cassiterite", name: "cassiterite_powder" }, - { input: "#forge:dusts/bismuth", output: "4x tfc:powder/bismuthinite", name: "bismuth_powder" }, - { input: "#forge:dusts/garnierite", output: "4x tfc:powder/garnierite", name: "garnierite_powder" }, - { input: "#forge:dusts/nickel", output: "4x tfc:powder/garnierite", name: "nickel_powder" }, - { input: "#forge:dusts/sphalerite", output: "4x tfc:powder/sphalerite", name: "sphalerite_powder" }, - { input: "#forge:dusts/magnetite", output: "4x tfc:powder/magnetite", name: "magnetite_powder" }, - { input: "#forge:dusts/tetrahedrite", output: "4x tfc:powder/tetrahedrite", name: "tetrahedrite_powder" }, - { input: "#forge:dusts/malachite", output: "4x tfc:powder/malachite", name: "malachite_powder" }, - { input: "#forge:dusts/yellow_limonite", output: "4x tfc:powder/limonite", name: "limonite_powder" }, - { input: "#forge:dusts/hematite", output: "4x tfc:powder/hematite", name: "hematite_powder" }, - { input: "#forge:dusts/sulfur", output: "4x tfc:powder/sulfur", name: "sulfur_powder" }, - { input: "#forge:dusts/saltpeter", output: "4x tfc:powder/saltpeter", name: "saltpeter_powder" }, - { input: "#forge:dusts/salt", output: "4x tfc:powder/salt", name: "salt_powder" }, - { input: "#forge:dusts/graphite", output: "4x tfc:powder/graphite", name: "graphite_powder" }, - { input: "#forge:dusts/borax", output: "4x tfc:powder/flux", name: "flux_powder" }, - { input: "#forge:dusts/soda_ash", output: "4x tfc:powder/soda_ash", name: "soda_ash" }, - { input: "gtceu:charcoal_dust", output: "2x tfc:powder/charcoal", name: "charcoal" }, - { input: "tfc:ore/sylvite", output: "4x tfc:powder/sylvite", name: "sylvite" }, ]); global.TFC_GRAINS = /** @type {const} */ (["barley", "maize", "oat", "rye", "rice", "wheat"]); @@ -980,24 +783,19 @@ global.TFC_JAMS = /** @type {const} */ ([ "plum", "red_apple", "pumpkin_chunks", - "melon_slice", + "melon_slice" ]); global.TFC_GREENHOUSE_FRUIT_RECIPE_COMPONENTS = /** @type {const} */ ([ { input: "tfc:plant/cherry_sapling", fluid_amount: 8000, output: "32x tfc:food/cherry", name: "cherry" }, - { - input: "tfc:plant/green_apple_sapling", - fluid_amount: 8000, - output: "32x tfc:food/green_apple", - name: "green_apple", - }, + { input: "tfc:plant/green_apple_sapling", fluid_amount: 8000, output: "32x tfc:food/green_apple", name: "green_apple" }, { input: "tfc:plant/lemon_sapling", fluid_amount: 8000, output: "32x tfc:food/lemon", name: "lemon" }, { input: "tfc:plant/olive_sapling", fluid_amount: 8000, output: "32x tfc:food/olive", name: "olive" }, { input: "tfc:plant/orange_sapling", fluid_amount: 8000, output: "32x tfc:food/orange", name: "orange" }, { input: "tfc:plant/peach_sapling", fluid_amount: 8000, output: "32x tfc:food/peach", name: "peach" }, { input: "tfc:plant/plum_sapling", fluid_amount: 8000, output: "32x tfc:food/plum", name: "plum" }, { input: "tfc:plant/red_apple_sapling", fluid_amount: 8000, output: "32x tfc:food/red_apple", name: "red_apple" }, - { input: "tfc:plant/banana_sapling", fluid_amount: 8000, output: "32x tfc:food/banana", name: "banana" }, + { input: "tfc:plant/banana_sapling", fluid_amount: 8000, output: "32x tfc:food/banana", name: "banana" } ]); global.TFC_GREENHOUSE_VEGETABLE_RECIPE_COMPONENTS = /** @type {const} */ ([ @@ -1022,21 +820,11 @@ global.TFC_GREENHOUSE_VEGETABLE_RECIPE_COMPONENTS = /** @type {const} */ ([ { input: "8x tfc:seeds/papyrus", fluid_amount: 4000, output: "24x tfc:papyrus", name: "papyrus" }, { input: "8x tfc:seeds/pumpkin", fluid_amount: 4000, output: "24x tfc:pumpkin", name: "pumpkin" }, { input: "8x tfc:seeds/melon", fluid_amount: 4000, output: "24x tfc:melon", name: "melon" }, - { - input: "8x tfc:seeds/red_bell_pepper", - fluid_amount: 4000, - output: "24x tfc:food/red_bell_pepper", - name: "red_bell_pepper", - }, - { - input: "8x tfc:seeds/yellow_bell_pepper", - fluid_amount: 4000, - output: "24x tfc:food/yellow_bell_pepper", - name: "yellow_bell_pepper", - }, + { input: "8x tfc:seeds/red_bell_pepper", fluid_amount: 4000, output: "24x tfc:food/red_bell_pepper", name: "red_bell_pepper" }, + { 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" }, + { input: "8x tfg:flax_seeds", fluid_amount: 4000, output: "24x tfg:flax_product", name: "flax" } ]); global.TFC_GREENHOUSE_BERRY_RECIPE_COMPONENTS = /** @type {const} */ ([ @@ -1045,63 +833,67 @@ global.TFC_GREENHOUSE_BERRY_RECIPE_COMPONENTS = /** @type {const} */ ([ { input: "tfc:plant/gooseberry_bush", fluid_amount: 6000, output: "3x tfc:food/gooseberry", name: "gooseberry" }, { input: "tfc:plant/cloudberry_bush", fluid_amount: 6000, output: "3x tfc:food/cloudberry", name: "cloudberry" }, { input: "tfc:plant/strawberry_bush", fluid_amount: 6000, output: "3x tfc:food/strawberry", name: "strawberry" }, - { - input: "tfc:plant/wintergreen_berry_bush", - fluid_amount: 6000, - output: "3x tfc:food/wintergreen_berry", - name: "wintergreen_berry", - }, + { input: "tfc:plant/wintergreen_berry_bush", fluid_amount: 6000, output: "3x tfc:food/wintergreen_berry", name: "wintergreen_berry" }, { input: "tfc:plant/blackberry_bush", fluid_amount: 6000, output: "3x tfc:food/blackberry", name: "blackberry" }, { input: "tfc:plant/raspberry_bush", fluid_amount: 6000, output: "3x tfc:food/raspberry", name: "raspberry" }, { input: "tfc:plant/blueberry_bush", fluid_amount: 6000, output: "3x tfc:food/blueberry", name: "blueberry" }, { input: "tfc:plant/elderberry_bush", fluid_amount: 6000, output: "3x tfc:food/elderberry", name: "elderberry" }, - { input: "tfc:plant/cranberry_bush", fluid_amount: 6000, output: "3x tfc:food/cranberry", name: "cranberry" }, + { input: "tfc:plant/cranberry_bush", fluid_amount: 6000, output: "3x tfc:food/cranberry", name: "cranberry" } ]); global.TFC_MILKS = /** @type {const} */ ([ { id: "minecraft:milk" }, { id: "firmalife:yak_milk" }, - { id: "firmalife:goat_milk" }, + { id: "firmalife:goat_milk" } // Uncomment this if firmalife ever makes this obtainable //{id: 'firmalife:coconut_milk'}, ]); global.TFC_CURDS_AND_CHEESES = /** @type {const} */ ([ { - id: "milk", - input_fluid: "tfc:curdled_milk", - curd: "firmalife:food/milk_curd", - cheese1: "gouda", - cheese2: "cheddar", + id: "cow", milk: "minecraft:milk", curdled_fluid: "tfc:curdled_milk", curd: "firmalife:food/milk_curd", + unsalted_cheese: "firmalife:food/gouda", unsalted_wheel: "firmalife:gouda_wheel", + salted_cheese: "firmalife:food/cheddar", salted_wheel: "firmalife:cheddar_wheel" }, { - id: "yak", - input_fluid: "firmalife:curdled_yak_milk", - curd: "firmalife:food/yak_curd", - cheese1: "shosha", - cheese2: "rajya_metok", + id: "yak", milk: "firmalife:yak_milk", curdled_fluid: "firmalife:curdled_yak_milk", curd: "firmalife:food/yak_curd", + unsalted_cheese: "firmalife:food/shosha", unsalted_wheel: "firmalife:shosha_wheel", + salted_cheese: "firmalife:food/rajya_metok", salted_wheel: "firmalife:rajya_metok_wheel" }, { - id: "goat", - input_fluid: "firmalife:curdled_goat_milk", - curd: "firmalife:food/goat_curd", - cheese1: "feta", - cheese2: "chevre", + id: "goat", milk: "firmalife:goat_milk", curdled_fluid: "firmalife:curdled_goat_milk", curd: "firmalife:food/goat_curd", + unsalted_cheese: "firmalife:food/feta", unsalted_wheel: "firmalife:feta_wheel", + salted_cheese: "firmalife:food/chevre", salted_wheel: "firmalife:chevre_wheel" }, + { + id: "ox", milk: "tfc_gurman:ox_milk", curdled_fluid: "tfc_gurman:curdled_ox_milk", curd: "tfc_gurman:ox_curd", + unsalted_cheese: "tfc_gurman:ox_brinza_slice", unsalted_wheel: "tfc_gurman:ox_brinza_wheel", + salted_cheese: null, salted_wheel: null + }, + { + id: "sheep", milk: "tfc_gurman:sheep_milk", curdled_fluid: "tfc_gurman:curdled_sheep_milk", curd: "tfc_gurman:sheep_curd", + unsalted_cheese: "tfc_gurman:sheep_brinza_slice", unsalted_wheel: "tfc_gurman:sheep_brinza_wheel", + salted_cheese: null, salted_wheel: null + }, + { + id: "alpaca", milk: "tfc_gurman:alpaca_milk", curdled_fluid: "tfc_gurman:curdled_alpaca_milk", curd: "tfc_gurman:alpaca_curd", + unsalted_cheese: "tfc_gurman:alpaca_brinza_slice", unsalted_wheel: "tfc_gurman:alpaca_brinza_wheel", + salted_cheese: null, salted_wheel: null + } ]); global.TFC_DRY_MUD_BRICKS = /** @type {const} */ ([ "tfc:mud_brick/loam", "tfc:mud_brick/sandy_loam", "tfc:mud_brick/silt", - "tfc:mud_brick/silty_loam", + "tfc:mud_brick/silty_loam" ]); global.TFC_WET_MUD_BRICKS = /** @type {const} */ ([ "tfc:drying_bricks/loam", "tfc:drying_bricks/sandy_loam", "tfc:drying_bricks/silt", - "tfc:drying_bricks/silty_loam", + "tfc:drying_bricks/silty_loam" ]); global.TFC_ALCOHOL = /** @type {const} */ ([ @@ -1113,7 +905,7 @@ global.TFC_ALCOHOL = /** @type {const} */ ([ { id: "tfc:whiskey", ingredient: "tfc:food/wheat_flour" }, { id: "tfc:corn_whiskey", ingredient: "tfc:food/maize_flour" }, { id: "tfc:rye_whiskey", ingredient: "tfc:food/rye_flour" }, - { id: "firmalife:mead", ingredient: "firmalife:raw_honey" }, + { id: "firmalife:mead", ingredient: "firmalife:raw_honey" } ]); global.TFC_MAGMA_BLOCKS = /** @type {const} */ ([ @@ -1123,7 +915,7 @@ global.TFC_MAGMA_BLOCKS = /** @type {const} */ ([ "tfc:rock/magma/rhyolite", "tfc:rock/magma/basalt", "tfc:rock/magma/andesite", - "tfc:rock/magma/dacite", + "tfc:rock/magma/dacite" ]); /** @@ -1192,4 +984,4 @@ global.TFC_EQUIPMENT_METALS = /** @type {const} */ ([ 'tfc:volcanic_mountains', 'tfc:volcanic_oceanic_mountain_lake', 'tfc:volcanic_oceanic_mountains' - ]) \ No newline at end of file + ]) diff --git a/kubejs/startup_scripts/tfc/icon_sets.js b/kubejs/startup_scripts/tfc/icon_sets.js deleted file mode 100644 index 7a90f7027..000000000 --- a/kubejs/startup_scripts/tfc/icon_sets.js +++ /dev/null @@ -1,39 +0,0 @@ -// priority: 0 -"use strict"; - -function registerTFCIconSets(event) { - - event.create('tfc_borax').parent('rough') - event.create('tfc_gypsum').parent('rough') - event.create('tfc_graphite').parent('rough') - event.create('tfc_saltpeter').parent('fine') - event.create('tfc_sulfur').parent('fine') - - event.create('tfc_amethyst').parent('ruby') - event.create('tfc_redstone').parent('fine') - event.create('tfc_diamond').parent('diamond') - event.create('tfc_emerald').parent('emerald') - event.create('tfc_lapis').parent('lapis') - event.create('tfc_opal').parent('opal') - event.create('tfc_pyrite').parent('bright') - event.create('tfc_ruby').parent('ruby') - event.create('tfc_sapphire').parent('gem_horizontal') - event.create('tfc_topaz').parent('gem_vertical') - event.create('tfc_realgar').parent('emerald') - - event.create('tfc_bismuth').parent('bright') - event.create('tfc_cassiterite').parent('bright') - event.create('tfc_garnierite').parent('bright') - event.create('tfc_hematite').parent('metallic') - event.create('tfc_limonite').parent('metallic') - event.create('tfc_magnetite').parent('dull') - event.create('tfc_malachite').parent('shiny') - event.create('tfc_copper').parent('bright') - event.create('tfc_gold').parent('shiny') - event.create('tfc_silver').parent('shiny') - event.create('tfc_sphalerite').parent('dull') - event.create('tfc_tetrahedrite').parent('dull') - event.create('tfc_chromite').parent('dull') - - event.create('nether_quartz').parent('quartz') -} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfc/item_stack_modifiers.js b/kubejs/startup_scripts/tfc/item_stack_modifiers.js new file mode 100644 index 000000000..2f1261fd7 --- /dev/null +++ b/kubejs/startup_scripts/tfc/item_stack_modifiers.js @@ -0,0 +1,34 @@ +// priority: 0 +"use strict"; + +TFCEvents.registerItemStackModifier(event => { + + // for adding bowls to dynamic_bowl-type foods + event.withInput('tfg:add_bowl', (output, input) => { + TFC.misc.getFood(output).setBowl(input) + return output; + }); + + // for adding bowls to foods that are not dynamic_bowls + event.withInput('tfg:force_add_bowl', (output, input) => { + if (input.nbt) { + output.orCreateTag.merge(input.nbt) + } + + if (output.nbt) { + output.nbt.put('bowl', { Count: 1, id: 'minecraft:bowl' }); + } + else { + output.nbt = { bowl: { Count: true, id: 'minecraft:bowl' }}; + } + return output; + }); + + // if you're doing any sort of recipe where you need the nbt copied from input to output + event.withInput('tfg:copy_nbt', (output, input) => { + if (input.nbt) { + output.orCreateTag.merge(input.nbt) + } + return output + }) +}) \ No newline at end of file diff --git a/kubejs/startup_scripts/tfc/tag_prefixes.js b/kubejs/startup_scripts/tfc/tag_prefixes.js index 3bb8c59c8..8b864f8ac 100644 --- a/kubejs/startup_scripts/tfc/tag_prefixes.js +++ b/kubejs/startup_scripts/tfc/tag_prefixes.js @@ -5,7 +5,6 @@ const registerTFCTagPrefixes = (event) => { // These ores break worldgen if removed somehow? // TagPrefix.ORES.remove(TagPrefix.ore) - TagPrefix.ORES.remove(TagPrefix.oreDeepslate) TagPrefix.ORES.remove(TagPrefix.oreTuff) TagPrefix.ORES.remove(TagPrefix.oreSand) TagPrefix.ORES.remove(TagPrefix.oreRedSand) @@ -34,6 +33,8 @@ const registerTFCTagPrefixes = (event) => { .materialSupplier(() => material) .materialIconType(GTMaterialIconType.ore) .generationCondition(shouldGenerateOre) + + TFGHelpers.registerCobbleBlock(stoneTypeName, `tfc:rock/cobble/${stoneTypeName}`); }) // Custom stone types @@ -48,6 +49,8 @@ const registerTFCTagPrefixes = (event) => { .materialIconType(GTMaterialIconType.ore) .generationCondition(shouldGenerateOre) .materialSupplier(() => GTMaterials.Blackstone) + + TFGHelpers.registerCobbleBlock('pyroxenite', 'tfg:rock/cobble_blackstone'); event.create('dripstone', 'ore') .stateSupplier(() => Block.getBlock('minecraft:dripstone_block').defaultBlockState()) @@ -56,14 +59,8 @@ const registerTFCTagPrefixes = (event) => { .materialIconType(GTMaterialIconType.ore) .generationCondition(shouldGenerateOre) .materialSupplier(() => GTCEuAPI.materialManager.getMaterial('dripstone')) - // Redefine deepslate so it has the correct sound effects (yes I fixed this in GTM as well) - event.create('deepslate', 'ore') - .stateSupplier(() => Block.getBlock('minecraft:deepslate').defaultBlockState()) - .baseModelLocation('minecraft:block/deepslate') - .unificationEnabled(true) - .materialIconType(GTMaterialIconType.ore) - .generationCondition(shouldGenerateOre) - .materialSupplier(() => GTMaterials.Deepslate) + + TFGHelpers.registerCobbleBlock('dripstone', 'tfg:rock/cobble_dripstone'); event.create('moon_stone', 'ore') .stateSupplier(() => Block.getBlock('tfg:rock/hardened_moon_stone').defaultBlockState()) @@ -71,6 +68,8 @@ const registerTFCTagPrefixes = (event) => { .unificationEnabled(true) .materialIconType(GTMaterialIconType.ore) .generationCondition(shouldGenerateOre) + + TFGHelpers.registerCobbleBlock('moon_stone', 'ad_astra:moon_cobblestone'); event.create('moon_deepslate', 'ore') .stateSupplier(() => Block.getBlock('tfg:rock/hardened_moon_deepslate').defaultBlockState()) @@ -79,6 +78,8 @@ const registerTFCTagPrefixes = (event) => { .materialIconType(GTMaterialIconType.ore) .generationCondition(shouldGenerateOre) + TFGHelpers.registerCobbleBlock('moon_deepslate', 'tfg:rock/cobble_moon_deepslate'); + event.create('mars_stone', 'ore') .stateSupplier(() => Block.getBlock('tfg:rock/hardened_mars_stone').defaultBlockState()) .baseModelLocation('ad_astra:block/mars_stone') @@ -86,6 +87,8 @@ const registerTFCTagPrefixes = (event) => { .materialIconType(GTMaterialIconType.ore) .generationCondition(shouldGenerateOre) + TFGHelpers.registerCobbleBlock('mars_stone', 'ad_astra:mars_cobblestone'); + event.create('venus_stone', 'ore') .stateSupplier(() => Block.getBlock('tfg:rock/hardened_venus_stone').defaultBlockState()) .baseModelLocation('ad_astra:block/venus_stone') @@ -93,6 +96,8 @@ const registerTFCTagPrefixes = (event) => { .materialIconType(GTMaterialIconType.ore) .generationCondition(shouldGenerateOre) + TFGHelpers.registerCobbleBlock('venus_stone', 'ad_astra:venus_cobblestone'); + event.create('mercury_stone', 'ore') .stateSupplier(() => Block.getBlock('tfg:rock/hardened_mercury_stone').defaultBlockState()) .baseModelLocation('ad_astra:block/mercury_stone') @@ -100,10 +105,14 @@ const registerTFCTagPrefixes = (event) => { .materialIconType(GTMaterialIconType.ore) .generationCondition(shouldGenerateOre) + TFGHelpers.registerCobbleBlock('mercury_stone', 'ad_astra:mercury_cobblestone'); + event.create('glacio_stone', 'ore') .stateSupplier(() => Block.getBlock('tfg:rock/hardened_glacio_stone').defaultBlockState()) .baseModelLocation('ad_astra:block/glacio_stone') .unificationEnabled(true) .materialIconType(GTMaterialIconType.ore) .generationCondition(shouldGenerateOre) + + TFGHelpers.registerCobbleBlock('glacio_stone', 'ad_astra:glacio_cobblestone'); } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/biotech/items.biotech.js b/kubejs/startup_scripts/tfg/biotech/items.biotech.js new file mode 100644 index 000000000..681f12e91 --- /dev/null +++ b/kubejs/startup_scripts/tfg/biotech/items.biotech.js @@ -0,0 +1,39 @@ +"use strict"; + +function registerTFGBiotechItems(event) { + + event.create('tfg:stainless_steel_needle') + .unstackable() + .maxDamage(9999) + + //#region Lab Equipment + + global.LAB_EQUIPMENT_CONTAINERS.forEach((item) => { + event.create(`tfg:${item.type}`, 'tfc:glass_bottle') + .fluidTagAccept('tfg:not_solid') + .capacity(item.capacity) + .translationKey(`item.tfg.lab_equipment.${item.type}`) + .tag('tfg:lab_equipment_containers') + .tag('tfc:fluid_item_ingredient_empty_containers') + .tag('tfc:glass_bottles') + }) + + event.create('tfg:lab_equipment') + .translationKey('item.tfg.lab_equipment.lab_equipment') + .tooltip(Text.translatable('tfg.tooltip.lab_equipment.set')) + + event.create('tfg:dirty_lab_equipment') + .translationKey('item.tfg.lab_equipment.dirty_lab_equipment') + .tooltip(Text.translatable('tfg.tooltip.lab_equipment.set_dirty')) + //#endregion + + + //#region Bioline + + event.create('tfg:cellulose_matrix') + event.create('tfg:smooth_endoplasmic_reticula') + event.create('tfg:rough_endoplasmic_reticula') + event.create('tfg:alpha_keratin') + + //#endregion +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/biotech/materials.bioline.js b/kubejs/startup_scripts/tfg/biotech/materials.bioline.js new file mode 100644 index 000000000..7649d7ac0 --- /dev/null +++ b/kubejs/startup_scripts/tfg/biotech/materials.bioline.js @@ -0,0 +1,115 @@ +// priority: 0 +"use strict"; + +const registerTFGBiolineMaterials = (event) => { + + /* event.create('mysterious_ooze') + .liquid(new GTFluidBuilder().temperature(293)) + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(293)) + .color(0x500bbf) + .fluidTemp(69420) + .dust() + .cableProperties(GTValues.V[GTValues.LV], 69, 0, true) // Voltage, Amperage, EU loss, Is Superconductor. + .gem(2, 4000) + .element(GTElements.C) + .ore(2, 3) + .color(0x7D2DDB) + .iconSet(GTMaterialIconSet.LIGNITE) + .ingot() + .components('1x andesite', '1x iron') + .color(0x839689) + .iconSet(GTMaterialIconSet.DULL) + .flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_GEAR, GTMaterialFlags.GENERATE_SMALL_GEAR) + */ + + //#region Decellularization + + event.create('tfg:lauryl_alcohol') + .liquid(new GTFluidBuilder().temperature(293)) + .components('12x carbon', '26x hydrogen', '1x oxygen', 'unknown') + .iconSet(GTMaterialIconSet.FINE) + .color(0x9C734E) + .secondaryColor(0xA12727) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:chlorosulfuric_acid') + .liquid(new GTFluidBuilder().temperature(293).attribute(GTFluidAttributes.ACID)) + .components('1x hydrogen', '1x sulfur', '3x oxygen', '1x chlorine') + .iconSet(GTMaterialIconSet.FINE) + .color(0xAA8772) + .secondaryColor(0xF0D5CE) + + event.create('tfg:sodium_dodecyl_sulfate') + .liquid(new GTFluidBuilder().temperature(293)) + .components('12x carbon', '25x hydrogen', '1x sodium', '1x sulfur', '4x oxygen') + .iconSet(GTMaterialIconSet.FINE) + .color(0xCA9851) + .secondaryColor(0xF0D5CE) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:sodium_hypochlorite') + .liquid(new GTFluidBuilder().temperature(293)) + .components('1x sodium', '1x oxygen', '1x chlorine') + .iconSet(GTMaterialIconSet.FINE) + .color(0x64995B) + .secondaryColor(0xE5EEAE) + + //#endregion + //#region Basic Feeder Cells + + event.create('tfg:mutative_yeast') + .liquid(new GTFluidBuilder().customStill().temperature(310)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:proto_growth_medium') + .liquid(new GTFluidBuilder().customStill().temperature(293)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:fibroblast_feeder_cells') + .liquid(new GTFluidBuilder().customStill().temperature(310)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + //#endregion + //#region Gram Stain + + event.create('tfg:gram_stain') + .liquid(new GTFluidBuilder().customStill().temperature(293)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:crystal_violet') + .liquid(new GTFluidBuilder().customStill().temperature(293)) + .components('25x carbon', '30x hydrogen', '1x chlorine', '3x nitrogen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:n_n_dimethylaniline') + .liquid(new GTFluidBuilder().temperature(293)) + .components('8x carbon', '11x hydrogen', '1x nitrogen') + .iconSet(GTMaterialIconSet.FINE) + .color(0x525467) + .secondaryColor(0x6B81A1) + + //#endregion + //#region Triglycerides + + event.create('tfg:triglyceride_oil') + .liquid(new GTFluidBuilder().customStill().temperature(293)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:cholesterol') + .dust() + .components('27x carbon', '46x hydrogen', '1x oxygen') + .iconSet(GTMaterialIconSet.FINE) + .color(0x7F86C2) + .secondaryColor(0xE1E7F0) + + event.create('tfg:butyric_acid') + .liquid(new GTFluidBuilder().temperature(293).attribute(GTFluidAttributes.ACID)) + .components('4x carbon', '8x hydrogen', '2x oxygen') + .formula('C3H7COOH') + .iconSet(GTMaterialIconSet.FINE) + .color(0x3F3E3E) + .secondaryColor(0x8E4949) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + //#endregion +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/blocks.casings.js b/kubejs/startup_scripts/tfg/blocks.casings.js new file mode 100644 index 000000000..0faab3877 --- /dev/null +++ b/kubejs/startup_scripts/tfg/blocks.casings.js @@ -0,0 +1,125 @@ +"use strict"; + +function registerTFGCasingBlocks(event) { + + global.TFG_MACHINE_CASINGS.forEach(type => { + event.create(`tfg:casings/${type}`) + .translationKey(`block.tfg.casings.${type}`) + .model(`tfg:block/casings/${type}`) + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_light_gray') + }) + + event.create(`tfg:casings/machine_casing_stainless_evaporation`) + .translationKey(`block.tfg.casings.machine_casing_stainless_evaporation`) + .model(`tfg:block/casings/machine_casing_stainless_evaporation`) + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_light_gray') + + 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') + .soundType('metal') + .resistance(6).hardness(5) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .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('gtceu:mineable/pickaxe_or_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('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_orange') + .defaultTranslucent() + + event.create('tfg:casings/bioculture_rotor_primary', 'tfg:active_particle_emitter') + .translationKey('block.tfg.casings.bioculture_rotor_primary') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_light_gray') + .activeOffset(1.6, 2, 1.6) + .activeVelocity(0, 0, 0) + .activeParticle('minecraft:landing_lava') + .activeCount(10) + .activeForced(false) + + 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('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_light_gray') + + event.create('tfg:casings/machine_casing_ultraviolet', 'gtceu:active') + .translationKey('block.tfg.casings.machine_casing_ultraviolet') + .soundType('glass') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_light_gray') + + event.create('tfg:casings/heat_pipe_casing') + .translationKey('block.tfg.casings.heat_pipe_casing') + .model('tfg:block/casings/heat_pipe_casing') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_black') + + event.create('tfg:sample_rack', 'tfg:active_cardinal') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_light_gray') + .notSolid() + .renderType('cutout') + .opaque(false) + + event.create('tfg:growth_monitor', 'tfg:active_cardinal') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_light_gray') + .notSolid() + .renderType('cutout') + .opaque(false) + + event.create('tfg:casings/machine_casing_sterilizing_pipes', 'tfg:active_cardinal') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_brown') + + event.create('tfg:casings/test_casing') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBoth('c:hidden_from_recipe_viewers') + +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/blocks.plants.js b/kubejs/startup_scripts/tfg/blocks.crops.js similarity index 71% rename from kubejs/startup_scripts/tfg/blocks.plants.js rename to kubejs/startup_scripts/tfg/blocks.crops.js index 47208d86b..700f6610d 100644 --- a/kubejs/startup_scripts/tfg/blocks.plants.js +++ b/kubejs/startup_scripts/tfg/blocks.crops.js @@ -198,7 +198,7 @@ const registerTFGCrops = (event) => { .type('spreading') .soundType('crop') .spreadingFruitBlock('betterend:cave_pumpkin') - .seeds('betterend:cave_pumpkin_seeds') + .seeds('betterend:cave_pumpkin_plant_seeds') .hardness(0.2) .tagBoth('tfc:wild_crops') .tagBlock('minecraft:mineable/hoe') @@ -310,115 +310,4 @@ const registerTFGCrops = (event) => { .tagBlock('minecraft:mineable/hoe') .tagBlock('tfc:can_be_snow_piled') .tagItem('c:hidden_from_recipe_viewers') - - // Mars Saplings - - event.create('tfg:saplings/crimson', 'tfc:sapling') - .features('tfg:mars/tree/crimson') - .tagBoth('minecraft:saplings') - .tagBlock('tfg:do_not_destroy_in_space') - .tagBlock('tfc:can_be_snow_piled') - .growthDays(6) - .soundType('nether_wart') - .defaultCutout() - .noCollision() - - event.create('tfg:saplings/warped', 'tfc:sapling') - .features('tfg:mars/tree/warped') - .tagBoth('minecraft:saplings') - .tagBlock('tfg:do_not_destroy_in_space') - .tagBlock('tfc:can_be_snow_piled') - .growthDays(6) - .soundType('nether_wart') - .defaultCutout() - .noCollision() - - event.create('tfg:saplings/alphacene', 'tfc:sapling') - .features('species:alphacene_mushroom') - .tagBoth('minecraft:saplings') - .tagBlock('tfg:do_not_destroy_in_space') - .tagBlock('tfc:can_be_snow_piled') - .growthDays(3) - .soundType('nether_wart') - .defaultCutout() - .noCollision() - - event.create('tfg:saplings/strophar', 'tfc:sapling') - .features('tfg:mars/tree/strophar_mini') - .tagBoth('minecraft:saplings') - .tagBlock('tfg:do_not_destroy_in_space') - .tagBlock('tfc:can_be_snow_piled') - .growthDays(7) - .soundType('nether_wart') - .defaultCutout() - .noCollision() - - event.create('tfg:saplings/aeronos', 'tfc:sapling') - .features('tfg:mars/tree/aeronos_mini') - .tagBoth('minecraft:saplings') - .tagBlock('tfg:do_not_destroy_in_space') - .tagBlock('tfc:can_be_snow_piled') - .growthDays(9) - .soundType('nether_wart') - .defaultCutout() - .noCollision() - - event.create('tfg:saplings/glacian', 'tfc:sapling') - .features('tfg:mars/tree/glacian_mini') - .tagBoth('minecraft:saplings') - .tagBlock('tfg:do_not_destroy_in_space') - .tagBlock('tfc:can_be_snow_piled') - .growthDays(9) - .soundType('nether_wart') - .defaultCutout() - .noCollision() - - // Glacian tree stuff - event.create('tfg:glacian_leaves', 'tfc:leaves') - .soundType('azalea_leaves') - .tagBlock('minecraft:mineable/hoe') - .tagBlock('tfg:do_not_destroy_in_space') - .mapColor('snow') - .seasonalColors(false) - .fallenLeaves(leaves => { - leaves.noCollision() - leaves.notSolid() - leaves.defaultCutout() - leaves.soundType('azalea_leaves') - leaves.tagBlock('minecraft:mineable/hoe') - leaves.tagBlock('minecraft:replaceable') - leaves.noDynamicTinting() - leaves.models((modelType, generator) => { - if (modelType.layers != 8) { - generator.parent("tfc:block/groundcover/fallen_leaves_height" + modelType.height); - generator.texture("all", "ad_astra:block/glacian_leaves"); - } else { - generator.parent("ad_astra:block/glacian_leaves"); - } - }) - }) - - event.create('tfg:glacian_wood', 'tfc:log') - .tagBoth('minecraft:logs') - .tagItem('minecraft:logs_that_burn') - .tagItem('ad_astra:glacian_logs') - .tagBlock('minecraft:mineable/axe') - .soundType('wood') - .stripped(stripped => { - stripped.tagBoth('minecraft:logs') - stripped.tagItem('minecraft:logs_that_burn') - stripped.tagItem('ad_astra:glacian_logs') - stripped.tagBlock('minecraft:mineable/axe') - stripped.soundType('wood') - }) - - event.create('tfg:glacian_log', 'tfc:log') - .tagBoth('minecraft:logs') - .tagBoth('c:hidden_from_recipe_viewers') - .soundType('wood') - .stripped(stripped => { - stripped.tagBoth('minecraft:logs') - stripped.tagBoth('c:hidden_from_recipe_viewers') - stripped.soundType('wood') - }) } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/blocks.js b/kubejs/startup_scripts/tfg/blocks.js index c24c4b1b7..c358ce8c7 100644 --- a/kubejs/startup_scripts/tfg/blocks.js +++ b/kubejs/startup_scripts/tfg/blocks.js @@ -2,369 +2,34 @@ const registerTFGBlocks = (event) => { - registerTFGNetherBlocks(event) - registerTFGSpaceBlocks(event) + registerTFGDimensionMarkerBlocks(event) + registerTFGCrops(event) + registerTFGVaseBlocks(event) + registerTFGSupportBlocks(event) registerTFGAqueductBlocks(event) - registerTFGCrops(event) - - event.create('tfg:exhaust_vent_particle', 'tfg:active_particle_emitter') - .textureAll('tfg:block/titanium_concrete') - .soundType('metal') - .hardness(5) - .resistance(6) + registerTFGRockBlocks(event) + registerTFGVanillaStoneBlocks(event) + + registerTFGWorldGenTrees(event) + registerTFGWorldGenBeneathDecoBlocks(event) + registerTFGWorldGenMoonDecoBlocks(event) + registerTFGWorldGenMarsDecoBlocks(event) + registerTFGWorldGenVenusDecoBlocks(event) + registerTFGWorldGenEuropaDecoBlocks(event) + + registerTFGCasingBlocks(event) + registerTFGNuclearBlocks(event) + + + // Temporary, remove in 0.12 + event.create('gtceu:ostrum_linear_accelerator') .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_black') - .speedFactor(1.1) - .activeOffset(3.5, 2, 3.5) - .activeVelocity(0.0, 0.0, 0.0) - .activeParticle('tfg:cooling_steam') - .activeBase(0.0, 12.5, 0.0) - .activeCount(8) - .activeForced(false) - .hasTicker(true) - - // #region Machine Casings - - global.TFG_MACHINE_CASINGS.forEach(type => { - event.create(`tfg:casings/${type}`) - .translationKey(`block.tfg.casings.${type}`) - .model(`tfg:block/casings/${type}`) - .soundType('copper') - .hardness(5) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_light_gray') - }) - - event.create(`tfg:casings/machine_casing_stainless_evaporation`) - .translationKey(`block.tfg.casings.machine_casing_stainless_evaporation`) - .model(`tfg:block/casings/machine_casing_stainless_evaporation`) - .soundType('copper') - .hardness(5) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_light_gray') - - 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') - .soundType('metal') - .resistance(6).hardness(5) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .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('gtceu:mineable/pickaxe_or_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('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_orange') - .defaultTranslucent() - - event.create('tfg:casings/bioculture_rotor_primary', 'tfg:active_particle_emitter') - .translationKey('block.tfg.casings.bioculture_rotor_primary') - .soundType('copper') - .hardness(5) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_light_gray') - .activeOffset(1.6, 2, 1.6) - .activeVelocity(0, 0, 0) - .activeParticle('minecraft:landing_lava') - .activeCount(10) - .activeForced(false) - - 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('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_light_gray') - - event.create('tfg:casings/machine_casing_ultraviolet', 'gtceu:active') - .translationKey('block.tfg.casings.machine_casing_ultraviolet') - .soundType('glass') - .hardness(5) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_light_gray') + .requiresTool(false) + .textureAll('tfg:item/deprecated') - event.create('tfg:casings/heat_pipe_casing') - .translationKey('block.tfg.casings.heat_pipe_casing') - .model('tfg:block/casings/heat_pipe_casing') - .soundType('copper') - .hardness(5) - .resistance(6) + event.create('gtceu:steam_bloomery') .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_black') - - event.create('tfg:sample_rack', 'tfg:active_cardinal') - .soundType('copper') - .hardness(5) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_light_gray') - .notSolid() - .renderType('cutout') - .opaque(false) - - event.create('tfg:growth_monitor', 'tfg:active_cardinal') - .soundType('copper') - .hardness(5) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_light_gray') - .notSolid() - .renderType('cutout') - .opaque(false) - - event.create('tfg:casings/machine_casing_sterilizing_pipes', 'tfg:active_cardinal') - .soundType('copper') - .hardness(5) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .mapColor('color_brown') - - //#endregion - - event.create('tfg:titanium_concrete') - .translationKey('block.tfg.titanium_concrete') - .model('tfg:block/concrete/titanium_concrete') - .soundType('stone') - .mapColor('stone') - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .tagBoth('tfg:titanium_concrete') - - event.create('tfg:polished_titanium_concrete') - .translationKey('block.tfg.polished_titanium_concrete') - .model('tfg:block/concrete/polished_titanium_concrete') - .soundType('stone') - .mapColor('stone') - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .tagBoth('tfg:titanium_concrete') - - event.create('tfg:titanium_concrete_tile') - .translationKey('block.tfg.titanium_concrete_tile') - .model('tfg:block/concrete/titanium_concrete_tile') - .soundType('stone') - .mapColor('stone') - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .tagBoth('tfg:titanium_concrete') - - event.create('tfg:titanium_concrete_tile_small') - .translationKey('block.tfg.titanium_concrete_tile_small') - .model('tfg:block/concrete/titanium_concrete_tile_small') - .soundType('stone') - .mapColor('stone') - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .tagBoth('tfg:titanium_concrete') - - event.create('tfg:titanium_concrete_bricks') - .translationKey('block.tfg.titanium_concrete_bricks') - .model('tfg:block/concrete/titanium_concrete_bricks') - .soundType('stone') - .mapColor('stone') - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .tagBoth('tfg:titanium_concrete') - - event.create('tfg:titanium_concrete_bricks_small') - .translationKey('block.tfg.titanium_concrete_bricks_small') - .model('tfg:block/concrete/titanium_concrete_bricks_small') - .soundType('stone') - .mapColor('stone') - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .tagBoth('tfg:titanium_concrete') - - event.create('tfg:titanium_concrete_bricks_square') - .translationKey('block.tfg.titanium_concrete_bricks_square') - .model('tfg:block/concrete/titanium_concrete_bricks_square') - .soundType('stone') - .mapColor('stone') - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .tagBoth('tfg:titanium_concrete') - - // #region insulation - event.create('tfg:glacian_wool_frame') - .soundType('copper') - .hardness(4) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - - event.create('tfg:aes_insulation_frame') - .soundType('copper') - .hardness(5) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - - event.create('tfg:moderate_core_frame') - .soundType('copper') - .hardness(4) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - - event.create('tfg:impure_moderate_core_frame') - .soundType('copper') - .hardness(5) - .resistance(6) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - - // Unfinished Insulation - event.create('tfg:moderate_core') - .soundType('ancient_debris') - .hardness(7) - .resistance(8) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .model('tfg:block/fission/moderate_core') - - event.create('tfg:impure_moderate_core') - .soundType('ancient_debris') - .hardness(7) - .resistance(8) - .tagBlock('gtceu:mineable/pickaxe_or_wrench') - .model('tfg:block/fission/impure_moderate_core') - - // #region Decorative vases - global.MINECRAFT_DYE_NAMES.forEach(color => { - event.create(`tfg:decorative_vase/generated/${color}`, 'cardinal') - .model(`tfg:block/decorative_vase/loot_vase_${color}`) - .soundType('decorated_pot') - .hardness(0.7) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_${color}`) - .box(2, 0, 2, 14, 20, 14) - .fullBlock(false) - .opaque(false) - .renderType('cutout') - - event.create(`tfg:decorative_vase/${color}`, 'cardinal') - .model(`tfg:block/decorative_vase/vase_${color}`) - .soundType('decorated_pot') - .hardness(0.7) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_${color}`) - .box(2, 0, 2, 14, 20, 14) - .fullBlock(false) - .opaque(false) - .renderType('cutout') - .blockEntity(be => { - be.attach('tfc:inventory', { - width: 9, - height: 1, - size: size => size.isSmallerThan('large') - }) - be.rightClickOpensInventory() - }) - - event.create(`tfg:decorative_vase/unfired/${color}`, 'cardinal') - .model(`tfg:block/decorative_vase/vase_unfired_${color}`) - .soundType('decorated_pot') - .hardness(0.7) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_${color}`) - .box(2, 0, 2, 14, 20, 14) - .fullBlock(false) - .opaque(false) - .renderType('cutout') - }) - event.create('tfg:decorative_vase', 'cardinal') - .model('tfg:block/decorative_vase/vase') - .soundType('decorated_pot') - .hardness(0.7) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_gray`) - .box(2, 0, 2, 14, 20, 14) - .fullBlock(false) - .opaque(false) - .renderType('cutout') - .blockEntity(be => { - be.attach('tfc:inventory', { - width: 9, - height: 1, - size: size => size.isSmallerThan('large') - }) - be.rightClickOpensInventory() - }) - - event.create('tfg:decorative_vase/unfired', 'cardinal') - .model('tfg:block/decorative_vase/vase_unfired') - .soundType('decorated_pot') - .hardness(0.7) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_gray`) - .box(2, 0, 2, 14, 20, 14) - .fullBlock(false) - .opaque(false) - .renderType('cutout') - - // #endregion - - // #region Reconstituted Stone - - event.create(`tfg:rock/stone_wall`, 'wall') - .soundType(global.STONE_CHARACS.reconstituted.sound) - .textureAll('minecraft:block/stone') - .tagBoth('tfg:rock_wall') - .mapColor(global.STONE_CHARACS.reconstituted.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - let SHAPES = ['stairs', 'wall'] - SHAPES.forEach(shape => { - event.create(`tfg:rock/smooth_stone_${shape}`, shape) - .soundType(global.STONE_CHARACS.reconstituted.sound) - .textureAll('minecraft:block/smooth_stone') - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .mapColor(global.STONE_CHARACS.reconstituted.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - SHAPES = ['stairs', 'slab', 'wall'] - SHAPES.forEach(shape => { - event.create(`tfg:rock/cracked_bricks_stone_${shape}`, shape) - .soundType(global.STONE_CHARACS.reconstituted.sound) - .textureAll('minecraft:block/cracked_stone_bricks') - .tagBoth(`tfg:brick_${shape}s`.replace(/ss/g, 's')) - .mapColor(global.STONE_CHARACS.reconstituted.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - event.create('tfg:rock/quartz_wall', 'wall') - .soundType('stone') - .textureAll('minecraft:block/quartz_block_side') - .tagBoth('tfg:rock_wall') - .mapColor('snow') - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - event.create('tfg:rock/smooth_quartz_wall', 'wall') - .soundType('stone') - .textureAll('minecraft:block/quartz_block_bottom') - .tagBoth('tfg:rock_wall') - .mapColor('snow') - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - // #endregion Reconstituted Stone + .requiresTool(false) + .textureAll('tfg:item/deprecated') } diff --git a/kubejs/startup_scripts/tfg/blocks.nether.js b/kubejs/startup_scripts/tfg/blocks.nether.js deleted file mode 100644 index c5fd2c975..000000000 --- a/kubejs/startup_scripts/tfg/blocks.nether.js +++ /dev/null @@ -1,586 +0,0 @@ -"use strict"; - -function registerTFGNetherBlocks(event) { - const SHAPES = ['stairs', 'slab', 'wall'] - - // #region Raw Stones - SHAPES.forEach(shape => { - event.create(`tfg:rock/deepslate_${shape}`, shape) - .soundType(global.STONE_CHARACS.deepslate.sound) - .textureAll('minecraft:block/deepslate') - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .mapColor(global.STONE_CHARACS.deepslate.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/dripstone_${shape}`, shape) - .soundType(global.STONE_CHARACS.dripstone.sound) - .textureAll('minecraft:block/dripstone_block') - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/crackrack_${shape}`, shape) - .soundType(global.STONE_CHARACS.crackrack.sound) - .textureAll('beneath:block/crackrack') - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) - .mapColor(global.STONE_CHARACS.crackrack.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - // #endregion Raw Stones - - // #region Hardened Stones - event.create('tfg:rock/hardened_deepslate') - .soundType(global.STONE_CHARACS.deepslate.sound) - .property(BlockProperties.AXIS) - .requiresTool(true) - .item(item => { - item.modelJson({ parent: 'minecraft:item/deepslate' }) - }) - .tagBlock('tfc:can_carve') - .tagBoth('forge:stone') - .tagBoth('tfc:rock/hardened') - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .mapColor(global.STONE_CHARACS.deepslate.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - event.create('tfg:rock/hardened_blackstone') - .soundType(global.STONE_CHARACS.blackstone.sound) - .requiresTool(true) - .item(item => { - item.modelJson({ parent: 'minecraft:item/blackstone' }) - }) - .tagBlock('tfc:can_carve') - .tagBoth('forge:stone') - .tagBoth('tfc:rock/hardened') - .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) - .mapColor(global.STONE_CHARACS.blackstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - event.create('tfg:rock/hardened_dripstone') - .soundType(global.STONE_CHARACS.dripstone.sound) - .stoneSoundType() - .requiresTool(true) - .item(item => { - item.modelJson({ parent: 'minecraft:item/dripstone_block' }) - }) - .tagBlock('tfc:can_carve') - .tagBoth('forge:stone') - .tagBoth('tfc:rock/hardened') - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - // #endregion Hardened stones - - // #region Spikes - event.create('tfg:spike/deepslate_spike', 'tfc:rock_spike') - .textureAll('minecraft:block/deepslate') - .soundType(global.STONE_CHARACS.deepslate.sound) - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .tagBlock('minecraft:mineable/pickaxe') - .hardness(0.8) - .resistance(0.8) - .requiresTool(true) - - event.create('tfg:spike/blackstone_spike', 'tfc:rock_spike') - .textureAll('minecraft:block/blackstone') - .soundType(global.STONE_CHARACS.blackstone.sound) - .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) - .tagBlock('minecraft:mineable/pickaxe') - .hardness(0.8) - .resistance(0.8) - .requiresTool(true) - - event.create('tfg:spike/dripstone_spike', 'tfc:rock_spike') - .textureAll('minecraft:block/dripstone_block') - .soundType(global.STONE_CHARACS.dripstone.sound) - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .tagBlock('minecraft:mineable/pickaxe') - .hardness(0.8) - .resistance(0.8) - .requiresTool(true) - - // #endregion Spikes - - // #region Loose Stones - event.create('tfg:loose/deepslate', 'tfc:loose_rock') - .soundType(global.STONE_CHARACS.deepslate.sound) - .itemTexture('tfg:item/loose/deepslate') - .rockTypeModel(global.STONE_CHARACS.deepslate.type) - .translationKey("block.tfg.loose.deepslate") - .tagBlock('tfc:loose_rocks') - .tagItem('tfc:any_knapping') - .tagItem('tfc:rock_knapping') - .tagItem(`tfc:${global.STONE_CHARACS.deepslate.type}_rock`) - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .tagItem("rnr:loose_rock_items") - - event.create('tfg:loose/dripstone', 'tfc:loose_rock') - .soundType(global.STONE_CHARACS.dripstone.sound) - .itemTexture('tfg:item/loose/dripstone') - .rockTypeModel(global.STONE_CHARACS.dripstone.type) - .translationKey("block.tfg.loose.dripstone") - .tagBlock('tfc:loose_rocks') - .tagItem('tfc:any_knapping') - .tagItem('tfc:rock_knapping') - .tagItem(`tfc:${global.STONE_CHARACS.dripstone.type}_rock`) - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .tagItem("rnr:loose_rock_items") - - event.create('tfg:loose/crackrack', 'tfc:loose_rock') - .soundType(global.STONE_CHARACS.crackrack.sound) - .itemTexture('tfg:item/loose/crackrack') - .rockTypeModel(global.STONE_CHARACS.crackrack.type) - .translationKey("block.tfg.loose.crackrack") - .tagBlock('tfc:loose_rocks') - .tagItem('tfc:any_knapping') - .tagItem('tfc:rock_knapping') - .tagItem(`tfc:${global.STONE_CHARACS.crackrack.type}_rock`) - .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) - .tagItem("rnr:loose_rock_items") - - // #endregion Loose rocks - - // #region Cobblestones - - // Deepslate - event.create('tfg:rock/mossy_cobble_deepslate') - .soundType(global.STONE_CHARACS.deepslate.sound) - .tagBoth('forge:cobblestone') - .tagBoth('forge:cobblestone/normal') - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .mapColor(global.STONE_CHARACS.deepslate.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/mossy_cobble_deepslate_${shape}`, shape) - .soundType(global.STONE_CHARACS.deepslate.sound) - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .mapColor(global.STONE_CHARACS.deepslate.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - // Blackstone - event.create('tfg:rock/cobble_blackstone') - .soundType(global.STONE_CHARACS.blackstone.sound) - .tagBoth('forge:cobblestone') - .tagBoth('forge:cobblestone/normal') - .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) - .mapColor(global.STONE_CHARACS.blackstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/cobble_blackstone_${shape}`, shape) - .soundType(global.STONE_CHARACS.blackstone.sound) - .textureAll('minecraft:block/blackstone_top') - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) - .mapColor(global.STONE_CHARACS.blackstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - event.create('tfg:rock/mossy_cobble_blackstone') - .soundType(global.STONE_CHARACS.blackstone.sound) - .tagBoth('forge:cobblestone') - .tagBoth('forge:cobblestone/normal') - .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) - .mapColor(global.STONE_CHARACS.blackstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/mossy_cobble_blackstone_${shape}`, shape) - .soundType(global.STONE_CHARACS.blackstone.sound) - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) - .mapColor(global.STONE_CHARACS.blackstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - // Dripstone - event.create('tfg:rock/cobble_dripstone') - .soundType(global.STONE_CHARACS.dripstone.sound) - .tagBoth('forge:cobblestone') - .tagBoth('forge:cobblestone/normal') - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/cobble_dripstone_${shape}`, shape) - .soundType(global.STONE_CHARACS.dripstone.sound) - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - event.create('tfg:rock/mossy_cobble_dripstone') - .soundType(global.STONE_CHARACS.dripstone.sound) - .tagBoth('forge:cobblestone') - .tagBoth('forge:cobblestone/normal') - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/mossy_cobble_dripstone_${shape}`, shape) - .soundType(global.STONE_CHARACS.dripstone.sound) - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - // Crackrack - event.create('tfg:rock/cobble_crackrack') - .soundType(global.STONE_CHARACS.crackrack.sound) - .tagBoth('forge:cobblestone') - .tagBoth('forge:cobblestone/normal') - .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) - .mapColor(global.STONE_CHARACS.crackrack.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/cobble_crackrack_${shape}`, shape) - .soundType(global.STONE_CHARACS.crackrack.sound) - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) - .mapColor(global.STONE_CHARACS.crackrack.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - event.create('tfg:rock/mossy_cobble_crackrack') - .soundType(global.STONE_CHARACS.crackrack.sound) - .tagBoth('forge:cobblestone') - .tagBoth('forge:cobblestone/normal') - .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) - .mapColor(global.STONE_CHARACS.crackrack.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/mossy_cobble_crackrack_${shape}`, shape) - .soundType(global.STONE_CHARACS.crackrack.sound) - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) - .mapColor(global.STONE_CHARACS.crackrack.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - // #region Smooth (Polished/Cut) Stones - - event.create('tfg:rock/polished_crackrack') - .soundType(global.STONE_CHARACS.crackrack.sound) - .tagBoth('forge:smooth_stone') - .tagBoth('tfc:igneous_intrusive_items') - .tagBoth('tfc:rock/smooth') - .mapColor('crimson_stem') - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/polished_crackrack_${shape}`, shape) - .soundType(global.STONE_CHARACS.crackrack.sound) - .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) - .mapColor(global.STONE_CHARACS.crackrack.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - // #endregion Smooth (Polished/Cut) Stones - - // #region Gravels - event.create('tfg:rock/gravel_deepslate') - .soundType('gravel') - .tagBoth('forge:gravel') - .tagBoth('tfc:rock/gravel') - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .mapColor(global.STONE_CHARACS.deepslate.mapColor) - .tagBlock('minecraft:mineable/shovel') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - event.create('tfg:rock/gravel_blackstone') - .soundType('gravel') - .tagBoth('forge:gravel') - .tagBoth('tfc:rock/gravel') - .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) - .mapColor(global.STONE_CHARACS.blackstone.mapColor) - .tagBlock('minecraft:mineable/shovel') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - event.create('tfg:rock/gravel_dripstone') - .soundType('gravel') - .tagBoth('forge:gravel') - .tagBoth('tfc:rock/gravel') - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/shovel') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - event.create('tfg:rock/gravel_crackrack') - .soundType('gravel') - .tagBoth('forge:gravel') - .tagBoth('tfc:rock/gravel') - .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) - .mapColor(global.STONE_CHARACS.crackrack.mapColor) - .tagBlock('minecraft:mineable/shovel') - .tagBlock('tfc:can_landslide') - .fullBlock(true) - .opaque(true) - - // #endregion Gravels - - // #region Bricks / Decorative - - // Deepslate - SHAPES.forEach(shape => { - event.create(`tfg:rock/cracked_bricks_deepslate_${shape}`, shape) - .soundType(global.STONE_CHARACS.deepslate.sound) - .textureAll('minecraft:block/cracked_deepslate_bricks') - .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .mapColor(global.STONE_CHARACS.deepslate.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/cracked_tiles_deepslate_${shape}`, shape) - .soundType(global.STONE_CHARACS.deepslate.sound) - .textureAll('minecraft:block/cracked_deepslate_tiles') - .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .mapColor(global.STONE_CHARACS.deepslate.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - event.create('tfg:rock/mossy_bricks_deepslate') - .soundType(global.STONE_CHARACS.deepslate.sound) - .tagBoth('minecraft:stone_bricks') - .tagBoth('forge:stone_bricks') - .tagBoth('tfc:rock/bricks') - .tagBoth('tfc:rock/mossy_bricks') - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .mapColor(global.STONE_CHARACS.deepslate.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/mossy_bricks_deepslate_${shape}`, shape) - .soundType(global.STONE_CHARACS.deepslate.sound) - .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) - .mapColor(global.STONE_CHARACS.deepslate.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - // Blackstone - SHAPES.forEach(shape => { - event.create(`tfg:rock/cracked_bricks_blackstone_${shape}`, shape) - .soundType(global.STONE_CHARACS.blackstone.sound) - .textureAll('minecraft:block/cracked_polished_blackstone_bricks') - .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) - .mapColor(global.STONE_CHARACS.blackstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - event.create('tfg:rock/mossy_bricks_blackstone') - .soundType(global.STONE_CHARACS.blackstone.sound) - .tagBoth('minecraft:stone_bricks') - .tagBoth('forge:stone_bricks') - .tagBoth('tfc:rock/bricks') - .tagBoth('tfc:rock/mossy_bricks') - .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) - .mapColor(global.STONE_CHARACS.blackstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/mossy_bricks_blackstone_${shape}`, shape) - .soundType(global.STONE_CHARACS.blackstone.sound) - .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) - .mapColor(global.STONE_CHARACS.blackstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - // Dripstone - event.create('tfg:rock/cracked_bricks_dripstone') - .soundType(global.STONE_CHARACS.dripstone.sound) - .tagBoth('minecraft:stone_bricks') - .tagBoth('forge:stone_bricks') - .tagBoth('tfc:rock/bricks') - .tagBoth('tfc:rock/mossy_bricks') - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/cracked_bricks_dripstone_${shape}`, shape) - .soundType(global.STONE_CHARACS.dripstone.sound) - .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - event.create('tfg:rock/mossy_bricks_dripstone') - .soundType(global.STONE_CHARACS.dripstone.sound) - .tagBoth('minecraft:stone_bricks') - .tagBoth('forge:stone_bricks') - .tagBoth('tfc:rock/bricks') - .tagBoth('tfc:rock/mossy_bricks') - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/mossy_bricks_dripstone_${shape}`, shape) - .soundType(global.STONE_CHARACS.dripstone.sound) - .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) - .mapColor(global.STONE_CHARACS.dripstone.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - // Crackrack - SHAPES.forEach(shape => { - event.create(`tfg:rock/cracked_bricks_nether_${shape}`, shape) - .soundType(global.STONE_CHARACS.nether.sound) - .textureAll('minecraft:block/cracked_nether_bricks') - .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.nether.type}_items`) - .mapColor(global.STONE_CHARACS.nether.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - event.create('tfg:rock/mossy_bricks_nether') - .soundType(global.STONE_CHARACS.nether.sound) - .tagBoth('minecraft:stone_bricks') - .tagBoth('forge:stone_bricks') - .tagBoth('tfc:rock/bricks') - .tagBoth('tfc:rock/mossy_bricks') - .tagBoth(`tfc:${global.STONE_CHARACS.nether.type}_items`) - .mapColor(global.STONE_CHARACS.nether.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - - SHAPES.forEach(shape => { - event.create(`tfg:rock/mossy_bricks_nether_${shape}`, shape) - .soundType(global.STONE_CHARACS.nether.sound) - .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) - .tagBoth(`tfc:${global.STONE_CHARACS.nether.type}_items`) - .mapColor(global.STONE_CHARACS.nether.mapColor) - .tagBlock('minecraft:mineable/pickaxe') - .fullBlock(true) - .opaque(true) - }) - - // #endregion Bricks / Decorative - - // #region Plants - event.create('tfg:mushroom_roots', 'tfg:decorative_plant') - .soundType('nether_wart') - .tagItem('tfc:plants') - - event.create('tfg:mushroom_sprouts', 'tfg:decorative_plant') - .soundType('nether_wart') - .tagItem('tfc:plants') - - event.create('tfg:charred_log') - .fullBlock(true) - .woodSoundType() - .property(BlockProperties.AXIS) - .tagBoth('minecraft:mineable/axe') - .tagBoth('tfc:logs_that_log') - .tagBoth('afc:logs_that_log') - .tagBoth('minecraft:logs') - .mapColor('black') -} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/constants.js b/kubejs/startup_scripts/tfg/constants.js index 195f649da..efbac9cbe 100644 --- a/kubejs/startup_scripts/tfg/constants.js +++ b/kubejs/startup_scripts/tfg/constants.js @@ -1,3 +1,4 @@ +// priority: -100 "use strict"; /** @@ -28,13 +29,17 @@ global.AIRCRAFT_UPGRADES = [ * @type {string[]} - Item IDs */ global.EXTRATERRESTRIAL_RAW_ROCKS = [ + 'minecraft:deepslate', + 'minecraft:blackstone', + 'minecraft:dripstone_block', 'ad_astra:moon_stone', 'ad_astra:moon_deepslate', 'ad_astra:mars_stone', 'ad_astra:venus_stone', 'ad_astra:mercury_stone', 'ad_astra:glacio_stone', - 'gtceu:red_granite' + 'gtceu:red_granite', + 'beneath:crackrack' ] /** @@ -47,7 +52,11 @@ global.EXTRATERRESTRIAL_HARDENED_ROCKS = [ 'tfg:rock/hardened_venus_stone', 'tfg:rock/hardened_mercury_stone', 'tfg:rock/hardened_glacio_stone', - 'tfg:rock/hardened_red_granite' + 'tfg:rock/hardened_red_granite', + 'tfg:rock/hardened_deepslate', + 'tfg:rock/hardened_blackstone', + 'tfg:rock/hardened_dripstone', + 'tfg:rock/hardened_crackrack' ] /** @@ -101,6 +110,21 @@ global.MARS_BIOMES = [ 'tfg:mars/martian_mountains' ] +/** + * @type {string[]} - Biome IDs + */ +global.VENUS_BIOMES = [ + 'tfg:venus/arachnoids', + 'tfg:venus/fractured_pools', + 'tfg:venus/fumaroles', + 'tfg:venus/geysers', + 'tfg:venus/jagged_tablelands', + 'tfg:venus/salt_flats', + 'tfg:venus/stromatolite_beach', + 'tfg:venus/sulfuric_ravine', + 'tfg:venus/scorching_volcanoes' +] + /** * @type {string[]} - Block Names */ @@ -171,8 +195,8 @@ global.FOOD_FRUIT = [ global.STONE_CHARACS = { // Sets of stone block properties used for block registry. deepslate: { sound: 'deepslate', type: "metamorphic", mapColor: 'terracotta_grey' }, - blackstone: { sound: 'deepslate', type: "igneous_intrusive", mapColor: 'color_black' }, - dripstone: { sound: 'dripstone_block', type: "sedimentary", mapColor: 'terracotta' }, + blackstone: { sound: 'stone', type: "igneous_intrusive", mapColor: 'color_black' }, + dripstone: { sound: 'dripstone_block', type: "sedimentary", mapColor: 'terracotta_brown' }, crackrack: { sound: 'netherrack', type: "igneous_intrusive", mapColor: 'crimson_stem' }, nether: { sound: 'nether_bricks', type: "igneous_intrusive", mapColor: 'nether' }, moon: { sound: 'stone', type: "igneous_intrusive", mapColor: 'terracotta_cyan' }, @@ -192,91 +216,91 @@ global.STONE_CHARACS = { // Sets of stone block properties used for block regist /** @type {Hammering[]} */ global.HAMMERING = [ // Crushing relationships for manual block hammering, create press hammering and gtceu forge hammer crushing. // Beneath - { raw: 'minecraft:deepslate', hammered: 'minecraft:cobbled_deepslate', duration: 10, eu: 16 }, - { raw: 'tfg:rock/hardened_deepslate', hammered: 'minecraft:cobbled_deepslate', duration: 10, eu: 16 }, - { raw: 'minecraft:cobbled_deepslate', hammered: 'tfg:rock/gravel_deepslate', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_deepslate', hammered: 'tfg:rock/gravel_deepslate', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_deepslate', hammered: 'tfc:sand/black', duration: 70, eu: 2 }, + { raw: 'minecraft:deepslate', hammered: 'minecraft:cobbled_deepslate', duration: 10, eu: 7 }, + { raw: 'tfg:rock/hardened_deepslate', hammered: 'minecraft:cobbled_deepslate', duration: 10, eu: 7 }, + { raw: 'minecraft:cobbled_deepslate', hammered: 'tfg:rock/gravel_deepslate', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_deepslate', hammered: 'tfg:rock/gravel_deepslate', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_deepslate', hammered: 'tfc:sand/black', duration: 70, eu: 16 }, - { raw: 'minecraft:blackstone', hammered: 'tfg:rock/cobble_blackstone', duration: 10, eu: 16 }, - { raw: 'tfg:rock/hardened_blackstone', hammered: 'tfg:rock/cobble_blackstone', duration: 10, eu: 16 }, - { raw: 'tfg:rock/cobble_blackstone', hammered: 'tfg:rock/gravel_blackstone', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_blackstone', hammered: 'tfg:rock/gravel_blackstone', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_blackstone', hammered: 'tfc:sand/black', duration: 70, eu: 2 }, + { raw: 'minecraft:blackstone', hammered: 'tfg:rock/cobble_blackstone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/hardened_blackstone', hammered: 'tfg:rock/cobble_blackstone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/cobble_blackstone', hammered: 'tfg:rock/gravel_blackstone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_blackstone', hammered: 'tfg:rock/gravel_blackstone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_blackstone', hammered: 'tfc:sand/black', duration: 70, eu: 16 }, - { raw: 'minecraft:dripstone_block', hammered: 'tfg:rock/cobble_dripstone', duration: 10, eu: 16 }, - { raw: 'tfg:rock/hardened_dripstone', hammered: 'tfg:rock/cobble_dripstone', duration: 10, eu: 16 }, - { raw: 'tfg:rock/cobble_dripstone', hammered: 'tfg:rock/gravel_dripstone', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_dripstone', hammered: 'tfg:rock/gravel_dripstone', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_dripstone', hammered: 'tfc:sand/brown', duration: 70, eu: 2 }, + { raw: 'minecraft:dripstone_block', hammered: 'tfg:rock/cobble_dripstone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/hardened_dripstone', hammered: 'tfg:rock/cobble_dripstone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/cobble_dripstone', hammered: 'tfg:rock/gravel_dripstone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_dripstone', hammered: 'tfg:rock/gravel_dripstone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_dripstone', hammered: 'tfc:sand/brown', duration: 70, eu: 16 }, - { raw: 'beneath:crackrack', hammered: 'tfg:rock/cobble_crackrack', duration: 10, eu: 16 }, - { raw: 'tfg:rock/cobble_crackrack', hammered: 'tfg:rock/gravel_crackrack', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_crackrack', hammered: 'tfg:rock/gravel_crackrack', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_crackrack', hammered: 'tfc:sand/pink', duration: 70, eu: 2 }, + { raw: 'beneath:crackrack', hammered: 'tfg:rock/cobble_crackrack', duration: 10, eu: 7 }, + { raw: 'tfg:rock/cobble_crackrack', hammered: 'tfg:rock/gravel_crackrack', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_crackrack', hammered: 'tfg:rock/gravel_crackrack', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_crackrack', hammered: 'tfc:sand/pink', duration: 70, eu: 16 }, - { raw: 'minecraft:basalt', hammered: 'tfc:rock/cobble/basalt', duration: 10, eu: 16 }, + { raw: 'minecraft:basalt', hammered: 'tfc:rock/cobble/basalt', duration: 10, eu: 7 }, // Moon - { 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: 'tfg:rock/gravel_moon', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_moon', hammered: 'tfg:rock/gravel_moon', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_moon', hammered: 'ad_astra:moon_sand', duration: 70, eu: 2 }, + { raw: 'ad_astra:moon_stone', hammered: 'ad_astra:moon_cobblestone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/hardened_moon_stone', hammered: 'ad_astra:moon_cobblestone', duration: 10, eu: 7 }, + { raw: 'ad_astra:moon_cobblestone', hammered: 'tfg:rock/gravel_moon', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_moon', hammered: 'tfg:rock/gravel_moon', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_moon', hammered: 'ad_astra:moon_sand', duration: 70, eu: 16 }, - { raw: 'ad_astra:moon_deepslate', hammered: 'tfg:rock/cobble_moon_deepslate', duration: 10, eu: 16 }, - { raw: 'tfg:rock/hardened_moon_deepslate', hammered: 'tfg:rock/cobble_moon_deepslate', duration: 10, eu: 16 }, - { raw: 'tfg:rock/cobble_moon_deepslate', hammered: 'tfg:rock/gravel_moon_deepslate', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_moon_deepslate', hammered: 'tfg:rock/gravel_moon_deepslate', duration: 10, eu: 16 }, + { raw: 'ad_astra:moon_deepslate', hammered: 'tfg:rock/cobble_moon_deepslate', duration: 10, eu: 7 }, + { raw: 'tfg:rock/hardened_moon_deepslate', hammered: 'tfg:rock/cobble_moon_deepslate', duration: 10, eu: 7 }, + { raw: 'tfg:rock/cobble_moon_deepslate', hammered: 'tfg:rock/gravel_moon_deepslate', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_moon_deepslate', hammered: 'tfg:rock/gravel_moon_deepslate', duration: 10, eu: 7 }, { raw: 'tfg:rock/gravel_moon_deepslate', hammered: 'ad_astra:moon_sand', duration: 10, eu: 16 }, - { 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: 'tfg:rock/gravel_glacio', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_glacio', hammered: 'tfg:rock/gravel_glacio', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_glacio', hammered: 'tfc:sand/white', duration: 70, eu: 2 }, + { raw: 'ad_astra:glacio_stone', hammered: 'ad_astra:glacio_cobblestone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/hardened_glacio_stone', hammered: 'ad_astra:glacio_cobblestone', duration: 10, eu: 7 }, + { raw: 'ad_astra:glacio_cobblestone', hammered: 'tfg:rock/gravel_glacio', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_glacio', hammered: 'tfg:rock/gravel_glacio', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_glacio', hammered: 'tfc:sand/white', duration: 70, eu: 16 }, // Mars - { 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: 'tfg:rock/gravel_mars', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_mars', hammered: 'tfg:rock/gravel_mars', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_mars', hammered: 'ad_astra:mars_sand', duration: 70, eu: 2 }, + { raw: 'ad_astra:mars_stone', hammered: 'ad_astra:mars_cobblestone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/hardened_mars_stone', hammered: 'ad_astra:mars_cobblestone', duration: 10, eu: 7 }, + { raw: 'ad_astra:mars_cobblestone', hammered: 'tfg:rock/gravel_mars', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_mars', hammered: 'tfg:rock/gravel_mars', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_mars', hammered: 'ad_astra:mars_sand', duration: 70, eu: 16 }, { raw: 'minecraft:red_sandstone', hammered: '4x minecraft:red_sand', duration: 10, eu: 16 }, - { raw: 'gtceu:red_granite', hammered: 'gtceu:red_granite_cobblestone', duration: 10, eu: 16 }, - { raw: 'tfg:rock/hardened_red_granite', hammered: 'gtceu:red_granite_cobblestone', duration: 10, eu: 16 }, - { raw: 'gtceu:red_granite_cobblestone', hammered: 'tfg:rock/gravel_red_granite', duration: 10, eu: 16 }, - { raw: 'gtceu:mossy_red_granite_cobblestone', hammered: 'tfg:rock/gravel_red_granite', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_red_granite', hammered: 'minecraft:red_sand', duration: 70, eu: 2 }, + { raw: 'gtceu:red_granite', hammered: 'gtceu:red_granite_cobblestone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/hardened_red_granite', hammered: 'gtceu:red_granite_cobblestone', duration: 10, eu: 7 }, + { raw: 'gtceu:red_granite_cobblestone', hammered: 'tfg:rock/gravel_red_granite', duration: 10, eu: 7 }, + { raw: 'gtceu:mossy_red_granite_cobblestone', hammered: 'tfg:rock/gravel_red_granite', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_red_granite', hammered: 'minecraft:red_sand', duration: 70, eu: 16 }, // Venus - { 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: 'tfg:rock/gravel_venus', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_venus', hammered: 'tfg:rock/gravel_venus', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_venus', hammered: 'ad_astra:venus_sand', duration: 70, eu: 2 }, + { raw: 'ad_astra:venus_stone', hammered: 'ad_astra:venus_cobblestone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/hardened_venus_stone', hammered: 'ad_astra:venus_cobblestone', duration: 10, eu: 7 }, + { raw: 'ad_astra:venus_cobblestone', hammered: 'tfg:rock/gravel_venus', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_venus', hammered: 'tfg:rock/gravel_venus', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_venus', hammered: 'ad_astra:venus_sand', duration: 70, eu: 16 }, - { raw: 'ad_astra:venus_sandstone', hammered: '4x ad_astra:venus_sand', duration: 70, eu: 2 }, + { raw: 'ad_astra:venus_sandstone', hammered: '4x ad_astra:venus_sand', duration: 70, eu: 16 }, // Mercury - { 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: 'tfg:rock/gravel_mercury', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_mercury', hammered: 'tfg:rock/gravel_mercury', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_mercury', hammered: 'tfc:sand/red', duration: 70, eu: 2 }, + { raw: 'ad_astra:mercury_stone', hammered: 'ad_astra:mercury_cobblestone', duration: 10, eu: 7 }, + { raw: 'tfg:rock/hardened_mercury_stone', hammered: 'ad_astra:mercury_cobblestone', duration: 10, eu: 7 }, + { raw: 'ad_astra:mercury_cobblestone', hammered: 'tfg:rock/gravel_mercury', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_mercury', hammered: 'tfg:rock/gravel_mercury', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_mercury', hammered: 'tfc:sand/red', duration: 70, eu: 16 }, // Europa - { raw: 'ad_astra:permafrost', hammered: 'tfg:rock/cobble_permafrost', duration: 10, eu: 16 }, - { raw: 'tfg:rock/cobble_permafrost', hammered: 'tfg:rock/gravel_permafrost', duration: 10, eu: 16 }, - { raw: 'tfg:rock/mossy_cobble_permafrost', hammered: 'tfg:rock/gravel_permafrost', duration: 10, eu: 16 }, - { raw: 'tfg:rock/gravel_permafrost', hammered: '4x gtceu:ice_dust', duration: 70, eu: 2 }, + { raw: 'ad_astra:permafrost', hammered: 'tfg:rock/cobble_permafrost', duration: 10, eu: 7 }, + { raw: 'tfg:rock/cobble_permafrost', hammered: 'tfg:rock/gravel_permafrost', duration: 10, eu: 7 }, + { raw: 'tfg:rock/mossy_cobble_permafrost', hammered: 'tfg:rock/gravel_permafrost', duration: 10, eu: 7 }, + { raw: 'tfg:rock/gravel_permafrost', hammered: '4x gtceu:ice_dust', duration: 70, eu: 16 }, // Misc - { raw: 'ad_astra:conglomerate', hammered: 'tfc:rock/gravel/conglomerate', duration: 10, eu: 16 }, + { raw: 'ad_astra:conglomerate', hammered: 'tfc:rock/gravel/conglomerate', duration: 10, eu: 7 }, - { raw: 'minecraft:stone', hammered: 'minecraft:cobblestone', duration: 10, eu: 16 } + { raw: 'minecraft:stone', hammered: 'minecraft:cobblestone', duration: 10, eu: 7 } ] global.COOLING_FOODS = [ @@ -296,7 +320,8 @@ global.WARMING_FOODS = [ 'tfc:food/fruit_soup', 'tfc:food/vegetables_soup', 'tfc:food/protein_soup', - 'tfc:food/dairy_soup' + 'tfc:food/dairy_soup', + 'tfg:food/poutine' ]; /** @@ -310,4 +335,23 @@ global.LAB_EQUIPMENT_CONTAINERS = [ {type: 'beaker', capacity: 1296}, {type: 'flask', capacity: 144}, {type: 'vial', capacity: 16} -]; \ No newline at end of file +]; + +/** + * @typedef {Object} spices + * @property {string} plant - Spice Plant + * @property {string} product - Spice Product + */ +/** @type {spices[]} - Item IDs */ +global.SPICES = [ + // Cinnamon is not obtainable so im not including it yet. + { plant: 'firmalife:plant/basil', product: 'firmalife:spice/basil_leaves' }, + { plant: 'firmalife:plant/vanilla', product: 'firmalife:spice/vanilla' }, + // New spices V + { plant: 'firmalife:plant/bay_laurel', product: 'tfg:spice/bay_leaf' }, + { plant: 'firmalife:plant/cardamom', product: 'tfg:spice/cardamom_pods' }, + { plant: 'firmalife:plant/cilantro', product: 'tfg:spice/cilantro_leaves' }, + { plant: 'firmalife:plant/cumin', product: 'tfg:spice/cumin_seeds' }, + { plant: 'firmalife:plant/oregano', product: 'tfg:spice/oregano_leaves' }, + { plant: 'firmalife:plant/pimento', product: 'tfg:spice/allspice' } +]; diff --git a/kubejs/startup_scripts/tfg/dimension_markers.js b/kubejs/startup_scripts/tfg/dimension_markers.js index 053035b80..51301a50b 100644 --- a/kubejs/startup_scripts/tfg/dimension_markers.js +++ b/kubejs/startup_scripts/tfg/dimension_markers.js @@ -1,6 +1,64 @@ // priority: 0 "use strict"; + +function registerTFGDimensionMarkerItems(event) { + event.create('tfg:marker/earth_orbit').tag('c:hidden_from_recipe_viewers') + event.create('tfg:marker/moon_orbit').tag('c:hidden_from_recipe_viewers') + event.create('tfg:marker/mars_orbit').tag('c:hidden_from_recipe_viewers') + event.create('tfg:marker/venus_orbit').tag('c:hidden_from_recipe_viewers') + event.create('tfg:marker/mercury_orbit').tag('c:hidden_from_recipe_viewers') + event.create('tfg:marker/glacio_orbit').tag('c:hidden_from_recipe_viewers') +} + +function registerTFGDimensionMarkerBlocks(event) { + + event.create('tfg:marker/moon') + .stoneSoundType() + .item(item => { + item.modelJson({ parent: 'tfg:block/marker/moon' }) + }) + .tagBlock('c:hidden_from_recipe_viewers') + .fullBlock(true) + .opaque(true) + + event.create('tfg:marker/mars') + .stoneSoundType() + .item(item => { + item.modelJson({ parent: 'tfg:block/marker/mars' }) + }) + .tagBlock('c:hidden_from_recipe_viewers') + .fullBlock(true) + .opaque(true) + + event.create('tfg:marker/venus') + .stoneSoundType() + .item(item => { + item.modelJson({ parent: 'tfg:block/marker/venus' }) + }) + .tagBlock('c:hidden_from_recipe_viewers') + .fullBlock(true) + .opaque(true) + + event.create('tfg:marker/mercury') + .stoneSoundType() + .item(item => { + item.modelJson({ parent: 'tfg:block/marker/mercury' }) + }) + .tagBlock('c:hidden_from_recipe_viewers') + .fullBlock(true) + .opaque(true) + + event.create('tfg:marker/glacio') + .stoneSoundType() + .item(item => { + item.modelJson({ parent: 'tfg:block/marker/glacio' }) + }) + .tagBlock('c:hidden_from_recipe_viewers') + .fullBlock(true) + .opaque(true) +} + function registerTFGDimensionMarkers(event) { event.create('ad_astra:earth_orbit') diff --git a/kubejs/startup_scripts/tfg/entity_types.js b/kubejs/startup_scripts/tfg/entity_types.js deleted file mode 100644 index f39471767..000000000 --- a/kubejs/startup_scripts/tfg/entity_types.js +++ /dev/null @@ -1,26 +0,0 @@ -// priority: 0 -"use strict"; - -function registerTFGEntityTypes(event) { - - //event.create('tfg:moon_rabbit', 'tfc:mammal') - // .withFaunaDefinition('on_ground', 'world_surface_wg') - // .foodTag('tfc:rabbit_food') - // .sized(1, 1) - // .modelSize(1, 1) - // .updateInterval(3) - // .setDeathSound("minecraft:entity.rabbit.death") - // .setAmbientSound("minecraft:entity.rabbit.ambient") - // .setHurtSound(context => "minecraft:entity.rabbit.hurt") - // .canJump(true) - // .setBlockJumpFactor(entity => 0.42) - // // these are the same as tfc rabbits - // .configs(config => { - // config.gestationDays(19) - // config.daysToAdult(80) - // config.childCount(6) - // config.uses(40) - // config.maxFamiliarity(0.35) - // config.eatsRottenFood(true) - // }) -} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/equipment/items.weapons.js b/kubejs/startup_scripts/tfg/equipment/items.weapons.js new file mode 100644 index 000000000..8ad88500c --- /dev/null +++ b/kubejs/startup_scripts/tfg/equipment/items.weapons.js @@ -0,0 +1,15 @@ +"use strict"; + +function registerTFGWeaponItems(event) { + + //Tacz Helper Region + event.create('tfg:flintlock_mechanism') + event.create('tfg:advanced_clockwork_mechanism') + event.create('tfg:certus_mechanism') + + event.create('tfg:small_bullet_casing') + event.create('tfg:shell_bullet_casing') + event.create('tfg:large_bullet_casing') + event.create('tfg:nitrocellulose') + +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/europa/blocks.europa_deco.js b/kubejs/startup_scripts/tfg/europa/blocks.europa_deco.js new file mode 100644 index 000000000..e71f03cab --- /dev/null +++ b/kubejs/startup_scripts/tfg/europa/blocks.europa_deco.js @@ -0,0 +1,39 @@ +"use strict"; + +function registerTFGWorldGenEuropaDecoBlocks(event) { + + + event.create('tfg:corallium_arenicolus_0', 'tfg:tall_decorative_plant') + .height(2) + .soundType('nether_wart') + .tagItem('tfg:venus_plants') + .lightLevel(0.4) + .renderType('translucent') + + event.create('tfg:corallium_arenicolus_1', 'tfg:decorative_plant') + .soundType('nether_wart') + .tagItem('tfg:venus_plants') + .box(3, 0, 3, 13, 14, 13) + + event.create('tfg:corallium_arenicolus_2', 'tfg:decorative_plant') + .soundType('nether_wart') + .tagItem('tfg:venus_plants') + .renderType('translucent') + .box(0, 0, 0, 16, 4, 16) + + event.create('tfg:corallium_arenicolus_3', 'tfg:decorative_plant') + .soundType('nether_wart') + .tagItem('tfg:venus_plants') + .box(3, 0, 3, 13, 14, 13) + + event.create('tfg:corallium_arenicolus_4', 'tfg:decorative_plant') + .soundType('nether_wart') + .tagItem('tfg:venus_plants') + .box(3, 0, 3, 13, 14, 13) + + event.create('tfg:corallium_arenicolus_5', 'tfg:decorative_plant') + .soundType('nether_wart') + .tagItem('tfg:venus_plants') + .box(3, 0, 3, 13, 14, 13) + +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/europa/materials.europa.js b/kubejs/startup_scripts/tfg/europa/materials.europa.js new file mode 100644 index 000000000..8db9c8a1e --- /dev/null +++ b/kubejs/startup_scripts/tfg/europa/materials.europa.js @@ -0,0 +1,17 @@ +"use strict"; + +function registerTFGEuropaMaterials(event) { + + event.create('tfg:etrium') + //.components('1x niobium', '1x molybdenum', '1x ruthenium', '3x carbon', '1x monochloramine') + .color(0x7BFCD7) + .secondaryColor(0x3582D2) + .iconSet(GTMaterialIconSet.getByName('tfc_silver')) + .ingot() + .flags( + GTMaterialFlags.FORCE_GENERATE_BLOCK, + GTMaterialFlags.GENERATE_PLATE, + GTMaterialFlags.GENERATE_ROD + ) + +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/fluids.js b/kubejs/startup_scripts/tfg/fluids.js index 0133e5b7d..3f9cadb31 100644 --- a/kubejs/startup_scripts/tfg/fluids.js +++ b/kubejs/startup_scripts/tfg/fluids.js @@ -3,32 +3,30 @@ const registerTFGFluids = (event) => { - //#region Mars + event.create('tfg:bw_photographic_developer') + .thinTexture(0xa84d11) + .bucketColor(0xa84d11) + .noBlock() + event.create('tfg:color_photographic_developer') + .thinTexture(0xba6900) + .bucketColor(0xba6900) + .noBlock() + + // Moon + event.create('tfg:cryogenized_fluix') + .thickTexture(0xde8cfb) + .bucketColor(0xde8cfb) + .temperature(10) + .noBlock() + + // Mars event.create('tfg:heavy_ammoniacal_water') .thinTexture(0x08733f) .bucketColor(0x08733f) .temperature(236) .noBlock() - //#endregion - - //#region Venus - event.create('tfg:sulfur_fumes') - .stillTexture('tfg:block/planets/venus/sulfur_fumes_still') - .flowingTexture('tfg:block/planets/venus/sulfur_fumes_flow') - .bucketColor(0xc4d984) - .gaseous() - .viscosity(0) - .density(0) - .renderType('translucent') - - event.create('tfg:geyser_slurry', 'tfc:spring') - .stillTexture('tfg:block/planets/venus/geyser_slurry_still') - .flowingTexture('tfg:block/planets/venus/geyser_slurry_flow') - .bucketColor(0xc4d984) - .temperature(1000) - .renderType('translucent') - //#endregion + // Venus } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfc/materials.js b/kubejs/startup_scripts/tfg/icon_sets.js similarity index 74% rename from kubejs/startup_scripts/tfc/materials.js rename to kubejs/startup_scripts/tfg/icon_sets.js index 0e072b9ee..78a554510 100644 --- a/kubejs/startup_scripts/tfc/materials.js +++ b/kubejs/startup_scripts/tfg/icon_sets.js @@ -1,45 +1,48 @@ // priority: 0 "use strict"; -const registerTFCMaterials = (event) => { - const registerStoneMaterial = (rockType, color) => - event.create(`tfg:${rockType}`) - .dust() - .color(color) - .iconSet(GTMaterialIconSet.ROUGH) - .flags( - GTMaterialFlags.MORTAR_GRINDABLE, - GTMaterialFlags.NO_SMASHING, - GTMaterialFlags.NO_SMELTING - ) +function registerTFGIconSets(event) { - /* TFC Stone Types Materials */ - registerStoneMaterial('gabbro', 0x7F8081) - registerStoneMaterial('shale', 0x686567) - registerStoneMaterial('claystone', 0xAF9377) - registerStoneMaterial('limestone', 0xA09885) - registerStoneMaterial('conglomerate', 0xA3977F) - registerStoneMaterial('dolomite', 0x515155) - registerStoneMaterial('chert', 0x7A6756) - registerStoneMaterial('chalk', 0xA4A39F) - registerStoneMaterial('rhyolite', 0x726D69) - registerStoneMaterial('dacite', 0x979797) - registerStoneMaterial('slate', 0x989287) - registerStoneMaterial('phyllite', 0x706B61) - registerStoneMaterial('schist', 0x6E735C) - registerStoneMaterial('gneiss', 0x6A6D60) + event.create('tfc_borax').parent('rough') + event.create('tfc_gypsum').parent('rough') + event.create('tfc_graphite').parent('rough') + event.create('tfc_saltpeter').parent('fine') + event.create('tfc_sulfur').parent('fine') - registerStoneMaterial('dripstone', 0x927965) + event.create('tfc_amethyst').parent('ruby') + event.create('tfc_redstone').parent('fine') + event.create('tfc_diamond').parent('diamond') + event.create('tfc_emerald').parent('emerald') + event.create('tfc_lapis').parent('lapis') + event.create('tfc_opal').parent('opal') + event.create('tfc_pyrite').parent('bright') + event.create('tfc_ruby').parent('ruby') + event.create('tfc_sapphire').parent('gem_horizontal') + event.create('tfc_topaz').parent('gem_vertical') + event.create('tfc_realgar').parent('emerald') + + event.create('tfc_bismuth').parent('bright') + event.create('tfc_cassiterite').parent('bright') + event.create('tfc_garnierite').parent('bright') + event.create('tfc_hematite').parent('metallic') + event.create('tfc_limonite').parent('metallic') + event.create('tfc_magnetite').parent('dull') + event.create('tfc_malachite').parent('shiny') + event.create('tfc_copper').parent('bright') + event.create('tfc_gold').parent('shiny') + event.create('tfc_silver').parent('shiny') + event.create('tfc_sphalerite').parent('dull') + event.create('tfc_tetrahedrite').parent('dull') + event.create('tfc_chromite').parent('dull') + + event.create('nether_quartz').parent('quartz') - registerStoneMaterial('moon_stone', 0x506869) - registerStoneMaterial('moon_deepslate', 0x45474D) - registerStoneMaterial('mars_stone', 0xD08957) - registerStoneMaterial('venus_stone', 0xD5A664) - registerStoneMaterial('mercury_stone', 0x723E49) - registerStoneMaterial('glacio_stone', 0x9897BF) - - // Specialized icon sets for TFC's own + // Credits to Flare from the Cosmic Frontiers team + event.create('chonky').parent('shiny') +} +function modifyTFGIconSets(event) { + GTMaterials.Coal.setMaterialIconSet(GTMaterialIconSet.LIGNITE) GTMaterials.Borax.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_borax')) GTMaterials.Gypsum.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_gypsum')) @@ -87,6 +90,10 @@ const registerTFCMaterials = (event) => { GTMaterials.Nickel.setMaterialIconSet(GTMaterialIconSet.BRIGHT) GTMaterials.BlackBronze.setMaterialIconSet(GTMaterialIconSet.SHINY) GTMaterials.Potin.setMaterialIconSet(GTMaterialIconSet.SHINY) + GTMaterials.Cupronickel.setMaterialIconSet(GTMaterialIconSet.SHINY) + GTMaterials.ManganesePhosphide.setMaterialIconSet(GTMaterialIconSet.DULL) + GTMaterials.Osmium.setMaterialIconSet(GTMaterialIconSet.DULL) + GTMaterials.Invar.setMaterialIconSet(GTMaterialIconSet.DULL) GTMaterials.Aluminium.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_silver')) GTMaterials.Asbestos.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_gold')) @@ -101,10 +108,9 @@ const registerTFCMaterials = (event) => { GTMaterials.Galena.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_copper')) GTMaterials.Grossular.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_sapphire')) GTMaterials.Neodymium.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_limonite')) - GTMaterials.Palladium.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_pyrite')) + GTMaterials.Palladium.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_gold')) GTMaterials.Platinum.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_gold')) GTMaterials.Thorium.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_hematite')) - GTMaterials.Naquadah.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_malachite')) GTMaterials.Goethite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_silver')) GTMaterials.Calcite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_borax')) GTMaterials.Cooperite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_gold')) @@ -134,4 +140,15 @@ const registerTFCMaterials = (event) => { GTMaterials.Zeolite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_copper')) GTMaterials.Electrotine.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_garnierite')) GTMaterials.Bauxite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_borax')) + + GTMaterials.Naquadah.setMaterialIconSet(GTMaterialIconSet.getByName('chonky')) + GTMaterials.NaquadahEnriched.setMaterialIconSet(GTMaterialIconSet.getByName('chonky')) + GTMaterials.Naquadria.setMaterialIconSet(GTMaterialIconSet.getByName('chonky')) + GTMaterials.UraniumRhodiumDinaquadide.setMaterialIconSet(GTMaterialIconSet.getByName('chonky')) + GTMaterials.EnrichedNaquadahTriniumEuropiumDuranide.setMaterialIconSet(GTMaterialIconSet.getByName('chonky')) + GTMaterials.NaquadahAlloy.setMaterialIconSet(GTMaterialIconSet.getByName('chonky')) + GTMaterials.Neutronium.setMaterialIconSet(GTMaterialIconSet.getByName('chonky')) + GTMaterials.RutheniumTriniumAmericiumNeutronate.setMaterialIconSet(GTMaterialIconSet.getByName('chonky')) + + GTMaterials.Zirconium.setMaterialIconSet(GTMaterialIconSet.getByName('chonky')) } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/items.aircraft.js b/kubejs/startup_scripts/tfg/items.aircraft.js new file mode 100644 index 000000000..651171046 --- /dev/null +++ b/kubejs/startup_scripts/tfg/items.aircraft.js @@ -0,0 +1,41 @@ +"use strict"; + +function registerTFGAircraftItems(event) { + + event.create('tfg:scaffolding_frame') + + event.create('tfg:airship_hull') + + event.create('tfg:airship_balloon') + + event.create('tfg:lv_aircraft_engine') + + event.create('tfg:hv_aircraft_engine') + + event.create('tfg:ev_aircraft_engine') + + event.create('tfg:black_steel_plated_airplane_propeller') + + event.create('tfg:redblu_steel_plated_airplane_propeller') + + event.create('tfg:stainless_steel_plated_airplane_propeller') + + event.create('tfg:titanium_plated_airplane_propeller') + + event.create('tfg:redblu_steel_landing_gear') + + event.create('tfg:aluminium_landing_gear') + + event.create('tfg:stainless_steel_landing_gear') + + event.create('tfg:titanium_landing_gear') + + event.create('tfg:redblu_steel_hull_reinforcement') + + event.create('tfg:aluminium_hull_reinforcement') + + event.create('tfg:stainless_steel_hull_reinforcement') + + event.create('tfg:titanium_hull_reinforcement') + +} \ 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 4fa8ff488..5ecfb2b58 100644 --- a/kubejs/startup_scripts/tfg/items.food.js +++ b/kubejs/startup_scripts/tfg/items.food.js @@ -2,55 +2,10 @@ "use strict"; function registerTFGFoodItems(event) { - - event.create('tfg:food/raw_birt') - .translationKey('item.tfg.food.raw_birt') - .food(food => food.hunger(2).saturation(1) - .effect('species:birtd', 50, 0, 1) - .eaten(ctx => { - ctx.player.level.runCommandSilent(`playsound species:effect.birtd.applied player ${ctx.player.username} ${ctx.player.x} ${ctx.player.y} ${ctx.player.z} 1 1`) - })) - - event.create('tfg:food/cooked_birt') - .translationKey('item.tfg.food.cooked_birt') - .food(food => food.hunger(4).saturation(2)) - - event.create('tfg:food/raw_limpet') - .translationKey('item.tfg.food.raw_limpet') - .food(food => food.hunger(2).saturation(1) - .effect('minecraft:hunger', 100, 0, 1)) - - event.create('tfg:food/cooked_limpet') - .translationKey('item.tfg.food.cooked_limpet') - .food(food => food.hunger(4).saturation(2)) - - event.create('tfg:food/raw_crawlermari') - .translationKey('item.tfg.food.raw_crawlermari') - .food(food => food.hunger(2).saturation(1)) - - event.create('tfg:food/cooked_crawlermari') - .translationKey('item.tfg.food.cooked_crawlermari') - .food(food => food.hunger(4).saturation(2)) - - global.FOOD_FRUIT.forEach(fruit => { - event.create(`tfg:food/freeze_dried/${fruit.name}`) - .translationKey(`item.tfg.food.freeze_dried/${fruit.name}`) - .texture(`tfg:item/food/freeze_dried_${fruit.name}`) - .tag('tfg:space_food') - .food(food => food.hunger(4).saturation(1) - .eaten(ctx => { - ctx.player.give('tfg:used_foil_pack') - })) - }) - - event.create('tfg:food/calorie_paste') - .translationKey('item.tfg.food.calorie_paste') - .food(food => food.hunger(8).saturation(5) - .eaten(ctx => { - ctx.player.give('tfg:used_foil_pack') - })) - .texture('tfg:item/food/calorie_paste') - .tag('tfg:space_food') + + // Meal bags + event.create('tfg:foil_pack') + event.create('tfg:clean_foil_pack') event.create('tfg:used_foil_pack') .translationKey('item.tfg.food.used_foil_pack') @@ -68,6 +23,61 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/meal_bag') .tag('tfg:space_food') + // Birt + event.create('tfg:food/raw_birt') + .translationKey('item.tfg.food.raw_birt') + .food(food => food.hunger(2).saturation(1) + .effect('species:birtd', 50, 0, 1) + .eaten(ctx => { + ctx.player.level.runCommandSilent(`playsound species:effect.birtd.applied player ${ctx.player.username} ${ctx.player.x} ${ctx.player.y} ${ctx.player.z} 1 1`) + })) + + event.create('tfg:food/cooked_birt') + .translationKey('item.tfg.food.cooked_birt') + .food(food => food.hunger(4).saturation(2)) + + // Limpet + event.create('tfg:food/raw_limpet') + .translationKey('item.tfg.food.raw_limpet') + .food(food => food.hunger(2).saturation(1) + .effect('minecraft:hunger', 100, 0, 1)) + + event.create('tfg:food/cooked_limpet') + .translationKey('item.tfg.food.cooked_limpet') + .food(food => food.hunger(4).saturation(2)) + + // Crawlermari + event.create('tfg:food/raw_crawlermari') + .translationKey('item.tfg.food.raw_crawlermari') + .food(food => food.hunger(2).saturation(1)) + + event.create('tfg:food/cooked_crawlermari') + .translationKey('item.tfg.food.cooked_crawlermari') + .food(food => food.hunger(4).saturation(2)) + + // Freeze dried fruit + global.FOOD_FRUIT.forEach(fruit => { + event.create(`tfg:food/freeze_dried/${fruit.name}`) + .translationKey(`item.tfg.food.freeze_dried/${fruit.name}`) + .texture(`tfg:item/food/freeze_dried_${fruit.name}`) + .tag('tfg:space_food') + .food(food => food.hunger(4).saturation(1) + .eaten(ctx => { + ctx.player.give('tfg:used_foil_pack') + })) + }) + + // Calorie paste + event.create('tfg:food/calorie_paste') + .translationKey('item.tfg.food.calorie_paste') + .food(food => food.hunger(8).saturation(5) + .eaten(ctx => { + ctx.player.give('tfg:used_foil_pack') + })) + .texture('tfg:item/food/calorie_paste') + .tag('tfg:space_food') + + // Sunflower seeds event.create('tfg:roasted_sunflower_seeds') .translationKey('item.tfg.roasted_sunflower_seeds') .texture('tfg:item/roasted_sunflower_seeds') @@ -82,6 +92,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_moon_rabbit') .food(food => food.hunger(2).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -89,6 +100,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_moon_rabbit') .texture('tfg:item/food/cooked_moon_rabbit') .food(food => food.hunger(4).saturation(8)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -98,6 +110,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_glacian_mutton') .food(food => food.hunger(2).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -105,6 +118,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_glacian_mutton') .texture('tfg:item/food/cooked_glacian_mutton') .food(food => food.hunger(5).saturation(8)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -114,6 +128,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_sniffer_beef') .food(food => food.hunger(3).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -121,6 +136,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_sniffer_beef') .texture('tfg:item/food/cooked_sniffer_beef') .food(food => food.hunger(8).saturation(9)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -130,6 +146,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_wraptor') .food(food => food.hunger(3).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -137,6 +154,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_wraptor') .texture('tfg:item/food/cooked_wraptor') .food(food => food.hunger(6).saturation(8)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -146,6 +164,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_springling_collar') .food(food => food.hunger(2).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -153,6 +172,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_springling_chops') .texture('tfg:item/food/cooked_springling_collar') .food(food => food.hunger(4).saturation(4)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -162,6 +182,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_walker_steak') .food(food => food.hunger(3).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -169,6 +190,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_walker_steak') .texture('tfg:item/food/cooked_walker_steak') .food(food => food.hunger(8).saturation(10)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -178,6 +200,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_glider_wings') .food(food => food.hunger(1).saturation(1) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -185,6 +208,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_glider_wings') .texture('tfg:item/food/cooked_glider_wings') .food(food => food.hunger(2).saturation(3)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -194,6 +218,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_whole_soarer') .food(food => food.hunger(2).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -201,6 +226,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_whole_soarer') .texture('tfg:item/food/cooked_whole_soarer') .food(food => food.hunger(6).saturation(6)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -210,6 +236,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_crusher_meat') .food(food => food.hunger(3).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -217,6 +244,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_crusher_meat') .texture('tfg:item/food/cooked_crusher_meat') .food(food => food.hunger(5).saturation(6)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -226,6 +254,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_goober_meat') .food(food => food.hunger(1).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -233,6 +262,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_goober_meat') .texture('tfg:item/food/cooked_goober_meat') .food(food => food.hunger(3).saturation(9)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -242,6 +272,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_stackatick_chunks') .food(food => food.hunger(1).saturation(1) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -253,6 +284,7 @@ function registerTFGFoodItems(event) { .eaten(ctx => { ctx.player.give('minecraft:stick') })) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -263,6 +295,7 @@ function registerTFGFoodItems(event) { .eaten(ctx => { ctx.player.give('minecraft:stick') })) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -272,6 +305,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_cruncher_ribs') .food(food => food.hunger(2).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -279,6 +313,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_cruncher_ribs') .texture('tfg:item/food/cooked_cruncher_ribs') .food(food => food.hunger(10).saturation(14)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -288,6 +323,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_surfer_steak') .food(food => food.hunger(2).saturation(2) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -295,6 +331,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_surfer_steak') .texture('tfg:item/food/cooked_surfer_steak') .food(food => food.hunger(8).saturation(8)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -304,6 +341,7 @@ function registerTFGFoodItems(event) { .texture('tfg:item/food/raw_long_pig_filet') .food(food => food.hunger(2).saturation(1) .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/raw_meats') @@ -311,6 +349,7 @@ function registerTFGFoodItems(event) { .translationKey('item.tfg.food.cooked_long_pig_filet') .texture('tfg:item/food/cooked_long_pig_filet') .food(food => food.hunger(4).saturation(2)) + .tag('tfc:foods') .tag('tfc:foods/meats') .tag('tfc:foods/cooked_meats') @@ -335,4 +374,165 @@ function registerTFGFoodItems(event) { ctx.player.give('tfc:ceramic/bowl') }) }) + + // Fried Cheese Curds + event.create('tfg:food/raw_beer_battered_cheese_curds') + .translationKey('item.tfg.food.raw_beer_battered_cheese_curds') + .texture('tfg:item/food/raw_beer_battered_cheese_curds') + .food(food => food.hunger(1).saturation(1)) + .tag('tfc:foods'); + + event.create('tfg:food/cooked_beer_battered_cheese_curds') + .translationKey('item.tfg.food.cooked_beer_battered_cheese_curds') + .texture('tfg:item/food/cooked_beer_battered_cheese_curds') + .food(food => food.hunger(3).saturation(2)) + .tag('tfc:foods') + .tag('tfg:foods/usable_in_burgers'); + + // French Fries + event.create('tfg:food/raw_fries') + .translationKey('item.tfg.food.raw_fries') + .texture('tfg:item/food/raw_fries') + .food(food => food.hunger(1).saturation(1)) + .tag('tfc:foods'); + + event.create('tfg:food/cooked_fries') + .translationKey('item.tfg.food.cooked_fries') + .texture('tfg:item/food/cooked_fries') + .food(food => food.hunger(3).saturation(2)) + .tag('tfc:foods') + .tag('tfg:foods/usable_in_burgers'); + + // Poutine + event.create('tfg:food/poutine') + .translationKey('item.tfg.food.poutine') + .texture('tfg:item/food/poutine') + .food(food => food.hunger(8).saturation(6)) + .tag('tfc:foods'); + + // Brioche Bun + event.create('tfg:food/brioche_dough') + .translationKey('item.tfg.food.brioche_dough') + .texture('tfg:item/food/brioche_dough') + .food(food => food.hunger(2).saturation(1)) + .tag('tfc:foods'); + + event.create('tfg:food/brioche_bun') + .translationKey('item.tfg.food.brioche_bun') + .texture('tfg:item/food/brioche_bun') + .food(food => food.hunger(4).saturation(2)) + .tag('tfc:foods'); + + // Burgers + event.create('tfg:food/raw_burger_patty') + .translationKey('item.tfg.food.raw_burger_patty') + .texture('tfg:item/food/raw_burger_patty') + .food(food => food.hunger(2).saturation(1) + .effect('minecraft:hunger', 100, 0, 1)) + .tag('tfc:foods') + .tag('tfc:foods/meats') + .tag('tfc:foods/raw_meats') + .tag('tfc:foods/can_be_salted'); + + event.create('tfg:food/cooked_burger_patty') + .translationKey('item.tfg.food.cooked_burger_patty') + .texture('tfg:item/food/cooked_burger_patty') + .food(food => food.hunger(5).saturation(4)) + .tag('tfc:foods') + .tag('tfc:foods/meats') + .tag('tfc:foods/cooked_meats') + .tag('tfg:foods/usable_in_burgers'); + + event.create('tfg:food/hamburger') + .translationKey('item.tfg.food.hamburger') + .texture('tfg:item/food/hamburger') + .food(food => food.hunger(12).saturation(10)) + .tag('tfc:foods'); + + event.create('tfg:food/cheeseburger') + .translationKey('item.tfg.food.cheeseburger') + .texture('tfg:item/food/cheeseburger') + .food(food => food.hunger(12).saturation(10)) + .tag('tfc:foods'); + + // Slice of "Cheese" (intentionally not tagged as food) + event.create('tfg:food/slice_of_cheese') + .translationKey('item.tfg.food.slice_of_cheese') + .texture('tfg:item/food/slice_of_cheese') + .food(food => food.hunger(4).saturation(2) + .eaten(ctx => { + ctx.player.give(ChemicalHelper.get(TagPrefix.foil, GTMaterials.Polyethylene, 1)) + })) + .tag('tfc:foods/usable_in_jam_sandwich') + .tag('tfc:foods/usable_in_jam_sandwich_2') + .tag('tfc:foods/usable_in_sandwich') + .tag('tfg:foods/usable_in_meal_bag') + .tag('tfc:foods/dairy') + .tag('tfc:pig_food') + + // Oatmeal + event.create('tfg:food/oatmeal') + .translationKey('item.tfg.food.oatmeal') + .texture('tfg:item/food/oatmeal') + .food(food => food.hunger(8).saturation(8)) + .tag('tfc:foods'); + + // Instant Mac + event.create('tfg:food/raw_instant_mac') + .translationKey('item.tfg.food.raw_instant_mac') + .texture('tfg:item/food/raw_instant_mac') + .food(food => food.hunger(2).saturation(2) + .eaten(ctx => { + ctx.player.give('create:cardboard') + })) + .tag('tfc:foods'); + + event.create('tfg:food/cooked_instant_mac') + .translationKey('item.tfg.food.cooked_instant_mac') + .texture('tfg:item/food/cooked_instant_mac') + .food(food => food.hunger(4).saturation(4) + .eaten(ctx => { + ctx.player.give('create:cardboard') + })) + .tag('tfc:foods'); + + //#region Spices + + // Bay + event.create('tfg:spice/bay_leaf') + .translationKey('item.tfg.food.bay_leaf') + .texture('tfg:item/food/bay_leaf'); + + // Cardamom + event.create('tfg:spice/cardamom_pods') + .translationKey('item.tfg.food.cardamom_pods') + .texture('tfg:item/food/cardamom_pods'); + + // Cilantro + event.create('tfg:spice/cilantro_leaves') + .translationKey('item.tfg.food.cilantro_leaves') + .texture('tfg:item/food/cilantro_leaves'); + + // Cumin + event.create('tfg:spice/cumin_seeds') + .translationKey('item.tfg.food.cumin_seeds') + .texture('tfg:item/food/cumin_seeds'); + + // Oregano + event.create('tfg:spice/oregano_leaves') + .translationKey('item.tfg.food.oregano_leaves') + .texture('tfg:item/food/oregano_leaves'); + + // Allspice + event.create('tfg:spice/allspice') + .translationKey('item.tfg.food.allspice') + .texture('tfg:item/food/allspice'); + + //#endregion + + // Animal products + event.create('tfg:wraptor_sugar') + .tag('tfg:sugars') + .tag('tfg:haste_ingredients') + .tag('tfc:sweetener') } diff --git a/kubejs/startup_scripts/tfg/items.js b/kubejs/startup_scripts/tfg/items.js index d9111c5e1..a3c941093 100644 --- a/kubejs/startup_scripts/tfg/items.js +++ b/kubejs/startup_scripts/tfg/items.js @@ -8,8 +8,21 @@ const registerTFGItems = (event) => { registerTFGFoodItems(event) + registerTFGPrimitiveItems(event); + registerTFGNuclearItems(event); + registerTFGWoodItems(event); + registerTFGAircraftItems(event); + registerTFGSpaceItems(event); + registerTFGMarsItems(event); + registerTFGDimensionMarkerItems(event); + registerTFGBiotechItems(event); + registerTFGWeaponItems(event); + registerTFGRockItems(event); + + event.create('tfg:terra_firma_greg') + .tag('c:hidden_from_recipe_viewers') - // #region Electronics + // Electronics event.create('tfg:unfinished_electron_tube', 'create:sequenced_assembly') event.create('tfg:unfinished_vacuum_tube', 'create:sequenced_assembly') event.create('tfg:unfinished_basic_electronic_circuit', 'create:sequenced_assembly') @@ -17,529 +30,56 @@ const registerTFGItems = (event) => { event.create('tfg:unfinished_inscriber_accumulation_press') event.create('tfg:vitrified_pearl') event.create('tfg:cryo_fluix_pearl') - .translationKey('tfg:cryo_fluix_pearl') - // #endregion - - // #region Space - - // Orbit dimension markers - event.create('tfg:marker/earth_orbit').tag('c:hidden_from_recipe_viewers') - event.create('tfg:marker/moon_orbit').tag('c:hidden_from_recipe_viewers') - event.create('tfg:marker/mars_orbit').tag('c:hidden_from_recipe_viewers') - event.create('tfg:marker/venus_orbit').tag('c:hidden_from_recipe_viewers') - event.create('tfg:marker/mercury_orbit').tag('c:hidden_from_recipe_viewers') - event.create('tfg:marker/glacio_orbit').tag('c:hidden_from_recipe_viewers') - - global.AD_ASTRA_WOOD.forEach(wood => { - event.create(`tfg:wood/lumber/${wood.name}`) - .translationKey(`item.tfg.${wood.name}_lumber`) - .tag('tfc:lumber') - }) - // #endregion - - // #region Paper making - event.create('tfg:hardwood_strip') - .translationKey('item.tfg.hardwood_strip') - - event.create('tfg:soaked_hardwood_strip') - .translationKey('item.tfg.soaked_hardwood_strip') - - 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()); - }); - //#endregion - - - // #region Molds - global.TFG_EXTRUDER_MOLDS.forEach(id => event.create(id)) - - global.TFG_CASTING_MOLDS.forEach(id => event.create(id)) - // #endregion - - // #region Stone bricks and dusts - event.create('tfg:brick/deepslate') - .tag(`tfc:metamorphic_items`) - .translationKey('item.tfg.brick.deepslate') - - event.create('tfg:brick/dripstone') - .tag(`tfc:sedimentary_items`) - .translationKey('item.tfg.brick.dripstone') - - event.create('tfg:brick/moon_stone') - .tag(`tfc:igneous_intrusive_items`) - .translationKey('item.tfg.brick.moon_stone') - - event.create('tfg:brick/moon_deepslate') - .tag(`tfc:igneous_intrusive_items`) - .translationKey('item.tfg.moon_deepslate') - - event.create('tfg:brick/mars_stone') - .tag(`tfc:sedimentary_items`) - .translationKey('item.tfg.brick.mars_stone') - - event.create('tfg:brick/venus_stone') - .tag(`tfc:igneous_extrusive_items`) - .translationKey('item.tfg.brick.venus_stone') - - event.create('tfg:brick/mercury_stone') - .tag(`tfc:igneous_intrusive_items`) - .translationKey('item.tfg.brick.mercury_stone') - - event.create('tfg:brick/glacio_stone') - .tag(`tfc:igneous_extrusive_items`) - .translationKey('item.tfg.brick.glacio_stone') - - event.create('tfg:brick/permafrost') - .translationKey('item.tfg.brick.permafrost') - - event.create('tfg:brick/red_granite') - .tag(`tfc:igneous_intrusive_items`) - .translationKey('item.tfg.red_granite') - - // #endregion - - // #region Primitive rubber gloves - event.create('tfg:prepared_leather_gloves') - .translationKey('item.tfg.prepared_leather_gloves') - - event.create('tfg:latex_soaked_gloves') - .translationKey('item.tfg.latex_soaked_gloves') - // #endregion - - //#region Medicine - - const pill = [ - 'haste', - 'night_vision', - 'poison', - 'regeneration', - 'slowness', - 'speed', - 'water_breathing', - 'weakness', - ] - const pill_names = [ - 'Haste', - 'Night Vision', - 'Poison', - 'Regeneration', - 'Slowness', - 'Speed', - 'Water Breathing', - 'Weakness', - ] - - pill.forEach((pill_array, index) => { - const pill_names_array = pill_names[index]; - - event.create(`tfg:${pill_array}_pill`) - .translationKey(`item.tfg.${pill_array}_pill`) - .tooltip(`Β§9${pill_names_array} (08:00)`) - - event.create(`tfg:${pill_array}_tablet`) - .translationKey(`item.tfg.${pill_array}_tablet`) - .tooltip(`Β§9${pill_names_array} (30:00)`) - }) - - event.create(`tfg:antipoison_pill`) - .translationKey(`item.tfg.antipoison_pill`) - .tooltip(`Β§9Cures Poison`) - - event.create(`tfg:antipoison_tablet`) - .translationKey(`item.tfg.antipoison_tablet`) - .tooltip(`Β§9Cures All Harmful Effects`) - - //salvos - - const salvo = [ - 'absorption', - 'fire_resistance', - 'invisibility', - 'luck', - 'resistance', - ] - const salvo_names = [ - 'Absorption', - 'Fire Resistance', - 'Invisibility', - 'Luck', - 'Resistance', - ] - - salvo.forEach((salvo_array, index) => { - const salvo_names_array = salvo_names[index]; - - event.create(`tfg:${salvo_array}_salvo`) - .translationKey(`item.tfg.${salvo_array}_salvo`) - .tooltip(`Β§9${salvo_names_array} (08:00)`) - }) - - event.create(`tfg:instant_health_salvo`) - .translationKey(`item.tfg.instant_health_salvo`) - .tooltip(`Β§9Instant Health II`) - //#endregion - - //#region Misc - event.create('tfg:paraffin_wax') - event.create('tfg:conifer_rosin') - 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 - event.create('tfg:polycaprolactam_fabric') - .translationKey('item.tfg.polycaprolactam_fabric') - - event.create('tfg:polycaprolactam_string') - .translationKey('item.tfg.polycaprolactam_string') - - event.create('tfg:phantom_silk') - .translationKey('item.tfg.phantom_silk') - - event.create('tfg:phantom_thread') - .translationKey('item.tfg.phantom_thread') - - event.create('tfg:space_suit_fabric') - .translationKey('item.tfg.space_suit_fabric') - //#endregion - - //#region Tools - event.create('tfg:flint_arrow_head') - .translationKey('item.tfg.flint_arrow_head') - - event.create('tfg:fletching') - .translationKey('item.tfg.fletching') - - event.create('tfg:armor_stand_arms') - .translationKey('item.tfg.armor_stand_arms') - - event.create('tfg:harvest_basket') - .translationKey('item.tfg.harvest_basket') - .parentModel('tfg:item/harvest_basket') - .maxDamage(128) - - event.create('tfg:aluminium_harvest_basket') - .translationKey('item.tfg.aluminium_harvest_basket') - .parentModel('tfg:item/aluminium_harvest_basket') - .unstackable() - - event.create('tfg:stainless_steel_needle') - .translationKey('item.tfg.stainless_steel_needle') - .unstackable() - .maxDamage(9999) - - //Fishing Nets - event.create('tfg:fishing_net/wood') - .translationKey('item.tfg.fishing_net.wood') - .parentModel('tfg:item/fishing_nets/wood_fishing_net') - .texture('tfg:item/fishing_nets/wood_fishing_net') - .maxDamage(112) - - event.create('tfg:fishing_net/brass') - .translationKey('item.tfg.fishing_net.brass') - .parentModel('tfg:item/fishing_nets/brass_fishing_net') - .texture('tfg:item/fishing_nets/brass_fishing_net') - .maxDamage(326) - - event.create('tfg:fishing_net/rose_gold') - .translationKey('item.tfg.fishing_net.rose_gold') - .parentModel('tfg:item/fishing_nets/rose_gold_fishing_net') - .texture('tfg:item/fishing_nets/rose_gold_fishing_net') - .maxDamage(380) - - event.create('tfg:fishing_net/sterling_silver') - .translationKey('item.tfg.fishing_net.sterling_silver') - .parentModel('tfg:item/fishing_nets/sterling_silver_fishing_net') - .texture('tfg:item/fishing_nets/sterling_silver_fishing_net') - .maxDamage(380) - - event.create('tfg:fishing_net/invar') - .translationKey('item.tfg.fishing_net.invar') - .parentModel('tfg:item/fishing_nets/invar_fishing_net') - .texture('tfg:item/fishing_nets/invar_fishing_net') - .maxDamage(740) - - event.create('tfg:fishing_net/tin_alloy') - .translationKey('item.tfg.fishing_net.tin_alloy') - .parentModel('tfg:item/fishing_nets/tin_alloy_fishing_net') - .texture('tfg:item/fishing_nets/tin_alloy_fishing_net') - .maxDamage(710) - - event.create('tfg:fishing_net/cupronickel') - .translationKey('item.tfg.fishing_net.cupronickel') - .parentModel('tfg:item/fishing_nets/cupronickel_fishing_net') - .texture('tfg:item/fishing_nets/cupronickel_fishing_net') - .maxDamage(560) - - event.create('tfg:fishing_net/magnalium') - .translationKey('item.tfg.fishing_net.magnalium') - .parentModel('tfg:item/fishing_nets/magnalium_fishing_net') - .texture('tfg:item/fishing_nets/magnalium_fishing_net') - .maxDamage(1830) - - //#endregion - - //#region Immersive Aircraft Impl - event.create('tfg:scaffolding_frame') - .translationKey('item.tfg.scaffolding_frame') - - event.create('tfg:airship_hull') - .translationKey('item.tfg.airship_hull') - - 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') - - event.create('tfg:ev_aircraft_engine') - .translationKey('item.tfg.ev_aircraft_engine') - - event.create('tfg:black_steel_plated_airplane_propeller') - .translationKey('item.tfg.black_steel_plated_airplane_propeller') - - event.create('tfg:redblu_steel_plated_airplane_propeller') - .translationKey('item.tfg.redblu_steel_plated_airplane_propeller') - - event.create('tfg:stainless_steel_plated_airplane_propeller') - .translationKey('item.tfg.stainless_steel_plated_airplane_propeller') - - event.create('tfg:titanium_plated_airplane_propeller') - .translationKey('item.tfg.titanium_plated_airplane_propeller') - - event.create('tfg:redblu_steel_landing_gear') - .translationKey('item.tfg.redblu_steel_landing_gear') - - event.create('tfg:aluminium_landing_gear') - .translationKey('item.tfg.aluminium_landing_gear') - - event.create('tfg:stainless_steel_landing_gear') - .translationKey('item.tfg.stainless_steel_landing_gear') - - event.create('tfg:titanium_landing_gear') - .translationKey('item.tfg.titanium_landing_gear') - - event.create('tfg:redblu_steel_hull_reinforcement') - .translationKey('item.tfg.redblu_steel_hull_reinforcement') - - 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') - event.create('tfg:advanced_clockwork_mechanism') - .translationKey('item.tfg.advanced_clockwork_mechanism') - event.create('tfg:certus_mechanism') - .translationKey('item.tfg.certus_mechanism') - - event.create('tfg:small_bullet_casing') - .translationKey('tfg:small_bullet_casing') - event.create('tfg:shell_bullet_casing') - .translationKey('tfg:shell_bullet_casing') - event.create('tfg:large_bullet_casing') - .translationKey('tfg:large_bullet_casing') - event.create('tfg:nitrocellulose') - .translationKey('tfg:nitrocellulose') - //endregion - - //Tier2 Insulation - event.create('tfg:aes_wool') - .translationKey('tfg:aes_wool') - event.create('tfg:aes_compressed_wool') - .translationKey('tfg:aes_compressed_wool') - event.create('tfg:aes_insulation_sheet') - .translationKey('tfg:aes_insulation_sheet') - event.create('tfg:aes_insulation_roll') - .translationKey('tfg:aes_insulation_roll') - //endregion - - //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') - //endregion - - //#region Universal compost items - event.create('tfg:universal_compost_browns') - .tag('tfc:compost_browns_low') - - event.create('tfg:universal_compost_greens') - .tag('tfc:compost_greens_low') - //#endregion - - //#region Etched Diamond Etching Tip - event.create('tfg:etching_diamond_tip') - .translationKey("item.tfg.etching_diamond_tip") - //#endregion - - //#region Solar Panel - - 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') - - event.create('tfg:flax_bundle') - .tag('tfc:scrapable') - .translationKey('item.tfg.flax_bundle') - .texture('tfg:item/flax_bundle') - - event.create('tfg:bundled_scraped_flax') - .tag('tfc:scrapable') - .translationKey('item.tfg.bundled_scraped_flax') - .texture('tfg:item/bundled_scraped_flax') - - //#region Lab Equipment - - global.LAB_EQUIPMENT_CONTAINERS.forEach((item) => { - event.create(`tfg:${item.type}`, 'tfc:glass_bottle') - .fluidTagAccept('tfc:usable_in_blue_steel_bucket') - .capacity(item.capacity) - .translationKey(`item.tfg.lab_equipment.${item.type}`) - .tag('tfg:lab_equipment_containers') - .tag('tfc:fluid_item_ingredient_empty_containers') - .tag('tfc:glass_bottles') - }) - - event.create('tfg:lab_equipment') - .translationKey('item.tfg.lab_equipment.lab_equipment') - .tooltip(Text.translatable('tfg.tooltip.lab_equipment.set')) - - event.create('tfg:dirty_lab_equipment') - .translationKey('item.tfg.lab_equipment.dirty_lab_equipment') - .tooltip(Text.translatable('tfg.tooltip.lab_equipment.set_dirty')) - //#endregion - - // Empty Fission Rod - - event.create('tfg:empty_rod') - .translationKey('item.tfg.empty_road') - .texture('tfg:item/fuel_rod_empty') - .tag('tfg:fission_rods') - - event.create('tfg:refrigerant_pellet') - .translationKey('item.tfg.refrigerant_pellet') - .texture('tfg:item/refrigerant_pellet') - .tag('tfg:fission_coolant') - - // Moderator Line - - event.create('tfg:graphite_compound') - .translationKey('item.tfg.graphite_compound') - .texture('tfg:item/graphite_line/graphite_compound') - - event.create('tfg:raw_graphite_briquette') - .translationKey('item.tfg.raw_graphite_briquette') - .texture('tfg:item/graphite_line/raw_graphite_briquette') - - event.create('tfg:faulty_graphite_briquette') - .translationKey('item.tfg.faulty_graphite_briquette') - .texture('tfg:item/graphite_line/faulty_graphite_briquette') - - event.create('tfg:washed_graphite_briquette') - .translationKey('item.tfg.washed_graphite_briquette') - - event.create('tfg:pure_graphite_rod') - .translationKey('item.tfg.pure_graphite_rod') - .texture('tfg:item/graphite_line/pure_graphite_rod') - - event.create('tfg:impure_graphite_rod') - .translationKey('item.tfg.impure_graphite_rod') - .texture('tfg:item/graphite_line/impure_graphite_rod') - - event.create('tfg:annealed_graphite_rod') - .translationKey('item.tfg.annealed_graphite_rod') - - event.create('tfg:impure_annealed_graphite_rod') - .translationKey('item.tfg.impure_annealed_graphite_rod') - - event.create('tfg:graphite_moderator') - .translationKey('item.tfg.graphite_moderator') - .texture('tfg:item/graphite_line/graphite_moderator') - - event.create('tfg:impure_graphite_moderator') - .translationKey('item.tfg.impure_graphite_moderator') - .texture('tfg:item/graphite_line/impure_graphite_moderator') - - event.create('tfg:advanced_polymer_binder') - .translationKey('item.tfg.advanced_polymer_binder') - .texture('tfg:item/graphite_line/advanced_polymer_binder') - + // Molds + global.TFG_EXTRUDER_MOLDS.forEach(id => event.create(id)) + global.TFG_CASTING_MOLDS.forEach(id => event.create(id)) + + // Universal Circuits + event.create('tfg:ulv_universal_circuit') + event.create('tfg:lv_universal_circuit') + event.create('tfg:mv_universal_circuit') + event.create('tfg:hv_universal_circuit') + event.create('tfg:ev_universal_circuit') + event.create('tfg:iv_universal_circuit') + event.create('tfg:luv_universal_circuit') + event.create('tfg:zpm_universal_circuit') + event.create('tfg:uv_universal_circuit') + event.create('tfg:uhv_universal_circuit') + + + // Temporary + event.create('gtceu:rose_quartz_dust').texture('tfg:item/deprecated') + event.create('gtceu:tiny_rose_quartz_dust').texture('tfg:item/deprecated') + event.create('gtceu:small_rose_quartz_dust').texture('tfg:item/deprecated') + event.create('gtceu:poor_raw_rose_quartz').texture('tfg:item/deprecated') + event.create('gtceu:raw_rose_quartz').texture('tfg:item/deprecated') + event.create('gtceu:rich_raw_rose_quartz').texture('tfg:item/deprecated') + event.create('gtceu:chipped_rose_quartz_gem').texture('tfg:item/deprecated') + event.create('gtceu:flawed_rose_quartz_gem').texture('tfg:item/deprecated') + event.create('gtceu:flawless_rose_quartz_gem').texture('tfg:item/deprecated') + event.create('gtceu:exquisite_rose_quartz_gem').texture('tfg:item/deprecated') + event.create('gtceu:pure_rose_quartz_dust').texture('tfg:item/deprecated') + event.create('gtceu:impure_rose_quartz_dust').texture('tfg:item/deprecated') + event.create('gtceu:purified_rose_quartz_ore').texture('tfg:item/deprecated') + event.create('gtceu:crushed_rose_quartz_ore').texture('tfg:item/deprecated') + event.create('gtceu:refined_rose_quartz_ore').texture('tfg:item/deprecated') + event.create('gtceu:rose_quartz_lens').texture('tfg:item/deprecated') + event.create('gtceu:rose_quartz_plate').texture('tfg:item/deprecated') + + // Add item for BTX Fuel + + event.create('tfg:catalyser_pt_re_zsm') + .translationKey('item.tfg.catalyser_pt_re_zsm') + .texture('tfg:item/btx/catalyser_zsm') + + event.create('tfg:used_catalyser') + .translationKey('item.tfg.used_catalyser') + .texture('tfg:item/btx/used_catalyser') + + event.create('tfg:loaded_resin') + .translationKey('item.tfg.loaded_resin') + .texture('tfg:item/btx/loaded_resin') } diff --git a/kubejs/startup_scripts/betterend/blocks.js b/kubejs/startup_scripts/tfg/mars/blocks.mars_deco.js similarity index 69% rename from kubejs/startup_scripts/betterend/blocks.js rename to kubejs/startup_scripts/tfg/mars/blocks.mars_deco.js index 49d5cf1fe..3043fc2ef 100644 --- a/kubejs/startup_scripts/betterend/blocks.js +++ b/kubejs/startup_scripts/tfg/mars/blocks.mars_deco.js @@ -1,31 +1,6 @@ -// priority: 0 "use strict"; -function registerBetterEndBlocks(event) { - - // Moon - - event.create('betterend:chorus_lily', 'tfc:ground_cover') - .soundType('cherry_wood') - .hardness(0.5) - .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) - .opaque(false) - .notSolid() - .renderType('cutout') - - // 1 block tall - createPlant(event, 'inflexia', 'moon') - createPlant(event, 'chorus_grass', 'moon') - createPlant(event, 'salteago', 'moon') - createPlant(event, 'vaiolush_fern', 'moon') - - - // Mars +function registerTFGWorldGenMarsDecoBlocks(event) { // 1 block tall createPlant(event, 'aeridium', 'mars') @@ -202,40 +177,74 @@ function registerBetterEndBlocks(event) { .tagBlock('tfg:do_not_destroy_in_space') .mapColor('color_orange') - // europa...? + // Ground cover - createPlant(event, 'crystal_grass', 'unused') - .box(3, 0, 3, 13, 12, 13) - createPlant(event, 'blooming_cooksonia', 'unused') - .box(3, 0, 3, 13, 12, 13) - createPlant(event, 'fracturn', 'unused') - .box(3, 0, 3, 13, 12, 13) - createPlant(event, 'jungle_grass', 'unused') - .box(3, 0, 3, 13, 12, 13) -} - -/** - * @param {any} event - * @param {string} id - * @param {string} planet - */ -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') + 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') .tagBlock('tfc:can_be_snow_piled') -} -/** - * @param {any} event - * @param {string} id - * @param {string} planet - */ -function createWaterPlant(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') - .tagBlock('tfc:can_be_ice_piled') + 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') + .tagBlock('tfc:can_be_snow_piled') + + event.create('tfg:groundcover/aeronos_stick', 'tfc:ground_cover') + .box(3, 0, 3, 13, 3, 13) + .groundCoverModelShape('twig') + .withPreexistingItem('tfg:twigs/aeronos') + .tagBlock('tfc:can_be_snow_piled') + .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') + .tagBlock('tfc:can_be_snow_piled') + .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') + .tagBlock('tfc:can_be_snow_piled') + .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') + .tagBlock('tfc:can_be_snow_piled') + .texture('particle', 'species:block/alphacene_mushroom_block') + .texture('all', 'species:block/alphacene_mushroom_block') + .texture('top', 'minecraft:block/mushroom_stem') + + // Misc + + 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) } \ No newline at end of file diff --git a/kubejs/startup_scripts/betterend/items.js b/kubejs/startup_scripts/tfg/mars/items.mars.js similarity index 88% rename from kubejs/startup_scripts/betterend/items.js rename to kubejs/startup_scripts/tfg/mars/items.mars.js index 3c23730ef..5460fe4f6 100644 --- a/kubejs/startup_scripts/betterend/items.js +++ b/kubejs/startup_scripts/tfg/mars/items.mars.js @@ -1,11 +1,7 @@ -// priority: 0 "use strict"; -/** - * - * @param {Registry.Item} event - */ -function registerBetterEndItems(event) { +function registerTFGMarsItems(event) { + event.create('betterend:bolux_mushroom_cooked') .food(food => { food.hunger(2) @@ -35,4 +31,5 @@ function registerBetterEndItems(event) { food.hunger(5) food.saturation(2) }) + } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/mars/materials.mars.js b/kubejs/startup_scripts/tfg/mars/materials.mars.js new file mode 100644 index 000000000..58eeab18a --- /dev/null +++ b/kubejs/startup_scripts/tfg/mars/materials.mars.js @@ -0,0 +1,106 @@ +"use strict"; + +function registerTFGMarsMaterials(event) { + + event.create('liquid_carbon_dioxide') + .liquid(100) //Not realistic but I want it to be cryogenic + .components('1x carbon', '2x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xDBFBFF) + + // Mars Ore Line + + event.create('lightweight_ostrum_vapor') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(760)) + + event.create('ostrum_vapor') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(815)) + + event.create('dense_ostrum_vapor') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(930)) + + event.create('residual_radioactive_concoction') + .liquid(new GTFluidBuilder().customStill().temperature(450)) + + // Atmosphere + + event.create('tfg:mars_air') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(208)) + .color('0xD08957') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .components('94x carbon_dioxide', '3x nitrogen', '2x argon', '1x oxygen') + + // TODO: move neon and xenon somewhere else + event.create('tfg:liquid_mars_air') + .liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(58)) + .color('0xD08957') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .components('80x carbon_dioxide', '7x nitrogen', '5x argon', '3x oxygen', '1x neon', '1x krypton', '1x xenon') + + // Mars sap + + event.create('tfg:crimsene') + .liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(220)) + .gem() + .iconSet('lapis') + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .color(0xB12727) + .secondaryColor(0x562C3E) + + event.create('tfg:warpane') + .liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(220)) + .gem() + .iconSet('quartz') + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .color(0x45ABA9) + .secondaryColor(0x562C3E) + + event.create('tfg:mycelienzene') + .dust() + .color(0x9E7385) + + event.create('tfg:cooked_mycelienzane') + .liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(1830)) + .color(0x9E7385) + + event.create('tfg:iodomethane') + .liquid() + .components('1x carbon', '3x hydrogen', '1x iodine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xAC45C6) + + event.create('tfg:trideuteroiodomethane') + .liquid() + .components('1x carbon', '3x deuterium', '1x iodine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xDD9DED) + + // Ores + + event.create('ostrum') + .components('2x pitchblende', '1x tricalcium_phosphate', '1x bauxite', '1x silver', '1x beryllium') + .color(0xbd7980) + .secondaryColor(0xA66C8D) + .iconSet(GTMaterialIconSet.getByName('tfc_cassiterite')) + .ingot() + .liquid() + .blastTemp(3700, 'mid', GTValues.VA[GTValues.EV]) + .flags( + GTMaterialFlags.DISABLE_DECOMPOSITION, + GTMaterialFlags.FORCE_GENERATE_BLOCK, + GTMaterialFlags.GENERATE_PLATE, + GTMaterialFlags.GENERATE_ROD, + GTMaterialFlags.GENERATE_FRAME, + GTMaterialFlags.DISABLE_ALLOY_BLAST + ) + + event.create("ostrum_iodide") + .ingot() + .liquid() + .components('2x ostrum', 'iodine') + .blastTemp(3700, 'mid', GTValues.VA[GTValues.IV], (20*120)) + .iconSet(GTMaterialIconSet.BRIGHT) + .flags(GTMaterialFlags.GENERATE_GEAR) + .color(0xc696f2) + .secondaryColor(0x9b99ff) +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/materials.js b/kubejs/startup_scripts/tfg/materials.js index bb08e9a95..061ae2404 100644 --- a/kubejs/startup_scripts/tfg/materials.js +++ b/kubejs/startup_scripts/tfg/materials.js @@ -3,118 +3,34 @@ const registerTFGMaterials = (event) => { + //#region placeholder materials + event.create('unknown') + .color('0xFFFFFF') + .formula('?') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('ammonium') + .components('1x nitrogen', '4x hydrogen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('methoxy') + .components('1x oxygen', '1x carbon', '3x hydrogen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + //#endregion - event.create('hardwood') - .dust() - .flags(GTMaterialFlags.FLAMMABLE) - .iconSet(GTMaterialIconSet.WOOD) - .color('0x7a5225') - .secondaryColor('0x7a5225') + registerTFGPowerReworkMaterials(event); + registerTFGNuclearMaterials(event); + registerTFGSMRAdditiveMaterials(event) + registerTFGBiolineMaterials(event); + registerTFGPrimitiveMaterials(event); + registerTFGRockMaterials(event); - event.create('thermochemically_treated_hardwood') - .dust() - .flags(GTMaterialFlags.FLAMMABLE) - .iconSet(GTMaterialIconSet.WOOD) - .color('0x52482c') - .secondaryColor('0x52482c') + registerTFGRocketMaterials(event); + registerTFGMoonMaterials(event); + registerTFGMarsMaterials(event); + registerTFGVenusMaterials(event); + registerTFGEuropaMaterials(event); - // Important tags to add to fluids: - // tfc:usable_in_pot, tfc:usable_in_barrel, tfc:usable_in_wooden_bucket - - event.create('tfg:latex') - .liquid() - .color(0xFBB982) - - event.create('tfg:vulcanized_latex') - .liquid() - .color(0xc79973) - - event.create('tfg:conifer_pitch') - .liquid() - .color(0xfbdf82) - .secondaryColor(0xff9d2e) - - // Cooking - - event.create('lactose') - .dust() - .iconSet(GTMaterialIconSet.FINE) - .color('0xede8da') - .secondaryColor('0xeddcad') - .components('12x carbon', '22x hydrogen', '11x oxygen') - - // Used as a TFC aluminium substitute so you can't make actual aluminium ingots early - event.create('aluminium_silicate') - .dust() - .ingot() - .liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(1520)) - .components('2x aluminium', '1x silicon', '5x oxygen') - .iconSet('metallic') - .color(0xB6D3FF) - .secondaryColor(0x6F4AB3) - - // Space Rocket Materials - - event.create('rocket_alloy_t1') - .ingot() - .components('6x aluminium', '2x stainless_steel', '1x red_steel') - .color(0x333e47) - .iconSet('metallic') - .flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR) - .blastTemp(1760, 'low', 256, 900) - - event.create('rocket_alloy_t2') - .ingot() - .components('19x titanium', '4x vanadium', '3x aluminium', '3x chromium', '3x tin') - .color(0x3c253d) - .iconSet('metallic') - .flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR, GTMaterialFlags.DISABLE_ALLOY_BLAST) - .blastTemp(3200, 'mid', 1024, 1100) - .liquid() - -/* event.create('rocket_alloy_t3') - .ingot() - .components('8x titanium', '9x tungsten_steel', '2x tantalum', '2x radon') - .color(0x6c678b) - //.secondaryColor(0xa59fc6) - .liquid() - .removeHazard() - .iconSet('metallic') - .flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR) - .blastTemp(4200, 'high', 4096, 1300) - */ - event.create('vitrified_asbestos') - .dust() - .fluid() - .iconSet('glass') - .color(0xcccccc) - - // Space suit gases (these all add up to 10B of components = 1B of space suit gas) - - event.create('tfg:compressed_nitrox') - .gas() - .components('8x nitrogen', '2x oxygen') - .color(0xaef5ef) - - event.create('tfg:compressed_heliox') - .gas() - .components('8x helium', '2x oxygen') - .color(0xf5eeb3) - - event.create('tfg:compressed_heliox_3') - .gas() - .components('8x helium_3', '2x oxygen') - .color(0xf5ea90) - - event.create('tfg:compressed_trimix') - .gas() - .components('5x nitrogen', '3x oxygen', '2x helium') - .color(0xc3fab9) - - event.create('tfg:compressed_trimix_3') - .gas() - .components('5x nitrogen', '3x oxygen', '2x helium_3') - .color(0xa3ed95) // Refrigerants @@ -138,271 +54,16 @@ const registerTFGMaterials = (event) => { .components('2x carbon', '2x hydrogen', '4x fluorine') .color(0x46702e) - // Fission Component - - event.create('tfg:tetrafluoroethane') - .fluid() - .gem() - .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES, GTMaterialFlags.DISABLE_DECOMPOSITION) - .iconSet(GTMaterialIconSet.QUARTZ) - .components('2x carbon', '2x hydrogen', '4x fluorine') - .color(0x46702e) - // Crafting components - event.create('tfg:kaolinite') - .dust() - .components('2x aluminium', '2x silicon', '9x oxygen', '4x hydrogen') - .color(0xEEB9AD) - .secondaryColor(0xF6A797) - event.create('tfg:vitrified_pearl') .dust() .flags(GTMaterialFlags.DECOMPOSITION_BY_CENTRIFUGING) .components('2x aluminium', '2x silicon', '9x oxygen', '4x hydrogen', '1x ender_pearl') .color(0xFFFFFF) .secondaryColor(0x67FFE6) + .formula("(Al2Si2O5(OH)4)(BeK4N5)") - //#region Solar Panel Chemicals - - event.create('tfg:chloryl_fluoride') - .gas() - .components('1x fluorine', '1x chlorine', '2x oxygen') - .color(0x8AFAF4) - - event.create('tfg:chlorine_pentafluoride') - .gas() - .components('5x fluorine', '1x chlorine') - .color(0x51F7C0) - - event.create('tfg:solar_coolant') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(163)) - .components('8x helium_3', '11x oxygen', '11x hydrogen') - .color(0xEDFFB3) - - event.create('tfg:solar_coolant_tier2') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(73)) - .formula('(HeΒ³8O11H11)8(Ar)(?)') - .color(0xfeff5d) - - //#endregion - event.create('liquid_carbon_dioxide') - .liquid(100) //Not realistic but I want it to be cryogenic - .components('1x carbon', '2x oxygen') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .color(0xDBFBFF) - - //#region Rockwool - event.create('tfg:aes_mix') - .dust() - .flags(GTMaterialFlags.DECOMPOSITION_BY_CENTRIFUGING) - .components('5x silicon_dioxide', '4x quicklime', '1x magnesia') - .hazard(HazardProperty.HazardTrigger.SKIN_CONTACT, GTMedicalConditions.CHEMICAL_BURNS) - .color(0xE0E9E4) - //.secondaryColor(0x54483d) - event.create('tfg:molten_aes') - .liquid(2900) - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .components('5x silicon_dioxide', '4x quicklime', '1x magnesia') - .color(0xe65609) - .secondaryColor(0xe65609) - //#endregion - - //#region Ammonia Borane - event.create('tfg:sodium_hydride') - .dust() - .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) - .components('1x sodium', '1x hydrogen') - .color(0xEDF5F3) - event.create('tfg:boric_acid') - .dust() - .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) - .components('3x hydrogen', '1x boron', '3x oxygen') - .color(0xDFEDDF) - .secondaryColor(0xDFEDDF) - event.create('tfg:trimethyl_borate') - .liquid() - .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) - .components('3x carbon', '9x hydrogen', '1x boron', '3x oxygen') - .color(0xF7F7F7) - event.create('tfg:sodium_borohydride') - .dust() - .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) - .components('1x sodium', '1x boron', '4x hydrogen') - .color(0xE8F1FF) - .secondaryColor(0xE8F1FF) - event.create('tfg:sodium_methoxide') - .dust() - .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) - .components('1x sodium', '1x oxygen', '1x carbon', '3x hydrogen') - .color(0xE8E5DF) - .secondaryColor(0xE8E5DF) - event.create('tfg:ammonia_borane') - .dust() - .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING, GTMaterialFlags.GENERATE_PLATE) - .components('1x ammonia', '1x boron', '3x hydrogen') - .color(0xCCE3E3) - .secondaryColor(0xCCE3E3) - //#endregion - - //#region polyurethane - event.create('tfg:aniline') - .liquid() - .components('6x carbon', '5x hydrogen', '1x nitrogen', '2x hydrogen') - .color(0xBAB999) - event.create('tfg:dimethyl_carbonate') - .liquid() - .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) - .components('3x carbon','6x hydrogen', '3x oxygen') - .color(0xFFFFF2) - event.create('tfg:methyl_phenylcarbamate') - .liquid() - .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) - .components('8x carbon','9x hydrogen','1x nitrogen', '2x oxygen') - .color(0xB4EDB4) - event.create('tfg:methylene_diphenyl_dicarbamate') - .liquid() - .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) - .components('17x carbon','18x hydrogen','2x nitrogen', '4x oxygen') - .color(0x69C2C1) - event.create('tfg:methylene_diphenyl_diisocyanate') - .dust() - .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) - .components('13x carbon','10x hydrogen','2x nitrogen', '2x oxygen') - .color(0xFFFFBA) - //#endregion - - //#region aerogel - event.create('tfg:tmos') - .liquid() - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .color(0xC2C6CC) - event.create('tfg:silica_gel') - .liquid() - .color(0x60BABF) - .secondaryColor(0xFFD38C) - event.create('tfg:soaked_silica_gel') - .liquid() - .color(0x9ED5D9) - //#endregion - - //#region Bromine Line - - event.create('raw_brine') - .fluid() - .color(0x947a11) - //.secondaryColor(0x81FFF9) - - event.create('hot_brine') - .liquid(320) - .color(0x944611) - - event.create('hot_chlorinated_brominated_brine') - .liquid(320) - .color(0xbf8d5a) - .formula('?Cl') - - event.create('brominated_chlorine_vapor') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(320)) - .color(0xbf8d5a) - .formula('ClBr(H2O)') - - event.create('acidic_bromine_solution') - .liquid(new GTFluidBuilder().attribute(GTFluidAttributes.ACID)) - .color(0xe7b989) - .formula('ClBr') - - event.create('concentrated_bromine_solution') - .liquid() - .color(0x905d29) - .formula('Br2Cl') - - event.create('debrominated_brine') - .liquid() - .color(0xc3874a) - - event.create('acidic_bromine_exhaust') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).attribute(GTFluidAttributes.ACID).temperature(293)) - .color(0xec9c4a) - .formula('(H2O)3Cl') - - event.create('hot_alkaline_debrominated_brine') - .liquid() - .color(0xcc6a06) - .formula('?2Cl') - - event.create('hot_debrominated_brine') - .liquid(320) - .color(0xb08e6b) - - event.create('hydrogen_iodide') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(293)) - .color(0x82a6ce) - .formula('HI') - - //#endregion - - //#region Mars Ore Line - - event.create('lightweight_ostrum_vapor') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(760)) - .formula('(?)') - - event.create('ostrum_vapor') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(815)) - .formula('(?)') - - event.create('dense_ostrum_vapor') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(930)) - .formula('(?)') - - event.create('residual_radioactive_concoction') - .liquid(new GTFluidBuilder().customStill().temperature(450)) - .formula('(?)') - - //#endregion - - //#region Moon Ore Line - - event.create('regolith_vapor') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(727)) - - event.create('tfg:certus_regolith') - .dust() - .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) - .iconSet(GTMaterialIconSet.CERTUS) - .color('0xc1e6e4') - .secondaryColor('0x7a5225') - - event.create('tfg:goethe_regolith') - .dust() - .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) - .iconSet(GTMaterialIconSet.METALLIC) - .color('0xb0af5b') - .secondaryColor('0x7a5225') - - event.create('tfg:bright_regolith') - .dust() - .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) - .iconSet(GTMaterialIconSet.SHINY) - .color('0xf0efe9') - .secondaryColor('0xffffff') - - event.create('tfg:cassiterite_regolith') - .dust() - .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) - .iconSet(GTMaterialIconSet.METALLIC) - .color('0xbab6b7') - .secondaryColor('0x7a5225') - - event.create('tfg:regolith_mush') - .dust() - .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) - .iconSet(GTMaterialIconSet.WOOD) - .color('0xa2cde0') - .secondaryColor('0x7a5225') - - //#endregion //#region Tungsten Line @@ -413,18 +74,18 @@ const registerTFGMaterials = (event) => { .components('2x sodium','1x tungsten', '4x oxygen') .color('0xdcf6f7') - event.create('tfg:ammonium_tungstate') - .dust() - .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES, GTMaterialFlags.DISABLE_DECOMPOSITION) - .iconSet(GTMaterialIconSet.DULL) - .formula('(NH4)10(H2W12O42)') - .color('0xfafafa') + event.create('tfg:ammonium_tungstate') + .dust() + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES, GTMaterialFlags.DISABLE_DECOMPOSITION) + .iconSet(GTMaterialIconSet.DULL) + .components('10x ammonia', '2x hydrogen', '12x tungsten', '42x oxygen') + .color('0xfafafa') event.create('tfg:apt') .gem() .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .iconSet(GTMaterialIconSet.FLINT) - .formula("(NH4)10(H2W12O42)(H2O)4") + .components('10x ammonia', '4x water', '2x hydrogen', '12x tungsten', '42x oxygen') .color('0xaabdf0') event.create('tfg:tungsten_oxide') @@ -436,23 +97,6 @@ const registerTFGMaterials = (event) => { // #endregion - // #region Atmospheres - - event.create('tfg:mars_air') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(208)) - .color('0xD08957') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .components('94x carbon_dioxide', '3x nitrogen', '2x argon', '1x oxygen') - - // TODO: move neon and xenon somewhere else - event.create('tfg:liquid_mars_air') - .liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(58)) - .color('0xD08957') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .components('80x carbon_dioxide', '7x nitrogen', '5x argon', '3x oxygen', '1x neon', '1x krypton', '1x xenon') - - // #endregion - //#region New Alloy for Turbines event.create('tfg:tungsten_bismuth_oxide_composite') @@ -461,6 +105,7 @@ const registerTFGMaterials = (event) => { .secondaryColor(0xfffef0) .iconSet(GTMaterialIconSet.getByName('tfc_cassiterite')) .ingot() + .liquid() .blastTemp(3700, 'mid', GTValues.VA[GTValues.IV], (20*120)) .rotorStats(250, 90, 2 ,620) .flags( @@ -469,55 +114,88 @@ const registerTFGMaterials = (event) => { GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_BOLT_SCREW, GTMaterialFlags.EXCLUDE_BLOCK_CRAFTING_BY_HAND_RECIPES, - GTMaterialFlags.GENERATE_GEAR + GTMaterialFlags.GENERATE_FOIL, + GTMaterialFlags.GENERATE_FINE_WIRE ) + .fluidPipeProperties(4250, 1700, true, false, false, false) // #endregion - // #region Mars sap - - event.create('tfg:crimsene') - .liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(220)) - .gem() - .iconSet('lapis') - .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) - .color(0xB12727) - .secondaryColor(0x562C3E) - - event.create('tfg:warpane') - .liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(220)) - .gem() - .iconSet('quartz') - .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) - .color(0x45ABA9) - .secondaryColor(0x562C3E) - - event.create('tfg:mycelienzene') - .dust() - .color(0x9E7385) - - event.create('tfg:cooked_mycelienzane') - .liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(1830)) - .color(0x9E7385) - - event.create('tfg:iodomethane') - .liquid() - .components('1x carbon', '3x hydrogen', '1x iodine') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .color(0xAC45C6) - - event.create('tfg:trideuteroiodomethane') - .liquid() - .components('1x carbon', '3x deuterium', '1x iodine') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .color(0xDD9DED) - - // #endregion - // #region conductor event.create('tfg:thermally_conductive_fluid') .liquid() .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) .components('7x gallium', '2x tin', '1x zinc') .color('0x34cfeb') + // #endregion + + // #region holder materials + // These allow us to give material components to non-material items + // Requires .setIgnored to be called in core + event.create('tfg:nitrocellulose') + .dust() + .components('6x carbon', '7x hydrogen', '3x nitrogen', '11x oxygen') + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .color(0xFFFFFF) + event.create('tfg:cellulose_matrix') + .dust() + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .color(0xFFFFFF) + event.create('tfg:tfg_polycaprolactam') + .ingot() + .components('6x carbon', '11x hydrogen', '1x nitrogen', '1x oxygen') + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES, GTMaterialFlags.EXPLOSIVE) + .macerateInto('gtceu:polycaprolactam') + .color(0x000000) + // #endregion + + // #region Zirconium + event.create('tfg:zircon') + .gem() + .color(0xF1B6B0) + .secondaryColor(0x4BABC6) + .iconSet('gem_horizontal') + .components('1x zirconium', '1x silicon', '4x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:zirconium_tetrachloride') + .dust() + .color(0xF1B6B0) + .secondaryColor(0x146946) + .iconSet('rough') + .components('1x zirconium', '4x chlorine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:silicon_tetrachloride') + .liquid() + .color(0x707078) + .secondaryColor(0x146946) + .components('1x silicon', '4x chlorine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:zirconium_bromide') + .dust() + .color(0xBA776F) + .secondaryColor(0x146985) + .iconSet('shiny') + .components('1x zirconium', '4x bromine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:zirconium_diboride') + .ingot() + .color(0xFADED2) + .secondaryColor(0x4FA883) + .iconSet('chonky') + .components('1x zirconium', '2x boron') + .flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_FOIL) + + event.create('tfg:boron_carbide') + .ingot() + .iconSet('dull') + .color(0x42705D) + .components('4x boron', '1x carbon') + .blastTemp(3041, "mid", GTValues.VA[GTValues.HV], 1500) + .flags(GTMaterialFlags.GENERATE_PLATE) + + // #endregion } diff --git a/kubejs/startup_scripts/tfg/materials.nuclear.js b/kubejs/startup_scripts/tfg/materials.nuclear.js deleted file mode 100644 index 6b10776bc..000000000 --- a/kubejs/startup_scripts/tfg/materials.nuclear.js +++ /dev/null @@ -1,271 +0,0 @@ -// priority: 0 -"use strict"; - -const registerTFGNuclearMaterials = (event) => { - - /* event.create('mysterious_ooze') - .fluid() - .color(0x500bbf) - .fluidTemp(69420) - .dust() - .cableProperties(GTValues.V[GTValues.LV], 69, 0, true) // Voltage, Amperage, EU loss, Is Superconductor. - .gem(2, 4000) - .element(GTElements.C) - .ore(2, 3) - .color(0x7D2DDB) - .iconSet(GTMaterialIconSet.LIGNITE) - .ingot() - .components('1x andesite', '1x iron') - .color(0x839689) - .iconSet(GTMaterialIconSet.DULL) - .flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_GEAR, GTMaterialFlags.GENERATE_SMALL_GEAR) - */ - - //#region Fluid - - event.create('dense_steam') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730)) - .components('2x hydrogen', '1x oxygen') - .flags( - GTMaterialFlags.DISABLE_DECOMPOSITION) - - event.create('radioactive_steam') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730)) - .components('2x hydrogen', '1x oxygen') - .formula('H2O(?)') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - - event.create('radioactive_waste') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730)) - .formula("(?)") - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - - event.create('irradiated_steam') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(4250)) - .formula("(?)") - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - - event.create('tfg:heavy_water') - .liquid(new GTFluidBuilder().temperature(236)) - .components('2x deuterium', '1x oxygen') - .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) - .iconSet(GTMaterialIconSet.FINE) - .color(0xB5B9FF) - .secondaryColor(0x81FFF9) - - event.create('nuclear_waste') - .liquid(new GTFluidBuilder().customStill().temperature(3850)) - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .formula('ThU(?)') - - event.create('dirty_hexafluorosilicic_acid') - .liquid(new GTFluidBuilder().attribute(GTFluidAttributes.ACID)) - //.liquid(320) - .formula('H2SiF6(?)') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .color(0xe6fafb) - .secondaryColor(0xb5fdff) - .iconSet(GTMaterialIconSet.getByName('thick_fluid')) - - event.create('martian_sludge') - .liquid(new GTFluidBuilder().temperature(4239)) - .formula('(?)') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .color(0xd86f27) - .secondaryColor(0xecd7c9) - .iconSet(GTMaterialIconSet.getByName('bullshit')) - - event.create('dioxygen_difluoride') - .fluid() - .components('2x oxygen', '2x fluorine') - .iconSet(GTMaterialIconSet.FINE) - .color(0xfcb603) - .secondaryColor(0xfc5e03) - - event.create('tritiated_water') - .fluid() - .components('2x tritium', '1x oxygen') - .iconSet(GTMaterialIconSet.FINE) - .color(0xb2c3e7) - - // FLiBe Line - - event.create('raw_rich_brine') - .liquid(new GTFluidBuilder().customStill().temperature(293)) - - event.create('hot_iodine_brine') - .liquid(new GTFluidBuilder().customStill().temperature(293)) - .formula('HIMgCl(?)') - - event.create('brominated_iodine_vapor') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(412)) - .formula('HI(?)') - - event.create('basic_bromine_exhaust') - .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(406)) - - event.create('dirty_flibe') - .liquid(new GTFluidBuilder().customStill().temperature(293)) - .formula('FLiBe(?)') - - event.create('flibe') - .liquid(new GTFluidBuilder().customStill().temperature(293)) - .formula('FLiBe') - - event.create('hot_flibe') - .liquid(new GTFluidBuilder().customStill().temperature(3293)) - .formula('FLiBe') - - //#endregion - - //#region Dust - - event.create('tfg:nuclear_residue') - .dust() - .formula('(?)') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .iconSet(GTMaterialIconSet.SHINY) - .color(0x332816) - .secondaryColor(0x674c24) - .iconSet(GTMaterialIconSet.RADIOACTIVE) - - event.create('tfg:oxidized_nuclear_residue') - .dust() - .formula('U?O?(?)') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .iconSet(GTMaterialIconSet.SHINY) - .color(0x286529) - .secondaryColor(0x012702) - .iconSet(GTMaterialIconSet.RADIOACTIVE) - - event.create('tfg:refined_nuclear_residue') - .dust() - .formula('U?(?)') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .color(0x82c383) - .secondaryColor('0xffffff') - .iconSet(GTMaterialIconSet.RADIOACTIVE) - - // FLiBe Dusts - - event.create('lithium_carbonate') - .dust() - .components('2x lithium', '1x carbon', '3x oxygen') - .formula('Li2CO3') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) - .color(0xffffff) - .secondaryColor(0xb7b9bd) - .iconSet(GTMaterialIconSet.GLASS) - - event.create('lithium_fluoride') - .gem() - .components('1x lithium', '1x fluorine') - .formula('LiF') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.DISABLE_MATERIAL_RECIPES) - .color(0xffffff) - .secondaryColor(0xb7b9bd) - .iconSet(GTMaterialIconSet.FLINT) - - event.create('tetrafluoroberyllate') - .gem() - .components('1x beryllium', '4x fluorine') - .formula('BeF4') - .flags(GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.DISABLE_MATERIAL_RECIPES) - .color(0xdcdee1) - .secondaryColor(0xb7b9bd) - .iconSet(GTMaterialIconSet.OPAL) - - //#endregion - - //#region Ingots - - event.create('thorium_230') - .ingot() - .element(GTElements.get("thorium_230")) - .iconSet(GTMaterialIconSet.RADIOACTIVE) - .flags(GTMaterialFlags.GENERATE_ROD) - .color(0xf8a8c0) - .secondaryColor(0xcd8dbc) - .radioactiveHazard(1000000) - - event.create("thorium_232") - .ingot() - .element(GTElements.get("thorium_232")) - .iconSet(GTMaterialIconSet.RADIOACTIVE) - .flags(GTMaterialFlags.GENERATE_ROD) - .color(0x694c66) - .radioactiveHazard(1000) - - event.create("ostrum_iodide") - .ingot() - .components('2x ostrum', 'iodine') - .blastTemp(3700, 'mid', GTValues.VA[GTValues.IV], (20*120)) - .iconSet(GTMaterialIconSet.BRIGHT) - .flags(GTMaterialFlags.GENERATE_GEAR) - .color(0xc696f2) - .secondaryColor(0x9b99ff) - - //#endregion - - //#region Fuel Pellet - - /* - Adding the Fuel Rod, the textures are applied through a model.json - Durability - Number of rod unused for now - %Heat - In ReactorCurve getHeating returns fuelHeat * 200.0d * throttle and getCooling returns _state.Heat() * (coolantConversion + 0.01). - Where coolantConversion is 1.00 if enough coolant is present. Solving that equation for a steady-state: heating + cooling = 0. - When throttle=coolantConversion=1:heat = fuelHeat * 200.0d / 1.01 - So one 100% cell is 198.0198 heat it should reach. Simulation accuracy might of course throw that off by a small margin. - So purely passively it reaches 20000.0 heat. - */ - -} - -const $FuelCellItem = Java.loadClass("fi.dea.mc.deafission.common.data.items.FuelCellItem"); - -StartupEvents.registry("item", (event) => { - event.createCustom("tfg:thorium_rod", () => { - return new $FuelCellItem( - 5000, - 1, - 0.7 // Max Heat 139 - 1 Fuel - ); - }) - event.createCustom("tfg:uranium_rod", () => { - return new $FuelCellItem( - 20000, - 1, - 2.2 // Max Heat 435 - 1 Fuel - ); - }) - event.createCustom("tfg:plutonium_rod", () => { - return new $FuelCellItem( - 30000, - 1, - 3.0 // Max Heat 595 - 1 Fuel - ); - }) - - event.createCustom("tfg:tbu_232_rod", () => { - return new $FuelCellItem( - 20000, - 1, - 2.0 - ); - }) -}); diff --git a/kubejs/startup_scripts/tfg/materials.power_rework.js b/kubejs/startup_scripts/tfg/materials.power_rework.js new file mode 100644 index 000000000..30350bc6b --- /dev/null +++ b/kubejs/startup_scripts/tfg/materials.power_rework.js @@ -0,0 +1,133 @@ +// priority: 0 +"use strict"; + +const registerTFGPowerReworkMaterials = (event) => { + + // Syngas + event.create('tfg:syngas') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill()) + .components('11x carbon', '20x hydrogen', '12x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + // Raw Aromatic Mix + event.create('tfg:raw_aromatic_mix') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(420)) + .components('137x carbon', '154x hydrogen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0x8a4b3d) + .secondaryColor(0xd8b6ac) + + // Aromatic Feedstock + event.create('tfg:aromatic_feedstock') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(450)) + .components('67x carbon', '74x hydrogen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0x915c2f) + .secondaryColor(0xe2c49b) + + // Reformed Aromatic Feedstock + event.create('tfg:reformed_aromatic_feedstock') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(500)) + .components('133x carbon', '146x hydrogen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0x4e6b83) + .secondaryColor(0xbacdde) + + // Reformate Gas + event.create('tfg:reformate_gas') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill()) + .components('13x carbon', '63x hydrogen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + // Cracker Off-Gas + event.create('tfg:cracker_off_gas') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(480)) + .components('31x carbon', '128x hydrogen', '2x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xa36f2a) + .secondaryColor(0xecd8ae) + + // Reformate Gas + event.create('tfg:btx_fuel') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill()) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + //#region Materials for BTX + + // Crude Mixed Gas + event.create('tfg:crude_mixed_gas') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(500)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0x9bb6c9) + .secondaryColor(0xd7e7ef) + + // Sodium Silicate + event.create('tfg:sodium_silicate') + .liquid(new GTFluidBuilder().temperature(293)) + .components('1x sodium', '1x silicon', '4x oxygen', '4x hydrogen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xcce0f0) + .secondaryColor(0xa9c6db) + + // Sodium Aluminium + event.create('tfg:sodium_aluminium') + .dust() + .components('2x sodium', '1x aluminium', '2x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .iconSet(GTMaterialIconSet.FLINT) + .color(0xf0e68c) + .secondaryColor(0xded7a8) + + // TPAOH + event.create('tfg:tpaoh') + .liquid(new GTFluidBuilder().temperature(293)) + .components('2x carbon', '9x hydrogen', '1x nitrogen', '1x oxygen', '2x sodium') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xffd8b1) + .secondaryColor(0xe6b88f) + + // ZSM-5 Gel + event.create('tfg:zsm5_gel') + .liquid(new GTFluidBuilder().temperature(323)) + .components('24x carbon', '128x hydrogen', '12x nitrogen', '5x silicon', '1x aluminium', '34x oxygen', '31x sodium') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xf2e8d6) + .secondaryColor(0xd0c4b0) + + // Catalyser Powder + event.create('tfg:catalyser_powder') + .dust() + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .iconSet(GTMaterialIconSet.FLINT) + .color(0x7f7f7f) + .secondaryColor(0xcfcfcf) + + // Clean Powder + event.create('tfg:clean_powder') + .dust() + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .iconSet(GTMaterialIconSet.FLINT) + .color(0xffffff) + .secondaryColor(0xdfe6e6) + + // Leachate + event.create('tfg:leachate') + .liquid(new GTFluidBuilder().temperature(298)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xbfd6d0) + .secondaryColor(0x8fbdb0) + + // Metal Rich Solution + event.create('tfg:metal_rich_solution') + .liquid(new GTFluidBuilder().temperature(298)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xb56f5a) + .secondaryColor(0xd9b0a3) + + // Aciditic Waste + event.create('tfg:aciditic_waste') + .liquid(new GTFluidBuilder().attribute(GTFluidAttributes.ACID)) + .color(0x9df2b4) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + +} diff --git a/kubejs/startup_scripts/tfg/moon/blocks.moon_deco.js b/kubejs/startup_scripts/tfg/moon/blocks.moon_deco.js new file mode 100644 index 000000000..0cd4d8935 --- /dev/null +++ b/kubejs/startup_scripts/tfg/moon/blocks.moon_deco.js @@ -0,0 +1,53 @@ +"use strict"; + +function registerTFGWorldGenMoonDecoBlocks(event) { + + // Moon + + event.create('tfg:lunar_roots', 'tfg:decorative_plant') + .soundType('nether_wart') + .lightLevel(0.4) + .tagItem('tfg:moon_plants') + .tagBlock('minecraft:replaceable') + + event.create('tfg:lunar_sprouts', 'tfg:decorative_plant') + .soundType('nether_wart') + .tagItem('tfg:moon_plants') + .tagBlock('minecraft:replaceable') + + event.create('betterend:chorus_lily', 'tfc:ground_cover') + .soundType('cherry_wood') + .hardness(0.5) + .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) + .opaque(false) + .notSolid() + .renderType('cutout') + + // 1 block tall + createPlant(event, 'inflexia', 'moon') + createPlant(event, 'chorus_grass', 'moon') + createPlant(event, 'salteago', 'moon') + createPlant(event, 'vaiolush_fern', 'moon') + + + // Mars + + + + // europa...? + + createPlant(event, 'crystal_grass', 'unused') + .box(3, 0, 3, 13, 12, 13) + createPlant(event, 'blooming_cooksonia', 'unused') + .box(3, 0, 3, 13, 12, 13) + createPlant(event, 'fracturn', 'unused') + .box(3, 0, 3, 13, 12, 13) + createPlant(event, 'jungle_grass', 'unused') + .box(3, 0, 3, 13, 12, 13) +} + diff --git a/kubejs/startup_scripts/tfg/moon/materials.moon.js b/kubejs/startup_scripts/tfg/moon/materials.moon.js new file mode 100644 index 000000000..24722152d --- /dev/null +++ b/kubejs/startup_scripts/tfg/moon/materials.moon.js @@ -0,0 +1,98 @@ +"use strict"; + +function registerTFGMoonMaterials(event) { + + // Solar Panel Chemicals + + event.create('tfg:chloryl_fluoride') + .gas() + .components('1x fluorine', '1x chlorine', '2x oxygen') + .color(0x8AFAF4) + + event.create('tfg:chlorine_pentafluoride') + .gas() + .components('5x fluorine', '1x chlorine') + .color(0x51F7C0) + + event.create('tfg:solar_coolant') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(163)) + .components('8x helium_3', '11x oxygen', '11x hydrogen') + .color(0xEDFFB3) + + event.create('tfg:solar_coolant_tier2') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(73)) + .components('8x tfg:solar_coolant', '1x argon') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xfeff5d) + + // Moon Ore Line + + event.create('regolith_vapor') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(727)) + + event.create('tfg:certus_regolith') + .dust() + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .iconSet(GTMaterialIconSet.CERTUS) + .color('0xc1e6e4') + .secondaryColor('0x7a5225') + + event.create('tfg:goethe_regolith') + .dust() + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .iconSet(GTMaterialIconSet.METALLIC) + .color('0xb0af5b') + .secondaryColor('0x7a5225') + + event.create('tfg:bright_regolith') + .dust() + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .iconSet(GTMaterialIconSet.SHINY) + .color('0xf0efe9') + .secondaryColor('0xffffff') + + event.create('tfg:cassiterite_regolith') + .dust() + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .iconSet(GTMaterialIconSet.METALLIC) + .color('0xbab6b7') + .secondaryColor('0x7a5225') + + event.create('tfg:regolith_mush') + .dust() + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .iconSet(GTMaterialIconSet.WOOD) + .color('0xa2cde0') + .secondaryColor('0x7a5225') + + // Ores + + event.create('armalcolite') + .gem(2) + .components('1x magnesium', '1x rutile', '1x ilmenite') + .color(0x443333) + .secondaryColor(0x5e2c21) + .iconSet(GTMaterialIconSet.getByName('tfc_emerald')) + .ore() + .addOreByproducts('rutile', 'rutile', 'ilmenite') + + event.create('desh') + .components('2x olivine', '1x rutile', '4x nitrogen') + .color(0xF39A4C) + .secondaryColor(0xF35A6C) + .iconSet(GTMaterialIconSet.getByName('tfc_hematite')) + .ore() + .addOreByproducts('olivine', 'rutile', 'rutile') + .ingot() + .liquid() + .blastTemp(2800, 'mid', GTValues.VA[GTValues.HV]) + .flags( + GTMaterialFlags.FORCE_GENERATE_BLOCK, + GTMaterialFlags.GENERATE_PLATE, + GTMaterialFlags.GENERATE_ROD, + GTMaterialFlags.GENERATE_DENSE, + GTMaterialFlags.GENERATE_GEAR, + GTMaterialFlags.GENERATE_FRAME, + GTMaterialFlags.DISABLE_ALLOY_BLAST + ) +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/nuclear/blocks.nuclear.js b/kubejs/startup_scripts/tfg/nuclear/blocks.nuclear.js new file mode 100644 index 000000000..ca75d5ef3 --- /dev/null +++ b/kubejs/startup_scripts/tfg/nuclear/blocks.nuclear.js @@ -0,0 +1,119 @@ +"use strict"; + +function registerTFGNuclearBlocks(event) { + + // Insulation + event.create('tfg:glacian_wool_frame') + .soundType('copper') + .hardness(4) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + + event.create('tfg:aes_insulation_frame') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + + event.create('tfg:moderate_core_frame') + .soundType('copper') + .hardness(4) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + + event.create('tfg:impure_moderate_core_frame') + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + + // Unfinished Insulation + event.create('tfg:moderate_core') + .soundType('ancient_debris') + .hardness(7) + .resistance(8) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .model('tfg:block/fission/moderate_core') + + event.create('tfg:impure_moderate_core') + .soundType('ancient_debris') + .hardness(7) + .resistance(8) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .model('tfg:block/fission/impure_moderate_core') + + // Nuclear cooling tower + event.create('tfg:titanium_exhaust_vent', 'tfg:active_particle_emitter') + .textureAll('tfg:block/titanium_exhaust_vent') + .soundType('metal') + .hardness(5) + .resistance(6) + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .mapColor('color_black') + .speedFactor(1.1) + .activeOffset(2, 2, 2) + .activeVelocity(0.0, 0.0, 0.0) + .activeParticle('tfg:cooling_steam') + .activeBase(0.0, 13.5, 0.0) + .activeCount(2) + .activeForced(false) + .hasTicker(true) + .emitDelay(4); + + event.create('tfg:titanium_concrete') + .translationKey('block.tfg.titanium_concrete') + .model('tfg:block/concrete/titanium_concrete') + .soundType('stone') + .mapColor('stone') + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .tagBoth('tfg:titanium_concrete') + + event.create('tfg:polished_titanium_concrete') + .translationKey('block.tfg.polished_titanium_concrete') + .model('tfg:block/concrete/polished_titanium_concrete') + .soundType('stone') + .mapColor('stone') + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .tagBoth('tfg:titanium_concrete') + + event.create('tfg:titanium_concrete_tile') + .translationKey('block.tfg.titanium_concrete_tile') + .model('tfg:block/concrete/titanium_concrete_tile') + .soundType('stone') + .mapColor('stone') + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .tagBoth('tfg:titanium_concrete') + + event.create('tfg:titanium_concrete_tile_small') + .translationKey('block.tfg.titanium_concrete_tile_small') + .model('tfg:block/concrete/titanium_concrete_tile_small') + .soundType('stone') + .mapColor('stone') + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .tagBoth('tfg:titanium_concrete') + + event.create('tfg:titanium_concrete_bricks') + .translationKey('block.tfg.titanium_concrete_bricks') + .model('tfg:block/concrete/titanium_concrete_bricks') + .soundType('stone') + .mapColor('stone') + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .tagBoth('tfg:titanium_concrete') + + event.create('tfg:titanium_concrete_bricks_small') + .translationKey('block.tfg.titanium_concrete_bricks_small') + .model('tfg:block/concrete/titanium_concrete_bricks_small') + .soundType('stone') + .mapColor('stone') + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .tagBoth('tfg:titanium_concrete') + + event.create('tfg:titanium_concrete_bricks_square') + .translationKey('block.tfg.titanium_concrete_bricks_square') + .model('tfg:block/concrete/titanium_concrete_bricks_square') + .soundType('stone') + .mapColor('stone') + .tagBlock('gtceu:mineable/pickaxe_or_wrench') + .tagBoth('tfg:titanium_concrete') + +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/nuclear/items.nuclear.js b/kubejs/startup_scripts/tfg/nuclear/items.nuclear.js new file mode 100644 index 000000000..33d19dcb9 --- /dev/null +++ b/kubejs/startup_scripts/tfg/nuclear/items.nuclear.js @@ -0,0 +1,59 @@ +"use strict"; + +function registerTFGNuclearItems(event) { + + // Empty Fission Rod + + event.create('tfg:empty_rod') + .translationKey('item.tfg.empty_road') + .texture('tfg:item/fuel_rod_empty') + .tag('tfg:fission_rods') + + event.create('tfg:refrigerant_pellet') + .translationKey('item.tfg.refrigerant_pellet') + .texture('tfg:item/refrigerant_pellet') + .tag('tfg:fission_coolant') + + // Moderator Line + + event.create('tfg:graphite_compound') + .translationKey('item.tfg.graphite_compound') + .texture('tfg:item/graphite_line/graphite_compound') + + event.create('tfg:raw_graphite_briquette') + .translationKey('item.tfg.raw_graphite_briquette') + .texture('tfg:item/graphite_line/raw_graphite_briquette') + + event.create('tfg:faulty_graphite_briquette') + .translationKey('item.tfg.faulty_graphite_briquette') + .texture('tfg:item/graphite_line/faulty_graphite_briquette') + + event.create('tfg:washed_graphite_briquette') + .translationKey('item.tfg.washed_graphite_briquette') + + event.create('tfg:pure_graphite_rod') + .translationKey('item.tfg.pure_graphite_rod') + .texture('tfg:item/graphite_line/pure_graphite_rod') + + event.create('tfg:impure_graphite_rod') + .translationKey('item.tfg.impure_graphite_rod') + .texture('tfg:item/graphite_line/impure_graphite_rod') + + event.create('tfg:annealed_graphite_rod') + .translationKey('item.tfg.annealed_graphite_rod') + + event.create('tfg:impure_annealed_graphite_rod') + .translationKey('item.tfg.impure_annealed_graphite_rod') + + event.create('tfg:graphite_moderator') + .translationKey('item.tfg.graphite_moderator') + .texture('tfg:item/graphite_line/graphite_moderator') + + event.create('tfg:impure_graphite_moderator') + .translationKey('item.tfg.impure_graphite_moderator') + .texture('tfg:item/graphite_line/impure_graphite_moderator') + + event.create('tfg:advanced_polymer_binder') + .translationKey('item.tfg.advanced_polymer_binder') + .texture('tfg:item/graphite_line/advanced_polymer_binder') +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/nuclear/materials.nuclear.js b/kubejs/startup_scripts/tfg/nuclear/materials.nuclear.js new file mode 100644 index 000000000..c78078fb4 --- /dev/null +++ b/kubejs/startup_scripts/tfg/nuclear/materials.nuclear.js @@ -0,0 +1,496 @@ +// priority: 0 +"use strict"; + +const registerTFGNuclearMaterials = (event) => { + + /* event.create('mysterious_ooze') + .fluid() + .color(0x500bbf) + .fluidTemp(69420) + .dust() + .cableProperties(GTValues.V[GTValues.LV], 69, 0, true) // Voltage, Amperage, EU loss, Is Superconductor. + .gem(2, 4000) + .element(GTElements.C) + .ore(2, 3) + .color(0x7D2DDB) + .iconSet(GTMaterialIconSet.LIGNITE) + .ingot() + .components('1x andesite', '1x iron') + .color(0x839689) + .iconSet(GTMaterialIconSet.DULL) + .flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_GEAR, GTMaterialFlags.GENERATE_SMALL_GEAR) + */ + + //#region Fluid + + // Steam + + event.create('dense_steam') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730)) + .components('2x hydrogen', '1x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('tfg:critical_steam') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730)) + .components('2x hydrogen', '1x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('radioactive_steam') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730)) + .components('1x water', '1x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('radioactive_waste') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730)) + .components('1x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('irradiated_steam') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(4250)) + .components('1x water', '1x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + // Coolant + + event.create('tfg:heavy_water') + .liquid(new GTFluidBuilder().temperature(236)) + .components('2x deuterium', '1x oxygen') + .color(0xB5B9FF) + .secondaryColor(0x81FFF9) + + event.create('tfg:semiheavy_water') + .liquid(new GTFluidBuilder().temperature(213)) + .components('1x deuterium', '1x hydrogen', '1x oxygen') + .color(0xb5ffff) + .secondaryColor(0x81FFF9) + + event.create('tfg:boron_enriched_coolant') + .liquid(new GTFluidBuilder().temperature(213)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0x43D6E4) + .secondaryColor(0x2C9AAF) + + event.create('tfg:hot_boron_enriched_coolant') + .liquid(new GTFluidBuilder().temperature(2000)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xFF715B) + .secondaryColor(0xFF9D6E) + + // Fision Waste + + event.create('uranium_waste') + .liquid(new GTFluidBuilder().customStill().temperature(3850)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xB5B9FF) + .secondaryColor(0x81FFF9) + + event.create('nuclear_waste') + .liquid(new GTFluidBuilder().customStill().temperature(3850)) + .components('1x thorium', '1x uranium', '1x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + // Plutonium Line + + event.create('dirty_hexafluorosilicic_acid') + .liquid(new GTFluidBuilder().attribute(GTFluidAttributes.ACID)) + .components('2x hydrogen', '1x silicon', '6x fluorine', '1x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xe6fafb) + .secondaryColor(0xb5fdff) + .iconSet(GTMaterialIconSet.getByName('thick_fluid')) + + event.create('martian_sludge') + .liquid(new GTFluidBuilder()) + .components('1x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xd86f27) + .secondaryColor(0xecd7c9) + .iconSet(GTMaterialIconSet.getByName('bullshit')) + + event.create('dioxygen_difluoride') + .liquid(new GTFluidBuilder().temperature(110).attribute(GTFluidAttributes.ACID)) + .components('2x oxygen', '2x fluorine') + .color(0xfcb603) + .secondaryColor(0xfc5e03) + + event.create('tritiated_water') + .fluid() + .components('2x tritium', '1x oxygen') + .color(0xb2c3e7) + + event.create('tfg:tetrafluoroethane') + .fluid() + .gem() + .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES, GTMaterialFlags.DISABLE_DECOMPOSITION) + .iconSet(GTMaterialIconSet.QUARTZ) + .components('2x carbon', '2x hydrogen', '4x fluorine') + .color(0x46702e) + + event.create('tfg:booster_t3') + .fluid() + .color(0xb2c3e7) + + event.create('tfg:polyalkylene_lubricant') + .fluid() + .color(0xb2c3e7) + + // FLiBe Line + + event.create('raw_rich_brine') + .liquid(new GTFluidBuilder().customStill().temperature(293)) + + event.create('hot_iodine_brine') + .liquid(new GTFluidBuilder().customStill().temperature(293)) + .components('1x hydrogen', '1x iodine', '1x magnesium', '1x chlorine', '1x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('brominated_iodine_vapor') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(412)) + .components('1x hydrogen', '1x iodine', '1x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('basic_bromine_exhaust') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(406)) + .components('1x bromine', '1x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('flibe') + .liquid(new GTFluidBuilder().customStill().temperature(293)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .components('1x fluorine', '1x lithium', '1x beryllium') + + event.create('dirty_flibe') + .liquid(new GTFluidBuilder().customStill().temperature(293)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .components('1x flibe', '1x unknown') + + event.create('hot_flibe') + .liquid(new GTFluidBuilder().customStill().temperature(3293)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .components('1x flibe') + + //#endregion + + //#region Dust + + event.create('tfg:nuclear_residue') + .dust() + .components('1x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .iconSet(GTMaterialIconSet.SHINY) + .color(0x332816) + .secondaryColor(0x674c24) + .iconSet(GTMaterialIconSet.RADIOACTIVE) + + event.create('tfg:oxidized_nuclear_residue') + .dust() + .components('1x uranium', '1x oxygen', '2x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .iconSet(GTMaterialIconSet.SHINY) + .color(0x286529) + .secondaryColor(0x012702) + .iconSet(GTMaterialIconSet.RADIOACTIVE) + + event.create('tfg:refined_nuclear_residue') + .dust() + .components('1x uranium', '2x unknown') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0x82c383) + .secondaryColor('0xffffff') + .iconSet(GTMaterialIconSet.RADIOACTIVE) + + // FLiBe Dusts + + event.create('lithium_carbonate') + .dust() + .components('2x lithium', '1x carbon', '3x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xffffff) + .secondaryColor(0xb7b9bd) + .iconSet(GTMaterialIconSet.GLASS) + + event.create('lithium_fluoride') + .gem() + .components('1x lithium', '1x fluorine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .color(0xffffff) + .secondaryColor(0xb7b9bd) + .iconSet(GTMaterialIconSet.FLINT) + + event.create('tetrafluoroberyllate') + .gem() + .components('1x beryllium', '4x fluorine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.DISABLE_MATERIAL_RECIPES) + .color(0xdcdee1) + .secondaryColor(0xb7b9bd) + .iconSet(GTMaterialIconSet.OPAL) + + //#endregion + + //#region Ingots + + event.create('thorium_230') + .ingot() + .element(GTElements.get("thorium_230")) + .iconSet(GTMaterialIconSet.RADIOACTIVE) + .flags(GTMaterialFlags.GENERATE_ROD) + .color(0xf8a8c0) + .secondaryColor(0xcd8dbc) + .radioactiveHazard(1000000) + + event.create("thorium_232") + .ingot() + .element(GTElements.get("thorium_232")) + .iconSet(GTMaterialIconSet.RADIOACTIVE) + .flags(GTMaterialFlags.GENERATE_ROD) + .color(0x694c66) + .radioactiveHazard(1000) + + event.create('tfg:americium_241') + .ingot() + .element(GTElements.get("americium_241")) + .iconSet(GTMaterialIconSet.RADIOACTIVE) + .flags(GTMaterialFlags.GENERATE_ROD) + .color(0x0600ff) + .secondaryColor(0x1b1d36) + .radioactiveHazard(1000000) + + event.create('tfg:neptunium_237') + .ingot() + .element(GTElements.get("neptunium_237")) + .iconSet(GTMaterialIconSet.RADIOACTIVE) + .flags(GTMaterialFlags.GENERATE_ROD) + .color(0x00df98) + .secondaryColor(0xffffff) + .radioactiveHazard(5000000) + + event.create('tfg:californium_252') + .ingot() + .element(GTElements.get("californium_252")) + .iconSet(GTMaterialIconSet.RADIOACTIVE) + .flags(GTMaterialFlags.GENERATE_ROD) + .color(0xffba00) + .secondaryColor(0xdfffff) + .radioactiveHazard(10000000) + + //#endregion + + //#region Epoxidized Isosorbide Linolenate + event.create('tfg:glucose') + .dust() + .components('6x carbon', '12x hydrogen', '6x oxygen') + .color(0xFFE9E3) + event.create('tfg:galactose') + .dust() + .components('6x carbon', '12x hydrogen', '6x oxygen') + .color(0xEBE3FF) + event.create('tfg:fructose') + .dust() + .components('6x carbon', '12x hydrogen', '6x oxygen') + .iconSet(GTMaterialIconSet.SHINY) + .color(0xE6FFE3) + event.create('tfg:sorbitol') + .dust() + .components('6x carbon', '14x hydrogen', '6x oxygen') + .iconSet(GTMaterialIconSet.FINE) + .color(0xDEFEFF) + event.create('tfg:14_sorbitan') + .dust() + .components('6x carbon', '12x hydrogen', '5x oxygen') + .iconSet(GTMaterialIconSet.FINE) + .color(0xB1F1F2) + event.create('tfg:isosorbide') + .dust() + .components('6x carbon', '10x hydrogen', '4x oxygen') + .iconSet(GTMaterialIconSet.FINE) + .color(0x84D6DB) + event.create('tfg:linolenic_acid') + .liquid() + .components('18x carbon', '30x hydrogen', '2x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xF5D478) + event.create('tfg:isosorbide_ln') + .liquid() + .components('42x carbon', '66x hydrogen', '6x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xDB5178) + event.create('tfg:epox_isosorbide_ln') + .liquid() + .components('42x carbon', '66x hydrogen', '12x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xAB2748) + + //#endregion + + //#region Isotopic Solvent + + // Organic Stabilizer + event.create('tfg:organic_stabilizer') + .dust() + .components('49x carbon', '64x hydrogen', '6x oxygen', '1x nitrogen', '1x chlorine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xd8c9b5) + .secondaryColor(0xb8a896) + .iconSet(GTMaterialIconSet.BRIGHT) + + // Trace Catalyst Salt - E + event.create('tfg:trace_catalyst_salt_e') + .dust() + .components( + '2x carbon', + '9x hydrogen', + '8x oxygen', + '1x copper', + '1x sodium', + '1x chlorine', + '1x magnesium', + '1x fluorine', + '1x sulfur') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xcad4cf) + .secondaryColor(0x9eb1a9) + .iconSet(GTMaterialIconSet.EMERALD) + + // Sodium Fluoride + event.create('tfg:sodium_fluoride') + .dust() + .components('1x sodium', '1x fluorine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xffffff) + .secondaryColor(0xb7b9bd) + .iconSet(GTMaterialIconSet.ROUGH) + + // Copper Trace Catalyst Dust + event.create('tfg:copper_trace_catalyst_dust') + .dust() + .components('1x copper', '1x sodium', '1x chlorine', '1x magnesium', '1x fluorine', '1x sulfur', '6x oxygen', '1x hydrogen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0x4a2e1a) + .secondaryColor(0x7a5c47) + .iconSet(GTMaterialIconSet.FINE) + + // Isotopic Solvent + event.create('tfg:isotopic_solvent') + .liquid(new GTFluidBuilder().temperature(320)) + .components( + '51x carbon', + '75x hydrogen', + '15x oxygen', + '1x nitrogen', + '2x chlorine', + '2x sodium', + '2x fluorine', + '1x copper', + '1x magnesium', + '1x sulfur', + '1x argon') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xd4b464) + .secondaryColor(0xa88e55) + + // Degraded Solvent Stream + event.create('tfg:degraded_solvent_stream') + .liquid(new GTFluidBuilder().temperature(350)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0x8b4513) + .secondaryColor(0xd2b48c) + + // Inert Dust Fraction + event.create('tfg:inert_dust_fraction') + .dust() + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xaaaaaa) + .secondaryColor(0x555555) + .iconSet(GTMaterialIconSet.RADIOACTIVE) + .radioactiveHazard(10000) + + // Residual Sludge + event.create('tfg:residual_sludge') + .liquid(new GTFluidBuilder().temperature(300)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0x4b0082) + .secondaryColor(0x8a2be2) + + // Gas Fraction + event.create('tfg:gas_fraction') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(400)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xcccccc) + .secondaryColor(0x999999) + + // Organic Degradation Slurry + event.create('tfg:organic_degradation_slurry') + .liquid(new GTFluidBuilder().temperature(300)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0x556b2f) + .secondaryColor(0x8fbc8f) + + // Recovered Ionic Complex + event.create('tfg:recovered_ionic_complex') + .dust() + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xffff00) + .secondaryColor(0xffa500) + .iconSet(GTMaterialIconSet.SAND) + + // Mixed Radioactive Fluid + event.create('tfg:mixed_radioactive_fluid') + .liquid(new GTFluidBuilder().temperature(300)) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xff4500) + .secondaryColor(0xff6347) + + + +}; + + //#region Fuel Pellet + + /* + Adding the Fuel Rod, the textures are applied through a model.json + Durability + Number of rod unused for now + %Heat + In ReactorCurve getHeating returns fuelHeat * 200.0d * throttle and getCooling returns _state.Heat() * (coolantConversion + 0.01). + Where coolantConversion is 1.00 if enough coolant is present. Solving that equation for a steady-state: heating + cooling = 0. + When throttle=coolantConversion=1:heat = fuelHeat * 200.0d / 1.01 + So one 100% cell is 198.0198 heat it should reach. Simulation accuracy might of course throw that off by a small margin. + So purely passively it reaches 20000.0 heat. + */ + +const $FuelCellItem = Java.loadClass("fi.dea.mc.deafission.common.data.items.FuelCellItem"); +const $DepletedFuelCellItem = Java.loadClass("fi.dea.mc.deafission.common.data.items.DepletedFuelCellItem"); + +//const $ComponentTotals = Java.loadClass("fi.dea.mc.deafission.core.components.ComponentTotals"); +//const $ReactorBaseStats = Java.loadClass("fi.dea.mc.deafission.core.ReactorBaseStats"); +//$ReactorBaseStats.Smr1 = new $ComponentTotals(200, 0, 0); + +StartupEvents.registry("item", (event) => { + const fuel = function(id, durability, rods, heat, createDepleted) { + + if (createDepleted === undefined) createDepleted = true; + + event.createCustom("tfg:" + id, () => { + return new $FuelCellItem( + durability, + rods, + heat + ); + }); + + if (createDepleted) { + event.createCustom("tfg:depleted_" + id, () => { + return new $DepletedFuelCellItem(); + }); + } + }; + + fuel("thorium_rod", 5000, 1, 0.7, false); // Max Heat 139 - 1 Fuel + fuel("uranium_rod", 20000, 1, 2.2, false); // Max Heat 435 - 1 Fuel + fuel("plutonium_rod", 30000, 4, 3, false); // Max Heat 595 - 1 Fuel + fuel("tbu_232_rod", 10000, 1, 2); // Max Heat 396 - 1 Fuel + + fuel("americium_241_rod", 1000000, 1, 0.5); + fuel("neptunium_237_rod", 50000, 1, 2); + fuel("californium_252_rod", 500000, 1, 4); +}); diff --git a/kubejs/startup_scripts/tfg/nuclear/materials.smr_additives.js b/kubejs/startup_scripts/tfg/nuclear/materials.smr_additives.js new file mode 100644 index 000000000..0e60005c2 --- /dev/null +++ b/kubejs/startup_scripts/tfg/nuclear/materials.smr_additives.js @@ -0,0 +1,28 @@ +// priority: 0 +"use strict"; + +const registerTFGSMRAdditiveMaterials = (event) => { + + event.create('tfg:ozone') + .gas() + .components('3x oxygen') + .color(0x00FBFF) + + event.create('tfg:tin_chloride') + .dust() + .components('1x tin', '2x chlorine') + .color(0x77CF67) + .iconSet(GTMaterialIconSet.ROUGH) + + event.create('tfg:cyclohexanone') + .liquid() + .components('6x carbon', '10x hydrogen', '1x oxygen') + .color(0xFCB16F) + + event.create('tfg:cyclohex_diperoxide') + .liquid() + .components('6x carbon', '12x hydrogen', '4x oxygen') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xBC8E63) + +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/blocks.supports.js b/kubejs/startup_scripts/tfg/primitive/blocks.supports.js similarity index 100% rename from kubejs/startup_scripts/tfg/blocks.supports.js rename to kubejs/startup_scripts/tfg/primitive/blocks.supports.js diff --git a/kubejs/startup_scripts/tfg/primitive/blocks.vases.js b/kubejs/startup_scripts/tfg/primitive/blocks.vases.js new file mode 100644 index 000000000..9cd41569e --- /dev/null +++ b/kubejs/startup_scripts/tfg/primitive/blocks.vases.js @@ -0,0 +1,77 @@ +"use strict"; + +function registerTFGVaseBlocks(event) { + + global.MINECRAFT_DYE_NAMES.forEach(color => { + event.create(`tfg:decorative_vase/generated/${color}`, 'cardinal') + .model(`tfg:block/decorative_vase/loot_vase_${color}`) + .soundType('decorated_pot') + .hardness(0.7) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(`color_${color}`) + .box(2, 0, 2, 14, 20, 14) + .fullBlock(false) + .opaque(false) + .renderType('cutout') + + event.create(`tfg:decorative_vase/${color}`, 'cardinal') + .model(`tfg:block/decorative_vase/vase_${color}`) + .soundType('decorated_pot') + .hardness(0.7) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(`color_${color}`) + .box(2, 0, 2, 14, 20, 14) + .fullBlock(false) + .opaque(false) + .renderType('cutout') + .blockEntity(be => { + be.attach('tfc:inventory', { + width: 9, + height: 1, + size: size => size.isSmallerThan('large') + }) + be.rightClickOpensInventory() + }) + + event.create(`tfg:decorative_vase/unfired/${color}`, 'cardinal') + .model(`tfg:block/decorative_vase/vase_unfired_${color}`) + .soundType('decorated_pot') + .hardness(0.7) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(`color_${color}`) + .box(2, 0, 2, 14, 20, 14) + .fullBlock(false) + .opaque(false) + .renderType('cutout') + }) + event.create('tfg:decorative_vase', 'cardinal') + .model('tfg:block/decorative_vase/vase') + .soundType('decorated_pot') + .hardness(0.7) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(`color_gray`) + .box(2, 0, 2, 14, 20, 14) + .fullBlock(false) + .opaque(false) + .renderType('cutout') + .blockEntity(be => { + be.attach('tfc:inventory', { + width: 9, + height: 1, + size: size => size.isSmallerThan('large') + }) + be.rightClickOpensInventory() + }) + + event.create('tfg:decorative_vase/unfired', 'cardinal') + .model('tfg:block/decorative_vase/vase_unfired') + .soundType('decorated_pot') + .hardness(0.7) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(`color_gray`) + .box(2, 0, 2, 14, 20, 14) + .fullBlock(false) + .opaque(false) + .renderType('cutout') + +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/primitive/items.primitive.js b/kubejs/startup_scripts/tfg/primitive/items.primitive.js new file mode 100644 index 000000000..210b42f18 --- /dev/null +++ b/kubejs/startup_scripts/tfg/primitive/items.primitive.js @@ -0,0 +1,234 @@ +"use strict"; + +function registerTFGPrimitiveItems(event) { + + // Paper making + event.create('tfg:hardwood_strip') + event.create('tfg:soaked_hardwood_strip') + event.create('tfg:soaked_unrefined_paper') + + // Chalk + event.create('tfg:unfired_chalk') + + Color.DYE.forEach((dyeName, dye) => { + event.create(`tfg:wet_${dyeName}_chalk`) + .textureJson({ + layer0: 'tfg:item/unfired_chalk' + }) + .color(0, dye.getHexJS()); + }); + + // Primitive rubber gloves + event.create('tfg:prepared_leather_gloves') + event.create('tfg:latex_soaked_gloves') + + // Chipboard + event.create('tfg:chipboard_composite') + event.create('tfg:treated_chipboard_composite') + event.create('tfg:high_density_treated_fiberboard') + + // Wax + event.create('tfg:paraffin_wax') + event.create('tfg:conifer_rosin') + + // Tools + event.create('tfg:flint_club_head') + + event.create('tfg:flint_arrow_head') + event.create('tfg:fletching') + + event.create('tfg:armor_stand_arms') + + event.create('tfg:harvest_basket') + .parentModel('tfg:item/harvest_basket') + .maxDamage(128) + + event.create('tfg:aluminium_harvest_basket') + .parentModel('tfg:item/aluminium_harvest_basket') + .unstackable() + + // Carts + event.create('tfg:cobalt_brass_wheel') + + // Fishing Nets + event.create('tfg:fishing_net/wood') + .translationKey('item.tfg.fishing_net.wood') + .parentModel('tfg:item/fishing_nets/wood_fishing_net') + .texture('tfg:item/fishing_nets/wood_fishing_net') + .maxDamage(112) + + event.create('tfg:fishing_net/brass') + .translationKey('item.tfg.fishing_net.brass') + .parentModel('tfg:item/fishing_nets/brass_fishing_net') + .texture('tfg:item/fishing_nets/brass_fishing_net') + .maxDamage(326) + + event.create('tfg:fishing_net/rose_gold') + .translationKey('item.tfg.fishing_net.rose_gold') + .parentModel('tfg:item/fishing_nets/rose_gold_fishing_net') + .texture('tfg:item/fishing_nets/rose_gold_fishing_net') + .maxDamage(380) + + event.create('tfg:fishing_net/sterling_silver') + .translationKey('item.tfg.fishing_net.sterling_silver') + .parentModel('tfg:item/fishing_nets/sterling_silver_fishing_net') + .texture('tfg:item/fishing_nets/sterling_silver_fishing_net') + .maxDamage(380) + + event.create('tfg:fishing_net/invar') + .translationKey('item.tfg.fishing_net.invar') + .parentModel('tfg:item/fishing_nets/invar_fishing_net') + .texture('tfg:item/fishing_nets/invar_fishing_net') + .maxDamage(740) + + event.create('tfg:fishing_net/tin_alloy') + .translationKey('item.tfg.fishing_net.tin_alloy') + .parentModel('tfg:item/fishing_nets/tin_alloy_fishing_net') + .texture('tfg:item/fishing_nets/tin_alloy_fishing_net') + .maxDamage(710) + + event.create('tfg:fishing_net/cupronickel') + .translationKey('item.tfg.fishing_net.cupronickel') + .parentModel('tfg:item/fishing_nets/cupronickel_fishing_net') + .texture('tfg:item/fishing_nets/cupronickel_fishing_net') + .maxDamage(560) + + event.create('tfg:fishing_net/magnalium') + .translationKey('item.tfg.fishing_net.magnalium') + .parentModel('tfg:item/fishing_nets/magnalium_fishing_net') + .texture('tfg:item/fishing_nets/magnalium_fishing_net') + .maxDamage(1830) + + // Universal compost items + event.create('tfg:universal_compost_browns') + .tag('tfc:compost_browns_low') + + event.create('tfg:universal_compost_greens') + .tag('tfc:compost_greens_low') + + // Etched Diamond Etching Tip + event.create('tfg:etching_diamond_tip') + + // Cloth & String + event.create('tfg:polycaprolactam_fabric') + event.create('tfg:polycaprolactam_string') + event.create('tfg:phantom_silk') + event.create('tfg:phantom_thread') + + // 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') + + event.create('tfg:flax_bundle') + .tag('tfc:scrapable') + .texture('tfg:item/flax_bundle') + + event.create('tfg:bundled_scraped_flax') + .tag('tfc:scrapable') + .texture('tfg:item/bundled_scraped_flax') + + // Molds + event.create('tfg:rod_mold', 'tfc:mold') + .capacity(72) + .texture("base", "tfg:item/mold/fired/rod_mold_empty") + .texture("fluid", "tfg:item/mold/fired/rod_mold_overlay") + .tag('tfc:fired_molds') + .tag('tfc:molds') + .fluidTagAccept('tfg:usable_in_rod_mold') + .tfcccAllowedInMoldTable([ + "XXXXXXXXXXXXXX", + "XXXXXXXXXXXXXX", + "XXXXXXXXXX XX", + "XXXXXXXXX XX", + "XXXXXXXX XXX", + "XXXXXXX XXXX", + "XXXXXX XXXXX", + "XXXXX XXXXXX", + "XXXX XXXXXXX", + "XXX XXXXXXXX", + "XX XXXXXXXXX", + "XX XXXXXXXXXX", + "XXXXXXXXXXXXXX", + "XXXXXXXXXXXXXX" + ]) + + event.create('tfg:small_gear_mold', 'tfc:mold') + .capacity(144) + .texture("base", "tfg:item/mold/fired/small_gear_mold_empty") + .texture("fluid", "tfg:item/mold/fired/small_gear_mold_overlay") + .tag('tfc:fired_molds') + .tag('tfc:molds') + .fluidTagAccept('tfg:usable_in_small_gear_mold') + .tfcccAllowedInMoldTable([ + "XXXXXXXXXXXXXX", + "XXXXXXX XXXX", + "XX X XXXX", + "XX XXXX", + "XX X", + "XXX X", + "XX XX X", + "X XX XX", + "X XXX", + "X XX", + "XXXX XX", + "XXX X XX", + "XXX XXXXXXXX", + "XXXXXXXXXXXXXX" + ]) + + event.create('tfg:nugget_mold', 'tfc:mold') + .capacity(64) + .texture("base", "tfg:item/mold/fired/nugget_mold_empty") + .texture("fluid", "tfg:item/mold/fired/nugget_mold_overlay") + .tag('tfc:fired_molds') + .tag('tfc:molds') + .fluidTagAccept('tfc:usable_in_ingot_mold') + .tfcccAllowedInMoldTable([ + "XXXXXXXXXXXXXX", + "XXXXXXXXXXXXXX", + "XXX XXXXX XXX", + "XX XXX XX", + "XX XX XX", + "XXX XXXXX XXX", + "XXXXXXXXXXXXXX", + "XXXXXXXXXXXXXX", + "XXX XXXX XXX", + "XX XXX XX", + "XX XXX XX", + "XXX XXXXX XXX", + "XXXXXXXXXXXXXX", + "XXXXXXXXXXXXXX" + ]) + + // Unfired Molds + event.create('tfg:unfired_rod_mold') + .texture("tfg:item/mold/unfired/unfired_rod_mold") + .tag('tfc:unfired_molds') + .tag('tfc:fire_clay_recycle_5') + .tag('tfc:molds') + .tag('tfc:unfired_pottery') + + event.create('tfg:unfired_small_gear_mold') + .texture("tfg:item/mold/unfired/unfired_small_gear_mold") + .tag('tfc:unfired_molds') + .tag('tfc:fire_clay_recycle_5') + .tag('tfc:molds') + .tag('tfc:unfired_pottery') + + event.create('tfg:unfired_nugget_mold') + .texture("tfg:item/mold/unfired/unfired_nugget_mold") + .tag('tfc:unfired_molds') + .tag('tfc:clay_recycle_5') + .tag('tfc:molds') + .tag('tfc:unfired_pottery') +} diff --git a/kubejs/startup_scripts/tfg/primitive/materials.primitive.js b/kubejs/startup_scripts/tfg/primitive/materials.primitive.js new file mode 100644 index 000000000..9edbd241e --- /dev/null +++ b/kubejs/startup_scripts/tfg/primitive/materials.primitive.js @@ -0,0 +1,98 @@ +"use strict"; + +function registerTFGPrimitiveMaterials(event) { + + // Paper + event.create('hardwood') + .dust() + .flags(GTMaterialFlags.FLAMMABLE) + .iconSet(GTMaterialIconSet.WOOD) + .color('0x7a5225') + .secondaryColor('0x7a5225') + + event.create('thermochemically_treated_hardwood') + .dust() + .flags(GTMaterialFlags.FLAMMABLE) + .iconSet(GTMaterialIconSet.WOOD) + .color('0x52482c') + .secondaryColor('0x52482c') + + // Tree tapping + event.create('tfg:latex') + .liquid() + .color(0xFBB982) + + event.create('tfg:vulcanized_latex') + .liquid() + .color(0xc79973) + + event.create('tfg:conifer_pitch') + .liquid() + .color(0xfbdf82) + .secondaryColor(0xff9d2e) + + // Food/Cooking + event.create('lactose') + .dust() + .iconSet(GTMaterialIconSet.FINE) + .color('0xede8da') + .secondaryColor('0xeddcad') + .components('12x carbon', '22x hydrogen', '11x oxygen') + + event.create('tfg:sodium_dihydrogen_citrate') + .dust() + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .iconSet(GTMaterialIconSet.BRIGHT) + .components('6x carbon', '7x hydrogen', '1x sodium', '7x oxygen') + .color('0xE38818') + + event.create('tfg:citric_acid') + .dust() + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .iconSet(GTMaterialIconSet.SHINY) + .components('6x carbon', '8x hydrogen', '7x oxygen') + .color('0xE3AD18') + + // I decided to make these materials because why not? + event.create('tfg:rich_stock') + .liquid(new GTFluidBuilder().customStill().state(GTFluidState.LIQUID).temperature(360)); + + event.create('tfg:light_stock') + .liquid(new GTFluidBuilder().customStill().state(GTFluidState.LIQUID).temperature(360)); + + event.create('tfg:brown_gravy') + .liquid(new GTFluidBuilder().customStill().state(GTFluidState.LIQUID).temperature(360)); + + // Ores -- these need to be in the gtceu namespace for the ore tool to work + event.create('tarkianite') + .ore() + .components('1x copper', '1x iron', '4x rhenium', '4x molybdenum', '8x sulfur') + .color(0x8bb054) + .secondaryColor(0x3d8021) + .iconSet(GTMaterialIconSet.getByName('tfc_emerald')) + .addOreByproducts('sulfur', 'rhenium', 'molybdenum') + + // Metals/minerals + event.create('aluminium_silicate') + .dust() + .ingot() + .liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(1520)) + .components('2x aluminium', '1x silicon', '5x oxygen') + .iconSet('metallic') + .color(0xB6D3FF) + .secondaryColor(0x6F4AB3) + + event.create('tfg:kaolinite') + .dust() + .components('2x aluminium', '2x silicon', '9x oxygen', '4x hydrogen') + .color(0xEEB9AD) + .secondaryColor(0xF6A797) + .formula("Al2Si2O5(OH)4") + + // Film developing + event.create('tfg:pyrogallol') + .dust() + .color(0xf0ccb4) + .formula("C6H3(OH)3") + .iconSet('rough') +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/sounds.js b/kubejs/startup_scripts/tfg/sounds.js new file mode 100644 index 000000000..b169ac3d1 --- /dev/null +++ b/kubejs/startup_scripts/tfg/sounds.js @@ -0,0 +1,29 @@ +// priority: 0 +"use strict"; + +function registerTFGSounds(event) { + + event.create('tfg:ambient.upper_nether_lush.loop') + event.create('tfg:ambient.upper_nether_cave.loop') + event.create('tfg:ambient.upper_nether.additions') + event.create('tfg:ambient.upper_nether.mood') + + event.create('tfg:ambient.lower_nether.loop') + event.create('tfg:ambient.lower_nether.additions') + event.create('tfg:ambient.lower_nether.mood') + + event.create('tfg:ambient.moon.additions') + event.create('tfg:ambient.moon.mood') + + event.create('tfg:ambient.mars_desert.loop') + event.create('tfg:ambient.mars_desert.additions') + event.create('tfg:ambient.mars_desert.mood') + + event.create('tfg:ambient.mars_land.loop') + event.create('tfg:ambient.mars_land.additions') + event.create('tfg:ambient.mars_land.mood') + + event.create('tfg:ambient.venus_surface.loop') + event.create('tfg:ambient.venus_surface.additions') + event.create('tfg:ambient.venus_surface.mood') +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/space_general/items.space.js b/kubejs/startup_scripts/tfg/space_general/items.space.js new file mode 100644 index 000000000..a13727058 --- /dev/null +++ b/kubejs/startup_scripts/tfg/space_general/items.space.js @@ -0,0 +1,33 @@ +"use strict"; + +function registerTFGSpaceItems(event) { + + // Space suits + event.create('tfg:space_suit_fabric') + event.create('tfg:better_space_suit_fabric') + + // Tier2 Insulation + event.create('tfg:aes_wool') + event.create('tfg:aes_compressed_wool') + event.create('tfg:aes_insulation_sheet') + event.create('tfg:aes_insulation_roll') + + //Tier 2 Rocket Parts + event.create('tfg:rocket_fin_t2') + event.create('tfg:rocket_cone_t2') + + //Tier 3 Insulation + event.create('tfg:aes_polyurethane') + event.create('tfg:mli_shielding') + event.create('tfg:silica_aerogel') + + //Tier 3 Rocket Parts + event.create('tfg:rocket_fin_t3') + event.create('tfg:rocket_cone_t3') + event.create('tfg:elite_power_thruster') + + // Solar Panel + event.create('tfg:photo_cell_t1') + .translationKey("item.tfg.basic.photovoltaic.cell") + .texture('tfg:item/photo_cell_t1') +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/space_general/materials.rockets.js b/kubejs/startup_scripts/tfg/space_general/materials.rockets.js new file mode 100644 index 000000000..dbbccfcd6 --- /dev/null +++ b/kubejs/startup_scripts/tfg/space_general/materials.rockets.js @@ -0,0 +1,162 @@ +"use strict"; + +function registerTFGRocketMaterials(event) { + + // Space Rocket Materials + + event.create('rocket_alloy_t1') + .ingot() + .components('6x aluminium', '2x stainless_steel', '1x red_steel') + .color(0x333e47) + .iconSet('metallic') + .flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR) + .blastTemp(1760, 'low', 256, 900) + + event.create('rocket_alloy_t2') + .ingot() + .components('19x titanium', '4x vanadium', '3x aluminium', '3x chromium', '3x tin') + .color(0x3c253d) + .iconSet('metallic') + .flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR, GTMaterialFlags.DISABLE_ALLOY_BLAST) + .blastTemp(3200, 'mid', 1024, 1100) + .liquid() + +/* event.create('rocket_alloy_t3') + .ingot() + .components('8x titanium', '9x tungsten_steel', '2x tantalum', '2x radon') + .color(0x6c678b) + //.secondaryColor(0xa59fc6) + .liquid() + .removeHazard() + .iconSet('metallic') + .flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR) + .blastTemp(4200, 'high', 4096, 1300) + */ + + // Insulation + event.create('vitrified_asbestos') + .dust() + .fluid() + .iconSet('glass') + .color(0xcccccc) + + event.create('tfg:aes_mix') + .dust() + .flags(GTMaterialFlags.DECOMPOSITION_BY_CENTRIFUGING) + .components('5x silicon_dioxide', '4x quicklime', '1x magnesia') + .hazard(HazardProperty.HazardTrigger.SKIN_CONTACT, GTMedicalConditions.CHEMICAL_BURNS) + .color(0xE0E9E4) + event.create('tfg:molten_aes') + .liquid(2900) + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .components('5x silicon_dioxide', '4x quicklime', '1x magnesia') + .color(0xe65609) + .secondaryColor(0xe65609) + + //#region Ammonia Borane + event.create('tfg:sodium_hydride') + .dust() + .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) + .components('1x sodium', '1x hydrogen') + .color(0xEDF5F3) + event.create('tfg:boric_acid') + .dust() + .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) + .components('3x hydrogen', '1x boron', '3x oxygen') + .color(0xDFEDDF) + .secondaryColor(0xDFEDDF) + event.create('tfg:trimethyl_borate') + .liquid() + .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) + .components('3x carbon', '9x hydrogen', '1x boron', '3x oxygen') + .color(0xF7F7F7) + event.create('tfg:sodium_borohydride') + .dust() + .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) + .components('1x sodium', '1x boron', '4x hydrogen') + .color(0xE8F1FF) + .secondaryColor(0xE8F1FF) + event.create('tfg:sodium_methoxide') + .dust() + .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) + .components('1x sodium', '1x oxygen', '1x carbon', '3x hydrogen') + .color(0xE8E5DF) + .secondaryColor(0xE8E5DF) + event.create('tfg:ammonia_borane') + .dust() + .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING, GTMaterialFlags.GENERATE_PLATE) + .components('1x ammonia', '1x boron', '3x hydrogen') + .color(0xCCE3E3) + .secondaryColor(0xCCE3E3) + //#endregion + + //#region polyurethane + event.create('tfg:aniline') + .liquid() + .components('6x carbon', '5x hydrogen', '1x nitrogen', '2x hydrogen') + .color(0xBAB999) + event.create('tfg:dimethyl_carbonate') + .liquid() + .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) + .components('3x formaldehyde') // CH2O + .color(0xFFFFF2) + event.create('tfg:methyl_phenylcarbamate') + .liquid() + .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) + .components('8x carbon','9x hydrogen','1x nitrogen', '2x oxygen') + .color(0xB4EDB4) + event.create('tfg:methylene_diphenyl_dicarbamate') + .liquid() + .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) + .components('17x carbon','18x hydrogen','2x nitrogen', '4x oxygen') + .color(0x69C2C1) + event.create('tfg:methylene_diphenyl_diisocyanate') + .dust() + .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) + .components('13x carbon','10x hydrogen','2x nitrogen', '2x oxygen') + .color(0xFFFFBA) + //#endregion + + //#region aerogel + event.create('tfg:tmos') + .liquid() + .components('1x silicon', '4x methoxy') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + .color(0xC2C6CC) + event.create('tfg:silica_gel') + .liquid() + .color(0x60BABF) + .secondaryColor(0xFFD38C) + event.create('tfg:soaked_silica_gel') + .liquid() + .color(0x9ED5D9) + //#endregion + + + // Space suit gases (these all add up to 10B of components = 1B of space suit gas) + + event.create('tfg:compressed_nitrox') + .gas() + .components('8x nitrogen', '2x oxygen') + .color(0xaef5ef) + + event.create('tfg:compressed_heliox') + .gas() + .components('8x helium', '2x oxygen') + .color(0xf5eeb3) + + event.create('tfg:compressed_heliox_3') + .gas() + .components('8x helium_3', '2x oxygen') + .color(0xf5ea90) + + event.create('tfg:compressed_trimix') + .gas() + .components('5x nitrogen', '3x oxygen', '2x helium') + .color(0xc3fab9) + + event.create('tfg:compressed_trimix_3') + .gas() + .components('5x nitrogen', '3x oxygen', '2x helium_3') + .color(0xa3ed95) +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/blocks.aqueducts.js b/kubejs/startup_scripts/tfg/stone_types/blocks.aqueducts.js similarity index 100% rename from kubejs/startup_scripts/tfg/blocks.aqueducts.js rename to kubejs/startup_scripts/tfg/stone_types/blocks.aqueducts.js diff --git a/kubejs/startup_scripts/tfg/blocks.space.js b/kubejs/startup_scripts/tfg/stone_types/blocks.rocks.js similarity index 71% rename from kubejs/startup_scripts/tfg/blocks.space.js rename to kubejs/startup_scripts/tfg/stone_types/blocks.rocks.js index 93af9988b..be5727415 100644 --- a/kubejs/startup_scripts/tfg/blocks.space.js +++ b/kubejs/startup_scripts/tfg/stone_types/blocks.rocks.js @@ -1,60 +1,49 @@ "use strict"; -function registerTFGSpaceBlocks(event) { - - // #region Dimension markers - event.create('tfg:marker/moon') - .stoneSoundType() - .item(item => { - item.modelJson({ parent: 'tfg:block/marker/moon' }) - }) - .tagBlock('c:hidden_from_recipe_viewers') - .fullBlock(true) - .opaque(true) - - event.create('tfg:marker/mars') - .stoneSoundType() - .item(item => { - item.modelJson({ parent: 'tfg:block/marker/mars' }) - }) - .tagBlock('c:hidden_from_recipe_viewers') - .fullBlock(true) - .opaque(true) - - event.create('tfg:marker/venus') - .stoneSoundType() - .item(item => { - item.modelJson({ parent: 'tfg:block/marker/venus' }) - }) - .tagBlock('c:hidden_from_recipe_viewers') - .fullBlock(true) - .opaque(true) - - event.create('tfg:marker/mercury') - .stoneSoundType() - .item(item => { - item.modelJson({ parent: 'tfg:block/marker/mercury' }) - }) - .tagBlock('c:hidden_from_recipe_viewers') - .fullBlock(true) - .opaque(true) - - event.create('tfg:marker/glacio') - .stoneSoundType() - .item(item => { - item.modelJson({ parent: 'tfg:block/marker/glacio' }) - }) - .tagBlock('c:hidden_from_recipe_viewers') - .fullBlock(true) - .opaque(true) - - // #endregion Dimension markers +function registerTFGRockBlocks(event) { const SHAPES = ['stairs', 'slab', 'wall'] const AA_REGULAR_STONES = ['moon', 'mars', 'venus', 'mercury', 'glacio'] // #region Raw Stones + + SHAPES.forEach(shape => { + event.create(`tfg:rock/deepslate_${shape}`, shape) + .soundType(global.STONE_CHARACS.deepslate.sound) + .textureAll('minecraft:block/deepslate') + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/dripstone_${shape}`, shape) + .soundType(global.STONE_CHARACS.dripstone.sound) + .textureAll('minecraft:block/dripstone_block') + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/crackrack_${shape}`, shape) + .soundType(global.STONE_CHARACS.crackrack.sound) + .textureAll('beneath:block/crackrack') + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) + .mapColor(global.STONE_CHARACS.crackrack.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + event.create('tfg:rock/moon_stone_wall', 'wall') .soundType(global.STONE_CHARACS.moon.sound) .textureAll('ad_astra:block/moon_stone') @@ -139,10 +128,57 @@ function registerTFGSpaceBlocks(event) { .fullBlock(true) .opaque(true) }) - + // #endregion Raw Stones // #region Hardened Stones + event.create('tfg:rock/hardened_deepslate') + .soundType(global.STONE_CHARACS.deepslate.sound) + .property(BlockProperties.AXIS) + .requiresTool(true) + .item(item => { + item.modelJson({ parent: 'minecraft:item/deepslate' }) + }) + .tagBlock('tfc:can_carve') + .tagBoth('forge:stone') + .tagBoth('tfc:rock/hardened') + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + event.create('tfg:rock/hardened_blackstone') + .soundType(global.STONE_CHARACS.blackstone.sound) + .requiresTool(true) + .item(item => { + item.modelJson({ parent: 'minecraft:item/blackstone' }) + }) + .tagBlock('tfc:can_carve') + .tagBoth('forge:stone') + .tagBoth('tfc:rock/hardened') + .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + event.create('tfg:rock/hardened_dripstone') + .soundType(global.STONE_CHARACS.dripstone.sound) + .stoneSoundType() + .requiresTool(true) + .item(item => { + item.modelJson({ parent: 'minecraft:item/dripstone_block' }) + }) + .tagBlock('tfc:can_carve') + .tagBoth('forge:stone') + .tagBoth('tfc:rock/hardened') + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + event.create('tfg:rock/hardened_moon_stone') .soundType(global.STONE_CHARACS.moon.sound) .requiresTool(true) @@ -251,6 +287,45 @@ function registerTFGSpaceBlocks(event) { // #endregion Hardened Stones // #region Loose Stones + event.create('tfg:loose/deepslate', 'tfc:loose_rock') + .soundType(global.STONE_CHARACS.deepslate.sound) + .itemTexture('tfg:item/loose/deepslate') + .rockTypeModel(global.STONE_CHARACS.deepslate.type) + .translationKey("block.tfg.loose.deepslate") + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('tfc:loose_rocks') + .tagItem('tfc:any_knapping') + .tagItem('tfc:rock_knapping') + .tagItem(`tfc:${global.STONE_CHARACS.deepslate.type}_rock`) + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .tagItem("rnr:loose_rock_items") + + event.create('tfg:loose/dripstone', 'tfc:loose_rock') + .soundType(global.STONE_CHARACS.dripstone.sound) + .itemTexture('tfg:item/loose/dripstone') + .rockTypeModel(global.STONE_CHARACS.dripstone.type) + .translationKey("block.tfg.loose.dripstone") + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('tfc:loose_rocks') + .tagItem('tfc:any_knapping') + .tagItem('tfc:rock_knapping') + .tagItem(`tfc:${global.STONE_CHARACS.dripstone.type}_rock`) + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .tagItem("rnr:loose_rock_items") + + event.create('tfg:loose/crackrack', 'tfc:loose_rock') + .soundType(global.STONE_CHARACS.crackrack.sound) + .itemTexture('tfg:item/loose/crackrack') + .rockTypeModel(global.STONE_CHARACS.crackrack.type) + .translationKey("block.tfg.loose.crackrack") + .mapColor(global.STONE_CHARACS.crackrack.mapColor) + .tagBlock('tfc:loose_rocks') + .tagItem('tfc:any_knapping') + .tagItem('tfc:rock_knapping') + .tagItem(`tfc:${global.STONE_CHARACS.crackrack.type}_rock`) + .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) + .tagItem("rnr:loose_rock_items") + event.create('tfg:loose/moon_stone', 'tfc:loose_rock') .soundType(global.STONE_CHARACS.moon.sound) .itemTexture('tfg:item/loose/moon_stone') @@ -340,6 +415,37 @@ function registerTFGSpaceBlocks(event) { // #endregion Loose stones // #region Spikes + + event.create('tfg:spike/deepslate_spike', 'tfc:rock_spike') + .textureAll('minecraft:block/deepslate') + .soundType(global.STONE_CHARACS.deepslate.sound) + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + + event.create('tfg:spike/blackstone_spike', 'tfc:rock_spike') + .textureAll('minecraft:block/blackstone') + .soundType(global.STONE_CHARACS.blackstone.sound) + .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + + event.create('tfg:spike/dripstone_spike', 'tfc:rock_spike') + .textureAll('minecraft:block/dripstone_block') + .soundType(global.STONE_CHARACS.dripstone.sound) + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + event.create('tfg:spike/moon_stone_spike', 'tfc:rock_spike') .textureAll('ad_astra:block/moon_stone') .soundType(global.STONE_CHARACS.moon.sound) @@ -407,6 +513,166 @@ function registerTFGSpaceBlocks(event) { // #endregion Spikes // #region Cobblestones + + // Deepslate + event.create('tfg:rock/mossy_cobble_deepslate') + .soundType(global.STONE_CHARACS.deepslate.sound) + .tagBoth('forge:cobblestone') + .tagBoth('forge:cobblestone/normal') + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/mossy_cobble_deepslate_${shape}`, shape) + .soundType(global.STONE_CHARACS.deepslate.sound) + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + // Blackstone + event.create('tfg:rock/cobble_blackstone') + .soundType(global.STONE_CHARACS.blackstone.sound) + .tagBoth('forge:cobblestone') + .tagBoth('forge:cobblestone/normal') + .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/cobble_blackstone_${shape}`, shape) + .soundType(global.STONE_CHARACS.blackstone.sound) + .textureAll('minecraft:block/blackstone_top') + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + event.create('tfg:rock/mossy_cobble_blackstone') + .soundType(global.STONE_CHARACS.blackstone.sound) + .tagBoth('forge:cobblestone') + .tagBoth('forge:cobblestone/normal') + .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/mossy_cobble_blackstone_${shape}`, shape) + .soundType(global.STONE_CHARACS.blackstone.sound) + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + // Dripstone + event.create('tfg:rock/cobble_dripstone') + .soundType(global.STONE_CHARACS.dripstone.sound) + .tagBoth('forge:cobblestone') + .tagBoth('forge:cobblestone/normal') + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/cobble_dripstone_${shape}`, shape) + .soundType(global.STONE_CHARACS.dripstone.sound) + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + event.create('tfg:rock/mossy_cobble_dripstone') + .soundType(global.STONE_CHARACS.dripstone.sound) + .tagBoth('forge:cobblestone') + .tagBoth('forge:cobblestone/normal') + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/mossy_cobble_dripstone_${shape}`, shape) + .soundType(global.STONE_CHARACS.dripstone.sound) + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + // Crackrack + event.create('tfg:rock/cobble_crackrack') + .soundType(global.STONE_CHARACS.crackrack.sound) + .tagBoth('forge:cobblestone') + .tagBoth('forge:cobblestone/normal') + .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) + .mapColor(global.STONE_CHARACS.crackrack.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/cobble_crackrack_${shape}`, shape) + .soundType(global.STONE_CHARACS.crackrack.sound) + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) + .mapColor(global.STONE_CHARACS.crackrack.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + event.create('tfg:rock/mossy_cobble_crackrack') + .soundType(global.STONE_CHARACS.crackrack.sound) + .tagBoth('forge:cobblestone') + .tagBoth('forge:cobblestone/normal') + .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) + .mapColor(global.STONE_CHARACS.crackrack.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/mossy_cobble_crackrack_${shape}`, shape) + .soundType(global.STONE_CHARACS.crackrack.sound) + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) + .mapColor(global.STONE_CHARACS.crackrack.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + // Moon event.create('tfg:rock/cobble_moon_wall', 'wall') .soundType(global.STONE_CHARACS.moon.sound) @@ -685,6 +951,50 @@ function registerTFGSpaceBlocks(event) { // #endregion Cobblestones // #region Gravels + event.create('tfg:rock/gravel_deepslate') + .soundType('gravel') + .tagBoth('forge:gravel') + .tagBoth('tfc:rock/gravel') + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('minecraft:mineable/shovel') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + + event.create('tfg:rock/gravel_blackstone') + .soundType('gravel') + .tagBoth('forge:gravel') + .tagBoth('tfc:rock/gravel') + .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('minecraft:mineable/shovel') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + + event.create('tfg:rock/gravel_dripstone') + .soundType('gravel') + .tagBoth('forge:gravel') + .tagBoth('tfc:rock/gravel') + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/shovel') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + + event.create('tfg:rock/gravel_crackrack') + .soundType('gravel') + .tagBoth('forge:gravel') + .tagBoth('tfc:rock/gravel') + .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) + .mapColor(global.STONE_CHARACS.crackrack.mapColor) + .tagBlock('minecraft:mineable/shovel') + .tagBlock('tfc:can_landslide') + .fullBlock(true) + .opaque(true) + event.create('tfg:rock/gravel_moon') .soundType('gravel') .tagBoth('forge:gravel') @@ -775,6 +1085,28 @@ function registerTFGSpaceBlocks(event) { // #endregion Gravels // #region Smooth (Polished/Cut) Stones + + event.create('tfg:rock/polished_crackrack') + .soundType(global.STONE_CHARACS.crackrack.sound) + .tagBoth('forge:smooth_stone') + .tagBoth('tfc:igneous_intrusive_items') + .tagBoth('tfc:rock/smooth') + .mapColor('crimson_stem') + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/polished_crackrack_${shape}`, shape) + .soundType(global.STONE_CHARACS.crackrack.sound) + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.crackrack.type}_items`) + .mapColor(global.STONE_CHARACS.crackrack.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + event.create('tfg:rock/polished_moon_wall', 'wall') .soundType(global.STONE_CHARACS.moon.sound) .textureAll('ad_astra:block/polished_moon_stone') @@ -871,6 +1203,174 @@ function registerTFGSpaceBlocks(event) { // #endregion Smooth (Polished/Cut) Stones // #region Bricks / Decorative + + // Deepslate + SHAPES.forEach(shape => { + event.create(`tfg:rock/cracked_bricks_deepslate_${shape}`, shape) + .soundType(global.STONE_CHARACS.deepslate.sound) + .textureAll('minecraft:block/cracked_deepslate_bricks') + .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/cracked_tiles_deepslate_${shape}`, shape) + .soundType(global.STONE_CHARACS.deepslate.sound) + .textureAll('minecraft:block/cracked_deepslate_tiles') + .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + event.create('tfg:rock/mossy_bricks_deepslate') + .soundType(global.STONE_CHARACS.deepslate.sound) + .tagBoth('minecraft:stone_bricks') + .tagBoth('forge:stone_bricks') + .tagBoth('tfc:rock/bricks') + .tagBoth('tfc:rock/mossy_bricks') + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/mossy_bricks_deepslate_${shape}`, shape) + .soundType(global.STONE_CHARACS.deepslate.sound) + .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.deepslate.type}_items`) + .mapColor(global.STONE_CHARACS.deepslate.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + // Blackstone + SHAPES.forEach(shape => { + event.create(`tfg:rock/cracked_bricks_blackstone_${shape}`, shape) + .soundType(global.STONE_CHARACS.blackstone.sound) + .textureAll('minecraft:block/cracked_polished_blackstone_bricks') + .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + event.create('tfg:rock/mossy_bricks_blackstone') + .soundType(global.STONE_CHARACS.blackstone.sound) + .tagBoth('minecraft:stone_bricks') + .tagBoth('forge:stone_bricks') + .tagBoth('tfc:rock/bricks') + .tagBoth('tfc:rock/mossy_bricks') + .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/mossy_bricks_blackstone_${shape}`, shape) + .soundType(global.STONE_CHARACS.blackstone.sound) + .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.blackstone.type}_items`) + .mapColor(global.STONE_CHARACS.blackstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + // Dripstone + event.create('tfg:rock/cracked_bricks_dripstone') + .soundType(global.STONE_CHARACS.dripstone.sound) + .tagBoth('minecraft:stone_bricks') + .tagBoth('forge:stone_bricks') + .tagBoth('tfc:rock/bricks') + .tagBoth('tfc:rock/mossy_bricks') + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/cracked_bricks_dripstone_${shape}`, shape) + .soundType(global.STONE_CHARACS.dripstone.sound) + .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + event.create('tfg:rock/mossy_bricks_dripstone') + .soundType(global.STONE_CHARACS.dripstone.sound) + .tagBoth('minecraft:stone_bricks') + .tagBoth('forge:stone_bricks') + .tagBoth('tfc:rock/bricks') + .tagBoth('tfc:rock/mossy_bricks') + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/mossy_bricks_dripstone_${shape}`, shape) + .soundType(global.STONE_CHARACS.dripstone.sound) + .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.dripstone.type}_items`) + .mapColor(global.STONE_CHARACS.dripstone.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + // Crackrack + SHAPES.forEach(shape => { + event.create(`tfg:rock/cracked_bricks_nether_${shape}`, shape) + .soundType(global.STONE_CHARACS.nether.sound) + .textureAll('minecraft:block/cracked_nether_bricks') + .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.nether.type}_items`) + .mapColor(global.STONE_CHARACS.nether.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + event.create('tfg:rock/mossy_bricks_nether') + .soundType(global.STONE_CHARACS.nether.sound) + .tagBoth('minecraft:stone_bricks') + .tagBoth('forge:stone_bricks') + .tagBoth('tfc:rock/bricks') + .tagBoth('tfc:rock/mossy_bricks') + .tagBoth(`tfc:${global.STONE_CHARACS.nether.type}_items`) + .mapColor(global.STONE_CHARACS.nether.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + SHAPES.forEach(shape => { + event.create(`tfg:rock/mossy_bricks_nether_${shape}`, shape) + .soundType(global.STONE_CHARACS.nether.sound) + .tagBoth(`tfg:brick_${shape}`.replace(/ss/g, 's')) + .tagBoth(`tfc:${global.STONE_CHARACS.nether.type}_items`) + .mapColor(global.STONE_CHARACS.nether.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + // Moon Stone SHAPES.forEach(shape => { event.create(`tfg:rock/cracked_bricks_moon_${shape}`, shape) @@ -1332,277 +1832,4 @@ function registerTFGSpaceBlocks(event) { // #endregion Sandstone - // #region Plants - - /* - Custom TFG Builder information https://github.com/TerraFirmaGreg-Team/Modpack-Modern/wiki/%5BEN%5D-TFG-Custom-Kubejs-Scripts - */ - - event.create('tfg:lunar_roots', 'tfg:decorative_plant') - .soundType('nether_wart') - .lightLevel(0.4) - .tagItem('tfg:moon_plants') - .tagBlock('minecraft:replaceable') - - event.create('tfg:lunar_sprouts', 'tfg:decorative_plant') - .soundType('nether_wart') - .tagItem('tfg:moon_plants') - .tagBlock('minecraft:replaceable') - - event.create('tfg:corallium_arenicolus_0', 'tfg:tall_decorative_plant') - .height(2) - .soundType('nether_wart') - .tagItem('tfg:venus_plants') - .lightLevel(0.4) - .renderType('translucent') - - event.create('tfg:corallium_arenicolus_1', 'tfg:decorative_plant') - .soundType('nether_wart') - .tagItem('tfg:venus_plants') - .box(3, 0, 3, 13, 14, 13) - - event.create('tfg:corallium_arenicolus_2', 'tfg:decorative_plant') - .soundType('nether_wart') - .tagItem('tfg:venus_plants') - .renderType('translucent') - .box(0, 0, 0, 16, 4, 16) - - event.create('tfg:corallium_arenicolus_3', 'tfg:decorative_plant') - .soundType('nether_wart') - .tagItem('tfg:venus_plants') - .box(3, 0, 3, 13, 14, 13) - - event.create('tfg:corallium_arenicolus_4', 'tfg:decorative_plant') - .soundType('nether_wart') - .tagItem('tfg:venus_plants') - .box(3, 0, 3, 13, 14, 13) - - event.create('tfg:corallium_arenicolus_5', 'tfg:decorative_plant') - .soundType('nether_wart') - .tagItem('tfg:venus_plants') - .box(3, 0, 3, 13, 14, 13) - - event.create('tfg:geyser_source', 'tfg:particle_emitter_decoration') - .soundType('dripstone_block') - .mapColor('color_white') - .resistance(6) - .hardness(1.5) - .particleOffset(0.3, 1, 0.3) - .particleVelocity(0, 0.1, 0) - .particle('minecraft:campfire_signal_smoke') - .particleCount(5) - .particleForced(true) - - event.create('tfg:geyser_source_small', 'tfg:particle_emitter_decoration') - .soundType('dripstone_block') - .mapColor('color_white') - .resistance(6) - .hardness(1.5) - .particleOffset(0.3, 1, 0.3) - .particleVelocity(0, 0.05, 0) - .particle('minecraft:campfire_cosy_smoke') - .particleCount(2) - .particleForced(false) - - event.create('tfg:stromatolite_cluster_small', 'tfg:decorative_plant') - .soundType('dripstone_block') - .mapColor('color_brown') - .box(3, 0, 3, 13, 6, 13) - - event.create('tfg:stromatolite_cluster_medium', 'tfg:decorative_plant') - .soundType('dripstone_block') - .mapColor('color_brown') - .box(3, 0, 3, 13, 14, 13) - - // #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: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') - .tagBlock('tfc:can_be_snow_piled') - - 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') - .tagBlock('tfc:can_be_snow_piled') - - event.create('tfg:groundcover/aeronos_stick', 'tfc:ground_cover') - .box(3, 0, 3, 13, 3, 13) - .groundCoverModelShape('twig') - .withPreexistingItem('tfg:twigs/aeronos') - .tagBlock('tfc:can_be_snow_piled') - .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') - .tagBlock('tfc:can_be_snow_piled') - .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') - .tagBlock('tfc:can_be_snow_piled') - .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') - .tagBlock('tfc:can_be_snow_piled') - .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']; - fluorapatite_colors.forEach(color => { - //Sand - event.create(`tfg:sand/fluorapatite/${color}`, 'falling') - .textureAll(`tfg:block/planets/venus/sand_fluorapatite_${color}`) - .soundType('sand') - .requiresTool(false) - .tagBoth('forge:sand') - .tagItem('forge:sand/fluorapatite') - .tagBlock('minecraft:mineable/shovel') - .mapColor(`color_${color}`) - .fullBlock(true) - .opaque(true) - //Raw Sandstone - event.create(`tfg:sandstone/raw/fluorapatite/${color}`) - .textureAll(`tfg:block/planets/venus/sandstone_bottom_fluorapatite_${color}`) - .texture('up', `tfg:block/planets/venus/sandstone_top_fluorapatite_${color}`) - .hardness(0.8) - .resistance(0.8) - .soundType('stone') - .requiresTool(true) - .tagBoth('forge:sandstone') - .tagItem('forge:sandstone/fluorapatite') - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_${color}`) - .fullBlock(true) - .opaque(true) - //Smooth Sandstone - event.create(`tfg:sandstone/smooth/fluorapatite/${color}`) - .textureAll(`tfg:block/planets/venus/sandstone_top_fluorapatite_${color}`) - .hardness(0.8) - .resistance(0.8) - .soundType('stone') - .requiresTool(true) - .tagBoth('forge:sandstone') - .tagItem('forge:sandstone/fluorapatite') - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_${color}`) - .fullBlock(true) - .opaque(true) - //Chiseled Sandstone - event.create(`tfg:sandstone/smooth/chiseled/fluorapatite/${color}`) - .textureAll(`tfg:block/planets/venus/sandstone_chiseled_fluorapatite_${color}`) - .texture('up', `tfg:block/planets/venus/sandstone_top_fluorapatite_${color}`) - .texture('down', `tfg:block/planets/venus/sandstone_bottom_fluorapatite_${color}`) - .hardness(0.8) - .resistance(0.8) - .soundType('stone') - .requiresTool(true) - .tagBoth('forge:sandstone') - .tagItem('forge:sandstone/fluorapatite') - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_${color}`) - .fullBlock(true) - .opaque(true) - //Sandstone - event.create(`tfg:sandstone/fluorapatite/${color}`) - .textureAll(`tfg:block/planets/venus/sandstone_fluorapatite_${color}`) - .texture('down', `tfg:block/planets/venus/sandstone_bottom_fluorapatite_${color}`) - .texture('up', `tfg:block/planets/venus/sandstone_top_fluorapatite_${color}`) - .hardness(0.8) - .resistance(0.8) - .soundType('stone') - .requiresTool(true) - .tagBoth('forge:sandstone') - .tagItem('forge:sandstone/fluorapatite') - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_${color}`) - .fullBlock(true) - .opaque(true) - }) - - //#region Venus Stone - - //Stromatolite - event.create('tfg:rock/raw/stromatolite', 'tfc:raw_rock') - .textureAll('tfg:block/planets/venus/stromatolite_spike') - .model('tfg:block/rock/stromatolite_block') - .rockTypeTooltip(Text.translatable('tooltip.tfg.sedimentary')) - .naturallySupported(true) - .sedimentary() - .renderType('cutout') - .soundType('dripstone_block') - .requiresTool(true) - .hardness(0.8) - .resistance(0.8) - .tagBlock('minecraft:mineable/pickaxe') - - event.create('tfg:rock/spike/stromatolite', 'tfc:rock_spike') - .textureAll('tfg:block/planets/venus/stromatolite_spike') - .soundType('dripstone_block') - .hardness(0.8) - .resistance(0.8) - .requiresTool(true) - .tagBlock('minecraft:mineable/pickaxe') - - //Geyserite - event.create('tfg:rock/raw/geyserite', 'tfc:raw_rock') - .textureAll('tfg:block/planets/venus/geyserite') - .rockTypeTooltip(Text.translatable('tooltip.tfg.sedimentary')) - .naturallySupported(true) - .sedimentary() - .soundType('dripstone_block') - .requiresTool(true) - .hardness(0.8) - .resistance(0.8) - .tagBlock('minecraft:mineable/pickaxe') - - event.create('tfg:rock/spike/geyserite', 'tfc:rock_spike') - .textureAll('tfg:block/planets/venus/geyserite') - .soundType('dripstone_block') - .hardness(0.8) - .resistance(0.8) - .requiresTool(true) - .tagBlock('minecraft:mineable/pickaxe') - } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/stone_types/blocks.vanilla_stone.js b/kubejs/startup_scripts/tfg/stone_types/blocks.vanilla_stone.js new file mode 100644 index 000000000..98d0e933a --- /dev/null +++ b/kubejs/startup_scripts/tfg/stone_types/blocks.vanilla_stone.js @@ -0,0 +1,56 @@ +"use strict"; + +function registerTFGVanillaStoneBlocks(event) { + + event.create(`tfg:rock/stone_wall`, 'wall') + .soundType(global.STONE_CHARACS.reconstituted.sound) + .textureAll('minecraft:block/stone') + .tagBoth('tfg:rock_wall') + .mapColor(global.STONE_CHARACS.reconstituted.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + let SHAPES = ['stairs', 'wall'] + SHAPES.forEach(shape => { + event.create(`tfg:rock/smooth_stone_${shape}`, shape) + .soundType(global.STONE_CHARACS.reconstituted.sound) + .textureAll('minecraft:block/smooth_stone') + .tagBoth(`tfg:rock_${shape}s`.replace(/ss/g, 's')) + .mapColor(global.STONE_CHARACS.reconstituted.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + SHAPES = ['stairs', 'slab', 'wall'] + SHAPES.forEach(shape => { + event.create(`tfg:rock/cracked_bricks_stone_${shape}`, shape) + .soundType(global.STONE_CHARACS.reconstituted.sound) + .textureAll('minecraft:block/cracked_stone_bricks') + .tagBoth(`tfg:brick_${shape}s`.replace(/ss/g, 's')) + .mapColor(global.STONE_CHARACS.reconstituted.mapColor) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + }) + + event.create('tfg:rock/quartz_wall', 'wall') + .soundType('stone') + .textureAll('minecraft:block/quartz_block_side') + .tagBoth('tfg:rock_wall') + .mapColor('snow') + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + event.create('tfg:rock/smooth_quartz_wall', 'wall') + .soundType('stone') + .textureAll('minecraft:block/quartz_block_bottom') + .tagBoth('tfg:rock_wall') + .mapColor('snow') + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/stone_types/items.rocks.js b/kubejs/startup_scripts/tfg/stone_types/items.rocks.js new file mode 100644 index 000000000..8cf86dbb8 --- /dev/null +++ b/kubejs/startup_scripts/tfg/stone_types/items.rocks.js @@ -0,0 +1,43 @@ +"use strict"; + +function registerTFGRockItems(event) { + + event.create('tfg:brick/deepslate') + .tag(`tfc:metamorphic_items`) + .translationKey('item.tfg.brick.deepslate') + + event.create('tfg:brick/dripstone') + .tag(`tfc:sedimentary_items`) + .translationKey('item.tfg.brick.dripstone') + + event.create('tfg:brick/moon_stone') + .tag(`tfc:igneous_intrusive_items`) + .translationKey('item.tfg.brick.moon_stone') + + event.create('tfg:brick/moon_deepslate') + .tag(`tfc:igneous_intrusive_items`) + .translationKey('item.tfg.moon_deepslate') + + event.create('tfg:brick/mars_stone') + .tag(`tfc:sedimentary_items`) + .translationKey('item.tfg.brick.mars_stone') + + event.create('tfg:brick/venus_stone') + .tag(`tfc:igneous_extrusive_items`) + .translationKey('item.tfg.brick.venus_stone') + + event.create('tfg:brick/mercury_stone') + .tag(`tfc:igneous_intrusive_items`) + .translationKey('item.tfg.brick.mercury_stone') + + event.create('tfg:brick/glacio_stone') + .tag(`tfc:igneous_extrusive_items`) + .translationKey('item.tfg.brick.glacio_stone') + + event.create('tfg:brick/permafrost') + .translationKey('item.tfg.brick.permafrost') + + event.create('tfg:brick/red_granite') + .tag(`tfc:igneous_intrusive_items`) + .translationKey('item.tfg.red_granite') +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/stone_types/materials.rocks.js b/kubejs/startup_scripts/tfg/stone_types/materials.rocks.js new file mode 100644 index 000000000..ee90eda0a --- /dev/null +++ b/kubejs/startup_scripts/tfg/stone_types/materials.rocks.js @@ -0,0 +1,43 @@ +// priority: 0 +"use strict"; + +const registerTFGRockMaterials = (event) => { + const registerStoneMaterial = (rockType, color) => + event.create(`tfg:${rockType}`) + .dust() + .color(color) + .iconSet(GTMaterialIconSet.ROUGH) + .flags( + GTMaterialFlags.MORTAR_GRINDABLE, + GTMaterialFlags.NO_SMASHING, + GTMaterialFlags.NO_SMELTING + ) + + /* TFC Stone Types Materials */ + registerStoneMaterial('gabbro', 0x7F8081) + registerStoneMaterial('shale', 0x686567) + registerStoneMaterial('claystone', 0xAF9377) + registerStoneMaterial('limestone', 0xA09885) + registerStoneMaterial('conglomerate', 0xA3977F) + registerStoneMaterial('dolomite', 0x515155) + registerStoneMaterial('chert', 0x7A6756) + registerStoneMaterial('chalk', 0xA4A39F) + registerStoneMaterial('rhyolite', 0x726D69) + registerStoneMaterial('dacite', 0x979797) + registerStoneMaterial('slate', 0x989287) + registerStoneMaterial('phyllite', 0x706B61) + registerStoneMaterial('schist', 0x6E735C) + registerStoneMaterial('gneiss', 0x6A6D60) + + registerStoneMaterial('dripstone', 0x927965) + + registerStoneMaterial('moon_stone', 0x506869) + registerStoneMaterial('moon_deepslate', 0x45474D) + registerStoneMaterial('mars_stone', 0xD08957) + registerStoneMaterial('venus_stone', 0xD5A664) + registerStoneMaterial('mercury_stone', 0x723E49) + registerStoneMaterial('glacio_stone', 0x9897BF) + + // Specialized icon sets for TFC's own + modifyTFGIconSets(event) +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/tag_prefixes.js b/kubejs/startup_scripts/tfg/tag_prefixes.js index 800a69fb2..d521ca895 100644 --- a/kubejs/startup_scripts/tfg/tag_prefixes.js +++ b/kubejs/startup_scripts/tfg/tag_prefixes.js @@ -3,11 +3,18 @@ function registerTFGTagPrefixes(event) { - excludeAllGemsButNormal(TFGHelpers.getMaterial('tfg:apt')); - excludeAllGemsButNormal(TFGHelpers.getMaterial('tfg:tetrafluoroethane')); - excludeAllGemsButNormal(TFGHelpers.getMaterial('tfg:crimsene')); - excludeAllGemsButNormal(TFGHelpers.getMaterial('tfg:warpane')); + excludeAllGemsButNormal(GTMaterials.get('tfg:apt')); + TagPrefix.block.setIgnored(GTMaterials.get('tfg:apt')); + excludeAllGemsButNormal(GTMaterials.get('tfg:tetrafluoroethane')); + TagPrefix.block.setIgnored(GTMaterials.get('tfg:tetrafluoroethane')); + excludeAllGemsButNormal(GTMaterials.get('tfg:crimsene')); + TagPrefix.block.setIgnored(GTMaterials.get('tfg:crimsene')); + excludeAllGemsButNormal(GTMaterials.get('tfg:warpane')); + TagPrefix.block.setIgnored(GTMaterials.get('tfg:warpane')); + excludeAllGemsButNormal(GTMaterials.Coke) + + TagPrefix.nugget.setIgnored(GTMaterials.RawRubber); TagPrefix.ingot.setIgnored(GTMaterials.RawRubber); TagPrefix.plate.setIgnored(GTMaterials.RawRubber); TagPrefix.plateDouble.setIgnored(GTMaterials.RawRubber); @@ -18,5 +25,4 @@ function excludeAllGemsButNormal(material) { TagPrefix.gemFlawed.setIgnored(material); TagPrefix.gemFlawless.setIgnored(material); TagPrefix.gemExquisite.setIgnored(material); - TagPrefix.block.setIgnored(material); } \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/venus/blocks.venus_deco.js b/kubejs/startup_scripts/tfg/venus/blocks.venus_deco.js new file mode 100644 index 000000000..f8eec30b8 --- /dev/null +++ b/kubejs/startup_scripts/tfg/venus/blocks.venus_deco.js @@ -0,0 +1,330 @@ +"use strict"; + +function registerTFGWorldGenVenusDecoBlocks(event) { + + event.create('tfg:geyser_source', 'tfg:particle_emitter_decoration') + .soundType('dripstone_block') + .mapColor('color_white') + .box(3, 0, 3, 13, 10, 13) + .resistance(6) + .hardness(1.5) + .particleOffset(0.3, 1, 0.3) + .particleVelocity(0, 0.1, 0) + .particle('minecraft:campfire_signal_smoke') + .particleCount(5) + .particleForced(true) + + event.create('tfg:geyser_source_small', 'tfg:particle_emitter_decoration') + .soundType('dripstone_block') + .mapColor('color_white') + .box(3, 0, 3, 13, 10, 13) + .resistance(6) + .hardness(1.5) + .particleOffset(0.3, 1, 0.3) + .particleVelocity(0, 0.05, 0) + .particle('minecraft:campfire_cosy_smoke') + .particleCount(2) + .particleForced(false) + + event.create('tfg:smoker_source', 'tfg:particle_emitter_decoration') + .soundType('dripstone_block') + .mapColor('color_gray') + .box(3, 0, 3, 13, 10, 13) + .resistance(6) + .hardness(1.5) + .particleOffset(0.3, 1, 0.3) + .particleVelocity(0, 0.05, 0) + .particle('minecraft:campfire_cosy_smoke') + .particleCount(1) + .particleForced(false) + + event.create('tfg:lava_source', 'tfg:particle_emitter_decoration') + .soundType('dripstone_block') + .mapColor('color_black') + .box(3, 0, 3, 13, 10, 13) + .resistance(6) + .hardness(1.5) + .particleOffset(0.3, 0.5, 0.3) + .particleVelocity(0, 0, 0) + .particle('lava') + .particleCount(1) + .particleForced(false) + + //Geyserite + event.create('tfg:rock/raw/geyserite', 'tfc:raw_rock') + .textureAll('tfg:block/planets/venus/geyserite') + .rockTypeTooltip(Text.translatable('tooltip.tfg.sedimentary')) + .naturallySupported(true) + .mapColor('quartz') + .sedimentary() + .soundType('dripstone_block') + .requiresTool(true) + .hardness(0.8) + .resistance(0.8) + .tagBlock('minecraft:mineable/pickaxe') + + event.create('tfg:rock/spike/geyserite', 'tfc:rock_spike') + .textureAll('tfg:block/planets/venus/geyserite') + .soundType('dripstone_block') + .mapColor('quartz') + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + + // Halite + event.create('tfg:rock/halite') + .mapColor('quartz') + .soundType('deepslate') + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + .fullBlock(true) + .opaque(true) + + //Stromatolite + event.create('tfg:rock/raw/stromatolite', 'tfc:raw_rock') + .textureAll('tfg:block/planets/venus/stromatolite_spike') + .model('tfg:block/rock/stromatolite_block') + .rockTypeTooltip(Text.translatable('tooltip.tfg.sedimentary')) + .naturallySupported(true) + .sedimentary() + .renderType('cutout') + .soundType('dripstone_block') + .requiresTool(true) + .hardness(0.8) + .resistance(0.8) + .tagBlock('minecraft:mineable/pickaxe') + + event.create('tfg:rock/spike/stromatolite', 'tfc:rock_spike') + .textureAll('tfg:block/planets/venus/stromatolite_spike') + .soundType('dripstone_block') + .hardness(0.8) + .resistance(0.8) + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + + event.create('tfg:stromatolite_cluster_small', 'tfg:decorative_plant') + .soundType('dripstone_block') + .mapColor('color_brown') + .box(3, 0, 3, 13, 6, 13) + + event.create('tfg:stromatolite_cluster_medium', 'tfg:decorative_plant') + .soundType('dripstone_block') + .mapColor('color_brown') + .box(3, 0, 3, 13, 14, 13) + + //#region Fluorapatite + const fluorapatite_colors = ['blue', 'green', 'brown', 'orange', 'white', 'yellow']; + fluorapatite_colors.forEach(color => { + const mapColor = color === 'white' ? 'quartz' : `color_${color}`; + + //Sand + event.create(`tfg:sand/fluorapatite/${color}`, 'falling') + .textureAll(`tfg:block/planets/venus/sand_fluorapatite_${color}`) + .soundType('sand') + .requiresTool(false) + .tagBoth('forge:sand') + .tagItem('forge:sand/fluorapatite') + .tagBlock('minecraft:mineable/shovel') + .mapColor(mapColor) + .fullBlock(true) + .opaque(true) + //Raw Sandstone + event.create(`tfg:sandstone/raw/fluorapatite/${color}`) + .textureAll(`tfg:block/planets/venus/sandstone_bottom_fluorapatite_${color}`) + .texture('up', `tfg:block/planets/venus/sandstone_top_fluorapatite_${color}`) + .hardness(0.8) + .resistance(0.8) + .soundType('stone') + .requiresTool(true) + .tagBoth('forge:sandstone') + .tagItem('forge:sandstone/fluorapatite') + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(mapColor) + .fullBlock(true) + .opaque(true) + //Smooth Sandstone + event.create(`tfg:sandstone/smooth/fluorapatite/${color}`) + .textureAll(`tfg:block/planets/venus/sandstone_top_fluorapatite_${color}`) + .hardness(0.8) + .resistance(0.8) + .soundType('stone') + .requiresTool(true) + .tagBoth('forge:sandstone') + .tagItem('forge:sandstone/fluorapatite') + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(mapColor) + .fullBlock(true) + .opaque(true) + //Chiseled Sandstone + event.create(`tfg:sandstone/smooth/chiseled/fluorapatite/${color}`) + .textureAll(`tfg:block/planets/venus/sandstone_chiseled_fluorapatite_${color}`) + .texture('up', `tfg:block/planets/venus/sandstone_top_fluorapatite_${color}`) + .texture('down', `tfg:block/planets/venus/sandstone_bottom_fluorapatite_${color}`) + .hardness(0.8) + .resistance(0.8) + .soundType('stone') + .requiresTool(true) + .tagBoth('forge:sandstone') + .tagItem('forge:sandstone/fluorapatite') + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(mapColor) + .fullBlock(true) + .opaque(true) + //Sandstone + event.create(`tfg:sandstone/fluorapatite/${color}`) + .textureAll(`tfg:block/planets/venus/sandstone_fluorapatite_${color}`) + .texture('down', `tfg:block/planets/venus/sandstone_bottom_fluorapatite_${color}`) + .texture('up', `tfg:block/planets/venus/sandstone_top_fluorapatite_${color}`) + .hardness(0.8) + .resistance(0.8) + .soundType('stone') + .requiresTool(true) + .tagBoth('forge:sandstone') + .tagItem('forge:sandstone/fluorapatite') + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(mapColor) + .fullBlock(true) + .opaque(true) + }) + //#endregion + + // Some more stone blocks from better end, for variety's sake + + event.create('betterend:brimstone') + .soundType('tuff') + .mapColor('color_yellow') + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + + event.create('betterend:hydrothermal_vent', 'tfg:particle_emitter_decoration') + .soundType('dripstone_block') + .mapColor('dirt') + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + .opaque(false) + .fullBlock(false) + .box(1, 0, 1, 15, 16, 15) + .notSolid() + .particleOffset(0.3, 1, 0.3) + .particleVelocity(0, 0.1, 0) + .particle('minecraft:large_smoke') + .particleCount(2) + .particleForced(true) + + event.create('betterend:tube_worm', 'tfg:attached_decorative_plant') + .soundType('nether_wart') + .mapColor('terracotta_white') + .tagBlock('minecraft:replaceable') + .tagBlock('tfg:do_not_destroy_in_space') + + event.create('betterend:lacugrove_bark') + .soundType('basalt') + .mapColor('podzol') + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + + event.create('betterend:lucernia_bark') + .soundType('netherrack') + .mapColor('wood') + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + + event.create('betterend:sulphur_crystal', 'tfg:decorative_plant') + .soundType('deepslate') + .mapColor('gold') + .box(3, 0, 3, 13, 6, 13) + + const flavolite = [ 'flavolite', 'flavolite_bricks', 'flavolite_polished', 'flavolite_tiles' ]; + flavolite.forEach(f => { + event.create(`betterend:${f}`) + .soundType('deepslate') + .mapColor('sand') + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + }) + + event.create(`betterend:flavolite_pillar`) + .property(BlockProperties.AXIS) + .placementState((event) => event.set(BlockProperties.AXIS, event.clickedFace.axis)) + .soundType('netherrack') + .mapColor('sand') + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + + const jadestone = [ 'sandy_jadestone', 'sandy_jadestone_bricks', 'sandy_jadestone_polished', 'sandy_jadestone_tiles' ]; + jadestone.forEach(j => { + event.create(`betterend:${j}`) + .soundType('stone') + .mapColor('color_light_green') + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + }) + + event.create(`betterend:sandy_jadestone_pillar`) + .property(BlockProperties.AXIS) + .placementState((event) => event.set(BlockProperties.AXIS, event.clickedFace.axis)) + .soundType('stone') + .mapColor('color_light_green') + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + + const sulphuric_rock = [ 'sulphuric_rock', 'sulphuric_rock_bricks', 'sulphuric_rock_polished', 'sulphuric_rock_tiles' ]; + sulphuric_rock.forEach(s => { + event.create(`betterend:${s}`) + .soundType('dripstone_block') + .mapColor('terracotta_light_gray') + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + }) + + event.create(`betterend:sulphuric_rock_pillar`) + .placementState((event) => event.set(BlockProperties.AXIS, event.clickedFace.axis)) + .property(BlockProperties.AXIS) + .soundType('dripstone_block') + .mapColor('terracotta_light_gray') + .requiresTool(true) + .tagBlock('minecraft:mineable/pickaxe') + + // Plants + + event.create('betterend:hydralux_sapling', 'tfg:decorative_plant') + .soundType('nether_wart') + .mapColor('green_terracotta') + .box(2, 0, 2, 14, 13, 14) + .tagBlock('tfg:do_not_destroy_in_space') + + event.create('betterend:hydralux_small', 'tfg:tall_decorative_plant') + .height(4) + .soundType('nether_wart') + .mapColor('green_terracotta') + .box(3, 0, 3, 13, 16, 13) + .tagItem('tfg:venus_plants') + .tagBlock('tfg:do_not_destroy_in_space') + + event.create('betterend:hydralux_large', 'tfg:tall_decorative_plant') + .height(4) + .soundType('nether_wart') + .mapColor('green_terracotta') + .box(3, 0, 3, 13, 16, 13) + .tagItem('tfg:venus_plants') + .tagBlock('tfg:do_not_destroy_in_space') + + event.create('betterend:shadow_plant', 'tfg:decorative_plant') + .soundType('crop') + .mapColor('color_black') + .box(3, 0, 3, 13, 10, 13) + .tagItem('tfg:venus_plants') + .tagBlock('tfg:do_not_destroy_in_space') + + event.create('betterend:twisted_vine', 'tfg:tall_decorative_plant') + .height(3) + .soundType('crop') + .mapColor('color_black') + .box(3, 0, 3, 13, 16, 13) + .tagItem('tfg:venus_plants') + .tagBlock('tfg:do_not_destroy_in_space') + +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/venus/materials.venus.js b/kubejs/startup_scripts/tfg/venus/materials.venus.js new file mode 100644 index 000000000..e5a6e8f7e --- /dev/null +++ b/kubejs/startup_scripts/tfg/venus/materials.venus.js @@ -0,0 +1,79 @@ +"use strict"; + +function registerTFGVenusMaterials(event) { + + // Ores + + event.create('tfg:calorite') + //.components('2x mercury', '1x tungsten', '1x rhodium', '2x sulfur') + .color(0xC94D4E) + .secondaryColor(0x9A296A) + .iconSet(GTMaterialIconSet.getByName('tfc_copper')) + .ingot() + .flags( + GTMaterialFlags.FORCE_GENERATE_BLOCK, + GTMaterialFlags.GENERATE_PLATE + ) + + //#region Bromine Line + + event.create('raw_brine') + .fluid() + .color(0x947a11) + //.secondaryColor(0x81FFF9) + + event.create('hot_brine') + .liquid(320) + .color(0x944611) + + event.create('hot_chlorinated_brominated_brine') + .liquid(320) + .color(0xbf8d5a) + .components('1x unknown', '1x chlorine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('brominated_chlorine_vapor') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(320)) + .color(0xbf8d5a) + .components('1x chlorine', '1x bromine', '1x water') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('acidic_bromine_solution') + .liquid(new GTFluidBuilder().attribute(GTFluidAttributes.ACID)) + .color(0xe7b989) + .components('1x chlorine', '1x bromine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('concentrated_bromine_solution') + .liquid() + .color(0x905d29) + .components('1x bromine', '1x chlorine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('debrominated_brine') + .liquid() + .color(0xc3874a) + + event.create('acidic_bromine_exhaust') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).attribute(GTFluidAttributes.ACID).temperature(293)) + .color(0xec9c4a) + .components('3x water', '1x chlorine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('hot_alkaline_debrominated_brine') + .liquid() + .color(0xcc6a06) + .components('2x unknown', '1x chlorine') + .flags(GTMaterialFlags.DISABLE_DECOMPOSITION) + + event.create('hot_debrominated_brine') + .liquid(320) + .color(0xb08e6b) + + event.create('hydrogen_iodide') + .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(293)) + .color(0x82a6ce) + .components('1x hydrogen', '1x iodine') + + //#endregion +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/worldgen/blocks.beneath_deco.js b/kubejs/startup_scripts/tfg/worldgen/blocks.beneath_deco.js new file mode 100644 index 000000000..963c68a77 --- /dev/null +++ b/kubejs/startup_scripts/tfg/worldgen/blocks.beneath_deco.js @@ -0,0 +1,22 @@ +"use strict"; + +function registerTFGWorldGenBeneathDecoBlocks(event) { + + event.create('tfg:mushroom_roots', 'tfg:decorative_plant') + .soundType('nether_wart') + .tagItem('tfc:plants') + + event.create('tfg:mushroom_sprouts', 'tfg:decorative_plant') + .soundType('nether_wart') + .tagItem('tfc:plants') + + event.create('tfg:charred_log') + .fullBlock(true) + .woodSoundType() + .property(BlockProperties.AXIS) + .tagBoth('minecraft:mineable/axe') + .tagBoth('tfc:logs_that_log') + .tagBoth('afc:logs_that_log') + .tagBoth('minecraft:logs') + .mapColor('black') +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/worldgen/blocks.trees.js b/kubejs/startup_scripts/tfg/worldgen/blocks.trees.js new file mode 100644 index 000000000..1f7faf606 --- /dev/null +++ b/kubejs/startup_scripts/tfg/worldgen/blocks.trees.js @@ -0,0 +1,122 @@ +"use strict"; + +function registerTFGWorldGenTrees(event) { + + // Mars Saplings + + event.create('tfg:saplings/crimson', 'tfc:sapling') + .features('tfg:mars/tree/crimson') + .tagBoth('minecraft:saplings') + .tagBlock('tfg:do_not_destroy_in_space') + .tagBlock('tfc:can_be_snow_piled') + .growthDays(6) + .soundType('nether_wart') + .defaultCutout() + .noCollision() + .mapColor('crimson_nylium') + + event.create('tfg:saplings/warped', 'tfc:sapling') + .features('tfg:mars/tree/warped') + .tagBoth('minecraft:saplings') + .tagBlock('tfg:do_not_destroy_in_space') + .tagBlock('tfc:can_be_snow_piled') + .growthDays(6) + .soundType('nether_wart') + .defaultCutout() + .noCollision() + .mapColor('warped_nylium') + + event.create('tfg:saplings/alphacene', 'tfc:sapling') + .features('species:alphacene_mushroom') + .tagBoth('minecraft:saplings') + .tagBlock('tfg:do_not_destroy_in_space') + .tagBlock('tfc:can_be_snow_piled') + .growthDays(3) + .soundType('nether_wart') + .defaultCutout() + .noCollision() + .mapColor('gold') + + event.create('tfg:saplings/strophar', 'tfc:sapling') + .features('tfg:mars/tree/strophar_mini') + .tagBoth('minecraft:saplings') + .tagBlock('tfg:do_not_destroy_in_space') + .tagBlock('tfc:can_be_snow_piled') + .growthDays(7) + .soundType('nether_wart') + .defaultCutout() + .noCollision() + .mapColor('terracotta_magenta') + + event.create('tfg:saplings/aeronos', 'tfc:sapling') + .features('tfg:mars/tree/aeronos_mini') + .tagBoth('minecraft:saplings') + .tagBlock('tfg:do_not_destroy_in_space') + .tagBlock('tfc:can_be_snow_piled') + .growthDays(9) + .soundType('nether_wart') + .defaultCutout() + .noCollision() + .mapColor('color_light_green') + + event.create('tfg:saplings/glacian', 'tfc:sapling') + .features('tfg:mars/tree/glacian_mini') + .tagBoth('minecraft:saplings') + .tagBlock('tfg:do_not_destroy_in_space') + .tagBlock('tfc:can_be_snow_piled') + .growthDays(9) + .soundType('nether_wart') + .defaultCutout() + .noCollision() + + // Glacian tree stuff + event.create('tfg:glacian_leaves', 'tfc:leaves') + .soundType('azalea_leaves') + .tagBlock('minecraft:mineable/hoe') + .tagBlock('tfg:do_not_destroy_in_space') + .mapColor('snow') + .seasonalColors(false) + .fallenLeaves(leaves => { + leaves.noCollision() + leaves.notSolid() + leaves.defaultCutout() + leaves.soundType('azalea_leaves') + leaves.tagBlock('minecraft:mineable/hoe') + leaves.tagBlock('minecraft:replaceable') + leaves.noDynamicTinting() + leaves.models((modelType, generator) => { + if (modelType.layers != 8) { + generator.parent("tfc:block/groundcover/fallen_leaves_height" + modelType.height); + generator.texture("all", "ad_astra:block/glacian_leaves"); + } else { + generator.parent("ad_astra:block/glacian_leaves"); + } + }) + }) + + event.create('tfg:glacian_wood', 'tfc:log') + .tagBoth('minecraft:logs') + .tagItem('minecraft:logs_that_burn') + .tagItem('ad_astra:glacian_logs') + .tagBlock('minecraft:mineable/axe') + .soundType('wood') + .mapColor('ice') + .stripped(stripped => { + stripped.tagBoth('minecraft:logs') + stripped.tagItem('minecraft:logs_that_burn') + stripped.tagItem('ad_astra:glacian_logs') + stripped.tagBlock('minecraft:mineable/axe') + stripped.soundType('wood') + }) + + event.create('tfg:glacian_log', 'tfc:log') + .tagBoth('minecraft:logs') + .tagBoth('c:hidden_from_recipe_viewers') + .soundType('wood') + .mapColor('ice') + .stripped(stripped => { + stripped.tagBoth('minecraft:logs') + stripped.tagBoth('c:hidden_from_recipe_viewers') + stripped.soundType('wood') + }) +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/fauna.js b/kubejs/startup_scripts/tfg/worldgen/fauna.js similarity index 100% rename from kubejs/startup_scripts/tfg/fauna.js rename to kubejs/startup_scripts/tfg/worldgen/fauna.js diff --git a/kubejs/startup_scripts/tfg/worldgen/items.wood.js b/kubejs/startup_scripts/tfg/worldgen/items.wood.js new file mode 100644 index 000000000..db87b70c9 --- /dev/null +++ b/kubejs/startup_scripts/tfg/worldgen/items.wood.js @@ -0,0 +1,24 @@ +"use strict"; + +function registerTFGWoodItems(event) { + + global.AD_ASTRA_WOOD.forEach(wood => { + event.create(`tfg:wood/lumber/${wood.name}`) + .translationKey(`item.tfg.${wood.name}_lumber`) + .tag('tfc:lumber') + }) + + + 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') +} \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/register_climates.js b/kubejs/startup_scripts/tfg/worldgen/register_climates.js similarity index 84% rename from kubejs/startup_scripts/tfg/register_climates.js rename to kubejs/startup_scripts/tfg/worldgen/register_climates.js index 9c3672087..12e9b7a0c 100644 --- a/kubejs/startup_scripts/tfg/register_climates.js +++ b/kubejs/startup_scripts/tfg/worldgen/register_climates.js @@ -18,6 +18,8 @@ global.MARS_MAX_AVG_TEMP = -15; global.MARS_MIN_AVG_RAIN = -25; global.MARS_MAX_AVG_RAIN = 13; +global.VENUS_PLANET_SIZE = 20000; + global.GLACIO_PLANET_SIZE = 5000; function clamp(val, min, max) { @@ -55,7 +57,7 @@ global.getMarsClimateController = function () { createWindCallback: function (builder) { var self = this; return function (level, pos, calendarTicks) { - const strength = Math.max(0, Math.sin(calendarTicks / 10000) -0.6); + const strength = Math.max(0, Math.sin(calendarTicks / 10000) - 0.4) * 1.2; const newX = Math.cos(calendarTicks / 2400) * strength; const newZ = Math.sin(calendarTicks / 2400) * strength; @@ -160,7 +162,7 @@ TFCEvents.registerClimateModel(event => { }) builder.setAirFog((level, pos, calendarTicks) => 0) - builder.setWaterFog((level, pos, calendarTicks) => 0.6) + builder.setWaterFog((level, pos, calendarTicks) => 0.02) builder.setWindVector((level, block, calendarTicks) => builder.vector(0, 0)) }) @@ -174,7 +176,7 @@ TFCEvents.registerClimateModel(event => { builder.setAverageTemperatureCalculation((level, pos) => -270) builder.setAverageRainfallCalculation((level, pos) => 0) builder.setAirFog((level, pos, calendarTicks) => 0) - builder.setWaterFog((level, pos, calendarTicks) => 0.25) + builder.setWaterFog((level, pos, calendarTicks) => 0.02) builder.setWindVector((level, block, calendarTicks) => builder.vector(0, 0)) }) @@ -190,7 +192,7 @@ TFCEvents.registerClimateModel(event => { builder.setAverageTemperatureCalculation((level, pos) => -5) builder.setAverageRainfallCalculation((level, pos) => 0) builder.setAirFog((level, pos, calendarTicks) => 0) - builder.setWaterFog((level, pos, calendarTicks) => 0.25) + builder.setWaterFog((level, pos, calendarTicks) => 0.02) builder.setWindVector((level, block, calendarTicks) => builder.vector(0, 0)) }) @@ -224,4 +226,37 @@ TFCEvents.registerClimateModel(event => { builder.setAirFog(controller.createFogCallback(builder)); builder.setWindVector(controller.createWindCallback(builder)); }) + + event.register('tfg:venus_climate', builder => { + + builder.setCurrentTemperatureCalculation((level, pos, calendarTicks, daysInMonth) => { + if (OxygenAPI.hasOxygen(level, pos.above())) { + return OXYGENATED_TEMP; + } + + let avgTemp = calcAverage(pos.z, global.VENUS_PLANET_SIZE, 454, 474); + return calcCurrentTemp(avgTemp, 58, pos.y, calendarTicks, 10, 670, 1); + }) + + // Add a little variation for these + builder.setAverageTemperatureCalculation((level, pos) => { + return calcAverage(pos.z, global.VENUS_PLANET_SIZE, 454, 474); + }) + + builder.setAverageRainfallCalculation((level, pos) => { + return calcAverage(pos.x, global.VENUS_PLANET_SIZE / 4, 250, 350); + }) + + builder.setAirFog((level, pos, calendarTicks) => 0) + builder.setWaterFog((level, pos, calendarTicks) => 0.6) + // Make up something for the wind. Apparently Venus irl is not very windy on the surface + builder.setWindVector((level, block, calendarTicks) => { + const strength = Math.max(0, Math.sin(calendarTicks / 10000)) * 0.2; + + const newX = Math.cos(calendarTicks / 2400) * strength; + const newZ = Math.sin(calendarTicks / 2400) * strength; + + return builder.vector(newX, newZ); + }) + }) }) \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/worldgen/utility.js b/kubejs/startup_scripts/tfg/worldgen/utility.js new file mode 100644 index 000000000..83e19c2f5 --- /dev/null +++ b/kubejs/startup_scripts/tfg/worldgen/utility.js @@ -0,0 +1,29 @@ +// priority: 0 +"use strict"; + + +/** + * @param {any} event + * @param {string} id + * @param {string} planet + */ +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') + .tagBlock('tfc:can_be_snow_piled') +} + +/** + * @param {any} event + * @param {string} id + * @param {string} planet + */ +function createWaterPlant(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') + .tagBlock('tfc:can_be_ice_piled') +} \ No newline at end of file diff --git a/kubejs/startup_scripts/vintage_improvements/constants.js b/kubejs/startup_scripts/vintage_improvements/constants.js index 85e1c3d41..1f3860d24 100644 --- a/kubejs/startup_scripts/vintage_improvements/constants.js +++ b/kubejs/startup_scripts/vintage_improvements/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER = 4; @@ -16,7 +16,6 @@ global.VINTAGE_IMPROVEMENTS_DISABLED_ITEMS = [ 'vintageimprovements:laser_item', 'vintageimprovements:sulfur_chunk', 'vintageimprovements:sulfur', - 'vintageimprovements:sulfur_block', 'vintageimprovements:sulfuric_acid_bucket', 'vintageimprovements:copper_sulfate', 'vintageimprovements:incomplete_redstone_module', @@ -93,7 +92,7 @@ global.VINTAGE_IMPROVEMENTS_DISABLED_ITEMS = [ global.VINTAGE_IMPROVEMENTS_DISABLED_BLOCKS = [ - 'vintageimprovements:sulfur_block', + 'vintageimprovements:sulfur_block' ] diff --git a/kubejs/startup_scripts/wan_ancient_beasts/constants.js b/kubejs/startup_scripts/wan_ancient_beasts/constants.js index cd4186842..6e5c22a5a 100644 --- a/kubejs/startup_scripts/wan_ancient_beasts/constants.js +++ b/kubejs/startup_scripts/wan_ancient_beasts/constants.js @@ -1,4 +1,4 @@ -// priority: 0 +// priority: -100 "use strict"; global.WAB_DISABLED_BLOCKS =[ diff --git a/pakku-lock.json b/pakku-lock.json index b2733dfc8..a5b69a4f1 100644 --- a/pakku-lock.json +++ b/pakku-lock.json @@ -4,7 +4,7 @@ "1.20.1" ], "loaders": { - "forge": "47.4.6" + "forge": "47.4.13" }, "projects": [ { @@ -852,7 +852,7 @@ "files": [ { "type": "curseforge", - "file_name": "alltheleaks-1.0.8+1.20.1-forge.jar", + "file_name": "alltheleaks-1.1.1+1.20.1-forge.jar", "mc_versions": [ "1.20.1" ], @@ -860,16 +860,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7107/566/alltheleaks-1.0.8+1.20.1-forge.jar", - "id": "7107566", + "url": "https://edge.forgecdn.net/files/7235/989/alltheleaks-1.1.1+1.20.1-forge.jar", + "id": "7235989", "parent_id": "1091339", "hashes": { - "sha1": "cc58ad397f1e40eb7b5ee006195815a8bef131bf", - "md5": "4d96599f1bbe8d03540a1066509dc005" + "sha1": "3c43c2e76093dc7ef5ad6e456d20da9674c653aa", + "md5": "df84fbdadaf7947dc530872fa60fbc56" }, "required_dependencies": [], - "size": 1176184, - "date_published": "2025-10-14T20:58:29.273Z" + "size": 1187126, + "date_published": "2025-11-18T17:28:45.610Z" } ] }, @@ -960,33 +960,9 @@ "modrinth": "fM515JnW" }, "files": [ - { - "type": "curseforge", - "file_name": "AmbientSounds_FORGE_v6.1.11_mc1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6570/130/AmbientSounds_FORGE_v6.1.11_mc1.20.1.jar", - "id": "6570130", - "parent_id": "254284", - "hashes": { - "sha1": "af412170c07febfb5c611b7237d806230dc83584", - "md5": "78270b771d833d9f2936a2bd95a7ec21" - }, - "required_dependencies": [ - "257814" - ], - "size": 51722248, - "date_published": "2025-05-26T09:57:49.020Z" - }, { "type": "modrinth", - "file_name": "AmbientSounds_FORGE_v6.1.11_mc1.20.1.jar", + "file_name": "AmbientSounds_FORGE_v6.3.1_mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -995,18 +971,42 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/fM515JnW/versions/lDrRWaFm/AmbientSounds_FORGE_v6.1.11_mc1.20.1.jar", - "id": "lDrRWaFm", + "url": "https://cdn.modrinth.com/data/fM515JnW/versions/5b052xpX/AmbientSounds_FORGE_v6.3.1_mc1.20.1.jar", + "id": "5b052xpX", "parent_id": "fM515JnW", "hashes": { - "sha512": "0754b6afd97f0b3d2a991303e9f1d70512dabe5f490a6b86de99602f4d787da17222c3aa6ffff74633e4b40472e1ccaab5b5a1d7a967c788b89334749d475ad9", - "sha1": "af412170c07febfb5c611b7237d806230dc83584" + "sha512": "c453e9a79725d54db8a754a0ed9f94c51b5cbe448dae46af2fa7de39dc109ce9d3d28ab448127271fa75fb5d6156534e36d9b6a9efd6bb85bd4022cc173935ac", + "sha1": "b6c676fbe4e586de6c266190943c069a0a49104d" }, "required_dependencies": [ "OsZiaDHq" ], - "size": 51722248, - "date_published": "2025-05-26T09:58:10.235049Z" + "size": 52449474, + "date_published": "2025-12-11T19:02:45.759230Z" + }, + { + "type": "curseforge", + "file_name": "AmbientSounds_FORGE_v6.3.1_mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7321/586/AmbientSounds_FORGE_v6.3.1_mc1.20.1.jar", + "id": "7321586", + "parent_id": "254284", + "hashes": { + "sha1": "b6c676fbe4e586de6c266190943c069a0a49104d", + "md5": "ce88224be844787f70b3e2d0ea40ffac" + }, + "required_dependencies": [ + "257814" + ], + "size": 52449474, + "date_published": "2025-12-11T19:02:20.783Z" } ] }, @@ -1035,7 +1035,7 @@ "files": [ { "type": "modrinth", - "file_name": "ae2wtlib-15.3.1-forge.jar", + "file_name": "ae2wtlib-15.3.3-forge.jar", "mc_versions": [ "1.20.1" ], @@ -1043,25 +1043,25 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/pNabrMMw/versions/BLQZoB0F/ae2wtlib-15.3.1-forge.jar", - "id": "BLQZoB0F", + "url": "https://cdn.modrinth.com/data/pNabrMMw/versions/z8QXeyI0/ae2wtlib-15.3.3-forge.jar", + "id": "z8QXeyI0", "parent_id": "pNabrMMw", "hashes": { - "sha512": "57603754e9b51858678d0bbabea8c47050f56b810cdf06d528fdf97262cda4c26fa758830c997d2f0cdf7772142d70d99ea8e4be33fc9d20e54b7c43803ea109", - "sha1": "2df257a66c16c30f4fcae2de0d6b387251b7f114" + "sha512": "f036f278e6d1360147b04f2090829154e75e456f3b2c0af7571b537bf0fd13e97f29211f7a044f9437a171a1c525195737860895118eab70b2b4af54485367d4", + "sha1": "1a546af04844677542b6914191783c7de15364fc" }, "required_dependencies": [ - "vvuO3ImH", - "lhGA9TYQ", + "9s6osm5g", "XxWD5pD3", - "9s6osm5g" + "lhGA9TYQ", + "vvuO3ImH" ], - "size": 228960, - "date_published": "2025-10-26T23:02:08.228212Z" + "size": 229518, + "date_published": "2025-11-23T00:02:50.212750Z" }, { "type": "curseforge", - "file_name": "ae2wtlib-15.3.1-forge.jar", + "file_name": "ae2wtlib-15.3.3-forge.jar", "mc_versions": [ "1.20.1" ], @@ -1069,21 +1069,21 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7154/316/ae2wtlib-15.3.1-forge.jar", - "id": "7154316", + "url": "https://edge.forgecdn.net/files/7251/206/ae2wtlib-15.3.3-forge.jar", + "id": "7251206", "parent_id": "459929", "hashes": { - "sha1": "2df257a66c16c30f4fcae2de0d6b387251b7f114", - "md5": "91c10c49ecea8f771aef27de03da0dec" + "sha1": "1a546af04844677542b6914191783c7de15364fc", + "md5": "9e60a31acb384e832f03bcb16e092ec9" }, "required_dependencies": [ + "309927", "223794", "348521", - "309927", "419699" ], - "size": 228960, - "date_published": "2025-10-26T23:02:05.480Z" + "size": 229518, + "date_published": "2025-11-23T00:02:48.137Z" } ] }, @@ -1109,7 +1109,7 @@ "files": [ { "type": "modrinth", - "file_name": "afc-1.0.19-1.20.1.jar", + "file_name": "afc-1.0.20-1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -1117,23 +1117,22 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/9q4wtMjp/versions/cFxHfQdz/afc-1.0.19-1.20.1.jar", - "id": "cFxHfQdz", + "url": "https://cdn.modrinth.com/data/9q4wtMjp/versions/pn3lpkuA/afc-1.0.20-1.20.1.jar", + "id": "pn3lpkuA", "parent_id": "9q4wtMjp", "hashes": { - "sha512": "621ba1fa49e26060b7a14452d7b7b37956de3279ecc2bd96fd178c55eaf73b69fdf39c64ff46de4f283d30093e29c5f236e57cad97ad5476544aa2fc94f8bbef", - "sha1": "e2ccbe527a06bd242687685dbcc1a12f4e790b88" + "sha512": "1cde189f8f66a6cb23a97280dd5ffcadb1626b57d4332dd9d138b87766975a5296ee61b36da19fde99c93a5cc69abc0612291b601937bef0c3516ab32e10a300", + "sha1": "0a06e8bc356c10941324657d74bf2dd2a082c892" }, "required_dependencies": [ - "nU0bVIaL", "JaCEZUhg" ], - "size": 5118951, - "date_published": "2025-07-26T19:47:57.540420Z" + "size": 5138158, + "date_published": "2025-11-08T21:56:38.003314Z" }, { "type": "curseforge", - "file_name": "afc-1.0.19-1.20.1.jar", + "file_name": "afc-1.0.20-1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -1142,18 +1141,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6814/891/afc-1.0.19-1.20.1.jar", - "id": "6814891", + "url": "https://edge.forgecdn.net/files/7200/580/afc-1.0.20-1.20.1.jar", + "id": "7200580", "parent_id": "877545", "hashes": { - "sha1": "e2ccbe527a06bd242687685dbcc1a12f4e790b88", - "md5": "c6211d4edfb5fd65c3922fb1d87bb700" + "sha1": "0a06e8bc356c10941324657d74bf2dd2a082c892", + "md5": "305aaf41433488cdb43ca52a0415d3c1" }, "required_dependencies": [ "302973" ], - "size": 5118951, - "date_published": "2025-07-26T19:48:35.320Z" + "size": 5138158, + "date_published": "2025-11-08T21:55:56.050Z" } ] }, @@ -1421,7 +1420,7 @@ ] }, { - "pakku_id": "tcGlxrXYONei6sfG", + "pakku_id": "7Vq00IB6FTxaWTvr", "type": "MOD", "side": "SERVER", "slug": { @@ -1437,30 +1436,9 @@ "modrinth": "OfKzpbRU" }, "files": [ - { - "type": "modrinth", - "file_name": "baguettelib-1.20.1-Forge-1.1.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/OfKzpbRU/versions/zcwsIJEa/baguettelib-1.20.1-Forge-1.1.1.jar", - "id": "zcwsIJEa", - "parent_id": "OfKzpbRU", - "hashes": { - "sha512": "0e9f34e0e8d8703269fd6d26a3635268d8f01d79c17355a85f07cd3cf382e84d23635c9715522e3839091caed6db723984b4df569fd06b042557fcf7f46f0f08", - "sha1": "eb060d8ed625c2ed9182db62e60154bb94c69046" - }, - "required_dependencies": [], - "size": 30312, - "date_published": "2025-09-27T08:33:58.185785Z" - }, { "type": "curseforge", - "file_name": "baguettelib-1.20.1-Forge-1.1.1.jar", + "file_name": "baguettelib-1.20.1-Forge-1.1.5.jar", "mc_versions": [ "1.20.1" ], @@ -1468,16 +1446,37 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7031/573/baguettelib-1.20.1-Forge-1.1.1.jar", - "id": "7031573", + "url": "https://edge.forgecdn.net/files/7287/505/baguettelib-1.20.1-Forge-1.1.5.jar", + "id": "7287505", "parent_id": "1264423", "hashes": { - "sha1": "eb060d8ed625c2ed9182db62e60154bb94c69046", - "md5": "558b2a3c6ed2caa44883e551580c0845" + "sha1": "7aaab6216e7fc72e1606b1e35f1f56a18f01153f", + "md5": "21c32e7a3fcd7501915bf2b91d76df9b" }, "required_dependencies": [], - "size": 30312, - "date_published": "2025-09-25T09:12:10.740Z" + "size": 31868, + "date_published": "2025-12-02T22:51:20.803Z" + }, + { + "type": "modrinth", + "file_name": "baguettelib-1.20.1-Forge-1.1.5.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/OfKzpbRU/versions/lFRf3UUH/baguettelib-1.20.1-Forge-1.1.5.jar", + "id": "lFRf3UUH", + "parent_id": "OfKzpbRU", + "hashes": { + "sha512": "e5de5fea569e3ef00230b7f1638885424c00d7f3b9ac471682ceb667ee0f22776c05bce0b25c592a350e787861077e67ebcc067d4104f4b993d886aa4f31a6ed", + "sha1": "7aaab6216e7fc72e1606b1e35f1f56a18f01153f" + }, + "required_dependencies": [], + "size": 31868, + "date_published": "2025-12-19T20:09:42.978615Z" } ] }, @@ -1500,7 +1499,7 @@ "files": [ { "type": "modrinth", - "file_name": "balm-forge-1.20.1-7.3.33-all.jar", + "file_name": "balm-forge-1.20.1-7.3.38-all.jar", "mc_versions": [ "1.20", "1.20.1" @@ -1509,20 +1508,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/MBAkmtvl/versions/Et3eoKPd/balm-forge-1.20.1-7.3.33-all.jar", - "id": "Et3eoKPd", + "url": "https://cdn.modrinth.com/data/MBAkmtvl/versions/8rz04Kha/balm-forge-1.20.1-7.3.38-all.jar", + "id": "8rz04Kha", "parent_id": "MBAkmtvl", "hashes": { - "sha512": "d2ae5b6da42930735fd7132a67c4bd8a81cc44f686d680f73e7ffb686d0f873d408bff16153a9bff0651d888d0fe5473574c0d0d4f33ce564fbf3561beb4bbb5", - "sha1": "991d476a261027f2c3fef6545b6e24bcfee47de2" + "sha512": "7b7e100a9de75750e402ecc1e2d1c88bf2f16fa1cf095656d87918d37a0472f163b0c6242c68b38285410513ff6a66b31c5620139c2901e7b235657027c71f50", + "sha1": "c689f4cbe1a5250177aced15b66ca251d9476d35" }, "required_dependencies": [], - "size": 596328, - "date_published": "2025-07-18T16:27:58.574138Z" + "size": 591398, + "date_published": "2026-01-05T11:43:40.856151Z" }, { "type": "curseforge", - "file_name": "balm-forge-1.20.1-7.3.33-all.jar", + "file_name": "balm-forge-1.20.1-7.3.38-all.jar", "mc_versions": [ "1.20.1", "1.20" @@ -1531,16 +1530,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6784/115/balm-forge-1.20.1-7.3.33-all.jar", - "id": "6784115", + "url": "https://edge.forgecdn.net/files/7420/617/balm-forge-1.20.1-7.3.38-all.jar", + "id": "7420617", "parent_id": "531761", "hashes": { - "sha1": "190bb6d7e3b51f786fc3968bd142ca8705cd85ac", - "md5": "2ff37a0442953ee751f788bea5658473" + "sha1": "515905f87268f1eb5af2a9878a84914517efe552", + "md5": "499467bc8050be8893b08995438cc026" }, "required_dependencies": [], - "size": 596329, - "date_published": "2025-07-18T16:27:33.377Z" + "size": 591397, + "date_published": "2026-01-05T11:43:31.017Z" } ] }, @@ -1639,7 +1638,7 @@ "files": [ { "type": "modrinth", - "file_name": "beneath-1.20.1-1.0.5.jar", + "file_name": "beneath-1.20.1-1.0.6.jar", "mc_versions": [ "1.20.1" ], @@ -1648,42 +1647,42 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/6VieRZiz/versions/d0xgZnLe/beneath-1.20.1-1.0.5.jar", - "id": "d0xgZnLe", + "url": "https://cdn.modrinth.com/data/6VieRZiz/versions/vJG1yevl/beneath-1.20.1-1.0.6.jar", + "id": "vJG1yevl", "parent_id": "6VieRZiz", "hashes": { - "sha512": "0eec3b25e7aebb8df74804d70a054c96e529f3d4cd437173219f891badef05d98996adcae387e6808e6489e18253aa73e6bd1193cfb9dcaf7ac26c92819e6bc8", - "sha1": "12edd937a9070a71e50dcb53fd757b30d115bc2a" + "sha512": "a609b95ec50aa9be9260beef01bc5cd8915de1c65abc8c6b7ae65dbb70ee5c0c643d20bbafac2772e95977660843b6c4b920161b62845ae1d96e7801dedc97ca", + "sha1": "fc9208fa33d9f6868ab123dc0a73049fe3805201" }, "required_dependencies": [ "JaCEZUhg" ], - "size": 1500972, - "date_published": "2025-08-19T22:18:43.907020Z" + "size": 1519342, + "date_published": "2025-12-31T15:16:00.623753Z" }, { "type": "curseforge", - "file_name": "beneath-1.20.1-1.0.5.jar", + "file_name": "beneath-1.20.1-1.0.6.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", - "forge" + "forge", + "neoforge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6905/461/beneath-1.20.1-1.0.5.jar", - "id": "6905461", + "url": "https://edge.forgecdn.net/files/7400/831/beneath-1.20.1-1.0.6.jar", + "id": "7400831", "parent_id": "1113980", "hashes": { - "sha1": "12edd937a9070a71e50dcb53fd757b30d115bc2a", - "md5": "aeda5af6cf8575a816f7c4ea1630ca97" + "sha1": "fc9208fa33d9f6868ab123dc0a73049fe3805201", + "md5": "cc72b044f795960451830fe49837bcb2" }, "required_dependencies": [ "302973" ], - "size": 1500972, - "date_published": "2025-08-19T22:18:40.447Z" + "size": 1519342, + "date_published": "2025-12-31T15:15:58.277Z" } ] }, @@ -1821,6 +1820,74 @@ } ] }, + { + "pakku_id": "8jcmjuoMhFDsALTg", + "pakku_links": [ + "3Hn4sTVbBvKyQJJS" + ], + "type": "MOD", + "side": "SERVER", + "slug": { + "curseforge": "block-runner", + "modrinth": "block-runner" + }, + "name": { + "curseforge": "Block Runner", + "modrinth": "Block Runner" + }, + "id": { + "curseforge": "442842", + "modrinth": "1VSGxqkt" + }, + "files": [ + { + "type": "curseforge", + "file_name": "BlockRunner-v8.0.4-1.20.1-Forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5157/20/BlockRunner-v8.0.4-1.20.1-Forge.jar", + "id": "5157020", + "parent_id": "442842", + "hashes": { + "sha1": "71fc6fe4b99dc495528edbb0be12b126eab64b6f", + "md5": "599fa317751adc86fafeef00fa9eb753" + }, + "required_dependencies": [ + "495476" + ], + "size": 76565, + "date_published": "2024-03-04T12:26:25.207Z" + }, + { + "type": "modrinth", + "file_name": "BlockRunner-v8.0.4-1.20.1-Forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/1VSGxqkt/versions/JCUr7it5/BlockRunner-v8.0.4-1.20.1-Forge.jar", + "id": "JCUr7it5", + "parent_id": "1VSGxqkt", + "hashes": { + "sha512": "d13dbe6d30092800f47006dc90754f2fd09422158b3d95f634325a1e82cb00c7898fde65d7bbdd6d95a6d004272227821b5bfb58be8c64af781d6b562e7ac48b", + "sha1": "71fc6fe4b99dc495528edbb0be12b126eab64b6f" + }, + "required_dependencies": [ + "QAGBst4M" + ], + "size": 76565, + "date_published": "2024-03-04T12:26:29.116774Z" + } + ] + }, { "pakku_id": "Yr24iolwXV9aFEWV", "type": "MOD", @@ -2082,69 +2149,6 @@ } ] }, - { - "pakku_id": "D9s7KuR1ErSJWwuk", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "caelum", - "modrinth": "caelum" - }, - "name": { - "curseforge": "Caelum", - "modrinth": "Caelum" - }, - "id": { - "curseforge": "556708", - "modrinth": "Xkw3TXqP" - }, - "files": [ - { - "type": "curseforge", - "file_name": "caelum-1.20.1-2.0.0.0.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/4674/619/caelum-1.20.1-2.0.0.0.jar", - "id": "4674619", - "parent_id": "556708", - "hashes": { - "sha1": "8b1980f2a91599aea95fecd646b8bc265df7786f", - "md5": "dc2b023ca9c05dcde9ea8260d0dfee4c" - }, - "required_dependencies": [], - "size": 263769, - "date_published": "2023-07-31T16:31:55.127Z" - }, - { - "type": "modrinth", - "file_name": "caelum-1.20.1-2.0.0.0.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge", - "neoforge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/Xkw3TXqP/versions/7JGuqBG4/caelum-1.20.1-2.0.0.0.jar", - "id": "7JGuqBG4", - "parent_id": "Xkw3TXqP", - "hashes": { - "sha512": "0e22325ba35525201a278de0ec510c38e8c209796a5728ce625d4f57205e79bb726777915c4fe7e83664447849b5802868f213b9215ca491559af84b7e31b28e", - "sha1": "8b1980f2a91599aea95fecd646b8bc265df7786f" - }, - "required_dependencies": [], - "size": 263769, - "date_published": "2023-07-31T16:36:13.789465Z" - } - ] - }, { "pakku_id": "A31UAepqnKniFZnm", "pakku_links": [ @@ -2295,30 +2299,9 @@ "modrinth": "YWGP4Y1d" }, "files": [ - { - "type": "curseforge", - "file_name": "chalk-1.20.1-1.6.6.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6661/590/chalk-1.20.1-1.6.6.jar", - "id": "6661590", - "parent_id": "533748", - "hashes": { - "sha1": "4476abc4a3f707c2e82d91038972644d92752df5", - "md5": "dd6d469c96e448da033e28e0bcc3a116" - }, - "required_dependencies": [], - "size": 320854, - "date_published": "2025-06-17T15:51:12.797Z" - }, { "type": "modrinth", - "file_name": "chalk-1.20.1-1.6.6.jar", + "file_name": "chalk-1.20.1-1.6.7.jar", "mc_versions": [ "1.20.1" ], @@ -2326,16 +2309,37 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/YWGP4Y1d/versions/tRKPNWEg/chalk-1.20.1-1.6.6.jar", - "id": "tRKPNWEg", + "url": "https://cdn.modrinth.com/data/YWGP4Y1d/versions/egCIyHFr/chalk-1.20.1-1.6.7.jar", + "id": "egCIyHFr", "parent_id": "YWGP4Y1d", "hashes": { - "sha512": "c2c485321015847087c4724c768f5be7dffd24b1cb10be1e8e44f4dfcd42490dd6be82770c83ecba3344f93b4d66651c7bbc811f95ee300d889d11edf51b22f6", - "sha1": "4476abc4a3f707c2e82d91038972644d92752df5" + "sha512": "c983555fb6e26f1c70a8d24a5b80e369ec6884d413ff228ce4f0a03b46777f281e667df97badc3092cdbdfe7bae3c735a52c3dfd7d8312e065192e093d04343a", + "sha1": "42f34947910ca428497fac0bf2566a45959a51a5" }, "required_dependencies": [], - "size": 320854, - "date_published": "2025-06-17T15:50:40.420367Z" + "size": 322379, + "date_published": "2025-12-23T19:45:52.435072Z" + }, + { + "type": "curseforge", + "file_name": "chalk-1.20.1-1.6.7.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7370/654/chalk-1.20.1-1.6.7.jar", + "id": "7370654", + "parent_id": "533748", + "hashes": { + "sha1": "42f34947910ca428497fac0bf2566a45959a51a5", + "md5": "0f916c5dc990ba5fd942824f2b6d45f9" + }, + "required_dependencies": [], + "size": 322379, + "date_published": "2025-12-23T19:44:45.250Z" } ] }, @@ -2358,7 +2362,7 @@ "files": [ { "type": "modrinth", - "file_name": "chat_heads-0.14.0-forge-1.20.jar", + "file_name": "chat_heads-0.14.2-forge-1.20.jar", "mc_versions": [ "1.20", "1.20.1" @@ -2367,20 +2371,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/2OV95AUL/chat_heads-0.14.0-forge-1.20.jar", - "id": "2OV95AUL", + "url": "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/kHywXsX0/chat_heads-0.14.2-forge-1.20.jar", + "id": "kHywXsX0", "parent_id": "Wb5oqrBJ", "hashes": { - "sha512": "9d1f0ff0daa940869b5b6af45f75e73d6fda8c6ee38fd0534b6d121c5e26aaeb8c87b856ecef1fc64b4c3d09f34c69ce8f27213837856637e4637c0970a22909", - "sha1": "567ee6f6d2b72a8203b73887e38344ffa2834b12" + "sha512": "44970e9d913c19b0c36990dcf6f4cf757b032f3bec596cc9b85ff0ac7fe5fcab3d20cd590e31825e649f5393189fc2bb89386f95cca36013e9c0195eb62e10e2", + "sha1": "0410ab9636c69324e3671012af64c7743f6d6079" }, "required_dependencies": [], - "size": 718407, - "date_published": "2025-10-02T14:11:45.140239Z" + "size": 718678, + "date_published": "2025-11-11T19:30:49.532052Z" }, { "type": "curseforge", - "file_name": "chat_heads-0.14.0-forge-1.20.jar", + "file_name": "chat_heads-0.14.2-forge-1.20.jar", "mc_versions": [ "1.20.1", "1.20" @@ -2389,16 +2393,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7057/824/chat_heads-0.14.0-forge-1.20.jar", - "id": "7057824", + "url": "https://edge.forgecdn.net/files/7211/700/chat_heads-0.14.2-forge-1.20.jar", + "id": "7211700", "parent_id": "407206", "hashes": { - "sha1": "567ee6f6d2b72a8203b73887e38344ffa2834b12", - "md5": "b0d253116c8e585f087b481ec46a5c55" + "sha1": "0410ab9636c69324e3671012af64c7743f6d6079", + "md5": "90c7b2c8dd6b9001528c5d741152b784" }, "required_dependencies": [], - "size": 718407, - "date_published": "2025-10-02T14:11:48.900Z" + "size": 718678, + "date_published": "2025-11-11T19:30:55.800Z" } ] }, @@ -2575,7 +2579,10 @@ ] }, { - "pakku_id": "09bmfAq7PxUxWfZP", + "pakku_id": "Zx4piwuLwghFhuAX", + "pakku_links": [ + "vcmbP1ZpBZtFq3zT" + ], "type": "MOD", "side": "CLIENT", "slug": { @@ -2591,33 +2598,9 @@ "modrinth": "vPNqo58Q" }, "files": [ - { - "type": "modrinth", - "file_name": "clienttweaks-forge-1.20.1-11.1.4.jar", - "mc_versions": [ - "1.20", - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/vPNqo58Q/versions/CgYDErri/clienttweaks-forge-1.20.1-11.1.4.jar", - "id": "CgYDErri", - "parent_id": "vPNqo58Q", - "hashes": { - "sha512": "5ebce9bc1517f588bf5627c236fd45a7d1e852f05791574d2f5dab4e53549247f401e0c0d39dc904c110392f9c320d4685c5a864fb73f1719c7febe5c159de24", - "sha1": "35a27c237edc88ce5a48b271a83ad3cf577fe8e4" - }, - "required_dependencies": [ - "MBAkmtvl" - ], - "size": 137803, - "date_published": "2025-07-17T13:16:41.315425Z" - }, { "type": "curseforge", - "file_name": "clienttweaks-forge-1.20.1-11.1.4.jar", + "file_name": "clienttweaks-forge-1.20.1-11.1.6.jar", "mc_versions": [ "1.20.1", "1.20" @@ -2626,18 +2609,42 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6778/900/clienttweaks-forge-1.20.1-11.1.4.jar", - "id": "6778900", + "url": "https://edge.forgecdn.net/files/7364/655/clienttweaks-forge-1.20.1-11.1.6.jar", + "id": "7364655", "parent_id": "251407", "hashes": { - "sha1": "6389f338e671a149138175fd5ef9fe096d276970", - "md5": "24d4ad737448d3d2243042d33bfe084d" + "sha1": "7e65ea212c78629170ab97c7159cee1cf2ca89b0", + "md5": "7bd8201231121cbc56a3915aeafbf755" }, "required_dependencies": [ "531761" ], - "size": 137803, - "date_published": "2025-07-17T13:16:38.110Z" + "size": 138121, + "date_published": "2025-12-22T08:27:56.817Z" + }, + { + "type": "modrinth", + "file_name": "clienttweaks-forge-1.20.1-11.1.6.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/vPNqo58Q/versions/Febi39qw/clienttweaks-forge-1.20.1-11.1.6.jar", + "id": "Febi39qw", + "parent_id": "vPNqo58Q", + "hashes": { + "sha512": "1b8ddf7ccb8fb5cd2248365534b80af10023821ec4d2786821edd744ae6ce01dc888ddf61f16e1a2a9f4f88041d06fc1a219aa9088625882f5b5739f68f29a1b", + "sha1": "94f11a58c3b971ea95971f297b7866ca27b73270" + }, + "required_dependencies": [ + "MBAkmtvl" + ], + "size": 138121, + "date_published": "2025-12-22T08:28:32.495908Z" } ] }, @@ -2746,7 +2753,7 @@ }, { "type": "curseforge", - "file_name": "Waves-1.20.1-1.6a.jar", + "file_name": "Waves-1.20.1-1.6.1.jar", "mc_versions": [ "1.20.1" ], @@ -2755,16 +2762,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7046/424/Waves-1.20.1-1.6a.jar", - "id": "7046424", + "url": "https://edge.forgecdn.net/files/7208/600/Waves-1.20.1-1.6.1.jar", + "id": "7208600", "parent_id": "1155936", "hashes": { - "sha1": "cd2242b9102cebbdb117591be1b7c0b3465e3122", - "md5": "b510f00117054c6c06a0369edb44d4e0" + "sha1": "9704c7049b49ba6f5969ba2a1442490385764d03", + "md5": "9012ca8827fef15f7fa78179ce2fbf86" }, "required_dependencies": [], - "size": 1337728, - "date_published": "2025-09-29T18:42:51.277Z" + "size": 1337928, + "date_published": "2025-11-10T23:43:44.807Z" } ] }, @@ -2790,7 +2797,7 @@ "files": [ { "type": "modrinth", - "file_name": "colorwheel-forge-1.1.1+mc1.20.1.jar", + "file_name": "colorwheel-forge-1.2.0+mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -2798,22 +2805,22 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/BzHgFoGz/versions/X6DowH3e/colorwheel-forge-1.1.1+mc1.20.1.jar", - "id": "X6DowH3e", + "url": "https://cdn.modrinth.com/data/BzHgFoGz/versions/sMMng3Id/colorwheel-forge-1.2.0+mc1.20.1.jar", + "id": "sMMng3Id", "parent_id": "BzHgFoGz", "hashes": { - "sha512": "d919e95c6eed99a223ac6bc7f9c3b8c350dc1ea4279c4cdbd7ebfa78d3bc6dadeccac34a9fc68d229fbfd7c25e267e7caa8b0ca3051907e411b03f444f9b9c1c", - "sha1": "8ae48d07db5b42a55906e81f86e9eaffc6db0777" + "sha512": "603ad678a8dfc3fbcad5f1173e396125244eaad55727d47f7ddd4b66df725c59d90fabaf608f6db82db006a1fe7b12196cdf7cddf5135807e8549242645632a1", + "sha1": "b4caaa01971dd398d4d6112a896eea6db856c971" }, "required_dependencies": [ "GchcoXML" ], - "size": 363116, - "date_published": "2025-10-26T13:17:13.808921Z" + "size": 374988, + "date_published": "2026-01-03T13:14:56.723620Z" }, { "type": "curseforge", - "file_name": "colorwheel-forge-1.1.1+mc1.20.1.jar", + "file_name": "colorwheel-forge-1.2.0+mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -2821,18 +2828,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7152/24/colorwheel-forge-1.1.1+mc1.20.1.jar", - "id": "7152024", + "url": "https://edge.forgecdn.net/files/7412/169/colorwheel-forge-1.2.0+mc1.20.1.jar", + "id": "7412169", "parent_id": "1254143", "hashes": { - "sha1": "8ae48d07db5b42a55906e81f86e9eaffc6db0777", - "md5": "49f685588964cf263b24071e7014de92" + "sha1": "b4caaa01971dd398d4d6112a896eea6db856c971", + "md5": "0bf318b01e6e1fcea03db73014a2abe3" }, "required_dependencies": [ "581495" ], - "size": 363116, - "date_published": "2025-10-26T13:17:11.663Z" + "size": 374988, + "date_published": "2026-01-03T13:14:54.440Z" } ] }, @@ -2855,7 +2862,7 @@ "files": [ { "type": "modrinth", - "file_name": "colorwheel_patcher-forge-1.0.3+mc1.20.1.jar", + "file_name": "colorwheel_patcher-forge-1.0.4+mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -2863,20 +2870,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/KPsw5jDu/versions/Bborq7rl/colorwheel_patcher-forge-1.0.3+mc1.20.1.jar", - "id": "Bborq7rl", + "url": "https://cdn.modrinth.com/data/KPsw5jDu/versions/1JZBSXYs/colorwheel_patcher-forge-1.0.4+mc1.20.1.jar", + "id": "1JZBSXYs", "parent_id": "KPsw5jDu", "hashes": { - "sha512": "ae240222084eebb4b4f2a0257559e9baa9a5bd02a1f934da3697dd343320fc1a3b692b5c63366e0304159f7c60a95387e0f6b00fc51b609d45b7abbe72e7c635", - "sha1": "af4ffc83e8fd4964c09d88035a7df64f1536f68b" + "sha512": "d9979e73e4086e0ebd4143b4b639a30a077607d3462e35477f4c4ece433995542c6434f18f42dfc5c894151c833e5fa488bde4caea4aff843f970bafeade2afb", + "sha1": "a8ae8241362d7de40fd8909f942c3b1362779bd6" }, "required_dependencies": [], - "size": 206475, - "date_published": "2025-10-26T13:18:40.538117Z" + "size": 207040, + "date_published": "2025-12-30T19:53:19.416175Z" }, { "type": "curseforge", - "file_name": "colorwheel_patcher-forge-1.0.3+mc1.20.1.jar", + "file_name": "colorwheel_patcher-forge-1.0.4+mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -2884,16 +2891,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7152/28/colorwheel_patcher-forge-1.0.3+mc1.20.1.jar", - "id": "7152028", + "url": "https://edge.forgecdn.net/files/7397/574/colorwheel_patcher-forge-1.0.4+mc1.20.1.jar", + "id": "7397574", "parent_id": "1285475", "hashes": { - "sha1": "af4ffc83e8fd4964c09d88035a7df64f1536f68b", - "md5": "70841d578540ed1eb488429981cba900" + "sha1": "a8ae8241362d7de40fd8909f942c3b1362779bd6", + "md5": "2cc3663f6ad63a6f63c78dee2fffe0b7" }, "required_dependencies": [], - "size": 206475, - "date_published": "2025-10-26T13:18:39.243Z" + "size": 207040, + "date_published": "2025-12-30T19:53:17.543Z" } ] }, @@ -3229,9 +3236,9 @@ { "pakku_id": "jhQHIzkaO8paPfEL", "pakku_links": [ - "tcGlxrXYONei6sfG", "CyISC0hDehFhsqVb", - "0DMPJ1AWW6qfYubI" + "0DMPJ1AWW6qfYubI", + "7Vq00IB6FTxaWTvr" ], "type": "MOD", "side": "SERVER", @@ -3476,6 +3483,76 @@ } ] }, + { + "pakku_id": "lePQHTl9cI4dUuqu", + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "crash-assistant", + "modrinth": "crash-assistant" + }, + "name": { + "curseforge": "Crash Assistant", + "modrinth": "Crash Assistant" + }, + "id": { + "curseforge": "1154099", + "modrinth": "ix1qq8Ux" + }, + "files": [ + { + "type": "modrinth", + "file_name": "CrashAssistant-forge-1.19-1.20.1-1.10.28.jar", + "mc_versions": [ + "1.19", + "1.19.1", + "1.19.2", + "1.19.3", + "1.19.4", + "1.20", + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ix1qq8Ux/versions/1mGJaICy/CrashAssistant-forge-1.19-1.20.1-1.10.28.jar", + "id": "1mGJaICy", + "parent_id": "ix1qq8Ux", + "hashes": { + "sha512": "7bcf054ca17ba8f2852e8e8c2192e09e8a92291602e5a9f548bc22e55ddc8e6f271ae438ac06c70e9b4393b7cdae3c9e0e327bd2b168202c4d8eb4371ada1c01", + "sha1": "ff33e66ea1d828f0a5de39cf31d765e75d0a3859" + }, + "required_dependencies": [], + "size": 1231520, + "date_published": "2025-12-25T00:04:33.812161Z" + }, + { + "type": "curseforge", + "file_name": "CrashAssistant-forge-1.19-1.20.1-1.10.28.jar", + "mc_versions": [ + "1.20.1", + "1.20" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7374/762/CrashAssistant-forge-1.19-1.20.1-1.10.28.jar", + "id": "7374762", + "parent_id": "1154099", + "hashes": { + "sha1": "ff33e66ea1d828f0a5de39cf31d765e75d0a3859", + "md5": "9237488163b0053a047eafadc328812f" + }, + "required_dependencies": [], + "size": 1231520, + "date_published": "2025-12-25T00:04:30.453Z" + } + ] + }, { "pakku_id": "UK4MA17BjQa9613t", "type": "MOD", @@ -3576,31 +3653,9 @@ "modrinth": "LNytGWDc" }, "files": [ - { - "type": "curseforge", - "file_name": "create-1.20.1-6.0.6.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6641/603/create-1.20.1-6.0.6.jar", - "id": "6641603", - "parent_id": "328085", - "hashes": { - "sha1": "c5eb5efad7a4776d558b44b28891f2e33eef03e4", - "md5": "0bdb2789d1708a9de227c8ef05a830d9" - }, - "required_dependencies": [], - "size": 18764522, - "date_published": "2025-06-11T21:37:11.767Z" - }, { "type": "modrinth", - "file_name": "create-1.20.1-6.0.6.jar", + "file_name": "create-1.20.1-6.0.8.jar", "mc_versions": [ "1.20.1" ], @@ -3609,16 +3664,38 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/LNytGWDc/versions/JjPQsQVw/create-1.20.1-6.0.6.jar", - "id": "JjPQsQVw", + "url": "https://cdn.modrinth.com/data/LNytGWDc/versions/8amzvn9x/create-1.20.1-6.0.8.jar", + "id": "8amzvn9x", "parent_id": "LNytGWDc", "hashes": { - "sha512": "efc7097430ff2e7fe5e54478efbefc52d0017762b59372878a03f79f4eb0446572290bf377e8aba8374f3a9932fdf1cefd4a4650a9a5f3cf6ab0ad9fd05cc30b", - "sha1": "c5eb5efad7a4776d558b44b28891f2e33eef03e4" + "sha512": "5b51f5d31437d9bfbf221b67459abd87260d284874e1e23b7ed1d522b23a48059a3b1d2c1c541428da35dc6be15561b4f3c7f36aac6df3a0e8db6a278f6b0316", + "sha1": "b13d912b9247a38d66d11598c121442585a1c1e9" }, "required_dependencies": [], - "size": 18764522, - "date_published": "2025-06-11T21:37:13.316377Z" + "size": 19170905, + "date_published": "2025-11-02T16:10:25.364809Z" + }, + { + "type": "curseforge", + "file_name": "create-1.20.1-6.0.8.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7178/761/create-1.20.1-6.0.8.jar", + "id": "7178761", + "parent_id": "328085", + "hashes": { + "sha1": "b13d912b9247a38d66d11598c121442585a1c1e9", + "md5": "6ebc5c57638c1678359eac65b924c310" + }, + "required_dependencies": [], + "size": 19170905, + "date_published": "2025-11-02T16:10:24.043Z" } ] }, @@ -3642,32 +3719,9 @@ "modrinth": "kU1G12Nn" }, "files": [ - { - "type": "curseforge", - "file_name": "createaddition-1.20.1-1.3.2.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6901/922/createaddition-1.20.1-1.3.2.jar", - "id": "6901922", - "parent_id": "439890", - "hashes": { - "sha1": "41ea564e270effea8bad04b937fb30d2a3bb5053", - "md5": "0a70304b24fed06ef44470b613cdb251" - }, - "required_dependencies": [ - "328085" - ], - "size": 1583476, - "date_published": "2025-08-18T21:47:44.397Z" - }, { "type": "modrinth", - "file_name": "createaddition-1.20.1-1.3.1.jar", + "file_name": "createaddition-1.20.1-1.3.3.jar", "mc_versions": [ "1.20.1" ], @@ -3675,18 +3729,41 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/kU1G12Nn/versions/SecVSw22/createaddition-1.20.1-1.3.1.jar", - "id": "SecVSw22", + "url": "https://cdn.modrinth.com/data/kU1G12Nn/versions/9LgyB6Yb/createaddition-1.20.1-1.3.3.jar", + "id": "9LgyB6Yb", "parent_id": "kU1G12Nn", "hashes": { - "sha512": "d9fd62d5041670e3194848624672674b2ef23a88348f30968574803786da0a56b3d34a1ab7e542d6666cd3983d88fbedce08b2c56165a464fee7e3c383c07ad5", - "sha1": "0c408317b7c3bc3c7f7d5f6dbbb3ee106fa5f4fc" + "sha512": "a34f5c3b0226069d2882a3e23ba0e364a78bc5d26983b0cecea8d998718f454d3238ab7c5b4b3ef1749b6f2b26a4e427839c7c32468558fa7a8edb0edc727d10", + "sha1": "c7d464c451fdc2979bc29a67d7eec2a30858af12" }, "required_dependencies": [ "LNytGWDc" ], - "size": 1547196, - "date_published": "2025-03-22T16:14:26.357192Z" + "size": 1577313, + "date_published": "2025-11-10T23:46:17.426080Z" + }, + { + "type": "curseforge", + "file_name": "createaddition-1.20.1-1.3.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7208/610/createaddition-1.20.1-1.3.3.jar", + "id": "7208610", + "parent_id": "439890", + "hashes": { + "sha1": "c7d464c451fdc2979bc29a67d7eec2a30858af12", + "md5": "1c0d2275ead3e4756d77ac5a86f135ab" + }, + "required_dependencies": [ + "328085" + ], + "size": 1577313, + "date_published": "2025-11-10T23:45:16.187Z" } ] }, @@ -3772,7 +3849,7 @@ "files": [ { "type": "modrinth", - "file_name": "create_factory_logistics-1.20.1-1.4.6.jar", + "file_name": "create_factory_logistics-1.20.1-1.4.7.jar", "mc_versions": [ "1.20.1" ], @@ -3780,20 +3857,20 @@ "forge" ], "release_type": "beta", - "url": "https://cdn.modrinth.com/data/QMGO17gm/versions/55cCh8ab/create_factory_logistics-1.20.1-1.4.6.jar", - "id": "55cCh8ab", + "url": "https://cdn.modrinth.com/data/QMGO17gm/versions/cFuYsO3r/create_factory_logistics-1.20.1-1.4.7.jar", + "id": "cFuYsO3r", "parent_id": "QMGO17gm", "hashes": { - "sha512": "63b41cd141e1c2f660662dc19a607ce934ac8d2747b622b2a6d3ac962b2e01a7e69967fc5b42864418389a0c8f2fd6a6686a13c130b7f2ca404f8b7a87d20d4e", - "sha1": "465e6b54a7aad8c5501a517e4d83d9da4aefaaea" + "sha512": "e00e615ee75f5b65e3aea3d513008ac6e09728df48a77c83acd1a776c1d8f3a0a09c3d20db87fe1b340a1a1ff6ef1a49b5d048a71eb73c602cfc263c2bfeb95c", + "sha1": "bf67707d1645197f27cd9a4abea13159fa0fef1e" }, "required_dependencies": [], - "size": 1097007, - "date_published": "2025-08-25T07:30:00.875517Z" + "size": 1112673, + "date_published": "2025-10-28T13:44:02.906156Z" }, { "type": "curseforge", - "file_name": "create_factory_logistics-1.20.1-1.4.6.jar", + "file_name": "create_factory_logistics-1.20.1-1.4.7.jar", "mc_versions": [ "1.20.1" ], @@ -3801,16 +3878,16 @@ "forge" ], "release_type": "beta", - "url": "https://edge.forgecdn.net/files/6925/756/create_factory_logistics-1.20.1-1.4.6.jar", - "id": "6925756", + "url": "https://edge.forgecdn.net/files/7159/834/create_factory_logistics-1.20.1-1.4.7.jar", + "id": "7159834", "parent_id": "1218807", "hashes": { - "sha1": "465e6b54a7aad8c5501a517e4d83d9da4aefaaea", - "md5": "65252091cb9878b33a5ebabdfd73cf7f" + "sha1": "bf67707d1645197f27cd9a4abea13159fa0fef1e", + "md5": "3bd8946bc40727a019f44e1f12ccbe93" }, "required_dependencies": [], - "size": 1097007, - "date_published": "2025-08-25T07:30:01.110Z" + "size": 1112673, + "date_published": "2025-10-28T13:44:03.360Z" } ] }, @@ -3831,30 +3908,9 @@ "modrinth": "9Qm19XSM" }, "files": [ - { - "type": "curseforge", - "file_name": "createhorsepower-1.0.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6514/772/createhorsepower-1.0.1.jar", - "id": "6514772", - "parent_id": "1121632", - "hashes": { - "sha1": "8ff20e3a91d86f5b188ff11a0aca979c62f21a53", - "md5": "1808ba5a8e918ade9fa41a9bcd490ce7" - }, - "required_dependencies": [], - "size": 258705, - "date_published": "2025-05-10T04:44:32.127Z" - }, { "type": "modrinth", - "file_name": "createhorsepower-1.0.1.jar", + "file_name": "createhorsepower-1.20.1-1.1.0.jar", "mc_versions": [ "1.20.1" ], @@ -3862,18 +3918,40 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/9Qm19XSM/versions/U0KKv9fU/createhorsepower-1.0.1.jar", - "id": "U0KKv9fU", + "url": "https://cdn.modrinth.com/data/9Qm19XSM/versions/bHSeI5kR/createhorsepower-1.20.1-1.1.0.jar", + "id": "bHSeI5kR", "parent_id": "9Qm19XSM", "hashes": { - "sha512": "4a8a30e5601783d214e96310cd71447054f0d2ac7545e7996b15161184ae4cace8fa556e84728aee3d37b639de029ca6c5d6cca3d12f637eb26c6aa77a9c819c", - "sha1": "8ff20e3a91d86f5b188ff11a0aca979c62f21a53" + "sha512": "8bb9e3d2b9e327709e26e247210efc10db6ade1a13156175d39729fe8bafae5e75f7c9104b03ce7c358bad40dcee767c1181bd8340f2e5ec314a36fc2822abdb", + "sha1": "b4a5802ec8e5c1eef4fe69b9ca973eb7fe02ace9" }, "required_dependencies": [ - "LNytGWDc" + "LNytGWDc", + "u6dRKJwZ" ], - "size": 258705, - "date_published": "2025-05-10T04:41:21.145727Z" + "size": 259693, + "date_published": "2025-11-25T04:46:17.404117Z" + }, + { + "type": "curseforge", + "file_name": "createhorsepower-1.20.1-1.1.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7259/899/createhorsepower-1.20.1-1.1.0.jar", + "id": "7259899", + "parent_id": "1121632", + "hashes": { + "sha1": "b4a5802ec8e5c1eef4fe69b9ca973eb7fe02ace9", + "md5": "4d2d9e1f33a934e7c60f734b9d848dc3" + }, + "required_dependencies": [], + "size": 259693, + "date_published": "2025-11-25T04:44:48.007Z" } ] }, @@ -3936,33 +4014,9 @@ "modrinth": "Vg5TIO6d" }, "files": [ - { - "type": "curseforge", - "file_name": "create_connected-1.1.7-mc1.20.1-all.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6685/744/create_connected-1.1.7-mc1.20.1-all.jar", - "id": "6685744", - "parent_id": "947914", - "hashes": { - "sha1": "19a6e467dc5e2345c698bfdbe43a7823ff9f7d3f", - "md5": "e93f6fb95b0ff356b5f7af4ddd15b828" - }, - "required_dependencies": [ - "328085" - ], - "size": 6564769, - "date_published": "2025-06-23T05:25:01.437Z" - }, { "type": "modrinth", - "file_name": "create_connected-1.1.7-mc1.20.1-all.jar", + "file_name": "create_connected-1.1.10-mc1.20.1-all.jar", "mc_versions": [ "1.20.1" ], @@ -3971,18 +4025,42 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/Vg5TIO6d/versions/HMzC945H/create_connected-1.1.7-mc1.20.1-all.jar", - "id": "HMzC945H", + "url": "https://cdn.modrinth.com/data/Vg5TIO6d/versions/saiZ8AwJ/create_connected-1.1.10-mc1.20.1-all.jar", + "id": "saiZ8AwJ", "parent_id": "Vg5TIO6d", "hashes": { - "sha512": "647418a320bf722c280b452df54e78dc5deb351ac586ffb2fb8a89ae4784771c4bd4ee17c16efc15d8d705e299521aaa6150bb9e3ab6962fe1c23312c87d2328", - "sha1": "19a6e467dc5e2345c698bfdbe43a7823ff9f7d3f" + "sha512": "0b885e09e0f074051120669337e0f53f42ca43a244cfde02f90b43da5a09853f92715371a9377c542886a673aefeda6f01becd3cb4b1e012d300618f1e33dce8", + "sha1": "329b9417c0fd52f0a5a153de31d7d075c521e900" }, "required_dependencies": [ "LNytGWDc" ], - "size": 6564769, - "date_published": "2025-06-23T05:25:01.309738Z" + "size": 6567116, + "date_published": "2025-11-23T02:14:34.172787Z" + }, + { + "type": "curseforge", + "file_name": "create_connected-1.1.10-mc1.20.1-all.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7251/637/create_connected-1.1.10-mc1.20.1-all.jar", + "id": "7251637", + "parent_id": "947914", + "hashes": { + "sha1": "eea1d04aee638689a99acf66457327b13a4b3f96", + "md5": "b119043b5504991e86a5d7d06734f49b" + }, + "required_dependencies": [ + "328085" + ], + "size": 6567117, + "date_published": "2025-11-23T02:14:45.303Z" } ] }, @@ -4008,7 +4086,7 @@ "files": [ { "type": "modrinth", - "file_name": "create_hypertube-0.2.6-hotfix-FORGE.jar", + "file_name": "create_hypertube-0.3.0-FORGE.jar", "mc_versions": [ "1.20.1", "1.20.2", @@ -4018,45 +4096,46 @@ "1.20.6" ], "loaders": [ - "forge" + "forge", + "neoforge" ], "release_type": "beta", - "url": "https://cdn.modrinth.com/data/ATDdrG1y/versions/iRjDdZIt/create_hypertube-0.2.6-hotfix-FORGE.jar", - "id": "iRjDdZIt", + "url": "https://cdn.modrinth.com/data/ATDdrG1y/versions/pX1oNdBc/create_hypertube-0.3.0-FORGE.jar", + "id": "pX1oNdBc", "parent_id": "ATDdrG1y", "hashes": { - "sha512": "3883609379fed3cde7a046667cb1d04af5816d007bb9c875603d7fb4f3292926663dd22ecc660faa733743fb1adae52cde8dbf2667655846f6bb00af4825e748", - "sha1": "83c1728344eef7669b933e36a42a1d0e4f529ea8" + "sha512": "4ffaff34cdd31c6ff11364809992cb4f15e1e00fd3d87a5be6a9006e95ad9c4636ffbe6845ee2d59b55d20e9896bedb1e5ada699202e9b71a90195833161a140", + "sha1": "476ae93802024b766badb15e538e0cf65a2e3fbd" }, "required_dependencies": [ "LNytGWDc" ], - "size": 351225, - "date_published": "2025-10-09T14:05:53.834301Z" + "size": 390634, + "date_published": "2025-11-21T17:40:28.963108Z" }, { "type": "curseforge", - "file_name": "create_hypertube-0.2.6-hotfix-FORGE.jar", + "file_name": "create_hypertube-0.3.0-FORGE.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", - "forge" + "forge", + "neoforge" ], "release_type": "beta", - "url": "https://edge.forgecdn.net/files/7086/642/create_hypertube-0.2.6-hotfix-FORGE.jar", - "id": "7086642", + "url": "https://edge.forgecdn.net/files/7246/344/create_hypertube-0.3.0-FORGE.jar", + "id": "7246344", "parent_id": "1281336", "hashes": { - "sha1": "83c1728344eef7669b933e36a42a1d0e4f529ea8", - "md5": "3863248ebd60a41ebf7dac874cf6e0c0" + "sha1": "476ae93802024b766badb15e538e0cf65a2e3fbd", + "md5": "7cab909e9c8de12b8c97518ca0042c1b" }, "required_dependencies": [ "328085" ], - "size": 351225, - "date_published": "2025-10-09T14:00:11.063Z" + "size": 390634, + "date_published": "2025-11-21T17:32:38.960Z" } ] }, @@ -4147,7 +4226,7 @@ "files": [ { "type": "modrinth", - "file_name": "Steam_Rails-1.6.13-alpha+forge-mc1.20.1.jar", + "file_name": "Steam_Rails-1.6.14-beta+forge-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -4155,23 +4234,23 @@ "forge", "neoforge" ], - "release_type": "alpha", - "url": "https://cdn.modrinth.com/data/ZzjhlDgM/versions/ezVPFGKZ/Steam_Rails-1.6.13-alpha+forge-mc1.20.1.jar", - "id": "ezVPFGKZ", + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/ZzjhlDgM/versions/ubktvkSZ/Steam_Rails-1.6.14-beta+forge-mc1.20.1.jar", + "id": "ubktvkSZ", "parent_id": "ZzjhlDgM", "hashes": { - "sha512": "99f18f3501fdb67add6d1fdc9016f09718aa6d3fe172559954840747f01e70834e56bb3c26de86846ec9dea3de565d1b86b675d3498c6696b0d0334ac7daf1c5", - "sha1": "52da57f8704a2e6b3f761066748192d6f069d5f9" + "sha512": "073bb29fe087e247986a82b2b0b8c3352e565fb4a171c15a8f54e7d30934077559a37841cadd7c6ddc3bfabcb8c0b2b1111f17faf7a9b97c69a3d9fc30681882", + "sha1": "90ea1d917bc20a5e4cc50abaa512d2084149dc64" }, "required_dependencies": [ "LNytGWDc" ], - "size": 10036200, - "date_published": "2025-09-04T15:49:17.633579Z" + "size": 9999782, + "date_published": "2025-11-09T02:55:28.159991Z" }, { "type": "curseforge", - "file_name": "Steam_Rails-1.6.13-alpha+forge-mc1.20.1.jar", + "file_name": "Steam_Rails-1.6.14-beta+forge-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -4179,19 +4258,19 @@ "neoforge", "forge" ], - "release_type": "alpha", - "url": "https://edge.forgecdn.net/files/6963/175/Steam_Rails-1.6.13-alpha+forge-mc1.20.1.jar", - "id": "6963175", + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/7201/308/Steam_Rails-1.6.14-beta+forge-mc1.20.1.jar", + "id": "7201308", "parent_id": "688231", "hashes": { - "sha1": "52da57f8704a2e6b3f761066748192d6f069d5f9", - "md5": "1124926daa9fb24401d35f8094eff2a7" + "sha1": "90ea1d917bc20a5e4cc50abaa512d2084149dc64", + "md5": "a7d3bbdf204d7957551ad8819c1030a5" }, "required_dependencies": [ "328085" ], - "size": 10036200, - "date_published": "2025-09-04T15:49:13.513Z" + "size": 9999782, + "date_published": "2025-11-09T02:55:25Z" } ] }, @@ -4277,7 +4356,7 @@ "files": [ { "type": "modrinth", - "file_name": "Cucumber-1.20.1-7.0.15.jar", + "file_name": "Cucumber-1.20.1-7.0.16.jar", "mc_versions": [ "1.20.1" ], @@ -4285,20 +4364,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/Rw1NrDzF/versions/tHDveaxK/Cucumber-1.20.1-7.0.15.jar", - "id": "tHDveaxK", + "url": "https://cdn.modrinth.com/data/Rw1NrDzF/versions/xnLznSfT/Cucumber-1.20.1-7.0.16.jar", + "id": "xnLznSfT", "parent_id": "Rw1NrDzF", "hashes": { - "sha512": "9ee45676c1acf8979835610e3f06163a7c69c1fcef872246f118e5dc5c387c9457736c50c7bad63e8319f4e5b75a58e731f49eeb8bfced9c92d1583b43a9afe2", - "sha1": "f376bdf46bce7d9d8cf275b05899e1abaed98c3b" + "sha512": "4b68f300df40e2243a76b80c6a8dff2ed6af01a33e058f1f0e79690ffebea35b020d323fe478c4e41516330c7650cb9b1b713d132ed0de63f96e4787da43a7f5", + "sha1": "88a9ec30e4acb5c80a3ae060ad70b79e945293c6" }, "required_dependencies": [], - "size": 269566, - "date_published": "2025-08-12T22:57:16.961925Z" + "size": 271462, + "date_published": "2025-11-03T02:24:06.959179Z" }, { "type": "curseforge", - "file_name": "Cucumber-1.20.1-7.0.15.jar", + "file_name": "Cucumber-1.20.1-7.0.16.jar", "mc_versions": [ "1.20.1" ], @@ -4306,16 +4385,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6880/321/Cucumber-1.20.1-7.0.15.jar", - "id": "6880321", + "url": "https://edge.forgecdn.net/files/7180/783/Cucumber-1.20.1-7.0.16.jar", + "id": "7180783", "parent_id": "272335", "hashes": { - "sha1": "f376bdf46bce7d9d8cf275b05899e1abaed98c3b", - "md5": "84949e197a71b5f20a99532bd082cea6" + "sha1": "88a9ec30e4acb5c80a3ae060ad70b79e945293c6", + "md5": "d7d34a7584041977e493198a666c2db4" }, "required_dependencies": [], - "size": 269566, - "date_published": "2025-08-12T22:57:15.407Z" + "size": 271462, + "date_published": "2025-11-03T02:24:05.553Z" } ] }, @@ -4404,7 +4483,7 @@ "files": [ { "type": "curseforge", - "file_name": "deafission-1.20.1-0.13.2.jar", + "file_name": "deafission-1.20.1-0.15.4.jar", "mc_versions": [ "1.20.1" ], @@ -4412,19 +4491,19 @@ "forge" ], "release_type": "beta", - "url": "https://edge.forgecdn.net/files/7168/614/deafission-1.20.1-0.13.2.jar", - "id": "7168614", + "url": "https://edge.forgecdn.net/files/7305/261/deafission-1.20.1-0.15.4.jar", + "id": "7305261", "parent_id": "1354541", "hashes": { - "sha1": "5ff6d80290d59ab782b9aab2e00cbb90fc5ab641", - "md5": "16e4d34e2eac7e920aa281c135c2175a" + "sha1": "5b814421715f3f15606a4b2ecc23816432c6911c", + "md5": "64b8f3da2f95649bbef00af310fdc102" }, "required_dependencies": [ "890405", "238086" ], - "size": 287745, - "date_published": "2025-10-30T23:06:07.040Z" + "size": 415411, + "date_published": "2025-12-07T18:28:09.053Z" } ] }, @@ -4698,7 +4777,7 @@ "files": [ { "type": "modrinth", - "file_name": "diggerhelmet-1.20.1-1.0.0.24.jar", + "file_name": "diggerhelmet-1.20.1-1.0.0.25.jar", "mc_versions": [ "1.20.1" ], @@ -4707,46 +4786,46 @@ "neoforge" ], "release_type": "beta", - "url": "https://cdn.modrinth.com/data/8Aatj9Zy/versions/LOYb1iLX/diggerhelmet-1.20.1-1.0.0.24.jar", - "id": "LOYb1iLX", + "url": "https://cdn.modrinth.com/data/8Aatj9Zy/versions/T1mIzBuf/diggerhelmet-1.20.1-1.0.0.25.jar", + "id": "T1mIzBuf", "parent_id": "8Aatj9Zy", "hashes": { - "sha512": "042d2aaf48c2af72d401d1aaf961162545def9217b38e0fb52ff2d6879efd54af9320d499caa0cc1175ecc0442099486c1504d59337c10359feaed0960eb66c0", - "sha1": "3faf8dcea2520a247d983dcb16ad43ab1e495bf4" + "sha512": "471e84a1fa896565e65619645d78945ebafff246661fbc851ec84a18f2bb575a75a31cea381544125ce36530fc486570e07b47f813fb063f71339238964bf8d6", + "sha1": "8c49656e74daa66fd8e1c9170fab72493aaa21dd" }, "required_dependencies": [ + "JaCEZUhg", "vvuO3ImH", - "8BmcQJ2H", - "JaCEZUhg" + "8BmcQJ2H" ], - "size": 211958, - "date_published": "2025-10-16T10:59:42.921213Z" + "size": 232711, + "date_published": "2025-10-26T03:39:53.401428Z" }, { "type": "curseforge", - "file_name": "diggerhelmet-1.20.1-1.0.0.25.jar", + "file_name": "diggerhelmet-1.20.1-1.0.0.26.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", - "forge" + "forge", + "neoforge" ], "release_type": "beta", - "url": "https://edge.forgecdn.net/files/7132/920/diggerhelmet-1.20.1-1.0.0.25.jar", - "id": "7132920", + "url": "https://edge.forgecdn.net/files/7290/228/diggerhelmet-1.20.1-1.0.0.26.jar", + "id": "7290228", "parent_id": "1243596", "hashes": { - "sha1": "8c49656e74daa66fd8e1c9170fab72493aaa21dd", - "md5": "7209f67f6e71313209e12d76313efc22" + "sha1": "3fe3d9911069db3c0d816bdbbed01193ba880087", + "md5": "cd1ea215f760b776c3bf48e93188de04" }, "required_dependencies": [ - "302973", "309927", - "388172" + "388172", + "302973" ], - "size": 232711, - "date_published": "2025-10-21T12:56:28.140Z" + "size": 233928, + "date_published": "2025-12-03T15:49:31.887Z" } ] }, @@ -4830,7 +4909,7 @@ "files": [ { "type": "curseforge", - "file_name": "domum_ornamentum-1.20.1-1.0.291-snapshot-universal.jar", + "file_name": "domum_ornamentum-1.20.1-1.0.294-snapshot-universal.jar", "mc_versions": [ "1.20.1" ], @@ -4838,16 +4917,16 @@ "forge" ], "release_type": "beta", - "url": "https://edge.forgecdn.net/files/6870/756/domum_ornamentum-1.20.1-1.0.291-snapshot-universal.jar", - "id": "6870756", + "url": "https://edge.forgecdn.net/files/7418/104/domum_ornamentum-1.20.1-1.0.294-snapshot-universal.jar", + "id": "7418104", "parent_id": "527361", "hashes": { - "sha1": "3544e2197b7c376fbc7650fff8502a7a3397357e", - "md5": "be5569eb31dda1579e968c9e8508bf0a" + "sha1": "e93b78cd1c036730dfa355248a31c3fef3f812a5", + "md5": "d48152d1459568771e9f40f262e0f424" }, "required_dependencies": [], - "size": 1140927, - "date_published": "2025-08-10T10:38:15.523Z" + "size": 1141311, + "date_published": "2026-01-04T19:54:08.390Z" } ] }, @@ -4872,33 +4951,9 @@ "modrinth": "v3CYg2V9" }, "files": [ - { - "type": "curseforge", - "file_name": "drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6412/211/drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", - "id": "6412211", - "parent_id": "511770", - "hashes": { - "sha1": "ea21436917b84780835b041cd27b7f86679dc6a1", - "md5": "a8cbcca4541cb6eb794ded4a10c57ac9" - }, - "required_dependencies": [ - "410295", - "367706" - ], - "size": 239365, - "date_published": "2025-04-11T20:29:43.010Z" - }, { "type": "modrinth", - "file_name": "drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", + "file_name": "drippyloadingscreen_forge_3.1.0_MC_1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -4906,19 +4961,43 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/v3CYg2V9/versions/SCbkqLQR/drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", - "id": "SCbkqLQR", + "url": "https://cdn.modrinth.com/data/v3CYg2V9/versions/68GEZSYA/drippyloadingscreen_forge_3.1.0_MC_1.20.1.jar", + "id": "68GEZSYA", "parent_id": "v3CYg2V9", "hashes": { - "sha512": "b253926f9faab8ae069bb6cf4a5380ff3cc04071d44216ebc8cd032f68a4ae760320a03059fe5fa2daf6563f6fa39e90fc659b6e64bae94079ae8e74ae8342d5", - "sha1": "ea21436917b84780835b041cd27b7f86679dc6a1" + "sha512": "a40bc04b995c5ff5ec5ab6e999925296c613213de0db301b5171d7379672b28050d961556d6e5d41396d5493bdcd20a74fbeefe40b29bf61d74a465f6c71d13d", + "sha1": "5c5e9dd39881b9b65dba7d7124690c51430a3ff1" }, "required_dependencies": [ - "J81TRJWm", - "Wq5SjeWM" + "Wq5SjeWM", + "J81TRJWm" ], - "size": 239365, - "date_published": "2025-04-11T20:29:48.819686Z" + "size": 285003, + "date_published": "2025-11-22T07:39:16.928909Z" + }, + { + "type": "curseforge", + "file_name": "drippyloadingscreen_forge_3.1.0_MC_1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7248/426/drippyloadingscreen_forge_3.1.0_MC_1.20.1.jar", + "id": "7248426", + "parent_id": "511770", + "hashes": { + "sha1": "5c5e9dd39881b9b65dba7d7124690c51430a3ff1", + "md5": "029b16e576071b67f3de0df7215a1062" + }, + "required_dependencies": [ + "367706", + "410295" + ], + "size": 285003, + "date_published": "2025-11-22T07:39:11.367Z" } ] }, @@ -5205,10 +5284,11 @@ "curseforge": "448233", "modrinth": "NNAgCjsB" }, + "redistributable": false, "files": [ { "type": "modrinth", - "file_name": "entityculling-forge-1.9.2-mc1.20.1.jar", + "file_name": "entityculling-forge-1.9.5-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -5216,20 +5296,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/NNAgCjsB/versions/yzFoumoH/entityculling-forge-1.9.2-mc1.20.1.jar", - "id": "yzFoumoH", + "url": "https://cdn.modrinth.com/data/NNAgCjsB/versions/ZqOeqW60/entityculling-forge-1.9.5-mc1.20.1.jar", + "id": "ZqOeqW60", "parent_id": "NNAgCjsB", "hashes": { - "sha512": "5c16156a6712d2234aa1933453398dee15ad2cce5f5aef62be764c502b166fbce468dc3418fead0e458ba8c914b37f4591b506a7eab4af1de6baa65dc370c994", - "sha1": "760530a1db027bf2cdea5760a6138a045ad11242" + "sha512": "f102a06dbe5f77d2b5737da4ed9484cdd6ab604a0e068245520247016b28c2936cef743038a2c7f3756ed0d07d140d6f21d0d1c47dea396e75e4a25165428a02", + "sha1": "524be2ed63e9f131a17393ead67cd3fddc97ca2b" }, "required_dependencies": [], - "size": 477372, - "date_published": "2025-10-19T13:25:36.590243Z" + "size": 1569588, + "date_published": "2025-12-30T15:26:02.452876Z" }, { "type": "curseforge", - "file_name": "entityculling-forge-1.9.2-mc1.20.1.jar", + "file_name": "entityculling-forge-1.9.5-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -5237,16 +5317,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7125/341/entityculling-forge-1.9.2-mc1.20.1.jar", - "id": "7125341", + "url": "https://edge.forgecdn.net/files/7396/677/entityculling-forge-1.9.5-mc1.20.1.jar", + "id": "7396677", "parent_id": "448233", "hashes": { - "sha1": "760530a1db027bf2cdea5760a6138a045ad11242", - "md5": "e756916c39c6cae945c321c3bb2ab0f9" + "sha1": "524be2ed63e9f131a17393ead67cd3fddc97ca2b", + "md5": "9de621a952ae3f73774bad91e6f4c718" }, "required_dependencies": [], - "size": 477372, - "date_published": "2025-10-19T13:25:35.733Z" + "size": 1569588, + "date_published": "2025-12-30T15:25:59.370Z" } ] }, @@ -5336,7 +5416,7 @@ "files": [ { "type": "modrinth", - "file_name": "everycomp-1.20-2.9.9-forge.jar", + "file_name": "everycomp-1.20-2.9.14-forge.jar", "mc_versions": [ "1.20.1" ], @@ -5344,22 +5424,22 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/eiktJyw1/versions/S6PhzmO8/everycomp-1.20-2.9.9-forge.jar", - "id": "S6PhzmO8", + "url": "https://cdn.modrinth.com/data/eiktJyw1/versions/1NKRJyBB/everycomp-1.20-2.9.14-forge.jar", + "id": "1NKRJyBB", "parent_id": "eiktJyw1", "hashes": { - "sha512": "cc4b0ddd47f421b1d045e755912c1118f5db60f2c699266576c4302162e753bc11537d8c5c31416f95566d5df42de3edfd781704df1108ba286dc6e3e40d856c", - "sha1": "666eb792088684bf576a71c20eb24f654abb51fa" + "sha512": "56f617e74b89c49856b950f9174c4e651f902b0059699f367d8b9735dd4b6b0929ea2eac45c499f00747bdf9fa1f7929bd64187e8481ff1a9032a4813cc11c7d", + "sha1": "c661fb5f32f9494d63515dff9c16dc567917ab04" }, "required_dependencies": [ "twkfQtEc" ], - "size": 2792770, - "date_published": "2025-10-26T21:32:31.262632Z" + "size": 2828402, + "date_published": "2026-01-05T08:47:37.217646Z" }, { "type": "curseforge", - "file_name": "everycomp-1.20-2.9.9-forge.jar", + "file_name": "everycomp-1.20-2.9.14-forge.jar", "mc_versions": [ "1.20.1" ], @@ -5367,18 +5447,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7153/995/everycomp-1.20-2.9.9-forge.jar", - "id": "7153995", + "url": "https://edge.forgecdn.net/files/7420/237/everycomp-1.20-2.9.14-forge.jar", + "id": "7420237", "parent_id": "628539", "hashes": { - "sha1": "666eb792088684bf576a71c20eb24f654abb51fa", - "md5": "39370d9743ad8a57f7d6121efaa9d769" + "sha1": "c661fb5f32f9494d63515dff9c16dc567917ab04", + "md5": "c01979322a7f53d29e5ed6245b03ac00" }, "required_dependencies": [ "499980" ], - "size": 2792770, - "date_published": "2025-10-26T21:32:18.910Z" + "size": 2828402, + "date_published": "2026-01-05T08:45:28.700Z" } ] }, @@ -5468,29 +5548,91 @@ "files": [ { "type": "curseforge", - "file_name": "ExtendedAE-1.20-1.4.8-forge.jar", + "file_name": "ExtendedAE-1.20-1.4.9-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7248/944/ExtendedAE-1.20-1.4.9-forge.jar", + "id": "7248944", + "parent_id": "892005", + "hashes": { + "sha1": "55a8c773659036176142242ded460a4b88ee6fb0", + "md5": "25b69893094daf52bd8b77964404bfdc" + }, + "required_dependencies": [ + "957920", + "223794", + "1173950" + ], + "size": 2672648, + "date_published": "2025-11-22T11:56:02.143Z" + } + ] + }, + { + "pakku_id": "IDxgtsYQmisT5W9r", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "extreme_sound_muffler", + "curseforge": "extreme-sound-muffler" + }, + "name": { + "modrinth": "Extreme sound muffler", + "curseforge": "Extreme sound muffler - (Neo)Forge" + }, + "id": { + "modrinth": "5IIKsxiL", + "curseforge": "363363" + }, + "export": false, + "files": [ + { + "type": "modrinth", + "file_name": "ExtremeSoundMuffler-3.49.2-forge-1.20.1.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7144/417/ExtendedAE-1.20-1.4.8-forge.jar", - "id": "7144417", - "parent_id": "892005", + "url": "https://cdn.modrinth.com/data/5IIKsxiL/versions/7daeCqUP/ExtremeSoundMuffler-3.49.2-forge-1.20.1.jar", + "id": "7daeCqUP", + "parent_id": "5IIKsxiL", "hashes": { - "sha1": "a21a3d004276fac47a7d0c18424f3583e7fab3c4", - "md5": "c8017c9e6e53c98c337cfc45d9a5153d" + "sha512": "5fb4ef6bdcf344dae3af9f39a8ce510ebb3fe5d928ce17ba3067bb1e034e3eeb953c0fd905fa4462c1eb6b0d075d84f9fbf734dfc3b31423a75054b30281518a", + "sha1": "3b73ae534ff7e4f9c65e78c1f868655a23ab90c7" }, - "required_dependencies": [ - "223794", - "1173950", - "957920" + "required_dependencies": [], + "size": 267751, + "date_published": "2025-12-23T21:58:19.811834Z" + }, + { + "type": "curseforge", + "file_name": "ExtremeSoundMuffler-3.49.2-forge-1.20.1.jar", + "mc_versions": [ + "1.20.1" ], - "size": 2667284, - "date_published": "2025-10-24T14:19:14.703Z" + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7371/8/ExtremeSoundMuffler-3.49.2-forge-1.20.1.jar", + "id": "7371008", + "parent_id": "363363", + "hashes": { + "sha1": "3b73ae534ff7e4f9c65e78c1f868655a23ab90c7", + "md5": "d03d1852c5a1701657af88f690ac5bb2" + }, + "required_dependencies": [], + "size": 267751, + "date_published": "2025-12-23T21:58:17.897Z" } ] }, @@ -5654,6 +5796,49 @@ } ] }, + { + "pakku_id": "WqKV4LDCkOlDGtOe", + "pakku_links": [ + "MxMrrOyyu2PvCSN8", + "tdBDW3xpPBc3E2mt" + ], + "type": "MOD", + "slug": { + "curseforge": "ftbxaerocompat" + }, + "name": { + "curseforge": "FTB Chunks x Xaero's Compat" + }, + "id": { + "curseforge": "1357724" + }, + "files": [ + { + "type": "curseforge", + "file_name": "ftbxaerocompat-forge-1.1.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7398/199/ftbxaerocompat-forge-1.1.1.jar", + "id": "7398199", + "parent_id": "1357724", + "hashes": { + "sha1": "c36353b31e1e613294609730d3e01bb49e0cf7bd", + "md5": "b6d9d2b2ffcba5fe09e29eb50861157c" + }, + "required_dependencies": [ + "314906", + "317780" + ], + "size": 735931, + "date_published": "2025-12-30T23:16:40.530Z" + } + ] + }, { "pakku_id": "wrtHnSj8GEjPjzsm", "type": "MOD", @@ -5757,7 +5942,7 @@ "files": [ { "type": "curseforge", - "file_name": "ftb-library-forge-2001.2.10.jar", + "file_name": "ftb-library-forge-2001.2.12.jar", "mc_versions": [ "1.20.1" ], @@ -5765,18 +5950,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6807/424/ftb-library-forge-2001.2.10.jar", - "id": "6807424", + "url": "https://edge.forgecdn.net/files/7296/748/ftb-library-forge-2001.2.12.jar", + "id": "7296748", "parent_id": "404465", "hashes": { - "sha1": "9472bb30d0e38cb774b9cc7852bdd8dbf845622b", - "md5": "ae5292127a5a0d85d793bbce8f1e24dd" + "sha1": "7f36ec4af42ad1d69872c58022e93a9d1b9c82b7", + "md5": "8bbd067159587d80f1c5286ea52e567b" }, "required_dependencies": [ "419699" ], - "size": 791875, - "date_published": "2025-07-24T16:54:08.133Z" + "size": 780523, + "date_published": "2025-12-05T12:02:22.023Z" } ] }, @@ -5792,7 +5977,7 @@ "curseforge": "ftb-quests-forge" }, "name": { - "curseforge": "FTB Quests (Forge)" + "curseforge": "FTB Quests (NeoForge)" }, "id": { "curseforge": "289412" @@ -5801,7 +5986,7 @@ "files": [ { "type": "curseforge", - "file_name": "ftb-quests-forge-2001.4.14.jar", + "file_name": "ftb-quests-forge-2001.4.17.jar", "mc_versions": [ "1.20.1" ], @@ -5809,20 +5994,20 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6829/212/ftb-quests-forge-2001.4.14.jar", - "id": "6829212", + "url": "https://edge.forgecdn.net/files/7260/736/ftb-quests-forge-2001.4.17.jar", + "id": "7260736", "parent_id": "289412", "hashes": { - "sha1": "479d9ad654984f5cedf23c14a311f3cff4efbcb7", - "md5": "a02b8885bc618a54f41885ddb24e2d8f" + "sha1": "f7e4fec8991ce2b036ed4628e01fb48446a25ec7", + "md5": "35f79e8e8b0849d6038cd4cd9c86b08a" }, "required_dependencies": [ - "419699", + "404468", "404465", - "404468" + "419699" ], - "size": 1222711, - "date_published": "2025-07-30T15:39:30.857Z" + "size": 1227820, + "date_published": "2025-11-25T11:37:06.847Z" } ] }, @@ -5981,33 +6166,9 @@ "modrinth": "Wq5SjeWM" }, "files": [ - { - "type": "curseforge", - "file_name": "fancymenu_forge_3.7.0_MC_1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6918/987/fancymenu_forge_3.7.0_MC_1.20.1.jar", - "id": "6918987", - "parent_id": "367706", - "hashes": { - "sha1": "f33a40f7d33585e781d90d00d156178e369ae8ed", - "md5": "365e76a8d99085a1ac942c2b46125508" - }, - "required_dependencies": [ - "410295", - "938643" - ], - "size": 3628603, - "date_published": "2025-08-23T14:52:56.903Z" - }, { "type": "modrinth", - "file_name": "fancymenu_forge_3.7.0_MC_1.20.1.jar", + "file_name": "fancymenu_forge_3.8.1_MC_1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -6015,19 +6176,43 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/Wq5SjeWM/versions/MbyfTTsz/fancymenu_forge_3.7.0_MC_1.20.1.jar", - "id": "MbyfTTsz", + "url": "https://cdn.modrinth.com/data/Wq5SjeWM/versions/MywA2BxT/fancymenu_forge_3.8.1_MC_1.20.1.jar", + "id": "MywA2BxT", "parent_id": "Wq5SjeWM", "hashes": { - "sha512": "00579685f38e30eaeaf2ab01c23ea72b53ef03245e46be35297e0955383e070a92983ec5ca2043592fcf34213d3cf9ae8e82165187da7d3b32d84b65c9d054fa", - "sha1": "f33a40f7d33585e781d90d00d156178e369ae8ed" + "sha512": "71aca039cd5eb81f7a169df32473465e6bbd13f88b703de68475298f5dbf76bc85787ecd6b786a049cb7e6bf2426dac254424abd15c1900d9d520276f7d63ad9", + "sha1": "1fef1d8ab0dc2dec116bc6d6cb6f789fd33b23b0" }, "required_dependencies": [ - "CVT4pFB2", - "J81TRJWm" + "J81TRJWm", + "CVT4pFB2" ], - "size": 3628603, - "date_published": "2025-08-23T14:53:05.096476Z" + "size": 4472193, + "date_published": "2025-11-24T08:24:19.760480Z" + }, + { + "type": "curseforge", + "file_name": "fancymenu_forge_3.8.1_MC_1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7256/735/fancymenu_forge_3.8.1_MC_1.20.1.jar", + "id": "7256735", + "parent_id": "367706", + "hashes": { + "sha1": "1fef1d8ab0dc2dec116bc6d6cb6f789fd33b23b0", + "md5": "bf41a4251d431d92b89b6c91f84d5546" + }, + "required_dependencies": [ + "938643", + "410295" + ], + "size": 4472193, + "date_published": "2025-11-24T08:24:12.380Z" } ] }, @@ -6048,34 +6233,9 @@ "modrinth": "9mtu0sUO" }, "files": [ - { - "type": "curseforge", - "file_name": "fast-ip-ping-v1.0.7-mc1.20.4-forge.jar", - "mc_versions": [ - "1.20.2", - "1.20.3", - "1.20.1", - "1.20", - "1.20.4" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6666/671/fast-ip-ping-v1.0.7-mc1.20.4-forge.jar", - "id": "6666671", - "parent_id": "904356", - "hashes": { - "sha1": "253d21fd87657e6dc1e451c9758f5daaa71b86c8", - "md5": "d1e81c87cc785a956f5972a3b0d2e7f2" - }, - "required_dependencies": [], - "size": 10557, - "date_published": "2025-06-18T15:25:05.557Z" - }, { "type": "modrinth", - "file_name": "fast-ip-ping-v1.0.7-mc1.20.4-forge.jar", + "file_name": "fast-ip-ping-v1.0.8-mc1.20.4-forge.jar", "mc_versions": [ "1.20", "1.20.1", @@ -6087,16 +6247,41 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/9mtu0sUO/versions/W1Wnmkqh/fast-ip-ping-v1.0.7-mc1.20.4-forge.jar", - "id": "W1Wnmkqh", + "url": "https://cdn.modrinth.com/data/9mtu0sUO/versions/1Psj7GtQ/fast-ip-ping-v1.0.8-mc1.20.4-forge.jar", + "id": "1Psj7GtQ", "parent_id": "9mtu0sUO", "hashes": { - "sha512": "5223cd922b4f32faf8e6263976d39ead51e12dc332a16eacfddd11196872609b1d905673ab707f38d62f5d3f9c243dc51bb62bf3f8179d15a006c616feb48be8", - "sha1": "253d21fd87657e6dc1e451c9758f5daaa71b86c8" + "sha512": "4c016afaf112b8664529a419f1188d2a4211d41a8a4fe1420d6b679eb134d5c1085e53e06f83ec7a0686c8faf5f59c2c3c0d7c321ed868f075731d7681cfb313", + "sha1": "ceeeae222c51ae100e5126c4a5a7a05f4f3f4712" }, "required_dependencies": [], - "size": 10557, - "date_published": "2025-06-18T15:27:06.998981Z" + "size": 10331, + "date_published": "2025-12-10T19:52:27.401005Z" + }, + { + "type": "curseforge", + "file_name": "fast-ip-ping-v1.0.8-mc1.20.4-forge.jar", + "mc_versions": [ + "1.20.2", + "1.20.1", + "1.20", + "1.20.4", + "1.20.3" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7317/271/fast-ip-ping-v1.0.8-mc1.20.4-forge.jar", + "id": "7317271", + "parent_id": "904356", + "hashes": { + "sha1": "ceeeae222c51ae100e5126c4a5a7a05f4f3f4712", + "md5": "cc7cb94b42e4da21a1010f906d0e149a" + }, + "required_dependencies": [], + "size": 10331, + "date_published": "2025-12-10T19:52:26.030Z" } ] }, @@ -6246,67 +6431,6 @@ } ] }, - { - "pakku_id": "FK2QzZI92jWrsNbH", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "figura", - "modrinth": "figura" - }, - "name": { - "curseforge": "Figura", - "modrinth": "Figura" - }, - "id": { - "curseforge": "901503", - "modrinth": "s9gIPDom" - }, - "files": [ - { - "type": "curseforge", - "file_name": "figura-0.1.5+1.20.1-forge-mc.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6204/468/figura-0.1.5+1.20.1-forge-mc.jar", - "id": "6204468", - "parent_id": "901503", - "hashes": { - "sha1": "7388a40f4c86c1af73c452b2eaf92893205c3dec", - "md5": "9a14ac7b2c6dea0085570fe4bb7a4b69" - }, - "required_dependencies": [], - "size": 2338069, - "date_published": "2025-02-17T21:02:17.827Z" - }, - { - "type": "modrinth", - "file_name": "figura-0.1.5+1.20.1-forge-mc.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/s9gIPDom/versions/4HqSmvZ6/figura-0.1.5+1.20.1-forge-mc.jar", - "id": "4HqSmvZ6", - "parent_id": "s9gIPDom", - "hashes": { - "sha512": "d4d683d1901ad198b690eb074e732da06f35769ccdd1d9c54c3818d0cb91134920d6ace7addbb0059b651a95a1adb0cf70ad6102b6c091c49ad57c6b58f0d953", - "sha1": "7388a40f4c86c1af73c452b2eaf92893205c3dec" - }, - "required_dependencies": [], - "size": 2338069, - "date_published": "2025-02-17T20:07:16.316406Z" - } - ] - }, { "pakku_id": "wB80dFAavvcZ8n4R", "pakku_links": [ @@ -6467,7 +6591,7 @@ "files": [ { "type": "modrinth", - "file_name": "Firmalife-1.20.1-2.1.23.jar", + "file_name": "Firmalife-1.20.1-2.1.26.jar", "mc_versions": [ "1.20.1" ], @@ -6476,42 +6600,42 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/5bKeBHw2/versions/t7KGvsmo/Firmalife-1.20.1-2.1.23.jar", - "id": "t7KGvsmo", + "url": "https://cdn.modrinth.com/data/5bKeBHw2/versions/owVJs9G8/Firmalife-1.20.1-2.1.26.jar", + "id": "owVJs9G8", "parent_id": "5bKeBHw2", "hashes": { - "sha512": "7c6f0d0489b97301a9fbeab1a738b73969fc720521c8feeaf1e3a0c7bf06687df0ee37a88a8cec5efe134c342809608683774d67169eaeb2eb6a6bf2c6d2b718", - "sha1": "71990d2b344d64f19558c40bf73454379282aad9" + "sha512": "049c2a69eb6364af0e925ee613fff85df2a9b0d3d035eed96351cca1abada7e395f0735ba7d523d0bac9ccfbd9d9bc50c8a977f38721a459341559280fbc2015", + "sha1": "679e75ed6d8180457f0593a1e3f9b0077a1dca9c" }, "required_dependencies": [ "JaCEZUhg" ], - "size": 4617231, - "date_published": "2025-09-12T23:10:39.190669Z" + "size": 4669647, + "date_published": "2025-12-31T14:44:50.567174Z" }, { "type": "curseforge", - "file_name": "Firmalife-1.20.1-2.1.23.jar", + "file_name": "Firmalife-1.20.1-2.1.26.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", - "forge" + "forge", + "neoforge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6990/927/Firmalife-1.20.1-2.1.23.jar", - "id": "6990927", + "url": "https://edge.forgecdn.net/files/7400/700/Firmalife-1.20.1-2.1.26.jar", + "id": "7400700", "parent_id": "453394", "hashes": { - "sha1": "71990d2b344d64f19558c40bf73454379282aad9", - "md5": "281054629313b958c0e343e8ed1507d5" + "sha1": "679e75ed6d8180457f0593a1e3f9b0077a1dca9c", + "md5": "8ca3fc3c054741d0d6cc6e1b2070efaa" }, "required_dependencies": [ "302973" ], - "size": 4617231, - "date_published": "2025-09-12T23:10:35.550Z" + "size": 4669647, + "date_published": "2025-12-31T14:44:46.977Z" } ] }, @@ -6579,74 +6703,6 @@ } ] }, - { - "pakku_id": "4eLmoncRndGZ31Aw", - "pakku_links": [ - "wVdOHntcjzm4u9R2" - ], - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "forgematica", - "modrinth": "forgematica" - }, - "name": { - "curseforge": "Forgematica", - "modrinth": "Forgematica" - }, - "id": { - "curseforge": "912441", - "modrinth": "dCKRaeBC" - }, - "files": [ - { - "type": "curseforge", - "file_name": "Forgematica-0.1.13-mc1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6438/641/Forgematica-0.1.13-mc1.20.1.jar", - "id": "6438641", - "parent_id": "912441", - "hashes": { - "sha1": "d235d2ac0ce0143425d4d1e3d9a32d32fc994a93", - "md5": "8def10203e22c87e5820ecf2efd14184" - }, - "required_dependencies": [ - "910766" - ], - "size": 997501, - "date_published": "2025-04-19T03:57:24.323Z" - }, - { - "type": "modrinth", - "file_name": "Forgematica-0.1.13-mc1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/dCKRaeBC/versions/YncE2C0Y/Forgematica-0.1.13-mc1.20.1.jar", - "id": "YncE2C0Y", - "parent_id": "dCKRaeBC", - "hashes": { - "sha512": "1e2b1c38d825c2019d8d379d4436e5b5637f9ab460675e4de635d76d054ad5211909e5e74913a8240bdeff4546e9a7aa3f603ca84bc10988adaf1640015f7590", - "sha1": "d235d2ac0ce0143425d4d1e3d9a32d32fc994a93" - }, - "required_dependencies": [ - "SKI34J7B" - ], - "size": 997501, - "date_published": "2025-04-19T03:57:30.335816Z" - } - ] - }, { "pakku_id": "5SQ0czDAOB19jrY9", "type": "MOD", @@ -6664,31 +6720,9 @@ "modrinth": "wbgfS34j" }, "files": [ - { - "type": "curseforge", - "file_name": "FramedBlocks-9.4.2.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6685/443/FramedBlocks-9.4.2.jar", - "id": "6685443", - "parent_id": "441647", - "hashes": { - "sha1": "68b8301c8124dd00ea70c216066b1fe207e25345", - "md5": "aaf372a3d903d167c138e2eb8110078b" - }, - "required_dependencies": [], - "size": 4251277, - "date_published": "2025-06-23T01:59:51.940Z" - }, { "type": "modrinth", - "file_name": "FramedBlocks-9.4.2.jar", + "file_name": "FramedBlocks-9.4.3.jar", "mc_versions": [ "1.20.1" ], @@ -6697,16 +6731,38 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/wbgfS34j/versions/7rttes4D/FramedBlocks-9.4.2.jar", - "id": "7rttes4D", + "url": "https://cdn.modrinth.com/data/wbgfS34j/versions/lSiHA1qU/FramedBlocks-9.4.3.jar", + "id": "lSiHA1qU", "parent_id": "wbgfS34j", "hashes": { - "sha512": "51229b5b63a2b631682a0702a8525bdf54e53a1ecb6410331086073aa058040cde9724304cf29bce08583bebdd0c2eb6f103cd192fc10b2f246d19af05701fc5", - "sha1": "68b8301c8124dd00ea70c216066b1fe207e25345" + "sha512": "19a098bbf9ee7ee39f6b785bbce5f87b9dca58a491fa16eba2f38cfa106f37ee90c1ce56686a50adef8f5d3086e3c22a6127ed02bdf3f80d57297c8f7c1b49fc", + "sha1": "740c0feaab75455f32df7e137389f77c83fb490c" }, "required_dependencies": [], - "size": 4251277, - "date_published": "2025-06-23T02:00:24.225175Z" + "size": 4251314, + "date_published": "2025-12-28T01:00:09.136616Z" + }, + { + "type": "curseforge", + "file_name": "FramedBlocks-9.4.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7386/520/FramedBlocks-9.4.3.jar", + "id": "7386520", + "parent_id": "441647", + "hashes": { + "sha1": "740c0feaab75455f32df7e137389f77c83fb490c", + "md5": "9afefc077f00c192b0f953c2987c5a66" + }, + "required_dependencies": [], + "size": 4251314, + "date_published": "2025-12-28T00:58:18.240Z" } ] }, @@ -6804,33 +6860,9 @@ "modrinth": "hYykXjDp" }, "files": [ - { - "type": "curseforge", - "file_name": "fzzy_config-0.7.3+1.20.1+forge.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/7085/17/fzzy_config-0.7.3+1.20.1+forge.jar", - "id": "7085017", - "parent_id": "1005914", - "hashes": { - "sha1": "e771e543e930bd7c733f803bdbc0d3f2ecfb46c4", - "md5": "bcbfb7e94f16a15ad5d13fb4999a5b78" - }, - "required_dependencies": [ - "351264" - ], - "size": 2312969, - "date_published": "2025-10-09T02:39:14.310Z" - }, { "type": "modrinth", - "file_name": "fzzy_config-0.7.3+1.20.1+forge.jar", + "file_name": "fzzy_config-0.7.4+1.20.1+forge.jar", "mc_versions": [ "1.20.1" ], @@ -6839,18 +6871,42 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/hYykXjDp/versions/17Wzgyxp/fzzy_config-0.7.3+1.20.1+forge.jar", - "id": "17Wzgyxp", + "url": "https://cdn.modrinth.com/data/hYykXjDp/versions/wnhd0CI1/fzzy_config-0.7.4+1.20.1+forge.jar", + "id": "wnhd0CI1", "parent_id": "hYykXjDp", "hashes": { - "sha512": "32d44d05790f9ac9fb4d04385beefbd2d59822d48288239068ae1cc0c10d3b60567b388a0bcd4b98b4bf8716bd94b6a934596c1766f31e8788aa069e76bb178c", - "sha1": "e771e543e930bd7c733f803bdbc0d3f2ecfb46c4" + "sha512": "108f00ce546fd87ae2be853233bfe8f4deeb6abad6a61769a4ddf2735db098fd42d9b0a6ab1f98974717235e9fdf122767bdff82c042cd972cdbc14add039ebf", + "sha1": "b0213984f7591c3d1ec4ab5eebd87c605728d451" }, "required_dependencies": [ "ordsPcFz" ], - "size": 2312969, - "date_published": "2025-10-09T02:39:22.899396Z" + "size": 2353402, + "date_published": "2025-12-14T05:56:34.040088Z" + }, + { + "type": "curseforge", + "file_name": "fzzy_config-0.7.4+1.20.1+forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7331/237/fzzy_config-0.7.4+1.20.1+forge.jar", + "id": "7331237", + "parent_id": "1005914", + "hashes": { + "sha1": "b0213984f7591c3d1ec4ab5eebd87c605728d451", + "md5": "b6bcf0a1abc530257fcaa054157a8a16" + }, + "required_dependencies": [ + "351264" + ], + "size": 2353402, + "date_published": "2025-12-14T05:56:25.963Z" } ] }, @@ -6871,6 +6927,27 @@ "modrinth": "8BmcQJ2H" }, "files": [ + { + "type": "modrinth", + "file_name": "geckolib-forge-1.20.1-4.8.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/8BmcQJ2H/versions/aVW7Z5da/geckolib-forge-1.20.1-4.8.2.jar", + "id": "aVW7Z5da", + "parent_id": "8BmcQJ2H", + "hashes": { + "sha512": "8d8cb1f2d60c885b3b312aca63b94e3942e50ca40e96514f35fb74a39367afa07e4986640a66c66b035da9ea60cb6d8ff602e9c0b6b298e5ce584ad9f46a2f45", + "sha1": "395a9f21a36dc8466d67c2af67a904e7013460d1" + }, + "required_dependencies": [], + "size": 1038979, + "date_published": "2025-09-23T10:09:01.034935Z" + }, { "type": "curseforge", "file_name": "geckolib-forge-1.20.1-4.7.jar", @@ -6892,27 +6969,6 @@ "required_dependencies": [], "size": 1004042, "date_published": "2024-12-27T16:27:17.200Z" - }, - { - "type": "modrinth", - "file_name": "geckolib-forge-1.20.1-4.7.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/8BmcQJ2H/versions/LwI6czff/geckolib-forge-1.20.1-4.7.jar", - "id": "LwI6czff", - "parent_id": "8BmcQJ2H", - "hashes": { - "sha512": "4efd2d70533d73fc70012b0969bac9fb6035a4ebcc8b6ccb692321456bcc044da93a12b44392fca3c607889c134acd41db9e0fed376151a46d5391c56881a149", - "sha1": "451226923e02ac708b8fe59d75a2f9a28cc7e467" - }, - "required_dependencies": [], - "size": 1004043, - "date_published": "2024-12-27T16:27:02.907556Z" } ] }, @@ -7074,7 +7130,7 @@ "files": [ { "type": "modrinth", - "file_name": "greate-0.0.52.jar", + "file_name": "greate-0.0.61.jar", "mc_versions": [ "1.20.1" ], @@ -7083,44 +7139,44 @@ "neoforge" ], "release_type": "alpha", - "url": "https://cdn.modrinth.com/data/8wDcQuht/versions/pTqnXrIb/greate-0.0.52.jar", - "id": "pTqnXrIb", + "url": "https://cdn.modrinth.com/data/8wDcQuht/versions/bZDj2HqJ/greate-0.0.61.jar", + "id": "bZDj2HqJ", "parent_id": "8wDcQuht", "hashes": { - "sha512": "9a7383ead14d2e63b22b7b85ec731549a160c61b401d5b0a92b6d4449b68debd18e7ccb19fc129b3c91427f34c54617a87c6830a3d51abd085863f341a3b6b35", - "sha1": "1c1073b2fe05768a513f4d24450f8c2aea979e5e" + "sha512": "bfee9bf3bbaaf4f0027100008030d6cd69fb09fd6a352b644a910523e2bf53837123cd6221fc5606d670637584901693d278e27b7d1485b592a4b4650a15944d", + "sha1": "1ad889dbd2838045a2df194bfc757b9bae57d273" }, "required_dependencies": [ - "LNytGWDc", - "7tG215v7" + "7tG215v7", + "LNytGWDc" ], - "size": 1512543, - "date_published": "2025-09-30T03:55:11.946637Z" + "size": 1253065, + "date_published": "2026-01-01T21:21:45.604190Z" }, { "type": "curseforge", - "file_name": "greate-0.0.52.jar", + "file_name": "greate-0.0.61.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", - "forge" + "forge", + "neoforge" ], "release_type": "alpha", - "url": "https://edge.forgecdn.net/files/7047/589/greate-0.0.52.jar", - "id": "7047589", + "url": "https://edge.forgecdn.net/files/7405/523/greate-0.0.61.jar", + "id": "7405523", "parent_id": "901996", "hashes": { - "sha1": "1c1073b2fe05768a513f4d24450f8c2aea979e5e", - "md5": "cbbccd503dbe97e0dd9c9c98701a8076" + "sha1": "1ad889dbd2838045a2df194bfc757b9bae57d273", + "md5": "0446ffaa7cafa06d3148a1944a81b431" }, "required_dependencies": [ "890405", "328085" ], - "size": 1512543, - "date_published": "2025-09-30T03:55:09.973Z" + "size": 1253065, + "date_published": "2026-01-01T21:21:43.007Z" } ] }, @@ -7143,7 +7199,7 @@ "files": [ { "type": "modrinth", - "file_name": "gtceu-1.20.1-7.2.1.jar", + "file_name": "gtceu-1.20.1-7.4.0.jar", "mc_versions": [ "1.20.1" ], @@ -7151,20 +7207,20 @@ "forge" ], "release_type": "beta", - "url": "https://cdn.modrinth.com/data/7tG215v7/versions/bf5ztbzI/gtceu-1.20.1-7.2.1.jar", - "id": "bf5ztbzI", + "url": "https://cdn.modrinth.com/data/7tG215v7/versions/Wt20eol8/gtceu-1.20.1-7.4.0.jar", + "id": "Wt20eol8", "parent_id": "7tG215v7", "hashes": { - "sha512": "2a5c670d0a581035aac0d1abdcaeef275567bed1a85d72fda260ed46c76d6f7bdc4f18f2a763839d33a710583fb15c8701000500b5cf201470832a2ffc78c01d", - "sha1": "7f99b2e1f64696da30c829d38c0bab6f5f471c24" + "sha512": "2e850a957f6f5cdb350f07cfea64906d6731a74ec7655263c4588dd7b16ee582d6479dbd73733ffcb5388df3cf4d60a91285d7fb065c9021c6e02a22c4c59cf1", + "sha1": "19c638cb4913b0581da1e518771f41965f96932f" }, "required_dependencies": [], - "size": 17992116, - "date_published": "2025-10-26T06:03:09.219616Z" + "size": 18054871, + "date_published": "2025-11-25T20:33:56.058299Z" }, { "type": "curseforge", - "file_name": "gtceu-1.20.1-7.2.1.jar", + "file_name": "gtceu-1.20.1-7.4.0.jar", "mc_versions": [ "1.20.1" ], @@ -7172,16 +7228,57 @@ "forge" ], "release_type": "beta", - "url": "https://edge.forgecdn.net/files/7150/919/gtceu-1.20.1-7.2.1.jar", - "id": "7150919", + "url": "https://edge.forgecdn.net/files/7262/157/gtceu-1.20.1-7.4.0.jar", + "id": "7262157", "parent_id": "890405", "hashes": { - "sha1": "7f99b2e1f64696da30c829d38c0bab6f5f471c24", - "md5": "7e0d9355ef6281a2ed6603b8ead98588" + "sha1": "19c638cb4913b0581da1e518771f41965f96932f", + "md5": "a5e09409a38ef3ee43702b1aad20da9d" }, "required_dependencies": [], - "size": 17992116, - "date_published": "2025-10-26T06:02:29.950Z" + "size": 18054871, + "date_published": "2025-11-25T20:33:46.053Z" + } + ] + }, + { + "pakku_id": "QHcH7jVuZ4XwJ61j", + "pakku_links": [ + "WN9DdLqsRKVeZIc9" + ], + "type": "MOD", + "slug": { + "curseforge": "gregtech-molecule-drawings" + }, + "name": { + "curseforge": "GregTech Molecule Drawings" + }, + "id": { + "curseforge": "1348330" + }, + "files": [ + { + "type": "curseforge", + "file_name": "gtmoldraw-3.0.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7404/876/gtmoldraw-3.0.0.jar", + "id": "7404876", + "parent_id": "1348330", + "hashes": { + "sha1": "9377694e2e3d8c62bdacd400e125acc732c54803", + "md5": "e6d36dbc5383b0649bbfa76a829c6170" + }, + "required_dependencies": [ + "890405" + ], + "size": 907581, + "date_published": "2026-01-01T18:19:59.917Z" } ] }, @@ -7369,70 +7466,6 @@ } ] }, - { - "pakku_id": "Bs1dwtrOCWieNIOp", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "hold-my-items-reforged", - "modrinth": "hold-my-items-reforged" - }, - "name": { - "curseforge": "Hold My Items - Reforged", - "modrinth": "Hold My Items - Reforged" - }, - "id": { - "curseforge": "1246920", - "modrinth": "VPPMiyrF" - }, - "files": [ - { - "type": "curseforge", - "file_name": "holdmyitems-1.20.1v2.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6608/415/holdmyitems-1.20.1v2.1.jar", - "id": "6608415", - "parent_id": "1246920", - "hashes": { - "sha1": "d020896a07f1d40847389addc1b49ec1cf941305", - "md5": "49e4a479951c50540f4dcef56f26126b" - }, - "required_dependencies": [], - "size": 330100, - "date_published": "2025-06-02T16:00:04.473Z" - }, - { - "type": "modrinth", - "file_name": "holdmyitems-1.20.1-4v2.0.jar", - "mc_versions": [ - "1.20.1", - "1.20.2", - "1.20.3", - "1.20.4" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/VPPMiyrF/versions/TBHht5Nt/holdmyitems-1.20.1-4v2.0.jar", - "id": "TBHht5Nt", - "parent_id": "VPPMiyrF", - "hashes": { - "sha512": "8df3605419d55fb7c15dcd885c9fdb4a3648ddf2a2f54c70e1d521a1fe553d50d5303c014cc61a0be15c4676e2e33f690dd0b3c186bd1b45ebdda472f05f378e", - "sha1": "a7d8354adb258be8d57c344a40dd1873647868ea" - }, - "required_dependencies": [], - "size": 100362, - "date_published": "2025-05-31T18:18:47.694596Z" - } - ] - }, { "pakku_id": "tc7AIGQtKog7l0AS", "type": "MOD", @@ -7494,6 +7527,74 @@ } ] }, + { + "pakku_id": "s6Jr0kJU14wGbx5U", + "pakku_links": [ + "64uacGcEw697jVGs" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "ihearttfc", + "modrinth": "ihearttfc" + }, + "name": { + "curseforge": "I ❀ TFC (I Heart TFC)", + "modrinth": "I ❀ TFC (I Heart TFC)" + }, + "id": { + "curseforge": "1118578", + "modrinth": "XjM4YE3F" + }, + "files": [ + { + "type": "curseforge", + "file_name": "ihearttfc-1.20.1-1.0.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5901/425/ihearttfc-1.20.1-1.0.2.jar", + "id": "5901425", + "parent_id": "1118578", + "hashes": { + "sha1": "bc2d8febd3ddb7f5a0da5c840544ad49eb6e8625", + "md5": "efcf3b790437b54d1993aa064674354c" + }, + "required_dependencies": [], + "size": 103491, + "date_published": "2024-11-14T01:23:08.710Z" + }, + { + "type": "modrinth", + "file_name": "ihearttfc-1.20.1-1.0.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/XjM4YE3F/versions/ZX9aSizu/ihearttfc-1.20.1-1.0.2.jar", + "id": "ZX9aSizu", + "parent_id": "XjM4YE3F", + "hashes": { + "sha512": "09747d4a3932970d765cebc4d981f518d8939a035078b45f28286241dfe7ed19246d12d0d48a2a8422f0d6ac0832f89efdfb5e861e74b665456fb84eb6713157", + "sha1": "bc2d8febd3ddb7f5a0da5c840544ad49eb6e8625" + }, + "required_dependencies": [ + "JaCEZUhg" + ], + "size": 103491, + "date_published": "2024-11-14T01:25:07.688102Z" + } + ] + }, { "pakku_id": "xahPtsrvcLFX70mD", "type": "RESOURCE_PACK", @@ -7572,7 +7673,7 @@ "files": [ { "type": "modrinth", - "file_name": "ImmediatelyFast-Forge-1.5.2+1.20.4.jar", + "file_name": "ImmediatelyFast-Forge-1.5.3+1.20.4.jar", "mc_versions": [ "1.20", "1.20.1", @@ -7584,41 +7685,41 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/5ZwdcRci/versions/aFMmx5Ig/ImmediatelyFast-Forge-1.5.2+1.20.4.jar", - "id": "aFMmx5Ig", + "url": "https://cdn.modrinth.com/data/5ZwdcRci/versions/a4stvpj6/ImmediatelyFast-Forge-1.5.3+1.20.4.jar", + "id": "a4stvpj6", "parent_id": "5ZwdcRci", "hashes": { - "sha512": "648cd5c451f8e5b4c7404179b75d4044aa14501c832a38e09877de74902e2ce3156af1cb936c91b48cd6210d1e576f0808142ca24a0d291990fdf245ff2da993", - "sha1": "2eeca5deb063ed49bb9c6be8b162ca6270202239" + "sha512": "ef57ecc7aa7138c1b06fac6d6b49707d6ef324b6220cd604f567cfdbabd5b9ca0e76a2a4ed354d08029976c773f40c65b7692372a3f70637d7ae446be2b3ace0", + "sha1": "d4695d013e9da7089e2906db3f56bc5398e478e2" }, "required_dependencies": [], - "size": 425140, - "date_published": "2025-09-14T19:20:09.156785Z" + "size": 426980, + "date_published": "2025-12-09T20:19:33.206344Z" }, { "type": "curseforge", - "file_name": "ImmediatelyFast-Forge-1.5.2+1.20.4.jar", + "file_name": "ImmediatelyFast-Forge-1.5.3+1.20.4.jar", "mc_versions": [ "1.20.2", - "1.20.3", "1.20.1", "1.20", - "1.20.4" + "1.20.4", + "1.20.3" ], "loaders": [ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6997/261/ImmediatelyFast-Forge-1.5.2+1.20.4.jar", - "id": "6997261", + "url": "https://edge.forgecdn.net/files/7313/94/ImmediatelyFast-Forge-1.5.3+1.20.4.jar", + "id": "7313094", "parent_id": "686911", "hashes": { - "sha1": "2eeca5deb063ed49bb9c6be8b162ca6270202239", - "md5": "a9497bda5f3fd160c248d4a8d4499e15" + "sha1": "d4695d013e9da7089e2906db3f56bc5398e478e2", + "md5": "1e5278b2585bab1db76d4b1ab61e82c1" }, "required_dependencies": [], - "size": 425140, - "date_published": "2025-09-14T19:20:08.770Z" + "size": 426980, + "date_published": "2025-12-09T20:19:33.393Z" } ] }, @@ -7823,44 +7924,82 @@ "files": [ { "type": "modrinth", - "file_name": "[1.18.2-1.20.1-1.21.1_ver_0.05]_Improved_Create_32x.zip", + "file_name": "[1.20.1_ver_0.06.1]_Improved_Create_32x.zip", "mc_versions": [ - "1.18.2", - "1.20.1", - "1.21.1" + "1.20", + "1.20.1" ], "loaders": [ "minecraft" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/ZyLGK5YD/versions/WIzHUaPB/[1.18.2-1.20.1-1.21.1_ver_0.05]_Improved_Create_32x.zip", - "id": "WIzHUaPB", + "url": "https://cdn.modrinth.com/data/ZyLGK5YD/versions/YcF3Jaah/[1.20.1_ver_0.06.1]_Improved_Create_32x.zip", + "id": "YcF3Jaah", "parent_id": "ZyLGK5YD", "hashes": { - "sha512": "7eb708a41e73a9c83bff005bcec2830594697d66cdbc4bb04d22e7c5013dc8d57f64a71ce355f77961309c3785eb3e145a9f2cace158c9a25849ba668a4235e0", - "sha1": "f3db3254d67ccb2a725df1d5ddc3729ef700c932" + "sha512": "5f23be27610562fcc3824f84aa4212a0af9d576b4500bb36ad362ee336fc35d80cd992fd20853477d1d24549a60d0531650b1c206c6e0781e19e68960fbe50ac", + "sha1": "bbb13393f052cee815db4a9908e5d30696f604dc" }, "required_dependencies": [], - "size": 7542322, - "date_published": "2025-09-22T15:23:01.988905Z" + "size": 12615396, + "date_published": "2025-12-27T08:18:58.690542Z" }, { "type": "curseforge", - "file_name": "[1.18.2-1.20.1-1.21.1_ver_0.05]_Improved_Create_32x.zip", + "file_name": "[1.20.1_ver_0.06.1]_Improved_Create_32x.zip", "mc_versions": [ "1.20.1" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7022/585/[1.18.2-1.20.1-1.21.1_ver_0.05]_Improved_Create_32x.zip", - "id": "7022585", + "url": "https://edge.forgecdn.net/files/7383/828/[1.20.1_ver_0.06.1]_Improved_Create_32x.zip", + "id": "7383828", "parent_id": "973588", "hashes": { - "sha1": "f3db3254d67ccb2a725df1d5ddc3729ef700c932", - "md5": "589525b651d24fa8aea5e33bb9f1b72f" + "sha1": "bbb13393f052cee815db4a9908e5d30696f604dc", + "md5": "17eeab5d55dc08e2d01658f85d0cd8f9" }, "required_dependencies": [], - "size": 7542322, - "date_published": "2025-09-22T15:23:11.737Z" + "size": 12615396, + "date_published": "2025-12-27T08:19:03.583Z" + } + ] + }, + { + "pakku_id": "tBWBoSoDoXnODeqL", + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "inventory-hud-forge" + }, + "name": { + "curseforge": "Inventory HUD+" + }, + "id": { + "curseforge": "357540" + }, + "files": [ + { + "type": "curseforge", + "file_name": "inventoryhud.forge.1.20.1-3.4.26.jar", + "mc_versions": [ + "1.20.1", + "1.20" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5639/966/inventoryhud.forge.1.20.1-3.4.26.jar", + "id": "5639966", + "parent_id": "357540", + "hashes": { + "sha1": "f0adda10a3d6549e6dfdffd41e72270c61c8a302", + "md5": "e1d1380697c2417cfaf6fdd42982a4d0" + }, + "required_dependencies": [], + "size": 238088, + "date_published": "2024-08-18T09:52:06.760Z" } ] }, @@ -8211,35 +8350,9 @@ "modrinth": "ordsPcFz" }, "files": [ - { - "type": "curseforge", - "file_name": "kotlinforforge-4.11.0-all.jar", - "mc_versions": [ - "1.20.2", - "1.20.3", - "1.20.1", - "1.20", - "1.20.4" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/5402/61/kotlinforforge-4.11.0-all.jar", - "id": "5402061", - "parent_id": "351264", - "hashes": { - "sha1": "1fd8acfd75a2be2dc3cdcc7e816482b2e427d6e5", - "md5": "417caa90d17dc86cf7d24b802c2a5c56" - }, - "required_dependencies": [], - "size": 7193768, - "date_published": "2024-06-05T23:45:43.380Z" - }, { "type": "modrinth", - "file_name": "kotlinforforge-4.11.0-all.jar", + "file_name": "kotlinforforge-4.12.0-all.jar", "mc_versions": [ "1.19.3", "1.19.4", @@ -8254,16 +8367,42 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/ordsPcFz/versions/hmeyC41q/kotlinforforge-4.11.0-all.jar", - "id": "hmeyC41q", + "url": "https://cdn.modrinth.com/data/ordsPcFz/versions/Zsh14XeQ/kotlinforforge-4.12.0-all.jar", + "id": "Zsh14XeQ", "parent_id": "ordsPcFz", "hashes": { - "sha512": "d72707078f0c4fde78981c638ca976722f22a64ce74bdb489258790fe9886d763a7b1e0dfbc5429ddd3105d8a65d177f06242dfb1457e219e56c70dd3e8cbf2c", - "sha1": "1fd8acfd75a2be2dc3cdcc7e816482b2e427d6e5" + "sha512": "767f40030ed4b370a3838fa65ae1b79974f31979342fff7cc834a0d5f39eb28612642519352ff2a1dd5226ce1f745f8b3156ee3625ffde01219137d064c1ee40", + "sha1": "962fdb760409d6d71cbf079235f1ca94e3863a22" }, "required_dependencies": [], - "size": 7193768, - "date_published": "2024-06-06T01:10:20.253226Z" + "size": 7442998, + "date_published": "2025-12-03T19:48:01.561702Z" + }, + { + "type": "curseforge", + "file_name": "kotlinforforge-4.12.0-all.jar", + "mc_versions": [ + "1.20.2", + "1.20.1", + "1.20", + "1.20.4", + "1.20.3" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7291/67/kotlinforforge-4.12.0-all.jar", + "id": "7291067", + "parent_id": "351264", + "hashes": { + "sha1": "962fdb760409d6d71cbf079235f1ca94e3863a22", + "md5": "d6a40dede74edbe646b34a1bafd53b4d" + }, + "required_dependencies": [], + "size": 7442998, + "date_published": "2025-12-03T19:47:08.457Z" } ] }, @@ -8651,7 +8790,7 @@ ] }, { - "pakku_id": "OcjL6nfubOOv2SoV", + "pakku_id": "JAFcKq70FbrHc0oK", "type": "MOD", "side": "SERVER", "slug": { @@ -8715,68 +8854,6 @@ } ] }, - { - "pakku_id": "y79wzWEFOVt377hz", - "type": "MOD", - "side": "SERVER", - "slug": { - "curseforge": "localized-chat", - "modrinth": "localized-chat" - }, - "name": { - "curseforge": "Localized Chat", - "modrinth": "Localized Chat" - }, - "id": { - "curseforge": "292502", - "modrinth": "c8zyAYHe" - }, - "redistributable": false, - "files": [ - { - "type": "curseforge", - "file_name": "LocalizedChat-forge-1.20.1-5.1.3.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6461/035/LocalizedChat-forge-1.20.1-5.1.3.jar", - "id": "6461035", - "parent_id": "292502", - "hashes": { - "sha1": "4b7be0537e42b4bcd1126c82e4fb539c9ce7464a", - "md5": "664bdf8d663b708eaf9a9a23e36fbe1d" - }, - "required_dependencies": [], - "size": 23894, - "date_published": "2025-04-24T22:39:50Z" - }, - { - "type": "modrinth", - "file_name": "LocalizedChat-forge-1.20.1-5.1.3.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/c8zyAYHe/versions/LfjtlQdo/LocalizedChat-forge-1.20.1-5.1.3.jar", - "id": "LfjtlQdo", - "parent_id": "c8zyAYHe", - "hashes": { - "sha512": "2bb5161290127fd25279aa5d3f44a434d976466a6679602ae6e42f89f678e33419d9df4a70b54cae46ef0867ff9078f8762fd0acb1261d602aa2f40bc46fe36d", - "sha1": "4b7be0537e42b4bcd1126c82e4fb539c9ce7464a" - }, - "required_dependencies": [], - "size": 23894, - "date_published": "2025-04-24T22:44:26.520715Z" - } - ] - }, { "pakku_id": "znIzfNElWkwpdz2V", "type": "MOD", @@ -8921,7 +8998,7 @@ "files": [ { "type": "modrinth", - "file_name": "lootr-forge-1.20-0.7.35.93.jar", + "file_name": "lootr-forge-1.20-0.7.35.94.jar", "mc_versions": [ "1.20", "1.20.1" @@ -8930,20 +9007,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/EltpO5cN/versions/pvIQeqjt/lootr-forge-1.20-0.7.35.93.jar", - "id": "pvIQeqjt", + "url": "https://cdn.modrinth.com/data/EltpO5cN/versions/mWTXC1ZX/lootr-forge-1.20-0.7.35.94.jar", + "id": "mWTXC1ZX", "parent_id": "EltpO5cN", "hashes": { - "sha512": "5080f9a48e4dfa9854de5f21584dba62e75bdb064bab3974c7a427072435740d04e63c548ff27eda0fc30d163c26595034833e6703edb8ca54a3994c06ae53fb", - "sha1": "a109f9d34f39af38a394a58fc506583eb078704d" + "sha512": "a04c6371376bfdac2b10cbb2bb9af7ded10ac26faaeb252b59aab2f02c2b2064c2c4ab665fb6ea218243e89d6f237d878c6951638bb948edead2c0a604dd023a", + "sha1": "1ec77a7df8adbf3290a296bf25b8f99f37a60020" }, "required_dependencies": [], - "size": 460882, - "date_published": "2025-09-04T02:32:15.399196Z" + "size": 463485, + "date_published": "2025-11-26T03:16:17.725541Z" }, { "type": "curseforge", - "file_name": "lootr-forge-1.20-0.7.35.93.jar", + "file_name": "lootr-forge-1.20-0.7.35.94.jar", "mc_versions": [ "1.20.1", "1.20" @@ -8952,16 +9029,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6961/345/lootr-forge-1.20-0.7.35.93.jar", - "id": "6961345", + "url": "https://edge.forgecdn.net/files/7263/76/lootr-forge-1.20-0.7.35.94.jar", + "id": "7263076", "parent_id": "361276", "hashes": { - "sha1": "a109f9d34f39af38a394a58fc506583eb078704d", - "md5": "2d5374b809d9ec1d7700a194b2fd0dd5" + "sha1": "1ec77a7df8adbf3290a296bf25b8f99f37a60020", + "md5": "56dd6966de4ba641cf00ef5b9ce8d2d7" }, "required_dependencies": [], - "size": 460882, - "date_published": "2025-09-04T02:28:45.837Z" + "size": 463485, + "date_published": "2025-11-26T03:14:51.900Z" } ] }, @@ -9104,71 +9181,6 @@ } ] }, - { - "pakku_id": "wVdOHntcjzm4u9R2", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "mafglib", - "modrinth": "mafglib" - }, - "name": { - "curseforge": "MaFgLib", - "modrinth": "MaFgLib" - }, - "id": { - "curseforge": "910766", - "modrinth": "SKI34J7B" - }, - "files": [ - { - "type": "curseforge", - "file_name": "MaFgLib-0.1.14-mc1.20.1.jar", - "mc_versions": [ - "1.20.1", - "1.20" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6763/273/MaFgLib-0.1.14-mc1.20.1.jar", - "id": "6763273", - "parent_id": "910766", - "hashes": { - "sha1": "fd18a3d8a9a72ee27cbb709a88c061b2347d2244", - "md5": "739a08ec65e3c5cdd5bfc64adc90947d" - }, - "required_dependencies": [], - "size": 521709, - "date_published": "2025-07-13T10:16:40.107Z" - }, - { - "type": "modrinth", - "file_name": "MaFgLib-0.1.14-mc1.20.1.jar", - "mc_versions": [ - "1.20", - "1.20.1" - ], - "loaders": [ - "forge", - "neoforge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/SKI34J7B/versions/adXONMb5/MaFgLib-0.1.14-mc1.20.1.jar", - "id": "adXONMb5", - "parent_id": "SKI34J7B", - "hashes": { - "sha512": "ae4cc220f47843fe40c2352c3fa96cc03429a244c76a4d02259d88c807f4e95897630731cdbaf8ea6e2dcc3f4a944a8214ed52a3834435466793471448c982ec", - "sha1": "fd18a3d8a9a72ee27cbb709a88c061b2347d2244" - }, - "required_dependencies": [], - "size": 521709, - "date_published": "2025-07-13T10:16:44.510137Z" - } - ] - }, { "pakku_id": "vcsfO8voRVsKqbxv", "type": "MOD", @@ -9381,7 +9393,7 @@ "files": [ { "type": "modrinth", - "file_name": "modernfix-forge-5.24.4+mc1.20.1.jar", + "file_name": "modernfix-forge-5.25.2+mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -9389,20 +9401,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/nmDcB62a/versions/CixO1IdG/modernfix-forge-5.24.4+mc1.20.1.jar", - "id": "CixO1IdG", + "url": "https://cdn.modrinth.com/data/nmDcB62a/versions/scXW7F8Q/modernfix-forge-5.25.2+mc1.20.1.jar", + "id": "scXW7F8Q", "parent_id": "nmDcB62a", "hashes": { - "sha512": "8feb0282084196571489b6c1005c32ce4a3f03a6bff05c2cfe448677e4e36d6580f5f0eb428ef839de1dd9c307bfbd15567fd508fb405d2ae7eaec90796e9b14", - "sha1": "daeccb1fbe1d67d426fcc8135cfff463ff0f7e1d" + "sha512": "016940bd76b36865f507c07fc7834ea7dc6f7a6c0016aebf6375ee05a9405f2730e07c555ab8ce920775fce3b5a29ff5b638b67f29c03458074650478d37242a", + "sha1": "4069534174e618393f0c14d9dc61ac27a04bb992" }, "required_dependencies": [], - "size": 880557, - "date_published": "2025-08-01T23:00:08.205986Z" + "size": 895444, + "date_published": "2025-12-08T02:42:23.149141Z" }, { "type": "curseforge", - "file_name": "modernfix-forge-5.24.4+mc1.20.1.jar", + "file_name": "modernfix-forge-5.25.2+mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -9410,16 +9422,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6837/713/modernfix-forge-5.24.4+mc1.20.1.jar", - "id": "6837713", + "url": "https://edge.forgecdn.net/files/7306/749/modernfix-forge-5.25.2+mc1.20.1.jar", + "id": "7306749", "parent_id": "790626", "hashes": { - "sha1": "daeccb1fbe1d67d426fcc8135cfff463ff0f7e1d", - "md5": "1d729a283f14fdbf1021ff4f0c88b0ec" + "sha1": "4069534174e618393f0c14d9dc61ac27a04bb992", + "md5": "893b2aba13f35bd7ed3fdad2ca15a4d4" }, "required_dependencies": [], - "size": 880557, - "date_published": "2025-08-01T23:00:04.740Z" + "size": 895444, + "date_published": "2025-12-08T02:42:18.980Z" } ] }, @@ -9440,27 +9452,6 @@ "modrinth": "efD07SBK" }, "files": [ - { - "type": "curseforge", - "file_name": "ags_modernmarkings-0.4.3-1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6768/454/ags_modernmarkings-0.4.3-1.20.1.jar", - "id": "6768454", - "parent_id": "1267477", - "hashes": { - "sha1": "45d788e6a37c3bdcf5a235caa6a43694cb09e8b4", - "md5": "04d0df2ac6d6ccda0683771c8112256f" - }, - "required_dependencies": [], - "size": 305660, - "date_published": "2025-07-14T16:27:45.340Z" - }, { "type": "modrinth", "file_name": "ags_modernmarkings-0.4.3-1.20.1.jar", @@ -9481,6 +9472,27 @@ "required_dependencies": [], "size": 305660, "date_published": "2025-07-14T16:28:57.389265Z" + }, + { + "type": "curseforge", + "file_name": "ags_modernmarkings-0.4.4-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7339/889/ags_modernmarkings-0.4.4-1.20.1.jar", + "id": "7339889", + "parent_id": "1267477", + "hashes": { + "sha1": "8102920535de97d06c4c7b05a39f44dd237a13f3", + "md5": "0f577579897a88bb2244634dc64a8e7d" + }, + "required_dependencies": [], + "size": 307489, + "date_published": "2025-12-16T10:02:13.160Z" } ] }, @@ -9503,7 +9515,7 @@ "files": [ { "type": "modrinth", - "file_name": "moonlight-1.20-2.16.15-forge.jar", + "file_name": "moonlight-1.20-2.16.19-forge.jar", "mc_versions": [ "1.20.1" ], @@ -9512,38 +9524,38 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/twkfQtEc/versions/q6pVkPDR/moonlight-1.20-2.16.15-forge.jar", - "id": "q6pVkPDR", + "url": "https://cdn.modrinth.com/data/twkfQtEc/versions/ZBeK8kT5/moonlight-1.20-2.16.19-forge.jar", + "id": "ZBeK8kT5", "parent_id": "twkfQtEc", "hashes": { - "sha512": "9eba41fa2bef4558bfe7a3a31b0b3ae2484eba87a2f6feda6d4e0c18d9074b08bb0a5637446a9df2a87171a27bb84af703a716cfc0f49fab2882da4ffdf2a76c", - "sha1": "5b87fafe107c93754765b0490fbf0250df520b6e" + "sha512": "d687d18d8796c9bb1bfa8f6cbf08a41594c96ecbf5bd97253d59d5f2fbd15841c63cf159dc89a7157c8e71058d88f15b2f03beef5fe7bcd672e4d9eed84d3cf8", + "sha1": "de55e348bdf3a3ac7520fde157654d615967f9b1" }, "required_dependencies": [], - "size": 1333278, - "date_published": "2025-10-18T08:20:19.294910Z" + "size": 1354950, + "date_published": "2025-12-28T12:21:11.913916Z" }, { "type": "curseforge", - "file_name": "moonlight-1.20-2.16.15-forge.jar", + "file_name": "moonlight-1.20-2.16.19-forge.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", - "forge" + "forge", + "neoforge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7119/907/moonlight-1.20-2.16.15-forge.jar", - "id": "7119907", + "url": "https://edge.forgecdn.net/files/7388/296/moonlight-1.20-2.16.19-forge.jar", + "id": "7388296", "parent_id": "499980", "hashes": { - "sha1": "5b87fafe107c93754765b0490fbf0250df520b6e", - "md5": "9530dafa3d58016165594559e8013eb0" + "sha1": "de55e348bdf3a3ac7520fde157654d615967f9b1", + "md5": "bfa3f531468e3c0cef07edbad1a4fbc9" }, "required_dependencies": [], - "size": 1333278, - "date_published": "2025-10-18T08:20:03.677Z" + "size": 1354950, + "date_published": "2025-12-28T12:21:00.210Z" } ] }, @@ -9977,71 +9989,6 @@ } ] }, - { - "pakku_id": "srNw1bVsXfQKp9OA", - "type": "MOD", - "side": "SERVER", - "slug": { - "curseforge": "noisium", - "modrinth": "noisium" - }, - "name": { - "curseforge": "Noisium", - "modrinth": "Noisium" - }, - "id": { - "curseforge": "930207", - "modrinth": "KuNKN7d2" - }, - "files": [ - { - "type": "curseforge", - "file_name": "noisium-forge-2.3.0+mc1.20-1.20.1.jar", - "mc_versions": [ - "1.20.1", - "1.20" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/5650/506/noisium-forge-2.3.0+mc1.20-1.20.1.jar", - "id": "5650506", - "parent_id": "930207", - "hashes": { - "sha1": "7da1cdf00c0ae5cad31e17f765f6ea021c8ac808", - "md5": "3a8e9a24408c991b3fb97685884f2cce" - }, - "required_dependencies": [], - "size": 218152, - "date_published": "2024-08-21T17:24:11.600Z" - }, - { - "type": "modrinth", - "file_name": "noisium-forge-2.3.0+mc1.20-1.20.1.jar", - "mc_versions": [ - "1.20", - "1.20.1" - ], - "loaders": [ - "forge", - "neoforge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/KuNKN7d2/versions/gbYUKrDP/noisium-forge-2.3.0+mc1.20-1.20.1.jar", - "id": "gbYUKrDP", - "parent_id": "KuNKN7d2", - "hashes": { - "sha512": "5bc43bc1b748edcd63d074a8bb14d393d986c51e1933e1f38cd7a2dd2fd70dba5a46a6415f46d4a52c68e7e1e9ce101e54376ad04273df958608e2fdb43db502", - "sha1": "7da1cdf00c0ae5cad31e17f765f6ea021c8ac808" - }, - "required_dependencies": [], - "size": 218152, - "date_published": "2024-08-21T17:24:14.967570Z" - } - ] - }, { "pakku_id": "rZMUz1QjgqD53x3s", "type": "MOD", @@ -10061,7 +10008,7 @@ "files": [ { "type": "modrinth", - "file_name": "notenoughanimations-forge-1.10.6-mc1.20.1.jar", + "file_name": "notenoughanimations-forge-1.11.1-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -10069,20 +10016,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/MPCX6s5C/versions/7KhtEU40/notenoughanimations-forge-1.10.6-mc1.20.1.jar", - "id": "7KhtEU40", + "url": "https://cdn.modrinth.com/data/MPCX6s5C/versions/cfiRPrQF/notenoughanimations-forge-1.11.1-mc1.20.1.jar", + "id": "cfiRPrQF", "parent_id": "MPCX6s5C", "hashes": { - "sha512": "d6c3322b260fdf7ad5e06c5340593b84df601ee638b2195712e31834936c4d8a96b3afb4f9a673163bea20283a01c1ef6c186ebc6b5e3bb83b966bba79945b7a", - "sha1": "408c8497c263c03edfe432549ef08dc48c6230ed" + "sha512": "9335ace46a9f6477df026f19cab08c656fc7c0a7f1069eedfdadbba01bfd2ad43f9e90a0bb5ef8e867d51608dddcf85fa9653eb178f4a0e6e6bcfb45d0959270", + "sha1": "9aa8917d7c0a5311dc495da3c720434de49e0e24" }, "required_dependencies": [], - "size": 843250, - "date_published": "2025-10-20T12:41:37.262065Z" + "size": 1933839, + "date_published": "2025-12-12T19:11:52.494096Z" }, { "type": "curseforge", - "file_name": "notenoughanimations-forge-1.10.6-mc1.20.1.jar", + "file_name": "notenoughanimations-forge-1.11.1-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -10090,16 +10037,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7129/302/notenoughanimations-forge-1.10.6-mc1.20.1.jar", - "id": "7129302", + "url": "https://edge.forgecdn.net/files/7325/366/notenoughanimations-forge-1.11.1-mc1.20.1.jar", + "id": "7325366", "parent_id": "433760", "hashes": { - "sha1": "408c8497c263c03edfe432549ef08dc48c6230ed", - "md5": "228f7b821bb9e475e1ec38868da56f65" + "sha1": "9aa8917d7c0a5311dc495da3c720434de49e0e24", + "md5": "34fd79756da8b5278a5b0905d98ffeca" }, "required_dependencies": [], - "size": 843250, - "date_published": "2025-10-20T12:41:36.527Z" + "size": 1933839, + "date_published": "2025-12-12T19:11:51.067Z" } ] }, @@ -10321,7 +10268,7 @@ "files": [ { "type": "modrinth", - "file_name": "packetfixer-3.3.0-1.18-1.20.4-merged.jar", + "file_name": "packetfixer-3.3.1-1.18-1.20.4-merged.jar", "mc_versions": [ "1.18", "1.18.1", @@ -10344,44 +10291,44 @@ "quilt" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/c7m1mi73/versions/Jt7R7s5s/packetfixer-3.3.0-1.18-1.20.4-merged.jar", - "id": "Jt7R7s5s", + "url": "https://cdn.modrinth.com/data/c7m1mi73/versions/96y8nmkX/packetfixer-3.3.1-1.18-1.20.4-merged.jar", + "id": "96y8nmkX", "parent_id": "c7m1mi73", "hashes": { - "sha512": "0f86b9b03672e67e5eac23146bfc56a536f8985daecaec3bf089ee489240b5afec1571c733fc058c335fdd9e8ace94796c257e4c59a33be7cf1dcba32009c2a1", - "sha1": "e07b58008aeae90d61c5324c740cbbd66bbb34e3" + "sha512": "e098addf143dafa9e516ad07cb0ddaa489035e19c306e6f78b0afef6f776ce27d2386f2ede1879bb477e420ca8a00831f099f1a92a508e3085a45fbb87103405", + "sha1": "0bef29023c8cadb2934d78a8b0066b49d4460974" }, "required_dependencies": [], - "size": 190422, - "date_published": "2025-08-29T08:29:49.302535Z" + "size": 188673, + "date_published": "2025-11-14T17:34:13.517155Z" }, { "type": "curseforge", - "file_name": "packetfixer-3.3.0-1.18-1.20.4-merged.jar", + "file_name": "packetfixer-3.3.1-1.18-1.20.4-merged.jar", "mc_versions": [ "1.20.2", - "1.20.3", "1.20.1", "1.20", - "1.20.4" + "1.20.4", + "1.20.3" ], "loaders": [ "fabric", - "neoforge", "forge", + "neoforge", "quilt" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6940/439/packetfixer-3.3.0-1.18-1.20.4-merged.jar", - "id": "6940439", + "url": "https://edge.forgecdn.net/files/7221/527/packetfixer-3.3.1-1.18-1.20.4-merged.jar", + "id": "7221527", "parent_id": "689467", "hashes": { - "sha1": "e07b58008aeae90d61c5324c740cbbd66bbb34e3", - "md5": "75045a749fde88dc20972e34bb815f29" + "sha1": "0bef29023c8cadb2934d78a8b0066b49d4460974", + "md5": "da8492dc74813d847ba128c23253c376" }, "required_dependencies": [], - "size": 190422, - "date_published": "2025-08-29T08:31:50.963Z" + "size": 188673, + "date_published": "2025-11-14T17:30:18.777Z" } ] }, @@ -10612,76 +10559,6 @@ } ] }, - { - "pakku_id": "O2TlNN3MwF9isOBc", - "pakku_links": [ - "ScveDDpCjKro99ki" - ], - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "particle-rain", - "modrinth": "particle-rain" - }, - "name": { - "curseforge": "Particle Rain", - "modrinth": "Particle Rain" - }, - "id": { - "curseforge": "421897", - "modrinth": "nrikgvxm" - }, - "files": [ - { - "type": "curseforge", - "file_name": "particlerain-4.0.0-beta.3+1.20.1-forge.jar", - "mc_versions": [ - "1.20.1", - "1.20" - ], - "loaders": [ - "forge" - ], - "release_type": "beta", - "url": "https://edge.forgecdn.net/files/7134/900/particlerain-4.0.0-beta.3+1.20.1-forge.jar", - "id": "7134900", - "parent_id": "421897", - "hashes": { - "sha1": "f0cb2f9f008e8c03c4bbff2906588ed1d415a875", - "md5": "d7185cd6133b862c9b00161df6b6a6d9" - }, - "required_dependencies": [ - "667299" - ], - "size": 774930, - "date_published": "2025-10-21T22:58:52.727Z" - }, - { - "type": "modrinth", - "file_name": "particlerain-4.0.0-beta.3+1.20.1-forge.jar", - "mc_versions": [ - "1.20", - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "beta", - "url": "https://cdn.modrinth.com/data/nrikgvxm/versions/aFwRYRIm/particlerain-4.0.0-beta.3+1.20.1-forge.jar", - "id": "aFwRYRIm", - "parent_id": "nrikgvxm", - "hashes": { - "sha512": "cc2ba8e15d5fc17fbf59233b44eb2a4103a6987d30f0acb42163b66d0a348f68f6d1e92fd03ca5bd37580a3b84ad11a3b12b3946cb235f81915a7e8e25955b1c", - "sha1": "f0cb2f9f008e8c03c4bbff2906588ed1d415a875" - }, - "required_dependencies": [ - "1eAoo2KR" - ], - "size": 774930, - "date_published": "2025-10-21T22:58:55.329275Z" - } - ] - }, { "pakku_id": "AfNhg2HRX2s0NTis", "type": "MOD", @@ -10909,6 +10786,73 @@ } ] }, + { + "pakku_id": "7N9O2rPIAVKoRYOH", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "playerrevive", + "modrinth": "playerrevive" + }, + "name": { + "curseforge": "PlayerRevive", + "modrinth": "PlayerRevive" + }, + "id": { + "curseforge": "266890", + "modrinth": "ABIMzABM" + }, + "files": [ + { + "type": "curseforge", + "file_name": "PlayerRevive_FORGE_v2.0.31_mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6048/921/PlayerRevive_FORGE_v2.0.31_mc1.20.1.jar", + "id": "6048921", + "parent_id": "266890", + "hashes": { + "sha1": "84c039f20b8f048c835c429c2c4a9fd82a5e65f6", + "md5": "e07fc42680a0163c99c21cfa9afb9816" + }, + "required_dependencies": [ + "257814" + ], + "size": 5298162, + "date_published": "2025-01-03T12:43:44.657Z" + }, + { + "type": "modrinth", + "file_name": "PlayerRevive_FORGE_v2.0.31_mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ABIMzABM/versions/fUdn8MeF/PlayerRevive_FORGE_v2.0.31_mc1.20.1.jar", + "id": "fUdn8MeF", + "parent_id": "ABIMzABM", + "hashes": { + "sha512": "26ec9d4f4ff24a3e708f5485e40149214df76734af90848429bc7cedf397230a8e7b8b11aa21f11e50ea2987c862f09186ecd1b55b7ded31c5c99d661ede686a", + "sha1": "84c039f20b8f048c835c429c2c4a9fd82a5e65f6" + }, + "required_dependencies": [ + "OsZiaDHq" + ], + "size": 5298162, + "date_published": "2025-01-03T12:43:40.830979Z" + } + ] + }, { "pakku_id": "e7thBe1Z6fvyxUtU", "type": "MOD", @@ -10995,8 +10939,8 @@ }, "files": [ { - "type": "curseforge", - "file_name": "primitive creatures V2.2 1.20.1 .jar", + "type": "modrinth", + "file_name": "primitive_creatures_2.7forge1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -11004,39 +10948,39 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7000/784/primitive creatures V2.2 1.20.1 .jar", - "id": "7000784", + "url": "https://cdn.modrinth.com/data/GfUwaZEm/versions/y7oCH4pT/primitive_creatures_2.7forge1.20.1.jar", + "id": "y7oCH4pT", + "parent_id": "GfUwaZEm", + "hashes": { + "sha512": "09ed9ac29baa8ccd0449d953747458254b2f17baa0a2526a9ed55f8199225d6ebd642813d53dc938c3b18b2cbb5dd112912cd02ea709d71c4da23ca83b5bbb59", + "sha1": "f2fb38516941ac4193282af35bc2182ca98b17f5" + }, + "required_dependencies": [], + "size": 526919, + "date_published": "2025-12-02T21:13:23.239833Z" + }, + { + "type": "curseforge", + "file_name": "primitive_creatures_2.7forge1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7287/434/primitive_creatures_2.7forge1.20.1.jar", + "id": "7287434", "parent_id": "1218288", "hashes": { - "sha1": "f76bde1ecf37c7111859ebb02cdef978ec370191", - "md5": "9cc3392503d06d05fe2d5fe22a64e6cf" + "sha1": "f2fb38516941ac4193282af35bc2182ca98b17f5", + "md5": "5848f8db0bc1a95133c10ff6c7dc2513" }, "required_dependencies": [ "388172" ], - "size": 525102, - "date_published": "2025-09-15T19:44:19.663Z" - }, - { - "type": "modrinth", - "file_name": "primitive creatures V2.0.4 1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/GfUwaZEm/versions/WS4cl75O/primitive creatures V2.0.4 1.20.1.jar", - "id": "WS4cl75O", - "parent_id": "GfUwaZEm", - "hashes": { - "sha512": "24066d5ac2ce72e86a8bbf11d4e860d681cc67faec01621bb368160d636c1e2121803530c3f46e829a85b4419d16fc0a4715896d11c6101f5e8ffad5a664cd6a", - "sha1": "939d37037cc19b15aa8581afa513a724268858b1" - }, - "required_dependencies": [], - "size": 501549, - "date_published": "2025-08-22T19:33:48.426929Z" + "size": 526919, + "date_published": "2025-12-02T22:23:27.723Z" } ] }, @@ -11085,22 +11029,26 @@ ] }, { - "pakku_id": "GX8CbYd9zCIZJ93L", + "pakku_id": "X7XUoJD0pdG30oYo", "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "prototype-pain" + "curseforge": "prototype-pain", + "modrinth": "prototype-pain" }, "name": { - "curseforge": "Prototype: Pain" + "curseforge": "Prototype: Pain", + "modrinth": "Prototype: Pain" }, "id": { - "curseforge": "1333811" + "curseforge": "1333811", + "modrinth": "QeKaRNPZ" }, "redistributable": false, "files": [ { "type": "curseforge", - "file_name": "prototype_pain-2.6.5.jar", + "file_name": "prototype_pain-2.7.2.jar", "mc_versions": [ "1.20.1" ], @@ -11108,21 +11056,42 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7247/290/prototype_pain-2.6.5.jar", - "id": "7247290", + "url": "https://edge.forgecdn.net/files/7393/939/prototype_pain-2.7.2.jar", + "id": "7393939", "parent_id": "1333811", "hashes": { - "sha1": "a099e4f78849b7bbbfcd0e2110a452ce819b81c2", - "md5": "a32254fb7fad4a93a19208428e4aabba" + "sha1": "ede92a198e558c0ae19e7edee31ee131f2b75997", + "md5": "f0453e89ce4403294e2041a61ca9d726" }, "required_dependencies": [], - "size": 7101756, - "date_published": "2025-11-21T22:00:01.723Z" + "size": 7211017, + "date_published": "2025-12-29T20:27:52.460Z" + }, + { + "type": "modrinth", + "file_name": "prototype_pain-2.7.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/QeKaRNPZ/versions/HektAbor/prototype_pain-2.7.2.jar", + "id": "HektAbor", + "parent_id": "QeKaRNPZ", + "hashes": { + "sha512": "9a2de66c5a10ad1c0f2ffa94efd66f5ae05d4711772724205f29a2afcb2885bd3ca790fd5957d06b07d51e6700ef7c2d7a516c8aebbbc93f9ba86e6ed407f585", + "sha1": "ede92a198e558c0ae19e7edee31ee131f2b75997" + }, + "required_dependencies": [], + "size": 7211017, + "date_published": "2025-12-29T20:28:06.898071Z" } ] }, { - "pakku_id": "fuGDwrT99om3ARff", + "pakku_id": "fN75Az4Zp4XdEK1T", "type": "MOD", "slug": { "curseforge": "prototype-physics" @@ -11441,7 +11410,8 @@ { "pakku_id": "Onv7E6XLSsx0NE2o", "pakku_links": [ - "64uacGcEw697jVGs" + "64uacGcEw697jVGs", + "8jcmjuoMhFDsALTg" ], "type": "MOD", "side": "BOTH", @@ -11458,34 +11428,9 @@ "modrinth": "ca9X1Phr" }, "files": [ - { - "type": "curseforge", - "file_name": "rnr-0.2.1-1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/5852/507/rnr-0.2.1-1.20.1.jar", - "id": "5852507", - "parent_id": "1048212", - "hashes": { - "sha1": "046e086b2d4861fbc74bbeb18031102d09622197", - "md5": "451fe8a1c496f44d20d73bfb4cb51a57" - }, - "required_dependencies": [ - "306770", - "302973" - ], - "size": 3557362, - "date_published": "2024-10-27T23:10:58.567Z" - }, { "type": "modrinth", - "file_name": "rnr-0.2.1-1.20.1.jar", + "file_name": "rnr-0.2.2-1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -11494,19 +11439,45 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/ca9X1Phr/versions/msv0XMkD/rnr-0.2.1-1.20.1.jar", - "id": "msv0XMkD", + "url": "https://cdn.modrinth.com/data/ca9X1Phr/versions/quVtWEPo/rnr-0.2.2-1.20.1.jar", + "id": "quVtWEPo", "parent_id": "ca9X1Phr", "hashes": { - "sha512": "e0f7b50c0da47f449fe03427859a1a33d0b8bef59a676b7ac88f518c99a0a6f02b255b576716c0d5d3a7810bd48e8cc9d74d4f9ed8e519485949c6e2ff8e469a", - "sha1": "046e086b2d4861fbc74bbeb18031102d09622197" + "sha512": "abf0dfbf5bc201c75a688bdcd6232e038fc5d5c9f540ec7057b0ea42455655233059c91ce5e63fc17a7a0422960740abcc02079f181e27e39a5b4dee16e72c91", + "sha1": "ab28d720eb0094bd40c37726199831f4f60b4299" }, "required_dependencies": [ - "nU0bVIaL", - "JaCEZUhg" + "JaCEZUhg", + "1VSGxqkt", + "nU0bVIaL" ], - "size": 3557362, - "date_published": "2024-10-27T23:13:57.176874Z" + "size": 3568839, + "date_published": "2025-12-16T05:13:25.666668Z" + }, + { + "type": "curseforge", + "file_name": "rnr-0.2.2-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7339/318/rnr-0.2.2-1.20.1.jar", + "id": "7339318", + "parent_id": "1048212", + "hashes": { + "sha1": "ab28d720eb0094bd40c37726199831f4f60b4299", + "md5": "82c946ea6261a82d60290f93d91a12cd" + }, + "required_dependencies": [ + "302973", + "306770" + ], + "size": 3568839, + "date_published": "2025-12-16T05:14:29.893Z" } ] }, @@ -11703,69 +11674,6 @@ } ] }, - { - "pakku_id": "z0O35G9R0QKhBCb9", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "shoulder-surfing-reloaded", - "modrinth": "shoulder-surfing-reloaded" - }, - "name": { - "curseforge": "Shoulder Surfing Reloaded", - "modrinth": "Shoulder Surfing Reloaded" - }, - "id": { - "curseforge": "243190", - "modrinth": "kepjj2sy" - }, - "files": [ - { - "type": "curseforge", - "file_name": "ShoulderSurfing-Forge-1.20.1-4.14.3.jar", - "mc_versions": [ - "1.20.1", - "1.20" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6993/788/ShoulderSurfing-Forge-1.20.1-4.14.3.jar", - "id": "6993788", - "parent_id": "243190", - "hashes": { - "sha1": "d339a53fe242d8befc7af48cab26ea71c9cb18b9", - "md5": "a3efd5821b0797dbcdfbeabebfcd0b95" - }, - "required_dependencies": [], - "size": 242896, - "date_published": "2025-09-13T19:46:30.803Z" - }, - { - "type": "modrinth", - "file_name": "ShoulderSurfing-Forge-1.20.1-4.14.3.jar", - "mc_versions": [ - "1.20", - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/kepjj2sy/versions/J38UPdFA/ShoulderSurfing-Forge-1.20.1-4.14.3.jar", - "id": "J38UPdFA", - "parent_id": "kepjj2sy", - "hashes": { - "sha512": "a1eb9f397b459acdf8216f46c1b3605d501ad43923b8a48a0db4eb5ed992fa55fd582d199b2fe570299c29548fbb6ff0a90a4d0a74a45f6a0013ecc29d97bfe3", - "sha1": "d339a53fe242d8befc7af48cab26ea71c9cb18b9" - }, - "required_dependencies": [], - "size": 242896, - "date_published": "2025-09-13T19:46:21.874642Z" - } - ] - }, { "pakku_id": "pLkDut7s59n6uQin", "type": "MOD", @@ -12193,7 +12101,7 @@ "files": [ { "type": "modrinth", - "file_name": "sophisticatedbackpacks-1.20.1-3.23.23.1285.jar", + "file_name": "sophisticatedbackpacks-1.20.1-3.24.12.1411.jar", "mc_versions": [ "1.20.1" ], @@ -12202,22 +12110,22 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/TyCTlI4b/versions/pHEQ4KzD/sophisticatedbackpacks-1.20.1-3.23.23.1285.jar", - "id": "pHEQ4KzD", + "url": "https://cdn.modrinth.com/data/TyCTlI4b/versions/ePNVFnS7/sophisticatedbackpacks-1.20.1-3.24.12.1411.jar", + "id": "ePNVFnS7", "parent_id": "TyCTlI4b", "hashes": { - "sha512": "c49b904fe0db57924df2e53f99115899ac0f6768725f654e758c8481cd695db55a44c7a71a2c79a0448a39067de5b19986377749d86a89bdaaebb79fea1e658f", - "sha1": "f3b47c5ce13cca89cab9f937a07e1a9502e27fdb" + "sha512": "880d192072c5ef2683fcdd65cfaa0ab1c53c2dacf2194f5d1f4f616bc482ac554bc8968e8fae016234a021c25831915d8b5f6bf17af4a670a3611ca43bcd2f31", + "sha1": "c6624f4719cfa8c15ef87860570a2748afd715da" }, "required_dependencies": [ "nmoqTijg" ], - "size": 930758, - "date_published": "2025-07-19T19:19:00.802910Z" + "size": 973366, + "date_published": "2025-10-31T10:20:39.100246Z" }, { "type": "curseforge", - "file_name": "sophisticatedbackpacks-1.20.1-3.23.23.1285.jar", + "file_name": "sophisticatedbackpacks-1.20.1-3.24.12.1411.jar", "mc_versions": [ "1.20.1" ], @@ -12226,18 +12134,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6788/668/sophisticatedbackpacks-1.20.1-3.23.23.1285.jar", - "id": "6788668", + "url": "https://edge.forgecdn.net/files/7169/843/sophisticatedbackpacks-1.20.1-3.24.12.1411.jar", + "id": "7169843", "parent_id": "422301", "hashes": { - "sha1": "e0fa977420774eb50ad4ab3e9dee16bf5d79b627", - "md5": "0bb94b3bb5d4df97bca7c593cbc2abb8" + "sha1": "6fcdb6e2fc18e24cd0e65fe57961310dd2443bd9", + "md5": "a2d81606c31421d45aa3518e5471f154" }, "required_dependencies": [ "618298" ], - "size": 930758, - "date_published": "2025-07-19T19:18:44.143Z" + "size": 973366, + "date_published": "2025-10-31T10:20:22.040Z" } ] }, @@ -12260,7 +12168,7 @@ "files": [ { "type": "modrinth", - "file_name": "sophisticatedcore-1.20.1-1.2.78.1052.jar", + "file_name": "sophisticatedcore-1.20.1-1.2.107.1240.jar", "mc_versions": [ "1.20.1" ], @@ -12269,20 +12177,20 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/nmoqTijg/versions/hvAbUDQp/sophisticatedcore-1.20.1-1.2.78.1052.jar", - "id": "hvAbUDQp", + "url": "https://cdn.modrinth.com/data/nmoqTijg/versions/qpP3IdRu/sophisticatedcore-1.20.1-1.2.107.1240.jar", + "id": "qpP3IdRu", "parent_id": "nmoqTijg", "hashes": { - "sha512": "f5661cb0db3013cb970c3287d8d628de98d8cca21d46356c5198cb88af903a68aab6041cf8c8460c0a501ed523d7186869106a8a9c669a96d51c8fd1db0bb3d0", - "sha1": "fbfebafec1de249a2e8c02f9d2d289a0c4df6690" + "sha512": "64402513db4d8285732795c72712aff2944b14e91f0cce866472702622e20a65d7e9cb67988dab77383dd6a9639ae693ee43916cb5380ca5c74d309b3e50c1d8", + "sha1": "a0a8e69b482e18bc82404c57f868db06d827ffca" }, "required_dependencies": [], - "size": 1334327, - "date_published": "2025-07-27T13:23:22.968294Z" + "size": 1438965, + "date_published": "2025-10-31T05:57:49.898960Z" }, { "type": "curseforge", - "file_name": "sophisticatedcore-1.20.1-1.2.78.1052.jar", + "file_name": "sophisticatedcore-1.20.1-1.2.107.1240.jar", "mc_versions": [ "1.20.1" ], @@ -12291,16 +12199,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6817/409/sophisticatedcore-1.20.1-1.2.78.1052.jar", - "id": "6817409", + "url": "https://edge.forgecdn.net/files/7169/400/sophisticatedcore-1.20.1-1.2.107.1240.jar", + "id": "7169400", "parent_id": "618298", "hashes": { - "sha1": "a854d7bb990f2ed960cc39e74f0a5e92e4f03747", - "md5": "2e44d4484ab623276362e076c6dec66b" + "sha1": "bd25a3a9d1b4a6e25b4087b58c0cd3a9564a78a7", + "md5": "fbc7db24a060b7cbe715013b071d604f" }, "required_dependencies": [], - "size": 1334328, - "date_published": "2025-07-27T13:23:07.270Z" + "size": 1438965, + "date_published": "2025-10-31T05:57:33.977Z" } ] }, @@ -12359,7 +12267,7 @@ "files": [ { "type": "modrinth", - "file_name": "sound-physics-remastered-forge-1.20.1-1.4.15.jar", + "file_name": "sound-physics-remastered-forge-1.20.1-1.5.1.jar", "mc_versions": [ "1.20.1" ], @@ -12367,20 +12275,20 @@ "forge" ], "release_type": "alpha", - "url": "https://cdn.modrinth.com/data/qyVF9oeo/versions/o4QlRA76/sound-physics-remastered-forge-1.20.1-1.4.15.jar", - "id": "o4QlRA76", + "url": "https://cdn.modrinth.com/data/qyVF9oeo/versions/x0sJ9PeR/sound-physics-remastered-forge-1.20.1-1.5.1.jar", + "id": "x0sJ9PeR", "parent_id": "qyVF9oeo", "hashes": { - "sha512": "bf13d3ab4df46d446067b8bf648a84c57a5c0aa134118967a85397fc732df4689e6fa15db1728995ae06c39e0bdbd54bbdff7ee044b67a1f3f513a289e47fe60", - "sha1": "990bd9caa7c4394e66d379263139495a27147a67" + "sha512": "5509a7b51ec1d57aae2af0a0200bda474539fcfe28303f3ff0158ba95b8e7a88ae023d8a9bd97d4626a6a8ce809506e19cdcb05b76e8be5bf8a0450c5d6a46b1", + "sha1": "944b4673bcab118f411d050b2cd6b693262bb664" }, "required_dependencies": [], - "size": 204487, - "date_published": "2025-07-25T07:23:13.030771Z" + "size": 206984, + "date_published": "2025-09-25T14:25:25.304739Z" }, { "type": "curseforge", - "file_name": "sound-physics-remastered-forge-1.20.1-1.4.15.jar", + "file_name": "sound-physics-remastered-forge-1.20.1-1.5.1.jar", "mc_versions": [ "1.20.1" ], @@ -12388,16 +12296,16 @@ "forge" ], "release_type": "alpha", - "url": "https://edge.forgecdn.net/files/6809/408/sound-physics-remastered-forge-1.20.1-1.4.15.jar", - "id": "6809408", + "url": "https://edge.forgecdn.net/files/7032/235/sound-physics-remastered-forge-1.20.1-1.5.1.jar", + "id": "7032235", "parent_id": "535489", "hashes": { - "sha1": "a1678721a328eb2e68c259b208e8043cca606dd5", - "md5": "bf2e072b924a55422849f6c126bd2455" + "sha1": "aef2c02392624f0a12475ada809366b12ac9ec52", + "md5": "d70031b5058fb81d2670a4039440b00f" }, "required_dependencies": [], - "size": 204486, - "date_published": "2025-07-25T07:22:50.880Z" + "size": 206984, + "date_published": "2025-09-25T14:25:13.323Z" } ] }, @@ -12650,47 +12558,109 @@ }, "files": [ { - "type": "curseforge", - "file_name": "tfcambiental-1.20.1-3.3.1.jar", + "type": "modrinth", + "file_name": "tfcambiental-1.20.1-3.4.0.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", - "forge" + "forge", + "neoforge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5655/440/tfcambiental-1.20.1-3.3.1.jar", - "id": "5655440", - "parent_id": "940350", + "url": "https://cdn.modrinth.com/data/K7eNiRnX/versions/dSotPtx8/tfcambiental-1.20.1-3.4.0.jar", + "id": "dSotPtx8", + "parent_id": "K7eNiRnX", "hashes": { - "sha1": "0837547febfc05c18e224fd8b3f9ed4eef8eb9de", - "md5": "f057f8e13adacf35c50ae52cf312ee38" + "sha512": "1ac37c9c4777a596a2418ff31254e59e8421793329235a6f596271d0f634858d4ba11f2e062d8e6f3dd87388b9ce7c197f4eea438eed1a0afad7f51805c22c7a", + "sha1": "4f506dcf9acd95c274225b6ea3dd7dd5cac996ab" }, "required_dependencies": [], - "size": 640068, - "date_published": "2024-08-23T09:41:25.543Z" + "size": 646197, + "date_published": "2025-11-30T08:26:10.111188Z" + }, + { + "type": "curseforge", + "file_name": "tfcambiental-1.20.1-3.4.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge", + "neoforge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7277/343/tfcambiental-1.20.1-3.4.0.jar", + "id": "7277343", + "parent_id": "940350", + "hashes": { + "sha1": "4f506dcf9acd95c274225b6ea3dd7dd5cac996ab", + "md5": "5dd04665c5c5c5386e5edc0159514bb2" + }, + "required_dependencies": [], + "size": 646197, + "date_published": "2025-11-30T08:24:10.973Z" + } + ] + }, + { + "pakku_id": "oO0Fr45i8SO2Lg2x", + "type": "RESOURCE_PACK", + "side": "CLIENT", + "slug": { + "curseforge": "tfc-ambiental-refreshed", + "modrinth": "tfc-ambiental-refreshed" + }, + "name": { + "curseforge": "TFC Ambiental Refreshed", + "modrinth": "TFC Ambiental Refreshed" + }, + "id": { + "curseforge": "1379694", + "modrinth": "RVuHApuv" + }, + "redistributable": false, + "files": [ + { + "type": "curseforge", + "file_name": "TFC_Ambiental_Refreshed_1.18-1.21.1.zip", + "mc_versions": [ + "1.20.1" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7223/628/TFC_Ambiental_Refreshed_1.18-1.21.1.zip", + "id": "7223628", + "parent_id": "1379694", + "hashes": { + "sha1": "73561b96df5b4ead380bdca8f01db3ae11f63daf", + "md5": "df3d1a50ea8f109f29939a722fb084a3" + }, + "required_dependencies": [], + "size": 458406, + "date_published": "2025-11-15T06:25:33.587Z" }, { "type": "modrinth", - "file_name": "tfcambiental-1.20.1-3.3.1.jar", + "file_name": "TFC_Ambiental_Refreshed_1.18-1.21.1.zip", "mc_versions": [ - "1.20.1" + "1.18.2", + "1.20.1", + "1.21.1" ], "loaders": [ - "forge" + "minecraft" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/K7eNiRnX/versions/to7EBq2d/tfcambiental-1.20.1-3.3.1.jar", - "id": "to7EBq2d", - "parent_id": "K7eNiRnX", + "url": "https://cdn.modrinth.com/data/RVuHApuv/versions/SAxnWzwK/TFC_Ambiental_Refreshed_1.18-1.21.1.zip", + "id": "SAxnWzwK", + "parent_id": "RVuHApuv", "hashes": { - "sha512": "ad600d3731080320a4d0a3134fbdbe8041f2671c395fef73d316e8d39d1bc2672f75f583817f6389aa11c456c0508e031ad5e3b9c876ca19b605c1e107a693cb", - "sha1": "0837547febfc05c18e224fd8b3f9ed4eef8eb9de" + "sha512": "f272ba3bc3c97bc0156b61a3a44d36b7e0bcbd2d85479fa4182fb85c858745737266ca63215490198c125a6e5b626baf449c07eb9d1d5e0bb2a72ab60e209fb9", + "sha1": "73561b96df5b4ead380bdca8f01db3ae11f63daf" }, "required_dependencies": [], - "size": 640068, - "date_published": "2025-07-20T08:59:11.860074Z" + "size": 458406, + "date_published": "2025-11-15T06:27:57.385Z" } ] }, @@ -12747,32 +12717,9 @@ "modrinth": "tr715LZ4" }, "files": [ - { - "type": "curseforge", - "file_name": "TFCBetterBlastFurnace-1.20.1-1.0.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/7096/292/TFCBetterBlastFurnace-1.20.1-1.0.1.jar", - "id": "7096292", - "parent_id": "1046432", - "hashes": { - "sha1": "deed557181e79cfa11ab29916d74801ba5d6dcd0", - "md5": "542a4ea966f16f18fe6262c5d009a7f3" - }, - "required_dependencies": [ - "302973" - ], - "size": 22675, - "date_published": "2025-10-11T21:07:54.880Z" - }, { "type": "modrinth", - "file_name": "TFCBetterBlastFurnace-1.20.1-1.0.1.jar", + "file_name": "TFCBetterBlastFurnace-1.20.1-1.0.2.jar", "mc_versions": [ "1.20.1" ], @@ -12780,91 +12727,41 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/tr715LZ4/versions/MyOPcTS9/TFCBetterBlastFurnace-1.20.1-1.0.1.jar", - "id": "MyOPcTS9", + "url": "https://cdn.modrinth.com/data/tr715LZ4/versions/vdRmPxPV/TFCBetterBlastFurnace-1.20.1-1.0.2.jar", + "id": "vdRmPxPV", "parent_id": "tr715LZ4", "hashes": { - "sha512": "ea85cde0e166c3e1561acf06330aaf3a07336ed02f6f87117689cab2575b1333e2d5ec43d1e44f7f828be3ab28fbc6be20055aa5417befed66ebaafe6b529417", - "sha1": "2f0171f5cd2a2b2210425027ec5a29148cfee8b2" + "sha512": "636086142963badbda90a3e4bd573790c9a0d32ee4b63c7b5245692a4672c057d48e575ea2a5bb7f82da662c75d7748585e7e818c1540faeef021350adf2fba3", + "sha1": "e40bc10f114bce20b9c003a7d42a97834d5a1bcc" }, "required_dependencies": [ "JaCEZUhg" ], - "size": 22675, - "date_published": "2025-10-11T20:59:58.399976Z" - } - ] - }, - { - "pakku_id": "oCuY0noyYqNuFnNY", - "pakku_links": [ - "D9s7KuR1ErSJWwuk", - "64uacGcEw697jVGs" - ], - "type": "MOD", - "side": "BOTH", - "slug": { - "curseforge": "tfc-caelum", - "modrinth": "tfc-caelum" - }, - "name": { - "curseforge": "TFC Caelum", - "modrinth": "TFC Caelum" - }, - "id": { - "curseforge": "999031", - "modrinth": "WYvV2Kci" - }, - "files": [ + "size": 22983, + "date_published": "2025-12-30T22:54:19.887776Z" + }, { "type": "curseforge", - "file_name": "TFCCaelum-1.20.1-1.2.jar", + "file_name": "TFCBetterBlastFurnace-1.20.1-1.0.2.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5307/466/TFCCaelum-1.20.1-1.2.jar", - "id": "5307466", - "parent_id": "999031", + "url": "https://edge.forgecdn.net/files/7398/149/TFCBetterBlastFurnace-1.20.1-1.0.2.jar", + "id": "7398149", + "parent_id": "1046432", "hashes": { - "sha1": "114e10e497503f5ff4cb13850a8dec9bb9f4d625", - "md5": "34b54a06f4f45ccf54edc65cb48b6c89" + "sha1": "e40bc10f114bce20b9c003a7d42a97834d5a1bcc", + "md5": "b2a4def055ed078d64ef6b1f6ebfd302" }, "required_dependencies": [ - "556708", "302973" ], - "size": 414939, - "date_published": "2024-05-01T15:13:08.827Z" - }, - { - "type": "modrinth", - "file_name": "TFCCaelum-1.20.1-1.2.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge", - "neoforge" - ], - "release_type": "beta", - "url": "https://cdn.modrinth.com/data/WYvV2Kci/versions/wSasbQOH/TFCCaelum-1.20.1-1.2.jar", - "id": "wSasbQOH", - "parent_id": "WYvV2Kci", - "hashes": { - "sha512": "f1c7153fc07da59677183f9967ca16e189bcf38d961b03931f100b141e9a10ef684dd1d71a6cf8d27cd3d8ceef7670db25d3b6c398f835387ca8ee8936ea0303", - "sha1": "114e10e497503f5ff4cb13850a8dec9bb9f4d625" - }, - "required_dependencies": [ - "JaCEZUhg", - "Xkw3TXqP" - ], - "size": 414939, - "date_published": "2024-08-28T14:04:28.731777Z" + "size": 22983, + "date_published": "2025-12-30T22:54:18.363Z" } ] }, @@ -13047,6 +12944,77 @@ } ] }, + { + "pakku_id": "zjKgkuN1c64ZMrfV", + "pakku_links": [ + "AqNG8HNM9pfy1ges", + "64uacGcEw697jVGs" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "tfcgurman", + "modrinth": "tfc_gurman" + }, + "name": { + "curseforge": "TFC Gurman", + "modrinth": "TFC Gurman" + }, + "id": { + "curseforge": "1363944", + "modrinth": "ERme2o65" + }, + "files": [ + { + "type": "modrinth", + "file_name": "tfc_gurman-1.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/ERme2o65/versions/NVqgySaW/tfc_gurman-1.3.0.jar", + "id": "NVqgySaW", + "parent_id": "ERme2o65", + "hashes": { + "sha512": "b82f4b893f85f152a305a9949df8a87337b2e1d75e80a1723c512de5ede3dfa056f17a2186511acf96556e4b5ce1b1c55927d6f97fabf109ac8fdf8ba20f197c", + "sha1": "c55512789128af89d57fe0c9a2f3b4d59a491724" + }, + "required_dependencies": [ + "JaCEZUhg", + "5bKeBHw2" + ], + "size": 542077, + "date_published": "2026-01-02T13:41:35.488377Z" + }, + { + "type": "curseforge", + "file_name": "tfc_gurman-1.3.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7408/157/tfc_gurman-1.3.0.jar", + "id": "7408157", + "parent_id": "1363944", + "hashes": { + "sha1": "c55512789128af89d57fe0c9a2f3b4d59a491724", + "md5": "fd8ba6a9ec34193beda55f5d34e359f1" + }, + "required_dependencies": [ + "302973", + "453394" + ], + "size": 542077, + "date_published": "2026-01-02T13:43:05.680Z" + } + ] + }, { "pakku_id": "qsPtzQR6kvGPEfHU", "pakku_links": [ @@ -13328,72 +13296,71 @@ ] }, { - "pakku_id": "merF4as3Mu7Vjepa", + "pakku_id": "ajFTZODDe9JA6OiW", "pakku_links": [ "64uacGcEw697jVGs" ], "type": "MOD", - "side": "BOTH", + "side": "SERVER", "slug": { - "curseforge": "tfc-regrowing-forests", - "modrinth": "tfc-regrowing-forests" + "curseforge": "tfc-ruins", + "modrinth": "tfc-ruins" }, "name": { - "curseforge": "TFC Regrowing Forests", - "modrinth": "TFC Regrowing Forests" + "curseforge": "TFC Ruins - Structures for TerraFirmaCraft", + "modrinth": "TFC Ruins" }, "id": { - "curseforge": "1091993", - "modrinth": "Zh7v8m6u" + "curseforge": "1383031", + "modrinth": "2JRpLCvK" }, + "redistributable": false, "files": [ { "type": "curseforge", - "file_name": "TFCRegrowingForests-1.20.1-1.1.jar", + "file_name": "tfc_ruins-1.0.1-forge-1.20.1.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5674/390/TFCRegrowingForests-1.20.1-1.1.jar", - "id": "5674390", - "parent_id": "1091993", + "url": "https://edge.forgecdn.net/files/7270/344/tfc_ruins-1.0.1-forge-1.20.1.jar", + "id": "7270344", + "parent_id": "1383031", "hashes": { - "sha1": "7279f1b6abe51f10195d3af9166a56269bcf399c", - "md5": "50c18cf7affeb274969a664ebeea1db0" + "sha1": "a3759bcb6545195e680121c145608eeefc70a18a", + "md5": "008d9c033ab830c67a77576a64277232" }, "required_dependencies": [ "302973" ], - "size": 1585768, - "date_published": "2024-08-29T13:42:35.037Z" + "size": 62230, + "date_published": "2025-11-28T08:18:23.587Z" }, { "type": "modrinth", - "file_name": "TFCRegrowingForests-1.20.1-1.1.jar", + "file_name": "tfc_ruins-1.0.1-forge-1.20.1.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "forge", - "neoforge" + "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/Zh7v8m6u/versions/CSjwZkki/TFCRegrowingForests-1.20.1-1.1.jar", - "id": "CSjwZkki", - "parent_id": "Zh7v8m6u", + "url": "https://cdn.modrinth.com/data/2JRpLCvK/versions/upy38bFL/tfc_ruins-1.0.1-forge-1.20.1.jar", + "id": "upy38bFL", + "parent_id": "2JRpLCvK", "hashes": { - "sha512": "f358135cb2bf2c1438a4258bb2c00dabf1ccc22a26d094abb80f4e531563ce674f62994078ecf5931ff155b0464ae868458b76344656a8bd777978893eea281d", - "sha1": "7279f1b6abe51f10195d3af9166a56269bcf399c" + "sha512": "d2d7d1426215e6252281a53daf56127f66a27da20f7c5160d7275a1326197961998f1df05d1917beb6f792ff211108ec845f624b2bc2ad78f2901a3b70426b2b", + "sha1": "a3759bcb6545195e680121c145608eeefc70a18a" }, "required_dependencies": [ "JaCEZUhg" ], - "size": 1585768, - "date_published": "2024-08-29T13:41:06.999093Z" + "size": 62230, + "date_published": "2025-11-28T08:17:29.408127Z" } ] }, @@ -13985,33 +13952,9 @@ "modrinth": "pAcsgLW2" }, "files": [ - { - "type": "curseforge", - "file_name": "taczjs-forge-1.3.6-mc1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6639/214/taczjs-forge-1.3.6-mc1.20.1.jar", - "id": "6639214", - "parent_id": "1130998", - "hashes": { - "sha1": "9a75526b23e2c851df20749ba1a5f3e11f90c603", - "md5": "203a8995aa6a69c6b6ec38136d8bd4b5" - }, - "required_dependencies": [ - "1028108", - "238086" - ], - "size": 90443, - "date_published": "2025-06-11T07:06:10.097Z" - }, { "type": "modrinth", - "file_name": "taczjs-forge-1.3.6-mc1.20.1.jar", + "file_name": "taczjs-forge-1.3.7-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -14019,19 +13962,43 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/pAcsgLW2/versions/u3boO1Li/taczjs-forge-1.3.6-mc1.20.1.jar", - "id": "u3boO1Li", + "url": "https://cdn.modrinth.com/data/pAcsgLW2/versions/vV5GSjdw/taczjs-forge-1.3.7-mc1.20.1.jar", + "id": "vV5GSjdw", "parent_id": "pAcsgLW2", "hashes": { - "sha512": "02427d1396fc7eae8ebcd030739e90ab0e31aaefbaee5a4642e6ce0b3f1c51084066f74d88d988768741bd76e8b5dbcf3960250ca0f5ab901d48752531e953c9", - "sha1": "9a75526b23e2c851df20749ba1a5f3e11f90c603" + "sha512": "ef11ded5705b8eeb9d8f38800615e0c3ca05236cba6462cbf5d52dcd8dc8c6b0e3250fc021bb3475479097c9d47faf1a7466974c64006984bbeaff75b52a6c65", + "sha1": "8a97de20e31f7e863a968f82fd90e196f4b3a3b3" }, "required_dependencies": [ "umyGl7zF", "SzzJttH8" ], - "size": 90443, - "date_published": "2025-06-11T07:07:34.035734Z" + "size": 90442, + "date_published": "2025-12-02T00:14:24.346621Z" + }, + { + "type": "curseforge", + "file_name": "taczjs-forge-1.3.7-mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7284/184/taczjs-forge-1.3.7-mc1.20.1.jar", + "id": "7284184", + "parent_id": "1130998", + "hashes": { + "sha1": "8a97de20e31f7e863a968f82fd90e196f4b3a3b3", + "md5": "acdef4ed6293254878749b7c8294370d" + }, + "required_dependencies": [ + "1028108", + "238086" + ], + "size": 90442, + "date_published": "2025-12-02T01:43:33.197Z" } ] }, @@ -14057,35 +14024,9 @@ "modrinth": "H8peNuJG" }, "files": [ - { - "type": "curseforge", - "file_name": "tacz-tweaks-2.9.0-all.jar", - "mc_versions": [ - "1.20.1", - "1.20" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/7041/592/tacz-tweaks-2.9.0-all.jar", - "id": "7041592", - "parent_id": "1193263", - "hashes": { - "sha1": "9e1a68b8ac714d1cae00550fcc524ff7b12cb4b9", - "md5": "5bee35daf86a064d7f58c519e7f45fcb" - }, - "required_dependencies": [ - "667299", - "1028108", - "351264" - ], - "size": 1640111, - "date_published": "2025-09-28T09:02:31.080Z" - }, { "type": "modrinth", - "file_name": "tacz-tweaks-2.9.0-all.jar", + "file_name": "tacz-tweaks-2.11.2-all.jar", "mc_versions": [ "1.20", "1.20.1" @@ -14094,20 +14035,46 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/H8peNuJG/versions/Gvp62YmC/tacz-tweaks-2.9.0-all.jar", - "id": "Gvp62YmC", + "url": "https://cdn.modrinth.com/data/H8peNuJG/versions/qD990J7Z/tacz-tweaks-2.11.2-all.jar", + "id": "qD990J7Z", "parent_id": "H8peNuJG", "hashes": { - "sha512": "f69640816220a2d136d9db332ad6bd99c7c746e7e5e297b745b9d355fec44d30c9fb559d8cd53c84c036ce4875527d578c4f3dfc40c2fd30a74fe8b95925763a", - "sha1": "9e1a68b8ac714d1cae00550fcc524ff7b12cb4b9" + "sha512": "67ab623a60951ce1d6bb9b5a9e0b7a8770b399d19c8de739a7bc7a4f3536126a232cb1292be4f7599b921c2075344dc360e6a80fabbfe6c73c775bcb77fae739", + "sha1": "889c0885b6388fc7966b956a5df4efbb1c758965" }, "required_dependencies": [ - "SzzJttH8", "ordsPcFz", + "SzzJttH8", "1eAoo2KR" ], - "size": 1640111, - "date_published": "2025-09-28T09:02:31.279571Z" + "size": 1748066, + "date_published": "2025-12-04T12:41:22.415350Z" + }, + { + "type": "curseforge", + "file_name": "tacz-tweaks-2.11.2-all.jar", + "mc_versions": [ + "1.20.1", + "1.20" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7293/523/tacz-tweaks-2.11.2-all.jar", + "id": "7293523", + "parent_id": "1193263", + "hashes": { + "sha1": "889c0885b6388fc7966b956a5df4efbb1c758965", + "md5": "0b11bd77a8d1e56bd8673cc9946023e1" + }, + "required_dependencies": [ + "667299", + "351264", + "1028108" + ], + "size": 1748066, + "date_published": "2025-12-04T12:41:22.310Z" } ] }, @@ -14201,7 +14168,7 @@ "files": [ { "type": "modrinth", - "file_name": "TerraFirmaGreg-Core-Modern-0.8.5.jar", + "file_name": "TerraFirmaGreg-Core-Modern-0.8.14.jar", "mc_versions": [ "1.20.1" ], @@ -14210,44 +14177,44 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/lNttW2Xl/versions/f95K1jmA/TerraFirmaGreg-Core-Modern-0.8.5.jar", - "id": "f95K1jmA", + "url": "https://cdn.modrinth.com/data/lNttW2Xl/versions/m0KNpOTc/TerraFirmaGreg-Core-Modern-0.8.14.jar", + "id": "m0KNpOTc", "parent_id": "lNttW2Xl", "hashes": { - "sha512": "222d5b1f39261ea051316a7ac68acf9761f41d815b84a0325887957784cb52ec9388146f9435cdbec6fc42f236cc4b6f3bfb6b7da1b59102f90f414ad7aa62fb", - "sha1": "d4d7f1a4fa9690d45b09b17ca2d6f00097ac4d25" + "sha512": "e5a7b153a2efab340c8ae8ce21624ce1f20349422534dfec64d00112f50142710c16b1a6a31e7ac9387ab771a6b1a2273c8162f46becd22705895ccff6d7c47d", + "sha1": "f1b9ac2623f3058a2bcee184a024fa4111181218" }, "required_dependencies": [ "7tG215v7", "JaCEZUhg" ], - "size": 9246856, - "date_published": "2025-10-29T13:26:55.488427Z" + "size": 9376906, + "date_published": "2026-01-05T06:28:10.973810Z" }, { "type": "curseforge", - "file_name": "TerraFirmaGreg-Core-Modern-0.8.5.jar", + "file_name": "TerraFirmaGreg-Core-Modern-0.8.14.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", - "forge" + "forge", + "neoforge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7163/303/TerraFirmaGreg-Core-Modern-0.8.5.jar", - "id": "7163303", + "url": "https://edge.forgecdn.net/files/7419/964/TerraFirmaGreg-Core-Modern-0.8.14.jar", + "id": "7419964", "parent_id": "513402", "hashes": { - "sha1": "d4d7f1a4fa9690d45b09b17ca2d6f00097ac4d25", - "md5": "dd221274e0df33e3312defa69f416350" + "sha1": "f1b9ac2623f3058a2bcee184a024fa4111181218", + "md5": "b09df110b3939d76ae68167b71abb8ff" }, "required_dependencies": [ "302973", "890405" ], - "size": 9246856, - "date_published": "2025-10-29T13:26:50.930Z" + "size": 9376906, + "date_published": "2026-01-05T06:28:07.297Z" } ] }, @@ -14312,22 +14279,62 @@ ] }, { - "pakku_id": "UUgCxePdwRd5MyWw", + "pakku_id": "HmuVmQIxSjcXXYFw", + "pakku_links": [ + "64uacGcEw697jVGs" + ], "type": "MOD", - "side": "CLIENT", "slug": { - "curseforge": "third-person-shooting" + "curseforge": "tfc-scraping-knives" }, "name": { - "curseforge": "Third Person Shooting: Zero" + "curseforge": "Tfc Scraping Knives" }, "id": { - "curseforge": "969378" + "curseforge": "1172700" }, "files": [ { "type": "curseforge", - "file_name": "tp_shooting-1.20.1-5.1.1+tacz1.1.6-all.jar", + "file_name": "tfcscraping-1.0.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6133/109/tfcscraping-1.0.2.jar", + "id": "6133109", + "parent_id": "1172700", + "hashes": { + "sha1": "a28cf46a637287b308058abb678fbf382198f3fe", + "md5": "ecfc30b2ba305d939c16099881b0a779" + }, + "required_dependencies": [ + "302973" + ], + "size": 177967, + "date_published": "2025-01-28T09:39:35.493Z" + } + ] + }, + { + "pakku_id": "jn9KICtb32TaMbxc", + "type": "MOD", + "slug": { + "curseforge": "timeoutfixes" + }, + "name": { + "curseforge": "TimeoutFixes" + }, + "id": { + "curseforge": "558010" + }, + "files": [ + { + "type": "curseforge", + "file_name": "timeout_fixes-1.20.1-1.0.0.jar", "mc_versions": [ "1.20.1" ], @@ -14336,16 +14343,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7034/860/tp_shooting-1.20.1-5.1.1+tacz1.1.6-all.jar", - "id": "7034860", - "parent_id": "969378", + "url": "https://edge.forgecdn.net/files/4844/272/timeout_fixes-1.20.1-1.0.0.jar", + "id": "4844272", + "parent_id": "558010", "hashes": { - "sha1": "43c627e23f7e72ee011085a94bdc1ba57b86a7ba", - "md5": "8449f5e5f21eb75d2e4393c86d5b7a8e" + "sha1": "1748e7fecde151d20eb96d62eecd7579858bb793", + "md5": "a23bcbf8d525155000e592ddbb15521e" }, "required_dependencies": [], - "size": 179476, - "date_published": "2025-09-26T11:19:44.383Z" + "size": 10209, + "date_published": "2023-11-06T02:11:33.063Z" } ] }, @@ -14432,32 +14439,9 @@ "modrinth": "yFypjcfd" }, "files": [ - { - "type": "curseforge", - "file_name": "toomanyrecipeviewers-0.6.4+mc.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/7093/9/toomanyrecipeviewers-0.6.4+mc.20.1.jar", - "id": "7093009", - "parent_id": "1194921", - "hashes": { - "sha1": "4209411389ebc078bdfcc0b54fe33163fc511ce5", - "md5": "abc53ecc7c9ead751c757bb7e3a90d26" - }, - "required_dependencies": [ - "580555" - ], - "size": 1215706, - "date_published": "2025-10-11T01:34:51.447Z" - }, { "type": "modrinth", - "file_name": "toomanyrecipeviewers-0.6.4+mc.20.1.jar", + "file_name": "toomanyrecipeviewers-0.7.1+mc.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -14465,18 +14449,41 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/yFypjcfd/versions/8nQIjuFd/toomanyrecipeviewers-0.6.4+mc.20.1.jar", - "id": "8nQIjuFd", + "url": "https://cdn.modrinth.com/data/yFypjcfd/versions/OtMd1Eg9/toomanyrecipeviewers-0.7.1+mc.20.1.jar", + "id": "OtMd1Eg9", "parent_id": "yFypjcfd", "hashes": { - "sha512": "84bf6f926534687ccde30f926f687c1c9b9dd8608355d8ec8e5e90a217d49bf7141ca5969256ff091ccedadf4bb8f2d00e4810ca24431f467efc06b4643ab193", - "sha1": "4209411389ebc078bdfcc0b54fe33163fc511ce5" + "sha512": "a4e7f351f25e5dddc0e61b5afa91222ebd2f878e0a8803bf20cf5373cca3be20136a40d001cfa7fcc076b10555cd0c9aba8e8ad32d11a5be06e9b331db28b7dc", + "sha1": "29bec57f882d3a4bab4a2dc4c46e19cadcd32c67" }, "required_dependencies": [ "fRiHVvU7" ], - "size": 1215706, - "date_published": "2025-10-11T01:34:54.514399Z" + "size": 1667055, + "date_published": "2026-01-03T00:51:46.557524Z" + }, + { + "type": "curseforge", + "file_name": "toomanyrecipeviewers-0.7.1+mc.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7410/427/toomanyrecipeviewers-0.7.1+mc.20.1.jar", + "id": "7410427", + "parent_id": "1194921", + "hashes": { + "sha1": "29bec57f882d3a4bab4a2dc4c46e19cadcd32c67", + "md5": "1419bf0ba0f79042abe7af61f567d7ea" + }, + "required_dependencies": [ + "580555" + ], + "size": 1667055, + "date_published": "2026-01-03T00:51:42.943Z" } ] }, @@ -14518,39 +14525,70 @@ ] }, { - "pakku_id": "MsHYV9wTmEPY8KiB", + "pakku_id": "qIp9UR5bpJUYcxmd", + "pakku_links": [ + "Nw8xTCQngHA15ilh", + "Ek1OSS84farhKMqo" + ], "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "true-darkness-forge-updated-fork" + "curseforge": "trackwork", + "modrinth": "trackwork" }, "name": { - "curseforge": "True Darkness [Forge] - Updated Fork" + "curseforge": "Trackwork", + "modrinth": "Trackwork" }, "id": { - "curseforge": "970641" + "curseforge": "1057662", + "modrinth": "FXDpZRJG" }, "files": [ { "type": "curseforge", - "file_name": "darkness-forge-1.20.1-2.0.103-fork.jar", + "file_name": "trackwork-1.20.1-1.2.2.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "neoforge", "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5080/314/darkness-forge-1.20.1-2.0.103-fork.jar", - "id": "5080314", - "parent_id": "970641", + "url": "https://edge.forgecdn.net/files/7395/233/trackwork-1.20.1-1.2.2.jar", + "id": "7395233", + "parent_id": "1057662", "hashes": { - "sha1": "56be989675f110d74c04567c4ccc3c1941f7472c", - "md5": "93217dc8f8a6f2745073bb190f82df1f" + "sha1": "179e295a00e1d8b4043b763ea2a32fc5a13ea008", + "md5": "5d4393a3a75272caea9fbfd533d6b6ab" + }, + "required_dependencies": [ + "328085", + "258371" + ], + "size": 572602, + "date_published": "2025-12-30T04:31:56.257Z" + }, + { + "type": "modrinth", + "file_name": "trackwork-1.20.1-1.2.2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/FXDpZRJG/versions/Jut91y7U/trackwork-1.20.1-1.2.2.jar", + "id": "Jut91y7U", + "parent_id": "FXDpZRJG", + "hashes": { + "sha512": "35aa3b0cb1139ed531f6adb5b5102b0e0c2af5fe2fc6885b9c5cb1e40c22ada214efdbacb9cd8f7942097b69a03f534d6f53cd0521739c4eafc489a9e86f7405", + "sha1": "179e295a00e1d8b4043b763ea2a32fc5a13ea008" }, "required_dependencies": [], - "size": 29331, - "date_published": "2024-02-04T13:12:36.493Z" + "size": 572602, + "date_published": "2025-12-30T04:32:57.241153Z" } ] }, @@ -14717,158 +14755,463 @@ ] }, { - "pakku_id": "TLAxcL05kVydcFbG", - "type": "RESOURCE_PACK", - "side": "CLIENT", + "pakku_id": "mQhBfWuwqZIcX7ix", + "pakku_links": [ + "Ek1OSS84farhKMqo" + ], + "type": "MOD", + "side": "SERVER", "slug": { - "curseforge": "universal-bushy-leaves", - "modrinth": "universal-bushy-leaves" + "curseforge": "vlib", + "modrinth": "vlib" }, "name": { - "curseforge": "Universal Bushy Leaves", - "modrinth": "Universal Bushy Leaves" + "curseforge": "VLib", + "modrinth": "VLib" }, "id": { - "curseforge": "1186505", - "modrinth": "K2QW8EcS" + "curseforge": "1265893", + "modrinth": "V1UmcEMX" }, "files": [ { "type": "curseforge", - "file_name": "Universal Bushy Leaves.zip", + "file_name": "vlib-1.20.1-0.1.1+forge.jar", "mc_versions": [ - "1.20.2", - "1.20.5", - "1.20.2-Snapshot", - "1.20.5-Snapshot", - "1.20.3-Snapshot", - "1.20.3", - "1.20.1", - "1.20", - "1.20.6", - "1.20.4", - "1.20-Snapshot" + "1.20.1" ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6132/631/Universal Bushy Leaves.zip", - "id": "6132631", - "parent_id": "1186505", + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/7378/603/vlib-1.20.1-0.1.1+forge.jar", + "id": "7378603", + "parent_id": "1265893", "hashes": { - "sha1": "39562d4b0ab9a0224abba83b335429423cd415a8", - "md5": "49d3252dd9da3e48fae6d53ea980bdb4" + "sha1": "aa63880ecb00681ebb04fad35f2e29c71b5b8088", + "md5": "0ad2e5e1f94520c5e02e5a5f187799c2" }, - "required_dependencies": [], - "size": 62612, - "date_published": "2025-01-28T03:58:58.190Z" + "required_dependencies": [ + "258371" + ], + "size": 624138, + "date_published": "2025-12-25T22:30:12.490Z" }, { "type": "modrinth", - "file_name": "Universal Bushy Leaves.zip", + "file_name": "vlib-1.20.1-0.1.1+forge.jar", "mc_versions": [ - "1.6.1", - "1.6.2", - "1.6.4", - "1.7.2", - "1.7.3", - "1.7.4", - "1.7.5", - "1.7.6", - "1.7.7", - "1.7.8", - "1.7.9", - "1.7.10", - "1.8", - "1.8.1", - "1.8.2", - "1.8.3", - "1.8.4", - "1.8.5", - "1.8.6", - "1.8.7", - "1.8.8", - "1.8.9", - "1.9", - "1.9.1", - "1.9.2", - "1.9.3", - "1.9.4", - "1.10", - "1.10.1", - "1.10.2", - "1.11", - "1.11.1", - "1.11.2", - "1.12", - "1.12.1", - "1.12.2", - "1.13", - "1.13.1", - "1.13.2", - "1.14", - "1.14.1", - "1.14.2", - "1.14.3", - "1.14.4", - "1.15", - "1.15.1", - "1.15.2", - "1.16", - "1.16.1", - "1.16.2", - "1.16.3", - "1.16.4", - "1.16.5", - "1.17", - "1.17.1", - "1.18", - "1.18.1", - "1.18.2", - "1.19", - "1.19.1", - "1.19.2", - "1.19.3", - "1.19.4", - "1.20", - "1.20.1", - "1.20.2", - "1.20.3", - "1.20.4", - "1.20.5", - "1.20.6", - "1.21", - "1.21.1", - "1.21.2", - "1.21.3", - "1.21.4" + "1.20.1" ], "loaders": [ - "minecraft" + "forge" ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/K2QW8EcS/versions/A7dZUMWI/Universal Bushy Leaves.zip", - "id": "A7dZUMWI", - "parent_id": "K2QW8EcS", + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/V1UmcEMX/versions/lEFffQqd/vlib-1.20.1-0.1.1+forge.jar", + "id": "lEFffQqd", + "parent_id": "V1UmcEMX", "hashes": { - "sha512": "1a2cf2f9b2e12c5e18b4af2523cc358e3be14161325134920d8e4d40e3e66cf7b4c0ac5ee75c87ab66cc237f0da31d28f3e830e9a48a131da0dcfd89bc646fc3", - "sha1": "39562d4b0ab9a0224abba83b335429423cd415a8" + "sha512": "7ecbbd2bbad4cfd20a7c72f688761fd287b653256223a09a217bf0c0d351f29f90108ebd3f85e449edcf294257e302f3085da907ff734b203ca45c23e5bc70ff", + "sha1": "aa63880ecb00681ebb04fad35f2e29c71b5b8088" }, - "required_dependencies": [], - "size": 62612, - "date_published": "2025-01-28T03:57:06.852239Z" + "required_dependencies": [ + "V5ujR2yw" + ], + "size": 624138, + "date_published": "2025-12-25T22:24:23.449257Z" } ] }, { - "pakku_id": "b7xzNoddhfmie30E", - "type": "RESOURCE_PACK", + "pakku_id": "umwG5c72SUCP9pBT", + "type": "MOD", + "side": "BOTH", "slug": { - "curseforge": "terrafirmacraft-vexxed-visuals" + "curseforge": "vs-chunkloader", + "modrinth": "vs-chunkloader" }, "name": { - "curseforge": "Vexxed Visuals: TerraFirmaCraft" + "curseforge": "VS ChunkLoader", + "modrinth": "VS ChunkLoader" }, "id": { - "curseforge": "664832" + "curseforge": "1318938", + "modrinth": "V4eP65JX" + }, + "files": [ + { + "type": "curseforge", + "file_name": "VSChunkLoader-forge-1.20.1-2.0.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7414/987/VSChunkLoader-forge-1.20.1-2.0.0.jar", + "id": "7414987", + "parent_id": "1318938", + "hashes": { + "sha1": "7a32142f64ea3a1ebd33c1e1bd15784e4735945a", + "md5": "08bbece24726c68e39734cd7f9207d53" + }, + "required_dependencies": [], + "size": 1621795, + "date_published": "2026-01-04T03:42:28.820Z" + }, + { + "type": "modrinth", + "file_name": "VSChunkLoader-forge-1.20.1-2.0.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/V4eP65JX/versions/8LKmfC0w/VSChunkLoader-forge-1.20.1-2.0.0.jar", + "id": "8LKmfC0w", + "parent_id": "V4eP65JX", + "hashes": { + "sha512": "fe27474dbf08b180f6628285f90df4fd65d9c086144a3f50a682b3f5ee961d2240385f44281773405950904bdb24ccd84f21ed58540fd8344e63ccd7d2be290f", + "sha1": "7a32142f64ea3a1ebd33c1e1bd15784e4735945a" + }, + "required_dependencies": [], + "size": 1621795, + "date_published": "2026-01-04T03:41:33.644920Z" + } + ] + }, + { + "pakku_id": "ZvoAFwY8shWpD1ok", + "pakku_links": [ + "Nw8xTCQngHA15ilh", + "Ek1OSS84farhKMqo" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "create-clockwork", + "modrinth": "create-clockwork" + }, + "name": { + "curseforge": "VS: Clockwork", + "modrinth": "Clockwork" + }, + "id": { + "curseforge": "807792", + "modrinth": "84USeAvk" + }, + "files": [ + { + "type": "curseforge", + "file_name": "clockwork-0.5.4.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7418/660/clockwork-0.5.4.3.jar", + "id": "7418660", + "parent_id": "807792", + "hashes": { + "sha1": "ec877495ae82f91f6abed2db0974c81e9fc11cd1", + "md5": "eb7c801388dbb31e96d2bcfab7e418d3" + }, + "required_dependencies": [ + "328085", + "258371" + ], + "size": 10716681, + "date_published": "2026-01-04T22:14:17.230Z" + }, + { + "type": "modrinth", + "file_name": "clockwork-0.5.4.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/84USeAvk/versions/BM7snH6L/clockwork-0.5.4.3.jar", + "id": "BM7snH6L", + "parent_id": "84USeAvk", + "hashes": { + "sha512": "5ed9e56f7fca3f91e48bacd371b38203cdff9e5d0c8b76b166186d25529d275939f6cdbd66eaa809b60ae84358a6102ef134c46584a0c5617ee5da5e9f268f96", + "sha1": "ec877495ae82f91f6abed2db0974c81e9fc11cd1" + }, + "required_dependencies": [ + "LNytGWDc", + "V5ujR2yw" + ], + "size": 10716681, + "date_published": "2026-01-04T22:14:16.464593Z" + } + ] + }, + { + "pakku_id": "AAzyUCa8m8QGSIUd", + "pakku_links": [ + "Ek1OSS84farhKMqo" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "vs-hit-run" + }, + "name": { + "modrinth": "VS: Hit & Run" + }, + "id": { + "modrinth": "1hIzZIwF" + }, + "files": [ + { + "type": "modrinth", + "file_name": "vs_hitnrun-1.20.1-forge-1.0.0-beta.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/1hIzZIwF/versions/oWF9Q5y1/vs_hitnrun-1.20.1-forge-1.0.0-beta.jar", + "id": "oWF9Q5y1", + "parent_id": "1hIzZIwF", + "hashes": { + "sha512": "7271b0db006f25098d12af0e041e43efc831a3ab14f5cdbaac6f65427f8a8433ceb42ea2f4b6a9764056a326bb43fbc5ee8b9ef015395d2bf5b024209dfe57cf", + "sha1": "242bb2ac337a8d5516f7d5ad973dbc64d1eba2a5" + }, + "required_dependencies": [ + "V5ujR2yw" + ], + "size": 898849, + "date_published": "2025-12-01T22:37:17.564247Z" + } + ] + }, + { + "pakku_id": "8wz9TN2YtnV5cyJr", + "pakku_links": [ + "Ek1OSS84farhKMqo", + "mQhBfWuwqZIcX7ix" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "valkyrien-sails", + "modrinth": "valkyrien-sails" + }, + "name": { + "curseforge": "Valkyrien Sails", + "modrinth": "Valkyrien Sails" + }, + "id": { + "curseforge": "1278593", + "modrinth": "esFadCt9" + }, + "files": [ + { + "type": "curseforge", + "file_name": "vs_sails-1.20.1-0.2.5-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/7403/47/vs_sails-1.20.1-0.2.5-forge.jar", + "id": "7403047", + "parent_id": "1278593", + "hashes": { + "sha1": "84ae2cb54925321de1f65f8e12c544adb5454912", + "md5": "1ea97c1368bdd47217d2327f6348940b" + }, + "required_dependencies": [ + "258371", + "1265893" + ], + "size": 909678, + "date_published": "2026-01-01T05:21:43.203Z" + }, + { + "type": "modrinth", + "file_name": "vs_sails-1.20.1-0.2.5-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/esFadCt9/versions/aO3uPoug/vs_sails-1.20.1-0.2.5-forge.jar", + "id": "aO3uPoug", + "parent_id": "esFadCt9", + "hashes": { + "sha512": "b27c2676dacea82f2941612ae531907753e53509bda10b36c02a7f9a64825f80fa344ea30e61bcde00de045203024ca633e89d1462f61cd18d3119a9b1d45c08", + "sha1": "84ae2cb54925321de1f65f8e12c544adb5454912" + }, + "required_dependencies": [ + "V1UmcEMX", + "V5ujR2yw" + ], + "size": 909678, + "date_published": "2026-01-01T05:19:23.699307Z" + } + ] + }, + { + "pakku_id": "Ek1OSS84farhKMqo", + "pakku_links": [ + "oC0unMVGatUQIsDP" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "valkyrien-skies", + "modrinth": "valkyrien-skies" + }, + "name": { + "curseforge": "Valkyrien Skies (Forge/Fabric)", + "modrinth": "Valkyrien Skies" + }, + "id": { + "curseforge": "258371", + "modrinth": "V5ujR2yw" + }, + "files": [ + { + "type": "curseforge", + "file_name": "valkyrienskies-120-2.4.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7418/457/valkyrienskies-120-2.4.6.jar", + "id": "7418457", + "parent_id": "258371", + "hashes": { + "sha1": "1e46bde9f7a0543e650f1acbd82f1bbefe4ae010", + "md5": "d4905fbb4ee72093ec5c5d4fdfb232aa" + }, + "required_dependencies": [ + "351264" + ], + "size": 24053616, + "date_published": "2026-01-04T21:24:01.163Z" + }, + { + "type": "modrinth", + "file_name": "valkyrienskies-120-2.4.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/V5ujR2yw/versions/BjOYUTLA/valkyrienskies-120-2.4.6.jar", + "id": "BjOYUTLA", + "parent_id": "V5ujR2yw", + "hashes": { + "sha512": "a45098834c4fd674100375899b2e770be68509c7b976c8b7311f2e80e70a2caf71417c8a93253a33fbe18694db21aa5a626135d4b2ab2b60ed122b9479060d4e", + "sha1": "1e46bde9f7a0543e650f1acbd82f1bbefe4ae010" + }, + "required_dependencies": [ + "ordsPcFz" + ], + "size": 24053616, + "date_published": "2026-01-04T21:24:00.356938Z" + } + ] + }, + { + "pakku_id": "1uMJSh56az0KXSB4", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "valkyrien-warium", + "modrinth": "valkyrien-warium" + }, + "name": { + "curseforge": "Valkyrien Warium", + "modrinth": "Valkyrien Warium" + }, + "id": { + "curseforge": "1286740", + "modrinth": "CuAOZEBw" + }, + "redistributable": false, + "files": [ + { + "type": "curseforge", + "file_name": "WariumVS 0.3.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7402/701/WariumVS 0.3.1.jar", + "id": "7402701", + "parent_id": "1286740", + "hashes": { + "sha1": "3d59e0eae81c78a008a10de9ba59baef72d3aa6b", + "md5": "caf53e26cb492662e93706a2ff0b8d88" + }, + "required_dependencies": [], + "size": 5244575, + "date_published": "2026-01-01T03:04:51.437Z" + }, + { + "type": "modrinth", + "file_name": "WariumVS 0.3.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/CuAOZEBw/versions/d82JEqDf/WariumVS 0.3.1.jar", + "id": "d82JEqDf", + "parent_id": "CuAOZEBw", + "hashes": { + "sha512": "d3cca06dea3ef1368d45240a659a6e612727ea27d4528e86d0b295ed86f21fca13afc4310537f245072f2ec6cf8edc3dcd3c54d480eb3525b24aeb56e1e0d319", + "sha1": "3d59e0eae81c78a008a10de9ba59baef72d3aa6b" + }, + "required_dependencies": [], + "size": 5244575, + "date_published": "2026-01-01T03:04:49.124854Z" + } + ] + }, + { + "pakku_id": "Z3KE8gJoOsh7EQNZ", + "type": "RESOURCE_PACK", + "side": "CLIENT", + "slug": { + "curseforge": "terrafirmacraft-vexxed-visuals", + "modrinth": "vexxed-visuals-terrafirmacraft" + }, + "name": { + "curseforge": "Vexxed Visuals: TerraFirmaCraft", + "modrinth": "Vexxed Visuals: TerraFirmaCraft" + }, + "id": { + "curseforge": "664832", + "modrinth": "TAEibNyf" }, "files": [ { @@ -14909,7 +15252,7 @@ "files": [ { "type": "curseforge", - "file_name": "vintageimprovements-1.20.1-0.3.5.1.jar", + "file_name": "vintageimprovements-1.20.1-0.3.6.0.jar", "mc_versions": [ "1.20.1" ], @@ -14917,18 +15260,93 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/7105/796/vintageimprovements-1.20.1-0.3.5.1.jar", - "id": "7105796", + "url": "https://edge.forgecdn.net/files/7150/799/vintageimprovements-1.20.1-0.3.6.0.jar", + "id": "7150799", "parent_id": "1255448", "hashes": { - "sha1": "15bbb20011239cceb6ebc10850084c09113cc8e5", - "md5": "c70ab7b12248f3c969fbb2eaf9a184b8" + "sha1": "a893480c03a2803b130f79b2124d27345779f531", + "md5": "5a013ac7470b65c048132e67199b601a" }, "required_dependencies": [ "328085" ], - "size": 1381683, - "date_published": "2025-10-14T09:49:10.240Z" + "size": 1381831, + "date_published": "2025-10-26T04:56:43.770Z" + } + ] + }, + { + "pakku_id": "X1DT7EtiEggkatMR", + "pakku_links": [ + "i4wWe6A2zvX01n9S", + "bf2svog06ajj5JHE", + "Y6Da87s1FKPYq0UK", + "Nw8xTCQngHA15ilh" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "vintage-kubejs", + "modrinth": "vintage-kubejs" + }, + "name": { + "curseforge": "Vintage KubeJS", + "modrinth": "Vintage KubeJS" + }, + "id": { + "curseforge": "1077532", + "modrinth": "u2r2GYRW" + }, + "files": [ + { + "type": "curseforge", + "file_name": "vintage_kubejs-1.20.1-1.0.0rc-2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/5607/145/vintage_kubejs-1.20.1-1.0.0rc-2.jar", + "id": "5607145", + "parent_id": "1077532", + "hashes": { + "sha1": "ca49a4163794cc0f94a31a17f6956be11979db53", + "md5": "23321f4db3ec489d8605f54efecf813e" + }, + "required_dependencies": [ + "238086", + "429371", + "328085" + ], + "size": 53779, + "date_published": "2024-08-08T08:54:11.013Z" + }, + { + "type": "modrinth", + "file_name": "vintage_kubejs-1.20.1-1.0.0rc-2.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/u2r2GYRW/versions/TUKYnKui/vintage_kubejs-1.20.1-1.0.0rc-2.jar", + "id": "TUKYnKui", + "parent_id": "u2r2GYRW", + "hashes": { + "sha512": "d1bab6515b6353294adc98f0bd44e184ecb08d4091b5654d86edef1735c4a8260e46300acb5431bced3a1994e8326f5fdee33effb81e438176a3685900f20d20", + "sha1": "ca49a4163794cc0f94a31a17f6956be11979db53" + }, + "required_dependencies": [ + "umyGl7zF", + "T38eAZQC", + "LNytGWDc" + ], + "size": 53779, + "date_published": "2024-08-08T08:56:55.124370Z" } ] }, @@ -15000,6 +15418,199 @@ } ] }, + { + "pakku_id": "rctyIgG4GZwCoq2K", + "pakku_links": [ + "pB7ARGecP03UXpd6" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "warium", + "modrinth": "warium" + }, + "name": { + "curseforge": "Warium", + "modrinth": "Warium" + }, + "id": { + "curseforge": "1123901", + "modrinth": "xgjvEen1" + }, + "redistributable": false, + "files": [ + { + "type": "curseforge", + "file_name": "Warium 1.2.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7402/760/Warium 1.2.6.jar", + "id": "7402760", + "parent_id": "1123901", + "hashes": { + "sha1": "95c26f4a5c5646160e73baecaa41e3b48a5887de", + "md5": "315beb678dbf40e710dd5978aa52d658" + }, + "required_dependencies": [ + "388172" + ], + "size": 12602852, + "date_published": "2026-01-01T03:32:15.557Z" + }, + { + "type": "modrinth", + "file_name": "Warium 1.2.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/xgjvEen1/versions/skDSezhQ/Warium 1.2.6.jar", + "id": "skDSezhQ", + "parent_id": "xgjvEen1", + "hashes": { + "sha512": "bb047b5df6c0941ef10ecb7454f64090e6eb479039ade471a0aa9dc5839009a9a6c929be1504599ea51519d2a98c7651a029702131d371e3b397ffbe3eab9e11", + "sha1": "95c26f4a5c5646160e73baecaa41e3b48a5887de" + }, + "required_dependencies": [], + "size": 12602852, + "date_published": "2026-01-01T03:32:13.316239Z" + } + ] + }, + { + "pakku_id": "zonLLbYfp9ViO9i7", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "xaeros-minimap", + "modrinth": "xaeros-minimap" + }, + "name": { + "curseforge": "Xaero's Minimap", + "modrinth": "Xaero's Minimap" + }, + "id": { + "curseforge": "263420", + "modrinth": "1bokaNcj" + }, + "files": [ + { + "type": "modrinth", + "file_name": "Xaeros_Minimap_25.2.10_Forge_1.20.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/1bokaNcj/versions/VfhlV9am/Xaeros_Minimap_25.2.10_Forge_1.20.jar", + "id": "VfhlV9am", + "parent_id": "1bokaNcj", + "hashes": { + "sha512": "936d2608d74c9a4d702efce51e0197f19f947997af768cb558f4cc5323ea4c5f12ee11b519df4071bdbc8c2aca8caa1baa18f702ef32c24bc4ea78fdbac483b2", + "sha1": "1f23df114da3a8603dbe4781c07e8acf20f6d1ce" + }, + "required_dependencies": [], + "size": 1723029, + "date_published": "2025-07-17T09:12:11.932921Z" + }, + { + "type": "curseforge", + "file_name": "Xaeros_Minimap_25.2.10_Forge_1.20.jar", + "mc_versions": [ + "1.20.1", + "1.20" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6778/28/Xaeros_Minimap_25.2.10_Forge_1.20.jar", + "id": "6778028", + "parent_id": "263420", + "hashes": { + "sha1": "1f23df114da3a8603dbe4781c07e8acf20f6d1ce", + "md5": "2b2bfaf3a1872b83c57aaa51c73f10d9" + }, + "required_dependencies": [], + "size": 1723029, + "date_published": "2025-07-17T08:16:50.807Z" + } + ] + }, + { + "pakku_id": "tdBDW3xpPBc3E2mt", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "xaeros-world-map", + "modrinth": "xaeros-world-map" + }, + "name": { + "curseforge": "Xaero's World Map", + "modrinth": "Xaero's World Map" + }, + "id": { + "curseforge": "317780", + "modrinth": "NcUtCpym" + }, + "files": [ + { + "type": "modrinth", + "file_name": "XaerosWorldMap_1.39.12_Forge_1.20.jar", + "mc_versions": [ + "1.20", + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/NcUtCpym/versions/ATTRzxT3/XaerosWorldMap_1.39.12_Forge_1.20.jar", + "id": "ATTRzxT3", + "parent_id": "NcUtCpym", + "hashes": { + "sha512": "06d68367ec0a3eed9c13a6c02ce4a93d9375c6b32cb8c3e77a7c62f3e3ea6bfadbfae70d0e5f115e2b353d4b186e6cf80bcc73df5b13362d5d18f25fb2a9d6d1", + "sha1": "3c4005a400ba8270738bbe4c573526749ecf2f8f" + }, + "required_dependencies": [], + "size": 960799, + "date_published": "2025-07-17T08:55:30.592486Z" + }, + { + "type": "curseforge", + "file_name": "XaerosWorldMap_1.39.12_Forge_1.20.jar", + "mc_versions": [ + "1.20.1", + "1.20" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6778/91/XaerosWorldMap_1.39.12_Forge_1.20.jar", + "id": "6778091", + "parent_id": "317780", + "hashes": { + "sha1": "3c4005a400ba8270738bbe4c573526749ecf2f8f", + "md5": "002d9a661be7e982db177d7b0fc8d49e" + }, + "required_dependencies": [], + "size": 960799, + "date_published": "2025-07-17T08:39:43.103Z" + } + ] + }, { "pakku_id": "dHJr8CybJVqGuwXG", "type": "MOD", @@ -15099,6 +15710,139 @@ } ] }, + { + "pakku_id": "khWQzXac8AltkIMj", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "arthropocolypse", + "modrinth": "arthropocolypse" + }, + "name": { + "curseforge": "[Deprecated] Arthropocolypse", + "modrinth": "Arthropocolypse" + }, + "id": { + "curseforge": "1018606", + "modrinth": "uiAP959w" + }, + "redistributable": false, + "files": [ + { + "type": "curseforge", + "file_name": "arthropocolypse-1.0.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/5397/648/arthropocolypse-1.0.6.jar", + "id": "5397648", + "parent_id": "1018606", + "hashes": { + "sha1": "c43b2c1e8a9fa11d139a202e37054a01db8fd677", + "md5": "a5a26adcf2c12df3777543fdf424c169" + }, + "required_dependencies": [], + "size": 612137, + "date_published": "2024-06-04T11:30:24.383Z" + }, + { + "type": "modrinth", + "file_name": "arthropocolypse-1.0.6.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/uiAP959w/versions/4WlOZtq0/arthropocolypse-1.0.6.jar", + "id": "4WlOZtq0", + "parent_id": "uiAP959w", + "hashes": { + "sha512": "c00b798b8ecf7aad09f400601cacec8107649240e75e1ba87851e4007a30febf498d524ef818ab00472a739f6b237f8130060f0e3ae051314dfb069569d72c7b", + "sha1": "c43b2c1e8a9fa11d139a202e37054a01db8fd677" + }, + "required_dependencies": [], + "size": 612137, + "date_published": "2024-06-04T11:34:01.710669Z" + } + ] + }, + { + "pakku_id": "MpkpUO55EJhBt1az", + "pakku_links": [ + "GXyDUWkiW0nLPTdo" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "tacz-applied-ammo-box", + "modrinth": "tacz-applied-ammo-box" + }, + "name": { + "curseforge": "[TaCZ] Applied Ammo Box", + "modrinth": "[Tacz] Applied Ammo Box" + }, + "id": { + "curseforge": "1338332", + "modrinth": "VQOi9K8E" + }, + "redistributable": false, + "files": [ + { + "type": "modrinth", + "file_name": "applied_ammo_box-1.0.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/VQOi9K8E/versions/AluWzzYV/applied_ammo_box-1.0.0.jar", + "id": "AluWzzYV", + "parent_id": "VQOi9K8E", + "hashes": { + "sha512": "496d8d6fd91260346730fb4b986b16b5ddb42b53e41f4581929ffc08a75365a2edd05266c0e11c5f272dbe0899c5bdfd2d0144e01c59735131a4990d37eac040", + "sha1": "3fc67723dc70b544b57ab0d0a34e2be991d285f9" + }, + "required_dependencies": [ + "SzzJttH8", + "XxWD5pD3" + ], + "size": 70111, + "date_published": "2025-12-19T14:14:18.551065Z" + }, + { + "type": "curseforge", + "file_name": "applied_ammo_box-1.0.0.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7353/104/applied_ammo_box-1.0.0.jar", + "id": "7353104", + "parent_id": "1338332", + "hashes": { + "sha1": "3fc67723dc70b544b57ab0d0a34e2be991d285f9", + "md5": "a6f67bd0ced376be1ef8dbf41e09fa51" + }, + "required_dependencies": [ + "1028108", + "223794" + ], + "size": 70111, + "date_published": "2025-12-19T10:36:12.707Z" + } + ] + }, { "pakku_id": "GXyDUWkiW0nLPTdo", "type": "MOD", @@ -15116,47 +15860,48 @@ "modrinth": "SzzJttH8" }, "files": [ - { - "type": "curseforge", - "file_name": "tacz-1.20.1-1.1.6-hotfix.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6654/541/tacz-1.20.1-1.1.6-hotfix.jar", - "id": "6654541", - "parent_id": "1028108", - "hashes": { - "sha1": "e951d81b5f452bcad47c20d5b491fd26f8de8ce2", - "md5": "51636447584a75f8d2db2fb930d110b1" - }, - "required_dependencies": [], - "size": 47826468, - "date_published": "2025-06-15T15:09:58.720Z" - }, { "type": "modrinth", - "file_name": "tacz-1.20.1-1.1.6-hotfix.jar", + "file_name": "tacz-1.20.1-1.1.7-hotfix.jar", "mc_versions": [ + "1.20", "1.20.1" ], "loaders": [ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/SzzJttH8/versions/quyywMZF/tacz-1.20.1-1.1.6-hotfix.jar", - "id": "quyywMZF", + "url": "https://cdn.modrinth.com/data/SzzJttH8/versions/CkNQpQcx/tacz-1.20.1-1.1.7-hotfix.jar", + "id": "CkNQpQcx", "parent_id": "SzzJttH8", "hashes": { - "sha512": "2db28186cc436b2e163db822dc0632fc32d5080adea3b3a0f891255cefe007ec029acd1e477f01adf5db8de7f79d14d4afa67c31a53b8c5ceaf00ce72b5de501", - "sha1": "e951d81b5f452bcad47c20d5b491fd26f8de8ce2" + "sha512": "17d17133243de268cc2d071261e69e747a01b3ab64ab1cf0eec17054e4f19bf8cf30ef1c7ed3e1600523cd9061b38728810b92aefa4246f615001f835a25dc37", + "sha1": "7d4f578a42c9b880744ea6058a495847aac9e4c3" }, "required_dependencies": [], - "size": 47826468, - "date_published": "2025-06-15T15:12:58.577730Z" + "size": 52425650, + "date_published": "2026-01-01T09:15:14.812661Z" + }, + { + "type": "curseforge", + "file_name": "tacz-1.20.1-1.1.7-hotfix.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7401/617/tacz-1.20.1-1.1.7-hotfix.jar", + "id": "7401617", + "parent_id": "1028108", + "hashes": { + "sha1": "7d4f578a42c9b880744ea6058a495847aac9e4c3", + "md5": "e91391b09e25ec5994c28593117f5908" + }, + "required_dependencies": [], + "size": 52425650, + "date_published": "2025-12-31T19:00:25.193Z" } ] }, @@ -15221,6 +15966,50 @@ "date_published": "2024-12-04T22:45:46.092248Z" } ] + }, + { + "pakku_id": "ViyJVzgpnmAclRM7", + "pakku_links": [ + "Nw8xTCQngHA15ilh", + "Ek1OSS84farhKMqo" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "vstuff" + }, + "name": { + "modrinth": "vstuff" + }, + "id": { + "modrinth": "voOBl6iP" + }, + "files": [ + { + "type": "modrinth", + "file_name": "vstuff-0.2.4-fix2+015de0da8f.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/voOBl6iP/versions/QK0pHWZ5/vstuff-0.2.4-fix2+015de0da8f.jar", + "id": "QK0pHWZ5", + "parent_id": "voOBl6iP", + "hashes": { + "sha512": "4d465d4765b99a8f563c0613774dfa0f3f6eab120f50863e6c3b8c12c1108c231eb504358b7337c2fc624266bf508e562d9f50610ae3b62a500cc7c1e502786d", + "sha1": "10a788c1de33d66d93dad9f577e110c0ca9e6aa5" + }, + "required_dependencies": [ + "LNytGWDc", + "V5ujR2yw" + ], + "size": 350292, + "date_published": "2025-12-29T18:06:46.046608Z" + } + ] } ], "lockfile_version": 1 diff --git a/pakku.json b/pakku.json index 14d88f921..e1cd91414 100644 --- a/pakku.json +++ b/pakku.json @@ -258,9 +258,28 @@ "detected-setblock-be-gone": { "side": "BOTH" }, + "colorwheel": { + "side": "CLIENT" + }, + "colorwheel-patcher": { + "side": "CLIENT" + }, "autopack-director": { "export": false }, + "tfc-caelum": { + "export": false + }, + "caelum": { + "export": false + }, + "extreme-sound-muffler": { + "export": false + }, + "extreme_sound_muffler": { + "export": false + }, + "ftb-backups-2": { "side": "BOTH", "export": true diff --git a/tacz/TACZ_CHANGELOG.md b/tacz/TACZ_CHANGELOG.md new file mode 100644 index 000000000..49e0d5b08 --- /dev/null +++ b/tacz/TACZ_CHANGELOG.md @@ -0,0 +1,133 @@ +# TACZ CHANGELOG +## TFG Version 0.11.9 +## Additions + +### "Clutch" Sniper Rifle +- True MV tier marksman Rifle +- Uses new .30-06 SLAP Ammo +- Stats + - Damage: 32 + - Ammo Capacity: 3 + - Armor Piercing: 50% + - Headshot Multi: 175% + +### "Stress" Semi Pistol +- MV tier Pistol +- Uses Rimmed Blunt Ammo +- Stats + - Damage: 8 + - Ammo Capacity: 26 + - Armor Piercing: 25% + - Headshot Multi: 120% + +### "Crank" SMG +- MV tier SMG +- Uses Rimmed Blunt Ammo +- Stats + - Damage: 8 + - Ammo Capacity: 26 + - Armor Piercing: 25% + - Headshot Multi: 120% + +### Freedom SMG +- EV tier SMG +- Uses Etched Quartz Bullets +- Stats + - Damage: 10 + - Ammo Capacity: 36 + - Armor Piercing: 25% + - Headshot Multi: 150% +## Balance Changes +## Pistols +### "Torque" Revolver +- Tier: MV -> LV +- Damage: 18 -> 12 +- Damage Falloff: + - 0-25: 18 -> 12 + - 25-50: 17 -> 11 + - 50-75: 16 -> 9 + - 75+: 16 -> 7 +- Armor Pierce: 40% -> 25% +- Headshot Multi: 200% -> 150% + +### Pride Pistol +- Armor Pierce: 20% -> 25% + +### Win-Win Pistols +- Damage: 9 -> 10 +- Damage Falloff: + - 0-15: 9 -> 10 + - 15-35: 8 -> 9 + - 35+: 7 -> 8 +- Armor Pierce: 10% -> 25% +- Headshot Multi: 125% -> 150% + +## Snipers + +### Springfield Sniper +- Damage: 35 -> 25 +- Damage Falloff: + - 0-40: 35 -> 25 + - 40-70: 28 -> 21 + - 70-100: 19 -> 17 + - 100+: 16 -> 12 + +### K30 Sniper +- Damage: 45 -> 40 +- Damage Falloff: + - 0-100: 45 -> 40 + - 100-200: 43 -> 35 + - 200+: 38 -> 30 +- Armor Pierce: 50% -> 55% +- Pierce: 3 -> 4 + +## Rifles + +### "Clockwork" Rifle +- Designation: Sniper -> Rifle +- Ammo: Rimmed Blunt -> SLAP +- Ammo Count: + - Base: 8 -> 10 + - Extend 1: 10 -> 13 + - Extend 2: 12 -> 16 + - Extend 3: 14 -> 20 +- Headshot Multi: 200% -> 150% + +### "Crane" Assault Rifle +- Ammo Count: + - Base: 10 -> 20 + - Extend 1: 20 -> 28 + - Extend 2: 30 -> 36 + - Extend 3: 40 -> 44 + +### AR77 Rifle +- Ammo Count: + - Base: 20 -> 25 + - Extend 1: 27 -> 36 + - Extend 2: 34 -> 45 + - Extend 3: 40 -> 52 +- Damage: 13 -> 14 +- Damage Falloff: + - 0-80: 13 -> 14 + - 80-160: 11 -> 12 + - 160+: 9 -> 10 + +## Machine Guns + +### "Flywheel" Machine Gun +- Ammo Count: + - Base: 50 -> 40 + - Extend 1: 65 -> 55 + - Extend 2: 80 -> 80 + - Extend 3: 100 -> 115 +- Fire Rate: 600 -> 650 +- Damage: 13 -> 12 +- Damage Falloff: + - 0-32: 13 -> 12 + - 32-64: 12 -> 11 + - 64+: 10 -> 10 + +## Ammo + +### SLAP Ammo +- Lead Nuggets -> Lead Bolts \ No newline at end of file diff --git a/tacz/ulv_guns.zip b/tacz/ulv_guns.zip index 074c170d9..c58813fc3 100644 Binary files a/tacz/ulv_guns.zip and b/tacz/ulv_guns.zip differ